[
  {
    "path": ".gitignore",
    "content": "*.gem\n*.rbc\n.bundle\n.config\n.yardoc\nGemfile.lock\nInstalledFiles\n_yardoc\ncoverage\ndoc/\nlib/bundler/man\npkg\nrdoc\nspec/reports\ntest/tmp\ntest/version_tmp\ntmp\next/cld/*.o\next/cld/*.a\next/cld/*.so\next/cld/.deps/\next/cld/Makefile\next/cld/config.status\next/cld/libtool\n"
  },
  {
    "path": ".rspec",
    "content": "--color\n--format documentation\n"
  },
  {
    "path": "Gemfile",
    "content": "source 'https://rubygems.org'\n\n# Specify your gem's dependencies in cld.gemspec\ngemspec\n\ngem \"rake\"\ngem \"rspec\"\ngem \"bump\"\n"
  },
  {
    "path": "LICENSE",
    "content": "// Copyright (c) 2010 The Chromium Authors. All rights reserved.\n//\n// Redistribution and use in source and binary forms, with or without\n// modification, are permitted provided that the following conditions are\n// met:\n//\n//    * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.\n//    * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.\n//    * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.\n//\n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
  },
  {
    "path": "README.md",
    "content": "# Compact Language Detection\n\nBlazing-fast language detection for Ruby provided by\nGoogle Chrome's Compact Language Detector.\n\n## How to Use\n\n```ruby\nrequire 'cld'\n\nCLD.detect_language(\"This is a test\")\n# => {name: \"ENGLISH\", code: \"en\", reliable: true}\n\nCLD.detect_language(\"plus ça change, plus c'est la même chose\")\n# => {name: \"FRENCH\", code: \"fr\", reliable: true}\n```\n\n## Installation\n\n```bash\ngem install cld\n```\n\n## Development\n\n- [install C++ CLD](https://github.com/mzsanford/cld#installing)\n\n## Thanks\n\nThanks to the Chrome authors, and to Mike McCandless for writing a Python version.\n\nLicensed the same as Chrome.  Jason Toy\n"
  },
  {
    "path": "Rakefile",
    "content": "#!/usr/bin/env rake\nrequire \"bundler/setup\"\nrequire \"bundler/gem_tasks\"\nrequire \"bump/tasks\"\n\nrequire \"rspec/core/rake_task\"\nRSpec::Core::RakeTask.new(:spec)\n\ntask :extconf do\n  sh \"cd ext/cld && ruby extconf.rb\"\nend\n\ntask default: [:extconf, :spec]\n"
  },
  {
    "path": "cld.gemspec",
    "content": "require File.expand_path('../lib/cld/version', __FILE__)\n\nGem::Specification.new \"cld\", CLD::VERSION do |gem|\n  gem.authors       = [\"Jason Toy\"]\n  gem.email         = [\"jtoy@jtoy.net\"]\n  gem.description   = %q{Compact Language Detection for Ruby}\n  gem.summary       = %q{Compact Language Detection for Ruby}\n  gem.homepage      = \"https://github.com/jtoy/cld\"\n\n  gem.files         = `git ls-files -- {ext,lib}/*`.split(\"\\n\") + [\"LICENSE\", \"README.md\"]\n  gem.extensions    = [\"ext/cld/extconf.rb\"]\n\n  gem.add_dependency \"ffi\"\nend\n"
  },
  {
    "path": "ext/cld/Makefile.am",
    "content": "AUTOMAKE_OPTIONS = foreign\n\nlib_LTLIBRARIES = cld.la\n\ncld_la_CXXFLAGS=-I. -DCLD_WINDOWS\ncld_la_LDFLAGS=-L. -module -shared\n\ncld_la_SOURCES = \\\n\t\tencodings/compact_lang_det/cldutil.cc \\\n\t\tencodings/compact_lang_det/cldutil_dbg_empty.cc \\\n\t\tencodings/compact_lang_det/compact_lang_det.cc \\\n\t\tencodings/compact_lang_det/compact_lang_det_impl.cc \\\n\t\tencodings/compact_lang_det/ext_lang_enc.cc \\\n\t\tencodings/compact_lang_det/getonescriptspan.cc \\\n\t\tencodings/compact_lang_det/letterscript_enum.cc \\\n\t\tencodings/compact_lang_det/tote.cc \\\n\t\tencodings/compact_lang_det/generated/cld_generated_score_quadchrome_0406.cc \\\n\t\tencodings/compact_lang_det/generated/compact_lang_det_generated_cjkbis_0.cc \\\n\t\tencodings/compact_lang_det/generated/compact_lang_det_generated_ctjkvz.cc \\\n\t\tencodings/compact_lang_det/generated/compact_lang_det_generated_deltaoctachrome.cc \\\n\t\tencodings/compact_lang_det/generated/compact_lang_det_generated_quadschrome.cc \\\n\t\tencodings/compact_lang_det/win/cld_htmlutils_windows.cc \\\n\t\tencodings/compact_lang_det/win/cld_unilib_windows.cc \\\n\t\tencodings/compact_lang_det/win/cld_utf8statetable.cc \\\n\t\tencodings/compact_lang_det/win/cld_utf8utils_windows.cc \\\n\t\tencodings/internal/encodings.cc \\\n\t\tlanguages/internal/languages.cc \\\n\t\tthunk.cc\n"
  },
  {
    "path": "ext/cld/Makefile.in",
    "content": "# Makefile.in generated by automake 1.10 from Makefile.am.\n# @configure_input@\n\n# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,\n# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.\n# This Makefile.in is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY, to the extent permitted by law; without\n# even the implied warranty of MERCHANTABILITY or FITNESS FOR A\n# PARTICULAR PURPOSE.\n\n@SET_MAKE@\n\nVPATH = @srcdir@\npkgdatadir = $(datadir)/@PACKAGE@\npkglibdir = $(libdir)/@PACKAGE@\npkgincludedir = $(includedir)/@PACKAGE@\nam__cd = CDPATH=\"$${ZSH_VERSION+.}$(PATH_SEPARATOR)\" && cd\ninstall_sh_DATA = $(install_sh) -c -m 644\ninstall_sh_PROGRAM = $(install_sh) -c\ninstall_sh_SCRIPT = $(install_sh) -c\nINSTALL_HEADER = $(INSTALL_DATA)\ntransform = $(program_transform_name)\nNORMAL_INSTALL = :\nPRE_INSTALL = :\nPOST_INSTALL = :\nNORMAL_UNINSTALL = :\nPRE_UNINSTALL = :\nPOST_UNINSTALL = :\nbuild_triplet = @build@\nhost_triplet = @host@\nsubdir = .\nDIST_COMMON = $(am__configure_deps) $(srcdir)/Makefile.am \\\n\t$(srcdir)/Makefile.in $(top_srcdir)/configure \\\n\tbuild_aux/config.guess build_aux/config.sub build_aux/depcomp \\\n\tbuild_aux/install-sh build_aux/ltmain.sh build_aux/missing\nACLOCAL_M4 = $(top_srcdir)/aclocal.m4\nam__aclocal_m4_deps = $(top_srcdir)/configure.ac\nam__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \\\n\t$(ACLOCAL_M4)\nam__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \\\n configure.lineno config.status.lineno\nmkinstalldirs = $(install_sh) -d\nCONFIG_CLEAN_FILES =\nam__vpath_adj_setup = srcdirstrip=`echo \"$(srcdir)\" | sed 's|.|.|g'`;\nam__vpath_adj = case $$p in \\\n    $(srcdir)/*) f=`echo \"$$p\" | sed \"s|^$$srcdirstrip/||\"`;; \\\n    *) f=$$p;; \\\n  esac;\nam__strip_dir = `echo $$p | sed -e 's|^.*/||'`;\nam__installdirs = \"$(DESTDIR)$(libdir)\"\nlibLTLIBRARIES_INSTALL = $(INSTALL)\nLTLIBRARIES = $(lib_LTLIBRARIES)\ncld_la_LIBADD =\nam_cld_la_OBJECTS = cld_la-cldutil.lo cld_la-cldutil_dbg_empty.lo \\\n\tcld_la-compact_lang_det.lo cld_la-compact_lang_det_impl.lo \\\n\tcld_la-ext_lang_enc.lo cld_la-getonescriptspan.lo \\\n\tcld_la-letterscript_enum.lo cld_la-tote.lo \\\n\tcld_la-cld_generated_score_quadchrome_0406.lo \\\n\tcld_la-compact_lang_det_generated_cjkbis_0.lo \\\n\tcld_la-compact_lang_det_generated_ctjkvz.lo \\\n\tcld_la-compact_lang_det_generated_deltaoctachrome.lo \\\n\tcld_la-compact_lang_det_generated_quadschrome.lo \\\n\tcld_la-cld_htmlutils_windows.lo cld_la-cld_unilib_windows.lo \\\n\tcld_la-cld_utf8statetable.lo cld_la-cld_utf8utils_windows.lo \\\n\tcld_la-encodings.lo cld_la-languages.lo cld_la-thunk.lo\ncld_la_OBJECTS = $(am_cld_la_OBJECTS)\ncld_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \\\n\t--mode=link $(CXXLD) $(cld_la_CXXFLAGS) $(CXXFLAGS) \\\n\t$(cld_la_LDFLAGS) $(LDFLAGS) -o $@\nDEFAULT_INCLUDES = -I.@am__isrc@\ndepcomp = $(SHELL) $(top_srcdir)/build_aux/depcomp\nam__depfiles_maybe = depfiles\nCXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \\\n\t$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)\nLTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \\\n\t--mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \\\n\t$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)\nCXXLD = $(CXX)\nCXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \\\n\t--mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \\\n\t$(LDFLAGS) -o $@\nSOURCES = $(cld_la_SOURCES)\nDIST_SOURCES = $(cld_la_SOURCES)\nETAGS = etags\nCTAGS = ctags\nDISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)\ndistdir = $(PACKAGE)-$(VERSION)\ntop_distdir = $(distdir)\nam__remove_distdir = \\\n  { test ! -d $(distdir) \\\n    || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \\\n         && rm -fr $(distdir); }; }\nDIST_ARCHIVES = $(distdir).tar.gz\nGZIP_ENV = --best\ndistuninstallcheck_listfiles = find . -type f -print\ndistcleancheck_listfiles = find . -type f -print\nACLOCAL = @ACLOCAL@\nAMTAR = @AMTAR@\nAR = @AR@\nAUTOCONF = @AUTOCONF@\nAUTOHEADER = @AUTOHEADER@\nAUTOMAKE = @AUTOMAKE@\nAWK = @AWK@\nCC = @CC@\nCCDEPMODE = @CCDEPMODE@\nCFLAGS = @CFLAGS@\nCPP = @CPP@\nCPPFLAGS = @CPPFLAGS@\nCXX = @CXX@\nCXXCPP = @CXXCPP@\nCXXDEPMODE = @CXXDEPMODE@\nCXXFLAGS = @CXXFLAGS@\nCYGPATH_W = @CYGPATH_W@\nDEFS = @DEFS@\nDEPDIR = @DEPDIR@\nDSYMUTIL = @DSYMUTIL@\nDUMPBIN = @DUMPBIN@\nECHO_C = @ECHO_C@\nECHO_N = @ECHO_N@\nECHO_T = @ECHO_T@\nEGREP = @EGREP@\nEXEEXT = @EXEEXT@\nFGREP = @FGREP@\nGREP = @GREP@\nINSTALL = @INSTALL@\nINSTALL_DATA = @INSTALL_DATA@\nINSTALL_PROGRAM = @INSTALL_PROGRAM@\nINSTALL_SCRIPT = @INSTALL_SCRIPT@\nINSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@\nLD = @LD@\nLDFLAGS = @LDFLAGS@\nLIBOBJS = @LIBOBJS@\nLIBS = @LIBS@\nLIBTOOL = @LIBTOOL@\nLIPO = @LIPO@\nLN_S = @LN_S@\nLTLIBOBJS = @LTLIBOBJS@\nMAKEINFO = @MAKEINFO@\nMKDIR_P = @MKDIR_P@\nNM = @NM@\nNMEDIT = @NMEDIT@\nOBJDUMP = @OBJDUMP@\nOBJEXT = @OBJEXT@\nOTOOL = @OTOOL@\nOTOOL64 = @OTOOL64@\nPACKAGE = @PACKAGE@\nPACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@\nPACKAGE_NAME = @PACKAGE_NAME@\nPACKAGE_STRING = @PACKAGE_STRING@\nPACKAGE_TARNAME = @PACKAGE_TARNAME@\nPACKAGE_VERSION = @PACKAGE_VERSION@\nPATH_SEPARATOR = @PATH_SEPARATOR@\nRANLIB = @RANLIB@\nSED = @SED@\nSET_MAKE = @SET_MAKE@\nSHELL = @SHELL@\nSTRIP = @STRIP@\nVERSION = @VERSION@\nabs_builddir = @abs_builddir@\nabs_srcdir = @abs_srcdir@\nabs_top_builddir = @abs_top_builddir@\nabs_top_srcdir = @abs_top_srcdir@\nac_ct_CC = @ac_ct_CC@\nac_ct_CXX = @ac_ct_CXX@\nac_ct_DUMPBIN = @ac_ct_DUMPBIN@\nam__include = @am__include@\nam__leading_dot = @am__leading_dot@\nam__quote = @am__quote@\nam__tar = @am__tar@\nam__untar = @am__untar@\nbindir = @bindir@\nbuild = @build@\nbuild_alias = @build_alias@\nbuild_cpu = @build_cpu@\nbuild_os = @build_os@\nbuild_vendor = @build_vendor@\nbuilddir = @builddir@\ndatadir = @datadir@\ndatarootdir = @datarootdir@\ndocdir = @docdir@\ndvidir = @dvidir@\nexec_prefix = @exec_prefix@\nhost = @host@\nhost_alias = @host_alias@\nhost_cpu = @host_cpu@\nhost_os = @host_os@\nhost_vendor = @host_vendor@\nhtmldir = @htmldir@\nincludedir = @includedir@\ninfodir = @infodir@\ninstall_sh = @install_sh@\nlibdir = @libdir@\nlibexecdir = @libexecdir@\nlocaledir = @localedir@\nlocalstatedir = @localstatedir@\nmandir = @mandir@\nmkdir_p = @mkdir_p@\noldincludedir = @oldincludedir@\npdfdir = @pdfdir@\nprefix = @prefix@\nprogram_transform_name = @program_transform_name@\npsdir = @psdir@\nsbindir = @sbindir@\nsharedstatedir = @sharedstatedir@\nsrcdir = @srcdir@\nsysconfdir = @sysconfdir@\ntarget_alias = @target_alias@\ntop_builddir = @top_builddir@\ntop_srcdir = @top_srcdir@\nAUTOMAKE_OPTIONS = foreign\nlib_LTLIBRARIES = cld.la\ncld_la_CXXFLAGS = -I. -DCLD_WINDOWS\ncld_la_LDFLAGS = -L. -module -shared\ncld_la_SOURCES = \\\n\t\tencodings/compact_lang_det/cldutil.cc \\\n\t\tencodings/compact_lang_det/cldutil_dbg_empty.cc \\\n\t\tencodings/compact_lang_det/compact_lang_det.cc \\\n\t\tencodings/compact_lang_det/compact_lang_det_impl.cc \\\n\t\tencodings/compact_lang_det/ext_lang_enc.cc \\\n\t\tencodings/compact_lang_det/getonescriptspan.cc \\\n\t\tencodings/compact_lang_det/letterscript_enum.cc \\\n\t\tencodings/compact_lang_det/tote.cc \\\n\t\tencodings/compact_lang_det/generated/cld_generated_score_quadchrome_0406.cc \\\n\t\tencodings/compact_lang_det/generated/compact_lang_det_generated_cjkbis_0.cc \\\n\t\tencodings/compact_lang_det/generated/compact_lang_det_generated_ctjkvz.cc \\\n\t\tencodings/compact_lang_det/generated/compact_lang_det_generated_deltaoctachrome.cc \\\n\t\tencodings/compact_lang_det/generated/compact_lang_det_generated_quadschrome.cc \\\n\t\tencodings/compact_lang_det/win/cld_htmlutils_windows.cc \\\n\t\tencodings/compact_lang_det/win/cld_unilib_windows.cc \\\n\t\tencodings/compact_lang_det/win/cld_utf8statetable.cc \\\n\t\tencodings/compact_lang_det/win/cld_utf8utils_windows.cc \\\n\t\tencodings/internal/encodings.cc \\\n\t\tlanguages/internal/languages.cc \\\n\t\tthunk.cc\n\nall: all-am\n\n.SUFFIXES:\n.SUFFIXES: .cc .lo .o .obj\nam--refresh:\n\t@:\n$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)\n\t@for dep in $?; do \\\n\t  case '$(am__configure_deps)' in \\\n\t    *$$dep*) \\\n\t      echo ' cd $(srcdir) && $(AUTOMAKE) --foreign '; \\\n\t      cd $(srcdir) && $(AUTOMAKE) --foreign  \\\n\t\t&& exit 0; \\\n\t      exit 1;; \\\n\t  esac; \\\n\tdone; \\\n\techo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  Makefile'; \\\n\tcd $(top_srcdir) && \\\n\t  $(AUTOMAKE) --foreign  Makefile\n.PRECIOUS: Makefile\nMakefile: $(srcdir)/Makefile.in $(top_builddir)/config.status\n\t@case '$?' in \\\n\t  *config.status*) \\\n\t    echo ' $(SHELL) ./config.status'; \\\n\t    $(SHELL) ./config.status;; \\\n\t  *) \\\n\t    echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \\\n\t    cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \\\n\tesac;\n\n$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)\n\t$(SHELL) ./config.status --recheck\n\n$(top_srcdir)/configure:  $(am__configure_deps)\n\tcd $(srcdir) && $(AUTOCONF)\n$(ACLOCAL_M4):  $(am__aclocal_m4_deps)\n\tcd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)\ninstall-libLTLIBRARIES: $(lib_LTLIBRARIES)\n\t@$(NORMAL_INSTALL)\n\ttest -z \"$(libdir)\" || $(MKDIR_P) \"$(DESTDIR)$(libdir)\"\n\t@list='$(lib_LTLIBRARIES)'; for p in $$list; do \\\n\t  if test -f $$p; then \\\n\t    f=$(am__strip_dir) \\\n\t    echo \" $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'\"; \\\n\t    $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) \"$$p\" \"$(DESTDIR)$(libdir)/$$f\"; \\\n\t  else :; fi; \\\n\tdone\n\nuninstall-libLTLIBRARIES:\n\t@$(NORMAL_UNINSTALL)\n\t@list='$(lib_LTLIBRARIES)'; for p in $$list; do \\\n\t  p=$(am__strip_dir) \\\n\t  echo \" $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'\"; \\\n\t  $(LIBTOOL) --mode=uninstall rm -f \"$(DESTDIR)$(libdir)/$$p\"; \\\n\tdone\n\nclean-libLTLIBRARIES:\n\t-test -z \"$(lib_LTLIBRARIES)\" || rm -f $(lib_LTLIBRARIES)\n\t@list='$(lib_LTLIBRARIES)'; for p in $$list; do \\\n\t  dir=\"`echo $$p | sed -e 's|/[^/]*$$||'`\"; \\\n\t  test \"$$dir\" != \"$$p\" || dir=.; \\\n\t  echo \"rm -f \\\"$${dir}/so_locations\\\"\"; \\\n\t  rm -f \"$${dir}/so_locations\"; \\\n\tdone\ncld.la: $(cld_la_OBJECTS) $(cld_la_DEPENDENCIES) \n\t$(cld_la_LINK) -rpath $(libdir) $(cld_la_OBJECTS) $(cld_la_LIBADD) $(LIBS)\n\nmostlyclean-compile:\n\t-rm -f *.$(OBJEXT)\n\ndistclean-compile:\n\t-rm -f *.tab.c\n\n@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cld_la-cld_generated_score_quadchrome_0406.Plo@am__quote@\n@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cld_la-cld_htmlutils_windows.Plo@am__quote@\n@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cld_la-cld_unilib_windows.Plo@am__quote@\n@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cld_la-cld_utf8statetable.Plo@am__quote@\n@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cld_la-cld_utf8utils_windows.Plo@am__quote@\n@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cld_la-cldutil.Plo@am__quote@\n@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cld_la-cldutil_dbg_empty.Plo@am__quote@\n@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cld_la-compact_lang_det.Plo@am__quote@\n@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cld_la-compact_lang_det_generated_cjkbis_0.Plo@am__quote@\n@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cld_la-compact_lang_det_generated_ctjkvz.Plo@am__quote@\n@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cld_la-compact_lang_det_generated_deltaoctachrome.Plo@am__quote@\n@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cld_la-compact_lang_det_generated_quadschrome.Plo@am__quote@\n@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cld_la-compact_lang_det_impl.Plo@am__quote@\n@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cld_la-encodings.Plo@am__quote@\n@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cld_la-ext_lang_enc.Plo@am__quote@\n@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cld_la-getonescriptspan.Plo@am__quote@\n@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cld_la-languages.Plo@am__quote@\n@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cld_la-letterscript_enum.Plo@am__quote@\n@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cld_la-thunk.Plo@am__quote@\n@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cld_la-tote.Plo@am__quote@\n\n.cc.o:\n@am__fastdepCXX_TRUE@\t$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<\n@am__fastdepCXX_TRUE@\tmv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tsource='$<' object='$@' libtool=no @AMDEPBACKSLASH@\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tDEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@\n@am__fastdepCXX_FALSE@\t$(CXXCOMPILE) -c -o $@ $<\n\n.cc.obj:\n@am__fastdepCXX_TRUE@\t$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`\n@am__fastdepCXX_TRUE@\tmv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tsource='$<' object='$@' libtool=no @AMDEPBACKSLASH@\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tDEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@\n@am__fastdepCXX_FALSE@\t$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`\n\n.cc.lo:\n@am__fastdepCXX_TRUE@\t$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<\n@am__fastdepCXX_TRUE@\tmv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tsource='$<' object='$@' libtool=yes @AMDEPBACKSLASH@\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tDEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@\n@am__fastdepCXX_FALSE@\t$(LTCXXCOMPILE) -c -o $@ $<\n\ncld_la-cldutil.lo: encodings/compact_lang_det/cldutil.cc\n@am__fastdepCXX_TRUE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -MT cld_la-cldutil.lo -MD -MP -MF $(DEPDIR)/cld_la-cldutil.Tpo -c -o cld_la-cldutil.lo `test -f 'encodings/compact_lang_det/cldutil.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/cldutil.cc\n@am__fastdepCXX_TRUE@\tmv -f $(DEPDIR)/cld_la-cldutil.Tpo $(DEPDIR)/cld_la-cldutil.Plo\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tsource='encodings/compact_lang_det/cldutil.cc' object='cld_la-cldutil.lo' libtool=yes @AMDEPBACKSLASH@\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tDEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@\n@am__fastdepCXX_FALSE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -c -o cld_la-cldutil.lo `test -f 'encodings/compact_lang_det/cldutil.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/cldutil.cc\n\ncld_la-cldutil_dbg_empty.lo: encodings/compact_lang_det/cldutil_dbg_empty.cc\n@am__fastdepCXX_TRUE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -MT cld_la-cldutil_dbg_empty.lo -MD -MP -MF $(DEPDIR)/cld_la-cldutil_dbg_empty.Tpo -c -o cld_la-cldutil_dbg_empty.lo `test -f 'encodings/compact_lang_det/cldutil_dbg_empty.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/cldutil_dbg_empty.cc\n@am__fastdepCXX_TRUE@\tmv -f $(DEPDIR)/cld_la-cldutil_dbg_empty.Tpo $(DEPDIR)/cld_la-cldutil_dbg_empty.Plo\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tsource='encodings/compact_lang_det/cldutil_dbg_empty.cc' object='cld_la-cldutil_dbg_empty.lo' libtool=yes @AMDEPBACKSLASH@\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tDEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@\n@am__fastdepCXX_FALSE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -c -o cld_la-cldutil_dbg_empty.lo `test -f 'encodings/compact_lang_det/cldutil_dbg_empty.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/cldutil_dbg_empty.cc\n\ncld_la-compact_lang_det.lo: encodings/compact_lang_det/compact_lang_det.cc\n@am__fastdepCXX_TRUE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -MT cld_la-compact_lang_det.lo -MD -MP -MF $(DEPDIR)/cld_la-compact_lang_det.Tpo -c -o cld_la-compact_lang_det.lo `test -f 'encodings/compact_lang_det/compact_lang_det.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/compact_lang_det.cc\n@am__fastdepCXX_TRUE@\tmv -f $(DEPDIR)/cld_la-compact_lang_det.Tpo $(DEPDIR)/cld_la-compact_lang_det.Plo\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tsource='encodings/compact_lang_det/compact_lang_det.cc' object='cld_la-compact_lang_det.lo' libtool=yes @AMDEPBACKSLASH@\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tDEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@\n@am__fastdepCXX_FALSE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -c -o cld_la-compact_lang_det.lo `test -f 'encodings/compact_lang_det/compact_lang_det.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/compact_lang_det.cc\n\ncld_la-compact_lang_det_impl.lo: encodings/compact_lang_det/compact_lang_det_impl.cc\n@am__fastdepCXX_TRUE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -MT cld_la-compact_lang_det_impl.lo -MD -MP -MF $(DEPDIR)/cld_la-compact_lang_det_impl.Tpo -c -o cld_la-compact_lang_det_impl.lo `test -f 'encodings/compact_lang_det/compact_lang_det_impl.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/compact_lang_det_impl.cc\n@am__fastdepCXX_TRUE@\tmv -f $(DEPDIR)/cld_la-compact_lang_det_impl.Tpo $(DEPDIR)/cld_la-compact_lang_det_impl.Plo\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tsource='encodings/compact_lang_det/compact_lang_det_impl.cc' object='cld_la-compact_lang_det_impl.lo' libtool=yes @AMDEPBACKSLASH@\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tDEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@\n@am__fastdepCXX_FALSE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -c -o cld_la-compact_lang_det_impl.lo `test -f 'encodings/compact_lang_det/compact_lang_det_impl.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/compact_lang_det_impl.cc\n\ncld_la-ext_lang_enc.lo: encodings/compact_lang_det/ext_lang_enc.cc\n@am__fastdepCXX_TRUE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -MT cld_la-ext_lang_enc.lo -MD -MP -MF $(DEPDIR)/cld_la-ext_lang_enc.Tpo -c -o cld_la-ext_lang_enc.lo `test -f 'encodings/compact_lang_det/ext_lang_enc.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/ext_lang_enc.cc\n@am__fastdepCXX_TRUE@\tmv -f $(DEPDIR)/cld_la-ext_lang_enc.Tpo $(DEPDIR)/cld_la-ext_lang_enc.Plo\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tsource='encodings/compact_lang_det/ext_lang_enc.cc' object='cld_la-ext_lang_enc.lo' libtool=yes @AMDEPBACKSLASH@\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tDEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@\n@am__fastdepCXX_FALSE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -c -o cld_la-ext_lang_enc.lo `test -f 'encodings/compact_lang_det/ext_lang_enc.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/ext_lang_enc.cc\n\ncld_la-getonescriptspan.lo: encodings/compact_lang_det/getonescriptspan.cc\n@am__fastdepCXX_TRUE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -MT cld_la-getonescriptspan.lo -MD -MP -MF $(DEPDIR)/cld_la-getonescriptspan.Tpo -c -o cld_la-getonescriptspan.lo `test -f 'encodings/compact_lang_det/getonescriptspan.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/getonescriptspan.cc\n@am__fastdepCXX_TRUE@\tmv -f $(DEPDIR)/cld_la-getonescriptspan.Tpo $(DEPDIR)/cld_la-getonescriptspan.Plo\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tsource='encodings/compact_lang_det/getonescriptspan.cc' object='cld_la-getonescriptspan.lo' libtool=yes @AMDEPBACKSLASH@\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tDEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@\n@am__fastdepCXX_FALSE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -c -o cld_la-getonescriptspan.lo `test -f 'encodings/compact_lang_det/getonescriptspan.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/getonescriptspan.cc\n\ncld_la-letterscript_enum.lo: encodings/compact_lang_det/letterscript_enum.cc\n@am__fastdepCXX_TRUE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -MT cld_la-letterscript_enum.lo -MD -MP -MF $(DEPDIR)/cld_la-letterscript_enum.Tpo -c -o cld_la-letterscript_enum.lo `test -f 'encodings/compact_lang_det/letterscript_enum.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/letterscript_enum.cc\n@am__fastdepCXX_TRUE@\tmv -f $(DEPDIR)/cld_la-letterscript_enum.Tpo $(DEPDIR)/cld_la-letterscript_enum.Plo\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tsource='encodings/compact_lang_det/letterscript_enum.cc' object='cld_la-letterscript_enum.lo' libtool=yes @AMDEPBACKSLASH@\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tDEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@\n@am__fastdepCXX_FALSE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -c -o cld_la-letterscript_enum.lo `test -f 'encodings/compact_lang_det/letterscript_enum.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/letterscript_enum.cc\n\ncld_la-tote.lo: encodings/compact_lang_det/tote.cc\n@am__fastdepCXX_TRUE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -MT cld_la-tote.lo -MD -MP -MF $(DEPDIR)/cld_la-tote.Tpo -c -o cld_la-tote.lo `test -f 'encodings/compact_lang_det/tote.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/tote.cc\n@am__fastdepCXX_TRUE@\tmv -f $(DEPDIR)/cld_la-tote.Tpo $(DEPDIR)/cld_la-tote.Plo\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tsource='encodings/compact_lang_det/tote.cc' object='cld_la-tote.lo' libtool=yes @AMDEPBACKSLASH@\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tDEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@\n@am__fastdepCXX_FALSE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -c -o cld_la-tote.lo `test -f 'encodings/compact_lang_det/tote.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/tote.cc\n\ncld_la-cld_generated_score_quadchrome_0406.lo: encodings/compact_lang_det/generated/cld_generated_score_quadchrome_0406.cc\n@am__fastdepCXX_TRUE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -MT cld_la-cld_generated_score_quadchrome_0406.lo -MD -MP -MF $(DEPDIR)/cld_la-cld_generated_score_quadchrome_0406.Tpo -c -o cld_la-cld_generated_score_quadchrome_0406.lo `test -f 'encodings/compact_lang_det/generated/cld_generated_score_quadchrome_0406.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/generated/cld_generated_score_quadchrome_0406.cc\n@am__fastdepCXX_TRUE@\tmv -f $(DEPDIR)/cld_la-cld_generated_score_quadchrome_0406.Tpo $(DEPDIR)/cld_la-cld_generated_score_quadchrome_0406.Plo\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tsource='encodings/compact_lang_det/generated/cld_generated_score_quadchrome_0406.cc' object='cld_la-cld_generated_score_quadchrome_0406.lo' libtool=yes @AMDEPBACKSLASH@\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tDEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@\n@am__fastdepCXX_FALSE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -c -o cld_la-cld_generated_score_quadchrome_0406.lo `test -f 'encodings/compact_lang_det/generated/cld_generated_score_quadchrome_0406.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/generated/cld_generated_score_quadchrome_0406.cc\n\ncld_la-compact_lang_det_generated_cjkbis_0.lo: encodings/compact_lang_det/generated/compact_lang_det_generated_cjkbis_0.cc\n@am__fastdepCXX_TRUE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -MT cld_la-compact_lang_det_generated_cjkbis_0.lo -MD -MP -MF $(DEPDIR)/cld_la-compact_lang_det_generated_cjkbis_0.Tpo -c -o cld_la-compact_lang_det_generated_cjkbis_0.lo `test -f 'encodings/compact_lang_det/generated/compact_lang_det_generated_cjkbis_0.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/generated/compact_lang_det_generated_cjkbis_0.cc\n@am__fastdepCXX_TRUE@\tmv -f $(DEPDIR)/cld_la-compact_lang_det_generated_cjkbis_0.Tpo $(DEPDIR)/cld_la-compact_lang_det_generated_cjkbis_0.Plo\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tsource='encodings/compact_lang_det/generated/compact_lang_det_generated_cjkbis_0.cc' object='cld_la-compact_lang_det_generated_cjkbis_0.lo' libtool=yes @AMDEPBACKSLASH@\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tDEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@\n@am__fastdepCXX_FALSE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -c -o cld_la-compact_lang_det_generated_cjkbis_0.lo `test -f 'encodings/compact_lang_det/generated/compact_lang_det_generated_cjkbis_0.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/generated/compact_lang_det_generated_cjkbis_0.cc\n\ncld_la-compact_lang_det_generated_ctjkvz.lo: encodings/compact_lang_det/generated/compact_lang_det_generated_ctjkvz.cc\n@am__fastdepCXX_TRUE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -MT cld_la-compact_lang_det_generated_ctjkvz.lo -MD -MP -MF $(DEPDIR)/cld_la-compact_lang_det_generated_ctjkvz.Tpo -c -o cld_la-compact_lang_det_generated_ctjkvz.lo `test -f 'encodings/compact_lang_det/generated/compact_lang_det_generated_ctjkvz.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/generated/compact_lang_det_generated_ctjkvz.cc\n@am__fastdepCXX_TRUE@\tmv -f $(DEPDIR)/cld_la-compact_lang_det_generated_ctjkvz.Tpo $(DEPDIR)/cld_la-compact_lang_det_generated_ctjkvz.Plo\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tsource='encodings/compact_lang_det/generated/compact_lang_det_generated_ctjkvz.cc' object='cld_la-compact_lang_det_generated_ctjkvz.lo' libtool=yes @AMDEPBACKSLASH@\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tDEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@\n@am__fastdepCXX_FALSE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -c -o cld_la-compact_lang_det_generated_ctjkvz.lo `test -f 'encodings/compact_lang_det/generated/compact_lang_det_generated_ctjkvz.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/generated/compact_lang_det_generated_ctjkvz.cc\n\ncld_la-compact_lang_det_generated_deltaoctachrome.lo: encodings/compact_lang_det/generated/compact_lang_det_generated_deltaoctachrome.cc\n@am__fastdepCXX_TRUE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -MT cld_la-compact_lang_det_generated_deltaoctachrome.lo -MD -MP -MF $(DEPDIR)/cld_la-compact_lang_det_generated_deltaoctachrome.Tpo -c -o cld_la-compact_lang_det_generated_deltaoctachrome.lo `test -f 'encodings/compact_lang_det/generated/compact_lang_det_generated_deltaoctachrome.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/generated/compact_lang_det_generated_deltaoctachrome.cc\n@am__fastdepCXX_TRUE@\tmv -f $(DEPDIR)/cld_la-compact_lang_det_generated_deltaoctachrome.Tpo $(DEPDIR)/cld_la-compact_lang_det_generated_deltaoctachrome.Plo\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tsource='encodings/compact_lang_det/generated/compact_lang_det_generated_deltaoctachrome.cc' object='cld_la-compact_lang_det_generated_deltaoctachrome.lo' libtool=yes @AMDEPBACKSLASH@\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tDEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@\n@am__fastdepCXX_FALSE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -c -o cld_la-compact_lang_det_generated_deltaoctachrome.lo `test -f 'encodings/compact_lang_det/generated/compact_lang_det_generated_deltaoctachrome.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/generated/compact_lang_det_generated_deltaoctachrome.cc\n\ncld_la-compact_lang_det_generated_quadschrome.lo: encodings/compact_lang_det/generated/compact_lang_det_generated_quadschrome.cc\n@am__fastdepCXX_TRUE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -MT cld_la-compact_lang_det_generated_quadschrome.lo -MD -MP -MF $(DEPDIR)/cld_la-compact_lang_det_generated_quadschrome.Tpo -c -o cld_la-compact_lang_det_generated_quadschrome.lo `test -f 'encodings/compact_lang_det/generated/compact_lang_det_generated_quadschrome.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/generated/compact_lang_det_generated_quadschrome.cc\n@am__fastdepCXX_TRUE@\tmv -f $(DEPDIR)/cld_la-compact_lang_det_generated_quadschrome.Tpo $(DEPDIR)/cld_la-compact_lang_det_generated_quadschrome.Plo\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tsource='encodings/compact_lang_det/generated/compact_lang_det_generated_quadschrome.cc' object='cld_la-compact_lang_det_generated_quadschrome.lo' libtool=yes @AMDEPBACKSLASH@\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tDEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@\n@am__fastdepCXX_FALSE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -c -o cld_la-compact_lang_det_generated_quadschrome.lo `test -f 'encodings/compact_lang_det/generated/compact_lang_det_generated_quadschrome.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/generated/compact_lang_det_generated_quadschrome.cc\n\ncld_la-cld_htmlutils_windows.lo: encodings/compact_lang_det/win/cld_htmlutils_windows.cc\n@am__fastdepCXX_TRUE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -MT cld_la-cld_htmlutils_windows.lo -MD -MP -MF $(DEPDIR)/cld_la-cld_htmlutils_windows.Tpo -c -o cld_la-cld_htmlutils_windows.lo `test -f 'encodings/compact_lang_det/win/cld_htmlutils_windows.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/win/cld_htmlutils_windows.cc\n@am__fastdepCXX_TRUE@\tmv -f $(DEPDIR)/cld_la-cld_htmlutils_windows.Tpo $(DEPDIR)/cld_la-cld_htmlutils_windows.Plo\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tsource='encodings/compact_lang_det/win/cld_htmlutils_windows.cc' object='cld_la-cld_htmlutils_windows.lo' libtool=yes @AMDEPBACKSLASH@\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tDEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@\n@am__fastdepCXX_FALSE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -c -o cld_la-cld_htmlutils_windows.lo `test -f 'encodings/compact_lang_det/win/cld_htmlutils_windows.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/win/cld_htmlutils_windows.cc\n\ncld_la-cld_unilib_windows.lo: encodings/compact_lang_det/win/cld_unilib_windows.cc\n@am__fastdepCXX_TRUE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -MT cld_la-cld_unilib_windows.lo -MD -MP -MF $(DEPDIR)/cld_la-cld_unilib_windows.Tpo -c -o cld_la-cld_unilib_windows.lo `test -f 'encodings/compact_lang_det/win/cld_unilib_windows.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/win/cld_unilib_windows.cc\n@am__fastdepCXX_TRUE@\tmv -f $(DEPDIR)/cld_la-cld_unilib_windows.Tpo $(DEPDIR)/cld_la-cld_unilib_windows.Plo\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tsource='encodings/compact_lang_det/win/cld_unilib_windows.cc' object='cld_la-cld_unilib_windows.lo' libtool=yes @AMDEPBACKSLASH@\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tDEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@\n@am__fastdepCXX_FALSE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -c -o cld_la-cld_unilib_windows.lo `test -f 'encodings/compact_lang_det/win/cld_unilib_windows.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/win/cld_unilib_windows.cc\n\ncld_la-cld_utf8statetable.lo: encodings/compact_lang_det/win/cld_utf8statetable.cc\n@am__fastdepCXX_TRUE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -MT cld_la-cld_utf8statetable.lo -MD -MP -MF $(DEPDIR)/cld_la-cld_utf8statetable.Tpo -c -o cld_la-cld_utf8statetable.lo `test -f 'encodings/compact_lang_det/win/cld_utf8statetable.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/win/cld_utf8statetable.cc\n@am__fastdepCXX_TRUE@\tmv -f $(DEPDIR)/cld_la-cld_utf8statetable.Tpo $(DEPDIR)/cld_la-cld_utf8statetable.Plo\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tsource='encodings/compact_lang_det/win/cld_utf8statetable.cc' object='cld_la-cld_utf8statetable.lo' libtool=yes @AMDEPBACKSLASH@\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tDEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@\n@am__fastdepCXX_FALSE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -c -o cld_la-cld_utf8statetable.lo `test -f 'encodings/compact_lang_det/win/cld_utf8statetable.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/win/cld_utf8statetable.cc\n\ncld_la-cld_utf8utils_windows.lo: encodings/compact_lang_det/win/cld_utf8utils_windows.cc\n@am__fastdepCXX_TRUE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -MT cld_la-cld_utf8utils_windows.lo -MD -MP -MF $(DEPDIR)/cld_la-cld_utf8utils_windows.Tpo -c -o cld_la-cld_utf8utils_windows.lo `test -f 'encodings/compact_lang_det/win/cld_utf8utils_windows.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/win/cld_utf8utils_windows.cc\n@am__fastdepCXX_TRUE@\tmv -f $(DEPDIR)/cld_la-cld_utf8utils_windows.Tpo $(DEPDIR)/cld_la-cld_utf8utils_windows.Plo\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tsource='encodings/compact_lang_det/win/cld_utf8utils_windows.cc' object='cld_la-cld_utf8utils_windows.lo' libtool=yes @AMDEPBACKSLASH@\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tDEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@\n@am__fastdepCXX_FALSE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -c -o cld_la-cld_utf8utils_windows.lo `test -f 'encodings/compact_lang_det/win/cld_utf8utils_windows.cc' || echo '$(srcdir)/'`encodings/compact_lang_det/win/cld_utf8utils_windows.cc\n\ncld_la-encodings.lo: encodings/internal/encodings.cc\n@am__fastdepCXX_TRUE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -MT cld_la-encodings.lo -MD -MP -MF $(DEPDIR)/cld_la-encodings.Tpo -c -o cld_la-encodings.lo `test -f 'encodings/internal/encodings.cc' || echo '$(srcdir)/'`encodings/internal/encodings.cc\n@am__fastdepCXX_TRUE@\tmv -f $(DEPDIR)/cld_la-encodings.Tpo $(DEPDIR)/cld_la-encodings.Plo\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tsource='encodings/internal/encodings.cc' object='cld_la-encodings.lo' libtool=yes @AMDEPBACKSLASH@\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tDEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@\n@am__fastdepCXX_FALSE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -c -o cld_la-encodings.lo `test -f 'encodings/internal/encodings.cc' || echo '$(srcdir)/'`encodings/internal/encodings.cc\n\ncld_la-languages.lo: languages/internal/languages.cc\n@am__fastdepCXX_TRUE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -MT cld_la-languages.lo -MD -MP -MF $(DEPDIR)/cld_la-languages.Tpo -c -o cld_la-languages.lo `test -f 'languages/internal/languages.cc' || echo '$(srcdir)/'`languages/internal/languages.cc\n@am__fastdepCXX_TRUE@\tmv -f $(DEPDIR)/cld_la-languages.Tpo $(DEPDIR)/cld_la-languages.Plo\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tsource='languages/internal/languages.cc' object='cld_la-languages.lo' libtool=yes @AMDEPBACKSLASH@\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tDEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@\n@am__fastdepCXX_FALSE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -c -o cld_la-languages.lo `test -f 'languages/internal/languages.cc' || echo '$(srcdir)/'`languages/internal/languages.cc\n\ncld_la-thunk.lo: thunk.cc\n@am__fastdepCXX_TRUE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -MT cld_la-thunk.lo -MD -MP -MF $(DEPDIR)/cld_la-thunk.Tpo -c -o cld_la-thunk.lo `test -f 'thunk.cc' || echo '$(srcdir)/'`thunk.cc\n@am__fastdepCXX_TRUE@\tmv -f $(DEPDIR)/cld_la-thunk.Tpo $(DEPDIR)/cld_la-thunk.Plo\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tsource='thunk.cc' object='cld_la-thunk.lo' libtool=yes @AMDEPBACKSLASH@\n@AMDEP_TRUE@@am__fastdepCXX_FALSE@\tDEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@\n@am__fastdepCXX_FALSE@\t$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(cld_la_CXXFLAGS) $(CXXFLAGS) -c -o cld_la-thunk.lo `test -f 'thunk.cc' || echo '$(srcdir)/'`thunk.cc\n\nmostlyclean-libtool:\n\t-rm -f *.lo\n\nclean-libtool:\n\t-rm -rf .libs _libs\n\ndistclean-libtool:\n\t-rm -f libtool\n\nID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)\n\tlist='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \\\n\tunique=`for i in $$list; do \\\n\t    if test -f \"$$i\"; then echo $$i; else echo $(srcdir)/$$i; fi; \\\n\t  done | \\\n\t  $(AWK) '    { files[$$0] = 1; } \\\n\t       END { for (i in files) print i; }'`; \\\n\tmkid -fID $$unique\ntags: TAGS\n\nTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \\\n\t\t$(TAGS_FILES) $(LISP)\n\ttags=; \\\n\there=`pwd`; \\\n\tlist='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \\\n\tunique=`for i in $$list; do \\\n\t    if test -f \"$$i\"; then echo $$i; else echo $(srcdir)/$$i; fi; \\\n\t  done | \\\n\t  $(AWK) '    { files[$$0] = 1; } \\\n\t       END { for (i in files) print i; }'`; \\\n\tif test -z \"$(ETAGS_ARGS)$$tags$$unique\"; then :; else \\\n\t  test -n \"$$unique\" || unique=$$empty_fix; \\\n\t  $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \\\n\t    $$tags $$unique; \\\n\tfi\nctags: CTAGS\nCTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \\\n\t\t$(TAGS_FILES) $(LISP)\n\ttags=; \\\n\there=`pwd`; \\\n\tlist='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \\\n\tunique=`for i in $$list; do \\\n\t    if test -f \"$$i\"; then echo $$i; else echo $(srcdir)/$$i; fi; \\\n\t  done | \\\n\t  $(AWK) '    { files[$$0] = 1; } \\\n\t       END { for (i in files) print i; }'`; \\\n\ttest -z \"$(CTAGS_ARGS)$$tags$$unique\" \\\n\t  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \\\n\t     $$tags $$unique\n\nGTAGS:\n\there=`$(am__cd) $(top_builddir) && pwd` \\\n\t  && cd $(top_srcdir) \\\n\t  && gtags -i $(GTAGS_ARGS) $$here\n\ndistclean-tags:\n\t-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags\n\ndistdir: $(DISTFILES)\n\t$(am__remove_distdir)\n\ttest -d $(distdir) || mkdir $(distdir)\n\t@srcdirstrip=`echo \"$(srcdir)\" | sed 's/[].[^$$\\\\*]/\\\\\\\\&/g'`; \\\n\ttopsrcdirstrip=`echo \"$(top_srcdir)\" | sed 's/[].[^$$\\\\*]/\\\\\\\\&/g'`; \\\n\tlist='$(DISTFILES)'; \\\n\t  dist_files=`for file in $$list; do echo $$file; done | \\\n\t  sed -e \"s|^$$srcdirstrip/||;t\" \\\n\t      -e \"s|^$$topsrcdirstrip/|$(top_builddir)/|;t\"`; \\\n\tcase $$dist_files in \\\n\t  */*) $(MKDIR_P) `echo \"$$dist_files\" | \\\n\t\t\t   sed '/\\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \\\n\t\t\t   sort -u` ;; \\\n\tesac; \\\n\tfor file in $$dist_files; do \\\n\t  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \\\n\t  if test -d $$d/$$file; then \\\n\t    dir=`echo \"/$$file\" | sed -e 's,/[^/]*$$,,'`; \\\n\t    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \\\n\t      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \\\n\t    fi; \\\n\t    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \\\n\t  else \\\n\t    test -f $(distdir)/$$file \\\n\t    || cp -p $$d/$$file $(distdir)/$$file \\\n\t    || exit 1; \\\n\t  fi; \\\n\tdone\n\t-find $(distdir) -type d ! -perm -755 -exec chmod u+rwx,go+rx {} \\; -o \\\n\t  ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \\; -o \\\n\t  ! -type d ! -perm -400 -exec chmod a+r {} \\; -o \\\n\t  ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \\; \\\n\t|| chmod -R a+r $(distdir)\ndist-gzip: distdir\n\ttardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz\n\t$(am__remove_distdir)\n\ndist-bzip2: distdir\n\ttardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2\n\t$(am__remove_distdir)\n\ndist-tarZ: distdir\n\ttardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z\n\t$(am__remove_distdir)\n\ndist-shar: distdir\n\tshar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz\n\t$(am__remove_distdir)\n\ndist-zip: distdir\n\t-rm -f $(distdir).zip\n\tzip -rq $(distdir).zip $(distdir)\n\t$(am__remove_distdir)\n\ndist dist-all: distdir\n\ttardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz\n\t$(am__remove_distdir)\n\n# This target untars the dist file and tries a VPATH configuration.  Then\n# it guarantees that the distribution is self-contained by making another\n# tarfile.\ndistcheck: dist\n\tcase '$(DIST_ARCHIVES)' in \\\n\t*.tar.gz*) \\\n\t  GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\\\n\t*.tar.bz2*) \\\n\t  bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\\\n\t*.tar.Z*) \\\n\t  uncompress -c $(distdir).tar.Z | $(am__untar) ;;\\\n\t*.shar.gz*) \\\n\t  GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\\\n\t*.zip*) \\\n\t  unzip $(distdir).zip ;;\\\n\tesac\n\tchmod -R a-w $(distdir); chmod a+w $(distdir)\n\tmkdir $(distdir)/_build\n\tmkdir $(distdir)/_inst\n\tchmod a-w $(distdir)\n\tdc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\\\/]:[\\\\/],/,'` \\\n\t  && dc_destdir=\"$${TMPDIR-/tmp}/am-dc-$$$$/\" \\\n\t  && cd $(distdir)/_build \\\n\t  && ../configure --srcdir=.. --prefix=\"$$dc_install_base\" \\\n\t    $(DISTCHECK_CONFIGURE_FLAGS) \\\n\t  && $(MAKE) $(AM_MAKEFLAGS) \\\n\t  && $(MAKE) $(AM_MAKEFLAGS) dvi \\\n\t  && $(MAKE) $(AM_MAKEFLAGS) check \\\n\t  && $(MAKE) $(AM_MAKEFLAGS) install \\\n\t  && $(MAKE) $(AM_MAKEFLAGS) installcheck \\\n\t  && $(MAKE) $(AM_MAKEFLAGS) uninstall \\\n\t  && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir=\"$$dc_install_base\" \\\n\t        distuninstallcheck \\\n\t  && chmod -R a-w \"$$dc_install_base\" \\\n\t  && ({ \\\n\t       (cd ../.. && umask 077 && mkdir \"$$dc_destdir\") \\\n\t       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR=\"$$dc_destdir\" install \\\n\t       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR=\"$$dc_destdir\" uninstall \\\n\t       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR=\"$$dc_destdir\" \\\n\t            distuninstallcheck_dir=\"$$dc_destdir\" distuninstallcheck; \\\n\t      } || { rm -rf \"$$dc_destdir\"; exit 1; }) \\\n\t  && rm -rf \"$$dc_destdir\" \\\n\t  && $(MAKE) $(AM_MAKEFLAGS) dist \\\n\t  && rm -rf $(DIST_ARCHIVES) \\\n\t  && $(MAKE) $(AM_MAKEFLAGS) distcleancheck\n\t$(am__remove_distdir)\n\t@(echo \"$(distdir) archives ready for distribution: \"; \\\n\t  list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \\\n\t  sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'\ndistuninstallcheck:\n\t@cd $(distuninstallcheck_dir) \\\n\t&& test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \\\n\t   || { echo \"ERROR: files left after uninstall:\" ; \\\n\t        if test -n \"$(DESTDIR)\"; then \\\n\t          echo \"  (check DESTDIR support)\"; \\\n\t        fi ; \\\n\t        $(distuninstallcheck_listfiles) ; \\\n\t        exit 1; } >&2\ndistcleancheck: distclean\n\t@if test '$(srcdir)' = . ; then \\\n\t  echo \"ERROR: distcleancheck can only run from a VPATH build\" ; \\\n\t  exit 1 ; \\\n\tfi\n\t@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \\\n\t  || { echo \"ERROR: files left in build directory after distclean:\" ; \\\n\t       $(distcleancheck_listfiles) ; \\\n\t       exit 1; } >&2\ncheck-am: all-am\ncheck: check-am\nall-am: Makefile $(LTLIBRARIES)\ninstalldirs:\n\tfor dir in \"$(DESTDIR)$(libdir)\"; do \\\n\t  test -z \"$$dir\" || $(MKDIR_P) \"$$dir\"; \\\n\tdone\ninstall: install-am\ninstall-exec: install-exec-am\ninstall-data: install-data-am\nuninstall: uninstall-am\n\ninstall-am: all-am\n\t@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am\n\ninstallcheck: installcheck-am\ninstall-strip:\n\t$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM=\"$(INSTALL_STRIP_PROGRAM)\" \\\n\t  install_sh_PROGRAM=\"$(INSTALL_STRIP_PROGRAM)\" INSTALL_STRIP_FLAG=-s \\\n\t  `test -z '$(STRIP)' || \\\n\t    echo \"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'\"` install\nmostlyclean-generic:\n\nclean-generic:\n\ndistclean-generic:\n\t-test -z \"$(CONFIG_CLEAN_FILES)\" || rm -f $(CONFIG_CLEAN_FILES)\n\nmaintainer-clean-generic:\n\t@echo \"This command is intended for maintainers to use\"\n\t@echo \"it deletes files that may require special tools to rebuild.\"\nclean: clean-am\n\nclean-am: clean-generic clean-libLTLIBRARIES clean-libtool \\\n\tmostlyclean-am\n\ndistclean: distclean-am\n\t-rm -f $(am__CONFIG_DISTCLEAN_FILES)\n\t-rm -rf ./$(DEPDIR)\n\t-rm -f Makefile\ndistclean-am: clean-am distclean-compile distclean-generic \\\n\tdistclean-libtool distclean-tags\n\ndvi: dvi-am\n\ndvi-am:\n\nhtml: html-am\n\ninfo: info-am\n\ninfo-am:\n\ninstall-data-am:\n\ninstall-dvi: install-dvi-am\n\ninstall-exec-am: install-libLTLIBRARIES\n\ninstall-html: install-html-am\n\ninstall-info: install-info-am\n\ninstall-man:\n\ninstall-pdf: install-pdf-am\n\ninstall-ps: install-ps-am\n\ninstallcheck-am:\n\nmaintainer-clean: maintainer-clean-am\n\t-rm -f $(am__CONFIG_DISTCLEAN_FILES)\n\t-rm -rf $(top_srcdir)/autom4te.cache\n\t-rm -rf ./$(DEPDIR)\n\t-rm -f Makefile\nmaintainer-clean-am: distclean-am maintainer-clean-generic\n\nmostlyclean: mostlyclean-am\n\nmostlyclean-am: mostlyclean-compile mostlyclean-generic \\\n\tmostlyclean-libtool\n\npdf: pdf-am\n\npdf-am:\n\nps: ps-am\n\nps-am:\n\nuninstall-am: uninstall-libLTLIBRARIES\n\n.MAKE: install-am install-strip\n\n.PHONY: CTAGS GTAGS all all-am am--refresh check check-am clean \\\n\tclean-generic clean-libLTLIBRARIES clean-libtool ctags dist \\\n\tdist-all dist-bzip2 dist-gzip dist-shar dist-tarZ dist-zip \\\n\tdistcheck distclean distclean-compile distclean-generic \\\n\tdistclean-libtool distclean-tags distcleancheck distdir \\\n\tdistuninstallcheck dvi dvi-am html html-am info info-am \\\n\tinstall install-am install-data install-data-am install-dvi \\\n\tinstall-dvi-am install-exec install-exec-am install-html \\\n\tinstall-html-am install-info install-info-am \\\n\tinstall-libLTLIBRARIES install-man install-pdf install-pdf-am \\\n\tinstall-ps install-ps-am install-strip installcheck \\\n\tinstallcheck-am installdirs maintainer-clean \\\n\tmaintainer-clean-generic mostlyclean mostlyclean-compile \\\n\tmostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \\\n\ttags uninstall uninstall-am uninstall-libLTLIBRARIES\n\n# Tell versions [3.59,3.63) of GNU make to not export all variables.\n# Otherwise a system limit (for SysV at least) may be exceeded.\n.NOEXPORT:\n"
  },
  {
    "path": "ext/cld/aclocal.m4",
    "content": "# generated automatically by aclocal 1.10 -*- Autoconf -*-\n\n# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,\n# 2005, 2006  Free Software Foundation, Inc.\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY, to the extent permitted by law; without\n# even the implied warranty of MERCHANTABILITY or FITNESS FOR A\n# PARTICULAR PURPOSE.\n\nm4_if(m4_PACKAGE_VERSION, [2.61],,\n[m4_fatal([this file was generated for autoconf 2.61.\nYou have another version of autoconf.  If you want to use that,\nyou should regenerate the build system entirely.], [63])])\n\n# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-\n#\n#   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,\n#                 2006, 2007, 2008, 2009, 2010 Free Software Foundation,\n#                 Inc.\n#   Written by Gordon Matzigkeit, 1996\n#\n# This file is free software; the Free Software Foundation gives\n# unlimited permission to copy and/or distribute it, with or without\n# modifications, as long as this notice is preserved.\n\nm4_define([_LT_COPYING], [dnl\n#   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,\n#                 2006, 2007, 2008, 2009, 2010 Free Software Foundation,\n#                 Inc.\n#   Written by Gordon Matzigkeit, 1996\n#\n#   This file is part of GNU Libtool.\n#\n# GNU Libtool is free software; you can redistribute it and/or\n# modify it under the terms of the GNU General Public License as\n# published by the Free Software Foundation; either version 2 of\n# the License, or (at your option) any later version.\n#\n# As a special exception to the GNU General Public License,\n# if you distribute this file as part of a program or library that\n# is built using GNU Libtool, you may include this file under the\n# same distribution terms that you use for the rest of that program.\n#\n# GNU Libtool is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with GNU Libtool; see the file COPYING.  If not, a copy\n# can be downloaded from http://www.gnu.org/licenses/gpl.html, or\n# obtained by writing to the Free Software Foundation, Inc.,\n# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n])\n\n# serial 57 LT_INIT\n\n\n# LT_PREREQ(VERSION)\n# ------------------\n# Complain and exit if this libtool version is less that VERSION.\nm4_defun([LT_PREREQ],\n[m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1,\n       [m4_default([$3],\n\t\t   [m4_fatal([Libtool version $1 or higher is required],\n\t\t             63)])],\n       [$2])])\n\n\n# _LT_CHECK_BUILDDIR\n# ------------------\n# Complain if the absolute build directory name contains unusual characters\nm4_defun([_LT_CHECK_BUILDDIR],\n[case `pwd` in\n  *\\ * | *\\\t*)\n    AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;;\nesac\n])\n\n\n# LT_INIT([OPTIONS])\n# ------------------\nAC_DEFUN([LT_INIT],\n[AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT\nAC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl\nAC_BEFORE([$0], [LT_LANG])dnl\nAC_BEFORE([$0], [LT_OUTPUT])dnl\nAC_BEFORE([$0], [LTDL_INIT])dnl\nm4_require([_LT_CHECK_BUILDDIR])dnl\n\ndnl Autoconf doesn't catch unexpanded LT_ macros by default:\nm4_pattern_forbid([^_?LT_[A-Z_]+$])dnl\nm4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl\ndnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4\ndnl unless we require an AC_DEFUNed macro:\nAC_REQUIRE([LTOPTIONS_VERSION])dnl\nAC_REQUIRE([LTSUGAR_VERSION])dnl\nAC_REQUIRE([LTVERSION_VERSION])dnl\nAC_REQUIRE([LTOBSOLETE_VERSION])dnl\nm4_require([_LT_PROG_LTMAIN])dnl\n\n_LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}])\n\ndnl Parse OPTIONS\n_LT_SET_OPTIONS([$0], [$1])\n\n# This can be used to rebuild libtool when needed\nLIBTOOL_DEPS=\"$ltmain\"\n\n# Always use our own libtool.\nLIBTOOL='$(SHELL) $(top_builddir)/libtool'\nAC_SUBST(LIBTOOL)dnl\n\n_LT_SETUP\n\n# Only expand once:\nm4_define([LT_INIT])\n])# LT_INIT\n\n# Old names:\nAU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT])\nAU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_PROG_LIBTOOL], [])\ndnl AC_DEFUN([AM_PROG_LIBTOOL], [])\n\n\n# _LT_CC_BASENAME(CC)\n# -------------------\n# Calculate cc_basename.  Skip known compiler wrappers and cross-prefix.\nm4_defun([_LT_CC_BASENAME],\n[for cc_temp in $1\"\"; do\n  case $cc_temp in\n    compile | *[[\\\\/]]compile | ccache | *[[\\\\/]]ccache ) ;;\n    distcc | *[[\\\\/]]distcc | purify | *[[\\\\/]]purify ) ;;\n    \\-*) ;;\n    *) break;;\n  esac\ndone\ncc_basename=`$ECHO \"$cc_temp\" | $SED \"s%.*/%%; s%^$host_alias-%%\"`\n])\n\n\n# _LT_FILEUTILS_DEFAULTS\n# ----------------------\n# It is okay to use these file commands and assume they have been set\n# sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'.\nm4_defun([_LT_FILEUTILS_DEFAULTS],\n[: ${CP=\"cp -f\"}\n: ${MV=\"mv -f\"}\n: ${RM=\"rm -f\"}\n])# _LT_FILEUTILS_DEFAULTS\n\n\n# _LT_SETUP\n# ---------\nm4_defun([_LT_SETUP],\n[AC_REQUIRE([AC_CANONICAL_HOST])dnl\nAC_REQUIRE([AC_CANONICAL_BUILD])dnl\nAC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl\nAC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl\n\n_LT_DECL([], [host_alias], [0], [The host system])dnl\n_LT_DECL([], [host], [0])dnl\n_LT_DECL([], [host_os], [0])dnl\ndnl\n_LT_DECL([], [build_alias], [0], [The build system])dnl\n_LT_DECL([], [build], [0])dnl\n_LT_DECL([], [build_os], [0])dnl\ndnl\nAC_REQUIRE([AC_PROG_CC])dnl\nAC_REQUIRE([LT_PATH_LD])dnl\nAC_REQUIRE([LT_PATH_NM])dnl\ndnl\nAC_REQUIRE([AC_PROG_LN_S])dnl\ntest -z \"$LN_S\" && LN_S=\"ln -s\"\n_LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl\ndnl\nAC_REQUIRE([LT_CMD_MAX_LEN])dnl\n_LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally \"o\")])dnl\n_LT_DECL([], [exeext], [0], [Executable file suffix (normally \"\")])dnl\ndnl\nm4_require([_LT_FILEUTILS_DEFAULTS])dnl\nm4_require([_LT_CHECK_SHELL_FEATURES])dnl\nm4_require([_LT_CMD_RELOAD])dnl\nm4_require([_LT_CHECK_MAGIC_METHOD])dnl\nm4_require([_LT_CMD_OLD_ARCHIVE])dnl\nm4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl\n\n_LT_CONFIG_LIBTOOL_INIT([\n# See if we are running on zsh, and set the options which allow our\n# commands through without removal of \\ escapes INIT.\nif test -n \"\\${ZSH_VERSION+set}\" ; then\n   setopt NO_GLOB_SUBST\nfi\n])\nif test -n \"${ZSH_VERSION+set}\" ; then\n   setopt NO_GLOB_SUBST\nfi\n\n_LT_CHECK_OBJDIR\n\nm4_require([_LT_TAG_COMPILER])dnl\n\ncase $host_os in\naix3*)\n  # AIX sometimes has problems with the GCC collect2 program.  For some\n  # reason, if we set the COLLECT_NAMES environment variable, the problems\n  # vanish in a puff of smoke.\n  if test \"X${COLLECT_NAMES+set}\" != Xset; then\n    COLLECT_NAMES=\n    export COLLECT_NAMES\n  fi\n  ;;\nesac\n\n# Global variables:\nofile=libtool\ncan_build_shared=yes\n\n# All known linkers require a `.a' archive for static linking (except MSVC,\n# which needs '.lib').\nlibext=a\n\nwith_gnu_ld=\"$lt_cv_prog_gnu_ld\"\n\nold_CC=\"$CC\"\nold_CFLAGS=\"$CFLAGS\"\n\n# Set sane defaults for various variables\ntest -z \"$CC\" && CC=cc\ntest -z \"$LTCC\" && LTCC=$CC\ntest -z \"$LTCFLAGS\" && LTCFLAGS=$CFLAGS\ntest -z \"$LD\" && LD=ld\ntest -z \"$ac_objext\" && ac_objext=o\n\n_LT_CC_BASENAME([$compiler])\n\n# Only perform the check for file, if the check method requires it\ntest -z \"$MAGIC_CMD\" && MAGIC_CMD=file\ncase $deplibs_check_method in\nfile_magic*)\n  if test \"$file_magic_cmd\" = '$MAGIC_CMD'; then\n    _LT_PATH_MAGIC\n  fi\n  ;;\nesac\n\n# Use C for the default configuration in the libtool script\nLT_SUPPORTED_TAG([CC])\n_LT_LANG_C_CONFIG\n_LT_LANG_DEFAULT_CONFIG\n_LT_CONFIG_COMMANDS\n])# _LT_SETUP\n\n\n# _LT_PREPARE_SED_QUOTE_VARS\n# --------------------------\n# Define a few sed substitution that help us do robust quoting.\nm4_defun([_LT_PREPARE_SED_QUOTE_VARS],\n[# Backslashify metacharacters that are still active within\n# double-quoted strings.\nsed_quote_subst='s/\\([[\"`$\\\\]]\\)/\\\\\\1/g'\n\n# Same as above, but do not quote variable references.\ndouble_quote_subst='s/\\([[\"`\\\\]]\\)/\\\\\\1/g'\n\n# Sed substitution to delay expansion of an escaped shell variable in a\n# double_quote_subst'ed string.\ndelay_variable_subst='s/\\\\\\\\\\\\\\\\\\\\\\$/\\\\\\\\\\\\$/g'\n\n# Sed substitution to delay expansion of an escaped single quote.\ndelay_single_quote_subst='s/'\\''/'\\'\\\\\\\\\\\\\\'\\''/g'\n\n# Sed substitution to avoid accidental globbing in evaled expressions\nno_glob_subst='s/\\*/\\\\\\*/g'\n])\n\n# _LT_PROG_LTMAIN\n# ---------------\n# Note that this code is called both from `configure', and `config.status'\n# now that we use AC_CONFIG_COMMANDS to generate libtool.  Notably,\n# `config.status' has no value for ac_aux_dir unless we are using Automake,\n# so we pass a copy along to make sure it has a sensible value anyway.\nm4_defun([_LT_PROG_LTMAIN],\n[m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl\n_LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir'])\nltmain=\"$ac_aux_dir/ltmain.sh\"\n])# _LT_PROG_LTMAIN\n\n\n\n# So that we can recreate a full libtool script including additional\n# tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS\n# in macros and then make a single call at the end using the `libtool'\n# label.\n\n\n# _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS])\n# ----------------------------------------\n# Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later.\nm4_define([_LT_CONFIG_LIBTOOL_INIT],\n[m4_ifval([$1],\n          [m4_append([_LT_OUTPUT_LIBTOOL_INIT],\n                     [$1\n])])])\n\n# Initialize.\nm4_define([_LT_OUTPUT_LIBTOOL_INIT])\n\n\n# _LT_CONFIG_LIBTOOL([COMMANDS])\n# ------------------------------\n# Register COMMANDS to be passed to AC_CONFIG_COMMANDS later.\nm4_define([_LT_CONFIG_LIBTOOL],\n[m4_ifval([$1],\n          [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS],\n                     [$1\n])])])\n\n# Initialize.\nm4_define([_LT_OUTPUT_LIBTOOL_COMMANDS])\n\n\n# _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS])\n# -----------------------------------------------------\nm4_defun([_LT_CONFIG_SAVE_COMMANDS],\n[_LT_CONFIG_LIBTOOL([$1])\n_LT_CONFIG_LIBTOOL_INIT([$2])\n])\n\n\n# _LT_FORMAT_COMMENT([COMMENT])\n# -----------------------------\n# Add leading comment marks to the start of each line, and a trailing\n# full-stop to the whole comment if one is not present already.\nm4_define([_LT_FORMAT_COMMENT],\n[m4_ifval([$1], [\nm4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])],\n              [['`$\\]], [\\\\\\&])]m4_bmatch([$1], [[!?.]$], [], [.])\n)])\n\n\n\n\n\n# _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?])\n# -------------------------------------------------------------------\n# CONFIGNAME is the name given to the value in the libtool script.\n# VARNAME is the (base) name used in the configure script.\n# VALUE may be 0, 1 or 2 for a computed quote escaped value based on\n# VARNAME.  Any other value will be used directly.\nm4_define([_LT_DECL],\n[lt_if_append_uniq([lt_decl_varnames], [$2], [, ],\n    [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name],\n\t[m4_ifval([$1], [$1], [$2])])\n    lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3])\n    m4_ifval([$4],\n\t[lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])])\n    lt_dict_add_subkey([lt_decl_dict], [$2],\n\t[tagged?], [m4_ifval([$5], [yes], [no])])])\n])\n\n\n# _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION])\n# --------------------------------------------------------\nm4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])])\n\n\n# lt_decl_tag_varnames([SEPARATOR], [VARNAME1...])\n# ------------------------------------------------\nm4_define([lt_decl_tag_varnames],\n[_lt_decl_filter([tagged?], [yes], $@)])\n\n\n# _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..])\n# ---------------------------------------------------------\nm4_define([_lt_decl_filter],\n[m4_case([$#],\n  [0], [m4_fatal([$0: too few arguments: $#])],\n  [1], [m4_fatal([$0: too few arguments: $#: $1])],\n  [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)],\n  [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)],\n  [lt_dict_filter([lt_decl_dict], $@)])[]dnl\n])\n\n\n# lt_decl_quote_varnames([SEPARATOR], [VARNAME1...])\n# --------------------------------------------------\nm4_define([lt_decl_quote_varnames],\n[_lt_decl_filter([value], [1], $@)])\n\n\n# lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...])\n# ---------------------------------------------------\nm4_define([lt_decl_dquote_varnames],\n[_lt_decl_filter([value], [2], $@)])\n\n\n# lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...])\n# ---------------------------------------------------\nm4_define([lt_decl_varnames_tagged],\n[m4_assert([$# <= 2])dnl\n_$0(m4_quote(m4_default([$1], [[, ]])),\n    m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]),\n    m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))])\nm4_define([_lt_decl_varnames_tagged],\n[m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])])\n\n\n# lt_decl_all_varnames([SEPARATOR], [VARNAME1...])\n# ------------------------------------------------\nm4_define([lt_decl_all_varnames],\n[_$0(m4_quote(m4_default([$1], [[, ]])),\n     m4_if([$2], [],\n\t   m4_quote(lt_decl_varnames),\n\tm4_quote(m4_shift($@))))[]dnl\n])\nm4_define([_lt_decl_all_varnames],\n[lt_join($@, lt_decl_varnames_tagged([$1],\n\t\t\tlt_decl_tag_varnames([[, ]], m4_shift($@))))dnl\n])\n\n\n# _LT_CONFIG_STATUS_DECLARE([VARNAME])\n# ------------------------------------\n# Quote a variable value, and forward it to `config.status' so that its\n# declaration there will have the same value as in `configure'.  VARNAME\n# must have a single quote delimited value for this to work.\nm4_define([_LT_CONFIG_STATUS_DECLARE],\n[$1='`$ECHO \"$][$1\" | $SED \"$delay_single_quote_subst\"`'])\n\n\n# _LT_CONFIG_STATUS_DECLARATIONS\n# ------------------------------\n# We delimit libtool config variables with single quotes, so when\n# we write them to config.status, we have to be sure to quote all\n# embedded single quotes properly.  In configure, this macro expands\n# each variable declared with _LT_DECL (and _LT_TAGDECL) into:\n#\n#    <var>='`$ECHO \"$<var>\" | $SED \"$delay_single_quote_subst\"`'\nm4_defun([_LT_CONFIG_STATUS_DECLARATIONS],\n[m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames),\n    [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])])\n\n\n# _LT_LIBTOOL_TAGS\n# ----------------\n# Output comment and list of tags supported by the script\nm4_defun([_LT_LIBTOOL_TAGS],\n[_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl\navailable_tags=\"_LT_TAGS\"dnl\n])\n\n\n# _LT_LIBTOOL_DECLARE(VARNAME, [TAG])\n# -----------------------------------\n# Extract the dictionary values for VARNAME (optionally with TAG) and\n# expand to a commented shell variable setting:\n#\n#    # Some comment about what VAR is for.\n#    visible_name=$lt_internal_name\nm4_define([_LT_LIBTOOL_DECLARE],\n[_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1],\n\t\t\t\t\t   [description])))[]dnl\nm4_pushdef([_libtool_name],\n    m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl\nm4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])),\n    [0], [_libtool_name=[$]$1],\n    [1], [_libtool_name=$lt_[]$1],\n    [2], [_libtool_name=$lt_[]$1],\n    [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl\nm4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl\n])\n\n\n# _LT_LIBTOOL_CONFIG_VARS\n# -----------------------\n# Produce commented declarations of non-tagged libtool config variables\n# suitable for insertion in the LIBTOOL CONFIG section of the `libtool'\n# script.  Tagged libtool config variables (even for the LIBTOOL CONFIG\n# section) are produced by _LT_LIBTOOL_TAG_VARS.\nm4_defun([_LT_LIBTOOL_CONFIG_VARS],\n[m4_foreach([_lt_var],\n    m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)),\n    [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])])\n\n\n# _LT_LIBTOOL_TAG_VARS(TAG)\n# -------------------------\nm4_define([_LT_LIBTOOL_TAG_VARS],\n[m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames),\n    [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])])\n\n\n# _LT_TAGVAR(VARNAME, [TAGNAME])\n# ------------------------------\nm4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])])\n\n\n# _LT_CONFIG_COMMANDS\n# -------------------\n# Send accumulated output to $CONFIG_STATUS.  Thanks to the lists of\n# variables for single and double quote escaping we saved from calls\n# to _LT_DECL, we can put quote escaped variables declarations\n# into `config.status', and then the shell code to quote escape them in\n# for loops in `config.status'.  Finally, any additional code accumulated\n# from calls to _LT_CONFIG_LIBTOOL_INIT is expanded.\nm4_defun([_LT_CONFIG_COMMANDS],\n[AC_PROVIDE_IFELSE([LT_OUTPUT],\n\tdnl If the libtool generation code has been placed in $CONFIG_LT,\n\tdnl instead of duplicating it all over again into config.status,\n\tdnl then we will have config.status run $CONFIG_LT later, so it\n\tdnl needs to know what name is stored there:\n        [AC_CONFIG_COMMANDS([libtool],\n            [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])],\n    dnl If the libtool generation code is destined for config.status,\n    dnl expand the accumulated commands and init code now:\n    [AC_CONFIG_COMMANDS([libtool],\n        [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])])\n])#_LT_CONFIG_COMMANDS\n\n\n# Initialize.\nm4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT],\n[\n\n# The HP-UX ksh and POSIX shell print the target directory to stdout\n# if CDPATH is set.\n(unset CDPATH) >/dev/null 2>&1 && unset CDPATH\n\nsed_quote_subst='$sed_quote_subst'\ndouble_quote_subst='$double_quote_subst'\ndelay_variable_subst='$delay_variable_subst'\n_LT_CONFIG_STATUS_DECLARATIONS\nLTCC='$LTCC'\nLTCFLAGS='$LTCFLAGS'\ncompiler='$compiler_DEFAULT'\n\n# A function that is used when there is no print builtin or printf.\nfunc_fallback_echo ()\n{\n  eval 'cat <<_LTECHO_EOF\n\\$[]1\n_LTECHO_EOF'\n}\n\n# Quote evaled strings.\nfor var in lt_decl_all_varnames([[ \\\n]], lt_decl_quote_varnames); do\n    case \\`eval \\\\\\\\\\$ECHO \\\\\\\\\"\"\\\\\\\\\\$\\$var\"\\\\\\\\\"\\` in\n    *[[\\\\\\\\\\\\\\`\\\\\"\\\\\\$]]*)\n      eval \"lt_\\$var=\\\\\\\\\\\\\"\\\\\\`\\\\\\$ECHO \\\\\"\\\\\\$\\$var\\\\\" | \\\\\\$SED \\\\\"\\\\\\$sed_quote_subst\\\\\"\\\\\\`\\\\\\\\\\\\\"\"\n      ;;\n    *)\n      eval \"lt_\\$var=\\\\\\\\\\\\\"\\\\\\$\\$var\\\\\\\\\\\\\"\"\n      ;;\n    esac\ndone\n\n# Double-quote double-evaled strings.\nfor var in lt_decl_all_varnames([[ \\\n]], lt_decl_dquote_varnames); do\n    case \\`eval \\\\\\\\\\$ECHO \\\\\\\\\"\"\\\\\\\\\\$\\$var\"\\\\\\\\\"\\` in\n    *[[\\\\\\\\\\\\\\`\\\\\"\\\\\\$]]*)\n      eval \"lt_\\$var=\\\\\\\\\\\\\"\\\\\\`\\\\\\$ECHO \\\\\"\\\\\\$\\$var\\\\\" | \\\\\\$SED -e \\\\\"\\\\\\$double_quote_subst\\\\\" -e \\\\\"\\\\\\$sed_quote_subst\\\\\" -e \\\\\"\\\\\\$delay_variable_subst\\\\\"\\\\\\`\\\\\\\\\\\\\"\"\n      ;;\n    *)\n      eval \"lt_\\$var=\\\\\\\\\\\\\"\\\\\\$\\$var\\\\\\\\\\\\\"\"\n      ;;\n    esac\ndone\n\n_LT_OUTPUT_LIBTOOL_INIT\n])\n\n# _LT_GENERATED_FILE_INIT(FILE, [COMMENT])\n# ------------------------------------\n# Generate a child script FILE with all initialization necessary to\n# reuse the environment learned by the parent script, and make the\n# file executable.  If COMMENT is supplied, it is inserted after the\n# `#!' sequence but before initialization text begins.  After this\n# macro, additional text can be appended to FILE to form the body of\n# the child script.  The macro ends with non-zero status if the\n# file could not be fully written (such as if the disk is full).\nm4_ifdef([AS_INIT_GENERATED],\n[m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])],\n[m4_defun([_LT_GENERATED_FILE_INIT],\n[m4_require([AS_PREPARE])]dnl\n[m4_pushdef([AS_MESSAGE_LOG_FD])]dnl\n[lt_write_fail=0\ncat >$1 <<_ASEOF || lt_write_fail=1\n#! $SHELL\n# Generated by $as_me.\n$2\nSHELL=\\${CONFIG_SHELL-$SHELL}\nexport SHELL\n_ASEOF\ncat >>$1 <<\\_ASEOF || lt_write_fail=1\nAS_SHELL_SANITIZE\n_AS_PREPARE\nexec AS_MESSAGE_FD>&1\n_ASEOF\ntest $lt_write_fail = 0 && chmod +x $1[]dnl\nm4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT\n\n# LT_OUTPUT\n# ---------\n# This macro allows early generation of the libtool script (before\n# AC_OUTPUT is called), incase it is used in configure for compilation\n# tests.\nAC_DEFUN([LT_OUTPUT],\n[: ${CONFIG_LT=./config.lt}\nAC_MSG_NOTICE([creating $CONFIG_LT])\n_LT_GENERATED_FILE_INIT([\"$CONFIG_LT\"],\n[# Run this file to recreate a libtool stub with the current configuration.])\n\ncat >>\"$CONFIG_LT\" <<\\_LTEOF\nlt_cl_silent=false\nexec AS_MESSAGE_LOG_FD>>config.log\n{\n  echo\n  AS_BOX([Running $as_me.])\n} >&AS_MESSAGE_LOG_FD\n\nlt_cl_help=\"\\\n\\`$as_me' creates a local libtool stub from the current configuration,\nfor use in further configure time tests before the real libtool is\ngenerated.\n\nUsage: $[0] [[OPTIONS]]\n\n  -h, --help      print this help, then exit\n  -V, --version   print version number, then exit\n  -q, --quiet     do not print progress messages\n  -d, --debug     don't remove temporary files\n\nReport bugs to <bug-libtool@gnu.org>.\"\n\nlt_cl_version=\"\\\nm4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl\nm4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION])\nconfigured by $[0], generated by m4_PACKAGE_STRING.\n\nCopyright (C) 2010 Free Software Foundation, Inc.\nThis config.lt script is free software; the Free Software Foundation\ngives unlimited permision to copy, distribute and modify it.\"\n\nwhile test $[#] != 0\ndo\n  case $[1] in\n    --version | --v* | -V )\n      echo \"$lt_cl_version\"; exit 0 ;;\n    --help | --h* | -h )\n      echo \"$lt_cl_help\"; exit 0 ;;\n    --debug | --d* | -d )\n      debug=: ;;\n    --quiet | --q* | --silent | --s* | -q )\n      lt_cl_silent=: ;;\n\n    -*) AC_MSG_ERROR([unrecognized option: $[1]\nTry \\`$[0] --help' for more information.]) ;;\n\n    *) AC_MSG_ERROR([unrecognized argument: $[1]\nTry \\`$[0] --help' for more information.]) ;;\n  esac\n  shift\ndone\n\nif $lt_cl_silent; then\n  exec AS_MESSAGE_FD>/dev/null\nfi\n_LTEOF\n\ncat >>\"$CONFIG_LT\" <<_LTEOF\n_LT_OUTPUT_LIBTOOL_COMMANDS_INIT\n_LTEOF\n\ncat >>\"$CONFIG_LT\" <<\\_LTEOF\nAC_MSG_NOTICE([creating $ofile])\n_LT_OUTPUT_LIBTOOL_COMMANDS\nAS_EXIT(0)\n_LTEOF\nchmod +x \"$CONFIG_LT\"\n\n# configure is writing to config.log, but config.lt does its own redirection,\n# appending to config.log, which fails on DOS, as config.log is still kept\n# open by configure.  Here we exec the FD to /dev/null, effectively closing\n# config.log, so it can be properly (re)opened and appended to by config.lt.\nlt_cl_success=:\ntest \"$silent\" = yes &&\n  lt_config_lt_args=\"$lt_config_lt_args --quiet\"\nexec AS_MESSAGE_LOG_FD>/dev/null\n$SHELL \"$CONFIG_LT\" $lt_config_lt_args || lt_cl_success=false\nexec AS_MESSAGE_LOG_FD>>config.log\n$lt_cl_success || AS_EXIT(1)\n])# LT_OUTPUT\n\n\n# _LT_CONFIG(TAG)\n# ---------------\n# If TAG is the built-in tag, create an initial libtool script with a\n# default configuration from the untagged config vars.  Otherwise add code\n# to config.status for appending the configuration named by TAG from the\n# matching tagged config vars.\nm4_defun([_LT_CONFIG],\n[m4_require([_LT_FILEUTILS_DEFAULTS])dnl\n_LT_CONFIG_SAVE_COMMANDS([\n  m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl\n  m4_if(_LT_TAG, [C], [\n    # See if we are running on zsh, and set the options which allow our\n    # commands through without removal of \\ escapes.\n    if test -n \"${ZSH_VERSION+set}\" ; then\n      setopt NO_GLOB_SUBST\n    fi\n\n    cfgfile=\"${ofile}T\"\n    trap \"$RM -f \\\"$cfgfile\\\"; exit 1\" 1 2 15\n    $RM -f \"$cfgfile\"\n\n    cat <<_LT_EOF >> \"$cfgfile\"\n#! $SHELL\n\n# `$ECHO \"$ofile\" | sed 's%^.*/%%'` - Provide generalized library-building support services.\n# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION\n# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:\n# NOTE: Changes made to this file will be lost: look at ltmain.sh.\n#\n_LT_COPYING\n_LT_LIBTOOL_TAGS\n\n# ### BEGIN LIBTOOL CONFIG\n_LT_LIBTOOL_CONFIG_VARS\n_LT_LIBTOOL_TAG_VARS\n# ### END LIBTOOL CONFIG\n\n_LT_EOF\n\n  case $host_os in\n  aix3*)\n    cat <<\\_LT_EOF >> \"$cfgfile\"\n# AIX sometimes has problems with the GCC collect2 program.  For some\n# reason, if we set the COLLECT_NAMES environment variable, the problems\n# vanish in a puff of smoke.\nif test \"X${COLLECT_NAMES+set}\" != Xset; then\n  COLLECT_NAMES=\n  export COLLECT_NAMES\nfi\n_LT_EOF\n    ;;\n  esac\n\n  _LT_PROG_LTMAIN\n\n  # We use sed instead of cat because bash on DJGPP gets confused if\n  # if finds mixed CR/LF and LF-only lines.  Since sed operates in\n  # text mode, it properly converts lines to CR/LF.  This bash problem\n  # is reportedly fixed, but why not run on old versions too?\n  sed '/^# Generated shell functions inserted here/q' \"$ltmain\" >> \"$cfgfile\" \\\n    || (rm -f \"$cfgfile\"; exit 1)\n\n  _LT_PROG_XSI_SHELLFNS\n\n  sed -n '/^# Generated shell functions inserted here/,$p' \"$ltmain\" >> \"$cfgfile\" \\\n    || (rm -f \"$cfgfile\"; exit 1)\n\n  mv -f \"$cfgfile\" \"$ofile\" ||\n    (rm -f \"$ofile\" && cp \"$cfgfile\" \"$ofile\" && rm -f \"$cfgfile\")\n  chmod +x \"$ofile\"\n],\n[cat <<_LT_EOF >> \"$ofile\"\n\ndnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded\ndnl in a comment (ie after a #).\n# ### BEGIN LIBTOOL TAG CONFIG: $1\n_LT_LIBTOOL_TAG_VARS(_LT_TAG)\n# ### END LIBTOOL TAG CONFIG: $1\n_LT_EOF\n])dnl /m4_if\n],\n[m4_if([$1], [], [\n    PACKAGE='$PACKAGE'\n    VERSION='$VERSION'\n    TIMESTAMP='$TIMESTAMP'\n    RM='$RM'\n    ofile='$ofile'], [])\n])dnl /_LT_CONFIG_SAVE_COMMANDS\n])# _LT_CONFIG\n\n\n# LT_SUPPORTED_TAG(TAG)\n# ---------------------\n# Trace this macro to discover what tags are supported by the libtool\n# --tag option, using:\n#    autoconf --trace 'LT_SUPPORTED_TAG:$1'\nAC_DEFUN([LT_SUPPORTED_TAG], [])\n\n\n# C support is built-in for now\nm4_define([_LT_LANG_C_enabled], [])\nm4_define([_LT_TAGS], [])\n\n\n# LT_LANG(LANG)\n# -------------\n# Enable libtool support for the given language if not already enabled.\nAC_DEFUN([LT_LANG],\n[AC_BEFORE([$0], [LT_OUTPUT])dnl\nm4_case([$1],\n  [C],\t\t\t[_LT_LANG(C)],\n  [C++],\t\t[_LT_LANG(CXX)],\n  [Java],\t\t[_LT_LANG(GCJ)],\n  [Fortran 77],\t\t[_LT_LANG(F77)],\n  [Fortran],\t\t[_LT_LANG(FC)],\n  [Windows Resource],\t[_LT_LANG(RC)],\n  [m4_ifdef([_LT_LANG_]$1[_CONFIG],\n    [_LT_LANG($1)],\n    [m4_fatal([$0: unsupported language: \"$1\"])])])dnl\n])# LT_LANG\n\n\n# _LT_LANG(LANGNAME)\n# ------------------\nm4_defun([_LT_LANG],\n[m4_ifdef([_LT_LANG_]$1[_enabled], [],\n  [LT_SUPPORTED_TAG([$1])dnl\n  m4_append([_LT_TAGS], [$1 ])dnl\n  m4_define([_LT_LANG_]$1[_enabled], [])dnl\n  _LT_LANG_$1_CONFIG($1)])dnl\n])# _LT_LANG\n\n\n# _LT_LANG_DEFAULT_CONFIG\n# -----------------------\nm4_defun([_LT_LANG_DEFAULT_CONFIG],\n[AC_PROVIDE_IFELSE([AC_PROG_CXX],\n  [LT_LANG(CXX)],\n  [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])])\n\nAC_PROVIDE_IFELSE([AC_PROG_F77],\n  [LT_LANG(F77)],\n  [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])])\n\nAC_PROVIDE_IFELSE([AC_PROG_FC],\n  [LT_LANG(FC)],\n  [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])])\n\ndnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal\ndnl pulling things in needlessly.\nAC_PROVIDE_IFELSE([AC_PROG_GCJ],\n  [LT_LANG(GCJ)],\n  [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],\n    [LT_LANG(GCJ)],\n    [AC_PROVIDE_IFELSE([LT_PROG_GCJ],\n      [LT_LANG(GCJ)],\n      [m4_ifdef([AC_PROG_GCJ],\n\t[m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])])\n       m4_ifdef([A][M_PROG_GCJ],\n\t[m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])])\n       m4_ifdef([LT_PROG_GCJ],\n\t[m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])])\n\nAC_PROVIDE_IFELSE([LT_PROG_RC],\n  [LT_LANG(RC)],\n  [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])])\n])# _LT_LANG_DEFAULT_CONFIG\n\n# Obsolete macros:\nAU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)])\nAU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)])\nAU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)])\nAU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)])\nAU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_LIBTOOL_CXX], [])\ndnl AC_DEFUN([AC_LIBTOOL_F77], [])\ndnl AC_DEFUN([AC_LIBTOOL_FC], [])\ndnl AC_DEFUN([AC_LIBTOOL_GCJ], [])\ndnl AC_DEFUN([AC_LIBTOOL_RC], [])\n\n\n# _LT_TAG_COMPILER\n# ----------------\nm4_defun([_LT_TAG_COMPILER],\n[AC_REQUIRE([AC_PROG_CC])dnl\n\n_LT_DECL([LTCC], [CC], [1], [A C compiler])dnl\n_LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl\n_LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl\n_LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl\n\n# If no C compiler was specified, use CC.\nLTCC=${LTCC-\"$CC\"}\n\n# If no C compiler flags were specified, use CFLAGS.\nLTCFLAGS=${LTCFLAGS-\"$CFLAGS\"}\n\n# Allow CC to be a program name with arguments.\ncompiler=$CC\n])# _LT_TAG_COMPILER\n\n\n# _LT_COMPILER_BOILERPLATE\n# ------------------------\n# Check for compiler boilerplate output or warnings with\n# the simple compiler test code.\nm4_defun([_LT_COMPILER_BOILERPLATE],\n[m4_require([_LT_DECL_SED])dnl\nac_outfile=conftest.$ac_objext\necho \"$lt_simple_compile_test_code\" >conftest.$ac_ext\neval \"$ac_compile\" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err\n_lt_compiler_boilerplate=`cat conftest.err`\n$RM -r conftest*\n])# _LT_COMPILER_BOILERPLATE\n\n\n# _LT_LINKER_BOILERPLATE\n# ----------------------\n# Check for linker boilerplate output or warnings with\n# the simple link test code.\nm4_defun([_LT_LINKER_BOILERPLATE],\n[m4_require([_LT_DECL_SED])dnl\nac_outfile=conftest.$ac_objext\necho \"$lt_simple_link_test_code\" >conftest.$ac_ext\neval \"$ac_link\" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err\n_lt_linker_boilerplate=`cat conftest.err`\n$RM -r conftest*\n])# _LT_LINKER_BOILERPLATE\n\n# _LT_REQUIRED_DARWIN_CHECKS\n# -------------------------\nm4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[\n  case $host_os in\n    rhapsody* | darwin*)\n    AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:])\n    AC_CHECK_TOOL([NMEDIT], [nmedit], [:])\n    AC_CHECK_TOOL([LIPO], [lipo], [:])\n    AC_CHECK_TOOL([OTOOL], [otool], [:])\n    AC_CHECK_TOOL([OTOOL64], [otool64], [:])\n    _LT_DECL([], [DSYMUTIL], [1],\n      [Tool to manipulate archived DWARF debug symbol files on Mac OS X])\n    _LT_DECL([], [NMEDIT], [1],\n      [Tool to change global to local symbols on Mac OS X])\n    _LT_DECL([], [LIPO], [1],\n      [Tool to manipulate fat objects and archives on Mac OS X])\n    _LT_DECL([], [OTOOL], [1],\n      [ldd/readelf like tool for Mach-O binaries on Mac OS X])\n    _LT_DECL([], [OTOOL64], [1],\n      [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4])\n\n    AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod],\n      [lt_cv_apple_cc_single_mod=no\n      if test -z \"${LT_MULTI_MODULE}\"; then\n\t# By default we will add the -single_module flag. You can override\n\t# by either setting the environment variable LT_MULTI_MODULE\n\t# non-empty at configure time, or by adding -multi_module to the\n\t# link flags.\n\trm -rf libconftest.dylib*\n\techo \"int foo(void){return 1;}\" > conftest.c\n\techo \"$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \\\n-dynamiclib -Wl,-single_module conftest.c\" >&AS_MESSAGE_LOG_FD\n\t$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \\\n\t  -dynamiclib -Wl,-single_module conftest.c 2>conftest.err\n        _lt_result=$?\n\tif test -f libconftest.dylib && test ! -s conftest.err && test $_lt_result = 0; then\n\t  lt_cv_apple_cc_single_mod=yes\n\telse\n\t  cat conftest.err >&AS_MESSAGE_LOG_FD\n\tfi\n\trm -rf libconftest.dylib*\n\trm -f conftest.*\n      fi])\n    AC_CACHE_CHECK([for -exported_symbols_list linker flag],\n      [lt_cv_ld_exported_symbols_list],\n      [lt_cv_ld_exported_symbols_list=no\n      save_LDFLAGS=$LDFLAGS\n      echo \"_main\" > conftest.sym\n      LDFLAGS=\"$LDFLAGS -Wl,-exported_symbols_list,conftest.sym\"\n      AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])],\n\t[lt_cv_ld_exported_symbols_list=yes],\n\t[lt_cv_ld_exported_symbols_list=no])\n\tLDFLAGS=\"$save_LDFLAGS\"\n    ])\n    AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load],\n      [lt_cv_ld_force_load=no\n      cat > conftest.c << _LT_EOF\nint forced_loaded() { return 2;}\n_LT_EOF\n      echo \"$LTCC $LTCFLAGS -c -o conftest.o conftest.c\" >&AS_MESSAGE_LOG_FD\n      $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD\n      echo \"$AR cru libconftest.a conftest.o\" >&AS_MESSAGE_LOG_FD\n      $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD\n      echo \"$RANLIB libconftest.a\" >&AS_MESSAGE_LOG_FD\n      $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD\n      cat > conftest.c << _LT_EOF\nint main() { return 0;}\n_LT_EOF\n      echo \"$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a\" >&AS_MESSAGE_LOG_FD\n      $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err\n      _lt_result=$?\n      if test -f conftest && test ! -s conftest.err && test $_lt_result = 0 && $GREP forced_load conftest 2>&1 >/dev/null; then\n\tlt_cv_ld_force_load=yes\n      else\n\tcat conftest.err >&AS_MESSAGE_LOG_FD\n      fi\n        rm -f conftest.err libconftest.a conftest conftest.c\n        rm -rf conftest.dSYM\n    ])\n    case $host_os in\n    rhapsody* | darwin1.[[012]])\n      _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;;\n    darwin1.*)\n      _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;\n    darwin*) # darwin 5.x on\n      # if running on 10.5 or later, the deployment target defaults\n      # to the OS version, if on x86, and 10.4, the deployment\n      # target defaults to 10.4. Don't you love it?\n      case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in\n\t10.0,*86*-darwin8*|10.0,*-darwin[[91]]*)\n\t  _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;;\n\t10.[[012]]*)\n\t  _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;\n\t10.*)\n\t  _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;;\n      esac\n    ;;\n  esac\n    if test \"$lt_cv_apple_cc_single_mod\" = \"yes\"; then\n      _lt_dar_single_mod='$single_module'\n    fi\n    if test \"$lt_cv_ld_exported_symbols_list\" = \"yes\"; then\n      _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym'\n    else\n      _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}'\n    fi\n    if test \"$DSYMUTIL\" != \":\" && test \"$lt_cv_ld_force_load\" = \"no\"; then\n      _lt_dsymutil='~$DSYMUTIL $lib || :'\n    else\n      _lt_dsymutil=\n    fi\n    ;;\n  esac\n])\n\n\n# _LT_DARWIN_LINKER_FEATURES\n# --------------------------\n# Checks for linker and compiler features on darwin\nm4_defun([_LT_DARWIN_LINKER_FEATURES],\n[\n  m4_require([_LT_REQUIRED_DARWIN_CHECKS])\n  _LT_TAGVAR(archive_cmds_need_lc, $1)=no\n  _LT_TAGVAR(hardcode_direct, $1)=no\n  _LT_TAGVAR(hardcode_automatic, $1)=yes\n  _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported\n  if test \"$lt_cv_ld_force_load\" = \"yes\"; then\n    _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\\\"`'\n  else\n    _LT_TAGVAR(whole_archive_flag_spec, $1)=''\n  fi\n  _LT_TAGVAR(link_all_deplibs, $1)=yes\n  _LT_TAGVAR(allow_undefined_flag, $1)=\"$_lt_dar_allow_undefined\"\n  case $cc_basename in\n     ifort*) _lt_dar_can_shared=yes ;;\n     *) _lt_dar_can_shared=$GCC ;;\n  esac\n  if test \"$_lt_dar_can_shared\" = \"yes\"; then\n    output_verbose_link_cmd=func_echo_all\n    _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}\"\n    _LT_TAGVAR(module_cmds, $1)=\"\\$CC \\$allow_undefined_flag -o \\$lib -bundle \\$libobjs \\$deplibs \\$compiler_flags${_lt_dsymutil}\"\n    _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}\"\n    _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}\"\n    m4_if([$1], [CXX],\n[   if test \"$lt_cv_apple_cc_single_mod\" != \"yes\"; then\n      _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}\"\n      _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}\"\n    fi\n],[])\n  else\n  _LT_TAGVAR(ld_shlibs, $1)=no\n  fi\n])\n\n# _LT_SYS_MODULE_PATH_AIX\n# -----------------------\n# Links a minimal program and checks the executable\n# for the system default hardcoded library path. In most cases,\n# this is /usr/lib:/lib, but when the MPI compilers are used\n# the location of the communication and MPI libs are included too.\n# If we don't find anything, use the default library path according\n# to the aix ld manual.\nm4_defun([_LT_SYS_MODULE_PATH_AIX],\n[m4_require([_LT_DECL_SED])dnl\nAC_LINK_IFELSE(AC_LANG_PROGRAM,[\nlt_aix_libpath_sed='\n    /Import File Strings/,/^$/ {\n\t/^0/ {\n\t    s/^0  *\\(.*\\)$/\\1/\n\t    p\n\t}\n    }'\naix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e \"$lt_aix_libpath_sed\"`\n# Check for a 64-bit object if we didn't find anything.\nif test -z \"$aix_libpath\"; then\n  aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e \"$lt_aix_libpath_sed\"`\nfi],[])\nif test -z \"$aix_libpath\"; then aix_libpath=\"/usr/lib:/lib\"; fi\n])# _LT_SYS_MODULE_PATH_AIX\n\n\n# _LT_SHELL_INIT(ARG)\n# -------------------\nm4_define([_LT_SHELL_INIT],\n[m4_divert_text([M4SH-INIT], [$1\n])])# _LT_SHELL_INIT\n\n\n\n# _LT_PROG_ECHO_BACKSLASH\n# -----------------------\n# Find how we can fake an echo command that does not interpret backslash.\n# In particular, with Autoconf 2.60 or later we add some code to the start\n# of the generated configure script which will find a shell with a builtin\n# printf (which we can use as an echo command).\nm4_defun([_LT_PROG_ECHO_BACKSLASH],\n[ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'\nECHO=$ECHO$ECHO$ECHO$ECHO$ECHO\nECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO\n\nAC_MSG_CHECKING([how to print strings])\n# Test print first, because it will be a builtin if present.\nif test \"X`print -r -- -n 2>/dev/null`\" = X-n && \\\n   test \"X`print -r -- $ECHO 2>/dev/null`\" = \"X$ECHO\"; then\n  ECHO='print -r --'\nelif test \"X`printf %s $ECHO 2>/dev/null`\" = \"X$ECHO\"; then\n  ECHO='printf %s\\n'\nelse\n  # Use this function as a fallback that always works.\n  func_fallback_echo ()\n  {\n    eval 'cat <<_LTECHO_EOF\n$[]1\n_LTECHO_EOF'\n  }\n  ECHO='func_fallback_echo'\nfi\n\n# func_echo_all arg...\n# Invoke $ECHO with all args, space-separated.\nfunc_echo_all ()\n{\n    $ECHO \"$*\" \n}\n\ncase \"$ECHO\" in\n  printf*) AC_MSG_RESULT([printf]) ;;\n  print*) AC_MSG_RESULT([print -r]) ;;\n  *) AC_MSG_RESULT([cat]) ;;\nesac\n\nm4_ifdef([_AS_DETECT_SUGGESTED],\n[_AS_DETECT_SUGGESTED([\n  test -n \"${ZSH_VERSION+set}${BASH_VERSION+set}\" || (\n    ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'\n    ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO\n    ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO\n    PATH=/empty FPATH=/empty; export PATH FPATH\n    test \"X`printf %s $ECHO`\" = \"X$ECHO\" \\\n      || test \"X`print -r -- $ECHO`\" = \"X$ECHO\" )])])\n\n_LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts])\n_LT_DECL([], [ECHO], [1], [An echo program that protects backslashes])\n])# _LT_PROG_ECHO_BACKSLASH\n\n\n# _LT_ENABLE_LOCK\n# ---------------\nm4_defun([_LT_ENABLE_LOCK],\n[AC_ARG_ENABLE([libtool-lock],\n  [AS_HELP_STRING([--disable-libtool-lock],\n    [avoid locking (might break parallel builds)])])\ntest \"x$enable_libtool_lock\" != xno && enable_libtool_lock=yes\n\n# Some flags need to be propagated to the compiler or linker for good\n# libtool support.\ncase $host in\nia64-*-hpux*)\n  # Find out which ABI we are using.\n  echo 'int i;' > conftest.$ac_ext\n  if AC_TRY_EVAL(ac_compile); then\n    case `/usr/bin/file conftest.$ac_objext` in\n      *ELF-32*)\n\tHPUX_IA64_MODE=\"32\"\n\t;;\n      *ELF-64*)\n\tHPUX_IA64_MODE=\"64\"\n\t;;\n    esac\n  fi\n  rm -rf conftest*\n  ;;\n*-*-irix6*)\n  # Find out which ABI we are using.\n  echo '[#]line '$LINENO' \"configure\"' > conftest.$ac_ext\n  if AC_TRY_EVAL(ac_compile); then\n    if test \"$lt_cv_prog_gnu_ld\" = yes; then\n      case `/usr/bin/file conftest.$ac_objext` in\n\t*32-bit*)\n\t  LD=\"${LD-ld} -melf32bsmip\"\n\t  ;;\n\t*N32*)\n\t  LD=\"${LD-ld} -melf32bmipn32\"\n\t  ;;\n\t*64-bit*)\n\t  LD=\"${LD-ld} -melf64bmip\"\n\t;;\n      esac\n    else\n      case `/usr/bin/file conftest.$ac_objext` in\n\t*32-bit*)\n\t  LD=\"${LD-ld} -32\"\n\t  ;;\n\t*N32*)\n\t  LD=\"${LD-ld} -n32\"\n\t  ;;\n\t*64-bit*)\n\t  LD=\"${LD-ld} -64\"\n\t  ;;\n      esac\n    fi\n  fi\n  rm -rf conftest*\n  ;;\n\nx86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \\\ns390*-*linux*|s390*-*tpf*|sparc*-*linux*)\n  # Find out which ABI we are using.\n  echo 'int i;' > conftest.$ac_ext\n  if AC_TRY_EVAL(ac_compile); then\n    case `/usr/bin/file conftest.o` in\n      *32-bit*)\n\tcase $host in\n\t  x86_64-*kfreebsd*-gnu)\n\t    LD=\"${LD-ld} -m elf_i386_fbsd\"\n\t    ;;\n\t  x86_64-*linux*)\n\t    LD=\"${LD-ld} -m elf_i386\"\n\t    ;;\n\t  ppc64-*linux*|powerpc64-*linux*)\n\t    LD=\"${LD-ld} -m elf32ppclinux\"\n\t    ;;\n\t  s390x-*linux*)\n\t    LD=\"${LD-ld} -m elf_s390\"\n\t    ;;\n\t  sparc64-*linux*)\n\t    LD=\"${LD-ld} -m elf32_sparc\"\n\t    ;;\n\tesac\n\t;;\n      *64-bit*)\n\tcase $host in\n\t  x86_64-*kfreebsd*-gnu)\n\t    LD=\"${LD-ld} -m elf_x86_64_fbsd\"\n\t    ;;\n\t  x86_64-*linux*)\n\t    LD=\"${LD-ld} -m elf_x86_64\"\n\t    ;;\n\t  ppc*-*linux*|powerpc*-*linux*)\n\t    LD=\"${LD-ld} -m elf64ppc\"\n\t    ;;\n\t  s390*-*linux*|s390*-*tpf*)\n\t    LD=\"${LD-ld} -m elf64_s390\"\n\t    ;;\n\t  sparc*-*linux*)\n\t    LD=\"${LD-ld} -m elf64_sparc\"\n\t    ;;\n\tesac\n\t;;\n    esac\n  fi\n  rm -rf conftest*\n  ;;\n\n*-*-sco3.2v5*)\n  # On SCO OpenServer 5, we need -belf to get full-featured binaries.\n  SAVE_CFLAGS=\"$CFLAGS\"\n  CFLAGS=\"$CFLAGS -belf\"\n  AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf,\n    [AC_LANG_PUSH(C)\n     AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no])\n     AC_LANG_POP])\n  if test x\"$lt_cv_cc_needs_belf\" != x\"yes\"; then\n    # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf\n    CFLAGS=\"$SAVE_CFLAGS\"\n  fi\n  ;;\nsparc*-*solaris*)\n  # Find out which ABI we are using.\n  echo 'int i;' > conftest.$ac_ext\n  if AC_TRY_EVAL(ac_compile); then\n    case `/usr/bin/file conftest.o` in\n    *64-bit*)\n      case $lt_cv_prog_gnu_ld in\n      yes*) LD=\"${LD-ld} -m elf64_sparc\" ;;\n      *)\n\tif ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then\n\t  LD=\"${LD-ld} -64\"\n\tfi\n\t;;\n      esac\n      ;;\n    esac\n  fi\n  rm -rf conftest*\n  ;;\nesac\n\nneed_locks=\"$enable_libtool_lock\"\n])# _LT_ENABLE_LOCK\n\n\n# _LT_CMD_OLD_ARCHIVE\n# -------------------\nm4_defun([_LT_CMD_OLD_ARCHIVE],\n[AC_CHECK_TOOL(AR, ar, false)\ntest -z \"$AR\" && AR=ar\ntest -z \"$AR_FLAGS\" && AR_FLAGS=cru\n_LT_DECL([], [AR], [1], [The archiver])\n_LT_DECL([], [AR_FLAGS], [1])\n\nAC_CHECK_TOOL(STRIP, strip, :)\ntest -z \"$STRIP\" && STRIP=:\n_LT_DECL([], [STRIP], [1], [A symbol stripping program])\n\nAC_CHECK_TOOL(RANLIB, ranlib, :)\ntest -z \"$RANLIB\" && RANLIB=:\n_LT_DECL([], [RANLIB], [1],\n    [Commands used to install an old-style archive])\n\n# Determine commands to create old-style static archives.\nold_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs'\nold_postinstall_cmds='chmod 644 $oldlib'\nold_postuninstall_cmds=\n\nif test -n \"$RANLIB\"; then\n  case $host_os in\n  openbsd*)\n    old_postinstall_cmds=\"$old_postinstall_cmds~\\$RANLIB -t \\$oldlib\"\n    ;;\n  *)\n    old_postinstall_cmds=\"$old_postinstall_cmds~\\$RANLIB \\$oldlib\"\n    ;;\n  esac\n  old_archive_cmds=\"$old_archive_cmds~\\$RANLIB \\$oldlib\"\nfi\n\ncase $host_os in\n  darwin*)\n    lock_old_archive_extraction=yes ;;\n  *)\n    lock_old_archive_extraction=no ;;\nesac\n_LT_DECL([], [old_postinstall_cmds], [2])\n_LT_DECL([], [old_postuninstall_cmds], [2])\n_LT_TAGDECL([], [old_archive_cmds], [2],\n    [Commands used to build an old-style archive])\n_LT_DECL([], [lock_old_archive_extraction], [0],\n    [Whether to use a lock for old archive extraction])\n])# _LT_CMD_OLD_ARCHIVE\n\n\n# _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS,\n#\t\t[OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE])\n# ----------------------------------------------------------------\n# Check whether the given compiler option works\nAC_DEFUN([_LT_COMPILER_OPTION],\n[m4_require([_LT_FILEUTILS_DEFAULTS])dnl\nm4_require([_LT_DECL_SED])dnl\nAC_CACHE_CHECK([$1], [$2],\n  [$2=no\n   m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4])\n   echo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n   lt_compiler_flag=\"$3\"\n   # Insert the option either (1) after the last *FLAGS variable, or\n   # (2) before a word containing \"conftest.\", or (3) at the end.\n   # Note that $ac_compile itself does not contain backslashes and begins\n   # with a dollar sign (not a hyphen), so the echo should work correctly.\n   # The option is referenced via a variable to avoid confusing sed.\n   lt_compile=`echo \"$ac_compile\" | $SED \\\n   -e 's:.*FLAGS}\\{0,1\\} :&$lt_compiler_flag :; t' \\\n   -e 's: [[^ ]]*conftest\\.: $lt_compiler_flag&:; t' \\\n   -e 's:$: $lt_compiler_flag:'`\n   (eval echo \"\\\"\\$as_me:$LINENO: $lt_compile\\\"\" >&AS_MESSAGE_LOG_FD)\n   (eval \"$lt_compile\" 2>conftest.err)\n   ac_status=$?\n   cat conftest.err >&AS_MESSAGE_LOG_FD\n   echo \"$as_me:$LINENO: \\$? = $ac_status\" >&AS_MESSAGE_LOG_FD\n   if (exit $ac_status) && test -s \"$ac_outfile\"; then\n     # The compiler can only warn and ignore the option if not recognized\n     # So say no if there are warnings other than the usual output.\n     $ECHO \"$_lt_compiler_boilerplate\" | $SED '/^$/d' >conftest.exp\n     $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2\n     if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then\n       $2=yes\n     fi\n   fi\n   $RM -r conftest*\n])\n\nif test x\"[$]$2\" = xyes; then\n    m4_if([$5], , :, [$5])\nelse\n    m4_if([$6], , :, [$6])\nfi\n])# _LT_COMPILER_OPTION\n\n# Old name:\nAU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [])\n\n\n# _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS,\n#                  [ACTION-SUCCESS], [ACTION-FAILURE])\n# ----------------------------------------------------\n# Check whether the given linker option works\nAC_DEFUN([_LT_LINKER_OPTION],\n[m4_require([_LT_FILEUTILS_DEFAULTS])dnl\nm4_require([_LT_DECL_SED])dnl\nAC_CACHE_CHECK([$1], [$2],\n  [$2=no\n   save_LDFLAGS=\"$LDFLAGS\"\n   LDFLAGS=\"$LDFLAGS $3\"\n   echo \"$lt_simple_link_test_code\" > conftest.$ac_ext\n   if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then\n     # The linker can only warn and ignore the option if not recognized\n     # So say no if there are warnings\n     if test -s conftest.err; then\n       # Append any errors to the config.log.\n       cat conftest.err 1>&AS_MESSAGE_LOG_FD\n       $ECHO \"$_lt_linker_boilerplate\" | $SED '/^$/d' > conftest.exp\n       $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2\n       if diff conftest.exp conftest.er2 >/dev/null; then\n         $2=yes\n       fi\n     else\n       $2=yes\n     fi\n   fi\n   $RM -r conftest*\n   LDFLAGS=\"$save_LDFLAGS\"\n])\n\nif test x\"[$]$2\" = xyes; then\n    m4_if([$4], , :, [$4])\nelse\n    m4_if([$5], , :, [$5])\nfi\n])# _LT_LINKER_OPTION\n\n# Old name:\nAU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [])\n\n\n# LT_CMD_MAX_LEN\n#---------------\nAC_DEFUN([LT_CMD_MAX_LEN],\n[AC_REQUIRE([AC_CANONICAL_HOST])dnl\n# find the maximum length of command line arguments\nAC_MSG_CHECKING([the maximum length of command line arguments])\nAC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl\n  i=0\n  teststring=\"ABCD\"\n\n  case $build_os in\n  msdosdjgpp*)\n    # On DJGPP, this test can blow up pretty badly due to problems in libc\n    # (any single argument exceeding 2000 bytes causes a buffer overrun\n    # during glob expansion).  Even if it were fixed, the result of this\n    # check would be larger than it should be.\n    lt_cv_sys_max_cmd_len=12288;    # 12K is about right\n    ;;\n\n  gnu*)\n    # Under GNU Hurd, this test is not required because there is\n    # no limit to the length of command line arguments.\n    # Libtool will interpret -1 as no limit whatsoever\n    lt_cv_sys_max_cmd_len=-1;\n    ;;\n\n  cygwin* | mingw* | cegcc*)\n    # On Win9x/ME, this test blows up -- it succeeds, but takes\n    # about 5 minutes as the teststring grows exponentially.\n    # Worse, since 9x/ME are not pre-emptively multitasking,\n    # you end up with a \"frozen\" computer, even though with patience\n    # the test eventually succeeds (with a max line length of 256k).\n    # Instead, let's just punt: use the minimum linelength reported by\n    # all of the supported platforms: 8192 (on NT/2K/XP).\n    lt_cv_sys_max_cmd_len=8192;\n    ;;\n\n  mint*)\n    # On MiNT this can take a long time and run out of memory.\n    lt_cv_sys_max_cmd_len=8192;\n    ;;\n\n  amigaos*)\n    # On AmigaOS with pdksh, this test takes hours, literally.\n    # So we just punt and use a minimum line length of 8192.\n    lt_cv_sys_max_cmd_len=8192;\n    ;;\n\n  netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)\n    # This has been around since 386BSD, at least.  Likely further.\n    if test -x /sbin/sysctl; then\n      lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`\n    elif test -x /usr/sbin/sysctl; then\n      lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`\n    else\n      lt_cv_sys_max_cmd_len=65536\t# usable default for all BSDs\n    fi\n    # And add a safety zone\n    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\/ 4`\n    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\* 3`\n    ;;\n\n  interix*)\n    # We know the value 262144 and hardcode it with a safety zone (like BSD)\n    lt_cv_sys_max_cmd_len=196608\n    ;;\n\n  osf*)\n    # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure\n    # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not\n    # nice to cause kernel panics so lets avoid the loop below.\n    # First set a reasonable default.\n    lt_cv_sys_max_cmd_len=16384\n    #\n    if test -x /sbin/sysconfig; then\n      case `/sbin/sysconfig -q proc exec_disable_arg_limit` in\n        *1*) lt_cv_sys_max_cmd_len=-1 ;;\n      esac\n    fi\n    ;;\n  sco3.2v5*)\n    lt_cv_sys_max_cmd_len=102400\n    ;;\n  sysv5* | sco5v6* | sysv4.2uw2*)\n    kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`\n    if test -n \"$kargmax\"; then\n      lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[\t ]]//'`\n    else\n      lt_cv_sys_max_cmd_len=32768\n    fi\n    ;;\n  *)\n    lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`\n    if test -n \"$lt_cv_sys_max_cmd_len\"; then\n      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\/ 4`\n      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\* 3`\n    else\n      # Make teststring a little bigger before we do anything with it.\n      # a 1K string should be a reasonable start.\n      for i in 1 2 3 4 5 6 7 8 ; do\n        teststring=$teststring$teststring\n      done\n      SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}\n      # If test is not a shell built-in, we'll probably end up computing a\n      # maximum length that is only half of the actual maximum length, but\n      # we can't tell.\n      while { test \"X\"`func_fallback_echo \"$teststring$teststring\" 2>/dev/null` \\\n\t         = \"X$teststring$teststring\"; } >/dev/null 2>&1 &&\n\t      test $i != 17 # 1/2 MB should be enough\n      do\n        i=`expr $i + 1`\n        teststring=$teststring$teststring\n      done\n      # Only check the string length outside the loop.\n      lt_cv_sys_max_cmd_len=`expr \"X$teststring\" : \".*\" 2>&1`\n      teststring=\n      # Add a significant safety factor because C++ compilers can tack on\n      # massive amounts of additional arguments before passing them to the\n      # linker.  It appears as though 1/2 is a usable value.\n      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\/ 2`\n    fi\n    ;;\n  esac\n])\nif test -n $lt_cv_sys_max_cmd_len ; then\n  AC_MSG_RESULT($lt_cv_sys_max_cmd_len)\nelse\n  AC_MSG_RESULT(none)\nfi\nmax_cmd_len=$lt_cv_sys_max_cmd_len\n_LT_DECL([], [max_cmd_len], [0],\n    [What is the maximum length of a command?])\n])# LT_CMD_MAX_LEN\n\n# Old name:\nAU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [])\n\n\n# _LT_HEADER_DLFCN\n# ----------------\nm4_defun([_LT_HEADER_DLFCN],\n[AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl\n])# _LT_HEADER_DLFCN\n\n\n# _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE,\n#                      ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING)\n# ----------------------------------------------------------------\nm4_defun([_LT_TRY_DLOPEN_SELF],\n[m4_require([_LT_HEADER_DLFCN])dnl\nif test \"$cross_compiling\" = yes; then :\n  [$4]\nelse\n  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2\n  lt_status=$lt_dlunknown\n  cat > conftest.$ac_ext <<_LT_EOF\n[#line $LINENO \"configure\"\n#include \"confdefs.h\"\n\n#if HAVE_DLFCN_H\n#include <dlfcn.h>\n#endif\n\n#include <stdio.h>\n\n#ifdef RTLD_GLOBAL\n#  define LT_DLGLOBAL\t\tRTLD_GLOBAL\n#else\n#  ifdef DL_GLOBAL\n#    define LT_DLGLOBAL\t\tDL_GLOBAL\n#  else\n#    define LT_DLGLOBAL\t\t0\n#  endif\n#endif\n\n/* We may have to define LT_DLLAZY_OR_NOW in the command line if we\n   find out it does not work in some platform. */\n#ifndef LT_DLLAZY_OR_NOW\n#  ifdef RTLD_LAZY\n#    define LT_DLLAZY_OR_NOW\t\tRTLD_LAZY\n#  else\n#    ifdef DL_LAZY\n#      define LT_DLLAZY_OR_NOW\t\tDL_LAZY\n#    else\n#      ifdef RTLD_NOW\n#        define LT_DLLAZY_OR_NOW\tRTLD_NOW\n#      else\n#        ifdef DL_NOW\n#          define LT_DLLAZY_OR_NOW\tDL_NOW\n#        else\n#          define LT_DLLAZY_OR_NOW\t0\n#        endif\n#      endif\n#    endif\n#  endif\n#endif\n\n/* When -fvisbility=hidden is used, assume the code has been annotated\n   correspondingly for the symbols needed.  */\n#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))\nvoid fnord () __attribute__((visibility(\"default\")));\n#endif\n\nvoid fnord () { int i=42; }\nint main ()\n{\n  void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);\n  int status = $lt_dlunknown;\n\n  if (self)\n    {\n      if (dlsym (self,\"fnord\"))       status = $lt_dlno_uscore;\n      else\n        {\n\t  if (dlsym( self,\"_fnord\"))  status = $lt_dlneed_uscore;\n          else puts (dlerror ());\n\t}\n      /* dlclose (self); */\n    }\n  else\n    puts (dlerror ());\n\n  return status;\n}]\n_LT_EOF\n  if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then\n    (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null\n    lt_status=$?\n    case x$lt_status in\n      x$lt_dlno_uscore) $1 ;;\n      x$lt_dlneed_uscore) $2 ;;\n      x$lt_dlunknown|x*) $3 ;;\n    esac\n  else :\n    # compilation failed\n    $3\n  fi\nfi\nrm -fr conftest*\n])# _LT_TRY_DLOPEN_SELF\n\n\n# LT_SYS_DLOPEN_SELF\n# ------------------\nAC_DEFUN([LT_SYS_DLOPEN_SELF],\n[m4_require([_LT_HEADER_DLFCN])dnl\nif test \"x$enable_dlopen\" != xyes; then\n  enable_dlopen=unknown\n  enable_dlopen_self=unknown\n  enable_dlopen_self_static=unknown\nelse\n  lt_cv_dlopen=no\n  lt_cv_dlopen_libs=\n\n  case $host_os in\n  beos*)\n    lt_cv_dlopen=\"load_add_on\"\n    lt_cv_dlopen_libs=\n    lt_cv_dlopen_self=yes\n    ;;\n\n  mingw* | pw32* | cegcc*)\n    lt_cv_dlopen=\"LoadLibrary\"\n    lt_cv_dlopen_libs=\n    ;;\n\n  cygwin*)\n    lt_cv_dlopen=\"dlopen\"\n    lt_cv_dlopen_libs=\n    ;;\n\n  darwin*)\n  # if libdl is installed we need to link against it\n    AC_CHECK_LIB([dl], [dlopen],\n\t\t[lt_cv_dlopen=\"dlopen\" lt_cv_dlopen_libs=\"-ldl\"],[\n    lt_cv_dlopen=\"dyld\"\n    lt_cv_dlopen_libs=\n    lt_cv_dlopen_self=yes\n    ])\n    ;;\n\n  *)\n    AC_CHECK_FUNC([shl_load],\n\t  [lt_cv_dlopen=\"shl_load\"],\n      [AC_CHECK_LIB([dld], [shl_load],\n\t    [lt_cv_dlopen=\"shl_load\" lt_cv_dlopen_libs=\"-ldld\"],\n\t[AC_CHECK_FUNC([dlopen],\n\t      [lt_cv_dlopen=\"dlopen\"],\n\t  [AC_CHECK_LIB([dl], [dlopen],\n\t\t[lt_cv_dlopen=\"dlopen\" lt_cv_dlopen_libs=\"-ldl\"],\n\t    [AC_CHECK_LIB([svld], [dlopen],\n\t\t  [lt_cv_dlopen=\"dlopen\" lt_cv_dlopen_libs=\"-lsvld\"],\n\t      [AC_CHECK_LIB([dld], [dld_link],\n\t\t    [lt_cv_dlopen=\"dld_link\" lt_cv_dlopen_libs=\"-ldld\"])\n\t      ])\n\t    ])\n\t  ])\n\t])\n      ])\n    ;;\n  esac\n\n  if test \"x$lt_cv_dlopen\" != xno; then\n    enable_dlopen=yes\n  else\n    enable_dlopen=no\n  fi\n\n  case $lt_cv_dlopen in\n  dlopen)\n    save_CPPFLAGS=\"$CPPFLAGS\"\n    test \"x$ac_cv_header_dlfcn_h\" = xyes && CPPFLAGS=\"$CPPFLAGS -DHAVE_DLFCN_H\"\n\n    save_LDFLAGS=\"$LDFLAGS\"\n    wl=$lt_prog_compiler_wl eval LDFLAGS=\\\"\\$LDFLAGS $export_dynamic_flag_spec\\\"\n\n    save_LIBS=\"$LIBS\"\n    LIBS=\"$lt_cv_dlopen_libs $LIBS\"\n\n    AC_CACHE_CHECK([whether a program can dlopen itself],\n\t  lt_cv_dlopen_self, [dnl\n\t  _LT_TRY_DLOPEN_SELF(\n\t    lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,\n\t    lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)\n    ])\n\n    if test \"x$lt_cv_dlopen_self\" = xyes; then\n      wl=$lt_prog_compiler_wl eval LDFLAGS=\\\"\\$LDFLAGS $lt_prog_compiler_static\\\"\n      AC_CACHE_CHECK([whether a statically linked program can dlopen itself],\n\t  lt_cv_dlopen_self_static, [dnl\n\t  _LT_TRY_DLOPEN_SELF(\n\t    lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,\n\t    lt_cv_dlopen_self_static=no,  lt_cv_dlopen_self_static=cross)\n      ])\n    fi\n\n    CPPFLAGS=\"$save_CPPFLAGS\"\n    LDFLAGS=\"$save_LDFLAGS\"\n    LIBS=\"$save_LIBS\"\n    ;;\n  esac\n\n  case $lt_cv_dlopen_self in\n  yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;\n  *) enable_dlopen_self=unknown ;;\n  esac\n\n  case $lt_cv_dlopen_self_static in\n  yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;\n  *) enable_dlopen_self_static=unknown ;;\n  esac\nfi\n_LT_DECL([dlopen_support], [enable_dlopen], [0],\n\t [Whether dlopen is supported])\n_LT_DECL([dlopen_self], [enable_dlopen_self], [0],\n\t [Whether dlopen of programs is supported])\n_LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0],\n\t [Whether dlopen of statically linked programs is supported])\n])# LT_SYS_DLOPEN_SELF\n\n# Old name:\nAU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [])\n\n\n# _LT_COMPILER_C_O([TAGNAME])\n# ---------------------------\n# Check to see if options -c and -o are simultaneously supported by compiler.\n# This macro does not hard code the compiler like AC_PROG_CC_C_O.\nm4_defun([_LT_COMPILER_C_O],\n[m4_require([_LT_DECL_SED])dnl\nm4_require([_LT_FILEUTILS_DEFAULTS])dnl\nm4_require([_LT_TAG_COMPILER])dnl\nAC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext],\n  [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)],\n  [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no\n   $RM -r conftest 2>/dev/null\n   mkdir conftest\n   cd conftest\n   mkdir out\n   echo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n\n   lt_compiler_flag=\"-o out/conftest2.$ac_objext\"\n   # Insert the option either (1) after the last *FLAGS variable, or\n   # (2) before a word containing \"conftest.\", or (3) at the end.\n   # Note that $ac_compile itself does not contain backslashes and begins\n   # with a dollar sign (not a hyphen), so the echo should work correctly.\n   lt_compile=`echo \"$ac_compile\" | $SED \\\n   -e 's:.*FLAGS}\\{0,1\\} :&$lt_compiler_flag :; t' \\\n   -e 's: [[^ ]]*conftest\\.: $lt_compiler_flag&:; t' \\\n   -e 's:$: $lt_compiler_flag:'`\n   (eval echo \"\\\"\\$as_me:$LINENO: $lt_compile\\\"\" >&AS_MESSAGE_LOG_FD)\n   (eval \"$lt_compile\" 2>out/conftest.err)\n   ac_status=$?\n   cat out/conftest.err >&AS_MESSAGE_LOG_FD\n   echo \"$as_me:$LINENO: \\$? = $ac_status\" >&AS_MESSAGE_LOG_FD\n   if (exit $ac_status) && test -s out/conftest2.$ac_objext\n   then\n     # The compiler can only warn and ignore the option if not recognized\n     # So say no if there are warnings\n     $ECHO \"$_lt_compiler_boilerplate\" | $SED '/^$/d' > out/conftest.exp\n     $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2\n     if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then\n       _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes\n     fi\n   fi\n   chmod u+w . 2>&AS_MESSAGE_LOG_FD\n   $RM -r conftest*\n   # SGI C++ compiler will create directory out/ii_files/ for\n   # template instantiation\n   test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files\n   $RM out/* && rmdir out\n   cd ..\n   $RM -r conftest\n   $RM -r conftest*\n])\n_LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1],\n\t[Does compiler simultaneously support -c and -o options?])\n])# _LT_COMPILER_C_O\n\n\n# _LT_COMPILER_FILE_LOCKS([TAGNAME])\n# ----------------------------------\n# Check to see if we can do hard links to lock some files if needed\nm4_defun([_LT_COMPILER_FILE_LOCKS],\n[m4_require([_LT_ENABLE_LOCK])dnl\nm4_require([_LT_FILEUTILS_DEFAULTS])dnl\n_LT_COMPILER_C_O([$1])\n\nhard_links=\"nottested\"\nif test \"$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)\" = no && test \"$need_locks\" != no; then\n  # do not overwrite the value of need_locks provided by the user\n  AC_MSG_CHECKING([if we can lock with hard links])\n  hard_links=yes\n  $RM -r conftest*\n  ln conftest.a conftest.b 2>/dev/null && hard_links=no\n  touch conftest.a\n  ln conftest.a conftest.b 2>&5 || hard_links=no\n  ln conftest.a conftest.b 2>/dev/null && hard_links=no\n  AC_MSG_RESULT([$hard_links])\n  if test \"$hard_links\" = no; then\n    AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe])\n    need_locks=warn\n  fi\nelse\n  need_locks=no\nfi\n_LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?])\n])# _LT_COMPILER_FILE_LOCKS\n\n\n# _LT_CHECK_OBJDIR\n# ----------------\nm4_defun([_LT_CHECK_OBJDIR],\n[AC_CACHE_CHECK([for objdir], [lt_cv_objdir],\n[rm -f .libs 2>/dev/null\nmkdir .libs 2>/dev/null\nif test -d .libs; then\n  lt_cv_objdir=.libs\nelse\n  # MS-DOS does not allow filenames that begin with a dot.\n  lt_cv_objdir=_libs\nfi\nrmdir .libs 2>/dev/null])\nobjdir=$lt_cv_objdir\n_LT_DECL([], [objdir], [0],\n         [The name of the directory that contains temporary libtool files])dnl\nm4_pattern_allow([LT_OBJDIR])dnl\nAC_DEFINE_UNQUOTED(LT_OBJDIR, \"$lt_cv_objdir/\",\n  [Define to the sub-directory in which libtool stores uninstalled libraries.])\n])# _LT_CHECK_OBJDIR\n\n\n# _LT_LINKER_HARDCODE_LIBPATH([TAGNAME])\n# --------------------------------------\n# Check hardcoding attributes.\nm4_defun([_LT_LINKER_HARDCODE_LIBPATH],\n[AC_MSG_CHECKING([how to hardcode library paths into programs])\n_LT_TAGVAR(hardcode_action, $1)=\nif test -n \"$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\" ||\n   test -n \"$_LT_TAGVAR(runpath_var, $1)\" ||\n   test \"X$_LT_TAGVAR(hardcode_automatic, $1)\" = \"Xyes\" ; then\n\n  # We can hardcode non-existent directories.\n  if test \"$_LT_TAGVAR(hardcode_direct, $1)\" != no &&\n     # If the only mechanism to avoid hardcoding is shlibpath_var, we\n     # have to relink, otherwise we might link with an installed library\n     # when we should be linking with a yet-to-be-installed one\n     ## test \"$_LT_TAGVAR(hardcode_shlibpath_var, $1)\" != no &&\n     test \"$_LT_TAGVAR(hardcode_minus_L, $1)\" != no; then\n    # Linking always hardcodes the temporary library directory.\n    _LT_TAGVAR(hardcode_action, $1)=relink\n  else\n    # We can link without hardcoding, and we can hardcode nonexisting dirs.\n    _LT_TAGVAR(hardcode_action, $1)=immediate\n  fi\nelse\n  # We cannot hardcode anything, or else we can only hardcode existing\n  # directories.\n  _LT_TAGVAR(hardcode_action, $1)=unsupported\nfi\nAC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)])\n\nif test \"$_LT_TAGVAR(hardcode_action, $1)\" = relink ||\n   test \"$_LT_TAGVAR(inherit_rpath, $1)\" = yes; then\n  # Fast installation is not supported\n  enable_fast_install=no\nelif test \"$shlibpath_overrides_runpath\" = yes ||\n     test \"$enable_shared\" = no; then\n  # Fast installation is not necessary\n  enable_fast_install=needless\nfi\n_LT_TAGDECL([], [hardcode_action], [0],\n    [How to hardcode a shared library path into an executable])\n])# _LT_LINKER_HARDCODE_LIBPATH\n\n\n# _LT_CMD_STRIPLIB\n# ----------------\nm4_defun([_LT_CMD_STRIPLIB],\n[m4_require([_LT_DECL_EGREP])\nstriplib=\nold_striplib=\nAC_MSG_CHECKING([whether stripping libraries is possible])\nif test -n \"$STRIP\" && $STRIP -V 2>&1 | $GREP \"GNU strip\" >/dev/null; then\n  test -z \"$old_striplib\" && old_striplib=\"$STRIP --strip-debug\"\n  test -z \"$striplib\" && striplib=\"$STRIP --strip-unneeded\"\n  AC_MSG_RESULT([yes])\nelse\n# FIXME - insert some real tests, host_os isn't really good enough\n  case $host_os in\n  darwin*)\n    if test -n \"$STRIP\" ; then\n      striplib=\"$STRIP -x\"\n      old_striplib=\"$STRIP -S\"\n      AC_MSG_RESULT([yes])\n    else\n      AC_MSG_RESULT([no])\n    fi\n    ;;\n  *)\n    AC_MSG_RESULT([no])\n    ;;\n  esac\nfi\n_LT_DECL([], [old_striplib], [1], [Commands to strip libraries])\n_LT_DECL([], [striplib], [1])\n])# _LT_CMD_STRIPLIB\n\n\n# _LT_SYS_DYNAMIC_LINKER([TAG])\n# -----------------------------\n# PORTME Fill in your ld.so characteristics\nm4_defun([_LT_SYS_DYNAMIC_LINKER],\n[AC_REQUIRE([AC_CANONICAL_HOST])dnl\nm4_require([_LT_DECL_EGREP])dnl\nm4_require([_LT_FILEUTILS_DEFAULTS])dnl\nm4_require([_LT_DECL_OBJDUMP])dnl\nm4_require([_LT_DECL_SED])dnl\nm4_require([_LT_CHECK_SHELL_FEATURES])dnl\nAC_MSG_CHECKING([dynamic linker characteristics])\nm4_if([$1],\n\t[], [\nif test \"$GCC\" = yes; then\n  case $host_os in\n    darwin*) lt_awk_arg=\"/^libraries:/,/LR/\" ;;\n    *) lt_awk_arg=\"/^libraries:/\" ;;\n  esac\n  case $host_os in\n    mingw* | cegcc*) lt_sed_strip_eq=\"s,=\\([[A-Za-z]]:\\),\\1,g\" ;;\n    *) lt_sed_strip_eq=\"s,=/,/,g\" ;;\n  esac\n  lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e \"s/^libraries://\" -e $lt_sed_strip_eq`\n  case $lt_search_path_spec in\n  *\\;*)\n    # if the path contains \";\" then we assume it to be the separator\n    # otherwise default to the standard path separator (i.e. \":\") - it is\n    # assumed that no part of a normal pathname contains \";\" but that should\n    # okay in the real world where \";\" in dirpaths is itself problematic.\n    lt_search_path_spec=`$ECHO \"$lt_search_path_spec\" | $SED 's/;/ /g'`\n    ;;\n  *)\n    lt_search_path_spec=`$ECHO \"$lt_search_path_spec\" | $SED \"s/$PATH_SEPARATOR/ /g\"`\n    ;;\n  esac\n  # Ok, now we have the path, separated by spaces, we can step through it\n  # and add multilib dir if necessary.\n  lt_tmp_lt_search_path_spec=\n  lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null`\n  for lt_sys_path in $lt_search_path_spec; do\n    if test -d \"$lt_sys_path/$lt_multi_os_dir\"; then\n      lt_tmp_lt_search_path_spec=\"$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir\"\n    else\n      test -d \"$lt_sys_path\" && \\\n\tlt_tmp_lt_search_path_spec=\"$lt_tmp_lt_search_path_spec $lt_sys_path\"\n    fi\n  done\n  lt_search_path_spec=`$ECHO \"$lt_tmp_lt_search_path_spec\" | awk '\nBEGIN {RS=\" \"; FS=\"/|\\n\";} {\n  lt_foo=\"\";\n  lt_count=0;\n  for (lt_i = NF; lt_i > 0; lt_i--) {\n    if ($lt_i != \"\" && $lt_i != \".\") {\n      if ($lt_i == \"..\") {\n        lt_count++;\n      } else {\n        if (lt_count == 0) {\n          lt_foo=\"/\" $lt_i lt_foo;\n        } else {\n          lt_count--;\n        }\n      }\n    }\n  }\n  if (lt_foo != \"\") { lt_freq[[lt_foo]]++; }\n  if (lt_freq[[lt_foo]] == 1) { print lt_foo; }\n}'`\n  # AWK program above erroneously prepends '/' to C:/dos/paths\n  # for these hosts.\n  case $host_os in\n    mingw* | cegcc*) lt_search_path_spec=`$ECHO \"$lt_search_path_spec\" |\\\n      $SED 's,/\\([[A-Za-z]]:\\),\\1,g'` ;;\n  esac\n  sys_lib_search_path_spec=`$ECHO \"$lt_search_path_spec\" | $lt_NL2SP`\nelse\n  sys_lib_search_path_spec=\"/lib /usr/lib /usr/local/lib\"\nfi])\nlibrary_names_spec=\nlibname_spec='lib$name'\nsoname_spec=\nshrext_cmds=\".so\"\npostinstall_cmds=\npostuninstall_cmds=\nfinish_cmds=\nfinish_eval=\nshlibpath_var=\nshlibpath_overrides_runpath=unknown\nversion_type=none\ndynamic_linker=\"$host_os ld.so\"\nsys_lib_dlsearch_path_spec=\"/lib /usr/lib\"\nneed_lib_prefix=unknown\nhardcode_into_libs=no\n\n# when you set need_version to no, make sure it does not cause -set_version\n# flags to be left without arguments\nneed_version=unknown\n\ncase $host_os in\naix3*)\n  version_type=linux\n  library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a'\n  shlibpath_var=LIBPATH\n\n  # AIX 3 has no versioning support, so we append a major version to the name.\n  soname_spec='${libname}${release}${shared_ext}$major'\n  ;;\n\naix[[4-9]]*)\n  version_type=linux\n  need_lib_prefix=no\n  need_version=no\n  hardcode_into_libs=yes\n  if test \"$host_cpu\" = ia64; then\n    # AIX 5 supports IA64\n    library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}'\n    shlibpath_var=LD_LIBRARY_PATH\n  else\n    # With GCC up to 2.95.x, collect2 would create an import file\n    # for dependence libraries.  The import file would start with\n    # the line `#! .'.  This would cause the generated library to\n    # depend on `.', always an invalid library.  This was fixed in\n    # development snapshots of GCC prior to 3.0.\n    case $host_os in\n      aix4 | aix4.[[01]] | aix4.[[01]].*)\n      if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'\n\t   echo ' yes '\n\t   echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then\n\t:\n      else\n\tcan_build_shared=no\n      fi\n      ;;\n    esac\n    # AIX (on Power*) has no versioning support, so currently we can not hardcode correct\n    # soname into executable. Probably we can add versioning support to\n    # collect2, so additional links can be useful in future.\n    if test \"$aix_use_runtimelinking\" = yes; then\n      # If using run time linking (on AIX 4.2 or later) use lib<name>.so\n      # instead of lib<name>.a to let people know that these are not\n      # typical AIX shared libraries.\n      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n    else\n      # We preserve .a as extension for shared libraries through AIX4.2\n      # and later when we are not doing run time linking.\n      library_names_spec='${libname}${release}.a $libname.a'\n      soname_spec='${libname}${release}${shared_ext}$major'\n    fi\n    shlibpath_var=LIBPATH\n  fi\n  ;;\n\namigaos*)\n  case $host_cpu in\n  powerpc)\n    # Since July 2007 AmigaOS4 officially supports .so libraries.\n    # When compiling the executable, add -use-dynld -Lsobjs: to the compileline.\n    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n    ;;\n  m68k)\n    library_names_spec='$libname.ixlibrary $libname.a'\n    # Create ${libname}_ixlibrary.a entries in /sys/libs.\n    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'\n    ;;\n  esac\n  ;;\n\nbeos*)\n  library_names_spec='${libname}${shared_ext}'\n  dynamic_linker=\"$host_os ld.so\"\n  shlibpath_var=LIBRARY_PATH\n  ;;\n\nbsdi[[45]]*)\n  version_type=linux\n  need_version=no\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  sys_lib_search_path_spec=\"/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib\"\n  sys_lib_dlsearch_path_spec=\"/shlib /usr/lib /usr/local/lib\"\n  # the default ld.so.conf also contains /usr/contrib/lib and\n  # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow\n  # libtool to hard-code these into programs\n  ;;\n\ncygwin* | mingw* | pw32* | cegcc*)\n  version_type=windows\n  shrext_cmds=\".dll\"\n  need_version=no\n  need_lib_prefix=no\n\n  case $GCC,$host_os in\n  yes,cygwin* | yes,mingw* | yes,pw32* | yes,cegcc*)\n    library_names_spec='$libname.dll.a'\n    # DLL is installed to $(libdir)/../bin by postinstall_cmds\n    postinstall_cmds='base_file=`basename \\${file}`~\n      dlpath=`$SHELL 2>&1 -c '\\''. $dir/'\\''\\${base_file}'\\''i; echo \\$dlname'\\''`~\n      dldir=$destdir/`dirname \\$dlpath`~\n      test -d \\$dldir || mkdir -p \\$dldir~\n      $install_prog $dir/$dlname \\$dldir/$dlname~\n      chmod a+x \\$dldir/$dlname~\n      if test -n '\\''$stripme'\\'' && test -n '\\''$striplib'\\''; then\n        eval '\\''$striplib \\$dldir/$dlname'\\'' || exit \\$?;\n      fi'\n    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\\''. $file; echo \\$dlname'\\''`~\n      dlpath=$dir/\\$dldll~\n       $RM \\$dlpath'\n    shlibpath_overrides_runpath=yes\n\n    case $host_os in\n    cygwin*)\n      # Cygwin DLLs use 'cyg' prefix rather than 'lib'\n      soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'\nm4_if([$1], [],[\n      sys_lib_search_path_spec=\"$sys_lib_search_path_spec /usr/lib/w32api\"])\n      ;;\n    mingw* | cegcc*)\n      # MinGW DLLs use traditional 'lib' prefix\n      soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'\n      ;;\n    pw32*)\n      # pw32 DLLs use 'pw' prefix rather than 'lib'\n      library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'\n      ;;\n    esac\n    ;;\n\n  *)\n    library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib'\n    ;;\n  esac\n  dynamic_linker='Win32 ld.exe'\n  # FIXME: first we should search . and the directory the executable is in\n  shlibpath_var=PATH\n  ;;\n\ndarwin* | rhapsody*)\n  dynamic_linker=\"$host_os dyld\"\n  version_type=darwin\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext ${libname}${release}${versuffix}$shared_ext'\n  soname_spec='${libname}${release}${major}$shared_ext'\n  shlibpath_overrides_runpath=yes\n  shlibpath_var=DYLD_LIBRARY_PATH\n  shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'\nm4_if([$1], [],[\n  sys_lib_search_path_spec=\"$sys_lib_search_path_spec /usr/local/lib\"])\n  sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'\n  ;;\n\ndgux*)\n  version_type=linux\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  ;;\n\nfreebsd1*)\n  dynamic_linker=no\n  ;;\n\nfreebsd* | dragonfly*)\n  # DragonFly does not have aout.  When/if they implement a new\n  # versioning mechanism, adjust this.\n  if test -x /usr/bin/objformat; then\n    objformat=`/usr/bin/objformat`\n  else\n    case $host_os in\n    freebsd[[123]]*) objformat=aout ;;\n    *) objformat=elf ;;\n    esac\n  fi\n  version_type=freebsd-$objformat\n  case $version_type in\n    freebsd-elf*)\n      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'\n      need_version=no\n      need_lib_prefix=no\n      ;;\n    freebsd-*)\n      library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix'\n      need_version=yes\n      ;;\n  esac\n  shlibpath_var=LD_LIBRARY_PATH\n  case $host_os in\n  freebsd2*)\n    shlibpath_overrides_runpath=yes\n    ;;\n  freebsd3.[[01]]* | freebsdelf3.[[01]]*)\n    shlibpath_overrides_runpath=yes\n    hardcode_into_libs=yes\n    ;;\n  freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \\\n  freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1)\n    shlibpath_overrides_runpath=no\n    hardcode_into_libs=yes\n    ;;\n  *) # from 4.6 on, and DragonFly\n    shlibpath_overrides_runpath=yes\n    hardcode_into_libs=yes\n    ;;\n  esac\n  ;;\n\ngnu*)\n  version_type=linux\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  hardcode_into_libs=yes\n  ;;\n\nhaiku*)\n  version_type=linux\n  need_lib_prefix=no\n  need_version=no\n  dynamic_linker=\"$host_os runtime_loader\"\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  shlibpath_var=LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib'\n  hardcode_into_libs=yes\n  ;;\n\nhpux9* | hpux10* | hpux11*)\n  # Give a soname corresponding to the major version so that dld.sl refuses to\n  # link against other versions.\n  version_type=sunos\n  need_lib_prefix=no\n  need_version=no\n  case $host_cpu in\n  ia64*)\n    shrext_cmds='.so'\n    hardcode_into_libs=yes\n    dynamic_linker=\"$host_os dld.so\"\n    shlibpath_var=LD_LIBRARY_PATH\n    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.\n    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n    soname_spec='${libname}${release}${shared_ext}$major'\n    if test \"X$HPUX_IA64_MODE\" = X32; then\n      sys_lib_search_path_spec=\"/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib\"\n    else\n      sys_lib_search_path_spec=\"/usr/lib/hpux64 /usr/local/lib/hpux64\"\n    fi\n    sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec\n    ;;\n  hppa*64*)\n    shrext_cmds='.sl'\n    hardcode_into_libs=yes\n    dynamic_linker=\"$host_os dld.sl\"\n    shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH\n    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.\n    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n    soname_spec='${libname}${release}${shared_ext}$major'\n    sys_lib_search_path_spec=\"/usr/lib/pa20_64 /usr/ccs/lib/pa20_64\"\n    sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec\n    ;;\n  *)\n    shrext_cmds='.sl'\n    dynamic_linker=\"$host_os dld.sl\"\n    shlibpath_var=SHLIB_PATH\n    shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH\n    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n    soname_spec='${libname}${release}${shared_ext}$major'\n    ;;\n  esac\n  # HP-UX runs *really* slowly unless shared libraries are mode 555, ...\n  postinstall_cmds='chmod 555 $lib'\n  # or fails outright, so override atomically:\n  install_override_mode=555\n  ;;\n\ninterix[[3-9]]*)\n  version_type=linux\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n  hardcode_into_libs=yes\n  ;;\n\nirix5* | irix6* | nonstopux*)\n  case $host_os in\n    nonstopux*) version_type=nonstopux ;;\n    *)\n\tif test \"$lt_cv_prog_gnu_ld\" = yes; then\n\t\tversion_type=linux\n\telse\n\t\tversion_type=irix\n\tfi ;;\n  esac\n  need_lib_prefix=no\n  need_version=no\n  soname_spec='${libname}${release}${shared_ext}$major'\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}'\n  case $host_os in\n  irix5* | nonstopux*)\n    libsuff= shlibsuff=\n    ;;\n  *)\n    case $LD in # libtool.m4 will add one of these switches to LD\n    *-32|*\"-32 \"|*-melf32bsmip|*\"-melf32bsmip \")\n      libsuff= shlibsuff= libmagic=32-bit;;\n    *-n32|*\"-n32 \"|*-melf32bmipn32|*\"-melf32bmipn32 \")\n      libsuff=32 shlibsuff=N32 libmagic=N32;;\n    *-64|*\"-64 \"|*-melf64bmip|*\"-melf64bmip \")\n      libsuff=64 shlibsuff=64 libmagic=64-bit;;\n    *) libsuff= shlibsuff= libmagic=never-match;;\n    esac\n    ;;\n  esac\n  shlibpath_var=LD_LIBRARY${shlibsuff}_PATH\n  shlibpath_overrides_runpath=no\n  sys_lib_search_path_spec=\"/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}\"\n  sys_lib_dlsearch_path_spec=\"/usr/lib${libsuff} /lib${libsuff}\"\n  hardcode_into_libs=yes\n  ;;\n\n# No shared lib support for Linux oldld, aout, or coff.\nlinux*oldld* | linux*aout* | linux*coff*)\n  dynamic_linker=no\n  ;;\n\n# This must be Linux ELF.\nlinux* | k*bsd*-gnu | kopensolaris*-gnu)\n  version_type=linux\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig -n $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n\n  # Some binutils ld are patched to set DT_RUNPATH\n  AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath],\n    [lt_cv_shlibpath_overrides_runpath=no\n    save_LDFLAGS=$LDFLAGS\n    save_libdir=$libdir\n    eval \"libdir=/foo; wl=\\\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\\\"; \\\n\t LDFLAGS=\\\"\\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\\\"\"\n    AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])],\n      [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep \"RUNPATH.*$libdir\" >/dev/null],\n\t [lt_cv_shlibpath_overrides_runpath=yes])])\n    LDFLAGS=$save_LDFLAGS\n    libdir=$save_libdir\n    ])\n  shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath\n\n  # This implies no fast_install, which is unacceptable.\n  # Some rework will be needed to allow for fast_install\n  # before this can be enabled.\n  hardcode_into_libs=yes\n\n  # Append ld.so.conf contents to the search path\n  if test -f /etc/ld.so.conf; then\n    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/#.*//;/^[\t ]*hwcap[\t ]/d;s/[:,\t]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/\"//g;/^$/d' | tr '\\n' ' '`\n    sys_lib_dlsearch_path_spec=\"/lib /usr/lib $lt_ld_extra\"\n  fi\n\n  # We used to test for /lib/ld.so.1 and disable shared libraries on\n  # powerpc, because MkLinux only supported shared libraries with the\n  # GNU dynamic linker.  Since this was broken with cross compilers,\n  # most powerpc-linux boxes support dynamic linking these days and\n  # people can always --disable-shared, the test was removed, and we\n  # assume the GNU/Linux dynamic linker is in use.\n  dynamic_linker='GNU/Linux ld.so'\n  ;;\n\nnetbsd*)\n  version_type=sunos\n  need_lib_prefix=no\n  need_version=no\n  if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then\n    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'\n    finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig -m $libdir'\n    dynamic_linker='NetBSD (a.out) ld.so'\n  else\n    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'\n    soname_spec='${libname}${release}${shared_ext}$major'\n    dynamic_linker='NetBSD ld.elf_so'\n  fi\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  hardcode_into_libs=yes\n  ;;\n\nnewsos6)\n  version_type=linux\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  ;;\n\n*nto* | *qnx*)\n  version_type=qnx\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n  hardcode_into_libs=yes\n  dynamic_linker='ldqnx.so'\n  ;;\n\nopenbsd*)\n  version_type=sunos\n  sys_lib_dlsearch_path_spec=\"/usr/lib\"\n  need_lib_prefix=no\n  # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs.\n  case $host_os in\n    openbsd3.3 | openbsd3.3.*)\tneed_version=yes ;;\n    *)\t\t\t\tneed_version=no  ;;\n  esac\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'\n  finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig -m $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  if test -z \"`echo __ELF__ | $CC -E - | $GREP __ELF__`\" || test \"$host_os-$host_cpu\" = \"openbsd2.8-powerpc\"; then\n    case $host_os in\n      openbsd2.[[89]] | openbsd2.[[89]].*)\n\tshlibpath_overrides_runpath=no\n\t;;\n      *)\n\tshlibpath_overrides_runpath=yes\n\t;;\n      esac\n  else\n    shlibpath_overrides_runpath=yes\n  fi\n  ;;\n\nos2*)\n  libname_spec='$name'\n  shrext_cmds=\".dll\"\n  need_lib_prefix=no\n  library_names_spec='$libname${shared_ext} $libname.a'\n  dynamic_linker='OS/2 ld.exe'\n  shlibpath_var=LIBPATH\n  ;;\n\nosf3* | osf4* | osf5*)\n  version_type=osf\n  need_lib_prefix=no\n  need_version=no\n  soname_spec='${libname}${release}${shared_ext}$major'\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n  shlibpath_var=LD_LIBRARY_PATH\n  sys_lib_search_path_spec=\"/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib\"\n  sys_lib_dlsearch_path_spec=\"$sys_lib_search_path_spec\"\n  ;;\n\nrdos*)\n  dynamic_linker=no\n  ;;\n\nsolaris*)\n  version_type=linux\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  hardcode_into_libs=yes\n  # ldd complains unless libraries are executable\n  postinstall_cmds='chmod +x $lib'\n  ;;\n\nsunos4*)\n  version_type=sunos\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'\n  finish_cmds='PATH=\"\\$PATH:/usr/etc\" ldconfig $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  if test \"$with_gnu_ld\" = yes; then\n    need_lib_prefix=no\n  fi\n  need_version=yes\n  ;;\n\nsysv4 | sysv4.3*)\n  version_type=linux\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  case $host_vendor in\n    sni)\n      shlibpath_overrides_runpath=no\n      need_lib_prefix=no\n      runpath_var=LD_RUN_PATH\n      ;;\n    siemens)\n      need_lib_prefix=no\n      ;;\n    motorola)\n      need_lib_prefix=no\n      need_version=no\n      shlibpath_overrides_runpath=no\n      sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'\n      ;;\n  esac\n  ;;\n\nsysv4*MP*)\n  if test -d /usr/nec ;then\n    version_type=linux\n    library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}'\n    soname_spec='$libname${shared_ext}.$major'\n    shlibpath_var=LD_LIBRARY_PATH\n  fi\n  ;;\n\nsysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)\n  version_type=freebsd-elf\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  hardcode_into_libs=yes\n  if test \"$with_gnu_ld\" = yes; then\n    sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'\n  else\n    sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'\n    case $host_os in\n      sco3.2v5*)\n        sys_lib_search_path_spec=\"$sys_lib_search_path_spec /lib\"\n\t;;\n    esac\n  fi\n  sys_lib_dlsearch_path_spec='/usr/lib'\n  ;;\n\ntpf*)\n  # TPF is a cross-target only.  Preferred cross-host = GNU/Linux.\n  version_type=linux\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n  hardcode_into_libs=yes\n  ;;\n\nuts4*)\n  version_type=linux\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  ;;\n\n*)\n  dynamic_linker=no\n  ;;\nesac\nAC_MSG_RESULT([$dynamic_linker])\ntest \"$dynamic_linker\" = no && can_build_shared=no\n\nvariables_saved_for_relink=\"PATH $shlibpath_var $runpath_var\"\nif test \"$GCC\" = yes; then\n  variables_saved_for_relink=\"$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH\"\nfi\n\nif test \"${lt_cv_sys_lib_search_path_spec+set}\" = set; then\n  sys_lib_search_path_spec=\"$lt_cv_sys_lib_search_path_spec\"\nfi\nif test \"${lt_cv_sys_lib_dlsearch_path_spec+set}\" = set; then\n  sys_lib_dlsearch_path_spec=\"$lt_cv_sys_lib_dlsearch_path_spec\"\nfi\n\n_LT_DECL([], [variables_saved_for_relink], [1],\n    [Variables whose values should be saved in libtool wrapper scripts and\n    restored at link time])\n_LT_DECL([], [need_lib_prefix], [0],\n    [Do we need the \"lib\" prefix for modules?])\n_LT_DECL([], [need_version], [0], [Do we need a version for libraries?])\n_LT_DECL([], [version_type], [0], [Library versioning type])\n_LT_DECL([], [runpath_var], [0],  [Shared library runtime path variable])\n_LT_DECL([], [shlibpath_var], [0],[Shared library path variable])\n_LT_DECL([], [shlibpath_overrides_runpath], [0],\n    [Is shlibpath searched before the hard-coded library search path?])\n_LT_DECL([], [libname_spec], [1], [Format of library name prefix])\n_LT_DECL([], [library_names_spec], [1],\n    [[List of archive names.  First name is the real one, the rest are links.\n    The last name is the one that the linker finds with -lNAME]])\n_LT_DECL([], [soname_spec], [1],\n    [[The coded name of the library, if different from the real name]])\n_LT_DECL([], [install_override_mode], [1],\n    [Permission mode override for installation of shared libraries])\n_LT_DECL([], [postinstall_cmds], [2],\n    [Command to use after installation of a shared archive])\n_LT_DECL([], [postuninstall_cmds], [2],\n    [Command to use after uninstallation of a shared archive])\n_LT_DECL([], [finish_cmds], [2],\n    [Commands used to finish a libtool library installation in a directory])\n_LT_DECL([], [finish_eval], [1],\n    [[As \"finish_cmds\", except a single script fragment to be evaled but\n    not shown]])\n_LT_DECL([], [hardcode_into_libs], [0],\n    [Whether we should hardcode library paths into libraries])\n_LT_DECL([], [sys_lib_search_path_spec], [2],\n    [Compile-time system search path for libraries])\n_LT_DECL([], [sys_lib_dlsearch_path_spec], [2],\n    [Run-time system search path for libraries])\n])# _LT_SYS_DYNAMIC_LINKER\n\n\n# _LT_PATH_TOOL_PREFIX(TOOL)\n# --------------------------\n# find a file program which can recognize shared library\nAC_DEFUN([_LT_PATH_TOOL_PREFIX],\n[m4_require([_LT_DECL_EGREP])dnl\nAC_MSG_CHECKING([for $1])\nAC_CACHE_VAL(lt_cv_path_MAGIC_CMD,\n[case $MAGIC_CMD in\n[[\\\\/*] |  ?:[\\\\/]*])\n  lt_cv_path_MAGIC_CMD=\"$MAGIC_CMD\" # Let the user override the test with a path.\n  ;;\n*)\n  lt_save_MAGIC_CMD=\"$MAGIC_CMD\"\n  lt_save_ifs=\"$IFS\"; IFS=$PATH_SEPARATOR\ndnl $ac_dummy forces splitting on constant user-supplied paths.\ndnl POSIX.2 word splitting is done only on the output of word expansions,\ndnl not every word.  This closes a longstanding sh security hole.\n  ac_dummy=\"m4_if([$2], , $PATH, [$2])\"\n  for ac_dir in $ac_dummy; do\n    IFS=\"$lt_save_ifs\"\n    test -z \"$ac_dir\" && ac_dir=.\n    if test -f $ac_dir/$1; then\n      lt_cv_path_MAGIC_CMD=\"$ac_dir/$1\"\n      if test -n \"$file_magic_test_file\"; then\n\tcase $deplibs_check_method in\n\t\"file_magic \"*)\n\t  file_magic_regex=`expr \"$deplibs_check_method\" : \"file_magic \\(.*\\)\"`\n\t  MAGIC_CMD=\"$lt_cv_path_MAGIC_CMD\"\n\t  if eval $file_magic_cmd \\$file_magic_test_file 2> /dev/null |\n\t    $EGREP \"$file_magic_regex\" > /dev/null; then\n\t    :\n\t  else\n\t    cat <<_LT_EOF 1>&2\n\n*** Warning: the command libtool uses to detect shared libraries,\n*** $file_magic_cmd, produces output that libtool cannot recognize.\n*** The result is that libtool may fail to recognize shared libraries\n*** as such.  This will affect the creation of libtool libraries that\n*** depend on shared libraries, but programs linked with such libtool\n*** libraries will work regardless of this problem.  Nevertheless, you\n*** may want to report the problem to your system manager and/or to\n*** bug-libtool@gnu.org\n\n_LT_EOF\n\t  fi ;;\n\tesac\n      fi\n      break\n    fi\n  done\n  IFS=\"$lt_save_ifs\"\n  MAGIC_CMD=\"$lt_save_MAGIC_CMD\"\n  ;;\nesac])\nMAGIC_CMD=\"$lt_cv_path_MAGIC_CMD\"\nif test -n \"$MAGIC_CMD\"; then\n  AC_MSG_RESULT($MAGIC_CMD)\nelse\n  AC_MSG_RESULT(no)\nfi\n_LT_DECL([], [MAGIC_CMD], [0],\n\t [Used to examine libraries when file_magic_cmd begins with \"file\"])dnl\n])# _LT_PATH_TOOL_PREFIX\n\n# Old name:\nAU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_PATH_TOOL_PREFIX], [])\n\n\n# _LT_PATH_MAGIC\n# --------------\n# find a file program which can recognize a shared library\nm4_defun([_LT_PATH_MAGIC],\n[_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH)\nif test -z \"$lt_cv_path_MAGIC_CMD\"; then\n  if test -n \"$ac_tool_prefix\"; then\n    _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH)\n  else\n    MAGIC_CMD=:\n  fi\nfi\n])# _LT_PATH_MAGIC\n\n\n# LT_PATH_LD\n# ----------\n# find the pathname to the GNU or non-GNU linker\nAC_DEFUN([LT_PATH_LD],\n[AC_REQUIRE([AC_PROG_CC])dnl\nAC_REQUIRE([AC_CANONICAL_HOST])dnl\nAC_REQUIRE([AC_CANONICAL_BUILD])dnl\nm4_require([_LT_DECL_SED])dnl\nm4_require([_LT_DECL_EGREP])dnl\nm4_require([_LT_PROG_ECHO_BACKSLASH])dnl\n\nAC_ARG_WITH([gnu-ld],\n    [AS_HELP_STRING([--with-gnu-ld],\n\t[assume the C compiler uses GNU ld @<:@default=no@:>@])],\n    [test \"$withval\" = no || with_gnu_ld=yes],\n    [with_gnu_ld=no])dnl\n\nac_prog=ld\nif test \"$GCC\" = yes; then\n  # Check if gcc -print-prog-name=ld gives a path.\n  AC_MSG_CHECKING([for ld used by $CC])\n  case $host in\n  *-*-mingw*)\n    # gcc leaves a trailing carriage return which upsets mingw\n    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\\015'` ;;\n  *)\n    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;\n  esac\n  case $ac_prog in\n    # Accept absolute paths.\n    [[\\\\/]]* | ?:[[\\\\/]]*)\n      re_direlt='/[[^/]][[^/]]*/\\.\\./'\n      # Canonicalize the pathname of ld\n      ac_prog=`$ECHO \"$ac_prog\"| $SED 's%\\\\\\\\%/%g'`\n      while $ECHO \"$ac_prog\" | $GREP \"$re_direlt\" > /dev/null 2>&1; do\n\tac_prog=`$ECHO $ac_prog| $SED \"s%$re_direlt%/%\"`\n      done\n      test -z \"$LD\" && LD=\"$ac_prog\"\n      ;;\n  \"\")\n    # If it fails, then pretend we aren't using GCC.\n    ac_prog=ld\n    ;;\n  *)\n    # If it is relative, then search for the first ld in PATH.\n    with_gnu_ld=unknown\n    ;;\n  esac\nelif test \"$with_gnu_ld\" = yes; then\n  AC_MSG_CHECKING([for GNU ld])\nelse\n  AC_MSG_CHECKING([for non-GNU ld])\nfi\nAC_CACHE_VAL(lt_cv_path_LD,\n[if test -z \"$LD\"; then\n  lt_save_ifs=\"$IFS\"; IFS=$PATH_SEPARATOR\n  for ac_dir in $PATH; do\n    IFS=\"$lt_save_ifs\"\n    test -z \"$ac_dir\" && ac_dir=.\n    if test -f \"$ac_dir/$ac_prog\" || test -f \"$ac_dir/$ac_prog$ac_exeext\"; then\n      lt_cv_path_LD=\"$ac_dir/$ac_prog\"\n      # Check to see if the program is GNU ld.  I'd rather use --version,\n      # but apparently some variants of GNU ld only accept -v.\n      # Break only if it was the GNU/non-GNU ld that we prefer.\n      case `\"$lt_cv_path_LD\" -v 2>&1 </dev/null` in\n      *GNU* | *'with BFD'*)\n\ttest \"$with_gnu_ld\" != no && break\n\t;;\n      *)\n\ttest \"$with_gnu_ld\" != yes && break\n\t;;\n      esac\n    fi\n  done\n  IFS=\"$lt_save_ifs\"\nelse\n  lt_cv_path_LD=\"$LD\" # Let the user override the test with a path.\nfi])\nLD=\"$lt_cv_path_LD\"\nif test -n \"$LD\"; then\n  AC_MSG_RESULT($LD)\nelse\n  AC_MSG_RESULT(no)\nfi\ntest -z \"$LD\" && AC_MSG_ERROR([no acceptable ld found in \\$PATH])\n_LT_PATH_LD_GNU\nAC_SUBST([LD])\n\n_LT_TAGDECL([], [LD], [1], [The linker used to build libraries])\n])# LT_PATH_LD\n\n# Old names:\nAU_ALIAS([AM_PROG_LD], [LT_PATH_LD])\nAU_ALIAS([AC_PROG_LD], [LT_PATH_LD])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AM_PROG_LD], [])\ndnl AC_DEFUN([AC_PROG_LD], [])\n\n\n# _LT_PATH_LD_GNU\n#- --------------\nm4_defun([_LT_PATH_LD_GNU],\n[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], lt_cv_prog_gnu_ld,\n[# I'd rather use --version here, but apparently some GNU lds only accept -v.\ncase `$LD -v 2>&1 </dev/null` in\n*GNU* | *'with BFD'*)\n  lt_cv_prog_gnu_ld=yes\n  ;;\n*)\n  lt_cv_prog_gnu_ld=no\n  ;;\nesac])\nwith_gnu_ld=$lt_cv_prog_gnu_ld\n])# _LT_PATH_LD_GNU\n\n\n# _LT_CMD_RELOAD\n# --------------\n# find reload flag for linker\n#   -- PORTME Some linkers may need a different reload flag.\nm4_defun([_LT_CMD_RELOAD],\n[AC_CACHE_CHECK([for $LD option to reload object files],\n  lt_cv_ld_reload_flag,\n  [lt_cv_ld_reload_flag='-r'])\nreload_flag=$lt_cv_ld_reload_flag\ncase $reload_flag in\n\"\" | \" \"*) ;;\n*) reload_flag=\" $reload_flag\" ;;\nesac\nreload_cmds='$LD$reload_flag -o $output$reload_objs'\ncase $host_os in\n  darwin*)\n    if test \"$GCC\" = yes; then\n      reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs'\n    else\n      reload_cmds='$LD$reload_flag -o $output$reload_objs'\n    fi\n    ;;\nesac\n_LT_TAGDECL([], [reload_flag], [1], [How to create reloadable object files])dnl\n_LT_TAGDECL([], [reload_cmds], [2])dnl\n])# _LT_CMD_RELOAD\n\n\n# _LT_CHECK_MAGIC_METHOD\n# ----------------------\n# how to check for library dependencies\n#  -- PORTME fill in with the dynamic library characteristics\nm4_defun([_LT_CHECK_MAGIC_METHOD],\n[m4_require([_LT_DECL_EGREP])\nm4_require([_LT_DECL_OBJDUMP])\nAC_CACHE_CHECK([how to recognize dependent libraries],\nlt_cv_deplibs_check_method,\n[lt_cv_file_magic_cmd='$MAGIC_CMD'\nlt_cv_file_magic_test_file=\nlt_cv_deplibs_check_method='unknown'\n# Need to set the preceding variable on all platforms that support\n# interlibrary dependencies.\n# 'none' -- dependencies not supported.\n# `unknown' -- same as none, but documents that we really don't know.\n# 'pass_all' -- all dependencies passed with no checks.\n# 'test_compile' -- check by making test program.\n# 'file_magic [[regex]]' -- check by looking for files in library path\n# which responds to the $file_magic_cmd with a given extended regex.\n# If you have `file' or equivalent on your system and you're not sure\n# whether `pass_all' will *always* work, you probably want this one.\n\ncase $host_os in\naix[[4-9]]*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nbeos*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nbsdi[[45]]*)\n  lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)'\n  lt_cv_file_magic_cmd='/usr/bin/file -L'\n  lt_cv_file_magic_test_file=/shlib/libc.so\n  ;;\n\ncygwin*)\n  # func_win32_libid is a shell function defined in ltmain.sh\n  lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'\n  lt_cv_file_magic_cmd='func_win32_libid'\n  ;;\n\nmingw* | pw32*)\n  # Base MSYS/MinGW do not provide the 'file' command needed by\n  # func_win32_libid shell function, so use a weaker test based on 'objdump',\n  # unless we find 'file', for example because we are cross-compiling.\n  # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin.\n  if ( test \"$lt_cv_nm_interface\" = \"BSD nm\" && file / ) >/dev/null 2>&1; then\n    lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'\n    lt_cv_file_magic_cmd='func_win32_libid'\n  else\n    # Keep this pattern in sync with the one in func_win32_libid.\n    lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)'\n    lt_cv_file_magic_cmd='$OBJDUMP -f'\n  fi\n  ;;\n\ncegcc*)\n  # use the weaker test based on 'objdump'. See mingw*.\n  lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?'\n  lt_cv_file_magic_cmd='$OBJDUMP -f'\n  ;;\n\ndarwin* | rhapsody*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nfreebsd* | dragonfly*)\n  if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then\n    case $host_cpu in\n    i*86 )\n      # Not sure whether the presence of OpenBSD here was a mistake.\n      # Let's accept both of them until this is cleared up.\n      lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library'\n      lt_cv_file_magic_cmd=/usr/bin/file\n      lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`\n      ;;\n    esac\n  else\n    lt_cv_deplibs_check_method=pass_all\n  fi\n  ;;\n\ngnu*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nhaiku*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nhpux10.20* | hpux11*)\n  lt_cv_file_magic_cmd=/usr/bin/file\n  case $host_cpu in\n  ia64*)\n    lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64'\n    lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so\n    ;;\n  hppa*64*)\n    [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]']\n    lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl\n    ;;\n  *)\n    lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\\.[[0-9]]) shared library'\n    lt_cv_file_magic_test_file=/usr/lib/libc.sl\n    ;;\n  esac\n  ;;\n\ninterix[[3-9]]*)\n  # PIC code is broken on Interix 3.x, that's why |\\.a not |_pic\\.a here\n  lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\\.so|\\.a)$'\n  ;;\n\nirix5* | irix6* | nonstopux*)\n  case $LD in\n  *-32|*\"-32 \") libmagic=32-bit;;\n  *-n32|*\"-n32 \") libmagic=N32;;\n  *-64|*\"-64 \") libmagic=64-bit;;\n  *) libmagic=never-match;;\n  esac\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\n# This must be Linux ELF.\nlinux* | k*bsd*-gnu | kopensolaris*-gnu)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nnetbsd*)\n  if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then\n    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\\.so\\.[[0-9]]+\\.[[0-9]]+|_pic\\.a)$'\n  else\n    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\\.so|_pic\\.a)$'\n  fi\n  ;;\n\nnewos6*)\n  lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)'\n  lt_cv_file_magic_cmd=/usr/bin/file\n  lt_cv_file_magic_test_file=/usr/lib/libnls.so\n  ;;\n\n*nto* | *qnx*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nopenbsd*)\n  if test -z \"`echo __ELF__ | $CC -E - | $GREP __ELF__`\" || test \"$host_os-$host_cpu\" = \"openbsd2.8-powerpc\"; then\n    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\\.so\\.[[0-9]]+\\.[[0-9]]+|\\.so|_pic\\.a)$'\n  else\n    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\\.so\\.[[0-9]]+\\.[[0-9]]+|_pic\\.a)$'\n  fi\n  ;;\n\nosf3* | osf4* | osf5*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nrdos*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nsolaris*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nsysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nsysv4 | sysv4.3*)\n  case $host_vendor in\n  motorola)\n    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]]'\n    lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`\n    ;;\n  ncr)\n    lt_cv_deplibs_check_method=pass_all\n    ;;\n  sequent)\n    lt_cv_file_magic_cmd='/bin/file'\n    lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )'\n    ;;\n  sni)\n    lt_cv_file_magic_cmd='/bin/file'\n    lt_cv_deplibs_check_method=\"file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib\"\n    lt_cv_file_magic_test_file=/lib/libc.so\n    ;;\n  siemens)\n    lt_cv_deplibs_check_method=pass_all\n    ;;\n  pc)\n    lt_cv_deplibs_check_method=pass_all\n    ;;\n  esac\n  ;;\n\ntpf*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\nesac\n])\nfile_magic_cmd=$lt_cv_file_magic_cmd\ndeplibs_check_method=$lt_cv_deplibs_check_method\ntest -z \"$deplibs_check_method\" && deplibs_check_method=unknown\n\n_LT_DECL([], [deplibs_check_method], [1],\n    [Method to check whether dependent libraries are shared objects])\n_LT_DECL([], [file_magic_cmd], [1],\n    [Command to use when deplibs_check_method == \"file_magic\"])\n])# _LT_CHECK_MAGIC_METHOD\n\n\n# LT_PATH_NM\n# ----------\n# find the pathname to a BSD- or MS-compatible name lister\nAC_DEFUN([LT_PATH_NM],\n[AC_REQUIRE([AC_PROG_CC])dnl\nAC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM,\n[if test -n \"$NM\"; then\n  # Let the user override the test.\n  lt_cv_path_NM=\"$NM\"\nelse\n  lt_nm_to_check=\"${ac_tool_prefix}nm\"\n  if test -n \"$ac_tool_prefix\" && test \"$build\" = \"$host\"; then\n    lt_nm_to_check=\"$lt_nm_to_check nm\"\n  fi\n  for lt_tmp_nm in $lt_nm_to_check; do\n    lt_save_ifs=\"$IFS\"; IFS=$PATH_SEPARATOR\n    for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do\n      IFS=\"$lt_save_ifs\"\n      test -z \"$ac_dir\" && ac_dir=.\n      tmp_nm=\"$ac_dir/$lt_tmp_nm\"\n      if test -f \"$tmp_nm\" || test -f \"$tmp_nm$ac_exeext\" ; then\n\t# Check to see if the nm accepts a BSD-compat flag.\n\t# Adding the `sed 1q' prevents false positives on HP-UX, which says:\n\t#   nm: unknown option \"B\" ignored\n\t# Tru64's nm complains that /dev/null is an invalid object file\n\tcase `\"$tmp_nm\" -B /dev/null 2>&1 | sed '1q'` in\n\t*/dev/null* | *'Invalid file or object type'*)\n\t  lt_cv_path_NM=\"$tmp_nm -B\"\n\t  break\n\t  ;;\n\t*)\n\t  case `\"$tmp_nm\" -p /dev/null 2>&1 | sed '1q'` in\n\t  */dev/null*)\n\t    lt_cv_path_NM=\"$tmp_nm -p\"\n\t    break\n\t    ;;\n\t  *)\n\t    lt_cv_path_NM=${lt_cv_path_NM=\"$tmp_nm\"} # keep the first match, but\n\t    continue # so that we can try to find one that supports BSD flags\n\t    ;;\n\t  esac\n\t  ;;\n\tesac\n      fi\n    done\n    IFS=\"$lt_save_ifs\"\n  done\n  : ${lt_cv_path_NM=no}\nfi])\nif test \"$lt_cv_path_NM\" != \"no\"; then\n  NM=\"$lt_cv_path_NM\"\nelse\n  # Didn't find any BSD compatible name lister, look for dumpbin.\n  if test -n \"$DUMPBIN\"; then :\n    # Let the user override the test.\n  else\n    AC_CHECK_TOOLS(DUMPBIN, [dumpbin \"link -dump\"], :)\n    case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in\n    *COFF*)\n      DUMPBIN=\"$DUMPBIN -symbols\"\n      ;;\n    *)\n      DUMPBIN=:\n      ;;\n    esac\n  fi\n  AC_SUBST([DUMPBIN])\n  if test \"$DUMPBIN\" != \":\"; then\n    NM=\"$DUMPBIN\"\n  fi\nfi\ntest -z \"$NM\" && NM=nm\nAC_SUBST([NM])\n_LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl\n\nAC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface],\n  [lt_cv_nm_interface=\"BSD nm\"\n  echo \"int some_variable = 0;\" > conftest.$ac_ext\n  (eval echo \"\\\"\\$as_me:$LINENO: $ac_compile\\\"\" >&AS_MESSAGE_LOG_FD)\n  (eval \"$ac_compile\" 2>conftest.err)\n  cat conftest.err >&AS_MESSAGE_LOG_FD\n  (eval echo \"\\\"\\$as_me:$LINENO: $NM \\\\\\\"conftest.$ac_objext\\\\\\\"\\\"\" >&AS_MESSAGE_LOG_FD)\n  (eval \"$NM \\\"conftest.$ac_objext\\\"\" 2>conftest.err > conftest.out)\n  cat conftest.err >&AS_MESSAGE_LOG_FD\n  (eval echo \"\\\"\\$as_me:$LINENO: output\\\"\" >&AS_MESSAGE_LOG_FD)\n  cat conftest.out >&AS_MESSAGE_LOG_FD\n  if $GREP 'External.*some_variable' conftest.out > /dev/null; then\n    lt_cv_nm_interface=\"MS dumpbin\"\n  fi\n  rm -r -f conftest*])\n])# LT_PATH_NM\n\n# Old names:\nAU_ALIAS([AM_PROG_NM], [LT_PATH_NM])\nAU_ALIAS([AC_PROG_NM], [LT_PATH_NM])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AM_PROG_NM], [])\ndnl AC_DEFUN([AC_PROG_NM], [])\n\n\n# LT_LIB_M\n# --------\n# check for math library\nAC_DEFUN([LT_LIB_M],\n[AC_REQUIRE([AC_CANONICAL_HOST])dnl\nLIBM=\ncase $host in\n*-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*)\n  # These system don't have libm, or don't need it\n  ;;\n*-ncr-sysv4.3*)\n  AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM=\"-lmw\")\n  AC_CHECK_LIB(m, cos, LIBM=\"$LIBM -lm\")\n  ;;\n*)\n  AC_CHECK_LIB(m, cos, LIBM=\"-lm\")\n  ;;\nesac\nAC_SUBST([LIBM])\n])# LT_LIB_M\n\n# Old name:\nAU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_CHECK_LIBM], [])\n\n\n# _LT_COMPILER_NO_RTTI([TAGNAME])\n# -------------------------------\nm4_defun([_LT_COMPILER_NO_RTTI],\n[m4_require([_LT_TAG_COMPILER])dnl\n\n_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=\n\nif test \"$GCC\" = yes; then\n  case $cc_basename in\n  nvcc*)\n    _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;;\n  *)\n    _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;;\n  esac\n\n  _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions],\n    lt_cv_prog_compiler_rtti_exceptions,\n    [-fno-rtti -fno-exceptions], [],\n    [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=\"$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions\"])\nfi\n_LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1],\n\t[Compiler flag to turn off builtin functions])\n])# _LT_COMPILER_NO_RTTI\n\n\n# _LT_CMD_GLOBAL_SYMBOLS\n# ----------------------\nm4_defun([_LT_CMD_GLOBAL_SYMBOLS],\n[AC_REQUIRE([AC_CANONICAL_HOST])dnl\nAC_REQUIRE([AC_PROG_CC])dnl\nAC_REQUIRE([AC_PROG_AWK])dnl\nAC_REQUIRE([LT_PATH_NM])dnl\nAC_REQUIRE([LT_PATH_LD])dnl\nm4_require([_LT_DECL_SED])dnl\nm4_require([_LT_DECL_EGREP])dnl\nm4_require([_LT_TAG_COMPILER])dnl\n\n# Check for command to grab the raw symbol name followed by C symbol from nm.\nAC_MSG_CHECKING([command to parse $NM output from $compiler object])\nAC_CACHE_VAL([lt_cv_sys_global_symbol_pipe],\n[\n# These are sane defaults that work on at least a few old systems.\n# [They come from Ultrix.  What could be older than Ultrix?!! ;)]\n\n# Character class describing NM global symbol codes.\nsymcode='[[BCDEGRST]]'\n\n# Regexp to match symbols that can be accessed directly from C.\nsympat='\\([[_A-Za-z]][[_A-Za-z0-9]]*\\)'\n\n# Define system-specific variables.\ncase $host_os in\naix*)\n  symcode='[[BCDT]]'\n  ;;\ncygwin* | mingw* | pw32* | cegcc*)\n  symcode='[[ABCDGISTW]]'\n  ;;\nhpux*)\n  if test \"$host_cpu\" = ia64; then\n    symcode='[[ABCDEGRST]]'\n  fi\n  ;;\nirix* | nonstopux*)\n  symcode='[[BCDEGRST]]'\n  ;;\nosf*)\n  symcode='[[BCDEGQRST]]'\n  ;;\nsolaris*)\n  symcode='[[BDRT]]'\n  ;;\nsco3.2v5*)\n  symcode='[[DT]]'\n  ;;\nsysv4.2uw2*)\n  symcode='[[DT]]'\n  ;;\nsysv5* | sco5v6* | unixware* | OpenUNIX*)\n  symcode='[[ABDT]]'\n  ;;\nsysv4)\n  symcode='[[DFNSTU]]'\n  ;;\nesac\n\n# If we're using GNU nm, then use its standard symbol codes.\ncase `$NM -V 2>&1` in\n*GNU* | *'with BFD'*)\n  symcode='[[ABCDGIRSTW]]' ;;\nesac\n\n# Transform an extracted symbol line into a proper C declaration.\n# Some systems (esp. on ia64) link data and code symbols differently,\n# so use this general approach.\nlt_cv_sys_global_symbol_to_cdecl=\"sed -n -e 's/^T .* \\(.*\\)$/extern int \\1();/p' -e 's/^$symcode* .* \\(.*\\)$/extern char \\1;/p'\"\n\n# Transform an extracted symbol line into symbol name and symbol address\nlt_cv_sys_global_symbol_to_c_name_address=\"sed -n -e 's/^: \\([[^ ]]*\\) $/  {\\\\\\\"\\1\\\\\\\", (void *) 0},/p' -e 's/^$symcode* \\([[^ ]]*\\) \\([[^ ]]*\\)$/  {\\\"\\2\\\", (void *) \\&\\2},/p'\"\nlt_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'\"\n\n# Handle CRLF in mingw tool chain\nopt_cr=\ncase $build_os in\nmingw*)\n  opt_cr=`$ECHO 'x\\{0,1\\}' | tr x '\\015'` # option cr in regexp\n  ;;\nesac\n\n# Try without a prefix underscore, then with it.\nfor ac_symprfx in \"\" \"_\"; do\n\n  # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol.\n  symxfrm=\"\\\\1 $ac_symprfx\\\\2 \\\\2\"\n\n  # Write the raw and C identifiers.\n  if test \"$lt_cv_nm_interface\" = \"MS dumpbin\"; then\n    # Fake it for dumpbin and say T for any non-static function\n    # and D for any global variable.\n    # Also find C++ and __fastcall symbols from MSVC++,\n    # which start with @ or ?.\n    lt_cv_sys_global_symbol_pipe=\"$AWK ['\"\\\n\"     {last_section=section; section=\\$ 3};\"\\\n\"     /Section length .*#relocs.*(pick any)/{hide[last_section]=1};\"\\\n\"     \\$ 0!~/External *\\|/{next};\"\\\n\"     / 0+ UNDEF /{next}; / UNDEF \\([^|]\\)*()/{next};\"\\\n\"     {if(hide[section]) next};\"\\\n\"     {f=0}; \\$ 0~/\\(\\).*\\|/{f=1}; {printf f ? \\\"T \\\" : \\\"D \\\"};\"\\\n\"     {split(\\$ 0, a, /\\||\\r/); split(a[2], s)};\"\\\n\"     s[1]~/^[@?]/{print s[1], s[1]; next};\"\\\n\"     s[1]~prfx {split(s[1],t,\\\"@\\\"); print t[1], substr(t[1],length(prfx))}\"\\\n\"     ' prfx=^$ac_symprfx]\"\n  else\n    lt_cv_sys_global_symbol_pipe=\"sed -n -e 's/^.*[[\t ]]\\($symcode$symcode*\\)[[\t ]][[\t ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'\"\n  fi\n\n  # Check to see that the pipe works correctly.\n  pipe_works=no\n\n  rm -r -f conftest*\n  cat > conftest.$ac_ext <<_LT_EOF\n#ifdef __cplusplus\nextern \"C\" {\n#endif\nchar nm_test_var;\nvoid nm_test_func(void);\nvoid nm_test_func(void){}\n#ifdef __cplusplus\n}\n#endif\nint main(){nm_test_var='a';nm_test_func();return(0);}\n_LT_EOF\n\n  if AC_TRY_EVAL(ac_compile); then\n    # Now try to grab the symbols.\n    nlist=conftest.nm\n    if AC_TRY_EVAL(NM conftest.$ac_objext \\| \"$lt_cv_sys_global_symbol_pipe\" \\> $nlist) && test -s \"$nlist\"; then\n      # Try sorting and uniquifying the output.\n      if sort \"$nlist\" | uniq > \"$nlist\"T; then\n\tmv -f \"$nlist\"T \"$nlist\"\n      else\n\trm -f \"$nlist\"T\n      fi\n\n      # Make sure that we snagged all the symbols we need.\n      if $GREP ' nm_test_var$' \"$nlist\" >/dev/null; then\n\tif $GREP ' nm_test_func$' \"$nlist\" >/dev/null; then\n\t  cat <<_LT_EOF > conftest.$ac_ext\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n_LT_EOF\n\t  # Now generate the symbol file.\n\t  eval \"$lt_cv_sys_global_symbol_to_cdecl\"' < \"$nlist\" | $GREP -v main >> conftest.$ac_ext'\n\n\t  cat <<_LT_EOF >> conftest.$ac_ext\n\n/* The mapping between symbol names and symbols.  */\nconst struct {\n  const char *name;\n  void       *address;\n}\nlt__PROGRAM__LTX_preloaded_symbols[[]] =\n{\n  { \"@PROGRAM@\", (void *) 0 },\n_LT_EOF\n\t  $SED \"s/^$symcode$symcode* \\(.*\\) \\(.*\\)$/  {\\\"\\2\\\", (void *) \\&\\2},/\" < \"$nlist\" | $GREP -v main >> conftest.$ac_ext\n\t  cat <<\\_LT_EOF >> conftest.$ac_ext\n  {0, (void *) 0}\n};\n\n/* This works around a problem in FreeBSD linker */\n#ifdef FREEBSD_WORKAROUND\nstatic const void *lt_preloaded_setup() {\n  return lt__PROGRAM__LTX_preloaded_symbols;\n}\n#endif\n\n#ifdef __cplusplus\n}\n#endif\n_LT_EOF\n\t  # Now try linking the two files.\n\t  mv conftest.$ac_objext conftstm.$ac_objext\n\t  lt_save_LIBS=\"$LIBS\"\n\t  lt_save_CFLAGS=\"$CFLAGS\"\n\t  LIBS=\"conftstm.$ac_objext\"\n\t  CFLAGS=\"$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)\"\n\t  if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then\n\t    pipe_works=yes\n\t  fi\n\t  LIBS=\"$lt_save_LIBS\"\n\t  CFLAGS=\"$lt_save_CFLAGS\"\n\telse\n\t  echo \"cannot find nm_test_func in $nlist\" >&AS_MESSAGE_LOG_FD\n\tfi\n      else\n\techo \"cannot find nm_test_var in $nlist\" >&AS_MESSAGE_LOG_FD\n      fi\n    else\n      echo \"cannot run $lt_cv_sys_global_symbol_pipe\" >&AS_MESSAGE_LOG_FD\n    fi\n  else\n    echo \"$progname: failed program was:\" >&AS_MESSAGE_LOG_FD\n    cat conftest.$ac_ext >&5\n  fi\n  rm -rf conftest* conftst*\n\n  # Do not use the global_symbol_pipe unless it works.\n  if test \"$pipe_works\" = yes; then\n    break\n  else\n    lt_cv_sys_global_symbol_pipe=\n  fi\ndone\n])\nif test -z \"$lt_cv_sys_global_symbol_pipe\"; then\n  lt_cv_sys_global_symbol_to_cdecl=\nfi\nif test -z \"$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl\"; then\n  AC_MSG_RESULT(failed)\nelse\n  AC_MSG_RESULT(ok)\nfi\n\n_LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1],\n    [Take the output of nm and produce a listing of raw symbols and C names])\n_LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1],\n    [Transform the output of nm in a proper C declaration])\n_LT_DECL([global_symbol_to_c_name_address],\n    [lt_cv_sys_global_symbol_to_c_name_address], [1],\n    [Transform the output of nm in a C name address pair])\n_LT_DECL([global_symbol_to_c_name_address_lib_prefix],\n    [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1],\n    [Transform the output of nm in a C name address pair when lib prefix is needed])\n]) # _LT_CMD_GLOBAL_SYMBOLS\n\n\n# _LT_COMPILER_PIC([TAGNAME])\n# ---------------------------\nm4_defun([_LT_COMPILER_PIC],\n[m4_require([_LT_TAG_COMPILER])dnl\n_LT_TAGVAR(lt_prog_compiler_wl, $1)=\n_LT_TAGVAR(lt_prog_compiler_pic, $1)=\n_LT_TAGVAR(lt_prog_compiler_static, $1)=\n\nAC_MSG_CHECKING([for $compiler option to produce PIC])\nm4_if([$1], [CXX], [\n  # C++ specific cases for pic, static, wl, etc.\n  if test \"$GXX\" = yes; then\n    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n    _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'\n\n    case $host_os in\n    aix*)\n      # All AIX code is PIC.\n      if test \"$host_cpu\" = ia64; then\n\t# AIX 5 now supports IA64 processor\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n      fi\n      ;;\n\n    amigaos*)\n      case $host_cpu in\n      powerpc)\n            # see comment about AmigaOS4 .so support\n            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n        ;;\n      m68k)\n            # FIXME: we need at least 68020 code to build shared libraries, but\n            # adding the `-m68020' flag to GCC prevents building anything better,\n            # like `-m68040'.\n            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'\n        ;;\n      esac\n      ;;\n\n    beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)\n      # PIC is the default for these OSes.\n      ;;\n    mingw* | cygwin* | os2* | pw32* | cegcc*)\n      # This hack is so that the source file can tell whether it is being\n      # built for inclusion in a dll (and should export symbols for example).\n      # Although the cygwin gcc ignores -fPIC, still need this for old-style\n      # (--disable-auto-import) libraries\n      m4_if([$1], [GCJ], [],\n\t[_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])\n      ;;\n    darwin* | rhapsody*)\n      # PIC is the default on this platform\n      # Common symbols not allowed in MH_DYLIB files\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'\n      ;;\n    *djgpp*)\n      # DJGPP does not support shared libraries at all\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)=\n      ;;\n    haiku*)\n      # PIC is the default for Haiku.\n      # The \"-static\" flag exists, but is broken.\n      _LT_TAGVAR(lt_prog_compiler_static, $1)=\n      ;;\n    interix[[3-9]]*)\n      # Interix 3.x gcc -fpic/-fPIC options generate broken code.\n      # Instead, we relocate shared libraries at runtime.\n      ;;\n    sysv4*MP*)\n      if test -d /usr/nec; then\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic\n      fi\n      ;;\n    hpux*)\n      # PIC is the default for 64-bit PA HP-UX, but not for 32-bit\n      # PA HP-UX.  On IA64 HP-UX, PIC is the default but the pic flag\n      # sets the default TLS model and affects inlining.\n      case $host_cpu in\n      hppa*64*)\n\t;;\n      *)\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n\t;;\n      esac\n      ;;\n    *qnx* | *nto*)\n      # QNX uses GNU C++, but need to define -shared option too, otherwise\n      # it will coredump.\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'\n      ;;\n    *)\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n      ;;\n    esac\n  else\n    case $host_os in\n      aix[[4-9]]*)\n\t# All AIX code is PIC.\n\tif test \"$host_cpu\" = ia64; then\n\t  # AIX 5 now supports IA64 processor\n\t  _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n\telse\n\t  _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'\n\tfi\n\t;;\n      chorus*)\n\tcase $cc_basename in\n\tcxch68*)\n\t  # Green Hills C++ Compiler\n\t  # _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\"\n\t  ;;\n\tesac\n\t;;\n      dgux*)\n\tcase $cc_basename in\n\t  ec++*)\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n\t    ;;\n\t  ghcx*)\n\t    # Green Hills C++ Compiler\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      freebsd* | dragonfly*)\n\t# FreeBSD uses GNU C++\n\t;;\n      hpux9* | hpux10* | hpux11*)\n\tcase $cc_basename in\n\t  CC*)\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'\n\t    if test \"$host_cpu\" != ia64; then\n\t      _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'\n\t    fi\n\t    ;;\n\t  aCC*)\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'\n\t    case $host_cpu in\n\t    hppa*64*|ia64*)\n\t      # +Z the default\n\t      ;;\n\t    *)\n\t      _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'\n\t      ;;\n\t    esac\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      interix*)\n\t# This is c89, which is MS Visual C++ (no shared libs)\n\t# Anyone wants to do a port?\n\t;;\n      irix5* | irix6* | nonstopux*)\n\tcase $cc_basename in\n\t  CC*)\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'\n\t    # CC pic flag -KPIC is the default.\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      linux* | k*bsd*-gnu | kopensolaris*-gnu)\n\tcase $cc_basename in\n\t  KCC*)\n\t    # KAI C++ Compiler\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n\t    ;;\n\t  ecpc* )\n\t    # old Intel C++ for x86_64 which still supported -KPIC.\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'\n\t    ;;\n\t  icpc* )\n\t    # Intel C++, used to be incompatible with GCC.\n\t    # ICC 10 doesn't accept -KPIC any more.\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'\n\t    ;;\n\t  pgCC* | pgcpp*)\n\t    # Portland Group C++ compiler\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n\t    ;;\n\t  cxx*)\n\t    # Compaq C++\n\t    # Make sure the PIC flag is empty.  It appears that all Alpha\n\t    # Linux and Compaq Tru64 Unix objects are PIC.\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)=\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'\n\t    ;;\n\t  xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*)\n\t    # IBM XL 8.0, 9.0 on PPC and BlueGene\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic'\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink'\n\t    ;;\n\t  *)\n\t    case `$CC -V 2>&1 | sed 5q` in\n\t    *Sun\\ C*)\n\t      # Sun C++ 5.9\n\t      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n\t      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n\t      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '\n\t      ;;\n\t    esac\n\t    ;;\n\tesac\n\t;;\n      lynxos*)\n\t;;\n      m88k*)\n\t;;\n      mvs*)\n\tcase $cc_basename in\n\t  cxx*)\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall'\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      netbsd*)\n\t;;\n      *qnx* | *nto*)\n        # QNX uses GNU C++, but need to define -shared option too, otherwise\n        # it will coredump.\n        _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'\n        ;;\n      osf3* | osf4* | osf5*)\n\tcase $cc_basename in\n\t  KCC*)\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'\n\t    ;;\n\t  RCC*)\n\t    # Rational C++ 2.4.1\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'\n\t    ;;\n\t  cxx*)\n\t    # Digital/Compaq C++\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t    # Make sure the PIC flag is empty.  It appears that all Alpha\n\t    # Linux and Compaq Tru64 Unix objects are PIC.\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)=\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      psos*)\n\t;;\n      solaris*)\n\tcase $cc_basename in\n\t  CC* | sunCC*)\n\t    # Sun C++ 4.2, 5.x and Centerline C++\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '\n\t    ;;\n\t  gcx*)\n\t    # Green Hills C++ Compiler\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      sunos4*)\n\tcase $cc_basename in\n\t  CC*)\n\t    # Sun C++ 4.x\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n\t    ;;\n\t  lcc*)\n\t    # Lucid\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)\n\tcase $cc_basename in\n\t  CC*)\n\t    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n\t    _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n\t    ;;\n\tesac\n\t;;\n      tandem*)\n\tcase $cc_basename in\n\t  NCC*)\n\t    # NonStop-UX NCC 3.20\n\t    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      vxworks*)\n\t;;\n      *)\n\t_LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no\n\t;;\n    esac\n  fi\n],\n[\n  if test \"$GCC\" = yes; then\n    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n    _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'\n\n    case $host_os in\n      aix*)\n      # All AIX code is PIC.\n      if test \"$host_cpu\" = ia64; then\n\t# AIX 5 now supports IA64 processor\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n      fi\n      ;;\n\n    amigaos*)\n      case $host_cpu in\n      powerpc)\n            # see comment about AmigaOS4 .so support\n            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n        ;;\n      m68k)\n            # FIXME: we need at least 68020 code to build shared libraries, but\n            # adding the `-m68020' flag to GCC prevents building anything better,\n            # like `-m68040'.\n            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'\n        ;;\n      esac\n      ;;\n\n    beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)\n      # PIC is the default for these OSes.\n      ;;\n\n    mingw* | cygwin* | pw32* | os2* | cegcc*)\n      # This hack is so that the source file can tell whether it is being\n      # built for inclusion in a dll (and should export symbols for example).\n      # Although the cygwin gcc ignores -fPIC, still need this for old-style\n      # (--disable-auto-import) libraries\n      m4_if([$1], [GCJ], [],\n\t[_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])\n      ;;\n\n    darwin* | rhapsody*)\n      # PIC is the default on this platform\n      # Common symbols not allowed in MH_DYLIB files\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'\n      ;;\n\n    haiku*)\n      # PIC is the default for Haiku.\n      # The \"-static\" flag exists, but is broken.\n      _LT_TAGVAR(lt_prog_compiler_static, $1)=\n      ;;\n\n    hpux*)\n      # PIC is the default for 64-bit PA HP-UX, but not for 32-bit\n      # PA HP-UX.  On IA64 HP-UX, PIC is the default but the pic flag\n      # sets the default TLS model and affects inlining.\n      case $host_cpu in\n      hppa*64*)\n\t# +Z the default\n\t;;\n      *)\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n\t;;\n      esac\n      ;;\n\n    interix[[3-9]]*)\n      # Interix 3.x gcc -fpic/-fPIC options generate broken code.\n      # Instead, we relocate shared libraries at runtime.\n      ;;\n\n    msdosdjgpp*)\n      # Just because we use GCC doesn't mean we suddenly get shared libraries\n      # on systems that don't support them.\n      _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no\n      enable_shared=no\n      ;;\n\n    *nto* | *qnx*)\n      # QNX uses GNU C++, but need to define -shared option too, otherwise\n      # it will coredump.\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'\n      ;;\n\n    sysv4*MP*)\n      if test -d /usr/nec; then\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic\n      fi\n      ;;\n\n    *)\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n      ;;\n    esac\n\n    case $cc_basename in\n    nvcc*) # Cuda Compiler Driver 2.2\n      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker '\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Xcompiler -fPIC'\n      ;;\n    esac\n  else\n    # PORTME Check for flag to pass linker flags through the system compiler.\n    case $host_os in\n    aix*)\n      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n      if test \"$host_cpu\" = ia64; then\n\t# AIX 5 now supports IA64 processor\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n      else\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'\n      fi\n      ;;\n\n    mingw* | cygwin* | pw32* | os2* | cegcc*)\n      # This hack is so that the source file can tell whether it is being\n      # built for inclusion in a dll (and should export symbols for example).\n      m4_if([$1], [GCJ], [],\n\t[_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])\n      ;;\n\n    hpux9* | hpux10* | hpux11*)\n      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but\n      # not for PA HP-UX.\n      case $host_cpu in\n      hppa*64*|ia64*)\n\t# +Z the default\n\t;;\n      *)\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'\n\t;;\n      esac\n      # Is there a better lt_prog_compiler_static that works with the bundled CC?\n      _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'\n      ;;\n\n    irix5* | irix6* | nonstopux*)\n      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n      # PIC (with -KPIC) is the default.\n      _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'\n      ;;\n\n    linux* | k*bsd*-gnu | kopensolaris*-gnu)\n      case $cc_basename in\n      # old Intel for x86_64 which still supported -KPIC.\n      ecc*)\n\t_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='-static'\n        ;;\n      # icc used to be incompatible with GCC.\n      # ICC 10 doesn't accept -KPIC any more.\n      icc* | ifort*)\n\t_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='-static'\n        ;;\n      # Lahey Fortran 8.1.\n      lf95*)\n\t_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared'\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='--static'\n\t;;\n      pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*)\n        # Portland Group compilers (*not* the Pentium gcc compiler,\n\t# which looks to be a dead project)\n\t_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n        ;;\n      ccc*)\n        _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n        # All Alpha code is PIC.\n        _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'\n        ;;\n      xl* | bgxl* | bgf* | mpixl*)\n\t# IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene\n\t_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic'\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink'\n\t;;\n      *)\n\tcase `$CC -V 2>&1 | sed 5q` in\n\t*Sun\\ F* | *Sun*Fortran*)\n\t  # Sun Fortran 8.3 passes all unrecognized flags to the linker\n\t  _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n\t  _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n\t  _LT_TAGVAR(lt_prog_compiler_wl, $1)=''\n\t  ;;\n\t*Sun\\ C*)\n\t  # Sun C 5.9\n\t  _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n\t  _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n\t  _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n\t  ;;\n\tesac\n\t;;\n      esac\n      ;;\n\n    newsos6)\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n      ;;\n\n    *nto* | *qnx*)\n      # QNX uses GNU C++, but need to define -shared option too, otherwise\n      # it will coredump.\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'\n      ;;\n\n    osf3* | osf4* | osf5*)\n      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n      # All OSF/1 code is PIC.\n      _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'\n      ;;\n\n    rdos*)\n      _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'\n      ;;\n\n    solaris*)\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n      case $cc_basename in\n      f77* | f90* | f95* | sunf77* | sunf90* | sunf95*)\n\t_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';;\n      *)\n\t_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';;\n      esac\n      ;;\n\n    sunos4*)\n      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'\n      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n      ;;\n\n    sysv4 | sysv4.2uw2* | sysv4.3*)\n      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n      ;;\n\n    sysv4*MP*)\n      if test -d /usr/nec ;then\n\t_LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic'\n\t_LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n      fi\n      ;;\n\n    sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)\n      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'\n      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n      ;;\n\n    unicos*)\n      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'\n      _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no\n      ;;\n\n    uts4*)\n      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'\n      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'\n      ;;\n\n    *)\n      _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no\n      ;;\n    esac\n  fi\n])\ncase $host_os in\n  # For platforms which do not support PIC, -DPIC is meaningless:\n  *djgpp*)\n    _LT_TAGVAR(lt_prog_compiler_pic, $1)=\n    ;;\n  *)\n    _LT_TAGVAR(lt_prog_compiler_pic, $1)=\"$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])\"\n    ;;\nesac\nAC_MSG_RESULT([$_LT_TAGVAR(lt_prog_compiler_pic, $1)])\n_LT_TAGDECL([wl], [lt_prog_compiler_wl], [1],\n\t[How to pass a linker flag through the compiler])\n\n#\n# Check to make sure the PIC flag actually works.\n#\nif test -n \"$_LT_TAGVAR(lt_prog_compiler_pic, $1)\"; then\n  _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works],\n    [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)],\n    [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [],\n    [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in\n     \"\" | \" \"*) ;;\n     *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=\" $_LT_TAGVAR(lt_prog_compiler_pic, $1)\" ;;\n     esac],\n    [_LT_TAGVAR(lt_prog_compiler_pic, $1)=\n     _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no])\nfi\n_LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1],\n\t[Additional compiler flags for building library objects])\n\n#\n# Check to make sure the static flag actually works.\n#\nwl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\\\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\\\"\n_LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works],\n  _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1),\n  $lt_tmp_static_flag,\n  [],\n  [_LT_TAGVAR(lt_prog_compiler_static, $1)=])\n_LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1],\n\t[Compiler flag to prevent dynamic linking])\n])# _LT_COMPILER_PIC\n\n\n# _LT_LINKER_SHLIBS([TAGNAME])\n# ----------------------------\n# See if the linker supports building shared libraries.\nm4_defun([_LT_LINKER_SHLIBS],\n[AC_REQUIRE([LT_PATH_LD])dnl\nAC_REQUIRE([LT_PATH_NM])dnl\nm4_require([_LT_FILEUTILS_DEFAULTS])dnl\nm4_require([_LT_DECL_EGREP])dnl\nm4_require([_LT_DECL_SED])dnl\nm4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl\nm4_require([_LT_TAG_COMPILER])dnl\nAC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])\nm4_if([$1], [CXX], [\n  _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\\''s/.* //'\\'' | sort | uniq > $export_symbols'\n  case $host_os in\n  aix[[4-9]]*)\n    # If we're using GNU nm, then we don't want the \"-C\" option.\n    # -C means demangle to AIX nm, but means don't demangle with GNU nm\n    # Also, AIX nm treats weak defined symbols like other global defined\n    # symbols, whereas GNU nm marks them as \"W\".\n    if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then\n      _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'\n    else\n      _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'\n    fi\n    ;;\n  pw32*)\n    _LT_TAGVAR(export_symbols_cmds, $1)=\"$ltdll_cmds\"\n  ;;\n  cygwin* | mingw* | cegcc*)\n    _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\\([[^ ]]*\\)/\\1 DATA/;/^.*[[ ]]__nm__/s/^.*[[ ]]__nm__\\([[^ ]]*\\)[[ ]][[^ ]]*/\\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\\'' | sort | uniq > $export_symbols'\n  ;;\n  *)\n    _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\\''s/.* //'\\'' | sort | uniq > $export_symbols'\n  ;;\n  esac\n  _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*']\n], [\n  runpath_var=\n  _LT_TAGVAR(allow_undefined_flag, $1)=\n  _LT_TAGVAR(always_export_symbols, $1)=no\n  _LT_TAGVAR(archive_cmds, $1)=\n  _LT_TAGVAR(archive_expsym_cmds, $1)=\n  _LT_TAGVAR(compiler_needs_object, $1)=no\n  _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no\n  _LT_TAGVAR(export_dynamic_flag_spec, $1)=\n  _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\\''s/.* //'\\'' | sort | uniq > $export_symbols'\n  _LT_TAGVAR(hardcode_automatic, $1)=no\n  _LT_TAGVAR(hardcode_direct, $1)=no\n  _LT_TAGVAR(hardcode_direct_absolute, $1)=no\n  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=\n  _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=\n  _LT_TAGVAR(hardcode_libdir_separator, $1)=\n  _LT_TAGVAR(hardcode_minus_L, $1)=no\n  _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported\n  _LT_TAGVAR(inherit_rpath, $1)=no\n  _LT_TAGVAR(link_all_deplibs, $1)=unknown\n  _LT_TAGVAR(module_cmds, $1)=\n  _LT_TAGVAR(module_expsym_cmds, $1)=\n  _LT_TAGVAR(old_archive_from_new_cmds, $1)=\n  _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)=\n  _LT_TAGVAR(thread_safe_flag_spec, $1)=\n  _LT_TAGVAR(whole_archive_flag_spec, $1)=\n  # include_expsyms should be a list of space-separated symbols to be *always*\n  # included in the symbol list\n  _LT_TAGVAR(include_expsyms, $1)=\n  # exclude_expsyms can be an extended regexp of symbols to exclude\n  # it will be wrapped by ` (' and `)$', so one must not match beginning or\n  # end of line.  Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc',\n  # as well as any symbol that contains `d'.\n  _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*']\n  # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out\n  # platforms (ab)use it in PIC code, but their linkers get confused if\n  # the symbol is explicitly referenced.  Since portable code cannot\n  # rely on this symbol name, it's probably fine to never include it in\n  # preloaded symbol tables.\n  # Exclude shared library initialization/finalization symbols.\ndnl Note also adjust exclude_expsyms for C++ above.\n  extract_expsyms_cmds=\n\n  case $host_os in\n  cygwin* | mingw* | pw32* | cegcc*)\n    # FIXME: the MSVC++ port hasn't been tested in a loooong time\n    # When not using gcc, we currently assume that we are using\n    # Microsoft Visual C++.\n    if test \"$GCC\" != yes; then\n      with_gnu_ld=no\n    fi\n    ;;\n  interix*)\n    # we just hope/assume this is gcc and not c89 (= MSVC++)\n    with_gnu_ld=yes\n    ;;\n  openbsd*)\n    with_gnu_ld=no\n    ;;\n  esac\n\n  _LT_TAGVAR(ld_shlibs, $1)=yes\n\n  # On some targets, GNU ld is compatible enough with the native linker\n  # that we're better off using the native interface for both.\n  lt_use_gnu_ld_interface=no\n  if test \"$with_gnu_ld\" = yes; then\n    case $host_os in\n      aix*)\n\t# The AIX port of GNU ld has always aspired to compatibility\n\t# with the native linker.  However, as the warning in the GNU ld\n\t# block says, versions before 2.19.5* couldn't really create working\n\t# shared libraries, regardless of the interface used.\n\tcase `$LD -v 2>&1` in\n\t  *\\ \\(GNU\\ Binutils\\)\\ 2.19.5*) ;;\n\t  *\\ \\(GNU\\ Binutils\\)\\ 2.[[2-9]]*) ;;\n\t  *\\ \\(GNU\\ Binutils\\)\\ [[3-9]]*) ;;\n\t  *)\n\t    lt_use_gnu_ld_interface=yes\n\t    ;;\n\tesac\n\t;;\n      *)\n\tlt_use_gnu_ld_interface=yes\n\t;;\n    esac\n  fi\n\n  if test \"$lt_use_gnu_ld_interface\" = yes; then\n    # If archive_cmds runs LD, not CC, wlarc should be empty\n    wlarc='${wl}'\n\n    # Set some defaults for GNU ld with shared library support. These\n    # are reset later if shared libraries are not supported. Putting them\n    # here allows them to be overridden if necessary.\n    runpath_var=LD_RUN_PATH\n    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'\n    _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'\n    # ancient GNU ld didn't support --whole-archive et. al.\n    if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then\n      _LT_TAGVAR(whole_archive_flag_spec, $1)=\"$wlarc\"'--whole-archive$convenience '\"$wlarc\"'--no-whole-archive'\n    else\n      _LT_TAGVAR(whole_archive_flag_spec, $1)=\n    fi\n    supports_anon_versioning=no\n    case `$LD -v 2>&1` in\n      *GNU\\ gold*) supports_anon_versioning=yes ;;\n      *\\ [[01]].* | *\\ 2.[[0-9]].* | *\\ 2.10.*) ;; # catch versions < 2.11\n      *\\ 2.11.93.0.2\\ *) supports_anon_versioning=yes ;; # RH7.3 ...\n      *\\ 2.11.92.0.12\\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ...\n      *\\ 2.11.*) ;; # other 2.11 versions\n      *) supports_anon_versioning=yes ;;\n    esac\n\n    # See if GNU ld supports shared libraries.\n    case $host_os in\n    aix[[3-9]]*)\n      # On AIX/PPC, the GNU linker is very broken\n      if test \"$host_cpu\" != ia64; then\n\t_LT_TAGVAR(ld_shlibs, $1)=no\n\tcat <<_LT_EOF 1>&2\n\n*** Warning: the GNU linker, at least up to release 2.19, is reported\n*** to be unable to reliably create shared libraries on AIX.\n*** Therefore, libtool is disabling shared libraries support.  If you\n*** really care for shared libraries, you may want to install binutils\n*** 2.20 or above, or modify your PATH so that a non-GNU linker is found.\n*** You will then need to restart the configuration process.\n\n_LT_EOF\n      fi\n      ;;\n\n    amigaos*)\n      case $host_cpu in\n      powerpc)\n            # see comment about AmigaOS4 .so support\n            _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'\n            _LT_TAGVAR(archive_expsym_cmds, $1)=''\n        ;;\n      m68k)\n            _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)'\n            _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n            _LT_TAGVAR(hardcode_minus_L, $1)=yes\n        ;;\n      esac\n      ;;\n\n    beos*)\n      if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\t_LT_TAGVAR(allow_undefined_flag, $1)=unsupported\n\t# Joseph Beckenbach <jrb3@best.com> says some releases of gcc\n\t# support --undefined.  This deserves some investigation.  FIXME\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'\n      else\n\t_LT_TAGVAR(ld_shlibs, $1)=no\n      fi\n      ;;\n\n    cygwin* | mingw* | pw32* | cegcc*)\n      # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,\n      # as there is no search path for DLLs.\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n      _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols'\n      _LT_TAGVAR(allow_undefined_flag, $1)=unsupported\n      _LT_TAGVAR(always_export_symbols, $1)=no\n      _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes\n      _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'\n\n      if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then\n        _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'\n\t# If the export-symbols file already is a .def file (1st line\n\t# is EXPORTS), use it as is; otherwise, prepend...\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='if test \"x`$SED 1q $export_symbols`\" = xEXPORTS; then\n\t  cp $export_symbols $output_objdir/$soname.def;\n\telse\n\t  echo EXPORTS > $output_objdir/$soname.def;\n\t  cat $export_symbols >> $output_objdir/$soname.def;\n\tfi~\n\t$CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'\n      else\n\t_LT_TAGVAR(ld_shlibs, $1)=no\n      fi\n      ;;\n\n    haiku*)\n      _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'\n      _LT_TAGVAR(link_all_deplibs, $1)=yes\n      ;;\n\n    interix[[3-9]]*)\n      _LT_TAGVAR(hardcode_direct, $1)=no\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'\n      _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'\n      # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.\n      # Instead, shared libraries are loaded at an image base (0x10000000 by\n      # default) and relocated if they conflict, which is a slow very memory\n      # consuming and fragmenting process.  To avoid this, we pick a random,\n      # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link\n      # time.  Moving up from 0x10000000 also allows more sbrk(2) space.\n      _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'\n      _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'\n      ;;\n\n    gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu)\n      tmp_diet=no\n      if test \"$host_os\" = linux-dietlibc; then\n\tcase $cc_basename in\n\t  diet\\ *) tmp_diet=yes;;\t# linux-dietlibc with static linking (!diet-dyn)\n\tesac\n      fi\n      if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \\\n\t && test \"$tmp_diet\" = no\n      then\n\ttmp_addflag=\n\ttmp_sharedflag='-shared'\n\tcase $cc_basename,$host_cpu in\n        pgcc*)\t\t\t\t# Portland Group C compiler\n\t  _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'\n\t  tmp_addflag=' $pic_flag'\n\t  ;;\n\tpgf77* | pgf90* | pgf95* | pgfortran*)\n\t\t\t\t\t# Portland Group f77 and f90 compilers\n\t  _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'\n\t  tmp_addflag=' $pic_flag -Mnomain' ;;\n\tecc*,ia64* | icc*,ia64*)\t# Intel C compiler on ia64\n\t  tmp_addflag=' -i_dynamic' ;;\n\tefc*,ia64* | ifort*,ia64*)\t# Intel Fortran compiler on ia64\n\t  tmp_addflag=' -i_dynamic -nofor_main' ;;\n\tifc* | ifort*)\t\t\t# Intel Fortran compiler\n\t  tmp_addflag=' -nofor_main' ;;\n\tlf95*)\t\t\t\t# Lahey Fortran 8.1\n\t  _LT_TAGVAR(whole_archive_flag_spec, $1)=\n\t  tmp_sharedflag='--shared' ;;\n\txl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below)\n\t  tmp_sharedflag='-qmkshrobj'\n\t  tmp_addflag= ;;\n\tnvcc*)\t# Cuda Compiler Driver 2.2\n\t  _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'\n\t  _LT_TAGVAR(compiler_needs_object, $1)=yes\n\t  ;;\n\tesac\n\tcase `$CC -V 2>&1 | sed 5q` in\n\t*Sun\\ C*)\t\t\t# Sun C 5.9\n\t  _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'\n\t  _LT_TAGVAR(compiler_needs_object, $1)=yes\n\t  tmp_sharedflag='-G' ;;\n\t*Sun\\ F*)\t\t\t# Sun Fortran 8.3\n\t  tmp_sharedflag='-G' ;;\n\tesac\n\t_LT_TAGVAR(archive_cmds, $1)='$CC '\"$tmp_sharedflag\"\"$tmp_addflag\"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'\n\n        if test \"x$supports_anon_versioning\" = xyes; then\n          _LT_TAGVAR(archive_expsym_cmds, $1)='echo \"{ global:\" > $output_objdir/$libname.ver~\n\t    cat $export_symbols | sed -e \"s/\\(.*\\)/\\1;/\" >> $output_objdir/$libname.ver~\n\t    echo \"local: *; };\" >> $output_objdir/$libname.ver~\n\t    $CC '\"$tmp_sharedflag\"\"$tmp_addflag\"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'\n        fi\n\n\tcase $cc_basename in\n\txlf* | bgf* | bgxlf* | mpixlf*)\n\t  # IBM XL Fortran 10.1 on PPC cannot create shared libs itself\n\t  _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive'\n\t  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=\n\t  _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir'\n\t  _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib'\n\t  if test \"x$supports_anon_versioning\" = xyes; then\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)='echo \"{ global:\" > $output_objdir/$libname.ver~\n\t      cat $export_symbols | sed -e \"s/\\(.*\\)/\\1;/\" >> $output_objdir/$libname.ver~\n\t      echo \"local: *; };\" >> $output_objdir/$libname.ver~\n\t      $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib'\n\t  fi\n\t  ;;\n\tesac\n      else\n        _LT_TAGVAR(ld_shlibs, $1)=no\n      fi\n      ;;\n\n    netbsd*)\n      if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then\n\t_LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'\n\twlarc=\n      else\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'\n\t_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'\n      fi\n      ;;\n\n    solaris*)\n      if $LD -v 2>&1 | $GREP 'BFD 2\\.8' > /dev/null; then\n\t_LT_TAGVAR(ld_shlibs, $1)=no\n\tcat <<_LT_EOF 1>&2\n\n*** Warning: The releases 2.8.* of the GNU linker cannot reliably\n*** create shared libraries on Solaris systems.  Therefore, libtool\n*** is disabling shared libraries support.  We urge you to upgrade GNU\n*** binutils to release 2.9.1 or newer.  Another option is to modify\n*** your PATH or compiler configuration so that the native linker is\n*** used, and then restart.\n\n_LT_EOF\n      elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'\n\t_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'\n      else\n\t_LT_TAGVAR(ld_shlibs, $1)=no\n      fi\n      ;;\n\n    sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)\n      case `$LD -v 2>&1` in\n        *\\ [[01]].* | *\\ 2.[[0-9]].* | *\\ 2.1[[0-5]].*)\n\t_LT_TAGVAR(ld_shlibs, $1)=no\n\tcat <<_LT_EOF 1>&2\n\n*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not\n*** reliably create shared libraries on SCO systems.  Therefore, libtool\n*** is disabling shared libraries support.  We urge you to upgrade GNU\n*** binutils to release 2.16.91.0.3 or newer.  Another option is to modify\n*** your PATH or compiler configuration so that the native linker is\n*** used, and then restart.\n\n_LT_EOF\n\t;;\n\t*)\n\t  # For security reasons, it is highly recommended that you always\n\t  # use absolute paths for naming shared libraries, and exclude the\n\t  # DT_RUNPATH tag from executables and libraries.  But doing so\n\t  # requires that you compile everything twice, which is a pain.\n\t  if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'\n\t    _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'\n\t    _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'\n\t  else\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t  fi\n\t;;\n      esac\n      ;;\n\n    sunos4*)\n      _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'\n      wlarc=\n      _LT_TAGVAR(hardcode_direct, $1)=yes\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      ;;\n\n    *)\n      if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'\n\t_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'\n      else\n\t_LT_TAGVAR(ld_shlibs, $1)=no\n      fi\n      ;;\n    esac\n\n    if test \"$_LT_TAGVAR(ld_shlibs, $1)\" = no; then\n      runpath_var=\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=\n      _LT_TAGVAR(export_dynamic_flag_spec, $1)=\n      _LT_TAGVAR(whole_archive_flag_spec, $1)=\n    fi\n  else\n    # PORTME fill in a description of your system's linker (not GNU ld)\n    case $host_os in\n    aix3*)\n      _LT_TAGVAR(allow_undefined_flag, $1)=unsupported\n      _LT_TAGVAR(always_export_symbols, $1)=yes\n      _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'\n      # Note: this linker hardcodes the directories in LIBPATH if there\n      # are no directories specified by -L.\n      _LT_TAGVAR(hardcode_minus_L, $1)=yes\n      if test \"$GCC\" = yes && test -z \"$lt_prog_compiler_static\"; then\n\t# Neither direct hardcoding nor static linking is supported with a\n\t# broken collect2.\n\t_LT_TAGVAR(hardcode_direct, $1)=unsupported\n      fi\n      ;;\n\n    aix[[4-9]]*)\n      if test \"$host_cpu\" = ia64; then\n\t# On IA64, the linker does run time linking by default, so we don't\n\t# have to do anything special.\n\taix_use_runtimelinking=no\n\texp_sym_flag='-Bexport'\n\tno_entry_flag=\"\"\n      else\n\t# If we're using GNU nm, then we don't want the \"-C\" option.\n\t# -C means demangle to AIX nm, but means don't demangle with GNU nm\n\t# Also, AIX nm treats weak defined symbols like other global\n\t# defined symbols, whereas GNU nm marks them as \"W\".\n\tif $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then\n\t  _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'\n\telse\n\t  _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'\n\tfi\n\taix_use_runtimelinking=no\n\n\t# Test if we are trying to use run time linking or normal\n\t# AIX style linking. If -brtl is somewhere in LDFLAGS, we\n\t# need to do runtime linking.\n\tcase $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*)\n\t  for ld_flag in $LDFLAGS; do\n\t  if (test $ld_flag = \"-brtl\" || test $ld_flag = \"-Wl,-brtl\"); then\n\t    aix_use_runtimelinking=yes\n\t    break\n\t  fi\n\t  done\n\t  ;;\n\tesac\n\n\texp_sym_flag='-bexport'\n\tno_entry_flag='-bnoentry'\n      fi\n\n      # When large executables or shared objects are built, AIX ld can\n      # have problems creating the table of contents.  If linking a library\n      # or program results in \"error TOC overflow\" add -mminimal-toc to\n      # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not\n      # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.\n\n      _LT_TAGVAR(archive_cmds, $1)=''\n      _LT_TAGVAR(hardcode_direct, $1)=yes\n      _LT_TAGVAR(hardcode_direct_absolute, $1)=yes\n      _LT_TAGVAR(hardcode_libdir_separator, $1)=':'\n      _LT_TAGVAR(link_all_deplibs, $1)=yes\n      _LT_TAGVAR(file_list_spec, $1)='${wl}-f,'\n\n      if test \"$GCC\" = yes; then\n\tcase $host_os in aix4.[[012]]|aix4.[[012]].*)\n\t# We only want to do this on AIX 4.2 and lower, the check\n\t# below for broken collect2 doesn't work under 4.3+\n\t  collect2name=`${CC} -print-prog-name=collect2`\n\t  if test -f \"$collect2name\" &&\n\t   strings \"$collect2name\" | $GREP resolve_lib_name >/dev/null\n\t  then\n\t  # We have reworked collect2\n\t  :\n\t  else\n\t  # We have old collect2\n\t  _LT_TAGVAR(hardcode_direct, $1)=unsupported\n\t  # It fails to find uninstalled libraries when the uninstalled\n\t  # path is not listed in the libpath.  Setting hardcode_minus_L\n\t  # to unsupported forces relinking\n\t  _LT_TAGVAR(hardcode_minus_L, $1)=yes\n\t  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n\t  _LT_TAGVAR(hardcode_libdir_separator, $1)=\n\t  fi\n\t  ;;\n\tesac\n\tshared_flag='-shared'\n\tif test \"$aix_use_runtimelinking\" = yes; then\n\t  shared_flag=\"$shared_flag \"'${wl}-G'\n\tfi\n      else\n\t# not using gcc\n\tif test \"$host_cpu\" = ia64; then\n\t# VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release\n\t# chokes on -Wl,-G. The following line is correct:\n\t  shared_flag='-G'\n\telse\n\t  if test \"$aix_use_runtimelinking\" = yes; then\n\t    shared_flag='${wl}-G'\n\t  else\n\t    shared_flag='${wl}-bM:SRE'\n\t  fi\n\tfi\n      fi\n\n      _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall'\n      # It seems that -bexpall does not export symbols beginning with\n      # underscore (_), so it is better to generate a list of symbols to export.\n      _LT_TAGVAR(always_export_symbols, $1)=yes\n      if test \"$aix_use_runtimelinking\" = yes; then\n\t# Warning - without using the other runtime loading flags (-brtl),\n\t# -berok will link without error, but may produce a broken library.\n\t_LT_TAGVAR(allow_undefined_flag, $1)='-berok'\n        # Determine the default libpath from the value encoded in an\n        # empty executable.\n        _LT_SYS_MODULE_PATH_AIX\n        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'\"$aix_libpath\"\n        _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\"\n      else\n\tif test \"$host_cpu\" = ia64; then\n\t  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'\n\t  _LT_TAGVAR(allow_undefined_flag, $1)=\"-z nodefs\"\n\t  _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\"\n\telse\n\t # Determine the default libpath from the value encoded in an\n\t # empty executable.\n\t _LT_SYS_MODULE_PATH_AIX\n\t _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'\"$aix_libpath\"\n\t  # Warning - without using the other run time loading flags,\n\t  # -berok will link without error, but may produce a broken library.\n\t  _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'\n\t  _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'\n\t  if test \"$with_gnu_ld\" = yes; then\n\t    # We only use this code for GNU lds that support --whole-archive.\n\t    _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive'\n\t  else\n\t    # Exported symbols can be pulled into shared objects from archives\n\t    _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience'\n\t  fi\n\t  _LT_TAGVAR(archive_cmds_need_lc, $1)=yes\n\t  # This is similar to how AIX traditionally builds its shared libraries.\n\t  _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'\n\tfi\n      fi\n      ;;\n\n    amigaos*)\n      case $host_cpu in\n      powerpc)\n            # see comment about AmigaOS4 .so support\n            _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'\n            _LT_TAGVAR(archive_expsym_cmds, $1)=''\n        ;;\n      m68k)\n            _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)'\n            _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n            _LT_TAGVAR(hardcode_minus_L, $1)=yes\n        ;;\n      esac\n      ;;\n\n    bsdi[[45]]*)\n      _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic\n      ;;\n\n    cygwin* | mingw* | pw32* | cegcc*)\n      # When not using gcc, we currently assume that we are using\n      # Microsoft Visual C++.\n      # hardcode_libdir_flag_spec is actually meaningless, as there is\n      # no search path for DLLs.\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' '\n      _LT_TAGVAR(allow_undefined_flag, $1)=unsupported\n      # Tell ltmain to make .lib files, not .a files.\n      libext=lib\n      # Tell ltmain to make .dll files, not .so files.\n      shrext_cmds=\".dll\"\n      # FIXME: Setting linknames here is a bad hack.\n      _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all \"$deplibs\" | $SED '\\''s/ -lc$//'\\''` -link -dll~linknames='\n      # The linker will automatically build a .lib file if we build a DLL.\n      _LT_TAGVAR(old_archive_from_new_cmds, $1)='true'\n      # FIXME: Should let the user specify the lib program.\n      _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs'\n      _LT_TAGVAR(fix_srcfile_path, $1)='`cygpath -w \"$srcfile\"`'\n      _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes\n      ;;\n\n    darwin* | rhapsody*)\n      _LT_DARWIN_LINKER_FEATURES($1)\n      ;;\n\n    dgux*)\n      _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      ;;\n\n    freebsd1*)\n      _LT_TAGVAR(ld_shlibs, $1)=no\n      ;;\n\n    # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor\n    # support.  Future versions do this automatically, but an explicit c++rt0.o\n    # does not break anything, and helps significantly (at the cost of a little\n    # extra space).\n    freebsd2.2*)\n      _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o'\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'\n      _LT_TAGVAR(hardcode_direct, $1)=yes\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      ;;\n\n    # Unfortunately, older versions of FreeBSD 2 do not have this feature.\n    freebsd2*)\n      _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'\n      _LT_TAGVAR(hardcode_direct, $1)=yes\n      _LT_TAGVAR(hardcode_minus_L, $1)=yes\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      ;;\n\n    # FreeBSD 3 and greater uses gcc -shared to do shared libraries.\n    freebsd* | dragonfly*)\n      _LT_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'\n      _LT_TAGVAR(hardcode_direct, $1)=yes\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      ;;\n\n    hpux9*)\n      if test \"$GCC\" = yes; then\n\t_LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'\n      else\n\t_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'\n      fi\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'\n      _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n      _LT_TAGVAR(hardcode_direct, $1)=yes\n\n      # hardcode_minus_L: Not really in the search PATH,\n      # but as the default location of the library.\n      _LT_TAGVAR(hardcode_minus_L, $1)=yes\n      _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'\n      ;;\n\n    hpux10*)\n      if test \"$GCC\" = yes && test \"$with_gnu_ld\" = no; then\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'\n      else\n\t_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'\n      fi\n      if test \"$with_gnu_ld\" = no; then\n\t_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'\n\t_LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir'\n\t_LT_TAGVAR(hardcode_libdir_separator, $1)=:\n\t_LT_TAGVAR(hardcode_direct, $1)=yes\n\t_LT_TAGVAR(hardcode_direct_absolute, $1)=yes\n\t_LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'\n\t# hardcode_minus_L: Not really in the search PATH,\n\t# but as the default location of the library.\n\t_LT_TAGVAR(hardcode_minus_L, $1)=yes\n      fi\n      ;;\n\n    hpux11*)\n      if test \"$GCC\" = yes && test \"$with_gnu_ld\" = no; then\n\tcase $host_cpu in\n\thppa*64*)\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\tia64*)\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\t*)\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\tesac\n      else\n\tcase $host_cpu in\n\thppa*64*)\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\tia64*)\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\t*)\n\tm4_if($1, [], [\n\t  # Older versions of the 11.00 compiler do not understand -b yet\n\t  # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does)\n\t  _LT_LINKER_OPTION([if $CC understands -b],\n\t    _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b],\n\t    [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'],\n\t    [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])],\n\t  [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'])\n\t  ;;\n\tesac\n      fi\n      if test \"$with_gnu_ld\" = no; then\n\t_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'\n\t_LT_TAGVAR(hardcode_libdir_separator, $1)=:\n\n\tcase $host_cpu in\n\thppa*64*|ia64*)\n\t  _LT_TAGVAR(hardcode_direct, $1)=no\n\t  _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n\t  ;;\n\t*)\n\t  _LT_TAGVAR(hardcode_direct, $1)=yes\n\t  _LT_TAGVAR(hardcode_direct_absolute, $1)=yes\n\t  _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'\n\n\t  # hardcode_minus_L: Not really in the search PATH,\n\t  # but as the default location of the library.\n\t  _LT_TAGVAR(hardcode_minus_L, $1)=yes\n\t  ;;\n\tesac\n      fi\n      ;;\n\n    irix5* | irix6* | nonstopux*)\n      if test \"$GCC\" = yes; then\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared $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'\n\t# Try to use the -exported_symbol ld option, if it does not\n\t# work, assume that -exports_file does not work either and\n\t# implicitly export all symbols.\n        save_LDFLAGS=\"$LDFLAGS\"\n        LDFLAGS=\"$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null\"\n        AC_LINK_IFELSE(int foo(void) {},\n          _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $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'\n        )\n        LDFLAGS=\"$save_LDFLAGS\"\n      else\n\t_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'\n\t_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'\n      fi\n      _LT_TAGVAR(archive_cmds_need_lc, $1)='no'\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'\n      _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n      _LT_TAGVAR(inherit_rpath, $1)=yes\n      _LT_TAGVAR(link_all_deplibs, $1)=yes\n      ;;\n\n    netbsd*)\n      if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then\n\t_LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out\n      else\n\t_LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags'      # ELF\n      fi\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'\n      _LT_TAGVAR(hardcode_direct, $1)=yes\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      ;;\n\n    newsos6)\n      _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n      _LT_TAGVAR(hardcode_direct, $1)=yes\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'\n      _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      ;;\n\n    *nto* | *qnx*)\n      ;;\n\n    openbsd*)\n      if test -f /usr/libexec/ld.so; then\n\t_LT_TAGVAR(hardcode_direct, $1)=yes\n\t_LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n\t_LT_TAGVAR(hardcode_direct_absolute, $1)=yes\n\tif test -z \"`echo __ELF__ | $CC -E - | $GREP __ELF__`\" || test \"$host_os-$host_cpu\" = \"openbsd2.8-powerpc\"; then\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'\n\t  _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols'\n\t  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'\n\t  _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'\n\telse\n\t  case $host_os in\n\t   openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*)\n\t     _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'\n\t     _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'\n\t     ;;\n\t   *)\n\t     _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'\n\t     _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'\n\t     ;;\n\t  esac\n\tfi\n      else\n\t_LT_TAGVAR(ld_shlibs, $1)=no\n      fi\n      ;;\n\n    os2*)\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n      _LT_TAGVAR(hardcode_minus_L, $1)=yes\n      _LT_TAGVAR(allow_undefined_flag, $1)=unsupported\n      _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'\n      _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def'\n      ;;\n\n    osf3*)\n      if test \"$GCC\" = yes; then\n\t_LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\\*'\n\t_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'\n      else\n\t_LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \\*'\n\t_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'\n      fi\n      _LT_TAGVAR(archive_cmds_need_lc, $1)='no'\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'\n      _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n      ;;\n\n    osf4* | osf5*)\t# as osf3* with the addition of -msym flag\n      if test \"$GCC\" = yes; then\n\t_LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\\*'\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_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'\n\t_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'\n      else\n\t_LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \\*'\n\t_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'\n\t_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~\n\t$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'\n\n\t# Both c and cxx compiler support -rpath directly\n\t_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'\n      fi\n      _LT_TAGVAR(archive_cmds_need_lc, $1)='no'\n      _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n      ;;\n\n    solaris*)\n      _LT_TAGVAR(no_undefined_flag, $1)=' -z defs'\n      if test \"$GCC\" = yes; then\n\twlarc='${wl}'\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n\t  $CC -shared ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'\n      else\n\tcase `$CC -V 2>&1` in\n\t*\"Compilers 5.0\"*)\n\t  wlarc=''\n\t  _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'\n\t  _LT_TAGVAR(archive_expsym_cmds, $1)='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n\t  $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp'\n\t  ;;\n\t*)\n\t  wlarc='${wl}'\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  _LT_TAGVAR(archive_expsym_cmds, $1)='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n\t  $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'\n\t  ;;\n\tesac\n      fi\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      case $host_os in\n      solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;\n      *)\n\t# The compiler driver will combine and reorder linker options,\n\t# but understands `-z linker_flag'.  GCC discards it without `$wl',\n\t# but is careful enough not to reorder.\n\t# Supported since Solaris 2.6 (maybe 2.5.1?)\n\tif test \"$GCC\" = yes; then\n\t  _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'\n\telse\n\t  _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract'\n\tfi\n\t;;\n      esac\n      _LT_TAGVAR(link_all_deplibs, $1)=yes\n      ;;\n\n    sunos4*)\n      if test \"x$host_vendor\" = xsequent; then\n\t# Use $CC to link under sequent, because it throws in some extra .o\n\t# files that make .init and .fini sections work.\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags'\n      else\n\t_LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags'\n      fi\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n      _LT_TAGVAR(hardcode_direct, $1)=yes\n      _LT_TAGVAR(hardcode_minus_L, $1)=yes\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      ;;\n\n    sysv4)\n      case $host_vendor in\n\tsni)\n\t  _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n\t  _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true???\n\t;;\n\tsiemens)\n\t  ## LD is ld it makes a PLAMLIB\n\t  ## CC just makes a GrossModule.\n\t  _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags'\n\t  _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs'\n\t  _LT_TAGVAR(hardcode_direct, $1)=no\n        ;;\n\tmotorola)\n\t  _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n\t  _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie\n\t;;\n      esac\n      runpath_var='LD_RUN_PATH'\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      ;;\n\n    sysv4.3*)\n      _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport'\n      ;;\n\n    sysv4*MP*)\n      if test -d /usr/nec; then\n\t_LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n\t_LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n\trunpath_var=LD_RUN_PATH\n\thardcode_runpath_var=yes\n\t_LT_TAGVAR(ld_shlibs, $1)=yes\n      fi\n      ;;\n\n    sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*)\n      _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'\n      _LT_TAGVAR(archive_cmds_need_lc, $1)=no\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      runpath_var='LD_RUN_PATH'\n\n      if test \"$GCC\" = yes; then\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n      else\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n      fi\n      ;;\n\n    sysv5* | sco3.2v5* | sco5v6*)\n      # Note: We can NOT use -z defs as we might desire, because we do not\n      # link with -lc, and that would cause any symbols used from libc to\n      # always be unresolved, which means just about no library would\n      # ever link correctly.  If we're not using GNU ld we use -z text\n      # though, which does catch some bad symbols but isn't as heavy-handed\n      # as -z defs.\n      _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'\n      _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs'\n      _LT_TAGVAR(archive_cmds_need_lc, $1)=no\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir'\n      _LT_TAGVAR(hardcode_libdir_separator, $1)=':'\n      _LT_TAGVAR(link_all_deplibs, $1)=yes\n      _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport'\n      runpath_var='LD_RUN_PATH'\n\n      if test \"$GCC\" = yes; then\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n      else\n\t_LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n      fi\n      ;;\n\n    uts4*)\n      _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      ;;\n\n    *)\n      _LT_TAGVAR(ld_shlibs, $1)=no\n      ;;\n    esac\n\n    if test x$host_vendor = xsni; then\n      case $host in\n      sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)\n\t_LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym'\n\t;;\n      esac\n    fi\n  fi\n])\nAC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)])\ntest \"$_LT_TAGVAR(ld_shlibs, $1)\" = no && can_build_shared=no\n\n_LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld\n\n_LT_DECL([], [libext], [0], [Old archive suffix (normally \"a\")])dnl\n_LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally \".so\")])dnl\n_LT_DECL([], [extract_expsyms_cmds], [2],\n    [The commands to extract the exported symbol list from a shared archive])\n\n#\n# Do we need to explicitly link libc?\n#\ncase \"x$_LT_TAGVAR(archive_cmds_need_lc, $1)\" in\nx|xyes)\n  # Assume -lc should be added\n  _LT_TAGVAR(archive_cmds_need_lc, $1)=yes\n\n  if test \"$enable_shared\" = yes && test \"$GCC\" = yes; then\n    case $_LT_TAGVAR(archive_cmds, $1) in\n    *'~'*)\n      # FIXME: we may have to deal with multi-command sequences.\n      ;;\n    '$CC '*)\n      # Test whether the compiler implicitly links with -lc since on some\n      # systems, -lgcc has to come before -lc. If gcc already passes -lc\n      # to ld, don't add -lc before -lgcc.\n      AC_CACHE_CHECK([whether -lc should be explicitly linked in],\n\t[lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1),\n\t[$RM -r conftest*\n\techo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n\n\tif AC_TRY_EVAL(ac_compile) 2>conftest.err; then\n\t  soname=conftest\n\t  lib=conftest\n\t  libobjs=conftest.$ac_objext\n\t  deplibs=\n\t  wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1)\n\t  pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1)\n\t  compiler_flags=-v\n\t  linker_flags=-v\n\t  verstring=\n\t  output_objdir=.\n\t  libname=conftest\n\t  lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1)\n\t  _LT_TAGVAR(allow_undefined_flag, $1)=\n\t  if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\\>\\&1 \\| $GREP \\\" -lc \\\" \\>/dev/null 2\\>\\&1)\n\t  then\n\t    lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no\n\t  else\n\t    lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes\n\t  fi\n\t  _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag\n\telse\n\t  cat conftest.err 1>&5\n\tfi\n\t$RM -r conftest*\n\t])\n      _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)\n      ;;\n    esac\n  fi\n  ;;\nesac\n\n_LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0],\n    [Whether or not to add -lc for building shared libraries])\n_LT_TAGDECL([allow_libtool_libs_with_static_runtimes],\n    [enable_shared_with_static_runtimes], [0],\n    [Whether or not to disallow shared libs when runtime libs are static])\n_LT_TAGDECL([], [export_dynamic_flag_spec], [1],\n    [Compiler flag to allow reflexive dlopens])\n_LT_TAGDECL([], [whole_archive_flag_spec], [1],\n    [Compiler flag to generate shared objects directly from archives])\n_LT_TAGDECL([], [compiler_needs_object], [1],\n    [Whether the compiler copes with passing no objects directly])\n_LT_TAGDECL([], [old_archive_from_new_cmds], [2],\n    [Create an old-style archive from a shared archive])\n_LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2],\n    [Create a temporary old-style archive to link instead of a shared archive])\n_LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive])\n_LT_TAGDECL([], [archive_expsym_cmds], [2])\n_LT_TAGDECL([], [module_cmds], [2],\n    [Commands used to build a loadable module if different from building\n    a shared archive.])\n_LT_TAGDECL([], [module_expsym_cmds], [2])\n_LT_TAGDECL([], [with_gnu_ld], [1],\n    [Whether we are building with GNU ld or not])\n_LT_TAGDECL([], [allow_undefined_flag], [1],\n    [Flag that allows shared libraries with undefined symbols to be built])\n_LT_TAGDECL([], [no_undefined_flag], [1],\n    [Flag that enforces no undefined symbols])\n_LT_TAGDECL([], [hardcode_libdir_flag_spec], [1],\n    [Flag to hardcode $libdir into a binary during linking.\n    This must work even if $libdir does not exist])\n_LT_TAGDECL([], [hardcode_libdir_flag_spec_ld], [1],\n    [[If ld is used when linking, flag to hardcode $libdir into a binary\n    during linking.  This must work even if $libdir does not exist]])\n_LT_TAGDECL([], [hardcode_libdir_separator], [1],\n    [Whether we need a single \"-rpath\" flag with a separated argument])\n_LT_TAGDECL([], [hardcode_direct], [0],\n    [Set to \"yes\" if using DIR/libNAME${shared_ext} during linking hardcodes\n    DIR into the resulting binary])\n_LT_TAGDECL([], [hardcode_direct_absolute], [0],\n    [Set to \"yes\" if using DIR/libNAME${shared_ext} during linking hardcodes\n    DIR into the resulting binary and the resulting library dependency is\n    \"absolute\", i.e impossible to change by setting ${shlibpath_var} if the\n    library is relocated])\n_LT_TAGDECL([], [hardcode_minus_L], [0],\n    [Set to \"yes\" if using the -LDIR flag during linking hardcodes DIR\n    into the resulting binary])\n_LT_TAGDECL([], [hardcode_shlibpath_var], [0],\n    [Set to \"yes\" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR\n    into the resulting binary])\n_LT_TAGDECL([], [hardcode_automatic], [0],\n    [Set to \"yes\" if building a shared library automatically hardcodes DIR\n    into the library and all subsequent libraries and executables linked\n    against it])\n_LT_TAGDECL([], [inherit_rpath], [0],\n    [Set to yes if linker adds runtime paths of dependent libraries\n    to runtime path list])\n_LT_TAGDECL([], [link_all_deplibs], [0],\n    [Whether libtool must link a program against all its dependency libraries])\n_LT_TAGDECL([], [fix_srcfile_path], [1],\n    [Fix the shell variable $srcfile for the compiler])\n_LT_TAGDECL([], [always_export_symbols], [0],\n    [Set to \"yes\" if exported symbols are required])\n_LT_TAGDECL([], [export_symbols_cmds], [2],\n    [The commands to list exported symbols])\n_LT_TAGDECL([], [exclude_expsyms], [1],\n    [Symbols that should not be listed in the preloaded symbols])\n_LT_TAGDECL([], [include_expsyms], [1],\n    [Symbols that must always be exported])\n_LT_TAGDECL([], [prelink_cmds], [2],\n    [Commands necessary for linking programs (against libraries) with templates])\n_LT_TAGDECL([], [file_list_spec], [1],\n    [Specify filename containing input files])\ndnl FIXME: Not yet implemented\ndnl _LT_TAGDECL([], [thread_safe_flag_spec], [1],\ndnl    [Compiler flag to generate thread safe objects])\n])# _LT_LINKER_SHLIBS\n\n\n# _LT_LANG_C_CONFIG([TAG])\n# ------------------------\n# Ensure that the configuration variables for a C compiler are suitably\n# defined.  These variables are subsequently used by _LT_CONFIG to write\n# the compiler configuration to `libtool'.\nm4_defun([_LT_LANG_C_CONFIG],\n[m4_require([_LT_DECL_EGREP])dnl\nlt_save_CC=\"$CC\"\nAC_LANG_PUSH(C)\n\n# Source file extension for C test sources.\nac_ext=c\n\n# Object file extension for compiled C test sources.\nobjext=o\n_LT_TAGVAR(objext, $1)=$objext\n\n# Code to be used in simple compile tests\nlt_simple_compile_test_code=\"int some_variable = 0;\"\n\n# Code to be used in simple link tests\nlt_simple_link_test_code='int main(){return(0);}'\n\n_LT_TAG_COMPILER\n# Save the default compiler, since it gets overwritten when the other\n# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP.\ncompiler_DEFAULT=$CC\n\n# save warnings/boilerplate of simple test code\n_LT_COMPILER_BOILERPLATE\n_LT_LINKER_BOILERPLATE\n\nif test -n \"$compiler\"; then\n  _LT_COMPILER_NO_RTTI($1)\n  _LT_COMPILER_PIC($1)\n  _LT_COMPILER_C_O($1)\n  _LT_COMPILER_FILE_LOCKS($1)\n  _LT_LINKER_SHLIBS($1)\n  _LT_SYS_DYNAMIC_LINKER($1)\n  _LT_LINKER_HARDCODE_LIBPATH($1)\n  LT_SYS_DLOPEN_SELF\n  _LT_CMD_STRIPLIB\n\n  # Report which library types will actually be built\n  AC_MSG_CHECKING([if libtool supports shared libraries])\n  AC_MSG_RESULT([$can_build_shared])\n\n  AC_MSG_CHECKING([whether to build shared libraries])\n  test \"$can_build_shared\" = \"no\" && enable_shared=no\n\n  # On AIX, shared libraries and static libraries use the same namespace, and\n  # are all built from PIC.\n  case $host_os in\n  aix3*)\n    test \"$enable_shared\" = yes && enable_static=no\n    if test -n \"$RANLIB\"; then\n      archive_cmds=\"$archive_cmds~\\$RANLIB \\$lib\"\n      postinstall_cmds='$RANLIB $lib'\n    fi\n    ;;\n\n  aix[[4-9]]*)\n    if test \"$host_cpu\" != ia64 && test \"$aix_use_runtimelinking\" = no ; then\n      test \"$enable_shared\" = yes && enable_static=no\n    fi\n    ;;\n  esac\n  AC_MSG_RESULT([$enable_shared])\n\n  AC_MSG_CHECKING([whether to build static libraries])\n  # Make sure either enable_shared or enable_static is yes.\n  test \"$enable_shared\" = yes || enable_static=yes\n  AC_MSG_RESULT([$enable_static])\n\n  _LT_CONFIG($1)\nfi\nAC_LANG_POP\nCC=\"$lt_save_CC\"\n])# _LT_LANG_C_CONFIG\n\n\n# _LT_LANG_CXX_CONFIG([TAG])\n# --------------------------\n# Ensure that the configuration variables for a C++ compiler are suitably\n# defined.  These variables are subsequently used by _LT_CONFIG to write\n# the compiler configuration to `libtool'.\nm4_defun([_LT_LANG_CXX_CONFIG],\n[m4_require([_LT_FILEUTILS_DEFAULTS])dnl\nm4_require([_LT_DECL_EGREP])dnl\nif test -n \"$CXX\" && ( test \"X$CXX\" != \"Xno\" &&\n    ( (test \"X$CXX\" = \"Xg++\" && `g++ -v >/dev/null 2>&1` ) ||\n    (test \"X$CXX\" != \"Xg++\"))) ; then\n  AC_PROG_CXXCPP\nelse\n  _lt_caught_CXX_error=yes\nfi\n\nAC_LANG_PUSH(C++)\n_LT_TAGVAR(archive_cmds_need_lc, $1)=no\n_LT_TAGVAR(allow_undefined_flag, $1)=\n_LT_TAGVAR(always_export_symbols, $1)=no\n_LT_TAGVAR(archive_expsym_cmds, $1)=\n_LT_TAGVAR(compiler_needs_object, $1)=no\n_LT_TAGVAR(export_dynamic_flag_spec, $1)=\n_LT_TAGVAR(hardcode_direct, $1)=no\n_LT_TAGVAR(hardcode_direct_absolute, $1)=no\n_LT_TAGVAR(hardcode_libdir_flag_spec, $1)=\n_LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=\n_LT_TAGVAR(hardcode_libdir_separator, $1)=\n_LT_TAGVAR(hardcode_minus_L, $1)=no\n_LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported\n_LT_TAGVAR(hardcode_automatic, $1)=no\n_LT_TAGVAR(inherit_rpath, $1)=no\n_LT_TAGVAR(module_cmds, $1)=\n_LT_TAGVAR(module_expsym_cmds, $1)=\n_LT_TAGVAR(link_all_deplibs, $1)=unknown\n_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds\n_LT_TAGVAR(reload_flag, $1)=$reload_flag\n_LT_TAGVAR(reload_cmds, $1)=$reload_cmds\n_LT_TAGVAR(no_undefined_flag, $1)=\n_LT_TAGVAR(whole_archive_flag_spec, $1)=\n_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no\n\n# Source file extension for C++ test sources.\nac_ext=cpp\n\n# Object file extension for compiled C++ test sources.\nobjext=o\n_LT_TAGVAR(objext, $1)=$objext\n\n# No sense in running all these tests if we already determined that\n# the CXX compiler isn't working.  Some variables (like enable_shared)\n# are currently assumed to apply to all compilers on this platform,\n# and will be corrupted by setting them based on a non-working compiler.\nif test \"$_lt_caught_CXX_error\" != yes; then\n  # Code to be used in simple compile tests\n  lt_simple_compile_test_code=\"int some_variable = 0;\"\n\n  # Code to be used in simple link tests\n  lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }'\n\n  # ltmain only uses $CC for tagged configurations so make sure $CC is set.\n  _LT_TAG_COMPILER\n\n  # save warnings/boilerplate of simple test code\n  _LT_COMPILER_BOILERPLATE\n  _LT_LINKER_BOILERPLATE\n\n  # Allow CC to be a program name with arguments.\n  lt_save_CC=$CC\n  lt_save_LD=$LD\n  lt_save_GCC=$GCC\n  GCC=$GXX\n  lt_save_with_gnu_ld=$with_gnu_ld\n  lt_save_path_LD=$lt_cv_path_LD\n  if test -n \"${lt_cv_prog_gnu_ldcxx+set}\"; then\n    lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx\n  else\n    $as_unset lt_cv_prog_gnu_ld\n  fi\n  if test -n \"${lt_cv_path_LDCXX+set}\"; then\n    lt_cv_path_LD=$lt_cv_path_LDCXX\n  else\n    $as_unset lt_cv_path_LD\n  fi\n  test -z \"${LDCXX+set}\" || LD=$LDCXX\n  CC=${CXX-\"c++\"}\n  compiler=$CC\n  _LT_TAGVAR(compiler, $1)=$CC\n  _LT_CC_BASENAME([$compiler])\n\n  if test -n \"$compiler\"; then\n    # We don't want -fno-exception when compiling C++ code, so set the\n    # no_builtin_flag separately\n    if test \"$GXX\" = yes; then\n      _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin'\n    else\n      _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=\n    fi\n\n    if test \"$GXX\" = yes; then\n      # Set up default GNU C++ configuration\n\n      LT_PATH_LD\n\n      # Check if GNU C++ uses GNU ld as the underlying linker, since the\n      # archiving commands below assume that GNU ld is being used.\n      if test \"$with_gnu_ld\" = yes; then\n        _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'\n        _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'\n\n        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'\n        _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'\n\n        # If archive_cmds runs LD, not CC, wlarc should be empty\n        # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to\n        #     investigate it a little bit more. (MM)\n        wlarc='${wl}'\n\n        # ancient GNU ld didn't support --whole-archive et. al.\n        if eval \"`$CC -print-prog-name=ld` --help 2>&1\" |\n\t  $GREP 'no-whole-archive' > /dev/null; then\n          _LT_TAGVAR(whole_archive_flag_spec, $1)=\"$wlarc\"'--whole-archive$convenience '\"$wlarc\"'--no-whole-archive'\n        else\n          _LT_TAGVAR(whole_archive_flag_spec, $1)=\n        fi\n      else\n        with_gnu_ld=no\n        wlarc=\n\n        # A generic and very simple default shared library creation\n        # command for GNU C++ for the case where it uses the native\n        # linker, instead of GNU ld.  If possible, this setting should\n        # overridden to take advantage of the native linker features on\n        # the platform it is being used on.\n        _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'\n      fi\n\n      # Commands to make compiler produce verbose output that lists\n      # what \"hidden\" libraries, object files and flags are used when\n      # linking a shared library.\n      output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v \"^Configured with:\" | $GREP \"\\-L\"'\n\n    else\n      GXX=no\n      with_gnu_ld=no\n      wlarc=\n    fi\n\n    # PORTME: fill in a description of your system's C++ link characteristics\n    AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])\n    _LT_TAGVAR(ld_shlibs, $1)=yes\n    case $host_os in\n      aix3*)\n        # FIXME: insert proper C++ library support\n        _LT_TAGVAR(ld_shlibs, $1)=no\n        ;;\n      aix[[4-9]]*)\n        if test \"$host_cpu\" = ia64; then\n          # On IA64, the linker does run time linking by default, so we don't\n          # have to do anything special.\n          aix_use_runtimelinking=no\n          exp_sym_flag='-Bexport'\n          no_entry_flag=\"\"\n        else\n          aix_use_runtimelinking=no\n\n          # Test if we are trying to use run time linking or normal\n          # AIX style linking. If -brtl is somewhere in LDFLAGS, we\n          # need to do runtime linking.\n          case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*)\n\t    for ld_flag in $LDFLAGS; do\n\t      case $ld_flag in\n\t      *-brtl*)\n\t        aix_use_runtimelinking=yes\n\t        break\n\t        ;;\n\t      esac\n\t    done\n\t    ;;\n          esac\n\n          exp_sym_flag='-bexport'\n          no_entry_flag='-bnoentry'\n        fi\n\n        # When large executables or shared objects are built, AIX ld can\n        # have problems creating the table of contents.  If linking a library\n        # or program results in \"error TOC overflow\" add -mminimal-toc to\n        # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not\n        # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.\n\n        _LT_TAGVAR(archive_cmds, $1)=''\n        _LT_TAGVAR(hardcode_direct, $1)=yes\n        _LT_TAGVAR(hardcode_direct_absolute, $1)=yes\n        _LT_TAGVAR(hardcode_libdir_separator, $1)=':'\n        _LT_TAGVAR(link_all_deplibs, $1)=yes\n        _LT_TAGVAR(file_list_spec, $1)='${wl}-f,'\n\n        if test \"$GXX\" = yes; then\n          case $host_os in aix4.[[012]]|aix4.[[012]].*)\n          # We only want to do this on AIX 4.2 and lower, the check\n          # below for broken collect2 doesn't work under 4.3+\n\t  collect2name=`${CC} -print-prog-name=collect2`\n\t  if test -f \"$collect2name\" &&\n\t     strings \"$collect2name\" | $GREP resolve_lib_name >/dev/null\n\t  then\n\t    # We have reworked collect2\n\t    :\n\t  else\n\t    # We have old collect2\n\t    _LT_TAGVAR(hardcode_direct, $1)=unsupported\n\t    # It fails to find uninstalled libraries when the uninstalled\n\t    # path is not listed in the libpath.  Setting hardcode_minus_L\n\t    # to unsupported forces relinking\n\t    _LT_TAGVAR(hardcode_minus_L, $1)=yes\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n\t    _LT_TAGVAR(hardcode_libdir_separator, $1)=\n\t  fi\n          esac\n          shared_flag='-shared'\n\t  if test \"$aix_use_runtimelinking\" = yes; then\n\t    shared_flag=\"$shared_flag \"'${wl}-G'\n\t  fi\n        else\n          # not using gcc\n          if test \"$host_cpu\" = ia64; then\n\t  # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release\n\t  # chokes on -Wl,-G. The following line is correct:\n\t  shared_flag='-G'\n          else\n\t    if test \"$aix_use_runtimelinking\" = yes; then\n\t      shared_flag='${wl}-G'\n\t    else\n\t      shared_flag='${wl}-bM:SRE'\n\t    fi\n          fi\n        fi\n\n        _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall'\n        # It seems that -bexpall does not export symbols beginning with\n        # underscore (_), so it is better to generate a list of symbols to\n\t# export.\n        _LT_TAGVAR(always_export_symbols, $1)=yes\n        if test \"$aix_use_runtimelinking\" = yes; then\n          # Warning - without using the other runtime loading flags (-brtl),\n          # -berok will link without error, but may produce a broken library.\n          _LT_TAGVAR(allow_undefined_flag, $1)='-berok'\n          # Determine the default libpath from the value encoded in an empty\n          # executable.\n          _LT_SYS_MODULE_PATH_AIX\n          _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'\"$aix_libpath\"\n\n          _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\"\n        else\n          if test \"$host_cpu\" = ia64; then\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'\n\t    _LT_TAGVAR(allow_undefined_flag, $1)=\"-z nodefs\"\n\t    _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\"\n          else\n\t    # Determine the default libpath from the value encoded in an\n\t    # empty executable.\n\t    _LT_SYS_MODULE_PATH_AIX\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'\"$aix_libpath\"\n\t    # Warning - without using the other run time loading flags,\n\t    # -berok will link without error, but may produce a broken library.\n\t    _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'\n\t    _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'\n\t    if test \"$with_gnu_ld\" = yes; then\n\t      # We only use this code for GNU lds that support --whole-archive.\n\t      _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive'\n\t    else\n\t      # Exported symbols can be pulled into shared objects from archives\n\t      _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience'\n\t    fi\n\t    _LT_TAGVAR(archive_cmds_need_lc, $1)=yes\n\t    # This is similar to how AIX traditionally builds its shared\n\t    # libraries.\n\t    _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'\n          fi\n        fi\n        ;;\n\n      beos*)\n\tif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\t  _LT_TAGVAR(allow_undefined_flag, $1)=unsupported\n\t  # Joseph Beckenbach <jrb3@best.com> says some releases of gcc\n\t  # support --undefined.  This deserves some investigation.  FIXME\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'\n\telse\n\t  _LT_TAGVAR(ld_shlibs, $1)=no\n\tfi\n\t;;\n\n      chorus*)\n        case $cc_basename in\n          *)\n\t  # FIXME: insert proper C++ library support\n\t  _LT_TAGVAR(ld_shlibs, $1)=no\n\t  ;;\n        esac\n        ;;\n\n      cygwin* | mingw* | pw32* | cegcc*)\n        # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,\n        # as there is no search path for DLLs.\n        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'\n        _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols'\n        _LT_TAGVAR(allow_undefined_flag, $1)=unsupported\n        _LT_TAGVAR(always_export_symbols, $1)=no\n        _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes\n\n        if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then\n          _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'\n          # If the export-symbols file already is a .def file (1st line\n          # is EXPORTS), use it as is; otherwise, prepend...\n          _LT_TAGVAR(archive_expsym_cmds, $1)='if test \"x`$SED 1q $export_symbols`\" = xEXPORTS; then\n\t    cp $export_symbols $output_objdir/$soname.def;\n          else\n\t    echo EXPORTS > $output_objdir/$soname.def;\n\t    cat $export_symbols >> $output_objdir/$soname.def;\n          fi~\n          $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'\n        else\n          _LT_TAGVAR(ld_shlibs, $1)=no\n        fi\n        ;;\n      darwin* | rhapsody*)\n        _LT_DARWIN_LINKER_FEATURES($1)\n\t;;\n\n      dgux*)\n        case $cc_basename in\n          ec++*)\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n          ghcx*)\n\t    # Green Hills C++ Compiler\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n          *)\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n        esac\n        ;;\n\n      freebsd[[12]]*)\n        # C++ shared libraries reported to be fairly broken before\n\t# switch to ELF\n        _LT_TAGVAR(ld_shlibs, $1)=no\n        ;;\n\n      freebsd-elf*)\n        _LT_TAGVAR(archive_cmds_need_lc, $1)=no\n        ;;\n\n      freebsd* | dragonfly*)\n        # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF\n        # conventions\n        _LT_TAGVAR(ld_shlibs, $1)=yes\n        ;;\n\n      gnu*)\n        ;;\n\n      haiku*)\n        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'\n        _LT_TAGVAR(link_all_deplibs, $1)=yes\n        ;;\n\n      hpux9*)\n        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'\n        _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n        _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'\n        _LT_TAGVAR(hardcode_direct, $1)=yes\n        _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,\n\t\t\t\t             # but as the default\n\t\t\t\t             # location of the library.\n\n        case $cc_basename in\n          CC*)\n            # FIXME: insert proper C++ library support\n            _LT_TAGVAR(ld_shlibs, $1)=no\n            ;;\n          aCC*)\n            _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'\n            # Commands to make compiler produce verbose output that lists\n            # what \"hidden\" libraries, object files and flags are used when\n            # linking a shared library.\n            #\n            # There doesn't appear to be a way to prevent this compiler from\n            # explicitly linking system object files so we need to strip them\n            # from the output so that they don't get included in the library\n            # dependencies.\n            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\"'\n            ;;\n          *)\n            if test \"$GXX\" = yes; then\n              _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${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'\n            else\n              # FIXME: insert proper C++ library support\n              _LT_TAGVAR(ld_shlibs, $1)=no\n            fi\n            ;;\n        esac\n        ;;\n\n      hpux10*|hpux11*)\n        if test $with_gnu_ld = no; then\n\t  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'\n\t  _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n\n          case $host_cpu in\n            hppa*64*|ia64*)\n              ;;\n            *)\n\t      _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'\n              ;;\n          esac\n        fi\n        case $host_cpu in\n          hppa*64*|ia64*)\n            _LT_TAGVAR(hardcode_direct, $1)=no\n            _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n            ;;\n          *)\n            _LT_TAGVAR(hardcode_direct, $1)=yes\n            _LT_TAGVAR(hardcode_direct_absolute, $1)=yes\n            _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,\n\t\t\t\t\t         # but as the default\n\t\t\t\t\t         # location of the library.\n            ;;\n        esac\n\n        case $cc_basename in\n          CC*)\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n          aCC*)\n\t    case $host_cpu in\n\t      hppa*64*)\n\t        _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'\n\t        ;;\n\t      ia64*)\n\t        _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'\n\t        ;;\n\t      *)\n\t        _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'\n\t        ;;\n\t    esac\n\t    # Commands to make compiler produce verbose output that lists\n\t    # what \"hidden\" libraries, object files and flags are used when\n\t    # linking a shared library.\n\t    #\n\t    # There doesn't appear to be a way to prevent this compiler from\n\t    # explicitly linking system object files so we need to strip them\n\t    # from the output so that they don't get included in the library\n\t    # dependencies.\n\t    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\"'\n\t    ;;\n          *)\n\t    if test \"$GXX\" = yes; then\n\t      if test $with_gnu_ld = no; then\n\t        case $host_cpu in\n\t          hppa*64*)\n\t            _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'\n\t            ;;\n\t          ia64*)\n\t            _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'\n\t            ;;\n\t          *)\n\t            _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'\n\t            ;;\n\t        esac\n\t      fi\n\t    else\n\t      # FIXME: insert proper C++ library support\n\t      _LT_TAGVAR(ld_shlibs, $1)=no\n\t    fi\n\t    ;;\n        esac\n        ;;\n\n      interix[[3-9]]*)\n\t_LT_TAGVAR(hardcode_direct, $1)=no\n\t_LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n\t_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'\n\t_LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'\n\t# Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.\n\t# Instead, shared libraries are loaded at an image base (0x10000000 by\n\t# default) and relocated if they conflict, which is a slow very memory\n\t# consuming and fragmenting process.  To avoid this, we pick a random,\n\t# 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link\n\t# time.  Moving up from 0x10000000 also allows more sbrk(2) space.\n\t_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'\n\t_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'\n\t;;\n      irix5* | irix6*)\n        case $cc_basename in\n          CC*)\n\t    # SGI C++\n\t    _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'\n\n\t    # Archives containing C++ object files must be created using\n\t    # \"CC -ar\", where \"CC\" is the IRIX C++ compiler.  This is\n\t    # necessary to make sure instantiated templates are included\n\t    # in the archive.\n\t    _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs'\n\t    ;;\n          *)\n\t    if test \"$GXX\" = yes; then\n\t      if test \"$with_gnu_ld\" = no; then\n\t        _LT_TAGVAR(archive_cmds, $1)='$CC -shared -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'\n\t      else\n\t        _LT_TAGVAR(archive_cmds, $1)='$CC -shared -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'\n\t      fi\n\t    fi\n\t    _LT_TAGVAR(link_all_deplibs, $1)=yes\n\t    ;;\n        esac\n        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'\n        _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n        _LT_TAGVAR(inherit_rpath, $1)=yes\n        ;;\n\n      linux* | k*bsd*-gnu | kopensolaris*-gnu)\n        case $cc_basename in\n          KCC*)\n\t    # Kuck and Associates, Inc. (KAI) C++ Compiler\n\n\t    # KCC will only create a shared library if the output file\n\t    # ends with \".so\" (or \".sl\" for HP-UX), so rename the library\n\t    # to its proper name (with version) after linking.\n\t    _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'\n\t    _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'\n\t    # Commands to make compiler produce verbose output that lists\n\t    # what \"hidden\" libraries, object files and flags are used when\n\t    # linking a shared library.\n\t    #\n\t    # There doesn't appear to be a way to prevent this compiler from\n\t    # explicitly linking system object files so we need to strip them\n\t    # from the output so that they don't get included in the library\n\t    # dependencies.\n\t    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\"'\n\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'\n\t    _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'\n\n\t    # Archives containing C++ object files must be created using\n\t    # \"CC -Bstatic\", where \"CC\" is the KAI C++ compiler.\n\t    _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs'\n\t    ;;\n\t  icpc* | ecpc* )\n\t    # Intel C++\n\t    with_gnu_ld=yes\n\t    # version 8.0 and above of icpc choke on multiply defined symbols\n\t    # if we add $predep_objects and $postdep_objects, however 7.1 and\n\t    # earlier do not add the objects themselves.\n\t    case `$CC -V 2>&1` in\n\t      *\"Version 7.\"*)\n\t        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'\n\t\t_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'\n\t\t;;\n\t      *)  # Version 8.0 or newer\n\t        tmp_idyn=\n\t        case $host_cpu in\n\t\t  ia64*) tmp_idyn=' -i_dynamic';;\n\t\tesac\n\t        _LT_TAGVAR(archive_cmds, $1)='$CC -shared'\"$tmp_idyn\"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'\n\t\t_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'\n\t\t;;\n\t    esac\n\t    _LT_TAGVAR(archive_cmds_need_lc, $1)=no\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'\n\t    _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'\n\t    _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive'\n\t    ;;\n          pgCC* | pgcpp*)\n            # Portland Group C++ compiler\n\t    case `$CC -V` in\n\t    *pgCC\\ [[1-5]].* | *pgcpp\\ [[1-5]].*)\n\t      _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~\n\t\trm -rf $tpldir~\n\t\t$CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~\n\t\tcompile_command=\"$compile_command `find $tpldir -name \\*.o | sort | $NL2SP`\"'\n\t      _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~\n\t\trm -rf $tpldir~\n\t\t$CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~\n\t\t$AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \\*.o | sort | $NL2SP`~\n\t\t$RANLIB $oldlib'\n\t      _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~\n\t\trm -rf $tpldir~\n\t\t$CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~\n\t\t$CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \\*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'\n\t      _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~\n\t\trm -rf $tpldir~\n\t\t$CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~\n\t\t$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'\n\t      ;;\n\t    *) # Version 6 and above use weak symbols\n\t      _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'\n\t      _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'\n\t      ;;\n\t    esac\n\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir'\n\t    _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'\n\t    _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'\n            ;;\n\t  cxx*)\n\t    # Compaq C++\n\t    _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'\n\t    _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'\n\n\t    runpath_var=LD_RUN_PATH\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'\n\t    _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n\n\t    # Commands to make compiler produce verbose output that lists\n\t    # what \"hidden\" libraries, object files and flags are used when\n\t    # linking a shared library.\n\t    #\n\t    # There doesn't appear to be a way to prevent this compiler from\n\t    # explicitly linking system object files so we need to strip them\n\t    # from the output so that they don't get included in the library\n\t    # dependencies.\n\t    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'\n\t    ;;\n\t  xl* | mpixl* | bgxl*)\n\t    # IBM XL 8.0 on PPC, with GNU ld\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'\n\t    _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'\n\t    _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'\n\t    if test \"x$supports_anon_versioning\" = xyes; then\n\t      _LT_TAGVAR(archive_expsym_cmds, $1)='echo \"{ global:\" > $output_objdir/$libname.ver~\n\t\tcat $export_symbols | sed -e \"s/\\(.*\\)/\\1;/\" >> $output_objdir/$libname.ver~\n\t\techo \"local: *; };\" >> $output_objdir/$libname.ver~\n\t\t$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'\n\t    fi\n\t    ;;\n\t  *)\n\t    case `$CC -V 2>&1 | sed 5q` in\n\t    *Sun\\ C*)\n\t      # Sun C++ 5.9\n\t      _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs'\n\t      _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'\n\t      _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'\n\t      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'\n\t      _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'\n\t      _LT_TAGVAR(compiler_needs_object, $1)=yes\n\n\t      # Not sure whether something based on\n\t      # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1\n\t      # would be better.\n\t      output_verbose_link_cmd='func_echo_all'\n\n\t      # Archives containing C++ object files must be created using\n\t      # \"CC -xar\", where \"CC\" is the Sun C++ compiler.  This is\n\t      # necessary to make sure instantiated templates are included\n\t      # in the archive.\n\t      _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs'\n\t      ;;\n\t    esac\n\t    ;;\n\tesac\n\t;;\n\n      lynxos*)\n        # FIXME: insert proper C++ library support\n\t_LT_TAGVAR(ld_shlibs, $1)=no\n\t;;\n\n      m88k*)\n        # FIXME: insert proper C++ library support\n        _LT_TAGVAR(ld_shlibs, $1)=no\n\t;;\n\n      mvs*)\n        case $cc_basename in\n          cxx*)\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n\t  *)\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n\tesac\n\t;;\n\n      netbsd*)\n        if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then\n\t  _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable  -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags'\n\t  wlarc=\n\t  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'\n\t  _LT_TAGVAR(hardcode_direct, $1)=yes\n\t  _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n\tfi\n\t# Workaround some broken pre-1.5 toolchains\n\toutput_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e \"s:-lgcc -lc -lgcc::\"'\n\t;;\n\n      *nto* | *qnx*)\n        _LT_TAGVAR(ld_shlibs, $1)=yes\n\t;;\n\n      openbsd2*)\n        # C++ shared libraries are fairly broken\n\t_LT_TAGVAR(ld_shlibs, $1)=no\n\t;;\n\n      openbsd*)\n\tif test -f /usr/libexec/ld.so; then\n\t  _LT_TAGVAR(hardcode_direct, $1)=yes\n\t  _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n\t  _LT_TAGVAR(hardcode_direct_absolute, $1)=yes\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'\n\t  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'\n\t  if test -z \"`echo __ELF__ | $CC -E - | grep __ELF__`\" || test \"$host_os-$host_cpu\" = \"openbsd2.8-powerpc\"; then\n\t    _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'\n\t    _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'\n\t    _LT_TAGVAR(whole_archive_flag_spec, $1)=\"$wlarc\"'--whole-archive$convenience '\"$wlarc\"'--no-whole-archive'\n\t  fi\n\t  output_verbose_link_cmd=func_echo_all\n\telse\n\t  _LT_TAGVAR(ld_shlibs, $1)=no\n\tfi\n\t;;\n\n      osf3* | osf4* | osf5*)\n        case $cc_basename in\n          KCC*)\n\t    # Kuck and Associates, Inc. (KAI) C++ Compiler\n\n\t    # KCC will only create a shared library if the output file\n\t    # ends with \".so\" (or \".sl\" for HP-UX), so rename the library\n\t    # to its proper name (with version) after linking.\n\t    _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'\n\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'\n\t    _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n\n\t    # Archives containing C++ object files must be created using\n\t    # the KAI C++ compiler.\n\t    case $host in\n\t      osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;;\n\t      *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;;\n\t    esac\n\t    ;;\n          RCC*)\n\t    # Rational C++ 2.4.1\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n          cxx*)\n\t    case $host in\n\t      osf3*)\n\t        _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\\*'\n\t        _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'\n\t        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'\n\t\t;;\n\t      *)\n\t        _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \\*'\n\t        _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'\n\t        _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf \"%s %s\\\\n\" -exported_symbol \"\\$i\" >> $lib.exp; done~\n\t          echo \"-hidden\">> $lib.exp~\n\t          $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~\n\t          $RM $lib.exp'\n\t        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'\n\t\t;;\n\t    esac\n\n\t    _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n\n\t    # Commands to make compiler produce verbose output that lists\n\t    # what \"hidden\" libraries, object files and flags are used when\n\t    # linking a shared library.\n\t    #\n\t    # There doesn't appear to be a way to prevent this compiler from\n\t    # explicitly linking system object files so we need to strip them\n\t    # from the output so that they don't get included in the library\n\t    # dependencies.\n\t    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\"'\n\t    ;;\n\t  *)\n\t    if test \"$GXX\" = yes && test \"$with_gnu_ld\" = no; then\n\t      _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\\*'\n\t      case $host in\n\t        osf3*)\n\t          _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'\n\t\t  ;;\n\t        *)\n\t          _LT_TAGVAR(archive_cmds, $1)='$CC -shared -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'\n\t\t  ;;\n\t      esac\n\n\t      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'\n\t      _LT_TAGVAR(hardcode_libdir_separator, $1)=:\n\n\t      # Commands to make compiler produce verbose output that lists\n\t      # what \"hidden\" libraries, object files and flags are used when\n\t      # linking a shared library.\n\t      output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v \"^Configured with:\" | $GREP \"\\-L\"'\n\n\t    else\n\t      # FIXME: insert proper C++ library support\n\t      _LT_TAGVAR(ld_shlibs, $1)=no\n\t    fi\n\t    ;;\n        esac\n        ;;\n\n      psos*)\n        # FIXME: insert proper C++ library support\n        _LT_TAGVAR(ld_shlibs, $1)=no\n        ;;\n\n      sunos4*)\n        case $cc_basename in\n          CC*)\n\t    # Sun C++ 4.x\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n          lcc*)\n\t    # Lucid\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n          *)\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n        esac\n        ;;\n\n      solaris*)\n        case $cc_basename in\n          CC* | sunCC*)\n\t    # Sun C++ 4.2, 5.x and Centerline C++\n            _LT_TAGVAR(archive_cmds_need_lc,$1)=yes\n\t    _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs'\n\t    _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag}  -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n\t      $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'\n\n\t    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'\n\t    _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n\t    case $host_os in\n\t      solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;\n\t      *)\n\t\t# The compiler driver will combine and reorder linker options,\n\t\t# but understands `-z linker_flag'.\n\t        # Supported since Solaris 2.6 (maybe 2.5.1?)\n\t\t_LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract'\n\t        ;;\n\t    esac\n\t    _LT_TAGVAR(link_all_deplibs, $1)=yes\n\n\t    output_verbose_link_cmd='func_echo_all'\n\n\t    # Archives containing C++ object files must be created using\n\t    # \"CC -xar\", where \"CC\" is the Sun C++ compiler.  This is\n\t    # necessary to make sure instantiated templates are included\n\t    # in the archive.\n\t    _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs'\n\t    ;;\n          gcx*)\n\t    # Green Hills C++ Compiler\n\t    _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'\n\n\t    # The C++ compiler must be used to create the archive.\n\t    _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs'\n\t    ;;\n          *)\n\t    # GNU C++ compiler with Solaris linker\n\t    if test \"$GXX\" = yes && test \"$with_gnu_ld\" = no; then\n\t      _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs'\n\t      if $CC --version | $GREP -v '^2\\.7' > /dev/null; then\n\t        _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'\n\t        _LT_TAGVAR(archive_expsym_cmds, $1)='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n\t\t  $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'\n\n\t        # Commands to make compiler produce verbose output that lists\n\t        # what \"hidden\" libraries, object files and flags are used when\n\t        # linking a shared library.\n\t        output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v \"^Configured with:\" | $GREP \"\\-L\"'\n\t      else\n\t        # g++ 2.7 appears to require `-G' NOT `-shared' on this\n\t        # platform.\n\t        _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'\n\t        _LT_TAGVAR(archive_expsym_cmds, $1)='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n\t\t  $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'\n\n\t        # Commands to make compiler produce verbose output that lists\n\t        # what \"hidden\" libraries, object files and flags are used when\n\t        # linking a shared library.\n\t        output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v \"^Configured with:\" | $GREP \"\\-L\"'\n\t      fi\n\n\t      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir'\n\t      case $host_os in\n\t\tsolaris2.[[0-5]] | solaris2.[[0-5]].*) ;;\n\t\t*)\n\t\t  _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'\n\t\t  ;;\n\t      esac\n\t    fi\n\t    ;;\n        esac\n        ;;\n\n    sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*)\n      _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'\n      _LT_TAGVAR(archive_cmds_need_lc, $1)=no\n      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n      runpath_var='LD_RUN_PATH'\n\n      case $cc_basename in\n        CC*)\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\t*)\n\t  _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n      esac\n      ;;\n\n      sysv5* | sco3.2v5* | sco5v6*)\n\t# Note: We can NOT use -z defs as we might desire, because we do not\n\t# link with -lc, and that would cause any symbols used from libc to\n\t# always be unresolved, which means just about no library would\n\t# ever link correctly.  If we're not using GNU ld we use -z text\n\t# though, which does catch some bad symbols but isn't as heavy-handed\n\t# as -z defs.\n\t_LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'\n\t_LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs'\n\t_LT_TAGVAR(archive_cmds_need_lc, $1)=no\n\t_LT_TAGVAR(hardcode_shlibpath_var, $1)=no\n\t_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir'\n\t_LT_TAGVAR(hardcode_libdir_separator, $1)=':'\n\t_LT_TAGVAR(link_all_deplibs, $1)=yes\n\t_LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport'\n\trunpath_var='LD_RUN_PATH'\n\n\tcase $cc_basename in\n          CC*)\n\t    _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t    _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~\n\t      '\"$_LT_TAGVAR(old_archive_cmds, $1)\"\n\t    _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~\n\t      '\"$_LT_TAGVAR(reload_cmds, $1)\"\n\t    ;;\n\t  *)\n\t    _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t    _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t    ;;\n\tesac\n      ;;\n\n      tandem*)\n        case $cc_basename in\n          NCC*)\n\t    # NonStop-UX NCC 3.20\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n          *)\n\t    # FIXME: insert proper C++ library support\n\t    _LT_TAGVAR(ld_shlibs, $1)=no\n\t    ;;\n        esac\n        ;;\n\n      vxworks*)\n        # FIXME: insert proper C++ library support\n        _LT_TAGVAR(ld_shlibs, $1)=no\n        ;;\n\n      *)\n        # FIXME: insert proper C++ library support\n        _LT_TAGVAR(ld_shlibs, $1)=no\n        ;;\n    esac\n\n    AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)])\n    test \"$_LT_TAGVAR(ld_shlibs, $1)\" = no && can_build_shared=no\n\n    _LT_TAGVAR(GCC, $1)=\"$GXX\"\n    _LT_TAGVAR(LD, $1)=\"$LD\"\n\n    ## CAVEAT EMPTOR:\n    ## There is no encapsulation within the following macros, do not change\n    ## the running order or otherwise move them around unless you know exactly\n    ## what you are doing...\n    _LT_SYS_HIDDEN_LIBDEPS($1)\n    _LT_COMPILER_PIC($1)\n    _LT_COMPILER_C_O($1)\n    _LT_COMPILER_FILE_LOCKS($1)\n    _LT_LINKER_SHLIBS($1)\n    _LT_SYS_DYNAMIC_LINKER($1)\n    _LT_LINKER_HARDCODE_LIBPATH($1)\n\n    _LT_CONFIG($1)\n  fi # test -n \"$compiler\"\n\n  CC=$lt_save_CC\n  LDCXX=$LD\n  LD=$lt_save_LD\n  GCC=$lt_save_GCC\n  with_gnu_ld=$lt_save_with_gnu_ld\n  lt_cv_path_LDCXX=$lt_cv_path_LD\n  lt_cv_path_LD=$lt_save_path_LD\n  lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld\n  lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld\nfi # test \"$_lt_caught_CXX_error\" != yes\n\nAC_LANG_POP\n])# _LT_LANG_CXX_CONFIG\n\n\n# _LT_SYS_HIDDEN_LIBDEPS([TAGNAME])\n# ---------------------------------\n# Figure out \"hidden\" library dependencies from verbose\n# compiler output when linking a shared library.\n# Parse the compiler output and extract the necessary\n# objects, libraries and library flags.\nm4_defun([_LT_SYS_HIDDEN_LIBDEPS],\n[m4_require([_LT_FILEUTILS_DEFAULTS])dnl\n# Dependencies to place before and after the object being linked:\n_LT_TAGVAR(predep_objects, $1)=\n_LT_TAGVAR(postdep_objects, $1)=\n_LT_TAGVAR(predeps, $1)=\n_LT_TAGVAR(postdeps, $1)=\n_LT_TAGVAR(compiler_lib_search_path, $1)=\n\ndnl we can't use the lt_simple_compile_test_code here,\ndnl because it contains code intended for an executable,\ndnl not a library.  It's possible we should let each\ndnl tag define a new lt_????_link_test_code variable,\ndnl but it's only used here...\nm4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF\nint a;\nvoid foo (void) { a = 0; }\n_LT_EOF\n], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF\nclass Foo\n{\npublic:\n  Foo (void) { a = 0; }\nprivate:\n  int a;\n};\n_LT_EOF\n], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF\n      subroutine foo\n      implicit none\n      integer*4 a\n      a=0\n      return\n      end\n_LT_EOF\n], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF\n      subroutine foo\n      implicit none\n      integer a\n      a=0\n      return\n      end\n_LT_EOF\n], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF\npublic class foo {\n  private int a;\n  public void bar (void) {\n    a = 0;\n  }\n};\n_LT_EOF\n])\ndnl Parse the compiler output and extract the necessary\ndnl objects, libraries and library flags.\nif AC_TRY_EVAL(ac_compile); then\n  # Parse the compiler output and extract the necessary\n  # objects, libraries and library flags.\n\n  # Sentinel used to keep track of whether or not we are before\n  # the conftest object file.\n  pre_test_object_deps_done=no\n\n  for p in `eval \"$output_verbose_link_cmd\"`; do\n    case $p in\n\n    -L* | -R* | -l*)\n       # Some compilers place space between \"-{L,R}\" and the path.\n       # Remove the space.\n       if test $p = \"-L\" ||\n          test $p = \"-R\"; then\n\t prev=$p\n\t continue\n       else\n\t prev=\n       fi\n\n       if test \"$pre_test_object_deps_done\" = no; then\n\t case $p in\n\t -L* | -R*)\n\t   # Internal compiler library paths should come after those\n\t   # provided the user.  The postdeps already come after the\n\t   # user supplied libs so there is no need to process them.\n\t   if test -z \"$_LT_TAGVAR(compiler_lib_search_path, $1)\"; then\n\t     _LT_TAGVAR(compiler_lib_search_path, $1)=\"${prev}${p}\"\n\t   else\n\t     _LT_TAGVAR(compiler_lib_search_path, $1)=\"${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}\"\n\t   fi\n\t   ;;\n\t # The \"-l\" case would never come before the object being\n\t # linked, so don't bother handling this case.\n\t esac\n       else\n\t if test -z \"$_LT_TAGVAR(postdeps, $1)\"; then\n\t   _LT_TAGVAR(postdeps, $1)=\"${prev}${p}\"\n\t else\n\t   _LT_TAGVAR(postdeps, $1)=\"${_LT_TAGVAR(postdeps, $1)} ${prev}${p}\"\n\t fi\n       fi\n       ;;\n\n    *.$objext)\n       # This assumes that the test object file only shows up\n       # once in the compiler output.\n       if test \"$p\" = \"conftest.$objext\"; then\n\t pre_test_object_deps_done=yes\n\t continue\n       fi\n\n       if test \"$pre_test_object_deps_done\" = no; then\n\t if test -z \"$_LT_TAGVAR(predep_objects, $1)\"; then\n\t   _LT_TAGVAR(predep_objects, $1)=\"$p\"\n\t else\n\t   _LT_TAGVAR(predep_objects, $1)=\"$_LT_TAGVAR(predep_objects, $1) $p\"\n\t fi\n       else\n\t if test -z \"$_LT_TAGVAR(postdep_objects, $1)\"; then\n\t   _LT_TAGVAR(postdep_objects, $1)=\"$p\"\n\t else\n\t   _LT_TAGVAR(postdep_objects, $1)=\"$_LT_TAGVAR(postdep_objects, $1) $p\"\n\t fi\n       fi\n       ;;\n\n    *) ;; # Ignore the rest.\n\n    esac\n  done\n\n  # Clean up.\n  rm -f a.out a.exe\nelse\n  echo \"libtool.m4: error: problem compiling $1 test program\"\nfi\n\n$RM -f confest.$objext\n\n# PORTME: override above test on systems where it is broken\nm4_if([$1], [CXX],\n[case $host_os in\ninterix[[3-9]]*)\n  # Interix 3.5 installs completely hosed .la files for C++, so rather than\n  # hack all around it, let's just trust \"g++\" to DTRT.\n  _LT_TAGVAR(predep_objects,$1)=\n  _LT_TAGVAR(postdep_objects,$1)=\n  _LT_TAGVAR(postdeps,$1)=\n  ;;\n\nlinux*)\n  case `$CC -V 2>&1 | sed 5q` in\n  *Sun\\ C*)\n    # Sun C++ 5.9\n\n    # The more standards-conforming stlport4 library is\n    # incompatible with the Cstd library. Avoid specifying\n    # it if it's in CXXFLAGS. Ignore libCrun as\n    # -library=stlport4 depends on it.\n    case \" $CXX $CXXFLAGS \" in\n    *\" -library=stlport4 \"*)\n      solaris_use_stlport4=yes\n      ;;\n    esac\n\n    if test \"$solaris_use_stlport4\" != yes; then\n      _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun'\n    fi\n    ;;\n  esac\n  ;;\n\nsolaris*)\n  case $cc_basename in\n  CC* | sunCC*)\n    # The more standards-conforming stlport4 library is\n    # incompatible with the Cstd library. Avoid specifying\n    # it if it's in CXXFLAGS. Ignore libCrun as\n    # -library=stlport4 depends on it.\n    case \" $CXX $CXXFLAGS \" in\n    *\" -library=stlport4 \"*)\n      solaris_use_stlport4=yes\n      ;;\n    esac\n\n    # Adding this requires a known-good setup of shared libraries for\n    # Sun compiler versions before 5.6, else PIC objects from an old\n    # archive will be linked into the output, leading to subtle bugs.\n    if test \"$solaris_use_stlport4\" != yes; then\n      _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun'\n    fi\n    ;;\n  esac\n  ;;\nesac\n])\n\ncase \" $_LT_TAGVAR(postdeps, $1) \" in\n*\" -lc \"*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;;\nesac\n _LT_TAGVAR(compiler_lib_search_dirs, $1)=\nif test -n \"${_LT_TAGVAR(compiler_lib_search_path, $1)}\"; then\n _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo \" ${_LT_TAGVAR(compiler_lib_search_path, $1)}\" | ${SED} -e 's! -L! !g' -e 's!^ !!'`\nfi\n_LT_TAGDECL([], [compiler_lib_search_dirs], [1],\n    [The directories searched by this compiler when creating a shared library])\n_LT_TAGDECL([], [predep_objects], [1],\n    [Dependencies to place before and after the objects being linked to\n    create a shared library])\n_LT_TAGDECL([], [postdep_objects], [1])\n_LT_TAGDECL([], [predeps], [1])\n_LT_TAGDECL([], [postdeps], [1])\n_LT_TAGDECL([], [compiler_lib_search_path], [1],\n    [The library search path used internally by the compiler when linking\n    a shared library])\n])# _LT_SYS_HIDDEN_LIBDEPS\n\n\n# _LT_LANG_F77_CONFIG([TAG])\n# --------------------------\n# Ensure that the configuration variables for a Fortran 77 compiler are\n# suitably defined.  These variables are subsequently used by _LT_CONFIG\n# to write the compiler configuration to `libtool'.\nm4_defun([_LT_LANG_F77_CONFIG],\n[AC_LANG_PUSH(Fortran 77)\nif test -z \"$F77\" || test \"X$F77\" = \"Xno\"; then\n  _lt_disable_F77=yes\nfi\n\n_LT_TAGVAR(archive_cmds_need_lc, $1)=no\n_LT_TAGVAR(allow_undefined_flag, $1)=\n_LT_TAGVAR(always_export_symbols, $1)=no\n_LT_TAGVAR(archive_expsym_cmds, $1)=\n_LT_TAGVAR(export_dynamic_flag_spec, $1)=\n_LT_TAGVAR(hardcode_direct, $1)=no\n_LT_TAGVAR(hardcode_direct_absolute, $1)=no\n_LT_TAGVAR(hardcode_libdir_flag_spec, $1)=\n_LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=\n_LT_TAGVAR(hardcode_libdir_separator, $1)=\n_LT_TAGVAR(hardcode_minus_L, $1)=no\n_LT_TAGVAR(hardcode_automatic, $1)=no\n_LT_TAGVAR(inherit_rpath, $1)=no\n_LT_TAGVAR(module_cmds, $1)=\n_LT_TAGVAR(module_expsym_cmds, $1)=\n_LT_TAGVAR(link_all_deplibs, $1)=unknown\n_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds\n_LT_TAGVAR(reload_flag, $1)=$reload_flag\n_LT_TAGVAR(reload_cmds, $1)=$reload_cmds\n_LT_TAGVAR(no_undefined_flag, $1)=\n_LT_TAGVAR(whole_archive_flag_spec, $1)=\n_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no\n\n# Source file extension for f77 test sources.\nac_ext=f\n\n# Object file extension for compiled f77 test sources.\nobjext=o\n_LT_TAGVAR(objext, $1)=$objext\n\n# No sense in running all these tests if we already determined that\n# the F77 compiler isn't working.  Some variables (like enable_shared)\n# are currently assumed to apply to all compilers on this platform,\n# and will be corrupted by setting them based on a non-working compiler.\nif test \"$_lt_disable_F77\" != yes; then\n  # Code to be used in simple compile tests\n  lt_simple_compile_test_code=\"\\\n      subroutine t\n      return\n      end\n\"\n\n  # Code to be used in simple link tests\n  lt_simple_link_test_code=\"\\\n      program t\n      end\n\"\n\n  # ltmain only uses $CC for tagged configurations so make sure $CC is set.\n  _LT_TAG_COMPILER\n\n  # save warnings/boilerplate of simple test code\n  _LT_COMPILER_BOILERPLATE\n  _LT_LINKER_BOILERPLATE\n\n  # Allow CC to be a program name with arguments.\n  lt_save_CC=\"$CC\"\n  lt_save_GCC=$GCC\n  CC=${F77-\"f77\"}\n  compiler=$CC\n  _LT_TAGVAR(compiler, $1)=$CC\n  _LT_CC_BASENAME([$compiler])\n  GCC=$G77\n  if test -n \"$compiler\"; then\n    AC_MSG_CHECKING([if libtool supports shared libraries])\n    AC_MSG_RESULT([$can_build_shared])\n\n    AC_MSG_CHECKING([whether to build shared libraries])\n    test \"$can_build_shared\" = \"no\" && enable_shared=no\n\n    # On AIX, shared libraries and static libraries use the same namespace, and\n    # are all built from PIC.\n    case $host_os in\n      aix3*)\n        test \"$enable_shared\" = yes && enable_static=no\n        if test -n \"$RANLIB\"; then\n          archive_cmds=\"$archive_cmds~\\$RANLIB \\$lib\"\n          postinstall_cmds='$RANLIB $lib'\n        fi\n        ;;\n      aix[[4-9]]*)\n\tif test \"$host_cpu\" != ia64 && test \"$aix_use_runtimelinking\" = no ; then\n\t  test \"$enable_shared\" = yes && enable_static=no\n\tfi\n        ;;\n    esac\n    AC_MSG_RESULT([$enable_shared])\n\n    AC_MSG_CHECKING([whether to build static libraries])\n    # Make sure either enable_shared or enable_static is yes.\n    test \"$enable_shared\" = yes || enable_static=yes\n    AC_MSG_RESULT([$enable_static])\n\n    _LT_TAGVAR(GCC, $1)=\"$G77\"\n    _LT_TAGVAR(LD, $1)=\"$LD\"\n\n    ## CAVEAT EMPTOR:\n    ## There is no encapsulation within the following macros, do not change\n    ## the running order or otherwise move them around unless you know exactly\n    ## what you are doing...\n    _LT_COMPILER_PIC($1)\n    _LT_COMPILER_C_O($1)\n    _LT_COMPILER_FILE_LOCKS($1)\n    _LT_LINKER_SHLIBS($1)\n    _LT_SYS_DYNAMIC_LINKER($1)\n    _LT_LINKER_HARDCODE_LIBPATH($1)\n\n    _LT_CONFIG($1)\n  fi # test -n \"$compiler\"\n\n  GCC=$lt_save_GCC\n  CC=\"$lt_save_CC\"\nfi # test \"$_lt_disable_F77\" != yes\n\nAC_LANG_POP\n])# _LT_LANG_F77_CONFIG\n\n\n# _LT_LANG_FC_CONFIG([TAG])\n# -------------------------\n# Ensure that the configuration variables for a Fortran compiler are\n# suitably defined.  These variables are subsequently used by _LT_CONFIG\n# to write the compiler configuration to `libtool'.\nm4_defun([_LT_LANG_FC_CONFIG],\n[AC_LANG_PUSH(Fortran)\n\nif test -z \"$FC\" || test \"X$FC\" = \"Xno\"; then\n  _lt_disable_FC=yes\nfi\n\n_LT_TAGVAR(archive_cmds_need_lc, $1)=no\n_LT_TAGVAR(allow_undefined_flag, $1)=\n_LT_TAGVAR(always_export_symbols, $1)=no\n_LT_TAGVAR(archive_expsym_cmds, $1)=\n_LT_TAGVAR(export_dynamic_flag_spec, $1)=\n_LT_TAGVAR(hardcode_direct, $1)=no\n_LT_TAGVAR(hardcode_direct_absolute, $1)=no\n_LT_TAGVAR(hardcode_libdir_flag_spec, $1)=\n_LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=\n_LT_TAGVAR(hardcode_libdir_separator, $1)=\n_LT_TAGVAR(hardcode_minus_L, $1)=no\n_LT_TAGVAR(hardcode_automatic, $1)=no\n_LT_TAGVAR(inherit_rpath, $1)=no\n_LT_TAGVAR(module_cmds, $1)=\n_LT_TAGVAR(module_expsym_cmds, $1)=\n_LT_TAGVAR(link_all_deplibs, $1)=unknown\n_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds\n_LT_TAGVAR(reload_flag, $1)=$reload_flag\n_LT_TAGVAR(reload_cmds, $1)=$reload_cmds\n_LT_TAGVAR(no_undefined_flag, $1)=\n_LT_TAGVAR(whole_archive_flag_spec, $1)=\n_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no\n\n# Source file extension for fc test sources.\nac_ext=${ac_fc_srcext-f}\n\n# Object file extension for compiled fc test sources.\nobjext=o\n_LT_TAGVAR(objext, $1)=$objext\n\n# No sense in running all these tests if we already determined that\n# the FC compiler isn't working.  Some variables (like enable_shared)\n# are currently assumed to apply to all compilers on this platform,\n# and will be corrupted by setting them based on a non-working compiler.\nif test \"$_lt_disable_FC\" != yes; then\n  # Code to be used in simple compile tests\n  lt_simple_compile_test_code=\"\\\n      subroutine t\n      return\n      end\n\"\n\n  # Code to be used in simple link tests\n  lt_simple_link_test_code=\"\\\n      program t\n      end\n\"\n\n  # ltmain only uses $CC for tagged configurations so make sure $CC is set.\n  _LT_TAG_COMPILER\n\n  # save warnings/boilerplate of simple test code\n  _LT_COMPILER_BOILERPLATE\n  _LT_LINKER_BOILERPLATE\n\n  # Allow CC to be a program name with arguments.\n  lt_save_CC=\"$CC\"\n  lt_save_GCC=$GCC\n  CC=${FC-\"f95\"}\n  compiler=$CC\n  GCC=$ac_cv_fc_compiler_gnu\n\n  _LT_TAGVAR(compiler, $1)=$CC\n  _LT_CC_BASENAME([$compiler])\n\n  if test -n \"$compiler\"; then\n    AC_MSG_CHECKING([if libtool supports shared libraries])\n    AC_MSG_RESULT([$can_build_shared])\n\n    AC_MSG_CHECKING([whether to build shared libraries])\n    test \"$can_build_shared\" = \"no\" && enable_shared=no\n\n    # On AIX, shared libraries and static libraries use the same namespace, and\n    # are all built from PIC.\n    case $host_os in\n      aix3*)\n        test \"$enable_shared\" = yes && enable_static=no\n        if test -n \"$RANLIB\"; then\n          archive_cmds=\"$archive_cmds~\\$RANLIB \\$lib\"\n          postinstall_cmds='$RANLIB $lib'\n        fi\n        ;;\n      aix[[4-9]]*)\n\tif test \"$host_cpu\" != ia64 && test \"$aix_use_runtimelinking\" = no ; then\n\t  test \"$enable_shared\" = yes && enable_static=no\n\tfi\n        ;;\n    esac\n    AC_MSG_RESULT([$enable_shared])\n\n    AC_MSG_CHECKING([whether to build static libraries])\n    # Make sure either enable_shared or enable_static is yes.\n    test \"$enable_shared\" = yes || enable_static=yes\n    AC_MSG_RESULT([$enable_static])\n\n    _LT_TAGVAR(GCC, $1)=\"$ac_cv_fc_compiler_gnu\"\n    _LT_TAGVAR(LD, $1)=\"$LD\"\n\n    ## CAVEAT EMPTOR:\n    ## There is no encapsulation within the following macros, do not change\n    ## the running order or otherwise move them around unless you know exactly\n    ## what you are doing...\n    _LT_SYS_HIDDEN_LIBDEPS($1)\n    _LT_COMPILER_PIC($1)\n    _LT_COMPILER_C_O($1)\n    _LT_COMPILER_FILE_LOCKS($1)\n    _LT_LINKER_SHLIBS($1)\n    _LT_SYS_DYNAMIC_LINKER($1)\n    _LT_LINKER_HARDCODE_LIBPATH($1)\n\n    _LT_CONFIG($1)\n  fi # test -n \"$compiler\"\n\n  GCC=$lt_save_GCC\n  CC=\"$lt_save_CC\"\nfi # test \"$_lt_disable_FC\" != yes\n\nAC_LANG_POP\n])# _LT_LANG_FC_CONFIG\n\n\n# _LT_LANG_GCJ_CONFIG([TAG])\n# --------------------------\n# Ensure that the configuration variables for the GNU Java Compiler compiler\n# are suitably defined.  These variables are subsequently used by _LT_CONFIG\n# to write the compiler configuration to `libtool'.\nm4_defun([_LT_LANG_GCJ_CONFIG],\n[AC_REQUIRE([LT_PROG_GCJ])dnl\nAC_LANG_SAVE\n\n# Source file extension for Java test sources.\nac_ext=java\n\n# Object file extension for compiled Java test sources.\nobjext=o\n_LT_TAGVAR(objext, $1)=$objext\n\n# Code to be used in simple compile tests\nlt_simple_compile_test_code=\"class foo {}\"\n\n# Code to be used in simple link tests\nlt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }'\n\n# ltmain only uses $CC for tagged configurations so make sure $CC is set.\n_LT_TAG_COMPILER\n\n# save warnings/boilerplate of simple test code\n_LT_COMPILER_BOILERPLATE\n_LT_LINKER_BOILERPLATE\n\n# Allow CC to be a program name with arguments.\nlt_save_CC=\"$CC\"\nlt_save_GCC=$GCC\nGCC=yes\nCC=${GCJ-\"gcj\"}\ncompiler=$CC\n_LT_TAGVAR(compiler, $1)=$CC\n_LT_TAGVAR(LD, $1)=\"$LD\"\n_LT_CC_BASENAME([$compiler])\n\n# GCJ did not exist at the time GCC didn't implicitly link libc in.\n_LT_TAGVAR(archive_cmds_need_lc, $1)=no\n\n_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds\n_LT_TAGVAR(reload_flag, $1)=$reload_flag\n_LT_TAGVAR(reload_cmds, $1)=$reload_cmds\n\nif test -n \"$compiler\"; then\n  _LT_COMPILER_NO_RTTI($1)\n  _LT_COMPILER_PIC($1)\n  _LT_COMPILER_C_O($1)\n  _LT_COMPILER_FILE_LOCKS($1)\n  _LT_LINKER_SHLIBS($1)\n  _LT_LINKER_HARDCODE_LIBPATH($1)\n\n  _LT_CONFIG($1)\nfi\n\nAC_LANG_RESTORE\n\nGCC=$lt_save_GCC\nCC=\"$lt_save_CC\"\n])# _LT_LANG_GCJ_CONFIG\n\n\n# _LT_LANG_RC_CONFIG([TAG])\n# -------------------------\n# Ensure that the configuration variables for the Windows resource compiler\n# are suitably defined.  These variables are subsequently used by _LT_CONFIG\n# to write the compiler configuration to `libtool'.\nm4_defun([_LT_LANG_RC_CONFIG],\n[AC_REQUIRE([LT_PROG_RC])dnl\nAC_LANG_SAVE\n\n# Source file extension for RC test sources.\nac_ext=rc\n\n# Object file extension for compiled RC test sources.\nobjext=o\n_LT_TAGVAR(objext, $1)=$objext\n\n# Code to be used in simple compile tests\nlt_simple_compile_test_code='sample MENU { MENUITEM \"&Soup\", 100, CHECKED }'\n\n# Code to be used in simple link tests\nlt_simple_link_test_code=\"$lt_simple_compile_test_code\"\n\n# ltmain only uses $CC for tagged configurations so make sure $CC is set.\n_LT_TAG_COMPILER\n\n# save warnings/boilerplate of simple test code\n_LT_COMPILER_BOILERPLATE\n_LT_LINKER_BOILERPLATE\n\n# Allow CC to be a program name with arguments.\nlt_save_CC=\"$CC\"\nlt_save_GCC=$GCC\nGCC=\nCC=${RC-\"windres\"}\ncompiler=$CC\n_LT_TAGVAR(compiler, $1)=$CC\n_LT_CC_BASENAME([$compiler])\n_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes\n\nif test -n \"$compiler\"; then\n  :\n  _LT_CONFIG($1)\nfi\n\nGCC=$lt_save_GCC\nAC_LANG_RESTORE\nCC=\"$lt_save_CC\"\n])# _LT_LANG_RC_CONFIG\n\n\n# LT_PROG_GCJ\n# -----------\nAC_DEFUN([LT_PROG_GCJ],\n[m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ],\n  [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ],\n    [AC_CHECK_TOOL(GCJ, gcj,)\n      test \"x${GCJFLAGS+set}\" = xset || GCJFLAGS=\"-g -O2\"\n      AC_SUBST(GCJFLAGS)])])[]dnl\n])\n\n# Old name:\nAU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([LT_AC_PROG_GCJ], [])\n\n\n# LT_PROG_RC\n# ----------\nAC_DEFUN([LT_PROG_RC],\n[AC_CHECK_TOOL(RC, windres,)\n])\n\n# Old name:\nAU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([LT_AC_PROG_RC], [])\n\n\n# _LT_DECL_EGREP\n# --------------\n# If we don't have a new enough Autoconf to choose the best grep\n# available, choose the one first in the user's PATH.\nm4_defun([_LT_DECL_EGREP],\n[AC_REQUIRE([AC_PROG_EGREP])dnl\nAC_REQUIRE([AC_PROG_FGREP])dnl\ntest -z \"$GREP\" && GREP=grep\n_LT_DECL([], [GREP], [1], [A grep program that handles long lines])\n_LT_DECL([], [EGREP], [1], [An ERE matcher])\n_LT_DECL([], [FGREP], [1], [A literal string matcher])\ndnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too\nAC_SUBST([GREP])\n])\n\n\n# _LT_DECL_OBJDUMP\n# --------------\n# If we don't have a new enough Autoconf to choose the best objdump\n# available, choose the one first in the user's PATH.\nm4_defun([_LT_DECL_OBJDUMP],\n[AC_CHECK_TOOL(OBJDUMP, objdump, false)\ntest -z \"$OBJDUMP\" && OBJDUMP=objdump\n_LT_DECL([], [OBJDUMP], [1], [An object symbol dumper])\nAC_SUBST([OBJDUMP])\n])\n\n\n# _LT_DECL_SED\n# ------------\n# Check for a fully-functional sed program, that truncates\n# as few characters as possible.  Prefer GNU sed if found.\nm4_defun([_LT_DECL_SED],\n[AC_PROG_SED\ntest -z \"$SED\" && SED=sed\nXsed=\"$SED -e 1s/^X//\"\n_LT_DECL([], [SED], [1], [A sed program that does not truncate output])\n_LT_DECL([], [Xsed], [\"\\$SED -e 1s/^X//\"],\n    [Sed that helps us avoid accidentally triggering echo(1) options like -n])\n])# _LT_DECL_SED\n\nm4_ifndef([AC_PROG_SED], [\n# NOTE: This macro has been submitted for inclusion into   #\n#  GNU Autoconf as AC_PROG_SED.  When it is available in   #\n#  a released version of Autoconf we should remove this    #\n#  macro and use it instead.                               #\n\nm4_defun([AC_PROG_SED],\n[AC_MSG_CHECKING([for a sed that does not truncate output])\nAC_CACHE_VAL(lt_cv_path_SED,\n[# Loop through the user's path and test for sed and gsed.\n# Then use that list of sed's as ones to test for truncation.\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for lt_ac_prog in sed gsed; do\n    for ac_exec_ext in '' $ac_executable_extensions; do\n      if $as_executable_p \"$as_dir/$lt_ac_prog$ac_exec_ext\"; then\n        lt_ac_sed_list=\"$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext\"\n      fi\n    done\n  done\ndone\nIFS=$as_save_IFS\nlt_ac_max=0\nlt_ac_count=0\n# Add /usr/xpg4/bin/sed as it is typically found on Solaris\n# along with /bin/sed that truncates output.\nfor lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do\n  test ! -f $lt_ac_sed && continue\n  cat /dev/null > conftest.in\n  lt_ac_count=0\n  echo $ECHO_N \"0123456789$ECHO_C\" >conftest.in\n  # Check for GNU sed and select it if it is found.\n  if \"$lt_ac_sed\" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then\n    lt_cv_path_SED=$lt_ac_sed\n    break\n  fi\n  while true; do\n    cat conftest.in conftest.in >conftest.tmp\n    mv conftest.tmp conftest.in\n    cp conftest.in conftest.nl\n    echo >>conftest.nl\n    $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break\n    cmp -s conftest.out conftest.nl || break\n    # 10000 chars as input seems more than enough\n    test $lt_ac_count -gt 10 && break\n    lt_ac_count=`expr $lt_ac_count + 1`\n    if test $lt_ac_count -gt $lt_ac_max; then\n      lt_ac_max=$lt_ac_count\n      lt_cv_path_SED=$lt_ac_sed\n    fi\n  done\ndone\n])\nSED=$lt_cv_path_SED\nAC_SUBST([SED])\nAC_MSG_RESULT([$SED])\n])#AC_PROG_SED\n])#m4_ifndef\n\n# Old name:\nAU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED])\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([LT_AC_PROG_SED], [])\n\n\n# _LT_CHECK_SHELL_FEATURES\n# ------------------------\n# Find out whether the shell is Bourne or XSI compatible,\n# or has some other useful features.\nm4_defun([_LT_CHECK_SHELL_FEATURES],\n[AC_MSG_CHECKING([whether the shell understands some XSI constructs])\n# Try some XSI features\nxsi_shell=no\n( _lt_dummy=\"a/b/c\"\n  test \"${_lt_dummy##*/},${_lt_dummy%/*},\"${_lt_dummy%\"$_lt_dummy\"}, \\\n      = c,a/b,, \\\n    && eval 'test $(( 1 + 1 )) -eq 2 \\\n    && test \"${#_lt_dummy}\" -eq 5' ) >/dev/null 2>&1 \\\n  && xsi_shell=yes\nAC_MSG_RESULT([$xsi_shell])\n_LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell'])\n\nAC_MSG_CHECKING([whether the shell understands \"+=\"])\nlt_shell_append=no\n( foo=bar; set foo baz; eval \"$[1]+=\\$[2]\" && test \"$foo\" = barbaz ) \\\n    >/dev/null 2>&1 \\\n  && lt_shell_append=yes\nAC_MSG_RESULT([$lt_shell_append])\n_LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append'])\n\nif ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then\n  lt_unset=unset\nelse\n  lt_unset=false\nfi\n_LT_DECL([], [lt_unset], [0], [whether the shell understands \"unset\"])dnl\n\n# test EBCDIC or ASCII\ncase `echo X|tr X '\\101'` in\n A) # ASCII based system\n    # \\n is not interpreted correctly by Solaris 8 /usr/ucb/tr\n  lt_SP2NL='tr \\040 \\012'\n  lt_NL2SP='tr \\015\\012 \\040\\040'\n  ;;\n *) # EBCDIC based system\n  lt_SP2NL='tr \\100 \\n'\n  lt_NL2SP='tr \\r\\n \\100\\100'\n  ;;\nesac\n_LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl\n_LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl\n])# _LT_CHECK_SHELL_FEATURES\n\n\n# _LT_PROG_XSI_SHELLFNS\n# ---------------------\n# Bourne and XSI compatible variants of some useful shell functions.\nm4_defun([_LT_PROG_XSI_SHELLFNS],\n[case $xsi_shell in\n  yes)\n    cat << \\_LT_EOF >> \"$cfgfile\"\n\n# func_dirname file append nondir_replacement\n# Compute the dirname of FILE.  If nonempty, add APPEND to the result,\n# otherwise set result to NONDIR_REPLACEMENT.\nfunc_dirname ()\n{\n  case ${1} in\n    */*) func_dirname_result=\"${1%/*}${2}\" ;;\n    *  ) func_dirname_result=\"${3}\" ;;\n  esac\n}\n\n# func_basename file\nfunc_basename ()\n{\n  func_basename_result=\"${1##*/}\"\n}\n\n# func_dirname_and_basename file append nondir_replacement\n# perform func_basename and func_dirname in a single function\n# call:\n#   dirname:  Compute the dirname of FILE.  If nonempty,\n#             add APPEND to the result, otherwise set result\n#             to NONDIR_REPLACEMENT.\n#             value returned in \"$func_dirname_result\"\n#   basename: Compute filename of FILE.\n#             value retuned in \"$func_basename_result\"\n# Implementation must be kept synchronized with func_dirname\n# and func_basename. For efficiency, we do not delegate to\n# those functions but instead duplicate the functionality here.\nfunc_dirname_and_basename ()\n{\n  case ${1} in\n    */*) func_dirname_result=\"${1%/*}${2}\" ;;\n    *  ) func_dirname_result=\"${3}\" ;;\n  esac\n  func_basename_result=\"${1##*/}\"\n}\n\n# func_stripname prefix suffix name\n# strip PREFIX and SUFFIX off of NAME.\n# PREFIX and SUFFIX must not contain globbing or regex special\n# characters, hashes, percent signs, but SUFFIX may contain a leading\n# dot (in which case that matches only a dot).\nfunc_stripname ()\n{\n  # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\n  # positional parameters, so assign one to ordinary parameter first.\n  func_stripname_result=${3}\n  func_stripname_result=${func_stripname_result#\"${1}\"}\n  func_stripname_result=${func_stripname_result%\"${2}\"}\n}\n\n# func_opt_split\nfunc_opt_split ()\n{\n  func_opt_split_opt=${1%%=*}\n  func_opt_split_arg=${1#*=}\n}\n\n# func_lo2o object\nfunc_lo2o ()\n{\n  case ${1} in\n    *.lo) func_lo2o_result=${1%.lo}.${objext} ;;\n    *)    func_lo2o_result=${1} ;;\n  esac\n}\n\n# func_xform libobj-or-source\nfunc_xform ()\n{\n  func_xform_result=${1%.*}.lo\n}\n\n# func_arith arithmetic-term...\nfunc_arith ()\n{\n  func_arith_result=$(( $[*] ))\n}\n\n# func_len string\n# STRING may not start with a hyphen.\nfunc_len ()\n{\n  func_len_result=${#1}\n}\n\n_LT_EOF\n    ;;\n  *) # Bourne compatible functions.\n    cat << \\_LT_EOF >> \"$cfgfile\"\n\n# func_dirname file append nondir_replacement\n# Compute the dirname of FILE.  If nonempty, add APPEND to the result,\n# otherwise set result to NONDIR_REPLACEMENT.\nfunc_dirname ()\n{\n  # Extract subdirectory from the argument.\n  func_dirname_result=`$ECHO \"${1}\" | $SED \"$dirname\"`\n  if test \"X$func_dirname_result\" = \"X${1}\"; then\n    func_dirname_result=\"${3}\"\n  else\n    func_dirname_result=\"$func_dirname_result${2}\"\n  fi\n}\n\n# func_basename file\nfunc_basename ()\n{\n  func_basename_result=`$ECHO \"${1}\" | $SED \"$basename\"`\n}\n\ndnl func_dirname_and_basename\ndnl A portable version of this function is already defined in general.m4sh\ndnl so there is no need for it here.\n\n# func_stripname prefix suffix name\n# strip PREFIX and SUFFIX off of NAME.\n# PREFIX and SUFFIX must not contain globbing or regex special\n# characters, hashes, percent signs, but SUFFIX may contain a leading\n# dot (in which case that matches only a dot).\n# func_strip_suffix prefix name\nfunc_stripname ()\n{\n  case ${2} in\n    .*) func_stripname_result=`$ECHO \"${3}\" | $SED \"s%^${1}%%; s%\\\\\\\\${2}\\$%%\"`;;\n    *)  func_stripname_result=`$ECHO \"${3}\" | $SED \"s%^${1}%%; s%${2}\\$%%\"`;;\n  esac\n}\n\n# sed scripts:\nmy_sed_long_opt='1s/^\\(-[[^=]]*\\)=.*/\\1/;q'\nmy_sed_long_arg='1s/^-[[^=]]*=//'\n\n# func_opt_split\nfunc_opt_split ()\n{\n  func_opt_split_opt=`$ECHO \"${1}\" | $SED \"$my_sed_long_opt\"`\n  func_opt_split_arg=`$ECHO \"${1}\" | $SED \"$my_sed_long_arg\"`\n}\n\n# func_lo2o object\nfunc_lo2o ()\n{\n  func_lo2o_result=`$ECHO \"${1}\" | $SED \"$lo2o\"`\n}\n\n# func_xform libobj-or-source\nfunc_xform ()\n{\n  func_xform_result=`$ECHO \"${1}\" | $SED 's/\\.[[^.]]*$/.lo/'`\n}\n\n# func_arith arithmetic-term...\nfunc_arith ()\n{\n  func_arith_result=`expr \"$[@]\"`\n}\n\n# func_len string\n# STRING may not start with a hyphen.\nfunc_len ()\n{\n  func_len_result=`expr \"$[1]\" : \".*\" 2>/dev/null || echo $max_cmd_len`\n}\n\n_LT_EOF\nesac\n\ncase $lt_shell_append in\n  yes)\n    cat << \\_LT_EOF >> \"$cfgfile\"\n\n# func_append var value\n# Append VALUE to the end of shell variable VAR.\nfunc_append ()\n{\n  eval \"$[1]+=\\$[2]\"\n}\n_LT_EOF\n    ;;\n  *)\n    cat << \\_LT_EOF >> \"$cfgfile\"\n\n# func_append var value\n# Append VALUE to the end of shell variable VAR.\nfunc_append ()\n{\n  eval \"$[1]=\\$$[1]\\$[2]\"\n}\n\n_LT_EOF\n    ;;\n  esac\n])\n\n# Helper functions for option handling.                    -*- Autoconf -*-\n#\n#   Copyright (C) 2004, 2005, 2007, 2008, 2009 Free Software Foundation,\n#   Inc.\n#   Written by Gary V. Vaughan, 2004\n#\n# This file is free software; the Free Software Foundation gives\n# unlimited permission to copy and/or distribute it, with or without\n# modifications, as long as this notice is preserved.\n\n# serial 7 ltoptions.m4\n\n# This is to help aclocal find these macros, as it can't see m4_define.\nAC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])\n\n\n# _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME)\n# ------------------------------------------\nm4_define([_LT_MANGLE_OPTION],\n[[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])])\n\n\n# _LT_SET_OPTION(MACRO-NAME, OPTION-NAME)\n# ---------------------------------------\n# Set option OPTION-NAME for macro MACRO-NAME, and if there is a\n# matching handler defined, dispatch to it.  Other OPTION-NAMEs are\n# saved as a flag.\nm4_define([_LT_SET_OPTION],\n[m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl\nm4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]),\n        _LT_MANGLE_DEFUN([$1], [$2]),\n    [m4_warning([Unknown $1 option `$2'])])[]dnl\n])\n\n\n# _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET])\n# ------------------------------------------------------------\n# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.\nm4_define([_LT_IF_OPTION],\n[m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])])\n\n\n# _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET)\n# -------------------------------------------------------\n# Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME\n# are set.\nm4_define([_LT_UNLESS_OPTIONS],\n[m4_foreach([_LT_Option], m4_split(m4_normalize([$2])),\n\t    [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option),\n\t\t      [m4_define([$0_found])])])[]dnl\nm4_ifdef([$0_found], [m4_undefine([$0_found])], [$3\n])[]dnl\n])\n\n\n# _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST)\n# ----------------------------------------\n# OPTION-LIST is a space-separated list of Libtool options associated\n# with MACRO-NAME.  If any OPTION has a matching handler declared with\n# LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about\n# the unknown option and exit.\nm4_defun([_LT_SET_OPTIONS],\n[# Set options\nm4_foreach([_LT_Option], m4_split(m4_normalize([$2])),\n    [_LT_SET_OPTION([$1], _LT_Option)])\n\nm4_if([$1],[LT_INIT],[\n  dnl\n  dnl Simply set some default values (i.e off) if boolean options were not\n  dnl specified:\n  _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no\n  ])\n  _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no\n  ])\n  dnl\n  dnl If no reference was made to various pairs of opposing options, then\n  dnl we run the default mode handler for the pair.  For example, if neither\n  dnl `shared' nor `disable-shared' was passed, we enable building of shared\n  dnl archives by default:\n  _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED])\n  _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC])\n  _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC])\n  _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install],\n  \t\t   [_LT_ENABLE_FAST_INSTALL])\n  ])\n])# _LT_SET_OPTIONS\n\n\n\n# _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME)\n# -----------------------------------------\nm4_define([_LT_MANGLE_DEFUN],\n[[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])])\n\n\n# LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE)\n# -----------------------------------------------\nm4_define([LT_OPTION_DEFINE],\n[m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl\n])# LT_OPTION_DEFINE\n\n\n# dlopen\n# ------\nLT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes\n])\n\nAU_DEFUN([AC_LIBTOOL_DLOPEN],\n[_LT_SET_OPTION([LT_INIT], [dlopen])\nAC_DIAGNOSE([obsolete],\n[$0: Remove this warning and the call to _LT_SET_OPTION when you\nput the `dlopen' option into LT_INIT's first parameter.])\n])\n\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_LIBTOOL_DLOPEN], [])\n\n\n# win32-dll\n# ---------\n# Declare package support for building win32 dll's.\nLT_OPTION_DEFINE([LT_INIT], [win32-dll],\n[enable_win32_dll=yes\n\ncase $host in\n*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*)\n  AC_CHECK_TOOL(AS, as, false)\n  AC_CHECK_TOOL(DLLTOOL, dlltool, false)\n  AC_CHECK_TOOL(OBJDUMP, objdump, false)\n  ;;\nesac\n\ntest -z \"$AS\" && AS=as\n_LT_DECL([], [AS],      [1], [Assembler program])dnl\n\ntest -z \"$DLLTOOL\" && DLLTOOL=dlltool\n_LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl\n\ntest -z \"$OBJDUMP\" && OBJDUMP=objdump\n_LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl\n])# win32-dll\n\nAU_DEFUN([AC_LIBTOOL_WIN32_DLL],\n[AC_REQUIRE([AC_CANONICAL_HOST])dnl\n_LT_SET_OPTION([LT_INIT], [win32-dll])\nAC_DIAGNOSE([obsolete],\n[$0: Remove this warning and the call to _LT_SET_OPTION when you\nput the `win32-dll' option into LT_INIT's first parameter.])\n])\n\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [])\n\n\n# _LT_ENABLE_SHARED([DEFAULT])\n# ----------------------------\n# implement the --enable-shared flag, and supports the `shared' and\n# `disable-shared' LT_INIT options.\n# DEFAULT is either `yes' or `no'.  If omitted, it defaults to `yes'.\nm4_define([_LT_ENABLE_SHARED],\n[m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl\nAC_ARG_ENABLE([shared],\n    [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@],\n\t[build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])],\n    [p=${PACKAGE-default}\n    case $enableval in\n    yes) enable_shared=yes ;;\n    no) enable_shared=no ;;\n    *)\n      enable_shared=no\n      # Look at the argument we got.  We use all the common list separators.\n      lt_save_ifs=\"$IFS\"; IFS=\"${IFS}$PATH_SEPARATOR,\"\n      for pkg in $enableval; do\n\tIFS=\"$lt_save_ifs\"\n\tif test \"X$pkg\" = \"X$p\"; then\n\t  enable_shared=yes\n\tfi\n      done\n      IFS=\"$lt_save_ifs\"\n      ;;\n    esac],\n    [enable_shared=]_LT_ENABLE_SHARED_DEFAULT)\n\n    _LT_DECL([build_libtool_libs], [enable_shared], [0],\n\t[Whether or not to build shared libraries])\n])# _LT_ENABLE_SHARED\n\nLT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])])\nLT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])])\n\n# Old names:\nAC_DEFUN([AC_ENABLE_SHARED],\n[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared])\n])\n\nAC_DEFUN([AC_DISABLE_SHARED],\n[_LT_SET_OPTION([LT_INIT], [disable-shared])\n])\n\nAU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])\nAU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])\n\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AM_ENABLE_SHARED], [])\ndnl AC_DEFUN([AM_DISABLE_SHARED], [])\n\n\n\n# _LT_ENABLE_STATIC([DEFAULT])\n# ----------------------------\n# implement the --enable-static flag, and support the `static' and\n# `disable-static' LT_INIT options.\n# DEFAULT is either `yes' or `no'.  If omitted, it defaults to `yes'.\nm4_define([_LT_ENABLE_STATIC],\n[m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl\nAC_ARG_ENABLE([static],\n    [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@],\n\t[build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])],\n    [p=${PACKAGE-default}\n    case $enableval in\n    yes) enable_static=yes ;;\n    no) enable_static=no ;;\n    *)\n     enable_static=no\n      # Look at the argument we got.  We use all the common list separators.\n      lt_save_ifs=\"$IFS\"; IFS=\"${IFS}$PATH_SEPARATOR,\"\n      for pkg in $enableval; do\n\tIFS=\"$lt_save_ifs\"\n\tif test \"X$pkg\" = \"X$p\"; then\n\t  enable_static=yes\n\tfi\n      done\n      IFS=\"$lt_save_ifs\"\n      ;;\n    esac],\n    [enable_static=]_LT_ENABLE_STATIC_DEFAULT)\n\n    _LT_DECL([build_old_libs], [enable_static], [0],\n\t[Whether or not to build static libraries])\n])# _LT_ENABLE_STATIC\n\nLT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])])\nLT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])])\n\n# Old names:\nAC_DEFUN([AC_ENABLE_STATIC],\n[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static])\n])\n\nAC_DEFUN([AC_DISABLE_STATIC],\n[_LT_SET_OPTION([LT_INIT], [disable-static])\n])\n\nAU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])\nAU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])\n\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AM_ENABLE_STATIC], [])\ndnl AC_DEFUN([AM_DISABLE_STATIC], [])\n\n\n\n# _LT_ENABLE_FAST_INSTALL([DEFAULT])\n# ----------------------------------\n# implement the --enable-fast-install flag, and support the `fast-install'\n# and `disable-fast-install' LT_INIT options.\n# DEFAULT is either `yes' or `no'.  If omitted, it defaults to `yes'.\nm4_define([_LT_ENABLE_FAST_INSTALL],\n[m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl\nAC_ARG_ENABLE([fast-install],\n    [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@],\n    [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])],\n    [p=${PACKAGE-default}\n    case $enableval in\n    yes) enable_fast_install=yes ;;\n    no) enable_fast_install=no ;;\n    *)\n      enable_fast_install=no\n      # Look at the argument we got.  We use all the common list separators.\n      lt_save_ifs=\"$IFS\"; IFS=\"${IFS}$PATH_SEPARATOR,\"\n      for pkg in $enableval; do\n\tIFS=\"$lt_save_ifs\"\n\tif test \"X$pkg\" = \"X$p\"; then\n\t  enable_fast_install=yes\n\tfi\n      done\n      IFS=\"$lt_save_ifs\"\n      ;;\n    esac],\n    [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT)\n\n_LT_DECL([fast_install], [enable_fast_install], [0],\n\t [Whether or not to optimize for fast installation])dnl\n])# _LT_ENABLE_FAST_INSTALL\n\nLT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])])\nLT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])])\n\n# Old names:\nAU_DEFUN([AC_ENABLE_FAST_INSTALL],\n[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])\nAC_DIAGNOSE([obsolete],\n[$0: Remove this warning and the call to _LT_SET_OPTION when you put\nthe `fast-install' option into LT_INIT's first parameter.])\n])\n\nAU_DEFUN([AC_DISABLE_FAST_INSTALL],\n[_LT_SET_OPTION([LT_INIT], [disable-fast-install])\nAC_DIAGNOSE([obsolete],\n[$0: Remove this warning and the call to _LT_SET_OPTION when you put\nthe `disable-fast-install' option into LT_INIT's first parameter.])\n])\n\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], [])\ndnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], [])\n\n\n# _LT_WITH_PIC([MODE])\n# --------------------\n# implement the --with-pic flag, and support the `pic-only' and `no-pic'\n# LT_INIT options.\n# MODE is either `yes' or `no'.  If omitted, it defaults to `both'.\nm4_define([_LT_WITH_PIC],\n[AC_ARG_WITH([pic],\n    [AS_HELP_STRING([--with-pic],\n\t[try to use only PIC/non-PIC objects @<:@default=use both@:>@])],\n    [pic_mode=\"$withval\"],\n    [pic_mode=default])\n\ntest -z \"$pic_mode\" && pic_mode=m4_default([$1], [default])\n\n_LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl\n])# _LT_WITH_PIC\n\nLT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])])\nLT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])])\n\n# Old name:\nAU_DEFUN([AC_LIBTOOL_PICMODE],\n[_LT_SET_OPTION([LT_INIT], [pic-only])\nAC_DIAGNOSE([obsolete],\n[$0: Remove this warning and the call to _LT_SET_OPTION when you\nput the `pic-only' option into LT_INIT's first parameter.])\n])\n\ndnl aclocal-1.4 backwards compatibility:\ndnl AC_DEFUN([AC_LIBTOOL_PICMODE], [])\n\n\nm4_define([_LTDL_MODE], [])\nLT_OPTION_DEFINE([LTDL_INIT], [nonrecursive],\n\t\t [m4_define([_LTDL_MODE], [nonrecursive])])\nLT_OPTION_DEFINE([LTDL_INIT], [recursive],\n\t\t [m4_define([_LTDL_MODE], [recursive])])\nLT_OPTION_DEFINE([LTDL_INIT], [subproject],\n\t\t [m4_define([_LTDL_MODE], [subproject])])\n\nm4_define([_LTDL_TYPE], [])\nLT_OPTION_DEFINE([LTDL_INIT], [installable],\n\t\t [m4_define([_LTDL_TYPE], [installable])])\nLT_OPTION_DEFINE([LTDL_INIT], [convenience],\n\t\t [m4_define([_LTDL_TYPE], [convenience])])\n\n# ltsugar.m4 -- libtool m4 base layer.                         -*-Autoconf-*-\n#\n# Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc.\n# Written by Gary V. Vaughan, 2004\n#\n# This file is free software; the Free Software Foundation gives\n# unlimited permission to copy and/or distribute it, with or without\n# modifications, as long as this notice is preserved.\n\n# serial 6 ltsugar.m4\n\n# This is to help aclocal find these macros, as it can't see m4_define.\nAC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])])\n\n\n# lt_join(SEP, ARG1, [ARG2...])\n# -----------------------------\n# Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their\n# associated separator.\n# Needed until we can rely on m4_join from Autoconf 2.62, since all earlier\n# versions in m4sugar had bugs.\nm4_define([lt_join],\n[m4_if([$#], [1], [],\n       [$#], [2], [[$2]],\n       [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])])\nm4_define([_lt_join],\n[m4_if([$#$2], [2], [],\n       [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])])\n\n\n# lt_car(LIST)\n# lt_cdr(LIST)\n# ------------\n# Manipulate m4 lists.\n# These macros are necessary as long as will still need to support\n# Autoconf-2.59 which quotes differently.\nm4_define([lt_car], [[$1]])\nm4_define([lt_cdr],\n[m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])],\n       [$#], 1, [],\n       [m4_dquote(m4_shift($@))])])\nm4_define([lt_unquote], $1)\n\n\n# lt_append(MACRO-NAME, STRING, [SEPARATOR])\n# ------------------------------------------\n# Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'.\n# Note that neither SEPARATOR nor STRING are expanded; they are appended\n# to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked).\n# No SEPARATOR is output if MACRO-NAME was previously undefined (different\n# than defined and empty).\n#\n# This macro is needed until we can rely on Autoconf 2.62, since earlier\n# versions of m4sugar mistakenly expanded SEPARATOR but not STRING.\nm4_define([lt_append],\n[m4_define([$1],\n\t   m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])])\n\n\n\n# lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...])\n# ----------------------------------------------------------\n# Produce a SEP delimited list of all paired combinations of elements of\n# PREFIX-LIST with SUFFIX1 through SUFFIXn.  Each element of the list\n# has the form PREFIXmINFIXSUFFIXn.\n# Needed until we can rely on m4_combine added in Autoconf 2.62.\nm4_define([lt_combine],\n[m4_if(m4_eval([$# > 3]), [1],\n       [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl\n[[m4_foreach([_Lt_prefix], [$2],\n\t     [m4_foreach([_Lt_suffix],\n\t\t]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[,\n\t[_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])])\n\n\n# lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ])\n# -----------------------------------------------------------------------\n# Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited\n# by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ.\nm4_define([lt_if_append_uniq],\n[m4_ifdef([$1],\n\t  [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1],\n\t\t [lt_append([$1], [$2], [$3])$4],\n\t\t [$5])],\n\t  [lt_append([$1], [$2], [$3])$4])])\n\n\n# lt_dict_add(DICT, KEY, VALUE)\n# -----------------------------\nm4_define([lt_dict_add],\n[m4_define([$1($2)], [$3])])\n\n\n# lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE)\n# --------------------------------------------\nm4_define([lt_dict_add_subkey],\n[m4_define([$1($2:$3)], [$4])])\n\n\n# lt_dict_fetch(DICT, KEY, [SUBKEY])\n# ----------------------------------\nm4_define([lt_dict_fetch],\n[m4_ifval([$3],\n\tm4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]),\n    m4_ifdef([$1($2)], [m4_defn([$1($2)])]))])\n\n\n# lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE])\n# -----------------------------------------------------------------\nm4_define([lt_if_dict_fetch],\n[m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4],\n\t[$5],\n    [$6])])\n\n\n# lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...])\n# --------------------------------------------------------------\nm4_define([lt_dict_filter],\n[m4_if([$5], [], [],\n  [lt_join(m4_quote(m4_default([$4], [[, ]])),\n           lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]),\n\t\t      [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl\n])\n\n# ltversion.m4 -- version numbers\t\t\t-*- Autoconf -*-\n#\n#   Copyright (C) 2004 Free Software Foundation, Inc.\n#   Written by Scott James Remnant, 2004\n#\n# This file is free software; the Free Software Foundation gives\n# unlimited permission to copy and/or distribute it, with or without\n# modifications, as long as this notice is preserved.\n\n# Generated from ltversion.in.\n\n# serial 3175 ltversion.m4\n# This file is part of GNU Libtool\n\nm4_define([LT_PACKAGE_VERSION], [2.2.10])\nm4_define([LT_PACKAGE_REVISION], [1.3175])\n\nAC_DEFUN([LTVERSION_VERSION],\n[macro_version='2.2.10'\nmacro_revision='1.3175'\n_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])\n_LT_DECL(, macro_revision, 0)\n])\n\n# lt~obsolete.m4 -- aclocal satisfying obsolete definitions.    -*-Autoconf-*-\n#\n#   Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc.\n#   Written by Scott James Remnant, 2004.\n#\n# This file is free software; the Free Software Foundation gives\n# unlimited permission to copy and/or distribute it, with or without\n# modifications, as long as this notice is preserved.\n\n# serial 5 lt~obsolete.m4\n\n# These exist entirely to fool aclocal when bootstrapping libtool.\n#\n# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN)\n# which have later been changed to m4_define as they aren't part of the\n# exported API, or moved to Autoconf or Automake where they belong.\n#\n# The trouble is, aclocal is a bit thick.  It'll see the old AC_DEFUN\n# in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us\n# using a macro with the same name in our local m4/libtool.m4 it'll\n# pull the old libtool.m4 in (it doesn't see our shiny new m4_define\n# and doesn't know about Autoconf macros at all.)\n#\n# So we provide this file, which has a silly filename so it's always\n# included after everything else.  This provides aclocal with the\n# AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything\n# because those macros already exist, or will be overwritten later.\n# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. \n#\n# Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here.\n# Yes, that means every name once taken will need to remain here until\n# we give up compatibility with versions before 1.7, at which point\n# we need to keep only those names which we still refer to.\n\n# This is to help aclocal find these macros, as it can't see m4_define.\nAC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])])\n\nm4_ifndef([AC_LIBTOOL_LINKER_OPTION],\t[AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])])\nm4_ifndef([AC_PROG_EGREP],\t\t[AC_DEFUN([AC_PROG_EGREP])])\nm4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH],\t[AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])])\nm4_ifndef([_LT_AC_SHELL_INIT],\t\t[AC_DEFUN([_LT_AC_SHELL_INIT])])\nm4_ifndef([_LT_AC_SYS_LIBPATH_AIX],\t[AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])])\nm4_ifndef([_LT_PROG_LTMAIN],\t\t[AC_DEFUN([_LT_PROG_LTMAIN])])\nm4_ifndef([_LT_AC_TAGVAR],\t\t[AC_DEFUN([_LT_AC_TAGVAR])])\nm4_ifndef([AC_LTDL_ENABLE_INSTALL],\t[AC_DEFUN([AC_LTDL_ENABLE_INSTALL])])\nm4_ifndef([AC_LTDL_PREOPEN],\t\t[AC_DEFUN([AC_LTDL_PREOPEN])])\nm4_ifndef([_LT_AC_SYS_COMPILER],\t[AC_DEFUN([_LT_AC_SYS_COMPILER])])\nm4_ifndef([_LT_AC_LOCK],\t\t[AC_DEFUN([_LT_AC_LOCK])])\nm4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE],\t[AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])])\nm4_ifndef([_LT_AC_TRY_DLOPEN_SELF],\t[AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])])\nm4_ifndef([AC_LIBTOOL_PROG_CC_C_O],\t[AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])])\nm4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])])\nm4_ifndef([AC_LIBTOOL_OBJDIR],\t\t[AC_DEFUN([AC_LIBTOOL_OBJDIR])])\nm4_ifndef([AC_LTDL_OBJDIR],\t\t[AC_DEFUN([AC_LTDL_OBJDIR])])\nm4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])])\nm4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP],\t[AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])])\nm4_ifndef([AC_PATH_MAGIC],\t\t[AC_DEFUN([AC_PATH_MAGIC])])\nm4_ifndef([AC_PROG_LD_GNU],\t\t[AC_DEFUN([AC_PROG_LD_GNU])])\nm4_ifndef([AC_PROG_LD_RELOAD_FLAG],\t[AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])])\nm4_ifndef([AC_DEPLIBS_CHECK_METHOD],\t[AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])])\nm4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])])\nm4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])])\nm4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])])\nm4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS],\t[AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])])\nm4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP],\t[AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])])\nm4_ifndef([LT_AC_PROG_EGREP],\t\t[AC_DEFUN([LT_AC_PROG_EGREP])])\nm4_ifndef([LT_AC_PROG_SED],\t\t[AC_DEFUN([LT_AC_PROG_SED])])\nm4_ifndef([_LT_CC_BASENAME],\t\t[AC_DEFUN([_LT_CC_BASENAME])])\nm4_ifndef([_LT_COMPILER_BOILERPLATE],\t[AC_DEFUN([_LT_COMPILER_BOILERPLATE])])\nm4_ifndef([_LT_LINKER_BOILERPLATE],\t[AC_DEFUN([_LT_LINKER_BOILERPLATE])])\nm4_ifndef([_AC_PROG_LIBTOOL],\t\t[AC_DEFUN([_AC_PROG_LIBTOOL])])\nm4_ifndef([AC_LIBTOOL_SETUP],\t\t[AC_DEFUN([AC_LIBTOOL_SETUP])])\nm4_ifndef([_LT_AC_CHECK_DLFCN],\t\t[AC_DEFUN([_LT_AC_CHECK_DLFCN])])\nm4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER],\t[AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])])\nm4_ifndef([_LT_AC_TAGCONFIG],\t\t[AC_DEFUN([_LT_AC_TAGCONFIG])])\nm4_ifndef([AC_DISABLE_FAST_INSTALL],\t[AC_DEFUN([AC_DISABLE_FAST_INSTALL])])\nm4_ifndef([_LT_AC_LANG_CXX],\t\t[AC_DEFUN([_LT_AC_LANG_CXX])])\nm4_ifndef([_LT_AC_LANG_F77],\t\t[AC_DEFUN([_LT_AC_LANG_F77])])\nm4_ifndef([_LT_AC_LANG_GCJ],\t\t[AC_DEFUN([_LT_AC_LANG_GCJ])])\nm4_ifndef([AC_LIBTOOL_LANG_C_CONFIG],\t[AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])])\nm4_ifndef([_LT_AC_LANG_C_CONFIG],\t[AC_DEFUN([_LT_AC_LANG_C_CONFIG])])\nm4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG],\t[AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])])\nm4_ifndef([_LT_AC_LANG_CXX_CONFIG],\t[AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])])\nm4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG],\t[AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])])\nm4_ifndef([_LT_AC_LANG_F77_CONFIG],\t[AC_DEFUN([_LT_AC_LANG_F77_CONFIG])])\nm4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG],\t[AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])])\nm4_ifndef([_LT_AC_LANG_GCJ_CONFIG],\t[AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])])\nm4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG],\t[AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])])\nm4_ifndef([_LT_AC_LANG_RC_CONFIG],\t[AC_DEFUN([_LT_AC_LANG_RC_CONFIG])])\nm4_ifndef([AC_LIBTOOL_CONFIG],\t\t[AC_DEFUN([AC_LIBTOOL_CONFIG])])\nm4_ifndef([_LT_AC_FILE_LTDLL_C],\t[AC_DEFUN([_LT_AC_FILE_LTDLL_C])])\nm4_ifndef([_LT_REQUIRED_DARWIN_CHECKS],\t[AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])])\nm4_ifndef([_LT_AC_PROG_CXXCPP],\t\t[AC_DEFUN([_LT_AC_PROG_CXXCPP])])\nm4_ifndef([_LT_PREPARE_SED_QUOTE_VARS],\t[AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])])\nm4_ifndef([_LT_PROG_ECHO_BACKSLASH],\t[AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])])\nm4_ifndef([_LT_PROG_F77],\t\t[AC_DEFUN([_LT_PROG_F77])])\nm4_ifndef([_LT_PROG_FC],\t\t[AC_DEFUN([_LT_PROG_FC])])\nm4_ifndef([_LT_PROG_CXX],\t\t[AC_DEFUN([_LT_PROG_CXX])])\n\n# Copyright (C) 2002, 2003, 2005, 2006  Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# AM_AUTOMAKE_VERSION(VERSION)\n# ----------------------------\n# Automake X.Y traces this macro to ensure aclocal.m4 has been\n# generated from the m4 files accompanying Automake X.Y.\n# (This private macro should not be called outside this file.)\nAC_DEFUN([AM_AUTOMAKE_VERSION],\n[am__api_version='1.10'\ndnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to\ndnl require some minimum version.  Point them to the right macro.\nm4_if([$1], [1.10], [],\n      [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl\n])\n\n# _AM_AUTOCONF_VERSION(VERSION)\n# -----------------------------\n# aclocal traces this macro to find the Autoconf version.\n# This is a private macro too.  Using m4_define simplifies\n# the logic in aclocal, which can simply ignore this definition.\nm4_define([_AM_AUTOCONF_VERSION], [])\n\n# AM_SET_CURRENT_AUTOMAKE_VERSION\n# -------------------------------\n# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.\n# This function is AC_REQUIREd by AC_INIT_AUTOMAKE.\nAC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],\n[AM_AUTOMAKE_VERSION([1.10])dnl\n_AM_AUTOCONF_VERSION(m4_PACKAGE_VERSION)])\n\n# AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-\n\n# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets\n# $ac_aux_dir to `$srcdir/foo'.  In other projects, it is set to\n# `$srcdir', `$srcdir/..', or `$srcdir/../..'.\n#\n# Of course, Automake must honor this variable whenever it calls a\n# tool from the auxiliary directory.  The problem is that $srcdir (and\n# therefore $ac_aux_dir as well) can be either absolute or relative,\n# depending on how configure is run.  This is pretty annoying, since\n# it makes $ac_aux_dir quite unusable in subdirectories: in the top\n# source directory, any form will work fine, but in subdirectories a\n# relative path needs to be adjusted first.\n#\n# $ac_aux_dir/missing\n#    fails when called from a subdirectory if $ac_aux_dir is relative\n# $top_srcdir/$ac_aux_dir/missing\n#    fails if $ac_aux_dir is absolute,\n#    fails when called from a subdirectory in a VPATH build with\n#          a relative $ac_aux_dir\n#\n# The reason of the latter failure is that $top_srcdir and $ac_aux_dir\n# are both prefixed by $srcdir.  In an in-source build this is usually\n# harmless because $srcdir is `.', but things will broke when you\n# start a VPATH build or use an absolute $srcdir.\n#\n# So we could use something similar to $top_srcdir/$ac_aux_dir/missing,\n# iff we strip the leading $srcdir from $ac_aux_dir.  That would be:\n#   am_aux_dir='\\$(top_srcdir)/'`expr \"$ac_aux_dir\" : \"$srcdir//*\\(.*\\)\"`\n# and then we would define $MISSING as\n#   MISSING=\"\\${SHELL} $am_aux_dir/missing\"\n# This will work as long as MISSING is not called from configure, because\n# unfortunately $(top_srcdir) has no meaning in configure.\n# However there are other variables, like CC, which are often used in\n# configure, and could therefore not use this \"fixed\" $ac_aux_dir.\n#\n# Another solution, used here, is to always expand $ac_aux_dir to an\n# absolute PATH.  The drawback is that using absolute paths prevent a\n# configured tree to be moved without reconfiguration.\n\nAC_DEFUN([AM_AUX_DIR_EXPAND],\n[dnl Rely on autoconf to set up CDPATH properly.\nAC_PREREQ([2.50])dnl\n# expand $ac_aux_dir to an absolute path\nam_aux_dir=`cd $ac_aux_dir && pwd`\n])\n\n# AM_CONDITIONAL                                            -*- Autoconf -*-\n\n# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006\n# Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# serial 8\n\n# AM_CONDITIONAL(NAME, SHELL-CONDITION)\n# -------------------------------------\n# Define a conditional.\nAC_DEFUN([AM_CONDITIONAL],\n[AC_PREREQ(2.52)dnl\n ifelse([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],\n\t[$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl\nAC_SUBST([$1_TRUE])dnl\nAC_SUBST([$1_FALSE])dnl\n_AM_SUBST_NOTMAKE([$1_TRUE])dnl\n_AM_SUBST_NOTMAKE([$1_FALSE])dnl\nif $2; then\n  $1_TRUE=\n  $1_FALSE='#'\nelse\n  $1_TRUE='#'\n  $1_FALSE=\nfi\nAC_CONFIG_COMMANDS_PRE(\n[if test -z \"${$1_TRUE}\" && test -z \"${$1_FALSE}\"; then\n  AC_MSG_ERROR([[conditional \"$1\" was never defined.\nUsually this means the macro was only invoked conditionally.]])\nfi])])\n\n# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006\n# Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# serial 9\n\n# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be\n# written in clear, in which case automake, when reading aclocal.m4,\n# will think it sees a *use*, and therefore will trigger all it's\n# C support machinery.  Also note that it means that autoscan, seeing\n# CC etc. in the Makefile, will ask for an AC_PROG_CC use...\n\n\n# _AM_DEPENDENCIES(NAME)\n# ----------------------\n# See how the compiler implements dependency checking.\n# NAME is \"CC\", \"CXX\", \"GCJ\", or \"OBJC\".\n# We try a few techniques and use that to set a single cache variable.\n#\n# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was\n# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular\n# dependency, and given that the user is not expected to run this macro,\n# just rely on AC_PROG_CC.\nAC_DEFUN([_AM_DEPENDENCIES],\n[AC_REQUIRE([AM_SET_DEPDIR])dnl\nAC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl\nAC_REQUIRE([AM_MAKE_INCLUDE])dnl\nAC_REQUIRE([AM_DEP_TRACK])dnl\n\nifelse([$1], CC,   [depcc=\"$CC\"   am_compiler_list=],\n       [$1], CXX,  [depcc=\"$CXX\"  am_compiler_list=],\n       [$1], OBJC, [depcc=\"$OBJC\" am_compiler_list='gcc3 gcc'],\n       [$1], UPC,  [depcc=\"$UPC\"  am_compiler_list=],\n       [$1], GCJ,  [depcc=\"$GCJ\"  am_compiler_list='gcc3 gcc'],\n                   [depcc=\"$$1\"   am_compiler_list=])\n\nAC_CACHE_CHECK([dependency style of $depcc],\n               [am_cv_$1_dependencies_compiler_type],\n[if test -z \"$AMDEP_TRUE\" && test -f \"$am_depcomp\"; then\n  # We make a subdir and do the tests there.  Otherwise we can end up\n  # making bogus files that we don't know about and never remove.  For\n  # instance it was reported that on HP-UX the gcc test will end up\n  # making a dummy file named `D' -- because `-MD' means `put the output\n  # in D'.\n  mkdir conftest.dir\n  # Copy depcomp to subdir because otherwise we won't find it if we're\n  # using a relative directory.\n  cp \"$am_depcomp\" conftest.dir\n  cd conftest.dir\n  # We will build objects and dependencies in a subdirectory because\n  # it helps to detect inapplicable dependency modes.  For instance\n  # both Tru64's cc and ICC support -MD to output dependencies as a\n  # side effect of compilation, but ICC will put the dependencies in\n  # the current directory while Tru64 will put them in the object\n  # directory.\n  mkdir sub\n\n  am_cv_$1_dependencies_compiler_type=none\n  if test \"$am_compiler_list\" = \"\"; then\n     am_compiler_list=`sed -n ['s/^#*\\([a-zA-Z0-9]*\\))$/\\1/p'] < ./depcomp`\n  fi\n  for depmode in $am_compiler_list; do\n    # Setup a source with many dependencies, because some compilers\n    # like to wrap large dependency lists on column 80 (with \\), and\n    # we should not choose a depcomp mode which is confused by this.\n    #\n    # We need to recreate these files for each test, as the compiler may\n    # overwrite some of them when testing with obscure command lines.\n    # This happens at least with the AIX C compiler.\n    : > sub/conftest.c\n    for i in 1 2 3 4 5 6; do\n      echo '#include \"conftst'$i'.h\"' >> sub/conftest.c\n      # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with\n      # Solaris 8's {/usr,}/bin/sh.\n      touch sub/conftst$i.h\n    done\n    echo \"${am__include} ${am__quote}sub/conftest.Po${am__quote}\" > confmf\n\n    case $depmode in\n    nosideeffect)\n      # after this tag, mechanisms are not by side-effect, so they'll\n      # only be used when explicitly requested\n      if test \"x$enable_dependency_tracking\" = xyes; then\n\tcontinue\n      else\n\tbreak\n      fi\n      ;;\n    none) break ;;\n    esac\n    # We check with `-c' and `-o' for the sake of the \"dashmstdout\"\n    # mode.  It turns out that the SunPro C++ compiler does not properly\n    # handle `-M -o', and we need to detect this.\n    if depmode=$depmode \\\n       source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \\\n       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \\\n       $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \\\n         >/dev/null 2>conftest.err &&\n       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&\n       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&\n       grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&\n       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then\n      # icc doesn't choke on unknown options, it will just issue warnings\n      # or remarks (even with -Werror).  So we grep stderr for any message\n      # that says an option was ignored or not supported.\n      # When given -MP, icc 7.0 and 7.1 complain thusly:\n      #   icc: Command line warning: ignoring option '-M'; no argument required\n      # The diagnosis changed in icc 8.0:\n      #   icc: Command line remark: option '-MP' not supported\n      if (grep 'ignoring option' conftest.err ||\n          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else\n        am_cv_$1_dependencies_compiler_type=$depmode\n        break\n      fi\n    fi\n  done\n\n  cd ..\n  rm -rf conftest.dir\nelse\n  am_cv_$1_dependencies_compiler_type=none\nfi\n])\nAC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])\nAM_CONDITIONAL([am__fastdep$1], [\n  test \"x$enable_dependency_tracking\" != xno \\\n  && test \"$am_cv_$1_dependencies_compiler_type\" = gcc3])\n])\n\n\n# AM_SET_DEPDIR\n# -------------\n# Choose a directory name for dependency files.\n# This macro is AC_REQUIREd in _AM_DEPENDENCIES\nAC_DEFUN([AM_SET_DEPDIR],\n[AC_REQUIRE([AM_SET_LEADING_DOT])dnl\nAC_SUBST([DEPDIR], [\"${am__leading_dot}deps\"])dnl\n])\n\n\n# AM_DEP_TRACK\n# ------------\nAC_DEFUN([AM_DEP_TRACK],\n[AC_ARG_ENABLE(dependency-tracking,\n[  --disable-dependency-tracking  speeds up one-time build\n  --enable-dependency-tracking   do not reject slow dependency extractors])\nif test \"x$enable_dependency_tracking\" != xno; then\n  am_depcomp=\"$ac_aux_dir/depcomp\"\n  AMDEPBACKSLASH='\\'\nfi\nAM_CONDITIONAL([AMDEP], [test \"x$enable_dependency_tracking\" != xno])\nAC_SUBST([AMDEPBACKSLASH])dnl\n_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl\n])\n\n# Generate code to set up dependency tracking.              -*- Autoconf -*-\n\n# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005\n# Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n#serial 3\n\n# _AM_OUTPUT_DEPENDENCY_COMMANDS\n# ------------------------------\nAC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],\n[for mf in $CONFIG_FILES; do\n  # Strip MF so we end up with the name of the file.\n  mf=`echo \"$mf\" | sed -e 's/:.*$//'`\n  # Check whether this is an Automake generated Makefile or not.\n  # We used to match only the files named `Makefile.in', but\n  # some people rename them; so instead we look at the file content.\n  # Grep'ing the first line is not enough: some people post-process\n  # each Makefile.in and add a new line on top of each file to say so.\n  # Grep'ing the whole file is not good either: AIX grep has a line\n  # limit of 2048, but all sed's we know have understand at least 4000.\n  if sed 10q \"$mf\" | grep '^#.*generated by automake' > /dev/null 2>&1; then\n    dirpart=`AS_DIRNAME(\"$mf\")`\n  else\n    continue\n  fi\n  # Extract the definition of DEPDIR, am__include, and am__quote\n  # from the Makefile without running `make'.\n  DEPDIR=`sed -n 's/^DEPDIR = //p' < \"$mf\"`\n  test -z \"$DEPDIR\" && continue\n  am__include=`sed -n 's/^am__include = //p' < \"$mf\"`\n  test -z \"am__include\" && continue\n  am__quote=`sed -n 's/^am__quote = //p' < \"$mf\"`\n  # When using ansi2knr, U may be empty or an underscore; expand it\n  U=`sed -n 's/^U = //p' < \"$mf\"`\n  # Find all dependency output files, they are included files with\n  # $(DEPDIR) in their names.  We invoke sed twice because it is the\n  # simplest approach to changing $(DEPDIR) to its actual value in the\n  # expansion.\n  for file in `sed -n \"\n    s/^$am__include $am__quote\\(.*(DEPDIR).*\\)$am__quote\"'$/\\1/p' <\"$mf\" | \\\n       sed -e 's/\\$(DEPDIR)/'\"$DEPDIR\"'/g' -e 's/\\$U/'\"$U\"'/g'`; do\n    # Make sure the directory exists.\n    test -f \"$dirpart/$file\" && continue\n    fdir=`AS_DIRNAME([\"$file\"])`\n    AS_MKDIR_P([$dirpart/$fdir])\n    # echo \"creating $dirpart/$file\"\n    echo '# dummy' > \"$dirpart/$file\"\n  done\ndone\n])# _AM_OUTPUT_DEPENDENCY_COMMANDS\n\n\n# AM_OUTPUT_DEPENDENCY_COMMANDS\n# -----------------------------\n# This macro should only be invoked once -- use via AC_REQUIRE.\n#\n# This code is only required when automatic dependency tracking\n# is enabled.  FIXME.  This creates each `.P' file that we will\n# need in order to bootstrap the dependency handling code.\nAC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],\n[AC_CONFIG_COMMANDS([depfiles],\n     [test x\"$AMDEP_TRUE\" != x\"\" || _AM_OUTPUT_DEPENDENCY_COMMANDS],\n     [AMDEP_TRUE=\"$AMDEP_TRUE\" ac_aux_dir=\"$ac_aux_dir\"])\n])\n\n# Do all the work for Automake.                             -*- Autoconf -*-\n\n# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,\n# 2005, 2006 Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# serial 12\n\n# This macro actually does too much.  Some checks are only needed if\n# your package does certain things.  But this isn't really a big deal.\n\n# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])\n# AM_INIT_AUTOMAKE([OPTIONS])\n# -----------------------------------------------\n# The call with PACKAGE and VERSION arguments is the old style\n# call (pre autoconf-2.50), which is being phased out.  PACKAGE\n# and VERSION should now be passed to AC_INIT and removed from\n# the call to AM_INIT_AUTOMAKE.\n# We support both call styles for the transition.  After\n# the next Automake release, Autoconf can make the AC_INIT\n# arguments mandatory, and then we can depend on a new Autoconf\n# release and drop the old call support.\nAC_DEFUN([AM_INIT_AUTOMAKE],\n[AC_PREREQ([2.60])dnl\ndnl Autoconf wants to disallow AM_ names.  We explicitly allow\ndnl the ones we care about.\nm4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl\nAC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl\nAC_REQUIRE([AC_PROG_INSTALL])dnl\nif test \"`cd $srcdir && pwd`\" != \"`pwd`\"; then\n  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output\n  # is not polluted with repeated \"-I.\"\n  AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl\n  # test to see if srcdir already configured\n  if test -f $srcdir/config.status; then\n    AC_MSG_ERROR([source directory already configured; run \"make distclean\" there first])\n  fi\nfi\n\n# test whether we have cygpath\nif test -z \"$CYGPATH_W\"; then\n  if (cygpath --version) >/dev/null 2>/dev/null; then\n    CYGPATH_W='cygpath -w'\n  else\n    CYGPATH_W=echo\n  fi\nfi\nAC_SUBST([CYGPATH_W])\n\n# Define the identity of the package.\ndnl Distinguish between old-style and new-style calls.\nm4_ifval([$2],\n[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl\n AC_SUBST([PACKAGE], [$1])dnl\n AC_SUBST([VERSION], [$2])],\n[_AM_SET_OPTIONS([$1])dnl\ndnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.\nm4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,,\n  [m4_fatal([AC_INIT should be called with package and version arguments])])dnl\n AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl\n AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl\n\n_AM_IF_OPTION([no-define],,\n[AC_DEFINE_UNQUOTED(PACKAGE, \"$PACKAGE\", [Name of package])\n AC_DEFINE_UNQUOTED(VERSION, \"$VERSION\", [Version number of package])])dnl\n\n# Some tools Automake needs.\nAC_REQUIRE([AM_SANITY_CHECK])dnl\nAC_REQUIRE([AC_ARG_PROGRAM])dnl\nAM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})\nAM_MISSING_PROG(AUTOCONF, autoconf)\nAM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})\nAM_MISSING_PROG(AUTOHEADER, autoheader)\nAM_MISSING_PROG(MAKEINFO, makeinfo)\nAM_PROG_INSTALL_SH\nAM_PROG_INSTALL_STRIP\nAC_REQUIRE([AM_PROG_MKDIR_P])dnl\n# We need awk for the \"check\" target.  The system \"awk\" is bad on\n# some platforms.\nAC_REQUIRE([AC_PROG_AWK])dnl\nAC_REQUIRE([AC_PROG_MAKE_SET])dnl\nAC_REQUIRE([AM_SET_LEADING_DOT])dnl\n_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],\n              [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],\n\t      \t\t     [_AM_PROG_TAR([v7])])])\n_AM_IF_OPTION([no-dependencies],,\n[AC_PROVIDE_IFELSE([AC_PROG_CC],\n                  [_AM_DEPENDENCIES(CC)],\n                  [define([AC_PROG_CC],\n                          defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl\nAC_PROVIDE_IFELSE([AC_PROG_CXX],\n                  [_AM_DEPENDENCIES(CXX)],\n                  [define([AC_PROG_CXX],\n                          defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl\nAC_PROVIDE_IFELSE([AC_PROG_OBJC],\n                  [_AM_DEPENDENCIES(OBJC)],\n                  [define([AC_PROG_OBJC],\n                          defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl\n])\n])\n\n\n# When config.status generates a header, we must update the stamp-h file.\n# This file resides in the same directory as the config header\n# that is generated.  The stamp files are numbered to have different names.\n\n# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the\n# loop where config.status creates the headers, so we can generate\n# our stamp files there.\nAC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],\n[# Compute $1's index in $config_headers.\n_am_stamp_count=1\nfor _am_header in $config_headers :; do\n  case $_am_header in\n    $1 | $1:* )\n      break ;;\n    * )\n      _am_stamp_count=`expr $_am_stamp_count + 1` ;;\n  esac\ndone\necho \"timestamp for $1\" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count])\n\n# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# AM_PROG_INSTALL_SH\n# ------------------\n# Define $install_sh.\nAC_DEFUN([AM_PROG_INSTALL_SH],\n[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl\ninstall_sh=${install_sh-\"\\$(SHELL) $am_aux_dir/install-sh\"}\nAC_SUBST(install_sh)])\n\n# Copyright (C) 2003, 2005  Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# serial 2\n\n# Check whether the underlying file-system supports filenames\n# with a leading dot.  For instance MS-DOS doesn't.\nAC_DEFUN([AM_SET_LEADING_DOT],\n[rm -rf .tst 2>/dev/null\nmkdir .tst 2>/dev/null\nif test -d .tst; then\n  am__leading_dot=.\nelse\n  am__leading_dot=_\nfi\nrmdir .tst 2>/dev/null\nAC_SUBST([am__leading_dot])])\n\n# Check to see how 'make' treats includes.\t            -*- Autoconf -*-\n\n# Copyright (C) 2001, 2002, 2003, 2005  Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# serial 3\n\n# AM_MAKE_INCLUDE()\n# -----------------\n# Check to see how make treats includes.\nAC_DEFUN([AM_MAKE_INCLUDE],\n[am_make=${MAKE-make}\ncat > confinc << 'END'\nam__doit:\n\t@echo done\n.PHONY: am__doit\nEND\n# If we don't find an include directive, just comment out the code.\nAC_MSG_CHECKING([for style of include used by $am_make])\nam__include=\"#\"\nam__quote=\n_am_result=none\n# First try GNU make style include.\necho \"include confinc\" > confmf\n# We grep out `Entering directory' and `Leaving directory'\n# messages which can occur if `w' ends up in MAKEFLAGS.\n# In particular we don't look at `^make:' because GNU make might\n# be invoked under some other name (usually \"gmake\"), in which\n# case it prints its new name instead of `make'.\nif test \"`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`\" = \"done\"; then\n   am__include=include\n   am__quote=\n   _am_result=GNU\nfi\n# Now try BSD make style include.\nif test \"$am__include\" = \"#\"; then\n   echo '.include \"confinc\"' > confmf\n   if test \"`$am_make -s -f confmf 2> /dev/null`\" = \"done\"; then\n      am__include=.include\n      am__quote=\"\\\"\"\n      _am_result=BSD\n   fi\nfi\nAC_SUBST([am__include])\nAC_SUBST([am__quote])\nAC_MSG_RESULT([$_am_result])\nrm -f confinc confmf\n])\n\n# Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*-\n\n# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005\n# Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# serial 5\n\n# AM_MISSING_PROG(NAME, PROGRAM)\n# ------------------------------\nAC_DEFUN([AM_MISSING_PROG],\n[AC_REQUIRE([AM_MISSING_HAS_RUN])\n$1=${$1-\"${am_missing_run}$2\"}\nAC_SUBST($1)])\n\n\n# AM_MISSING_HAS_RUN\n# ------------------\n# Define MISSING if not defined so far and test if it supports --run.\n# If it does, set am_missing_run to use it, otherwise, to nothing.\nAC_DEFUN([AM_MISSING_HAS_RUN],\n[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl\nAC_REQUIRE_AUX_FILE([missing])dnl\ntest x\"${MISSING+set}\" = xset || MISSING=\"\\${SHELL} $am_aux_dir/missing\"\n# Use eval to expand $SHELL\nif eval \"$MISSING --run true\"; then\n  am_missing_run=\"$MISSING --run \"\nelse\n  am_missing_run=\n  AC_MSG_WARN([`missing' script is too old or missing])\nfi\n])\n\n# Copyright (C) 2003, 2004, 2005, 2006  Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# AM_PROG_MKDIR_P\n# ---------------\n# Check for `mkdir -p'.\nAC_DEFUN([AM_PROG_MKDIR_P],\n[AC_PREREQ([2.60])dnl\nAC_REQUIRE([AC_PROG_MKDIR_P])dnl\ndnl Automake 1.8 to 1.9.6 used to define mkdir_p.  We now use MKDIR_P,\ndnl while keeping a definition of mkdir_p for backward compatibility.\ndnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.\ndnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of\ndnl Makefile.ins that do not define MKDIR_P, so we do our own\ndnl adjustment using top_builddir (which is defined more often than\ndnl MKDIR_P).\nAC_SUBST([mkdir_p], [\"$MKDIR_P\"])dnl\ncase $mkdir_p in\n  [[\\\\/$]]* | ?:[[\\\\/]]*) ;;\n  */*) mkdir_p=\"\\$(top_builddir)/$mkdir_p\" ;;\nesac\n])\n\n# Helper functions for option handling.                     -*- Autoconf -*-\n\n# Copyright (C) 2001, 2002, 2003, 2005  Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# serial 3\n\n# _AM_MANGLE_OPTION(NAME)\n# -----------------------\nAC_DEFUN([_AM_MANGLE_OPTION],\n[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])\n\n# _AM_SET_OPTION(NAME)\n# ------------------------------\n# Set option NAME.  Presently that only means defining a flag for this option.\nAC_DEFUN([_AM_SET_OPTION],\n[m4_define(_AM_MANGLE_OPTION([$1]), 1)])\n\n# _AM_SET_OPTIONS(OPTIONS)\n# ----------------------------------\n# OPTIONS is a space-separated list of Automake options.\nAC_DEFUN([_AM_SET_OPTIONS],\n[AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])\n\n# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])\n# -------------------------------------------\n# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.\nAC_DEFUN([_AM_IF_OPTION],\n[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])\n\n# Check to make sure that the build environment is sane.    -*- Autoconf -*-\n\n# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005\n# Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# serial 4\n\n# AM_SANITY_CHECK\n# ---------------\nAC_DEFUN([AM_SANITY_CHECK],\n[AC_MSG_CHECKING([whether build environment is sane])\n# Just in case\nsleep 1\necho timestamp > conftest.file\n# Do `set' in a subshell so we don't clobber the current shell's\n# arguments.  Must try -L first in case configure is actually a\n# symlink; some systems play weird games with the mod time of symlinks\n# (eg FreeBSD returns the mod time of the symlink's containing\n# directory).\nif (\n   set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`\n   if test \"$[*]\" = \"X\"; then\n      # -L didn't work.\n      set X `ls -t $srcdir/configure conftest.file`\n   fi\n   rm -f conftest.file\n   if test \"$[*]\" != \"X $srcdir/configure conftest.file\" \\\n      && test \"$[*]\" != \"X conftest.file $srcdir/configure\"; then\n\n      # If neither matched, then we have a broken ls.  This can happen\n      # if, for instance, CONFIG_SHELL is bash and it inherits a\n      # broken ls alias from the environment.  This has actually\n      # happened.  Such a system could not be considered \"sane\".\n      AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken\nalias in your environment])\n   fi\n\n   test \"$[2]\" = conftest.file\n   )\nthen\n   # Ok.\n   :\nelse\n   AC_MSG_ERROR([newly created file is older than distributed files!\nCheck your system clock])\nfi\nAC_MSG_RESULT(yes)])\n\n# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# AM_PROG_INSTALL_STRIP\n# ---------------------\n# One issue with vendor `install' (even GNU) is that you can't\n# specify the program used to strip binaries.  This is especially\n# annoying in cross-compiling environments, where the build's strip\n# is unlikely to handle the host's binaries.\n# Fortunately install-sh will honor a STRIPPROG variable, so we\n# always use install-sh in `make install-strip', and initialize\n# STRIPPROG with the value of the STRIP variable (set by the user).\nAC_DEFUN([AM_PROG_INSTALL_STRIP],\n[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl\n# Installed binaries are usually stripped using `strip' when the user\n# run `make install-strip'.  However `strip' might not be the right\n# tool to use in cross-compilation environments, therefore Automake\n# will honor the `STRIP' environment variable to overrule this program.\ndnl Don't test for $cross_compiling = yes, because it might be `maybe'.\nif test \"$cross_compiling\" != no; then\n  AC_CHECK_TOOL([STRIP], [strip], :)\nfi\nINSTALL_STRIP_PROGRAM=\"\\$(install_sh) -c -s\"\nAC_SUBST([INSTALL_STRIP_PROGRAM])])\n\n# Copyright (C) 2006  Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# _AM_SUBST_NOTMAKE(VARIABLE)\n# ---------------------------\n# Prevent Automake from outputing VARIABLE = @VARIABLE@ in Makefile.in.\n# This macro is traced by Automake.\nAC_DEFUN([_AM_SUBST_NOTMAKE])\n\n# Check how to create a tarball.                            -*- Autoconf -*-\n\n# Copyright (C) 2004, 2005  Free Software Foundation, Inc.\n#\n# This file is free software; the Free Software Foundation\n# gives unlimited permission to copy and/or distribute it,\n# with or without modifications, as long as this notice is preserved.\n\n# serial 2\n\n# _AM_PROG_TAR(FORMAT)\n# --------------------\n# Check how to create a tarball in format FORMAT.\n# FORMAT should be one of `v7', `ustar', or `pax'.\n#\n# Substitute a variable $(am__tar) that is a command\n# writing to stdout a FORMAT-tarball containing the directory\n# $tardir.\n#     tardir=directory && $(am__tar) > result.tar\n#\n# Substitute a variable $(am__untar) that extract such\n# a tarball read from stdin.\n#     $(am__untar) < result.tar\nAC_DEFUN([_AM_PROG_TAR],\n[# Always define AMTAR for backward compatibility.\nAM_MISSING_PROG([AMTAR], [tar])\nm4_if([$1], [v7],\n     [am__tar='${AMTAR} chof - \"$$tardir\"'; am__untar='${AMTAR} xf -'],\n     [m4_case([$1], [ustar],, [pax],,\n              [m4_fatal([Unknown tar format])])\nAC_MSG_CHECKING([how to create a $1 tar archive])\n# Loop over all known methods to create a tar archive until one works.\n_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'\n_am_tools=${am_cv_prog_tar_$1-$_am_tools}\n# Do not fold the above two line into one, because Tru64 sh and\n# Solaris sh will not grok spaces in the rhs of `-'.\nfor _am_tool in $_am_tools\ndo\n  case $_am_tool in\n  gnutar)\n    for _am_tar in tar gnutar gtar;\n    do\n      AM_RUN_LOG([$_am_tar --version]) && break\n    done\n    am__tar=\"$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - \"'\"$$tardir\"'\n    am__tar_=\"$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - \"'\"$tardir\"'\n    am__untar=\"$_am_tar -xf -\"\n    ;;\n  plaintar)\n    # Must skip GNU tar: if it does not support --format= it doesn't create\n    # ustar tarball either.\n    (tar --version) >/dev/null 2>&1 && continue\n    am__tar='tar chf - \"$$tardir\"'\n    am__tar_='tar chf - \"$tardir\"'\n    am__untar='tar xf -'\n    ;;\n  pax)\n    am__tar='pax -L -x $1 -w \"$$tardir\"'\n    am__tar_='pax -L -x $1 -w \"$tardir\"'\n    am__untar='pax -r'\n    ;;\n  cpio)\n    am__tar='find \"$$tardir\" -print | cpio -o -H $1 -L'\n    am__tar_='find \"$tardir\" -print | cpio -o -H $1 -L'\n    am__untar='cpio -i -H $1 -d'\n    ;;\n  none)\n    am__tar=false\n    am__tar_=false\n    am__untar=false\n    ;;\n  esac\n\n  # If the value was cached, stop now.  We just wanted to have am__tar\n  # and am__untar set.\n  test -n \"${am_cv_prog_tar_$1}\" && break\n\n  # tar/untar a dummy directory, and stop if the command works\n  rm -rf conftest.dir\n  mkdir conftest.dir\n  echo GrepMe > conftest.dir/file\n  AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])\n  rm -rf conftest.dir\n  if test -s conftest.tar; then\n    AM_RUN_LOG([$am__untar <conftest.tar])\n    grep GrepMe conftest.dir/file >/dev/null 2>&1 && break\n  fi\ndone\nrm -rf conftest.dir\n\nAC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])\nAC_MSG_RESULT([$am_cv_prog_tar_$1])])\nAC_SUBST([am__tar])\nAC_SUBST([am__untar])\n]) # _AM_PROG_TAR\n\n"
  },
  {
    "path": "ext/cld/base/basictypes.h",
    "content": "// Copyright (c) 2010 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef BASE_BASICTYPES_H_\n#define BASE_BASICTYPES_H_\n\n#include <limits.h>         // So we can set the bounds of our types\n#include <stddef.h>         // For size_t\n#include <string.h>         // for memcpy\n\n#include \"base/port.h\"    // Types that only need exist on certain systems\n\n#ifndef COMPILER_MSVC\n// stdint.h is part of C99 but MSVC doesn't have it.\n#include <stdint.h>         // For intptr_t.\n#endif\n\ntypedef signed char         schar;\ntypedef signed char         int8;\ntypedef short               int16;\n// TODO(mbelshe) Remove these type guards.  These are\n//               temporary to avoid conflicts with npapi.h.\n#ifndef _INT32\n#define _INT32\ntypedef int                 int32;\n#endif\n\n// The NSPR system headers define 64-bit as |long| when possible.  In order to\n// not have typedef mismatches, we do the same on LP64.\n#if __LP64__\ntypedef long                int64;\n#else\ntypedef long long           int64;\n#endif\n\n// NOTE: unsigned types are DANGEROUS in loops and other arithmetical\n// places.  Use the signed types unless your variable represents a bit\n// pattern (eg a hash value) or you really need the extra bit.  Do NOT\n// use 'unsigned' to express \"this value should always be positive\";\n// use assertions for this.\n\ntypedef unsigned char      uint8;\ntypedef unsigned short     uint16;\n// TODO(mbelshe) Remove these type guards.  These are\n//               temporary to avoid conflicts with npapi.h.\n#ifndef _UINT32\n#define _UINT32\ntypedef unsigned int       uint32;\n#endif\n\n// See the comment above about NSPR and 64-bit.\n#if __LP64__\ntypedef unsigned long uint64;\n#else\ntypedef unsigned long long uint64;\n#endif\n\n// A type to represent a Unicode code-point value. As of Unicode 4.0,\n// such values require up to 21 bits.\n// (For type-checking on pointers, make this explicitly signed,\n// and it should always be the signed version of whatever int32 is.)\ntypedef signed int         char32;\n\nconst uint8  kuint8max  = (( uint8) 0xFF);\nconst uint16 kuint16max = ((uint16) 0xFFFF);\nconst uint32 kuint32max = ((uint32) 0xFFFFFFFF);\nconst uint64 kuint64max = ((uint64) GG_LONGLONG(0xFFFFFFFFFFFFFFFF));\nconst  int8  kint8min   = ((  int8) 0x80);\nconst  int8  kint8max   = ((  int8) 0x7F);\nconst  int16 kint16min  = (( int16) 0x8000);\nconst  int16 kint16max  = (( int16) 0x7FFF);\nconst  int32 kint32min  = (( int32) 0x80000000);\nconst  int32 kint32max  = (( int32) 0x7FFFFFFF);\nconst  int64 kint64min  = (( int64) GG_LONGLONG(0x8000000000000000));\nconst  int64 kint64max  = (( int64) GG_LONGLONG(0x7FFFFFFFFFFFFFFF));\n\n// A macro to disallow the copy constructor and operator= functions\n// This should be used in the private: declarations for a class\n#define DISALLOW_COPY_AND_ASSIGN(TypeName) \\\n  TypeName(const TypeName&);               \\\n  void operator=(const TypeName&)\n\n// An older, deprecated, politically incorrect name for the above.\n#define DISALLOW_EVIL_CONSTRUCTORS(TypeName) DISALLOW_COPY_AND_ASSIGN(TypeName)\n\n// A macro to disallow all the implicit constructors, namely the\n// default constructor, copy constructor and operator= functions.\n//\n// This should be used in the private: declarations for a class\n// that wants to prevent anyone from instantiating it. This is\n// especially useful for classes containing only static methods.\n#define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \\\n  TypeName();                                    \\\n  DISALLOW_COPY_AND_ASSIGN(TypeName)\n\n// The arraysize(arr) macro returns the # of elements in an array arr.\n// The expression is a compile-time constant, and therefore can be\n// used in defining new arrays, for example.  If you use arraysize on\n// a pointer by mistake, you will get a compile-time error.\n//\n// One caveat is that arraysize() doesn't accept any array of an\n// anonymous type or a type defined inside a function.  In these rare\n// cases, you have to use the unsafe ARRAYSIZE_UNSAFE() macro below.  This is\n// due to a limitation in C++'s template system.  The limitation might\n// eventually be removed, but it hasn't happened yet.\n\n// This template function declaration is used in defining arraysize.\n// Note that the function doesn't need an implementation, as we only\n// use its type.\ntemplate <typename T, size_t N>\nchar (&ArraySizeHelper(T (&array)[N]))[N];\n\n// That gcc wants both of these prototypes seems mysterious. VC, for\n// its part, can't decide which to use (another mystery). Matching of\n// template overloads: the final frontier.\n#ifndef _MSC_VER\ntemplate <typename T, size_t N>\nchar (&ArraySizeHelper(const T (&array)[N]))[N];\n#endif\n\n#define arraysize(array) (sizeof(ArraySizeHelper(array)))\n\n// ARRAYSIZE_UNSAFE performs essentially the same calculation as arraysize,\n// but can be used on anonymous types or types defined inside\n// functions.  It's less safe than arraysize as it accepts some\n// (although not all) pointers.  Therefore, you should use arraysize\n// whenever possible.\n//\n// The expression ARRAYSIZE_UNSAFE(a) is a compile-time constant of type\n// size_t.\n//\n// ARRAYSIZE_UNSAFE catches a few type errors.  If you see a compiler error\n//\n//   \"warning: division by zero in ...\"\n//\n// when using ARRAYSIZE_UNSAFE, you are (wrongfully) giving it a pointer.\n// You should only use ARRAYSIZE_UNSAFE on statically allocated arrays.\n//\n// The following comments are on the implementation details, and can\n// be ignored by the users.\n//\n// ARRAYSIZE_UNSAFE(arr) works by inspecting sizeof(arr) (the # of bytes in\n// the array) and sizeof(*(arr)) (the # of bytes in one array\n// element).  If the former is divisible by the latter, perhaps arr is\n// indeed an array, in which case the division result is the # of\n// elements in the array.  Otherwise, arr cannot possibly be an array,\n// and we generate a compiler error to prevent the code from\n// compiling.\n//\n// Since the size of bool is implementation-defined, we need to cast\n// !(sizeof(a) & sizeof(*(a))) to size_t in order to ensure the final\n// result has type size_t.\n//\n// This macro is not perfect as it wrongfully accepts certain\n// pointers, namely where the pointer size is divisible by the pointee\n// size.  Since all our code has to go through a 32-bit compiler,\n// where a pointer is 4 bytes, this means all pointers to a type whose\n// size is 3 or greater than 4 will be (righteously) rejected.\n\n#define ARRAYSIZE_UNSAFE(a) \\\n  ((sizeof(a) / sizeof(*(a))) / \\\n   static_cast<size_t>(!(sizeof(a) % sizeof(*(a)))))\n\n\n// Use implicit_cast as a safe version of static_cast or const_cast\n// for upcasting in the type hierarchy (i.e. casting a pointer to Foo\n// to a pointer to SuperclassOfFoo or casting a pointer to Foo to\n// a const pointer to Foo).\n// When you use implicit_cast, the compiler checks that the cast is safe.\n// Such explicit implicit_casts are necessary in surprisingly many\n// situations where C++ demands an exact type match instead of an\n// argument type convertable to a target type.\n//\n// The From type can be inferred, so the preferred syntax for using\n// implicit_cast is the same as for static_cast etc.:\n//\n//   implicit_cast<ToType>(expr)\n//\n// implicit_cast would have been part of the C++ standard library,\n// but the proposal was submitted too late.  It will probably make\n// its way into the language in the future.\ntemplate<typename To, typename From>\ninline To implicit_cast(From const &f) {\n  return f;\n}\n\n// The COMPILE_ASSERT macro can be used to verify that a compile time\n// expression is true. For example, you could use it to verify the\n// size of a static array:\n//\n//   COMPILE_ASSERT(ARRAYSIZE_UNSAFE(content_type_names) == CONTENT_NUM_TYPES,\n//                  content_type_names_incorrect_size);\n//\n// or to make sure a struct is smaller than a certain size:\n//\n//   COMPILE_ASSERT(sizeof(foo) < 128, foo_too_large);\n//\n// The second argument to the macro is the name of the variable. If\n// the expression is false, most compilers will issue a warning/error\n// containing the name of the variable.\n\ntemplate <bool>\nstruct CompileAssert {\n};\n\n#undef COMPILE_ASSERT\n#define COMPILE_ASSERT(expr, msg) \\\n  typedef CompileAssert<(bool(expr))> msg[bool(expr) ? 1 : -1]\n\n// Implementation details of COMPILE_ASSERT:\n//\n// - COMPILE_ASSERT works by defining an array type that has -1\n//   elements (and thus is invalid) when the expression is false.\n//\n// - The simpler definition\n//\n//     #define COMPILE_ASSERT(expr, msg) typedef char msg[(expr) ? 1 : -1]\n//\n//   does not work, as gcc supports variable-length arrays whose sizes\n//   are determined at run-time (this is gcc's extension and not part\n//   of the C++ standard).  As a result, gcc fails to reject the\n//   following code with the simple definition:\n//\n//     int foo;\n//     COMPILE_ASSERT(foo, msg); // not supposed to compile as foo is\n//                               // not a compile-time constant.\n//\n// - By using the type CompileAssert<(bool(expr))>, we ensures that\n//   expr is a compile-time constant.  (Template arguments must be\n//   determined at compile-time.)\n//\n// - The outter parentheses in CompileAssert<(bool(expr))> are necessary\n//   to work around a bug in gcc 3.4.4 and 4.0.1.  If we had written\n//\n//     CompileAssert<bool(expr)>\n//\n//   instead, these compilers will refuse to compile\n//\n//     COMPILE_ASSERT(5 > 0, some_message);\n//\n//   (They seem to think the \">\" in \"5 > 0\" marks the end of the\n//   template argument list.)\n//\n// - The array size is (bool(expr) ? 1 : -1), instead of simply\n//\n//     ((expr) ? 1 : -1).\n//\n//   This is to avoid running into a bug in MS VC 7.1, which\n//   causes ((0.0) ? 1 : -1) to incorrectly evaluate to 1.\n\n\n// MetatagId refers to metatag-id that we assign to\n// each metatag <name, value> pair..\ntypedef uint32 MetatagId;\n\n// Argument type used in interfaces that can optionally take ownership\n// of a passed in argument.  If TAKE_OWNERSHIP is passed, the called\n// object takes ownership of the argument.  Otherwise it does not.\nenum Ownership {\n  DO_NOT_TAKE_OWNERSHIP,\n  TAKE_OWNERSHIP\n};\n\n// bit_cast<Dest,Source> is a template function that implements the\n// equivalent of \"*reinterpret_cast<Dest*>(&source)\".  We need this in\n// very low-level functions like the protobuf library and fast math\n// support.\n//\n//   float f = 3.14159265358979;\n//   int i = bit_cast<int32>(f);\n//   // i = 0x40490fdb\n//\n// The classical address-casting method is:\n//\n//   // WRONG\n//   float f = 3.14159265358979;            // WRONG\n//   int i = * reinterpret_cast<int*>(&f);  // WRONG\n//\n// The address-casting method actually produces undefined behavior\n// according to ISO C++ specification section 3.10 -15 -.  Roughly, this\n// section says: if an object in memory has one type, and a program\n// accesses it with a different type, then the result is undefined\n// behavior for most values of \"different type\".\n//\n// This is true for any cast syntax, either *(int*)&f or\n// *reinterpret_cast<int*>(&f).  And it is particularly true for\n// conversions betweeen integral lvalues and floating-point lvalues.\n//\n// The purpose of 3.10 -15- is to allow optimizing compilers to assume\n// that expressions with different types refer to different memory.  gcc\n// 4.0.1 has an optimizer that takes advantage of this.  So a\n// non-conforming program quietly produces wildly incorrect output.\n//\n// The problem is not the use of reinterpret_cast.  The problem is type\n// punning: holding an object in memory of one type and reading its bits\n// back using a different type.\n//\n// The C++ standard is more subtle and complex than this, but that\n// is the basic idea.\n//\n// Anyways ...\n//\n// bit_cast<> calls memcpy() which is blessed by the standard,\n// especially by the example in section 3.9 .  Also, of course,\n// bit_cast<> wraps up the nasty logic in one place.\n//\n// Fortunately memcpy() is very fast.  In optimized mode, with a\n// constant size, gcc 2.95.3, gcc 4.0.1, and msvc 7.1 produce inline\n// code with the minimal amount of data movement.  On a 32-bit system,\n// memcpy(d,s,4) compiles to one load and one store, and memcpy(d,s,8)\n// compiles to two loads and two stores.\n//\n// I tested this code with gcc 2.95.3, gcc 4.0.1, icc 8.1, and msvc 7.1.\n//\n// WARNING: if Dest or Source is a non-POD type, the result of the memcpy\n// is likely to surprise you.\n\ntemplate <class Dest, class Source>\ninline Dest bit_cast(const Source& source) {\n  // Compile time assertion: sizeof(Dest) == sizeof(Source)\n  // A compile error here means your Dest and Source have different sizes.\n  typedef char VerifySizesAreEqual [sizeof(Dest) == sizeof(Source) ? 1 : -1];\n\n  Dest dest;\n  memcpy(&dest, &source, sizeof(dest));\n  return dest;\n}\n\n// The following enum should be used only as a constructor argument to indicate\n// that the variable has static storage class, and that the constructor should\n// do nothing to its state.  It indicates to the reader that it is legal to\n// declare a static instance of the class, provided the constructor is given\n// the base::LINKER_INITIALIZED argument.  Normally, it is unsafe to declare a\n// static variable that has a constructor or a destructor because invocation\n// order is undefined.  However, IF the type can be initialized by filling with\n// zeroes (which the loader does for static variables), AND the destructor also\n// does nothing to the storage, AND there are no virtual methods, then a\n// constructor declared as\n//       explicit MyClass(base::LinkerInitialized x) {}\n// and invoked as\n//       static MyClass my_variable_name(base::LINKER_INITIALIZED);\nnamespace base {\nenum LinkerInitialized { LINKER_INITIALIZED };\n}  // base\n\n\n#endif  // BASE_BASICTYPES_H_\n"
  },
  {
    "path": "ext/cld/base/build_config.h",
    "content": "// Copyright (c) 2011 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n// This file adds defines about the platform we're currently building on.\n//  Operating System:\n//    OS_WIN / OS_MACOSX / OS_LINUX / OS_POSIX (MACOSX or LINUX)\n//  Compiler:\n//    COMPILER_MSVC / COMPILER_GCC\n//  Processor:\n//    ARCH_CPU_X86 / ARCH_CPU_X86_64 / ARCH_CPU_X86_FAMILY (X86 or X86_64)\n//    ARCH_CPU_32_BITS / ARCH_CPU_64_BITS\n\n#ifndef BUILD_BUILD_CONFIG_H_\n#define BUILD_BUILD_CONFIG_H_\n\n// A set of macros to use for platform detection.\n#if defined(__APPLE__)\n#define OS_MACOSX 1\n#elif defined(__linux__)\n#define OS_LINUX 1\n// Use TOOLKIT_GTK on linux if TOOLKIT_VIEWS isn't defined.\n#if !defined(TOOLKIT_VIEWS)\n#define TOOLKIT_GTK\n#endif\n#elif defined(_WIN32)\n#define OS_WIN 1\n#define TOOLKIT_VIEWS 1\n#elif defined(__FreeBSD__)\n#define OS_FREEBSD 1\n#define TOOLKIT_GTK\n#elif defined(__OpenBSD__)\n#define OS_OPENBSD 1\n#define TOOLKIT_GTK\n#elif defined(__sun)\n#define OS_SOLARIS 1\n#define TOOLKIT_GTK\n#else\n#error Please add support for your platform in build/build_config.h\n#endif\n\n// A flag derived from the above flags, used to cover GTK code in\n// both TOOLKIT_GTK and TOOLKIT_VIEWS.\n#if defined(TOOLKIT_GTK) || (defined(TOOLKIT_VIEWS) && !defined(OS_WIN))\n#define TOOLKIT_USES_GTK 1\n#endif\n\n#if defined(OS_LINUX) || defined(OS_FREEBSD) || defined(OS_OPENBSD)\n#define USE_NSS 1  // Use NSS for crypto.\n#define USE_X11 1  // Use X for graphics.\n#endif\n\n// For access to standard POSIXish features, use OS_POSIX instead of a\n// more specific macro.\n#if defined(OS_MACOSX) || defined(OS_LINUX) || defined(OS_FREEBSD) || defined(OS_OPENBSD) || defined(OS_SOLARIS)\n#define OS_POSIX 1\n// Use base::DataPack for name/value pairs.\n#define USE_BASE_DATA_PACK 1\n#endif\n\n// Use tcmalloc\n#if defined(OS_WIN) && ! defined(NO_TCMALLOC)\n#define USE_TCMALLOC 1\n#endif\n\n// Compiler detection.\n#if defined(__GNUC__)\n#define COMPILER_GCC 1\n#elif defined(_MSC_VER)\n#define COMPILER_MSVC 1\n#else\n#error Please add support for your compiler in build/build_config.h\n#endif\n\n// Processor architecture detection.  For more info on what's defined, see:\n//   http://msdn.microsoft.com/en-us/library/b0084kay.aspx\n//   http://www.agner.org/optimize/calling_conventions.pdf\n//   or with gcc, run: \"echo | gcc -E -dM -\"\n#if defined(_M_X64) || defined(__x86_64__)\n#define ARCH_CPU_X86_FAMILY 1\n#define ARCH_CPU_X86_64 1\n#define ARCH_CPU_64_BITS 1\n#elif defined(_M_IX86) || defined(__i386__)\n#define ARCH_CPU_X86_FAMILY 1\n#define ARCH_CPU_X86 1\n#define ARCH_CPU_32_BITS 1\n#elif defined(__ARMEL__)\n#define ARCH_CPU_ARM_FAMILY 1\n#define ARCH_CPU_ARMEL 1\n#define ARCH_CPU_32_BITS 1\n#define WCHAR_T_IS_UNSIGNED 1\n#elif defined(__aarch64__)\n#define ARCH_CPU_ARM_FAMILY 1\n#define ARCH_CPU_ARM64 1\n#define ARCH_CPU_64_BITS 1\n#define ARCH_CPU_LITTLE_ENDIAN 1\n#elif defined(__loongarch64)\n#define ARCH_CPU_LOONGARCH_FAMILY 1\n#define ARCH_CPU_LOONGARCH64 1\n#define ARCH_CPU_64_BITS 1\n#define ARCH_CPU_LITTLE_ENDIAN 1\n#else\n#error Please add support for your architecture in build/build_config.h\n#endif\n\n// Type detection for wchar_t.\n#if defined(OS_WIN)\n#define WCHAR_T_IS_UTF16\n#elif defined(OS_POSIX) && defined(COMPILER_GCC) && \\\n    defined(__WCHAR_MAX__) && \\\n    (__WCHAR_MAX__ == 0x7fffffff || __WCHAR_MAX__ == 0xffffffff)\n#define WCHAR_T_IS_UTF32\n#elif defined(OS_POSIX) && defined(COMPILER_GCC) && \\\n    defined(__WCHAR_MAX__) && \\\n    (__WCHAR_MAX__ == 0x7fff || __WCHAR_MAX__ == 0xffff)\n// On Posix, we'll detect short wchar_t, but projects aren't guaranteed to\n// compile in this mode (in particular, Chrome doesn't). This is intended for\n// other projects using base who manage their own dependencies and make sure\n// short wchar works for them.\n#define WCHAR_T_IS_UTF16\n#else\n#error Please add support for your compiler in build/build_config.h\n#endif\n\n#endif  // BUILD_BUILD_CONFIG_H_\n"
  },
  {
    "path": "ext/cld/base/casts.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef BASE_CASTS_H_\n#define BASE_CASTS_H_\n\n#include <assert.h>         // for use with down_cast<>\n#include <string.h>         // for memcpy\n\n#include \"base/macros.h\"\n\n\n// Use implicit_cast as a safe version of static_cast or const_cast\n// for upcasting in the type hierarchy (i.e. casting a pointer to Foo\n// to a pointer to SuperclassOfFoo or casting a pointer to Foo to\n// a const pointer to Foo).\n// When you use implicit_cast, the compiler checks that the cast is safe.\n// Such explicit implicit_casts are necessary in surprisingly many\n// situations where C++ demands an exact type match instead of an\n// argument type convertable to a target type.\n//\n// The From type can be inferred, so the preferred syntax for using\n// implicit_cast is the same as for static_cast etc.:\n//\n//   implicit_cast<ToType>(expr)\n//\n// implicit_cast would have been part of the C++ standard library,\n// but the proposal was submitted too late.  It will probably make\n// its way into the language in the future.\ntemplate<typename To, typename From>\ninline To implicit_cast(From const &f) {\n  return f;\n}\n\n\n// When you upcast (that is, cast a pointer from type Foo to type\n// SuperclassOfFoo), it's fine to use implicit_cast<>, since upcasts\n// always succeed.  When you downcast (that is, cast a pointer from\n// type Foo to type SubclassOfFoo), static_cast<> isn't safe, because\n// how do you know the pointer is really of type SubclassOfFoo?  It\n// could be a bare Foo, or of type DifferentSubclassOfFoo.  Thus,\n// when you downcast, you should use this macro.  In debug mode, we\n// use dynamic_cast<> to double-check the downcast is legal (we die\n// if it's not).  In normal mode, we do the efficient static_cast<>\n// instead.  Thus, it's important to test in debug mode to make sure\n// the cast is legal!\n//    This is the only place in the code we should use dynamic_cast<>.\n// In particular, you SHOULDN'T be using dynamic_cast<> in order to\n// do RTTI (eg code like this:\n//    if (dynamic_cast<Subclass1>(foo)) HandleASubclass1Object(foo);\n//    if (dynamic_cast<Subclass2>(foo)) HandleASubclass2Object(foo);\n// You should design the code some other way not to need this.\n\ntemplate<typename To, typename From>     // use like this: down_cast<T*>(foo);\ninline To down_cast(From* f) {                   // so we only accept pointers\n  // Ensures that To is a sub-type of From *.  This test is here only\n  // for compile-time type checking, and has no overhead in an\n  // optimized build at run-time, as it will be optimized away\n  // completely.\n  if (false) {\n    implicit_cast<From*, To>(0);\n  }\n\n  assert(f == NULL || dynamic_cast<To>(f) != NULL);  // RTTI: debug mode only!\n  return static_cast<To>(f);\n}\n\n// Overload of down_cast for references. Use like this: down_cast<T&>(foo).\n// The code is slightly convoluted because we're still using the pointer\n// form of dynamic cast. (The reference form throws an exception if it\n// fails.)\n//\n// There's no need for a special const overload either for the pointer\n// or the reference form. If you call down_cast with a const T&, the\n// compiler will just bind From to const T.\ntemplate<typename To, typename From>\ninline To down_cast(From& f) {\n  COMPILE_ASSERT(base::is_reference<To>::value, target_type_not_a_reference);\n  typedef typename base::remove_reference<To>::type* ToAsPointer;\n  if (false) {\n    // Compile-time check that To inherits from From. See above for details.\n    implicit_cast<From*, ToAsPointer>(0);\n  }\n\n  assert(dynamic_cast<ToAsPointer>(&f) != NULL);  // RTTI: debug mode only\n  return static_cast<To>(f);\n}\n\n// bit_cast<Dest,Source> is a template function that implements the\n// equivalent of \"*reinterpret_cast<Dest*>(&source)\".  We need this in\n// very low-level functions like the protobuf library and fast math\n// support.\n//\n//   float f = 3.14159265358979;\n//   int i = bit_cast<int32>(f);\n//   // i = 0x40490fdb\n//\n// The classical address-casting method is:\n//\n//   // WRONG\n//   float f = 3.14159265358979;            // WRONG\n//   int i = * reinterpret_cast<int*>(&f);  // WRONG\n//\n// The address-casting method actually produces undefined behavior\n// according to ISO C++ specification section 3.10 -15 -.  Roughly, this\n// section says: if an object in memory has one type, and a program\n// accesses it with a different type, then the result is undefined\n// behavior for most values of \"different type\".\n//\n// This is true for any cast syntax, either *(int*)&f or\n// *reinterpret_cast<int*>(&f).  And it is particularly true for\n// conversions betweeen integral lvalues and floating-point lvalues.\n//\n// The purpose of 3.10 -15- is to allow optimizing compilers to assume\n// that expressions with different types refer to different memory.  gcc\n// 4.0.1 has an optimizer that takes advantage of this.  So a\n// non-conforming program quietly produces wildly incorrect output.\n//\n// The problem is not the use of reinterpret_cast.  The problem is type\n// punning: holding an object in memory of one type and reading its bits\n// back using a different type.\n//\n// The C++ standard is more subtle and complex than this, but that\n// is the basic idea.\n//\n// Anyways ...\n//\n// bit_cast<> calls memcpy() which is blessed by the standard,\n// especially by the example in section 3.9 .  Also, of course,\n// bit_cast<> wraps up the nasty logic in one place.\n//\n// Fortunately memcpy() is very fast.  In optimized mode, with a\n// constant size, gcc 2.95.3, gcc 4.0.1, and msvc 7.1 produce inline\n// code with the minimal amount of data movement.  On a 32-bit system,\n// memcpy(d,s,4) compiles to one load and one store, and memcpy(d,s,8)\n// compiles to two loads and two stores.\n//\n// I tested this code with gcc 2.95.3, gcc 4.0.1, icc 8.1, and msvc 7.1.\n//\n// WARNING: if Dest or Source is a non-POD type, the result of the memcpy\n// is likely to surprise you.\n//\n\ntemplate <class Dest, class Source>\ninline Dest bit_cast(const Source& source) {\n  // Compile time assertion: sizeof(Dest) == sizeof(Source)\n  // A compile error here means your Dest and Source have different sizes.\n  typedef char VerifySizesAreEqual [sizeof(Dest) == sizeof(Source) ? 1 : -1];\n\n  Dest dest;\n  memcpy(&dest, &source, sizeof(dest));\n  return dest;\n}\n\n#endif  // BASE_CASTS_H_\n"
  },
  {
    "path": "ext/cld/base/commandlineflags.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n// This is the file that should be included by any file which declares\n// or defines a command line flag or wants to parse command line flags\n// or print a program usage message (which will include information about\n// flags).  Executive summary, in the form of an example foo.cc file:\n//\n//    #include \"foo.h\"         // foo.h has a line \"DECLARE_int32(start);\"\n//\n//    DEFINE_int32(end, 1000, \"The last record to read\");\n//    DECLARE_bool(verbose);   // some other file has a DEFINE_bool(verbose, ...)\n//\n//    void MyFunc() {\n//      if (FLAGS_verbose) printf(\"Records %d-%d\\n\", FLAGS_start, FLAGS_end);\n//    }\n//\n//    Then, at the command-line:\n//       ./foo --noverbose --start=5 --end=100\n\n#ifndef BASE_COMMANDLINEFLAGS_H_\n#define BASE_COMMANDLINEFLAGS_H_\n\n#include <assert.h>\n#include <string>\n#include <vector>\n#include \"base/basictypes.h\"\n#include \"base/port.h\"\n#include \"base/stl_decl_msvc.h\"\n#include \"base/global_strip_options.h\"\n\n// --------------------------------------------------------------------\n// To actually define a flag in a file, use DEFINE_bool,\n// DEFINE_string, etc. at the bottom of this file.  You may also find\n// it useful to register a validator with the flag.  This ensures that\n// when the flag is parsed from the commandline, or is later set via\n// SetCommandLineOption, we call the validation function.\n//\n// The validation function should return true if the flag value is valid, and\n// false otherwise. If the function returns false for the new setting of the\n// flag, the flag will retain its current value. If it returns false for the\n// default value, InitGoogle will die.\n//\n// This function is safe to call at global construct time (as in the\n// example below).\n//\n// Example use:\n//    static bool ValidatePort(const char* flagname, int32 value) {\n//       if (value > 0 && value < 32768)   // value is ok\n//         return true;\n//       printf(\"Invalid value for --%s: %d\\n\", flagname, (int)value);\n//       return false;\n//    }\n//    DEFINE_int32(port, 0, \"What port to listen on\");\n//    static bool dummy = RegisterFlagValidator(&FLAGS_port, &ValidatePort);\n\n// Returns true if successfully registered, false if not (because the\n// first argument doesn't point to a command-line flag, or because a\n// validator is already registered for this flag).\nbool RegisterFlagValidator(const bool* flag,\n                           bool (*validate_fn)(const char*, bool));\nbool RegisterFlagValidator(const int32* flag,\n                           bool (*validate_fn)(const char*, int32));\nbool RegisterFlagValidator(const int64* flag,\n                           bool (*validate_fn)(const char*, int64));\nbool RegisterFlagValidator(const uint64* flag,\n                           bool (*validate_fn)(const char*, uint64));\nbool RegisterFlagValidator(const double* flag,\n                           bool (*validate_fn)(const char*, double));\nbool RegisterFlagValidator(const string* flag,\n                           bool (*validate_fn)(const char*, const string&));\n\n\n// --------------------------------------------------------------------\n// These methods are the best way to get access to info about the\n// list of commandline flags.  Note that these routines are pretty slow.\n//   GetAllFlags: mostly-complete info about the list, sorted by file.\n//   ShowUsageWithFlags: pretty-prints the list to stdout (what --help does)\n//   ShowUsageWithFlagsRestrict: limit to filenames with restrict as a substr\n//\n// In addition to accessing flags, you can also access argv[0] (the program\n// name) and argv (the entire commandline), which we sock away a copy of.\n// These variables are static, so you should only set them once.\n\nstruct CommandLineFlagInfo {\n  string name;            // the name of the flag\n  string type;            // the type of the flag: int32, etc\n  string description;     // the \"help text\" associated with the flag\n  string current_value;   // the current value, as a string\n  string default_value;   // the default value, as a string\n  string filename;        // 'cleaned' version of filename holding the flag\n  bool is_default;        // true if the flag has default value\n  bool has_validator_fn;  // true if RegisterFlagValidator called on this flag\n};\n\nextern void GetAllFlags(vector<CommandLineFlagInfo>* OUTPUT);\n// These two are actually defined in commandlineflags_reporting.cc.\nextern void ShowUsageWithFlags(const char *argv0);  // what --help does\nextern void ShowUsageWithFlagsRestrict(const char *argv0, const char *restrict);\n\n// Create a descriptive string for a flag.\n// Goes to some trouble to make pretty line breaks.\nextern string DescribeOneFlag(const CommandLineFlagInfo& flag);\n\n// Thread-hostile; meant to be called before any threads are spawned.\nextern void SetArgv(int argc, const char** argv);\n// The following functions are thread-safe as long as SetArgv() is\n// only called before any threads start.\nextern const vector<string>& GetArgvs();    // all of argv = vector of strings\nextern const char* GetArgv();               // all of argv as a string\nextern const char* GetArgv0();              // only argv0\nextern uint32 GetArgvSum();                 // simple checksum of argv\nextern const char* ProgramInvocationName(); // argv0, or \"UNKNOWN\" if not set\nextern const char* ProgramInvocationShortName();   // basename(argv0)\n// ProgramUsage() is thread-safe as long as SetUsageMessage() is only\n// called before any threads start.\nextern const char* ProgramUsage();          // string set by SetUsageMessage()\n\n\n// --------------------------------------------------------------------\n// Normally you access commandline flags by just saying \"if (FLAGS_foo)\"\n// or whatever, and set them by calling \"FLAGS_foo = bar\" (or, more\n// commonly, via the DEFINE_foo macro).  But if you need a bit more\n// control, we have programmatic ways to get/set the flags as well.\n// These programmatic ways to access flags are thread-safe, but direct\n// access is only thread-compatible.\n\n// Return true iff the flagname was found.\n// OUTPUT is set to the flag's value, or unchanged if we return false.\nextern bool GetCommandLineOption(const char* name, string* OUTPUT);\n\n// Return true iff the flagname was found. OUTPUT is set to the flag's\n// CommandLineFlagInfo or unchanged if we return false.\nextern bool GetCommandLineFlagInfo(const char* name,\n                                   CommandLineFlagInfo* OUTPUT);\n\n// Return the CommandLineFlagInfo of the flagname.  exit() if name not found.\n// Example usage, to check if a flag's value is currently the default value:\n//   if (GetCommandLineFlagInfoOrDie(\"foo\").is_default) ...\nextern CommandLineFlagInfo GetCommandLineFlagInfoOrDie(const char* name);\n\nenum FlagSettingMode {\n  // update the flag's value (can call this multiple times).\n  SET_FLAGS_VALUE,\n  // update the flag's value, but *only if* it has not yet been updated\n  // with SET_FLAGS_VALUE, SET_FLAG_IF_DEFAULT, or \"FLAGS_xxx = nondef\".\n  SET_FLAG_IF_DEFAULT,\n  // set the flag's default value to this.  If the flag has not yet updated\n  // yet (via SET_FLAGS_VALUE, SET_FLAG_IF_DEFAULT, or \"FLAGS_xxx = nondef\")\n  // change the flag's current value to the new default value as well.\n  SET_FLAGS_DEFAULT\n};\n\n// Set a particular flag (\"command line option\").  Returns a string\n// describing the new value that the option has been set to.  The\n// return value API is not well-specified, so basically just depend on\n// it to be empty if the setting failed for some reason -- the name is\n// not a valid flag name, or the value is not a valid value -- and\n// non-empty else.\n\n// SetCommandLineOption uses set_mode == SET_FLAGS_VALUE (the common case)\nextern string SetCommandLineOption(const char* name, const char* value);\nextern string SetCommandLineOptionWithMode(const char* name, const char* value,\n                                           FlagSettingMode set_mode);\n\n\n// --------------------------------------------------------------------\n// Saves the states (value, default value, whether the user has set\n// the flag, registered validators, etc) of all flags, and restores\n// them when the FlagSaver is destroyed.  This is very useful in\n// tests, say, when you want to let your tests change the flags, but\n// make sure that they get reverted to the original states when your\n// test is complete.\n//\n// Example usage:\n//   void TestFoo() {\n//     FlagSaver s1;\n//     FLAG_foo = false;\n//     FLAG_bar = \"some value\";\n//\n//     // test happens here.  You can return at any time\n//     // without worrying about restoring the FLAG values.\n//   }\n//\n// Note: This class is marked with ATTRIBUTE_UNUSED because all the\n// work is done in the constructor and destructor, so in the standard\n// usage example above, the compiler would complain that it's an\n// unused variable.\n//\n// This class is thread-safe.\n/*\nclass FlagSaver {\n public:\n  FlagSaver();\n  ~FlagSaver();\n\n private:\n  class FlagSaverImpl* impl_;   // we use pimpl here to keep API steady\n\n  FlagSaver(const FlagSaver&);  // no copying!\n  void operator=(const FlagSaver&);\n}\n#ifndef SWIG   // swig seems to have trouble with this for some reason\nATTRIBUTE_UNUSED\n#endif\n;\n*/\n// --------------------------------------------------------------------\n// Some deprecated or hopefully-soon-to-be-deprecated functions.\n\n// This is often used for logging.  TODO(csilvers): figure out a better way\nextern string CommandlineFlagsIntoString();\n// Usually where this is used, a FlagSaver should be used instead.\nextern bool ReadFlagsFromString(const string& flagfilecontents,\n                                const char* prog_name,\n                                bool errors_are_fatal); // uses SET_FLAGS_VALUE\n\n// These let you manually implement --flagfile functionality.\n// DEPRECATED.\nextern bool AppendFlagsIntoFile(const string& filename, const char* prog_name);\nextern bool SaveCommandFlags();  // actually defined in google.cc !\nextern bool ReadFromFlagsFile(const string& filename, const char* prog_name,\n                              bool errors_are_fatal);   // uses SET_FLAGS_VALUE\n\n\n// --------------------------------------------------------------------\n// Useful routines for initializing flags from the environment.\n// In each case, if 'varname' does not exist in the environment\n// return defval.  If 'varname' does exist but is not valid\n// (e.g., not a number for an int32 flag), abort with an error.\n// Otherwise, return the value.  NOTE: for booleans, for true use\n// 't' or 'T' or 'true' or '1', for false 'f' or 'F' or 'false' or '0'.\n\nextern bool BoolFromEnv(const char *varname, bool defval);\nextern int32 Int32FromEnv(const char *varname, int32 defval);\nextern int64 Int64FromEnv(const char *varname, int64 defval);\nextern uint64 Uint64FromEnv(const char *varname, uint64 defval);\nextern double DoubleFromEnv(const char *varname, double defval);\nextern const char *StringFromEnv(const char *varname, const char *defval);\n\n\n// --------------------------------------------------------------------\n// The next two functions parse commandlineflags from main():\n\n// Set the \"usage\" message for this program.  For example:\n//   string usage(\"This program does nothing.  Sample usage:\\n\");\n//   usage += argv[0] + \" <uselessarg1> <uselessarg2>\";\n//   SetUsageMessage(usage);\n// Do not include commandline flags in the usage: we do that for you!\n// Thread-hostile; meant to be called before any threads are spawned.\nextern void SetUsageMessage(const string& usage);\n\n// Looks for flags in argv and parses them.  Rearranges argv to put\n// flags first, or removes them entirely if remove_flags is true.\n// If a flag is defined more than once in the command line or flag\n// file, the last definition is used.\n// See top-of-file for more details on this function.\n#ifndef SWIG   // In swig, use ParseCommandLineFlagsScript() instead.\nextern uint32 ParseCommandLineFlags(int *argc, char*** argv,\n                                    bool remove_flags);\n#endif\n\n\n// Calls to ParseCommandLineNonHelpFlags and then to\n// HandleCommandLineHelpFlags can be used instead of a call to\n// ParseCommandLineFlags during initialization, in order to allow for\n// changing default values for some FLAGS (via\n// e.g. SetCommandLineOptionWithMode calls) between the time of\n// command line parsing and the time of dumping help information for\n// the flags as a result of command line parsing.\n// If a flag is defined more than once in the command line or flag\n// file, the last definition is used.\nextern uint32 ParseCommandLineNonHelpFlags(int *argc, char*** argv,\n                                           bool remove_flags);\n// This is actually defined in commandlineflags_reporting.cc.\n// This function is misnamed (it also handles --version, etc.), but\n// it's too late to change that now. :-(\nextern void HandleCommandLineHelpFlags();   // in commandlineflags_reporting.cc\n\n// Allow command line reparsing.  Disables the error normally\n// generated when an unknown flag is found, since it may be found in a\n// later parse.  Thread-hostile; meant to be called before any threads\n// are spawned.\nextern void AllowCommandLineReparsing();\n\n// Reparse the flags that have not yet been recognized.\n// Only flags registered since the last parse will be recognized.\n// Any flag value must be provided as part of the argument using \"=\",\n// not as a separate command line argument that follows the flag argument.\n// Intended for handling flags from dynamically loaded libraries,\n// since their flags are not registered until they are loaded.\nextern uint32 ReparseCommandLineNonHelpFlags();\n\n\n// --------------------------------------------------------------------\n// Now come the command line flag declaration/definition macros that\n// will actually be used.  They're kind of hairy.  A major reason\n// for this is initialization: we want people to be able to access\n// variables in global constructors and have that not crash, even if\n// their global constructor runs before the global constructor here.\n// (Obviously, we can't guarantee the flags will have the correct\n// default value in that case, but at least accessing them is safe.)\n// The only way to do that is have flags point to a static buffer.\n// So we make one, using a union to ensure proper alignment, and\n// then use placement-new to actually set up the flag with the\n// correct default value.  In the same vein, we have to worry about\n// flag access in global destructors, so FlagRegisterer has to be\n// careful never to destroy the flag-values it constructs.\n//\n// Note that when we define a flag variable FLAGS_<name>, we also\n// preemptively define a junk variable, FLAGS_no<name>.  This is to\n// cause a link-time error if someone tries to define 2 flags with\n// names like \"logging\" and \"nologging\".  We do this because a bool\n// flag FLAG can be set from the command line to true with a \"-FLAG\"\n// argument, and to false with a \"-noFLAG\" argument, and so this can\n// potentially avert confusion.\n//\n// We also put flags into their own namespace.  It is purposefully\n// named in an opaque way that people should have trouble typing\n// directly.  The idea is that DEFINE puts the flag in the weird\n// namespace, and DECLARE imports the flag from there into the current\n// namespace.  The net result is to force people to use DECLARE to get\n// access to a flag, rather than saying \"extern bool FLAGS_whatever;\"\n// or some such instead.  We want this so we can put extra\n// functionality (like sanity-checking) in DECLARE if we want, and\n// make sure it is picked up everywhere.\n//\n// We also put the type of the variable in the namespace, so that\n// people can't DECLARE_int32 something that they DEFINE_bool'd\n// elsewhere.\n\nclass FlagRegisterer {\n public:\n  FlagRegisterer(const char* name, const char* type,\n                 const char* help, const char* filename,\n                 void* current_storage, void* defvalue_storage);\n};\n\n#ifndef SWIG  // In swig, ignore the main flag declarations\n\n// If STRIP_FLAG_HELP is defined and is non-zero, we remove the help\n// message from the binary file. This is useful for security reasons\n// when shipping a binary outside of Google (if the user cannot see\n// the usage message by executing the program, they shouldn't be able\n// to see it by running \"strings binary_file\").\n\nextern const char kStrippedFlagHelp[];\n\n#if STRIP_FLAG_HELP > 0\n// Need this construct to avoid the 'defined but not used' warning.\n#define MAYBE_STRIPPED_HELP(txt) (false ? (txt) : kStrippedFlagHelp)\n#else\n#define MAYBE_STRIPPED_HELP(txt) txt\n#endif\n\n// Each command-line flag has two variables associated with it: one\n// with the current value, and one with the default value.  However,\n// we have a third variable, which is where value is assigned; it's a\n// constant.  This guarantees that FLAG_##value is initialized at\n// static initialization time (e.g. before program-start) rather than\n// than global construction time (which is after program-start but\n// before main), at least when 'value' is a compile-time constant.  We\n// use a small trick for the \"default value\" variable, and call it\n// FLAGS_no<name>.  This serves the second purpose of assuring a\n// compile error if someone tries to define a flag named no<name>\n// which is illegal (--foo and --nofoo both affect the \"foo\" flag).\n#define DEFINE_VARIABLE(type, shorttype, name, value, help) \\\n  namespace fL##shorttype {                                     \\\n    static const type FLAGS_nono##name = value;                 \\\n    type FLAGS_##name = FLAGS_nono##name;                       \\\n    type FLAGS_no##name = FLAGS_nono##name;                     \\\n    static FlagRegisterer o_##name(                             \\\n      #name, #type, MAYBE_STRIPPED_HELP(help), __FILE__,        \\\n      &FLAGS_##name, &FLAGS_no##name);                          \\\n  }                                                             \\\n  using fL##shorttype::FLAGS_##name\n\n#define DECLARE_VARIABLE(type, shorttype, name) \\\n  namespace fL##shorttype {                     \\\n    extern type FLAGS_##name;                   \\\n  }                                             \\\n  using fL##shorttype::FLAGS_##name\n\n// For boolean flags, we want to do the extra check that the passed-in\n// value is actually a bool, and not a string or something that can be\n// coerced to a bool.  These declarations (no definition needed!) will\n// help us do that, and never evaluate from, which is important.\n// We'll use 'sizeof(IsBool(val))' to distinguish.\nnamespace fLB {\ntemplate<typename From> double IsBoolFlag(const From& from);\nbool IsBoolFlag(bool from);\n}\nextern bool FlagsTypeWarn(const char *name);\n\n#define DECLARE_bool(name)          DECLARE_VARIABLE(bool,B, name)\n// We have extra code here to make sure 'val' is actually a boolean.\n#define DEFINE_bool(name,val,txt)   namespace fLB { \\\n                                      const bool FLAGS_nonono##name = \\\n                                        (sizeof(::fLB::IsBoolFlag(val)) \\\n                                        == sizeof(double)) \\\n                                        ? FlagsTypeWarn(#name) : true; \\\n                                    } \\\n                                    DEFINE_VARIABLE(bool,B, name, val, txt)\n#define DECLARE_int32(name)         DECLARE_VARIABLE(int32,I, name)\n#define DEFINE_int32(name,val,txt)  DEFINE_VARIABLE(int32,I, name, val, txt)\n\n#define DECLARE_int64(name)         DECLARE_VARIABLE(int64,I64, name)\n#define DEFINE_int64(name,val,txt)  DEFINE_VARIABLE(int64,I64, name, val, txt)\n\n#define DECLARE_uint64(name)        DECLARE_VARIABLE(uint64,U64, name)\n#define DEFINE_uint64(name,val,txt) DEFINE_VARIABLE(uint64,U64, name, val, txt)\n\n#define DECLARE_double(name)        DECLARE_VARIABLE(double,D, name)\n#define DEFINE_double(name,val,txt) DEFINE_VARIABLE(double,D, name, val, txt)\n\n// Strings are trickier, because they're not a POD, so we can't\n// construct them at static-initialization time (instead they get\n// constructed at global-constructor time, which is much later).  To\n// try to avoid crashes in that case, we use a char buffer to store\n// the string, which we can static-initialize, and then placement-new\n// into it later.  It's not perfect, but the best we can do.\n#define DECLARE_string(name)  namespace fLS { extern string& FLAGS_##name; } \\\n                              using fLS::FLAGS_##name\n\n// We need to define a var named FLAGS_no##name so people don't define\n// --string and --nostring.  And we need a temporary place to put val\n// so we don't have to evaluate it twice.  Two great needs that go\n// great together!\n#define DEFINE_string(name, val, txt)                                     \\\n  namespace fLS {                                                         \\\n    static union { void* align; char s[sizeof(string)]; } s_##name[2];    \\\n    const string* const FLAGS_no##name = new (s_##name[0].s) string(val); \\\n    static FlagRegisterer o_##name(                                       \\\n      #name, \"string\", MAYBE_STRIPPED_HELP(txt), __FILE__,                \\\n      s_##name[0].s, new (s_##name[1].s) string(*FLAGS_no##name));        \\\n    string& FLAGS_##name = *(reinterpret_cast<string*>(s_##name[0].s));   \\\n  }                                                                       \\\n  using fLS::FLAGS_##name\n\n#endif  // SWIG\n\n#endif  // BASE_COMMANDLINEFLAGS_H_\n"
  },
  {
    "path": "ext/cld/base/crash.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n// Support for collecting useful information when crashing.\n\n#ifndef BASE_CRASH_H_\n#define BASE_CRASH_H_\n\nnamespace base {\n\nstruct CrashReason {\n  CrashReason() : filename(0), line_number(0), message(0), depth(0) {}\n\n  const char* filename;\n  int line_number;\n  const char* message;\n\n  // We'll also store a bit of stack trace context at the time of crash as\n  // it may not be available later on.\n  void* stack[32];\n  int depth;\n\n  // We'll try to store some trace information if it's available - this should\n  // reflect information from TraceContext::Thread()->tracer()->ToString().\n  // This field should probably not be set from within a signal handler or\n  // low-level code unless absolutely safe to do so.\n  char trace_info[512];\n};\n\n// Stores \"reason\" as an explanation for why the process is about to\n// crash.  The reason and its contents must remain live for the life\n// of the process.  Only the first reason is kept.\nvoid SetCrashReason(const CrashReason* reason);\n\n// Returns first reason passed to SetCrashReason(), or NULL.\nconst CrashReason* GetCrashReason();\n\n}  // namespace base\n\n#endif  // BASE_CRASH_H_\n"
  },
  {
    "path": "ext/cld/base/dynamic_annotations.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n// This file defines dynamic annotations for use with dynamic analysis\n// tool such as valgrind, PIN, etc.\n//\n// Dynamic annotation is a source code annotation that affects\n// the generated code (that is, the annotation is not a comment).\n// Each such annotation is attached to a particular\n// instruction and/or to a particular object (address) in the program.\n//\n// The annotations that should be used by users are macros in all upper-case\n// (e.g., ANNOTATE_NEW_MEMORY).\n//\n// Actual implementation of these macros may differ depending on the\n// dynamic analysis tool being used.\n//\n// This file supports the following dynamic analysis tools:\n// - None (NDEBUG is defined).\n//    Macros are defined empty.\n// - Helgrind (NDEBUG is not defined).\n//    Macros are defined as calls to non-inlinable empty functions\n//    that are intercepted by helgrind.\n//\n#ifndef BASE_DYNAMIC_ANNOTATIONS_H_\n#define BASE_DYNAMIC_ANNOTATIONS_H_\n\n\n// All the annotation macros are in effect only in debug mode.\n#ifndef NDEBUG\n\n  // -------------------------------------------------------------\n  // Annotations useful when implementing condition variables such as CondVar,\n  // using conditional critical sections (Await/LockWhen) and when constructing\n  // user-defined synchronization mechanisms.\n  //\n  // The annotations ANNOTATE_HAPPENS_BEFORE() and ANNOTATE_HAPPENS_AFTER() can\n  // be used to define happens-before arcs in user-defined synchronization\n  // mechanisms:  the race detector will infer an arc from the former to the\n  // latter when they share the same argument pointer.\n  //\n  // Example 1 (reference counting):\n  //\n  // void Unref() {\n  //   ANNOTATE_HAPPENS_BEFORE(&refcount_);\n  //   if (AtomicDecrementByOne(&refcount_) == 0) {\n  //     ANNOTATE_HAPPENS_AFTER(&refcount_);\n  //     delete this;\n  //   }\n  // }\n  //\n  // Example 2 (message queue):\n  //\n  // void MyQueue::Put(Type *e) {\n  //   MutexLock lock(&mu_);\n  //   ANNOTATE_HAPPENS_BEFORE(e);\n  //   PutElementIntoMyQueue(e);\n  // }\n  //\n  // Type *MyQueue::Get() {\n  //   MutexLock lock(&mu_);\n  //   Type *e = GetElementFromMyQueue();\n  //   ANNOTATE_HAPPENS_AFTER(e);\n  //   return e;\n  // }\n  //\n  // Note: when possible, please use the existing reference counting and message\n  // queue implementations instead of inventing new ones.\n\n  // Report that wait on the condition variable at address \"cv\" has succeeded\n  // and the lock at address \"lock\" is held.\n  #define ANNOTATE_CONDVAR_LOCK_WAIT(cv, lock) \\\n    AnnotateCondVarWait(__FILE__, __LINE__, cv, lock)\n\n  // Report that wait on the condition variable at \"cv\" has succeeded.  Variant\n  // w/o lock.\n  #define ANNOTATE_CONDVAR_WAIT(cv) \\\n    AnnotateCondVarWait(__FILE__, __LINE__, cv, NULL)\n\n  // Report that we are about to signal on the condition variable at address\n  // \"cv\".\n  #define ANNOTATE_CONDVAR_SIGNAL(cv) \\\n    AnnotateCondVarSignal(__FILE__, __LINE__, cv)\n\n  // Report that we are about to signal_all on the condition variable at \"cv\".\n  #define ANNOTATE_CONDVAR_SIGNAL_ALL(cv) \\\n    AnnotateCondVarSignalAll(__FILE__, __LINE__, cv)\n\n  // Annotations for user-defined synchronization mechanisms.\n  #define ANNOTATE_HAPPENS_BEFORE(obj) ANNOTATE_CONDVAR_SIGNAL(obj)\n  #define ANNOTATE_HAPPENS_AFTER(obj)  ANNOTATE_CONDVAR_WAIT(obj)\n\n  // Report that the bytes in the range [pointer, pointer+size) are about\n  // to be published safely. The race checker will create a happens-before\n  // arc from the call ANNOTATE_PUBLISH_MEMORY_RANGE(pointer, size) to\n  // subsequent accesses to this memory.\n  #define ANNOTATE_PUBLISH_MEMORY_RANGE(pointer, size) \\\n    AnnotatePublishMemoryRange(__FILE__, __LINE__, pointer, size)\n\n  // Instruct the tool to create a happens-before arc between mu->Unlock() and\n  // mu->Lock().  This annotation may slow down the race detector; normally it\n  // is used only when it would be difficult to annotate each of the mutex's\n  // critical sections individually using the annotations above.\n  #define ANNOTATE_MUTEX_IS_USED_AS_CONDVAR(mu) \\\n    AnnotateMutexIsUsedAsCondVar(__FILE__, __LINE__, mu)\n\n  // -------------------------------------------------------------\n  // Annotations useful when defining memory allocators, or when memory that\n  // was protected in one way starts to be protected in another.\n\n  // Report that a new memory at \"address\" of size \"size\" has been allocated.\n  // This might be used when the memory has been retrieved from a free list and\n  // is about to be reused, or when a the locking discipline for a variable\n  // changes.\n  #define ANNOTATE_NEW_MEMORY(address, size) \\\n    AnnotateNewMemory(__FILE__, __LINE__, address, size)\n\n  // -------------------------------------------------------------\n  // Annotations useful when defining FIFO queues that transfer data between\n  // threads.\n\n  // Report that the producer-consumer queue (such as ProducerConsumerQueue) at\n  // address \"pcq\" has been created.  The ANNOTATE_PCQ_* annotations\n  // should be used only for FIFO queues.  For non-FIFO queues use\n  // ANNOTATE_HAPPENS_BEFORE (for put) and ANNOTATE_HAPPENS_AFTER (for get).\n  #define ANNOTATE_PCQ_CREATE(pcq) \\\n    AnnotatePCQCreate(__FILE__, __LINE__, pcq)\n\n  // Report that the queue at address \"pcq\" is about to be destroyed.\n  #define ANNOTATE_PCQ_DESTROY(pcq) \\\n    AnnotatePCQDestroy(__FILE__, __LINE__, pcq)\n\n  // Report that we are about to put an element into a FIFO queue at address\n  // \"pcq\".\n  #define ANNOTATE_PCQ_PUT(pcq) \\\n    AnnotatePCQPut(__FILE__, __LINE__, pcq)\n\n  // Report that we've just got an element from a FIFO queue at address \"pcq\".\n  #define ANNOTATE_PCQ_GET(pcq) \\\n    AnnotatePCQGet(__FILE__, __LINE__, pcq)\n\n  // -------------------------------------------------------------\n  // Annotations that suppress errors.  It is usually better to express the\n  // program's synchronization using the other annotations, but these can\n  // be used when all else fails.\n\n  // Report that we may have a benign race on at \"address\".\n  // Insert at the point where \"address\" has been allocated, preferably close\n  // to the point where the race happens.\n  // See also ANNOTATE_BENIGN_RACE_STATIC.\n  #define ANNOTATE_BENIGN_RACE(address, description) \\\n    AnnotateBenignRace(__FILE__, __LINE__, address, description)\n\n  // Request the analysis tool to ignore all reads in the current thread\n  // until ANNOTATE_IGNORE_READS_END is called.\n  // Useful to ignore intentional racey reads, while still checking\n  // other reads and all writes.\n  // See also ANNOTATE_UNPROTECTED_READ.\n  #define ANNOTATE_IGNORE_READS_BEGIN() \\\n    AnnotateIgnoreReadsBegin(__FILE__, __LINE__)\n\n  // Stop ignoring reads.\n  #define ANNOTATE_IGNORE_READS_END() \\\n    AnnotateIgnoreReadsEnd(__FILE__, __LINE__)\n\n  // Similar to ANNOTATE_IGNORE_READS_BEGIN, but ignore writes.\n  #define ANNOTATE_IGNORE_WRITES_BEGIN() \\\n    AnnotateIgnoreWritesBegin(__FILE__, __LINE__)\n\n  // Stop ignoring writes.\n  #define ANNOTATE_IGNORE_WRITES_END() \\\n    AnnotateIgnoreWritesEnd(__FILE__, __LINE__)\n\n  // Start ignoring all memory accesses (reads and writes).\n  #define ANNOTATE_IGNORE_READS_AND_WRITES_BEGIN() \\\n    do {\\\n      ANNOTATE_IGNORE_READS_BEGIN();\\\n      ANNOTATE_IGNORE_WRITES_BEGIN();\\\n    }while(0)\\\n\n  // Stop ignoring all memory accesses.\n  #define ANNOTATE_IGNORE_READS_AND_WRITES_END() \\\n    do {\\\n      ANNOTATE_IGNORE_WRITES_END();\\\n      ANNOTATE_IGNORE_READS_END();\\\n    }while(0)\\\n\n  // -------------------------------------------------------------\n  // Annotations useful for debugging.\n\n  // Request to trace every access to \"address\".\n  #define ANNOTATE_TRACE_MEMORY(address) \\\n    AnnotateTraceMemory(__FILE__, __LINE__, address)\n\n  // Report the current thread name to a race detector.\n  #define ANNOTATE_THREAD_NAME(name) \\\n    AnnotateThreadName(__FILE__, __LINE__, name)\n\n  // -------------------------------------------------------------\n  // Annotations useful when implementing locks.  They are not\n  // normally needed by modules that merely use locks.\n  // The \"lock\" argument is a pointer to the lock object.\n\n  // Report that a lock has been created at address \"lock\".\n  #define ANNOTATE_RWLOCK_CREATE(lock) \\\n    AnnotateRWLockCreate(__FILE__, __LINE__, lock)\n\n  // Report that the lock at address \"lock\" is about to be destroyed.\n  #define ANNOTATE_RWLOCK_DESTROY(lock) \\\n    AnnotateRWLockDestroy(__FILE__, __LINE__, lock)\n\n  // Report that the lock at address \"lock\" has been acquired.\n  // is_w=1 for writer lock, is_w=0 for reader lock.\n  #define ANNOTATE_RWLOCK_ACQUIRED(lock, is_w) \\\n    AnnotateRWLockAcquired(__FILE__, __LINE__, lock, is_w)\n\n  // Report that the lock at address \"lock\" is about to be released.\n  #define ANNOTATE_RWLOCK_RELEASED(lock, is_w) \\\n    AnnotateRWLockReleased(__FILE__, __LINE__, lock, is_w)\n\n  // -------------------------------------------------------------\n  // Annotations useful for testing race detectors.\n\n  // Report that we expect a race on the variable at \"address\".\n  // Use only in unit tests for a race detector.\n  #define ANNOTATE_EXPECT_RACE(address, description) \\\n    AnnotateExpectRace(__FILE__, __LINE__, address, description)\n\n  // A no-op. Insert where you like to test the interceptors.\n  #define ANNOTATE_NO_OP(arg) \\\n    AnnotateNoOp(__FILE__, __LINE__, arg)\n\n#else  // NDEBUG is defined\n\n  #define ANNOTATE_RWLOCK_CREATE(lock) // empty\n  #define ANNOTATE_RWLOCK_DESTROY(lock) // empty\n  #define ANNOTATE_RWLOCK_ACQUIRED(lock, is_w) // empty\n  #define ANNOTATE_RWLOCK_RELEASED(lock, is_w) // empty\n  #define ANNOTATE_CONDVAR_LOCK_WAIT(cv, lock) // empty\n  #define ANNOTATE_CONDVAR_WAIT(cv) // empty\n  #define ANNOTATE_CONDVAR_SIGNAL(cv) // empty\n  #define ANNOTATE_CONDVAR_SIGNAL_ALL(cv) // empty\n  #define ANNOTATE_HAPPENS_BEFORE(obj) // empty\n  #define ANNOTATE_HAPPENS_AFTER(obj) // empty\n  #define ANNOTATE_PUBLISH_MEMORY_RANGE(address, size) // empty\n  #define ANNOTATE_PUBLISH_OBJECT(address) // empty\n  #define ANNOTATE_PCQ_CREATE(pcq) // empty\n  #define ANNOTATE_PCQ_DESTROY(pcq) // empty\n  #define ANNOTATE_PCQ_PUT(pcq) // empty\n  #define ANNOTATE_PCQ_GET(pcq) // empty\n  #define ANNOTATE_NEW_MEMORY(address, size) // empty\n  #define ANNOTATE_EXPECT_RACE(address, description) // empty\n  #define ANNOTATE_BENIGN_RACE(address, description) // empty\n  #define ANNOTATE_MUTEX_IS_USED_AS_CONDVAR(mu) // empty\n  #define ANNOTATE_TRACE_MEMORY(arg) // empty\n  #define ANNOTATE_THREAD_NAME(name) // empty\n  #define ANNOTATE_IGNORE_READS_BEGIN() // empty\n  #define ANNOTATE_IGNORE_READS_END() // empty\n  #define ANNOTATE_IGNORE_WRITES_BEGIN() // empty\n  #define ANNOTATE_IGNORE_WRITES_END() // empty\n  #define ANNOTATE_IGNORE_READS_AND_WRITES_BEGIN() // empty\n  #define ANNOTATE_IGNORE_READS_AND_WRITES_END() // empty\n  #define ANNOTATE_NO_OP(arg) // empty\n\n#endif  // NDEBUG\n\n// Use the macros above rather than using these functions directly.\nextern \"C\" void AnnotateRWLockCreate(const char *file, int line,\n                                     const volatile void *lock);\nextern \"C\" void AnnotateRWLockDestroy(const char *file, int line,\n                                      const volatile void *lock);\nextern \"C\" void AnnotateRWLockAcquired(const char *file, int line,\n                                       const volatile void *lock, long is_w);\nextern \"C\" void AnnotateRWLockReleased(const char *file, int line,\n                                       const volatile void *lock, long is_w);\nextern \"C\" void AnnotateCondVarWait(const char *file, int line,\n                                    const volatile void *cv,\n                                    const volatile void *lock);\nextern \"C\" void AnnotateCondVarSignal(const char *file, int line,\n                                      const volatile void *cv);\nextern \"C\" void AnnotateCondVarSignalAll(const char *file, int line,\n                                         const volatile void *cv);\nextern \"C\" void AnnotatePublishMemoryRange(const char *file, int line,\n                                           const volatile void *address,\n                                           long size);\nextern \"C\" void AnnotatePCQCreate(const char *file, int line,\n                                  const volatile void *pcq);\nextern \"C\" void AnnotatePCQDestroy(const char *file, int line,\n                                   const volatile void *pcq);\nextern \"C\" void AnnotatePCQPut(const char *file, int line,\n                               const volatile void *pcq);\nextern \"C\" void AnnotatePCQGet(const char *file, int line,\n                               const volatile void *pcq);\nextern \"C\" void AnnotateNewMemory(const char *file, int line,\n                                  const volatile void *address,\n                                  long size);\nextern \"C\" void AnnotateExpectRace(const char *file, int line,\n                                   const volatile void *address,\n                                   const char *description);\nextern \"C\" void AnnotateBenignRace(const char *file, int line,\n                                   const volatile void *address,\n                                   const char *description);\nextern \"C\" void AnnotateMutexIsUsedAsCondVar(const char *file, int line,\n                                            const volatile void *mu);\nextern \"C\" void AnnotateTraceMemory(const char *file, int line,\n                                    const volatile void *arg);\nextern \"C\" void AnnotateThreadName(const char *file, int line,\n                                   const char *name);\nextern \"C\" void AnnotateIgnoreReadsBegin(const char *file, int line);\nextern \"C\" void AnnotateIgnoreReadsEnd(const char *file, int line);\nextern \"C\" void AnnotateIgnoreWritesBegin(const char *file, int line);\nextern \"C\" void AnnotateIgnoreWritesEnd(const char *file, int line);\nextern \"C\" void AnnotateNoOp(const char *file, int line,\n                             const volatile void *arg);\n\n#ifndef NDEBUG\n\n  // ANNOTATE_UNPROTECTED_READ is the preferred way to annotate racey reads.\n  //\n  // Instead of doing\n  //    ANNOTATE_IGNORE_READS_BEGIN();\n  //    ... = x;\n  //    ANNOTATE_IGNORE_READS_END();\n  // one can use\n  //    ... = ANNOTATE_UNPROTECTED_READ(x);\n  template <class T>\n  inline T ANNOTATE_UNPROTECTED_READ(const volatile T &x) {\n    ANNOTATE_IGNORE_READS_BEGIN();\n    T res = x;\n    ANNOTATE_IGNORE_READS_END();\n    return res;\n  }\n\n  // Apply ANNOTATE_BENIGN_RACE to a static variable.\n  #define ANNOTATE_BENIGN_RACE_STATIC(static_var, description)        \\\n    namespace {                                                       \\\n      class static_var ## _annotator {                                \\\n       public:                                                        \\\n        static_var ## _annotator() {                                  \\\n          ANNOTATE_BENIGN_RACE(&static_var,                           \\\n            # static_var \": \" description);                           \\\n        }                                                             \\\n      };                                                              \\\n      static static_var ## _annotator the ## static_var ## _annotator;\\\n    }\n#else // !NDEBUG\n\n  #define ANNOTATE_UNPROTECTED_READ(x) (x)\n  #define ANNOTATE_BENIGN_RACE_STATIC(static_var, description)  // empty\n\n#endif // !NDEBUG\n\n// Return non-zero value if running under valgrind.\nextern \"C\" int RunningOnValgrind();\n\n\n#endif  // BASE_DYNAMIC_ANNOTATIONS_H_\n"
  },
  {
    "path": "ext/cld/base/global_strip_options.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n// Macros for stripping unnecessary string literals from binaries\n// (especially for shipping outside of Google).\n\n#ifndef BASE_GLOBAL_STRIP_OPTIONS_H_\n#define BASE_GLOBAL_STRIP_OPTIONS_H_\n\n// The global value of STRIP_LOG. All the messages logged to LOG(XXX)\n// with severity less than STRIP_LOG will not be displayed. If it can\n// be determined at compile time that the message will not be printed,\n// the statement will be compiled out.  STRIP_LOG can be set to a value\n// between 0 and 4 where 0 logs all messages and 4 logs no messages.\n//\n// Example: to strip out all INFO and WARNING messages, use the value\n// of 2 below. To make an exception for WARNING messages from a single\n// file, add \"#define STRIP_LOG 1\" to that file _before_ including\n// base/logging.h\n//\n// Example: In addition it's possible to remove the dependency on the base\n// library if an executable or library currently only depends upon logging.\n//\n// # A library that only includes \"base/basictypes.h\" and \"base/logging.h\".\n// cc_library(name = \"mylibrary\",\n//            srcs = [ \"mymodule_that_logs.cc\" ],\n//            deps = [ \"//base\" ])\n//\n// The build rule for mylibrary can be modified as shown in the following...\n//\n// # A library with logging disabled.\n// cc_library(name = \"mylibrary_no_logging\",\n//            srcs = [ \"mymodule_that_logs.cc\",\n//                     \"/base:logging.h\" ],\n//            deps = [ \"//third_party/stl\" ],\n//            copts = [ \"-DSTRIP_LOG=4\" ] )\n//\n// Finally if it's desirable to strip all logging from an executable build\n// using...\n//\n// blaze build --copts=\"-DSTRIP_LOG=4\" //mypackage:mylabel\n\n\n#ifndef STRIP_LOG\n#define STRIP_LOG 0\n#endif\n\n// By setting STRIP_FLAG_HELP to 1, we will replace the usage messages\n// for command-line flags with \"\" (thus taking those string literals\n// out of the binary). To make an exception for flags DEFINE'd in a\n// certain file, add \"#define STRIP_FLAG_HELP 0\" to that file _before_\n// including base/commandlineflags.h\n\n#ifndef STRIP_FLAG_HELP\n#define STRIP_FLAG_HELP 0\n#endif\n\n#endif  // BASE_GLOBAL_STRIP_OPTIONS_H_\n"
  },
  {
    "path": "ext/cld/base/log_severity.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef BASE_LOG_SEVERITY_H_\n#define BASE_LOG_SEVERITY_H_\n\n#include \"base/port.h\"\n#include \"base/commandlineflags.h\"\n\n// Variables of type LogSeverity are widely taken to lie in the range\n// [0, NUM_SEVERITIES-1].  Be careful to preserve this assumption if\n// you ever need to change their values or add a new severity.\ntypedef int LogSeverity;\n\nconst int INFO = 0, WARNING = 1, ERROR = 2, FATAL = 3, NUM_SEVERITIES = 4;\n\n// DFATAL is FATAL in debug mode, ERROR in normal mode\n#ifdef NDEBUG\n#define DFATAL_LEVEL ERROR\n#else\n#define DFATAL_LEVEL FATAL\n#endif\n\nextern const char* const LogSeverityNames[NUM_SEVERITIES];\n\n// Some flags needed for VLOG and RAW_VLOG\nDECLARE_int32(v);\nDECLARE_bool(silent_init);\n\n// NDEBUG usage helpers related to (RAW_)DCHECK:\n//\n// DEBUG_MODE is for small !NDEBUG uses like\n//   if (DEBUG_MODE) foo.CheckThatFoo();\n// instead of substantially more verbose\n//   #ifndef NDEBUG\n//     foo.CheckThatFoo();\n//   #endif\n//\n#ifdef NDEBUG\nenum { DEBUG_MODE = 0 };\n#else\nenum { DEBUG_MODE = 1 };\n#endif\n\n#endif  // BASE_LOG_SEVERITY_H_\n"
  },
  {
    "path": "ext/cld/base/logging.h",
    "content": "// Copyright (c) 2011 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef _LOGGING_H_\n#define _LOGGING_H_\n\n#include <errno.h>\n#include <string.h>\n#include <time.h>\n#include <string>\n#include <strstream>\n#include <vector>\n\n#ifndef COMPILER_MSVC\n#include <unistd.h>   // for _exit()\n#endif\n\n#include \"base/port.h\"\n#include \"base/basictypes.h\"\n#include \"base/commandlineflags.h\"\n#include \"base/crash.h\"\n#include \"base/dynamic_annotations.h\"\n#include \"base/macros.h\"\n#include \"base/memory/scoped_ptr.h\"\n#include \"base/stl_decl_msvc.h\"\n#include \"base/log_severity.h\"\n#include \"base/vlog_is_on.h\"\n#include \"global_strip_options.h\"\n\n// Make a bunch of macros for logging.  The way to log things is to stream\n// things to LOG(<a particular severity level>).  E.g.,\n//\n//   LOG(INFO) << \"Found \" << num_cookies << \" cookies\";\n//\n// You can capture log messages in a string, rather than reporting them\n// immediately:\n//\n//   vector<string> errors;\n//   LOG_STRING(ERROR, &errors) << \"Couldn't parse cookie #\" << cookie_num;\n//\n// This pushes back the new error onto 'errors'; if given a NULL pointer,\n// it reports the error via LOG(ERROR).\n//\n// You can also do conditional logging:\n//\n//   LOG_IF(INFO, num_cookies > 10) << \"Got lots of cookies\";\n//\n// You can also do occasional logging (log every n'th occurrence of an\n// event):\n//\n//   LOG_EVERY_N(INFO, 10) << \"Got the \" << COUNTER << \"th cookie\";\n//\n// The above will cause log messages to be output on the 1st, 11th, 21st, ...\n// times it is executed.  Note that the special COUNTER value is used to\n// identify which repetition is happening.\n//\n// You can also do occasional conditional logging (log every n'th\n// occurrence of an event, when condition is satisfied):\n//\n//   LOG_IF_EVERY_N(INFO, (size > 1024), 10) << \"Got the \" << COUNTER\n//                                           << \"th big cookie\";\n//\n// You can log messages the first N times your code executes a line. E.g.\n//\n//   LOG_FIRST_N(INFO, 20) << \"Got the \" << COUNTER << \"th cookie\";\n//\n// Outputs log messages for the first 20 times it is executed.\n//\n// Analogous SYSLOG, SYSLOG_IF, and SYSLOG_EVERY_N macros are available.\n// These log to syslog as well as to the normal logs.  If you use these at\n// all, you need to be aware that syslog can drastically reduce performance,\n// especially if it is configured for remote logging!  Don't use these\n// unless you fully understand this and have a concrete need to use them.\n// Even then, try to minimize your use of them.\n//\n// There are also \"debug mode\" logging macros like the ones above:\n//\n//   DLOG(INFO) << \"Found cookies\";\n//\n//   DLOG_IF(INFO, num_cookies > 10) << \"Got lots of cookies\";\n//\n//   DLOG_EVERY_N(INFO, 10) << \"Got the \" << COUNTER << \"th cookie\";\n//\n// All \"debug mode\" logging is compiled away to nothing for non-debug mode\n// compiles.\n//\n// We also have\n//\n//   LOG_ASSERT(assertion);\n//   DLOG_ASSERT(assertion);\n//\n// which is syntactic sugar for {,D}LOG_IF(FATAL, assert fails) << assertion;\n//\n// We also override the standard 'assert' to use 'DLOG_ASSERT'.\n//\n// There are \"verbose level\" logging macros.  They look like\n//\n//   VLOG(1) << \"I'm printed when you run the program with --v=1 or more\";\n//   VLOG(2) << \"I'm printed when you run the program with --v=2 or more\";\n//\n// These always log at the INFO log level (when they log at all).\n// The verbose logging can also be turned on module-by-module.  For instance,\n//    --vmodule=recordio=2,file=1,gfs*=3 --v=0\n// will cause:\n//   a. VLOG(2) and lower messages to be printed from recordio.{h,cc}\n//   b. VLOG(1) and lower messages to be printed from google2file\n//   c. VLOG(3) and lower messages to be printed from files prefixed with \"gfs\"\n//   d. VLOG(0) and lower messages to be printed from elsewhere\n//\n// The wildcarding functionality shown by (c) supports both '*' (match\n// 0 or more characters) and '?' (match any single character) wildcards.\n//\n// There's also VLOG_IS_ON(n) \"verbose level\" condition macro. To be used as\n//\n//   if (VLOG_IS_ON(2)) {\n//     // do some logging preparation and logging\n//     // that can't be accomplished with just VLOG(2) << ...;\n//   }\n//\n// There are also VLOG_IF, VLOG_EVERY_N and VLOG_IF_EVERY_N \"verbose level\"\n// condition macros for sample cases, when some extra computation and\n// preparation for logs is not needed.\n//   VLOG_IF(1, (size > 1024))\n//      << \"I'm printed when size is more than 1024 and when you run the \"\n//         \"program with --v=1 or more\";\n//   VLOG_EVERY_N(1, 10)\n//      << \"I'm printed every 10th occurrence, and when you run the program \"\n//         \"with --v=1 or more. Present occurence is \" << COUNTER;\n//   VLOG_IF_EVERY_N(1, (size > 1024), 10)\n//      << \"I'm printed on every 10th occurence of case when size is more \"\n//         \" than 1024, when you run the program with --v=1 or more. \";\n//         \"Present occurence is \" << COUNTER;\n//\n// [MLOG is OBSOLETE - use the more convenient VLOG(n) macros]\n// There is also an MLOG option that enables module-level logging.  MLOG\n// is associated with a specific flag by defining a MODULE_FLAG macro.\n// Other than this, it behaves like VLOG.  Example:\n//    DEFINE_int32(dnsverbose, 0, \"Verbose level for DNS module\");\n//    #define MODULE_FLAG FLAGS_dnsverbose\n//    MLOG(1) << \"I'm printed when you run with --dnsverbose=1 or more\";\n//\n// The supported severity levels for macros that allow you to specify one\n// are (in increasing order of severity) INFO, WARNING, ERROR, and FATAL.\n// Note that messages of a given severity are logged not only in the\n// logfile for that severity, but also in all logfiles of lower severity.\n// E.g., a message of severity FATAL will be logged to the logfiles of\n// severity FATAL, ERROR, WARNING, and INFO.\n//\n// There is also the special severity of DFATAL, which logs FATAL in\n// debug mode, ERROR in normal mode.\n//\n// Very important: logging a message at the FATAL severity level causes\n// the program to terminate (after the message is logged).\n//\n// Unless otherwise specified, logs will be written to the filename\n// \"<program name>.<hostname>.<user name>.log.<severity level>.\", followed\n// by the date, time, and pid (you can't prevent the date, time, and pid\n// from being in the filename).\n//\n// The logging code takes two flags:\n//     --v=#           set the verbose level\n//     --logtostderr   log all the messages to stderr instead of to logfiles\n\n// LOG LINE PREFIX FORMAT\n//\n// Log lines have this form:\n//\n//     Lmmdd hh:mm:ss.uuuuuu threadid file:line] msg...\n//\n// where the fields are defined as follows:\n//\n//   L                A single character, representing the log level\n//                    (eg 'I' for INFO)\n//   mm               The month (zero padded; ie May is '05')\n//   dd               The day (zero padded)\n//   hh:mm:ss.uuuuuu  Time in hours, minutes and fractional seconds\n//   threadid         The space-padded thread ID as returned by GetTID()\n//                    (this matches the PID on Linux)\n//   file             The file name\n//   line             The line number\n//   msg              The user-supplied message\n//\n// Example:\n//\n//   I1103 11:57:31.739339 24395 google.cc:2341] Command line: ./some_prog\n//   I1103 11:57:31.739403 24395 google.cc:2342] Process id 24395\n//\n// NOTE: although the microseconds are useful for comparing events on\n// a single machine, clocks on different machines may not be well\n// synchronized.  Hence, use caution when comparing the low bits of\n// timestamps from different machines.\n\n// Set whether log messages go to stderr instead of logfiles\nDECLARE_bool(logtostderr);\n\n// Set whether log messages go to stderr in addition to logfiles.\nDECLARE_bool(alsologtostderr);\n\n// Log messages at a level >= this flag are automatically sent to\n// stderr in addition to log files.\nDECLARE_int32(stderrthreshold);\n\n// Set whether the log prefix should be prepended to each line of output.\nDECLARE_bool(log_prefix);\n\n// Log messages at a level <= this flag are buffered.\n// Log messages at a higher level are flushed immediately.\nDECLARE_int32(logbuflevel);\n\n// Sets the maximum number of seconds which logs may be buffered for.\nDECLARE_int32(logbufsecs);\n\n// Should Google1 logging be turned on?\nDECLARE_bool(logging);\n\n// Log suppression level: messages logged at a lower level than this\n// are suppressed.\nDECLARE_int32(minloglevel);\n\n// If specified, logfiles are written into this directory instead of the\n// default logging directory.\nDECLARE_string(log_dir);\n\n// Sets the path of the directory into which to put additional links\n// to the log files.\nDECLARE_string(log_link);\n\n// Sets the maximum log file size (in MB).\nDECLARE_int32(max_log_size);\n\n// Should log IO be directed to a background thread?  This flag has no\n// effect unless //thread/logger:logger is linked into the binary.\nDECLARE_bool(threaded_logging);\n\n// Set to cause StatusMessage() to write status to ./STATUS file.\nDECLARE_bool(status_messages_to_status_file);\n\n// Sets whether to avoid logging to the disk if the disk is full.\nDECLARE_bool(stop_logging_if_full_disk);\n\n// Log messages below the STRIP_LOG level will be compiled away for\n// security reasons. See LOG(severtiy) below. STRIP_LOG is defined in\n// //base/global_strip_log.h\n\n// A few definitions of macros that don't generate much code.  Since\n// LOG(INFO) and its ilk are used all over our code, it's\n// better to have compact code for these operations.\n\n#if STRIP_LOG == 0\n#define COMPACT_GOOGLE_LOG_INFO LogMessage(__FILE__, __LINE__)\n#define LOG_TO_STRING_INFO(message) LogMessage(__FILE__, __LINE__, INFO, \\\n                                               message)\n#else\n#define COMPACT_GOOGLE_LOG_INFO NullStream()\n#define LOG_TO_STRING_INFO(message) NullStream()\n#endif\n\n#if STRIP_LOG <= 1\n#define COMPACT_GOOGLE_LOG_WARNING LogMessage(__FILE__, __LINE__, WARNING)\n#define LOG_TO_STRING_WARNING(message) LogMessage(__FILE__, __LINE__, \\\n                                                  WARNING, message)\n#else\n#define COMPACT_GOOGLE_LOG_WARNING NullStream()\n#define LOG_TO_STRING_WARNING(message) NullStream()\n#endif\n\n#if STRIP_LOG <= 2\n#define COMPACT_GOOGLE_LOG_ERROR LogMessage(__FILE__, __LINE__, ERROR)\n#define LOG_TO_STRING_ERROR(message) LogMessage(__FILE__, __LINE__, ERROR, \\\n                                                message)\n#else\n#define COMPACT_GOOGLE_LOG_ERROR NullStream()\n#define LOG_TO_STRING_ERROR(message) NullStream()\n#endif\n\n#if STRIP_LOG <= 3\n#define COMPACT_GOOGLE_LOG_FATAL LogMessageFatal(__FILE__, __LINE__)\n#define COMPACT_GOOGLE_LOG_QFATAL LogMessageQuietlyFatal(__FILE__, __LINE__)\n#define LOG_TO_STRING_FATAL(message) LogMessage(__FILE__, __LINE__, FATAL, \\\n                                                message)\n#else\n#define COMPACT_GOOGLE_LOG_FATAL NullStreamFatal()\n#define COMPACT_GOOGLE_LOG_QFATAL NullStreamFatal()\n#define LOG_TO_STRING_FATAL(message) NullStreamFatal()\n#endif\n\n// For DFATAL, we want to use LogMessage (as opposed to\n// LogMessageFatal), to be consistent with the original behavior.\n#ifdef NDEBUG\n#define COMPACT_GOOGLE_LOG_DFATAL COMPACT_GOOGLE_LOG_ERROR\n#elif STRIP_LOG <= 3\n#define COMPACT_GOOGLE_LOG_DFATAL LogMessage(__FILE__, __LINE__, FATAL)\n#else\n#define COMPACT_GOOGLE_LOG_DFATAL NullStreamFatal()\n#endif\n\n#define GOOGLE_LOG_INFO(counter) \\\n  LogMessage(__FILE__, __LINE__, INFO, counter, &LogMessage::SendToLog)\n#define SYSLOG_INFO(counter) \\\n  LogMessage(__FILE__, __LINE__, INFO, counter, \\\n  &LogMessage::SendToSyslogAndLog)\n#define GOOGLE_LOG_WARNING(counter)  \\\n  LogMessage(__FILE__, __LINE__, WARNING, counter, &LogMessage::SendToLog)\n#define SYSLOG_WARNING(counter)  \\\n  LogMessage(__FILE__, __LINE__, WARNING, counter, \\\n  &LogMessage::SendToSyslogAndLog)\n#define GOOGLE_LOG_ERROR(counter)  \\\n  LogMessage(__FILE__, __LINE__, ERROR, counter, &LogMessage::SendToLog)\n#define SYSLOG_ERROR(counter)  \\\n  LogMessage(__FILE__, __LINE__, ERROR, counter, \\\n  &LogMessage::SendToSyslogAndLog)\n#define GOOGLE_LOG_FATAL(counter) \\\n  LogMessage(__FILE__, __LINE__, FATAL, counter, &LogMessage::SendToLog)\n#define SYSLOG_FATAL(counter) \\\n  LogMessage(__FILE__, __LINE__, FATAL, counter, \\\n  &LogMessage::SendToSyslogAndLog)\n#define GOOGLE_LOG_DFATAL(counter) \\\n  LogMessage(__FILE__, __LINE__, DFATAL_LEVEL, counter, &LogMessage::SendToLog)\n#define SYSLOG_DFATAL(counter) \\\n  LogMessage(__FILE__, __LINE__, DFATAL_LEVEL, counter, \\\n  &LogMessage::SendToSyslogAndLog)\n\n#ifdef OS_WINDOWS\n// A very useful logging macro to log windows errors:\n#define LOG_SYSRESULT(result) \\\n  if (FAILED(result)) { \\\n    LPTSTR message = NULL; \\\n    LPTSTR msg = reinterpret_cast<LPTSTR>(&message); \\\n    DWORD message_length = FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | \\\n                         FORMAT_MESSAGE_FROM_SYSTEM, \\\n                         0, result, 0, msg, 100, NULL); \\\n    if (message_length > 0) { \\\n      LogMessage(__FILE__, __LINE__, ERROR, 0, \\\n                 &LogMessage::SendToLog).stream() << message; \\\n      LocalFree(message); \\\n    } \\\n  }\n#endif\n\n// We use the preprocessor's merging operator, \"##\", so that, e.g.,\n// LOG(INFO) becomes the token GOOGLE_LOG_INFO.  There's some funny\n// subtle difference between ostream member streaming functions (e.g.,\n// ostream::operator<<(int) and ostream non-member streaming functions\n// (e.g., ::operator<<(ostream&, string&): it turns out that it's\n// impossible to stream something like a string directly to an unnamed\n// ostream. We employ a neat hack by calling the stream() member\n// function of LogMessage which seems to avoid the problem.\n#define LOG(severity) COMPACT_GOOGLE_LOG_ ## severity.stream()\n#define SYSLOG(severity) SYSLOG_ ## severity(0).stream()\n\n// A convenient shorthand\n#define LG LOG(INFO)\n\nclass LogSink;  // defined below\n\n// If a non-NULL sink pointer is given, we push this message to that sink.\n// For LOG_TO_SINK we then do normal LOG(severity) logging as well.\n// This is useful for capturing messages and passing/storing them\n// somewhere more specific than the global log of the process.\n// Argument types:\n//   LogSink* sink;\n//   LogSeverity severity;\n// The cast is to disambiguate NULL arguments.\n#define LOG_TO_SINK(sink, severity) \\\n  LogMessage(__FILE__, __LINE__, severity, \\\n             static_cast<LogSink*>(sink), true).stream()\n#define LOG_TO_SINK_BUT_NOT_TO_LOGFILE(sink, severity) \\\n  LogMessage(__FILE__, __LINE__, severity, \\\n             static_cast<LogSink*>(sink), false).stream()\n\n// If a non-NULL string pointer is given, we write this message to that string.\n// We then do normal LOG(severity) logging as well.\n// This is useful for capturing messages and storing them somewhere more\n// specific than the global log of the process.\n// Argument types:\n//   string* message;\n//   LogSeverity severity;\n// The cast is to disambiguate NULL arguments.\n// NOTE: LOG(severity) expands to LogMessage().stream() for the specified\n// severity.\n#define LOG_TO_STRING(severity, message) \\\n  LOG_TO_STRING_##severity(static_cast<string*>(message)).stream()\n\n// If a non-NULL pointer is given, we push the message onto the end\n// of a vector of strings; otherwise, we report it with LOG(severity).\n// This is handy for capturing messages and perhaps passing them back\n// to the caller, rather than reporting them immediately.\n// Argument types:\n//   LogSeverity severity;\n//   vector<string> *outvec;\n// The cast is to disambiguate NULL arguments.\n#define LOG_STRING(severity, outvec) \\\n  LOG_TO_STRING_##severity(static_cast<vector<string>*>(outvec)).stream()\n\n#define LOG_IF(severity, condition) \\\n  !(condition) ? (void) 0 : LogMessageVoidify() & LOG(severity)\n#define SYSLOG_IF(severity, condition) \\\n  !(condition) ? (void) 0 : LogMessageVoidify() & SYSLOG(severity)\n\n#define LOG_ASSERT(condition)  \\\n  LOG_IF(FATAL, !(condition)) << \"Assert failed: \" #condition\n#define SYSLOG_ASSERT(condition) \\\n  SYSLOG_IF(FATAL, !(condition)) << \"Assert failed: \" #condition\n\n// CHECK dies with a fatal error if condition is not true.  It is *not*\n// controlled by NDEBUG, so the check will be executed regardless of\n// compilation mode.  Therefore, it is safe to do things like:\n//    CHECK(fp->Write(x) == 4)\n#define CHECK(condition)  \\\n      LOG_IF(FATAL, PREDICT_FALSE(!(condition))) \\\n             << \"Check failed: \" #condition \" \"\n\n// QCHECK is a quiet version of CHECK. It has all of the same properties,\n// except that when it dies it simply prints out this message and doesn't\n// dump a giant stack trace, etc. This is good for tests like sanity-checking\n// user inputs, where your own failure message is really the only thing you\n// need or want to display.\n#define QCHECK(condition)  \\\n      LOG_IF(QFATAL, PREDICT_FALSE(!(condition))) \\\n             << \"Check failed: \" #condition \" \"\n\n// A container for a string pointer which can be evaluated to a bool -\n// true iff the pointer is NULL.\nstruct CheckOpString {\n  CheckOpString(string* str) : str_(str) { }\n  // No destructor: if str_ is non-NULL, we're about to LOG(FATAL),\n  // so there's no point in cleaning up str_.\n  operator bool() const { return PREDICT_FALSE(str_ != NULL); }\n  string* str_;\n};\n\n// Function is overloaded for integral types to allow static const\n// integrals declared in classes and not defined to be used as arguments to\n// CHECK* macros. It's not encouraged though.\ntemplate <class T>\ninline const T&       GetReferenceableValue(const T&           t) { return t; }\ninline char           GetReferenceableValue(char               t) { return t; }\ninline unsigned char  GetReferenceableValue(unsigned char      t) { return t; }\ninline signed char    GetReferenceableValue(signed char        t) { return t; }\ninline short          GetReferenceableValue(short              t) { return t; }\ninline unsigned short GetReferenceableValue(unsigned short     t) { return t; }\ninline int            GetReferenceableValue(int                t) { return t; }\ninline unsigned int   GetReferenceableValue(unsigned int       t) { return t; }\ninline long           GetReferenceableValue(long               t) { return t; }\ninline unsigned long  GetReferenceableValue(unsigned long      t) { return t; }\ninline long long      GetReferenceableValue(long long          t) { return t; }\ninline unsigned long long GetReferenceableValue(unsigned long long t) {\n  return t;\n}\n\n// Build the error message string.\ntemplate<class t1, class t2>\nstring* MakeCheckOpString(const t1& v1, const t2& v2, const char* names) {\n  strstream ss;\n  ss << names << \" (\" << v1 << \" vs. \" << v2 << \")\";\n  return new string(ss.str(), ss.pcount());\n}\n\n// Helper functions for CHECK_OP macro.\n// The (int, int) specialization works around the issue that the compiler\n// will not instantiate the template version of the function on values of\n// unnamed enum type - see comment below.\n#define DEFINE_CHECK_OP_IMPL(name, op) \\\n  template <class t1, class t2> \\\n  inline string* Check##name##Impl(const t1& v1, const t2& v2, \\\n                                   const char* names) { \\\n    if (v1 op v2) return NULL; \\\n    else return MakeCheckOpString(v1, v2, names); \\\n  } \\\n  inline string* Check##name##Impl(int v1, int v2, const char* names) { \\\n    return Check##name##Impl<int, int>(v1, v2, names); \\\n  }\n\n// Use _EQ, _NE, _LE, etc. in case the file including base/logging.h\n// provides its own #defines for the simpler names EQ, NE, LE, etc.\n// This happens if, for example, those are used as token names in a\n// yacc grammar.\nDEFINE_CHECK_OP_IMPL(_EQ, ==)\nDEFINE_CHECK_OP_IMPL(_NE, !=)\nDEFINE_CHECK_OP_IMPL(_LE, <=)\nDEFINE_CHECK_OP_IMPL(_LT, < )\nDEFINE_CHECK_OP_IMPL(_GE, >=)\nDEFINE_CHECK_OP_IMPL(_GT, > )\n#undef DEFINE_CHECK_OP_IMPL\n\n// Helper macro for binary operators.\n// Don't use this macro directly in your code, use CHECK_EQ et al below.\n\n#if defined(STATIC_ANALYSIS)\n// Only for static analysis tool to know that it is equivalent to assert\n#define CHECK_OP_LOG(name, op, val1, val2, log) CHECK((val1) op (val2))\n#elif !defined(NDEBUG)\n// In debug mode, avoid constructing CheckOpStrings if possible,\n// to reduce the overhead of CHECK statments by 2x.\n// Real DCHECK-heavy tests have seen 1.5x speedups.\n\n// The meaning of \"string\" might be different between now and\n// when this macro gets invoked (e.g., if someone is experimenting\n// with other string implementations that get defined after this\n// file is included).  Save the current meaning now and use it\n// in the macro.\ntypedef string _Check_string;\n#define CHECK_OP_LOG(name, op, val1, val2, log) \\\n  while (_Check_string* _result = \\\n         Check##name##Impl(GetReferenceableValue(val1), \\\n                           GetReferenceableValue(val2), \\\n                           #val1 \" \" #op \" \" #val2)) \\\n    log(__FILE__, __LINE__, CheckOpString(_result)).stream()\n#else\n// In optimized mode, use CheckOpString to hint to compiler that\n// the while condition is unlikely.\n#define CHECK_OP_LOG(name, op, val1, val2, log) \\\n  while (CheckOpString _result = \\\n         Check##name##Impl(GetReferenceableValue(val1), \\\n                           GetReferenceableValue(val2), \\\n                           #val1 \" \" #op \" \" #val2)) \\\n    log(__FILE__, __LINE__, _result).stream()\n#endif  // STATIC_ANALYSIS, !NDEBUG\n\n#if STRIP_LOG <= 3\n#define CHECK_OP(name, op, val1, val2) \\\n  CHECK_OP_LOG(name, op, val1, val2, LogMessageFatal)\n#else\n#define CHECK_OP(name, op, val1, val2) \\\n  CHECK_OP_LOG(name, op, val1, val2, NullStreamFatal)\n#endif // STRIP_LOG <= 3\n#define QCHECK_OP(name, op, val1, val2) \\\n  CHECK_OP_LOG(name, op, val1, val2, LogMessageQuietlyFatal)\n\n// Equality/Inequality checks - compare two values, and log a FATAL message\n// including the two values when the result is not as expected.  The values\n// must have operator<<(ostream, ...) defined.\n//\n// You may append to the error message like so:\n//   CHECK_NE(1, 2) << \": The world must be ending!\";\n//\n// We are very careful to ensure that each argument is evaluated exactly\n// once, and that anything which is legal to pass as a function argument is\n// legal here.  In particular, the arguments may be temporary expressions\n// which will end up being destroyed at the end of the apparent statement,\n// for example:\n//   CHECK_EQ(string(\"abc\")[1], 'b');\n//\n// WARNING: These don't compile correctly if one of the arguments is a pointer\n// and the other is NULL. To work around this, simply static_cast NULL to the\n// type of the desired pointer.\n\n#define CHECK_EQ(val1, val2) CHECK_OP(_EQ, ==, val1, val2)\n#define CHECK_NE(val1, val2) CHECK_OP(_NE, !=, val1, val2)\n#define CHECK_LE(val1, val2) CHECK_OP(_LE, <=, val1, val2)\n#define CHECK_LT(val1, val2) CHECK_OP(_LT, < , val1, val2)\n#define CHECK_GE(val1, val2) CHECK_OP(_GE, >=, val1, val2)\n#define CHECK_GT(val1, val2) CHECK_OP(_GT, > , val1, val2)\n\n#define QCHECK_EQ(val1, val2) QCHECK_OP(_EQ, ==, val1, val2)\n#define QCHECK_NE(val1, val2) QCHECK_OP(_NE, !=, val1, val2)\n#define QCHECK_LE(val1, val2) QCHECK_OP(_LE, <=, val1, val2)\n#define QCHECK_LT(val1, val2) QCHECK_OP(_LT, < , val1, val2)\n#define QCHECK_GE(val1, val2) QCHECK_OP(_GE, >=, val1, val2)\n#define QCHECK_GT(val1, val2) QCHECK_OP(_GT, > , val1, val2)\n\n\n// Check that the input is non NULL.  This very useful in constructor\n// initializer lists.\n\n#define CHECK_NOTNULL(val) \\\n  CheckNotNull(__FILE__, __LINE__, \"'\" #val \"' Must be non NULL\", (val))\n\n// Helper functions for string comparisons.\n// To avoid bloat, the definitions are in logging.cc.\n#define DECLARE_CHECK_STROP_IMPL(func, expected) \\\n  string* Check##func##expected##Impl(const char* s1, const char* s2, \\\n                                      const char* names);\nDECLARE_CHECK_STROP_IMPL(strcmp, true)\nDECLARE_CHECK_STROP_IMPL(strcmp, false)\nDECLARE_CHECK_STROP_IMPL(strcasecmp, true)\nDECLARE_CHECK_STROP_IMPL(strcasecmp, false)\n#undef DECLARE_CHECK_STROP_IMPL\n\n// Helper macro for string comparisons.\n// Don't use this macro directly in your code, use CHECK_STREQ et al below.\n#define CHECK_STROP(func, op, expected, s1, s2) \\\n  while (CheckOpString _result = \\\n         Check##func##expected##Impl((s1), (s2), \\\n                                     #s1 \" \" #op \" \" #s2)) \\\n    LOG(FATAL) << *_result.str_\n#define QCHECK_STROP(func, op, expected, s1, s2) \\\n  while (CheckOpString _result = \\\n         Check##func##expected##Impl((s1), (s2), \\\n                                     #s1 \" \" #op \" \" #s2)) \\\n    LOG(QFATAL) << *_result.str_\n\n\n// String (char*) equality/inequality checks.\n// CASE versions are case-insensitive.\n//\n// Note that \"s1\" and \"s2\" may be temporary strings which are destroyed\n// by the compiler at the end of the current \"full expression\"\n// (e.g. CHECK_STREQ(Foo().c_str(), Bar().c_str())).\n\n#define CHECK_STREQ(s1, s2) CHECK_STROP(strcmp, ==, true, s1, s2)\n#define CHECK_STRNE(s1, s2) CHECK_STROP(strcmp, !=, false, s1, s2)\n#define CHECK_STRCASEEQ(s1, s2) CHECK_STROP(strcasecmp, ==, true, s1, s2)\n#define CHECK_STRCASENE(s1, s2) CHECK_STROP(strcasecmp, !=, false, s1, s2)\n\n#define CHECK_INDEX(I,A) CHECK(I < (sizeof(A)/sizeof(A[0])))\n#define CHECK_BOUND(B,A) CHECK(B <= (sizeof(A)/sizeof(A[0])))\n\n#define QCHECK_STREQ(s1, s2) QCHECK_STROP(strcmp, ==, true, s1, s2)\n#define QCHECK_STRNE(s1, s2) QCHECK_STROP(strcmp, !=, false, s1, s2)\n#define QCHECK_STRCASEEQ(s1, s2) QCHECK_STROP(strcasecmp, ==, true, s1, s2)\n#define QCHECK_STRCASENE(s1, s2) QCHECK_STROP(strcasecmp, !=, false, s1, s2)\n\n#define QCHECK_INDEX(I,A) QCHECK(I < (sizeof(A)/sizeof(A[0])))\n#define QCHECK_BOUND(B,A) QCHECK(B <= (sizeof(A)/sizeof(A[0])))\n\n// Likely to be deprecated; instead use\n//   CHECK(MathUtil::NearByMargin(x, y))\n// (or another similar function from util/math/mathutil.h).\n#define CHECK_DOUBLE_EQ(val1, val2)              \\\n  do {                                           \\\n    CHECK_LE((val1), (val2)+0.000000000000001L); \\\n    CHECK_GE((val1), (val2)-0.000000000000001L); \\\n  } while (0)\n\n// Likely to be deprecated; instead use\n//   CHECK(MathUtil::WithinMargin(x, y, margin))\n// (or another similar function from util/math/mathutil.h).\n#define CHECK_NEAR(val1, val2, margin)           \\\n  do {                                           \\\n    CHECK_LE((val1), (val2)+(margin));           \\\n    CHECK_GE((val1), (val2)-(margin));           \\\n  } while (0)\n\n// perror()..googly style!\n//\n// PLOG() and PLOG_IF() and PCHECK() behave exactly like their LOG* and\n// CHECK equivalents with the addition that they postpend a description\n// of the current state of errno to their output lines.\n\n#define PLOG(severity) GOOGLE_PLOG(severity, 0).stream()\n\n#define GOOGLE_PLOG(severity, counter)  \\\n  ErrnoLogMessage(__FILE__, __LINE__, severity, counter, \\\n                  &LogMessage::SendToLog)\n\n#define PLOG_IF(severity, condition) \\\n  !(condition) ? (void) 0 : LogMessageVoidify() & PLOG(severity)\n\n// A CHECK() macro that postpends errno if the condition is false. E.g.\n//\n// if (poll(fds, nfds, timeout) == -1) { PCHECK(errno == EINTR); ... }\n#define PCHECK(condition)  \\\n      PLOG_IF(FATAL, PREDICT_FALSE(!(condition))) \\\n              << \"Check failed: \" #condition \" \"\n\n// A CHECK() macro that lets you assert the success of a function that\n// returns -1 and sets errno in case of an error. E.g.\n//\n// CHECK_ERR(mkdir(path, 0700));\n//\n// or\n//\n// int fd = open(filename, flags); CHECK_ERR(fd) << \": open \" << filename;\n#define CHECK_ERR(invocation)                                          \\\nPLOG_IF(FATAL, PREDICT_FALSE((invocation) == -1)) << #invocation\n\n// Use macro expansion to create, for each use of LOG_EVERY_N(), static\n// variables with the __LINE__ expansion as part of the variable name.\n#define LOG_EVERY_N_VARNAME(base, line) LOG_EVERY_N_VARNAME_CONCAT(base, line)\n#define LOG_EVERY_N_VARNAME_CONCAT(base, line) base ## line\n\n#define LOG_OCCURRENCES LOG_EVERY_N_VARNAME(occurrences_, __LINE__)\n#define LOG_OCCURRENCES_MOD_N LOG_EVERY_N_VARNAME(occurrences_mod_n_, __LINE__)\n\n#define SOME_KIND_OF_LOG_EVERY_N(severity, n, what_to_do) \\\n  static int LOG_OCCURRENCES = 0, LOG_OCCURRENCES_MOD_N = 0; \\\n  ++LOG_OCCURRENCES; \\\n  if (++LOG_OCCURRENCES_MOD_N > n) LOG_OCCURRENCES_MOD_N -= n; \\\n  if (LOG_OCCURRENCES_MOD_N == 1) \\\n    LogMessage(__FILE__, __LINE__, severity, LOG_OCCURRENCES, \\\n               &what_to_do).stream()\n\n#define SOME_KIND_OF_LOG_IF_EVERY_N(severity, condition, n, what_to_do) \\\n  static int LOG_OCCURRENCES = 0, LOG_OCCURRENCES_MOD_N = 0; \\\n  ANNOTATE_BENIGN_RACE(&LOG_OCCURRENCES, \"logging\"); \\\n  ANNOTATE_BENIGN_RACE(&LOG_OCCURRENCES_MOD_N, \"logging\"); \\\n  ++LOG_OCCURRENCES; \\\n  if (condition && \\\n      ((LOG_OCCURRENCES_MOD_N=(LOG_OCCURRENCES_MOD_N + 1) % n) == (1 % n))) \\\n    LogMessage(__FILE__, __LINE__, severity, LOG_OCCURRENCES, \\\n                 &what_to_do).stream()\n\n#define SOME_KIND_OF_PLOG_EVERY_N(severity, n, what_to_do) \\\n  static int LOG_OCCURRENCES = 0, LOG_OCCURRENCES_MOD_N = 0; \\\n  ANNOTATE_BENIGN_RACE(&LOG_OCCURRENCES, \"logging\"); \\\n  ANNOTATE_BENIGN_RACE(&LOG_OCCURRENCES_MOD_N, \"logging\"); \\\n  ++LOG_OCCURRENCES; \\\n  if (++LOG_OCCURRENCES_MOD_N > n) LOG_OCCURRENCES_MOD_N -= n; \\\n  if (LOG_OCCURRENCES_MOD_N == 1) \\\n    ErrnoLogMessage(__FILE__, __LINE__, severity, LOG_OCCURRENCES, \\\n                    &what_to_do).stream()\n\n#define SOME_KIND_OF_LOG_FIRST_N(severity, n, what_to_do) \\\n  static int LOG_OCCURRENCES = 0; \\\n  ANNOTATE_BENIGN_RACE(&LOG_OCCURRENCES, \"logging\"); \\\n  if (LOG_OCCURRENCES <= n) \\\n    ++LOG_OCCURRENCES; \\\n  if (LOG_OCCURRENCES <= n) \\\n    LogMessage(__FILE__, __LINE__, severity, LOG_OCCURRENCES, \\\n               &what_to_do).stream()\n\n#define LOG_EVERY_N(severity, n) \\\n  COMPILE_ASSERT(severity < NUM_SEVERITIES, \\\n                 INVALID_REQUESTED_LOG_SEVERITY); \\\n  SOME_KIND_OF_LOG_EVERY_N(severity, (n), LogMessage::SendToLog)\n\n#define SYSLOG_EVERY_N(severity, n) \\\n  SOME_KIND_OF_LOG_EVERY_N(severity, (n), LogMessage::SendToSyslogAndLog)\n\n#define PLOG_EVERY_N(severity, n) \\\n  SOME_KIND_OF_PLOG_EVERY_N(severity, (n), LogMessage::SendToLog)\n\n#define LOG_FIRST_N(severity, n) \\\n  SOME_KIND_OF_LOG_FIRST_N(severity, (n), LogMessage::SendToLog)\n\n#define LOG_IF_EVERY_N(severity, condition, n) \\\n  SOME_KIND_OF_LOG_IF_EVERY_N(severity, (condition), (n), LogMessage::SendToLog)\n\n// We want the special COUNTER value available for LOG_EVERY_X()'ed messages\nenum PRIVATE_Counter {COUNTER};\n\n\n// Plus some debug-logging macros that get compiled to nothing for production\n\n#ifndef NDEBUG\n\n#define DLOG(severity) LOG(severity)\n#define DVLOG(verboselevel) VLOG(verboselevel)\n#define DLOG_IF(severity, condition) LOG_IF(severity, condition)\n#define DLOG_EVERY_N(severity, n) LOG_EVERY_N(severity, n)\n#define DLOG_IF_EVERY_N(severity, condition, n) \\\n  LOG_IF_EVERY_N(severity, condition, n)\n#define DLOG_ASSERT(condition) LOG_ASSERT(condition)\n\n// debug-only checking.  not executed in NDEBUG mode.\n#define DCHECK(condition) CHECK(condition)\n#define DCHECK_EQ(val1, val2) CHECK_EQ(val1, val2)\n#define DCHECK_NE(val1, val2) CHECK_NE(val1, val2)\n#define DCHECK_LE(val1, val2) CHECK_LE(val1, val2)\n#define DCHECK_LT(val1, val2) CHECK_LT(val1, val2)\n#define DCHECK_GE(val1, val2) CHECK_GE(val1, val2)\n#define DCHECK_GT(val1, val2) CHECK_GT(val1, val2)\n#define DCHECK_STREQ(str1, str2) CHECK_STREQ(str1, str2)\n#define DCHECK_STRCASEEQ(str1, str2) CHECK_STRCASEEQ(str1, str2)\n#define DCHECK_STRNE(str1, str2) CHECK_STRNE(str1, str2)\n#define DCHECK_STRCASENE(str1, str2) CHECK_STRCASENE(str1, str2)\n\n#else  // NDEBUG\n\n#define DLOG(severity) \\\n  true ? (void) 0 : LogMessageVoidify() & LOG(severity)\n\n#define DVLOG(verboselevel) \\\n  (true || !VLOG_IS_ON(verboselevel)) ?\\\n    (void) 0 : LogMessageVoidify() & LOG(INFO)\n\n#define DLOG_IF(severity, condition) \\\n  (true || !(condition)) ? (void) 0 : LogMessageVoidify() & LOG(severity)\n\n#define DLOG_EVERY_N(severity, n) \\\n  true ? (void) 0 : LogMessageVoidify() & LOG(severity)\n\n#define DLOG_IF_EVERY_N(severity, condition, n) \\\n  (true || !(condition))? (void) 0 : LogMessageVoidify() & LOG(severity)\n\n#define DLOG_ASSERT(condition) \\\n  true ? (void) 0 : LOG_ASSERT(condition)\n\n#define DCHECK(condition) \\\n  while (false) \\\n    CHECK(condition)\n\n#define DCHECK_EQ(val1, val2) \\\n  while (false) \\\n    CHECK_EQ(val1, val2)\n\n#define DCHECK_NE(val1, val2) \\\n  while (false) \\\n    CHECK_NE(val1, val2)\n\n#define DCHECK_LE(val1, val2) \\\n  while (false) \\\n    CHECK_LE(val1, val2)\n\n#define DCHECK_LT(val1, val2) \\\n  while (false) \\\n    CHECK_LT(val1, val2)\n\n#define DCHECK_GE(val1, val2) \\\n  while (false) \\\n    CHECK_GE(val1, val2)\n\n#define DCHECK_GT(val1, val2) \\\n  while (false) \\\n    CHECK_GT(val1, val2)\n\n#define DCHECK_STREQ(str1, str2) \\\n  while (false) \\\n    CHECK_STREQ(str1, str2)\n\n#define DCHECK_STRCASEEQ(str1, str2) \\\n  while (false) \\\n    CHECK_STRCASEEQ(str1, str2)\n\n#define DCHECK_STRNE(str1, str2) \\\n  while (false) \\\n    CHECK_STRNE(str1, str2)\n\n#define DCHECK_STRCASENE(str1, str2) \\\n  while (false) \\\n    CHECK_STRCASENE(str1, str2)\n\n\n#endif  // NDEBUG\n\n// Log only in verbose mode.\n\n#define VLOG(verboselevel) LOG_IF(INFO, VLOG_IS_ON(verboselevel))\n\n#define VLOG_IF(verboselevel, condition) \\\n  LOG_IF(INFO, (condition) && VLOG_IS_ON(verboselevel))\n\n#define VLOG_EVERY_N(verboselevel, n) \\\n  LOG_IF_EVERY_N(INFO, VLOG_IS_ON(verboselevel), n)\n\n#define VLOG_IF_EVERY_N(verboselevel, condition, n) \\\n  LOG_IF_EVERY_N(INFO, (condition) && VLOG_IS_ON(verboselevel), n)\n\n\n// [MLOG is OBSOLETE - use the more convenient VLOG(n) macros]\n// Log only when a module-specific value (MODULE_FLAG) has a specific\n// value.  MODULE_FLAG must be a macro that evaluates to the name of\n// the flag that you wish to use.  You should '#define MODULE_FLAG\n// <variable name>' before using this macro.  (For example:\n//       #define MODULE_FLAG FLAGS_dnsverbose\n#define MLOG(verboselevel) LOG_IF(INFO, MODULE_FLAG >= (verboselevel))\n\n// Redefine the standard assert to use our nice log files\n#undef assert\n#define assert(x) DLOG_ASSERT(x)\n\n//\n// This class more or less represents a particular log message.  You\n// create an instance of LogMessage and then stream stuff to it.\n// When you finish streaming to it, ~LogMessage is called and the\n// full message gets streamed to the appropriate destination.\n//\n// You shouldn't actually use LogMessage's constructor to log things,\n// though.  You should use the LOG() macro (and variants thereof)\n// above.\nclass LogMessage {\npublic:\n  enum {\n    // Passing kNoLogPrefix for the line number disables the\n    // log-message prefix. Useful for using the LogMessage\n    // infrastructure as a printing utility. See also the --log_prefix\n    // flag for controlling the log-message prefix on an\n    // application-wide basis.\n    kNoLogPrefix = -1\n  };\n\n  class LogStream : public ostrstream {\n  public:\n    LogStream(char *buf, int len, int ctr)\n      : ostrstream(buf, len),\n        ctr_(ctr) {\n      self_ = this;\n    }\n\n    int ctr() const { return ctr_; }\n    void set_ctr(int ctr) { ctr_ = ctr; }\n    LogStream* self() const { return self_; }\n\n  private:\n    int ctr_;  // Counter hack (for the LOG_EVERY_X() macro)\n    LogStream *self_;  // Consistency check hack\n  };\n\npublic:\n  // icc 8 requires this typedef to avoid an internal compiler error.\n  typedef void (LogMessage::*SendMethod)();\n\n  LogMessage(const char* file, int line, LogSeverity severity, int ctr,\n             SendMethod send_method);\n\n  // Two special constructors that generate reduced amounts of code at\n  // LOG call sites for common cases.\n\n  // Used for LOG(INFO): Implied are:\n  // severity = INFO, ctr = 0, send_method = &LogMessage::SendToLog.\n  //\n  // Using this constructor instead of the more complex constructor above\n  // saves 19 bytes per call site.\n  LogMessage(const char* file, int line);\n\n  // Used for LOG(severity) where severity != INFO.  Implied\n  // are: ctr = 0, send_method = &LogMessage::SendToLog\n  //\n  // Using this constructor instead of the more complex constructor above\n  // saves 17 bytes per call site.\n  LogMessage(const char* file, int line, LogSeverity severity);\n\n  // Constructor to log this message to a specified sink (if not NULL).\n  // Implied are: ctr = 0, send_method = &LogMessage::SendToSinkAndLog if\n  // also_send_to_log is true, send_method = &LogMessage::SendToSink otherwise.\n  LogMessage(const char* file, int line, LogSeverity severity, LogSink* sink,\n             bool also_send_to_log);\n\n  // Constructor where we also give a vector<string> pointer\n  // for storing the messages (if the pointer is not NULL).\n  // Implied are: ctr = 0, send_method = &LogMessage::SaveOrSendToLog.\n  LogMessage(const char* file, int line, LogSeverity severity,\n             vector<string>* outvec);\n\n  // Constructor where we also give a string pointer for storing the\n  // message (if the pointer is not NULL).  Implied are: ctr = 0,\n  // send_method = &LogMessage::WriteToStringAndLog.\n  LogMessage(const char* file, int line, LogSeverity severity,\n             string* message);\n\n  // A special constructor used for check failures\n  LogMessage(const char* file, int line, const CheckOpString& result);\n\n  ~LogMessage();\n\n  // Flush a buffered message to the sink set in the constructor.  Always\n  // called by the destructor, it may also be called from elsewhere if\n  // needed.  Only the first call is actioned; any later ones are ignored.\n  void Flush();\n\n  // An arbitrary limit on the length of a single log message.  This\n  // is so that streaming can be done more efficiently.\n  static const size_t kMaxLogMessageLen;\n\n  // Theses should not be called directly outside of logging.*,\n  // only passed as SendMethod arguments to other LogMessage methods:\n  void SendToLog();  // Actually dispatch to the logs\n  void SendToSyslogAndLog();  // Actually dispatch to syslog and the logs\n\n  // Call abort() or similar to perform LOG(FATAL) crash.\n  // Writes current stack trace to stderr.\n  static void Fail() ATTRIBUTE_NORETURN;\n\n  // Same as Fail(), but without writing out the stack trace.\n  // It is assumed that the caller has already generated and\n  // written the trace as appropriate.\n  static void FailWithoutStackTrace() ATTRIBUTE_NORETURN;\n\n  // Similar to FailWithoutStackTrace(), but without abort()ing.\n  // Terminates the process with error exit code.\n  static void FailQuietly() ATTRIBUTE_NORETURN;\n\n  ostream& stream() { return *(data_->stream_); }\n\n  int preserved_errno() const { return data_->preserved_errno_; }\n\n  // Must be called without the log_mutex held.  (L < log_mutex)\n  static int64 num_messages(int severity);\n\nprivate:\n  // Fully internal SendMethod cases:\n  void SendToSinkAndLog();  // Send to sink if provided and dispatch to the logs\n  void SendToSink();  // Send to sink if provided, do nothing otherwise.\n\n  // Write to string if provided and dispatch to the logs.\n  void WriteToStringAndLog();\n\n  void SaveOrSendToLog();  // Save to stringvec if provided, else to logs\n\n  void Init(const char* file, int line, LogSeverity severity,\n            void (LogMessage::*send_method)());\n\n  // Used to fill in crash information during LOG(FATAL) failures.\n  void RecordCrashReason(base::CrashReason* reason);\n\n  // Counts of messages sent at each priority:\n  static int64 num_messages_[NUM_SEVERITIES];  // under log_mutex\n\n  // We keep the data in a separate struct so that each instance of\n  // LogMessage uses less stack space.\n  struct LogMessageData {\n    LogMessageData() {};\n\n    int preserved_errno_;         // errno at Init() time\n    scoped_array<char> buf_;      // buffer space for non FATAL messages\n    char* message_text_;          // Complete message text\n    scoped_ptr<LogStream> stream_alloc_;\n    LogStream* stream_;\n    char severity_;               // level of LogMessage (ex. I, W, E, F)\n    int line_;                    // line number of file that called LOG\n    void (LogMessage::*send_method_)();  // Call this in destructor to send\n    union {  // At most one of these is used: union to keep the size low.\n      LogSink* sink_;             // NULL or sink to send message to\n      vector<string>* outvec_;    // NULL or vector to push message onto\n      string* message_;           // NULL or string to write message into\n    };\n    time_t timestamp_;            // Time of creation of LogMessage\n    struct tm tm_time_;           // Time of creation of LogMessage\n    size_t num_prefix_chars_;     // # of chars of prefix in this message\n    size_t num_chars_to_log_;     // # of chars of msg to send to log\n    size_t num_chars_to_syslog_;  // # of chars of msg to send to syslog\n    const char* basename_;        // basename of file that called LOG\n    const char* fullname_;        // fullname of file that called LOG\n    bool has_been_flushed_;       // false => data has not been flushed\n    bool first_fatal_;            // true => this was first fatal msg\n\n   private:\n    DISALLOW_EVIL_CONSTRUCTORS(LogMessageData);\n  };\n\n  static LogMessageData fatal_msg_data_exclusive_;\n  static LogMessageData fatal_msg_data_shared_;\n\n  scoped_ptr<LogMessageData> allocated_;\n  LogMessageData* data_;\n\n  friend class LogDestination;\n\n  DISALLOW_EVIL_CONSTRUCTORS(LogMessage);\n\nprotected:\n  // Default false; if true, all failures should be as quiet as possible. This\n  // is stored in LogMessage, rather than LogMessageData, because all FATAL-\n  // level handlers share the same LogMessageData for signal safety reasons.\n  bool fail_quietly_;\n};\n\n// This class happens to be thread-hostile because all instances share\n// a single data buffer, but since it can only be created just before\n// the process dies, we don't worry so much.\nclass LogMessageFatal : public LogMessage {\n public:\n  LogMessageFatal(const char* file, int line);\n  LogMessageFatal(const char* file, int line, const CheckOpString& result);\n  ~LogMessageFatal() ATTRIBUTE_NORETURN;\n};\n\nclass LogMessageQuietlyFatal : public LogMessage {\n public:\n  LogMessageQuietlyFatal(const char* file, int line);\n  LogMessageQuietlyFatal(const char* file, int line,\n                         const CheckOpString& result);\n  ~LogMessageQuietlyFatal() ATTRIBUTE_NORETURN;\n};\n\n// A non-macro interface to the log facility; (useful\n// when the logging level is not a compile-time constant).\ninline void LogAtLevel(int const severity, string const &msg) {\n  LogMessage(__FILE__, __LINE__, severity).stream() << msg;\n}\n\n// A macro alternative of LogAtLevel. New code may want to use this\n// version since there are two advantages: 1. this version outputs the\n// file name and the line number where this macro is put like other\n// LOG macros, 2. this macro can be used as C++ stream.\n#define LOG_AT_LEVEL(severity) LogMessage(__FILE__, __LINE__, severity).stream()\n\n// Helpers for CHECK_NOTNULL(). Two are necessary to support both raw pointers\n// and smart pointers.\ntemplate <typename T>\nT* CheckNotNull(const char *file, int line, const char *names, T* t) {\n  return CheckNotNullCommon(file, line, names, t);\n}\n\ntemplate <typename T>\nT& CheckNotNull(const char *file, int line, const char *names, T& t) {\n  return CheckNotNullCommon(file, line, names, t);\n}\n\ntemplate <typename T>\nT& CheckNotNullCommon(const char *file, int line, const char *names, T& t) {\n  if (t == NULL) {\n    LogMessageFatal(file, line, new string(names));\n  }\n  return t;\n}\n\n// Allow folks to put a counter in the LOG_EVERY_X()'ed messages. This\n// only works if ostream is a LogStream. If the ostream is not a\n// LogStream you'll get an assert saying as much at runtime.\nostream& operator<<(ostream &os, const PRIVATE_Counter&);\n\n\n// We need to be able to stream DocIds.  But if DocIds are the same as\n// a built-in type, don't try to redefine things that are already\n// defined!\n#ifndef NDEBUG\ninline ostream& operator<<(ostream& o, const DocId& d) {\n  return (o << DocidForPrintf(d));\n}\n\ninline ostream& operator<<(ostream& o, const DocId32Bit& d) {\n  return (o << Docid32BitForPrintf(d));\n}\n#endif  // NDEBUG\n\n\n// Derived class for PLOG*() above.\nclass ErrnoLogMessage : public LogMessage {\n public:\n\n  ErrnoLogMessage(const char* file, int line, LogSeverity severity, int ctr,\n                  void (LogMessage::*send_method)());\n\n  // Postpends \": strerror(errno) [errno]\".\n  ~ErrnoLogMessage();\n\n private:\n\n  DISALLOW_EVIL_CONSTRUCTORS(ErrnoLogMessage);\n};\n\n\n// This class is used to explicitly ignore values in the conditional\n// logging macros.  This avoids compiler warnings like \"value computed\n// is not used\" and \"statement has no effect\".\n\nclass LogMessageVoidify {\n public:\n  LogMessageVoidify() { }\n  // This has to be an operator with a precedence lower than << but\n  // higher than ?:\n  void operator&(ostream&) { }\n};\n\n\n// Flushes all log files that contains messages that are at least of\n// the specified severity level.  Thread-safe.\nvoid FlushLogFiles(LogSeverity min_severity);\n\n// Flushes all log files that contains messages that are at least of\n// the specified severity level. Thread-hostile because it ignores\n// locking -- used for catastrophic failures.\nvoid FlushLogFilesUnsafe(LogSeverity min_severity);\n\n//\n// Set the destination to which a particular severity level of log\n// messages is sent.  If base_filename is \"\", it means \"don't log this\n// severity\".  Thread-safe.\n//\nvoid SetLogDestination(LogSeverity severity, const char* base_filename);\n\n//\n// Set the basename of the symlink to the latest log file at a given\n// severity.  If symlink_basename is empty, do not make a symlink.  If\n// you don't call this function, the symlink basename is the\n// invocation name of the program.  Thread-safe.\n//\nvoid SetLogSymlink(LogSeverity severity, const char* symlink_basename);\n\n//\n// Used to send logs to some other kind of destination\n// Users should subclass LogSink and override send to do whatever they want.\n// Implementations must be thread-safe because a shared instance will\n// be called from whichever thread ran the LOG(XXX) line.\nclass LogSink {\n public:\n  virtual ~LogSink();\n\n  // Sink's logging logic (message_len is such as to exclude '\\n' at the end).\n  // This method can't use LOG() or CHECK() as logging system mutex(s) are held\n  // during this call.\n  virtual void send(LogSeverity severity, const char* full_filename,\n                    const char* base_filename, int line,\n                    const struct tm* tm_time,\n                    const char* message, size_t message_len) = 0;\n\n  // Redefine this to implement waiting for\n  // the sink's logging logic to complete.\n  // It will be called after each send() returns,\n  // but before that LogMessage exits or crashes.\n  // By default this function does nothing.\n  // Using this function one can implement complex logic for send()\n  // that itself involves logging; and do all this w/o causing deadlocks and\n  // inconsistent rearrangement of log messages.\n  // E.g. if a LogSink has thread-specific actions, the send() method\n  // can simply add the message to a queue and wake up another thread that\n  // handles real logging while itself making some LOG() calls;\n  // WaitTillSent() can be implemented to wait for that logic to complete.\n  // See our unittest for an example.\n  virtual void WaitTillSent();\n\n  // Returns the normal text output of the log message.\n  // Can be useful to implement send().\n  static string ToString(LogSeverity severity, const char* file, int line,\n                         const struct tm* tm_time,\n                         const char* message, size_t message_len);\n};\n\n// Add or remove a LogSink as a consumer of logging data.  Thread-safe.\nvoid AddLogSink(LogSink *destination);\nvoid RemoveLogSink(LogSink *destination);\n\n//\n// Specify an \"extension\" added to the filename specified via\n// SetLogDestination.  This applies to all severity levels.  It's\n// often used to append the port we're listening on to the logfile\n// name.  Thread-safe.\n//\nvoid SetLogFilenameExtension(const char* filename_extension);\n\n//\n// Make it so that all log messages of at least a particular severity\n// are logged to stderr (in addition to logging to the usual log\n// file(s)).  Thread-safe.\n//\nvoid SetStderrLogging(LogSeverity min_severity);\n\n//\n// Make it so that all log messages go only to stderr.  Thread-safe.\n//\nvoid LogToStderr();\n\n//\n// Make it so that all log messages of at least a particular severity are\n// logged via email to a list of addresses (in addition to logging to the\n// usual log file(s)).  The list of addresses is just a string containing\n// the email addresses to send to (separated by spaces, say).\n//\n// Beyond thread-hostile.  This function enables email logging,\n// which calls popen() if any log messages are actually mailed.\n// A multi-thread program which calls this function, even in a single thread,\n// will randomly hang if it logs any messages which are mailed.\nvoid SetEmailLogging(LogSeverity min_severity, const char* addresses);\n\n//\n// Generate a special \"status\" message.  This will be useful to\n// monitoring scripts that want to know about the progress of\n// a long-running program.  The two supplied arguments should have\n// identical units.  The \"done\" argument says how much work has\n// been completed, and the \"total\" argument says how much total\n// work has to be done.  Thread-hostile if\n// FLAGS_status_messages_to_status_file.  Thread-safe otherwise.\n//\nvoid StatusMessage(int64 done, int64 total);\n\n// Like StatusMessage(), only writes the status to the file ./STATUS\n// Intended to make life easier for processes running on the global\n// work queue, where the standard status message file is ./STATUS.\n// Thread-hostile.\nvoid GWQStatusMessage(const char* msg);\n\n// A simple function that sends email. dest is a comma-separated\n// list of addressess.\n//\n// Beyond thread-hostile.  This function calls popen().\n// A multi-thread program which calls this function, even in a single thread,\n// will randomly hang.\nbool SendEmail(const char*dest, const char *subject, const char*body);\n\n// Return the set of directories to try generating a log file into.\n// Thread-hostile, but expected to only be called from InitGoogle.\nconst vector<string>& GetLoggingDirectories();\n\n// For tests only:  Clear the internal [cached] list of logging directories to\n// force a refresh the next time GetLoggingDirectories is called.\n// Thread-hostile.\nvoid TestOnly_ClearLoggingDirectoriesList();\n\n// Returns a set of existing temporary directories, which will be a\n// subset of the directories returned by GetLogginDirectories().\n// Thread-safe.\nvoid GetExistingTempDirectories(vector<string>* list);\n\n// Print any fatal message again -- useful to call from signal handler\n// so that the last thing in the output is the fatal message.\n// Thread-hostile, but a race is unlikely.\nvoid ReprintFatalMessage();\n\n// Truncate a log file that may be the append-only output of multiple\n// processes and hence can't simply be renamed/reopened (typically a\n// stdout/stderr).  If the file \"path\" is > \"limit\" bytes, copy the\n// last \"keep\" bytes to offset 0 and truncate the rest. Since we could\n// be racing with other writers, this approach has the potential to\n// lose very small amounts of data. For security, only follow symlinks\n// if the path is /proc/self/fd/*\nvoid TruncateLogFile(const char *path, int64 limit, int64 keep);\n\n// Truncate stdout and stderr if they are over the value specified by\n// --max_log_size; keep the final 1MB.  This function has the same\n// race condition as TruncateLogFile.\nvoid TruncateStdoutStderr();\n\n// Return the string representation of the provided LogSeverity level.\n// Thread-safe.\nconst char* GetLogSeverityName(LogSeverity severity);\n\n// ---------------------------------------------------------------------\n// Implementation details that are not useful to most clients\n// ---------------------------------------------------------------------\n\n// A Logger is the interface used by logging modules (base/logging.cc\n// and file/logging/blog.cc) to emit entries to a log.  A typical\n// implementation will dump formatted data to a sequence of files.  We\n// also provide interfaces that will forward the data to another\n// thread so that the invoker never blocks.  Implementations should be\n// thread-safe since the logging system will write to them from\n// multiple threads.\n\nnamespace base {\n\nclass Logger {\n public:\n  virtual ~Logger();\n\n  // Writes \"message[0,message_len-1]\" corresponding to an event that\n  // occurred at \"timestamp\".  If \"force_flush\" is true, the log file\n  // is flushed immediately.\n  //\n  // The input message has already been formatted as deemed\n  // appropriate by the higher level logging facility.  For example,\n  // textual log messages already contain timestamps, and the\n  // file:linenumber header.\n  virtual void Write(bool force_flush,\n                     time_t timestamp,\n                     const char* message,\n                     int message_len) = 0;\n\n  // Flush any buffered messages\n  virtual void Flush() = 0;\n\n  // Get the current LOG file size.\n  // The returned value is approximate since some\n  // logged data may not have been flushed to disk yet.\n  virtual uint32 LogSize() = 0;\n};\n\n// Get the logger for the specified severity level.  The logger\n// remains the property of the logging module and should not be\n// deleted by the caller.  Thread-safe.\nextern Logger* GetLogger(LogSeverity level);\n\n// Set the logger for the specified severity level.  The logger\n// becomes the property of the logging module and should not\n// be deleted by the caller.  Thread-safe.\nextern void SetLogger(LogSeverity level, Logger* logger);\n\n}\n\n// glibc has traditionally implemented two incompatible versions of\n// strerror_r(). There is a poorly defined convention for picking the\n// version that we want, but it is not clear whether it even works with\n// all versions of glibc.\n// So, instead, we provide this wrapper that automatically detects the\n// version that is in use, and then implements POSIX semantics.\n// N.B. In addition to what POSIX says, we also guarantee that \"buf\" will\n// be set to an empty string, if this function failed. This means, in most\n// cases, you do not need to check the error code and you can directly\n// use the value of \"buf\". It will never have an undefined value.\nint posix_strerror_r(int err, char *buf, size_t len);\n\n\n// A class for which we define operator<<, which does nothing.\nclass NullStream : public LogMessage::LogStream {\n public:\n  // Initialize the LogStream so the messages can be written somewhere\n  // (they'll never be actually displayed). This will be needed if a\n  // NullStream& is implicitly converted to LogStream&, in which case\n  // the overloaded NullStream::operator<< will not be invoked.\n  NullStream() : LogMessage::LogStream(message_buffer_, 1, 0) { }\n  NullStream(const char* /*file*/, int /*line*/,\n             const CheckOpString& /*result*/) :\n      LogMessage::LogStream(message_buffer_, 1, 0) { }\n  NullStream &stream() { return *this; }\n private:\n  // A very short buffer for messages (which we discard anyway). This\n  // will be needed if NullStream& converted to LogStream& (e.g. as a\n  // result of a conditional expression).\n  char message_buffer_[2];\n};\n\n// Do nothing. This operator is inline, allowing the message to be\n// compiled away. The message will not be compiled away if we do\n// something like (flag ? LOG(INFO) : LOG(ERROR)) << message; when\n// SKIP_LOG=WARNING. In those cases, NullStream will be implicitly\n// converted to LogStream and the message will be computed and then\n// quietly discarded.\ntemplate<class T>\ninline NullStream& operator<<(NullStream &str, const T &value) { return str; }\n\n// Similar to NullStream, but aborts the program (without stack\n// trace), like LogMessageFatal.\nclass NullStreamFatal : public NullStream {\n public:\n  NullStreamFatal() { }\n  NullStreamFatal(const char* file, int line, const CheckOpString& result) :\n      NullStream(file, line, result) { }\n  ~NullStreamFatal() ATTRIBUTE_NORETURN { _exit(1); }\n};\n\n#endif // _LOGGING_H_\n"
  },
  {
    "path": "ext/cld/base/macros.h",
    "content": "// Copyright (c) 2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n//\n// Various Google-specific macros.\n//\n// This code is compiled directly on many platforms, including client\n// platforms like Windows, Mac, and embedded systems.  Before making\n// any changes here, make sure that you're not breaking any platforms.\n//\n\n#ifndef BASE_MACROS_H_\n#define BASE_MACROS_H_\n\n#include <stddef.h>         // For size_t\n\n#include \"base/type_traits.h\"\n\n\n// The COMPILE_ASSERT macro can be used to verify that a compile time\n// expression is true. For example, you could use it to verify the\n// size of a static array:\n//\n//   COMPILE_ASSERT(ARRAYSIZE(content_type_names) == CONTENT_NUM_TYPES,\n//                  content_type_names_incorrect_size);\n//\n// or to make sure a struct is smaller than a certain size:\n//\n//   COMPILE_ASSERT(sizeof(foo) < 128, foo_too_large);\n//\n// The second argument to the macro is the name of the variable. If\n// the expression is false, most compilers will issue a warning/error\n// containing the name of the variable.\n\n#define COMPILE_ASSERT(expr, msg) \\\n  typedef CompileAssert<(bool(expr))> msg[bool(expr) ? 1 : -1]\n\n// Implementation details of COMPILE_ASSERT:\n//\n// - COMPILE_ASSERT works by defining an array type that has -1\n//   elements (and thus is invalid) when the expression is false.\n//\n// - The simpler definition\n//\n//     #define COMPILE_ASSERT(expr, msg) typedef char msg[(expr) ? 1 : -1]\n//\n//   does not work, as gcc supports variable-length arrays whose sizes\n//   are determined at run-time (this is gcc's extension and not part\n//   of the C++ standard).  As a result, gcc fails to reject the\n//   following code with the simple definition:\n//\n//     int foo;\n//     COMPILE_ASSERT(foo, msg); // not supposed to compile as foo is\n//                               // not a compile-time constant.\n//\n// - By using the type CompileAssert<(bool(expr))>, we ensures that\n//   expr is a compile-time constant.  (Template arguments must be\n//   determined at compile-time.)\n//\n// - The outter parentheses in CompileAssert<(bool(expr))> are necessary\n//   to work around a bug in gcc 3.4.4 and 4.0.1.  If we had written\n//\n//     CompileAssert<bool(expr)>\n//\n//   instead, these compilers will refuse to compile\n//\n//     COMPILE_ASSERT(5 > 0, some_message);\n//\n//   (They seem to think the \">\" in \"5 > 0\" marks the end of the\n//   template argument list.)\n//\n// - The array size is (bool(expr) ? 1 : -1), instead of simply\n//\n//     ((expr) ? 1 : -1).\n//\n//   This is to avoid running into a bug in MS VC 7.1, which\n//   causes ((0.0) ? 1 : -1) to incorrectly evaluate to 1.\n\n\n// A macro to disallow the copy constructor and operator= functions\n// This should be used in the private: declarations for a class\n//\n// For disallowing only assign or copy, write the code directly, but declare\n// the intend in a comment, for example:\n// void operator=(const TypeName&);  // DISALLOW_ASSIGN\n// Note, that most uses of DISALLOW_ASSIGN and DISALLOW_COPY are broken\n// semantically, one should either use disallow both or neither. Try to\n// avoid these in new code.\n#define DISALLOW_COPY_AND_ASSIGN(TypeName) \\\n  TypeName(const TypeName&);               \\\n  void operator=(const TypeName&)\n\n// An older, politically incorrect name for the above.\n// Prefer DISALLOW_COPY_AND_ASSIGN for new code.\n#define DISALLOW_EVIL_CONSTRUCTORS(TypeName) DISALLOW_COPY_AND_ASSIGN(TypeName)\n\n// A macro to disallow all the implicit constructors, namely the\n// default constructor, copy constructor and operator= functions.\n//\n// This should be used in the private: declarations for a class\n// that wants to prevent anyone from instantiating it. This is\n// especially useful for classes containing only static methods.\n#define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \\\n  TypeName();                                    \\\n  DISALLOW_COPY_AND_ASSIGN(TypeName)\n\n// The arraysize(arr) macro returns the # of elements in an array arr.\n// The expression is a compile-time constant, and therefore can be\n// used in defining new arrays, for example.  If you use arraysize on\n// a pointer by mistake, you will get a compile-time error.\n//\n// One caveat is that arraysize() doesn't accept any array of an\n// anonymous type or a type defined inside a function.  In these rare\n// cases, you have to use the unsafe ARRAYSIZE() macro below.  This is\n// due to a limitation in C++'s template system.  The limitation might\n// eventually be removed, but it hasn't happened yet.\n\n// This template function declaration is used in defining arraysize.\n// Note that the function doesn't need an implementation, as we only\n// use its type.\ntemplate <typename T, size_t N>\nchar (&ArraySizeHelper(T (&array)[N]))[N];\n\n// That gcc wants both of these prototypes seems mysterious. VC, for\n// its part, can't decide which to use (another mystery). Matching of\n// template overloads: the final frontier.\n#ifndef COMPILER_MSVC\ntemplate <typename T, size_t N>\nchar (&ArraySizeHelper(const T (&array)[N]))[N];\n#endif\n\n#define arraysize(array) (sizeof(ArraySizeHelper(array)))\n\n// ARRAYSIZE performs essentially the same calculation as arraysize,\n// but can be used on anonymous types or types defined inside\n// functions.  It's less safe than arraysize as it accepts some\n// (although not all) pointers.  Therefore, you should use arraysize\n// whenever possible.\n//\n// The expression ARRAYSIZE(a) is a compile-time constant of type\n// size_t.\n//\n// ARRAYSIZE catches a few type errors.  If you see a compiler error\n//\n//   \"warning: division by zero in ...\"\n//\n// when using ARRAYSIZE, you are (wrongfully) giving it a pointer.\n// You should only use ARRAYSIZE on statically allocated arrays.\n//\n// The following comments are on the implementation details, and can\n// be ignored by the users.\n//\n// ARRAYSIZE(arr) works by inspecting sizeof(arr) (the # of bytes in\n// the array) and sizeof(*(arr)) (the # of bytes in one array\n// element).  If the former is divisible by the latter, perhaps arr is\n// indeed an array, in which case the division result is the # of\n// elements in the array.  Otherwise, arr cannot possibly be an array,\n// and we generate a compiler error to prevent the code from\n// compiling.\n//\n// Since the size of bool is implementation-defined, we need to cast\n// !(sizeof(a) & sizeof(*(a))) to size_t in order to ensure the final\n// result has type size_t.\n//\n// This macro is not perfect as it wrongfully accepts certain\n// pointers, namely where the pointer size is divisible by the pointee\n// size.  Since all our code has to go through a 32-bit compiler,\n// where a pointer is 4 bytes, this means all pointers to a type whose\n// size is 3 or greater than 4 will be (righteously) rejected.\n//\n// Kudos to Jorg Brown for this simple and elegant implementation.\n//\n// - wan 2005-11-16\n//\n// Starting with Visual C++ 2005, WinNT.h includes ARRAYSIZE.\n#if !defined(COMPILER_MSVC) || (defined(_MSC_VER) && _MSC_VER < 1400)\n#define ARRAYSIZE(a) \\\n  ((sizeof(a) / sizeof(*(a))) / \\\n   static_cast<size_t>(!(sizeof(a) % sizeof(*(a)))))\n#endif\n\n// A macro to turn a symbol into a string\n#define AS_STRING(x)   AS_STRING_INTERNAL(x)\n#define AS_STRING_INTERNAL(x)   #x\n\n\n// One of the type traits, is_pod, makes it possible to query whether\n// a type is a POD type. It is impossible for type_traits.h to get\n// this right without compiler support, so it fails conservatively. It\n// knows that fundamental types and pointers are PODs, but it can't\n// tell whether user classes are PODs. The DECLARE_POD macro is used\n// to inform the type traits library that a user class is a POD.\n//\n// Implementation note: the typedef at the end is just to make it legal\n// to put a semicolon after DECLARE_POD(foo).\n//\n//\n// So what's a POD?  The C++ standard (clause 9 paragraph 4) gives a\n// full definition, but a good rule of thumb is that a struct is a POD\n// (\"plain old data\") if it doesn't use any of the features that make\n// C++ different from C.  A POD struct can't have constructors,\n// destructors, assignment operators, base classes, private or\n// protected members, or virtual functions, and all of its member\n// variables must themselves be PODs.\n\n#define DECLARE_POD(TypeName)                       \\\nnamespace base {                                    \\\ntemplate<> struct is_pod<TypeName> : true_type { }; \\\n}                                                   \\\ntypedef int Dummy_Type_For_DECLARE_POD              \\\n\n// We once needed a different technique to assert that a nested class\n// is a POD. This is no longer necessary, and DECLARE_NESTED_POD is\n// just a synonym for DECLARE_POD. We continue to provide\n// DECLARE_NESTED_POD only so we don't have to change client\n// code. Regardless of whether you use DECLARE_POD or\n// DECLARE_NESTED_POD: use it after the outer class. Using it within a\n// class definition will give a compiler error.\n#define DECLARE_NESTED_POD(TypeName) DECLARE_POD(TypeName)\n\n// Declare that TemplateName<T> is a POD whenever T is\n#define PROPAGATE_POD_FROM_TEMPLATE_ARGUMENT(TemplateName)             \\\nnamespace base {                                                       \\\ntemplate <typename T> struct is_pod<TemplateName<T> > : is_pod<T> { }; \\\n}                                                                      \\\ntypedef int Dummy_Type_For_PROPAGATE_POD_FROM_TEMPLATE_ARGUMENT\n\n// Macro that does nothing if TypeName is a POD, and gives a compiler\n// error if TypeName is a non-POD.  You should put a descriptive\n// comment right next to the macro call so that people can tell what\n// the compiler error is about.\n//\n// Implementation note: this works by taking the size of a type that's\n// complete when TypeName is a POD and incomplete otherwise.\n\ntemplate <typename Boolean> struct ERROR_TYPE_MUST_BE_POD;\ntemplate <> struct ERROR_TYPE_MUST_BE_POD<base::true_type> { };\n#define ENFORCE_POD(TypeName)                                             \\\n  enum { dummy_##TypeName                                                 \\\n           = sizeof(ERROR_TYPE_MUST_BE_POD<                               \\\n                      typename base::is_pod<TypeName>::type>) }\n\n#endif  // BASE_MACROS_H_\n"
  },
  {
    "path": "ext/cld/base/port.h",
    "content": "// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef BASE_PORT_H_\n#define BASE_PORT_H_\n\n#include <stdarg.h>\n#include \"base/build_config.h\"\n\n#ifdef COMPILER_MSVC\n#define GG_LONGLONG(x) x##I64\n#define GG_ULONGLONG(x) x##UI64\n#else\n#define GG_LONGLONG(x) x##LL\n#define GG_ULONGLONG(x) x##ULL\n#endif\n\n// Per C99 7.8.14, define __STDC_CONSTANT_MACROS before including <stdint.h>\n// to get the INTn_C and UINTn_C macros for integer constants.  It's difficult\n// to guarantee any specific ordering of header includes, so it's difficult to\n// guarantee that the INTn_C macros can be defined by including <stdint.h> at\n// any specific point.  Provide GG_INTn_C macros instead.\n\n#define GG_INT8_C(x)    (x)\n#define GG_INT16_C(x)   (x)\n#define GG_INT32_C(x)   (x)\n#define GG_INT64_C(x)   GG_LONGLONG(x)\n\n#define GG_UINT8_C(x)   (x ## U)\n#define GG_UINT16_C(x)  (x ## U)\n#define GG_UINT32_C(x)  (x ## U)\n#define GG_UINT64_C(x)  GG_ULONGLONG(x)\n\n// It's possible for functions that use a va_list, such as StringPrintf, to\n// invalidate the data in it upon use.  The fix is to make a copy of the\n// structure before using it and use that copy instead.  va_copy is provided\n// for this purpose.  MSVC does not provide va_copy, so define an\n// implementation here.  It is not guaranteed that assignment is a copy, so the\n// StringUtil.VariableArgsFunc unit test tests this capability.\n#if defined(COMPILER_GCC)\n#define GG_VA_COPY(a, b) (va_copy(a, b))\n#elif defined(COMPILER_MSVC)\n#define GG_VA_COPY(a, b) (a = b)\n#endif\n\n// Define an OS-neutral wrapper for shared library entry points\n#if defined(OS_WIN)\n#define API_CALL __stdcall\n#else\n#define API_CALL\n#endif\n\n#endif  // BASE_PORT_H_\n"
  },
  {
    "path": "ext/cld/base/scoped_ptr.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef BASE_SCOPED_PTR_H__\n#define BASE_SCOPED_PTR_H__\n\n//  This is an implementation designed to match the anticipated future TR2\n//  implementation of the scoped_ptr class, and its closely-related brethren,\n//  scoped_array, scoped_ptr_malloc, and make_scoped_ptr.\n//\n//  See http://wiki/Main/ScopedPointerInterface for the spec that drove this\n//  file.\n\n#include <assert.h>\n#include <stdlib.h>\n#include <cstddef>\n\n#ifdef OS_EMBEDDED_QNX\n// NOTE(akirmse):\n// The C++ standard says that <stdlib.h> declares both ::foo and std::foo\n// But this isn't done in QNX version 6.3.2 200709062316.\nusing std::free;\nusing std::malloc;\nusing std::realloc;\n#endif\n\ntemplate <class C> class scoped_ptr;\ntemplate <class C, class Free> class scoped_ptr_malloc;\ntemplate <class C> class scoped_array;\n\ntemplate <class C>\nscoped_ptr<C> make_scoped_ptr(C *);\n\n// A scoped_ptr<T> is like a T*, except that the destructor of scoped_ptr<T>\n// automatically deletes the pointer it holds (if any).\n// That is, scoped_ptr<T> owns the T object that it points to.\n// Like a T*, a scoped_ptr<T> may hold either NULL or a pointer to a T object.\n// Also like T*, scoped_ptr<T> is thread-compatible, and once you\n// dereference it, you get the threadsafety guarantees of T.\n//\n// The size of a scoped_ptr is small:\n// sizeof(scoped_ptr<C>) == sizeof(C*)\ntemplate <class C>\nclass scoped_ptr {\n public:\n\n  // The element type\n  typedef C element_type;\n\n  // Constructor.  Defaults to intializing with NULL.\n  // There is no way to create an uninitialized scoped_ptr.\n  // The input parameter must be allocated with new.\n  explicit scoped_ptr(C* p = NULL) : ptr_(p) { }\n\n  // Destructor.  If there is a C object, delete it.\n  // We don't need to test ptr_ == NULL because C++ does that for us.\n  ~scoped_ptr() {\n    enum { type_must_be_complete = sizeof(C) };\n    delete ptr_;\n  }\n\n  // Reset.  Deletes the current owned object, if any.\n  // Then takes ownership of a new object, if given.\n  // this->reset(this->get()) works.\n  void reset(C* p = NULL) {\n    if (p != ptr_) {\n      enum { type_must_be_complete = sizeof(C) };\n      delete ptr_;\n      ptr_ = p;\n    }\n  }\n\n  // Accessors to get the owned object.\n  // operator* and operator-> will assert() if there is no current object.\n  C& operator*() const {\n    assert(ptr_ != NULL);\n    return *ptr_;\n  }\n  C* operator->() const  {\n    assert(ptr_ != NULL);\n    return ptr_;\n  }\n  C* get() const { return ptr_; }\n\n  // Comparison operators.\n  // These return whether a scoped_ptr and a raw pointer refer to\n  // the same object, not just to two different but equal objects.\n  bool operator==(const C* p) const { return ptr_ == p; }\n  bool operator!=(const C* p) const { return ptr_ != p; }\n\n  // Swap two scoped pointers.\n  void swap(scoped_ptr& p2) {\n    C* tmp = ptr_;\n    ptr_ = p2.ptr_;\n    p2.ptr_ = tmp;\n  }\n\n  // Release a pointer.\n  // The return value is the current pointer held by this object.\n  // If this object holds a NULL pointer, the return value is NULL.\n  // After this operation, this object will hold a NULL pointer,\n  // and will not own the object any more.\n  C* release() {\n    C* retVal = ptr_;\n    ptr_ = NULL;\n    return retVal;\n  }\n\n private:\n  C* ptr_;\n\n  // google3 friend class that can access copy ctor (although if it actually\n  // calls a copy ctor, there will be a problem) see below\n  friend scoped_ptr<C> make_scoped_ptr<C>(C *p);\n\n  // Forbid comparison of scoped_ptr types.  If C2 != C, it totally doesn't\n  // make sense, and if C2 == C, it still doesn't make sense because you should\n  // never have the same object owned by two different scoped_ptrs.\n  template <class C2> bool operator==(scoped_ptr<C2> const& p2) const;\n  template <class C2> bool operator!=(scoped_ptr<C2> const& p2) const;\n\n  // Disallow evil constructors\n  scoped_ptr(const scoped_ptr&);\n  void operator=(const scoped_ptr&);\n};\n\n// Free functions\ntemplate <class C>\ninline void swap(scoped_ptr<C>& p1, scoped_ptr<C>& p2) {\n  p1.swap(p2);\n}\n\ntemplate <class C>\ninline bool operator==(const C* p1, const scoped_ptr<C>& p2) {\n  return p1 == p2.get();\n}\n\ntemplate <class C>\ninline bool operator==(const C* p1, const scoped_ptr<const C>& p2) {\n  return p1 == p2.get();\n}\n\ntemplate <class C>\ninline bool operator!=(const C* p1, const scoped_ptr<C>& p2) {\n  return p1 != p2.get();\n}\n\ntemplate <class C>\ninline bool operator!=(const C* p1, const scoped_ptr<const C>& p2) {\n  return p1 != p2.get();\n}\n\ntemplate <class C>\nscoped_ptr<C> make_scoped_ptr(C *p) {\n  // This does nothing but to return a scoped_ptr of the type that the passed\n  // pointer is of.  (This eliminates the need to specify the name of T when\n  // making a scoped_ptr that is used anonymously/temporarily.)  From an\n  // access control point of view, we construct an unnamed scoped_ptr here\n  // which we return and thus copy-construct.  Hence, we need to have access\n  // to scoped_ptr::scoped_ptr(scoped_ptr const &).  However, it is guaranteed\n  // that we never actually call the copy constructor, which is a good thing\n  // as we would call the temporary's object destructor (and thus delete p)\n  // if we actually did copy some object, here.\n  return scoped_ptr<C>(p);\n}\n\n// scoped_array<C> is like scoped_ptr<C>, except that the caller must allocate\n// with new [] and the destructor deletes objects with delete [].\n//\n// As with scoped_ptr<C>, a scoped_array<C> either points to an object\n// or is NULL.  A scoped_array<C> owns the object that it points to.\n// scoped_array<T> is thread-compatible, and once you index into it,\n// the returned objects have only the threadsafety guarantees of T.\n//\n// Size: sizeof(scoped_array<C>) == sizeof(C*)\ntemplate <class C>\nclass scoped_array {\n public:\n\n  // The element type\n  typedef C element_type;\n\n  // Constructor.  Defaults to intializing with NULL.\n  // There is no way to create an uninitialized scoped_array.\n  // The input parameter must be allocated with new [].\n  explicit scoped_array(C* p = NULL) : array_(p) { }\n\n  // Destructor.  If there is a C object, delete it.\n  // We don't need to test ptr_ == NULL because C++ does that for us.\n  ~scoped_array() {\n    enum { type_must_be_complete = sizeof(C) };\n    delete[] array_;\n  }\n\n  // Reset.  Deletes the current owned object, if any.\n  // Then takes ownership of a new object, if given.\n  // this->reset(this->get()) works.\n  void reset(C* p = NULL) {\n    if (p != array_) {\n      enum { type_must_be_complete = sizeof(C) };\n      delete[] array_;\n      array_ = p;\n    }\n  }\n\n  // Get one element of the current object.\n  // Will assert() if there is no current object, or index i is negative.\n  C& operator[](std::ptrdiff_t i) const {\n    assert(i >= 0);\n    assert(array_ != NULL);\n    return array_[i];\n  }\n\n  // Get a pointer to the zeroth element of the current object.\n  // If there is no current object, return NULL.\n  C* get() const {\n    return array_;\n  }\n\n  // Comparison operators.\n  // These return whether a scoped_array and a raw pointer refer to\n  // the same array, not just to two different but equal arrays.\n  bool operator==(const C* p) const { return array_ == p; }\n  bool operator!=(const C* p) const { return array_ != p; }\n\n  // Swap two scoped arrays.\n  void swap(scoped_array& p2) {\n    C* tmp = array_;\n    array_ = p2.array_;\n    p2.array_ = tmp;\n  }\n\n  // Release an array.\n  // The return value is the current pointer held by this object.\n  // If this object holds a NULL pointer, the return value is NULL.\n  // After this operation, this object will hold a NULL pointer,\n  // and will not own the object any more.\n  C* release() {\n    C* retVal = array_;\n    array_ = NULL;\n    return retVal;\n  }\n\n private:\n  C* array_;\n\n  // Forbid comparison of different scoped_array types.\n  template <class C2> bool operator==(scoped_array<C2> const& p2) const;\n  template <class C2> bool operator!=(scoped_array<C2> const& p2) const;\n\n  // Disallow evil constructors\n  scoped_array(const scoped_array&);\n  void operator=(const scoped_array&);\n};\n\n// Free functions\ntemplate <class C>\ninline void swap(scoped_array<C>& p1, scoped_array<C>& p2) {\n  p1.swap(p2);\n}\n\ntemplate <class C>\ninline bool operator==(const C* p1, const scoped_array<C>& p2) {\n  return p1 == p2.get();\n}\n\ntemplate <class C>\ninline bool operator==(const C* p1, const scoped_array<const C>& p2) {\n  return p1 == p2.get();\n}\n\ntemplate <class C>\ninline bool operator!=(const C* p1, const scoped_array<C>& p2) {\n  return p1 != p2.get();\n}\n\ntemplate <class C>\ninline bool operator!=(const C* p1, const scoped_array<const C>& p2) {\n  return p1 != p2.get();\n}\n\n// This class wraps the c library function free() in a class that can be\n// passed as a template argument to scoped_ptr_malloc below.\nclass ScopedPtrMallocFree {\n public:\n  inline void operator()(void* x) const {\n    free(x);\n  }\n};\n\n// scoped_ptr_malloc<> is similar to scoped_ptr<>, but it accepts a\n// second template argument, the functor used to free the object.\n\ntemplate<class C, class FreeProc = ScopedPtrMallocFree>\nclass scoped_ptr_malloc {\n public:\n\n  // The element type\n  typedef C element_type;\n\n  // Construction with no arguments sets ptr_ to NULL.\n  // There is no way to create an uninitialized scoped_ptr.\n  // The input parameter must be allocated with an allocator that matches the\n  // Free functor.  For the default Free functor, this is malloc, calloc, or\n  // realloc.\n  explicit scoped_ptr_malloc(): ptr_(NULL) { }\n\n  // Construct with a C*, and provides an error with a D*.\n  template<class must_be_C>\n  explicit scoped_ptr_malloc(must_be_C* p): ptr_(p) { }\n\n  // Construct with a void*, such as you get from malloc.\n  explicit scoped_ptr_malloc(void *p): ptr_(static_cast<C*>(p)) { }\n\n  // Destructor.  If there is a C object, call the Free functor.\n  ~scoped_ptr_malloc() {\n    free_(ptr_);\n  }\n\n  // Reset.  Calls the Free functor on the current owned object, if any.\n  // Then takes ownership of a new object, if given.\n  // this->reset(this->get()) works.\n  void reset(C* p = NULL) {\n    if (ptr_ != p) {\n      free_(ptr_);\n      ptr_ = p;\n    }\n  }\n\n  // Reallocates the existing pointer, and returns 'true' if\n  // the reallcation is succesfull.  If the reallocation failed, then\n  // the pointer remains in its previous state.\n  //\n  // Note: this calls realloc() directly, even if an alternate 'free'\n  // functor is provided in the template instantiation.\n  bool try_realloc(size_t new_size) {\n    C* new_ptr = static_cast<C*>(realloc(ptr_, new_size));\n    if (new_ptr == NULL) {\n      return false;\n    }\n    ptr_ = new_ptr;\n    return true;\n  }\n\n  // Get the current object.\n  // operator* and operator-> will cause an assert() failure if there is\n  // no current object.\n  C& operator*() const {\n    assert(ptr_ != NULL);\n    return *ptr_;\n  }\n\n  C* operator->() const {\n    assert(ptr_ != NULL);\n    return ptr_;\n  }\n\n  C* get() const {\n    return ptr_;\n  }\n\n  // Comparison operators.\n  // These return whether a scoped_ptr_malloc and a plain pointer refer\n  // to the same object, not just to two different but equal objects.\n  // For compatibility with the boost-derived implementation, these\n  // take non-const arguments.\n  bool operator==(C* p) const {\n    return ptr_ == p;\n  }\n\n  bool operator!=(C* p) const {\n    return ptr_ != p;\n  }\n\n  // Swap two scoped pointers.\n  void swap(scoped_ptr_malloc & b) {\n    C* tmp = b.ptr_;\n    b.ptr_ = ptr_;\n    ptr_ = tmp;\n  }\n\n  // Release a pointer.\n  // The return value is the current pointer held by this object.\n  // If this object holds a NULL pointer, the return value is NULL.\n  // After this operation, this object will hold a NULL pointer,\n  // and will not own the object any more.\n  C* release() {\n    C* tmp = ptr_;\n    ptr_ = NULL;\n    return tmp;\n  }\n\n private:\n  C* ptr_;\n\n  // no reason to use these: each scoped_ptr_malloc should have its own object\n  template <class C2, class GP>\n  bool operator==(scoped_ptr_malloc<C2, GP> const& p) const;\n  template <class C2, class GP>\n  bool operator!=(scoped_ptr_malloc<C2, GP> const& p) const;\n\n  static FreeProc const free_;\n\n  // Disallow evil constructors\n  scoped_ptr_malloc(const scoped_ptr_malloc&);\n  void operator=(const scoped_ptr_malloc&);\n};\n\ntemplate<class C, class FP>\nFP const scoped_ptr_malloc<C, FP>::free_ = FP();\n\ntemplate<class C, class FP> inline\nvoid swap(scoped_ptr_malloc<C, FP>& a, scoped_ptr_malloc<C, FP>& b) {\n  a.swap(b);\n}\n\ntemplate<class C, class FP> inline\nbool operator==(C* p, const scoped_ptr_malloc<C, FP>& b) {\n  return p == b.get();\n}\n\ntemplate<class C, class FP> inline\nbool operator!=(C* p, const scoped_ptr_malloc<C, FP>& b) {\n  return p != b.get();\n}\n\n#endif  // BASE_SCOPED_PTR_H__\n"
  },
  {
    "path": "ext/cld/base/stl_decl.h",
    "content": ""
  },
  {
    "path": "ext/cld/base/stl_decl_msvc.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n// In most .h files, we would rather include a declaration of an stl\n// rather than including the appropriate stl h file (which brings in\n// lots of noise).  For many STL classes this is ok (eg pair), but for\n// some it's really annoying.  We define those here, so you can\n// just include this file instead of having to deal with the annoyance.\n//\n// Most of the annoyance, btw, has to do with the default allocator.\n\n#ifndef _STL_DECL_MSVC_H\n#define _STL_DECL_MSVC_H\n\n// VC++ namespace / STL issues; make them explicit\n#include <wchar.h>\n#include <string>\n#include <vector>\n#include <functional>\n#include <utility>\n#include <set>\n#include <list>\n#define slist list\n#include <algorithm>\n#include <deque>\n#include <iostream>\n#include <map>\n#include <queue>\n#include <stack>\n\n// copy_n isn't to be found anywhere in MSVC's STL\ntemplate <typename InputIterator, typename Size, typename OutputIterator>\nstd::pair<InputIterator, OutputIterator>\ncopy_n(InputIterator in, Size count, OutputIterator out) {\n  for ( ; count > 0; --count) {\n    *out = *in;\n    ++out;\n    ++in;\n  }\n  return std::make_pair(in, out);\n}\n\n// Nor are the following selectors\ntemplate <typename T>\nstruct identity {\n  inline const T& operator()(const T& t) const { return t; }\n};\n\n// Copied from STLport\ntemplate <class _Pair>\nstruct select1st : public std::unary_function<_Pair, typename _Pair::first_type> {\n  const typename _Pair::first_type& operator()(const _Pair& __x) const {\n    return __x.first;\n  }\n};\n\ntemplate <class _Pair>\nstruct select2nd : public std::unary_function<_Pair, typename _Pair::second_type>\n{\n  const typename _Pair::second_type& operator()(const _Pair& __x) const {\n    return __x.second;\n  }\n};\n\n\n#if _MSC_VER >= 1300\n\n// If you compile on Windows and get a compile-time error because\n// some google3 code specifies a 3rd or 4th parameter to one of\n// these template classes, then you have to put in some #ifdefs\n// and use the NATIVE_HASH_NAMESPACE::hash_(set|map) implementation.\nnamespace msvchash {\n  template <typename Key>\n  struct hash;\n\n  template <class Key,\n            class HashFcn = hash<Key> >\n  class hash_set;\n\n  template <class Key, class Val,\n            class HashFcn = hash<Key> >\n  class hash_map;\n\n  template <class Key,\n            class HashFcn = hash<Key> >\n  class hash_multiset;\n\n  template <class Key, class Val,\n            class HashFcn = hash<Key> >\n  class hash_multimap;\n}  // end namespace  msvchash\n\nusing msvchash::hash_set;\nusing msvchash::hash_map;\nusing msvchash::hash;\nusing msvchash::hash_multimap;\nusing msvchash::hash_multiset;\n\n#else\n#define hash_map map\n#define hash_set set\n#endif\n\nusing namespace std;\n\n#endif   /* #ifdef _STL_DECL_MSVC_H */\n"
  },
  {
    "path": "ext/cld/base/string_util.h",
    "content": "// Copyright (c) 2010 The Chromium Authors. All rights reserved.\r\n// Use of this source code is governed by a BSD-style license that can be\r\n// found in the LICENSE file.\r\n//\r\n// This file defines utility functions for working with strings.\r\n\r\n#ifndef BASE_STRING_UTIL_H_\r\n#define BASE_STRING_UTIL_H_\r\n\r\n#include <string.h>\r\n\r\nnamespace base {\r\n\r\n#ifdef WIN32\r\n// Compare the two strings s1 and s2 without regard to case using\r\n// the current locale; returns 0 if they are equal, 1 if s1 > s2, and -1 if\r\n// s2 > s1 according to a lexicographic comparison.\r\ninline int strcasecmp(const char* s1, const char* s2) {\r\n  return _stricmp(s1, s2);\r\n}\r\n#else\r\ninline int strcasecmp(const char* s1, const char* s2) {\r\n  return ::strcasecmp(s1, s2);\r\n}\r\n#endif\r\n\r\n}\r\n\r\n#endif  // BASE_STRING_UTIL_H_\r\n"
  },
  {
    "path": "ext/cld/base/strtoint.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n// Architecture-neutral plug compatible replacements for strtol() friends.\n//\n// Long's have different lengths on ILP-32 and LP-64 platforms, and so overflow\n// behavior across the two varies when strtol() and similar are used to parse\n// 32-bit integers.  Similar problems exist with atoi(), because although it\n// has an all-integer interface, it uses strtol() internally, and so suffers\n// from the same narrowing problems on assignments to int.\n//\n// Examples:\n//   errno = 0;\n//   i = strtol(\"3147483647\", NULL, 10);\n//   printf(\"%d, errno %d\\n\", i, errno);\n//   //   32-bit platform: 2147483647, errno 34\n//   //   64-bit platform: -1147483649, errno 0\n//\n//   printf(\"%d\\n\", atoi(\"3147483647\"));\n//   //   32-bit platform: 2147483647\n//   //   64-bit platform: -1147483649\n//\n// A way round this is to define local replacements for these, and use them\n// instead of the standard libc functions.\n//\n// In most 32-bit cases the replacements can be inlined away to a call to the\n// libc function.  In a couple of 64-bit cases, however, adapters are required,\n// to provide the right overflow and errno behavior.\n//\n\n#ifndef BASE_STRTOINT_H_\n#define BASE_STRTOINT_H_\n\n#include <stdlib.h> // For strtol* functions.\n#include <string>\n#include \"base/port.h\"\n#include \"base/basictypes.h\"\n\n// Adapter functions for handling overflow and errno.\nint32 strto32_adapter(const char *nptr, char **endptr, int base);\nuint32 strtou32_adapter(const char *nptr, char **endptr, int base);\n\n// Conversions to a 32-bit integer can pass the call to strto[u]l on 32-bit\n// platforms, but need a little extra work on 64-bit platforms.\ninline int32 strto32(const char *nptr, char **endptr, int base) {\n  if (sizeof(int32) == sizeof(long))\n    return strtol(nptr, endptr, base);\n  else\n    return strto32_adapter(nptr, endptr, base);\n}\n\ninline uint32 strtou32(const char *nptr, char **endptr, int base) {\n  if (sizeof(uint32) == sizeof(unsigned long))\n    return strtoul(nptr, endptr, base);\n  else\n    return strtou32_adapter(nptr, endptr, base);\n}\n\n// For now, long long is 64-bit on all the platforms we care about, so these\n// functions can simply pass the call to strto[u]ll.\ninline int64 strto64(const char *nptr, char **endptr, int base) {\n  COMPILE_ASSERT(sizeof(int64) == sizeof(long long),\n                 sizeof_int64_is_not_sizeof_long_long);\n  return strtoll(nptr, endptr, base);\n}\n\ninline uint64 strtou64(const char *nptr, char **endptr, int base) {\n  COMPILE_ASSERT(sizeof(uint64) == sizeof(unsigned long long),\n                 sizeof_uint64_is_not_sizeof_long_long);\n  return strtoull(nptr, endptr, base);\n}\n\n// Although it returns an int, atoi() is implemented in terms of strtol, and\n// so has differing overflow and underflow behavior.  atol is the same.\ninline int32 atoi32(const char *nptr) {\n  return strto32(nptr, NULL, 10);\n}\n\ninline int64 atoi64(const char *nptr) {\n  return strto64(nptr, NULL, 10);\n}\n\n// Convenience versions of the above that take a string argument.\ninline int32 atoi32(const string &s) {\n  return atoi32(s.c_str());\n}\n\ninline int64 atoi64(const string &s) {\n  return atoi64(s.c_str());\n}\n\n#endif  // BASE_STRTOINT_H_\n"
  },
  {
    "path": "ext/cld/base/template_util.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n// Template metaprogramming utility functions.\n//\n// This code is compiled directly on many platforms, including client\n// platforms like Windows, Mac, and embedded systems.  Before making\n// any changes here, make sure that you're not breaking any platforms.\n//\n// The names choosen here reflect those used in tr1 and the boost::mpl\n// library, there are similar operations used in the Loki library as\n// well.  I prefer the boost names for 2 reasons:\n// 1.  I think that portions of the Boost libraries are more likely to\n// be included in the c++ standard.\n// 2.  It is not impossible that some of the boost libraries will be\n// included in our own build in the future.\n// Both of these outcomes means that we may be able to directly replace\n// some of these with boost equivalents.\n//\n#ifndef BASE_TEMPLATE_UTIL_H_\n#define BASE_TEMPLATE_UTIL_H_\n\nnamespace base {\n\n// Types small_ and big_ are guaranteed such that sizeof(small_) <\n// sizeof(big_)\ntypedef char small_;\n\nstruct big_ {\n  char dummy[2];\n};\n\n// integral_constant, defined in tr1, is a wrapper for an integer\n// value. We don't really need this generality; we could get away\n// with hardcoding the integer type to bool. We use the fully\n// general integer_constant for compatibility with tr1.\n\ntemplate<class T, T v>\nstruct integral_constant {\n  static const T value = v;\n  typedef T value_type;\n  typedef integral_constant<T, v> type;\n};\n\ntemplate <class T, T v> const T integral_constant<T, v>::value;\n\n\n// Abbreviations: true_type and false_type are structs that represent boolean\n// true and false values. Also define the boost::mpl versions of those names,\n// true_ and false_.\ntypedef integral_constant<bool, true>  true_type;\ntypedef integral_constant<bool, false> false_type;\ntypedef true_type  true_;\ntypedef false_type false_;\n\n// if_ is a templatized conditional statement.\n// if_<cond, A, B> is a compile time evaluation of cond.\n// if_<>::type contains A if cond is true, B otherwise.\ntemplate<bool cond, typename A, typename B>\nstruct if_{\n  typedef A type;\n};\n\ntemplate<typename A, typename B>\nstruct if_<false, A, B> {\n  typedef B type;\n};\n\n\n// type_equals_ is a template type comparator, similar to Loki IsSameType.\n// type_equals_<A, B>::value is true iff \"A\" is the same type as \"B\".\ntemplate<typename A, typename B>\nstruct type_equals_ : public false_ {\n};\n\ntemplate<typename A>\nstruct type_equals_<A, A> : public true_ {\n};\n\n// and_ is a template && operator.\n// and_<A, B>::value evaluates \"A::value && B::value\".\ntemplate<typename A, typename B>\nstruct and_ : public integral_constant<bool, (A::value && B::value)> {\n};\n\n// or_ is a template || operator.\n// or_<A, B>::value evaluates \"A::value || B::value\".\ntemplate<typename A, typename B>\nstruct or_ : public integral_constant<bool, (A::value || B::value)> {\n};\n\n\n} // Close namespace base\n\n#endif  // BASE_TEMPLATE_UTIL_H_\n"
  },
  {
    "path": "ext/cld/base/type_traits.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n// This code is compiled directly on many platforms, including client\n// platforms like Windows, Mac, and embedded systems.  Before making\n// any changes here, make sure that you're not breaking any platforms.\n//\n//\n// Define a small subset of tr1 type traits. The traits we define are:\n//   is_integral\n//   is_floating_point\n//   is_pointer\n//   is_reference\n//   is_pod\n//   has_trivial_constructor\n//   has_trivial_copy\n//   has_trivial_assign\n//   has_trivial_destructor\n//   remove_const\n//   remove_volatile\n//   remove_cv\n//   remove_reference\n//   remove_pointer\n//   is_convertible\n// We can add more type traits as required.\n\n#ifndef BASE_TYPE_TRAITS_H_\n#define BASE_TYPE_TRAITS_H_\n\n#include \"base/template_util.h\"     // For true_type and false_type\n#include <utility>                  // For pair\n\nnamespace base {\n\n// is_integral is false except for the built-in integer types.\ntemplate <class T> struct is_integral : false_type { };\ntemplate<> struct is_integral<bool> : true_type { };\ntemplate<> struct is_integral<char> : true_type { };\ntemplate<> struct is_integral<unsigned char> : true_type { };\ntemplate<> struct is_integral<signed char> : true_type { };\n#if defined(_MSC_VER)\n// wchar_t is not by default a distinct type from unsigned short in\n// Microsoft C.\n// See http://msdn2.microsoft.com/en-us/library/dh8che7s(VS.80).aspx\ntemplate<> struct is_integral<__wchar_t> : true_type { };\n#else\ntemplate<> struct is_integral<wchar_t> : true_type { };\n#endif\ntemplate<> struct is_integral<short> : true_type { };\ntemplate<> struct is_integral<unsigned short> : true_type { };\ntemplate<> struct is_integral<int> : true_type { };\ntemplate<> struct is_integral<unsigned int> : true_type { };\ntemplate<> struct is_integral<long> : true_type { };\ntemplate<> struct is_integral<unsigned long> : true_type { };\ntemplate<> struct is_integral<long long> : true_type { };\ntemplate<> struct is_integral<unsigned long long> : true_type { };\n\n\n// is_floating_point is false except for the built-in floating-point types.\ntemplate <class T> struct is_floating_point : false_type { };\ntemplate<> struct is_floating_point<float> : true_type { };\ntemplate<> struct is_floating_point<double> : true_type { };\ntemplate<> struct is_floating_point<long double> : true_type { };\n\n\n// is_pointer is false except for pointer types.\ntemplate <class T> struct is_pointer : false_type { };\ntemplate <class T> struct is_pointer<T*> : true_type { };\n\n\n// is_reference is false except for reference types.\ntemplate<typename T> struct is_reference : false_type {};\ntemplate<typename T> struct is_reference<T&> : true_type {};\n\n\n// We can't get is_pod right without compiler help, so fail conservatively.\n// We will assume it's false except for arithmetic types and pointers,\n// and const versions thereof. Note that std::pair is not a POD.\ntemplate <class T> struct is_pod\n : integral_constant<bool, (is_integral<T>::value ||\n                            is_floating_point<T>::value ||\n                            is_pointer<T>::value)> { };\ntemplate <class T> struct is_pod<const T> : is_pod<T> { };\n\n\n// We can't get has_trivial_constructor right without compiler help, so\n// fail conservatively. We will assume it's false except for: (1) types\n// for which is_pod is true. (2) std::pair of types with trivial\n// constructors. (3) array of a type with a trivial constructor.\n// (4) const versions thereof.\ntemplate <class T> struct has_trivial_constructor : is_pod<T> { };\ntemplate <class T, class U> struct has_trivial_constructor<std::pair<T, U> >\n  : integral_constant<bool,\n                      (has_trivial_constructor<T>::value &&\n                       has_trivial_constructor<U>::value)> { };\ntemplate <class A, int N> struct has_trivial_constructor<A[N]>\n  : has_trivial_constructor<A> { };\ntemplate <class T> struct has_trivial_constructor<const T>\n  : has_trivial_constructor<T> { };\n\n// We can't get has_trivial_copy right without compiler help, so fail\n// conservatively. We will assume it's false except for: (1) types\n// for which is_pod is true. (2) std::pair of types with trivial copy\n// constructors. (3) array of a type with a trivial copy constructor.\n// (4) const versions thereof.\ntemplate <class T> struct has_trivial_copy : is_pod<T> { };\ntemplate <class T, class U> struct has_trivial_copy<std::pair<T, U> >\n  : integral_constant<bool,\n                      (has_trivial_copy<T>::value &&\n                       has_trivial_copy<U>::value)> { };\ntemplate <class A, int N> struct has_trivial_copy<A[N]>\n  : has_trivial_copy<A> { };\ntemplate <class T> struct has_trivial_copy<const T> : has_trivial_copy<T> { };\n\n// We can't get has_trivial_assign right without compiler help, so fail\n// conservatively. We will assume it's false except for: (1) types\n// for which is_pod is true. (2) std::pair of types with trivial copy\n// constructors. (3) array of a type with a trivial assign constructor.\ntemplate <class T> struct has_trivial_assign : is_pod<T> { };\ntemplate <class T, class U> struct has_trivial_assign<std::pair<T, U> >\n  : integral_constant<bool,\n                      (has_trivial_assign<T>::value &&\n                       has_trivial_assign<U>::value)> { };\ntemplate <class A, int N> struct has_trivial_assign<A[N]>\n  : has_trivial_assign<A> { };\n\n// We can't get has_trivial_destructor right without compiler help, so\n// fail conservatively. We will assume it's false except for: (1) types\n// for which is_pod is true. (2) std::pair of types with trivial\n// destructors. (3) array of a type with a trivial destructor.\n// (4) const versions thereof.\ntemplate <class T> struct has_trivial_destructor : is_pod<T> { };\ntemplate <class T, class U> struct has_trivial_destructor<std::pair<T, U> >\n  : integral_constant<bool,\n                      (has_trivial_destructor<T>::value &&\n                       has_trivial_destructor<U>::value)> { };\ntemplate <class A, int N> struct has_trivial_destructor<A[N]>\n  : has_trivial_destructor<A> { };\ntemplate <class T> struct has_trivial_destructor<const T>\n  : has_trivial_destructor<T> { };\n\n// Specified by TR1 [4.7.1]\ntemplate<typename T> struct remove_const { typedef T type; };\ntemplate<typename T> struct remove_const<T const> { typedef T type; };\ntemplate<typename T> struct remove_volatile { typedef T type; };\ntemplate<typename T> struct remove_volatile<T volatile> { typedef T type; };\ntemplate<typename T> struct remove_cv {\n  typedef typename remove_const<typename remove_volatile<T>::type>::type type;\n};\n\n\n// Specified by TR1 [4.7.2]\ntemplate<typename T> struct remove_reference { typedef T type; };\ntemplate<typename T> struct remove_reference<T&> { typedef T type; };\n\n// Specified by TR1 [4.7.4] Pointer modifications.\ntemplate<typename T> struct remove_pointer { typedef T type; };\ntemplate<typename T> struct remove_pointer<T*> { typedef T type; };\ntemplate<typename T> struct remove_pointer<T* const> { typedef T type; };\ntemplate<typename T> struct remove_pointer<T* volatile> { typedef T type; };\ntemplate<typename T> struct remove_pointer<T* const volatile> {\n  typedef T type; };\n\n// Specified by TR1 [4.6] Relationships between types\n#ifndef _MSC_VER\nnamespace internal {\n\n// This class is an implementation detail for is_convertible, and you\n// don't need to know how it works to use is_convertible. For those\n// who care: we declare two different functions, one whose argument is\n// of type To and one with a variadic argument list. We give them\n// return types of different size, so we can use sizeof to trick the\n// compiler into telling us which function it would have chosen if we\n// had called it with an argument of type From.  See Alexandrescu's\n// _Modern C++ Design_ for more details on this sort of trick.\n\ntemplate <typename From, typename To>\nstruct ConvertHelper {\n  static small_ Test(To);\n  static big_ Test(...);\n  static From Create();\n};\n}  // namespace internal\n\n// Inherits from true_type if From is convertible to To, false_type otherwise.\ntemplate <typename From, typename To>\nstruct is_convertible\n    : integral_constant<bool,\n                        sizeof(internal::ConvertHelper<From, To>::Test(\n                                  internal::ConvertHelper<From, To>::Create()))\n                        == sizeof(small_)> {\n};\n#endif\n\n} // Close namespace base\n\n#endif  // BASE_TYPE_TRAITS_H_\n"
  },
  {
    "path": "ext/cld/base/vlog_is_on.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n// Defines the VLOG_IS_ON macro that controls the variable-verbosity\n// conditional logging.\n//\n// It's used by VLOG and VLOG_IF in logging.h\n// and by RAW_VLOG in raw_logging.h to trigger the logging.\n//\n// It can also be used directly e.g. like this:\n//   if (VLOG_IS_ON(2)) {\n//     // do some logging preparation and logging\n//     // that can't be accomplished e.g. via just VLOG(2) << ...;\n//   }\n//\n// The truth value that VLOG_IS_ON(level) returns is determined by\n// the three verbosity level flags:\n//   --v=<n>  Gives the default maximal active V-logging level;\n//            0 is the default.\n//            Normally positive values are used for V-logging levels.\n//   --vmodule=<str>  Gives the per-module maximal V-logging levels to override\n//                    the value given by --v.\n//                    E.g. \"my_module=2,foo*=3\" would change the logging level\n//                    for all code in source files \"my_module.*\" and \"foo*.*\"\n//                    (\"-inl\" suffixes are also disregarded for this matching).\n//   --silent_init  When true has the effect of increasing\n//                  the argument of VLOG_IS_ON by 1,\n//                  thus suppressing one more level of verbose logging.\n//\n// SetVLOGLevel helper function is provided to do limited dynamic control over\n// V-logging by overriding the per-module settings given via --vmodule flag.\n//\n// CAVEAT: --vmodule functionality is not available in non gcc compilers.\n//\n\n#ifndef BASE_VLOG_IS_ON_H_\n#define BASE_VLOG_IS_ON_H_\n\n#include \"base/atomicops.h\"\n#include \"base/basictypes.h\"\n#include \"base/port.h\"\n#include \"base/commandlineflags.h\"\n#include \"base/log_severity.h\"\n\nDECLARE_int32(v);  // in vlog_is_on.cc\nDECLARE_bool(silent_init);  // in google.cc\n\n#if defined(__GNUC__)\n// We pack an int16 verbosity level and an int16 epoch into an\n// Atomic32 at every VLOG_IS_ON() call site.  The level determines\n// whether the site should log, and the epoch determines whether the\n// site is stale and should be reinitialized.  A verbosity level of\n// kUseFlag (-1) indicates that the value of FLAGS_v should be used as\n// the verbosity level.  When the site is (re)initialized, a verbosity\n// level for the current source file is retrieved from an internal\n// list.  This list is mutated through calls to SetVLOGLevel() and\n// mutations to the --vmodule flag.  New log sites are initialized\n// with a stale epoch and a verbosity level of kUseFlag.\n//\n// TODO(llansing): Investigate using GCC's __builtin_constant_p() to\n// generate less code at call sites where verbositylevel is known to\n// be a compile-time constant.\n#define VLOG_IS_ON(verboselevel)                                               \\\n  ({ static Atomic32 site__ = ::base::internal::kDefaultSite;                  \\\n     ::base::internal::VLogEnabled(&site__, (verboselevel), __FILE__); })\n#else\n// GNU extensions not available, so we do not support --vmodule.\n// Dynamic value of FLAGS_v always controls the logging level.\n//\n// TODO(llansing): Investigate supporting --vmodule on other platforms.\n#define VLOG_IS_ON(verboselevel)                                               \\\n  (FLAGS_v >= (verboselevel) + FLAGS_silent_init)\n#endif\n\n// Set VLOG(_IS_ON) level for module_pattern to log_level.\n// This lets us dynamically control what is normally set by the --vmodule flag.\n// Returns the level that previously applied to module_pattern.\n// NOTE: To change the log level for VLOG(_IS_ON) sites\n//       that have already executed after/during InitGoogle,\n//       one needs to supply the exact --vmodule pattern that applied to them.\n//       (If no --vmodule pattern applied to them\n//       the value of FLAGS_v will continue to control them.)\nint SetVLOGLevel(const char* module_pattern, int log_level);\n\n// Private implementation details.  No user-serviceable parts inside.\nnamespace base {\nnamespace internal {\n\n// Each log site determines whether its log level is up to date by\n// comparing its epoch to this global epoch.  Whenever the program's\n// vmodule configuration changes (ex: SetVLOGLevel is called), the\n// global epoch is advanced, invalidating all site epochs.\nextern Atomic32 vlog_epoch;\n\n// A log level of kUseFlag means \"read the logging level from FLAGS_v.\"\nconst int kUseFlag = -1;\n\n// Log sites use FLAGS_v by default, and have an initial epoch of 0.\nconst Atomic32 kDefaultSite = kUseFlag << 16;\n\n// The global epoch is the least significant half of an Atomic32, and\n// may only be accessed through atomic operations.\ninline Atomic32 GlobalEpoch() {\n  return Acquire_Load(&vlog_epoch) & 0x0000FFFF;\n}\n\n// The least significant half of a site is the epoch.\ninline int SiteEpoch(Atomic32 site) { return site & 0x0000FFFF; }\n\n// The most significant half of a site is the logging level.\ninline int SiteLevel(Atomic32 site) { return site >> 16; }\n\n// Construct a logging site from a logging level and epoch.\ninline Atomic32 Site(int level, int epoch) {\n  return ((level & 0x0000FFFF) << 16) | (epoch & 0x0000FFFF);\n}\n\n// Attempt to initialize or reinitialize a VLOG site.  Returns the\n// level of the log site, regardless of whether the attempt succeeds\n// or fails.\n//   site: The address of the log site's state.\n//   fname: The filename of the current source file.\nint InitVLOG(Atomic32* site, const char* fname);\n\n// Determine whether verbose logging should occur at a given log site.\n//\n// TODO(llansing): Find a way to eliminate FLAGS_silent_init from this\n// function while preserving the silent initialization behavior.  The\n// common-case code path shouldn't pay for silent initialization.\ninline bool VLogEnabled(Atomic32* site, int32 level, const char* const file) {\n  const Atomic32 site_copy = Acquire_Load(site);\n  const int32 site_level =\n      PREDICT_TRUE(SiteEpoch(site_copy) == GlobalEpoch()) ?\n      SiteLevel(site_copy) : InitVLOG(site, file);\n  return (site_level == kUseFlag ? FLAGS_v : site_level) >=\n      (level + FLAGS_silent_init);\n}\n\n}  // namespace internal\n}  // namespace base\n\n#endif  // BASE_VLOG_IS_ON_H_\n"
  },
  {
    "path": "ext/cld/build_aux/config.guess",
    "content": "#! /bin/sh\n# Attempt to guess a canonical system name.\n#   Copyright 1992-2021 Free Software Foundation, Inc.\n\ntimestamp='2021-01-01'\n\n# This file is free software; you can redistribute it and/or modify it\n# under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful, but\n# WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n# General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program; if not, see <https://www.gnu.org/licenses/>.\n#\n# As a special exception to the GNU General Public License, if you\n# distribute this file as part of a program that contains a\n# configuration script generated by Autoconf, you may include it under\n# the same distribution terms that you use for the rest of that\n# program.  This Exception is an additional permission under section 7\n# of the GNU General Public License, version 3 (\"GPLv3\").\n#\n# Originally written by Per Bothner; maintained since 2000 by Ben Elliston.\n#\n# You can get the latest version of this script from:\n# https://git.savannah.gnu.org/cgit/config.git/plain/config.guess\n#\n# Please send patches to <config-patches@gnu.org>.\n\n\nme=$(echo \"$0\" | sed -e 's,.*/,,')\n\nusage=\"\\\nUsage: $0 [OPTION]\n\nOutput the configuration name of the system \\`$me' is run on.\n\nOptions:\n  -h, --help         print this help, then exit\n  -t, --time-stamp   print date of last modification, then exit\n  -v, --version      print version number, then exit\n\nReport bugs and patches to <config-patches@gnu.org>.\"\n\nversion=\"\\\nGNU config.guess ($timestamp)\n\nOriginally written by Per Bothner.\nCopyright 1992-2021 Free Software Foundation, Inc.\n\nThis is free software; see the source for copying conditions.  There is NO\nwarranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\"\n\nhelp=\"\nTry \\`$me --help' for more information.\"\n\n# Parse command line\nwhile test $# -gt 0 ; do\n  case $1 in\n    --time-stamp | --time* | -t )\n       echo \"$timestamp\" ; exit ;;\n    --version | -v )\n       echo \"$version\" ; exit ;;\n    --help | --h* | -h )\n       echo \"$usage\"; exit ;;\n    -- )     # Stop option processing\n       shift; break ;;\n    - )\t# Use stdin as input.\n       break ;;\n    -* )\n       echo \"$me: invalid option $1$help\" >&2\n       exit 1 ;;\n    * )\n       break ;;\n  esac\ndone\n\nif test $# != 0; then\n  echo \"$me: too many arguments$help\" >&2\n  exit 1\nfi\n\n# CC_FOR_BUILD -- compiler used by this script. Note that the use of a\n# compiler to aid in system detection is discouraged as it requires\n# temporary files to be created and, as you can see below, it is a\n# headache to deal with in a portable fashion.\n\n# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still\n# use `HOST_CC' if defined, but it is deprecated.\n\n# Portable tmp directory creation inspired by the Autoconf team.\n\ntmp=\n# shellcheck disable=SC2172\ntrap 'test -z \"$tmp\" || rm -fr \"$tmp\"' 0 1 2 13 15\n\nset_cc_for_build() {\n    # prevent multiple calls if $tmp is already set\n    test \"$tmp\" && return 0\n    : \"${TMPDIR=/tmp}\"\n    # shellcheck disable=SC2039\n    { tmp=$( (umask 077 && mktemp -d \"$TMPDIR/cgXXXXXX\") 2>/dev/null) && test -n \"$tmp\" && test -d \"$tmp\" ; } ||\n\t{ test -n \"$RANDOM\" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir \"$tmp\" 2>/dev/null) ; } ||\n\t{ tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir \"$tmp\" 2>/dev/null) && echo \"Warning: creating insecure temp directory\" >&2 ; } ||\n\t{ echo \"$me: cannot create a temporary directory in $TMPDIR\" >&2 ; exit 1 ; }\n    dummy=$tmp/dummy\n    case ${CC_FOR_BUILD-},${HOST_CC-},${CC-} in\n\t,,)    echo \"int x;\" > \"$dummy.c\"\n\t       for driver in cc gcc c89 c99 ; do\n\t\t   if ($driver -c -o \"$dummy.o\" \"$dummy.c\") >/dev/null 2>&1 ; then\n\t\t       CC_FOR_BUILD=\"$driver\"\n\t\t       break\n\t\t   fi\n\t       done\n\t       if test x\"$CC_FOR_BUILD\" = x ; then\n\t\t   CC_FOR_BUILD=no_compiler_found\n\t       fi\n\t       ;;\n\t,,*)   CC_FOR_BUILD=$CC ;;\n\t,*,*)  CC_FOR_BUILD=$HOST_CC ;;\n    esac\n}\n\n# This is needed to find uname on a Pyramid OSx when run in the BSD universe.\n# (ghazi@noc.rutgers.edu 1994-08-24)\nif test -f /.attbin/uname ; then\n\tPATH=$PATH:/.attbin ; export PATH\nfi\n\nUNAME_MACHINE=$( (uname -m) 2>/dev/null) || UNAME_MACHINE=unknown\nUNAME_RELEASE=$( (uname -r) 2>/dev/null) || UNAME_RELEASE=unknown\nUNAME_SYSTEM=$( (uname -s) 2>/dev/null) || UNAME_SYSTEM=unknown\nUNAME_VERSION=$( (uname -v) 2>/dev/null) || UNAME_VERSION=unknown\n\ncase \"$UNAME_SYSTEM\" in\nLinux|GNU|GNU/*)\n\tLIBC=unknown\n\n\tset_cc_for_build\n\tcat <<-EOF > \"$dummy.c\"\n\t#include <features.h>\n\t#if defined(__UCLIBC__)\n\tLIBC=uclibc\n\t#elif defined(__dietlibc__)\n\tLIBC=dietlibc\n\t#elif defined(__GLIBC__)\n\tLIBC=gnu\n\t#else\n\t#include <stdarg.h>\n\t/* First heuristic to detect musl libc.  */\n\t#ifdef __DEFINED_va_list\n\tLIBC=musl\n\t#endif\n\t#endif\n\tEOF\n\teval \"$($CC_FOR_BUILD -E \"$dummy.c\" 2>/dev/null | grep '^LIBC' | sed 's, ,,g')\"\n\n\t# Second heuristic to detect musl libc.\n\tif [ \"$LIBC\" = unknown ] &&\n\t   command -v ldd >/dev/null &&\n\t   ldd --version 2>&1 | grep -q ^musl; then\n\t\tLIBC=musl\n\tfi\n\n\t# If the system lacks a compiler, then just pick glibc.\n\t# We could probably try harder.\n\tif [ \"$LIBC\" = unknown ]; then\n\t\tLIBC=gnu\n\tfi\n\t;;\nesac\n\n# Note: order is significant - the case branches are not exclusive.\n\ncase \"$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION\" in\n    *:NetBSD:*:*)\n\t# NetBSD (nbsd) targets should (where applicable) match one or\n\t# more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*,\n\t# *-*-netbsdecoff* and *-*-netbsd*.  For targets that recently\n\t# switched to ELF, *-*-netbsd* would select the old\n\t# object file format.  This provides both forward\n\t# compatibility and a consistent mechanism for selecting the\n\t# object file format.\n\t#\n\t# Note: NetBSD doesn't particularly care about the vendor\n\t# portion of the name.  We always set it to \"unknown\".\n\tsysctl=\"sysctl -n hw.machine_arch\"\n\tUNAME_MACHINE_ARCH=$( (uname -p 2>/dev/null || \\\n\t    \"/sbin/$sysctl\" 2>/dev/null || \\\n\t    \"/usr/sbin/$sysctl\" 2>/dev/null || \\\n\t    echo unknown))\n\tcase \"$UNAME_MACHINE_ARCH\" in\n\t    aarch64eb) machine=aarch64_be-unknown ;;\n\t    armeb) machine=armeb-unknown ;;\n\t    arm*) machine=arm-unknown ;;\n\t    sh3el) machine=shl-unknown ;;\n\t    sh3eb) machine=sh-unknown ;;\n\t    sh5el) machine=sh5le-unknown ;;\n\t    earmv*)\n\t\tarch=$(echo \"$UNAME_MACHINE_ARCH\" | sed -e 's,^e\\(armv[0-9]\\).*$,\\1,')\n\t\tendian=$(echo \"$UNAME_MACHINE_ARCH\" | sed -ne 's,^.*\\(eb\\)$,\\1,p')\n\t\tmachine=\"${arch}${endian}\"-unknown\n\t\t;;\n\t    *) machine=\"$UNAME_MACHINE_ARCH\"-unknown ;;\n\tesac\n\t# The Operating System including object format, if it has switched\n\t# to ELF recently (or will in the future) and ABI.\n\tcase \"$UNAME_MACHINE_ARCH\" in\n\t    earm*)\n\t\tos=netbsdelf\n\t\t;;\n\t    arm*|i386|m68k|ns32k|sh3*|sparc|vax)\n\t\tset_cc_for_build\n\t\tif echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \\\n\t\t\t| grep -q __ELF__\n\t\tthen\n\t\t    # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout).\n\t\t    # Return netbsd for either.  FIX?\n\t\t    os=netbsd\n\t\telse\n\t\t    os=netbsdelf\n\t\tfi\n\t\t;;\n\t    *)\n\t\tos=netbsd\n\t\t;;\n\tesac\n\t# Determine ABI tags.\n\tcase \"$UNAME_MACHINE_ARCH\" in\n\t    earm*)\n\t\texpr='s/^earmv[0-9]/-eabi/;s/eb$//'\n\t\tabi=$(echo \"$UNAME_MACHINE_ARCH\" | sed -e \"$expr\")\n\t\t;;\n\tesac\n\t# The OS release\n\t# Debian GNU/NetBSD machines have a different userland, and\n\t# thus, need a distinct triplet. However, they do not need\n\t# kernel version information, so it can be replaced with a\n\t# suitable tag, in the style of linux-gnu.\n\tcase \"$UNAME_VERSION\" in\n\t    Debian*)\n\t\trelease='-gnu'\n\t\t;;\n\t    *)\n\t\trelease=$(echo \"$UNAME_RELEASE\" | sed -e 's/[-_].*//' | cut -d. -f1,2)\n\t\t;;\n\tesac\n\t# Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM:\n\t# contains redundant information, the shorter form:\n\t# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used.\n\techo \"$machine-${os}${release}${abi-}\"\n\texit ;;\n    *:Bitrig:*:*)\n\tUNAME_MACHINE_ARCH=$(arch | sed 's/Bitrig.//')\n\techo \"$UNAME_MACHINE_ARCH\"-unknown-bitrig\"$UNAME_RELEASE\"\n\texit ;;\n    *:OpenBSD:*:*)\n\tUNAME_MACHINE_ARCH=$(arch | sed 's/OpenBSD.//')\n\techo \"$UNAME_MACHINE_ARCH\"-unknown-openbsd\"$UNAME_RELEASE\"\n\texit ;;\n    *:LibertyBSD:*:*)\n\tUNAME_MACHINE_ARCH=$(arch | sed 's/^.*BSD\\.//')\n\techo \"$UNAME_MACHINE_ARCH\"-unknown-libertybsd\"$UNAME_RELEASE\"\n\texit ;;\n    *:MidnightBSD:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-midnightbsd\"$UNAME_RELEASE\"\n\texit ;;\n    *:ekkoBSD:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-ekkobsd\"$UNAME_RELEASE\"\n\texit ;;\n    *:SolidBSD:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-solidbsd\"$UNAME_RELEASE\"\n\texit ;;\n    *:OS108:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-os108_\"$UNAME_RELEASE\"\n\texit ;;\n    macppc:MirBSD:*:*)\n\techo powerpc-unknown-mirbsd\"$UNAME_RELEASE\"\n\texit ;;\n    *:MirBSD:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-mirbsd\"$UNAME_RELEASE\"\n\texit ;;\n    *:Sortix:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-sortix\n\texit ;;\n    *:Twizzler:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-twizzler\n\texit ;;\n    *:Redox:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-redox\n\texit ;;\n    mips:OSF1:*.*)\n\techo mips-dec-osf1\n\texit ;;\n    alpha:OSF1:*:*)\n\tcase $UNAME_RELEASE in\n\t*4.0)\n\t\tUNAME_RELEASE=$(/usr/sbin/sizer -v | awk '{print $3}')\n\t\t;;\n\t*5.*)\n\t\tUNAME_RELEASE=$(/usr/sbin/sizer -v | awk '{print $4}')\n\t\t;;\n\tesac\n\t# According to Compaq, /usr/sbin/psrinfo has been available on\n\t# OSF/1 and Tru64 systems produced since 1995.  I hope that\n\t# covers most systems running today.  This code pipes the CPU\n\t# types through head -n 1, so we only detect the type of CPU 0.\n\tALPHA_CPU_TYPE=$(/usr/sbin/psrinfo -v | sed -n -e 's/^  The alpha \\(.*\\) processor.*$/\\1/p' | head -n 1)\n\tcase \"$ALPHA_CPU_TYPE\" in\n\t    \"EV4 (21064)\")\n\t\tUNAME_MACHINE=alpha ;;\n\t    \"EV4.5 (21064)\")\n\t\tUNAME_MACHINE=alpha ;;\n\t    \"LCA4 (21066/21068)\")\n\t\tUNAME_MACHINE=alpha ;;\n\t    \"EV5 (21164)\")\n\t\tUNAME_MACHINE=alphaev5 ;;\n\t    \"EV5.6 (21164A)\")\n\t\tUNAME_MACHINE=alphaev56 ;;\n\t    \"EV5.6 (21164PC)\")\n\t\tUNAME_MACHINE=alphapca56 ;;\n\t    \"EV5.7 (21164PC)\")\n\t\tUNAME_MACHINE=alphapca57 ;;\n\t    \"EV6 (21264)\")\n\t\tUNAME_MACHINE=alphaev6 ;;\n\t    \"EV6.7 (21264A)\")\n\t\tUNAME_MACHINE=alphaev67 ;;\n\t    \"EV6.8CB (21264C)\")\n\t\tUNAME_MACHINE=alphaev68 ;;\n\t    \"EV6.8AL (21264B)\")\n\t\tUNAME_MACHINE=alphaev68 ;;\n\t    \"EV6.8CX (21264D)\")\n\t\tUNAME_MACHINE=alphaev68 ;;\n\t    \"EV6.9A (21264/EV69A)\")\n\t\tUNAME_MACHINE=alphaev69 ;;\n\t    \"EV7 (21364)\")\n\t\tUNAME_MACHINE=alphaev7 ;;\n\t    \"EV7.9 (21364A)\")\n\t\tUNAME_MACHINE=alphaev79 ;;\n\tesac\n\t# A Pn.n version is a patched version.\n\t# A Vn.n version is a released version.\n\t# A Tn.n version is a released field test version.\n\t# A Xn.n version is an unreleased experimental baselevel.\n\t# 1.2 uses \"1.2\" for uname -r.\n\techo \"$UNAME_MACHINE\"-dec-osf\"$(echo \"$UNAME_RELEASE\" | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz)\"\n\t# Reset EXIT trap before exiting to avoid spurious non-zero exit code.\n\texitcode=$?\n\ttrap '' 0\n\texit $exitcode ;;\n    Amiga*:UNIX_System_V:4.0:*)\n\techo m68k-unknown-sysv4\n\texit ;;\n    *:[Aa]miga[Oo][Ss]:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-amigaos\n\texit ;;\n    *:[Mm]orph[Oo][Ss]:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-morphos\n\texit ;;\n    *:OS/390:*:*)\n\techo i370-ibm-openedition\n\texit ;;\n    *:z/VM:*:*)\n\techo s390-ibm-zvmoe\n\texit ;;\n    *:OS400:*:*)\n\techo powerpc-ibm-os400\n\texit ;;\n    arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*)\n\techo arm-acorn-riscix\"$UNAME_RELEASE\"\n\texit ;;\n    arm*:riscos:*:*|arm*:RISCOS:*:*)\n\techo arm-unknown-riscos\n\texit ;;\n    SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*)\n\techo hppa1.1-hitachi-hiuxmpp\n\texit ;;\n    Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*)\n\t# akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE.\n\tif test \"$( (/bin/universe) 2>/dev/null)\" = att ; then\n\t\techo pyramid-pyramid-sysv3\n\telse\n\t\techo pyramid-pyramid-bsd\n\tfi\n\texit ;;\n    NILE*:*:*:dcosx)\n\techo pyramid-pyramid-svr4\n\texit ;;\n    DRS?6000:unix:4.0:6*)\n\techo sparc-icl-nx6\n\texit ;;\n    DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*)\n\tcase $(/usr/bin/uname -p) in\n\t    sparc) echo sparc-icl-nx7; exit ;;\n\tesac ;;\n    s390x:SunOS:*:*)\n\techo \"$UNAME_MACHINE\"-ibm-solaris2\"$(echo \"$UNAME_RELEASE\" | sed -e 's/[^.]*//')\"\n\texit ;;\n    sun4H:SunOS:5.*:*)\n\techo sparc-hal-solaris2\"$(echo \"$UNAME_RELEASE\"|sed -e 's/[^.]*//')\"\n\texit ;;\n    sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)\n\techo sparc-sun-solaris2\"$(echo \"$UNAME_RELEASE\" | sed -e 's/[^.]*//')\"\n\texit ;;\n    i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*)\n\techo i386-pc-auroraux\"$UNAME_RELEASE\"\n\texit ;;\n    i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)\n\tset_cc_for_build\n\tSUN_ARCH=i386\n\t# If there is a compiler, see if it is configured for 64-bit objects.\n\t# Note that the Sun cc does not turn __LP64__ into 1 like gcc does.\n\t# This test works for both compilers.\n\tif test \"$CC_FOR_BUILD\" != no_compiler_found; then\n\t    if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \\\n\t\t(CCOPTS=\"\" $CC_FOR_BUILD -E - 2>/dev/null) | \\\n\t\tgrep IS_64BIT_ARCH >/dev/null\n\t    then\n\t\tSUN_ARCH=x86_64\n\t    fi\n\tfi\n\techo \"$SUN_ARCH\"-pc-solaris2\"$(echo \"$UNAME_RELEASE\"|sed -e 's/[^.]*//')\"\n\texit ;;\n    sun4*:SunOS:6*:*)\n\t# According to config.sub, this is the proper way to canonicalize\n\t# SunOS6.  Hard to guess exactly what SunOS6 will be like, but\n\t# it's likely to be more like Solaris than SunOS4.\n\techo sparc-sun-solaris3\"$(echo \"$UNAME_RELEASE\"|sed -e 's/[^.]*//')\"\n\texit ;;\n    sun4*:SunOS:*:*)\n\tcase \"$(/usr/bin/arch -k)\" in\n\t    Series*|S4*)\n\t\tUNAME_RELEASE=$(uname -v)\n\t\t;;\n\tesac\n\t# Japanese Language versions have a version number like `4.1.3-JL'.\n\techo sparc-sun-sunos\"$(echo \"$UNAME_RELEASE\"|sed -e 's/-/_/')\"\n\texit ;;\n    sun3*:SunOS:*:*)\n\techo m68k-sun-sunos\"$UNAME_RELEASE\"\n\texit ;;\n    sun*:*:4.2BSD:*)\n\tUNAME_RELEASE=$( (sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null)\n\ttest \"x$UNAME_RELEASE\" = x && UNAME_RELEASE=3\n\tcase \"$(/bin/arch)\" in\n\t    sun3)\n\t\techo m68k-sun-sunos\"$UNAME_RELEASE\"\n\t\t;;\n\t    sun4)\n\t\techo sparc-sun-sunos\"$UNAME_RELEASE\"\n\t\t;;\n\tesac\n\texit ;;\n    aushp:SunOS:*:*)\n\techo sparc-auspex-sunos\"$UNAME_RELEASE\"\n\texit ;;\n    # The situation for MiNT is a little confusing.  The machine name\n    # can be virtually everything (everything which is not\n    # \"atarist\" or \"atariste\" at least should have a processor\n    # > m68000).  The system name ranges from \"MiNT\" over \"FreeMiNT\"\n    # to the lowercase version \"mint\" (or \"freemint\").  Finally\n    # the system name \"TOS\" denotes a system which is actually not\n    # MiNT.  But MiNT is downward compatible to TOS, so this should\n    # be no problem.\n    atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)\n\techo m68k-atari-mint\"$UNAME_RELEASE\"\n\texit ;;\n    atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)\n\techo m68k-atari-mint\"$UNAME_RELEASE\"\n\texit ;;\n    *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)\n\techo m68k-atari-mint\"$UNAME_RELEASE\"\n\texit ;;\n    milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)\n\techo m68k-milan-mint\"$UNAME_RELEASE\"\n\texit ;;\n    hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)\n\techo m68k-hades-mint\"$UNAME_RELEASE\"\n\texit ;;\n    *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)\n\techo m68k-unknown-mint\"$UNAME_RELEASE\"\n\texit ;;\n    m68k:machten:*:*)\n\techo m68k-apple-machten\"$UNAME_RELEASE\"\n\texit ;;\n    powerpc:machten:*:*)\n\techo powerpc-apple-machten\"$UNAME_RELEASE\"\n\texit ;;\n    RISC*:Mach:*:*)\n\techo mips-dec-mach_bsd4.3\n\texit ;;\n    RISC*:ULTRIX:*:*)\n\techo mips-dec-ultrix\"$UNAME_RELEASE\"\n\texit ;;\n    VAX*:ULTRIX*:*:*)\n\techo vax-dec-ultrix\"$UNAME_RELEASE\"\n\texit ;;\n    2020:CLIX:*:* | 2430:CLIX:*:*)\n\techo clipper-intergraph-clix\"$UNAME_RELEASE\"\n\texit ;;\n    mips:*:*:UMIPS | mips:*:*:RISCos)\n\tset_cc_for_build\n\tsed 's/^\t//' << EOF > \"$dummy.c\"\n#ifdef __cplusplus\n#include <stdio.h>  /* for printf() prototype */\n\tint main (int argc, char *argv[]) {\n#else\n\tint main (argc, argv) int argc; char *argv[]; {\n#endif\n\t#if defined (host_mips) && defined (MIPSEB)\n\t#if defined (SYSTYPE_SYSV)\n\t  printf (\"mips-mips-riscos%ssysv\\\\n\", argv[1]); exit (0);\n\t#endif\n\t#if defined (SYSTYPE_SVR4)\n\t  printf (\"mips-mips-riscos%ssvr4\\\\n\", argv[1]); exit (0);\n\t#endif\n\t#if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD)\n\t  printf (\"mips-mips-riscos%sbsd\\\\n\", argv[1]); exit (0);\n\t#endif\n\t#endif\n\t  exit (-1);\n\t}\nEOF\n\t$CC_FOR_BUILD -o \"$dummy\" \"$dummy.c\" &&\n\t  dummyarg=$(echo \"$UNAME_RELEASE\" | sed -n 's/\\([0-9]*\\).*/\\1/p') &&\n\t  SYSTEM_NAME=$(\"$dummy\" \"$dummyarg\") &&\n\t    { echo \"$SYSTEM_NAME\"; exit; }\n\techo mips-mips-riscos\"$UNAME_RELEASE\"\n\texit ;;\n    Motorola:PowerMAX_OS:*:*)\n\techo powerpc-motorola-powermax\n\texit ;;\n    Motorola:*:4.3:PL8-*)\n\techo powerpc-harris-powermax\n\texit ;;\n    Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*)\n\techo powerpc-harris-powermax\n\texit ;;\n    Night_Hawk:Power_UNIX:*:*)\n\techo powerpc-harris-powerunix\n\texit ;;\n    m88k:CX/UX:7*:*)\n\techo m88k-harris-cxux7\n\texit ;;\n    m88k:*:4*:R4*)\n\techo m88k-motorola-sysv4\n\texit ;;\n    m88k:*:3*:R3*)\n\techo m88k-motorola-sysv3\n\texit ;;\n    AViiON:dgux:*:*)\n\t# DG/UX returns AViiON for all architectures\n\tUNAME_PROCESSOR=$(/usr/bin/uname -p)\n\tif test \"$UNAME_PROCESSOR\" = mc88100 || test \"$UNAME_PROCESSOR\" = mc88110\n\tthen\n\t    if test \"$TARGET_BINARY_INTERFACE\"x = m88kdguxelfx || \\\n\t       test \"$TARGET_BINARY_INTERFACE\"x = x\n\t    then\n\t\techo m88k-dg-dgux\"$UNAME_RELEASE\"\n\t    else\n\t\techo m88k-dg-dguxbcs\"$UNAME_RELEASE\"\n\t    fi\n\telse\n\t    echo i586-dg-dgux\"$UNAME_RELEASE\"\n\tfi\n\texit ;;\n    M88*:DolphinOS:*:*)\t# DolphinOS (SVR3)\n\techo m88k-dolphin-sysv3\n\texit ;;\n    M88*:*:R3*:*)\n\t# Delta 88k system running SVR3\n\techo m88k-motorola-sysv3\n\texit ;;\n    XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3)\n\techo m88k-tektronix-sysv3\n\texit ;;\n    Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD)\n\techo m68k-tektronix-bsd\n\texit ;;\n    *:IRIX*:*:*)\n\techo mips-sgi-irix\"$(echo \"$UNAME_RELEASE\"|sed -e 's/-/_/g')\"\n\texit ;;\n    ????????:AIX?:[12].1:2)   # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX.\n\techo romp-ibm-aix     # uname -m gives an 8 hex-code CPU id\n\texit ;;               # Note that: echo \"'$(uname -s)'\" gives 'AIX '\n    i*86:AIX:*:*)\n\techo i386-ibm-aix\n\texit ;;\n    ia64:AIX:*:*)\n\tif test -x /usr/bin/oslevel ; then\n\t\tIBM_REV=$(/usr/bin/oslevel)\n\telse\n\t\tIBM_REV=\"$UNAME_VERSION.$UNAME_RELEASE\"\n\tfi\n\techo \"$UNAME_MACHINE\"-ibm-aix\"$IBM_REV\"\n\texit ;;\n    *:AIX:2:3)\n\tif grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then\n\t\tset_cc_for_build\n\t\tsed 's/^\t\t//' << EOF > \"$dummy.c\"\n\t\t#include <sys/systemcfg.h>\n\n\t\tmain()\n\t\t\t{\n\t\t\tif (!__power_pc())\n\t\t\t\texit(1);\n\t\t\tputs(\"powerpc-ibm-aix3.2.5\");\n\t\t\texit(0);\n\t\t\t}\nEOF\n\t\tif $CC_FOR_BUILD -o \"$dummy\" \"$dummy.c\" && SYSTEM_NAME=$(\"$dummy\")\n\t\tthen\n\t\t\techo \"$SYSTEM_NAME\"\n\t\telse\n\t\t\techo rs6000-ibm-aix3.2.5\n\t\tfi\n\telif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then\n\t\techo rs6000-ibm-aix3.2.4\n\telse\n\t\techo rs6000-ibm-aix3.2\n\tfi\n\texit ;;\n    *:AIX:*:[4567])\n\tIBM_CPU_ID=$(/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }')\n\tif /usr/sbin/lsattr -El \"$IBM_CPU_ID\" | grep ' POWER' >/dev/null 2>&1; then\n\t\tIBM_ARCH=rs6000\n\telse\n\t\tIBM_ARCH=powerpc\n\tfi\n\tif test -x /usr/bin/lslpp ; then\n\t\tIBM_REV=$(/usr/bin/lslpp -Lqc bos.rte.libc |\n\t\t\t   awk -F: '{ print $3 }' | sed s/[0-9]*$/0/)\n\telse\n\t\tIBM_REV=\"$UNAME_VERSION.$UNAME_RELEASE\"\n\tfi\n\techo \"$IBM_ARCH\"-ibm-aix\"$IBM_REV\"\n\texit ;;\n    *:AIX:*:*)\n\techo rs6000-ibm-aix\n\texit ;;\n    ibmrt:4.4BSD:*|romp-ibm:4.4BSD:*)\n\techo romp-ibm-bsd4.4\n\texit ;;\n    ibmrt:*BSD:*|romp-ibm:BSD:*)            # covers RT/PC BSD and\n\techo romp-ibm-bsd\"$UNAME_RELEASE\"   # 4.3 with uname added to\n\texit ;;                             # report: romp-ibm BSD 4.3\n    *:BOSX:*:*)\n\techo rs6000-bull-bosx\n\texit ;;\n    DPX/2?00:B.O.S.:*:*)\n\techo m68k-bull-sysv3\n\texit ;;\n    9000/[34]??:4.3bsd:1.*:*)\n\techo m68k-hp-bsd\n\texit ;;\n    hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*)\n\techo m68k-hp-bsd4.4\n\texit ;;\n    9000/[34678]??:HP-UX:*:*)\n\tHPUX_REV=$(echo \"$UNAME_RELEASE\"|sed -e 's/[^.]*.[0B]*//')\n\tcase \"$UNAME_MACHINE\" in\n\t    9000/31?)            HP_ARCH=m68000 ;;\n\t    9000/[34]??)         HP_ARCH=m68k ;;\n\t    9000/[678][0-9][0-9])\n\t\tif test -x /usr/bin/getconf; then\n\t\t    sc_cpu_version=$(/usr/bin/getconf SC_CPU_VERSION 2>/dev/null)\n\t\t    sc_kernel_bits=$(/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null)\n\t\t    case \"$sc_cpu_version\" in\n\t\t      523) HP_ARCH=hppa1.0 ;; # CPU_PA_RISC1_0\n\t\t      528) HP_ARCH=hppa1.1 ;; # CPU_PA_RISC1_1\n\t\t      532)                      # CPU_PA_RISC2_0\n\t\t\tcase \"$sc_kernel_bits\" in\n\t\t\t  32) HP_ARCH=hppa2.0n ;;\n\t\t\t  64) HP_ARCH=hppa2.0w ;;\n\t\t\t  '') HP_ARCH=hppa2.0 ;;   # HP-UX 10.20\n\t\t\tesac ;;\n\t\t    esac\n\t\tfi\n\t\tif test \"$HP_ARCH\" = \"\"; then\n\t\t    set_cc_for_build\n\t\t    sed 's/^\t\t//' << EOF > \"$dummy.c\"\n\n\t\t#define _HPUX_SOURCE\n\t\t#include <stdlib.h>\n\t\t#include <unistd.h>\n\n\t\tint main ()\n\t\t{\n\t\t#if defined(_SC_KERNEL_BITS)\n\t\t    long bits = sysconf(_SC_KERNEL_BITS);\n\t\t#endif\n\t\t    long cpu  = sysconf (_SC_CPU_VERSION);\n\n\t\t    switch (cpu)\n\t\t\t{\n\t\t\tcase CPU_PA_RISC1_0: puts (\"hppa1.0\"); break;\n\t\t\tcase CPU_PA_RISC1_1: puts (\"hppa1.1\"); break;\n\t\t\tcase CPU_PA_RISC2_0:\n\t\t#if defined(_SC_KERNEL_BITS)\n\t\t\t    switch (bits)\n\t\t\t\t{\n\t\t\t\tcase 64: puts (\"hppa2.0w\"); break;\n\t\t\t\tcase 32: puts (\"hppa2.0n\"); break;\n\t\t\t\tdefault: puts (\"hppa2.0\"); break;\n\t\t\t\t} break;\n\t\t#else  /* !defined(_SC_KERNEL_BITS) */\n\t\t\t    puts (\"hppa2.0\"); break;\n\t\t#endif\n\t\t\tdefault: puts (\"hppa1.0\"); break;\n\t\t\t}\n\t\t    exit (0);\n\t\t}\nEOF\n\t\t    (CCOPTS=\"\" $CC_FOR_BUILD -o \"$dummy\" \"$dummy.c\" 2>/dev/null) && HP_ARCH=$(\"$dummy\")\n\t\t    test -z \"$HP_ARCH\" && HP_ARCH=hppa\n\t\tfi ;;\n\tesac\n\tif test \"$HP_ARCH\" = hppa2.0w\n\tthen\n\t    set_cc_for_build\n\n\t    # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating\n\t    # 32-bit code.  hppa64-hp-hpux* has the same kernel and a compiler\n\t    # generating 64-bit code.  GNU and HP use different nomenclature:\n\t    #\n\t    # $ CC_FOR_BUILD=cc ./config.guess\n\t    # => hppa2.0w-hp-hpux11.23\n\t    # $ CC_FOR_BUILD=\"cc +DA2.0w\" ./config.guess\n\t    # => hppa64-hp-hpux11.23\n\n\t    if echo __LP64__ | (CCOPTS=\"\" $CC_FOR_BUILD -E - 2>/dev/null) |\n\t\tgrep -q __LP64__\n\t    then\n\t\tHP_ARCH=hppa2.0w\n\t    else\n\t\tHP_ARCH=hppa64\n\t    fi\n\tfi\n\techo \"$HP_ARCH\"-hp-hpux\"$HPUX_REV\"\n\texit ;;\n    ia64:HP-UX:*:*)\n\tHPUX_REV=$(echo \"$UNAME_RELEASE\"|sed -e 's/[^.]*.[0B]*//')\n\techo ia64-hp-hpux\"$HPUX_REV\"\n\texit ;;\n    3050*:HI-UX:*:*)\n\tset_cc_for_build\n\tsed 's/^\t//' << EOF > \"$dummy.c\"\n\t#include <unistd.h>\n\tint\n\tmain ()\n\t{\n\t  long cpu = sysconf (_SC_CPU_VERSION);\n\t  /* The order matters, because CPU_IS_HP_MC68K erroneously returns\n\t     true for CPU_PA_RISC1_0.  CPU_IS_PA_RISC returns correct\n\t     results, however.  */\n\t  if (CPU_IS_PA_RISC (cpu))\n\t    {\n\t      switch (cpu)\n\t\t{\n\t\t  case CPU_PA_RISC1_0: puts (\"hppa1.0-hitachi-hiuxwe2\"); break;\n\t\t  case CPU_PA_RISC1_1: puts (\"hppa1.1-hitachi-hiuxwe2\"); break;\n\t\t  case CPU_PA_RISC2_0: puts (\"hppa2.0-hitachi-hiuxwe2\"); break;\n\t\t  default: puts (\"hppa-hitachi-hiuxwe2\"); break;\n\t\t}\n\t    }\n\t  else if (CPU_IS_HP_MC68K (cpu))\n\t    puts (\"m68k-hitachi-hiuxwe2\");\n\t  else puts (\"unknown-hitachi-hiuxwe2\");\n\t  exit (0);\n\t}\nEOF\n\t$CC_FOR_BUILD -o \"$dummy\" \"$dummy.c\" && SYSTEM_NAME=$(\"$dummy\") &&\n\t\t{ echo \"$SYSTEM_NAME\"; exit; }\n\techo unknown-hitachi-hiuxwe2\n\texit ;;\n    9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:*)\n\techo hppa1.1-hp-bsd\n\texit ;;\n    9000/8??:4.3bsd:*:*)\n\techo hppa1.0-hp-bsd\n\texit ;;\n    *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*)\n\techo hppa1.0-hp-mpeix\n\texit ;;\n    hp7??:OSF1:*:* | hp8?[79]:OSF1:*:*)\n\techo hppa1.1-hp-osf\n\texit ;;\n    hp8??:OSF1:*:*)\n\techo hppa1.0-hp-osf\n\texit ;;\n    i*86:OSF1:*:*)\n\tif test -x /usr/sbin/sysversion ; then\n\t    echo \"$UNAME_MACHINE\"-unknown-osf1mk\n\telse\n\t    echo \"$UNAME_MACHINE\"-unknown-osf1\n\tfi\n\texit ;;\n    parisc*:Lites*:*:*)\n\techo hppa1.1-hp-lites\n\texit ;;\n    C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*)\n\techo c1-convex-bsd\n\texit ;;\n    C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*)\n\tif getsysinfo -f scalar_acc\n\tthen echo c32-convex-bsd\n\telse echo c2-convex-bsd\n\tfi\n\texit ;;\n    C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*)\n\techo c34-convex-bsd\n\texit ;;\n    C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*)\n\techo c38-convex-bsd\n\texit ;;\n    C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*)\n\techo c4-convex-bsd\n\texit ;;\n    CRAY*Y-MP:*:*:*)\n\techo ymp-cray-unicos\"$UNAME_RELEASE\" | sed -e 's/\\.[^.]*$/.X/'\n\texit ;;\n    CRAY*[A-Z]90:*:*:*)\n\techo \"$UNAME_MACHINE\"-cray-unicos\"$UNAME_RELEASE\" \\\n\t| sed -e 's/CRAY.*\\([A-Z]90\\)/\\1/' \\\n\t      -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \\\n\t      -e 's/\\.[^.]*$/.X/'\n\texit ;;\n    CRAY*TS:*:*:*)\n\techo t90-cray-unicos\"$UNAME_RELEASE\" | sed -e 's/\\.[^.]*$/.X/'\n\texit ;;\n    CRAY*T3E:*:*:*)\n\techo alphaev5-cray-unicosmk\"$UNAME_RELEASE\" | sed -e 's/\\.[^.]*$/.X/'\n\texit ;;\n    CRAY*SV1:*:*:*)\n\techo sv1-cray-unicos\"$UNAME_RELEASE\" | sed -e 's/\\.[^.]*$/.X/'\n\texit ;;\n    *:UNICOS/mp:*:*)\n\techo craynv-cray-unicosmp\"$UNAME_RELEASE\" | sed -e 's/\\.[^.]*$/.X/'\n\texit ;;\n    F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*)\n\tFUJITSU_PROC=$(uname -m | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz)\n\tFUJITSU_SYS=$(uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\\///')\n\tFUJITSU_REL=$(echo \"$UNAME_RELEASE\" | sed -e 's/ /_/')\n\techo \"${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}\"\n\texit ;;\n    5000:UNIX_System_V:4.*:*)\n\tFUJITSU_SYS=$(uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\\///')\n\tFUJITSU_REL=$(echo \"$UNAME_RELEASE\" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/')\n\techo \"sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}\"\n\texit ;;\n    i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\\ Embedded/OS:*:*)\n\techo \"$UNAME_MACHINE\"-pc-bsdi\"$UNAME_RELEASE\"\n\texit ;;\n    sparc*:BSD/OS:*:*)\n\techo sparc-unknown-bsdi\"$UNAME_RELEASE\"\n\texit ;;\n    *:BSD/OS:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-bsdi\"$UNAME_RELEASE\"\n\texit ;;\n    arm:FreeBSD:*:*)\n\tUNAME_PROCESSOR=$(uname -p)\n\tset_cc_for_build\n\tif echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \\\n\t    | grep -q __ARM_PCS_VFP\n\tthen\n\t    echo \"${UNAME_PROCESSOR}\"-unknown-freebsd\"$(echo ${UNAME_RELEASE}|sed -e 's/[-(].*//')\"-gnueabi\n\telse\n\t    echo \"${UNAME_PROCESSOR}\"-unknown-freebsd\"$(echo ${UNAME_RELEASE}|sed -e 's/[-(].*//')\"-gnueabihf\n\tfi\n\texit ;;\n    *:FreeBSD:*:*)\n\tUNAME_PROCESSOR=$(/usr/bin/uname -p)\n\tcase \"$UNAME_PROCESSOR\" in\n\t    amd64)\n\t\tUNAME_PROCESSOR=x86_64 ;;\n\t    i386)\n\t\tUNAME_PROCESSOR=i586 ;;\n\tesac\n\techo \"$UNAME_PROCESSOR\"-unknown-freebsd\"$(echo \"$UNAME_RELEASE\"|sed -e 's/[-(].*//')\"\n\texit ;;\n    i*:CYGWIN*:*)\n\techo \"$UNAME_MACHINE\"-pc-cygwin\n\texit ;;\n    *:MINGW64*:*)\n\techo \"$UNAME_MACHINE\"-pc-mingw64\n\texit ;;\n    *:MINGW*:*)\n\techo \"$UNAME_MACHINE\"-pc-mingw32\n\texit ;;\n    *:MSYS*:*)\n\techo \"$UNAME_MACHINE\"-pc-msys\n\texit ;;\n    i*:PW*:*)\n\techo \"$UNAME_MACHINE\"-pc-pw32\n\texit ;;\n    *:Interix*:*)\n\tcase \"$UNAME_MACHINE\" in\n\t    x86)\n\t\techo i586-pc-interix\"$UNAME_RELEASE\"\n\t\texit ;;\n\t    authenticamd | genuineintel | EM64T)\n\t\techo x86_64-unknown-interix\"$UNAME_RELEASE\"\n\t\texit ;;\n\t    IA64)\n\t\techo ia64-unknown-interix\"$UNAME_RELEASE\"\n\t\texit ;;\n\tesac ;;\n    i*:UWIN*:*)\n\techo \"$UNAME_MACHINE\"-pc-uwin\n\texit ;;\n    amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*)\n\techo x86_64-pc-cygwin\n\texit ;;\n    prep*:SunOS:5.*:*)\n\techo powerpcle-unknown-solaris2\"$(echo \"$UNAME_RELEASE\"|sed -e 's/[^.]*//')\"\n\texit ;;\n    *:GNU:*:*)\n\t# the GNU system\n\techo \"$(echo \"$UNAME_MACHINE\"|sed -e 's,[-/].*$,,')-unknown-$LIBC$(echo \"$UNAME_RELEASE\"|sed -e 's,/.*$,,')\"\n\texit ;;\n    *:GNU/*:*:*)\n\t# other systems with GNU libc and userland\n\techo \"$UNAME_MACHINE-unknown-$(echo \"$UNAME_SYSTEM\" | sed 's,^[^/]*/,,' | tr \"[:upper:]\" \"[:lower:]\")$(echo \"$UNAME_RELEASE\"|sed -e 's/[-(].*//')-$LIBC\"\n\texit ;;\n    *:Minix:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-minix\n\texit ;;\n    aarch64:Linux:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-linux-\"$LIBC\"\n\texit ;;\n    aarch64_be:Linux:*:*)\n\tUNAME_MACHINE=aarch64_be\n\techo \"$UNAME_MACHINE\"-unknown-linux-\"$LIBC\"\n\texit ;;\n    alpha:Linux:*:*)\n\tcase $(sed -n '/^cpu model/s/^.*: \\(.*\\)/\\1/p' /proc/cpuinfo 2>/dev/null) in\n\t  EV5)   UNAME_MACHINE=alphaev5 ;;\n\t  EV56)  UNAME_MACHINE=alphaev56 ;;\n\t  PCA56) UNAME_MACHINE=alphapca56 ;;\n\t  PCA57) UNAME_MACHINE=alphapca56 ;;\n\t  EV6)   UNAME_MACHINE=alphaev6 ;;\n\t  EV67)  UNAME_MACHINE=alphaev67 ;;\n\t  EV68*) UNAME_MACHINE=alphaev68 ;;\n\tesac\n\tobjdump --private-headers /bin/sh | grep -q ld.so.1\n\tif test \"$?\" = 0 ; then LIBC=gnulibc1 ; fi\n\techo \"$UNAME_MACHINE\"-unknown-linux-\"$LIBC\"\n\texit ;;\n    arc:Linux:*:* | arceb:Linux:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-linux-\"$LIBC\"\n\texit ;;\n    arm*:Linux:*:*)\n\tset_cc_for_build\n\tif echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \\\n\t    | grep -q __ARM_EABI__\n\tthen\n\t    echo \"$UNAME_MACHINE\"-unknown-linux-\"$LIBC\"\n\telse\n\t    if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \\\n\t\t| grep -q __ARM_PCS_VFP\n\t    then\n\t\techo \"$UNAME_MACHINE\"-unknown-linux-\"$LIBC\"eabi\n\t    else\n\t\techo \"$UNAME_MACHINE\"-unknown-linux-\"$LIBC\"eabihf\n\t    fi\n\tfi\n\texit ;;\n    avr32*:Linux:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-linux-\"$LIBC\"\n\texit ;;\n    cris:Linux:*:*)\n\techo \"$UNAME_MACHINE\"-axis-linux-\"$LIBC\"\n\texit ;;\n    crisv32:Linux:*:*)\n\techo \"$UNAME_MACHINE\"-axis-linux-\"$LIBC\"\n\texit ;;\n    e2k:Linux:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-linux-\"$LIBC\"\n\texit ;;\n    frv:Linux:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-linux-\"$LIBC\"\n\texit ;;\n    hexagon:Linux:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-linux-\"$LIBC\"\n\texit ;;\n    i*86:Linux:*:*)\n\techo \"$UNAME_MACHINE\"-pc-linux-\"$LIBC\"\n\texit ;;\n    ia64:Linux:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-linux-\"$LIBC\"\n\texit ;;\n    k1om:Linux:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-linux-\"$LIBC\"\n\texit ;;\n    loongarch32:Linux:*:* | loongarch64:Linux:*:* | loongarchx32:Linux:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-linux-\"$LIBC\"\n\texit ;;\n    m32r*:Linux:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-linux-\"$LIBC\"\n\texit ;;\n    m68*:Linux:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-linux-\"$LIBC\"\n\texit ;;\n    mips:Linux:*:* | mips64:Linux:*:*)\n\tset_cc_for_build\n\tIS_GLIBC=0\n\ttest x\"${LIBC}\" = xgnu && IS_GLIBC=1\n\tsed 's/^\t//' << EOF > \"$dummy.c\"\n\t#undef CPU\n\t#undef mips\n\t#undef mipsel\n\t#undef mips64\n\t#undef mips64el\n\t#if ${IS_GLIBC} && defined(_ABI64)\n\tLIBCABI=gnuabi64\n\t#else\n\t#if ${IS_GLIBC} && defined(_ABIN32)\n\tLIBCABI=gnuabin32\n\t#else\n\tLIBCABI=${LIBC}\n\t#endif\n\t#endif\n\n\t#if ${IS_GLIBC} && defined(__mips64) && defined(__mips_isa_rev) && __mips_isa_rev>=6\n\tCPU=mipsisa64r6\n\t#else\n\t#if ${IS_GLIBC} && !defined(__mips64) && defined(__mips_isa_rev) && __mips_isa_rev>=6\n\tCPU=mipsisa32r6\n\t#else\n\t#if defined(__mips64)\n\tCPU=mips64\n\t#else\n\tCPU=mips\n\t#endif\n\t#endif\n\t#endif\n\n\t#if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL)\n\tMIPS_ENDIAN=el\n\t#else\n\t#if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB)\n\tMIPS_ENDIAN=\n\t#else\n\tMIPS_ENDIAN=\n\t#endif\n\t#endif\nEOF\n\teval \"$($CC_FOR_BUILD -E \"$dummy.c\" 2>/dev/null | grep '^CPU\\|^MIPS_ENDIAN\\|^LIBCABI')\"\n\ttest \"x$CPU\" != x && { echo \"$CPU${MIPS_ENDIAN}-unknown-linux-$LIBCABI\"; exit; }\n\t;;\n    mips64el:Linux:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-linux-\"$LIBC\"\n\texit ;;\n    openrisc*:Linux:*:*)\n\techo or1k-unknown-linux-\"$LIBC\"\n\texit ;;\n    or32:Linux:*:* | or1k*:Linux:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-linux-\"$LIBC\"\n\texit ;;\n    padre:Linux:*:*)\n\techo sparc-unknown-linux-\"$LIBC\"\n\texit ;;\n    parisc64:Linux:*:* | hppa64:Linux:*:*)\n\techo hppa64-unknown-linux-\"$LIBC\"\n\texit ;;\n    parisc:Linux:*:* | hppa:Linux:*:*)\n\t# Look for CPU level\n\tcase $(grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2) in\n\t  PA7*) echo hppa1.1-unknown-linux-\"$LIBC\" ;;\n\t  PA8*) echo hppa2.0-unknown-linux-\"$LIBC\" ;;\n\t  *)    echo hppa-unknown-linux-\"$LIBC\" ;;\n\tesac\n\texit ;;\n    ppc64:Linux:*:*)\n\techo powerpc64-unknown-linux-\"$LIBC\"\n\texit ;;\n    ppc:Linux:*:*)\n\techo powerpc-unknown-linux-\"$LIBC\"\n\texit ;;\n    ppc64le:Linux:*:*)\n\techo powerpc64le-unknown-linux-\"$LIBC\"\n\texit ;;\n    ppcle:Linux:*:*)\n\techo powerpcle-unknown-linux-\"$LIBC\"\n\texit ;;\n    riscv32:Linux:*:* | riscv32be:Linux:*:* | riscv64:Linux:*:* | riscv64be:Linux:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-linux-\"$LIBC\"\n\texit ;;\n    s390:Linux:*:* | s390x:Linux:*:*)\n\techo \"$UNAME_MACHINE\"-ibm-linux-\"$LIBC\"\n\texit ;;\n    sh64*:Linux:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-linux-\"$LIBC\"\n\texit ;;\n    sh*:Linux:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-linux-\"$LIBC\"\n\texit ;;\n    sparc:Linux:*:* | sparc64:Linux:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-linux-\"$LIBC\"\n\texit ;;\n    tile*:Linux:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-linux-\"$LIBC\"\n\texit ;;\n    vax:Linux:*:*)\n\techo \"$UNAME_MACHINE\"-dec-linux-\"$LIBC\"\n\texit ;;\n    x86_64:Linux:*:*)\n\tset_cc_for_build\n\tLIBCABI=$LIBC\n\tif test \"$CC_FOR_BUILD\" != no_compiler_found; then\n\t    if (echo '#ifdef __ILP32__'; echo IS_X32; echo '#endif') | \\\n\t\t(CCOPTS=\"\" $CC_FOR_BUILD -E - 2>/dev/null) | \\\n\t\tgrep IS_X32 >/dev/null\n\t    then\n\t\tLIBCABI=\"$LIBC\"x32\n\t    fi\n\tfi\n\techo \"$UNAME_MACHINE\"-pc-linux-\"$LIBCABI\"\n\texit ;;\n    xtensa*:Linux:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-linux-\"$LIBC\"\n\texit ;;\n    i*86:DYNIX/ptx:4*:*)\n\t# ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.\n\t# earlier versions are messed up and put the nodename in both\n\t# sysname and nodename.\n\techo i386-sequent-sysv4\n\texit ;;\n    i*86:UNIX_SV:4.2MP:2.*)\n\t# Unixware is an offshoot of SVR4, but it has its own version\n\t# number series starting with 2...\n\t# I am not positive that other SVR4 systems won't match this,\n\t# I just have to hope.  -- rms.\n\t# Use sysv4.2uw... so that sysv4* matches it.\n\techo \"$UNAME_MACHINE\"-pc-sysv4.2uw\"$UNAME_VERSION\"\n\texit ;;\n    i*86:OS/2:*:*)\n\t# If we were able to find `uname', then EMX Unix compatibility\n\t# is probably installed.\n\techo \"$UNAME_MACHINE\"-pc-os2-emx\n\texit ;;\n    i*86:XTS-300:*:STOP)\n\techo \"$UNAME_MACHINE\"-unknown-stop\n\texit ;;\n    i*86:atheos:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-atheos\n\texit ;;\n    i*86:syllable:*:*)\n\techo \"$UNAME_MACHINE\"-pc-syllable\n\texit ;;\n    i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*)\n\techo i386-unknown-lynxos\"$UNAME_RELEASE\"\n\texit ;;\n    i*86:*DOS:*:*)\n\techo \"$UNAME_MACHINE\"-pc-msdosdjgpp\n\texit ;;\n    i*86:*:4.*:*)\n\tUNAME_REL=$(echo \"$UNAME_RELEASE\" | sed 's/\\/MP$//')\n\tif grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then\n\t\techo \"$UNAME_MACHINE\"-univel-sysv\"$UNAME_REL\"\n\telse\n\t\techo \"$UNAME_MACHINE\"-pc-sysv\"$UNAME_REL\"\n\tfi\n\texit ;;\n    i*86:*:5:[678]*)\n\t# UnixWare 7.x, OpenUNIX and OpenServer 6.\n\tcase $(/bin/uname -X | grep \"^Machine\") in\n\t    *486*)\t     UNAME_MACHINE=i486 ;;\n\t    *Pentium)\t     UNAME_MACHINE=i586 ;;\n\t    *Pent*|*Celeron) UNAME_MACHINE=i686 ;;\n\tesac\n\techo \"$UNAME_MACHINE-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION}\"\n\texit ;;\n    i*86:*:3.2:*)\n\tif test -f /usr/options/cb.name; then\n\t\tUNAME_REL=$(sed -n 's/.*Version //p' </usr/options/cb.name)\n\t\techo \"$UNAME_MACHINE\"-pc-isc\"$UNAME_REL\"\n\telif /bin/uname -X 2>/dev/null >/dev/null ; then\n\t\tUNAME_REL=$( (/bin/uname -X|grep Release|sed -e 's/.*= //'))\n\t\t(/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486\n\t\t(/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \\\n\t\t\t&& UNAME_MACHINE=i586\n\t\t(/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \\\n\t\t\t&& UNAME_MACHINE=i686\n\t\t(/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \\\n\t\t\t&& UNAME_MACHINE=i686\n\t\techo \"$UNAME_MACHINE\"-pc-sco\"$UNAME_REL\"\n\telse\n\t\techo \"$UNAME_MACHINE\"-pc-sysv32\n\tfi\n\texit ;;\n    pc:*:*:*)\n\t# Left here for compatibility:\n\t# uname -m prints for DJGPP always 'pc', but it prints nothing about\n\t# the processor, so we play safe by assuming i586.\n\t# Note: whatever this is, it MUST be the same as what config.sub\n\t# prints for the \"djgpp\" host, or else GDB configure will decide that\n\t# this is a cross-build.\n\techo i586-pc-msdosdjgpp\n\texit ;;\n    Intel:Mach:3*:*)\n\techo i386-pc-mach3\n\texit ;;\n    paragon:*:*:*)\n\techo i860-intel-osf1\n\texit ;;\n    i860:*:4.*:*) # i860-SVR4\n\tif grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then\n\t  echo i860-stardent-sysv\"$UNAME_RELEASE\" # Stardent Vistra i860-SVR4\n\telse # Add other i860-SVR4 vendors below as they are discovered.\n\t  echo i860-unknown-sysv\"$UNAME_RELEASE\"  # Unknown i860-SVR4\n\tfi\n\texit ;;\n    mini*:CTIX:SYS*5:*)\n\t# \"miniframe\"\n\techo m68010-convergent-sysv\n\texit ;;\n    mc68k:UNIX:SYSTEM5:3.51m)\n\techo m68k-convergent-sysv\n\texit ;;\n    M680?0:D-NIX:5.3:*)\n\techo m68k-diab-dnix\n\texit ;;\n    M68*:*:R3V[5678]*:*)\n\ttest -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;;\n    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)\n\tOS_REL=''\n\ttest -r /etc/.relid \\\n\t&& OS_REL=.$(sed -n 's/[^ ]* [^ ]* \\([0-9][0-9]\\).*/\\1/p' < /etc/.relid)\n\t/bin/uname -p 2>/dev/null | grep 86 >/dev/null \\\n\t  && { echo i486-ncr-sysv4.3\"$OS_REL\"; exit; }\n\t/bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \\\n\t  && { echo i586-ncr-sysv4.3\"$OS_REL\"; exit; } ;;\n    3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)\n\t/bin/uname -p 2>/dev/null | grep 86 >/dev/null \\\n\t  && { echo i486-ncr-sysv4; exit; } ;;\n    NCR*:*:4.2:* | MPRAS*:*:4.2:*)\n\tOS_REL='.3'\n\ttest -r /etc/.relid \\\n\t    && OS_REL=.$(sed -n 's/[^ ]* [^ ]* \\([0-9][0-9]\\).*/\\1/p' < /etc/.relid)\n\t/bin/uname -p 2>/dev/null | grep 86 >/dev/null \\\n\t    && { echo i486-ncr-sysv4.3\"$OS_REL\"; exit; }\n\t/bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \\\n\t    && { echo i586-ncr-sysv4.3\"$OS_REL\"; exit; }\n\t/bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \\\n\t    && { echo i586-ncr-sysv4.3\"$OS_REL\"; exit; } ;;\n    m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*)\n\techo m68k-unknown-lynxos\"$UNAME_RELEASE\"\n\texit ;;\n    mc68030:UNIX_System_V:4.*:*)\n\techo m68k-atari-sysv4\n\texit ;;\n    TSUNAMI:LynxOS:2.*:*)\n\techo sparc-unknown-lynxos\"$UNAME_RELEASE\"\n\texit ;;\n    rs6000:LynxOS:2.*:*)\n\techo rs6000-unknown-lynxos\"$UNAME_RELEASE\"\n\texit ;;\n    PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*)\n\techo powerpc-unknown-lynxos\"$UNAME_RELEASE\"\n\texit ;;\n    SM[BE]S:UNIX_SV:*:*)\n\techo mips-dde-sysv\"$UNAME_RELEASE\"\n\texit ;;\n    RM*:ReliantUNIX-*:*:*)\n\techo mips-sni-sysv4\n\texit ;;\n    RM*:SINIX-*:*:*)\n\techo mips-sni-sysv4\n\texit ;;\n    *:SINIX-*:*:*)\n\tif uname -p 2>/dev/null >/dev/null ; then\n\t\tUNAME_MACHINE=$( (uname -p) 2>/dev/null)\n\t\techo \"$UNAME_MACHINE\"-sni-sysv4\n\telse\n\t\techo ns32k-sni-sysv\n\tfi\n\texit ;;\n    PENTIUM:*:4.0*:*)\t# Unisys `ClearPath HMP IX 4000' SVR4/MP effort\n\t\t\t# says <Richard.M.Bartel@ccMail.Census.GOV>\n\techo i586-unisys-sysv4\n\texit ;;\n    *:UNIX_System_V:4*:FTX*)\n\t# From Gerald Hewes <hewes@openmarket.com>.\n\t# How about differentiating between stratus architectures? -djm\n\techo hppa1.1-stratus-sysv4\n\texit ;;\n    *:*:*:FTX*)\n\t# From seanf@swdc.stratus.com.\n\techo i860-stratus-sysv4\n\texit ;;\n    i*86:VOS:*:*)\n\t# From Paul.Green@stratus.com.\n\techo \"$UNAME_MACHINE\"-stratus-vos\n\texit ;;\n    *:VOS:*:*)\n\t# From Paul.Green@stratus.com.\n\techo hppa1.1-stratus-vos\n\texit ;;\n    mc68*:A/UX:*:*)\n\techo m68k-apple-aux\"$UNAME_RELEASE\"\n\texit ;;\n    news*:NEWS-OS:6*:*)\n\techo mips-sony-newsos6\n\texit ;;\n    R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*)\n\tif test -d /usr/nec; then\n\t\techo mips-nec-sysv\"$UNAME_RELEASE\"\n\telse\n\t\techo mips-unknown-sysv\"$UNAME_RELEASE\"\n\tfi\n\texit ;;\n    BeBox:BeOS:*:*)\t# BeOS running on hardware made by Be, PPC only.\n\techo powerpc-be-beos\n\texit ;;\n    BeMac:BeOS:*:*)\t# BeOS running on Mac or Mac clone, PPC only.\n\techo powerpc-apple-beos\n\texit ;;\n    BePC:BeOS:*:*)\t# BeOS running on Intel PC compatible.\n\techo i586-pc-beos\n\texit ;;\n    BePC:Haiku:*:*)\t# Haiku running on Intel PC compatible.\n\techo i586-pc-haiku\n\texit ;;\n    x86_64:Haiku:*:*)\n\techo x86_64-unknown-haiku\n\texit ;;\n    SX-4:SUPER-UX:*:*)\n\techo sx4-nec-superux\"$UNAME_RELEASE\"\n\texit ;;\n    SX-5:SUPER-UX:*:*)\n\techo sx5-nec-superux\"$UNAME_RELEASE\"\n\texit ;;\n    SX-6:SUPER-UX:*:*)\n\techo sx6-nec-superux\"$UNAME_RELEASE\"\n\texit ;;\n    SX-7:SUPER-UX:*:*)\n\techo sx7-nec-superux\"$UNAME_RELEASE\"\n\texit ;;\n    SX-8:SUPER-UX:*:*)\n\techo sx8-nec-superux\"$UNAME_RELEASE\"\n\texit ;;\n    SX-8R:SUPER-UX:*:*)\n\techo sx8r-nec-superux\"$UNAME_RELEASE\"\n\texit ;;\n    SX-ACE:SUPER-UX:*:*)\n\techo sxace-nec-superux\"$UNAME_RELEASE\"\n\texit ;;\n    Power*:Rhapsody:*:*)\n\techo powerpc-apple-rhapsody\"$UNAME_RELEASE\"\n\texit ;;\n    *:Rhapsody:*:*)\n\techo \"$UNAME_MACHINE\"-apple-rhapsody\"$UNAME_RELEASE\"\n\texit ;;\n    arm64:Darwin:*:*)\n\techo aarch64-apple-darwin\"$UNAME_RELEASE\"\n\texit ;;\n    *:Darwin:*:*)\n\tUNAME_PROCESSOR=$(uname -p)\n\tcase $UNAME_PROCESSOR in\n\t    unknown) UNAME_PROCESSOR=powerpc ;;\n\tesac\n\tif command -v xcode-select > /dev/null 2> /dev/null && \\\n\t\t! xcode-select --print-path > /dev/null 2> /dev/null ; then\n\t    # Avoid executing cc if there is no toolchain installed as\n\t    # cc will be a stub that puts up a graphical alert\n\t    # prompting the user to install developer tools.\n\t    CC_FOR_BUILD=no_compiler_found\n\telse\n\t    set_cc_for_build\n\tfi\n\tif test \"$CC_FOR_BUILD\" != no_compiler_found; then\n\t    if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \\\n\t\t   (CCOPTS=\"\" $CC_FOR_BUILD -E - 2>/dev/null) | \\\n\t\t   grep IS_64BIT_ARCH >/dev/null\n\t    then\n\t\tcase $UNAME_PROCESSOR in\n\t\t    i386) UNAME_PROCESSOR=x86_64 ;;\n\t\t    powerpc) UNAME_PROCESSOR=powerpc64 ;;\n\t\tesac\n\t    fi\n\t    # On 10.4-10.6 one might compile for PowerPC via gcc -arch ppc\n\t    if (echo '#ifdef __POWERPC__'; echo IS_PPC; echo '#endif') | \\\n\t\t   (CCOPTS=\"\" $CC_FOR_BUILD -E - 2>/dev/null) | \\\n\t\t   grep IS_PPC >/dev/null\n\t    then\n\t\tUNAME_PROCESSOR=powerpc\n\t    fi\n\telif test \"$UNAME_PROCESSOR\" = i386 ; then\n\t    # uname -m returns i386 or x86_64\n\t    UNAME_PROCESSOR=$UNAME_MACHINE\n\tfi\n\techo \"$UNAME_PROCESSOR\"-apple-darwin\"$UNAME_RELEASE\"\n\texit ;;\n    *:procnto*:*:* | *:QNX:[0123456789]*:*)\n\tUNAME_PROCESSOR=$(uname -p)\n\tif test \"$UNAME_PROCESSOR\" = x86; then\n\t\tUNAME_PROCESSOR=i386\n\t\tUNAME_MACHINE=pc\n\tfi\n\techo \"$UNAME_PROCESSOR\"-\"$UNAME_MACHINE\"-nto-qnx\"$UNAME_RELEASE\"\n\texit ;;\n    *:QNX:*:4*)\n\techo i386-pc-qnx\n\texit ;;\n    NEO-*:NONSTOP_KERNEL:*:*)\n\techo neo-tandem-nsk\"$UNAME_RELEASE\"\n\texit ;;\n    NSE-*:NONSTOP_KERNEL:*:*)\n\techo nse-tandem-nsk\"$UNAME_RELEASE\"\n\texit ;;\n    NSR-*:NONSTOP_KERNEL:*:*)\n\techo nsr-tandem-nsk\"$UNAME_RELEASE\"\n\texit ;;\n    NSV-*:NONSTOP_KERNEL:*:*)\n\techo nsv-tandem-nsk\"$UNAME_RELEASE\"\n\texit ;;\n    NSX-*:NONSTOP_KERNEL:*:*)\n\techo nsx-tandem-nsk\"$UNAME_RELEASE\"\n\texit ;;\n    *:NonStop-UX:*:*)\n\techo mips-compaq-nonstopux\n\texit ;;\n    BS2000:POSIX*:*:*)\n\techo bs2000-siemens-sysv\n\texit ;;\n    DS/*:UNIX_System_V:*:*)\n\techo \"$UNAME_MACHINE\"-\"$UNAME_SYSTEM\"-\"$UNAME_RELEASE\"\n\texit ;;\n    *:Plan9:*:*)\n\t# \"uname -m\" is not consistent, so use $cputype instead. 386\n\t# is converted to i386 for consistency with other x86\n\t# operating systems.\n\t# shellcheck disable=SC2154\n\tif test \"$cputype\" = 386; then\n\t    UNAME_MACHINE=i386\n\telse\n\t    UNAME_MACHINE=\"$cputype\"\n\tfi\n\techo \"$UNAME_MACHINE\"-unknown-plan9\n\texit ;;\n    *:TOPS-10:*:*)\n\techo pdp10-unknown-tops10\n\texit ;;\n    *:TENEX:*:*)\n\techo pdp10-unknown-tenex\n\texit ;;\n    KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*)\n\techo pdp10-dec-tops20\n\texit ;;\n    XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*)\n\techo pdp10-xkl-tops20\n\texit ;;\n    *:TOPS-20:*:*)\n\techo pdp10-unknown-tops20\n\texit ;;\n    *:ITS:*:*)\n\techo pdp10-unknown-its\n\texit ;;\n    SEI:*:*:SEIUX)\n\techo mips-sei-seiux\"$UNAME_RELEASE\"\n\texit ;;\n    *:DragonFly:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-dragonfly\"$(echo \"$UNAME_RELEASE\"|sed -e 's/[-(].*//')\"\n\texit ;;\n    *:*VMS:*:*)\n\tUNAME_MACHINE=$( (uname -p) 2>/dev/null)\n\tcase \"$UNAME_MACHINE\" in\n\t    A*) echo alpha-dec-vms ; exit ;;\n\t    I*) echo ia64-dec-vms ; exit ;;\n\t    V*) echo vax-dec-vms ; exit ;;\n\tesac ;;\n    *:XENIX:*:SysV)\n\techo i386-pc-xenix\n\texit ;;\n    i*86:skyos:*:*)\n\techo \"$UNAME_MACHINE\"-pc-skyos\"$(echo \"$UNAME_RELEASE\" | sed -e 's/ .*$//')\"\n\texit ;;\n    i*86:rdos:*:*)\n\techo \"$UNAME_MACHINE\"-pc-rdos\n\texit ;;\n    i*86:AROS:*:*)\n\techo \"$UNAME_MACHINE\"-pc-aros\n\texit ;;\n    x86_64:VMkernel:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-esx\n\texit ;;\n    amd64:Isilon\\ OneFS:*:*)\n\techo x86_64-unknown-onefs\n\texit ;;\n    *:Unleashed:*:*)\n\techo \"$UNAME_MACHINE\"-unknown-unleashed\"$UNAME_RELEASE\"\n\texit ;;\nesac\n\n# No uname command or uname output not recognized.\nset_cc_for_build\ncat > \"$dummy.c\" <<EOF\n#ifdef _SEQUENT_\n#include <sys/types.h>\n#include <sys/utsname.h>\n#endif\n#if defined(ultrix) || defined(_ultrix) || defined(__ultrix) || defined(__ultrix__)\n#if defined (vax) || defined (__vax) || defined (__vax__) || defined(mips) || defined(__mips) || defined(__mips__) || defined(MIPS) || defined(__MIPS__)\n#include <signal.h>\n#if defined(_SIZE_T_) || defined(SIGLOST)\n#include <sys/utsname.h>\n#endif\n#endif\n#endif\nmain ()\n{\n#if defined (sony)\n#if defined (MIPSEB)\n  /* BFD wants \"bsd\" instead of \"newsos\".  Perhaps BFD should be changed,\n     I don't know....  */\n  printf (\"mips-sony-bsd\\n\"); exit (0);\n#else\n#include <sys/param.h>\n  printf (\"m68k-sony-newsos%s\\n\",\n#ifdef NEWSOS4\n  \"4\"\n#else\n  \"\"\n#endif\n  ); exit (0);\n#endif\n#endif\n\n#if defined (NeXT)\n#if !defined (__ARCHITECTURE__)\n#define __ARCHITECTURE__ \"m68k\"\n#endif\n  int version;\n  version=$( (hostinfo | sed -n 's/.*NeXT Mach \\([0-9]*\\).*/\\1/p') 2>/dev/null);\n  if (version < 4)\n    printf (\"%s-next-nextstep%d\\n\", __ARCHITECTURE__, version);\n  else\n    printf (\"%s-next-openstep%d\\n\", __ARCHITECTURE__, version);\n  exit (0);\n#endif\n\n#if defined (MULTIMAX) || defined (n16)\n#if defined (UMAXV)\n  printf (\"ns32k-encore-sysv\\n\"); exit (0);\n#else\n#if defined (CMU)\n  printf (\"ns32k-encore-mach\\n\"); exit (0);\n#else\n  printf (\"ns32k-encore-bsd\\n\"); exit (0);\n#endif\n#endif\n#endif\n\n#if defined (__386BSD__)\n  printf (\"i386-pc-bsd\\n\"); exit (0);\n#endif\n\n#if defined (sequent)\n#if defined (i386)\n  printf (\"i386-sequent-dynix\\n\"); exit (0);\n#endif\n#if defined (ns32000)\n  printf (\"ns32k-sequent-dynix\\n\"); exit (0);\n#endif\n#endif\n\n#if defined (_SEQUENT_)\n  struct utsname un;\n\n  uname(&un);\n  if (strncmp(un.version, \"V2\", 2) == 0) {\n    printf (\"i386-sequent-ptx2\\n\"); exit (0);\n  }\n  if (strncmp(un.version, \"V1\", 2) == 0) { /* XXX is V1 correct? */\n    printf (\"i386-sequent-ptx1\\n\"); exit (0);\n  }\n  printf (\"i386-sequent-ptx\\n\"); exit (0);\n#endif\n\n#if defined (vax)\n#if !defined (ultrix)\n#include <sys/param.h>\n#if defined (BSD)\n#if BSD == 43\n  printf (\"vax-dec-bsd4.3\\n\"); exit (0);\n#else\n#if BSD == 199006\n  printf (\"vax-dec-bsd4.3reno\\n\"); exit (0);\n#else\n  printf (\"vax-dec-bsd\\n\"); exit (0);\n#endif\n#endif\n#else\n  printf (\"vax-dec-bsd\\n\"); exit (0);\n#endif\n#else\n#if defined(_SIZE_T_) || defined(SIGLOST)\n  struct utsname un;\n  uname (&un);\n  printf (\"vax-dec-ultrix%s\\n\", un.release); exit (0);\n#else\n  printf (\"vax-dec-ultrix\\n\"); exit (0);\n#endif\n#endif\n#endif\n#if defined(ultrix) || defined(_ultrix) || defined(__ultrix) || defined(__ultrix__)\n#if defined(mips) || defined(__mips) || defined(__mips__) || defined(MIPS) || defined(__MIPS__)\n#if defined(_SIZE_T_) || defined(SIGLOST)\n  struct utsname *un;\n  uname (&un);\n  printf (\"mips-dec-ultrix%s\\n\", un.release); exit (0);\n#else\n  printf (\"mips-dec-ultrix\\n\"); exit (0);\n#endif\n#endif\n#endif\n\n#if defined (alliant) && defined (i860)\n  printf (\"i860-alliant-bsd\\n\"); exit (0);\n#endif\n\n  exit (1);\n}\nEOF\n\n$CC_FOR_BUILD -o \"$dummy\" \"$dummy.c\" 2>/dev/null && SYSTEM_NAME=$($dummy) &&\n\t{ echo \"$SYSTEM_NAME\"; exit; }\n\n# Apollos put the system type in the environment.\ntest -d /usr/apollo && { echo \"$ISP-apollo-$SYSTYPE\"; exit; }\n\necho \"$0: unable to guess system type\" >&2\n\ncase \"$UNAME_MACHINE:$UNAME_SYSTEM\" in\n    mips:Linux | mips64:Linux)\n\t# If we got here on MIPS GNU/Linux, output extra information.\n\tcat >&2 <<EOF\n\nNOTE: MIPS GNU/Linux systems require a C compiler to fully recognize\nthe system type. Please install a C compiler and try again.\nEOF\n\t;;\nesac\n\ncat >&2 <<EOF\n\nThis script (version $timestamp), has failed to recognize the\noperating system you are using. If your script is old, overwrite *all*\ncopies of config.guess and config.sub with the latest versions from:\n\n  https://git.savannah.gnu.org/cgit/config.git/plain/config.guess\nand\n  https://git.savannah.gnu.org/cgit/config.git/plain/config.sub\nEOF\n\nyear=$(echo $timestamp | sed 's,-.*,,')\n# shellcheck disable=SC2003\nif test \"$(expr \"$(date +%Y)\" - \"$year\")\" -lt 3 ; then\n   cat >&2 <<EOF\n\nIf $0 has already been updated, send the following data and any\ninformation you think might be pertinent to config-patches@gnu.org to\nprovide the necessary information to handle your system.\n\nconfig.guess timestamp = $timestamp\n\nuname -m = $( (uname -m) 2>/dev/null || echo unknown)\nuname -r = $( (uname -r) 2>/dev/null || echo unknown)\nuname -s = $( (uname -s) 2>/dev/null || echo unknown)\nuname -v = $( (uname -v) 2>/dev/null || echo unknown)\n\n/usr/bin/uname -p = $( (/usr/bin/uname -p) 2>/dev/null)\n/bin/uname -X     = $( (/bin/uname -X) 2>/dev/null)\n\nhostinfo               = $( (hostinfo) 2>/dev/null)\n/bin/universe          = $( (/bin/universe) 2>/dev/null)\n/usr/bin/arch -k       = $( (/usr/bin/arch -k) 2>/dev/null)\n/bin/arch              = $( (/bin/arch) 2>/dev/null)\n/usr/bin/oslevel       = $( (/usr/bin/oslevel) 2>/dev/null)\n/usr/convex/getsysinfo = $( (/usr/convex/getsysinfo) 2>/dev/null)\n\nUNAME_MACHINE = \"$UNAME_MACHINE\"\nUNAME_RELEASE = \"$UNAME_RELEASE\"\nUNAME_SYSTEM  = \"$UNAME_SYSTEM\"\nUNAME_VERSION = \"$UNAME_VERSION\"\nEOF\nfi\n\nexit 1\n\n# Local variables:\n# eval: (add-hook 'before-save-hook 'time-stamp)\n# time-stamp-start: \"timestamp='\"\n# time-stamp-format: \"%:y-%02m-%02d\"\n# time-stamp-end: \"'\"\n# End:"
  },
  {
    "path": "ext/cld/build_aux/config.sub",
    "content": "#! /bin/sh\n# Configuration validation subroutine script.\n#   Copyright 1992-2021 Free Software Foundation, Inc.\n\ntimestamp='2021-01-01'\n\n# This file is free software; you can redistribute it and/or modify it\n# under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful, but\n# WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n# General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program; if not, see <https://www.gnu.org/licenses/>.\n#\n# As a special exception to the GNU General Public License, if you\n# distribute this file as part of a program that contains a\n# configuration script generated by Autoconf, you may include it under\n# the same distribution terms that you use for the rest of that\n# program.  This Exception is an additional permission under section 7\n# of the GNU General Public License, version 3 (\"GPLv3\").\n\n\n# Please send patches to <config-patches@gnu.org>.\n#\n# Configuration subroutine to validate and canonicalize a configuration type.\n# Supply the specified configuration type as an argument.\n# If it is invalid, we print an error message on stderr and exit with code 1.\n# Otherwise, we print the canonical config type on stdout and succeed.\n\n# You can get the latest version of this script from:\n# https://git.savannah.gnu.org/cgit/config.git/plain/config.sub\n\n# This file is supposed to be the same for all GNU packages\n# and recognize all the CPU types, system types and aliases\n# that are meaningful with *any* GNU software.\n# Each package is responsible for reporting which valid configurations\n# it does not support.  The user should be able to distinguish\n# a failure to support a valid configuration from a meaningless\n# configuration.\n\n# The goal of this file is to map all the various variations of a given\n# machine specification into a single specification in the form:\n#\tCPU_TYPE-MANUFACTURER-OPERATING_SYSTEM\n# or in some cases, the newer four-part form:\n#\tCPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM\n# It is wrong to echo any other type of specification.\n\nme=$(echo \"$0\" | sed -e 's,.*/,,')\n\nusage=\"\\\nUsage: $0 [OPTION] CPU-MFR-OPSYS or ALIAS\n\nCanonicalize a configuration name.\n\nOptions:\n  -h, --help         print this help, then exit\n  -t, --time-stamp   print date of last modification, then exit\n  -v, --version      print version number, then exit\n\nReport bugs and patches to <config-patches@gnu.org>.\"\n\nversion=\"\\\nGNU config.sub ($timestamp)\n\nCopyright 1992-2021 Free Software Foundation, Inc.\n\nThis is free software; see the source for copying conditions.  There is NO\nwarranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\"\n\nhelp=\"\nTry \\`$me --help' for more information.\"\n\n# Parse command line\nwhile test $# -gt 0 ; do\n  case $1 in\n    --time-stamp | --time* | -t )\n       echo \"$timestamp\" ; exit ;;\n    --version | -v )\n       echo \"$version\" ; exit ;;\n    --help | --h* | -h )\n       echo \"$usage\"; exit ;;\n    -- )     # Stop option processing\n       shift; break ;;\n    - )\t# Use stdin as input.\n       break ;;\n    -* )\n       echo \"$me: invalid option $1$help\" >&2\n       exit 1 ;;\n\n    *local*)\n       # First pass through any local machine types.\n       echo \"$1\"\n       exit ;;\n\n    * )\n       break ;;\n  esac\ndone\n\ncase $# in\n 0) echo \"$me: missing argument$help\" >&2\n    exit 1;;\n 1) ;;\n *) echo \"$me: too many arguments$help\" >&2\n    exit 1;;\nesac\n\n# Split fields of configuration type\n# shellcheck disable=SC2162\nIFS=\"-\" read field1 field2 field3 field4 <<EOF\n$1\nEOF\n\n# Separate into logical components for further validation\ncase $1 in\n\t*-*-*-*-*)\n\t\techo Invalid configuration \\`\"$1\"\\': more than four components >&2\n\t\texit 1\n\t\t;;\n\t*-*-*-*)\n\t\tbasic_machine=$field1-$field2\n\t\tbasic_os=$field3-$field4\n\t\t;;\n\t*-*-*)\n\t\t# Ambiguous whether COMPANY is present, or skipped and KERNEL-OS is two\n\t\t# parts\n\t\tmaybe_os=$field2-$field3\n\t\tcase $maybe_os in\n\t\t\tnto-qnx* | linux-* | uclinux-uclibc* \\\n\t\t\t| uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* \\\n\t\t\t| netbsd*-eabi* | kopensolaris*-gnu* | cloudabi*-eabi* \\\n\t\t\t| storm-chaos* | os2-emx* | rtmk-nova*)\n\t\t\t\tbasic_machine=$field1\n\t\t\t\tbasic_os=$maybe_os\n\t\t\t\t;;\n\t\t\tandroid-linux)\n\t\t\t\tbasic_machine=$field1-unknown\n\t\t\t\tbasic_os=linux-android\n\t\t\t\t;;\n\t\t\t*)\n\t\t\t\tbasic_machine=$field1-$field2\n\t\t\t\tbasic_os=$field3\n\t\t\t\t;;\n\t\tesac\n\t\t;;\n\t*-*)\n\t\t# A lone config we happen to match not fitting any pattern\n\t\tcase $field1-$field2 in\n\t\t\tdecstation-3100)\n\t\t\t\tbasic_machine=mips-dec\n\t\t\t\tbasic_os=\n\t\t\t\t;;\n\t\t\t*-*)\n\t\t\t\t# Second component is usually, but not always the OS\n\t\t\t\tcase $field2 in\n\t\t\t\t\t# Prevent following clause from handling this valid os\n\t\t\t\t\tsun*os*)\n\t\t\t\t\t\tbasic_machine=$field1\n\t\t\t\t\t\tbasic_os=$field2\n\t\t\t\t\t\t;;\n\t\t\t\t\t# Manufacturers\n\t\t\t\t\tdec* | mips* | sequent* | encore* | pc533* | sgi* | sony* \\\n\t\t\t\t\t| att* | 7300* | 3300* | delta* | motorola* | sun[234]* \\\n\t\t\t\t\t| unicom* | ibm* | next | hp | isi* | apollo | altos* \\\n\t\t\t\t\t| convergent* | ncr* | news | 32* | 3600* | 3100* \\\n\t\t\t\t\t| hitachi* | c[123]* | convex* | sun | crds | omron* | dg \\\n\t\t\t\t\t| ultra | tti* | harris | dolphin | highlevel | gould \\\n\t\t\t\t\t| cbm | ns | masscomp | apple | axis | knuth | cray \\\n\t\t\t\t\t| microblaze* | sim | cisco \\\n\t\t\t\t\t| oki | wec | wrs | winbond)\n\t\t\t\t\t\tbasic_machine=$field1-$field2\n\t\t\t\t\t\tbasic_os=\n\t\t\t\t\t\t;;\n\t\t\t\t\t*)\n\t\t\t\t\t\tbasic_machine=$field1\n\t\t\t\t\t\tbasic_os=$field2\n\t\t\t\t\t\t;;\n\t\t\t\tesac\n\t\t\t;;\n\t\tesac\n\t\t;;\n\t*)\n\t\t# Convert single-component short-hands not valid as part of\n\t\t# multi-component configurations.\n\t\tcase $field1 in\n\t\t\t386bsd)\n\t\t\t\tbasic_machine=i386-pc\n\t\t\t\tbasic_os=bsd\n\t\t\t\t;;\n\t\t\ta29khif)\n\t\t\t\tbasic_machine=a29k-amd\n\t\t\t\tbasic_os=udi\n\t\t\t\t;;\n\t\t\tadobe68k)\n\t\t\t\tbasic_machine=m68010-adobe\n\t\t\t\tbasic_os=scout\n\t\t\t\t;;\n\t\t\talliant)\n\t\t\t\tbasic_machine=fx80-alliant\n\t\t\t\tbasic_os=\n\t\t\t\t;;\n\t\t\taltos | altos3068)\n\t\t\t\tbasic_machine=m68k-altos\n\t\t\t\tbasic_os=\n\t\t\t\t;;\n\t\t\tam29k)\n\t\t\t\tbasic_machine=a29k-none\n\t\t\t\tbasic_os=bsd\n\t\t\t\t;;\n\t\t\tamdahl)\n\t\t\t\tbasic_machine=580-amdahl\n\t\t\t\tbasic_os=sysv\n\t\t\t\t;;\n\t\t\tamiga)\n\t\t\t\tbasic_machine=m68k-unknown\n\t\t\t\tbasic_os=\n\t\t\t\t;;\n\t\t\tamigaos | amigados)\n\t\t\t\tbasic_machine=m68k-unknown\n\t\t\t\tbasic_os=amigaos\n\t\t\t\t;;\n\t\t\tamigaunix | amix)\n\t\t\t\tbasic_machine=m68k-unknown\n\t\t\t\tbasic_os=sysv4\n\t\t\t\t;;\n\t\t\tapollo68)\n\t\t\t\tbasic_machine=m68k-apollo\n\t\t\t\tbasic_os=sysv\n\t\t\t\t;;\n\t\t\tapollo68bsd)\n\t\t\t\tbasic_machine=m68k-apollo\n\t\t\t\tbasic_os=bsd\n\t\t\t\t;;\n\t\t\taros)\n\t\t\t\tbasic_machine=i386-pc\n\t\t\t\tbasic_os=aros\n\t\t\t\t;;\n\t\t\taux)\n\t\t\t\tbasic_machine=m68k-apple\n\t\t\t\tbasic_os=aux\n\t\t\t\t;;\n\t\t\tbalance)\n\t\t\t\tbasic_machine=ns32k-sequent\n\t\t\t\tbasic_os=dynix\n\t\t\t\t;;\n\t\t\tblackfin)\n\t\t\t\tbasic_machine=bfin-unknown\n\t\t\t\tbasic_os=linux\n\t\t\t\t;;\n\t\t\tcegcc)\n\t\t\t\tbasic_machine=arm-unknown\n\t\t\t\tbasic_os=cegcc\n\t\t\t\t;;\n\t\t\tconvex-c1)\n\t\t\t\tbasic_machine=c1-convex\n\t\t\t\tbasic_os=bsd\n\t\t\t\t;;\n\t\t\tconvex-c2)\n\t\t\t\tbasic_machine=c2-convex\n\t\t\t\tbasic_os=bsd\n\t\t\t\t;;\n\t\t\tconvex-c32)\n\t\t\t\tbasic_machine=c32-convex\n\t\t\t\tbasic_os=bsd\n\t\t\t\t;;\n\t\t\tconvex-c34)\n\t\t\t\tbasic_machine=c34-convex\n\t\t\t\tbasic_os=bsd\n\t\t\t\t;;\n\t\t\tconvex-c38)\n\t\t\t\tbasic_machine=c38-convex\n\t\t\t\tbasic_os=bsd\n\t\t\t\t;;\n\t\t\tcray)\n\t\t\t\tbasic_machine=j90-cray\n\t\t\t\tbasic_os=unicos\n\t\t\t\t;;\n\t\t\tcrds | unos)\n\t\t\t\tbasic_machine=m68k-crds\n\t\t\t\tbasic_os=\n\t\t\t\t;;\n\t\t\tda30)\n\t\t\t\tbasic_machine=m68k-da30\n\t\t\t\tbasic_os=\n\t\t\t\t;;\n\t\t\tdecstation | pmax | pmin | dec3100 | decstatn)\n\t\t\t\tbasic_machine=mips-dec\n\t\t\t\tbasic_os=\n\t\t\t\t;;\n\t\t\tdelta88)\n\t\t\t\tbasic_machine=m88k-motorola\n\t\t\t\tbasic_os=sysv3\n\t\t\t\t;;\n\t\t\tdicos)\n\t\t\t\tbasic_machine=i686-pc\n\t\t\t\tbasic_os=dicos\n\t\t\t\t;;\n\t\t\tdjgpp)\n\t\t\t\tbasic_machine=i586-pc\n\t\t\t\tbasic_os=msdosdjgpp\n\t\t\t\t;;\n\t\t\tebmon29k)\n\t\t\t\tbasic_machine=a29k-amd\n\t\t\t\tbasic_os=ebmon\n\t\t\t\t;;\n\t\t\tes1800 | OSE68k | ose68k | ose | OSE)\n\t\t\t\tbasic_machine=m68k-ericsson\n\t\t\t\tbasic_os=ose\n\t\t\t\t;;\n\t\t\tgmicro)\n\t\t\t\tbasic_machine=tron-gmicro\n\t\t\t\tbasic_os=sysv\n\t\t\t\t;;\n\t\t\tgo32)\n\t\t\t\tbasic_machine=i386-pc\n\t\t\t\tbasic_os=go32\n\t\t\t\t;;\n\t\t\th8300hms)\n\t\t\t\tbasic_machine=h8300-hitachi\n\t\t\t\tbasic_os=hms\n\t\t\t\t;;\n\t\t\th8300xray)\n\t\t\t\tbasic_machine=h8300-hitachi\n\t\t\t\tbasic_os=xray\n\t\t\t\t;;\n\t\t\th8500hms)\n\t\t\t\tbasic_machine=h8500-hitachi\n\t\t\t\tbasic_os=hms\n\t\t\t\t;;\n\t\t\tharris)\n\t\t\t\tbasic_machine=m88k-harris\n\t\t\t\tbasic_os=sysv3\n\t\t\t\t;;\n\t\t\thp300 | hp300hpux)\n\t\t\t\tbasic_machine=m68k-hp\n\t\t\t\tbasic_os=hpux\n\t\t\t\t;;\n\t\t\thp300bsd)\n\t\t\t\tbasic_machine=m68k-hp\n\t\t\t\tbasic_os=bsd\n\t\t\t\t;;\n\t\t\thppaosf)\n\t\t\t\tbasic_machine=hppa1.1-hp\n\t\t\t\tbasic_os=osf\n\t\t\t\t;;\n\t\t\thppro)\n\t\t\t\tbasic_machine=hppa1.1-hp\n\t\t\t\tbasic_os=proelf\n\t\t\t\t;;\n\t\t\ti386mach)\n\t\t\t\tbasic_machine=i386-mach\n\t\t\t\tbasic_os=mach\n\t\t\t\t;;\n\t\t\tisi68 | isi)\n\t\t\t\tbasic_machine=m68k-isi\n\t\t\t\tbasic_os=sysv\n\t\t\t\t;;\n\t\t\tm68knommu)\n\t\t\t\tbasic_machine=m68k-unknown\n\t\t\t\tbasic_os=linux\n\t\t\t\t;;\n\t\t\tmagnum | m3230)\n\t\t\t\tbasic_machine=mips-mips\n\t\t\t\tbasic_os=sysv\n\t\t\t\t;;\n\t\t\tmerlin)\n\t\t\t\tbasic_machine=ns32k-utek\n\t\t\t\tbasic_os=sysv\n\t\t\t\t;;\n\t\t\tmingw64)\n\t\t\t\tbasic_machine=x86_64-pc\n\t\t\t\tbasic_os=mingw64\n\t\t\t\t;;\n\t\t\tmingw32)\n\t\t\t\tbasic_machine=i686-pc\n\t\t\t\tbasic_os=mingw32\n\t\t\t\t;;\n\t\t\tmingw32ce)\n\t\t\t\tbasic_machine=arm-unknown\n\t\t\t\tbasic_os=mingw32ce\n\t\t\t\t;;\n\t\t\tmonitor)\n\t\t\t\tbasic_machine=m68k-rom68k\n\t\t\t\tbasic_os=coff\n\t\t\t\t;;\n\t\t\tmorphos)\n\t\t\t\tbasic_machine=powerpc-unknown\n\t\t\t\tbasic_os=morphos\n\t\t\t\t;;\n\t\t\tmoxiebox)\n\t\t\t\tbasic_machine=moxie-unknown\n\t\t\t\tbasic_os=moxiebox\n\t\t\t\t;;\n\t\t\tmsdos)\n\t\t\t\tbasic_machine=i386-pc\n\t\t\t\tbasic_os=msdos\n\t\t\t\t;;\n\t\t\tmsys)\n\t\t\t\tbasic_machine=i686-pc\n\t\t\t\tbasic_os=msys\n\t\t\t\t;;\n\t\t\tmvs)\n\t\t\t\tbasic_machine=i370-ibm\n\t\t\t\tbasic_os=mvs\n\t\t\t\t;;\n\t\t\tnacl)\n\t\t\t\tbasic_machine=le32-unknown\n\t\t\t\tbasic_os=nacl\n\t\t\t\t;;\n\t\t\tncr3000)\n\t\t\t\tbasic_machine=i486-ncr\n\t\t\t\tbasic_os=sysv4\n\t\t\t\t;;\n\t\t\tnetbsd386)\n\t\t\t\tbasic_machine=i386-pc\n\t\t\t\tbasic_os=netbsd\n\t\t\t\t;;\n\t\t\tnetwinder)\n\t\t\t\tbasic_machine=armv4l-rebel\n\t\t\t\tbasic_os=linux\n\t\t\t\t;;\n\t\t\tnews | news700 | news800 | news900)\n\t\t\t\tbasic_machine=m68k-sony\n\t\t\t\tbasic_os=newsos\n\t\t\t\t;;\n\t\t\tnews1000)\n\t\t\t\tbasic_machine=m68030-sony\n\t\t\t\tbasic_os=newsos\n\t\t\t\t;;\n\t\t\tnecv70)\n\t\t\t\tbasic_machine=v70-nec\n\t\t\t\tbasic_os=sysv\n\t\t\t\t;;\n\t\t\tnh3000)\n\t\t\t\tbasic_machine=m68k-harris\n\t\t\t\tbasic_os=cxux\n\t\t\t\t;;\n\t\t\tnh[45]000)\n\t\t\t\tbasic_machine=m88k-harris\n\t\t\t\tbasic_os=cxux\n\t\t\t\t;;\n\t\t\tnindy960)\n\t\t\t\tbasic_machine=i960-intel\n\t\t\t\tbasic_os=nindy\n\t\t\t\t;;\n\t\t\tmon960)\n\t\t\t\tbasic_machine=i960-intel\n\t\t\t\tbasic_os=mon960\n\t\t\t\t;;\n\t\t\tnonstopux)\n\t\t\t\tbasic_machine=mips-compaq\n\t\t\t\tbasic_os=nonstopux\n\t\t\t\t;;\n\t\t\tos400)\n\t\t\t\tbasic_machine=powerpc-ibm\n\t\t\t\tbasic_os=os400\n\t\t\t\t;;\n\t\t\tOSE68000 | ose68000)\n\t\t\t\tbasic_machine=m68000-ericsson\n\t\t\t\tbasic_os=ose\n\t\t\t\t;;\n\t\t\tos68k)\n\t\t\t\tbasic_machine=m68k-none\n\t\t\t\tbasic_os=os68k\n\t\t\t\t;;\n\t\t\tparagon)\n\t\t\t\tbasic_machine=i860-intel\n\t\t\t\tbasic_os=osf\n\t\t\t\t;;\n\t\t\tparisc)\n\t\t\t\tbasic_machine=hppa-unknown\n\t\t\t\tbasic_os=linux\n\t\t\t\t;;\n\t\t\tpsp)\n\t\t\t\tbasic_machine=mipsallegrexel-sony\n\t\t\t\tbasic_os=psp\n\t\t\t\t;;\n\t\t\tpw32)\n\t\t\t\tbasic_machine=i586-unknown\n\t\t\t\tbasic_os=pw32\n\t\t\t\t;;\n\t\t\trdos | rdos64)\n\t\t\t\tbasic_machine=x86_64-pc\n\t\t\t\tbasic_os=rdos\n\t\t\t\t;;\n\t\t\trdos32)\n\t\t\t\tbasic_machine=i386-pc\n\t\t\t\tbasic_os=rdos\n\t\t\t\t;;\n\t\t\trom68k)\n\t\t\t\tbasic_machine=m68k-rom68k\n\t\t\t\tbasic_os=coff\n\t\t\t\t;;\n\t\t\tsa29200)\n\t\t\t\tbasic_machine=a29k-amd\n\t\t\t\tbasic_os=udi\n\t\t\t\t;;\n\t\t\tsei)\n\t\t\t\tbasic_machine=mips-sei\n\t\t\t\tbasic_os=seiux\n\t\t\t\t;;\n\t\t\tsequent)\n\t\t\t\tbasic_machine=i386-sequent\n\t\t\t\tbasic_os=\n\t\t\t\t;;\n\t\t\tsps7)\n\t\t\t\tbasic_machine=m68k-bull\n\t\t\t\tbasic_os=sysv2\n\t\t\t\t;;\n\t\t\tst2000)\n\t\t\t\tbasic_machine=m68k-tandem\n\t\t\t\tbasic_os=\n\t\t\t\t;;\n\t\t\tstratus)\n\t\t\t\tbasic_machine=i860-stratus\n\t\t\t\tbasic_os=sysv4\n\t\t\t\t;;\n\t\t\tsun2)\n\t\t\t\tbasic_machine=m68000-sun\n\t\t\t\tbasic_os=\n\t\t\t\t;;\n\t\t\tsun2os3)\n\t\t\t\tbasic_machine=m68000-sun\n\t\t\t\tbasic_os=sunos3\n\t\t\t\t;;\n\t\t\tsun2os4)\n\t\t\t\tbasic_machine=m68000-sun\n\t\t\t\tbasic_os=sunos4\n\t\t\t\t;;\n\t\t\tsun3)\n\t\t\t\tbasic_machine=m68k-sun\n\t\t\t\tbasic_os=\n\t\t\t\t;;\n\t\t\tsun3os3)\n\t\t\t\tbasic_machine=m68k-sun\n\t\t\t\tbasic_os=sunos3\n\t\t\t\t;;\n\t\t\tsun3os4)\n\t\t\t\tbasic_machine=m68k-sun\n\t\t\t\tbasic_os=sunos4\n\t\t\t\t;;\n\t\t\tsun4)\n\t\t\t\tbasic_machine=sparc-sun\n\t\t\t\tbasic_os=\n\t\t\t\t;;\n\t\t\tsun4os3)\n\t\t\t\tbasic_machine=sparc-sun\n\t\t\t\tbasic_os=sunos3\n\t\t\t\t;;\n\t\t\tsun4os4)\n\t\t\t\tbasic_machine=sparc-sun\n\t\t\t\tbasic_os=sunos4\n\t\t\t\t;;\n\t\t\tsun4sol2)\n\t\t\t\tbasic_machine=sparc-sun\n\t\t\t\tbasic_os=solaris2\n\t\t\t\t;;\n\t\t\tsun386 | sun386i | roadrunner)\n\t\t\t\tbasic_machine=i386-sun\n\t\t\t\tbasic_os=\n\t\t\t\t;;\n\t\t\tsv1)\n\t\t\t\tbasic_machine=sv1-cray\n\t\t\t\tbasic_os=unicos\n\t\t\t\t;;\n\t\t\tsymmetry)\n\t\t\t\tbasic_machine=i386-sequent\n\t\t\t\tbasic_os=dynix\n\t\t\t\t;;\n\t\t\tt3e)\n\t\t\t\tbasic_machine=alphaev5-cray\n\t\t\t\tbasic_os=unicos\n\t\t\t\t;;\n\t\t\tt90)\n\t\t\t\tbasic_machine=t90-cray\n\t\t\t\tbasic_os=unicos\n\t\t\t\t;;\n\t\t\ttoad1)\n\t\t\t\tbasic_machine=pdp10-xkl\n\t\t\t\tbasic_os=tops20\n\t\t\t\t;;\n\t\t\ttpf)\n\t\t\t\tbasic_machine=s390x-ibm\n\t\t\t\tbasic_os=tpf\n\t\t\t\t;;\n\t\t\tudi29k)\n\t\t\t\tbasic_machine=a29k-amd\n\t\t\t\tbasic_os=udi\n\t\t\t\t;;\n\t\t\tultra3)\n\t\t\t\tbasic_machine=a29k-nyu\n\t\t\t\tbasic_os=sym1\n\t\t\t\t;;\n\t\t\tv810 | necv810)\n\t\t\t\tbasic_machine=v810-nec\n\t\t\t\tbasic_os=none\n\t\t\t\t;;\n\t\t\tvaxv)\n\t\t\t\tbasic_machine=vax-dec\n\t\t\t\tbasic_os=sysv\n\t\t\t\t;;\n\t\t\tvms)\n\t\t\t\tbasic_machine=vax-dec\n\t\t\t\tbasic_os=vms\n\t\t\t\t;;\n\t\t\tvsta)\n\t\t\t\tbasic_machine=i386-pc\n\t\t\t\tbasic_os=vsta\n\t\t\t\t;;\n\t\t\tvxworks960)\n\t\t\t\tbasic_machine=i960-wrs\n\t\t\t\tbasic_os=vxworks\n\t\t\t\t;;\n\t\t\tvxworks68)\n\t\t\t\tbasic_machine=m68k-wrs\n\t\t\t\tbasic_os=vxworks\n\t\t\t\t;;\n\t\t\tvxworks29k)\n\t\t\t\tbasic_machine=a29k-wrs\n\t\t\t\tbasic_os=vxworks\n\t\t\t\t;;\n\t\t\txbox)\n\t\t\t\tbasic_machine=i686-pc\n\t\t\t\tbasic_os=mingw32\n\t\t\t\t;;\n\t\t\tymp)\n\t\t\t\tbasic_machine=ymp-cray\n\t\t\t\tbasic_os=unicos\n\t\t\t\t;;\n\t\t\t*)\n\t\t\t\tbasic_machine=$1\n\t\t\t\tbasic_os=\n\t\t\t\t;;\n\t\tesac\n\t\t;;\nesac\n\n# Decode 1-component or ad-hoc basic machines\ncase $basic_machine in\n\t# Here we handle the default manufacturer of certain CPU types.  It is in\n\t# some cases the only manufacturer, in others, it is the most popular.\n\tw89k)\n\t\tcpu=hppa1.1\n\t\tvendor=winbond\n\t\t;;\n\top50n)\n\t\tcpu=hppa1.1\n\t\tvendor=oki\n\t\t;;\n\top60c)\n\t\tcpu=hppa1.1\n\t\tvendor=oki\n\t\t;;\n\tibm*)\n\t\tcpu=i370\n\t\tvendor=ibm\n\t\t;;\n\torion105)\n\t\tcpu=clipper\n\t\tvendor=highlevel\n\t\t;;\n\tmac | mpw | mac-mpw)\n\t\tcpu=m68k\n\t\tvendor=apple\n\t\t;;\n\tpmac | pmac-mpw)\n\t\tcpu=powerpc\n\t\tvendor=apple\n\t\t;;\n\n\t# Recognize the various machine names and aliases which stand\n\t# for a CPU type and a company and sometimes even an OS.\n\t3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)\n\t\tcpu=m68000\n\t\tvendor=att\n\t\t;;\n\t3b*)\n\t\tcpu=we32k\n\t\tvendor=att\n\t\t;;\n\tbluegene*)\n\t\tcpu=powerpc\n\t\tvendor=ibm\n\t\tbasic_os=cnk\n\t\t;;\n\tdecsystem10* | dec10*)\n\t\tcpu=pdp10\n\t\tvendor=dec\n\t\tbasic_os=tops10\n\t\t;;\n\tdecsystem20* | dec20*)\n\t\tcpu=pdp10\n\t\tvendor=dec\n\t\tbasic_os=tops20\n\t\t;;\n\tdelta | 3300 | motorola-3300 | motorola-delta \\\n\t      | 3300-motorola | delta-motorola)\n\t\tcpu=m68k\n\t\tvendor=motorola\n\t\t;;\n\tdpx2*)\n\t\tcpu=m68k\n\t\tvendor=bull\n\t\tbasic_os=sysv3\n\t\t;;\n\tencore | umax | mmax)\n\t\tcpu=ns32k\n\t\tvendor=encore\n\t\t;;\n\telxsi)\n\t\tcpu=elxsi\n\t\tvendor=elxsi\n\t\tbasic_os=${basic_os:-bsd}\n\t\t;;\n\tfx2800)\n\t\tcpu=i860\n\t\tvendor=alliant\n\t\t;;\n\tgenix)\n\t\tcpu=ns32k\n\t\tvendor=ns\n\t\t;;\n\th3050r* | hiux*)\n\t\tcpu=hppa1.1\n\t\tvendor=hitachi\n\t\tbasic_os=hiuxwe2\n\t\t;;\n\thp3k9[0-9][0-9] | hp9[0-9][0-9])\n\t\tcpu=hppa1.0\n\t\tvendor=hp\n\t\t;;\n\thp9k2[0-9][0-9] | hp9k31[0-9])\n\t\tcpu=m68000\n\t\tvendor=hp\n\t\t;;\n\thp9k3[2-9][0-9])\n\t\tcpu=m68k\n\t\tvendor=hp\n\t\t;;\n\thp9k6[0-9][0-9] | hp6[0-9][0-9])\n\t\tcpu=hppa1.0\n\t\tvendor=hp\n\t\t;;\n\thp9k7[0-79][0-9] | hp7[0-79][0-9])\n\t\tcpu=hppa1.1\n\t\tvendor=hp\n\t\t;;\n\thp9k78[0-9] | hp78[0-9])\n\t\t# FIXME: really hppa2.0-hp\n\t\tcpu=hppa1.1\n\t\tvendor=hp\n\t\t;;\n\thp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893)\n\t\t# FIXME: really hppa2.0-hp\n\t\tcpu=hppa1.1\n\t\tvendor=hp\n\t\t;;\n\thp9k8[0-9][13679] | hp8[0-9][13679])\n\t\tcpu=hppa1.1\n\t\tvendor=hp\n\t\t;;\n\thp9k8[0-9][0-9] | hp8[0-9][0-9])\n\t\tcpu=hppa1.0\n\t\tvendor=hp\n\t\t;;\n\ti*86v32)\n\t\tcpu=$(echo \"$1\" | sed -e 's/86.*/86/')\n\t\tvendor=pc\n\t\tbasic_os=sysv32\n\t\t;;\n\ti*86v4*)\n\t\tcpu=$(echo \"$1\" | sed -e 's/86.*/86/')\n\t\tvendor=pc\n\t\tbasic_os=sysv4\n\t\t;;\n\ti*86v)\n\t\tcpu=$(echo \"$1\" | sed -e 's/86.*/86/')\n\t\tvendor=pc\n\t\tbasic_os=sysv\n\t\t;;\n\ti*86sol2)\n\t\tcpu=$(echo \"$1\" | sed -e 's/86.*/86/')\n\t\tvendor=pc\n\t\tbasic_os=solaris2\n\t\t;;\n\tj90 | j90-cray)\n\t\tcpu=j90\n\t\tvendor=cray\n\t\tbasic_os=${basic_os:-unicos}\n\t\t;;\n\tiris | iris4d)\n\t\tcpu=mips\n\t\tvendor=sgi\n\t\tcase $basic_os in\n\t\t    irix*)\n\t\t\t;;\n\t\t    *)\n\t\t\tbasic_os=irix4\n\t\t\t;;\n\t\tesac\n\t\t;;\n\tminiframe)\n\t\tcpu=m68000\n\t\tvendor=convergent\n\t\t;;\n\t*mint | mint[0-9]* | *MiNT | *MiNT[0-9]*)\n\t\tcpu=m68k\n\t\tvendor=atari\n\t\tbasic_os=mint\n\t\t;;\n\tnews-3600 | risc-news)\n\t\tcpu=mips\n\t\tvendor=sony\n\t\tbasic_os=newsos\n\t\t;;\n\tnext | m*-next)\n\t\tcpu=m68k\n\t\tvendor=next\n\t\tcase $basic_os in\n\t\t    openstep*)\n\t\t        ;;\n\t\t    nextstep*)\n\t\t\t;;\n\t\t    ns2*)\n\t\t      basic_os=nextstep2\n\t\t\t;;\n\t\t    *)\n\t\t      basic_os=nextstep3\n\t\t\t;;\n\t\tesac\n\t\t;;\n\tnp1)\n\t\tcpu=np1\n\t\tvendor=gould\n\t\t;;\n\top50n-* | op60c-*)\n\t\tcpu=hppa1.1\n\t\tvendor=oki\n\t\tbasic_os=proelf\n\t\t;;\n\tpa-hitachi)\n\t\tcpu=hppa1.1\n\t\tvendor=hitachi\n\t\tbasic_os=hiuxwe2\n\t\t;;\n\tpbd)\n\t\tcpu=sparc\n\t\tvendor=tti\n\t\t;;\n\tpbb)\n\t\tcpu=m68k\n\t\tvendor=tti\n\t\t;;\n\tpc532)\n\t\tcpu=ns32k\n\t\tvendor=pc532\n\t\t;;\n\tpn)\n\t\tcpu=pn\n\t\tvendor=gould\n\t\t;;\n\tpower)\n\t\tcpu=power\n\t\tvendor=ibm\n\t\t;;\n\tps2)\n\t\tcpu=i386\n\t\tvendor=ibm\n\t\t;;\n\trm[46]00)\n\t\tcpu=mips\n\t\tvendor=siemens\n\t\t;;\n\trtpc | rtpc-*)\n\t\tcpu=romp\n\t\tvendor=ibm\n\t\t;;\n\tsde)\n\t\tcpu=mipsisa32\n\t\tvendor=sde\n\t\tbasic_os=${basic_os:-elf}\n\t\t;;\n\tsimso-wrs)\n\t\tcpu=sparclite\n\t\tvendor=wrs\n\t\tbasic_os=vxworks\n\t\t;;\n\ttower | tower-32)\n\t\tcpu=m68k\n\t\tvendor=ncr\n\t\t;;\n\tvpp*|vx|vx-*)\n\t\tcpu=f301\n\t\tvendor=fujitsu\n\t\t;;\n\tw65)\n\t\tcpu=w65\n\t\tvendor=wdc\n\t\t;;\n\tw89k-*)\n\t\tcpu=hppa1.1\n\t\tvendor=winbond\n\t\tbasic_os=proelf\n\t\t;;\n\tnone)\n\t\tcpu=none\n\t\tvendor=none\n\t\t;;\n\tleon|leon[3-9])\n\t\tcpu=sparc\n\t\tvendor=$basic_machine\n\t\t;;\n\tleon-*|leon[3-9]-*)\n\t\tcpu=sparc\n\t\tvendor=$(echo \"$basic_machine\" | sed 's/-.*//')\n\t\t;;\n\n\t*-*)\n\t\t# shellcheck disable=SC2162\n\t\tIFS=\"-\" read cpu vendor <<EOF\n$basic_machine\nEOF\n\t\t;;\n\t# We use `pc' rather than `unknown'\n\t# because (1) that's what they normally are, and\n\t# (2) the word \"unknown\" tends to confuse beginning users.\n\ti*86 | x86_64)\n\t\tcpu=$basic_machine\n\t\tvendor=pc\n\t\t;;\n\t# These rules are duplicated from below for sake of the special case above;\n\t# i.e. things that normalized to x86 arches should also default to \"pc\"\n\tpc98)\n\t\tcpu=i386\n\t\tvendor=pc\n\t\t;;\n\tx64 | amd64)\n\t\tcpu=x86_64\n\t\tvendor=pc\n\t\t;;\n\t# Recognize the basic CPU types without company name.\n\t*)\n\t\tcpu=$basic_machine\n\t\tvendor=unknown\n\t\t;;\nesac\n\nunset -v basic_machine\n\n# Decode basic machines in the full and proper CPU-Company form.\ncase $cpu-$vendor in\n\t# Here we handle the default manufacturer of certain CPU types in canonical form. It is in\n\t# some cases the only manufacturer, in others, it is the most popular.\n\tcraynv-unknown)\n\t\tvendor=cray\n\t\tbasic_os=${basic_os:-unicosmp}\n\t\t;;\n\tc90-unknown | c90-cray)\n\t\tvendor=cray\n\t\tbasic_os=${Basic_os:-unicos}\n\t\t;;\n\tfx80-unknown)\n\t\tvendor=alliant\n\t\t;;\n\tromp-unknown)\n\t\tvendor=ibm\n\t\t;;\n\tmmix-unknown)\n\t\tvendor=knuth\n\t\t;;\n\tmicroblaze-unknown | microblazeel-unknown)\n\t\tvendor=xilinx\n\t\t;;\n\trs6000-unknown)\n\t\tvendor=ibm\n\t\t;;\n\tvax-unknown)\n\t\tvendor=dec\n\t\t;;\n\tpdp11-unknown)\n\t\tvendor=dec\n\t\t;;\n\twe32k-unknown)\n\t\tvendor=att\n\t\t;;\n\tcydra-unknown)\n\t\tvendor=cydrome\n\t\t;;\n\ti370-ibm*)\n\t\tvendor=ibm\n\t\t;;\n\torion-unknown)\n\t\tvendor=highlevel\n\t\t;;\n\txps-unknown | xps100-unknown)\n\t\tcpu=xps100\n\t\tvendor=honeywell\n\t\t;;\n\n\t# Here we normalize CPU types with a missing or matching vendor\n\tdpx20-unknown | dpx20-bull)\n\t\tcpu=rs6000\n\t\tvendor=bull\n\t\tbasic_os=${basic_os:-bosx}\n\t\t;;\n\n\t# Here we normalize CPU types irrespective of the vendor\n\tamd64-*)\n\t\tcpu=x86_64\n\t\t;;\n\tblackfin-*)\n\t\tcpu=bfin\n\t\tbasic_os=linux\n\t\t;;\n\tc54x-*)\n\t\tcpu=tic54x\n\t\t;;\n\tc55x-*)\n\t\tcpu=tic55x\n\t\t;;\n\tc6x-*)\n\t\tcpu=tic6x\n\t\t;;\n\te500v[12]-*)\n\t\tcpu=powerpc\n\t\tbasic_os=${basic_os}\"spe\"\n\t\t;;\n\tmips3*-*)\n\t\tcpu=mips64\n\t\t;;\n\tms1-*)\n\t\tcpu=mt\n\t\t;;\n\tm68knommu-*)\n\t\tcpu=m68k\n\t\tbasic_os=linux\n\t\t;;\n\tm9s12z-* | m68hcs12z-* | hcs12z-* | s12z-*)\n\t\tcpu=s12z\n\t\t;;\n\topenrisc-*)\n\t\tcpu=or32\n\t\t;;\n\tparisc-*)\n\t\tcpu=hppa\n\t\tbasic_os=linux\n\t\t;;\n\tpentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)\n\t\tcpu=i586\n\t\t;;\n\tpentiumpro-* | p6-* | 6x86-* | athlon-* | athalon_*-*)\n\t\tcpu=i686\n\t\t;;\n\tpentiumii-* | pentium2-* | pentiumiii-* | pentium3-*)\n\t\tcpu=i686\n\t\t;;\n\tpentium4-*)\n\t\tcpu=i786\n\t\t;;\n\tpc98-*)\n\t\tcpu=i386\n\t\t;;\n\tppc-* | ppcbe-*)\n\t\tcpu=powerpc\n\t\t;;\n\tppcle-* | powerpclittle-*)\n\t\tcpu=powerpcle\n\t\t;;\n\tppc64-*)\n\t\tcpu=powerpc64\n\t\t;;\n\tppc64le-* | powerpc64little-*)\n\t\tcpu=powerpc64le\n\t\t;;\n\tsb1-*)\n\t\tcpu=mipsisa64sb1\n\t\t;;\n\tsb1el-*)\n\t\tcpu=mipsisa64sb1el\n\t\t;;\n\tsh5e[lb]-*)\n\t\tcpu=$(echo \"$cpu\" | sed 's/^\\(sh.\\)e\\(.\\)$/\\1\\2e/')\n\t\t;;\n\tspur-*)\n\t\tcpu=spur\n\t\t;;\n\tstrongarm-* | thumb-*)\n\t\tcpu=arm\n\t\t;;\n\ttx39-*)\n\t\tcpu=mipstx39\n\t\t;;\n\ttx39el-*)\n\t\tcpu=mipstx39el\n\t\t;;\n\tx64-*)\n\t\tcpu=x86_64\n\t\t;;\n\txscale-* | xscalee[bl]-*)\n\t\tcpu=$(echo \"$cpu\" | sed 's/^xscale/arm/')\n\t\t;;\n\tarm64-*)\n\t\tcpu=aarch64\n\t\t;;\n\n\t# Recognize the canonical CPU Types that limit and/or modify the\n\t# company names they are paired with.\n\tcr16-*)\n\t\tbasic_os=${basic_os:-elf}\n\t\t;;\n\tcrisv32-* | etraxfs*-*)\n\t\tcpu=crisv32\n\t\tvendor=axis\n\t\t;;\n\tcris-* | etrax*-*)\n\t\tcpu=cris\n\t\tvendor=axis\n\t\t;;\n\tcrx-*)\n\t\tbasic_os=${basic_os:-elf}\n\t\t;;\n\tneo-tandem)\n\t\tcpu=neo\n\t\tvendor=tandem\n\t\t;;\n\tnse-tandem)\n\t\tcpu=nse\n\t\tvendor=tandem\n\t\t;;\n\tnsr-tandem)\n\t\tcpu=nsr\n\t\tvendor=tandem\n\t\t;;\n\tnsv-tandem)\n\t\tcpu=nsv\n\t\tvendor=tandem\n\t\t;;\n\tnsx-tandem)\n\t\tcpu=nsx\n\t\tvendor=tandem\n\t\t;;\n\tmipsallegrexel-sony)\n\t\tcpu=mipsallegrexel\n\t\tvendor=sony\n\t\t;;\n\ttile*-*)\n\t\tbasic_os=${basic_os:-linux-gnu}\n\t\t;;\n\n\t*)\n\t\t# Recognize the canonical CPU types that are allowed with any\n\t\t# company name.\n\t\tcase $cpu in\n\t\t\t1750a | 580 \\\n\t\t\t| a29k \\\n\t\t\t| aarch64 | aarch64_be \\\n\t\t\t| abacus \\\n\t\t\t| alpha | alphaev[4-8] | alphaev56 | alphaev6[78] \\\n\t\t\t| alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] \\\n\t\t\t| alphapca5[67] | alpha64pca5[67] \\\n\t\t\t| am33_2.0 \\\n\t\t\t| amdgcn \\\n\t\t\t| arc | arceb \\\n\t\t\t| arm | arm[lb]e | arme[lb] | armv* \\\n\t\t\t| avr | avr32 \\\n\t\t\t| asmjs \\\n\t\t\t| ba \\\n\t\t\t| be32 | be64 \\\n\t\t\t| bfin | bpf | bs2000 \\\n\t\t\t| c[123]* | c30 | [cjt]90 | c4x \\\n\t\t\t| c8051 | clipper | craynv | csky | cydra \\\n\t\t\t| d10v | d30v | dlx | dsp16xx \\\n\t\t\t| e2k | elxsi | epiphany \\\n\t\t\t| f30[01] | f700 | fido | fr30 | frv | ft32 | fx80 \\\n\t\t\t| h8300 | h8500 \\\n\t\t\t| hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \\\n\t\t\t| hexagon \\\n\t\t\t| i370 | i*86 | i860 | i960 | ia16 | ia64 \\\n\t\t\t| ip2k | iq2000 \\\n\t\t\t| k1om \\\n\t\t\t| le32 | le64 \\\n\t\t\t| lm32 \\\n\t\t\t| loongarch32 | loongarch64 | loongarchx32 \\\n\t\t\t| m32c | m32r | m32rle \\\n\t\t\t| m5200 | m68000 | m680[012346]0 | m68360 | m683?2 | m68k \\\n\t\t\t| m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x \\\n\t\t\t| m88110 | m88k | maxq | mb | mcore | mep | metag \\\n\t\t\t| microblaze | microblazeel \\\n\t\t\t| mips | mipsbe | mipseb | mipsel | mipsle \\\n\t\t\t| mips16 \\\n\t\t\t| mips64 | mips64eb | mips64el \\\n\t\t\t| mips64octeon | mips64octeonel \\\n\t\t\t| mips64orion | mips64orionel \\\n\t\t\t| mips64r5900 | mips64r5900el \\\n\t\t\t| mips64vr | mips64vrel \\\n\t\t\t| mips64vr4100 | mips64vr4100el \\\n\t\t\t| mips64vr4300 | mips64vr4300el \\\n\t\t\t| mips64vr5000 | mips64vr5000el \\\n\t\t\t| mips64vr5900 | mips64vr5900el \\\n\t\t\t| mipsisa32 | mipsisa32el \\\n\t\t\t| mipsisa32r2 | mipsisa32r2el \\\n\t\t\t| mipsisa32r6 | mipsisa32r6el \\\n\t\t\t| mipsisa64 | mipsisa64el \\\n\t\t\t| mipsisa64r2 | mipsisa64r2el \\\n\t\t\t| mipsisa64r6 | mipsisa64r6el \\\n\t\t\t| mipsisa64sb1 | mipsisa64sb1el \\\n\t\t\t| mipsisa64sr71k | mipsisa64sr71kel \\\n\t\t\t| mipsr5900 | mipsr5900el \\\n\t\t\t| mipstx39 | mipstx39el \\\n\t\t\t| mmix \\\n\t\t\t| mn10200 | mn10300 \\\n\t\t\t| moxie \\\n\t\t\t| mt \\\n\t\t\t| msp430 \\\n\t\t\t| nds32 | nds32le | nds32be \\\n\t\t\t| nfp \\\n\t\t\t| nios | nios2 | nios2eb | nios2el \\\n\t\t\t| none | np1 | ns16k | ns32k | nvptx \\\n\t\t\t| open8 \\\n\t\t\t| or1k* \\\n\t\t\t| or32 \\\n\t\t\t| orion \\\n\t\t\t| picochip \\\n\t\t\t| pdp10 | pdp11 | pj | pjl | pn | power \\\n\t\t\t| powerpc | powerpc64 | powerpc64le | powerpcle | powerpcspe \\\n\t\t\t| pru \\\n\t\t\t| pyramid \\\n\t\t\t| riscv | riscv32 | riscv32be | riscv64 | riscv64be \\\n\t\t\t| rl78 | romp | rs6000 | rx \\\n\t\t\t| s390 | s390x \\\n\t\t\t| score \\\n\t\t\t| sh | shl \\\n\t\t\t| sh[1234] | sh[24]a | sh[24]ae[lb] | sh[23]e | she[lb] | sh[lb]e \\\n\t\t\t| sh[1234]e[lb] |  sh[12345][lb]e | sh[23]ele | sh64 | sh64le \\\n\t\t\t| sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet \\\n\t\t\t| sparclite \\\n\t\t\t| sparcv8 | sparcv9 | sparcv9b | sparcv9v | sv1 | sx* \\\n\t\t\t| spu \\\n\t\t\t| tahoe \\\n\t\t\t| thumbv7* \\\n\t\t\t| tic30 | tic4x | tic54x | tic55x | tic6x | tic80 \\\n\t\t\t| tron \\\n\t\t\t| ubicom32 \\\n\t\t\t| v70 | v850 | v850e | v850e1 | v850es | v850e2 | v850e2v3 \\\n\t\t\t| vax \\\n\t\t\t| visium \\\n\t\t\t| w65 \\\n\t\t\t| wasm32 | wasm64 \\\n\t\t\t| we32k \\\n\t\t\t| x86 | x86_64 | xc16x | xgate | xps100 \\\n\t\t\t| xstormy16 | xtensa* \\\n\t\t\t| ymp \\\n\t\t\t| z8k | z80)\n\t\t\t\t;;\n\n\t\t\t*)\n\t\t\t\techo Invalid configuration \\`\"$1\"\\': machine \\`\"$cpu-$vendor\"\\' not recognized 1>&2\n\t\t\t\texit 1\n\t\t\t\t;;\n\t\tesac\n\t\t;;\nesac\n\n# Here we canonicalize certain aliases for manufacturers.\ncase $vendor in\n\tdigital*)\n\t\tvendor=dec\n\t\t;;\n\tcommodore*)\n\t\tvendor=cbm\n\t\t;;\n\t*)\n\t\t;;\nesac\n\n# Decode manufacturer-specific aliases for certain operating systems.\n\nif test x$basic_os != x\nthen\n\n# First recognize some ad-hoc caes, or perhaps split kernel-os, or else just\n# set os.\ncase $basic_os in\n\tgnu/linux*)\n\t\tkernel=linux\n\t\tos=$(echo $basic_os | sed -e 's|gnu/linux|gnu|')\n\t\t;;\n\tos2-emx)\n\t\tkernel=os2\n\t\tos=$(echo $basic_os | sed -e 's|os2-emx|emx|')\n\t\t;;\n\tnto-qnx*)\n\t\tkernel=nto\n\t\tos=$(echo $basic_os | sed -e 's|nto-qnx|qnx|')\n\t\t;;\n\t*-*)\n\t\t# shellcheck disable=SC2162\n\t\tIFS=\"-\" read kernel os <<EOF\n$basic_os\nEOF\n\t\t;;\n\t# Default OS when just kernel was specified\n\tnto*)\n\t\tkernel=nto\n\t\tos=$(echo $basic_os | sed -e 's|nto|qnx|')\n\t\t;;\n\tlinux*)\n\t\tkernel=linux\n\t\tos=$(echo $basic_os | sed -e 's|linux|gnu|')\n\t\t;;\n\t*)\n\t\tkernel=\n\t\tos=$basic_os\n\t\t;;\nesac\n\n# Now, normalize the OS (knowing we just have one component, it's not a kernel,\n# etc.)\ncase $os in\n\t# First match some system type aliases that might get confused\n\t# with valid system types.\n\t# solaris* is a basic system type, with this one exception.\n\tauroraux)\n\t\tos=auroraux\n\t\t;;\n\tbluegene*)\n\t\tos=cnk\n\t\t;;\n\tsolaris1 | solaris1.*)\n\t\tos=$(echo $os | sed -e 's|solaris1|sunos4|')\n\t\t;;\n\tsolaris)\n\t\tos=solaris2\n\t\t;;\n\tunixware*)\n\t\tos=sysv4.2uw\n\t\t;;\n\t# es1800 is here to avoid being matched by es* (a different OS)\n\tes1800*)\n\t\tos=ose\n\t\t;;\n\t# Some version numbers need modification\n\tchorusos*)\n\t\tos=chorusos\n\t\t;;\n\tisc)\n\t\tos=isc2.2\n\t\t;;\n\tsco6)\n\t\tos=sco5v6\n\t\t;;\n\tsco5)\n\t\tos=sco3.2v5\n\t\t;;\n\tsco4)\n\t\tos=sco3.2v4\n\t\t;;\n\tsco3.2.[4-9]*)\n\t\tos=$(echo $os | sed -e 's/sco3.2./sco3.2v/')\n\t\t;;\n\tsco*v* | scout)\n\t\t# Don't match below\n\t\t;;\n\tsco*)\n\t\tos=sco3.2v2\n\t\t;;\n\tpsos*)\n\t\tos=psos\n\t\t;;\n\tqnx*)\n\t\tos=qnx\n\t\t;;\n\thiux*)\n\t\tos=hiuxwe2\n\t\t;;\n\tlynx*178)\n\t\tos=lynxos178\n\t\t;;\n\tlynx*5)\n\t\tos=lynxos5\n\t\t;;\n\tlynxos*)\n\t\t# don't get caught up in next wildcard\n\t\t;;\n\tlynx*)\n\t\tos=lynxos\n\t\t;;\n\tmac[0-9]*)\n\t\tos=$(echo \"$os\" | sed -e 's|mac|macos|')\n\t\t;;\n\topened*)\n\t\tos=openedition\n\t\t;;\n\tos400*)\n\t\tos=os400\n\t\t;;\n\tsunos5*)\n\t\tos=$(echo \"$os\" | sed -e 's|sunos5|solaris2|')\n\t\t;;\n\tsunos6*)\n\t\tos=$(echo \"$os\" | sed -e 's|sunos6|solaris3|')\n\t\t;;\n\twince*)\n\t\tos=wince\n\t\t;;\n\tutek*)\n\t\tos=bsd\n\t\t;;\n\tdynix*)\n\t\tos=bsd\n\t\t;;\n\tacis*)\n\t\tos=aos\n\t\t;;\n\tatheos*)\n\t\tos=atheos\n\t\t;;\n\tsyllable*)\n\t\tos=syllable\n\t\t;;\n\t386bsd)\n\t\tos=bsd\n\t\t;;\n\tctix* | uts*)\n\t\tos=sysv\n\t\t;;\n\tnova*)\n\t\tos=rtmk-nova\n\t\t;;\n\tns2)\n\t\tos=nextstep2\n\t\t;;\n\t# Preserve the version number of sinix5.\n\tsinix5.*)\n\t\tos=$(echo $os | sed -e 's|sinix|sysv|')\n\t\t;;\n\tsinix*)\n\t\tos=sysv4\n\t\t;;\n\ttpf*)\n\t\tos=tpf\n\t\t;;\n\ttriton*)\n\t\tos=sysv3\n\t\t;;\n\toss*)\n\t\tos=sysv3\n\t\t;;\n\tsvr4*)\n\t\tos=sysv4\n\t\t;;\n\tsvr3)\n\t\tos=sysv3\n\t\t;;\n\tsysvr4)\n\t\tos=sysv4\n\t\t;;\n\tose*)\n\t\tos=ose\n\t\t;;\n\t*mint | mint[0-9]* | *MiNT | MiNT[0-9]*)\n\t\tos=mint\n\t\t;;\n\tdicos*)\n\t\tos=dicos\n\t\t;;\n\tpikeos*)\n\t\t# Until real need of OS specific support for\n\t\t# particular features comes up, bare metal\n\t\t# configurations are quite functional.\n\t\tcase $cpu in\n\t\t    arm*)\n\t\t\tos=eabi\n\t\t\t;;\n\t\t    *)\n\t\t\tos=elf\n\t\t\t;;\n\t\tesac\n\t\t;;\n\t*)\n\t\t# No normalization, but not necessarily accepted, that comes below.\n\t\t;;\nesac\n\nelse\n\n# Here we handle the default operating systems that come with various machines.\n# The value should be what the vendor currently ships out the door with their\n# machine or put another way, the most popular os provided with the machine.\n\n# Note that if you're going to try to match \"-MANUFACTURER\" here (say,\n# \"-sun\"), then you have to tell the case statement up towards the top\n# that MANUFACTURER isn't an operating system.  Otherwise, code above\n# will signal an error saying that MANUFACTURER isn't an operating\n# system, and we'll never get to this point.\n\nkernel=\ncase $cpu-$vendor in\n\tscore-*)\n\t\tos=elf\n\t\t;;\n\tspu-*)\n\t\tos=elf\n\t\t;;\n\t*-acorn)\n\t\tos=riscix1.2\n\t\t;;\n\tarm*-rebel)\n\t\tkernel=linux\n\t\tos=gnu\n\t\t;;\n\tarm*-semi)\n\t\tos=aout\n\t\t;;\n\tc4x-* | tic4x-*)\n\t\tos=coff\n\t\t;;\n\tc8051-*)\n\t\tos=elf\n\t\t;;\n\tclipper-intergraph)\n\t\tos=clix\n\t\t;;\n\thexagon-*)\n\t\tos=elf\n\t\t;;\n\ttic54x-*)\n\t\tos=coff\n\t\t;;\n\ttic55x-*)\n\t\tos=coff\n\t\t;;\n\ttic6x-*)\n\t\tos=coff\n\t\t;;\n\t# This must come before the *-dec entry.\n\tpdp10-*)\n\t\tos=tops20\n\t\t;;\n\tpdp11-*)\n\t\tos=none\n\t\t;;\n\t*-dec | vax-*)\n\t\tos=ultrix4.2\n\t\t;;\n\tm68*-apollo)\n\t\tos=domain\n\t\t;;\n\ti386-sun)\n\t\tos=sunos4.0.2\n\t\t;;\n\tm68000-sun)\n\t\tos=sunos3\n\t\t;;\n\tm68*-cisco)\n\t\tos=aout\n\t\t;;\n\tmep-*)\n\t\tos=elf\n\t\t;;\n\tmips*-cisco)\n\t\tos=elf\n\t\t;;\n\tmips*-*)\n\t\tos=elf\n\t\t;;\n\tor32-*)\n\t\tos=coff\n\t\t;;\n\t*-tti)\t# must be before sparc entry or we get the wrong os.\n\t\tos=sysv3\n\t\t;;\n\tsparc-* | *-sun)\n\t\tos=sunos4.1.1\n\t\t;;\n\tpru-*)\n\t\tos=elf\n\t\t;;\n\t*-be)\n\t\tos=beos\n\t\t;;\n\t*-ibm)\n\t\tos=aix\n\t\t;;\n\t*-knuth)\n\t\tos=mmixware\n\t\t;;\n\t*-wec)\n\t\tos=proelf\n\t\t;;\n\t*-winbond)\n\t\tos=proelf\n\t\t;;\n\t*-oki)\n\t\tos=proelf\n\t\t;;\n\t*-hp)\n\t\tos=hpux\n\t\t;;\n\t*-hitachi)\n\t\tos=hiux\n\t\t;;\n\ti860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent)\n\t\tos=sysv\n\t\t;;\n\t*-cbm)\n\t\tos=amigaos\n\t\t;;\n\t*-dg)\n\t\tos=dgux\n\t\t;;\n\t*-dolphin)\n\t\tos=sysv3\n\t\t;;\n\tm68k-ccur)\n\t\tos=rtu\n\t\t;;\n\tm88k-omron*)\n\t\tos=luna\n\t\t;;\n\t*-next)\n\t\tos=nextstep\n\t\t;;\n\t*-sequent)\n\t\tos=ptx\n\t\t;;\n\t*-crds)\n\t\tos=unos\n\t\t;;\n\t*-ns)\n\t\tos=genix\n\t\t;;\n\ti370-*)\n\t\tos=mvs\n\t\t;;\n\t*-gould)\n\t\tos=sysv\n\t\t;;\n\t*-highlevel)\n\t\tos=bsd\n\t\t;;\n\t*-encore)\n\t\tos=bsd\n\t\t;;\n\t*-sgi)\n\t\tos=irix\n\t\t;;\n\t*-siemens)\n\t\tos=sysv4\n\t\t;;\n\t*-masscomp)\n\t\tos=rtu\n\t\t;;\n\tf30[01]-fujitsu | f700-fujitsu)\n\t\tos=uxpv\n\t\t;;\n\t*-rom68k)\n\t\tos=coff\n\t\t;;\n\t*-*bug)\n\t\tos=coff\n\t\t;;\n\t*-apple)\n\t\tos=macos\n\t\t;;\n\t*-atari*)\n\t\tos=mint\n\t\t;;\n\t*-wrs)\n\t\tos=vxworks\n\t\t;;\n\t*)\n\t\tos=none\n\t\t;;\nesac\n\nfi\n\n# Now, validate our (potentially fixed-up) OS.\ncase $os in\n\t# Sometimes we do \"kernel-abi\", so those need to count as OSes.\n\tmusl* | newlib* | uclibc*)\n\t\t;;\n\t# Likewise for \"kernel-libc\"\n\teabi | eabihf | gnueabi | gnueabihf)\n\t\t;;\n\t# Now accept the basic system types.\n\t# The portable systems comes first.\n\t# Each alternative MUST end in a * to match a version number.\n\tgnu* | android* | bsd* | mach* | minix* | genix* | ultrix* | irix* \\\n\t     | *vms* | esix* | aix* | cnk* | sunos | sunos[34]* \\\n\t     | hpux* | unos* | osf* | luna* | dgux* | auroraux* | solaris* \\\n\t     | sym* |  plan9* | psp* | sim* | xray* | os68k* | v88r* \\\n\t     | hiux* | abug | nacl* | netware* | windows* \\\n\t     | os9* | macos* | osx* | ios* \\\n\t     | mpw* | magic* | mmixware* | mon960* | lnews* \\\n\t     | amigaos* | amigados* | msdos* | newsos* | unicos* | aof* \\\n\t     | aos* | aros* | cloudabi* | sortix* | twizzler* \\\n\t     | nindy* | vxsim* | vxworks* | ebmon* | hms* | mvs* \\\n\t     | clix* | riscos* | uniplus* | iris* | isc* | rtu* | xenix* \\\n\t     | mirbsd* | netbsd* | dicos* | openedition* | ose* \\\n\t     | bitrig* | openbsd* | solidbsd* | libertybsd* | os108* \\\n\t     | ekkobsd* | freebsd* | riscix* | lynxos* | os400* \\\n\t     | bosx* | nextstep* | cxux* | aout* | elf* | oabi* \\\n\t     | ptx* | coff* | ecoff* | winnt* | domain* | vsta* \\\n\t     | udi* | lites* | ieee* | go32* | aux* | hcos* \\\n\t     | chorusrdb* | cegcc* | glidix* \\\n\t     | cygwin* | msys* | pe* | moss* | proelf* | rtems* \\\n\t     | midipix* | mingw32* | mingw64* | mint* \\\n\t     | uxpv* | beos* | mpeix* | udk* | moxiebox* \\\n\t     | interix* | uwin* | mks* | rhapsody* | darwin* \\\n\t     | openstep* | oskit* | conix* | pw32* | nonstopux* \\\n\t     | storm-chaos* | tops10* | tenex* | tops20* | its* \\\n\t     | os2* | vos* | palmos* | uclinux* | nucleus* | morphos* \\\n\t     | scout* | superux* | sysv* | rtmk* | tpf* | windiss* \\\n\t     | powermax* | dnix* | nx6 | nx7 | sei* | dragonfly* \\\n\t     | skyos* | haiku* | rdos* | toppers* | drops* | es* \\\n\t     | onefs* | tirtos* | phoenix* | fuchsia* | redox* | bme* \\\n\t     | midnightbsd* | amdhsa* | unleashed* | emscripten* | wasi* \\\n\t     | nsk* | powerunix* | genode* | zvmoe* | qnx* | emx*)\n\t\t;;\n\t# This one is extra strict with allowed versions\n\tsco3.2v2 | sco3.2v[4-9]* | sco5v6*)\n\t\t# Don't forget version if it is 3.2v4 or newer.\n\t\t;;\n\tnone)\n\t\t;;\n\t*)\n\t\techo Invalid configuration \\`\"$1\"\\': OS \\`\"$os\"\\' not recognized 1>&2\n\t\texit 1\n\t\t;;\nesac\n\n# As a final step for OS-related things, validate the OS-kernel combination\n# (given a valid OS), if there is a kernel.\ncase $kernel-$os in\n\tlinux-gnu* | linux-dietlibc* | linux-android* | linux-newlib* | linux-musl* | linux-uclibc* )\n\t\t;;\n\tuclinux-uclibc* )\n\t\t;;\n\t-dietlibc* | -newlib* | -musl* | -uclibc* )\n\t\t# These are just libc implementations, not actual OSes, and thus\n\t\t# require a kernel.\n\t\techo \"Invalid configuration \\`$1': libc \\`$os' needs explicit kernel.\" 1>&2\n\t\texit 1\n\t\t;;\n\tkfreebsd*-gnu* | kopensolaris*-gnu*)\n\t\t;;\n\tnto-qnx*)\n\t\t;;\n\tos2-emx)\n\t\t;;\n\t*-eabi* | *-gnueabi*)\n\t\t;;\n\t-*)\n\t\t# Blank kernel with real OS is always fine.\n\t\t;;\n\t*-*)\n\t\techo \"Invalid configuration \\`$1': Kernel \\`$kernel' not known to work with OS \\`$os'.\" 1>&2\n\t\texit 1\n\t\t;;\nesac\n\n# Here we handle the case where we know the os, and the CPU type, but not the\n# manufacturer.  We pick the logical manufacturer.\ncase $vendor in\n\tunknown)\n\t\tcase $cpu-$os in\n\t\t\t*-riscix*)\n\t\t\t\tvendor=acorn\n\t\t\t\t;;\n\t\t\t*-sunos*)\n\t\t\t\tvendor=sun\n\t\t\t\t;;\n\t\t\t*-cnk* | *-aix*)\n\t\t\t\tvendor=ibm\n\t\t\t\t;;\n\t\t\t*-beos*)\n\t\t\t\tvendor=be\n\t\t\t\t;;\n\t\t\t*-hpux*)\n\t\t\t\tvendor=hp\n\t\t\t\t;;\n\t\t\t*-mpeix*)\n\t\t\t\tvendor=hp\n\t\t\t\t;;\n\t\t\t*-hiux*)\n\t\t\t\tvendor=hitachi\n\t\t\t\t;;\n\t\t\t*-unos*)\n\t\t\t\tvendor=crds\n\t\t\t\t;;\n\t\t\t*-dgux*)\n\t\t\t\tvendor=dg\n\t\t\t\t;;\n\t\t\t*-luna*)\n\t\t\t\tvendor=omron\n\t\t\t\t;;\n\t\t\t*-genix*)\n\t\t\t\tvendor=ns\n\t\t\t\t;;\n\t\t\t*-clix*)\n\t\t\t\tvendor=intergraph\n\t\t\t\t;;\n\t\t\t*-mvs* | *-opened*)\n\t\t\t\tvendor=ibm\n\t\t\t\t;;\n\t\t\t*-os400*)\n\t\t\t\tvendor=ibm\n\t\t\t\t;;\n\t\t\ts390-* | s390x-*)\n\t\t\t\tvendor=ibm\n\t\t\t\t;;\n\t\t\t*-ptx*)\n\t\t\t\tvendor=sequent\n\t\t\t\t;;\n\t\t\t*-tpf*)\n\t\t\t\tvendor=ibm\n\t\t\t\t;;\n\t\t\t*-vxsim* | *-vxworks* | *-windiss*)\n\t\t\t\tvendor=wrs\n\t\t\t\t;;\n\t\t\t*-aux*)\n\t\t\t\tvendor=apple\n\t\t\t\t;;\n\t\t\t*-hms*)\n\t\t\t\tvendor=hitachi\n\t\t\t\t;;\n\t\t\t*-mpw* | *-macos*)\n\t\t\t\tvendor=apple\n\t\t\t\t;;\n\t\t\t*-*mint | *-mint[0-9]* | *-*MiNT | *-MiNT[0-9]*)\n\t\t\t\tvendor=atari\n\t\t\t\t;;\n\t\t\t*-vos*)\n\t\t\t\tvendor=stratus\n\t\t\t\t;;\n\t\tesac\n\t\t;;\nesac\n\necho \"$cpu-$vendor-${kernel:+$kernel-}$os\"\nexit\n\n# Local variables:\n# eval: (add-hook 'before-save-hook 'time-stamp)\n# time-stamp-start: \"timestamp='\"\n# time-stamp-format: \"%:y-%02m-%02d\"\n# time-stamp-end: \"'\"\n# End:"
  },
  {
    "path": "ext/cld/build_aux/depcomp",
    "content": "#! /bin/sh\n# depcomp - compile a program generating dependencies as side-effects\n\nscriptversion=2006-10-15.18\n\n# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006 Free Software\n# Foundation, Inc.\n\n# This program is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 2, or (at your option)\n# any later version.\n\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n\n# You should have received a copy of the GNU General Public License\n# along with this program; if not, write to the Free Software\n# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA\n# 02110-1301, USA.\n\n# As a special exception to the GNU General Public License, if you\n# distribute this file as part of a program that contains a\n# configuration script generated by Autoconf, you may include it under\n# the same distribution terms that you use for the rest of that program.\n\n# Originally written by Alexandre Oliva <oliva@dcc.unicamp.br>.\n\ncase $1 in\n  '')\n     echo \"$0: No command.  Try \\`$0 --help' for more information.\" 1>&2\n     exit 1;\n     ;;\n  -h | --h*)\n    cat <<\\EOF\nUsage: depcomp [--help] [--version] PROGRAM [ARGS]\n\nRun PROGRAMS ARGS to compile a file, generating dependencies\nas side-effects.\n\nEnvironment variables:\n  depmode     Dependency tracking mode.\n  source      Source file read by `PROGRAMS ARGS'.\n  object      Object file output by `PROGRAMS ARGS'.\n  DEPDIR      directory where to store dependencies.\n  depfile     Dependency file to output.\n  tmpdepfile  Temporary file to use when outputing dependencies.\n  libtool     Whether libtool is used (yes/no).\n\nReport bugs to <bug-automake@gnu.org>.\nEOF\n    exit $?\n    ;;\n  -v | --v*)\n    echo \"depcomp $scriptversion\"\n    exit $?\n    ;;\nesac\n\nif test -z \"$depmode\" || test -z \"$source\" || test -z \"$object\"; then\n  echo \"depcomp: Variables source, object and depmode must be set\" 1>&2\n  exit 1\nfi\n\n# Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po.\ndepfile=${depfile-`echo \"$object\" |\n  sed 's|[^\\\\/]*$|'${DEPDIR-.deps}'/&|;s|\\.\\([^.]*\\)$|.P\\1|;s|Pobj$|Po|'`}\ntmpdepfile=${tmpdepfile-`echo \"$depfile\" | sed 's/\\.\\([^.]*\\)$/.T\\1/'`}\n\nrm -f \"$tmpdepfile\"\n\n# Some modes work just like other modes, but use different flags.  We\n# parameterize here, but still list the modes in the big case below,\n# to make depend.m4 easier to write.  Note that we *cannot* use a case\n# here, because this file can only contain one case statement.\nif test \"$depmode\" = hp; then\n  # HP compiler uses -M and no extra arg.\n  gccflag=-M\n  depmode=gcc\nfi\n\nif test \"$depmode\" = dashXmstdout; then\n   # This is just like dashmstdout with a different argument.\n   dashmflag=-xM\n   depmode=dashmstdout\nfi\n\ncase \"$depmode\" in\ngcc3)\n## gcc 3 implements dependency tracking that does exactly what\n## we want.  Yay!  Note: for some reason libtool 1.4 doesn't like\n## it if -MD -MP comes after the -MF stuff.  Hmm.\n## Unfortunately, FreeBSD c89 acceptance of flags depends upon\n## the command line argument order; so add the flags where they\n## appear in depend2.am.  Note that the slowdown incurred here\n## affects only configure: in makefiles, %FASTDEP% shortcuts this.\n  for arg\n  do\n    case $arg in\n    -c) set fnord \"$@\" -MT \"$object\" -MD -MP -MF \"$tmpdepfile\" \"$arg\" ;;\n    *)  set fnord \"$@\" \"$arg\" ;;\n    esac\n    shift # fnord\n    shift # $arg\n  done\n  \"$@\"\n  stat=$?\n  if test $stat -eq 0; then :\n  else\n    rm -f \"$tmpdepfile\"\n    exit $stat\n  fi\n  mv \"$tmpdepfile\" \"$depfile\"\n  ;;\n\ngcc)\n## There are various ways to get dependency output from gcc.  Here's\n## why we pick this rather obscure method:\n## - Don't want to use -MD because we'd like the dependencies to end\n##   up in a subdir.  Having to rename by hand is ugly.\n##   (We might end up doing this anyway to support other compilers.)\n## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like\n##   -MM, not -M (despite what the docs say).\n## - Using -M directly means running the compiler twice (even worse\n##   than renaming).\n  if test -z \"$gccflag\"; then\n    gccflag=-MD,\n  fi\n  \"$@\" -Wp,\"$gccflag$tmpdepfile\"\n  stat=$?\n  if test $stat -eq 0; then :\n  else\n    rm -f \"$tmpdepfile\"\n    exit $stat\n  fi\n  rm -f \"$depfile\"\n  echo \"$object : \\\\\" > \"$depfile\"\n  alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\n## The second -e expression handles DOS-style file names with drive letters.\n  sed -e 's/^[^:]*: / /' \\\n      -e 's/^['$alpha']:\\/[^:]*: / /' < \"$tmpdepfile\" >> \"$depfile\"\n## This next piece of magic avoids the `deleted header file' problem.\n## The problem is that when a header file which appears in a .P file\n## is deleted, the dependency causes make to die (because there is\n## typically no way to rebuild the header).  We avoid this by adding\n## dummy dependencies for each header file.  Too bad gcc doesn't do\n## this for us directly.\n  tr ' ' '\n' < \"$tmpdepfile\" |\n## Some versions of gcc put a space before the `:'.  On the theory\n## that the space means something, we add a space to the output as\n## well.\n## Some versions of the HPUX 10.20 sed can't process this invocation\n## correctly.  Breaking it into two sed invocations is a workaround.\n    sed -e 's/^\\\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> \"$depfile\"\n  rm -f \"$tmpdepfile\"\n  ;;\n\nhp)\n  # This case exists only to let depend.m4 do its work.  It works by\n  # looking at the text of this script.  This case will never be run,\n  # since it is checked for above.\n  exit 1\n  ;;\n\nsgi)\n  if test \"$libtool\" = yes; then\n    \"$@\" \"-Wp,-MDupdate,$tmpdepfile\"\n  else\n    \"$@\" -MDupdate \"$tmpdepfile\"\n  fi\n  stat=$?\n  if test $stat -eq 0; then :\n  else\n    rm -f \"$tmpdepfile\"\n    exit $stat\n  fi\n  rm -f \"$depfile\"\n\n  if test -f \"$tmpdepfile\"; then  # yes, the sourcefile depend on other files\n    echo \"$object : \\\\\" > \"$depfile\"\n\n    # Clip off the initial element (the dependent).  Don't try to be\n    # clever and replace this with sed code, as IRIX sed won't handle\n    # lines with more than a fixed number of characters (4096 in\n    # IRIX 6.2 sed, 8192 in IRIX 6.5).  We also remove comment lines;\n    # the IRIX cc adds comments like `#:fec' to the end of the\n    # dependency line.\n    tr ' ' '\n' < \"$tmpdepfile\" \\\n    | sed -e 's/^.*\\.o://' -e 's/#.*$//' -e '/^$/ d' | \\\n    tr '\n' ' ' >> $depfile\n    echo >> $depfile\n\n    # The second pass generates a dummy entry for each header file.\n    tr ' ' '\n' < \"$tmpdepfile\" \\\n   | sed -e 's/^.*\\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \\\n   >> $depfile\n  else\n    # The sourcefile does not contain any dependencies, so just\n    # store a dummy comment line, to avoid errors with the Makefile\n    # \"include basename.Plo\" scheme.\n    echo \"#dummy\" > \"$depfile\"\n  fi\n  rm -f \"$tmpdepfile\"\n  ;;\n\naix)\n  # The C for AIX Compiler uses -M and outputs the dependencies\n  # in a .u file.  In older versions, this file always lives in the\n  # current directory.  Also, the AIX compiler puts `$object:' at the\n  # start of each line; $object doesn't have directory information.\n  # Version 6 uses the directory in both cases.\n  stripped=`echo \"$object\" | sed 's/\\(.*\\)\\..*$/\\1/'`\n  tmpdepfile=\"$stripped.u\"\n  if test \"$libtool\" = yes; then\n    \"$@\" -Wc,-M\n  else\n    \"$@\" -M\n  fi\n  stat=$?\n\n  if test -f \"$tmpdepfile\"; then :\n  else\n    stripped=`echo \"$stripped\" | sed 's,^.*/,,'`\n    tmpdepfile=\"$stripped.u\"\n  fi\n\n  if test $stat -eq 0; then :\n  else\n    rm -f \"$tmpdepfile\"\n    exit $stat\n  fi\n\n  if test -f \"$tmpdepfile\"; then\n    outname=\"$stripped.o\"\n    # Each line is of the form `foo.o: dependent.h'.\n    # Do two passes, one to just change these to\n    # `$object: dependent.h' and one to simply `dependent.h:'.\n    sed -e \"s,^$outname:,$object :,\" < \"$tmpdepfile\" > \"$depfile\"\n    sed -e \"s,^$outname: \\(.*\\)$,\\1:,\" < \"$tmpdepfile\" >> \"$depfile\"\n  else\n    # The sourcefile does not contain any dependencies, so just\n    # store a dummy comment line, to avoid errors with the Makefile\n    # \"include basename.Plo\" scheme.\n    echo \"#dummy\" > \"$depfile\"\n  fi\n  rm -f \"$tmpdepfile\"\n  ;;\n\nicc)\n  # Intel's C compiler understands `-MD -MF file'.  However on\n  #    icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c\n  # ICC 7.0 will fill foo.d with something like\n  #    foo.o: sub/foo.c\n  #    foo.o: sub/foo.h\n  # which is wrong.  We want:\n  #    sub/foo.o: sub/foo.c\n  #    sub/foo.o: sub/foo.h\n  #    sub/foo.c:\n  #    sub/foo.h:\n  # ICC 7.1 will output\n  #    foo.o: sub/foo.c sub/foo.h\n  # and will wrap long lines using \\ :\n  #    foo.o: sub/foo.c ... \\\n  #     sub/foo.h ... \\\n  #     ...\n\n  \"$@\" -MD -MF \"$tmpdepfile\"\n  stat=$?\n  if test $stat -eq 0; then :\n  else\n    rm -f \"$tmpdepfile\"\n    exit $stat\n  fi\n  rm -f \"$depfile\"\n  # Each line is of the form `foo.o: dependent.h',\n  # or `foo.o: dep1.h dep2.h \\', or ` dep3.h dep4.h \\'.\n  # Do two passes, one to just change these to\n  # `$object: dependent.h' and one to simply `dependent.h:'.\n  sed \"s,^[^:]*:,$object :,\" < \"$tmpdepfile\" > \"$depfile\"\n  # Some versions of the HPUX 10.20 sed can't process this invocation\n  # correctly.  Breaking it into two sed invocations is a workaround.\n  sed 's,^[^:]*: \\(.*\\)$,\\1,;s/^\\\\$//;/^$/d;/:$/d' < \"$tmpdepfile\" |\n    sed -e 's/$/ :/' >> \"$depfile\"\n  rm -f \"$tmpdepfile\"\n  ;;\n\nhp2)\n  # The \"hp\" stanza above does not work with aCC (C++) and HP's ia64\n  # compilers, which have integrated preprocessors.  The correct option\n  # to use with these is +Maked; it writes dependencies to a file named\n  # 'foo.d', which lands next to the object file, wherever that\n  # happens to be.\n  # Much of this is similar to the tru64 case; see comments there.\n  dir=`echo \"$object\" | sed -e 's|/[^/]*$|/|'`\n  test \"x$dir\" = \"x$object\" && dir=\n  base=`echo \"$object\" | sed -e 's|^.*/||' -e 's/\\.o$//' -e 's/\\.lo$//'`\n  if test \"$libtool\" = yes; then\n    tmpdepfile1=$dir$base.d\n    tmpdepfile2=$dir.libs/$base.d\n    \"$@\" -Wc,+Maked\n  else\n    tmpdepfile1=$dir$base.d\n    tmpdepfile2=$dir$base.d\n    \"$@\" +Maked\n  fi\n  stat=$?\n  if test $stat -eq 0; then :\n  else\n     rm -f \"$tmpdepfile1\" \"$tmpdepfile2\"\n     exit $stat\n  fi\n\n  for tmpdepfile in \"$tmpdepfile1\" \"$tmpdepfile2\"\n  do\n    test -f \"$tmpdepfile\" && break\n  done\n  if test -f \"$tmpdepfile\"; then\n    sed -e \"s,^.*\\.[a-z]*:,$object:,\" \"$tmpdepfile\" > \"$depfile\"\n    # Add `dependent.h:' lines.\n    sed -ne '2,${; s/^ *//; s/ \\\\*$//; s/$/:/; p;}' \"$tmpdepfile\" >> \"$depfile\"\n  else\n    echo \"#dummy\" > \"$depfile\"\n  fi\n  rm -f \"$tmpdepfile\" \"$tmpdepfile2\"\n  ;;\n\ntru64)\n   # The Tru64 compiler uses -MD to generate dependencies as a side\n   # effect.  `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'.\n   # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put\n   # dependencies in `foo.d' instead, so we check for that too.\n   # Subdirectories are respected.\n   dir=`echo \"$object\" | sed -e 's|/[^/]*$|/|'`\n   test \"x$dir\" = \"x$object\" && dir=\n   base=`echo \"$object\" | sed -e 's|^.*/||' -e 's/\\.o$//' -e 's/\\.lo$//'`\n\n   if test \"$libtool\" = yes; then\n      # With Tru64 cc, shared objects can also be used to make a\n      # static library.  This mechanism is used in libtool 1.4 series to\n      # handle both shared and static libraries in a single compilation.\n      # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d.\n      #\n      # With libtool 1.5 this exception was removed, and libtool now\n      # generates 2 separate objects for the 2 libraries.  These two\n      # compilations output dependencies in $dir.libs/$base.o.d and\n      # in $dir$base.o.d.  We have to check for both files, because\n      # one of the two compilations can be disabled.  We should prefer\n      # $dir$base.o.d over $dir.libs/$base.o.d because the latter is\n      # automatically cleaned when .libs/ is deleted, while ignoring\n      # the former would cause a distcleancheck panic.\n      tmpdepfile1=$dir.libs/$base.lo.d   # libtool 1.4\n      tmpdepfile2=$dir$base.o.d          # libtool 1.5\n      tmpdepfile3=$dir.libs/$base.o.d    # libtool 1.5\n      tmpdepfile4=$dir.libs/$base.d      # Compaq CCC V6.2-504\n      \"$@\" -Wc,-MD\n   else\n      tmpdepfile1=$dir$base.o.d\n      tmpdepfile2=$dir$base.d\n      tmpdepfile3=$dir$base.d\n      tmpdepfile4=$dir$base.d\n      \"$@\" -MD\n   fi\n\n   stat=$?\n   if test $stat -eq 0; then :\n   else\n      rm -f \"$tmpdepfile1\" \"$tmpdepfile2\" \"$tmpdepfile3\" \"$tmpdepfile4\"\n      exit $stat\n   fi\n\n   for tmpdepfile in \"$tmpdepfile1\" \"$tmpdepfile2\" \"$tmpdepfile3\" \"$tmpdepfile4\"\n   do\n     test -f \"$tmpdepfile\" && break\n   done\n   if test -f \"$tmpdepfile\"; then\n      sed -e \"s,^.*\\.[a-z]*:,$object:,\" < \"$tmpdepfile\" > \"$depfile\"\n      # That's a tab and a space in the [].\n      sed -e 's,^.*\\.[a-z]*:[\t ]*,,' -e 's,$,:,' < \"$tmpdepfile\" >> \"$depfile\"\n   else\n      echo \"#dummy\" > \"$depfile\"\n   fi\n   rm -f \"$tmpdepfile\"\n   ;;\n\n#nosideeffect)\n  # This comment above is used by automake to tell side-effect\n  # dependency tracking mechanisms from slower ones.\n\ndashmstdout)\n  # Important note: in order to support this mode, a compiler *must*\n  # always write the preprocessed file to stdout, regardless of -o.\n  \"$@\" || exit $?\n\n  # Remove the call to Libtool.\n  if test \"$libtool\" = yes; then\n    while test $1 != '--mode=compile'; do\n      shift\n    done\n    shift\n  fi\n\n  # Remove `-o $object'.\n  IFS=\" \"\n  for arg\n  do\n    case $arg in\n    -o)\n      shift\n      ;;\n    $object)\n      shift\n      ;;\n    *)\n      set fnord \"$@\" \"$arg\"\n      shift # fnord\n      shift # $arg\n      ;;\n    esac\n  done\n\n  test -z \"$dashmflag\" && dashmflag=-M\n  # Require at least two characters before searching for `:'\n  # in the target name.  This is to cope with DOS-style filenames:\n  # a dependency such as `c:/foo/bar' could be seen as target `c' otherwise.\n  \"$@\" $dashmflag |\n    sed 's:^[  ]*[^: ][^:][^:]*\\:[    ]*:'\"$object\"'\\: :' > \"$tmpdepfile\"\n  rm -f \"$depfile\"\n  cat < \"$tmpdepfile\" > \"$depfile\"\n  tr ' ' '\n' < \"$tmpdepfile\" | \\\n## Some versions of the HPUX 10.20 sed can't process this invocation\n## correctly.  Breaking it into two sed invocations is a workaround.\n    sed -e 's/^\\\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> \"$depfile\"\n  rm -f \"$tmpdepfile\"\n  ;;\n\ndashXmstdout)\n  # This case only exists to satisfy depend.m4.  It is never actually\n  # run, as this mode is specially recognized in the preamble.\n  exit 1\n  ;;\n\nmakedepend)\n  \"$@\" || exit $?\n  # Remove any Libtool call\n  if test \"$libtool\" = yes; then\n    while test $1 != '--mode=compile'; do\n      shift\n    done\n    shift\n  fi\n  # X makedepend\n  shift\n  cleared=no\n  for arg in \"$@\"; do\n    case $cleared in\n    no)\n      set \"\"; shift\n      cleared=yes ;;\n    esac\n    case \"$arg\" in\n    -D*|-I*)\n      set fnord \"$@\" \"$arg\"; shift ;;\n    # Strip any option that makedepend may not understand.  Remove\n    # the object too, otherwise makedepend will parse it as a source file.\n    -*|$object)\n      ;;\n    *)\n      set fnord \"$@\" \"$arg\"; shift ;;\n    esac\n  done\n  obj_suffix=\"`echo $object | sed 's/^.*\\././'`\"\n  touch \"$tmpdepfile\"\n  ${MAKEDEPEND-makedepend} -o\"$obj_suffix\" -f\"$tmpdepfile\" \"$@\"\n  rm -f \"$depfile\"\n  cat < \"$tmpdepfile\" > \"$depfile\"\n  sed '1,2d' \"$tmpdepfile\" | tr ' ' '\n' | \\\n## Some versions of the HPUX 10.20 sed can't process this invocation\n## correctly.  Breaking it into two sed invocations is a workaround.\n    sed -e 's/^\\\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> \"$depfile\"\n  rm -f \"$tmpdepfile\" \"$tmpdepfile\".bak\n  ;;\n\ncpp)\n  # Important note: in order to support this mode, a compiler *must*\n  # always write the preprocessed file to stdout.\n  \"$@\" || exit $?\n\n  # Remove the call to Libtool.\n  if test \"$libtool\" = yes; then\n    while test $1 != '--mode=compile'; do\n      shift\n    done\n    shift\n  fi\n\n  # Remove `-o $object'.\n  IFS=\" \"\n  for arg\n  do\n    case $arg in\n    -o)\n      shift\n      ;;\n    $object)\n      shift\n      ;;\n    *)\n      set fnord \"$@\" \"$arg\"\n      shift # fnord\n      shift # $arg\n      ;;\n    esac\n  done\n\n  \"$@\" -E |\n    sed -n -e '/^# [0-9][0-9]* \"\\([^\"]*\\)\".*/ s:: \\1 \\\\:p' \\\n       -e '/^#line [0-9][0-9]* \"\\([^\"]*\\)\".*/ s:: \\1 \\\\:p' |\n    sed '$ s: \\\\$::' > \"$tmpdepfile\"\n  rm -f \"$depfile\"\n  echo \"$object : \\\\\" > \"$depfile\"\n  cat < \"$tmpdepfile\" >> \"$depfile\"\n  sed < \"$tmpdepfile\" '/^$/d;s/^ //;s/ \\\\$//;s/$/ :/' >> \"$depfile\"\n  rm -f \"$tmpdepfile\"\n  ;;\n\nmsvisualcpp)\n  # Important note: in order to support this mode, a compiler *must*\n  # always write the preprocessed file to stdout, regardless of -o,\n  # because we must use -o when running libtool.\n  \"$@\" || exit $?\n  IFS=\" \"\n  for arg\n  do\n    case \"$arg\" in\n    \"-Gm\"|\"/Gm\"|\"-Gi\"|\"/Gi\"|\"-ZI\"|\"/ZI\")\n\tset fnord \"$@\"\n\tshift\n\tshift\n\t;;\n    *)\n\tset fnord \"$@\" \"$arg\"\n\tshift\n\tshift\n\t;;\n    esac\n  done\n  \"$@\" -E |\n  sed -n '/^#line [0-9][0-9]* \"\\([^\"]*\\)\"/ s::echo \"`cygpath -u \\\\\"\\1\\\\\"`\":p' | sort | uniq > \"$tmpdepfile\"\n  rm -f \"$depfile\"\n  echo \"$object : \\\\\" > \"$depfile\"\n  . \"$tmpdepfile\" | sed 's% %\\\\ %g' | sed -n '/^\\(.*\\)$/ s::\t\\1 \\\\:p' >> \"$depfile\"\n  echo \"\t\" >> \"$depfile\"\n  . \"$tmpdepfile\" | sed 's% %\\\\ %g' | sed -n '/^\\(.*\\)$/ s::\\1\\::p' >> \"$depfile\"\n  rm -f \"$tmpdepfile\"\n  ;;\n\nnone)\n  exec \"$@\"\n  ;;\n\n*)\n  echo \"Unknown depmode $depmode\" 1>&2\n  exit 1\n  ;;\nesac\n\nexit 0\n\n# Local Variables:\n# mode: shell-script\n# sh-indentation: 2\n# eval: (add-hook 'write-file-hooks 'time-stamp)\n# time-stamp-start: \"scriptversion=\"\n# time-stamp-format: \"%:y-%02m-%02d.%02H\"\n# time-stamp-end: \"$\"\n# End:\n"
  },
  {
    "path": "ext/cld/build_aux/install-sh",
    "content": "#!/bin/sh\n# install - install a program, script, or datafile\n\nscriptversion=2006-10-14.15\n\n# This originates from X11R5 (mit/util/scripts/install.sh), which was\n# later released in X11R6 (xc/config/util/install.sh) with the\n# following copyright and license.\n#\n# Copyright (C) 1994 X Consortium\n#\n# Permission is hereby granted, free of charge, to any person obtaining a copy\n# of this software and associated documentation files (the \"Software\"), to\n# deal in the Software without restriction, including without limitation the\n# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n# sell copies of the Software, and to permit persons to whom the Software is\n# furnished to do so, subject to the following conditions:\n#\n# The above copyright notice and this permission notice shall be included in\n# all copies or substantial portions of the Software.\n#\n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE\n# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\n# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-\n# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n#\n# Except as contained in this notice, the name of the X Consortium shall not\n# be used in advertising or otherwise to promote the sale, use or other deal-\n# ings in this Software without prior written authorization from the X Consor-\n# tium.\n#\n#\n# FSF changes to this file are in the public domain.\n#\n# Calling this script install-sh is preferred over install.sh, to prevent\n# `make' implicit rules from creating a file called install from it\n# when there is no Makefile.\n#\n# This script is compatible with the BSD install script, but was written\n# from scratch.\n\nnl='\n'\nIFS=\" \"\"\t$nl\"\n\n# set DOITPROG to echo to test this script\n\n# Don't use :- since 4.3BSD and earlier shells don't like it.\ndoit=\"${DOITPROG-}\"\nif test -z \"$doit\"; then\n  doit_exec=exec\nelse\n  doit_exec=$doit\nfi\n\n# Put in absolute file names if you don't have them in your path;\n# or use environment vars.\n\nmvprog=\"${MVPROG-mv}\"\ncpprog=\"${CPPROG-cp}\"\nchmodprog=\"${CHMODPROG-chmod}\"\nchownprog=\"${CHOWNPROG-chown}\"\nchgrpprog=\"${CHGRPPROG-chgrp}\"\nstripprog=\"${STRIPPROG-strip}\"\nrmprog=\"${RMPROG-rm}\"\nmkdirprog=\"${MKDIRPROG-mkdir}\"\n\nposix_glob=\nposix_mkdir=\n\n# Desired mode of installed file.\nmode=0755\n\nchmodcmd=$chmodprog\nchowncmd=\nchgrpcmd=\nstripcmd=\nrmcmd=\"$rmprog -f\"\nmvcmd=\"$mvprog\"\nsrc=\ndst=\ndir_arg=\ndstarg=\nno_target_directory=\n\nusage=\"Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE\n   or: $0 [OPTION]... SRCFILES... DIRECTORY\n   or: $0 [OPTION]... -t DIRECTORY SRCFILES...\n   or: $0 [OPTION]... -d DIRECTORIES...\n\nIn the 1st form, copy SRCFILE to DSTFILE.\nIn the 2nd and 3rd, copy all SRCFILES to DIRECTORY.\nIn the 4th, create DIRECTORIES.\n\nOptions:\n-c         (ignored)\n-d         create directories instead of installing files.\n-g GROUP   $chgrpprog installed files to GROUP.\n-m MODE    $chmodprog installed files to MODE.\n-o USER    $chownprog installed files to USER.\n-s         $stripprog installed files.\n-t DIRECTORY  install into DIRECTORY.\n-T         report an error if DSTFILE is a directory.\n--help     display this help and exit.\n--version  display version info and exit.\n\nEnvironment variables override the default commands:\n  CHGRPPROG CHMODPROG CHOWNPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG\n\"\n\nwhile test $# -ne 0; do\n  case $1 in\n    -c) shift\n        continue;;\n\n    -d) dir_arg=true\n        shift\n        continue;;\n\n    -g) chgrpcmd=\"$chgrpprog $2\"\n        shift\n        shift\n        continue;;\n\n    --help) echo \"$usage\"; exit $?;;\n\n    -m) mode=$2\n        shift\n        shift\n\tcase $mode in\n\t  *' '* | *'\t'* | *'\n'*\t  | *'*'* | *'?'* | *'['*)\n\t    echo \"$0: invalid mode: $mode\" >&2\n\t    exit 1;;\n\tesac\n        continue;;\n\n    -o) chowncmd=\"$chownprog $2\"\n        shift\n        shift\n        continue;;\n\n    -s) stripcmd=$stripprog\n        shift\n        continue;;\n\n    -t) dstarg=$2\n\tshift\n\tshift\n\tcontinue;;\n\n    -T) no_target_directory=true\n\tshift\n\tcontinue;;\n\n    --version) echo \"$0 $scriptversion\"; exit $?;;\n\n    --)\tshift\n\tbreak;;\n\n    -*)\techo \"$0: invalid option: $1\" >&2\n\texit 1;;\n\n    *)  break;;\n  esac\ndone\n\nif test $# -ne 0 && test -z \"$dir_arg$dstarg\"; then\n  # When -d is used, all remaining arguments are directories to create.\n  # When -t is used, the destination is already specified.\n  # Otherwise, the last argument is the destination.  Remove it from $@.\n  for arg\n  do\n    if test -n \"$dstarg\"; then\n      # $@ is not empty: it contains at least $arg.\n      set fnord \"$@\" \"$dstarg\"\n      shift # fnord\n    fi\n    shift # arg\n    dstarg=$arg\n  done\nfi\n\nif test $# -eq 0; then\n  if test -z \"$dir_arg\"; then\n    echo \"$0: no input file specified.\" >&2\n    exit 1\n  fi\n  # It's OK to call `install-sh -d' without argument.\n  # This can happen when creating conditional directories.\n  exit 0\nfi\n\nif test -z \"$dir_arg\"; then\n  trap '(exit $?); exit' 1 2 13 15\n\n  # Set umask so as not to create temps with too-generous modes.\n  # However, 'strip' requires both read and write access to temps.\n  case $mode in\n    # Optimize common cases.\n    *644) cp_umask=133;;\n    *755) cp_umask=22;;\n\n    *[0-7])\n      if test -z \"$stripcmd\"; then\n\tu_plus_rw=\n      else\n\tu_plus_rw='% 200'\n      fi\n      cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;\n    *)\n      if test -z \"$stripcmd\"; then\n\tu_plus_rw=\n      else\n\tu_plus_rw=,u+rw\n      fi\n      cp_umask=$mode$u_plus_rw;;\n  esac\nfi\n\nfor src\ndo\n  # Protect names starting with `-'.\n  case $src in\n    -*) src=./$src ;;\n  esac\n\n  if test -n \"$dir_arg\"; then\n    dst=$src\n    dstdir=$dst\n    test -d \"$dstdir\"\n    dstdir_status=$?\n  else\n\n    # Waiting for this to be detected by the \"$cpprog $src $dsttmp\" command\n    # might cause directories to be created, which would be especially bad\n    # if $src (and thus $dsttmp) contains '*'.\n    if test ! -f \"$src\" && test ! -d \"$src\"; then\n      echo \"$0: $src does not exist.\" >&2\n      exit 1\n    fi\n\n    if test -z \"$dstarg\"; then\n      echo \"$0: no destination specified.\" >&2\n      exit 1\n    fi\n\n    dst=$dstarg\n    # Protect names starting with `-'.\n    case $dst in\n      -*) dst=./$dst ;;\n    esac\n\n    # If destination is a directory, append the input filename; won't work\n    # if double slashes aren't ignored.\n    if test -d \"$dst\"; then\n      if test -n \"$no_target_directory\"; then\n\techo \"$0: $dstarg: Is a directory\" >&2\n\texit 1\n      fi\n      dstdir=$dst\n      dst=$dstdir/`basename \"$src\"`\n      dstdir_status=0\n    else\n      # Prefer dirname, but fall back on a substitute if dirname fails.\n      dstdir=`\n\t(dirname \"$dst\") 2>/dev/null ||\n\texpr X\"$dst\" : 'X\\(.*[^/]\\)//*[^/][^/]*/*$' \\| \\\n\t     X\"$dst\" : 'X\\(//\\)[^/]' \\| \\\n\t     X\"$dst\" : 'X\\(//\\)$' \\| \\\n\t     X\"$dst\" : 'X\\(/\\)' \\| . 2>/dev/null ||\n\techo X\"$dst\" |\n\t    sed '/^X\\(.*[^/]\\)\\/\\/*[^/][^/]*\\/*$/{\n\t\t   s//\\1/\n\t\t   q\n\t\t }\n\t\t /^X\\(\\/\\/\\)[^/].*/{\n\t\t   s//\\1/\n\t\t   q\n\t\t }\n\t\t /^X\\(\\/\\/\\)$/{\n\t\t   s//\\1/\n\t\t   q\n\t\t }\n\t\t /^X\\(\\/\\).*/{\n\t\t   s//\\1/\n\t\t   q\n\t\t }\n\t\t s/.*/./; q'\n      `\n\n      test -d \"$dstdir\"\n      dstdir_status=$?\n    fi\n  fi\n\n  obsolete_mkdir_used=false\n\n  if test $dstdir_status != 0; then\n    case $posix_mkdir in\n      '')\n\t# Create intermediate dirs using mode 755 as modified by the umask.\n\t# This is like FreeBSD 'install' as of 1997-10-28.\n\tumask=`umask`\n\tcase $stripcmd.$umask in\n\t  # Optimize common cases.\n\t  *[2367][2367]) mkdir_umask=$umask;;\n\t  .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;;\n\n\t  *[0-7])\n\t    mkdir_umask=`expr $umask + 22 \\\n\t      - $umask % 100 % 40 + $umask % 20 \\\n\t      - $umask % 10 % 4 + $umask % 2\n\t    `;;\n\t  *) mkdir_umask=$umask,go-w;;\n\tesac\n\n\t# With -d, create the new directory with the user-specified mode.\n\t# Otherwise, rely on $mkdir_umask.\n\tif test -n \"$dir_arg\"; then\n\t  mkdir_mode=-m$mode\n\telse\n\t  mkdir_mode=\n\tfi\n\n\tposix_mkdir=false\n\tcase $umask in\n\t  *[123567][0-7][0-7])\n\t    # POSIX mkdir -p sets u+wx bits regardless of umask, which\n\t    # is incompatible with FreeBSD 'install' when (umask & 300) != 0.\n\t    ;;\n\t  *)\n\t    tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$\n\t    trap 'ret=$?; rmdir \"$tmpdir/d\" \"$tmpdir\" 2>/dev/null; exit $ret' 0\n\n\t    if (umask $mkdir_umask &&\n\t\texec $mkdirprog $mkdir_mode -p -- \"$tmpdir/d\") >/dev/null 2>&1\n\t    then\n\t      if test -z \"$dir_arg\" || {\n\t\t   # Check for POSIX incompatibilities with -m.\n\t\t   # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or\n\t\t   # other-writeable bit of parent directory when it shouldn't.\n\t\t   # FreeBSD 6.1 mkdir -m -p sets mode of existing directory.\n\t\t   ls_ld_tmpdir=`ls -ld \"$tmpdir\"`\n\t\t   case $ls_ld_tmpdir in\n\t\t     d????-?r-*) different_mode=700;;\n\t\t     d????-?--*) different_mode=755;;\n\t\t     *) false;;\n\t\t   esac &&\n\t\t   $mkdirprog -m$different_mode -p -- \"$tmpdir\" && {\n\t\t     ls_ld_tmpdir_1=`ls -ld \"$tmpdir\"`\n\t\t     test \"$ls_ld_tmpdir\" = \"$ls_ld_tmpdir_1\"\n\t\t   }\n\t\t }\n\t      then posix_mkdir=:\n\t      fi\n\t      rmdir \"$tmpdir/d\" \"$tmpdir\"\n\t    else\n\t      # Remove any dirs left behind by ancient mkdir implementations.\n\t      rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null\n\t    fi\n\t    trap '' 0;;\n\tesac;;\n    esac\n\n    if\n      $posix_mkdir && (\n\tumask $mkdir_umask &&\n\t$doit_exec $mkdirprog $mkdir_mode -p -- \"$dstdir\"\n      )\n    then :\n    else\n\n      # The umask is ridiculous, or mkdir does not conform to POSIX,\n      # or it failed possibly due to a race condition.  Create the\n      # directory the slow way, step by step, checking for races as we go.\n\n      case $dstdir in\n\t/*) prefix=/ ;;\n\t-*) prefix=./ ;;\n\t*)  prefix= ;;\n      esac\n\n      case $posix_glob in\n        '')\n\t  if (set -f) 2>/dev/null; then\n\t    posix_glob=true\n\t  else\n\t    posix_glob=false\n\t  fi ;;\n      esac\n\n      oIFS=$IFS\n      IFS=/\n      $posix_glob && set -f\n      set fnord $dstdir\n      shift\n      $posix_glob && set +f\n      IFS=$oIFS\n\n      prefixes=\n\n      for d\n      do\n\ttest -z \"$d\" && continue\n\n\tprefix=$prefix$d\n\tif test -d \"$prefix\"; then\n\t  prefixes=\n\telse\n\t  if $posix_mkdir; then\n\t    (umask=$mkdir_umask &&\n\t     $doit_exec $mkdirprog $mkdir_mode -p -- \"$dstdir\") && break\n\t    # Don't fail if two instances are running concurrently.\n\t    test -d \"$prefix\" || exit 1\n\t  else\n\t    case $prefix in\n\t      *\\'*) qprefix=`echo \"$prefix\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"`;;\n\t      *) qprefix=$prefix;;\n\t    esac\n\t    prefixes=\"$prefixes '$qprefix'\"\n\t  fi\n\tfi\n\tprefix=$prefix/\n      done\n\n      if test -n \"$prefixes\"; then\n\t# Don't fail if two instances are running concurrently.\n\t(umask $mkdir_umask &&\n\t eval \"\\$doit_exec \\$mkdirprog $prefixes\") ||\n\t  test -d \"$dstdir\" || exit 1\n\tobsolete_mkdir_used=true\n      fi\n    fi\n  fi\n\n  if test -n \"$dir_arg\"; then\n    { test -z \"$chowncmd\" || $doit $chowncmd \"$dst\"; } &&\n    { test -z \"$chgrpcmd\" || $doit $chgrpcmd \"$dst\"; } &&\n    { test \"$obsolete_mkdir_used$chowncmd$chgrpcmd\" = false ||\n      test -z \"$chmodcmd\" || $doit $chmodcmd $mode \"$dst\"; } || exit 1\n  else\n\n    # Make a couple of temp file names in the proper directory.\n    dsttmp=$dstdir/_inst.$$_\n    rmtmp=$dstdir/_rm.$$_\n\n    # Trap to clean up those temp files at exit.\n    trap 'ret=$?; rm -f \"$dsttmp\" \"$rmtmp\" && exit $ret' 0\n\n    # Copy the file name to the temp name.\n    (umask $cp_umask && $doit_exec $cpprog \"$src\" \"$dsttmp\") &&\n\n    # and set any options; do chmod last to preserve setuid bits.\n    #\n    # If any of these fail, we abort the whole thing.  If we want to\n    # ignore errors from any of these, just make sure not to ignore\n    # errors from the above \"$doit $cpprog $src $dsttmp\" command.\n    #\n    { test -z \"$chowncmd\" || $doit $chowncmd \"$dsttmp\"; } \\\n      && { test -z \"$chgrpcmd\" || $doit $chgrpcmd \"$dsttmp\"; } \\\n      && { test -z \"$stripcmd\" || $doit $stripcmd \"$dsttmp\"; } \\\n      && { test -z \"$chmodcmd\" || $doit $chmodcmd $mode \"$dsttmp\"; } &&\n\n    # Now rename the file to the real destination.\n    { $doit $mvcmd -f \"$dsttmp\" \"$dst\" 2>/dev/null \\\n      || {\n\t   # The rename failed, perhaps because mv can't rename something else\n\t   # to itself, or perhaps because mv is so ancient that it does not\n\t   # support -f.\n\n\t   # Now remove or move aside any old file at destination location.\n\t   # We try this two ways since rm can't unlink itself on some\n\t   # systems and the destination file might be busy for other\n\t   # reasons.  In this case, the final cleanup might fail but the new\n\t   # file should still install successfully.\n\t   {\n\t     if test -f \"$dst\"; then\n\t       $doit $rmcmd -f \"$dst\" 2>/dev/null \\\n\t       || { $doit $mvcmd -f \"$dst\" \"$rmtmp\" 2>/dev/null \\\n\t\t     && { $doit $rmcmd -f \"$rmtmp\" 2>/dev/null; :; }; }\\\n\t       || {\n\t\t echo \"$0: cannot unlink or rename $dst\" >&2\n\t\t (exit 1); exit 1\n\t       }\n\t     else\n\t       :\n\t     fi\n\t   } &&\n\n\t   # Now rename the file to the real destination.\n\t   $doit $mvcmd \"$dsttmp\" \"$dst\"\n\t }\n    } || exit 1\n\n    trap '' 0\n  fi\ndone\n\n# Local variables:\n# eval: (add-hook 'write-file-hooks 'time-stamp)\n# time-stamp-start: \"scriptversion=\"\n# time-stamp-format: \"%:y-%02m-%02d.%02H\"\n# time-stamp-end: \"$\"\n# End:\n"
  },
  {
    "path": "ext/cld/build_aux/ltmain.sh",
    "content": "# Generated from ltmain.m4sh.\n\n# libtool (GNU libtool) 2.2.10\n# Written by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996\n\n# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006,\n# 2007, 2008, 2009, 2010 Free Software Foundation, Inc.\n# This is free software; see the source for copying conditions.  There is NO\n# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n# GNU Libtool is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 2 of the License, or\n# (at your option) any later version.\n#\n# As a special exception to the GNU General Public License,\n# if you distribute this file as part of a program or library that\n# is built using GNU Libtool, you may include this file under the\n# same distribution terms that you use for the rest of that program.\n#\n# GNU Libtool is distributed in the hope that it will be useful, but\n# WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n# General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with GNU Libtool; see the file COPYING.  If not, a copy\n# can be downloaded from http://www.gnu.org/licenses/gpl.html,\n# or obtained by writing to the Free Software Foundation, Inc.,\n# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\n# Usage: $progname [OPTION]... [MODE-ARG]...\n#\n# Provide generalized library-building support services.\n#\n#       --config             show all configuration variables\n#       --debug              enable verbose shell tracing\n#   -n, --dry-run            display commands without modifying any files\n#       --features           display basic configuration information and exit\n#       --mode=MODE          use operation mode MODE\n#       --preserve-dup-deps  don't remove duplicate dependency libraries\n#       --quiet, --silent    don't print informational messages\n#       --no-quiet, --no-silent\n#                            print informational messages (default)\n#       --tag=TAG            use configuration variables from tag TAG\n#   -v, --verbose            print more informational messages than default\n#       --no-verbose         don't print the extra informational messages\n#       --version            print version information\n#   -h, --help, --help-all   print short, long, or detailed help message\n#\n# MODE must be one of the following:\n#\n#         clean              remove files from the build directory\n#         compile            compile a source file into a libtool object\n#         execute            automatically set library path, then run a program\n#         finish             complete the installation of libtool libraries\n#         install            install libraries or executables\n#         link               create a library or an executable\n#         uninstall          remove libraries from an installed directory\n#\n# MODE-ARGS vary depending on the MODE.  When passed as first option,\n# `--mode=MODE' may be abbreviated as `MODE' or a unique abbreviation of that.\n# Try `$progname --help --mode=MODE' for a more detailed description of MODE.\n#\n# When reporting a bug, please describe a test case to reproduce it and\n# include the following information:\n#\n#         host-triplet:\t$host\n#         shell:\t\t$SHELL\n#         compiler:\t\t$LTCC\n#         compiler flags:\t\t$LTCFLAGS\n#         linker:\t\t$LD (gnu? $with_gnu_ld)\n#         $progname:\t(GNU libtool) 2.2.10\n#         automake:\t$automake_version\n#         autoconf:\t$autoconf_version\n#\n# Report bugs to <bug-libtool@gnu.org>.\n\nPROGRAM=libtool\nPACKAGE=libtool\nVERSION=2.2.10\nTIMESTAMP=\"\"\npackage_revision=1.3175\n\n# Be Bourne compatible\nif test -n \"${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then\n  emulate sh\n  NULLCMD=:\n  # Zsh 3.x and 4.x performs word splitting on ${1+\"$@\"}, which\n  # is contrary to our usage.  Disable this feature.\n  alias -g '${1+\"$@\"}'='\"$@\"'\n  setopt NO_GLOB_SUBST\nelse\n  case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac\nfi\nBIN_SH=xpg4; export BIN_SH # for Tru64\nDUALCASE=1; export DUALCASE # for MKS sh\n\n# A function that is used when there is no print builtin or printf.\nfunc_fallback_echo ()\n{\n  eval 'cat <<_LTECHO_EOF\n$1\n_LTECHO_EOF'\n}\n\n# NLS nuisances: We save the old values to restore during execute mode.\nlt_user_locale=\nlt_safe_locale=\nfor lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES\ndo\n  eval \"if test \\\"\\${$lt_var+set}\\\" = set; then\n          save_$lt_var=\\$$lt_var\n          $lt_var=C\n\t  export $lt_var\n\t  lt_user_locale=\\\"$lt_var=\\\\\\$save_\\$lt_var; \\$lt_user_locale\\\"\n\t  lt_safe_locale=\\\"$lt_var=C; \\$lt_safe_locale\\\"\n\tfi\"\ndone\nLC_ALL=C\nLANGUAGE=C\nexport LANGUAGE LC_ALL\n\n$lt_unset CDPATH\n\n\n# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh\n# is ksh but when the shell is invoked as \"sh\" and the current value of\n# the _XPG environment variable is not equal to 1 (one), the special\n# positional parameter $0, within a function call, is the name of the\n# function.\nprogpath=\"$0\"\n\n\n\n: ${CP=\"cp -f\"}\ntest \"${ECHO+set}\" = set || ECHO=${as_echo-'printf %s\\n'}\n: ${EGREP=\"/usr/bin/grep -E\"}\n: ${FGREP=\"/usr/bin/grep -F\"}\n: ${GREP=\"/usr/bin/grep\"}\n: ${LN_S=\"ln -s\"}\n: ${MAKE=\"make\"}\n: ${MKDIR=\"mkdir\"}\n: ${MV=\"mv -f\"}\n: ${RM=\"rm -f\"}\n: ${SED=\"/usr/bin/sed\"}\n: ${SHELL=\"${CONFIG_SHELL-/bin/sh}\"}\n: ${Xsed=\"$SED -e 1s/^X//\"}\n\n# Global variables:\nEXIT_SUCCESS=0\nEXIT_FAILURE=1\nEXIT_MISMATCH=63  # $? = 63 is used to indicate version mismatch to missing.\nEXIT_SKIP=77\t  # $? = 77 is used to indicate a skipped test to automake.\n\nexit_status=$EXIT_SUCCESS\n\n# Make sure IFS has a sensible default\nlt_nl='\n'\nIFS=\" \t$lt_nl\"\n\ndirname=\"s,/[^/]*$,,\"\nbasename=\"s,^.*/,,\"\n\n# func_dirname_and_basename file append nondir_replacement\n# perform func_basename and func_dirname in a single function\n# call:\n#   dirname:  Compute the dirname of FILE.  If nonempty,\n#             add APPEND to the result, otherwise set result\n#             to NONDIR_REPLACEMENT.\n#             value returned in \"$func_dirname_result\"\n#   basename: Compute filename of FILE.\n#             value retuned in \"$func_basename_result\"\n# Implementation must be kept synchronized with func_dirname\n# and func_basename. For efficiency, we do not delegate to\n# those functions but instead duplicate the functionality here.\nfunc_dirname_and_basename ()\n{\n  # Extract subdirectory from the argument.\n  func_dirname_result=`$ECHO \"${1}\" | $SED -e \"$dirname\"`\n  if test \"X$func_dirname_result\" = \"X${1}\"; then\n    func_dirname_result=\"${3}\"\n  else\n    func_dirname_result=\"$func_dirname_result${2}\"\n  fi\n  func_basename_result=`$ECHO \"${1}\" | $SED -e \"$basename\"`\n}\n\n# Generated shell functions inserted here.\n\n# These SED scripts presuppose an absolute path with a trailing slash.\npathcar='s,^/\\([^/]*\\).*$,\\1,'\npathcdr='s,^/[^/]*,,'\nremovedotparts=':dotsl\n\t\ts@/\\./@/@g\n\t\tt dotsl\n\t\ts,/\\.$,/,'\ncollapseslashes='s@/\\{1,\\}@/@g'\nfinalslash='s,/*$,/,'\n\n# func_normal_abspath PATH\n# Remove doubled-up and trailing slashes, \".\" path components,\n# and cancel out any \"..\" path components in PATH after making\n# it an absolute path.\n#             value returned in \"$func_normal_abspath_result\"\nfunc_normal_abspath ()\n{\n  # Start from root dir and reassemble the path.\n  func_normal_abspath_result=\n  func_normal_abspath_tpath=$1\n  func_normal_abspath_altnamespace=\n  case $func_normal_abspath_tpath in\n    \"\")\n      # Empty path, that just means $cwd.\n      func_stripname '' '/' \"`pwd`\"\n      func_normal_abspath_result=$func_stripname_result\n      return\n    ;;\n    # The next three entries are used to spot a run of precisely\n    # two leading slashes without using negated character classes;\n    # we take advantage of case's first-match behaviour.\n    ///*)\n      # Unusual form of absolute path, do nothing.\n    ;;\n    //*)\n      # Not necessarily an ordinary path; POSIX reserves leading '//'\n      # and for example Cygwin uses it to access remote file shares\n      # over CIFS/SMB, so we conserve a leading double slash if found.\n      func_normal_abspath_altnamespace=/\n    ;;\n    /*)\n      # Absolute path, do nothing.\n    ;;\n    *)\n      # Relative path, prepend $cwd.\n      func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath\n    ;;\n  esac\n  # Cancel out all the simple stuff to save iterations.  We also want\n  # the path to end with a slash for ease of parsing, so make sure\n  # there is one (and only one) here.\n  func_normal_abspath_tpath=`$ECHO \"$func_normal_abspath_tpath\" | $SED \\\n        -e \"$removedotparts\" -e \"$collapseslashes\" -e \"$finalslash\"`\n  while :; do\n    # Processed it all yet?\n    if test \"$func_normal_abspath_tpath\" = / ; then\n      # If we ascended to the root using \"..\" the result may be empty now.\n      if test -z \"$func_normal_abspath_result\" ; then\n        func_normal_abspath_result=/\n      fi\n      break\n    fi\n    func_normal_abspath_tcomponent=`$ECHO \"$func_normal_abspath_tpath\" | $SED \\\n        -e \"$pathcar\"`\n    func_normal_abspath_tpath=`$ECHO \"$func_normal_abspath_tpath\" | $SED \\\n        -e \"$pathcdr\"`\n    # Figure out what to do with it\n    case $func_normal_abspath_tcomponent in\n      \"\")\n        # Trailing empty path component, ignore it.\n      ;;\n      ..)\n        # Parent dir; strip last assembled component from result.\n        func_dirname \"$func_normal_abspath_result\"\n        func_normal_abspath_result=$func_dirname_result\n      ;;\n      *)\n        # Actual path component, append it.\n        func_normal_abspath_result=$func_normal_abspath_result/$func_normal_abspath_tcomponent\n      ;;\n    esac\n  done\n  # Restore leading double-slash if one was found on entry.\n  func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result\n}\n\n# func_relative_path SRCDIR DSTDIR\n# generates a relative path from SRCDIR to DSTDIR, with a trailing\n# slash if non-empty, suitable for immediately appending a filename\n# without needing to append a separator.\n#             value returned in \"$func_relative_path_result\"\nfunc_relative_path ()\n{\n  func_relative_path_result=\n  func_normal_abspath \"$1\"\n  func_relative_path_tlibdir=$func_normal_abspath_result\n  func_normal_abspath \"$2\"\n  func_relative_path_tbindir=$func_normal_abspath_result\n\n  # Ascend the tree starting from libdir\n  while :; do\n    # check if we have found a prefix of bindir\n    case $func_relative_path_tbindir in\n      $func_relative_path_tlibdir)\n        # found an exact match\n        func_relative_path_tcancelled=\n        break\n        ;;\n      $func_relative_path_tlibdir*)\n        # found a matching prefix\n        func_stripname \"$func_relative_path_tlibdir\" '' \"$func_relative_path_tbindir\"\n        func_relative_path_tcancelled=$func_stripname_result\n        if test -z \"$func_relative_path_result\"; then\n          func_relative_path_result=.\n        fi\n        break\n        ;;\n      *)\n        func_dirname $func_relative_path_tlibdir\n        func_relative_path_tlibdir=${func_dirname_result}\n        if test \"x$func_relative_path_tlibdir\" = x ; then\n          # Have to descend all the way to the root!\n          func_relative_path_result=../$func_relative_path_result\n          func_relative_path_tcancelled=$func_relative_path_tbindir\n          break\n        fi\n        func_relative_path_result=../$func_relative_path_result\n        ;;\n    esac\n  done\n\n  # Now calculate path; take care to avoid doubling-up slashes.\n  func_stripname '' '/' \"$func_relative_path_result\"\n  func_relative_path_result=$func_stripname_result\n  func_stripname '/' '/' \"$func_relative_path_tcancelled\"\n  if test \"x$func_stripname_result\" != x ; then\n    func_relative_path_result=${func_relative_path_result}/${func_stripname_result}\n  fi\n\n  # Normalisation. If bindir is libdir, return empty string,\n  # else relative path ending with a slash; either way, target\n  # file name can be directly appended.\n  if test ! -z \"$func_relative_path_result\"; then\n    func_stripname './' '' \"$func_relative_path_result/\"\n    func_relative_path_result=$func_stripname_result\n  fi\n}\n\n# The name of this program:\nfunc_dirname_and_basename \"$progpath\"\nprogname=$func_basename_result\n\n# Make sure we have an absolute path for reexecution:\ncase $progpath in\n  [\\\\/]*|[A-Za-z]:\\\\*) ;;\n  *[\\\\/]*)\n     progdir=$func_dirname_result\n     progdir=`cd \"$progdir\" && pwd`\n     progpath=\"$progdir/$progname\"\n     ;;\n  *)\n     save_IFS=\"$IFS\"\n     IFS=:\n     for progdir in $PATH; do\n       IFS=\"$save_IFS\"\n       test -x \"$progdir/$progname\" && break\n     done\n     IFS=\"$save_IFS\"\n     test -n \"$progdir\" || progdir=`pwd`\n     progpath=\"$progdir/$progname\"\n     ;;\nesac\n\n# Sed substitution that helps us do robust quoting.  It backslashifies\n# metacharacters that are still active within double-quoted strings.\nXsed=\"${SED}\"' -e 1s/^X//'\nsed_quote_subst='s/\\([`\"$\\\\]\\)/\\\\\\1/g'\n\n# Same as above, but do not quote variable references.\ndouble_quote_subst='s/\\([\"`\\\\]\\)/\\\\\\1/g'\n\n# Re-`\\' parameter expansions in output of double_quote_subst that were\n# `\\'-ed in input to the same.  If an odd number of `\\' preceded a '$'\n# in input to double_quote_subst, that '$' was protected from expansion.\n# Since each input `\\' is now two `\\'s, look for any number of runs of\n# four `\\'s followed by two `\\'s and then a '$'.  `\\' that '$'.\nbs='\\\\'\nbs2='\\\\\\\\'\nbs4='\\\\\\\\\\\\\\\\'\ndollar='\\$'\nsed_double_backslash=\"\\\n  s/$bs4/&\\\\\n/g\n  s/^$bs2$dollar/$bs&/\n  s/\\\\([^$bs]\\\\)$bs2$dollar/\\\\1$bs2$bs$dollar/g\n  s/\\n//g\"\n\n# Standard options:\nopt_dry_run=false\nopt_help=false\nopt_quiet=false\nopt_verbose=false\nopt_warning=:\n\n# func_echo arg...\n# Echo program name prefixed message, along with the current mode\n# name if it has been set yet.\nfunc_echo ()\n{\n    $ECHO \"$progname${mode+: }$mode: $*\"\n}\n\n# func_verbose arg...\n# Echo program name prefixed message in verbose mode only.\nfunc_verbose ()\n{\n    $opt_verbose && func_echo ${1+\"$@\"}\n\n    # A bug in bash halts the script if the last line of a function\n    # fails when set -e is in force, so we need another command to\n    # work around that:\n    :\n}\n\n# func_echo_all arg...\n# Invoke $ECHO with all args, space-separated.\nfunc_echo_all ()\n{\n    $ECHO \"$*\"\n}\n\n# func_error arg...\n# Echo program name prefixed message to standard error.\nfunc_error ()\n{\n    $ECHO \"$progname${mode+: }$mode: \"${1+\"$@\"} 1>&2\n}\n\n# func_warning arg...\n# Echo program name prefixed warning message to standard error.\nfunc_warning ()\n{\n    $opt_warning && $ECHO \"$progname${mode+: }$mode: warning: \"${1+\"$@\"} 1>&2\n\n    # bash bug again:\n    :\n}\n\n# func_fatal_error arg...\n# Echo program name prefixed message to standard error, and exit.\nfunc_fatal_error ()\n{\n    func_error ${1+\"$@\"}\n    exit $EXIT_FAILURE\n}\n\n# func_fatal_help arg...\n# Echo program name prefixed message to standard error, followed by\n# a help hint, and exit.\nfunc_fatal_help ()\n{\n    func_error ${1+\"$@\"}\n    func_fatal_error \"$help\"\n}\nhelp=\"Try \\`$progname --help' for more information.\"  ## default\n\n\n# func_grep expression filename\n# Check whether EXPRESSION matches any line of FILENAME, without output.\nfunc_grep ()\n{\n    $GREP \"$1\" \"$2\" >/dev/null 2>&1\n}\n\n\n# func_mkdir_p directory-path\n# Make sure the entire path to DIRECTORY-PATH is available.\nfunc_mkdir_p ()\n{\n    my_directory_path=\"$1\"\n    my_dir_list=\n\n    if test -n \"$my_directory_path\" && test \"$opt_dry_run\" != \":\"; then\n\n      # Protect directory names starting with `-'\n      case $my_directory_path in\n        -*) my_directory_path=\"./$my_directory_path\" ;;\n      esac\n\n      # While some portion of DIR does not yet exist...\n      while test ! -d \"$my_directory_path\"; do\n        # ...make a list in topmost first order.  Use a colon delimited\n\t# list incase some portion of path contains whitespace.\n        my_dir_list=\"$my_directory_path:$my_dir_list\"\n\n        # If the last portion added has no slash in it, the list is done\n        case $my_directory_path in */*) ;; *) break ;; esac\n\n        # ...otherwise throw away the child directory and loop\n        my_directory_path=`$ECHO \"$my_directory_path\" | $SED -e \"$dirname\"`\n      done\n      my_dir_list=`$ECHO \"$my_dir_list\" | $SED 's,:*$,,'`\n\n      save_mkdir_p_IFS=\"$IFS\"; IFS=':'\n      for my_dir in $my_dir_list; do\n\tIFS=\"$save_mkdir_p_IFS\"\n        # mkdir can fail with a `File exist' error if two processes\n        # try to create one of the directories concurrently.  Don't\n        # stop in that case!\n        $MKDIR \"$my_dir\" 2>/dev/null || :\n      done\n      IFS=\"$save_mkdir_p_IFS\"\n\n      # Bail out if we (or some other process) failed to create a directory.\n      test -d \"$my_directory_path\" || \\\n        func_fatal_error \"Failed to create \\`$1'\"\n    fi\n}\n\n\n# func_mktempdir [string]\n# Make a temporary directory that won't clash with other running\n# libtool processes, and avoids race conditions if possible.  If\n# given, STRING is the basename for that directory.\nfunc_mktempdir ()\n{\n    my_template=\"${TMPDIR-/tmp}/${1-$progname}\"\n\n    if test \"$opt_dry_run\" = \":\"; then\n      # Return a directory name, but don't create it in dry-run mode\n      my_tmpdir=\"${my_template}-$$\"\n    else\n\n      # If mktemp works, use that first and foremost\n      my_tmpdir=`mktemp -d \"${my_template}-XXXXXXXX\" 2>/dev/null`\n\n      if test ! -d \"$my_tmpdir\"; then\n        # Failing that, at least try and use $RANDOM to avoid a race\n        my_tmpdir=\"${my_template}-${RANDOM-0}$$\"\n\n        save_mktempdir_umask=`umask`\n        umask 0077\n        $MKDIR \"$my_tmpdir\"\n        umask $save_mktempdir_umask\n      fi\n\n      # If we're not in dry-run mode, bomb out on failure\n      test -d \"$my_tmpdir\" || \\\n        func_fatal_error \"cannot create temporary directory \\`$my_tmpdir'\"\n    fi\n\n    $ECHO \"$my_tmpdir\"\n}\n\n\n# func_quote_for_eval arg\n# Aesthetically quote ARG to be evaled later.\n# This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT\n# is double-quoted, suitable for a subsequent eval, whereas\n# FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters\n# which are still active within double quotes backslashified.\nfunc_quote_for_eval ()\n{\n    case $1 in\n      *[\\\\\\`\\\"\\$]*)\n\tfunc_quote_for_eval_unquoted_result=`$ECHO \"$1\" | $SED \"$sed_quote_subst\"` ;;\n      *)\n        func_quote_for_eval_unquoted_result=\"$1\" ;;\n    esac\n\n    case $func_quote_for_eval_unquoted_result in\n      # Double-quote args containing shell metacharacters to delay\n      # word splitting, command substitution and and variable\n      # expansion for a subsequent eval.\n      # Many Bourne shells cannot handle close brackets correctly\n      # in scan sets, so we specify it separately.\n      *[\\[\\~\\#\\^\\&\\*\\(\\)\\{\\}\\|\\;\\<\\>\\?\\'\\ \\\t]*|*]*|\"\")\n        func_quote_for_eval_result=\"\\\"$func_quote_for_eval_unquoted_result\\\"\"\n        ;;\n      *)\n        func_quote_for_eval_result=\"$func_quote_for_eval_unquoted_result\"\n    esac\n}\n\n\n# func_quote_for_expand arg\n# Aesthetically quote ARG to be evaled later; same as above,\n# but do not quote variable references.\nfunc_quote_for_expand ()\n{\n    case $1 in\n      *[\\\\\\`\\\"]*)\n\tmy_arg=`$ECHO \"$1\" | $SED \\\n\t    -e \"$double_quote_subst\" -e \"$sed_double_backslash\"` ;;\n      *)\n        my_arg=\"$1\" ;;\n    esac\n\n    case $my_arg in\n      # Double-quote args containing shell metacharacters to delay\n      # word splitting and command substitution for a subsequent eval.\n      # Many Bourne shells cannot handle close brackets correctly\n      # in scan sets, so we specify it separately.\n      *[\\[\\~\\#\\^\\&\\*\\(\\)\\{\\}\\|\\;\\<\\>\\?\\'\\ \\\t]*|*]*|\"\")\n        my_arg=\"\\\"$my_arg\\\"\"\n        ;;\n    esac\n\n    func_quote_for_expand_result=\"$my_arg\"\n}\n\n\n# func_show_eval cmd [fail_exp]\n# Unless opt_silent is true, then output CMD.  Then, if opt_dryrun is\n# not true, evaluate CMD.  If the evaluation of CMD fails, and FAIL_EXP\n# is given, then evaluate it.\nfunc_show_eval ()\n{\n    my_cmd=\"$1\"\n    my_fail_exp=\"${2-:}\"\n\n    ${opt_silent-false} || {\n      func_quote_for_expand \"$my_cmd\"\n      eval \"func_echo $func_quote_for_expand_result\"\n    }\n\n    if ${opt_dry_run-false}; then :; else\n      eval \"$my_cmd\"\n      my_status=$?\n      if test \"$my_status\" -eq 0; then :; else\n\teval \"(exit $my_status); $my_fail_exp\"\n      fi\n    fi\n}\n\n\n# func_show_eval_locale cmd [fail_exp]\n# Unless opt_silent is true, then output CMD.  Then, if opt_dryrun is\n# not true, evaluate CMD.  If the evaluation of CMD fails, and FAIL_EXP\n# is given, then evaluate it.  Use the saved locale for evaluation.\nfunc_show_eval_locale ()\n{\n    my_cmd=\"$1\"\n    my_fail_exp=\"${2-:}\"\n\n    ${opt_silent-false} || {\n      func_quote_for_expand \"$my_cmd\"\n      eval \"func_echo $func_quote_for_expand_result\"\n    }\n\n    if ${opt_dry_run-false}; then :; else\n      eval \"$lt_user_locale\n\t    $my_cmd\"\n      my_status=$?\n      eval \"$lt_safe_locale\"\n      if test \"$my_status\" -eq 0; then :; else\n\teval \"(exit $my_status); $my_fail_exp\"\n      fi\n    fi\n}\n\n\n# func_version\n# Echo version message to standard output and exit.\nfunc_version ()\n{\n    $SED -n '/(C)/!b go\n\t:more\n\t/\\./!{\n\t  N\n\t  s/\\n# / /\n\t  b more\n\t}\n\t:go\n\t/^# '$PROGRAM' (GNU /,/# warranty; / {\n        s/^# //\n\ts/^# *$//\n        s/\\((C)\\)[ 0-9,-]*\\( [1-9][0-9]*\\)/\\1\\2/\n        p\n     }' < \"$progpath\"\n     exit $?\n}\n\n# func_usage\n# Echo short help message to standard output and exit.\nfunc_usage ()\n{\n    $SED -n '/^# Usage:/,/^#  *.*--help/ {\n        s/^# //\n\ts/^# *$//\n\ts/\\$progname/'$progname'/\n\tp\n    }' < \"$progpath\"\n    echo\n    $ECHO \"run \\`$progname --help | more' for full usage\"\n    exit $?\n}\n\n# func_help [NOEXIT]\n# Echo long help message to standard output and exit,\n# unless 'noexit' is passed as argument.\nfunc_help ()\n{\n    $SED -n '/^# Usage:/,/# Report bugs to/ {\n        s/^# //\n\ts/^# *$//\n\ts*\\$progname*'$progname'*\n\ts*\\$host*'\"$host\"'*\n\ts*\\$SHELL*'\"$SHELL\"'*\n\ts*\\$LTCC*'\"$LTCC\"'*\n\ts*\\$LTCFLAGS*'\"$LTCFLAGS\"'*\n\ts*\\$LD*'\"$LD\"'*\n\ts/\\$with_gnu_ld/'\"$with_gnu_ld\"'/\n\ts/\\$automake_version/'\"`(automake --version) 2>/dev/null |$SED 1q`\"'/\n\ts/\\$autoconf_version/'\"`(autoconf --version) 2>/dev/null |$SED 1q`\"'/\n\tp\n     }' < \"$progpath\"\n    ret=$?\n    if test -z \"$1\"; then\n      exit $ret\n    fi\n}\n\n# func_missing_arg argname\n# Echo program name prefixed message to standard error and set global\n# exit_cmd.\nfunc_missing_arg ()\n{\n    func_error \"missing argument for $1.\"\n    exit_cmd=exit\n}\n\nexit_cmd=:\n\n\n\n\n\n\nmagic=\"%%%MAGIC variable%%%\"\nmagic_exe=\"%%%MAGIC EXE variable%%%\"\n\n# Global variables.\n# $mode is unset\nnonopt=\nexecute_dlfiles=\npreserve_args=\nlo2o=\"s/\\\\.lo\\$/.${objext}/\"\no2lo=\"s/\\\\.${objext}\\$/.lo/\"\nextracted_archives=\nextracted_serial=0\n\nopt_dry_run=false\nopt_duplicate_deps=false\nopt_silent=false\nopt_debug=:\n\n# If this variable is set in any of the actions, the command in it\n# will be execed at the end.  This prevents here-documents from being\n# left over by shells.\nexec_cmd=\n\n# func_fatal_configuration arg...\n# Echo program name prefixed message to standard error, followed by\n# a configuration failure hint, and exit.\nfunc_fatal_configuration ()\n{\n    func_error ${1+\"$@\"}\n    func_error \"See the $PACKAGE documentation for more information.\"\n    func_fatal_error \"Fatal configuration error.\"\n}\n\n\n# func_config\n# Display the configuration for all the tags in this script.\nfunc_config ()\n{\n    re_begincf='^# ### BEGIN LIBTOOL'\n    re_endcf='^# ### END LIBTOOL'\n\n    # Default configuration.\n    $SED \"1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\\$d\" < \"$progpath\"\n\n    # Now print the configurations for the tags.\n    for tagname in $taglist; do\n      $SED -n \"/$re_begincf TAG CONFIG: $tagname\\$/,/$re_endcf TAG CONFIG: $tagname\\$/p\" < \"$progpath\"\n    done\n\n    exit $?\n}\n\n# func_features\n# Display the features supported by this script.\nfunc_features ()\n{\n    echo \"host: $host\"\n    if test \"$build_libtool_libs\" = yes; then\n      echo \"enable shared libraries\"\n    else\n      echo \"disable shared libraries\"\n    fi\n    if test \"$build_old_libs\" = yes; then\n      echo \"enable static libraries\"\n    else\n      echo \"disable static libraries\"\n    fi\n\n    exit $?\n}\n\n# func_enable_tag tagname\n# Verify that TAGNAME is valid, and either flag an error and exit, or\n# enable the TAGNAME tag.  We also add TAGNAME to the global $taglist\n# variable here.\nfunc_enable_tag ()\n{\n  # Global variable:\n  tagname=\"$1\"\n\n  re_begincf=\"^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\\$\"\n  re_endcf=\"^# ### END LIBTOOL TAG CONFIG: $tagname\\$\"\n  sed_extractcf=\"/$re_begincf/,/$re_endcf/p\"\n\n  # Validate tagname.\n  case $tagname in\n    *[!-_A-Za-z0-9,/]*)\n      func_fatal_error \"invalid tag name: $tagname\"\n      ;;\n  esac\n\n  # Don't test for the \"default\" C tag, as we know it's\n  # there but not specially marked.\n  case $tagname in\n    CC) ;;\n    *)\n      if $GREP \"$re_begincf\" \"$progpath\" >/dev/null 2>&1; then\n\ttaglist=\"$taglist $tagname\"\n\n\t# Evaluate the configuration.  Be careful to quote the path\n\t# and the sed script, to avoid splitting on whitespace, but\n\t# also don't use non-portable quotes within backquotes within\n\t# quotes we have to do it in 2 steps:\n\textractedcf=`$SED -n -e \"$sed_extractcf\" < \"$progpath\"`\n\teval \"$extractedcf\"\n      else\n\tfunc_error \"ignoring unknown tag $tagname\"\n      fi\n      ;;\n  esac\n}\n\n# Parse options once, thoroughly.  This comes as soon as possible in\n# the script to make things like `libtool --version' happen quickly.\n{\n\n  # Shorthand for --mode=foo, only valid as the first argument\n  case $1 in\n  clean|clea|cle|cl)\n    shift; set dummy --mode clean ${1+\"$@\"}; shift\n    ;;\n  compile|compil|compi|comp|com|co|c)\n    shift; set dummy --mode compile ${1+\"$@\"}; shift\n    ;;\n  execute|execut|execu|exec|exe|ex|e)\n    shift; set dummy --mode execute ${1+\"$@\"}; shift\n    ;;\n  finish|finis|fini|fin|fi|f)\n    shift; set dummy --mode finish ${1+\"$@\"}; shift\n    ;;\n  install|instal|insta|inst|ins|in|i)\n    shift; set dummy --mode install ${1+\"$@\"}; shift\n    ;;\n  link|lin|li|l)\n    shift; set dummy --mode link ${1+\"$@\"}; shift\n    ;;\n  uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u)\n    shift; set dummy --mode uninstall ${1+\"$@\"}; shift\n    ;;\n  esac\n\n  # Parse non-mode specific arguments:\n  while test \"$#\" -gt 0; do\n    opt=\"$1\"\n    shift\n\n    case $opt in\n      --config)\t\tfunc_config\t\t\t\t\t;;\n\n      --debug)\t\tpreserve_args=\"$preserve_args $opt\"\n\t\t\tfunc_echo \"enabling shell trace mode\"\n\t\t\topt_debug='set -x'\n\t\t\t$opt_debug\n\t\t\t;;\n\n      -dlopen)\t\ttest \"$#\" -eq 0 && func_missing_arg \"$opt\" && break\n\t\t\texecute_dlfiles=\"$execute_dlfiles $1\"\n\t\t\tshift\n\t\t\t;;\n\n      --dry-run | -n)\topt_dry_run=:\t\t\t\t\t;;\n      --features)       func_features\t\t\t\t\t;;\n      --finish)\t\tmode=\"finish\"\t\t\t\t\t;;\n\n      --mode)\t\ttest \"$#\" -eq 0 && func_missing_arg \"$opt\" && break\n\t\t\tcase $1 in\n\t\t\t  # Valid mode arguments:\n\t\t\t  clean)\t;;\n\t\t\t  compile)\t;;\n\t\t\t  execute)\t;;\n\t\t\t  finish)\t;;\n\t\t\t  install)\t;;\n\t\t\t  link)\t\t;;\n\t\t\t  relink)\t;;\n\t\t\t  uninstall)\t;;\n\n\t\t\t  # Catch anything else as an error\n\t\t\t  *) func_error \"invalid argument for $opt\"\n\t\t\t     exit_cmd=exit\n\t\t\t     break\n\t\t\t     ;;\n\t\t        esac\n\n\t\t\tmode=\"$1\"\n\t\t\tshift\n\t\t\t;;\n\n      --preserve-dup-deps)\n\t\t\topt_duplicate_deps=:\t\t\t\t;;\n\n      --quiet|--silent)\tpreserve_args=\"$preserve_args $opt\"\n\t\t\topt_silent=:\n\t\t\topt_verbose=false\n\t\t\t;;\n\n      --no-quiet|--no-silent)\n\t\t\tpreserve_args=\"$preserve_args $opt\"\n\t\t\topt_silent=false\n\t\t\t;;\n\n      --verbose| -v)\tpreserve_args=\"$preserve_args $opt\"\n\t\t\topt_silent=false\n\t\t\topt_verbose=:\n\t\t\t;;\n\n      --no-verbose)\tpreserve_args=\"$preserve_args $opt\"\n\t\t\topt_verbose=false\n\t\t\t;;\n\n      --tag)\t\ttest \"$#\" -eq 0 && func_missing_arg \"$opt\" && break\n\t\t\tpreserve_args=\"$preserve_args $opt $1\"\n\t\t\tfunc_enable_tag \"$1\"\t# tagname is set here\n\t\t\tshift\n\t\t\t;;\n\n      # Separate optargs to long options:\n      -dlopen=*|--mode=*|--tag=*)\n\t\t\tfunc_opt_split \"$opt\"\n\t\t\tset dummy \"$func_opt_split_opt\" \"$func_opt_split_arg\" ${1+\"$@\"}\n\t\t\tshift\n\t\t\t;;\n\n      -\\?|-h)\t\tfunc_usage\t\t\t\t\t;;\n      --help)\t\topt_help=:\t\t\t\t\t;;\n      --help-all)\topt_help=': help-all'\t\t\t\t;;\n      --version)\tfunc_version\t\t\t\t\t;;\n\n      -*)\t\tfunc_fatal_help \"unrecognized option \\`$opt'\"\t;;\n\n      *)\t\tnonopt=\"$opt\"\n\t\t\tbreak\n\t\t\t;;\n    esac\n  done\n\n\n  case $host in\n    *cygwin* | *mingw* | *pw32* | *cegcc*)\n      # don't eliminate duplications in $postdeps and $predeps\n      opt_duplicate_compiler_generated_deps=:\n      ;;\n    *)\n      opt_duplicate_compiler_generated_deps=$opt_duplicate_deps\n      ;;\n  esac\n\n  # Having warned about all mis-specified options, bail out if\n  # anything was wrong.\n  $exit_cmd $EXIT_FAILURE\n}\n\n# func_check_version_match\n# Ensure that we are using m4 macros, and libtool script from the same\n# release of libtool.\nfunc_check_version_match ()\n{\n  if test \"$package_revision\" != \"$macro_revision\"; then\n    if test \"$VERSION\" != \"$macro_version\"; then\n      if test -z \"$macro_version\"; then\n        cat >&2 <<_LT_EOF\n$progname: Version mismatch error.  This is $PACKAGE $VERSION, but the\n$progname: definition of this LT_INIT comes from an older release.\n$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION\n$progname: and run autoconf again.\n_LT_EOF\n      else\n        cat >&2 <<_LT_EOF\n$progname: Version mismatch error.  This is $PACKAGE $VERSION, but the\n$progname: definition of this LT_INIT comes from $PACKAGE $macro_version.\n$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION\n$progname: and run autoconf again.\n_LT_EOF\n      fi\n    else\n      cat >&2 <<_LT_EOF\n$progname: Version mismatch error.  This is $PACKAGE $VERSION, revision $package_revision,\n$progname: but the definition of this LT_INIT comes from revision $macro_revision.\n$progname: You should recreate aclocal.m4 with macros from revision $package_revision\n$progname: of $PACKAGE $VERSION and run autoconf again.\n_LT_EOF\n    fi\n\n    exit $EXIT_MISMATCH\n  fi\n}\n\n\n## ----------- ##\n##    Main.    ##\n## ----------- ##\n\n$opt_help || {\n  # Sanity checks first:\n  func_check_version_match\n\n  if test \"$build_libtool_libs\" != yes && test \"$build_old_libs\" != yes; then\n    func_fatal_configuration \"not configured to build any kind of library\"\n  fi\n\n  test -z \"$mode\" && func_fatal_error \"error: you must specify a MODE.\"\n\n\n  # Darwin sucks\n  eval std_shrext=\\\"$shrext_cmds\\\"\n\n\n  # Only execute mode is allowed to have -dlopen flags.\n  if test -n \"$execute_dlfiles\" && test \"$mode\" != execute; then\n    func_error \"unrecognized option \\`-dlopen'\"\n    $ECHO \"$help\" 1>&2\n    exit $EXIT_FAILURE\n  fi\n\n  # Change the help message to a mode-specific one.\n  generic_help=\"$help\"\n  help=\"Try \\`$progname --help --mode=$mode' for more information.\"\n}\n\n\n# func_lalib_p file\n# True iff FILE is a libtool `.la' library or `.lo' object file.\n# This function is only a basic sanity check; it will hardly flush out\n# determined imposters.\nfunc_lalib_p ()\n{\n    test -f \"$1\" &&\n      $SED -e 4q \"$1\" 2>/dev/null \\\n        | $GREP \"^# Generated by .*$PACKAGE\" > /dev/null 2>&1\n}\n\n# func_lalib_unsafe_p file\n# True iff FILE is a libtool `.la' library or `.lo' object file.\n# This function implements the same check as func_lalib_p without\n# resorting to external programs.  To this end, it redirects stdin and\n# closes it afterwards, without saving the original file descriptor.\n# As a safety measure, use it only where a negative result would be\n# fatal anyway.  Works if `file' does not exist.\nfunc_lalib_unsafe_p ()\n{\n    lalib_p=no\n    if test -f \"$1\" && test -r \"$1\" && exec 5<&0 <\"$1\"; then\n\tfor lalib_p_l in 1 2 3 4\n\tdo\n\t    read lalib_p_line\n\t    case \"$lalib_p_line\" in\n\t\t\\#\\ Generated\\ by\\ *$PACKAGE* ) lalib_p=yes; break;;\n\t    esac\n\tdone\n\texec 0<&5 5<&-\n    fi\n    test \"$lalib_p\" = yes\n}\n\n# func_ltwrapper_script_p file\n# True iff FILE is a libtool wrapper script\n# This function is only a basic sanity check; it will hardly flush out\n# determined imposters.\nfunc_ltwrapper_script_p ()\n{\n    func_lalib_p \"$1\"\n}\n\n# func_ltwrapper_executable_p file\n# True iff FILE is a libtool wrapper executable\n# This function is only a basic sanity check; it will hardly flush out\n# determined imposters.\nfunc_ltwrapper_executable_p ()\n{\n    func_ltwrapper_exec_suffix=\n    case $1 in\n    *.exe) ;;\n    *) func_ltwrapper_exec_suffix=.exe ;;\n    esac\n    $GREP \"$magic_exe\" \"$1$func_ltwrapper_exec_suffix\" >/dev/null 2>&1\n}\n\n# func_ltwrapper_scriptname file\n# Assumes file is an ltwrapper_executable\n# uses $file to determine the appropriate filename for a\n# temporary ltwrapper_script.\nfunc_ltwrapper_scriptname ()\n{\n    func_ltwrapper_scriptname_result=\"\"\n    if func_ltwrapper_executable_p \"$1\"; then\n\tfunc_dirname_and_basename \"$1\" \"\" \".\"\n\tfunc_stripname '' '.exe' \"$func_basename_result\"\n\tfunc_ltwrapper_scriptname_result=\"$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper\"\n    fi\n}\n\n# func_ltwrapper_p file\n# True iff FILE is a libtool wrapper script or wrapper executable\n# This function is only a basic sanity check; it will hardly flush out\n# determined imposters.\nfunc_ltwrapper_p ()\n{\n    func_ltwrapper_script_p \"$1\" || func_ltwrapper_executable_p \"$1\"\n}\n\n\n# func_execute_cmds commands fail_cmd\n# Execute tilde-delimited COMMANDS.\n# If FAIL_CMD is given, eval that upon failure.\n# FAIL_CMD may read-access the current command in variable CMD!\nfunc_execute_cmds ()\n{\n    $opt_debug\n    save_ifs=$IFS; IFS='~'\n    for cmd in $1; do\n      IFS=$save_ifs\n      eval cmd=\\\"$cmd\\\"\n      func_show_eval \"$cmd\" \"${2-:}\"\n    done\n    IFS=$save_ifs\n}\n\n\n# func_source file\n# Source FILE, adding directory component if necessary.\n# Note that it is not necessary on cygwin/mingw to append a dot to\n# FILE even if both FILE and FILE.exe exist: automatic-append-.exe\n# behavior happens only for exec(3), not for open(2)!  Also, sourcing\n# `FILE.' does not work on cygwin managed mounts.\nfunc_source ()\n{\n    $opt_debug\n    case $1 in\n    */* | *\\\\*)\t. \"$1\" ;;\n    *)\t\t. \"./$1\" ;;\n    esac\n}\n\n\n# func_infer_tag arg\n# Infer tagged configuration to use if any are available and\n# if one wasn't chosen via the \"--tag\" command line option.\n# Only attempt this if the compiler in the base compile\n# command doesn't match the default compiler.\n# arg is usually of the form 'gcc ...'\nfunc_infer_tag ()\n{\n    $opt_debug\n    if test -n \"$available_tags\" && test -z \"$tagname\"; then\n      CC_quoted=\n      for arg in $CC; do\n        func_quote_for_eval \"$arg\"\n\tCC_quoted=\"$CC_quoted $func_quote_for_eval_result\"\n      done\n      CC_expanded=`func_echo_all $CC`\n      CC_quoted_expanded=`func_echo_all $CC_quoted`\n      case $@ in\n      # Blanks in the command may have been stripped by the calling shell,\n      # but not from the CC environment variable when configure was run.\n      \" $CC \"* | \"$CC \"* | \" $CC_expanded \"* | \"$CC_expanded \"* | \\\n      \" $CC_quoted\"* | \"$CC_quoted \"* | \" $CC_quoted_expanded \"* | \"$CC_quoted_expanded \"*) ;;\n      # Blanks at the start of $base_compile will cause this to fail\n      # if we don't check for them as well.\n      *)\n\tfor z in $available_tags; do\n\t  if $GREP \"^# ### BEGIN LIBTOOL TAG CONFIG: $z$\" < \"$progpath\" > /dev/null; then\n\t    # Evaluate the configuration.\n\t    eval \"`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`\"\n\t    CC_quoted=\n\t    for arg in $CC; do\n\t      # Double-quote args containing other shell metacharacters.\n\t      func_quote_for_eval \"$arg\"\n\t      CC_quoted=\"$CC_quoted $func_quote_for_eval_result\"\n\t    done\n\t    CC_expanded=`func_echo_all $CC`\n\t    CC_quoted_expanded=`func_echo_all $CC_quoted`\n\t    case \"$@ \" in\n\t    \" $CC \"* | \"$CC \"* | \" $CC_expanded \"* | \"$CC_expanded \"* | \\\n\t    \" $CC_quoted\"* | \"$CC_quoted \"* | \" $CC_quoted_expanded \"* | \"$CC_quoted_expanded \"*)\n\t      # The compiler in the base compile command matches\n\t      # the one in the tagged configuration.\n\t      # Assume this is the tagged configuration we want.\n\t      tagname=$z\n\t      break\n\t      ;;\n\t    esac\n\t  fi\n\tdone\n\t# If $tagname still isn't set, then no tagged configuration\n\t# was found and let the user know that the \"--tag\" command\n\t# line option must be used.\n\tif test -z \"$tagname\"; then\n\t  func_echo \"unable to infer tagged configuration\"\n\t  func_fatal_error \"specify a tag with \\`--tag'\"\n#\telse\n#\t  func_verbose \"using $tagname tagged configuration\"\n\tfi\n\t;;\n      esac\n    fi\n}\n\n\n\n# func_write_libtool_object output_name pic_name nonpic_name\n# Create a libtool object file (analogous to a \".la\" file),\n# but don't create it if we're doing a dry run.\nfunc_write_libtool_object ()\n{\n    write_libobj=${1}\n    if test \"$build_libtool_libs\" = yes; then\n      write_lobj=\\'${2}\\'\n    else\n      write_lobj=none\n    fi\n\n    if test \"$build_old_libs\" = yes; then\n      write_oldobj=\\'${3}\\'\n    else\n      write_oldobj=none\n    fi\n\n    $opt_dry_run || {\n      cat >${write_libobj}T <<EOF\n# $write_libobj - a libtool object file\n# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION\n#\n# Please DO NOT delete this file!\n# It is necessary for linking the library.\n\n# Name of the PIC object.\npic_object=$write_lobj\n\n# Name of the non-PIC object\nnon_pic_object=$write_oldobj\n\nEOF\n      $MV \"${write_libobj}T\" \"${write_libobj}\"\n    }\n}\n\n# func_mode_compile arg...\nfunc_mode_compile ()\n{\n    $opt_debug\n    # Get the compilation command and the source file.\n    base_compile=\n    srcfile=\"$nonopt\"  #  always keep a non-empty value in \"srcfile\"\n    suppress_opt=yes\n    suppress_output=\n    arg_mode=normal\n    libobj=\n    later=\n    pie_flag=\n\n    for arg\n    do\n      case $arg_mode in\n      arg  )\n\t# do not \"continue\".  Instead, add this to base_compile\n\tlastarg=\"$arg\"\n\targ_mode=normal\n\t;;\n\n      target )\n\tlibobj=\"$arg\"\n\targ_mode=normal\n\tcontinue\n\t;;\n\n      normal )\n\t# Accept any command-line options.\n\tcase $arg in\n\t-o)\n\t  test -n \"$libobj\" && \\\n\t    func_fatal_error \"you cannot specify \\`-o' more than once\"\n\t  arg_mode=target\n\t  continue\n\t  ;;\n\n\t-pie | -fpie | -fPIE)\n          pie_flag=\"$pie_flag $arg\"\n\t  continue\n\t  ;;\n\n\t-shared | -static | -prefer-pic | -prefer-non-pic)\n\t  later=\"$later $arg\"\n\t  continue\n\t  ;;\n\n\t-no-suppress)\n\t  suppress_opt=no\n\t  continue\n\t  ;;\n\n\t-Xcompiler)\n\t  arg_mode=arg  #  the next one goes into the \"base_compile\" arg list\n\t  continue      #  The current \"srcfile\" will either be retained or\n\t  ;;            #  replaced later.  I would guess that would be a bug.\n\n\t-Wc,*)\n\t  func_stripname '-Wc,' '' \"$arg\"\n\t  args=$func_stripname_result\n\t  lastarg=\n\t  save_ifs=\"$IFS\"; IFS=','\n\t  for arg in $args; do\n\t    IFS=\"$save_ifs\"\n\t    func_quote_for_eval \"$arg\"\n\t    lastarg=\"$lastarg $func_quote_for_eval_result\"\n\t  done\n\t  IFS=\"$save_ifs\"\n\t  func_stripname ' ' '' \"$lastarg\"\n\t  lastarg=$func_stripname_result\n\n\t  # Add the arguments to base_compile.\n\t  base_compile=\"$base_compile $lastarg\"\n\t  continue\n\t  ;;\n\n\t*)\n\t  # Accept the current argument as the source file.\n\t  # The previous \"srcfile\" becomes the current argument.\n\t  #\n\t  lastarg=\"$srcfile\"\n\t  srcfile=\"$arg\"\n\t  ;;\n\tesac  #  case $arg\n\t;;\n      esac    #  case $arg_mode\n\n      # Aesthetically quote the previous argument.\n      func_quote_for_eval \"$lastarg\"\n      base_compile=\"$base_compile $func_quote_for_eval_result\"\n    done # for arg\n\n    case $arg_mode in\n    arg)\n      func_fatal_error \"you must specify an argument for -Xcompile\"\n      ;;\n    target)\n      func_fatal_error \"you must specify a target with \\`-o'\"\n      ;;\n    *)\n      # Get the name of the library object.\n      test -z \"$libobj\" && {\n\tfunc_basename \"$srcfile\"\n\tlibobj=\"$func_basename_result\"\n      }\n      ;;\n    esac\n\n    # Recognize several different file suffixes.\n    # If the user specifies -o file.o, it is replaced with file.lo\n    case $libobj in\n    *.[cCFSifmso] | \\\n    *.ada | *.adb | *.ads | *.asm | \\\n    *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \\\n    *.[fF][09]? | *.for | *.java | *.obj | *.sx | *.cu | *.cup)\n      func_xform \"$libobj\"\n      libobj=$func_xform_result\n      ;;\n    esac\n\n    case $libobj in\n    *.lo) func_lo2o \"$libobj\"; obj=$func_lo2o_result ;;\n    *)\n      func_fatal_error \"cannot determine name of library object from \\`$libobj'\"\n      ;;\n    esac\n\n    func_infer_tag $base_compile\n\n    for arg in $later; do\n      case $arg in\n      -shared)\n\ttest \"$build_libtool_libs\" != yes && \\\n\t  func_fatal_configuration \"can not build a shared library\"\n\tbuild_old_libs=no\n\tcontinue\n\t;;\n\n      -static)\n\tbuild_libtool_libs=no\n\tbuild_old_libs=yes\n\tcontinue\n\t;;\n\n      -prefer-pic)\n\tpic_mode=yes\n\tcontinue\n\t;;\n\n      -prefer-non-pic)\n\tpic_mode=no\n\tcontinue\n\t;;\n      esac\n    done\n\n    func_quote_for_eval \"$libobj\"\n    test \"X$libobj\" != \"X$func_quote_for_eval_result\" \\\n      && $ECHO \"X$libobj\" | $GREP '[]~#^*{};<>?\"'\"'\"'\t &()|`$[]' \\\n      && func_warning \"libobj name \\`$libobj' may not contain shell special characters.\"\n    func_dirname_and_basename \"$obj\" \"/\" \"\"\n    objname=\"$func_basename_result\"\n    xdir=\"$func_dirname_result\"\n    lobj=${xdir}$objdir/$objname\n\n    test -z \"$base_compile\" && \\\n      func_fatal_help \"you must specify a compilation command\"\n\n    # Delete any leftover library objects.\n    if test \"$build_old_libs\" = yes; then\n      removelist=\"$obj $lobj $libobj ${libobj}T\"\n    else\n      removelist=\"$lobj $libobj ${libobj}T\"\n    fi\n\n    # On Cygwin there's no \"real\" PIC flag so we must build both object types\n    case $host_os in\n    cygwin* | mingw* | pw32* | os2* | cegcc*)\n      pic_mode=default\n      ;;\n    esac\n    if test \"$pic_mode\" = no && test \"$deplibs_check_method\" != pass_all; then\n      # non-PIC code in shared libraries is not supported\n      pic_mode=default\n    fi\n\n    # Calculate the filename of the output object if compiler does\n    # not support -o with -c\n    if test \"$compiler_c_o\" = no; then\n      output_obj=`$ECHO \"$srcfile\" | $SED 's%^.*/%%; s%\\.[^.]*$%%'`.${objext}\n      lockfile=\"$output_obj.lock\"\n    else\n      output_obj=\n      need_locks=no\n      lockfile=\n    fi\n\n    # Lock this critical section if it is needed\n    # We use this script file to make the link, it avoids creating a new file\n    if test \"$need_locks\" = yes; then\n      until $opt_dry_run || ln \"$progpath\" \"$lockfile\" 2>/dev/null; do\n\tfunc_echo \"Waiting for $lockfile to be removed\"\n\tsleep 2\n      done\n    elif test \"$need_locks\" = warn; then\n      if test -f \"$lockfile\"; then\n\t$ECHO \"\\\n*** ERROR, $lockfile exists and contains:\n`cat $lockfile 2>/dev/null`\n\nThis indicates that another process is trying to use the same\ntemporary object file, and libtool could not work around it because\nyour compiler does not support \\`-c' and \\`-o' together.  If you\nrepeat this compilation, it may succeed, by chance, but you had better\navoid parallel builds (make -j) in this platform, or get a better\ncompiler.\"\n\n\t$opt_dry_run || $RM $removelist\n\texit $EXIT_FAILURE\n      fi\n      removelist=\"$removelist $output_obj\"\n      $ECHO \"$srcfile\" > \"$lockfile\"\n    fi\n\n    $opt_dry_run || $RM $removelist\n    removelist=\"$removelist $lockfile\"\n    trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15\n\n    if test -n \"$fix_srcfile_path\"; then\n      eval srcfile=\\\"$fix_srcfile_path\\\"\n    fi\n    func_quote_for_eval \"$srcfile\"\n    qsrcfile=$func_quote_for_eval_result\n\n    # Only build a PIC object if we are building libtool libraries.\n    if test \"$build_libtool_libs\" = yes; then\n      # Without this assignment, base_compile gets emptied.\n      fbsd_hideous_sh_bug=$base_compile\n\n      if test \"$pic_mode\" != no; then\n\tcommand=\"$base_compile $qsrcfile $pic_flag\"\n      else\n\t# Don't build PIC code\n\tcommand=\"$base_compile $qsrcfile\"\n      fi\n\n      func_mkdir_p \"$xdir$objdir\"\n\n      if test -z \"$output_obj\"; then\n\t# Place PIC objects in $objdir\n\tcommand=\"$command -o $lobj\"\n      fi\n\n      func_show_eval_locale \"$command\"\t\\\n          'test -n \"$output_obj\" && $RM $removelist; exit $EXIT_FAILURE'\n\n      if test \"$need_locks\" = warn &&\n\t test \"X`cat $lockfile 2>/dev/null`\" != \"X$srcfile\"; then\n\t$ECHO \"\\\n*** ERROR, $lockfile contains:\n`cat $lockfile 2>/dev/null`\n\nbut it should contain:\n$srcfile\n\nThis indicates that another process is trying to use the same\ntemporary object file, and libtool could not work around it because\nyour compiler does not support \\`-c' and \\`-o' together.  If you\nrepeat this compilation, it may succeed, by chance, but you had better\navoid parallel builds (make -j) in this platform, or get a better\ncompiler.\"\n\n\t$opt_dry_run || $RM $removelist\n\texit $EXIT_FAILURE\n      fi\n\n      # Just move the object if needed, then go on to compile the next one\n      if test -n \"$output_obj\" && test \"X$output_obj\" != \"X$lobj\"; then\n\tfunc_show_eval '$MV \"$output_obj\" \"$lobj\"' \\\n\t  'error=$?; $opt_dry_run || $RM $removelist; exit $error'\n      fi\n\n      # Allow error messages only from the first compilation.\n      if test \"$suppress_opt\" = yes; then\n\tsuppress_output=' >/dev/null 2>&1'\n      fi\n    fi\n\n    # Only build a position-dependent object if we build old libraries.\n    if test \"$build_old_libs\" = yes; then\n      if test \"$pic_mode\" != yes; then\n\t# Don't build PIC code\n\tcommand=\"$base_compile $qsrcfile$pie_flag\"\n      else\n\tcommand=\"$base_compile $qsrcfile $pic_flag\"\n      fi\n      if test \"$compiler_c_o\" = yes; then\n\tcommand=\"$command -o $obj\"\n      fi\n\n      # Suppress compiler output if we already did a PIC compilation.\n      command=\"$command$suppress_output\"\n      func_show_eval_locale \"$command\" \\\n        '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE'\n\n      if test \"$need_locks\" = warn &&\n\t test \"X`cat $lockfile 2>/dev/null`\" != \"X$srcfile\"; then\n\t$ECHO \"\\\n*** ERROR, $lockfile contains:\n`cat $lockfile 2>/dev/null`\n\nbut it should contain:\n$srcfile\n\nThis indicates that another process is trying to use the same\ntemporary object file, and libtool could not work around it because\nyour compiler does not support \\`-c' and \\`-o' together.  If you\nrepeat this compilation, it may succeed, by chance, but you had better\navoid parallel builds (make -j) in this platform, or get a better\ncompiler.\"\n\n\t$opt_dry_run || $RM $removelist\n\texit $EXIT_FAILURE\n      fi\n\n      # Just move the object if needed\n      if test -n \"$output_obj\" && test \"X$output_obj\" != \"X$obj\"; then\n\tfunc_show_eval '$MV \"$output_obj\" \"$obj\"' \\\n\t  'error=$?; $opt_dry_run || $RM $removelist; exit $error'\n      fi\n    fi\n\n    $opt_dry_run || {\n      func_write_libtool_object \"$libobj\" \"$objdir/$objname\" \"$objname\"\n\n      # Unlock the critical section if it was locked\n      if test \"$need_locks\" != no; then\n\tremovelist=$lockfile\n        $RM \"$lockfile\"\n      fi\n    }\n\n    exit $EXIT_SUCCESS\n}\n\n$opt_help || {\n  test \"$mode\" = compile && func_mode_compile ${1+\"$@\"}\n}\n\nfunc_mode_help ()\n{\n    # We need to display help for each of the modes.\n    case $mode in\n      \"\")\n        # Generic help is extracted from the usage comments\n        # at the start of this file.\n        func_help\n        ;;\n\n      clean)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE...\n\nRemove files from the build directory.\n\nRM is the name of the program to use to delete files associated with each FILE\n(typically \\`/bin/rm').  RM-OPTIONS are options (such as \\`-f') to be passed\nto RM.\n\nIf FILE is a libtool library, object or program, all the files associated\nwith it are deleted. Otherwise, only FILE itself is deleted using RM.\"\n        ;;\n\n      compile)\n      $ECHO \\\n\"Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE\n\nCompile a source file into a libtool library object.\n\nThis mode accepts the following additional options:\n\n  -o OUTPUT-FILE    set the output file name to OUTPUT-FILE\n  -no-suppress      do not suppress compiler output for multiple passes\n  -prefer-pic       try to build PIC objects only\n  -prefer-non-pic   try to build non-PIC objects only\n  -shared           do not build a \\`.o' file suitable for static linking\n  -static           only build a \\`.o' file suitable for static linking\n  -Wc,FLAG          pass FLAG directly to the compiler\n\nCOMPILE-COMMAND is a command to be used in creating a \\`standard' object file\nfrom the given SOURCEFILE.\n\nThe output file name is determined by removing the directory component from\nSOURCEFILE, then substituting the C source code suffix \\`.c' with the\nlibrary object suffix, \\`.lo'.\"\n        ;;\n\n      execute)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]...\n\nAutomatically set library path, then run a program.\n\nThis mode accepts the following additional options:\n\n  -dlopen FILE      add the directory containing FILE to the library path\n\nThis mode sets the library path environment variable according to \\`-dlopen'\nflags.\n\nIf any of the ARGS are libtool executable wrappers, then they are translated\ninto their corresponding uninstalled binary, and any of their required library\ndirectories are added to the library path.\n\nThen, COMMAND is executed, with ARGS as arguments.\"\n        ;;\n\n      finish)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=finish [LIBDIR]...\n\nComplete the installation of libtool libraries.\n\nEach LIBDIR is a directory that contains libtool libraries.\n\nThe commands that this mode executes may require superuser privileges.  Use\nthe \\`--dry-run' option if you just want to see what would be executed.\"\n        ;;\n\n      install)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND...\n\nInstall executables or libraries.\n\nINSTALL-COMMAND is the installation command.  The first component should be\neither the \\`install' or \\`cp' program.\n\nThe following components of INSTALL-COMMAND are treated specially:\n\n  -inst-prefix-dir PREFIX-DIR  Use PREFIX-DIR as a staging area for installation\n\nThe rest of the components are interpreted as arguments to that command (only\nBSD-compatible install options are recognized).\"\n        ;;\n\n      link)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=link LINK-COMMAND...\n\nLink object files or libraries together to form another library, or to\ncreate an executable program.\n\nLINK-COMMAND is a command using the C compiler that you would use to create\na program from several object files.\n\nThe following components of LINK-COMMAND are treated specially:\n\n  -all-static       do not do any dynamic linking at all\n  -avoid-version    do not add a version suffix if possible\n  -bindir BINDIR    specify path to binaries directory (for systems where\n                    libraries must be found in the PATH setting at runtime)\n  -dlopen FILE      \\`-dlpreopen' FILE if it cannot be dlopened at runtime\n  -dlpreopen FILE   link in FILE and add its symbols to lt_preloaded_symbols\n  -export-dynamic   allow symbols from OUTPUT-FILE to be resolved with dlsym(3)\n  -export-symbols SYMFILE\n                    try to export only the symbols listed in SYMFILE\n  -export-symbols-regex REGEX\n                    try to export only the symbols matching REGEX\n  -LLIBDIR          search LIBDIR for required installed libraries\n  -lNAME            OUTPUT-FILE requires the installed library libNAME\n  -module           build a library that can dlopened\n  -no-fast-install  disable the fast-install mode\n  -no-install       link a not-installable executable\n  -no-undefined     declare that a library does not refer to external symbols\n  -o OUTPUT-FILE    create OUTPUT-FILE from the specified objects\n  -objectlist FILE  Use a list of object files found in FILE to specify objects\n  -precious-files-regex REGEX\n                    don't remove output files matching REGEX\n  -release RELEASE  specify package release information\n  -rpath LIBDIR     the created library will eventually be installed in LIBDIR\n  -R[ ]LIBDIR       add LIBDIR to the runtime path of programs and libraries\n  -shared           only do dynamic linking of libtool libraries\n  -shrext SUFFIX    override the standard shared library file extension\n  -static           do not do any dynamic linking of uninstalled libtool libraries\n  -static-libtool-libs\n                    do not do any dynamic linking of libtool libraries\n  -version-info CURRENT[:REVISION[:AGE]]\n                    specify library version info [each variable defaults to 0]\n  -weak LIBNAME     declare that the target provides the LIBNAME interface\n  -Wc,FLAG\n  -Xcompiler FLAG   pass linker-specific FLAG directly to the compiler\n  -Wl,FLAG\n  -Xlinker FLAG     pass linker-specific FLAG directly to the linker\n  -XCClinker FLAG   pass link-specific FLAG to the compiler driver (CC)\n\nAll other options (arguments beginning with \\`-') are ignored.\n\nEvery other argument is treated as a filename.  Files ending in \\`.la' are\ntreated as uninstalled libtool libraries, other files are standard or library\nobject files.\n\nIf the OUTPUT-FILE ends in \\`.la', then a libtool library is created,\nonly library objects (\\`.lo' files) may be specified, and \\`-rpath' is\nrequired, except when creating a convenience library.\n\nIf OUTPUT-FILE ends in \\`.a' or \\`.lib', then a standard library is created\nusing \\`ar' and \\`ranlib', or on Windows using \\`lib'.\n\nIf OUTPUT-FILE ends in \\`.lo' or \\`.${objext}', then a reloadable object file\nis created, otherwise an executable program is created.\"\n        ;;\n\n      uninstall)\n        $ECHO \\\n\"Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE...\n\nRemove libraries from an installation directory.\n\nRM is the name of the program to use to delete files associated with each FILE\n(typically \\`/bin/rm').  RM-OPTIONS are options (such as \\`-f') to be passed\nto RM.\n\nIf FILE is a libtool library, all the files associated with it are deleted.\nOtherwise, only FILE itself is deleted using RM.\"\n        ;;\n\n      *)\n        func_fatal_help \"invalid operation mode \\`$mode'\"\n        ;;\n    esac\n\n    echo\n    $ECHO \"Try \\`$progname --help' for more information about other modes.\"\n}\n\n# Now that we've collected a possible --mode arg, show help if necessary\nif $opt_help; then\n  if test \"$opt_help\" = :; then\n    func_mode_help\n  else\n    {\n      func_help noexit\n      for mode in compile link execute install finish uninstall clean; do\n\tfunc_mode_help\n      done\n    } | sed -n '1p; 2,$s/^Usage:/  or: /p'\n    {\n      func_help noexit\n      for mode in compile link execute install finish uninstall clean; do\n\techo\n\tfunc_mode_help\n      done\n    } |\n    sed '1d\n      /^When reporting/,/^Report/{\n\tH\n\td\n      }\n      $x\n      /information about other modes/d\n      /more detailed .*MODE/d\n      s/^Usage:.*--mode=\\([^ ]*\\) .*/Description of \\1 mode:/'\n  fi\n  exit $?\nfi\n\n\n# func_mode_execute arg...\nfunc_mode_execute ()\n{\n    $opt_debug\n    # The first argument is the command name.\n    cmd=\"$nonopt\"\n    test -z \"$cmd\" && \\\n      func_fatal_help \"you must specify a COMMAND\"\n\n    # Handle -dlopen flags immediately.\n    for file in $execute_dlfiles; do\n      test -f \"$file\" \\\n\t|| func_fatal_help \"\\`$file' is not a file\"\n\n      dir=\n      case $file in\n      *.la)\n\t# Check to see that this really is a libtool archive.\n\tfunc_lalib_unsafe_p \"$file\" \\\n\t  || func_fatal_help \"\\`$lib' is not a valid libtool archive\"\n\n\t# Read the libtool library.\n\tdlname=\n\tlibrary_names=\n\tfunc_source \"$file\"\n\n\t# Skip this library if it cannot be dlopened.\n\tif test -z \"$dlname\"; then\n\t  # Warn if it was a shared library.\n\t  test -n \"$library_names\" && \\\n\t    func_warning \"\\`$file' was not linked with \\`-export-dynamic'\"\n\t  continue\n\tfi\n\n\tfunc_dirname \"$file\" \"\" \".\"\n\tdir=\"$func_dirname_result\"\n\n\tif test -f \"$dir/$objdir/$dlname\"; then\n\t  dir=\"$dir/$objdir\"\n\telse\n\t  if test ! -f \"$dir/$dlname\"; then\n\t    func_fatal_error \"cannot find \\`$dlname' in \\`$dir' or \\`$dir/$objdir'\"\n\t  fi\n\tfi\n\t;;\n\n      *.lo)\n\t# Just add the directory containing the .lo file.\n\tfunc_dirname \"$file\" \"\" \".\"\n\tdir=\"$func_dirname_result\"\n\t;;\n\n      *)\n\tfunc_warning \"\\`-dlopen' is ignored for non-libtool libraries and objects\"\n\tcontinue\n\t;;\n      esac\n\n      # Get the absolute pathname.\n      absdir=`cd \"$dir\" && pwd`\n      test -n \"$absdir\" && dir=\"$absdir\"\n\n      # Now add the directory to shlibpath_var.\n      if eval \"test -z \\\"\\$$shlibpath_var\\\"\"; then\n\teval \"$shlibpath_var=\\\"\\$dir\\\"\"\n      else\n\teval \"$shlibpath_var=\\\"\\$dir:\\$$shlibpath_var\\\"\"\n      fi\n    done\n\n    # This variable tells wrapper scripts just to set shlibpath_var\n    # rather than running their programs.\n    libtool_execute_magic=\"$magic\"\n\n    # Check if any of the arguments is a wrapper script.\n    args=\n    for file\n    do\n      case $file in\n      -* | *.la | *.lo ) ;;\n      *)\n\t# Do a test to see if this is really a libtool program.\n\tif func_ltwrapper_script_p \"$file\"; then\n\t  func_source \"$file\"\n\t  # Transform arg to wrapped name.\n\t  file=\"$progdir/$program\"\n\telif func_ltwrapper_executable_p \"$file\"; then\n\t  func_ltwrapper_scriptname \"$file\"\n\t  func_source \"$func_ltwrapper_scriptname_result\"\n\t  # Transform arg to wrapped name.\n\t  file=\"$progdir/$program\"\n\tfi\n\t;;\n      esac\n      # Quote arguments (to preserve shell metacharacters).\n      func_quote_for_eval \"$file\"\n      args=\"$args $func_quote_for_eval_result\"\n    done\n\n    if test \"X$opt_dry_run\" = Xfalse; then\n      if test -n \"$shlibpath_var\"; then\n\t# Export the shlibpath_var.\n\teval \"export $shlibpath_var\"\n      fi\n\n      # Restore saved environment variables\n      for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES\n      do\n\teval \"if test \\\"\\${save_$lt_var+set}\\\" = set; then\n                $lt_var=\\$save_$lt_var; export $lt_var\n\t      else\n\t\t$lt_unset $lt_var\n\t      fi\"\n      done\n\n      # Now prepare to actually exec the command.\n      exec_cmd=\"\\$cmd$args\"\n    else\n      # Display what would be done.\n      if test -n \"$shlibpath_var\"; then\n\teval \"\\$ECHO \\\"\\$shlibpath_var=\\$$shlibpath_var\\\"\"\n\techo \"export $shlibpath_var\"\n      fi\n      $ECHO \"$cmd$args\"\n      exit $EXIT_SUCCESS\n    fi\n}\n\ntest \"$mode\" = execute && func_mode_execute ${1+\"$@\"}\n\n\n# func_mode_finish arg...\nfunc_mode_finish ()\n{\n    $opt_debug\n    libdirs=\"$nonopt\"\n    admincmds=\n\n    if test -n \"$finish_cmds$finish_eval\" && test -n \"$libdirs\"; then\n      for dir\n      do\n\tlibdirs=\"$libdirs $dir\"\n      done\n\n      for libdir in $libdirs; do\n\tif test -n \"$finish_cmds\"; then\n\t  # Do each command in the finish commands.\n\t  func_execute_cmds \"$finish_cmds\" 'admincmds=\"$admincmds\n'\"$cmd\"'\"'\n\tfi\n\tif test -n \"$finish_eval\"; then\n\t  # Do the single finish_eval.\n\t  eval cmds=\\\"$finish_eval\\\"\n\t  $opt_dry_run || eval \"$cmds\" || admincmds=\"$admincmds\n       $cmds\"\n\tfi\n      done\n    fi\n\n    # Exit here if they wanted silent mode.\n    $opt_silent && exit $EXIT_SUCCESS\n\n    echo \"----------------------------------------------------------------------\"\n    echo \"Libraries have been installed in:\"\n    for libdir in $libdirs; do\n      $ECHO \"   $libdir\"\n    done\n    echo\n    echo \"If you ever happen to want to link against installed libraries\"\n    echo \"in a given directory, LIBDIR, you must either use libtool, and\"\n    echo \"specify the full pathname of the library, or use the \\`-LLIBDIR'\"\n    echo \"flag during linking and do at least one of the following:\"\n    if test -n \"$shlibpath_var\"; then\n      echo \"   - add LIBDIR to the \\`$shlibpath_var' environment variable\"\n      echo \"     during execution\"\n    fi\n    if test -n \"$runpath_var\"; then\n      echo \"   - add LIBDIR to the \\`$runpath_var' environment variable\"\n      echo \"     during linking\"\n    fi\n    if test -n \"$hardcode_libdir_flag_spec\"; then\n      libdir=LIBDIR\n      eval flag=\\\"$hardcode_libdir_flag_spec\\\"\n\n      $ECHO \"   - use the \\`$flag' linker flag\"\n    fi\n    if test -n \"$admincmds\"; then\n      $ECHO \"   - have your system administrator run these commands:$admincmds\"\n    fi\n    if test -f /etc/ld.so.conf; then\n      echo \"   - have your system administrator add LIBDIR to \\`/etc/ld.so.conf'\"\n    fi\n    echo\n\n    echo \"See any operating system documentation about shared libraries for\"\n    case $host in\n      solaris2.[6789]|solaris2.1[0-9])\n        echo \"more information, such as the ld(1), crle(1) and ld.so(8) manual\"\n\techo \"pages.\"\n\t;;\n      *)\n        echo \"more information, such as the ld(1) and ld.so(8) manual pages.\"\n        ;;\n    esac\n    echo \"----------------------------------------------------------------------\"\n    exit $EXIT_SUCCESS\n}\n\ntest \"$mode\" = finish && func_mode_finish ${1+\"$@\"}\n\n\n# func_mode_install arg...\nfunc_mode_install ()\n{\n    $opt_debug\n    # There may be an optional sh(1) argument at the beginning of\n    # install_prog (especially on Windows NT).\n    if test \"$nonopt\" = \"$SHELL\" || test \"$nonopt\" = /bin/sh ||\n       # Allow the use of GNU shtool's install command.\n       case $nonopt in *shtool*) :;; *) false;; esac; then\n      # Aesthetically quote it.\n      func_quote_for_eval \"$nonopt\"\n      install_prog=\"$func_quote_for_eval_result \"\n      arg=$1\n      shift\n    else\n      install_prog=\n      arg=$nonopt\n    fi\n\n    # The real first argument should be the name of the installation program.\n    # Aesthetically quote it.\n    func_quote_for_eval \"$arg\"\n    install_prog=\"$install_prog$func_quote_for_eval_result\"\n    install_shared_prog=$install_prog\n    case \" $install_prog \" in\n      *[\\\\\\ /]cp\\ *) install_cp=: ;;\n      *) install_cp=false ;;\n    esac\n\n    # We need to accept at least all the BSD install flags.\n    dest=\n    files=\n    opts=\n    prev=\n    install_type=\n    isdir=no\n    stripme=\n    no_mode=:\n    for arg\n    do\n      arg2=\n      if test -n \"$dest\"; then\n\tfiles=\"$files $dest\"\n\tdest=$arg\n\tcontinue\n      fi\n\n      case $arg in\n      -d) isdir=yes ;;\n      -f)\n\tif $install_cp; then :; else\n\t  prev=$arg\n\tfi\n\t;;\n      -g | -m | -o)\n\tprev=$arg\n\t;;\n      -s)\n\tstripme=\" -s\"\n\tcontinue\n\t;;\n      -*)\n\t;;\n      *)\n\t# If the previous option needed an argument, then skip it.\n\tif test -n \"$prev\"; then\n\t  if test \"x$prev\" = x-m && test -n \"$install_override_mode\"; then\n\t    arg2=$install_override_mode\n\t    no_mode=false\n\t  fi\n\t  prev=\n\telse\n\t  dest=$arg\n\t  continue\n\tfi\n\t;;\n      esac\n\n      # Aesthetically quote the argument.\n      func_quote_for_eval \"$arg\"\n      install_prog=\"$install_prog $func_quote_for_eval_result\"\n      if test -n \"$arg2\"; then\n\tfunc_quote_for_eval \"$arg2\"\n      fi\n      install_shared_prog=\"$install_shared_prog $func_quote_for_eval_result\"\n    done\n\n    test -z \"$install_prog\" && \\\n      func_fatal_help \"you must specify an install program\"\n\n    test -n \"$prev\" && \\\n      func_fatal_help \"the \\`$prev' option requires an argument\"\n\n    if test -n \"$install_override_mode\" && $no_mode; then\n      if $install_cp; then :; else\n\tfunc_quote_for_eval \"$install_override_mode\"\n\tinstall_shared_prog=\"$install_shared_prog -m $func_quote_for_eval_result\"\n      fi\n    fi\n\n    if test -z \"$files\"; then\n      if test -z \"$dest\"; then\n\tfunc_fatal_help \"no file or destination specified\"\n      else\n\tfunc_fatal_help \"you must specify a destination\"\n      fi\n    fi\n\n    # Strip any trailing slash from the destination.\n    func_stripname '' '/' \"$dest\"\n    dest=$func_stripname_result\n\n    # Check to see that the destination is a directory.\n    test -d \"$dest\" && isdir=yes\n    if test \"$isdir\" = yes; then\n      destdir=\"$dest\"\n      destname=\n    else\n      func_dirname_and_basename \"$dest\" \"\" \".\"\n      destdir=\"$func_dirname_result\"\n      destname=\"$func_basename_result\"\n\n      # Not a directory, so check to see that there is only one file specified.\n      set dummy $files; shift\n      test \"$#\" -gt 1 && \\\n\tfunc_fatal_help \"\\`$dest' is not a directory\"\n    fi\n    case $destdir in\n    [\\\\/]* | [A-Za-z]:[\\\\/]*) ;;\n    *)\n      for file in $files; do\n\tcase $file in\n\t*.lo) ;;\n\t*)\n\t  func_fatal_help \"\\`$destdir' must be an absolute directory name\"\n\t  ;;\n\tesac\n      done\n      ;;\n    esac\n\n    # This variable tells wrapper scripts just to set variables rather\n    # than running their programs.\n    libtool_install_magic=\"$magic\"\n\n    staticlibs=\n    future_libdirs=\n    current_libdirs=\n    for file in $files; do\n\n      # Do each installation.\n      case $file in\n      *.$libext)\n\t# Do the static libraries later.\n\tstaticlibs=\"$staticlibs $file\"\n\t;;\n\n      *.la)\n\t# Check to see that this really is a libtool archive.\n\tfunc_lalib_unsafe_p \"$file\" \\\n\t  || func_fatal_help \"\\`$file' is not a valid libtool archive\"\n\n\tlibrary_names=\n\told_library=\n\trelink_command=\n\tfunc_source \"$file\"\n\n\t# Add the libdir to current_libdirs if it is the destination.\n\tif test \"X$destdir\" = \"X$libdir\"; then\n\t  case \"$current_libdirs \" in\n\t  *\" $libdir \"*) ;;\n\t  *) current_libdirs=\"$current_libdirs $libdir\" ;;\n\t  esac\n\telse\n\t  # Note the libdir as a future libdir.\n\t  case \"$future_libdirs \" in\n\t  *\" $libdir \"*) ;;\n\t  *) future_libdirs=\"$future_libdirs $libdir\" ;;\n\t  esac\n\tfi\n\n\tfunc_dirname \"$file\" \"/\" \"\"\n\tdir=\"$func_dirname_result\"\n\tdir=\"$dir$objdir\"\n\n\tif test -n \"$relink_command\"; then\n\t  # Determine the prefix the user has applied to our future dir.\n\t  inst_prefix_dir=`$ECHO \"$destdir\" | $SED -e \"s%$libdir\\$%%\"`\n\n\t  # Don't allow the user to place us outside of our expected\n\t  # location b/c this prevents finding dependent libraries that\n\t  # are installed to the same prefix.\n\t  # At present, this check doesn't affect windows .dll's that\n\t  # are installed into $libdir/../bin (currently, that works fine)\n\t  # but it's something to keep an eye on.\n\t  test \"$inst_prefix_dir\" = \"$destdir\" && \\\n\t    func_fatal_error \"error: cannot install \\`$file' to a directory not ending in $libdir\"\n\n\t  if test -n \"$inst_prefix_dir\"; then\n\t    # Stick the inst_prefix_dir data into the link command.\n\t    relink_command=`$ECHO \"$relink_command\" | $SED \"s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%\"`\n\t  else\n\t    relink_command=`$ECHO \"$relink_command\" | $SED \"s%@inst_prefix_dir@%%\"`\n\t  fi\n\n\t  func_warning \"relinking \\`$file'\"\n\t  func_show_eval \"$relink_command\" \\\n\t    'func_fatal_error \"error: relink \\`$file'\\'' with the above command before installing it\"'\n\tfi\n\n\t# See the names of the shared library.\n\tset dummy $library_names; shift\n\tif test -n \"$1\"; then\n\t  realname=\"$1\"\n\t  shift\n\n\t  srcname=\"$realname\"\n\t  test -n \"$relink_command\" && srcname=\"$realname\"T\n\n\t  # Install the shared library and build the symlinks.\n\t  func_show_eval \"$install_shared_prog $dir/$srcname $destdir/$realname\" \\\n\t      'exit $?'\n\t  tstripme=\"$stripme\"\n\t  case $host_os in\n\t  cygwin* | mingw* | pw32* | cegcc*)\n\t    case $realname in\n\t    *.dll.a)\n\t      tstripme=\"\"\n\t      ;;\n\t    esac\n\t    ;;\n\t  esac\n\t  if test -n \"$tstripme\" && test -n \"$striplib\"; then\n\t    func_show_eval \"$striplib $destdir/$realname\" 'exit $?'\n\t  fi\n\n\t  if test \"$#\" -gt 0; then\n\t    # Delete the old symlinks, and create new ones.\n\t    # Try `ln -sf' first, because the `ln' binary might depend on\n\t    # the symlink we replace!  Solaris /bin/ln does not understand -f,\n\t    # so we also need to try rm && ln -s.\n\t    for linkname\n\t    do\n\t      test \"$linkname\" != \"$realname\" \\\n\t\t&& func_show_eval \"(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })\"\n\t    done\n\t  fi\n\n\t  # Do each command in the postinstall commands.\n\t  lib=\"$destdir/$realname\"\n\t  func_execute_cmds \"$postinstall_cmds\" 'exit $?'\n\tfi\n\n\t# Install the pseudo-library for information purposes.\n\tfunc_basename \"$file\"\n\tname=\"$func_basename_result\"\n\tinstname=\"$dir/$name\"i\n\tfunc_show_eval \"$install_prog $instname $destdir/$name\" 'exit $?'\n\n\t# Maybe install the static library, too.\n\ttest -n \"$old_library\" && staticlibs=\"$staticlibs $dir/$old_library\"\n\t;;\n\n      *.lo)\n\t# Install (i.e. copy) a libtool object.\n\n\t# Figure out destination file name, if it wasn't already specified.\n\tif test -n \"$destname\"; then\n\t  destfile=\"$destdir/$destname\"\n\telse\n\t  func_basename \"$file\"\n\t  destfile=\"$func_basename_result\"\n\t  destfile=\"$destdir/$destfile\"\n\tfi\n\n\t# Deduce the name of the destination old-style object file.\n\tcase $destfile in\n\t*.lo)\n\t  func_lo2o \"$destfile\"\n\t  staticdest=$func_lo2o_result\n\t  ;;\n\t*.$objext)\n\t  staticdest=\"$destfile\"\n\t  destfile=\n\t  ;;\n\t*)\n\t  func_fatal_help \"cannot copy a libtool object to \\`$destfile'\"\n\t  ;;\n\tesac\n\n\t# Install the libtool object if requested.\n\ttest -n \"$destfile\" && \\\n\t  func_show_eval \"$install_prog $file $destfile\" 'exit $?'\n\n\t# Install the old object if enabled.\n\tif test \"$build_old_libs\" = yes; then\n\t  # Deduce the name of the old-style object file.\n\t  func_lo2o \"$file\"\n\t  staticobj=$func_lo2o_result\n\t  func_show_eval \"$install_prog \\$staticobj \\$staticdest\" 'exit $?'\n\tfi\n\texit $EXIT_SUCCESS\n\t;;\n\n      *)\n\t# Figure out destination file name, if it wasn't already specified.\n\tif test -n \"$destname\"; then\n\t  destfile=\"$destdir/$destname\"\n\telse\n\t  func_basename \"$file\"\n\t  destfile=\"$func_basename_result\"\n\t  destfile=\"$destdir/$destfile\"\n\tfi\n\n\t# If the file is missing, and there is a .exe on the end, strip it\n\t# because it is most likely a libtool script we actually want to\n\t# install\n\tstripped_ext=\"\"\n\tcase $file in\n\t  *.exe)\n\t    if test ! -f \"$file\"; then\n\t      func_stripname '' '.exe' \"$file\"\n\t      file=$func_stripname_result\n\t      stripped_ext=\".exe\"\n\t    fi\n\t    ;;\n\tesac\n\n\t# Do a test to see if this is really a libtool program.\n\tcase $host in\n\t*cygwin* | *mingw*)\n\t    if func_ltwrapper_executable_p \"$file\"; then\n\t      func_ltwrapper_scriptname \"$file\"\n\t      wrapper=$func_ltwrapper_scriptname_result\n\t    else\n\t      func_stripname '' '.exe' \"$file\"\n\t      wrapper=$func_stripname_result\n\t    fi\n\t    ;;\n\t*)\n\t    wrapper=$file\n\t    ;;\n\tesac\n\tif func_ltwrapper_script_p \"$wrapper\"; then\n\t  notinst_deplibs=\n\t  relink_command=\n\n\t  func_source \"$wrapper\"\n\n\t  # Check the variables that should have been set.\n\t  test -z \"$generated_by_libtool_version\" && \\\n\t    func_fatal_error \"invalid libtool wrapper script \\`$wrapper'\"\n\n\t  finalize=yes\n\t  for lib in $notinst_deplibs; do\n\t    # Check to see that each library is installed.\n\t    libdir=\n\t    if test -f \"$lib\"; then\n\t      func_source \"$lib\"\n\t    fi\n\t    libfile=\"$libdir/\"`$ECHO \"$lib\" | $SED 's%^.*/%%g'` ### testsuite: skip nested quoting test\n\t    if test -n \"$libdir\" && test ! -f \"$libfile\"; then\n\t      func_warning \"\\`$lib' has not been installed in \\`$libdir'\"\n\t      finalize=no\n\t    fi\n\t  done\n\n\t  relink_command=\n\t  func_source \"$wrapper\"\n\n\t  outputname=\n\t  if test \"$fast_install\" = no && test -n \"$relink_command\"; then\n\t    $opt_dry_run || {\n\t      if test \"$finalize\" = yes; then\n\t        tmpdir=`func_mktempdir`\n\t\tfunc_basename \"$file$stripped_ext\"\n\t\tfile=\"$func_basename_result\"\n\t        outputname=\"$tmpdir/$file\"\n\t        # Replace the output file specification.\n\t        relink_command=`$ECHO \"$relink_command\" | $SED 's%@OUTPUT@%'\"$outputname\"'%g'`\n\n\t        $opt_silent || {\n\t          func_quote_for_expand \"$relink_command\"\n\t\t  eval \"func_echo $func_quote_for_expand_result\"\n\t        }\n\t        if eval \"$relink_command\"; then :\n\t          else\n\t\t  func_error \"error: relink \\`$file' with the above command before installing it\"\n\t\t  $opt_dry_run || ${RM}r \"$tmpdir\"\n\t\t  continue\n\t        fi\n\t        file=\"$outputname\"\n\t      else\n\t        func_warning \"cannot relink \\`$file'\"\n\t      fi\n\t    }\n\t  else\n\t    # Install the binary that we compiled earlier.\n\t    file=`$ECHO \"$file$stripped_ext\" | $SED \"s%\\([^/]*\\)$%$objdir/\\1%\"`\n\t  fi\n\tfi\n\n\t# remove .exe since cygwin /usr/bin/install will append another\n\t# one anyway\n\tcase $install_prog,$host in\n\t*/usr/bin/install*,*cygwin*)\n\t  case $file:$destfile in\n\t  *.exe:*.exe)\n\t    # this is ok\n\t    ;;\n\t  *.exe:*)\n\t    destfile=$destfile.exe\n\t    ;;\n\t  *:*.exe)\n\t    func_stripname '' '.exe' \"$destfile\"\n\t    destfile=$func_stripname_result\n\t    ;;\n\t  esac\n\t  ;;\n\tesac\n\tfunc_show_eval \"$install_prog\\$stripme \\$file \\$destfile\" 'exit $?'\n\t$opt_dry_run || if test -n \"$outputname\"; then\n\t  ${RM}r \"$tmpdir\"\n\tfi\n\t;;\n      esac\n    done\n\n    for file in $staticlibs; do\n      func_basename \"$file\"\n      name=\"$func_basename_result\"\n\n      # Set up the ranlib parameters.\n      oldlib=\"$destdir/$name\"\n\n      func_show_eval \"$install_prog \\$file \\$oldlib\" 'exit $?'\n\n      if test -n \"$stripme\" && test -n \"$old_striplib\"; then\n\tfunc_show_eval \"$old_striplib $oldlib\" 'exit $?'\n      fi\n\n      # Do each command in the postinstall commands.\n      func_execute_cmds \"$old_postinstall_cmds\" 'exit $?'\n    done\n\n    test -n \"$future_libdirs\" && \\\n      func_warning \"remember to run \\`$progname --finish$future_libdirs'\"\n\n    if test -n \"$current_libdirs\"; then\n      # Maybe just do a dry run.\n      $opt_dry_run && current_libdirs=\" -n$current_libdirs\"\n      exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs'\n    else\n      exit $EXIT_SUCCESS\n    fi\n}\n\ntest \"$mode\" = install && func_mode_install ${1+\"$@\"}\n\n\n# func_generate_dlsyms outputname originator pic_p\n# Extract symbols from dlprefiles and create ${outputname}S.o with\n# a dlpreopen symbol table.\nfunc_generate_dlsyms ()\n{\n    $opt_debug\n    my_outputname=\"$1\"\n    my_originator=\"$2\"\n    my_pic_p=\"${3-no}\"\n    my_prefix=`$ECHO \"$my_originator\" | sed 's%[^a-zA-Z0-9]%_%g'`\n    my_dlsyms=\n\n    if test -n \"$dlfiles$dlprefiles\" || test \"$dlself\" != no; then\n      if test -n \"$NM\" && test -n \"$global_symbol_pipe\"; then\n\tmy_dlsyms=\"${my_outputname}S.c\"\n      else\n\tfunc_error \"not configured to extract global symbols from dlpreopened files\"\n      fi\n    fi\n\n    if test -n \"$my_dlsyms\"; then\n      case $my_dlsyms in\n      \"\") ;;\n      *.c)\n\t# Discover the nlist of each of the dlfiles.\n\tnlist=\"$output_objdir/${my_outputname}.nm\"\n\n\tfunc_show_eval \"$RM $nlist ${nlist}S ${nlist}T\"\n\n\t# Parse the name list into a source file.\n\tfunc_verbose \"creating $output_objdir/$my_dlsyms\"\n\n\t$opt_dry_run || $ECHO > \"$output_objdir/$my_dlsyms\" \"\\\n/* $my_dlsyms - symbol resolution table for \\`$my_outputname' dlsym emulation. */\n/* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */\n\n#ifdef __cplusplus\nextern \\\"C\\\" {\n#endif\n\n#if defined(__GNUC__) && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4))\n#pragma GCC diagnostic ignored \\\"-Wstrict-prototypes\\\"\n#endif\n\n/* External symbol declarations for the compiler. */\\\n\"\n\n\tif test \"$dlself\" = yes; then\n\t  func_verbose \"generating symbol list for \\`$output'\"\n\n\t  $opt_dry_run || echo ': @PROGRAM@ ' > \"$nlist\"\n\n\t  # Add our own program objects to the symbol list.\n\t  progfiles=`$ECHO \"$objs$old_deplibs\" | $SP2NL | $SED \"$lo2o\" | $NL2SP`\n\t  for progfile in $progfiles; do\n\t    func_verbose \"extracting global C symbols from \\`$progfile'\"\n\t    $opt_dry_run || eval \"$NM $progfile | $global_symbol_pipe >> '$nlist'\"\n\t  done\n\n\t  if test -n \"$exclude_expsyms\"; then\n\t    $opt_dry_run || {\n\t      eval '$EGREP -v \" ($exclude_expsyms)$\" \"$nlist\" > \"$nlist\"T'\n\t      eval '$MV \"$nlist\"T \"$nlist\"'\n\t    }\n\t  fi\n\n\t  if test -n \"$export_symbols_regex\"; then\n\t    $opt_dry_run || {\n\t      eval '$EGREP -e \"$export_symbols_regex\" \"$nlist\" > \"$nlist\"T'\n\t      eval '$MV \"$nlist\"T \"$nlist\"'\n\t    }\n\t  fi\n\n\t  # Prepare the list of exported symbols\n\t  if test -z \"$export_symbols\"; then\n\t    export_symbols=\"$output_objdir/$outputname.exp\"\n\t    $opt_dry_run || {\n\t      $RM $export_symbols\n\t      eval \"${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \\(.*\\)$/\\1/p' \"'< \"$nlist\" > \"$export_symbols\"'\n\t      case $host in\n\t      *cygwin* | *mingw* | *cegcc* )\n                eval \"echo EXPORTS \"'> \"$output_objdir/$outputname.def\"'\n                eval 'cat \"$export_symbols\" >> \"$output_objdir/$outputname.def\"'\n\t        ;;\n\t      esac\n\t    }\n\t  else\n\t    $opt_dry_run || {\n\t      eval \"${SED} -e 's/\\([].[*^$]\\)/\\\\\\\\\\1/g' -e 's/^/ /' -e 's/$/$/'\"' < \"$export_symbols\" > \"$output_objdir/$outputname.exp\"'\n\t      eval '$GREP -f \"$output_objdir/$outputname.exp\" < \"$nlist\" > \"$nlist\"T'\n\t      eval '$MV \"$nlist\"T \"$nlist\"'\n\t      case $host in\n\t        *cygwin* | *mingw* | *cegcc* )\n\t          eval \"echo EXPORTS \"'> \"$output_objdir/$outputname.def\"'\n\t          eval 'cat \"$nlist\" >> \"$output_objdir/$outputname.def\"'\n\t          ;;\n\t      esac\n\t    }\n\t  fi\n\tfi\n\n\tfor dlprefile in $dlprefiles; do\n\t  func_verbose \"extracting global C symbols from \\`$dlprefile'\"\n\t  func_basename \"$dlprefile\"\n\t  name=\"$func_basename_result\"\n\t  $opt_dry_run || {\n\t    eval '$ECHO \": $name \" >> \"$nlist\"'\n\t    eval \"$NM $dlprefile 2>/dev/null | $global_symbol_pipe >> '$nlist'\"\n\t  }\n\tdone\n\n\t$opt_dry_run || {\n\t  # Make sure we have at least an empty file.\n\t  test -f \"$nlist\" || : > \"$nlist\"\n\n\t  if test -n \"$exclude_expsyms\"; then\n\t    $EGREP -v \" ($exclude_expsyms)$\" \"$nlist\" > \"$nlist\"T\n\t    $MV \"$nlist\"T \"$nlist\"\n\t  fi\n\n\t  # Try sorting and uniquifying the output.\n\t  if $GREP -v \"^: \" < \"$nlist\" |\n\t      if sort -k 3 </dev/null >/dev/null 2>&1; then\n\t\tsort -k 3\n\t      else\n\t\tsort +2\n\t      fi |\n\t      uniq > \"$nlist\"S; then\n\t    :\n\t  else\n\t    $GREP -v \"^: \" < \"$nlist\" > \"$nlist\"S\n\t  fi\n\n\t  if test -f \"$nlist\"S; then\n\t    eval \"$global_symbol_to_cdecl\"' < \"$nlist\"S >> \"$output_objdir/$my_dlsyms\"'\n\t  else\n\t    echo '/* NONE */' >> \"$output_objdir/$my_dlsyms\"\n\t  fi\n\n\t  echo >> \"$output_objdir/$my_dlsyms\" \"\\\n\n/* The mapping between symbol names and symbols.  */\ntypedef struct {\n  const char *name;\n  void *address;\n} lt_dlsymlist;\n\"\n\t  case $host in\n\t  *cygwin* | *mingw* | *cegcc* )\n\t    echo >> \"$output_objdir/$my_dlsyms\" \"\\\n/* DATA imports from DLLs on WIN32 con't be const, because\n   runtime relocations are performed -- see ld's documentation\n   on pseudo-relocs.  */\"\n\t    lt_dlsym_const= ;;\n\t  *osf5*)\n\t    echo >> \"$output_objdir/$my_dlsyms\" \"\\\n/* This system does not cope well with relocations in const data */\"\n\t    lt_dlsym_const= ;;\n\t  *)\n\t    lt_dlsym_const=const ;;\n\t  esac\n\n\t  echo >> \"$output_objdir/$my_dlsyms\" \"\\\nextern $lt_dlsym_const lt_dlsymlist\nlt_${my_prefix}_LTX_preloaded_symbols[];\n$lt_dlsym_const lt_dlsymlist\nlt_${my_prefix}_LTX_preloaded_symbols[] =\n{\\\n  { \\\"$my_originator\\\", (void *) 0 },\"\n\n\t  case $need_lib_prefix in\n\t  no)\n\t    eval \"$global_symbol_to_c_name_address\" < \"$nlist\" >> \"$output_objdir/$my_dlsyms\"\n\t    ;;\n\t  *)\n\t    eval \"$global_symbol_to_c_name_address_lib_prefix\" < \"$nlist\" >> \"$output_objdir/$my_dlsyms\"\n\t    ;;\n\t  esac\n\t  echo >> \"$output_objdir/$my_dlsyms\" \"\\\n  {0, (void *) 0}\n};\n\n/* This works around a problem in FreeBSD linker */\n#ifdef FREEBSD_WORKAROUND\nstatic const void *lt_preloaded_setup() {\n  return lt_${my_prefix}_LTX_preloaded_symbols;\n}\n#endif\n\n#ifdef __cplusplus\n}\n#endif\\\n\"\n\t} # !$opt_dry_run\n\n\tpic_flag_for_symtable=\n\tcase \"$compile_command \" in\n\t*\" -static \"*) ;;\n\t*)\n\t  case $host in\n\t  # compiling the symbol table file with pic_flag works around\n\t  # a FreeBSD bug that causes programs to crash when -lm is\n\t  # linked before any other PIC object.  But we must not use\n\t  # pic_flag when linking with -static.  The problem exists in\n\t  # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1.\n\t  *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*)\n\t    pic_flag_for_symtable=\" $pic_flag -DFREEBSD_WORKAROUND\" ;;\n\t  *-*-hpux*)\n\t    pic_flag_for_symtable=\" $pic_flag\"  ;;\n\t  *)\n\t    if test \"X$my_pic_p\" != Xno; then\n\t      pic_flag_for_symtable=\" $pic_flag\"\n\t    fi\n\t    ;;\n\t  esac\n\t  ;;\n\tesac\n\tsymtab_cflags=\n\tfor arg in $LTCFLAGS; do\n\t  case $arg in\n\t  -pie | -fpie | -fPIE) ;;\n\t  *) symtab_cflags=\"$symtab_cflags $arg\" ;;\n\t  esac\n\tdone\n\n\t# Now compile the dynamic symbol file.\n\tfunc_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable \"$my_dlsyms\")' 'exit $?'\n\n\t# Clean up the generated files.\n\tfunc_show_eval '$RM \"$output_objdir/$my_dlsyms\" \"$nlist\" \"${nlist}S\" \"${nlist}T\"'\n\n\t# Transform the symbol file into the correct name.\n\tsymfileobj=\"$output_objdir/${my_outputname}S.$objext\"\n\tcase $host in\n\t*cygwin* | *mingw* | *cegcc* )\n\t  if test -f \"$output_objdir/$my_outputname.def\"; then\n\t    compile_command=`$ECHO \"$compile_command\" | $SED \"s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%\"`\n\t    finalize_command=`$ECHO \"$finalize_command\" | $SED \"s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%\"`\n\t  else\n\t    compile_command=`$ECHO \"$compile_command\" | $SED \"s%@SYMFILE@%$symfileobj%\"`\n\t    finalize_command=`$ECHO \"$finalize_command\" | $SED \"s%@SYMFILE@%$symfileobj%\"`\n\t  fi\n\t  ;;\n\t*)\n\t  compile_command=`$ECHO \"$compile_command\" | $SED \"s%@SYMFILE@%$symfileobj%\"`\n\t  finalize_command=`$ECHO \"$finalize_command\" | $SED \"s%@SYMFILE@%$symfileobj%\"`\n\t  ;;\n\tesac\n\t;;\n      *)\n\tfunc_fatal_error \"unknown suffix for \\`$my_dlsyms'\"\n\t;;\n      esac\n    else\n      # We keep going just in case the user didn't refer to\n      # lt_preloaded_symbols.  The linker will fail if global_symbol_pipe\n      # really was required.\n\n      # Nullify the symbol file.\n      compile_command=`$ECHO \"$compile_command\" | $SED \"s% @SYMFILE@%%\"`\n      finalize_command=`$ECHO \"$finalize_command\" | $SED \"s% @SYMFILE@%%\"`\n    fi\n}\n\n# func_win32_libid arg\n# return the library type of file 'arg'\n#\n# Need a lot of goo to handle *both* DLLs and import libs\n# Has to be a shell function in order to 'eat' the argument\n# that is supplied when $file_magic_command is called.\n# Despite the name, also deal with 64 bit binaries.\nfunc_win32_libid ()\n{\n  $opt_debug\n  win32_libid_type=\"unknown\"\n  win32_fileres=`file -L $1 2>/dev/null`\n  case $win32_fileres in\n  *ar\\ archive\\ import\\ library*) # definitely import\n    win32_libid_type=\"x86 archive import\"\n    ;;\n  *ar\\ archive*) # could be an import, or static\n    # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD.\n    if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null |\n       $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then\n      win32_nmres=`eval $NM -f posix -A $1 |\n\t$SED -n -e '\n\t    1,100{\n\t\t/ I /{\n\t\t    s,.*,import,\n\t\t    p\n\t\t    q\n\t\t}\n\t    }'`\n      case $win32_nmres in\n      import*)  win32_libid_type=\"x86 archive import\";;\n      *)        win32_libid_type=\"x86 archive static\";;\n      esac\n    fi\n    ;;\n  *DLL*)\n    win32_libid_type=\"x86 DLL\"\n    ;;\n  *executable*) # but shell scripts are \"executable\" too...\n    case $win32_fileres in\n    *MS\\ Windows\\ PE\\ Intel*)\n      win32_libid_type=\"x86 DLL\"\n      ;;\n    esac\n    ;;\n  esac\n  $ECHO \"$win32_libid_type\"\n}\n\n\n\n# func_extract_an_archive dir oldlib\nfunc_extract_an_archive ()\n{\n    $opt_debug\n    f_ex_an_ar_dir=\"$1\"; shift\n    f_ex_an_ar_oldlib=\"$1\"\n    if test \"$lock_old_archive_extraction\" = yes; then\n      lockfile=$f_ex_an_ar_oldlib.lock\n      until $opt_dry_run || ln \"$progpath\" \"$lockfile\" 2>/dev/null; do\n\tfunc_echo \"Waiting for $lockfile to be removed\"\n\tsleep 2\n      done\n    fi\n    func_show_eval \"(cd \\$f_ex_an_ar_dir && $AR x \\\"\\$f_ex_an_ar_oldlib\\\")\" \\\n\t\t   'stat=$?; rm -f \"$lockfile\"; exit $stat'\n    if test \"$lock_old_archive_extraction\" = yes; then\n      $opt_dry_run || rm -f \"$lockfile\"\n    fi\n    if ($AR t \"$f_ex_an_ar_oldlib\" | sort | sort -uc >/dev/null 2>&1); then\n     :\n    else\n      func_fatal_error \"object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib\"\n    fi\n}\n\n\n# func_extract_archives gentop oldlib ...\nfunc_extract_archives ()\n{\n    $opt_debug\n    my_gentop=\"$1\"; shift\n    my_oldlibs=${1+\"$@\"}\n    my_oldobjs=\"\"\n    my_xlib=\"\"\n    my_xabs=\"\"\n    my_xdir=\"\"\n\n    for my_xlib in $my_oldlibs; do\n      # Extract the objects.\n      case $my_xlib in\n\t[\\\\/]* | [A-Za-z]:[\\\\/]*) my_xabs=\"$my_xlib\" ;;\n\t*) my_xabs=`pwd`\"/$my_xlib\" ;;\n      esac\n      func_basename \"$my_xlib\"\n      my_xlib=\"$func_basename_result\"\n      my_xlib_u=$my_xlib\n      while :; do\n        case \" $extracted_archives \" in\n\t*\" $my_xlib_u \"*)\n\t  func_arith $extracted_serial + 1\n\t  extracted_serial=$func_arith_result\n\t  my_xlib_u=lt$extracted_serial-$my_xlib ;;\n\t*) break ;;\n\tesac\n      done\n      extracted_archives=\"$extracted_archives $my_xlib_u\"\n      my_xdir=\"$my_gentop/$my_xlib_u\"\n\n      func_mkdir_p \"$my_xdir\"\n\n      case $host in\n      *-darwin*)\n\tfunc_verbose \"Extracting $my_xabs\"\n\t# Do not bother doing anything if just a dry run\n\t$opt_dry_run || {\n\t  darwin_orig_dir=`pwd`\n\t  cd $my_xdir || exit $?\n\t  darwin_archive=$my_xabs\n\t  darwin_curdir=`pwd`\n\t  darwin_base_archive=`basename \"$darwin_archive\"`\n\t  darwin_arches=`$LIPO -info \"$darwin_archive\" 2>/dev/null | $GREP Architectures 2>/dev/null || true`\n\t  if test -n \"$darwin_arches\"; then\n\t    darwin_arches=`$ECHO \"$darwin_arches\" | $SED -e 's/.*are://'`\n\t    darwin_arch=\n\t    func_verbose \"$darwin_base_archive has multiple architectures $darwin_arches\"\n\t    for darwin_arch in  $darwin_arches ; do\n\t      func_mkdir_p \"unfat-$$/${darwin_base_archive}-${darwin_arch}\"\n\t      $LIPO -thin $darwin_arch -output \"unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}\" \"${darwin_archive}\"\n\t      cd \"unfat-$$/${darwin_base_archive}-${darwin_arch}\"\n\t      func_extract_an_archive \"`pwd`\" \"${darwin_base_archive}\"\n\t      cd \"$darwin_curdir\"\n\t      $RM \"unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}\"\n\t    done # $darwin_arches\n            ## Okay now we've a bunch of thin objects, gotta fatten them up :)\n\t    darwin_filelist=`find unfat-$$ -type f -name \\*.o -print -o -name \\*.lo -print | $SED -e \"$basename\" | sort -u`\n\t    darwin_file=\n\t    darwin_files=\n\t    for darwin_file in $darwin_filelist; do\n\t      darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP`\n\t      $LIPO -create -output \"$darwin_file\" $darwin_files\n\t    done # $darwin_filelist\n\t    $RM -rf unfat-$$\n\t    cd \"$darwin_orig_dir\"\n\t  else\n\t    cd $darwin_orig_dir\n\t    func_extract_an_archive \"$my_xdir\" \"$my_xabs\"\n\t  fi # $darwin_arches\n\t} # !$opt_dry_run\n\t;;\n      *)\n        func_extract_an_archive \"$my_xdir\" \"$my_xabs\"\n\t;;\n      esac\n      my_oldobjs=\"$my_oldobjs \"`find $my_xdir -name \\*.$objext -print -o -name \\*.lo -print | sort | $NL2SP`\n    done\n\n    func_extract_archives_result=\"$my_oldobjs\"\n}\n\n\n# func_emit_wrapper [arg=no]\n#\n# Emit a libtool wrapper script on stdout.\n# Don't directly open a file because we may want to\n# incorporate the script contents within a cygwin/mingw\n# wrapper executable.  Must ONLY be called from within\n# func_mode_link because it depends on a number of variables\n# set therein.\n#\n# ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\n# variable will take.  If 'yes', then the emitted script\n# will assume that the directory in which it is stored is\n# the $objdir directory.  This is a cygwin/mingw-specific\n# behavior.\nfunc_emit_wrapper ()\n{\n\tfunc_emit_wrapper_arg1=${1-no}\n\n\t$ECHO \"\\\n#! $SHELL\n\n# $output - temporary wrapper script for $objdir/$outputname\n# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION\n#\n# The $output program cannot be directly executed until all the libtool\n# libraries that it depends on are installed.\n#\n# This wrapper script should never be moved out of the build directory.\n# If it is, it will not operate correctly.\n\n# Sed substitution that helps us do robust quoting.  It backslashifies\n# metacharacters that are still active within double-quoted strings.\nsed_quote_subst='$sed_quote_subst'\n\n# Be Bourne compatible\nif test -n \\\"\\${ZSH_VERSION+set}\\\" && (emulate sh) >/dev/null 2>&1; then\n  emulate sh\n  NULLCMD=:\n  # Zsh 3.x and 4.x performs word splitting on \\${1+\\\"\\$@\\\"}, which\n  # is contrary to our usage.  Disable this feature.\n  alias -g '\\${1+\\\"\\$@\\\"}'='\\\"\\$@\\\"'\n  setopt NO_GLOB_SUBST\nelse\n  case \\`(set -o) 2>/dev/null\\` in *posix*) set -o posix;; esac\nfi\nBIN_SH=xpg4; export BIN_SH # for Tru64\nDUALCASE=1; export DUALCASE # for MKS sh\n\n# The HP-UX ksh and POSIX shell print the target directory to stdout\n# if CDPATH is set.\n(unset CDPATH) >/dev/null 2>&1 && unset CDPATH\n\nrelink_command=\\\"$relink_command\\\"\n\n# This environment variable determines our operation mode.\nif test \\\"\\$libtool_install_magic\\\" = \\\"$magic\\\"; then\n  # install mode needs the following variables:\n  generated_by_libtool_version='$macro_version'\n  notinst_deplibs='$notinst_deplibs'\nelse\n  # When we are sourced in execute mode, \\$file and \\$ECHO are already set.\n  if test \\\"\\$libtool_execute_magic\\\" != \\\"$magic\\\"; then\n    file=\\\"\\$0\\\"\"\n\n    qECHO=`$ECHO \"$ECHO\" | $SED \"$sed_quote_subst\"`\n    $ECHO \"\\\n\n# A function that is used when there is no print builtin or printf.\nfunc_fallback_echo ()\n{\n  eval 'cat <<_LTECHO_EOF\n\\$1\n_LTECHO_EOF'\n}\n    ECHO=\\\"$qECHO\\\"\n  fi\n\n# Very basic option parsing. These options are (a) specific to\n# the libtool wrapper, (b) are identical between the wrapper\n# /script/ and the wrapper /executable/ which is used only on\n# windows platforms, and (c) all begin with the string \"--lt-\"\n# (application programs are unlikely to have options which match\n# this pattern).\n#\n# There are only two supported options: --lt-debug and\n# --lt-dump-script. There is, deliberately, no --lt-help.\n#\n# The first argument to this parsing function should be the\n# script's $0 value, followed by \"$@\".\nlt_option_debug=\nfunc_parse_lt_options ()\n{\n  lt_script_arg0=\\$0\n  shift\n  for lt_opt\n  do\n    case \\\"\\$lt_opt\\\" in\n    --lt-debug) lt_option_debug=1 ;;\n    --lt-dump-script)\n        lt_dump_D=\\`\\$ECHO \\\"X\\$lt_script_arg0\\\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\\`\n        test \\\"X\\$lt_dump_D\\\" = \\\"X\\$lt_script_arg0\\\" && lt_dump_D=.\n        lt_dump_F=\\`\\$ECHO \\\"X\\$lt_script_arg0\\\" | $SED -e 's/^X//' -e 's%^.*/%%'\\`\n        cat \\\"\\$lt_dump_D/\\$lt_dump_F\\\"\n        exit 0\n      ;;\n    --lt-*)\n        \\$ECHO \\\"Unrecognized --lt- option: '\\$lt_opt'\\\" 1>&2\n        exit 1\n      ;;\n    esac\n  done\n\n  # Print the debug banner immediately:\n  if test -n \\\"\\$lt_option_debug\\\"; then\n    echo \\\"${outputname}:${output}:\\${LINENO}: libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\\\" 1>&2\n  fi\n}\n\n# Used when --lt-debug. Prints its arguments to stdout\n# (redirection is the responsibility of the caller)\nfunc_lt_dump_args ()\n{\n  lt_dump_args_N=1;\n  for lt_arg\n  do\n    \\$ECHO \\\"${outputname}:${output}:\\${LINENO}: newargv[\\$lt_dump_args_N]: \\$lt_arg\\\"\n    lt_dump_args_N=\\`expr \\$lt_dump_args_N + 1\\`\n  done\n}\n\n# Core function for launching the target application\nfunc_exec_program_core ()\n{\n\"\n  case $host in\n  # Backslashes separate directories on plain windows\n  *-*-mingw | *-*-os2* | *-cegcc*)\n    $ECHO \"\\\n      if test -n \\\"\\$lt_option_debug\\\"; then\n        \\$ECHO \\\"${outputname}:${output}:\\${LINENO}: newargv[0]: \\$progdir\\\\\\\\\\$program\\\" 1>&2\n        func_lt_dump_args \\${1+\\\"\\$@\\\"} 1>&2\n      fi\n      exec \\\"\\$progdir\\\\\\\\\\$program\\\" \\${1+\\\"\\$@\\\"}\n\"\n    ;;\n\n  *)\n    $ECHO \"\\\n      if test -n \\\"\\$lt_option_debug\\\"; then\n        \\$ECHO \\\"${outputname}:${output}:\\${LINENO}: newargv[0]: \\$progdir/\\$program\\\" 1>&2\n        func_lt_dump_args \\${1+\\\"\\$@\\\"} 1>&2\n      fi\n      exec \\\"\\$progdir/\\$program\\\" \\${1+\\\"\\$@\\\"}\n\"\n    ;;\n  esac\n  $ECHO \"\\\n      \\$ECHO \\\"\\$0: cannot exec \\$program \\$*\\\" 1>&2\n      exit 1\n}\n\n# A function to encapsulate launching the target application\n# Strips options in the --lt-* namespace from \\$@ and\n# launches target application with the remaining arguments.\nfunc_exec_program ()\n{\n  for lt_wr_arg\n  do\n    case \\$lt_wr_arg in\n    --lt-*) ;;\n    *) set x \\\"\\$@\\\" \\\"\\$lt_wr_arg\\\"; shift;;\n    esac\n    shift\n  done\n  func_exec_program_core \\${1+\\\"\\$@\\\"}\n}\n\n  # Parse options\n  func_parse_lt_options \\\"\\$0\\\" \\${1+\\\"\\$@\\\"}\n\n  # Find the directory that this script lives in.\n  thisdir=\\`\\$ECHO \\\"\\$file\\\" | $SED 's%/[^/]*$%%'\\`\n  test \\\"x\\$thisdir\\\" = \\\"x\\$file\\\" && thisdir=.\n\n  # Follow symbolic links until we get to the real thisdir.\n  file=\\`ls -ld \\\"\\$file\\\" | $SED -n 's/.*-> //p'\\`\n  while test -n \\\"\\$file\\\"; do\n    destdir=\\`\\$ECHO \\\"\\$file\\\" | $SED 's%/[^/]*\\$%%'\\`\n\n    # If there was a directory component, then change thisdir.\n    if test \\\"x\\$destdir\\\" != \\\"x\\$file\\\"; then\n      case \\\"\\$destdir\\\" in\n      [\\\\\\\\/]* | [A-Za-z]:[\\\\\\\\/]*) thisdir=\\\"\\$destdir\\\" ;;\n      *) thisdir=\\\"\\$thisdir/\\$destdir\\\" ;;\n      esac\n    fi\n\n    file=\\`\\$ECHO \\\"\\$file\\\" | $SED 's%^.*/%%'\\`\n    file=\\`ls -ld \\\"\\$thisdir/\\$file\\\" | $SED -n 's/.*-> //p'\\`\n  done\n\n  # Usually 'no', except on cygwin/mingw when embedded into\n  # the cwrapper.\n  WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1\n  if test \\\"\\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\\\" = \\\"yes\\\"; then\n    # special case for '.'\n    if test \\\"\\$thisdir\\\" = \\\".\\\"; then\n      thisdir=\\`pwd\\`\n    fi\n    # remove .libs from thisdir\n    case \\\"\\$thisdir\\\" in\n    *[\\\\\\\\/]$objdir ) thisdir=\\`\\$ECHO \\\"\\$thisdir\\\" | $SED 's%[\\\\\\\\/][^\\\\\\\\/]*$%%'\\` ;;\n    $objdir )   thisdir=. ;;\n    esac\n  fi\n\n  # Try to get the absolute directory name.\n  absdir=\\`cd \\\"\\$thisdir\\\" && pwd\\`\n  test -n \\\"\\$absdir\\\" && thisdir=\\\"\\$absdir\\\"\n\"\n\n\tif test \"$fast_install\" = yes; then\n\t  $ECHO \"\\\n  program=lt-'$outputname'$exeext\n  progdir=\\\"\\$thisdir/$objdir\\\"\n\n  if test ! -f \\\"\\$progdir/\\$program\\\" ||\n     { file=\\`ls -1dt \\\"\\$progdir/\\$program\\\" \\\"\\$progdir/../\\$program\\\" 2>/dev/null | ${SED} 1q\\`; \\\\\n       test \\\"X\\$file\\\" != \\\"X\\$progdir/\\$program\\\"; }; then\n\n    file=\\\"\\$\\$-\\$program\\\"\n\n    if test ! -d \\\"\\$progdir\\\"; then\n      $MKDIR \\\"\\$progdir\\\"\n    else\n      $RM \\\"\\$progdir/\\$file\\\"\n    fi\"\n\n\t  $ECHO \"\\\n\n    # relink executable if necessary\n    if test -n \\\"\\$relink_command\\\"; then\n      if relink_command_output=\\`eval \\$relink_command 2>&1\\`; then :\n      else\n\t$ECHO \\\"\\$relink_command_output\\\" >&2\n\t$RM \\\"\\$progdir/\\$file\\\"\n\texit 1\n      fi\n    fi\n\n    $MV \\\"\\$progdir/\\$file\\\" \\\"\\$progdir/\\$program\\\" 2>/dev/null ||\n    { $RM \\\"\\$progdir/\\$program\\\";\n      $MV \\\"\\$progdir/\\$file\\\" \\\"\\$progdir/\\$program\\\"; }\n    $RM \\\"\\$progdir/\\$file\\\"\n  fi\"\n\telse\n\t  $ECHO \"\\\n  program='$outputname'\n  progdir=\\\"\\$thisdir/$objdir\\\"\n\"\n\tfi\n\n\t$ECHO \"\\\n\n  if test -f \\\"\\$progdir/\\$program\\\"; then\"\n\n\t# Export our shlibpath_var if we have one.\n\tif test \"$shlibpath_overrides_runpath\" = yes && test -n \"$shlibpath_var\" && test -n \"$temp_rpath\"; then\n\t  $ECHO \"\\\n    # Add our own library path to $shlibpath_var\n    $shlibpath_var=\\\"$temp_rpath\\$$shlibpath_var\\\"\n\n    # Some systems cannot cope with colon-terminated $shlibpath_var\n    # The second colon is a workaround for a bug in BeOS R4 sed\n    $shlibpath_var=\\`\\$ECHO \\\"\\$$shlibpath_var\\\" | $SED 's/::*\\$//'\\`\n\n    export $shlibpath_var\n\"\n\tfi\n\n\t# fixup the dll searchpath if we need to.\n\tif test -n \"$dllsearchpath\"; then\n\t  $ECHO \"\\\n    # Add the dll search path components to the executable PATH\n    PATH=$dllsearchpath:\\$PATH\n\"\n\tfi\n\n\t$ECHO \"\\\n    if test \\\"\\$libtool_execute_magic\\\" != \\\"$magic\\\"; then\n      # Run the actual program with our arguments.\n      func_exec_program \\${1+\\\"\\$@\\\"}\n    fi\n  else\n    # The program doesn't exist.\n    \\$ECHO \\\"\\$0: error: \\\\\\`\\$progdir/\\$program' does not exist\\\" 1>&2\n    \\$ECHO \\\"This script is just a wrapper for \\$program.\\\" 1>&2\n    \\$ECHO \\\"See the $PACKAGE documentation for more information.\\\" 1>&2\n    exit 1\n  fi\nfi\\\n\"\n}\n\n\n# func_to_host_path arg\n#\n# Convert paths to host format when used with build tools.\n# Intended for use with \"native\" mingw (where libtool itself\n# is running under the msys shell), or in the following cross-\n# build environments:\n#    $build          $host\n#    mingw (msys)    mingw  [e.g. native]\n#    cygwin          mingw\n#    *nix + wine     mingw\n# where wine is equipped with the `winepath' executable.\n# In the native mingw case, the (msys) shell automatically\n# converts paths for any non-msys applications it launches,\n# but that facility isn't available from inside the cwrapper.\n# Similar accommodations are necessary for $host mingw and\n# $build cygwin.  Calling this function does no harm for other\n# $host/$build combinations not listed above.\n#\n# ARG is the path (on $build) that should be converted to\n# the proper representation for $host. The result is stored\n# in $func_to_host_path_result.\nfunc_to_host_path ()\n{\n  func_to_host_path_result=\"$1\"\n  if test -n \"$1\"; then\n    case $host in\n      *mingw* )\n        lt_sed_naive_backslashify='s|\\\\\\\\*|\\\\|g;s|/|\\\\|g;s|\\\\|\\\\\\\\|g'\n        case $build in\n          *mingw* ) # actually, msys\n            # awkward: cmd appends spaces to result\n            func_to_host_path_result=`( cmd //c echo \"$1\" ) 2>/dev/null |\n              $SED -e 's/[ ]*$//' -e \"$lt_sed_naive_backslashify\"`\n            ;;\n          *cygwin* )\n            func_to_host_path_result=`cygpath -w \"$1\" |\n\t      $SED -e \"$lt_sed_naive_backslashify\"`\n            ;;\n          * )\n            # Unfortunately, winepath does not exit with a non-zero\n            # error code, so we are forced to check the contents of\n            # stdout. On the other hand, if the command is not\n            # found, the shell will set an exit code of 127 and print\n            # *an error message* to stdout. So we must check for both\n            # error code of zero AND non-empty stdout, which explains\n            # the odd construction:\n            func_to_host_path_tmp1=`winepath -w \"$1\" 2>/dev/null`\n            if test \"$?\" -eq 0 && test -n \"${func_to_host_path_tmp1}\"; then\n              func_to_host_path_result=`$ECHO \"$func_to_host_path_tmp1\" |\n                $SED -e \"$lt_sed_naive_backslashify\"`\n            else\n              # Allow warning below.\n              func_to_host_path_result=\n            fi\n            ;;\n        esac\n        if test -z \"$func_to_host_path_result\" ; then\n          func_error \"Could not determine host path corresponding to\"\n          func_error \"  \\`$1'\"\n          func_error \"Continuing, but uninstalled executables may not work.\"\n          # Fallback:\n          func_to_host_path_result=\"$1\"\n        fi\n        ;;\n    esac\n  fi\n}\n# end: func_to_host_path\n\n# func_to_host_pathlist arg\n#\n# Convert pathlists to host format when used with build tools.\n# See func_to_host_path(), above. This function supports the\n# following $build/$host combinations (but does no harm for\n# combinations not listed here):\n#    $build          $host\n#    mingw (msys)    mingw  [e.g. native]\n#    cygwin          mingw\n#    *nix + wine     mingw\n#\n# Path separators are also converted from $build format to\n# $host format. If ARG begins or ends with a path separator\n# character, it is preserved (but converted to $host format)\n# on output.\n#\n# ARG is a pathlist (on $build) that should be converted to\n# the proper representation on $host. The result is stored\n# in $func_to_host_pathlist_result.\nfunc_to_host_pathlist ()\n{\n  func_to_host_pathlist_result=\"$1\"\n  if test -n \"$1\"; then\n    case $host in\n      *mingw* )\n        lt_sed_naive_backslashify='s|\\\\\\\\*|\\\\|g;s|/|\\\\|g;s|\\\\|\\\\\\\\|g'\n        # Remove leading and trailing path separator characters from\n        # ARG. msys behavior is inconsistent here, cygpath turns them\n        # into '.;' and ';.', and winepath ignores them completely.\n\tfunc_stripname : : \"$1\"\n        func_to_host_pathlist_tmp1=$func_stripname_result\n        case $build in\n          *mingw* ) # Actually, msys.\n            # Awkward: cmd appends spaces to result.\n            func_to_host_pathlist_result=`\n\t      ( cmd //c echo \"$func_to_host_pathlist_tmp1\" ) 2>/dev/null |\n\t      $SED -e 's/[ ]*$//' -e \"$lt_sed_naive_backslashify\"`\n            ;;\n          *cygwin* )\n            func_to_host_pathlist_result=`cygpath -w -p \"$func_to_host_pathlist_tmp1\" |\n              $SED -e \"$lt_sed_naive_backslashify\"`\n            ;;\n          * )\n            # unfortunately, winepath doesn't convert pathlists\n            func_to_host_pathlist_result=\"\"\n            func_to_host_pathlist_oldIFS=$IFS\n            IFS=:\n            for func_to_host_pathlist_f in $func_to_host_pathlist_tmp1 ; do\n              IFS=$func_to_host_pathlist_oldIFS\n              if test -n \"$func_to_host_pathlist_f\" ; then\n                func_to_host_path \"$func_to_host_pathlist_f\"\n                if test -n \"$func_to_host_path_result\" ; then\n                  if test -z \"$func_to_host_pathlist_result\" ; then\n                    func_to_host_pathlist_result=\"$func_to_host_path_result\"\n                  else\n                    func_append func_to_host_pathlist_result \";$func_to_host_path_result\"\n                  fi\n                fi\n              fi\n            done\n            IFS=$func_to_host_pathlist_oldIFS\n            ;;\n        esac\n        if test -z \"$func_to_host_pathlist_result\"; then\n          func_error \"Could not determine the host path(s) corresponding to\"\n          func_error \"  \\`$1'\"\n          func_error \"Continuing, but uninstalled executables may not work.\"\n          # Fallback. This may break if $1 contains DOS-style drive\n          # specifications. The fix is not to complicate the expression\n          # below, but for the user to provide a working wine installation\n          # with winepath so that path translation in the cross-to-mingw\n          # case works properly.\n          lt_replace_pathsep_nix_to_dos=\"s|:|;|g\"\n          func_to_host_pathlist_result=`echo \"$func_to_host_pathlist_tmp1\" |\\\n            $SED -e \"$lt_replace_pathsep_nix_to_dos\"`\n        fi\n        # Now, add the leading and trailing path separators back\n        case \"$1\" in\n          :* ) func_to_host_pathlist_result=\";$func_to_host_pathlist_result\"\n            ;;\n        esac\n        case \"$1\" in\n          *: ) func_append func_to_host_pathlist_result \";\"\n            ;;\n        esac\n        ;;\n    esac\n  fi\n}\n# end: func_to_host_pathlist\n\n# func_emit_cwrapperexe_src\n# emit the source code for a wrapper executable on stdout\n# Must ONLY be called from within func_mode_link because\n# it depends on a number of variable set therein.\nfunc_emit_cwrapperexe_src ()\n{\n\tcat <<EOF\n\n/* $cwrappersource - temporary wrapper executable for $objdir/$outputname\n   Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION\n\n   The $output program cannot be directly executed until all the libtool\n   libraries that it depends on are installed.\n\n   This wrapper executable should never be moved out of the build directory.\n   If it is, it will not operate correctly.\n*/\nEOF\n\t    cat <<\"EOF\"\n#ifdef _MSC_VER\n# define _CRT_SECURE_NO_DEPRECATE 1\n#endif\n#include <stdio.h>\n#include <stdlib.h>\n#ifdef _MSC_VER\n# include <direct.h>\n# include <process.h>\n# include <io.h>\n#else\n# include <unistd.h>\n# include <stdint.h>\n# ifdef __CYGWIN__\n#  include <io.h>\n# endif\n#endif\n#include <malloc.h>\n#include <stdarg.h>\n#include <assert.h>\n#include <string.h>\n#include <ctype.h>\n#include <errno.h>\n#include <fcntl.h>\n#include <sys/stat.h>\n\n/* declarations of non-ANSI functions */\n#if defined(__MINGW32__)\n# ifdef __STRICT_ANSI__\nint _putenv (const char *);\n# endif\n#elif defined(__CYGWIN__)\n# ifdef __STRICT_ANSI__\nchar *realpath (const char *, char *);\nint putenv (char *);\nint setenv (const char *, const char *, int);\n# endif\n/* #elif defined (other platforms) ... */\n#endif\n\n/* portability defines, excluding path handling macros */\n#if defined(_MSC_VER)\n# define setmode _setmode\n# define stat    _stat\n# define chmod   _chmod\n# define getcwd  _getcwd\n# define putenv  _putenv\n# define S_IXUSR _S_IEXEC\n# ifndef _INTPTR_T_DEFINED\n#  define _INTPTR_T_DEFINED\n#  define intptr_t int\n# endif\n#elif defined(__MINGW32__)\n# define setmode _setmode\n# define stat    _stat\n# define chmod   _chmod\n# define getcwd  _getcwd\n# define putenv  _putenv\n#elif defined(__CYGWIN__)\n# define HAVE_SETENV\n# define FOPEN_WB \"wb\"\n/* #elif defined (other platforms) ... */\n#endif\n\n#if defined(PATH_MAX)\n# define LT_PATHMAX PATH_MAX\n#elif defined(MAXPATHLEN)\n# define LT_PATHMAX MAXPATHLEN\n#else\n# define LT_PATHMAX 1024\n#endif\n\n#ifndef S_IXOTH\n# define S_IXOTH 0\n#endif\n#ifndef S_IXGRP\n# define S_IXGRP 0\n#endif\n\n/* path handling portability macros */\n#ifndef DIR_SEPARATOR\n# define DIR_SEPARATOR '/'\n# define PATH_SEPARATOR ':'\n#endif\n\n#if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \\\n  defined (__OS2__)\n# define HAVE_DOS_BASED_FILE_SYSTEM\n# define FOPEN_WB \"wb\"\n# ifndef DIR_SEPARATOR_2\n#  define DIR_SEPARATOR_2 '\\\\'\n# endif\n# ifndef PATH_SEPARATOR_2\n#  define PATH_SEPARATOR_2 ';'\n# endif\n#endif\n\n#ifndef DIR_SEPARATOR_2\n# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR)\n#else /* DIR_SEPARATOR_2 */\n# define IS_DIR_SEPARATOR(ch) \\\n\t(((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2))\n#endif /* DIR_SEPARATOR_2 */\n\n#ifndef PATH_SEPARATOR_2\n# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR)\n#else /* PATH_SEPARATOR_2 */\n# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2)\n#endif /* PATH_SEPARATOR_2 */\n\n#ifndef FOPEN_WB\n# define FOPEN_WB \"w\"\n#endif\n#ifndef _O_BINARY\n# define _O_BINARY 0\n#endif\n\n#define XMALLOC(type, num)      ((type *) xmalloc ((num) * sizeof(type)))\n#define XFREE(stale) do { \\\n  if (stale) { free ((void *) stale); stale = 0; } \\\n} while (0)\n\n#if defined(LT_DEBUGWRAPPER)\nstatic int lt_debug = 1;\n#else\nstatic int lt_debug = 0;\n#endif\n\nconst char *program_name = \"libtool-wrapper\"; /* in case xstrdup fails */\n\nvoid *xmalloc (size_t num);\nchar *xstrdup (const char *string);\nconst char *base_name (const char *name);\nchar *find_executable (const char *wrapper);\nchar *chase_symlinks (const char *pathspec);\nint make_executable (const char *path);\nint check_executable (const char *path);\nchar *strendzap (char *str, const char *pat);\nvoid lt_debugprintf (const char *file, int line, const char *fmt, ...);\nvoid lt_fatal (const char *file, int line, const char *message, ...);\nstatic const char *nonnull (const char *s);\nstatic const char *nonempty (const char *s);\nvoid lt_setenv (const char *name, const char *value);\nchar *lt_extend_str (const char *orig_value, const char *add, int to_end);\nvoid lt_update_exe_path (const char *name, const char *value);\nvoid lt_update_lib_path (const char *name, const char *value);\nchar **prepare_spawn (char **argv);\nvoid lt_dump_script (FILE *f);\nEOF\n\n\t    cat <<EOF\nconst char * MAGIC_EXE = \"$magic_exe\";\nconst char * LIB_PATH_VARNAME = \"$shlibpath_var\";\nEOF\n\n\t    if test \"$shlibpath_overrides_runpath\" = yes && test -n \"$shlibpath_var\" && test -n \"$temp_rpath\"; then\n              func_to_host_pathlist \"$temp_rpath\"\n\t      cat <<EOF\nconst char * LIB_PATH_VALUE   = \"$func_to_host_pathlist_result\";\nEOF\n\t    else\n\t      cat <<\"EOF\"\nconst char * LIB_PATH_VALUE   = \"\";\nEOF\n\t    fi\n\n\t    if test -n \"$dllsearchpath\"; then\n              func_to_host_pathlist \"$dllsearchpath:\"\n\t      cat <<EOF\nconst char * EXE_PATH_VARNAME = \"PATH\";\nconst char * EXE_PATH_VALUE   = \"$func_to_host_pathlist_result\";\nEOF\n\t    else\n\t      cat <<\"EOF\"\nconst char * EXE_PATH_VARNAME = \"\";\nconst char * EXE_PATH_VALUE   = \"\";\nEOF\n\t    fi\n\n\t    if test \"$fast_install\" = yes; then\n\t      cat <<EOF\nconst char * TARGET_PROGRAM_NAME = \"lt-$outputname\"; /* hopefully, no .exe */\nEOF\n\t    else\n\t      cat <<EOF\nconst char * TARGET_PROGRAM_NAME = \"$outputname\"; /* hopefully, no .exe */\nEOF\n\t    fi\n\n\n\t    cat <<\"EOF\"\n\n#define LTWRAPPER_OPTION_PREFIX         \"--lt-\"\n\nstatic const char *ltwrapper_option_prefix = LTWRAPPER_OPTION_PREFIX;\nstatic const char *dumpscript_opt       = LTWRAPPER_OPTION_PREFIX \"dump-script\";\nstatic const char *debug_opt            = LTWRAPPER_OPTION_PREFIX \"debug\";\n\nint\nmain (int argc, char *argv[])\n{\n  char **newargz;\n  int  newargc;\n  char *tmp_pathspec;\n  char *actual_cwrapper_path;\n  char *actual_cwrapper_name;\n  char *target_name;\n  char *lt_argv_zero;\n  intptr_t rval = 127;\n\n  int i;\n\n  program_name = (char *) xstrdup (base_name (argv[0]));\n  newargz = XMALLOC (char *, argc + 1);\n\n  /* very simple arg parsing; don't want to rely on getopt\n   * also, copy all non cwrapper options to newargz, except\n   * argz[0], which is handled differently\n   */\n  newargc=0;\n  for (i = 1; i < argc; i++)\n    {\n      if (strcmp (argv[i], dumpscript_opt) == 0)\n\t{\nEOF\n\t    case \"$host\" in\n\t      *mingw* | *cygwin* )\n\t\t# make stdout use \"unix\" line endings\n\t\techo \"          setmode(1,_O_BINARY);\"\n\t\t;;\n\t      esac\n\n\t    cat <<\"EOF\"\n\t  lt_dump_script (stdout);\n\t  return 0;\n\t}\n      if (strcmp (argv[i], debug_opt) == 0)\n\t{\n          lt_debug = 1;\n          continue;\n\t}\n      if (strcmp (argv[i], ltwrapper_option_prefix) == 0)\n        {\n          /* however, if there is an option in the LTWRAPPER_OPTION_PREFIX\n             namespace, but it is not one of the ones we know about and\n             have already dealt with, above (inluding dump-script), then\n             report an error. Otherwise, targets might begin to believe\n             they are allowed to use options in the LTWRAPPER_OPTION_PREFIX\n             namespace. The first time any user complains about this, we'll\n             need to make LTWRAPPER_OPTION_PREFIX a configure-time option\n             or a configure.ac-settable value.\n           */\n          lt_fatal (__FILE__, __LINE__,\n\t\t    \"unrecognized %s option: '%s'\",\n                    ltwrapper_option_prefix, argv[i]);\n        }\n      /* otherwise ... */\n      newargz[++newargc] = xstrdup (argv[i]);\n    }\n  newargz[++newargc] = NULL;\n\nEOF\n\t    cat <<EOF\n  /* The GNU banner must be the first non-error debug message */\n  lt_debugprintf (__FILE__, __LINE__, \"libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\\n\");\nEOF\n\t    cat <<\"EOF\"\n  lt_debugprintf (__FILE__, __LINE__, \"(main) argv[0]: %s\\n\", argv[0]);\n  lt_debugprintf (__FILE__, __LINE__, \"(main) program_name: %s\\n\", program_name);\n\n  tmp_pathspec = find_executable (argv[0]);\n  if (tmp_pathspec == NULL)\n    lt_fatal (__FILE__, __LINE__, \"couldn't find %s\", argv[0]);\n  lt_debugprintf (__FILE__, __LINE__,\n                  \"(main) found exe (before symlink chase) at: %s\\n\",\n\t\t  tmp_pathspec);\n\n  actual_cwrapper_path = chase_symlinks (tmp_pathspec);\n  lt_debugprintf (__FILE__, __LINE__,\n                  \"(main) found exe (after symlink chase) at: %s\\n\",\n\t\t  actual_cwrapper_path);\n  XFREE (tmp_pathspec);\n\n  actual_cwrapper_name = xstrdup (base_name (actual_cwrapper_path));\n  strendzap (actual_cwrapper_path, actual_cwrapper_name);\n\n  /* wrapper name transforms */\n  strendzap (actual_cwrapper_name, \".exe\");\n  tmp_pathspec = lt_extend_str (actual_cwrapper_name, \".exe\", 1);\n  XFREE (actual_cwrapper_name);\n  actual_cwrapper_name = tmp_pathspec;\n  tmp_pathspec = 0;\n\n  /* target_name transforms -- use actual target program name; might have lt- prefix */\n  target_name = xstrdup (base_name (TARGET_PROGRAM_NAME));\n  strendzap (target_name, \".exe\");\n  tmp_pathspec = lt_extend_str (target_name, \".exe\", 1);\n  XFREE (target_name);\n  target_name = tmp_pathspec;\n  tmp_pathspec = 0;\n\n  lt_debugprintf (__FILE__, __LINE__,\n\t\t  \"(main) libtool target name: %s\\n\",\n\t\t  target_name);\nEOF\n\n\t    cat <<EOF\n  newargz[0] =\n    XMALLOC (char, (strlen (actual_cwrapper_path) +\n\t\t    strlen (\"$objdir\") + 1 + strlen (actual_cwrapper_name) + 1));\n  strcpy (newargz[0], actual_cwrapper_path);\n  strcat (newargz[0], \"$objdir\");\n  strcat (newargz[0], \"/\");\nEOF\n\n\t    cat <<\"EOF\"\n  /* stop here, and copy so we don't have to do this twice */\n  tmp_pathspec = xstrdup (newargz[0]);\n\n  /* do NOT want the lt- prefix here, so use actual_cwrapper_name */\n  strcat (newargz[0], actual_cwrapper_name);\n\n  /* DO want the lt- prefix here if it exists, so use target_name */\n  lt_argv_zero = lt_extend_str (tmp_pathspec, target_name, 1);\n  XFREE (tmp_pathspec);\n  tmp_pathspec = NULL;\nEOF\n\n\t    case $host_os in\n\t      mingw*)\n\t    cat <<\"EOF\"\n  {\n    char* p;\n    while ((p = strchr (newargz[0], '\\\\')) != NULL)\n      {\n\t*p = '/';\n      }\n    while ((p = strchr (lt_argv_zero, '\\\\')) != NULL)\n      {\n\t*p = '/';\n      }\n  }\nEOF\n\t    ;;\n\t    esac\n\n\t    cat <<\"EOF\"\n  XFREE (target_name);\n  XFREE (actual_cwrapper_path);\n  XFREE (actual_cwrapper_name);\n\n  lt_setenv (\"BIN_SH\", \"xpg4\"); /* for Tru64 */\n  lt_setenv (\"DUALCASE\", \"1\");  /* for MSK sh */\n  lt_update_lib_path (LIB_PATH_VARNAME, LIB_PATH_VALUE);\n  lt_update_exe_path (EXE_PATH_VARNAME, EXE_PATH_VALUE);\n\n  lt_debugprintf (__FILE__, __LINE__, \"(main) lt_argv_zero: %s\\n\",\n\t\t  nonnull (lt_argv_zero));\n  for (i = 0; i < newargc; i++)\n    {\n      lt_debugprintf (__FILE__, __LINE__, \"(main) newargz[%d]: %s\\n\",\n\t\t      i, nonnull (newargz[i]));\n    }\n\nEOF\n\n\t    case $host_os in\n\t      mingw*)\n\t\tcat <<\"EOF\"\n  /* execv doesn't actually work on mingw as expected on unix */\n  newargz = prepare_spawn (newargz);\n  rval = _spawnv (_P_WAIT, lt_argv_zero, (const char * const *) newargz);\n  if (rval == -1)\n    {\n      /* failed to start process */\n      lt_debugprintf (__FILE__, __LINE__,\n\t\t      \"(main) failed to launch target \\\"%s\\\": %s\\n\",\n\t\t      lt_argv_zero, nonnull (strerror (errno)));\n      return 127;\n    }\n  return rval;\nEOF\n\t\t;;\n\t      *)\n\t\tcat <<\"EOF\"\n  execv (lt_argv_zero, newargz);\n  return rval; /* =127, but avoids unused variable warning */\nEOF\n\t\t;;\n\t    esac\n\n\t    cat <<\"EOF\"\n}\n\nvoid *\nxmalloc (size_t num)\n{\n  void *p = (void *) malloc (num);\n  if (!p)\n    lt_fatal (__FILE__, __LINE__, \"memory exhausted\");\n\n  return p;\n}\n\nchar *\nxstrdup (const char *string)\n{\n  return string ? strcpy ((char *) xmalloc (strlen (string) + 1),\n\t\t\t  string) : NULL;\n}\n\nconst char *\nbase_name (const char *name)\n{\n  const char *base;\n\n#if defined (HAVE_DOS_BASED_FILE_SYSTEM)\n  /* Skip over the disk name in MSDOS pathnames. */\n  if (isalpha ((unsigned char) name[0]) && name[1] == ':')\n    name += 2;\n#endif\n\n  for (base = name; *name; name++)\n    if (IS_DIR_SEPARATOR (*name))\n      base = name + 1;\n  return base;\n}\n\nint\ncheck_executable (const char *path)\n{\n  struct stat st;\n\n  lt_debugprintf (__FILE__, __LINE__, \"(check_executable): %s\\n\",\n                  nonempty (path));\n  if ((!path) || (!*path))\n    return 0;\n\n  if ((stat (path, &st) >= 0)\n      && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH)))\n    return 1;\n  else\n    return 0;\n}\n\nint\nmake_executable (const char *path)\n{\n  int rval = 0;\n  struct stat st;\n\n  lt_debugprintf (__FILE__, __LINE__, \"(make_executable): %s\\n\",\n                  nonempty (path));\n  if ((!path) || (!*path))\n    return 0;\n\n  if (stat (path, &st) >= 0)\n    {\n      rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR);\n    }\n  return rval;\n}\n\n/* Searches for the full path of the wrapper.  Returns\n   newly allocated full path name if found, NULL otherwise\n   Does not chase symlinks, even on platforms that support them.\n*/\nchar *\nfind_executable (const char *wrapper)\n{\n  int has_slash = 0;\n  const char *p;\n  const char *p_next;\n  /* static buffer for getcwd */\n  char tmp[LT_PATHMAX + 1];\n  int tmp_len;\n  char *concat_name;\n\n  lt_debugprintf (__FILE__, __LINE__, \"(find_executable): %s\\n\",\n                  nonempty (wrapper));\n\n  if ((wrapper == NULL) || (*wrapper == '\\0'))\n    return NULL;\n\n  /* Absolute path? */\n#if defined (HAVE_DOS_BASED_FILE_SYSTEM)\n  if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':')\n    {\n      concat_name = xstrdup (wrapper);\n      if (check_executable (concat_name))\n\treturn concat_name;\n      XFREE (concat_name);\n    }\n  else\n    {\n#endif\n      if (IS_DIR_SEPARATOR (wrapper[0]))\n\t{\n\t  concat_name = xstrdup (wrapper);\n\t  if (check_executable (concat_name))\n\t    return concat_name;\n\t  XFREE (concat_name);\n\t}\n#if defined (HAVE_DOS_BASED_FILE_SYSTEM)\n    }\n#endif\n\n  for (p = wrapper; *p; p++)\n    if (*p == '/')\n      {\n\thas_slash = 1;\n\tbreak;\n      }\n  if (!has_slash)\n    {\n      /* no slashes; search PATH */\n      const char *path = getenv (\"PATH\");\n      if (path != NULL)\n\t{\n\t  for (p = path; *p; p = p_next)\n\t    {\n\t      const char *q;\n\t      size_t p_len;\n\t      for (q = p; *q; q++)\n\t\tif (IS_PATH_SEPARATOR (*q))\n\t\t  break;\n\t      p_len = q - p;\n\t      p_next = (*q == '\\0' ? q : q + 1);\n\t      if (p_len == 0)\n\t\t{\n\t\t  /* empty path: current directory */\n\t\t  if (getcwd (tmp, LT_PATHMAX) == NULL)\n\t\t    lt_fatal (__FILE__, __LINE__, \"getcwd failed: %s\",\n                              nonnull (strerror (errno)));\n\t\t  tmp_len = strlen (tmp);\n\t\t  concat_name =\n\t\t    XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);\n\t\t  memcpy (concat_name, tmp, tmp_len);\n\t\t  concat_name[tmp_len] = '/';\n\t\t  strcpy (concat_name + tmp_len + 1, wrapper);\n\t\t}\n\t      else\n\t\t{\n\t\t  concat_name =\n\t\t    XMALLOC (char, p_len + 1 + strlen (wrapper) + 1);\n\t\t  memcpy (concat_name, p, p_len);\n\t\t  concat_name[p_len] = '/';\n\t\t  strcpy (concat_name + p_len + 1, wrapper);\n\t\t}\n\t      if (check_executable (concat_name))\n\t\treturn concat_name;\n\t      XFREE (concat_name);\n\t    }\n\t}\n      /* not found in PATH; assume curdir */\n    }\n  /* Relative path | not found in path: prepend cwd */\n  if (getcwd (tmp, LT_PATHMAX) == NULL)\n    lt_fatal (__FILE__, __LINE__, \"getcwd failed: %s\",\n              nonnull (strerror (errno)));\n  tmp_len = strlen (tmp);\n  concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);\n  memcpy (concat_name, tmp, tmp_len);\n  concat_name[tmp_len] = '/';\n  strcpy (concat_name + tmp_len + 1, wrapper);\n\n  if (check_executable (concat_name))\n    return concat_name;\n  XFREE (concat_name);\n  return NULL;\n}\n\nchar *\nchase_symlinks (const char *pathspec)\n{\n#ifndef S_ISLNK\n  return xstrdup (pathspec);\n#else\n  char buf[LT_PATHMAX];\n  struct stat s;\n  char *tmp_pathspec = xstrdup (pathspec);\n  char *p;\n  int has_symlinks = 0;\n  while (strlen (tmp_pathspec) && !has_symlinks)\n    {\n      lt_debugprintf (__FILE__, __LINE__,\n\t\t      \"checking path component for symlinks: %s\\n\",\n\t\t      tmp_pathspec);\n      if (lstat (tmp_pathspec, &s) == 0)\n\t{\n\t  if (S_ISLNK (s.st_mode) != 0)\n\t    {\n\t      has_symlinks = 1;\n\t      break;\n\t    }\n\n\t  /* search backwards for last DIR_SEPARATOR */\n\t  p = tmp_pathspec + strlen (tmp_pathspec) - 1;\n\t  while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))\n\t    p--;\n\t  if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))\n\t    {\n\t      /* no more DIR_SEPARATORS left */\n\t      break;\n\t    }\n\t  *p = '\\0';\n\t}\n      else\n\t{\n\t  lt_fatal (__FILE__, __LINE__,\n\t\t    \"error accessing file \\\"%s\\\": %s\",\n\t\t    tmp_pathspec, nonnull (strerror (errno)));\n\t}\n    }\n  XFREE (tmp_pathspec);\n\n  if (!has_symlinks)\n    {\n      return xstrdup (pathspec);\n    }\n\n  tmp_pathspec = realpath (pathspec, buf);\n  if (tmp_pathspec == 0)\n    {\n      lt_fatal (__FILE__, __LINE__,\n\t\t\"could not follow symlinks for %s\", pathspec);\n    }\n  return xstrdup (tmp_pathspec);\n#endif\n}\n\nchar *\nstrendzap (char *str, const char *pat)\n{\n  size_t len, patlen;\n\n  assert (str != NULL);\n  assert (pat != NULL);\n\n  len = strlen (str);\n  patlen = strlen (pat);\n\n  if (patlen <= len)\n    {\n      str += len - patlen;\n      if (strcmp (str, pat) == 0)\n\t*str = '\\0';\n    }\n  return str;\n}\n\nvoid\nlt_debugprintf (const char *file, int line, const char *fmt, ...)\n{\n  va_list args;\n  if (lt_debug)\n    {\n      (void) fprintf (stderr, \"%s:%s:%d: \", program_name, file, line);\n      va_start (args, fmt);\n      (void) vfprintf (stderr, fmt, args);\n      va_end (args);\n    }\n}\n\nstatic void\nlt_error_core (int exit_status, const char *file,\n\t       int line, const char *mode,\n\t       const char *message, va_list ap)\n{\n  fprintf (stderr, \"%s:%s:%d: %s: \", program_name, file, line, mode);\n  vfprintf (stderr, message, ap);\n  fprintf (stderr, \".\\n\");\n\n  if (exit_status >= 0)\n    exit (exit_status);\n}\n\nvoid\nlt_fatal (const char *file, int line, const char *message, ...)\n{\n  va_list ap;\n  va_start (ap, message);\n  lt_error_core (EXIT_FAILURE, file, line, \"FATAL\", message, ap);\n  va_end (ap);\n}\n\nstatic const char *\nnonnull (const char *s)\n{\n  return s ? s : \"(null)\";\n}\n\nstatic const char *\nnonempty (const char *s)\n{\n  return (s && !*s) ? \"(empty)\" : nonnull (s);\n}\n\nvoid\nlt_setenv (const char *name, const char *value)\n{\n  lt_debugprintf (__FILE__, __LINE__,\n\t\t  \"(lt_setenv) setting '%s' to '%s'\\n\",\n                  nonnull (name), nonnull (value));\n  {\n#ifdef HAVE_SETENV\n    /* always make a copy, for consistency with !HAVE_SETENV */\n    char *str = xstrdup (value);\n    setenv (name, str, 1);\n#else\n    int len = strlen (name) + 1 + strlen (value) + 1;\n    char *str = XMALLOC (char, len);\n    sprintf (str, \"%s=%s\", name, value);\n    if (putenv (str) != EXIT_SUCCESS)\n      {\n        XFREE (str);\n      }\n#endif\n  }\n}\n\nchar *\nlt_extend_str (const char *orig_value, const char *add, int to_end)\n{\n  char *new_value;\n  if (orig_value && *orig_value)\n    {\n      int orig_value_len = strlen (orig_value);\n      int add_len = strlen (add);\n      new_value = XMALLOC (char, add_len + orig_value_len + 1);\n      if (to_end)\n        {\n          strcpy (new_value, orig_value);\n          strcpy (new_value + orig_value_len, add);\n        }\n      else\n        {\n          strcpy (new_value, add);\n          strcpy (new_value + add_len, orig_value);\n        }\n    }\n  else\n    {\n      new_value = xstrdup (add);\n    }\n  return new_value;\n}\n\nvoid\nlt_update_exe_path (const char *name, const char *value)\n{\n  lt_debugprintf (__FILE__, __LINE__,\n\t\t  \"(lt_update_exe_path) modifying '%s' by prepending '%s'\\n\",\n                  nonnull (name), nonnull (value));\n\n  if (name && *name && value && *value)\n    {\n      char *new_value = lt_extend_str (getenv (name), value, 0);\n      /* some systems can't cope with a ':'-terminated path #' */\n      int len = strlen (new_value);\n      while (((len = strlen (new_value)) > 0) && IS_PATH_SEPARATOR (new_value[len-1]))\n        {\n          new_value[len-1] = '\\0';\n        }\n      lt_setenv (name, new_value);\n      XFREE (new_value);\n    }\n}\n\nvoid\nlt_update_lib_path (const char *name, const char *value)\n{\n  lt_debugprintf (__FILE__, __LINE__,\n\t\t  \"(lt_update_lib_path) modifying '%s' by prepending '%s'\\n\",\n                  nonnull (name), nonnull (value));\n\n  if (name && *name && value && *value)\n    {\n      char *new_value = lt_extend_str (getenv (name), value, 0);\n      lt_setenv (name, new_value);\n      XFREE (new_value);\n    }\n}\n\nEOF\n\t    case $host_os in\n\t      mingw*)\n\t\tcat <<\"EOF\"\n\n/* Prepares an argument vector before calling spawn().\n   Note that spawn() does not by itself call the command interpreter\n     (getenv (\"COMSPEC\") != NULL ? getenv (\"COMSPEC\") :\n      ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);\n         GetVersionEx(&v);\n         v.dwPlatformId == VER_PLATFORM_WIN32_NT;\n      }) ? \"cmd.exe\" : \"command.com\").\n   Instead it simply concatenates the arguments, separated by ' ', and calls\n   CreateProcess().  We must quote the arguments since Win32 CreateProcess()\n   interprets characters like ' ', '\\t', '\\\\', '\"' (but not '<' and '>') in a\n   special way:\n   - Space and tab are interpreted as delimiters. They are not treated as\n     delimiters if they are surrounded by double quotes: \"...\".\n   - Unescaped double quotes are removed from the input. Their only effect is\n     that within double quotes, space and tab are treated like normal\n     characters.\n   - Backslashes not followed by double quotes are not special.\n   - But 2*n+1 backslashes followed by a double quote become\n     n backslashes followed by a double quote (n >= 0):\n       \\\" -> \"\n       \\\\\\\" -> \\\"\n       \\\\\\\\\\\" -> \\\\\"\n */\n#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\"\n#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\"\nchar **\nprepare_spawn (char **argv)\n{\n  size_t argc;\n  char **new_argv;\n  size_t i;\n\n  /* Count number of arguments.  */\n  for (argc = 0; argv[argc] != NULL; argc++)\n    ;\n\n  /* Allocate new argument vector.  */\n  new_argv = XMALLOC (char *, argc + 1);\n\n  /* Put quoted arguments into the new argument vector.  */\n  for (i = 0; i < argc; i++)\n    {\n      const char *string = argv[i];\n\n      if (string[0] == '\\0')\n\tnew_argv[i] = xstrdup (\"\\\"\\\"\");\n      else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL)\n\t{\n\t  int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL);\n\t  size_t length;\n\t  unsigned int backslashes;\n\t  const char *s;\n\t  char *quoted_string;\n\t  char *p;\n\n\t  length = 0;\n\t  backslashes = 0;\n\t  if (quote_around)\n\t    length++;\n\t  for (s = string; *s != '\\0'; s++)\n\t    {\n\t      char c = *s;\n\t      if (c == '\"')\n\t\tlength += backslashes + 1;\n\t      length++;\n\t      if (c == '\\\\')\n\t\tbackslashes++;\n\t      else\n\t\tbackslashes = 0;\n\t    }\n\t  if (quote_around)\n\t    length += backslashes + 1;\n\n\t  quoted_string = XMALLOC (char, length + 1);\n\n\t  p = quoted_string;\n\t  backslashes = 0;\n\t  if (quote_around)\n\t    *p++ = '\"';\n\t  for (s = string; *s != '\\0'; s++)\n\t    {\n\t      char c = *s;\n\t      if (c == '\"')\n\t\t{\n\t\t  unsigned int j;\n\t\t  for (j = backslashes + 1; j > 0; j--)\n\t\t    *p++ = '\\\\';\n\t\t}\n\t      *p++ = c;\n\t      if (c == '\\\\')\n\t\tbackslashes++;\n\t      else\n\t\tbackslashes = 0;\n\t    }\n\t  if (quote_around)\n\t    {\n\t      unsigned int j;\n\t      for (j = backslashes; j > 0; j--)\n\t\t*p++ = '\\\\';\n\t      *p++ = '\"';\n\t    }\n\t  *p = '\\0';\n\n\t  new_argv[i] = quoted_string;\n\t}\n      else\n\tnew_argv[i] = (char *) string;\n    }\n  new_argv[argc] = NULL;\n\n  return new_argv;\n}\nEOF\n\t\t;;\n\t    esac\n\n            cat <<\"EOF\"\nvoid lt_dump_script (FILE* f)\n{\nEOF\n\t    func_emit_wrapper yes |\n              $SED -e 's/\\([\\\\\"]\\)/\\\\\\1/g' \\\n\t           -e 's/^/  fputs (\"/' -e 's/$/\\\\n\", f);/'\n\n            cat <<\"EOF\"\n}\nEOF\n}\n# end: func_emit_cwrapperexe_src\n\n# func_win32_import_lib_p ARG\n# True if ARG is an import lib, as indicated by $file_magic_cmd\nfunc_win32_import_lib_p ()\n{\n    $opt_debug\n    case `eval $file_magic_cmd \\\"\\$1\\\" 2>/dev/null | $SED -e 10q` in\n    *import*) : ;;\n    *) false ;;\n    esac\n}\n\n# func_mode_link arg...\nfunc_mode_link ()\n{\n    $opt_debug\n    case $host in\n    *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)\n      # It is impossible to link a dll without this setting, and\n      # we shouldn't force the makefile maintainer to figure out\n      # which system we are compiling for in order to pass an extra\n      # flag for every libtool invocation.\n      # allow_undefined=no\n\n      # FIXME: Unfortunately, there are problems with the above when trying\n      # to make a dll which has undefined symbols, in which case not\n      # even a static library is built.  For now, we need to specify\n      # -no-undefined on the libtool link line when we can be certain\n      # that all symbols are satisfied, otherwise we get a static library.\n      allow_undefined=yes\n      ;;\n    *)\n      allow_undefined=yes\n      ;;\n    esac\n    libtool_args=$nonopt\n    base_compile=\"$nonopt $@\"\n    compile_command=$nonopt\n    finalize_command=$nonopt\n\n    compile_rpath=\n    finalize_rpath=\n    compile_shlibpath=\n    finalize_shlibpath=\n    convenience=\n    old_convenience=\n    deplibs=\n    old_deplibs=\n    compiler_flags=\n    linker_flags=\n    dllsearchpath=\n    lib_search_path=`pwd`\n    inst_prefix_dir=\n    new_inherited_linker_flags=\n\n    avoid_version=no\n    bindir=\n    dlfiles=\n    dlprefiles=\n    dlself=no\n    export_dynamic=no\n    export_symbols=\n    export_symbols_regex=\n    generated=\n    libobjs=\n    ltlibs=\n    module=no\n    no_install=no\n    objs=\n    non_pic_objects=\n    precious_files_regex=\n    prefer_static_libs=no\n    preload=no\n    prev=\n    prevarg=\n    release=\n    rpath=\n    xrpath=\n    perm_rpath=\n    temp_rpath=\n    thread_safe=no\n    vinfo=\n    vinfo_number=no\n    weak_libs=\n    single_module=\"${wl}-single_module\"\n    func_infer_tag $base_compile\n\n    # We need to know -static, to get the right output filenames.\n    for arg\n    do\n      case $arg in\n      -shared)\n\ttest \"$build_libtool_libs\" != yes && \\\n\t  func_fatal_configuration \"can not build a shared library\"\n\tbuild_old_libs=no\n\tbreak\n\t;;\n      -all-static | -static | -static-libtool-libs)\n\tcase $arg in\n\t-all-static)\n\t  if test \"$build_libtool_libs\" = yes && test -z \"$link_static_flag\"; then\n\t    func_warning \"complete static linking is impossible in this configuration\"\n\t  fi\n\t  if test -n \"$link_static_flag\"; then\n\t    dlopen_self=$dlopen_self_static\n\t  fi\n\t  prefer_static_libs=yes\n\t  ;;\n\t-static)\n\t  if test -z \"$pic_flag\" && test -n \"$link_static_flag\"; then\n\t    dlopen_self=$dlopen_self_static\n\t  fi\n\t  prefer_static_libs=built\n\t  ;;\n\t-static-libtool-libs)\n\t  if test -z \"$pic_flag\" && test -n \"$link_static_flag\"; then\n\t    dlopen_self=$dlopen_self_static\n\t  fi\n\t  prefer_static_libs=yes\n\t  ;;\n\tesac\n\tbuild_libtool_libs=no\n\tbuild_old_libs=yes\n\tbreak\n\t;;\n      esac\n    done\n\n    # See if our shared archives depend on static archives.\n    test -n \"$old_archive_from_new_cmds\" && build_old_libs=yes\n\n    # Go through the arguments, transforming them on the way.\n    while test \"$#\" -gt 0; do\n      arg=\"$1\"\n      shift\n      func_quote_for_eval \"$arg\"\n      qarg=$func_quote_for_eval_unquoted_result\n      func_append libtool_args \" $func_quote_for_eval_result\"\n\n      # If the previous option needs an argument, assign it.\n      if test -n \"$prev\"; then\n\tcase $prev in\n\toutput)\n\t  func_append compile_command \" @OUTPUT@\"\n\t  func_append finalize_command \" @OUTPUT@\"\n\t  ;;\n\tesac\n\n\tcase $prev in\n\tbindir)\n\t  bindir=\"$arg\"\n\t  prev=\n\t  continue\n\t  ;;\n\tdlfiles|dlprefiles)\n\t  if test \"$preload\" = no; then\n\t    # Add the symbol object into the linking commands.\n\t    func_append compile_command \" @SYMFILE@\"\n\t    func_append finalize_command \" @SYMFILE@\"\n\t    preload=yes\n\t  fi\n\t  case $arg in\n\t  *.la | *.lo) ;;  # We handle these cases below.\n\t  force)\n\t    if test \"$dlself\" = no; then\n\t      dlself=needless\n\t      export_dynamic=yes\n\t    fi\n\t    prev=\n\t    continue\n\t    ;;\n\t  self)\n\t    if test \"$prev\" = dlprefiles; then\n\t      dlself=yes\n\t    elif test \"$prev\" = dlfiles && test \"$dlopen_self\" != yes; then\n\t      dlself=yes\n\t    else\n\t      dlself=needless\n\t      export_dynamic=yes\n\t    fi\n\t    prev=\n\t    continue\n\t    ;;\n\t  *)\n\t    if test \"$prev\" = dlfiles; then\n\t      dlfiles=\"$dlfiles $arg\"\n\t    else\n\t      dlprefiles=\"$dlprefiles $arg\"\n\t    fi\n\t    prev=\n\t    continue\n\t    ;;\n\t  esac\n\t  ;;\n\texpsyms)\n\t  export_symbols=\"$arg\"\n\t  test -f \"$arg\" \\\n\t    || func_fatal_error \"symbol file \\`$arg' does not exist\"\n\t  prev=\n\t  continue\n\t  ;;\n\texpsyms_regex)\n\t  export_symbols_regex=\"$arg\"\n\t  prev=\n\t  continue\n\t  ;;\n\tframework)\n\t  case $host in\n\t    *-*-darwin*)\n\t      case \"$deplibs \" in\n\t\t*\" $qarg.ltframework \"*) ;;\n\t\t*) deplibs=\"$deplibs $qarg.ltframework\" # this is fixed later\n\t\t   ;;\n\t      esac\n\t      ;;\n\t  esac\n\t  prev=\n\t  continue\n\t  ;;\n\tinst_prefix)\n\t  inst_prefix_dir=\"$arg\"\n\t  prev=\n\t  continue\n\t  ;;\n\tobjectlist)\n\t  if test -f \"$arg\"; then\n\t    save_arg=$arg\n\t    moreargs=\n\t    for fil in `cat \"$save_arg\"`\n\t    do\n#\t      moreargs=\"$moreargs $fil\"\n\t      arg=$fil\n\t      # A libtool-controlled object.\n\n\t      # Check to see that this really is a libtool object.\n\t      if func_lalib_unsafe_p \"$arg\"; then\n\t\tpic_object=\n\t\tnon_pic_object=\n\n\t\t# Read the .lo file\n\t\tfunc_source \"$arg\"\n\n\t\tif test -z \"$pic_object\" ||\n\t\t   test -z \"$non_pic_object\" ||\n\t\t   test \"$pic_object\" = none &&\n\t\t   test \"$non_pic_object\" = none; then\n\t\t  func_fatal_error \"cannot find name of object for \\`$arg'\"\n\t\tfi\n\n\t\t# Extract subdirectory from the argument.\n\t\tfunc_dirname \"$arg\" \"/\" \"\"\n\t\txdir=\"$func_dirname_result\"\n\n\t\tif test \"$pic_object\" != none; then\n\t\t  # Prepend the subdirectory the object is found in.\n\t\t  pic_object=\"$xdir$pic_object\"\n\n\t\t  if test \"$prev\" = dlfiles; then\n\t\t    if test \"$build_libtool_libs\" = yes && test \"$dlopen_support\" = yes; then\n\t\t      dlfiles=\"$dlfiles $pic_object\"\n\t\t      prev=\n\t\t      continue\n\t\t    else\n\t\t      # If libtool objects are unsupported, then we need to preload.\n\t\t      prev=dlprefiles\n\t\t    fi\n\t\t  fi\n\n\t\t  # CHECK ME:  I think I busted this.  -Ossama\n\t\t  if test \"$prev\" = dlprefiles; then\n\t\t    # Preload the old-style object.\n\t\t    dlprefiles=\"$dlprefiles $pic_object\"\n\t\t    prev=\n\t\t  fi\n\n\t\t  # A PIC object.\n\t\t  func_append libobjs \" $pic_object\"\n\t\t  arg=\"$pic_object\"\n\t\tfi\n\n\t\t# Non-PIC object.\n\t\tif test \"$non_pic_object\" != none; then\n\t\t  # Prepend the subdirectory the object is found in.\n\t\t  non_pic_object=\"$xdir$non_pic_object\"\n\n\t\t  # A standard non-PIC object\n\t\t  func_append non_pic_objects \" $non_pic_object\"\n\t\t  if test -z \"$pic_object\" || test \"$pic_object\" = none ; then\n\t\t    arg=\"$non_pic_object\"\n\t\t  fi\n\t\telse\n\t\t  # If the PIC object exists, use it instead.\n\t\t  # $xdir was prepended to $pic_object above.\n\t\t  non_pic_object=\"$pic_object\"\n\t\t  func_append non_pic_objects \" $non_pic_object\"\n\t\tfi\n\t      else\n\t\t# Only an error if not doing a dry-run.\n\t\tif $opt_dry_run; then\n\t\t  # Extract subdirectory from the argument.\n\t\t  func_dirname \"$arg\" \"/\" \"\"\n\t\t  xdir=\"$func_dirname_result\"\n\n\t\t  func_lo2o \"$arg\"\n\t\t  pic_object=$xdir$objdir/$func_lo2o_result\n\t\t  non_pic_object=$xdir$func_lo2o_result\n\t\t  func_append libobjs \" $pic_object\"\n\t\t  func_append non_pic_objects \" $non_pic_object\"\n\t        else\n\t\t  func_fatal_error \"\\`$arg' is not a valid libtool object\"\n\t\tfi\n\t      fi\n\t    done\n\t  else\n\t    func_fatal_error \"link input file \\`$arg' does not exist\"\n\t  fi\n\t  arg=$save_arg\n\t  prev=\n\t  continue\n\t  ;;\n\tprecious_regex)\n\t  precious_files_regex=\"$arg\"\n\t  prev=\n\t  continue\n\t  ;;\n\trelease)\n\t  release=\"-$arg\"\n\t  prev=\n\t  continue\n\t  ;;\n\trpath | xrpath)\n\t  # We need an absolute path.\n\t  case $arg in\n\t  [\\\\/]* | [A-Za-z]:[\\\\/]*) ;;\n\t  *)\n\t    func_fatal_error \"only absolute run-paths are allowed\"\n\t    ;;\n\t  esac\n\t  if test \"$prev\" = rpath; then\n\t    case \"$rpath \" in\n\t    *\" $arg \"*) ;;\n\t    *) rpath=\"$rpath $arg\" ;;\n\t    esac\n\t  else\n\t    case \"$xrpath \" in\n\t    *\" $arg \"*) ;;\n\t    *) xrpath=\"$xrpath $arg\" ;;\n\t    esac\n\t  fi\n\t  prev=\n\t  continue\n\t  ;;\n\tshrext)\n\t  shrext_cmds=\"$arg\"\n\t  prev=\n\t  continue\n\t  ;;\n\tweak)\n\t  weak_libs=\"$weak_libs $arg\"\n\t  prev=\n\t  continue\n\t  ;;\n\txcclinker)\n\t  linker_flags=\"$linker_flags $qarg\"\n\t  compiler_flags=\"$compiler_flags $qarg\"\n\t  prev=\n\t  func_append compile_command \" $qarg\"\n\t  func_append finalize_command \" $qarg\"\n\t  continue\n\t  ;;\n\txcompiler)\n\t  compiler_flags=\"$compiler_flags $qarg\"\n\t  prev=\n\t  func_append compile_command \" $qarg\"\n\t  func_append finalize_command \" $qarg\"\n\t  continue\n\t  ;;\n\txlinker)\n\t  linker_flags=\"$linker_flags $qarg\"\n\t  compiler_flags=\"$compiler_flags $wl$qarg\"\n\t  prev=\n\t  func_append compile_command \" $wl$qarg\"\n\t  func_append finalize_command \" $wl$qarg\"\n\t  continue\n\t  ;;\n\t*)\n\t  eval \"$prev=\\\"\\$arg\\\"\"\n\t  prev=\n\t  continue\n\t  ;;\n\tesac\n      fi # test -n \"$prev\"\n\n      prevarg=\"$arg\"\n\n      case $arg in\n      -all-static)\n\tif test -n \"$link_static_flag\"; then\n\t  # See comment for -static flag below, for more details.\n\t  func_append compile_command \" $link_static_flag\"\n\t  func_append finalize_command \" $link_static_flag\"\n\tfi\n\tcontinue\n\t;;\n\n      -allow-undefined)\n\t# FIXME: remove this flag sometime in the future.\n\tfunc_fatal_error \"\\`-allow-undefined' must not be used because it is the default\"\n\t;;\n\n      -avoid-version)\n\tavoid_version=yes\n\tcontinue\n\t;;\n\n      -bindir)\n\tprev=bindir\n\tcontinue\n\t;;\n\n      -dlopen)\n\tprev=dlfiles\n\tcontinue\n\t;;\n\n      -dlpreopen)\n\tprev=dlprefiles\n\tcontinue\n\t;;\n\n      -export-dynamic)\n\texport_dynamic=yes\n\tcontinue\n\t;;\n\n      -export-symbols | -export-symbols-regex)\n\tif test -n \"$export_symbols\" || test -n \"$export_symbols_regex\"; then\n\t  func_fatal_error \"more than one -exported-symbols argument is not allowed\"\n\tfi\n\tif test \"X$arg\" = \"X-export-symbols\"; then\n\t  prev=expsyms\n\telse\n\t  prev=expsyms_regex\n\tfi\n\tcontinue\n\t;;\n\n      -framework)\n\tprev=framework\n\tcontinue\n\t;;\n\n      -inst-prefix-dir)\n\tprev=inst_prefix\n\tcontinue\n\t;;\n\n      # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:*\n      # so, if we see these flags be careful not to treat them like -L\n      -L[A-Z][A-Z]*:*)\n\tcase $with_gcc/$host in\n\tno/*-*-irix* | /*-*-irix*)\n\t  func_append compile_command \" $arg\"\n\t  func_append finalize_command \" $arg\"\n\t  ;;\n\tesac\n\tcontinue\n\t;;\n\n      -L*)\n\tfunc_stripname '-L' '' \"$arg\"\n\tdir=$func_stripname_result\n\tif test -z \"$dir\"; then\n\t  if test \"$#\" -gt 0; then\n\t    func_fatal_error \"require no space between \\`-L' and \\`$1'\"\n\t  else\n\t    func_fatal_error \"need path for \\`-L' option\"\n\t  fi\n\tfi\n\t# We need an absolute path.\n\tcase $dir in\n\t[\\\\/]* | [A-Za-z]:[\\\\/]*) ;;\n\t*)\n\t  absdir=`cd \"$dir\" && pwd`\n\t  test -z \"$absdir\" && \\\n\t    func_fatal_error \"cannot determine absolute directory name of \\`$dir'\"\n\t  dir=\"$absdir\"\n\t  ;;\n\tesac\n\tcase \"$deplibs \" in\n\t*\" -L$dir \"*) ;;\n\t*)\n\t  deplibs=\"$deplibs -L$dir\"\n\t  lib_search_path=\"$lib_search_path $dir\"\n\t  ;;\n\tesac\n\tcase $host in\n\t*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)\n\t  testbindir=`$ECHO \"$dir\" | $SED 's*/lib$*/bin*'`\n\t  case :$dllsearchpath: in\n\t  *\":$dir:\"*) ;;\n\t  ::) dllsearchpath=$dir;;\n\t  *) dllsearchpath=\"$dllsearchpath:$dir\";;\n\t  esac\n\t  case :$dllsearchpath: in\n\t  *\":$testbindir:\"*) ;;\n\t  ::) dllsearchpath=$testbindir;;\n\t  *) dllsearchpath=\"$dllsearchpath:$testbindir\";;\n\t  esac\n\t  ;;\n\tesac\n\tcontinue\n\t;;\n\n      -l*)\n\tif test \"X$arg\" = \"X-lc\" || test \"X$arg\" = \"X-lm\"; then\n\t  case $host in\n\t  *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*)\n\t    # These systems don't actually have a C or math library (as such)\n\t    continue\n\t    ;;\n\t  *-*-os2*)\n\t    # These systems don't actually have a C library (as such)\n\t    test \"X$arg\" = \"X-lc\" && continue\n\t    ;;\n\t  *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)\n\t    # Do not include libc due to us having libc/libc_r.\n\t    test \"X$arg\" = \"X-lc\" && continue\n\t    ;;\n\t  *-*-rhapsody* | *-*-darwin1.[012])\n\t    # Rhapsody C and math libraries are in the System framework\n\t    deplibs=\"$deplibs System.ltframework\"\n\t    continue\n\t    ;;\n\t  *-*-sco3.2v5* | *-*-sco5v6*)\n\t    # Causes problems with __ctype\n\t    test \"X$arg\" = \"X-lc\" && continue\n\t    ;;\n\t  *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)\n\t    # Compiler inserts libc in the correct place for threads to work\n\t    test \"X$arg\" = \"X-lc\" && continue\n\t    ;;\n\t  esac\n\telif test \"X$arg\" = \"X-lc_r\"; then\n\t case $host in\n\t *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)\n\t   # Do not include libc_r directly, use -pthread flag.\n\t   continue\n\t   ;;\n\t esac\n\tfi\n\tdeplibs=\"$deplibs $arg\"\n\tcontinue\n\t;;\n\n      -module)\n\tmodule=yes\n\tcontinue\n\t;;\n\n      # Tru64 UNIX uses -model [arg] to determine the layout of C++\n      # classes, name mangling, and exception handling.\n      # Darwin uses the -arch flag to determine output architecture.\n      -model|-arch|-isysroot)\n\tcompiler_flags=\"$compiler_flags $arg\"\n\tfunc_append compile_command \" $arg\"\n\tfunc_append finalize_command \" $arg\"\n\tprev=xcompiler\n\tcontinue\n\t;;\n\n      -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads)\n\tcompiler_flags=\"$compiler_flags $arg\"\n\tfunc_append compile_command \" $arg\"\n\tfunc_append finalize_command \" $arg\"\n\tcase \"$new_inherited_linker_flags \" in\n\t    *\" $arg \"*) ;;\n\t    * ) new_inherited_linker_flags=\"$new_inherited_linker_flags $arg\" ;;\n\tesac\n\tcontinue\n\t;;\n\n      -multi_module)\n\tsingle_module=\"${wl}-multi_module\"\n\tcontinue\n\t;;\n\n      -no-fast-install)\n\tfast_install=no\n\tcontinue\n\t;;\n\n      -no-install)\n\tcase $host in\n\t*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*)\n\t  # The PATH hackery in wrapper scripts is required on Windows\n\t  # and Darwin in order for the loader to find any dlls it needs.\n\t  func_warning \"\\`-no-install' is ignored for $host\"\n\t  func_warning \"assuming \\`-no-fast-install' instead\"\n\t  fast_install=no\n\t  ;;\n\t*) no_install=yes ;;\n\tesac\n\tcontinue\n\t;;\n\n      -no-undefined)\n\tallow_undefined=no\n\tcontinue\n\t;;\n\n      -objectlist)\n\tprev=objectlist\n\tcontinue\n\t;;\n\n      -o) prev=output ;;\n\n      -precious-files-regex)\n\tprev=precious_regex\n\tcontinue\n\t;;\n\n      -release)\n\tprev=release\n\tcontinue\n\t;;\n\n      -rpath)\n\tprev=rpath\n\tcontinue\n\t;;\n\n      -R)\n\tprev=xrpath\n\tcontinue\n\t;;\n\n      -R*)\n\tfunc_stripname '-R' '' \"$arg\"\n\tdir=$func_stripname_result\n\t# We need an absolute path.\n\tcase $dir in\n\t[\\\\/]* | [A-Za-z]:[\\\\/]*) ;;\n\t*)\n\t  func_fatal_error \"only absolute run-paths are allowed\"\n\t  ;;\n\tesac\n\tcase \"$xrpath \" in\n\t*\" $dir \"*) ;;\n\t*) xrpath=\"$xrpath $dir\" ;;\n\tesac\n\tcontinue\n\t;;\n\n      -shared)\n\t# The effects of -shared are defined in a previous loop.\n\tcontinue\n\t;;\n\n      -shrext)\n\tprev=shrext\n\tcontinue\n\t;;\n\n      -static | -static-libtool-libs)\n\t# The effects of -static are defined in a previous loop.\n\t# We used to do the same as -all-static on platforms that\n\t# didn't have a PIC flag, but the assumption that the effects\n\t# would be equivalent was wrong.  It would break on at least\n\t# Digital Unix and AIX.\n\tcontinue\n\t;;\n\n      -thread-safe)\n\tthread_safe=yes\n\tcontinue\n\t;;\n\n      -version-info)\n\tprev=vinfo\n\tcontinue\n\t;;\n\n      -version-number)\n\tprev=vinfo\n\tvinfo_number=yes\n\tcontinue\n\t;;\n\n      -weak)\n        prev=weak\n\tcontinue\n\t;;\n\n      -Wc,*)\n\tfunc_stripname '-Wc,' '' \"$arg\"\n\targs=$func_stripname_result\n\targ=\n\tsave_ifs=\"$IFS\"; IFS=','\n\tfor flag in $args; do\n\t  IFS=\"$save_ifs\"\n          func_quote_for_eval \"$flag\"\n\t  arg=\"$arg $func_quote_for_eval_result\"\n\t  compiler_flags=\"$compiler_flags $func_quote_for_eval_result\"\n\tdone\n\tIFS=\"$save_ifs\"\n\tfunc_stripname ' ' '' \"$arg\"\n\targ=$func_stripname_result\n\t;;\n\n      -Wl,*)\n\tfunc_stripname '-Wl,' '' \"$arg\"\n\targs=$func_stripname_result\n\targ=\n\tsave_ifs=\"$IFS\"; IFS=','\n\tfor flag in $args; do\n\t  IFS=\"$save_ifs\"\n          func_quote_for_eval \"$flag\"\n\t  arg=\"$arg $wl$func_quote_for_eval_result\"\n\t  compiler_flags=\"$compiler_flags $wl$func_quote_for_eval_result\"\n\t  linker_flags=\"$linker_flags $func_quote_for_eval_result\"\n\tdone\n\tIFS=\"$save_ifs\"\n\tfunc_stripname ' ' '' \"$arg\"\n\targ=$func_stripname_result\n\t;;\n\n      -Xcompiler)\n\tprev=xcompiler\n\tcontinue\n\t;;\n\n      -Xlinker)\n\tprev=xlinker\n\tcontinue\n\t;;\n\n      -XCClinker)\n\tprev=xcclinker\n\tcontinue\n\t;;\n\n      # -msg_* for osf cc\n      -msg_*)\n\tfunc_quote_for_eval \"$arg\"\n\targ=\"$func_quote_for_eval_result\"\n\t;;\n\n      # Flags to be passed through unchanged, with rationale:\n      # -64, -mips[0-9]      enable 64-bit mode for the SGI compiler\n      # -r[0-9][0-9]*        specify processor for the SGI compiler\n      # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler\n      # +DA*, +DD*           enable 64-bit mode for the HP compiler\n      # -q*                  compiler args for the IBM compiler\n      # -m*, -t[45]*, -txscale* architecture-specific flags for GCC\n      # -F/path              path to uninstalled frameworks, gcc on darwin\n      # -p, -pg, --coverage, -fprofile-*  profiling flags for GCC\n      # @file                GCC response files\n      # -tp=*                Portland pgcc target processor selection\n      -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \\\n      -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*)\n        func_quote_for_eval \"$arg\"\n\targ=\"$func_quote_for_eval_result\"\n        func_append compile_command \" $arg\"\n        func_append finalize_command \" $arg\"\n        compiler_flags=\"$compiler_flags $arg\"\n        continue\n        ;;\n\n      # Some other compiler flag.\n      -* | +*)\n        func_quote_for_eval \"$arg\"\n\targ=\"$func_quote_for_eval_result\"\n\t;;\n\n      *.$objext)\n\t# A standard object.\n\tobjs=\"$objs $arg\"\n\t;;\n\n      *.lo)\n\t# A libtool-controlled object.\n\n\t# Check to see that this really is a libtool object.\n\tif func_lalib_unsafe_p \"$arg\"; then\n\t  pic_object=\n\t  non_pic_object=\n\n\t  # Read the .lo file\n\t  func_source \"$arg\"\n\n\t  if test -z \"$pic_object\" ||\n\t     test -z \"$non_pic_object\" ||\n\t     test \"$pic_object\" = none &&\n\t     test \"$non_pic_object\" = none; then\n\t    func_fatal_error \"cannot find name of object for \\`$arg'\"\n\t  fi\n\n\t  # Extract subdirectory from the argument.\n\t  func_dirname \"$arg\" \"/\" \"\"\n\t  xdir=\"$func_dirname_result\"\n\n\t  if test \"$pic_object\" != none; then\n\t    # Prepend the subdirectory the object is found in.\n\t    pic_object=\"$xdir$pic_object\"\n\n\t    if test \"$prev\" = dlfiles; then\n\t      if test \"$build_libtool_libs\" = yes && test \"$dlopen_support\" = yes; then\n\t\tdlfiles=\"$dlfiles $pic_object\"\n\t\tprev=\n\t\tcontinue\n\t      else\n\t\t# If libtool objects are unsupported, then we need to preload.\n\t\tprev=dlprefiles\n\t      fi\n\t    fi\n\n\t    # CHECK ME:  I think I busted this.  -Ossama\n\t    if test \"$prev\" = dlprefiles; then\n\t      # Preload the old-style object.\n\t      dlprefiles=\"$dlprefiles $pic_object\"\n\t      prev=\n\t    fi\n\n\t    # A PIC object.\n\t    func_append libobjs \" $pic_object\"\n\t    arg=\"$pic_object\"\n\t  fi\n\n\t  # Non-PIC object.\n\t  if test \"$non_pic_object\" != none; then\n\t    # Prepend the subdirectory the object is found in.\n\t    non_pic_object=\"$xdir$non_pic_object\"\n\n\t    # A standard non-PIC object\n\t    func_append non_pic_objects \" $non_pic_object\"\n\t    if test -z \"$pic_object\" || test \"$pic_object\" = none ; then\n\t      arg=\"$non_pic_object\"\n\t    fi\n\t  else\n\t    # If the PIC object exists, use it instead.\n\t    # $xdir was prepended to $pic_object above.\n\t    non_pic_object=\"$pic_object\"\n\t    func_append non_pic_objects \" $non_pic_object\"\n\t  fi\n\telse\n\t  # Only an error if not doing a dry-run.\n\t  if $opt_dry_run; then\n\t    # Extract subdirectory from the argument.\n\t    func_dirname \"$arg\" \"/\" \"\"\n\t    xdir=\"$func_dirname_result\"\n\n\t    func_lo2o \"$arg\"\n\t    pic_object=$xdir$objdir/$func_lo2o_result\n\t    non_pic_object=$xdir$func_lo2o_result\n\t    func_append libobjs \" $pic_object\"\n\t    func_append non_pic_objects \" $non_pic_object\"\n\t  else\n\t    func_fatal_error \"\\`$arg' is not a valid libtool object\"\n\t  fi\n\tfi\n\t;;\n\n      *.$libext)\n\t# An archive.\n\tdeplibs=\"$deplibs $arg\"\n\told_deplibs=\"$old_deplibs $arg\"\n\tcontinue\n\t;;\n\n      *.la)\n\t# A libtool-controlled library.\n\n\tif test \"$prev\" = dlfiles; then\n\t  # This library was specified with -dlopen.\n\t  dlfiles=\"$dlfiles $arg\"\n\t  prev=\n\telif test \"$prev\" = dlprefiles; then\n\t  # The library was specified with -dlpreopen.\n\t  dlprefiles=\"$dlprefiles $arg\"\n\t  prev=\n\telse\n\t  deplibs=\"$deplibs $arg\"\n\tfi\n\tcontinue\n\t;;\n\n      # Some other compiler argument.\n      *)\n\t# Unknown arguments in both finalize_command and compile_command need\n\t# to be aesthetically quoted because they are evaled later.\n\tfunc_quote_for_eval \"$arg\"\n\targ=\"$func_quote_for_eval_result\"\n\t;;\n      esac # arg\n\n      # Now actually substitute the argument into the commands.\n      if test -n \"$arg\"; then\n\tfunc_append compile_command \" $arg\"\n\tfunc_append finalize_command \" $arg\"\n      fi\n    done # argument parsing loop\n\n    test -n \"$prev\" && \\\n      func_fatal_help \"the \\`$prevarg' option requires an argument\"\n\n    if test \"$export_dynamic\" = yes && test -n \"$export_dynamic_flag_spec\"; then\n      eval arg=\\\"$export_dynamic_flag_spec\\\"\n      func_append compile_command \" $arg\"\n      func_append finalize_command \" $arg\"\n    fi\n\n    oldlibs=\n    # calculate the name of the file, without its directory\n    func_basename \"$output\"\n    outputname=\"$func_basename_result\"\n    libobjs_save=\"$libobjs\"\n\n    if test -n \"$shlibpath_var\"; then\n      # get the directories listed in $shlibpath_var\n      eval shlib_search_path=\\`\\$ECHO \\\"\\${$shlibpath_var}\\\" \\| \\$SED \\'s/:/ /g\\'\\`\n    else\n      shlib_search_path=\n    fi\n    eval sys_lib_search_path=\\\"$sys_lib_search_path_spec\\\"\n    eval sys_lib_dlsearch_path=\\\"$sys_lib_dlsearch_path_spec\\\"\n\n    func_dirname \"$output\" \"/\" \"\"\n    output_objdir=\"$func_dirname_result$objdir\"\n    # Create the object directory.\n    func_mkdir_p \"$output_objdir\"\n\n    # Determine the type of output\n    case $output in\n    \"\")\n      func_fatal_help \"you must specify an output file\"\n      ;;\n    *.$libext) linkmode=oldlib ;;\n    *.lo | *.$objext) linkmode=obj ;;\n    *.la) linkmode=lib ;;\n    *) linkmode=prog ;; # Anything else should be a program.\n    esac\n\n    specialdeplibs=\n\n    libs=\n    # Find all interdependent deplibs by searching for libraries\n    # that are linked more than once (e.g. -la -lb -la)\n    for deplib in $deplibs; do\n      if $opt_duplicate_deps ; then\n\tcase \"$libs \" in\n\t*\" $deplib \"*) specialdeplibs=\"$specialdeplibs $deplib\" ;;\n\tesac\n      fi\n      libs=\"$libs $deplib\"\n    done\n\n    if test \"$linkmode\" = lib; then\n      libs=\"$predeps $libs $compiler_lib_search_path $postdeps\"\n\n      # Compute libraries that are listed more than once in $predeps\n      # $postdeps and mark them as special (i.e., whose duplicates are\n      # not to be eliminated).\n      pre_post_deps=\n      if $opt_duplicate_compiler_generated_deps; then\n\tfor pre_post_dep in $predeps $postdeps; do\n\t  case \"$pre_post_deps \" in\n\t  *\" $pre_post_dep \"*) specialdeplibs=\"$specialdeplibs $pre_post_deps\" ;;\n\t  esac\n\t  pre_post_deps=\"$pre_post_deps $pre_post_dep\"\n\tdone\n      fi\n      pre_post_deps=\n    fi\n\n    deplibs=\n    newdependency_libs=\n    newlib_search_path=\n    need_relink=no # whether we're linking any uninstalled libtool libraries\n    notinst_deplibs= # not-installed libtool libraries\n    notinst_path= # paths that contain not-installed libtool libraries\n\n    case $linkmode in\n    lib)\n\tpasses=\"conv dlpreopen link\"\n\tfor file in $dlfiles $dlprefiles; do\n\t  case $file in\n\t  *.la) ;;\n\t  *)\n\t    func_fatal_help \"libraries can \\`-dlopen' only libtool libraries: $file\"\n\t    ;;\n\t  esac\n\tdone\n\t;;\n    prog)\n\tcompile_deplibs=\n\tfinalize_deplibs=\n\talldeplibs=no\n\tnewdlfiles=\n\tnewdlprefiles=\n\tpasses=\"conv scan dlopen dlpreopen link\"\n\t;;\n    *)  passes=\"conv\"\n\t;;\n    esac\n\n    for pass in $passes; do\n      # The preopen pass in lib mode reverses $deplibs; put it back here\n      # so that -L comes before libs that need it for instance...\n      if test \"$linkmode,$pass\" = \"lib,link\"; then\n\t## FIXME: Find the place where the list is rebuilt in the wrong\n\t##        order, and fix it there properly\n        tmp_deplibs=\n\tfor deplib in $deplibs; do\n\t  tmp_deplibs=\"$deplib $tmp_deplibs\"\n\tdone\n\tdeplibs=\"$tmp_deplibs\"\n      fi\n\n      if test \"$linkmode,$pass\" = \"lib,link\" ||\n\t test \"$linkmode,$pass\" = \"prog,scan\"; then\n\tlibs=\"$deplibs\"\n\tdeplibs=\n      fi\n      if test \"$linkmode\" = prog; then\n\tcase $pass in\n\tdlopen) libs=\"$dlfiles\" ;;\n\tdlpreopen) libs=\"$dlprefiles\" ;;\n\tlink) libs=\"$deplibs %DEPLIBS% $dependency_libs\" ;;\n\tesac\n      fi\n      if test \"$linkmode,$pass\" = \"lib,dlpreopen\"; then\n\t# Collect and forward deplibs of preopened libtool libs\n\tfor lib in $dlprefiles; do\n\t  # Ignore non-libtool-libs\n\t  dependency_libs=\n\t  case $lib in\n\t  *.la)\tfunc_source \"$lib\" ;;\n\t  esac\n\n\t  # Collect preopened libtool deplibs, except any this library\n\t  # has declared as weak libs\n\t  for deplib in $dependency_libs; do\n\t    func_basename \"$deplib\"\n            deplib_base=$func_basename_result\n\t    case \" $weak_libs \" in\n\t    *\" $deplib_base \"*) ;;\n\t    *) deplibs=\"$deplibs $deplib\" ;;\n\t    esac\n\t  done\n\tdone\n\tlibs=\"$dlprefiles\"\n      fi\n      if test \"$pass\" = dlopen; then\n\t# Collect dlpreopened libraries\n\tsave_deplibs=\"$deplibs\"\n\tdeplibs=\n      fi\n\n      for deplib in $libs; do\n\tlib=\n\tfound=no\n\tcase $deplib in\n\t-mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads)\n\t  if test \"$linkmode,$pass\" = \"prog,link\"; then\n\t    compile_deplibs=\"$deplib $compile_deplibs\"\n\t    finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t  else\n\t    compiler_flags=\"$compiler_flags $deplib\"\n\t    if test \"$linkmode\" = lib ; then\n\t\tcase \"$new_inherited_linker_flags \" in\n\t\t    *\" $deplib \"*) ;;\n\t\t    * ) new_inherited_linker_flags=\"$new_inherited_linker_flags $deplib\" ;;\n\t\tesac\n\t    fi\n\t  fi\n\t  continue\n\t  ;;\n\t-l*)\n\t  if test \"$linkmode\" != lib && test \"$linkmode\" != prog; then\n\t    func_warning \"\\`-l' is ignored for archives/objects\"\n\t    continue\n\t  fi\n\t  func_stripname '-l' '' \"$deplib\"\n\t  name=$func_stripname_result\n\t  if test \"$linkmode\" = lib; then\n\t    searchdirs=\"$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path\"\n\t  else\n\t    searchdirs=\"$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path\"\n\t  fi\n\t  for searchdir in $searchdirs; do\n\t    for search_ext in .la $std_shrext .so .a; do\n\t      # Search the libtool library\n\t      lib=\"$searchdir/lib${name}${search_ext}\"\n\t      if test -f \"$lib\"; then\n\t\tif test \"$search_ext\" = \".la\"; then\n\t\t  found=yes\n\t\telse\n\t\t  found=no\n\t\tfi\n\t\tbreak 2\n\t      fi\n\t    done\n\t  done\n\t  if test \"$found\" != yes; then\n\t    # deplib doesn't seem to be a libtool library\n\t    if test \"$linkmode,$pass\" = \"prog,link\"; then\n\t      compile_deplibs=\"$deplib $compile_deplibs\"\n\t      finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t    else\n\t      deplibs=\"$deplib $deplibs\"\n\t      test \"$linkmode\" = lib && newdependency_libs=\"$deplib $newdependency_libs\"\n\t    fi\n\t    continue\n\t  else # deplib is a libtool library\n\t    # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib,\n\t    # We need to do some special things here, and not later.\n\t    if test \"X$allow_libtool_libs_with_static_runtimes\" = \"Xyes\" ; then\n\t      case \" $predeps $postdeps \" in\n\t      *\" $deplib \"*)\n\t\tif func_lalib_p \"$lib\"; then\n\t\t  library_names=\n\t\t  old_library=\n\t\t  func_source \"$lib\"\n\t\t  for l in $old_library $library_names; do\n\t\t    ll=\"$l\"\n\t\t  done\n\t\t  if test \"X$ll\" = \"X$old_library\" ; then # only static version available\n\t\t    found=no\n\t\t    func_dirname \"$lib\" \"\" \".\"\n\t\t    ladir=\"$func_dirname_result\"\n\t\t    lib=$ladir/$old_library\n\t\t    if test \"$linkmode,$pass\" = \"prog,link\"; then\n\t\t      compile_deplibs=\"$deplib $compile_deplibs\"\n\t\t      finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t\t    else\n\t\t      deplibs=\"$deplib $deplibs\"\n\t\t      test \"$linkmode\" = lib && newdependency_libs=\"$deplib $newdependency_libs\"\n\t\t    fi\n\t\t    continue\n\t\t  fi\n\t\tfi\n\t\t;;\n\t      *) ;;\n\t      esac\n\t    fi\n\t  fi\n\t  ;; # -l\n\t*.ltframework)\n\t  if test \"$linkmode,$pass\" = \"prog,link\"; then\n\t    compile_deplibs=\"$deplib $compile_deplibs\"\n\t    finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t  else\n\t    deplibs=\"$deplib $deplibs\"\n\t    if test \"$linkmode\" = lib ; then\n\t\tcase \"$new_inherited_linker_flags \" in\n\t\t    *\" $deplib \"*) ;;\n\t\t    * ) new_inherited_linker_flags=\"$new_inherited_linker_flags $deplib\" ;;\n\t\tesac\n\t    fi\n\t  fi\n\t  continue\n\t  ;;\n\t-L*)\n\t  case $linkmode in\n\t  lib)\n\t    deplibs=\"$deplib $deplibs\"\n\t    test \"$pass\" = conv && continue\n\t    newdependency_libs=\"$deplib $newdependency_libs\"\n\t    func_stripname '-L' '' \"$deplib\"\n\t    newlib_search_path=\"$newlib_search_path $func_stripname_result\"\n\t    ;;\n\t  prog)\n\t    if test \"$pass\" = conv; then\n\t      deplibs=\"$deplib $deplibs\"\n\t      continue\n\t    fi\n\t    if test \"$pass\" = scan; then\n\t      deplibs=\"$deplib $deplibs\"\n\t    else\n\t      compile_deplibs=\"$deplib $compile_deplibs\"\n\t      finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t    fi\n\t    func_stripname '-L' '' \"$deplib\"\n\t    newlib_search_path=\"$newlib_search_path $func_stripname_result\"\n\t    ;;\n\t  *)\n\t    func_warning \"\\`-L' is ignored for archives/objects\"\n\t    ;;\n\t  esac # linkmode\n\t  continue\n\t  ;; # -L\n\t-R*)\n\t  if test \"$pass\" = link; then\n\t    func_stripname '-R' '' \"$deplib\"\n\t    dir=$func_stripname_result\n\t    # Make sure the xrpath contains only unique directories.\n\t    case \"$xrpath \" in\n\t    *\" $dir \"*) ;;\n\t    *) xrpath=\"$xrpath $dir\" ;;\n\t    esac\n\t  fi\n\t  deplibs=\"$deplib $deplibs\"\n\t  continue\n\t  ;;\n\t*.la) lib=\"$deplib\" ;;\n\t*.$libext)\n\t  if test \"$pass\" = conv; then\n\t    deplibs=\"$deplib $deplibs\"\n\t    continue\n\t  fi\n\t  case $linkmode in\n\t  lib)\n\t    # Linking convenience modules into shared libraries is allowed,\n\t    # but linking other static libraries is non-portable.\n\t    case \" $dlpreconveniencelibs \" in\n\t    *\" $deplib \"*) ;;\n\t    *)\n\t      valid_a_lib=no\n\t      case $deplibs_check_method in\n\t\tmatch_pattern*)\n\t\t  set dummy $deplibs_check_method; shift\n\t\t  match_pattern_regex=`expr \"$deplibs_check_method\" : \"$1 \\(.*\\)\"`\n\t\t  if eval \"\\$ECHO \\\"$deplib\\\"\" 2>/dev/null | $SED 10q \\\n\t\t    | $EGREP \"$match_pattern_regex\" > /dev/null; then\n\t\t    valid_a_lib=yes\n\t\t  fi\n\t\t;;\n\t\tpass_all)\n\t\t  valid_a_lib=yes\n\t\t;;\n\t      esac\n\t      if test \"$valid_a_lib\" != yes; then\n\t\techo\n\t\t$ECHO \"*** Warning: Trying to link with static lib archive $deplib.\"\n\t\techo \"*** I have the capability to make that library automatically link in when\"\n\t\techo \"*** you link to this library.  But I can only do this if you have a\"\n\t\techo \"*** shared version of the library, which you do not appear to have\"\n\t\techo \"*** because the file extensions .$libext of this argument makes me believe\"\n\t\techo \"*** that it is just a static archive that I should not use here.\"\n\t      else\n\t\techo\n\t\t$ECHO \"*** Warning: Linking the shared library $output against the\"\n\t\t$ECHO \"*** static library $deplib is not portable!\"\n\t\tdeplibs=\"$deplib $deplibs\"\n\t      fi\n\t      ;;\n\t    esac\n\t    continue\n\t    ;;\n\t  prog)\n\t    if test \"$pass\" != link; then\n\t      deplibs=\"$deplib $deplibs\"\n\t    else\n\t      compile_deplibs=\"$deplib $compile_deplibs\"\n\t      finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t    fi\n\t    continue\n\t    ;;\n\t  esac # linkmode\n\t  ;; # *.$libext\n\t*.lo | *.$objext)\n\t  if test \"$pass\" = conv; then\n\t    deplibs=\"$deplib $deplibs\"\n\t  elif test \"$linkmode\" = prog; then\n\t    if test \"$pass\" = dlpreopen || test \"$dlopen_support\" != yes || test \"$build_libtool_libs\" = no; then\n\t      # If there is no dlopen support or we're linking statically,\n\t      # we need to preload.\n\t      newdlprefiles=\"$newdlprefiles $deplib\"\n\t      compile_deplibs=\"$deplib $compile_deplibs\"\n\t      finalize_deplibs=\"$deplib $finalize_deplibs\"\n\t    else\n\t      newdlfiles=\"$newdlfiles $deplib\"\n\t    fi\n\t  fi\n\t  continue\n\t  ;;\n\t%DEPLIBS%)\n\t  alldeplibs=yes\n\t  continue\n\t  ;;\n\tesac # case $deplib\n\n\tif test \"$found\" = yes || test -f \"$lib\"; then :\n\telse\n\t  func_fatal_error \"cannot find the library \\`$lib' or unhandled argument \\`$deplib'\"\n\tfi\n\n\t# Check to see that this really is a libtool archive.\n\tfunc_lalib_unsafe_p \"$lib\" \\\n\t  || func_fatal_error \"\\`$lib' is not a valid libtool archive\"\n\n\tfunc_dirname \"$lib\" \"\" \".\"\n\tladir=\"$func_dirname_result\"\n\n\tdlname=\n\tdlopen=\n\tdlpreopen=\n\tlibdir=\n\tlibrary_names=\n\told_library=\n\tinherited_linker_flags=\n\t# If the library was installed with an old release of libtool,\n\t# it will not redefine variables installed, or shouldnotlink\n\tinstalled=yes\n\tshouldnotlink=no\n\tavoidtemprpath=\n\n\n\t# Read the .la file\n\tfunc_source \"$lib\"\n\n\t# Convert \"-framework foo\" to \"foo.ltframework\"\n\tif test -n \"$inherited_linker_flags\"; then\n\t  tmp_inherited_linker_flags=`$ECHO \"$inherited_linker_flags\" | $SED 's/-framework \\([^ $]*\\)/\\1.ltframework/g'`\n\t  for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do\n\t    case \" $new_inherited_linker_flags \" in\n\t      *\" $tmp_inherited_linker_flag \"*) ;;\n\t      *) new_inherited_linker_flags=\"$new_inherited_linker_flags $tmp_inherited_linker_flag\";;\n\t    esac\n\t  done\n\tfi\n\tdependency_libs=`$ECHO \" $dependency_libs\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\tif test \"$linkmode,$pass\" = \"lib,link\" ||\n\t   test \"$linkmode,$pass\" = \"prog,scan\" ||\n\t   { test \"$linkmode\" != prog && test \"$linkmode\" != lib; }; then\n\t  test -n \"$dlopen\" && dlfiles=\"$dlfiles $dlopen\"\n\t  test -n \"$dlpreopen\" && dlprefiles=\"$dlprefiles $dlpreopen\"\n\tfi\n\n\tif test \"$pass\" = conv; then\n\t  # Only check for convenience libraries\n\t  deplibs=\"$lib $deplibs\"\n\t  if test -z \"$libdir\"; then\n\t    if test -z \"$old_library\"; then\n\t      func_fatal_error \"cannot find name of link library for \\`$lib'\"\n\t    fi\n\t    # It is a libtool convenience library, so add in its objects.\n\t    convenience=\"$convenience $ladir/$objdir/$old_library\"\n\t    old_convenience=\"$old_convenience $ladir/$objdir/$old_library\"\n\t  elif test \"$linkmode\" != prog && test \"$linkmode\" != lib; then\n\t    func_fatal_error \"\\`$lib' is not a convenience library\"\n\t  fi\n\t  tmp_libs=\n\t  for deplib in $dependency_libs; do\n\t    deplibs=\"$deplib $deplibs\"\n\t    if $opt_duplicate_deps ; then\n\t      case \"$tmp_libs \" in\n\t      *\" $deplib \"*) specialdeplibs=\"$specialdeplibs $deplib\" ;;\n\t      esac\n\t    fi\n\t    tmp_libs=\"$tmp_libs $deplib\"\n\t  done\n\t  continue\n\tfi # $pass = conv\n\n\n\t# Get the name of the library we link against.\n\tlinklib=\n\tfor l in $old_library $library_names; do\n\t  linklib=\"$l\"\n\tdone\n\tif test -z \"$linklib\"; then\n\t  func_fatal_error \"cannot find name of link library for \\`$lib'\"\n\tfi\n\n\t# This library was specified with -dlopen.\n\tif test \"$pass\" = dlopen; then\n\t  if test -z \"$libdir\"; then\n\t    func_fatal_error \"cannot -dlopen a convenience library: \\`$lib'\"\n\t  fi\n\t  if test -z \"$dlname\" ||\n\t     test \"$dlopen_support\" != yes ||\n\t     test \"$build_libtool_libs\" = no; then\n\t    # If there is no dlname, no dlopen support or we're linking\n\t    # statically, we need to preload.  We also need to preload any\n\t    # dependent libraries so libltdl's deplib preloader doesn't\n\t    # bomb out in the load deplibs phase.\n\t    dlprefiles=\"$dlprefiles $lib $dependency_libs\"\n\t  else\n\t    newdlfiles=\"$newdlfiles $lib\"\n\t  fi\n\t  continue\n\tfi # $pass = dlopen\n\n\t# We need an absolute path.\n\tcase $ladir in\n\t[\\\\/]* | [A-Za-z]:[\\\\/]*) abs_ladir=\"$ladir\" ;;\n\t*)\n\t  abs_ladir=`cd \"$ladir\" && pwd`\n\t  if test -z \"$abs_ladir\"; then\n\t    func_warning \"cannot determine absolute directory name of \\`$ladir'\"\n\t    func_warning \"passing it literally to the linker, although it might fail\"\n\t    abs_ladir=\"$ladir\"\n\t  fi\n\t  ;;\n\tesac\n\tfunc_basename \"$lib\"\n\tlaname=\"$func_basename_result\"\n\n\t# Find the relevant object directory and library name.\n\tif test \"X$installed\" = Xyes; then\n\t  if test ! -f \"$libdir/$linklib\" && test -f \"$abs_ladir/$linklib\"; then\n\t    func_warning \"library \\`$lib' was moved.\"\n\t    dir=\"$ladir\"\n\t    absdir=\"$abs_ladir\"\n\t    libdir=\"$abs_ladir\"\n\t  else\n\t    dir=\"$libdir\"\n\t    absdir=\"$libdir\"\n\t  fi\n\t  test \"X$hardcode_automatic\" = Xyes && avoidtemprpath=yes\n\telse\n\t  if test ! -f \"$ladir/$objdir/$linklib\" && test -f \"$abs_ladir/$linklib\"; then\n\t    dir=\"$ladir\"\n\t    absdir=\"$abs_ladir\"\n\t    # Remove this search path later\n\t    notinst_path=\"$notinst_path $abs_ladir\"\n\t  else\n\t    dir=\"$ladir/$objdir\"\n\t    absdir=\"$abs_ladir/$objdir\"\n\t    # Remove this search path later\n\t    notinst_path=\"$notinst_path $abs_ladir\"\n\t  fi\n\tfi # $installed = yes\n\tfunc_stripname 'lib' '.la' \"$laname\"\n\tname=$func_stripname_result\n\n\t# This library was specified with -dlpreopen.\n\tif test \"$pass\" = dlpreopen; then\n\t  if test -z \"$libdir\" && test \"$linkmode\" = prog; then\n\t    func_fatal_error \"only libraries may -dlpreopen a convenience library: \\`$lib'\"\n\t  fi\n\t  # Prefer using a static library (so that no silly _DYNAMIC symbols\n\t  # are required to link).\n\t  if test -n \"$old_library\"; then\n\t    newdlprefiles=\"$newdlprefiles $dir/$old_library\"\n\t    # Keep a list of preopened convenience libraries to check\n\t    # that they are being used correctly in the link pass.\n\t    test -z \"$libdir\" && \\\n\t\tdlpreconveniencelibs=\"$dlpreconveniencelibs $dir/$old_library\"\n\t  # Otherwise, use the dlname, so that lt_dlopen finds it.\n\t  elif test -n \"$dlname\"; then\n\t    newdlprefiles=\"$newdlprefiles $dir/$dlname\"\n\t  else\n\t    newdlprefiles=\"$newdlprefiles $dir/$linklib\"\n\t  fi\n\tfi # $pass = dlpreopen\n\n\tif test -z \"$libdir\"; then\n\t  # Link the convenience library\n\t  if test \"$linkmode\" = lib; then\n\t    deplibs=\"$dir/$old_library $deplibs\"\n\t  elif test \"$linkmode,$pass\" = \"prog,link\"; then\n\t    compile_deplibs=\"$dir/$old_library $compile_deplibs\"\n\t    finalize_deplibs=\"$dir/$old_library $finalize_deplibs\"\n\t  else\n\t    deplibs=\"$lib $deplibs\" # used for prog,scan pass\n\t  fi\n\t  continue\n\tfi\n\n\n\tif test \"$linkmode\" = prog && test \"$pass\" != link; then\n\t  newlib_search_path=\"$newlib_search_path $ladir\"\n\t  deplibs=\"$lib $deplibs\"\n\n\t  linkalldeplibs=no\n\t  if test \"$link_all_deplibs\" != no || test -z \"$library_names\" ||\n\t     test \"$build_libtool_libs\" = no; then\n\t    linkalldeplibs=yes\n\t  fi\n\n\t  tmp_libs=\n\t  for deplib in $dependency_libs; do\n\t    case $deplib in\n\t    -L*) func_stripname '-L' '' \"$deplib\"\n\t         newlib_search_path=\"$newlib_search_path $func_stripname_result\"\n\t\t ;;\n\t    esac\n\t    # Need to link against all dependency_libs?\n\t    if test \"$linkalldeplibs\" = yes; then\n\t      deplibs=\"$deplib $deplibs\"\n\t    else\n\t      # Need to hardcode shared library paths\n\t      # or/and link against static libraries\n\t      newdependency_libs=\"$deplib $newdependency_libs\"\n\t    fi\n\t    if $opt_duplicate_deps ; then\n\t      case \"$tmp_libs \" in\n\t      *\" $deplib \"*) specialdeplibs=\"$specialdeplibs $deplib\" ;;\n\t      esac\n\t    fi\n\t    tmp_libs=\"$tmp_libs $deplib\"\n\t  done # for deplib\n\t  continue\n\tfi # $linkmode = prog...\n\n\tif test \"$linkmode,$pass\" = \"prog,link\"; then\n\t  if test -n \"$library_names\" &&\n\t     { { test \"$prefer_static_libs\" = no ||\n\t         test \"$prefer_static_libs,$installed\" = \"built,yes\"; } ||\n\t       test -z \"$old_library\"; }; then\n\t    # We need to hardcode the library path\n\t    if test -n \"$shlibpath_var\" && test -z \"$avoidtemprpath\" ; then\n\t      # Make sure the rpath contains only unique directories.\n\t      case \"$temp_rpath:\" in\n\t      *\"$absdir:\"*) ;;\n\t      *) temp_rpath=\"$temp_rpath$absdir:\" ;;\n\t      esac\n\t    fi\n\n\t    # Hardcode the library path.\n\t    # Skip directories that are in the system default run-time\n\t    # search path.\n\t    case \" $sys_lib_dlsearch_path \" in\n\t    *\" $absdir \"*) ;;\n\t    *)\n\t      case \"$compile_rpath \" in\n\t      *\" $absdir \"*) ;;\n\t      *) compile_rpath=\"$compile_rpath $absdir\"\n\t      esac\n\t      ;;\n\t    esac\n\t    case \" $sys_lib_dlsearch_path \" in\n\t    *\" $libdir \"*) ;;\n\t    *)\n\t      case \"$finalize_rpath \" in\n\t      *\" $libdir \"*) ;;\n\t      *) finalize_rpath=\"$finalize_rpath $libdir\"\n\t      esac\n\t      ;;\n\t    esac\n\t  fi # $linkmode,$pass = prog,link...\n\n\t  if test \"$alldeplibs\" = yes &&\n\t     { test \"$deplibs_check_method\" = pass_all ||\n\t       { test \"$build_libtool_libs\" = yes &&\n\t\t test -n \"$library_names\"; }; }; then\n\t    # We only need to search for static libraries\n\t    continue\n\t  fi\n\tfi\n\n\tlink_static=no # Whether the deplib will be linked statically\n\tuse_static_libs=$prefer_static_libs\n\tif test \"$use_static_libs\" = built && test \"$installed\" = yes; then\n\t  use_static_libs=no\n\tfi\n\tif test -n \"$library_names\" &&\n\t   { test \"$use_static_libs\" = no || test -z \"$old_library\"; }; then\n\t  case $host in\n\t  *cygwin* | *mingw* | *cegcc*)\n\t      # No point in relinking DLLs because paths are not encoded\n\t      notinst_deplibs=\"$notinst_deplibs $lib\"\n\t      need_relink=no\n\t    ;;\n\t  *)\n\t    if test \"$installed\" = no; then\n\t      notinst_deplibs=\"$notinst_deplibs $lib\"\n\t      need_relink=yes\n\t    fi\n\t    ;;\n\t  esac\n\t  # This is a shared library\n\n\t  # Warn about portability, can't link against -module's on some\n\t  # systems (darwin).  Don't bleat about dlopened modules though!\n\t  dlopenmodule=\"\"\n\t  for dlpremoduletest in $dlprefiles; do\n\t    if test \"X$dlpremoduletest\" = \"X$lib\"; then\n\t      dlopenmodule=\"$dlpremoduletest\"\n\t      break\n\t    fi\n\t  done\n\t  if test -z \"$dlopenmodule\" && test \"$shouldnotlink\" = yes && test \"$pass\" = link; then\n\t    echo\n\t    if test \"$linkmode\" = prog; then\n\t      $ECHO \"*** Warning: Linking the executable $output against the loadable module\"\n\t    else\n\t      $ECHO \"*** Warning: Linking the shared library $output against the loadable module\"\n\t    fi\n\t    $ECHO \"*** $linklib is not portable!\"\n\t  fi\n\t  if test \"$linkmode\" = lib &&\n\t     test \"$hardcode_into_libs\" = yes; then\n\t    # Hardcode the library path.\n\t    # Skip directories that are in the system default run-time\n\t    # search path.\n\t    case \" $sys_lib_dlsearch_path \" in\n\t    *\" $absdir \"*) ;;\n\t    *)\n\t      case \"$compile_rpath \" in\n\t      *\" $absdir \"*) ;;\n\t      *) compile_rpath=\"$compile_rpath $absdir\"\n\t      esac\n\t      ;;\n\t    esac\n\t    case \" $sys_lib_dlsearch_path \" in\n\t    *\" $libdir \"*) ;;\n\t    *)\n\t      case \"$finalize_rpath \" in\n\t      *\" $libdir \"*) ;;\n\t      *) finalize_rpath=\"$finalize_rpath $libdir\"\n\t      esac\n\t      ;;\n\t    esac\n\t  fi\n\n\t  if test -n \"$old_archive_from_expsyms_cmds\"; then\n\t    # figure out the soname\n\t    set dummy $library_names\n\t    shift\n\t    realname=\"$1\"\n\t    shift\n\t    libname=`eval \"\\\\$ECHO \\\"$libname_spec\\\"\"`\n\t    # use dlname if we got it. it's perfectly good, no?\n\t    if test -n \"$dlname\"; then\n\t      soname=\"$dlname\"\n\t    elif test -n \"$soname_spec\"; then\n\t      # bleh windows\n\t      case $host in\n\t      *cygwin* | mingw* | *cegcc*)\n\t        func_arith $current - $age\n\t\tmajor=$func_arith_result\n\t\tversuffix=\"-$major\"\n\t\t;;\n\t      esac\n\t      eval soname=\\\"$soname_spec\\\"\n\t    else\n\t      soname=\"$realname\"\n\t    fi\n\n\t    # Make a new name for the extract_expsyms_cmds to use\n\t    soroot=\"$soname\"\n\t    func_basename \"$soroot\"\n\t    soname=\"$func_basename_result\"\n\t    func_stripname 'lib' '.dll' \"$soname\"\n\t    newlib=libimp-$func_stripname_result.a\n\n\t    # If the library has no export list, then create one now\n\t    if test -f \"$output_objdir/$soname-def\"; then :\n\t    else\n\t      func_verbose \"extracting exported symbol list from \\`$soname'\"\n\t      func_execute_cmds \"$extract_expsyms_cmds\" 'exit $?'\n\t    fi\n\n\t    # Create $newlib\n\t    if test -f \"$output_objdir/$newlib\"; then :; else\n\t      func_verbose \"generating import library for \\`$soname'\"\n\t      func_execute_cmds \"$old_archive_from_expsyms_cmds\" 'exit $?'\n\t    fi\n\t    # make sure the library variables are pointing to the new library\n\t    dir=$output_objdir\n\t    linklib=$newlib\n\t  fi # test -n \"$old_archive_from_expsyms_cmds\"\n\n\t  if test \"$linkmode\" = prog || test \"$mode\" != relink; then\n\t    add_shlibpath=\n\t    add_dir=\n\t    add=\n\t    lib_linked=yes\n\t    case $hardcode_action in\n\t    immediate | unsupported)\n\t      if test \"$hardcode_direct\" = no; then\n\t\tadd=\"$dir/$linklib\"\n\t\tcase $host in\n\t\t  *-*-sco3.2v5.0.[024]*) add_dir=\"-L$dir\" ;;\n\t\t  *-*-sysv4*uw2*) add_dir=\"-L$dir\" ;;\n\t\t  *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \\\n\t\t    *-*-unixware7*) add_dir=\"-L$dir\" ;;\n\t\t  *-*-darwin* )\n\t\t    # if the lib is a (non-dlopened) module then we can not\n\t\t    # link against it, someone is ignoring the earlier warnings\n\t\t    if /usr/bin/file -L $add 2> /dev/null |\n\t\t\t $GREP \": [^:]* bundle\" >/dev/null ; then\n\t\t      if test \"X$dlopenmodule\" != \"X$lib\"; then\n\t\t\t$ECHO \"*** Warning: lib $linklib is a module, not a shared library\"\n\t\t\tif test -z \"$old_library\" ; then\n\t\t\t  echo\n\t\t\t  echo \"*** And there doesn't seem to be a static archive available\"\n\t\t\t  echo \"*** The link will probably fail, sorry\"\n\t\t\telse\n\t\t\t  add=\"$dir/$old_library\"\n\t\t\tfi\n\t\t      elif test -n \"$old_library\"; then\n\t\t\tadd=\"$dir/$old_library\"\n\t\t      fi\n\t\t    fi\n\t\tesac\n\t      elif test \"$hardcode_minus_L\" = no; then\n\t\tcase $host in\n\t\t*-*-sunos*) add_shlibpath=\"$dir\" ;;\n\t\tesac\n\t\tadd_dir=\"-L$dir\"\n\t\tadd=\"-l$name\"\n\t      elif test \"$hardcode_shlibpath_var\" = no; then\n\t\tadd_shlibpath=\"$dir\"\n\t\tadd=\"-l$name\"\n\t      else\n\t\tlib_linked=no\n\t      fi\n\t      ;;\n\t    relink)\n\t      if test \"$hardcode_direct\" = yes &&\n\t         test \"$hardcode_direct_absolute\" = no; then\n\t\tadd=\"$dir/$linklib\"\n\t      elif test \"$hardcode_minus_L\" = yes; then\n\t\tadd_dir=\"-L$dir\"\n\t\t# Try looking first in the location we're being installed to.\n\t\tif test -n \"$inst_prefix_dir\"; then\n\t\t  case $libdir in\n\t\t    [\\\\/]*)\n\t\t      add_dir=\"$add_dir -L$inst_prefix_dir$libdir\"\n\t\t      ;;\n\t\t  esac\n\t\tfi\n\t\tadd=\"-l$name\"\n\t      elif test \"$hardcode_shlibpath_var\" = yes; then\n\t\tadd_shlibpath=\"$dir\"\n\t\tadd=\"-l$name\"\n\t      else\n\t\tlib_linked=no\n\t      fi\n\t      ;;\n\t    *) lib_linked=no ;;\n\t    esac\n\n\t    if test \"$lib_linked\" != yes; then\n\t      func_fatal_configuration \"unsupported hardcode properties\"\n\t    fi\n\n\t    if test -n \"$add_shlibpath\"; then\n\t      case :$compile_shlibpath: in\n\t      *\":$add_shlibpath:\"*) ;;\n\t      *) compile_shlibpath=\"$compile_shlibpath$add_shlibpath:\" ;;\n\t      esac\n\t    fi\n\t    if test \"$linkmode\" = prog; then\n\t      test -n \"$add_dir\" && compile_deplibs=\"$add_dir $compile_deplibs\"\n\t      test -n \"$add\" && compile_deplibs=\"$add $compile_deplibs\"\n\t    else\n\t      test -n \"$add_dir\" && deplibs=\"$add_dir $deplibs\"\n\t      test -n \"$add\" && deplibs=\"$add $deplibs\"\n\t      if test \"$hardcode_direct\" != yes &&\n\t\t test \"$hardcode_minus_L\" != yes &&\n\t\t test \"$hardcode_shlibpath_var\" = yes; then\n\t\tcase :$finalize_shlibpath: in\n\t\t*\":$libdir:\"*) ;;\n\t\t*) finalize_shlibpath=\"$finalize_shlibpath$libdir:\" ;;\n\t\tesac\n\t      fi\n\t    fi\n\t  fi\n\n\t  if test \"$linkmode\" = prog || test \"$mode\" = relink; then\n\t    add_shlibpath=\n\t    add_dir=\n\t    add=\n\t    # Finalize command for both is simple: just hardcode it.\n\t    if test \"$hardcode_direct\" = yes &&\n\t       test \"$hardcode_direct_absolute\" = no; then\n\t      add=\"$libdir/$linklib\"\n\t    elif test \"$hardcode_minus_L\" = yes; then\n\t      add_dir=\"-L$libdir\"\n\t      add=\"-l$name\"\n\t    elif test \"$hardcode_shlibpath_var\" = yes; then\n\t      case :$finalize_shlibpath: in\n\t      *\":$libdir:\"*) ;;\n\t      *) finalize_shlibpath=\"$finalize_shlibpath$libdir:\" ;;\n\t      esac\n\t      add=\"-l$name\"\n\t    elif test \"$hardcode_automatic\" = yes; then\n\t      if test -n \"$inst_prefix_dir\" &&\n\t\t test -f \"$inst_prefix_dir$libdir/$linklib\" ; then\n\t\tadd=\"$inst_prefix_dir$libdir/$linklib\"\n\t      else\n\t\tadd=\"$libdir/$linklib\"\n\t      fi\n\t    else\n\t      # We cannot seem to hardcode it, guess we'll fake it.\n\t      add_dir=\"-L$libdir\"\n\t      # Try looking first in the location we're being installed to.\n\t      if test -n \"$inst_prefix_dir\"; then\n\t\tcase $libdir in\n\t\t  [\\\\/]*)\n\t\t    add_dir=\"$add_dir -L$inst_prefix_dir$libdir\"\n\t\t    ;;\n\t\tesac\n\t      fi\n\t      add=\"-l$name\"\n\t    fi\n\n\t    if test \"$linkmode\" = prog; then\n\t      test -n \"$add_dir\" && finalize_deplibs=\"$add_dir $finalize_deplibs\"\n\t      test -n \"$add\" && finalize_deplibs=\"$add $finalize_deplibs\"\n\t    else\n\t      test -n \"$add_dir\" && deplibs=\"$add_dir $deplibs\"\n\t      test -n \"$add\" && deplibs=\"$add $deplibs\"\n\t    fi\n\t  fi\n\telif test \"$linkmode\" = prog; then\n\t  # Here we assume that one of hardcode_direct or hardcode_minus_L\n\t  # is not unsupported.  This is valid on all known static and\n\t  # shared platforms.\n\t  if test \"$hardcode_direct\" != unsupported; then\n\t    test -n \"$old_library\" && linklib=\"$old_library\"\n\t    compile_deplibs=\"$dir/$linklib $compile_deplibs\"\n\t    finalize_deplibs=\"$dir/$linklib $finalize_deplibs\"\n\t  else\n\t    compile_deplibs=\"-l$name -L$dir $compile_deplibs\"\n\t    finalize_deplibs=\"-l$name -L$dir $finalize_deplibs\"\n\t  fi\n\telif test \"$build_libtool_libs\" = yes; then\n\t  # Not a shared library\n\t  if test \"$deplibs_check_method\" != pass_all; then\n\t    # We're trying link a shared library against a static one\n\t    # but the system doesn't support it.\n\n\t    # Just print a warning and add the library to dependency_libs so\n\t    # that the program can be linked against the static library.\n\t    echo\n\t    $ECHO \"*** Warning: This system can not link to static lib archive $lib.\"\n\t    echo \"*** I have the capability to make that library automatically link in when\"\n\t    echo \"*** you link to this library.  But I can only do this if you have a\"\n\t    echo \"*** shared version of the library, which you do not appear to have.\"\n\t    if test \"$module\" = yes; then\n\t      echo \"*** But as you try to build a module library, libtool will still create \"\n\t      echo \"*** a static module, that should work as long as the dlopening application\"\n\t      echo \"*** is linked with the -dlopen flag to resolve symbols at runtime.\"\n\t      if test -z \"$global_symbol_pipe\"; then\n\t\techo\n\t\techo \"*** However, this would only work if libtool was able to extract symbol\"\n\t\techo \"*** lists from a program, using \\`nm' or equivalent, but libtool could\"\n\t\techo \"*** not find such a program.  So, this module is probably useless.\"\n\t\techo \"*** \\`nm' from GNU binutils and a full rebuild may help.\"\n\t      fi\n\t      if test \"$build_old_libs\" = no; then\n\t\tbuild_libtool_libs=module\n\t\tbuild_old_libs=yes\n\t      else\n\t\tbuild_libtool_libs=no\n\t      fi\n\t    fi\n\t  else\n\t    deplibs=\"$dir/$old_library $deplibs\"\n\t    link_static=yes\n\t  fi\n\tfi # link shared/static library?\n\n\tif test \"$linkmode\" = lib; then\n\t  if test -n \"$dependency_libs\" &&\n\t     { test \"$hardcode_into_libs\" != yes ||\n\t       test \"$build_old_libs\" = yes ||\n\t       test \"$link_static\" = yes; }; then\n\t    # Extract -R from dependency_libs\n\t    temp_deplibs=\n\t    for libdir in $dependency_libs; do\n\t      case $libdir in\n\t      -R*) func_stripname '-R' '' \"$libdir\"\n\t           temp_xrpath=$func_stripname_result\n\t\t   case \" $xrpath \" in\n\t\t   *\" $temp_xrpath \"*) ;;\n\t\t   *) xrpath=\"$xrpath $temp_xrpath\";;\n\t\t   esac;;\n\t      *) temp_deplibs=\"$temp_deplibs $libdir\";;\n\t      esac\n\t    done\n\t    dependency_libs=\"$temp_deplibs\"\n\t  fi\n\n\t  newlib_search_path=\"$newlib_search_path $absdir\"\n\t  # Link against this library\n\t  test \"$link_static\" = no && newdependency_libs=\"$abs_ladir/$laname $newdependency_libs\"\n\t  # ... and its dependency_libs\n\t  tmp_libs=\n\t  for deplib in $dependency_libs; do\n\t    newdependency_libs=\"$deplib $newdependency_libs\"\n\t    if $opt_duplicate_deps ; then\n\t      case \"$tmp_libs \" in\n\t      *\" $deplib \"*) specialdeplibs=\"$specialdeplibs $deplib\" ;;\n\t      esac\n\t    fi\n\t    tmp_libs=\"$tmp_libs $deplib\"\n\t  done\n\n\t  if test \"$link_all_deplibs\" != no; then\n\t    # Add the search paths of all dependency libraries\n\t    for deplib in $dependency_libs; do\n\t      path=\n\t      case $deplib in\n\t      -L*) path=\"$deplib\" ;;\n\t      *.la)\n\t        func_dirname \"$deplib\" \"\" \".\"\n\t\tdir=\"$func_dirname_result\"\n\t\t# We need an absolute path.\n\t\tcase $dir in\n\t\t[\\\\/]* | [A-Za-z]:[\\\\/]*) absdir=\"$dir\" ;;\n\t\t*)\n\t\t  absdir=`cd \"$dir\" && pwd`\n\t\t  if test -z \"$absdir\"; then\n\t\t    func_warning \"cannot determine absolute directory name of \\`$dir'\"\n\t\t    absdir=\"$dir\"\n\t\t  fi\n\t\t  ;;\n\t\tesac\n\t\tif $GREP \"^installed=no\" $deplib > /dev/null; then\n\t\tcase $host in\n\t\t*-*-darwin*)\n\t\t  depdepl=\n\t\t  eval deplibrary_names=`${SED} -n -e 's/^library_names=\\(.*\\)$/\\1/p' $deplib`\n\t\t  if test -n \"$deplibrary_names\" ; then\n\t\t    for tmp in $deplibrary_names ; do\n\t\t      depdepl=$tmp\n\t\t    done\n\t\t    if test -f \"$absdir/$objdir/$depdepl\" ; then\n\t\t      depdepl=\"$absdir/$objdir/$depdepl\"\n\t\t      darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'`\n                      if test -z \"$darwin_install_name\"; then\n                          darwin_install_name=`${OTOOL64} -L $depdepl  | awk '{if (NR == 2) {print $1;exit}}'`\n                      fi\n\t\t      compiler_flags=\"$compiler_flags ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}\"\n\t\t      linker_flags=\"$linker_flags -dylib_file ${darwin_install_name}:${depdepl}\"\n\t\t      path=\n\t\t    fi\n\t\t  fi\n\t\t  ;;\n\t\t*)\n\t\t  path=\"-L$absdir/$objdir\"\n\t\t  ;;\n\t\tesac\n\t\telse\n\t\t  eval libdir=`${SED} -n -e 's/^libdir=\\(.*\\)$/\\1/p' $deplib`\n\t\t  test -z \"$libdir\" && \\\n\t\t    func_fatal_error \"\\`$deplib' is not a valid libtool archive\"\n\t\t  test \"$absdir\" != \"$libdir\" && \\\n\t\t    func_warning \"\\`$deplib' seems to be moved\"\n\n\t\t  path=\"-L$absdir\"\n\t\tfi\n\t\t;;\n\t      esac\n\t      case \" $deplibs \" in\n\t      *\" $path \"*) ;;\n\t      *) deplibs=\"$path $deplibs\" ;;\n\t      esac\n\t    done\n\t  fi # link_all_deplibs != no\n\tfi # linkmode = lib\n      done # for deplib in $libs\n      if test \"$pass\" = link; then\n\tif test \"$linkmode\" = \"prog\"; then\n\t  compile_deplibs=\"$new_inherited_linker_flags $compile_deplibs\"\n\t  finalize_deplibs=\"$new_inherited_linker_flags $finalize_deplibs\"\n\telse\n\t  compiler_flags=\"$compiler_flags \"`$ECHO \" $new_inherited_linker_flags\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\tfi\n      fi\n      dependency_libs=\"$newdependency_libs\"\n      if test \"$pass\" = dlpreopen; then\n\t# Link the dlpreopened libraries before other libraries\n\tfor deplib in $save_deplibs; do\n\t  deplibs=\"$deplib $deplibs\"\n\tdone\n      fi\n      if test \"$pass\" != dlopen; then\n\tif test \"$pass\" != conv; then\n\t  # Make sure lib_search_path contains only unique directories.\n\t  lib_search_path=\n\t  for dir in $newlib_search_path; do\n\t    case \"$lib_search_path \" in\n\t    *\" $dir \"*) ;;\n\t    *) lib_search_path=\"$lib_search_path $dir\" ;;\n\t    esac\n\t  done\n\t  newlib_search_path=\n\tfi\n\n\tif test \"$linkmode,$pass\" != \"prog,link\"; then\n\t  vars=\"deplibs\"\n\telse\n\t  vars=\"compile_deplibs finalize_deplibs\"\n\tfi\n\tfor var in $vars dependency_libs; do\n\t  # Add libraries to $var in reverse order\n\t  eval tmp_libs=\\\"\\$$var\\\"\n\t  new_libs=\n\t  for deplib in $tmp_libs; do\n\t    # FIXME: Pedantically, this is the right thing to do, so\n\t    #        that some nasty dependency loop isn't accidentally\n\t    #        broken:\n\t    #new_libs=\"$deplib $new_libs\"\n\t    # Pragmatically, this seems to cause very few problems in\n\t    # practice:\n\t    case $deplib in\n\t    -L*) new_libs=\"$deplib $new_libs\" ;;\n\t    -R*) ;;\n\t    *)\n\t      # And here is the reason: when a library appears more\n\t      # than once as an explicit dependence of a library, or\n\t      # is implicitly linked in more than once by the\n\t      # compiler, it is considered special, and multiple\n\t      # occurrences thereof are not removed.  Compare this\n\t      # with having the same library being listed as a\n\t      # dependency of multiple other libraries: in this case,\n\t      # we know (pedantically, we assume) the library does not\n\t      # need to be listed more than once, so we keep only the\n\t      # last copy.  This is not always right, but it is rare\n\t      # enough that we require users that really mean to play\n\t      # such unportable linking tricks to link the library\n\t      # using -Wl,-lname, so that libtool does not consider it\n\t      # for duplicate removal.\n\t      case \" $specialdeplibs \" in\n\t      *\" $deplib \"*) new_libs=\"$deplib $new_libs\" ;;\n\t      *)\n\t\tcase \" $new_libs \" in\n\t\t*\" $deplib \"*) ;;\n\t\t*) new_libs=\"$deplib $new_libs\" ;;\n\t\tesac\n\t\t;;\n\t      esac\n\t      ;;\n\t    esac\n\t  done\n\t  tmp_libs=\n\t  for deplib in $new_libs; do\n\t    case $deplib in\n\t    -L*)\n\t      case \" $tmp_libs \" in\n\t      *\" $deplib \"*) ;;\n\t      *) tmp_libs=\"$tmp_libs $deplib\" ;;\n\t      esac\n\t      ;;\n\t    *) tmp_libs=\"$tmp_libs $deplib\" ;;\n\t    esac\n\t  done\n\t  eval $var=\\\"$tmp_libs\\\"\n\tdone # for var\n      fi\n      # Last step: remove runtime libs from dependency_libs\n      # (they stay in deplibs)\n      tmp_libs=\n      for i in $dependency_libs ; do\n\tcase \" $predeps $postdeps $compiler_lib_search_path \" in\n\t*\" $i \"*)\n\t  i=\"\"\n\t  ;;\n\tesac\n\tif test -n \"$i\" ; then\n\t  tmp_libs=\"$tmp_libs $i\"\n\tfi\n      done\n      dependency_libs=$tmp_libs\n    done # for pass\n    if test \"$linkmode\" = prog; then\n      dlfiles=\"$newdlfiles\"\n    fi\n    if test \"$linkmode\" = prog || test \"$linkmode\" = lib; then\n      dlprefiles=\"$newdlprefiles\"\n    fi\n\n    case $linkmode in\n    oldlib)\n      if test -n \"$dlfiles$dlprefiles\" || test \"$dlself\" != no; then\n\tfunc_warning \"\\`-dlopen' is ignored for archives\"\n      fi\n\n      case \" $deplibs\" in\n      *\\ -l* | *\\ -L*)\n\tfunc_warning \"\\`-l' and \\`-L' are ignored for archives\" ;;\n      esac\n\n      test -n \"$rpath\" && \\\n\tfunc_warning \"\\`-rpath' is ignored for archives\"\n\n      test -n \"$xrpath\" && \\\n\tfunc_warning \"\\`-R' is ignored for archives\"\n\n      test -n \"$vinfo\" && \\\n\tfunc_warning \"\\`-version-info/-version-number' is ignored for archives\"\n\n      test -n \"$release\" && \\\n\tfunc_warning \"\\`-release' is ignored for archives\"\n\n      test -n \"$export_symbols$export_symbols_regex\" && \\\n\tfunc_warning \"\\`-export-symbols' is ignored for archives\"\n\n      # Now set the variables for building old libraries.\n      build_libtool_libs=no\n      oldlibs=\"$output\"\n      objs=\"$objs$old_deplibs\"\n      ;;\n\n    lib)\n      # Make sure we only generate libraries of the form `libNAME.la'.\n      case $outputname in\n      lib*)\n\tfunc_stripname 'lib' '.la' \"$outputname\"\n\tname=$func_stripname_result\n\teval shared_ext=\\\"$shrext_cmds\\\"\n\teval libname=\\\"$libname_spec\\\"\n\t;;\n      *)\n\ttest \"$module\" = no && \\\n\t  func_fatal_help \"libtool library \\`$output' must begin with \\`lib'\"\n\n\tif test \"$need_lib_prefix\" != no; then\n\t  # Add the \"lib\" prefix for modules if required\n\t  func_stripname '' '.la' \"$outputname\"\n\t  name=$func_stripname_result\n\t  eval shared_ext=\\\"$shrext_cmds\\\"\n\t  eval libname=\\\"$libname_spec\\\"\n\telse\n\t  func_stripname '' '.la' \"$outputname\"\n\t  libname=$func_stripname_result\n\tfi\n\t;;\n      esac\n\n      if test -n \"$objs\"; then\n\tif test \"$deplibs_check_method\" != pass_all; then\n\t  func_fatal_error \"cannot build libtool library \\`$output' from non-libtool objects on this host:$objs\"\n\telse\n\t  echo\n\t  $ECHO \"*** Warning: Linking the shared library $output against the non-libtool\"\n\t  $ECHO \"*** objects $objs is not portable!\"\n\t  libobjs=\"$libobjs $objs\"\n\tfi\n      fi\n\n      test \"$dlself\" != no && \\\n\tfunc_warning \"\\`-dlopen self' is ignored for libtool libraries\"\n\n      set dummy $rpath\n      shift\n      test \"$#\" -gt 1 && \\\n\tfunc_warning \"ignoring multiple \\`-rpath's for a libtool library\"\n\n      install_libdir=\"$1\"\n\n      oldlibs=\n      if test -z \"$rpath\"; then\n\tif test \"$build_libtool_libs\" = yes; then\n\t  # Building a libtool convenience library.\n\t  # Some compilers have problems with a `.al' extension so\n\t  # convenience libraries should have the same extension an\n\t  # archive normally would.\n\t  oldlibs=\"$output_objdir/$libname.$libext $oldlibs\"\n\t  build_libtool_libs=convenience\n\t  build_old_libs=yes\n\tfi\n\n\ttest -n \"$vinfo\" && \\\n\t  func_warning \"\\`-version-info/-version-number' is ignored for convenience libraries\"\n\n\ttest -n \"$release\" && \\\n\t  func_warning \"\\`-release' is ignored for convenience libraries\"\n      else\n\n\t# Parse the version information argument.\n\tsave_ifs=\"$IFS\"; IFS=':'\n\tset dummy $vinfo 0 0 0\n\tshift\n\tIFS=\"$save_ifs\"\n\n\ttest -n \"$7\" && \\\n\t  func_fatal_help \"too many parameters to \\`-version-info'\"\n\n\t# convert absolute version numbers to libtool ages\n\t# this retains compatibility with .la files and attempts\n\t# to make the code below a bit more comprehensible\n\n\tcase $vinfo_number in\n\tyes)\n\t  number_major=\"$1\"\n\t  number_minor=\"$2\"\n\t  number_revision=\"$3\"\n\t  #\n\t  # There are really only two kinds -- those that\n\t  # use the current revision as the major version\n\t  # and those that subtract age and use age as\n\t  # a minor version.  But, then there is irix\n\t  # which has an extra 1 added just for fun\n\t  #\n\t  case $version_type in\n\t  darwin|linux|osf|windows|none)\n\t    func_arith $number_major + $number_minor\n\t    current=$func_arith_result\n\t    age=\"$number_minor\"\n\t    revision=\"$number_revision\"\n\t    ;;\n\t  freebsd-aout|freebsd-elf|qnx|sunos)\n\t    current=\"$number_major\"\n\t    revision=\"$number_minor\"\n\t    age=\"0\"\n\t    ;;\n\t  irix|nonstopux)\n\t    func_arith $number_major + $number_minor\n\t    current=$func_arith_result\n\t    age=\"$number_minor\"\n\t    revision=\"$number_minor\"\n\t    lt_irix_increment=no\n\t    ;;\n\t  esac\n\t  ;;\n\tno)\n\t  current=\"$1\"\n\t  revision=\"$2\"\n\t  age=\"$3\"\n\t  ;;\n\tesac\n\n\t# Check that each of the things are valid numbers.\n\tcase $current in\n\t0|[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]) ;;\n\t*)\n\t  func_error \"CURRENT \\`$current' must be a nonnegative integer\"\n\t  func_fatal_error \"\\`$vinfo' is not valid version information\"\n\t  ;;\n\tesac\n\n\tcase $revision in\n\t0|[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]) ;;\n\t*)\n\t  func_error \"REVISION \\`$revision' must be a nonnegative integer\"\n\t  func_fatal_error \"\\`$vinfo' is not valid version information\"\n\t  ;;\n\tesac\n\n\tcase $age in\n\t0|[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]) ;;\n\t*)\n\t  func_error \"AGE \\`$age' must be a nonnegative integer\"\n\t  func_fatal_error \"\\`$vinfo' is not valid version information\"\n\t  ;;\n\tesac\n\n\tif test \"$age\" -gt \"$current\"; then\n\t  func_error \"AGE \\`$age' is greater than the current interface number \\`$current'\"\n\t  func_fatal_error \"\\`$vinfo' is not valid version information\"\n\tfi\n\n\t# Calculate the version variables.\n\tmajor=\n\tversuffix=\n\tverstring=\n\tcase $version_type in\n\tnone) ;;\n\n\tdarwin)\n\t  # Like Linux, but with the current version available in\n\t  # verstring for coding it into the library header\n\t  func_arith $current - $age\n\t  major=.$func_arith_result\n\t  versuffix=\"$major.$age.$revision\"\n\t  # Darwin ld doesn't like 0 for these options...\n\t  func_arith $current + 1\n\t  minor_current=$func_arith_result\n\t  xlcverstring=\"${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision\"\n\t  verstring=\"-compatibility_version $minor_current -current_version $minor_current.$revision\"\n\t  ;;\n\n\tfreebsd-aout)\n\t  major=\".$current\"\n\t  versuffix=\".$current.$revision\";\n\t  ;;\n\n\tfreebsd-elf)\n\t  major=\".$current\"\n\t  versuffix=\".$current\"\n\t  ;;\n\n\tirix | nonstopux)\n\t  if test \"X$lt_irix_increment\" = \"Xno\"; then\n\t    func_arith $current - $age\n\t  else\n\t    func_arith $current - $age + 1\n\t  fi\n\t  major=$func_arith_result\n\n\t  case $version_type in\n\t    nonstopux) verstring_prefix=nonstopux ;;\n\t    *)         verstring_prefix=sgi ;;\n\t  esac\n\t  verstring=\"$verstring_prefix$major.$revision\"\n\n\t  # Add in all the interfaces that we are compatible with.\n\t  loop=$revision\n\t  while test \"$loop\" -ne 0; do\n\t    func_arith $revision - $loop\n\t    iface=$func_arith_result\n\t    func_arith $loop - 1\n\t    loop=$func_arith_result\n\t    verstring=\"$verstring_prefix$major.$iface:$verstring\"\n\t  done\n\n\t  # Before this point, $major must not contain `.'.\n\t  major=.$major\n\t  versuffix=\"$major.$revision\"\n\t  ;;\n\n\tlinux)\n\t  func_arith $current - $age\n\t  major=.$func_arith_result\n\t  versuffix=\"$major.$age.$revision\"\n\t  ;;\n\n\tosf)\n\t  func_arith $current - $age\n\t  major=.$func_arith_result\n\t  versuffix=\".$current.$age.$revision\"\n\t  verstring=\"$current.$age.$revision\"\n\n\t  # Add in all the interfaces that we are compatible with.\n\t  loop=$age\n\t  while test \"$loop\" -ne 0; do\n\t    func_arith $current - $loop\n\t    iface=$func_arith_result\n\t    func_arith $loop - 1\n\t    loop=$func_arith_result\n\t    verstring=\"$verstring:${iface}.0\"\n\t  done\n\n\t  # Make executables depend on our current version.\n\t  verstring=\"$verstring:${current}.0\"\n\t  ;;\n\n\tqnx)\n\t  major=\".$current\"\n\t  versuffix=\".$current\"\n\t  ;;\n\n\tsunos)\n\t  major=\".$current\"\n\t  versuffix=\".$current.$revision\"\n\t  ;;\n\n\twindows)\n\t  # Use '-' rather than '.', since we only want one\n\t  # extension on DOS 8.3 filesystems.\n\t  func_arith $current - $age\n\t  major=$func_arith_result\n\t  versuffix=\"-$major\"\n\t  ;;\n\n\t*)\n\t  func_fatal_configuration \"unknown library version type \\`$version_type'\"\n\t  ;;\n\tesac\n\n\t# Clear the version info if we defaulted, and they specified a release.\n\tif test -z \"$vinfo\" && test -n \"$release\"; then\n\t  major=\n\t  case $version_type in\n\t  darwin)\n\t    # we can't check for \"0.0\" in archive_cmds due to quoting\n\t    # problems, so we reset it completely\n\t    verstring=\n\t    ;;\n\t  *)\n\t    verstring=\"0.0\"\n\t    ;;\n\t  esac\n\t  if test \"$need_version\" = no; then\n\t    versuffix=\n\t  else\n\t    versuffix=\".0.0\"\n\t  fi\n\tfi\n\n\t# Remove version info from name if versioning should be avoided\n\tif test \"$avoid_version\" = yes && test \"$need_version\" = no; then\n\t  major=\n\t  versuffix=\n\t  verstring=\"\"\n\tfi\n\n\t# Check to see if the archive will have undefined symbols.\n\tif test \"$allow_undefined\" = yes; then\n\t  if test \"$allow_undefined_flag\" = unsupported; then\n\t    func_warning \"undefined symbols not allowed in $host shared libraries\"\n\t    build_libtool_libs=no\n\t    build_old_libs=yes\n\t  fi\n\telse\n\t  # Don't allow undefined symbols.\n\t  allow_undefined_flag=\"$no_undefined_flag\"\n\tfi\n\n      fi\n\n      func_generate_dlsyms \"$libname\" \"$libname\" \"yes\"\n      libobjs=\"$libobjs $symfileobj\"\n      test \"X$libobjs\" = \"X \" && libobjs=\n\n      if test \"$mode\" != relink; then\n\t# Remove our outputs, but don't remove object files since they\n\t# may have been created when compiling PIC objects.\n\tremovelist=\n\ttempremovelist=`$ECHO \"$output_objdir/*\"`\n\tfor p in $tempremovelist; do\n\t  case $p in\n\t    *.$objext | *.gcno)\n\t       ;;\n\t    $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*)\n\t       if test \"X$precious_files_regex\" != \"X\"; then\n\t\t if $ECHO \"$p\" | $EGREP -e \"$precious_files_regex\" >/dev/null 2>&1\n\t\t then\n\t\t   continue\n\t\t fi\n\t       fi\n\t       removelist=\"$removelist $p\"\n\t       ;;\n\t    *) ;;\n\t  esac\n\tdone\n\ttest -n \"$removelist\" && \\\n\t  func_show_eval \"${RM}r \\$removelist\"\n      fi\n\n      # Now set the variables for building old libraries.\n      if test \"$build_old_libs\" = yes && test \"$build_libtool_libs\" != convenience ; then\n\toldlibs=\"$oldlibs $output_objdir/$libname.$libext\"\n\n\t# Transform .lo files to .o files.\n\toldobjs=\"$objs \"`$ECHO \"$libobjs\" | $SP2NL | $SED \"/\\.${libext}$/d; $lo2o\" | $NL2SP`\n      fi\n\n      # Eliminate all temporary directories.\n      #for path in $notinst_path; do\n      #\tlib_search_path=`$ECHO \"$lib_search_path \" | $SED \"s% $path % %g\"`\n      #\tdeplibs=`$ECHO \"$deplibs \" | $SED \"s% -L$path % %g\"`\n      #\tdependency_libs=`$ECHO \"$dependency_libs \" | $SED \"s% -L$path % %g\"`\n      #done\n\n      if test -n \"$xrpath\"; then\n\t# If the user specified any rpath flags, then add them.\n\ttemp_xrpath=\n\tfor libdir in $xrpath; do\n\t  temp_xrpath=\"$temp_xrpath -R$libdir\"\n\t  case \"$finalize_rpath \" in\n\t  *\" $libdir \"*) ;;\n\t  *) finalize_rpath=\"$finalize_rpath $libdir\" ;;\n\t  esac\n\tdone\n\tif test \"$hardcode_into_libs\" != yes || test \"$build_old_libs\" = yes; then\n\t  dependency_libs=\"$temp_xrpath $dependency_libs\"\n\tfi\n      fi\n\n      # Make sure dlfiles contains only unique files that won't be dlpreopened\n      old_dlfiles=\"$dlfiles\"\n      dlfiles=\n      for lib in $old_dlfiles; do\n\tcase \" $dlprefiles $dlfiles \" in\n\t*\" $lib \"*) ;;\n\t*) dlfiles=\"$dlfiles $lib\" ;;\n\tesac\n      done\n\n      # Make sure dlprefiles contains only unique files\n      old_dlprefiles=\"$dlprefiles\"\n      dlprefiles=\n      for lib in $old_dlprefiles; do\n\tcase \"$dlprefiles \" in\n\t*\" $lib \"*) ;;\n\t*) dlprefiles=\"$dlprefiles $lib\" ;;\n\tesac\n      done\n\n      if test \"$build_libtool_libs\" = yes; then\n\tif test -n \"$rpath\"; then\n\t  case $host in\n\t  *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*)\n\t    # these systems don't actually have a c library (as such)!\n\t    ;;\n\t  *-*-rhapsody* | *-*-darwin1.[012])\n\t    # Rhapsody C library is in the System framework\n\t    deplibs=\"$deplibs System.ltframework\"\n\t    ;;\n\t  *-*-netbsd*)\n\t    # Don't link with libc until the a.out ld.so is fixed.\n\t    ;;\n\t  *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)\n\t    # Do not include libc due to us having libc/libc_r.\n\t    ;;\n\t  *-*-sco3.2v5* | *-*-sco5v6*)\n\t    # Causes problems with __ctype\n\t    ;;\n\t  *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)\n\t    # Compiler inserts libc in the correct place for threads to work\n\t    ;;\n\t  *)\n\t    # Add libc to deplibs on all other systems if necessary.\n\t    if test \"$build_libtool_need_lc\" = \"yes\"; then\n\t      deplibs=\"$deplibs -lc\"\n\t    fi\n\t    ;;\n\t  esac\n\tfi\n\n\t# Transform deplibs into only deplibs that can be linked in shared.\n\tname_save=$name\n\tlibname_save=$libname\n\trelease_save=$release\n\tversuffix_save=$versuffix\n\tmajor_save=$major\n\t# I'm not sure if I'm treating the release correctly.  I think\n\t# release should show up in the -l (ie -lgmp5) so we don't want to\n\t# add it in twice.  Is that correct?\n\trelease=\"\"\n\tversuffix=\"\"\n\tmajor=\"\"\n\tnewdeplibs=\n\tdroppeddeps=no\n\tcase $deplibs_check_method in\n\tpass_all)\n\t  # Don't check for shared/static.  Everything works.\n\t  # This might be a little naive.  We might want to check\n\t  # whether the library exists or not.  But this is on\n\t  # osf3 & osf4 and I'm not really sure... Just\n\t  # implementing what was already the behavior.\n\t  newdeplibs=$deplibs\n\t  ;;\n\ttest_compile)\n\t  # This code stresses the \"libraries are programs\" paradigm to its\n\t  # limits. Maybe even breaks it.  We compile a program, linking it\n\t  # against the deplibs as a proxy for the library.  Then we can check\n\t  # whether they linked in statically or dynamically with ldd.\n\t  $opt_dry_run || $RM conftest.c\n\t  cat > conftest.c <<EOF\n\t  int main() { return 0; }\nEOF\n\t  $opt_dry_run || $RM conftest\n\t  if $LTCC $LTCFLAGS -o conftest conftest.c $deplibs; then\n\t    ldd_output=`ldd conftest`\n\t    for i in $deplibs; do\n\t      case $i in\n\t      -l*)\n\t\tfunc_stripname -l '' \"$i\"\n\t\tname=$func_stripname_result\n\t\tif test \"X$allow_libtool_libs_with_static_runtimes\" = \"Xyes\" ; then\n\t\t  case \" $predeps $postdeps \" in\n\t\t  *\" $i \"*)\n\t\t    newdeplibs=\"$newdeplibs $i\"\n\t\t    i=\"\"\n\t\t    ;;\n\t\t  esac\n\t\tfi\n\t\tif test -n \"$i\" ; then\n\t\t  libname=`eval \"\\\\$ECHO \\\"$libname_spec\\\"\"`\n\t\t  deplib_matches=`eval \"\\\\$ECHO \\\"$library_names_spec\\\"\"`\n\t\t  set dummy $deplib_matches; shift\n\t\t  deplib_match=$1\n\t\t  if test `expr \"$ldd_output\" : \".*$deplib_match\"` -ne 0 ; then\n\t\t    newdeplibs=\"$newdeplibs $i\"\n\t\t  else\n\t\t    droppeddeps=yes\n\t\t    echo\n\t\t    $ECHO \"*** Warning: dynamic linker does not accept needed library $i.\"\n\t\t    echo \"*** I have the capability to make that library automatically link in when\"\n\t\t    echo \"*** you link to this library.  But I can only do this if you have a\"\n\t\t    echo \"*** shared version of the library, which I believe you do not have\"\n\t\t    echo \"*** because a test_compile did reveal that the linker did not use it for\"\n\t\t    echo \"*** its dynamic dependency list that programs get resolved with at runtime.\"\n\t\t  fi\n\t\tfi\n\t\t;;\n\t      *)\n\t\tnewdeplibs=\"$newdeplibs $i\"\n\t\t;;\n\t      esac\n\t    done\n\t  else\n\t    # Error occurred in the first compile.  Let's try to salvage\n\t    # the situation: Compile a separate program for each library.\n\t    for i in $deplibs; do\n\t      case $i in\n\t      -l*)\n\t\tfunc_stripname -l '' \"$i\"\n\t\tname=$func_stripname_result\n\t\t$opt_dry_run || $RM conftest\n\t\tif $LTCC $LTCFLAGS -o conftest conftest.c $i; then\n\t\t  ldd_output=`ldd conftest`\n\t\t  if test \"X$allow_libtool_libs_with_static_runtimes\" = \"Xyes\" ; then\n\t\t    case \" $predeps $postdeps \" in\n\t\t    *\" $i \"*)\n\t\t      newdeplibs=\"$newdeplibs $i\"\n\t\t      i=\"\"\n\t\t      ;;\n\t\t    esac\n\t\t  fi\n\t\t  if test -n \"$i\" ; then\n\t\t    libname=`eval \"\\\\$ECHO \\\"$libname_spec\\\"\"`\n\t\t    deplib_matches=`eval \"\\\\$ECHO \\\"$library_names_spec\\\"\"`\n\t\t    set dummy $deplib_matches; shift\n\t\t    deplib_match=$1\n\t\t    if test `expr \"$ldd_output\" : \".*$deplib_match\"` -ne 0 ; then\n\t\t      newdeplibs=\"$newdeplibs $i\"\n\t\t    else\n\t\t      droppeddeps=yes\n\t\t      echo\n\t\t      $ECHO \"*** Warning: dynamic linker does not accept needed library $i.\"\n\t\t      echo \"*** I have the capability to make that library automatically link in when\"\n\t\t      echo \"*** you link to this library.  But I can only do this if you have a\"\n\t\t      echo \"*** shared version of the library, which you do not appear to have\"\n\t\t      echo \"*** because a test_compile did reveal that the linker did not use this one\"\n\t\t      echo \"*** as a dynamic dependency that programs can get resolved with at runtime.\"\n\t\t    fi\n\t\t  fi\n\t\telse\n\t\t  droppeddeps=yes\n\t\t  echo\n\t\t  $ECHO \"*** Warning!  Library $i is needed by this library but I was not able to\"\n\t\t  echo \"*** make it link in!  You will probably need to install it or some\"\n\t\t  echo \"*** library that it depends on before this library will be fully\"\n\t\t  echo \"*** functional.  Installing it before continuing would be even better.\"\n\t\tfi\n\t\t;;\n\t      *)\n\t\tnewdeplibs=\"$newdeplibs $i\"\n\t\t;;\n\t      esac\n\t    done\n\t  fi\n\t  ;;\n\tfile_magic*)\n\t  set dummy $deplibs_check_method; shift\n\t  file_magic_regex=`expr \"$deplibs_check_method\" : \"$1 \\(.*\\)\"`\n\t  for a_deplib in $deplibs; do\n\t    case $a_deplib in\n\t    -l*)\n\t      func_stripname -l '' \"$a_deplib\"\n\t      name=$func_stripname_result\n\t      if test \"X$allow_libtool_libs_with_static_runtimes\" = \"Xyes\" ; then\n\t\tcase \" $predeps $postdeps \" in\n\t\t*\" $a_deplib \"*)\n\t\t  newdeplibs=\"$newdeplibs $a_deplib\"\n\t\t  a_deplib=\"\"\n\t\t  ;;\n\t\tesac\n\t      fi\n\t      if test -n \"$a_deplib\" ; then\n\t\tlibname=`eval \"\\\\$ECHO \\\"$libname_spec\\\"\"`\n\t\tfor i in $lib_search_path $sys_lib_search_path $shlib_search_path; do\n\t\t  potential_libs=`ls $i/$libname[.-]* 2>/dev/null`\n\t\t  for potent_lib in $potential_libs; do\n\t\t      # Follow soft links.\n\t\t      if ls -lLd \"$potent_lib\" 2>/dev/null |\n\t\t\t $GREP \" -> \" >/dev/null; then\n\t\t\tcontinue\n\t\t      fi\n\t\t      # The statement above tries to avoid entering an\n\t\t      # endless loop below, in case of cyclic links.\n\t\t      # We might still enter an endless loop, since a link\n\t\t      # loop can be closed while we follow links,\n\t\t      # but so what?\n\t\t      potlib=\"$potent_lib\"\n\t\t      while test -h \"$potlib\" 2>/dev/null; do\n\t\t\tpotliblink=`ls -ld $potlib | ${SED} 's/.* -> //'`\n\t\t\tcase $potliblink in\n\t\t\t[\\\\/]* | [A-Za-z]:[\\\\/]*) potlib=\"$potliblink\";;\n\t\t\t*) potlib=`$ECHO \"$potlib\" | $SED 's,[^/]*$,,'`\"$potliblink\";;\n\t\t\tesac\n\t\t      done\n\t\t      if eval $file_magic_cmd \\\"\\$potlib\\\" 2>/dev/null |\n\t\t\t $SED -e 10q |\n\t\t\t $EGREP \"$file_magic_regex\" > /dev/null; then\n\t\t\tnewdeplibs=\"$newdeplibs $a_deplib\"\n\t\t\ta_deplib=\"\"\n\t\t\tbreak 2\n\t\t      fi\n\t\t  done\n\t\tdone\n\t      fi\n\t      if test -n \"$a_deplib\" ; then\n\t\tdroppeddeps=yes\n\t\techo\n\t\t$ECHO \"*** Warning: linker path does not have real file for library $a_deplib.\"\n\t\techo \"*** I have the capability to make that library automatically link in when\"\n\t\techo \"*** you link to this library.  But I can only do this if you have a\"\n\t\techo \"*** shared version of the library, which you do not appear to have\"\n\t\techo \"*** because I did check the linker path looking for a file starting\"\n\t\tif test -z \"$potlib\" ; then\n\t\t  $ECHO \"*** with $libname but no candidates were found. (...for file magic test)\"\n\t\telse\n\t\t  $ECHO \"*** with $libname and none of the candidates passed a file format test\"\n\t\t  $ECHO \"*** using a file magic. Last file checked: $potlib\"\n\t\tfi\n\t      fi\n\t      ;;\n\t    *)\n\t      # Add a -L argument.\n\t      newdeplibs=\"$newdeplibs $a_deplib\"\n\t      ;;\n\t    esac\n\t  done # Gone through all deplibs.\n\t  ;;\n\tmatch_pattern*)\n\t  set dummy $deplibs_check_method; shift\n\t  match_pattern_regex=`expr \"$deplibs_check_method\" : \"$1 \\(.*\\)\"`\n\t  for a_deplib in $deplibs; do\n\t    case $a_deplib in\n\t    -l*)\n\t      func_stripname -l '' \"$a_deplib\"\n\t      name=$func_stripname_result\n\t      if test \"X$allow_libtool_libs_with_static_runtimes\" = \"Xyes\" ; then\n\t\tcase \" $predeps $postdeps \" in\n\t\t*\" $a_deplib \"*)\n\t\t  newdeplibs=\"$newdeplibs $a_deplib\"\n\t\t  a_deplib=\"\"\n\t\t  ;;\n\t\tesac\n\t      fi\n\t      if test -n \"$a_deplib\" ; then\n\t\tlibname=`eval \"\\\\$ECHO \\\"$libname_spec\\\"\"`\n\t\tfor i in $lib_search_path $sys_lib_search_path $shlib_search_path; do\n\t\t  potential_libs=`ls $i/$libname[.-]* 2>/dev/null`\n\t\t  for potent_lib in $potential_libs; do\n\t\t    potlib=\"$potent_lib\" # see symlink-check above in file_magic test\n\t\t    if eval \"\\$ECHO \\\"$potent_lib\\\"\" 2>/dev/null | $SED 10q | \\\n\t\t       $EGREP \"$match_pattern_regex\" > /dev/null; then\n\t\t      newdeplibs=\"$newdeplibs $a_deplib\"\n\t\t      a_deplib=\"\"\n\t\t      break 2\n\t\t    fi\n\t\t  done\n\t\tdone\n\t      fi\n\t      if test -n \"$a_deplib\" ; then\n\t\tdroppeddeps=yes\n\t\techo\n\t\t$ECHO \"*** Warning: linker path does not have real file for library $a_deplib.\"\n\t\techo \"*** I have the capability to make that library automatically link in when\"\n\t\techo \"*** you link to this library.  But I can only do this if you have a\"\n\t\techo \"*** shared version of the library, which you do not appear to have\"\n\t\techo \"*** because I did check the linker path looking for a file starting\"\n\t\tif test -z \"$potlib\" ; then\n\t\t  $ECHO \"*** with $libname but no candidates were found. (...for regex pattern test)\"\n\t\telse\n\t\t  $ECHO \"*** with $libname and none of the candidates passed a file format test\"\n\t\t  $ECHO \"*** using a regex pattern. Last file checked: $potlib\"\n\t\tfi\n\t      fi\n\t      ;;\n\t    *)\n\t      # Add a -L argument.\n\t      newdeplibs=\"$newdeplibs $a_deplib\"\n\t      ;;\n\t    esac\n\t  done # Gone through all deplibs.\n\t  ;;\n\tnone | unknown | *)\n\t  newdeplibs=\"\"\n\t  tmp_deplibs=`$ECHO \" $deplibs\" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'`\n\t  if test \"X$allow_libtool_libs_with_static_runtimes\" = \"Xyes\" ; then\n\t    for i in $predeps $postdeps ; do\n\t      # can't use Xsed below, because $i might contain '/'\n\t      tmp_deplibs=`$ECHO \" $tmp_deplibs\" | $SED \"s,$i,,\"`\n\t    done\n\t  fi\n\t  case $tmp_deplibs in\n\t  *[!\\\t\\ ]*)\n\t    echo\n\t    if test \"X$deplibs_check_method\" = \"Xnone\"; then\n\t      echo \"*** Warning: inter-library dependencies are not supported in this platform.\"\n\t    else\n\t      echo \"*** Warning: inter-library dependencies are not known to be supported.\"\n\t    fi\n\t    echo \"*** All declared inter-library dependencies are being dropped.\"\n\t    droppeddeps=yes\n\t    ;;\n\t  esac\n\t  ;;\n\tesac\n\tversuffix=$versuffix_save\n\tmajor=$major_save\n\trelease=$release_save\n\tlibname=$libname_save\n\tname=$name_save\n\n\tcase $host in\n\t*-*-rhapsody* | *-*-darwin1.[012])\n\t  # On Rhapsody replace the C library with the System framework\n\t  newdeplibs=`$ECHO \" $newdeplibs\" | $SED 's/ -lc / System.ltframework /'`\n\t  ;;\n\tesac\n\n\tif test \"$droppeddeps\" = yes; then\n\t  if test \"$module\" = yes; then\n\t    echo\n\t    echo \"*** Warning: libtool could not satisfy all declared inter-library\"\n\t    $ECHO \"*** dependencies of module $libname.  Therefore, libtool will create\"\n\t    echo \"*** a static module, that should work as long as the dlopening\"\n\t    echo \"*** application is linked with the -dlopen flag.\"\n\t    if test -z \"$global_symbol_pipe\"; then\n\t      echo\n\t      echo \"*** However, this would only work if libtool was able to extract symbol\"\n\t      echo \"*** lists from a program, using \\`nm' or equivalent, but libtool could\"\n\t      echo \"*** not find such a program.  So, this module is probably useless.\"\n\t      echo \"*** \\`nm' from GNU binutils and a full rebuild may help.\"\n\t    fi\n\t    if test \"$build_old_libs\" = no; then\n\t      oldlibs=\"$output_objdir/$libname.$libext\"\n\t      build_libtool_libs=module\n\t      build_old_libs=yes\n\t    else\n\t      build_libtool_libs=no\n\t    fi\n\t  else\n\t    echo \"*** The inter-library dependencies that have been dropped here will be\"\n\t    echo \"*** automatically added whenever a program is linked with this library\"\n\t    echo \"*** or is declared to -dlopen it.\"\n\n\t    if test \"$allow_undefined\" = no; then\n\t      echo\n\t      echo \"*** Since this library must not contain undefined symbols,\"\n\t      echo \"*** because either the platform does not support them or\"\n\t      echo \"*** it was explicitly requested with -no-undefined,\"\n\t      echo \"*** libtool will only create a static version of it.\"\n\t      if test \"$build_old_libs\" = no; then\n\t\toldlibs=\"$output_objdir/$libname.$libext\"\n\t\tbuild_libtool_libs=module\n\t\tbuild_old_libs=yes\n\t      else\n\t\tbuild_libtool_libs=no\n\t      fi\n\t    fi\n\t  fi\n\tfi\n\t# Done checking deplibs!\n\tdeplibs=$newdeplibs\n      fi\n      # Time to change all our \"foo.ltframework\" stuff back to \"-framework foo\"\n      case $host in\n\t*-*-darwin*)\n\t  newdeplibs=`$ECHO \" $newdeplibs\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\t  new_inherited_linker_flags=`$ECHO \" $new_inherited_linker_flags\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\t  deplibs=`$ECHO \" $deplibs\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\t  ;;\n      esac\n\n      # move library search paths that coincide with paths to not yet\n      # installed libraries to the beginning of the library search list\n      new_libs=\n      for path in $notinst_path; do\n\tcase \" $new_libs \" in\n\t*\" -L$path/$objdir \"*) ;;\n\t*)\n\t  case \" $deplibs \" in\n\t  *\" -L$path/$objdir \"*)\n\t    new_libs=\"$new_libs -L$path/$objdir\" ;;\n\t  esac\n\t  ;;\n\tesac\n      done\n      for deplib in $deplibs; do\n\tcase $deplib in\n\t-L*)\n\t  case \" $new_libs \" in\n\t  *\" $deplib \"*) ;;\n\t  *) new_libs=\"$new_libs $deplib\" ;;\n\t  esac\n\t  ;;\n\t*) new_libs=\"$new_libs $deplib\" ;;\n\tesac\n      done\n      deplibs=\"$new_libs\"\n\n      # All the library-specific variables (install_libdir is set above).\n      library_names=\n      old_library=\n      dlname=\n\n      # Test again, we may have decided not to build it any more\n      if test \"$build_libtool_libs\" = yes; then\n\tif test \"$hardcode_into_libs\" = yes; then\n\t  # Hardcode the library paths\n\t  hardcode_libdirs=\n\t  dep_rpath=\n\t  rpath=\"$finalize_rpath\"\n\t  test \"$mode\" != relink && rpath=\"$compile_rpath$rpath\"\n\t  for libdir in $rpath; do\n\t    if test -n \"$hardcode_libdir_flag_spec\"; then\n\t      if test -n \"$hardcode_libdir_separator\"; then\n\t\tif test -z \"$hardcode_libdirs\"; then\n\t\t  hardcode_libdirs=\"$libdir\"\n\t\telse\n\t\t  # Just accumulate the unique libdirs.\n\t\t  case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in\n\t\t  *\"$hardcode_libdir_separator$libdir$hardcode_libdir_separator\"*)\n\t\t    ;;\n\t\t  *)\n\t\t    hardcode_libdirs=\"$hardcode_libdirs$hardcode_libdir_separator$libdir\"\n\t\t    ;;\n\t\t  esac\n\t\tfi\n\t      else\n\t\teval flag=\\\"$hardcode_libdir_flag_spec\\\"\n\t\tdep_rpath=\"$dep_rpath $flag\"\n\t      fi\n\t    elif test -n \"$runpath_var\"; then\n\t      case \"$perm_rpath \" in\n\t      *\" $libdir \"*) ;;\n\t      *) perm_rpath=\"$perm_rpath $libdir\" ;;\n\t      esac\n\t    fi\n\t  done\n\t  # Substitute the hardcoded libdirs into the rpath.\n\t  if test -n \"$hardcode_libdir_separator\" &&\n\t     test -n \"$hardcode_libdirs\"; then\n\t    libdir=\"$hardcode_libdirs\"\n\t    if test -n \"$hardcode_libdir_flag_spec_ld\"; then\n\t      eval dep_rpath=\\\"$hardcode_libdir_flag_spec_ld\\\"\n\t    else\n\t      eval dep_rpath=\\\"$hardcode_libdir_flag_spec\\\"\n\t    fi\n\t  fi\n\t  if test -n \"$runpath_var\" && test -n \"$perm_rpath\"; then\n\t    # We should set the runpath_var.\n\t    rpath=\n\t    for dir in $perm_rpath; do\n\t      rpath=\"$rpath$dir:\"\n\t    done\n\t    eval \"$runpath_var='$rpath\\$$runpath_var'; export $runpath_var\"\n\t  fi\n\t  test -n \"$dep_rpath\" && deplibs=\"$dep_rpath $deplibs\"\n\tfi\n\n\tshlibpath=\"$finalize_shlibpath\"\n\ttest \"$mode\" != relink && shlibpath=\"$compile_shlibpath$shlibpath\"\n\tif test -n \"$shlibpath\"; then\n\t  eval \"$shlibpath_var='$shlibpath\\$$shlibpath_var'; export $shlibpath_var\"\n\tfi\n\n\t# Get the real and link names of the library.\n\teval shared_ext=\\\"$shrext_cmds\\\"\n\teval library_names=\\\"$library_names_spec\\\"\n\tset dummy $library_names\n\tshift\n\trealname=\"$1\"\n\tshift\n\n\tif test -n \"$soname_spec\"; then\n\t  eval soname=\\\"$soname_spec\\\"\n\telse\n\t  soname=\"$realname\"\n\tfi\n\tif test -z \"$dlname\"; then\n\t  dlname=$soname\n\tfi\n\n\tlib=\"$output_objdir/$realname\"\n\tlinknames=\n\tfor link\n\tdo\n\t  linknames=\"$linknames $link\"\n\tdone\n\n\t# Use standard objects if they are pic\n\ttest -z \"$pic_flag\" && libobjs=`$ECHO \"$libobjs\" | $SP2NL | $SED \"$lo2o\" | $NL2SP`\n\ttest \"X$libobjs\" = \"X \" && libobjs=\n\n\tdelfiles=\n\tif test -n \"$export_symbols\" && test -n \"$include_expsyms\"; then\n\t  $opt_dry_run || cp \"$export_symbols\" \"$output_objdir/$libname.uexp\"\n\t  export_symbols=\"$output_objdir/$libname.uexp\"\n\t  delfiles=\"$delfiles $export_symbols\"\n\tfi\n\n\torig_export_symbols=\n\tcase $host_os in\n\tcygwin* | mingw* | cegcc*)\n\t  if test -n \"$export_symbols\" && test -z \"$export_symbols_regex\"; then\n\t    # exporting using user supplied symfile\n\t    if test \"x`$SED 1q $export_symbols`\" != xEXPORTS; then\n\t      # and it's NOT already a .def file. Must figure out\n\t      # which of the given symbols are data symbols and tag\n\t      # them as such. So, trigger use of export_symbols_cmds.\n\t      # export_symbols gets reassigned inside the \"prepare\n\t      # the list of exported symbols\" if statement, so the\n\t      # include_expsyms logic still works.\n\t      orig_export_symbols=\"$export_symbols\"\n\t      export_symbols=\n\t      always_export_symbols=yes\n\t    fi\n\t  fi\n\t  ;;\n\tesac\n\n\t# Prepare the list of exported symbols\n\tif test -z \"$export_symbols\"; then\n\t  if test \"$always_export_symbols\" = yes || test -n \"$export_symbols_regex\"; then\n\t    func_verbose \"generating symbol list for \\`$libname.la'\"\n\t    export_symbols=\"$output_objdir/$libname.exp\"\n\t    $opt_dry_run || $RM $export_symbols\n\t    cmds=$export_symbols_cmds\n\t    save_ifs=\"$IFS\"; IFS='~'\n\t    for cmd in $cmds; do\n\t      IFS=\"$save_ifs\"\n\t      eval cmd=\\\"$cmd\\\"\n\t      func_len \" $cmd\"\n\t      len=$func_len_result\n\t      if test \"$len\" -lt \"$max_cmd_len\" || test \"$max_cmd_len\" -le -1; then\n\t\tfunc_show_eval \"$cmd\" 'exit $?'\n\t\tskipped_export=false\n\t      else\n\t\t# The command line is too long to execute in one step.\n\t\tfunc_verbose \"using reloadable object file for export list...\"\n\t\tskipped_export=:\n\t\t# Break out early, otherwise skipped_export may be\n\t\t# set to false by a later but shorter cmd.\n\t\tbreak\n\t      fi\n\t    done\n\t    IFS=\"$save_ifs\"\n\t    if test -n \"$export_symbols_regex\" && test \"X$skipped_export\" != \"X:\"; then\n\t      func_show_eval '$EGREP -e \"$export_symbols_regex\" \"$export_symbols\" > \"${export_symbols}T\"'\n\t      func_show_eval '$MV \"${export_symbols}T\" \"$export_symbols\"'\n\t    fi\n\t  fi\n\tfi\n\n\tif test -n \"$export_symbols\" && test -n \"$include_expsyms\"; then\n\t  tmp_export_symbols=\"$export_symbols\"\n\t  test -n \"$orig_export_symbols\" && tmp_export_symbols=\"$orig_export_symbols\"\n\t  $opt_dry_run || eval '$ECHO \"$include_expsyms\" | $SP2NL >> \"$tmp_export_symbols\"'\n\tfi\n\n\tif test \"X$skipped_export\" != \"X:\" && test -n \"$orig_export_symbols\"; then\n\t  # The given exports_symbols file has to be filtered, so filter it.\n\t  func_verbose \"filter symbol list for \\`$libname.la' to tag DATA exports\"\n\t  # FIXME: $output_objdir/$libname.filter potentially contains lots of\n\t  # 's' commands which not all seds can handle. GNU sed should be fine\n\t  # though. Also, the filter scales superlinearly with the number of\n\t  # global variables. join(1) would be nice here, but unfortunately\n\t  # isn't a blessed tool.\n\t  $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\\(.*\\)\\([ \\,].*\\),s|^\\1$|\\1\\2|,' < $export_symbols > $output_objdir/$libname.filter\n\t  delfiles=\"$delfiles $export_symbols $output_objdir/$libname.filter\"\n\t  export_symbols=$output_objdir/$libname.def\n\t  $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols\n\tfi\n\n\ttmp_deplibs=\n\tfor test_deplib in $deplibs; do\n\t  case \" $convenience \" in\n\t  *\" $test_deplib \"*) ;;\n\t  *)\n\t    tmp_deplibs=\"$tmp_deplibs $test_deplib\"\n\t    ;;\n\t  esac\n\tdone\n\tdeplibs=\"$tmp_deplibs\"\n\n\tif test -n \"$convenience\"; then\n\t  if test -n \"$whole_archive_flag_spec\" &&\n\t    test \"$compiler_needs_object\" = yes &&\n\t    test -z \"$libobjs\"; then\n\t    # extract the archives, so we have objects to list.\n\t    # TODO: could optimize this to just extract one archive.\n\t    whole_archive_flag_spec=\n\t  fi\n\t  if test -n \"$whole_archive_flag_spec\"; then\n\t    save_libobjs=$libobjs\n\t    eval libobjs=\\\"\\$libobjs $whole_archive_flag_spec\\\"\n\t    test \"X$libobjs\" = \"X \" && libobjs=\n\t  else\n\t    gentop=\"$output_objdir/${outputname}x\"\n\t    generated=\"$generated $gentop\"\n\n\t    func_extract_archives $gentop $convenience\n\t    libobjs=\"$libobjs $func_extract_archives_result\"\n\t    test \"X$libobjs\" = \"X \" && libobjs=\n\t  fi\n\tfi\n\n\tif test \"$thread_safe\" = yes && test -n \"$thread_safe_flag_spec\"; then\n\t  eval flag=\\\"$thread_safe_flag_spec\\\"\n\t  linker_flags=\"$linker_flags $flag\"\n\tfi\n\n\t# Make a backup of the uninstalled library when relinking\n\tif test \"$mode\" = relink; then\n\t  $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $?\n\tfi\n\n\t# Do each of the archive commands.\n\tif test \"$module\" = yes && test -n \"$module_cmds\" ; then\n\t  if test -n \"$export_symbols\" && test -n \"$module_expsym_cmds\"; then\n\t    eval test_cmds=\\\"$module_expsym_cmds\\\"\n\t    cmds=$module_expsym_cmds\n\t  else\n\t    eval test_cmds=\\\"$module_cmds\\\"\n\t    cmds=$module_cmds\n\t  fi\n\telse\n\t  if test -n \"$export_symbols\" && test -n \"$archive_expsym_cmds\"; then\n\t    eval test_cmds=\\\"$archive_expsym_cmds\\\"\n\t    cmds=$archive_expsym_cmds\n\t  else\n\t    eval test_cmds=\\\"$archive_cmds\\\"\n\t    cmds=$archive_cmds\n\t  fi\n\tfi\n\n\tif test \"X$skipped_export\" != \"X:\" &&\n\t   func_len \" $test_cmds\" &&\n\t   len=$func_len_result &&\n\t   test \"$len\" -lt \"$max_cmd_len\" || test \"$max_cmd_len\" -le -1; then\n\t  :\n\telse\n\t  # The command line is too long to link in one step, link piecewise\n\t  # or, if using GNU ld and skipped_export is not :, use a linker\n\t  # script.\n\n\t  # Save the value of $output and $libobjs because we want to\n\t  # use them later.  If we have whole_archive_flag_spec, we\n\t  # want to use save_libobjs as it was before\n\t  # whole_archive_flag_spec was expanded, because we can't\n\t  # assume the linker understands whole_archive_flag_spec.\n\t  # This may have to be revisited, in case too many\n\t  # convenience libraries get linked in and end up exceeding\n\t  # the spec.\n\t  if test -z \"$convenience\" || test -z \"$whole_archive_flag_spec\"; then\n\t    save_libobjs=$libobjs\n\t  fi\n\t  save_output=$output\n\t  func_basename \"$output\"\n\t  output_la=$func_basename_result\n\n\t  # Clear the reloadable object creation command queue and\n\t  # initialize k to one.\n\t  test_cmds=\n\t  concat_cmds=\n\t  objlist=\n\t  last_robj=\n\t  k=1\n\n\t  if test -n \"$save_libobjs\" && test \"X$skipped_export\" != \"X:\" && test \"$with_gnu_ld\" = yes; then\n\t    output=${output_objdir}/${output_la}.lnkscript\n\t    func_verbose \"creating GNU ld script: $output\"\n\t    echo 'INPUT (' > $output\n\t    for obj in $save_libobjs\n\t    do\n\t      $ECHO \"$obj\" >> $output\n\t    done\n\t    echo ')' >> $output\n\t    delfiles=\"$delfiles $output\"\n\t  elif test -n \"$save_libobjs\" && test \"X$skipped_export\" != \"X:\" && test \"X$file_list_spec\" != X; then\n\t    output=${output_objdir}/${output_la}.lnk\n\t    func_verbose \"creating linker input file list: $output\"\n\t    : > $output\n\t    set x $save_libobjs\n\t    shift\n\t    firstobj=\n\t    if test \"$compiler_needs_object\" = yes; then\n\t      firstobj=\"$1 \"\n\t      shift\n\t    fi\n\t    for obj\n\t    do\n\t      $ECHO \"$obj\" >> $output\n\t    done\n\t    delfiles=\"$delfiles $output\"\n\t    output=$firstobj\\\"$file_list_spec$output\\\"\n\t  else\n\t    if test -n \"$save_libobjs\"; then\n\t      func_verbose \"creating reloadable object files...\"\n\t      output=$output_objdir/$output_la-${k}.$objext\n\t      eval test_cmds=\\\"$reload_cmds\\\"\n\t      func_len \" $test_cmds\"\n\t      len0=$func_len_result\n\t      len=$len0\n\n\t      # Loop over the list of objects to be linked.\n\t      for obj in $save_libobjs\n\t      do\n\t\tfunc_len \" $obj\"\n\t\tfunc_arith $len + $func_len_result\n\t\tlen=$func_arith_result\n\t\tif test \"X$objlist\" = X ||\n\t\t   test \"$len\" -lt \"$max_cmd_len\"; then\n\t\t  func_append objlist \" $obj\"\n\t\telse\n\t\t  # The command $test_cmds is almost too long, add a\n\t\t  # command to the queue.\n\t\t  if test \"$k\" -eq 1 ; then\n\t\t    # The first file doesn't have a previous command to add.\n\t\t    reload_objs=$objlist\n\t\t    eval concat_cmds=\\\"$reload_cmds\\\"\n\t\t  else\n\t\t    # All subsequent reloadable object files will link in\n\t\t    # the last one created.\n\t\t    reload_objs=\"$objlist $last_robj\"\n\t\t    eval concat_cmds=\\\"\\$concat_cmds~$reload_cmds~\\$RM $last_robj\\\"\n\t\t  fi\n\t\t  last_robj=$output_objdir/$output_la-${k}.$objext\n\t\t  func_arith $k + 1\n\t\t  k=$func_arith_result\n\t\t  output=$output_objdir/$output_la-${k}.$objext\n\t\t  objlist=\" $obj\"\n\t\t  func_len \" $last_robj\"\n\t\t  func_arith $len0 + $func_len_result\n\t\t  len=$func_arith_result\n\t\tfi\n\t      done\n\t      # Handle the remaining objects by creating one last\n\t      # reloadable object file.  All subsequent reloadable object\n\t      # files will link in the last one created.\n\t      test -z \"$concat_cmds\" || concat_cmds=$concat_cmds~\n\t      reload_objs=\"$objlist $last_robj\"\n\t      eval concat_cmds=\\\"\\${concat_cmds}$reload_cmds\\\"\n\t      if test -n \"$last_robj\"; then\n\t        eval concat_cmds=\\\"\\${concat_cmds}~\\$RM $last_robj\\\"\n\t      fi\n\t      delfiles=\"$delfiles $output\"\n\n\t    else\n\t      output=\n\t    fi\n\n\t    if ${skipped_export-false}; then\n\t      func_verbose \"generating symbol list for \\`$libname.la'\"\n\t      export_symbols=\"$output_objdir/$libname.exp\"\n\t      $opt_dry_run || $RM $export_symbols\n\t      libobjs=$output\n\t      # Append the command to create the export file.\n\t      test -z \"$concat_cmds\" || concat_cmds=$concat_cmds~\n\t      eval concat_cmds=\\\"\\$concat_cmds$export_symbols_cmds\\\"\n\t      if test -n \"$last_robj\"; then\n\t\teval concat_cmds=\\\"\\$concat_cmds~\\$RM $last_robj\\\"\n\t      fi\n\t    fi\n\n\t    test -n \"$save_libobjs\" &&\n\t      func_verbose \"creating a temporary reloadable object file: $output\"\n\n\t    # Loop through the commands generated above and execute them.\n\t    save_ifs=\"$IFS\"; IFS='~'\n\t    for cmd in $concat_cmds; do\n\t      IFS=\"$save_ifs\"\n\t      $opt_silent || {\n\t\t  func_quote_for_expand \"$cmd\"\n\t\t  eval \"func_echo $func_quote_for_expand_result\"\n\t      }\n\t      $opt_dry_run || eval \"$cmd\" || {\n\t\tlt_exit=$?\n\n\t\t# Restore the uninstalled library and exit\n\t\tif test \"$mode\" = relink; then\n\t\t  ( cd \"$output_objdir\" && \\\n\t\t    $RM \"${realname}T\" && \\\n\t\t    $MV \"${realname}U\" \"$realname\" )\n\t\tfi\n\n\t\texit $lt_exit\n\t      }\n\t    done\n\t    IFS=\"$save_ifs\"\n\n\t    if test -n \"$export_symbols_regex\" && ${skipped_export-false}; then\n\t      func_show_eval '$EGREP -e \"$export_symbols_regex\" \"$export_symbols\" > \"${export_symbols}T\"'\n\t      func_show_eval '$MV \"${export_symbols}T\" \"$export_symbols\"'\n\t    fi\n\t  fi\n\n          if ${skipped_export-false}; then\n\t    if test -n \"$export_symbols\" && test -n \"$include_expsyms\"; then\n\t      tmp_export_symbols=\"$export_symbols\"\n\t      test -n \"$orig_export_symbols\" && tmp_export_symbols=\"$orig_export_symbols\"\n\t      $opt_dry_run || eval '$ECHO \"$include_expsyms\" | $SP2NL >> \"$tmp_export_symbols\"'\n\t    fi\n\n\t    if test -n \"$orig_export_symbols\"; then\n\t      # The given exports_symbols file has to be filtered, so filter it.\n\t      func_verbose \"filter symbol list for \\`$libname.la' to tag DATA exports\"\n\t      # FIXME: $output_objdir/$libname.filter potentially contains lots of\n\t      # 's' commands which not all seds can handle. GNU sed should be fine\n\t      # though. Also, the filter scales superlinearly with the number of\n\t      # global variables. join(1) would be nice here, but unfortunately\n\t      # isn't a blessed tool.\n\t      $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\\(.*\\)\\([ \\,].*\\),s|^\\1$|\\1\\2|,' < $export_symbols > $output_objdir/$libname.filter\n\t      delfiles=\"$delfiles $export_symbols $output_objdir/$libname.filter\"\n\t      export_symbols=$output_objdir/$libname.def\n\t      $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols\n\t    fi\n\t  fi\n\n\t  libobjs=$output\n\t  # Restore the value of output.\n\t  output=$save_output\n\n\t  if test -n \"$convenience\" && test -n \"$whole_archive_flag_spec\"; then\n\t    eval libobjs=\\\"\\$libobjs $whole_archive_flag_spec\\\"\n\t    test \"X$libobjs\" = \"X \" && libobjs=\n\t  fi\n\t  # Expand the library linking commands again to reset the\n\t  # value of $libobjs for piecewise linking.\n\n\t  # Do each of the archive commands.\n\t  if test \"$module\" = yes && test -n \"$module_cmds\" ; then\n\t    if test -n \"$export_symbols\" && test -n \"$module_expsym_cmds\"; then\n\t      cmds=$module_expsym_cmds\n\t    else\n\t      cmds=$module_cmds\n\t    fi\n\t  else\n\t    if test -n \"$export_symbols\" && test -n \"$archive_expsym_cmds\"; then\n\t      cmds=$archive_expsym_cmds\n\t    else\n\t      cmds=$archive_cmds\n\t    fi\n\t  fi\n\tfi\n\n\tif test -n \"$delfiles\"; then\n\t  # Append the command to remove temporary files to $cmds.\n\t  eval cmds=\\\"\\$cmds~\\$RM $delfiles\\\"\n\tfi\n\n\t# Add any objects from preloaded convenience libraries\n\tif test -n \"$dlprefiles\"; then\n\t  gentop=\"$output_objdir/${outputname}x\"\n\t  generated=\"$generated $gentop\"\n\n\t  func_extract_archives $gentop $dlprefiles\n\t  libobjs=\"$libobjs $func_extract_archives_result\"\n\t  test \"X$libobjs\" = \"X \" && libobjs=\n\tfi\n\n\tsave_ifs=\"$IFS\"; IFS='~'\n\tfor cmd in $cmds; do\n\t  IFS=\"$save_ifs\"\n\t  eval cmd=\\\"$cmd\\\"\n\t  $opt_silent || {\n\t    func_quote_for_expand \"$cmd\"\n\t    eval \"func_echo $func_quote_for_expand_result\"\n\t  }\n\t  $opt_dry_run || eval \"$cmd\" || {\n\t    lt_exit=$?\n\n\t    # Restore the uninstalled library and exit\n\t    if test \"$mode\" = relink; then\n\t      ( cd \"$output_objdir\" && \\\n\t        $RM \"${realname}T\" && \\\n\t\t$MV \"${realname}U\" \"$realname\" )\n\t    fi\n\n\t    exit $lt_exit\n\t  }\n\tdone\n\tIFS=\"$save_ifs\"\n\n\t# Restore the uninstalled library and exit\n\tif test \"$mode\" = relink; then\n\t  $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $?\n\n\t  if test -n \"$convenience\"; then\n\t    if test -z \"$whole_archive_flag_spec\"; then\n\t      func_show_eval '${RM}r \"$gentop\"'\n\t    fi\n\t  fi\n\n\t  exit $EXIT_SUCCESS\n\tfi\n\n\t# Create links to the real library.\n\tfor linkname in $linknames; do\n\t  if test \"$realname\" != \"$linkname\"; then\n\t    func_show_eval '(cd \"$output_objdir\" && $RM \"$linkname\" && $LN_S \"$realname\" \"$linkname\")' 'exit $?'\n\t  fi\n\tdone\n\n\t# If -module or -export-dynamic was specified, set the dlname.\n\tif test \"$module\" = yes || test \"$export_dynamic\" = yes; then\n\t  # On all known operating systems, these are identical.\n\t  dlname=\"$soname\"\n\tfi\n      fi\n      ;;\n\n    obj)\n      if test -n \"$dlfiles$dlprefiles\" || test \"$dlself\" != no; then\n\tfunc_warning \"\\`-dlopen' is ignored for objects\"\n      fi\n\n      case \" $deplibs\" in\n      *\\ -l* | *\\ -L*)\n\tfunc_warning \"\\`-l' and \\`-L' are ignored for objects\" ;;\n      esac\n\n      test -n \"$rpath\" && \\\n\tfunc_warning \"\\`-rpath' is ignored for objects\"\n\n      test -n \"$xrpath\" && \\\n\tfunc_warning \"\\`-R' is ignored for objects\"\n\n      test -n \"$vinfo\" && \\\n\tfunc_warning \"\\`-version-info' is ignored for objects\"\n\n      test -n \"$release\" && \\\n\tfunc_warning \"\\`-release' is ignored for objects\"\n\n      case $output in\n      *.lo)\n\ttest -n \"$objs$old_deplibs\" && \\\n\t  func_fatal_error \"cannot build library object \\`$output' from non-libtool objects\"\n\n\tlibobj=$output\n\tfunc_lo2o \"$libobj\"\n\tobj=$func_lo2o_result\n\t;;\n      *)\n\tlibobj=\n\tobj=\"$output\"\n\t;;\n      esac\n\n      # Delete the old objects.\n      $opt_dry_run || $RM $obj $libobj\n\n      # Objects from convenience libraries.  This assumes\n      # single-version convenience libraries.  Whenever we create\n      # different ones for PIC/non-PIC, this we'll have to duplicate\n      # the extraction.\n      reload_conv_objs=\n      gentop=\n      # reload_cmds runs $LD directly, so let us get rid of\n      # -Wl from whole_archive_flag_spec and hope we can get by with\n      # turning comma into space..\n      wl=\n\n      if test -n \"$convenience\"; then\n\tif test -n \"$whole_archive_flag_spec\"; then\n\t  eval tmp_whole_archive_flags=\\\"$whole_archive_flag_spec\\\"\n\t  reload_conv_objs=$reload_objs\\ `$ECHO \"$tmp_whole_archive_flags\" | $SED 's|,| |g'`\n\telse\n\t  gentop=\"$output_objdir/${obj}x\"\n\t  generated=\"$generated $gentop\"\n\n\t  func_extract_archives $gentop $convenience\n\t  reload_conv_objs=\"$reload_objs $func_extract_archives_result\"\n\tfi\n      fi\n\n      # Create the old-style object.\n      reload_objs=\"$objs$old_deplibs \"`$ECHO \"$libobjs\" | $SP2NL | $SED \"/\\.${libext}$/d; /\\.lib$/d; $lo2o\" | $NL2SP`\" $reload_conv_objs\" ### testsuite: skip nested quoting test\n\n      output=\"$obj\"\n      func_execute_cmds \"$reload_cmds\" 'exit $?'\n\n      # Exit if we aren't doing a library object file.\n      if test -z \"$libobj\"; then\n\tif test -n \"$gentop\"; then\n\t  func_show_eval '${RM}r \"$gentop\"'\n\tfi\n\n\texit $EXIT_SUCCESS\n      fi\n\n      if test \"$build_libtool_libs\" != yes; then\n\tif test -n \"$gentop\"; then\n\t  func_show_eval '${RM}r \"$gentop\"'\n\tfi\n\n\t# Create an invalid libtool object if no PIC, so that we don't\n\t# accidentally link it into a program.\n\t# $show \"echo timestamp > $libobj\"\n\t# $opt_dry_run || eval \"echo timestamp > $libobj\" || exit $?\n\texit $EXIT_SUCCESS\n      fi\n\n      if test -n \"$pic_flag\" || test \"$pic_mode\" != default; then\n\t# Only do commands if we really have different PIC objects.\n\treload_objs=\"$libobjs $reload_conv_objs\"\n\toutput=\"$libobj\"\n\tfunc_execute_cmds \"$reload_cmds\" 'exit $?'\n      fi\n\n      if test -n \"$gentop\"; then\n\tfunc_show_eval '${RM}r \"$gentop\"'\n      fi\n\n      exit $EXIT_SUCCESS\n      ;;\n\n    prog)\n      case $host in\n\t*cygwin*) func_stripname '' '.exe' \"$output\"\n\t          output=$func_stripname_result.exe;;\n      esac\n      test -n \"$vinfo\" && \\\n\tfunc_warning \"\\`-version-info' is ignored for programs\"\n\n      test -n \"$release\" && \\\n\tfunc_warning \"\\`-release' is ignored for programs\"\n\n      test \"$preload\" = yes \\\n        && test \"$dlopen_support\" = unknown \\\n\t&& test \"$dlopen_self\" = unknown \\\n\t&& test \"$dlopen_self_static\" = unknown && \\\n\t  func_warning \"\\`LT_INIT([dlopen])' not used. Assuming no dlopen support.\"\n\n      case $host in\n      *-*-rhapsody* | *-*-darwin1.[012])\n\t# On Rhapsody replace the C library is the System framework\n\tcompile_deplibs=`$ECHO \" $compile_deplibs\" | $SED 's/ -lc / System.ltframework /'`\n\tfinalize_deplibs=`$ECHO \" $finalize_deplibs\" | $SED 's/ -lc / System.ltframework /'`\n\t;;\n      esac\n\n      case $host in\n      *-*-darwin*)\n\t# Don't allow lazy linking, it breaks C++ global constructors\n\t# But is supposedly fixed on 10.4 or later (yay!).\n\tif test \"$tagname\" = CXX ; then\n\t  case ${MACOSX_DEPLOYMENT_TARGET-10.0} in\n\t    10.[0123])\n\t      compile_command=\"$compile_command ${wl}-bind_at_load\"\n\t      finalize_command=\"$finalize_command ${wl}-bind_at_load\"\n\t    ;;\n\t  esac\n\tfi\n\t# Time to change all our \"foo.ltframework\" stuff back to \"-framework foo\"\n\tcompile_deplibs=`$ECHO \" $compile_deplibs\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\tfinalize_deplibs=`$ECHO \" $finalize_deplibs\" | $SED 's% \\([^ $]*\\).ltframework% -framework \\1%g'`\n\t;;\n      esac\n\n\n      # move library search paths that coincide with paths to not yet\n      # installed libraries to the beginning of the library search list\n      new_libs=\n      for path in $notinst_path; do\n\tcase \" $new_libs \" in\n\t*\" -L$path/$objdir \"*) ;;\n\t*)\n\t  case \" $compile_deplibs \" in\n\t  *\" -L$path/$objdir \"*)\n\t    new_libs=\"$new_libs -L$path/$objdir\" ;;\n\t  esac\n\t  ;;\n\tesac\n      done\n      for deplib in $compile_deplibs; do\n\tcase $deplib in\n\t-L*)\n\t  case \" $new_libs \" in\n\t  *\" $deplib \"*) ;;\n\t  *) new_libs=\"$new_libs $deplib\" ;;\n\t  esac\n\t  ;;\n\t*) new_libs=\"$new_libs $deplib\" ;;\n\tesac\n      done\n      compile_deplibs=\"$new_libs\"\n\n\n      compile_command=\"$compile_command $compile_deplibs\"\n      finalize_command=\"$finalize_command $finalize_deplibs\"\n\n      if test -n \"$rpath$xrpath\"; then\n\t# If the user specified any rpath flags, then add them.\n\tfor libdir in $rpath $xrpath; do\n\t  # This is the magic to use -rpath.\n\t  case \"$finalize_rpath \" in\n\t  *\" $libdir \"*) ;;\n\t  *) finalize_rpath=\"$finalize_rpath $libdir\" ;;\n\t  esac\n\tdone\n      fi\n\n      # Now hardcode the library paths\n      rpath=\n      hardcode_libdirs=\n      for libdir in $compile_rpath $finalize_rpath; do\n\tif test -n \"$hardcode_libdir_flag_spec\"; then\n\t  if test -n \"$hardcode_libdir_separator\"; then\n\t    if test -z \"$hardcode_libdirs\"; then\n\t      hardcode_libdirs=\"$libdir\"\n\t    else\n\t      # Just accumulate the unique libdirs.\n\t      case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in\n\t      *\"$hardcode_libdir_separator$libdir$hardcode_libdir_separator\"*)\n\t\t;;\n\t      *)\n\t\thardcode_libdirs=\"$hardcode_libdirs$hardcode_libdir_separator$libdir\"\n\t\t;;\n\t      esac\n\t    fi\n\t  else\n\t    eval flag=\\\"$hardcode_libdir_flag_spec\\\"\n\t    rpath=\"$rpath $flag\"\n\t  fi\n\telif test -n \"$runpath_var\"; then\n\t  case \"$perm_rpath \" in\n\t  *\" $libdir \"*) ;;\n\t  *) perm_rpath=\"$perm_rpath $libdir\" ;;\n\t  esac\n\tfi\n\tcase $host in\n\t*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)\n\t  testbindir=`${ECHO} \"$libdir\" | ${SED} -e 's*/lib$*/bin*'`\n\t  case :$dllsearchpath: in\n\t  *\":$libdir:\"*) ;;\n\t  ::) dllsearchpath=$libdir;;\n\t  *) dllsearchpath=\"$dllsearchpath:$libdir\";;\n\t  esac\n\t  case :$dllsearchpath: in\n\t  *\":$testbindir:\"*) ;;\n\t  ::) dllsearchpath=$testbindir;;\n\t  *) dllsearchpath=\"$dllsearchpath:$testbindir\";;\n\t  esac\n\t  ;;\n\tesac\n      done\n      # Substitute the hardcoded libdirs into the rpath.\n      if test -n \"$hardcode_libdir_separator\" &&\n\t test -n \"$hardcode_libdirs\"; then\n\tlibdir=\"$hardcode_libdirs\"\n\teval rpath=\\\" $hardcode_libdir_flag_spec\\\"\n      fi\n      compile_rpath=\"$rpath\"\n\n      rpath=\n      hardcode_libdirs=\n      for libdir in $finalize_rpath; do\n\tif test -n \"$hardcode_libdir_flag_spec\"; then\n\t  if test -n \"$hardcode_libdir_separator\"; then\n\t    if test -z \"$hardcode_libdirs\"; then\n\t      hardcode_libdirs=\"$libdir\"\n\t    else\n\t      # Just accumulate the unique libdirs.\n\t      case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in\n\t      *\"$hardcode_libdir_separator$libdir$hardcode_libdir_separator\"*)\n\t\t;;\n\t      *)\n\t\thardcode_libdirs=\"$hardcode_libdirs$hardcode_libdir_separator$libdir\"\n\t\t;;\n\t      esac\n\t    fi\n\t  else\n\t    eval flag=\\\"$hardcode_libdir_flag_spec\\\"\n\t    rpath=\"$rpath $flag\"\n\t  fi\n\telif test -n \"$runpath_var\"; then\n\t  case \"$finalize_perm_rpath \" in\n\t  *\" $libdir \"*) ;;\n\t  *) finalize_perm_rpath=\"$finalize_perm_rpath $libdir\" ;;\n\t  esac\n\tfi\n      done\n      # Substitute the hardcoded libdirs into the rpath.\n      if test -n \"$hardcode_libdir_separator\" &&\n\t test -n \"$hardcode_libdirs\"; then\n\tlibdir=\"$hardcode_libdirs\"\n\teval rpath=\\\" $hardcode_libdir_flag_spec\\\"\n      fi\n      finalize_rpath=\"$rpath\"\n\n      if test -n \"$libobjs\" && test \"$build_old_libs\" = yes; then\n\t# Transform all the library objects into standard objects.\n\tcompile_command=`$ECHO \"$compile_command\" | $SP2NL | $SED \"$lo2o\" | $NL2SP`\n\tfinalize_command=`$ECHO \"$finalize_command\" | $SP2NL | $SED \"$lo2o\" | $NL2SP`\n      fi\n\n      func_generate_dlsyms \"$outputname\" \"@PROGRAM@\" \"no\"\n\n      # template prelinking step\n      if test -n \"$prelink_cmds\"; then\n\tfunc_execute_cmds \"$prelink_cmds\" 'exit $?'\n      fi\n\n      wrappers_required=yes\n      case $host in\n      *cegcc* | *mingw32ce*)\n        # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway.\n        wrappers_required=no\n        ;;\n      *cygwin* | *mingw* )\n        if test \"$build_libtool_libs\" != yes; then\n          wrappers_required=no\n        fi\n        ;;\n      *)\n        if test \"$need_relink\" = no || test \"$build_libtool_libs\" != yes; then\n          wrappers_required=no\n        fi\n        ;;\n      esac\n      if test \"$wrappers_required\" = no; then\n\t# Replace the output file specification.\n\tcompile_command=`$ECHO \"$compile_command\" | $SED 's%@OUTPUT@%'\"$output\"'%g'`\n\tlink_command=\"$compile_command$compile_rpath\"\n\n\t# We have no uninstalled library dependencies, so finalize right now.\n\texit_status=0\n\tfunc_show_eval \"$link_command\" 'exit_status=$?'\n\n\t# Delete the generated files.\n\tif test -f \"$output_objdir/${outputname}S.${objext}\"; then\n\t  func_show_eval '$RM \"$output_objdir/${outputname}S.${objext}\"'\n\tfi\n\n\texit $exit_status\n      fi\n\n      if test -n \"$compile_shlibpath$finalize_shlibpath\"; then\n\tcompile_command=\"$shlibpath_var=\\\"$compile_shlibpath$finalize_shlibpath\\$$shlibpath_var\\\" $compile_command\"\n      fi\n      if test -n \"$finalize_shlibpath\"; then\n\tfinalize_command=\"$shlibpath_var=\\\"$finalize_shlibpath\\$$shlibpath_var\\\" $finalize_command\"\n      fi\n\n      compile_var=\n      finalize_var=\n      if test -n \"$runpath_var\"; then\n\tif test -n \"$perm_rpath\"; then\n\t  # We should set the runpath_var.\n\t  rpath=\n\t  for dir in $perm_rpath; do\n\t    rpath=\"$rpath$dir:\"\n\t  done\n\t  compile_var=\"$runpath_var=\\\"$rpath\\$$runpath_var\\\" \"\n\tfi\n\tif test -n \"$finalize_perm_rpath\"; then\n\t  # We should set the runpath_var.\n\t  rpath=\n\t  for dir in $finalize_perm_rpath; do\n\t    rpath=\"$rpath$dir:\"\n\t  done\n\t  finalize_var=\"$runpath_var=\\\"$rpath\\$$runpath_var\\\" \"\n\tfi\n      fi\n\n      if test \"$no_install\" = yes; then\n\t# We don't need to create a wrapper script.\n\tlink_command=\"$compile_var$compile_command$compile_rpath\"\n\t# Replace the output file specification.\n\tlink_command=`$ECHO \"$link_command\" | $SED 's%@OUTPUT@%'\"$output\"'%g'`\n\t# Delete the old output file.\n\t$opt_dry_run || $RM $output\n\t# Link the executable and exit\n\tfunc_show_eval \"$link_command\" 'exit $?'\n\texit $EXIT_SUCCESS\n      fi\n\n      if test \"$hardcode_action\" = relink; then\n\t# Fast installation is not supported\n\tlink_command=\"$compile_var$compile_command$compile_rpath\"\n\trelink_command=\"$finalize_var$finalize_command$finalize_rpath\"\n\n\tfunc_warning \"this platform does not like uninstalled shared libraries\"\n\tfunc_warning \"\\`$output' will be relinked during installation\"\n      else\n\tif test \"$fast_install\" != no; then\n\t  link_command=\"$finalize_var$compile_command$finalize_rpath\"\n\t  if test \"$fast_install\" = yes; then\n\t    relink_command=`$ECHO \"$compile_var$compile_command$compile_rpath\" | $SED 's%@OUTPUT@%\\$progdir/\\$file%g'`\n\t  else\n\t    # fast_install is set to needless\n\t    relink_command=\n\t  fi\n\telse\n\t  link_command=\"$compile_var$compile_command$compile_rpath\"\n\t  relink_command=\"$finalize_var$finalize_command$finalize_rpath\"\n\tfi\n      fi\n\n      # Replace the output file specification.\n      link_command=`$ECHO \"$link_command\" | $SED 's%@OUTPUT@%'\"$output_objdir/$outputname\"'%g'`\n\n      # Delete the old output files.\n      $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname\n\n      func_show_eval \"$link_command\" 'exit $?'\n\n      # Now create the wrapper script.\n      func_verbose \"creating $output\"\n\n      # Quote the relink command for shipping.\n      if test -n \"$relink_command\"; then\n\t# Preserve any variables that may affect compiler behavior\n\tfor var in $variables_saved_for_relink; do\n\t  if eval test -z \\\"\\${$var+set}\\\"; then\n\t    relink_command=\"{ test -z \\\"\\${$var+set}\\\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command\"\n\t  elif eval var_value=\\$$var; test -z \"$var_value\"; then\n\t    relink_command=\"$var=; export $var; $relink_command\"\n\t  else\n\t    func_quote_for_eval \"$var_value\"\n\t    relink_command=\"$var=$func_quote_for_eval_result; export $var; $relink_command\"\n\t  fi\n\tdone\n\trelink_command=\"(cd `pwd`; $relink_command)\"\n\trelink_command=`$ECHO \"$relink_command\" | $SED \"$sed_quote_subst\"`\n      fi\n\n      # Only actually do things if not in dry run mode.\n      $opt_dry_run || {\n\t# win32 will think the script is a binary if it has\n\t# a .exe suffix, so we strip it off here.\n\tcase $output in\n\t  *.exe) func_stripname '' '.exe' \"$output\"\n\t         output=$func_stripname_result ;;\n\tesac\n\t# test for cygwin because mv fails w/o .exe extensions\n\tcase $host in\n\t  *cygwin*)\n\t    exeext=.exe\n\t    func_stripname '' '.exe' \"$outputname\"\n\t    outputname=$func_stripname_result ;;\n\t  *) exeext= ;;\n\tesac\n\tcase $host in\n\t  *cygwin* | *mingw* )\n\t    func_dirname_and_basename \"$output\" \"\" \".\"\n\t    output_name=$func_basename_result\n\t    output_path=$func_dirname_result\n\t    cwrappersource=\"$output_path/$objdir/lt-$output_name.c\"\n\t    cwrapper=\"$output_path/$output_name.exe\"\n\t    $RM $cwrappersource $cwrapper\n\t    trap \"$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE\" 1 2 15\n\n\t    func_emit_cwrapperexe_src > $cwrappersource\n\n\t    # The wrapper executable is built using the $host compiler,\n\t    # because it contains $host paths and files. If cross-\n\t    # compiling, it, like the target executable, must be\n\t    # executed on the $host or under an emulation environment.\n\t    $opt_dry_run || {\n\t      $LTCC $LTCFLAGS -o $cwrapper $cwrappersource\n\t      $STRIP $cwrapper\n\t    }\n\n\t    # Now, create the wrapper script for func_source use:\n\t    func_ltwrapper_scriptname $cwrapper\n\t    $RM $func_ltwrapper_scriptname_result\n\t    trap \"$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE\" 1 2 15\n\t    $opt_dry_run || {\n\t      # note: this script will not be executed, so do not chmod.\n\t      if test \"x$build\" = \"x$host\" ; then\n\t\t$cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result\n\t      else\n\t\tfunc_emit_wrapper no > $func_ltwrapper_scriptname_result\n\t      fi\n\t    }\n\t  ;;\n\t  * )\n\t    $RM $output\n\t    trap \"$RM $output; exit $EXIT_FAILURE\" 1 2 15\n\n\t    func_emit_wrapper no > $output\n\t    chmod +x $output\n\t  ;;\n\tesac\n      }\n      exit $EXIT_SUCCESS\n      ;;\n    esac\n\n    # See if we need to build an old-fashioned archive.\n    for oldlib in $oldlibs; do\n\n      if test \"$build_libtool_libs\" = convenience; then\n\toldobjs=\"$libobjs_save $symfileobj\"\n\taddlibs=\"$convenience\"\n\tbuild_libtool_libs=no\n      else\n\tif test \"$build_libtool_libs\" = module; then\n\t  oldobjs=\"$libobjs_save\"\n\t  build_libtool_libs=no\n\telse\n\t  oldobjs=\"$old_deplibs $non_pic_objects\"\n\t  if test \"$preload\" = yes && test -f \"$symfileobj\"; then\n\t    oldobjs=\"$oldobjs $symfileobj\"\n\t  fi\n\tfi\n\taddlibs=\"$old_convenience\"\n      fi\n\n      if test -n \"$addlibs\"; then\n\tgentop=\"$output_objdir/${outputname}x\"\n\tgenerated=\"$generated $gentop\"\n\n\tfunc_extract_archives $gentop $addlibs\n\toldobjs=\"$oldobjs $func_extract_archives_result\"\n      fi\n\n      # Do each command in the archive commands.\n      if test -n \"$old_archive_from_new_cmds\" && test \"$build_libtool_libs\" = yes; then\n\tcmds=$old_archive_from_new_cmds\n      else\n\n\t# Add any objects from preloaded convenience libraries\n\tif test -n \"$dlprefiles\"; then\n\t  gentop=\"$output_objdir/${outputname}x\"\n\t  generated=\"$generated $gentop\"\n\n\t  func_extract_archives $gentop $dlprefiles\n\t  oldobjs=\"$oldobjs $func_extract_archives_result\"\n\tfi\n\n\t# POSIX demands no paths to be encoded in archives.  We have\n\t# to avoid creating archives with duplicate basenames if we\n\t# might have to extract them afterwards, e.g., when creating a\n\t# static archive out of a convenience library, or when linking\n\t# the entirety of a libtool archive into another (currently\n\t# not supported by libtool).\n\tif (for obj in $oldobjs\n\t    do\n\t      func_basename \"$obj\"\n\t      $ECHO \"$func_basename_result\"\n\t    done | sort | sort -uc >/dev/null 2>&1); then\n\t  :\n\telse\n\t  echo \"copying selected object files to avoid basename conflicts...\"\n\t  gentop=\"$output_objdir/${outputname}x\"\n\t  generated=\"$generated $gentop\"\n\t  func_mkdir_p \"$gentop\"\n\t  save_oldobjs=$oldobjs\n\t  oldobjs=\n\t  counter=1\n\t  for obj in $save_oldobjs\n\t  do\n\t    func_basename \"$obj\"\n\t    objbase=\"$func_basename_result\"\n\t    case \" $oldobjs \" in\n\t    \" \") oldobjs=$obj ;;\n\t    *[\\ /]\"$objbase \"*)\n\t      while :; do\n\t\t# Make sure we don't pick an alternate name that also\n\t\t# overlaps.\n\t\tnewobj=lt$counter-$objbase\n\t\tfunc_arith $counter + 1\n\t\tcounter=$func_arith_result\n\t\tcase \" $oldobjs \" in\n\t\t*[\\ /]\"$newobj \"*) ;;\n\t\t*) if test ! -f \"$gentop/$newobj\"; then break; fi ;;\n\t\tesac\n\t      done\n\t      func_show_eval \"ln $obj $gentop/$newobj || cp $obj $gentop/$newobj\"\n\t      oldobjs=\"$oldobjs $gentop/$newobj\"\n\t      ;;\n\t    *) oldobjs=\"$oldobjs $obj\" ;;\n\t    esac\n\t  done\n\tfi\n\teval cmds=\\\"$old_archive_cmds\\\"\n\n\tfunc_len \" $cmds\"\n\tlen=$func_len_result\n\tif test \"$len\" -lt \"$max_cmd_len\" || test \"$max_cmd_len\" -le -1; then\n\t  cmds=$old_archive_cmds\n\telse\n\t  # the command line is too long to link in one step, link in parts\n\t  func_verbose \"using piecewise archive linking...\"\n\t  save_RANLIB=$RANLIB\n\t  RANLIB=:\n\t  objlist=\n\t  concat_cmds=\n\t  save_oldobjs=$oldobjs\n\t  oldobjs=\n\t  # Is there a better way of finding the last object in the list?\n\t  for obj in $save_oldobjs\n\t  do\n\t    last_oldobj=$obj\n\t  done\n\t  eval test_cmds=\\\"$old_archive_cmds\\\"\n\t  func_len \" $test_cmds\"\n\t  len0=$func_len_result\n\t  len=$len0\n\t  for obj in $save_oldobjs\n\t  do\n\t    func_len \" $obj\"\n\t    func_arith $len + $func_len_result\n\t    len=$func_arith_result\n\t    func_append objlist \" $obj\"\n\t    if test \"$len\" -lt \"$max_cmd_len\"; then\n\t      :\n\t    else\n\t      # the above command should be used before it gets too long\n\t      oldobjs=$objlist\n\t      if test \"$obj\" = \"$last_oldobj\" ; then\n\t\tRANLIB=$save_RANLIB\n\t      fi\n\t      test -z \"$concat_cmds\" || concat_cmds=$concat_cmds~\n\t      eval concat_cmds=\\\"\\${concat_cmds}$old_archive_cmds\\\"\n\t      objlist=\n\t      len=$len0\n\t    fi\n\t  done\n\t  RANLIB=$save_RANLIB\n\t  oldobjs=$objlist\n\t  if test \"X$oldobjs\" = \"X\" ; then\n\t    eval cmds=\\\"\\$concat_cmds\\\"\n\t  else\n\t    eval cmds=\\\"\\$concat_cmds~\\$old_archive_cmds\\\"\n\t  fi\n\tfi\n      fi\n      func_execute_cmds \"$cmds\" 'exit $?'\n    done\n\n    test -n \"$generated\" && \\\n      func_show_eval \"${RM}r$generated\"\n\n    # Now create the libtool archive.\n    case $output in\n    *.la)\n      old_library=\n      test \"$build_old_libs\" = yes && old_library=\"$libname.$libext\"\n      func_verbose \"creating $output\"\n\n      # Preserve any variables that may affect compiler behavior\n      for var in $variables_saved_for_relink; do\n\tif eval test -z \\\"\\${$var+set}\\\"; then\n\t  relink_command=\"{ test -z \\\"\\${$var+set}\\\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command\"\n\telif eval var_value=\\$$var; test -z \"$var_value\"; then\n\t  relink_command=\"$var=; export $var; $relink_command\"\n\telse\n\t  func_quote_for_eval \"$var_value\"\n\t  relink_command=\"$var=$func_quote_for_eval_result; export $var; $relink_command\"\n\tfi\n      done\n      # Quote the link command for shipping.\n      relink_command=\"(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)\"\n      relink_command=`$ECHO \"$relink_command\" | $SED \"$sed_quote_subst\"`\n      if test \"$hardcode_automatic\" = yes ; then\n\trelink_command=\n      fi\n\n      # Only create the output if not a dry run.\n      $opt_dry_run || {\n\tfor installed in no yes; do\n\t  if test \"$installed\" = yes; then\n\t    if test -z \"$install_libdir\"; then\n\t      break\n\t    fi\n\t    output=\"$output_objdir/$outputname\"i\n\t    # Replace all uninstalled libtool libraries with the installed ones\n\t    newdependency_libs=\n\t    for deplib in $dependency_libs; do\n\t      case $deplib in\n\t      *.la)\n\t\tfunc_basename \"$deplib\"\n\t\tname=\"$func_basename_result\"\n\t\teval libdir=`${SED} -n -e 's/^libdir=\\(.*\\)$/\\1/p' $deplib`\n\t\ttest -z \"$libdir\" && \\\n\t\t  func_fatal_error \"\\`$deplib' is not a valid libtool archive\"\n\t\tnewdependency_libs=\"$newdependency_libs $libdir/$name\"\n\t\t;;\n\t      *) newdependency_libs=\"$newdependency_libs $deplib\" ;;\n\t      esac\n\t    done\n\t    dependency_libs=\"$newdependency_libs\"\n\t    newdlfiles=\n\n\t    for lib in $dlfiles; do\n\t      case $lib in\n\t      *.la)\n\t        func_basename \"$lib\"\n\t\tname=\"$func_basename_result\"\n\t\teval libdir=`${SED} -n -e 's/^libdir=\\(.*\\)$/\\1/p' $lib`\n\t\ttest -z \"$libdir\" && \\\n\t\t  func_fatal_error \"\\`$lib' is not a valid libtool archive\"\n\t\tnewdlfiles=\"$newdlfiles $libdir/$name\"\n\t\t;;\n\t      *) newdlfiles=\"$newdlfiles $lib\" ;;\n\t      esac\n\t    done\n\t    dlfiles=\"$newdlfiles\"\n\t    newdlprefiles=\n\t    for lib in $dlprefiles; do\n\t      case $lib in\n\t      *.la)\n\t\t# Only pass preopened files to the pseudo-archive (for\n\t\t# eventual linking with the app. that links it) if we\n\t\t# didn't already link the preopened objects directly into\n\t\t# the library:\n\t\tfunc_basename \"$lib\"\n\t\tname=\"$func_basename_result\"\n\t\teval libdir=`${SED} -n -e 's/^libdir=\\(.*\\)$/\\1/p' $lib`\n\t\ttest -z \"$libdir\" && \\\n\t\t  func_fatal_error \"\\`$lib' is not a valid libtool archive\"\n\t\tnewdlprefiles=\"$newdlprefiles $libdir/$name\"\n\t\t;;\n\t      esac\n\t    done\n\t    dlprefiles=\"$newdlprefiles\"\n\t  else\n\t    newdlfiles=\n\t    for lib in $dlfiles; do\n\t      case $lib in\n\t\t[\\\\/]* | [A-Za-z]:[\\\\/]*) abs=\"$lib\" ;;\n\t\t*) abs=`pwd`\"/$lib\" ;;\n\t      esac\n\t      newdlfiles=\"$newdlfiles $abs\"\n\t    done\n\t    dlfiles=\"$newdlfiles\"\n\t    newdlprefiles=\n\t    for lib in $dlprefiles; do\n\t      case $lib in\n\t\t[\\\\/]* | [A-Za-z]:[\\\\/]*) abs=\"$lib\" ;;\n\t\t*) abs=`pwd`\"/$lib\" ;;\n\t      esac\n\t      newdlprefiles=\"$newdlprefiles $abs\"\n\t    done\n\t    dlprefiles=\"$newdlprefiles\"\n\t  fi\n\t  $RM $output\n\t  # place dlname in correct position for cygwin\n\t  # In fact, it would be nice if we could use this code for all target\n\t  # systems that can't hard-code library paths into their executables\n\t  # and that have no shared library path variable independent of PATH,\n\t  # but it turns out we can't easily determine that from inspecting\n\t  # libtool variables, so we have to hard-code the OSs to which it\n\t  # applies here; at the moment, that means platforms that use the PE\n\t  # object format with DLL files.  See the long comment at the top of\n\t  # tests/bindir.at for full details.\n\t  tdlname=$dlname\n\t  case $host,$output,$installed,$module,$dlname in\n\t    *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll)\n\t      # If a -bindir argument was supplied, place the dll there.\n\t      if test \"x$bindir\" != x ;\n\t      then\n\t\tfunc_relative_path \"$install_libdir\" \"$bindir\"\n\t\ttdlname=$func_relative_path_result$dlname\n\t      else\n\t\t# Otherwise fall back on heuristic.\n\t\ttdlname=../bin/$dlname\n\t      fi\n\t      ;;\n\t  esac\n\t  $ECHO > $output \"\\\n# $outputname - a libtool library file\n# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION\n#\n# Please DO NOT delete this file!\n# It is necessary for linking the library.\n\n# The name that we can dlopen(3).\ndlname='$tdlname'\n\n# Names of this library.\nlibrary_names='$library_names'\n\n# The name of the static archive.\nold_library='$old_library'\n\n# Linker flags that can not go in dependency_libs.\ninherited_linker_flags='$new_inherited_linker_flags'\n\n# Libraries that this one depends upon.\ndependency_libs='$dependency_libs'\n\n# Names of additional weak libraries provided by this library\nweak_library_names='$weak_libs'\n\n# Version information for $libname.\ncurrent=$current\nage=$age\nrevision=$revision\n\n# Is this an already installed library?\ninstalled=$installed\n\n# Should we warn about portability when linking against -modules?\nshouldnotlink=$module\n\n# Files to dlopen/dlpreopen\ndlopen='$dlfiles'\ndlpreopen='$dlprefiles'\n\n# Directory that this library needs to be installed in:\nlibdir='$install_libdir'\"\n\t  if test \"$installed\" = no && test \"$need_relink\" = yes; then\n\t    $ECHO >> $output \"\\\nrelink_command=\\\"$relink_command\\\"\"\n\t  fi\n\tdone\n      }\n\n      # Do a symbolic link so that the libtool archive can be found in\n      # LD_LIBRARY_PATH before the program is installed.\n      func_show_eval '( cd \"$output_objdir\" && $RM \"$outputname\" && $LN_S \"../$outputname\" \"$outputname\" )' 'exit $?'\n      ;;\n    esac\n    exit $EXIT_SUCCESS\n}\n\n{ test \"$mode\" = link || test \"$mode\" = relink; } &&\n    func_mode_link ${1+\"$@\"}\n\n\n# func_mode_uninstall arg...\nfunc_mode_uninstall ()\n{\n    $opt_debug\n    RM=\"$nonopt\"\n    files=\n    rmforce=\n    exit_status=0\n\n    # This variable tells wrapper scripts just to set variables rather\n    # than running their programs.\n    libtool_install_magic=\"$magic\"\n\n    for arg\n    do\n      case $arg in\n      -f) RM=\"$RM $arg\"; rmforce=yes ;;\n      -*) RM=\"$RM $arg\" ;;\n      *) files=\"$files $arg\" ;;\n      esac\n    done\n\n    test -z \"$RM\" && \\\n      func_fatal_help \"you must specify an RM program\"\n\n    rmdirs=\n\n    origobjdir=\"$objdir\"\n    for file in $files; do\n      func_dirname \"$file\" \"\" \".\"\n      dir=\"$func_dirname_result\"\n      if test \"X$dir\" = X.; then\n\tobjdir=\"$origobjdir\"\n      else\n\tobjdir=\"$dir/$origobjdir\"\n      fi\n      func_basename \"$file\"\n      name=\"$func_basename_result\"\n      test \"$mode\" = uninstall && objdir=\"$dir\"\n\n      # Remember objdir for removal later, being careful to avoid duplicates\n      if test \"$mode\" = clean; then\n\tcase \" $rmdirs \" in\n\t  *\" $objdir \"*) ;;\n\t  *) rmdirs=\"$rmdirs $objdir\" ;;\n\tesac\n      fi\n\n      # Don't error if the file doesn't exist and rm -f was used.\n      if { test -L \"$file\"; } >/dev/null 2>&1 ||\n\t { test -h \"$file\"; } >/dev/null 2>&1 ||\n\t test -f \"$file\"; then\n\t:\n      elif test -d \"$file\"; then\n\texit_status=1\n\tcontinue\n      elif test \"$rmforce\" = yes; then\n\tcontinue\n      fi\n\n      rmfiles=\"$file\"\n\n      case $name in\n      *.la)\n\t# Possibly a libtool archive, so verify it.\n\tif func_lalib_p \"$file\"; then\n\t  func_source $dir/$name\n\n\t  # Delete the libtool libraries and symlinks.\n\t  for n in $library_names; do\n\t    rmfiles=\"$rmfiles $objdir/$n\"\n\t  done\n\t  test -n \"$old_library\" && rmfiles=\"$rmfiles $objdir/$old_library\"\n\n\t  case \"$mode\" in\n\t  clean)\n\t    case \"  $library_names \" in\n\t    # \"  \" in the beginning catches empty $dlname\n\t    *\" $dlname \"*) ;;\n\t    *) rmfiles=\"$rmfiles $objdir/$dlname\" ;;\n\t    esac\n\t    test -n \"$libdir\" && rmfiles=\"$rmfiles $objdir/$name $objdir/${name}i\"\n\t    ;;\n\t  uninstall)\n\t    if test -n \"$library_names\"; then\n\t      # Do each command in the postuninstall commands.\n\t      func_execute_cmds \"$postuninstall_cmds\" 'test \"$rmforce\" = yes || exit_status=1'\n\t    fi\n\n\t    if test -n \"$old_library\"; then\n\t      # Do each command in the old_postuninstall commands.\n\t      func_execute_cmds \"$old_postuninstall_cmds\" 'test \"$rmforce\" = yes || exit_status=1'\n\t    fi\n\t    # FIXME: should reinstall the best remaining shared library.\n\t    ;;\n\t  esac\n\tfi\n\t;;\n\n      *.lo)\n\t# Possibly a libtool object, so verify it.\n\tif func_lalib_p \"$file\"; then\n\n\t  # Read the .lo file\n\t  func_source $dir/$name\n\n\t  # Add PIC object to the list of files to remove.\n\t  if test -n \"$pic_object\" &&\n\t     test \"$pic_object\" != none; then\n\t    rmfiles=\"$rmfiles $dir/$pic_object\"\n\t  fi\n\n\t  # Add non-PIC object to the list of files to remove.\n\t  if test -n \"$non_pic_object\" &&\n\t     test \"$non_pic_object\" != none; then\n\t    rmfiles=\"$rmfiles $dir/$non_pic_object\"\n\t  fi\n\tfi\n\t;;\n\n      *)\n\tif test \"$mode\" = clean ; then\n\t  noexename=$name\n\t  case $file in\n\t  *.exe)\n\t    func_stripname '' '.exe' \"$file\"\n\t    file=$func_stripname_result\n\t    func_stripname '' '.exe' \"$name\"\n\t    noexename=$func_stripname_result\n\t    # $file with .exe has already been added to rmfiles,\n\t    # add $file without .exe\n\t    rmfiles=\"$rmfiles $file\"\n\t    ;;\n\t  esac\n\t  # Do a test to see if this is a libtool program.\n\t  if func_ltwrapper_p \"$file\"; then\n\t    if func_ltwrapper_executable_p \"$file\"; then\n\t      func_ltwrapper_scriptname \"$file\"\n\t      relink_command=\n\t      func_source $func_ltwrapper_scriptname_result\n\t      rmfiles=\"$rmfiles $func_ltwrapper_scriptname_result\"\n\t    else\n\t      relink_command=\n\t      func_source $dir/$noexename\n\t    fi\n\n\t    # note $name still contains .exe if it was in $file originally\n\t    # as does the version of $file that was added into $rmfiles\n\t    rmfiles=\"$rmfiles $objdir/$name $objdir/${name}S.${objext}\"\n\t    if test \"$fast_install\" = yes && test -n \"$relink_command\"; then\n\t      rmfiles=\"$rmfiles $objdir/lt-$name\"\n\t    fi\n\t    if test \"X$noexename\" != \"X$name\" ; then\n\t      rmfiles=\"$rmfiles $objdir/lt-${noexename}.c\"\n\t    fi\n\t  fi\n\tfi\n\t;;\n      esac\n      func_show_eval \"$RM $rmfiles\" 'exit_status=1'\n    done\n    objdir=\"$origobjdir\"\n\n    # Try to remove the ${objdir}s in the directories where we deleted files\n    for dir in $rmdirs; do\n      if test -d \"$dir\"; then\n\tfunc_show_eval \"rmdir $dir >/dev/null 2>&1\"\n      fi\n    done\n\n    exit $exit_status\n}\n\n{ test \"$mode\" = uninstall || test \"$mode\" = clean; } &&\n    func_mode_uninstall ${1+\"$@\"}\n\ntest -z \"$mode\" && {\n  help=\"$generic_help\"\n  func_fatal_help \"you must specify a MODE\"\n}\n\ntest -z \"$exec_cmd\" && \\\n  func_fatal_help \"invalid operation mode \\`$mode'\"\n\nif test -n \"$exec_cmd\"; then\n  eval exec \"$exec_cmd\"\n  exit $EXIT_FAILURE\nfi\n\nexit $exit_status\n\n\n# The TAGs below are defined such that we never get into a situation\n# in which we disable both kinds of libraries.  Given conflicting\n# choices, we go for a static library, that is the most portable,\n# since we can't tell whether shared libraries were disabled because\n# the user asked for that or because the platform doesn't support\n# them.  This is particularly important on AIX, because we don't\n# support having both static and shared libraries enabled at the same\n# time on that platform, so we default to a shared-only configuration.\n# If a disable-shared tag is given, we'll fallback to a static-only\n# configuration.  But we'll never go from static-only to shared-only.\n\n# ### BEGIN LIBTOOL TAG CONFIG: disable-shared\nbuild_libtool_libs=no\nbuild_old_libs=yes\n# ### END LIBTOOL TAG CONFIG: disable-shared\n\n# ### BEGIN LIBTOOL TAG CONFIG: disable-static\nbuild_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac`\n# ### END LIBTOOL TAG CONFIG: disable-static\n\n# Local Variables:\n# mode:shell-script\n# sh-indentation:2\n# End:\n# vi:sw=2\n\n"
  },
  {
    "path": "ext/cld/build_aux/missing",
    "content": "#! /bin/sh\n# Common stub for a few missing GNU programs while installing.\n\nscriptversion=2006-05-10.23\n\n# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006\n#   Free Software Foundation, Inc.\n# Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.\n\n# This program is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 2, or (at your option)\n# any later version.\n\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n\n# You should have received a copy of the GNU General Public License\n# along with this program; if not, write to the Free Software\n# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA\n# 02110-1301, USA.\n\n# As a special exception to the GNU General Public License, if you\n# distribute this file as part of a program that contains a\n# configuration script generated by Autoconf, you may include it under\n# the same distribution terms that you use for the rest of that program.\n\nif test $# -eq 0; then\n  echo 1>&2 \"Try \\`$0 --help' for more information\"\n  exit 1\nfi\n\nrun=:\nsed_output='s/.* --output[ =]\\([^ ]*\\).*/\\1/p'\nsed_minuso='s/.* -o \\([^ ]*\\).*/\\1/p'\n\n# In the cases where this matters, `missing' is being run in the\n# srcdir already.\nif test -f configure.ac; then\n  configure_ac=configure.ac\nelse\n  configure_ac=configure.in\nfi\n\nmsg=\"missing on your system\"\n\ncase $1 in\n--run)\n  # Try to run requested program, and just exit if it succeeds.\n  run=\n  shift\n  \"$@\" && exit 0\n  # Exit code 63 means version mismatch.  This often happens\n  # when the user try to use an ancient version of a tool on\n  # a file that requires a minimum version.  In this case we\n  # we should proceed has if the program had been absent, or\n  # if --run hadn't been passed.\n  if test $? = 63; then\n    run=:\n    msg=\"probably too old\"\n  fi\n  ;;\n\n  -h|--h|--he|--hel|--help)\n    echo \"\\\n$0 [OPTION]... PROGRAM [ARGUMENT]...\n\nHandle \\`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an\nerror status if there is no known handling for PROGRAM.\n\nOptions:\n  -h, --help      display this help and exit\n  -v, --version   output version information and exit\n  --run           try to run the given command, and emulate it if it fails\n\nSupported PROGRAM values:\n  aclocal      touch file \\`aclocal.m4'\n  autoconf     touch file \\`configure'\n  autoheader   touch file \\`config.h.in'\n  autom4te     touch the output file, or create a stub one\n  automake     touch all \\`Makefile.in' files\n  bison        create \\`y.tab.[ch]', if possible, from existing .[ch]\n  flex         create \\`lex.yy.c', if possible, from existing .c\n  help2man     touch the output file\n  lex          create \\`lex.yy.c', if possible, from existing .c\n  makeinfo     touch the output file\n  tar          try tar, gnutar, gtar, then tar without non-portable flags\n  yacc         create \\`y.tab.[ch]', if possible, from existing .[ch]\n\nSend bug reports to <bug-automake@gnu.org>.\"\n    exit $?\n    ;;\n\n  -v|--v|--ve|--ver|--vers|--versi|--versio|--version)\n    echo \"missing $scriptversion (GNU Automake)\"\n    exit $?\n    ;;\n\n  -*)\n    echo 1>&2 \"$0: Unknown \\`$1' option\"\n    echo 1>&2 \"Try \\`$0 --help' for more information\"\n    exit 1\n    ;;\n\nesac\n\n# Now exit if we have it, but it failed.  Also exit now if we\n# don't have it and --version was passed (most likely to detect\n# the program).\ncase $1 in\n  lex|yacc)\n    # Not GNU programs, they don't have --version.\n    ;;\n\n  tar)\n    if test -n \"$run\"; then\n       echo 1>&2 \"ERROR: \\`tar' requires --run\"\n       exit 1\n    elif test \"x$2\" = \"x--version\" || test \"x$2\" = \"x--help\"; then\n       exit 1\n    fi\n    ;;\n\n  *)\n    if test -z \"$run\" && ($1 --version) > /dev/null 2>&1; then\n       # We have it, but it failed.\n       exit 1\n    elif test \"x$2\" = \"x--version\" || test \"x$2\" = \"x--help\"; then\n       # Could not run --version or --help.  This is probably someone\n       # running `$TOOL --version' or `$TOOL --help' to check whether\n       # $TOOL exists and not knowing $TOOL uses missing.\n       exit 1\n    fi\n    ;;\nesac\n\n# If it does not exist, or fails to run (possibly an outdated version),\n# try to emulate it.\ncase $1 in\n  aclocal*)\n    echo 1>&2 \"\\\nWARNING: \\`$1' is $msg.  You should only need it if\n         you modified \\`acinclude.m4' or \\`${configure_ac}'.  You might want\n         to install the \\`Automake' and \\`Perl' packages.  Grab them from\n         any GNU archive site.\"\n    touch aclocal.m4\n    ;;\n\n  autoconf)\n    echo 1>&2 \"\\\nWARNING: \\`$1' is $msg.  You should only need it if\n         you modified \\`${configure_ac}'.  You might want to install the\n         \\`Autoconf' and \\`GNU m4' packages.  Grab them from any GNU\n         archive site.\"\n    touch configure\n    ;;\n\n  autoheader)\n    echo 1>&2 \"\\\nWARNING: \\`$1' is $msg.  You should only need it if\n         you modified \\`acconfig.h' or \\`${configure_ac}'.  You might want\n         to install the \\`Autoconf' and \\`GNU m4' packages.  Grab them\n         from any GNU archive site.\"\n    files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\\([^)]*\\)).*/\\1/p' ${configure_ac}`\n    test -z \"$files\" && files=\"config.h\"\n    touch_files=\n    for f in $files; do\n      case $f in\n      *:*) touch_files=\"$touch_files \"`echo \"$f\" |\n\t\t\t\t       sed -e 's/^[^:]*://' -e 's/:.*//'`;;\n      *) touch_files=\"$touch_files $f.in\";;\n      esac\n    done\n    touch $touch_files\n    ;;\n\n  automake*)\n    echo 1>&2 \"\\\nWARNING: \\`$1' is $msg.  You should only need it if\n         you modified \\`Makefile.am', \\`acinclude.m4' or \\`${configure_ac}'.\n         You might want to install the \\`Automake' and \\`Perl' packages.\n         Grab them from any GNU archive site.\"\n    find . -type f -name Makefile.am -print |\n\t   sed 's/\\.am$/.in/' |\n\t   while read f; do touch \"$f\"; done\n    ;;\n\n  autom4te)\n    echo 1>&2 \"\\\nWARNING: \\`$1' is needed, but is $msg.\n         You might have modified some files without having the\n         proper tools for further handling them.\n         You can get \\`$1' as part of \\`Autoconf' from any GNU\n         archive site.\"\n\n    file=`echo \"$*\" | sed -n \"$sed_output\"`\n    test -z \"$file\" && file=`echo \"$*\" | sed -n \"$sed_minuso\"`\n    if test -f \"$file\"; then\n\ttouch $file\n    else\n\ttest -z \"$file\" || exec >$file\n\techo \"#! /bin/sh\"\n\techo \"# Created by GNU Automake missing as a replacement of\"\n\techo \"#  $ $@\"\n\techo \"exit 0\"\n\tchmod +x $file\n\texit 1\n    fi\n    ;;\n\n  bison|yacc)\n    echo 1>&2 \"\\\nWARNING: \\`$1' $msg.  You should only need it if\n         you modified a \\`.y' file.  You may need the \\`Bison' package\n         in order for those modifications to take effect.  You can get\n         \\`Bison' from any GNU archive site.\"\n    rm -f y.tab.c y.tab.h\n    if test $# -ne 1; then\n        eval LASTARG=\"\\${$#}\"\n\tcase $LASTARG in\n\t*.y)\n\t    SRCFILE=`echo \"$LASTARG\" | sed 's/y$/c/'`\n\t    if test -f \"$SRCFILE\"; then\n\t         cp \"$SRCFILE\" y.tab.c\n\t    fi\n\t    SRCFILE=`echo \"$LASTARG\" | sed 's/y$/h/'`\n\t    if test -f \"$SRCFILE\"; then\n\t         cp \"$SRCFILE\" y.tab.h\n\t    fi\n\t  ;;\n\tesac\n    fi\n    if test ! -f y.tab.h; then\n\techo >y.tab.h\n    fi\n    if test ! -f y.tab.c; then\n\techo 'main() { return 0; }' >y.tab.c\n    fi\n    ;;\n\n  lex|flex)\n    echo 1>&2 \"\\\nWARNING: \\`$1' is $msg.  You should only need it if\n         you modified a \\`.l' file.  You may need the \\`Flex' package\n         in order for those modifications to take effect.  You can get\n         \\`Flex' from any GNU archive site.\"\n    rm -f lex.yy.c\n    if test $# -ne 1; then\n        eval LASTARG=\"\\${$#}\"\n\tcase $LASTARG in\n\t*.l)\n\t    SRCFILE=`echo \"$LASTARG\" | sed 's/l$/c/'`\n\t    if test -f \"$SRCFILE\"; then\n\t         cp \"$SRCFILE\" lex.yy.c\n\t    fi\n\t  ;;\n\tesac\n    fi\n    if test ! -f lex.yy.c; then\n\techo 'main() { return 0; }' >lex.yy.c\n    fi\n    ;;\n\n  help2man)\n    echo 1>&2 \"\\\nWARNING: \\`$1' is $msg.  You should only need it if\n\t you modified a dependency of a manual page.  You may need the\n\t \\`Help2man' package in order for those modifications to take\n\t effect.  You can get \\`Help2man' from any GNU archive site.\"\n\n    file=`echo \"$*\" | sed -n \"$sed_output\"`\n    test -z \"$file\" && file=`echo \"$*\" | sed -n \"$sed_minuso\"`\n    if test -f \"$file\"; then\n\ttouch $file\n    else\n\ttest -z \"$file\" || exec >$file\n\techo \".ab help2man is required to generate this page\"\n\texit 1\n    fi\n    ;;\n\n  makeinfo)\n    echo 1>&2 \"\\\nWARNING: \\`$1' is $msg.  You should only need it if\n         you modified a \\`.texi' or \\`.texinfo' file, or any other file\n         indirectly affecting the aspect of the manual.  The spurious\n         call might also be the consequence of using a buggy \\`make' (AIX,\n         DU, IRIX).  You might want to install the \\`Texinfo' package or\n         the \\`GNU make' package.  Grab either from any GNU archive site.\"\n    # The file to touch is that specified with -o ...\n    file=`echo \"$*\" | sed -n \"$sed_output\"`\n    test -z \"$file\" && file=`echo \"$*\" | sed -n \"$sed_minuso\"`\n    if test -z \"$file\"; then\n      # ... or it is the one specified with @setfilename ...\n      infile=`echo \"$*\" | sed 's/.* \\([^ ]*\\) *$/\\1/'`\n      file=`sed -n '\n\t/^@setfilename/{\n\t  s/.* \\([^ ]*\\) *$/\\1/\n\t  p\n\t  q\n\t}' $infile`\n      # ... or it is derived from the source name (dir/f.texi becomes f.info)\n      test -z \"$file\" && file=`echo \"$infile\" | sed 's,.*/,,;s,.[^.]*$,,'`.info\n    fi\n    # If the file does not exist, the user really needs makeinfo;\n    # let's fail without touching anything.\n    test -f $file || exit 1\n    touch $file\n    ;;\n\n  tar)\n    shift\n\n    # We have already tried tar in the generic part.\n    # Look for gnutar/gtar before invocation to avoid ugly error\n    # messages.\n    if (gnutar --version > /dev/null 2>&1); then\n       gnutar \"$@\" && exit 0\n    fi\n    if (gtar --version > /dev/null 2>&1); then\n       gtar \"$@\" && exit 0\n    fi\n    firstarg=\"$1\"\n    if shift; then\n\tcase $firstarg in\n\t*o*)\n\t    firstarg=`echo \"$firstarg\" | sed s/o//`\n\t    tar \"$firstarg\" \"$@\" && exit 0\n\t    ;;\n\tesac\n\tcase $firstarg in\n\t*h*)\n\t    firstarg=`echo \"$firstarg\" | sed s/h//`\n\t    tar \"$firstarg\" \"$@\" && exit 0\n\t    ;;\n\tesac\n    fi\n\n    echo 1>&2 \"\\\nWARNING: I can't seem to be able to run \\`tar' with the given arguments.\n         You may want to install GNU tar or Free paxutils, or check the\n         command line arguments.\"\n    exit 1\n    ;;\n\n  *)\n    echo 1>&2 \"\\\nWARNING: \\`$1' is needed, and is $msg.\n         You might have modified some files without having the\n         proper tools for further handling them.  Check the \\`README' file,\n         it often tells you about the needed prerequisites for installing\n         this package.  You may also peek at any GNU archive site, in case\n         some other package would contain this missing \\`$1' program.\"\n    exit 1\n    ;;\nesac\n\nexit 0\n\n# Local variables:\n# eval: (add-hook 'write-file-hooks 'time-stamp)\n# time-stamp-start: \"scriptversion=\"\n# time-stamp-format: \"%:y-%02m-%02d.%02H\"\n# time-stamp-end: \"$\"\n# End:\n"
  },
  {
    "path": "ext/cld/cld_encodings.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n// MKM: I copied this from the PHP port\n// (https://github.com/lstrojny/php-cld/blob/master/cld_encodings.h);\n// it just copies the encodings out of encodings.pb.h and\n// gives them string matching string constants\n\n#include \"encodings/proto/encodings.pb.h\"\n\nstruct cld_encoding {\n  const char *name;\n  Encoding encoding;\n};\n\nconst cld_encoding cld_encoding_info[] = {\n{\"ISO_8859_1\", ISO_8859_1},\n{\"ISO_8859_2\", ISO_8859_2},\n{\"ISO_8859_3\", ISO_8859_3},\n{\"ISO_8859_4\", ISO_8859_4},\n{\"ISO_8859_5\", ISO_8859_5},\n{\"ISO_8859_6\", ISO_8859_6},\n{\"ISO_8859_7\", ISO_8859_7},\n{\"ISO_8859_8\", ISO_8859_8},\n{\"ISO_8859_9\", ISO_8859_9},\n{\"ISO_8859_10\", ISO_8859_10},\n{\"JAPANESE_EUC_JP\", JAPANESE_EUC_JP},\n{\"JAPANESE_SHIFT_JIS\", JAPANESE_SHIFT_JIS},\n{\"JAPANESE_JIS\", JAPANESE_JIS},\n{\"CHINESE_BIG5\", CHINESE_BIG5},\n{\"CHINESE_GB\", CHINESE_GB},\n{\"CHINESE_EUC_CN\", CHINESE_EUC_CN},\n{\"KOREAN_EUC_KR\", KOREAN_EUC_KR},\n{\"UNICODE\", UNICODE},\n{\"CHINESE_EUC_DEC\", CHINESE_EUC_DEC},\n{\"CHINESE_CNS\", CHINESE_CNS},\n{\"CHINESE_BIG5_CP950\", CHINESE_BIG5_CP950},\n{\"JAPANESE_CP932\", JAPANESE_CP932},\n{\"UTF8\", UTF8},\n{\"UNKNOWN_ENCODING\", UNKNOWN_ENCODING},\n{\"ASCII_7BIT\", ASCII_7BIT},\n{\"RUSSIAN_KOI8_R\", RUSSIAN_KOI8_R},\n{\"RUSSIAN_CP1251\", RUSSIAN_CP1251},\n{\"MSFT_CP1252\", MSFT_CP1252},\n{\"RUSSIAN_KOI8_RU\", RUSSIAN_KOI8_RU},\n{\"MSFT_CP1250\", MSFT_CP1250},\n{\"ISO_8859_15\", ISO_8859_15},\n{\"MSFT_CP1254\", MSFT_CP1254},\n{\"MSFT_CP1257\", MSFT_CP1257},\n{\"ISO_8859_11\", ISO_8859_11},\n{\"MSFT_CP874\", MSFT_CP874},\n{\"MSFT_CP1256\", MSFT_CP1256},\n{\"MSFT_CP1255\", MSFT_CP1255},\n{\"ISO_8859_8_I\", ISO_8859_8_I},\n{\"HEBREW_VISUAL\", HEBREW_VISUAL},\n{\"CZECH_CP852\", CZECH_CP852},\n{\"CZECH_CSN_369103\", CZECH_CSN_369103},\n{\"MSFT_CP1253\", MSFT_CP1253},\n{\"RUSSIAN_CP866\", RUSSIAN_CP866},\n{\"ISO_8859_13\", ISO_8859_13},\n{\"ISO_2022_KR\", ISO_2022_KR},\n{\"GBK\", GBK},\n{\"GB18030\", GB18030},\n{\"BIG5_HKSCS\", BIG5_HKSCS},\n{\"ISO_2022_CN\", ISO_2022_CN},\n{\"TSCII\", TSCII},\n{\"TAMIL_MONO\", TAMIL_MONO},\n{\"TAMIL_BI\", TAMIL_BI},\n{\"JAGRAN\", JAGRAN},\n{\"MACINTOSH_ROMAN\", MACINTOSH_ROMAN},\n{\"UTF7\", UTF7},\n{\"BHASKAR\", BHASKAR},\n{\"HTCHANAKYA\", HTCHANAKYA},\n{\"UTF16BE\", UTF16BE},\n{\"UTF16LE\", UTF16LE},\n{\"UTF32BE\", UTF32BE},\n{\"UTF32LE\", UTF32LE},\n{\"BINARYENC\", BINARYENC},\n{\"HZ_GB_2312\", HZ_GB_2312},\n{\"UTF8UTF8\", UTF8UTF8},\n{\"TAM_ELANGO\", TAM_ELANGO},\n{\"TAM_LTTMBARANI\", TAM_LTTMBARANI},\n{\"TAM_SHREE\", TAM_SHREE},\n{\"TAM_TBOOMIS\", TAM_TBOOMIS},\n{\"TAM_TMNEWS\", TAM_TMNEWS},\n{\"TAM_WEBTAMIL\", TAM_WEBTAMIL},\n{\"KDDI_SHIFT_JIS\", KDDI_SHIFT_JIS},\n{\"DOCOMO_SHIFT_JIS\", DOCOMO_SHIFT_JIS},\n{\"SOFTBANK_SHIFT_JIS\", SOFTBANK_SHIFT_JIS},\n{\"KDDI_ISO_2022_JP\", KDDI_ISO_2022_JP},\n{\"SOFTBANK_ISO_2022_JP\", SOFTBANK_ISO_2022_JP},\n};\n\nCOMPILE_ASSERT(arraysize(cld_encoding_info) == NUM_ENCODINGS, cld_encoding_info_length_is_wrong);\n"
  },
  {
    "path": "ext/cld/configure",
    "content": "#! /bin/sh\n# Guess values for system-dependent variables and create Makefiles.\n# Generated by GNU Autoconf 2.61 for cld 0.6.0.\n#\n# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,\n# 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.\n# This configure script is free software; the Free Software Foundation\n# gives unlimited permission to copy, distribute and modify it.\n## --------------------- ##\n## M4sh Initialization.  ##\n## --------------------- ##\n\n# Be more Bourne compatible\nDUALCASE=1; export DUALCASE # for MKS sh\nif test -n \"${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then\n  emulate sh\n  NULLCMD=:\n  # Zsh 3.x and 4.x performs word splitting on ${1+\"$@\"}, which\n  # is contrary to our usage.  Disable this feature.\n  alias -g '${1+\"$@\"}'='\"$@\"'\n  setopt NO_GLOB_SUBST\nelse\n  case `(set -o) 2>/dev/null` in\n  *posix*) set -o posix ;;\nesac\n\nfi\n\n\n\n\n# PATH needs CR\n# Avoid depending upon Character Ranges.\nas_cr_letters='abcdefghijklmnopqrstuvwxyz'\nas_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'\nas_cr_Letters=$as_cr_letters$as_cr_LETTERS\nas_cr_digits='0123456789'\nas_cr_alnum=$as_cr_Letters$as_cr_digits\n\n# The user is always right.\nif test \"${PATH_SEPARATOR+set}\" != set; then\n  echo \"#! /bin/sh\" >conf$$.sh\n  echo  \"exit 0\"   >>conf$$.sh\n  chmod +x conf$$.sh\n  if (PATH=\"/nonexistent;.\"; conf$$.sh) >/dev/null 2>&1; then\n    PATH_SEPARATOR=';'\n  else\n    PATH_SEPARATOR=:\n  fi\n  rm -f conf$$.sh\nfi\n\n# Support unset when possible.\nif ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then\n  as_unset=unset\nelse\n  as_unset=false\nfi\n\n\n# IFS\n# We need space, tab and new line, in precisely that order.  Quoting is\n# there to prevent editors from complaining about space-tab.\n# (If _AS_PATH_WALK were called with IFS unset, it would disable word\n# splitting by setting IFS to empty value.)\nas_nl='\n'\nIFS=\" \"\"\t$as_nl\"\n\n# Find who we are.  Look in the path if we contain no directory separator.\ncase $0 in\n  *[\\\\/]* ) as_myself=$0 ;;\n  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  test -r \"$as_dir/$0\" && as_myself=$as_dir/$0 && break\ndone\nIFS=$as_save_IFS\n\n     ;;\nesac\n# We did not find ourselves, most probably we were run as `sh COMMAND'\n# in which case we are not to be found in the path.\nif test \"x$as_myself\" = x; then\n  as_myself=$0\nfi\nif test ! -f \"$as_myself\"; then\n  echo \"$as_myself: error: cannot find myself; rerun with an absolute file name\" >&2\n  { (exit 1); exit 1; }\nfi\n\n# Work around bugs in pre-3.0 UWIN ksh.\nfor as_var in ENV MAIL MAILPATH\ndo ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var\ndone\nPS1='$ '\nPS2='> '\nPS4='+ '\n\n# NLS nuisances.\nfor as_var in \\\n  LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \\\n  LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \\\n  LC_TELEPHONE LC_TIME\ndo\n  if (set +x; test -z \"`(eval $as_var=C; export $as_var) 2>&1`\"); then\n    eval $as_var=C; export $as_var\n  else\n    ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var\n  fi\ndone\n\n# Required to use basename.\nif expr a : '\\(a\\)' >/dev/null 2>&1 &&\n   test \"X`expr 00001 : '.*\\(...\\)'`\" = X001; then\n  as_expr=expr\nelse\n  as_expr=false\nfi\n\nif (basename -- /) >/dev/null 2>&1 && test \"X`basename -- / 2>&1`\" = \"X/\"; then\n  as_basename=basename\nelse\n  as_basename=false\nfi\n\n\n# Name of the executable.\nas_me=`$as_basename -- \"$0\" ||\n$as_expr X/\"$0\" : '.*/\\([^/][^/]*\\)/*$' \\| \\\n\t X\"$0\" : 'X\\(//\\)$' \\| \\\n\t X\"$0\" : 'X\\(/\\)' \\| . 2>/dev/null ||\necho X/\"$0\" |\n    sed '/^.*\\/\\([^/][^/]*\\)\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\/\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\/\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n\n# CDPATH.\n$as_unset CDPATH\n\n\nif test \"x$CONFIG_SHELL\" = x; then\n  if (eval \":\") 2>/dev/null; then\n  as_have_required=yes\nelse\n  as_have_required=no\nfi\n\n  if test $as_have_required = yes && \t (eval \":\n(as_func_return () {\n  (exit \\$1)\n}\nas_func_success () {\n  as_func_return 0\n}\nas_func_failure () {\n  as_func_return 1\n}\nas_func_ret_success () {\n  return 0\n}\nas_func_ret_failure () {\n  return 1\n}\n\nexitcode=0\nif as_func_success; then\n  :\nelse\n  exitcode=1\n  echo as_func_success failed.\nfi\n\nif as_func_failure; then\n  exitcode=1\n  echo as_func_failure succeeded.\nfi\n\nif as_func_ret_success; then\n  :\nelse\n  exitcode=1\n  echo as_func_ret_success failed.\nfi\n\nif as_func_ret_failure; then\n  exitcode=1\n  echo as_func_ret_failure succeeded.\nfi\n\nif ( set x; as_func_ret_success y && test x = \\\"\\$1\\\" ); then\n  :\nelse\n  exitcode=1\n  echo positional parameters were not saved.\nfi\n\ntest \\$exitcode = 0) || { (exit 1); exit 1; }\n\n(\n  as_lineno_1=\\$LINENO\n  as_lineno_2=\\$LINENO\n  test \\\"x\\$as_lineno_1\\\" != \\\"x\\$as_lineno_2\\\" &&\n  test \\\"x\\`expr \\$as_lineno_1 + 1\\`\\\" = \\\"x\\$as_lineno_2\\\") || { (exit 1); exit 1; }\n\n(\n  test -n \\\"\\${ZSH_VERSION+set}\\${BASH_VERSION+set}\\\" || (\n    ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'\n    ECHO=\\$ECHO\\$ECHO\\$ECHO\\$ECHO\\$ECHO\n    ECHO=\\$ECHO\\$ECHO\\$ECHO\\$ECHO\\$ECHO\\$ECHO\n    PATH=/empty FPATH=/empty; export PATH FPATH\n    test \\\"X\\`printf %s \\$ECHO\\`\\\" = \\\"X\\$ECHO\\\" \\\\\n      || test \\\"X\\`print -r -- \\$ECHO\\`\\\" = \\\"X\\$ECHO\\\" )) || { (exit 1); exit 1; }\n\") 2> /dev/null; then\n  :\nelse\n  as_candidate_shells=\n    as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  case $as_dir in\n\t /*)\n\t   for as_base in sh bash ksh sh5; do\n\t     as_candidate_shells=\"$as_candidate_shells $as_dir/$as_base\"\n\t   done;;\n       esac\ndone\nIFS=$as_save_IFS\n\n\n      for as_shell in $as_candidate_shells $SHELL; do\n\t # Try only shells that exist, to save several forks.\n\t if { test -f \"$as_shell\" || test -f \"$as_shell.exe\"; } &&\n\t\t{ (\"$as_shell\") 2> /dev/null <<\\_ASEOF\nif test -n \"${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then\n  emulate sh\n  NULLCMD=:\n  # Zsh 3.x and 4.x performs word splitting on ${1+\"$@\"}, which\n  # is contrary to our usage.  Disable this feature.\n  alias -g '${1+\"$@\"}'='\"$@\"'\n  setopt NO_GLOB_SUBST\nelse\n  case `(set -o) 2>/dev/null` in\n  *posix*) set -o posix ;;\nesac\n\nfi\n\n\n:\n_ASEOF\n}; then\n  CONFIG_SHELL=$as_shell\n\t       as_have_required=yes\n\t       if { \"$as_shell\" 2> /dev/null <<\\_ASEOF\nif test -n \"${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then\n  emulate sh\n  NULLCMD=:\n  # Zsh 3.x and 4.x performs word splitting on ${1+\"$@\"}, which\n  # is contrary to our usage.  Disable this feature.\n  alias -g '${1+\"$@\"}'='\"$@\"'\n  setopt NO_GLOB_SUBST\nelse\n  case `(set -o) 2>/dev/null` in\n  *posix*) set -o posix ;;\nesac\n\nfi\n\n\n:\n(as_func_return () {\n  (exit $1)\n}\nas_func_success () {\n  as_func_return 0\n}\nas_func_failure () {\n  as_func_return 1\n}\nas_func_ret_success () {\n  return 0\n}\nas_func_ret_failure () {\n  return 1\n}\n\nexitcode=0\nif as_func_success; then\n  :\nelse\n  exitcode=1\n  echo as_func_success failed.\nfi\n\nif as_func_failure; then\n  exitcode=1\n  echo as_func_failure succeeded.\nfi\n\nif as_func_ret_success; then\n  :\nelse\n  exitcode=1\n  echo as_func_ret_success failed.\nfi\n\nif as_func_ret_failure; then\n  exitcode=1\n  echo as_func_ret_failure succeeded.\nfi\n\nif ( set x; as_func_ret_success y && test x = \"$1\" ); then\n  :\nelse\n  exitcode=1\n  echo positional parameters were not saved.\nfi\n\ntest $exitcode = 0) || { (exit 1); exit 1; }\n\n(\n  as_lineno_1=$LINENO\n  as_lineno_2=$LINENO\n  test \"x$as_lineno_1\" != \"x$as_lineno_2\" &&\n  test \"x`expr $as_lineno_1 + 1`\" = \"x$as_lineno_2\") || { (exit 1); exit 1; }\n\n(\n  test -n \"${ZSH_VERSION+set}${BASH_VERSION+set}\" || (\n    ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'\n    ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO\n    ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO\n    PATH=/empty FPATH=/empty; export PATH FPATH\n    test \"X`printf %s $ECHO`\" = \"X$ECHO\" \\\n      || test \"X`print -r -- $ECHO`\" = \"X$ECHO\" )) || { (exit 1); exit 1; }\n\n_ASEOF\n}; then\n  break\nfi\n\nfi\n\n      done\n\n      if test \"x$CONFIG_SHELL\" != x; then\n  for as_var in BASH_ENV ENV\n        do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var\n        done\n        export CONFIG_SHELL\n        exec \"$CONFIG_SHELL\" \"$as_myself\" ${1+\"$@\"}\nfi\n\n\n    if test $as_have_required = no; then\n  echo This script requires a shell more modern than all the\n      echo shells that I found on your system.  Please install a\n      echo modern shell, or manually run the script under such a\n      echo shell if you do have one.\n      { (exit 1); exit 1; }\nfi\n\n\nfi\n\nfi\n\n\n\n(eval \"as_func_return () {\n  (exit \\$1)\n}\nas_func_success () {\n  as_func_return 0\n}\nas_func_failure () {\n  as_func_return 1\n}\nas_func_ret_success () {\n  return 0\n}\nas_func_ret_failure () {\n  return 1\n}\n\nexitcode=0\nif as_func_success; then\n  :\nelse\n  exitcode=1\n  echo as_func_success failed.\nfi\n\nif as_func_failure; then\n  exitcode=1\n  echo as_func_failure succeeded.\nfi\n\nif as_func_ret_success; then\n  :\nelse\n  exitcode=1\n  echo as_func_ret_success failed.\nfi\n\nif as_func_ret_failure; then\n  exitcode=1\n  echo as_func_ret_failure succeeded.\nfi\n\nif ( set x; as_func_ret_success y && test x = \\\"\\$1\\\" ); then\n  :\nelse\n  exitcode=1\n  echo positional parameters were not saved.\nfi\n\ntest \\$exitcode = 0\") || {\n  echo No shell found that supports shell functions.\n  echo Please tell autoconf@gnu.org about your system,\n  echo including any error possibly output before this\n  echo message\n}\n\n\n\n  as_lineno_1=$LINENO\n  as_lineno_2=$LINENO\n  test \"x$as_lineno_1\" != \"x$as_lineno_2\" &&\n  test \"x`expr $as_lineno_1 + 1`\" = \"x$as_lineno_2\" || {\n\n  # Create $as_me.lineno as a copy of $as_myself, but with $LINENO\n  # uniformly replaced by the line number.  The first 'sed' inserts a\n  # line-number line after each line using $LINENO; the second 'sed'\n  # does the real work.  The second script uses 'N' to pair each\n  # line-number line with the line containing $LINENO, and appends\n  # trailing '-' during substitution so that $LINENO is not a special\n  # case at line end.\n  # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the\n  # scripts with optimization help from Paolo Bonzini.  Blame Lee\n  # E. McMahon (1931-1989) for sed's syntax.  :-)\n  sed -n '\n    p\n    /[$]LINENO/=\n  ' <$as_myself |\n    sed '\n      s/[$]LINENO.*/&-/\n      t lineno\n      b\n      :lineno\n      N\n      :loop\n      s/[$]LINENO\\([^'$as_cr_alnum'_].*\\n\\)\\(.*\\)/\\2\\1\\2/\n      t loop\n      s/-\\n.*//\n    ' >$as_me.lineno &&\n  chmod +x \"$as_me.lineno\" ||\n    { echo \"$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell\" >&2\n   { (exit 1); exit 1; }; }\n\n  # Don't try to exec as it changes $[0], causing all sort of problems\n  # (the dirname of $[0] is not the place where we might find the\n  # original and so on.  Autoconf is especially sensitive to this).\n  . \"./$as_me.lineno\"\n  # Exit status is that of the last command.\n  exit\n}\n\n\nif (as_dir=`dirname -- /` && test \"X$as_dir\" = X/) >/dev/null 2>&1; then\n  as_dirname=dirname\nelse\n  as_dirname=false\nfi\n\nECHO_C= ECHO_N= ECHO_T=\ncase `echo -n x` in\n-n*)\n  case `echo 'x\\c'` in\n  *c*) ECHO_T='\t';;\t# ECHO_T is single tab character.\n  *)   ECHO_C='\\c';;\n  esac;;\n*)\n  ECHO_N='-n';;\nesac\n\nif expr a : '\\(a\\)' >/dev/null 2>&1 &&\n   test \"X`expr 00001 : '.*\\(...\\)'`\" = X001; then\n  as_expr=expr\nelse\n  as_expr=false\nfi\n\nrm -f conf$$ conf$$.exe conf$$.file\nif test -d conf$$.dir; then\n  rm -f conf$$.dir/conf$$.file\nelse\n  rm -f conf$$.dir\n  mkdir conf$$.dir\nfi\necho >conf$$.file\nif ln -s conf$$.file conf$$ 2>/dev/null; then\n  as_ln_s='ln -s'\n  # ... but there are two gotchas:\n  # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.\n  # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.\n  # In both cases, we have to default to `cp -p'.\n  ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||\n    as_ln_s='cp -p'\nelif ln conf$$.file conf$$ 2>/dev/null; then\n  as_ln_s=ln\nelse\n  as_ln_s='cp -p'\nfi\nrm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file\nrmdir conf$$.dir 2>/dev/null\n\nif mkdir -p . 2>/dev/null; then\n  as_mkdir_p=:\nelse\n  test -d ./-p && rmdir ./-p\n  as_mkdir_p=false\nfi\n\nif test -x / >/dev/null 2>&1; then\n  as_test_x='test -x'\nelse\n  if ls -dL / >/dev/null 2>&1; then\n    as_ls_L_option=L\n  else\n    as_ls_L_option=\n  fi\n  as_test_x='\n    eval sh -c '\\''\n      if test -d \"$1\"; then\n        test -d \"$1/.\";\n      else\n\tcase $1 in\n        -*)set \"./$1\";;\n\tesac;\n\tcase `ls -ld'$as_ls_L_option' \"$1\" 2>/dev/null` in\n\t???[sx]*):;;*)false;;esac;fi\n    '\\'' sh\n  '\nfi\nas_executable_p=$as_test_x\n\n# Sed expression to map a string onto a valid CPP name.\nas_tr_cpp=\"eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'\"\n\n# Sed expression to map a string onto a valid variable name.\nas_tr_sh=\"eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'\"\n\n\nSHELL=${CONFIG_SHELL-/bin/sh}\n\n\nexec 7<&0 </dev/null 6>&1\n\n# Name of the host.\n# hostname on some systems (SVR3.2, Linux) returns a bogus exit status,\n# so uname gets run too.\nac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`\n\n#\n# Initializations.\n#\nac_default_prefix=/usr/local\nac_clean_files=\nac_config_libobj_dir=.\nLIBOBJS=\ncross_compiling=no\nsubdirs=\nMFLAGS=\nMAKEFLAGS=\nSHELL=${CONFIG_SHELL-/bin/sh}\n\n# Identity of this package.\nPACKAGE_NAME='cld'\nPACKAGE_TARNAME='cld'\nPACKAGE_VERSION='0.6.0'\nPACKAGE_STRING='cld 0.6.0'\nPACKAGE_BUGREPORT=''\n\n# Factoring default headers for most tests.\nac_includes_default=\"\\\n#include <stdio.h>\n#ifdef HAVE_SYS_TYPES_H\n# include <sys/types.h>\n#endif\n#ifdef HAVE_SYS_STAT_H\n# include <sys/stat.h>\n#endif\n#ifdef STDC_HEADERS\n# include <stdlib.h>\n# include <stddef.h>\n#else\n# ifdef HAVE_STDLIB_H\n#  include <stdlib.h>\n# endif\n#endif\n#ifdef HAVE_STRING_H\n# if !defined STDC_HEADERS && defined HAVE_MEMORY_H\n#  include <memory.h>\n# endif\n# include <string.h>\n#endif\n#ifdef HAVE_STRINGS_H\n# include <strings.h>\n#endif\n#ifdef HAVE_INTTYPES_H\n# include <inttypes.h>\n#endif\n#ifdef HAVE_STDINT_H\n# include <stdint.h>\n#endif\n#ifdef HAVE_UNISTD_H\n# include <unistd.h>\n#endif\"\n\nac_subst_vars='SHELL\nPATH_SEPARATOR\nPACKAGE_NAME\nPACKAGE_TARNAME\nPACKAGE_VERSION\nPACKAGE_STRING\nPACKAGE_BUGREPORT\nexec_prefix\nprefix\nprogram_transform_name\nbindir\nsbindir\nlibexecdir\ndatarootdir\ndatadir\nsysconfdir\nsharedstatedir\nlocalstatedir\nincludedir\noldincludedir\ndocdir\ninfodir\nhtmldir\ndvidir\npdfdir\npsdir\nlibdir\nlocaledir\nmandir\nDEFS\nECHO_C\nECHO_N\nECHO_T\nLIBS\nbuild_alias\nhost_alias\ntarget_alias\nINSTALL_PROGRAM\nINSTALL_SCRIPT\nINSTALL_DATA\nam__isrc\nCYGPATH_W\nPACKAGE\nVERSION\nACLOCAL\nAUTOCONF\nAUTOMAKE\nAUTOHEADER\nMAKEINFO\ninstall_sh\nSTRIP\nINSTALL_STRIP_PROGRAM\nmkdir_p\nAWK\nSET_MAKE\nam__leading_dot\nAMTAR\nam__tar\nam__untar\nLIBTOOL\nbuild\nbuild_cpu\nbuild_vendor\nbuild_os\nhost\nhost_cpu\nhost_vendor\nhost_os\nCC\nCFLAGS\nLDFLAGS\nCPPFLAGS\nac_ct_CC\nEXEEXT\nOBJEXT\nDEPDIR\nam__include\nam__quote\nAMDEP_TRUE\nAMDEP_FALSE\nAMDEPBACKSLASH\nCCDEPMODE\nam__fastdepCC_TRUE\nam__fastdepCC_FALSE\nSED\nGREP\nEGREP\nFGREP\nLD\nDUMPBIN\nac_ct_DUMPBIN\nNM\nLN_S\nOBJDUMP\nAR\nRANLIB\nDSYMUTIL\nNMEDIT\nLIPO\nOTOOL\nOTOOL64\nCPP\nCXX\nCXXFLAGS\nac_ct_CXX\nCXXDEPMODE\nam__fastdepCXX_TRUE\nam__fastdepCXX_FALSE\nCXXCPP\nLIBOBJS\nLTLIBOBJS'\nac_subst_files=''\n      ac_precious_vars='build_alias\nhost_alias\ntarget_alias\nCC\nCFLAGS\nLDFLAGS\nLIBS\nCPPFLAGS\nCPP\nCXX\nCXXFLAGS\nCCC\nCXXCPP'\n\n\n# Initialize some variables set by options.\nac_init_help=\nac_init_version=false\n# The variables have the same names as the options, with\n# dashes changed to underlines.\ncache_file=/dev/null\nexec_prefix=NONE\nno_create=\nno_recursion=\nprefix=NONE\nprogram_prefix=NONE\nprogram_suffix=NONE\nprogram_transform_name=s,x,x,\nsilent=\nsite=\nsrcdir=\nverbose=\nx_includes=NONE\nx_libraries=NONE\n\n# Installation directory options.\n# These are left unexpanded so users can \"make install exec_prefix=/foo\"\n# and all the variables that are supposed to be based on exec_prefix\n# by default will actually change.\n# Use braces instead of parens because sh, perl, etc. also accept them.\n# (The list follows the same order as the GNU Coding Standards.)\nbindir='${exec_prefix}/bin'\nsbindir='${exec_prefix}/sbin'\nlibexecdir='${exec_prefix}/libexec'\ndatarootdir='${prefix}/share'\ndatadir='${datarootdir}'\nsysconfdir='${prefix}/etc'\nsharedstatedir='${prefix}/com'\nlocalstatedir='${prefix}/var'\nincludedir='${prefix}/include'\noldincludedir='/usr/include'\ndocdir='${datarootdir}/doc/${PACKAGE_TARNAME}'\ninfodir='${datarootdir}/info'\nhtmldir='${docdir}'\ndvidir='${docdir}'\npdfdir='${docdir}'\npsdir='${docdir}'\nlibdir='${exec_prefix}/lib'\nlocaledir='${datarootdir}/locale'\nmandir='${datarootdir}/man'\n\nac_prev=\nac_dashdash=\nfor ac_option\ndo\n  # If the previous option needs an argument, assign it.\n  if test -n \"$ac_prev\"; then\n    eval $ac_prev=\\$ac_option\n    ac_prev=\n    continue\n  fi\n\n  case $ac_option in\n  *=*)\tac_optarg=`expr \"X$ac_option\" : '[^=]*=\\(.*\\)'` ;;\n  *)\tac_optarg=yes ;;\n  esac\n\n  # Accept the important Cygnus configure options, so we can diagnose typos.\n\n  case $ac_dashdash$ac_option in\n  --)\n    ac_dashdash=yes ;;\n\n  -bindir | --bindir | --bindi | --bind | --bin | --bi)\n    ac_prev=bindir ;;\n  -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)\n    bindir=$ac_optarg ;;\n\n  -build | --build | --buil | --bui | --bu)\n    ac_prev=build_alias ;;\n  -build=* | --build=* | --buil=* | --bui=* | --bu=*)\n    build_alias=$ac_optarg ;;\n\n  -cache-file | --cache-file | --cache-fil | --cache-fi \\\n  | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)\n    ac_prev=cache_file ;;\n  -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \\\n  | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)\n    cache_file=$ac_optarg ;;\n\n  --config-cache | -C)\n    cache_file=config.cache ;;\n\n  -datadir | --datadir | --datadi | --datad)\n    ac_prev=datadir ;;\n  -datadir=* | --datadir=* | --datadi=* | --datad=*)\n    datadir=$ac_optarg ;;\n\n  -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \\\n  | --dataroo | --dataro | --datar)\n    ac_prev=datarootdir ;;\n  -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \\\n  | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)\n    datarootdir=$ac_optarg ;;\n\n  -disable-* | --disable-*)\n    ac_feature=`expr \"x$ac_option\" : 'x-*disable-\\(.*\\)'`\n    # Reject names that are not valid shell variable names.\n    expr \"x$ac_feature\" : \".*[^-._$as_cr_alnum]\" >/dev/null &&\n      { echo \"$as_me: error: invalid feature name: $ac_feature\" >&2\n   { (exit 1); exit 1; }; }\n    ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'`\n    eval enable_$ac_feature=no ;;\n\n  -docdir | --docdir | --docdi | --doc | --do)\n    ac_prev=docdir ;;\n  -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)\n    docdir=$ac_optarg ;;\n\n  -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)\n    ac_prev=dvidir ;;\n  -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)\n    dvidir=$ac_optarg ;;\n\n  -enable-* | --enable-*)\n    ac_feature=`expr \"x$ac_option\" : 'x-*enable-\\([^=]*\\)'`\n    # Reject names that are not valid shell variable names.\n    expr \"x$ac_feature\" : \".*[^-._$as_cr_alnum]\" >/dev/null &&\n      { echo \"$as_me: error: invalid feature name: $ac_feature\" >&2\n   { (exit 1); exit 1; }; }\n    ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'`\n    eval enable_$ac_feature=\\$ac_optarg ;;\n\n  -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \\\n  | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \\\n  | --exec | --exe | --ex)\n    ac_prev=exec_prefix ;;\n  -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \\\n  | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \\\n  | --exec=* | --exe=* | --ex=*)\n    exec_prefix=$ac_optarg ;;\n\n  -gas | --gas | --ga | --g)\n    # Obsolete; use --with-gas.\n    with_gas=yes ;;\n\n  -help | --help | --hel | --he | -h)\n    ac_init_help=long ;;\n  -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)\n    ac_init_help=recursive ;;\n  -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)\n    ac_init_help=short ;;\n\n  -host | --host | --hos | --ho)\n    ac_prev=host_alias ;;\n  -host=* | --host=* | --hos=* | --ho=*)\n    host_alias=$ac_optarg ;;\n\n  -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)\n    ac_prev=htmldir ;;\n  -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \\\n  | --ht=*)\n    htmldir=$ac_optarg ;;\n\n  -includedir | --includedir | --includedi | --included | --include \\\n  | --includ | --inclu | --incl | --inc)\n    ac_prev=includedir ;;\n  -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \\\n  | --includ=* | --inclu=* | --incl=* | --inc=*)\n    includedir=$ac_optarg ;;\n\n  -infodir | --infodir | --infodi | --infod | --info | --inf)\n    ac_prev=infodir ;;\n  -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)\n    infodir=$ac_optarg ;;\n\n  -libdir | --libdir | --libdi | --libd)\n    ac_prev=libdir ;;\n  -libdir=* | --libdir=* | --libdi=* | --libd=*)\n    libdir=$ac_optarg ;;\n\n  -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \\\n  | --libexe | --libex | --libe)\n    ac_prev=libexecdir ;;\n  -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \\\n  | --libexe=* | --libex=* | --libe=*)\n    libexecdir=$ac_optarg ;;\n\n  -localedir | --localedir | --localedi | --localed | --locale)\n    ac_prev=localedir ;;\n  -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)\n    localedir=$ac_optarg ;;\n\n  -localstatedir | --localstatedir | --localstatedi | --localstated \\\n  | --localstate | --localstat | --localsta | --localst | --locals)\n    ac_prev=localstatedir ;;\n  -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \\\n  | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)\n    localstatedir=$ac_optarg ;;\n\n  -mandir | --mandir | --mandi | --mand | --man | --ma | --m)\n    ac_prev=mandir ;;\n  -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)\n    mandir=$ac_optarg ;;\n\n  -nfp | --nfp | --nf)\n    # Obsolete; use --without-fp.\n    with_fp=no ;;\n\n  -no-create | --no-create | --no-creat | --no-crea | --no-cre \\\n  | --no-cr | --no-c | -n)\n    no_create=yes ;;\n\n  -no-recursion | --no-recursion | --no-recursio | --no-recursi \\\n  | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)\n    no_recursion=yes ;;\n\n  -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \\\n  | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \\\n  | --oldin | --oldi | --old | --ol | --o)\n    ac_prev=oldincludedir ;;\n  -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \\\n  | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \\\n  | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)\n    oldincludedir=$ac_optarg ;;\n\n  -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)\n    ac_prev=prefix ;;\n  -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)\n    prefix=$ac_optarg ;;\n\n  -program-prefix | --program-prefix | --program-prefi | --program-pref \\\n  | --program-pre | --program-pr | --program-p)\n    ac_prev=program_prefix ;;\n  -program-prefix=* | --program-prefix=* | --program-prefi=* \\\n  | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)\n    program_prefix=$ac_optarg ;;\n\n  -program-suffix | --program-suffix | --program-suffi | --program-suff \\\n  | --program-suf | --program-su | --program-s)\n    ac_prev=program_suffix ;;\n  -program-suffix=* | --program-suffix=* | --program-suffi=* \\\n  | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)\n    program_suffix=$ac_optarg ;;\n\n  -program-transform-name | --program-transform-name \\\n  | --program-transform-nam | --program-transform-na \\\n  | --program-transform-n | --program-transform- \\\n  | --program-transform | --program-transfor \\\n  | --program-transfo | --program-transf \\\n  | --program-trans | --program-tran \\\n  | --progr-tra | --program-tr | --program-t)\n    ac_prev=program_transform_name ;;\n  -program-transform-name=* | --program-transform-name=* \\\n  | --program-transform-nam=* | --program-transform-na=* \\\n  | --program-transform-n=* | --program-transform-=* \\\n  | --program-transform=* | --program-transfor=* \\\n  | --program-transfo=* | --program-transf=* \\\n  | --program-trans=* | --program-tran=* \\\n  | --progr-tra=* | --program-tr=* | --program-t=*)\n    program_transform_name=$ac_optarg ;;\n\n  -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)\n    ac_prev=pdfdir ;;\n  -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)\n    pdfdir=$ac_optarg ;;\n\n  -psdir | --psdir | --psdi | --psd | --ps)\n    ac_prev=psdir ;;\n  -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)\n    psdir=$ac_optarg ;;\n\n  -q | -quiet | --quiet | --quie | --qui | --qu | --q \\\n  | -silent | --silent | --silen | --sile | --sil)\n    silent=yes ;;\n\n  -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)\n    ac_prev=sbindir ;;\n  -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \\\n  | --sbi=* | --sb=*)\n    sbindir=$ac_optarg ;;\n\n  -sharedstatedir | --sharedstatedir | --sharedstatedi \\\n  | --sharedstated | --sharedstate | --sharedstat | --sharedsta \\\n  | --sharedst | --shareds | --shared | --share | --shar \\\n  | --sha | --sh)\n    ac_prev=sharedstatedir ;;\n  -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \\\n  | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \\\n  | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \\\n  | --sha=* | --sh=*)\n    sharedstatedir=$ac_optarg ;;\n\n  -site | --site | --sit)\n    ac_prev=site ;;\n  -site=* | --site=* | --sit=*)\n    site=$ac_optarg ;;\n\n  -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)\n    ac_prev=srcdir ;;\n  -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)\n    srcdir=$ac_optarg ;;\n\n  -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \\\n  | --syscon | --sysco | --sysc | --sys | --sy)\n    ac_prev=sysconfdir ;;\n  -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \\\n  | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)\n    sysconfdir=$ac_optarg ;;\n\n  -target | --target | --targe | --targ | --tar | --ta | --t)\n    ac_prev=target_alias ;;\n  -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)\n    target_alias=$ac_optarg ;;\n\n  -v | -verbose | --verbose | --verbos | --verbo | --verb)\n    verbose=yes ;;\n\n  -version | --version | --versio | --versi | --vers | -V)\n    ac_init_version=: ;;\n\n  -with-* | --with-*)\n    ac_package=`expr \"x$ac_option\" : 'x-*with-\\([^=]*\\)'`\n    # Reject names that are not valid shell variable names.\n    expr \"x$ac_package\" : \".*[^-._$as_cr_alnum]\" >/dev/null &&\n      { echo \"$as_me: error: invalid package name: $ac_package\" >&2\n   { (exit 1); exit 1; }; }\n    ac_package=`echo $ac_package | sed 's/[-.]/_/g'`\n    eval with_$ac_package=\\$ac_optarg ;;\n\n  -without-* | --without-*)\n    ac_package=`expr \"x$ac_option\" : 'x-*without-\\(.*\\)'`\n    # Reject names that are not valid shell variable names.\n    expr \"x$ac_package\" : \".*[^-._$as_cr_alnum]\" >/dev/null &&\n      { echo \"$as_me: error: invalid package name: $ac_package\" >&2\n   { (exit 1); exit 1; }; }\n    ac_package=`echo $ac_package | sed 's/[-.]/_/g'`\n    eval with_$ac_package=no ;;\n\n  --x)\n    # Obsolete; use --with-x.\n    with_x=yes ;;\n\n  -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \\\n  | --x-incl | --x-inc | --x-in | --x-i)\n    ac_prev=x_includes ;;\n  -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \\\n  | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)\n    x_includes=$ac_optarg ;;\n\n  -x-libraries | --x-libraries | --x-librarie | --x-librari \\\n  | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)\n    ac_prev=x_libraries ;;\n  -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \\\n  | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)\n    x_libraries=$ac_optarg ;;\n\n  -*) { echo \"$as_me: error: unrecognized option: $ac_option\nTry \\`$0 --help' for more information.\" >&2\n   { (exit 1); exit 1; }; }\n    ;;\n\n  *=*)\n    ac_envvar=`expr \"x$ac_option\" : 'x\\([^=]*\\)='`\n    # Reject names that are not valid shell variable names.\n    expr \"x$ac_envvar\" : \".*[^_$as_cr_alnum]\" >/dev/null &&\n      { echo \"$as_me: error: invalid variable name: $ac_envvar\" >&2\n   { (exit 1); exit 1; }; }\n    eval $ac_envvar=\\$ac_optarg\n    export $ac_envvar ;;\n\n  *)\n    # FIXME: should be removed in autoconf 3.0.\n    echo \"$as_me: WARNING: you should use --build, --host, --target\" >&2\n    expr \"x$ac_option\" : \".*[^-._$as_cr_alnum]\" >/dev/null &&\n      echo \"$as_me: WARNING: invalid host type: $ac_option\" >&2\n    : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}\n    ;;\n\n  esac\ndone\n\nif test -n \"$ac_prev\"; then\n  ac_option=--`echo $ac_prev | sed 's/_/-/g'`\n  { echo \"$as_me: error: missing argument to $ac_option\" >&2\n   { (exit 1); exit 1; }; }\nfi\n\n# Be sure to have absolute directory names.\nfor ac_var in\texec_prefix prefix bindir sbindir libexecdir datarootdir \\\n\t\tdatadir sysconfdir sharedstatedir localstatedir includedir \\\n\t\toldincludedir docdir infodir htmldir dvidir pdfdir psdir \\\n\t\tlibdir localedir mandir\ndo\n  eval ac_val=\\$$ac_var\n  case $ac_val in\n    [\\\\/$]* | ?:[\\\\/]* )  continue;;\n    NONE | '' ) case $ac_var in *prefix ) continue;; esac;;\n  esac\n  { echo \"$as_me: error: expected an absolute directory name for --$ac_var: $ac_val\" >&2\n   { (exit 1); exit 1; }; }\ndone\n\n# There might be people who depend on the old broken behavior: `$host'\n# used to hold the argument of --host etc.\n# FIXME: To remove some day.\nbuild=$build_alias\nhost=$host_alias\ntarget=$target_alias\n\n# FIXME: To remove some day.\nif test \"x$host_alias\" != x; then\n  if test \"x$build_alias\" = x; then\n    cross_compiling=maybe\n    echo \"$as_me: WARNING: If you wanted to set the --build type, don't use --host.\n    If a cross compiler is detected then cross compile mode will be used.\" >&2\n  elif test \"x$build_alias\" != \"x$host_alias\"; then\n    cross_compiling=yes\n  fi\nfi\n\nac_tool_prefix=\ntest -n \"$host_alias\" && ac_tool_prefix=$host_alias-\n\ntest \"$silent\" = yes && exec 6>/dev/null\n\n\nac_pwd=`pwd` && test -n \"$ac_pwd\" &&\nac_ls_di=`ls -di .` &&\nac_pwd_ls_di=`cd \"$ac_pwd\" && ls -di .` ||\n  { echo \"$as_me: error: Working directory cannot be determined\" >&2\n   { (exit 1); exit 1; }; }\ntest \"X$ac_ls_di\" = \"X$ac_pwd_ls_di\" ||\n  { echo \"$as_me: error: pwd does not report name of working directory\" >&2\n   { (exit 1); exit 1; }; }\n\n\n# Find the source files, if location was not specified.\nif test -z \"$srcdir\"; then\n  ac_srcdir_defaulted=yes\n  # Try the directory containing this script, then the parent directory.\n  ac_confdir=`$as_dirname -- \"$0\" ||\n$as_expr X\"$0\" : 'X\\(.*[^/]\\)//*[^/][^/]*/*$' \\| \\\n\t X\"$0\" : 'X\\(//\\)[^/]' \\| \\\n\t X\"$0\" : 'X\\(//\\)$' \\| \\\n\t X\"$0\" : 'X\\(/\\)' \\| . 2>/dev/null ||\necho X\"$0\" |\n    sed '/^X\\(.*[^/]\\)\\/\\/*[^/][^/]*\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)[^/].*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n  srcdir=$ac_confdir\n  if test ! -r \"$srcdir/$ac_unique_file\"; then\n    srcdir=..\n  fi\nelse\n  ac_srcdir_defaulted=no\nfi\nif test ! -r \"$srcdir/$ac_unique_file\"; then\n  test \"$ac_srcdir_defaulted\" = yes && srcdir=\"$ac_confdir or ..\"\n  { echo \"$as_me: error: cannot find sources ($ac_unique_file) in $srcdir\" >&2\n   { (exit 1); exit 1; }; }\nfi\nac_msg=\"sources are in $srcdir, but \\`cd $srcdir' does not work\"\nac_abs_confdir=`(\n\tcd \"$srcdir\" && test -r \"./$ac_unique_file\" || { echo \"$as_me: error: $ac_msg\" >&2\n   { (exit 1); exit 1; }; }\n\tpwd)`\n# When building in place, set srcdir=.\nif test \"$ac_abs_confdir\" = \"$ac_pwd\"; then\n  srcdir=.\nfi\n# Remove unnecessary trailing slashes from srcdir.\n# Double slashes in file names in object file debugging info\n# mess up M-x gdb in Emacs.\ncase $srcdir in\n*/) srcdir=`expr \"X$srcdir\" : 'X\\(.*[^/]\\)' \\| \"X$srcdir\" : 'X\\(.*\\)'`;;\nesac\nfor ac_var in $ac_precious_vars; do\n  eval ac_env_${ac_var}_set=\\${${ac_var}+set}\n  eval ac_env_${ac_var}_value=\\$${ac_var}\n  eval ac_cv_env_${ac_var}_set=\\${${ac_var}+set}\n  eval ac_cv_env_${ac_var}_value=\\$${ac_var}\ndone\n\n#\n# Report the --help message.\n#\nif test \"$ac_init_help\" = \"long\"; then\n  # Omit some internal or obsolete options to make the list less imposing.\n  # This message is too long to be a string in the A/UX 3.1 sh.\n  cat <<_ACEOF\n\\`configure' configures cld 0.6.0 to adapt to many kinds of systems.\n\nUsage: $0 [OPTION]... [VAR=VALUE]...\n\nTo assign environment variables (e.g., CC, CFLAGS...), specify them as\nVAR=VALUE.  See below for descriptions of some of the useful variables.\n\nDefaults for the options are specified in brackets.\n\nConfiguration:\n  -h, --help              display this help and exit\n      --help=short        display options specific to this package\n      --help=recursive    display the short help of all the included packages\n  -V, --version           display version information and exit\n  -q, --quiet, --silent   do not print \\`checking...' messages\n      --cache-file=FILE   cache test results in FILE [disabled]\n  -C, --config-cache      alias for \\`--cache-file=config.cache'\n  -n, --no-create         do not create output files\n      --srcdir=DIR        find the sources in DIR [configure dir or \\`..']\n\nInstallation directories:\n  --prefix=PREFIX         install architecture-independent files in PREFIX\n\t\t\t  [$ac_default_prefix]\n  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX\n\t\t\t  [PREFIX]\n\nBy default, \\`make install' will install all the files in\n\\`$ac_default_prefix/bin', \\`$ac_default_prefix/lib' etc.  You can specify\nan installation prefix other than \\`$ac_default_prefix' using \\`--prefix',\nfor instance \\`--prefix=\\$HOME'.\n\nFor better control, use the options below.\n\nFine tuning of the installation directories:\n  --bindir=DIR           user executables [EPREFIX/bin]\n  --sbindir=DIR          system admin executables [EPREFIX/sbin]\n  --libexecdir=DIR       program executables [EPREFIX/libexec]\n  --sysconfdir=DIR       read-only single-machine data [PREFIX/etc]\n  --sharedstatedir=DIR   modifiable architecture-independent data [PREFIX/com]\n  --localstatedir=DIR    modifiable single-machine data [PREFIX/var]\n  --libdir=DIR           object code libraries [EPREFIX/lib]\n  --includedir=DIR       C header files [PREFIX/include]\n  --oldincludedir=DIR    C header files for non-gcc [/usr/include]\n  --datarootdir=DIR      read-only arch.-independent data root [PREFIX/share]\n  --datadir=DIR          read-only architecture-independent data [DATAROOTDIR]\n  --infodir=DIR          info documentation [DATAROOTDIR/info]\n  --localedir=DIR        locale-dependent data [DATAROOTDIR/locale]\n  --mandir=DIR           man documentation [DATAROOTDIR/man]\n  --docdir=DIR           documentation root [DATAROOTDIR/doc/cld]\n  --htmldir=DIR          html documentation [DOCDIR]\n  --dvidir=DIR           dvi documentation [DOCDIR]\n  --pdfdir=DIR           pdf documentation [DOCDIR]\n  --psdir=DIR            ps documentation [DOCDIR]\n_ACEOF\n\n  cat <<\\_ACEOF\n\nProgram names:\n  --program-prefix=PREFIX            prepend PREFIX to installed program names\n  --program-suffix=SUFFIX            append SUFFIX to installed program names\n  --program-transform-name=PROGRAM   run sed PROGRAM on installed program names\n\nSystem types:\n  --build=BUILD     configure for building on BUILD [guessed]\n  --host=HOST       cross-compile to build programs to run on HOST [BUILD]\n_ACEOF\nfi\n\nif test -n \"$ac_init_help\"; then\n  case $ac_init_help in\n     short | recursive ) echo \"Configuration of cld 0.6.0:\";;\n   esac\n  cat <<\\_ACEOF\n\nOptional Features:\n  --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)\n  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]\n  --enable-shared[=PKGS]  build shared libraries [default=yes]\n  --enable-static[=PKGS]  build static libraries [default=yes]\n  --enable-fast-install[=PKGS]\n                          optimize for fast installation [default=yes]\n  --disable-dependency-tracking  speeds up one-time build\n  --enable-dependency-tracking   do not reject slow dependency extractors\n  --disable-libtool-lock  avoid locking (might break parallel builds)\n\nOptional Packages:\n  --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]\n  --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)\n  --with-pic              try to use only PIC/non-PIC objects [default=use\n                          both]\n  --with-gnu-ld           assume the C compiler uses GNU ld [default=no]\n\nSome influential environment variables:\n  CC          C compiler command\n  CFLAGS      C compiler flags\n  LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a\n              nonstandard directory <lib dir>\n  LIBS        libraries to pass to the linker, e.g. -l<library>\n  CPPFLAGS    C/C++/Objective C preprocessor flags, e.g. -I<include dir> if\n              you have headers in a nonstandard directory <include dir>\n  CPP         C preprocessor\n  CXX         C++ compiler command\n  CXXFLAGS    C++ compiler flags\n  CXXCPP      C++ preprocessor\n\nUse these variables to override the choices made by `configure' or to help\nit to find libraries and programs with nonstandard names/locations.\n\n_ACEOF\nac_status=$?\nfi\n\nif test \"$ac_init_help\" = \"recursive\"; then\n  # If there are subdirs, report their specific --help.\n  for ac_dir in : $ac_subdirs_all; do test \"x$ac_dir\" = x: && continue\n    test -d \"$ac_dir\" || continue\n    ac_builddir=.\n\ncase \"$ac_dir\" in\n.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;\n*)\n  ac_dir_suffix=/`echo \"$ac_dir\" | sed 's,^\\.[\\\\/],,'`\n  # A \"..\" for each directory in $ac_dir_suffix.\n  ac_top_builddir_sub=`echo \"$ac_dir_suffix\" | sed 's,/[^\\\\/]*,/..,g;s,/,,'`\n  case $ac_top_builddir_sub in\n  \"\") ac_top_builddir_sub=. ac_top_build_prefix= ;;\n  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;\n  esac ;;\nesac\nac_abs_top_builddir=$ac_pwd\nac_abs_builddir=$ac_pwd$ac_dir_suffix\n# for backward compatibility:\nac_top_builddir=$ac_top_build_prefix\n\ncase $srcdir in\n  .)  # We are building in place.\n    ac_srcdir=.\n    ac_top_srcdir=$ac_top_builddir_sub\n    ac_abs_top_srcdir=$ac_pwd ;;\n  [\\\\/]* | ?:[\\\\/]* )  # Absolute name.\n    ac_srcdir=$srcdir$ac_dir_suffix;\n    ac_top_srcdir=$srcdir\n    ac_abs_top_srcdir=$srcdir ;;\n  *) # Relative name.\n    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix\n    ac_top_srcdir=$ac_top_build_prefix$srcdir\n    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;\nesac\nac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix\n\n    cd \"$ac_dir\" || { ac_status=$?; continue; }\n    # Check for guested configure.\n    if test -f \"$ac_srcdir/configure.gnu\"; then\n      echo &&\n      $SHELL \"$ac_srcdir/configure.gnu\" --help=recursive\n    elif test -f \"$ac_srcdir/configure\"; then\n      echo &&\n      $SHELL \"$ac_srcdir/configure\" --help=recursive\n    else\n      echo \"$as_me: WARNING: no configuration information is in $ac_dir\" >&2\n    fi || ac_status=$?\n    cd \"$ac_pwd\" || { ac_status=$?; break; }\n  done\nfi\n\ntest -n \"$ac_init_help\" && exit $ac_status\nif $ac_init_version; then\n  cat <<\\_ACEOF\ncld configure 0.6.0\ngenerated by GNU Autoconf 2.61\n\nCopyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,\n2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.\nThis configure script is free software; the Free Software Foundation\ngives unlimited permission to copy, distribute and modify it.\n_ACEOF\n  exit\nfi\ncat >config.log <<_ACEOF\nThis file contains any messages produced by compilers while\nrunning configure, to aid debugging if configure makes a mistake.\n\nIt was created by cld $as_me 0.6.0, which was\ngenerated by GNU Autoconf 2.61.  Invocation command line was\n\n  $ $0 $@\n\n_ACEOF\nexec 5>>config.log\n{\ncat <<_ASUNAME\n## --------- ##\n## Platform. ##\n## --------- ##\n\nhostname = `(hostname || uname -n) 2>/dev/null | sed 1q`\nuname -m = `(uname -m) 2>/dev/null || echo unknown`\nuname -r = `(uname -r) 2>/dev/null || echo unknown`\nuname -s = `(uname -s) 2>/dev/null || echo unknown`\nuname -v = `(uname -v) 2>/dev/null || echo unknown`\n\n/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`\n/bin/uname -X     = `(/bin/uname -X) 2>/dev/null     || echo unknown`\n\n/bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`\n/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`\n/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`\n/usr/bin/hostinfo      = `(/usr/bin/hostinfo) 2>/dev/null      || echo unknown`\n/bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`\n/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`\n/bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`\n\n_ASUNAME\n\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  echo \"PATH: $as_dir\"\ndone\nIFS=$as_save_IFS\n\n} >&5\n\ncat >&5 <<_ACEOF\n\n\n## ----------- ##\n## Core tests. ##\n## ----------- ##\n\n_ACEOF\n\n\n# Keep a trace of the command line.\n# Strip out --no-create and --no-recursion so they do not pile up.\n# Strip out --silent because we don't want to record it for future runs.\n# Also quote any args containing shell meta-characters.\n# Make two passes to allow for proper duplicate-argument suppression.\nac_configure_args=\nac_configure_args0=\nac_configure_args1=\nac_must_keep_next=false\nfor ac_pass in 1 2\ndo\n  for ac_arg\n  do\n    case $ac_arg in\n    -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;\n    -q | -quiet | --quiet | --quie | --qui | --qu | --q \\\n    | -silent | --silent | --silen | --sile | --sil)\n      continue ;;\n    *\\'*)\n      ac_arg=`echo \"$ac_arg\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"` ;;\n    esac\n    case $ac_pass in\n    1) ac_configure_args0=\"$ac_configure_args0 '$ac_arg'\" ;;\n    2)\n      ac_configure_args1=\"$ac_configure_args1 '$ac_arg'\"\n      if test $ac_must_keep_next = true; then\n\tac_must_keep_next=false # Got value, back to normal.\n      else\n\tcase $ac_arg in\n\t  *=* | --config-cache | -C | -disable-* | --disable-* \\\n\t  | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \\\n\t  | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \\\n\t  | -with-* | --with-* | -without-* | --without-* | --x)\n\t    case \"$ac_configure_args0 \" in\n\t      \"$ac_configure_args1\"*\" '$ac_arg' \"* ) continue ;;\n\t    esac\n\t    ;;\n\t  -* ) ac_must_keep_next=true ;;\n\tesac\n      fi\n      ac_configure_args=\"$ac_configure_args '$ac_arg'\"\n      ;;\n    esac\n  done\ndone\n$as_unset ac_configure_args0 || test \"${ac_configure_args0+set}\" != set || { ac_configure_args0=; export ac_configure_args0; }\n$as_unset ac_configure_args1 || test \"${ac_configure_args1+set}\" != set || { ac_configure_args1=; export ac_configure_args1; }\n\n# When interrupted or exit'd, cleanup temporary files, and complete\n# config.log.  We remove comments because anyway the quotes in there\n# would cause problems or look ugly.\n# WARNING: Use '\\'' to represent an apostrophe within the trap.\n# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.\ntrap 'exit_status=$?\n  # Save into config.log some information that might help in debugging.\n  {\n    echo\n\n    cat <<\\_ASBOX\n## ---------------- ##\n## Cache variables. ##\n## ---------------- ##\n_ASBOX\n    echo\n    # The following way of writing the cache mishandles newlines in values,\n(\n  for ac_var in `(set) 2>&1 | sed -n '\\''s/^\\([a-zA-Z_][a-zA-Z0-9_]*\\)=.*/\\1/p'\\''`; do\n    eval ac_val=\\$$ac_var\n    case $ac_val in #(\n    *${as_nl}*)\n      case $ac_var in #(\n      *_cv_*) { echo \"$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline.\" >&5\necho \"$as_me: WARNING: Cache variable $ac_var contains a newline.\" >&2;} ;;\n      esac\n      case $ac_var in #(\n      _ | IFS | as_nl) ;; #(\n      *) $as_unset $ac_var ;;\n      esac ;;\n    esac\n  done\n  (set) 2>&1 |\n    case $as_nl`(ac_space='\\'' '\\''; set) 2>&1` in #(\n    *${as_nl}ac_space=\\ *)\n      sed -n \\\n\t\"s/'\\''/'\\''\\\\\\\\'\\'''\\''/g;\n\t  s/^\\\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\\\)=\\\\(.*\\\\)/\\\\1='\\''\\\\2'\\''/p\"\n      ;; #(\n    *)\n      sed -n \"/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p\"\n      ;;\n    esac |\n    sort\n)\n    echo\n\n    cat <<\\_ASBOX\n## ----------------- ##\n## Output variables. ##\n## ----------------- ##\n_ASBOX\n    echo\n    for ac_var in $ac_subst_vars\n    do\n      eval ac_val=\\$$ac_var\n      case $ac_val in\n      *\\'\\''*) ac_val=`echo \"$ac_val\" | sed \"s/'\\''/'\\''\\\\\\\\\\\\\\\\'\\'''\\''/g\"`;;\n      esac\n      echo \"$ac_var='\\''$ac_val'\\''\"\n    done | sort\n    echo\n\n    if test -n \"$ac_subst_files\"; then\n      cat <<\\_ASBOX\n## ------------------- ##\n## File substitutions. ##\n## ------------------- ##\n_ASBOX\n      echo\n      for ac_var in $ac_subst_files\n      do\n\teval ac_val=\\$$ac_var\n\tcase $ac_val in\n\t*\\'\\''*) ac_val=`echo \"$ac_val\" | sed \"s/'\\''/'\\''\\\\\\\\\\\\\\\\'\\'''\\''/g\"`;;\n\tesac\n\techo \"$ac_var='\\''$ac_val'\\''\"\n      done | sort\n      echo\n    fi\n\n    if test -s confdefs.h; then\n      cat <<\\_ASBOX\n## ----------- ##\n## confdefs.h. ##\n## ----------- ##\n_ASBOX\n      echo\n      cat confdefs.h\n      echo\n    fi\n    test \"$ac_signal\" != 0 &&\n      echo \"$as_me: caught signal $ac_signal\"\n    echo \"$as_me: exit $exit_status\"\n  } >&5\n  rm -f core *.core core.conftest.* &&\n    rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&\n    exit $exit_status\n' 0\nfor ac_signal in 1 2 13 15; do\n  trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal\ndone\nac_signal=0\n\n# confdefs.h avoids OS command line length limits that DEFS can exceed.\nrm -f -r conftest* confdefs.h\n\n# Predefined preprocessor variables.\n\ncat >>confdefs.h <<_ACEOF\n#define PACKAGE_NAME \"$PACKAGE_NAME\"\n_ACEOF\n\n\ncat >>confdefs.h <<_ACEOF\n#define PACKAGE_TARNAME \"$PACKAGE_TARNAME\"\n_ACEOF\n\n\ncat >>confdefs.h <<_ACEOF\n#define PACKAGE_VERSION \"$PACKAGE_VERSION\"\n_ACEOF\n\n\ncat >>confdefs.h <<_ACEOF\n#define PACKAGE_STRING \"$PACKAGE_STRING\"\n_ACEOF\n\n\ncat >>confdefs.h <<_ACEOF\n#define PACKAGE_BUGREPORT \"$PACKAGE_BUGREPORT\"\n_ACEOF\n\n\n# Let the site file select an alternate cache file if it wants to.\n# Prefer explicitly selected file to automatically selected ones.\nif test -n \"$CONFIG_SITE\"; then\n  set x \"$CONFIG_SITE\"\nelif test \"x$prefix\" != xNONE; then\n  set x \"$prefix/share/config.site\" \"$prefix/etc/config.site\"\nelse\n  set x \"$ac_default_prefix/share/config.site\" \\\n\t\"$ac_default_prefix/etc/config.site\"\nfi\nshift\nfor ac_site_file\ndo\n  if test -r \"$ac_site_file\"; then\n    { echo \"$as_me:$LINENO: loading site script $ac_site_file\" >&5\necho \"$as_me: loading site script $ac_site_file\" >&6;}\n    sed 's/^/| /' \"$ac_site_file\" >&5\n    . \"$ac_site_file\"\n  fi\ndone\n\nif test -r \"$cache_file\"; then\n  # Some versions of bash will fail to source /dev/null (special\n  # files actually), so we avoid doing that.\n  if test -f \"$cache_file\"; then\n    { echo \"$as_me:$LINENO: loading cache $cache_file\" >&5\necho \"$as_me: loading cache $cache_file\" >&6;}\n    case $cache_file in\n      [\\\\/]* | ?:[\\\\/]* ) . \"$cache_file\";;\n      *)                      . \"./$cache_file\";;\n    esac\n  fi\nelse\n  { echo \"$as_me:$LINENO: creating cache $cache_file\" >&5\necho \"$as_me: creating cache $cache_file\" >&6;}\n  >$cache_file\nfi\n\n# Check that the precious variables saved in the cache have kept the same\n# value.\nac_cache_corrupted=false\nfor ac_var in $ac_precious_vars; do\n  eval ac_old_set=\\$ac_cv_env_${ac_var}_set\n  eval ac_new_set=\\$ac_env_${ac_var}_set\n  eval ac_old_val=\\$ac_cv_env_${ac_var}_value\n  eval ac_new_val=\\$ac_env_${ac_var}_value\n  case $ac_old_set,$ac_new_set in\n    set,)\n      { echo \"$as_me:$LINENO: error: \\`$ac_var' was set to \\`$ac_old_val' in the previous run\" >&5\necho \"$as_me: error: \\`$ac_var' was set to \\`$ac_old_val' in the previous run\" >&2;}\n      ac_cache_corrupted=: ;;\n    ,set)\n      { echo \"$as_me:$LINENO: error: \\`$ac_var' was not set in the previous run\" >&5\necho \"$as_me: error: \\`$ac_var' was not set in the previous run\" >&2;}\n      ac_cache_corrupted=: ;;\n    ,);;\n    *)\n      if test \"x$ac_old_val\" != \"x$ac_new_val\"; then\n\t{ echo \"$as_me:$LINENO: error: \\`$ac_var' has changed since the previous run:\" >&5\necho \"$as_me: error: \\`$ac_var' has changed since the previous run:\" >&2;}\n\t{ echo \"$as_me:$LINENO:   former value:  $ac_old_val\" >&5\necho \"$as_me:   former value:  $ac_old_val\" >&2;}\n\t{ echo \"$as_me:$LINENO:   current value: $ac_new_val\" >&5\necho \"$as_me:   current value: $ac_new_val\" >&2;}\n\tac_cache_corrupted=:\n      fi;;\n  esac\n  # Pass precious variables to config.status.\n  if test \"$ac_new_set\" = set; then\n    case $ac_new_val in\n    *\\'*) ac_arg=$ac_var=`echo \"$ac_new_val\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"` ;;\n    *) ac_arg=$ac_var=$ac_new_val ;;\n    esac\n    case \" $ac_configure_args \" in\n      *\" '$ac_arg' \"*) ;; # Avoid dups.  Use of quotes ensures accuracy.\n      *) ac_configure_args=\"$ac_configure_args '$ac_arg'\" ;;\n    esac\n  fi\ndone\nif $ac_cache_corrupted; then\n  { echo \"$as_me:$LINENO: error: changes in the environment can compromise the build\" >&5\necho \"$as_me: error: changes in the environment can compromise the build\" >&2;}\n  { { echo \"$as_me:$LINENO: error: run \\`make distclean' and/or \\`rm $cache_file' and start over\" >&5\necho \"$as_me: error: run \\`make distclean' and/or \\`rm $cache_file' and start over\" >&2;}\n   { (exit 1); exit 1; }; }\nfi\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\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\n\nac_aux_dir=\nfor ac_dir in build_aux \"$srcdir\"/build_aux; do\n  if test -f \"$ac_dir/install-sh\"; then\n    ac_aux_dir=$ac_dir\n    ac_install_sh=\"$ac_aux_dir/install-sh -c\"\n    break\n  elif test -f \"$ac_dir/install.sh\"; then\n    ac_aux_dir=$ac_dir\n    ac_install_sh=\"$ac_aux_dir/install.sh -c\"\n    break\n  elif test -f \"$ac_dir/shtool\"; then\n    ac_aux_dir=$ac_dir\n    ac_install_sh=\"$ac_aux_dir/shtool install -c\"\n    break\n  fi\ndone\nif test -z \"$ac_aux_dir\"; then\n  { { echo \"$as_me:$LINENO: error: cannot find install-sh or install.sh in build_aux \\\"$srcdir\\\"/build_aux\" >&5\necho \"$as_me: error: cannot find install-sh or install.sh in build_aux \\\"$srcdir\\\"/build_aux\" >&2;}\n   { (exit 1); exit 1; }; }\nfi\n\n# These three variables are undocumented and unsupported,\n# and are intended to be withdrawn in a future Autoconf release.\n# They can cause serious problems if a builder's source tree is in a directory\n# whose full name contains unusual characters.\nac_config_guess=\"$SHELL $ac_aux_dir/config.guess\"  # Please don't use this var.\nac_config_sub=\"$SHELL $ac_aux_dir/config.sub\"  # Please don't use this var.\nac_configure=\"$SHELL $ac_aux_dir/configure\"  # Please don't use this var.\n\n\nam__api_version='1.10'\n\n# Find a good install program.  We prefer a C program (faster),\n# so one script is as good as another.  But avoid the broken or\n# incompatible versions:\n# SysV /etc/install, /usr/sbin/install\n# SunOS /usr/etc/install\n# IRIX /sbin/install\n# AIX /bin/install\n# AmigaOS /C/install, which installs bootblocks on floppy discs\n# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag\n# AFS /usr/afsws/bin/install, which mishandles nonexistent args\n# SVR4 /usr/ucb/install, which tries to use the nonexistent group \"staff\"\n# OS/2's system install, which has a completely different semantic\n# ./install, which can be erroneously created by make from ./install.sh.\n{ echo \"$as_me:$LINENO: checking for a BSD-compatible install\" >&5\necho $ECHO_N \"checking for a BSD-compatible install... $ECHO_C\" >&6; }\nif test -z \"$INSTALL\"; then\nif test \"${ac_cv_path_install+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  # Account for people who put trailing slashes in PATH elements.\ncase $as_dir/ in\n  ./ | .// | /cC/* | \\\n  /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \\\n  ?:\\\\/os2\\\\/install\\\\/* | ?:\\\\/OS2\\\\/INSTALL\\\\/* | \\\n  /usr/ucb/* ) ;;\n  *)\n    # OSF1 and SCO ODT 3.0 have their own names for install.\n    # Don't use installbsd from OSF since it installs stuff as root\n    # by default.\n    for ac_prog in ginstall scoinst install; do\n      for ac_exec_ext in '' $ac_executable_extensions; do\n\tif { test -f \"$as_dir/$ac_prog$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_prog$ac_exec_ext\"; }; then\n\t  if test $ac_prog = install &&\n\t    grep dspmsg \"$as_dir/$ac_prog$ac_exec_ext\" >/dev/null 2>&1; then\n\t    # AIX install.  It has an incompatible calling convention.\n\t    :\n\t  elif test $ac_prog = install &&\n\t    grep pwplus \"$as_dir/$ac_prog$ac_exec_ext\" >/dev/null 2>&1; then\n\t    # program-specific install script used by HP pwplus--don't use.\n\t    :\n\t  else\n\t    ac_cv_path_install=\"$as_dir/$ac_prog$ac_exec_ext -c\"\n\t    break 3\n\t  fi\n\tfi\n      done\n    done\n    ;;\nesac\ndone\nIFS=$as_save_IFS\n\n\nfi\n  if test \"${ac_cv_path_install+set}\" = set; then\n    INSTALL=$ac_cv_path_install\n  else\n    # As a last resort, use the slow shell script.  Don't cache a\n    # value for INSTALL within a source directory, because that will\n    # break other packages using the cache if that directory is\n    # removed, or if the value is a relative name.\n    INSTALL=$ac_install_sh\n  fi\nfi\n{ echo \"$as_me:$LINENO: result: $INSTALL\" >&5\necho \"${ECHO_T}$INSTALL\" >&6; }\n\n# Use test -z because SunOS4 sh mishandles braces in ${var-val}.\n# It thinks the first close brace ends the variable substitution.\ntest -z \"$INSTALL_PROGRAM\" && INSTALL_PROGRAM='${INSTALL}'\n\ntest -z \"$INSTALL_SCRIPT\" && INSTALL_SCRIPT='${INSTALL}'\n\ntest -z \"$INSTALL_DATA\" && INSTALL_DATA='${INSTALL} -m 644'\n\n{ echo \"$as_me:$LINENO: checking whether build environment is sane\" >&5\necho $ECHO_N \"checking whether build environment is sane... $ECHO_C\" >&6; }\n# Just in case\nsleep 1\necho timestamp > conftest.file\n# Do `set' in a subshell so we don't clobber the current shell's\n# arguments.  Must try -L first in case configure is actually a\n# symlink; some systems play weird games with the mod time of symlinks\n# (eg FreeBSD returns the mod time of the symlink's containing\n# directory).\nif (\n   set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`\n   if test \"$*\" = \"X\"; then\n      # -L didn't work.\n      set X `ls -t $srcdir/configure conftest.file`\n   fi\n   rm -f conftest.file\n   if test \"$*\" != \"X $srcdir/configure conftest.file\" \\\n      && test \"$*\" != \"X conftest.file $srcdir/configure\"; then\n\n      # If neither matched, then we have a broken ls.  This can happen\n      # if, for instance, CONFIG_SHELL is bash and it inherits a\n      # broken ls alias from the environment.  This has actually\n      # happened.  Such a system could not be considered \"sane\".\n      { { echo \"$as_me:$LINENO: error: ls -t appears to fail.  Make sure there is not a broken\nalias in your environment\" >&5\necho \"$as_me: error: ls -t appears to fail.  Make sure there is not a broken\nalias in your environment\" >&2;}\n   { (exit 1); exit 1; }; }\n   fi\n\n   test \"$2\" = conftest.file\n   )\nthen\n   # Ok.\n   :\nelse\n   { { echo \"$as_me:$LINENO: error: newly created file is older than distributed files!\nCheck your system clock\" >&5\necho \"$as_me: error: newly created file is older than distributed files!\nCheck your system clock\" >&2;}\n   { (exit 1); exit 1; }; }\nfi\n{ echo \"$as_me:$LINENO: result: yes\" >&5\necho \"${ECHO_T}yes\" >&6; }\ntest \"$program_prefix\" != NONE &&\n  program_transform_name=\"s&^&$program_prefix&;$program_transform_name\"\n# Use a double $ so make ignores it.\ntest \"$program_suffix\" != NONE &&\n  program_transform_name=\"s&\\$&$program_suffix&;$program_transform_name\"\n# Double any \\ or $.  echo might interpret backslashes.\n# By default was `s,x,x', remove it if useless.\ncat <<\\_ACEOF >conftest.sed\ns/[\\\\$]/&&/g;s/;s,x,x,$//\n_ACEOF\nprogram_transform_name=`echo $program_transform_name | sed -f conftest.sed`\nrm -f conftest.sed\n\n# expand $ac_aux_dir to an absolute path\nam_aux_dir=`cd $ac_aux_dir && pwd`\n\ntest x\"${MISSING+set}\" = xset || MISSING=\"\\${SHELL} $am_aux_dir/missing\"\n# Use eval to expand $SHELL\nif eval \"$MISSING --run true\"; then\n  am_missing_run=\"$MISSING --run \"\nelse\n  am_missing_run=\n  { echo \"$as_me:$LINENO: WARNING: \\`missing' script is too old or missing\" >&5\necho \"$as_me: WARNING: \\`missing' script is too old or missing\" >&2;}\nfi\n\n{ echo \"$as_me:$LINENO: checking for a thread-safe mkdir -p\" >&5\necho $ECHO_N \"checking for a thread-safe mkdir -p... $ECHO_C\" >&6; }\nif test -z \"$MKDIR_P\"; then\n  if test \"${ac_cv_path_mkdir+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_prog in mkdir gmkdir; do\n\t for ac_exec_ext in '' $ac_executable_extensions; do\n\t   { test -f \"$as_dir/$ac_prog$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_prog$ac_exec_ext\"; } || continue\n\t   case `\"$as_dir/$ac_prog$ac_exec_ext\" --version 2>&1` in #(\n\t     'mkdir (GNU coreutils) '* | \\\n\t     'mkdir (coreutils) '* | \\\n\t     'mkdir (fileutils) '4.1*)\n\t       ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext\n\t       break 3;;\n\t   esac\n\t done\n       done\ndone\nIFS=$as_save_IFS\n\nfi\n\n  if test \"${ac_cv_path_mkdir+set}\" = set; then\n    MKDIR_P=\"$ac_cv_path_mkdir -p\"\n  else\n    # As a last resort, use the slow shell script.  Don't cache a\n    # value for MKDIR_P within a source directory, because that will\n    # break other packages using the cache if that directory is\n    # removed, or if the value is a relative name.\n    test -d ./--version && rmdir ./--version\n    MKDIR_P=\"$ac_install_sh -d\"\n  fi\nfi\n{ echo \"$as_me:$LINENO: result: $MKDIR_P\" >&5\necho \"${ECHO_T}$MKDIR_P\" >&6; }\n\nmkdir_p=\"$MKDIR_P\"\ncase $mkdir_p in\n  [\\\\/$]* | ?:[\\\\/]*) ;;\n  */*) mkdir_p=\"\\$(top_builddir)/$mkdir_p\" ;;\nesac\n\nfor ac_prog in gawk mawk nawk awk\ndo\n  # Extract the first word of \"$ac_prog\", so it can be a program name with args.\nset dummy $ac_prog; ac_word=$2\n{ echo \"$as_me:$LINENO: checking for $ac_word\" >&5\necho $ECHO_N \"checking for $ac_word... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_AWK+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$AWK\"; then\n  ac_cv_prog_AWK=\"$AWK\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_exec_ext in '' $ac_executable_extensions; do\n  if { test -f \"$as_dir/$ac_word$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_word$ac_exec_ext\"; }; then\n    ac_cv_prog_AWK=\"$ac_prog\"\n    echo \"$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\ndone\nIFS=$as_save_IFS\n\nfi\nfi\nAWK=$ac_cv_prog_AWK\nif test -n \"$AWK\"; then\n  { echo \"$as_me:$LINENO: result: $AWK\" >&5\necho \"${ECHO_T}$AWK\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n\n  test -n \"$AWK\" && break\ndone\n\n{ echo \"$as_me:$LINENO: checking whether ${MAKE-make} sets \\$(MAKE)\" >&5\necho $ECHO_N \"checking whether ${MAKE-make} sets \\$(MAKE)... $ECHO_C\" >&6; }\nset x ${MAKE-make}; ac_make=`echo \"$2\" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`\nif { as_var=ac_cv_prog_make_${ac_make}_set; eval \"test \\\"\\${$as_var+set}\\\" = set\"; }; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  cat >conftest.make <<\\_ACEOF\nSHELL = /bin/sh\nall:\n\t@echo '@@@%%%=$(MAKE)=@@@%%%'\n_ACEOF\n# GNU make sometimes prints \"make[1]: Entering...\", which would confuse us.\ncase `${MAKE-make} -f conftest.make 2>/dev/null` in\n  *@@@%%%=?*=@@@%%%*)\n    eval ac_cv_prog_make_${ac_make}_set=yes;;\n  *)\n    eval ac_cv_prog_make_${ac_make}_set=no;;\nesac\nrm -f conftest.make\nfi\nif eval test \\$ac_cv_prog_make_${ac_make}_set = yes; then\n  { echo \"$as_me:$LINENO: result: yes\" >&5\necho \"${ECHO_T}yes\" >&6; }\n  SET_MAKE=\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\n  SET_MAKE=\"MAKE=${MAKE-make}\"\nfi\n\nrm -rf .tst 2>/dev/null\nmkdir .tst 2>/dev/null\nif test -d .tst; then\n  am__leading_dot=.\nelse\n  am__leading_dot=_\nfi\nrmdir .tst 2>/dev/null\n\nif test \"`cd $srcdir && pwd`\" != \"`pwd`\"; then\n  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output\n  # is not polluted with repeated \"-I.\"\n  am__isrc=' -I$(srcdir)'\n  # test to see if srcdir already configured\n  if test -f $srcdir/config.status; then\n    { { echo \"$as_me:$LINENO: error: source directory already configured; run \\\"make distclean\\\" there first\" >&5\necho \"$as_me: error: source directory already configured; run \\\"make distclean\\\" there first\" >&2;}\n   { (exit 1); exit 1; }; }\n  fi\nfi\n\n# test whether we have cygpath\nif test -z \"$CYGPATH_W\"; then\n  if (cygpath --version) >/dev/null 2>/dev/null; then\n    CYGPATH_W='cygpath -w'\n  else\n    CYGPATH_W=echo\n  fi\nfi\n\n\n# Define the identity of the package.\n PACKAGE=cld\n VERSION=0.6.0\n\n\ncat >>confdefs.h <<_ACEOF\n#define PACKAGE \"$PACKAGE\"\n_ACEOF\n\n\ncat >>confdefs.h <<_ACEOF\n#define VERSION \"$VERSION\"\n_ACEOF\n\n# Some tools Automake needs.\n\nACLOCAL=${ACLOCAL-\"${am_missing_run}aclocal-${am__api_version}\"}\n\n\nAUTOCONF=${AUTOCONF-\"${am_missing_run}autoconf\"}\n\n\nAUTOMAKE=${AUTOMAKE-\"${am_missing_run}automake-${am__api_version}\"}\n\n\nAUTOHEADER=${AUTOHEADER-\"${am_missing_run}autoheader\"}\n\n\nMAKEINFO=${MAKEINFO-\"${am_missing_run}makeinfo\"}\n\ninstall_sh=${install_sh-\"\\$(SHELL) $am_aux_dir/install-sh\"}\n\n# Installed binaries are usually stripped using `strip' when the user\n# run `make install-strip'.  However `strip' might not be the right\n# tool to use in cross-compilation environments, therefore Automake\n# will honor the `STRIP' environment variable to overrule this program.\nif test \"$cross_compiling\" != no; then\n  if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}strip\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}strip; ac_word=$2\n{ echo \"$as_me:$LINENO: checking for $ac_word\" >&5\necho $ECHO_N \"checking for $ac_word... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_STRIP+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$STRIP\"; then\n  ac_cv_prog_STRIP=\"$STRIP\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_exec_ext in '' $ac_executable_extensions; do\n  if { test -f \"$as_dir/$ac_word$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_word$ac_exec_ext\"; }; then\n    ac_cv_prog_STRIP=\"${ac_tool_prefix}strip\"\n    echo \"$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\ndone\nIFS=$as_save_IFS\n\nfi\nfi\nSTRIP=$ac_cv_prog_STRIP\nif test -n \"$STRIP\"; then\n  { echo \"$as_me:$LINENO: result: $STRIP\" >&5\necho \"${ECHO_T}$STRIP\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_STRIP\"; then\n  ac_ct_STRIP=$STRIP\n  # Extract the first word of \"strip\", so it can be a program name with args.\nset dummy strip; ac_word=$2\n{ echo \"$as_me:$LINENO: checking for $ac_word\" >&5\necho $ECHO_N \"checking for $ac_word... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_ac_ct_STRIP+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$ac_ct_STRIP\"; then\n  ac_cv_prog_ac_ct_STRIP=\"$ac_ct_STRIP\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_exec_ext in '' $ac_executable_extensions; do\n  if { test -f \"$as_dir/$ac_word$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_word$ac_exec_ext\"; }; then\n    ac_cv_prog_ac_ct_STRIP=\"strip\"\n    echo \"$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\ndone\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP\nif test -n \"$ac_ct_STRIP\"; then\n  { echo \"$as_me:$LINENO: result: $ac_ct_STRIP\" >&5\necho \"${ECHO_T}$ac_ct_STRIP\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n  if test \"x$ac_ct_STRIP\" = x; then\n    STRIP=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ echo \"$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools\nwhose name does not start with the host triplet.  If you think this\nconfiguration is useful to you, please write to autoconf@gnu.org.\" >&5\necho \"$as_me: WARNING: In the future, Autoconf will not detect cross-tools\nwhose name does not start with the host triplet.  If you think this\nconfiguration is useful to you, please write to autoconf@gnu.org.\" >&2;}\nac_tool_warned=yes ;;\nesac\n    STRIP=$ac_ct_STRIP\n  fi\nelse\n  STRIP=\"$ac_cv_prog_STRIP\"\nfi\n\nfi\nINSTALL_STRIP_PROGRAM=\"\\$(install_sh) -c -s\"\n\n# We need awk for the \"check\" target.  The system \"awk\" is bad on\n# some platforms.\n# Always define AMTAR for backward compatibility.\n\nAMTAR=${AMTAR-\"${am_missing_run}tar\"}\n\nam__tar='${AMTAR} chof - \"$$tardir\"'; am__untar='${AMTAR} xf -'\n\n\n\n\n\n\ncase `pwd` in\n  *\\ * | *\\\t*)\n    { echo \"$as_me:$LINENO: WARNING: Libtool does not cope well with whitespace in \\`pwd\\`\" >&5\necho \"$as_me: WARNING: Libtool does not cope well with whitespace in \\`pwd\\`\" >&2;} ;;\nesac\n\n\n\nmacro_version='2.2.10'\nmacro_revision='1.3175'\n\n\n\n\n\n\n\n\n\n\n\n\n\nltmain=\"$ac_aux_dir/ltmain.sh\"\n\n# Make sure we can run config.sub.\n$SHELL \"$ac_aux_dir/config.sub\" sun4 >/dev/null 2>&1 ||\n  { { echo \"$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub\" >&5\necho \"$as_me: error: cannot run $SHELL $ac_aux_dir/config.sub\" >&2;}\n   { (exit 1); exit 1; }; }\n\n{ echo \"$as_me:$LINENO: checking build system type\" >&5\necho $ECHO_N \"checking build system type... $ECHO_C\" >&6; }\nif test \"${ac_cv_build+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  ac_build_alias=$build_alias\ntest \"x$ac_build_alias\" = x &&\n  ac_build_alias=`$SHELL \"$ac_aux_dir/config.guess\"`\ntest \"x$ac_build_alias\" = x &&\n  { { echo \"$as_me:$LINENO: error: cannot guess build type; you must specify one\" >&5\necho \"$as_me: error: cannot guess build type; you must specify one\" >&2;}\n   { (exit 1); exit 1; }; }\nac_cv_build=`$SHELL \"$ac_aux_dir/config.sub\" $ac_build_alias` ||\n  { { echo \"$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed\" >&5\necho \"$as_me: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed\" >&2;}\n   { (exit 1); exit 1; }; }\n\nfi\n{ echo \"$as_me:$LINENO: result: $ac_cv_build\" >&5\necho \"${ECHO_T}$ac_cv_build\" >&6; }\ncase $ac_cv_build in\n*-*-*) ;;\n*) { { echo \"$as_me:$LINENO: error: invalid value of canonical build\" >&5\necho \"$as_me: error: invalid value of canonical build\" >&2;}\n   { (exit 1); exit 1; }; };;\nesac\nbuild=$ac_cv_build\nac_save_IFS=$IFS; IFS='-'\nset x $ac_cv_build\nshift\nbuild_cpu=$1\nbuild_vendor=$2\nshift; shift\n# Remember, the first character of IFS is used to create $*,\n# except with old shells:\nbuild_os=$*\nIFS=$ac_save_IFS\ncase $build_os in *\\ *) build_os=`echo \"$build_os\" | sed 's/ /-/g'`;; esac\n\n\n{ echo \"$as_me:$LINENO: checking host system type\" >&5\necho $ECHO_N \"checking host system type... $ECHO_C\" >&6; }\nif test \"${ac_cv_host+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test \"x$host_alias\" = x; then\n  ac_cv_host=$ac_cv_build\nelse\n  ac_cv_host=`$SHELL \"$ac_aux_dir/config.sub\" $host_alias` ||\n    { { echo \"$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed\" >&5\necho \"$as_me: error: $SHELL $ac_aux_dir/config.sub $host_alias failed\" >&2;}\n   { (exit 1); exit 1; }; }\nfi\n\nfi\n{ echo \"$as_me:$LINENO: result: $ac_cv_host\" >&5\necho \"${ECHO_T}$ac_cv_host\" >&6; }\ncase $ac_cv_host in\n*-*-*) ;;\n*) { { echo \"$as_me:$LINENO: error: invalid value of canonical host\" >&5\necho \"$as_me: error: invalid value of canonical host\" >&2;}\n   { (exit 1); exit 1; }; };;\nesac\nhost=$ac_cv_host\nac_save_IFS=$IFS; IFS='-'\nset x $ac_cv_host\nshift\nhost_cpu=$1\nhost_vendor=$2\nshift; shift\n# Remember, the first character of IFS is used to create $*,\n# except with old shells:\nhost_os=$*\nIFS=$ac_save_IFS\ncase $host_os in *\\ *) host_os=`echo \"$host_os\" | sed 's/ /-/g'`;; esac\n\n\n# Backslashify metacharacters that are still active within\n# double-quoted strings.\nsed_quote_subst='s/\\([\"`$\\\\]\\)/\\\\\\1/g'\n\n# Same as above, but do not quote variable references.\ndouble_quote_subst='s/\\([\"`\\\\]\\)/\\\\\\1/g'\n\n# Sed substitution to delay expansion of an escaped shell variable in a\n# double_quote_subst'ed string.\ndelay_variable_subst='s/\\\\\\\\\\\\\\\\\\\\\\$/\\\\\\\\\\\\$/g'\n\n# Sed substitution to delay expansion of an escaped single quote.\ndelay_single_quote_subst='s/'\\''/'\\'\\\\\\\\\\\\\\'\\''/g'\n\n# Sed substitution to avoid accidental globbing in evaled expressions\nno_glob_subst='s/\\*/\\\\\\*/g'\n\nECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'\nECHO=$ECHO$ECHO$ECHO$ECHO$ECHO\nECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO\n\n{ echo \"$as_me:$LINENO: checking how to print strings\" >&5\necho $ECHO_N \"checking how to print strings... $ECHO_C\" >&6; }\n# Test print first, because it will be a builtin if present.\nif test \"X`print -r -- -n 2>/dev/null`\" = X-n && \\\n   test \"X`print -r -- $ECHO 2>/dev/null`\" = \"X$ECHO\"; then\n  ECHO='print -r --'\nelif test \"X`printf %s $ECHO 2>/dev/null`\" = \"X$ECHO\"; then\n  ECHO='printf %s\\n'\nelse\n  # Use this function as a fallback that always works.\n  func_fallback_echo ()\n  {\n    eval 'cat <<_LTECHO_EOF\n$1\n_LTECHO_EOF'\n  }\n  ECHO='func_fallback_echo'\nfi\n\n# func_echo_all arg...\n# Invoke $ECHO with all args, space-separated.\nfunc_echo_all ()\n{\n    $ECHO \"\"\n}\n\ncase \"$ECHO\" in\n  printf*) { echo \"$as_me:$LINENO: result: printf\" >&5\necho \"${ECHO_T}printf\" >&6; } ;;\n  print*) { echo \"$as_me:$LINENO: result: print -r\" >&5\necho \"${ECHO_T}print -r\" >&6; } ;;\n  *) { echo \"$as_me:$LINENO: result: cat\" >&5\necho \"${ECHO_T}cat\" >&6; } ;;\nesac\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nDEPDIR=\"${am__leading_dot}deps\"\n\nac_config_commands=\"$ac_config_commands depfiles\"\n\n\nam_make=${MAKE-make}\ncat > confinc << 'END'\nam__doit:\n\t@echo done\n.PHONY: am__doit\nEND\n# If we don't find an include directive, just comment out the code.\n{ echo \"$as_me:$LINENO: checking for style of include used by $am_make\" >&5\necho $ECHO_N \"checking for style of include used by $am_make... $ECHO_C\" >&6; }\nam__include=\"#\"\nam__quote=\n_am_result=none\n# First try GNU make style include.\necho \"include confinc\" > confmf\n# We grep out `Entering directory' and `Leaving directory'\n# messages which can occur if `w' ends up in MAKEFLAGS.\n# In particular we don't look at `^make:' because GNU make might\n# be invoked under some other name (usually \"gmake\"), in which\n# case it prints its new name instead of `make'.\nif test \"`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`\" = \"done\"; then\n   am__include=include\n   am__quote=\n   _am_result=GNU\nfi\n# Now try BSD make style include.\nif test \"$am__include\" = \"#\"; then\n   echo '.include \"confinc\"' > confmf\n   if test \"`$am_make -s -f confmf 2> /dev/null`\" = \"done\"; then\n      am__include=.include\n      am__quote=\"\\\"\"\n      _am_result=BSD\n   fi\nfi\n\n\n{ echo \"$as_me:$LINENO: result: $_am_result\" >&5\necho \"${ECHO_T}$_am_result\" >&6; }\nrm -f confinc confmf\n\n# Check whether --enable-dependency-tracking was given.\nif test \"${enable_dependency_tracking+set}\" = set; then\n  enableval=$enable_dependency_tracking;\nfi\n\nif test \"x$enable_dependency_tracking\" != xno; then\n  am_depcomp=\"$ac_aux_dir/depcomp\"\n  AMDEPBACKSLASH='\\'\nfi\n if test \"x$enable_dependency_tracking\" != xno; then\n  AMDEP_TRUE=\n  AMDEP_FALSE='#'\nelse\n  AMDEP_TRUE='#'\n  AMDEP_FALSE=\nfi\n\n\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\nif test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}gcc\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}gcc; ac_word=$2\n{ echo \"$as_me:$LINENO: checking for $ac_word\" >&5\necho $ECHO_N \"checking for $ac_word... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_CC+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$CC\"; then\n  ac_cv_prog_CC=\"$CC\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_exec_ext in '' $ac_executable_extensions; do\n  if { test -f \"$as_dir/$ac_word$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_word$ac_exec_ext\"; }; then\n    ac_cv_prog_CC=\"${ac_tool_prefix}gcc\"\n    echo \"$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\ndone\nIFS=$as_save_IFS\n\nfi\nfi\nCC=$ac_cv_prog_CC\nif test -n \"$CC\"; then\n  { echo \"$as_me:$LINENO: result: $CC\" >&5\necho \"${ECHO_T}$CC\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_CC\"; then\n  ac_ct_CC=$CC\n  # Extract the first word of \"gcc\", so it can be a program name with args.\nset dummy gcc; ac_word=$2\n{ echo \"$as_me:$LINENO: checking for $ac_word\" >&5\necho $ECHO_N \"checking for $ac_word... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_ac_ct_CC+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$ac_ct_CC\"; then\n  ac_cv_prog_ac_ct_CC=\"$ac_ct_CC\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_exec_ext in '' $ac_executable_extensions; do\n  if { test -f \"$as_dir/$ac_word$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_word$ac_exec_ext\"; }; then\n    ac_cv_prog_ac_ct_CC=\"gcc\"\n    echo \"$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\ndone\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_CC=$ac_cv_prog_ac_ct_CC\nif test -n \"$ac_ct_CC\"; then\n  { echo \"$as_me:$LINENO: result: $ac_ct_CC\" >&5\necho \"${ECHO_T}$ac_ct_CC\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n  if test \"x$ac_ct_CC\" = x; then\n    CC=\"\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ echo \"$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools\nwhose name does not start with the host triplet.  If you think this\nconfiguration is useful to you, please write to autoconf@gnu.org.\" >&5\necho \"$as_me: WARNING: In the future, Autoconf will not detect cross-tools\nwhose name does not start with the host triplet.  If you think this\nconfiguration is useful to you, please write to autoconf@gnu.org.\" >&2;}\nac_tool_warned=yes ;;\nesac\n    CC=$ac_ct_CC\n  fi\nelse\n  CC=\"$ac_cv_prog_CC\"\nfi\n\nif test -z \"$CC\"; then\n          if test -n \"$ac_tool_prefix\"; then\n    # Extract the first word of \"${ac_tool_prefix}cc\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}cc; ac_word=$2\n{ echo \"$as_me:$LINENO: checking for $ac_word\" >&5\necho $ECHO_N \"checking for $ac_word... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_CC+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$CC\"; then\n  ac_cv_prog_CC=\"$CC\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_exec_ext in '' $ac_executable_extensions; do\n  if { test -f \"$as_dir/$ac_word$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_word$ac_exec_ext\"; }; then\n    ac_cv_prog_CC=\"${ac_tool_prefix}cc\"\n    echo \"$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\ndone\nIFS=$as_save_IFS\n\nfi\nfi\nCC=$ac_cv_prog_CC\nif test -n \"$CC\"; then\n  { echo \"$as_me:$LINENO: result: $CC\" >&5\necho \"${ECHO_T}$CC\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n\n  fi\nfi\nif test -z \"$CC\"; then\n  # Extract the first word of \"cc\", so it can be a program name with args.\nset dummy cc; ac_word=$2\n{ echo \"$as_me:$LINENO: checking for $ac_word\" >&5\necho $ECHO_N \"checking for $ac_word... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_CC+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$CC\"; then\n  ac_cv_prog_CC=\"$CC\" # Let the user override the test.\nelse\n  ac_prog_rejected=no\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_exec_ext in '' $ac_executable_extensions; do\n  if { test -f \"$as_dir/$ac_word$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_word$ac_exec_ext\"; }; then\n    if test \"$as_dir/$ac_word$ac_exec_ext\" = \"/usr/ucb/cc\"; then\n       ac_prog_rejected=yes\n       continue\n     fi\n    ac_cv_prog_CC=\"cc\"\n    echo \"$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\ndone\nIFS=$as_save_IFS\n\nif test $ac_prog_rejected = yes; then\n  # We found a bogon in the path, so make sure we never use it.\n  set dummy $ac_cv_prog_CC\n  shift\n  if test $# != 0; then\n    # We chose a different compiler from the bogus one.\n    # However, it has the same basename, so the bogon will be chosen\n    # first if we set CC to just the basename; use the full file name.\n    shift\n    ac_cv_prog_CC=\"$as_dir/$ac_word${1+' '}$@\"\n  fi\nfi\nfi\nfi\nCC=$ac_cv_prog_CC\nif test -n \"$CC\"; then\n  { echo \"$as_me:$LINENO: result: $CC\" >&5\necho \"${ECHO_T}$CC\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n\nfi\nif test -z \"$CC\"; then\n  if test -n \"$ac_tool_prefix\"; then\n  for ac_prog in cl.exe\n  do\n    # Extract the first word of \"$ac_tool_prefix$ac_prog\", so it can be a program name with args.\nset dummy $ac_tool_prefix$ac_prog; ac_word=$2\n{ echo \"$as_me:$LINENO: checking for $ac_word\" >&5\necho $ECHO_N \"checking for $ac_word... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_CC+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$CC\"; then\n  ac_cv_prog_CC=\"$CC\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_exec_ext in '' $ac_executable_extensions; do\n  if { test -f \"$as_dir/$ac_word$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_word$ac_exec_ext\"; }; then\n    ac_cv_prog_CC=\"$ac_tool_prefix$ac_prog\"\n    echo \"$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\ndone\nIFS=$as_save_IFS\n\nfi\nfi\nCC=$ac_cv_prog_CC\nif test -n \"$CC\"; then\n  { echo \"$as_me:$LINENO: result: $CC\" >&5\necho \"${ECHO_T}$CC\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n\n    test -n \"$CC\" && break\n  done\nfi\nif test -z \"$CC\"; then\n  ac_ct_CC=$CC\n  for ac_prog in cl.exe\ndo\n  # Extract the first word of \"$ac_prog\", so it can be a program name with args.\nset dummy $ac_prog; ac_word=$2\n{ echo \"$as_me:$LINENO: checking for $ac_word\" >&5\necho $ECHO_N \"checking for $ac_word... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_ac_ct_CC+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$ac_ct_CC\"; then\n  ac_cv_prog_ac_ct_CC=\"$ac_ct_CC\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_exec_ext in '' $ac_executable_extensions; do\n  if { test -f \"$as_dir/$ac_word$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_word$ac_exec_ext\"; }; then\n    ac_cv_prog_ac_ct_CC=\"$ac_prog\"\n    echo \"$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\ndone\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_CC=$ac_cv_prog_ac_ct_CC\nif test -n \"$ac_ct_CC\"; then\n  { echo \"$as_me:$LINENO: result: $ac_ct_CC\" >&5\necho \"${ECHO_T}$ac_ct_CC\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n\n  test -n \"$ac_ct_CC\" && break\ndone\n\n  if test \"x$ac_ct_CC\" = x; then\n    CC=\"\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ echo \"$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools\nwhose name does not start with the host triplet.  If you think this\nconfiguration is useful to you, please write to autoconf@gnu.org.\" >&5\necho \"$as_me: WARNING: In the future, Autoconf will not detect cross-tools\nwhose name does not start with the host triplet.  If you think this\nconfiguration is useful to you, please write to autoconf@gnu.org.\" >&2;}\nac_tool_warned=yes ;;\nesac\n    CC=$ac_ct_CC\n  fi\nfi\n\nfi\n\n\ntest -z \"$CC\" && { { echo \"$as_me:$LINENO: error: no acceptable C compiler found in \\$PATH\nSee \\`config.log' for more details.\" >&5\necho \"$as_me: error: no acceptable C compiler found in \\$PATH\nSee \\`config.log' for more details.\" >&2;}\n   { (exit 1); exit 1; }; }\n\n# Provide some information about the compiler.\necho \"$as_me:$LINENO: checking for C compiler version\" >&5\nac_compiler=`set X $ac_compile; echo $2`\n{ (ac_try=\"$ac_compiler --version >&5\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_compiler --version >&5\") 2>&5\n  ac_status=$?\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); }\n{ (ac_try=\"$ac_compiler -v >&5\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_compiler -v >&5\") 2>&5\n  ac_status=$?\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); }\n{ (ac_try=\"$ac_compiler -V >&5\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_compiler -V >&5\") 2>&5\n  ac_status=$?\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); }\n\ncat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nac_clean_files_save=$ac_clean_files\nac_clean_files=\"$ac_clean_files a.out a.exe b.out\"\n# Try to create an executable without -o first, disregard a.out.\n# It will help us diagnose broken compilers, and finding out an intuition\n# of exeext.\n{ echo \"$as_me:$LINENO: checking for C compiler default output file name\" >&5\necho $ECHO_N \"checking for C compiler default output file name... $ECHO_C\" >&6; }\nac_link_default=`echo \"$ac_link\" | sed 's/ -o *conftest[^ ]*//'`\n#\n# List of possible output files, starting from the most likely.\n# The algorithm is not robust to junk in `.', hence go to wildcards (a.*)\n# only as a last resort.  b.out is created by i960 compilers.\nac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out'\n#\n# The IRIX 6 linker writes into existing files which may not be\n# executable, retaining their permissions.  Remove them first so a\n# subsequent execution test works.\nac_rmfiles=\nfor ac_file in $ac_files\ndo\n  case $ac_file in\n    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;;\n    * ) ac_rmfiles=\"$ac_rmfiles $ac_file\";;\n  esac\ndone\nrm -f $ac_rmfiles\n\nif { (ac_try=\"$ac_link_default\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_link_default\") 2>&5\n  ac_status=$?\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); }; then\n  # Autoconf-2.13 could set the ac_cv_exeext variable to `no'.\n# So ignore a value of `no', otherwise this would lead to `EXEEXT = no'\n# in a Makefile.  We should not override ac_cv_exeext if it was cached,\n# so that the user can short-circuit this test for compilers unknown to\n# Autoconf.\nfor ac_file in $ac_files ''\ndo\n  test -f \"$ac_file\" || continue\n  case $ac_file in\n    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj )\n\t;;\n    [ab].out )\n\t# We found the default executable, but exeext='' is most\n\t# certainly right.\n\tbreak;;\n    *.* )\n        if test \"${ac_cv_exeext+set}\" = set && test \"$ac_cv_exeext\" != no;\n\tthen :; else\n\t   ac_cv_exeext=`expr \"$ac_file\" : '[^.]*\\(\\..*\\)'`\n\tfi\n\t# We set ac_cv_exeext here because the later test for it is not\n\t# safe: cross compilers may not add the suffix if given an `-o'\n\t# argument, so we may need to know it at that point already.\n\t# Even if this section looks crufty: it has the advantage of\n\t# actually working.\n\tbreak;;\n    * )\n\tbreak;;\n  esac\ndone\ntest \"$ac_cv_exeext\" = no && ac_cv_exeext=\n\nelse\n  ac_file=''\nfi\n\n{ echo \"$as_me:$LINENO: result: $ac_file\" >&5\necho \"${ECHO_T}$ac_file\" >&6; }\nif test -z \"$ac_file\"; then\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n{ { echo \"$as_me:$LINENO: error: C compiler cannot create executables\nSee \\`config.log' for more details.\" >&5\necho \"$as_me: error: C compiler cannot create executables\nSee \\`config.log' for more details.\" >&2;}\n   { (exit 77); exit 77; }; }\nfi\n\nac_exeext=$ac_cv_exeext\n\n# Check that the compiler produces executables we can run.  If not, either\n# the compiler is broken, or we cross compile.\n{ echo \"$as_me:$LINENO: checking whether the C compiler works\" >&5\necho $ECHO_N \"checking whether the C compiler works... $ECHO_C\" >&6; }\n# FIXME: These cross compiler hacks should be removed for Autoconf 3.0\n# If not cross compiling, check that we can run a simple program.\nif test \"$cross_compiling\" != yes; then\n  if { ac_try='./$ac_file'\n  { (case \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_try\") 2>&5\n  ac_status=$?\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); }; }; then\n    cross_compiling=no\n  else\n    if test \"$cross_compiling\" = maybe; then\n\tcross_compiling=yes\n    else\n\t{ { echo \"$as_me:$LINENO: error: cannot run C compiled programs.\nIf you meant to cross compile, use \\`--host'.\nSee \\`config.log' for more details.\" >&5\necho \"$as_me: error: cannot run C compiled programs.\nIf you meant to cross compile, use \\`--host'.\nSee \\`config.log' for more details.\" >&2;}\n   { (exit 1); exit 1; }; }\n    fi\n  fi\nfi\n{ echo \"$as_me:$LINENO: result: yes\" >&5\necho \"${ECHO_T}yes\" >&6; }\n\nrm -f a.out a.exe conftest$ac_cv_exeext b.out\nac_clean_files=$ac_clean_files_save\n# Check that the compiler produces executables we can run.  If not, either\n# the compiler is broken, or we cross compile.\n{ echo \"$as_me:$LINENO: checking whether we are cross compiling\" >&5\necho $ECHO_N \"checking whether we are cross compiling... $ECHO_C\" >&6; }\n{ echo \"$as_me:$LINENO: result: $cross_compiling\" >&5\necho \"${ECHO_T}$cross_compiling\" >&6; }\n\n{ echo \"$as_me:$LINENO: checking for suffix of executables\" >&5\necho $ECHO_N \"checking for suffix of executables... $ECHO_C\" >&6; }\nif { (ac_try=\"$ac_link\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_link\") 2>&5\n  ac_status=$?\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); }; then\n  # If both `conftest.exe' and `conftest' are `present' (well, observable)\n# catch `conftest.exe'.  For instance with Cygwin, `ls conftest' will\n# work properly (i.e., refer to `conftest.exe'), while it won't with\n# `rm'.\nfor ac_file in conftest.exe conftest conftest.*; do\n  test -f \"$ac_file\" || continue\n  case $ac_file in\n    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;;\n    *.* ) ac_cv_exeext=`expr \"$ac_file\" : '[^.]*\\(\\..*\\)'`\n\t  break;;\n    * ) break;;\n  esac\ndone\nelse\n  { { echo \"$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link\nSee \\`config.log' for more details.\" >&5\necho \"$as_me: error: cannot compute suffix of executables: cannot compile and link\nSee \\`config.log' for more details.\" >&2;}\n   { (exit 1); exit 1; }; }\nfi\n\nrm -f conftest$ac_cv_exeext\n{ echo \"$as_me:$LINENO: result: $ac_cv_exeext\" >&5\necho \"${ECHO_T}$ac_cv_exeext\" >&6; }\n\nrm -f conftest.$ac_ext\nEXEEXT=$ac_cv_exeext\nac_exeext=$EXEEXT\n{ echo \"$as_me:$LINENO: checking for suffix of object files\" >&5\necho $ECHO_N \"checking for suffix of object files... $ECHO_C\" >&6; }\nif test \"${ac_cv_objext+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nrm -f conftest.o conftest.obj\nif { (ac_try=\"$ac_compile\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_compile\") 2>&5\n  ac_status=$?\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); }; then\n  for ac_file in conftest.o conftest.obj conftest.*; do\n  test -f \"$ac_file\" || continue;\n  case $ac_file in\n    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf ) ;;\n    *) ac_cv_objext=`expr \"$ac_file\" : '.*\\.\\(.*\\)'`\n       break;;\n  esac\ndone\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n{ { echo \"$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile\nSee \\`config.log' for more details.\" >&5\necho \"$as_me: error: cannot compute suffix of object files: cannot compile\nSee \\`config.log' for more details.\" >&2;}\n   { (exit 1); exit 1; }; }\nfi\n\nrm -f conftest.$ac_cv_objext conftest.$ac_ext\nfi\n{ echo \"$as_me:$LINENO: result: $ac_cv_objext\" >&5\necho \"${ECHO_T}$ac_cv_objext\" >&6; }\nOBJEXT=$ac_cv_objext\nac_objext=$OBJEXT\n{ echo \"$as_me:$LINENO: checking whether we are using the GNU C compiler\" >&5\necho $ECHO_N \"checking whether we are using the GNU C compiler... $ECHO_C\" >&6; }\nif test \"${ac_cv_c_compiler_gnu+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n#ifndef __GNUC__\n       choke me\n#endif\n\n  ;\n  return 0;\n}\n_ACEOF\nrm -f conftest.$ac_objext\nif { (ac_try=\"$ac_compile\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_compile\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && {\n\t test -z \"$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest.$ac_objext; then\n  ac_compiler_gnu=yes\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\tac_compiler_gnu=no\nfi\n\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nac_cv_c_compiler_gnu=$ac_compiler_gnu\n\nfi\n{ echo \"$as_me:$LINENO: result: $ac_cv_c_compiler_gnu\" >&5\necho \"${ECHO_T}$ac_cv_c_compiler_gnu\" >&6; }\nGCC=`test $ac_compiler_gnu = yes && echo yes`\nac_test_CFLAGS=${CFLAGS+set}\nac_save_CFLAGS=$CFLAGS\n{ echo \"$as_me:$LINENO: checking whether $CC accepts -g\" >&5\necho $ECHO_N \"checking whether $CC accepts -g... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_cc_g+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  ac_save_c_werror_flag=$ac_c_werror_flag\n   ac_c_werror_flag=yes\n   ac_cv_prog_cc_g=no\n   CFLAGS=\"-g\"\n   cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nrm -f conftest.$ac_objext\nif { (ac_try=\"$ac_compile\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_compile\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && {\n\t test -z \"$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest.$ac_objext; then\n  ac_cv_prog_cc_g=yes\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\tCFLAGS=\"\"\n      cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nrm -f conftest.$ac_objext\nif { (ac_try=\"$ac_compile\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_compile\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && {\n\t test -z \"$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest.$ac_objext; then\n  :\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\tac_c_werror_flag=$ac_save_c_werror_flag\n\t CFLAGS=\"-g\"\n\t cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nrm -f conftest.$ac_objext\nif { (ac_try=\"$ac_compile\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_compile\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && {\n\t test -z \"$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest.$ac_objext; then\n  ac_cv_prog_cc_g=yes\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\nfi\n\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\n\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\n\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n   ac_c_werror_flag=$ac_save_c_werror_flag\nfi\n{ echo \"$as_me:$LINENO: result: $ac_cv_prog_cc_g\" >&5\necho \"${ECHO_T}$ac_cv_prog_cc_g\" >&6; }\nif test \"$ac_test_CFLAGS\" = set; then\n  CFLAGS=$ac_save_CFLAGS\nelif test $ac_cv_prog_cc_g = yes; then\n  if test \"$GCC\" = yes; then\n    CFLAGS=\"-g -O2\"\n  else\n    CFLAGS=\"-g\"\n  fi\nelse\n  if test \"$GCC\" = yes; then\n    CFLAGS=\"-O2\"\n  else\n    CFLAGS=\n  fi\nfi\n{ echo \"$as_me:$LINENO: checking for $CC option to accept ISO C89\" >&5\necho $ECHO_N \"checking for $CC option to accept ISO C89... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_cc_c89+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  ac_cv_prog_cc_c89=no\nac_save_CC=$CC\ncat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n#include <stdarg.h>\n#include <stdio.h>\n#include <sys/types.h>\n#include <sys/stat.h>\n/* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */\nstruct buf { int x; };\nFILE * (*rcsopen) (struct buf *, struct stat *, int);\nstatic char *e (p, i)\n     char **p;\n     int i;\n{\n  return p[i];\n}\nstatic char *f (char * (*g) (char **, int), char **p, ...)\n{\n  char *s;\n  va_list v;\n  va_start (v,p);\n  s = g (p, va_arg (v,int));\n  va_end (v);\n  return s;\n}\n\n/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default.  It has\n   function prototypes and stuff, but not '\\xHH' hex character constants.\n   These don't provoke an error unfortunately, instead are silently treated\n   as 'x'.  The following induces an error, until -std is added to get\n   proper ANSI mode.  Curiously '\\x00'!='x' always comes out true, for an\n   array size at least.  It's necessary to write '\\x00'==0 to get something\n   that's true only with -std.  */\nint osf4_cc_array ['\\x00' == 0 ? 1 : -1];\n\n/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters\n   inside strings and character constants.  */\n#define FOO(x) 'x'\nint xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];\n\nint test (int i, double x);\nstruct s1 {int (*f) (int a);};\nstruct s2 {int (*f) (double a);};\nint pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);\nint argc;\nchar **argv;\nint\nmain ()\n{\nreturn f (e, argv, 0) != argv[0]  ||  f (e, argv, 1) != argv[1];\n  ;\n  return 0;\n}\n_ACEOF\nfor ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \\\n\t-Ae \"-Aa -D_HPUX_SOURCE\" \"-Xc -D__EXTENSIONS__\"\ndo\n  CC=\"$ac_save_CC $ac_arg\"\n  rm -f conftest.$ac_objext\nif { (ac_try=\"$ac_compile\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_compile\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && {\n\t test -z \"$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest.$ac_objext; then\n  ac_cv_prog_cc_c89=$ac_arg\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\nfi\n\nrm -f core conftest.err conftest.$ac_objext\n  test \"x$ac_cv_prog_cc_c89\" != \"xno\" && break\ndone\nrm -f conftest.$ac_ext\nCC=$ac_save_CC\n\nfi\n# AC_CACHE_VAL\ncase \"x$ac_cv_prog_cc_c89\" in\n  x)\n    { echo \"$as_me:$LINENO: result: none needed\" >&5\necho \"${ECHO_T}none needed\" >&6; } ;;\n  xno)\n    { echo \"$as_me:$LINENO: result: unsupported\" >&5\necho \"${ECHO_T}unsupported\" >&6; } ;;\n  *)\n    CC=\"$CC $ac_cv_prog_cc_c89\"\n    { echo \"$as_me:$LINENO: result: $ac_cv_prog_cc_c89\" >&5\necho \"${ECHO_T}$ac_cv_prog_cc_c89\" >&6; } ;;\nesac\n\n\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\ndepcc=\"$CC\"   am_compiler_list=\n\n{ echo \"$as_me:$LINENO: checking dependency style of $depcc\" >&5\necho $ECHO_N \"checking dependency style of $depcc... $ECHO_C\" >&6; }\nif test \"${am_cv_CC_dependencies_compiler_type+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -z \"$AMDEP_TRUE\" && test -f \"$am_depcomp\"; then\n  # We make a subdir and do the tests there.  Otherwise we can end up\n  # making bogus files that we don't know about and never remove.  For\n  # instance it was reported that on HP-UX the gcc test will end up\n  # making a dummy file named `D' -- because `-MD' means `put the output\n  # in D'.\n  mkdir conftest.dir\n  # Copy depcomp to subdir because otherwise we won't find it if we're\n  # using a relative directory.\n  cp \"$am_depcomp\" conftest.dir\n  cd conftest.dir\n  # We will build objects and dependencies in a subdirectory because\n  # it helps to detect inapplicable dependency modes.  For instance\n  # both Tru64's cc and ICC support -MD to output dependencies as a\n  # side effect of compilation, but ICC will put the dependencies in\n  # the current directory while Tru64 will put them in the object\n  # directory.\n  mkdir sub\n\n  am_cv_CC_dependencies_compiler_type=none\n  if test \"$am_compiler_list\" = \"\"; then\n     am_compiler_list=`sed -n 's/^#*\\([a-zA-Z0-9]*\\))$/\\1/p' < ./depcomp`\n  fi\n  for depmode in $am_compiler_list; do\n    # Setup a source with many dependencies, because some compilers\n    # like to wrap large dependency lists on column 80 (with \\), and\n    # we should not choose a depcomp mode which is confused by this.\n    #\n    # We need to recreate these files for each test, as the compiler may\n    # overwrite some of them when testing with obscure command lines.\n    # This happens at least with the AIX C compiler.\n    : > sub/conftest.c\n    for i in 1 2 3 4 5 6; do\n      echo '#include \"conftst'$i'.h\"' >> sub/conftest.c\n      # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with\n      # Solaris 8's {/usr,}/bin/sh.\n      touch sub/conftst$i.h\n    done\n    echo \"${am__include} ${am__quote}sub/conftest.Po${am__quote}\" > confmf\n\n    case $depmode in\n    nosideeffect)\n      # after this tag, mechanisms are not by side-effect, so they'll\n      # only be used when explicitly requested\n      if test \"x$enable_dependency_tracking\" = xyes; then\n\tcontinue\n      else\n\tbreak\n      fi\n      ;;\n    none) break ;;\n    esac\n    # We check with `-c' and `-o' for the sake of the \"dashmstdout\"\n    # mode.  It turns out that the SunPro C++ compiler does not properly\n    # handle `-M -o', and we need to detect this.\n    if depmode=$depmode \\\n       source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \\\n       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \\\n       $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \\\n         >/dev/null 2>conftest.err &&\n       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&\n       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&\n       grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&\n       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then\n      # icc doesn't choke on unknown options, it will just issue warnings\n      # or remarks (even with -Werror).  So we grep stderr for any message\n      # that says an option was ignored or not supported.\n      # When given -MP, icc 7.0 and 7.1 complain thusly:\n      #   icc: Command line warning: ignoring option '-M'; no argument required\n      # The diagnosis changed in icc 8.0:\n      #   icc: Command line remark: option '-MP' not supported\n      if (grep 'ignoring option' conftest.err ||\n          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else\n        am_cv_CC_dependencies_compiler_type=$depmode\n        break\n      fi\n    fi\n  done\n\n  cd ..\n  rm -rf conftest.dir\nelse\n  am_cv_CC_dependencies_compiler_type=none\nfi\n\nfi\n{ echo \"$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type\" >&5\necho \"${ECHO_T}$am_cv_CC_dependencies_compiler_type\" >&6; }\nCCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type\n\n if\n  test \"x$enable_dependency_tracking\" != xno \\\n  && test \"$am_cv_CC_dependencies_compiler_type\" = gcc3; then\n  am__fastdepCC_TRUE=\n  am__fastdepCC_FALSE='#'\nelse\n  am__fastdepCC_TRUE='#'\n  am__fastdepCC_FALSE=\nfi\n\n\n{ echo \"$as_me:$LINENO: checking for a sed that does not truncate output\" >&5\necho $ECHO_N \"checking for a sed that does not truncate output... $ECHO_C\" >&6; }\nif test \"${ac_cv_path_SED+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n            ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/\n     for ac_i in 1 2 3 4 5 6 7; do\n       ac_script=\"$ac_script$as_nl$ac_script\"\n     done\n     echo \"$ac_script\" | sed 99q >conftest.sed\n     $as_unset ac_script || ac_script=\n     # Extract the first word of \"sed gsed\" to use in msg output\nif test -z \"$SED\"; then\nset dummy sed gsed; ac_prog_name=$2\nif test \"${ac_cv_path_SED+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  ac_path_SED_found=false\n# Loop through the user's path and test for each of PROGNAME-LIST\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_prog in sed gsed; do\n  for ac_exec_ext in '' $ac_executable_extensions; do\n    ac_path_SED=\"$as_dir/$ac_prog$ac_exec_ext\"\n    { test -f \"$ac_path_SED\" && $as_test_x \"$ac_path_SED\"; } || continue\n    # Check for GNU ac_path_SED and select it if it is found.\n  # Check for GNU $ac_path_SED\ncase `\"$ac_path_SED\" --version 2>&1` in\n*GNU*)\n  ac_cv_path_SED=\"$ac_path_SED\" ac_path_SED_found=:;;\n*)\n  ac_count=0\n  echo $ECHO_N \"0123456789$ECHO_C\" >\"conftest.in\"\n  while :\n  do\n    cat \"conftest.in\" \"conftest.in\" >\"conftest.tmp\"\n    mv \"conftest.tmp\" \"conftest.in\"\n    cp \"conftest.in\" \"conftest.nl\"\n    echo '' >> \"conftest.nl\"\n    \"$ac_path_SED\" -f conftest.sed < \"conftest.nl\" >\"conftest.out\" 2>/dev/null || break\n    diff \"conftest.out\" \"conftest.nl\" >/dev/null 2>&1 || break\n    ac_count=`expr $ac_count + 1`\n    if test $ac_count -gt ${ac_path_SED_max-0}; then\n      # Best one so far, save it but keep looking for a better one\n      ac_cv_path_SED=\"$ac_path_SED\"\n      ac_path_SED_max=$ac_count\n    fi\n    # 10*(2^10) chars as input seems more than enough\n    test $ac_count -gt 10 && break\n  done\n  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;\nesac\n\n\n    $ac_path_SED_found && break 3\n  done\ndone\n\ndone\nIFS=$as_save_IFS\n\n\nfi\n\nSED=\"$ac_cv_path_SED\"\nif test -z \"$SED\"; then\n  { { echo \"$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in \\$PATH\" >&5\necho \"$as_me: error: no acceptable $ac_prog_name could be found in \\$PATH\" >&2;}\n   { (exit 1); exit 1; }; }\nfi\n\nelse\n  ac_cv_path_SED=$SED\nfi\n\nfi\n{ echo \"$as_me:$LINENO: result: $ac_cv_path_SED\" >&5\necho \"${ECHO_T}$ac_cv_path_SED\" >&6; }\n SED=\"$ac_cv_path_SED\"\n  rm -f conftest.sed\n\ntest -z \"$SED\" && SED=sed\nXsed=\"$SED -e 1s/^X//\"\n\n\n\n\n\n\n\n\n\n\n\n{ echo \"$as_me:$LINENO: checking for grep that handles long lines and -e\" >&5\necho $ECHO_N \"checking for grep that handles long lines and -e... $ECHO_C\" >&6; }\nif test \"${ac_cv_path_GREP+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  # Extract the first word of \"grep ggrep\" to use in msg output\nif test -z \"$GREP\"; then\nset dummy grep ggrep; ac_prog_name=$2\nif test \"${ac_cv_path_GREP+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  ac_path_GREP_found=false\n# Loop through the user's path and test for each of PROGNAME-LIST\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_prog in grep ggrep; do\n  for ac_exec_ext in '' $ac_executable_extensions; do\n    ac_path_GREP=\"$as_dir/$ac_prog$ac_exec_ext\"\n    { test -f \"$ac_path_GREP\" && $as_test_x \"$ac_path_GREP\"; } || continue\n    # Check for GNU ac_path_GREP and select it if it is found.\n  # Check for GNU $ac_path_GREP\ncase `\"$ac_path_GREP\" --version 2>&1` in\n*GNU*)\n  ac_cv_path_GREP=\"$ac_path_GREP\" ac_path_GREP_found=:;;\n*)\n  ac_count=0\n  echo $ECHO_N \"0123456789$ECHO_C\" >\"conftest.in\"\n  while :\n  do\n    cat \"conftest.in\" \"conftest.in\" >\"conftest.tmp\"\n    mv \"conftest.tmp\" \"conftest.in\"\n    cp \"conftest.in\" \"conftest.nl\"\n    echo 'GREP' >> \"conftest.nl\"\n    \"$ac_path_GREP\" -e 'GREP$' -e '-(cannot match)-' < \"conftest.nl\" >\"conftest.out\" 2>/dev/null || break\n    diff \"conftest.out\" \"conftest.nl\" >/dev/null 2>&1 || break\n    ac_count=`expr $ac_count + 1`\n    if test $ac_count -gt ${ac_path_GREP_max-0}; then\n      # Best one so far, save it but keep looking for a better one\n      ac_cv_path_GREP=\"$ac_path_GREP\"\n      ac_path_GREP_max=$ac_count\n    fi\n    # 10*(2^10) chars as input seems more than enough\n    test $ac_count -gt 10 && break\n  done\n  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;\nesac\n\n\n    $ac_path_GREP_found && break 3\n  done\ndone\n\ndone\nIFS=$as_save_IFS\n\n\nfi\n\nGREP=\"$ac_cv_path_GREP\"\nif test -z \"$GREP\"; then\n  { { echo \"$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin\" >&5\necho \"$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin\" >&2;}\n   { (exit 1); exit 1; }; }\nfi\n\nelse\n  ac_cv_path_GREP=$GREP\nfi\n\n\nfi\n{ echo \"$as_me:$LINENO: result: $ac_cv_path_GREP\" >&5\necho \"${ECHO_T}$ac_cv_path_GREP\" >&6; }\n GREP=\"$ac_cv_path_GREP\"\n\n\n{ echo \"$as_me:$LINENO: checking for egrep\" >&5\necho $ECHO_N \"checking for egrep... $ECHO_C\" >&6; }\nif test \"${ac_cv_path_EGREP+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if echo a | $GREP -E '(a|b)' >/dev/null 2>&1\n   then ac_cv_path_EGREP=\"$GREP -E\"\n   else\n     # Extract the first word of \"egrep\" to use in msg output\nif test -z \"$EGREP\"; then\nset dummy egrep; ac_prog_name=$2\nif test \"${ac_cv_path_EGREP+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  ac_path_EGREP_found=false\n# Loop through the user's path and test for each of PROGNAME-LIST\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_prog in egrep; do\n  for ac_exec_ext in '' $ac_executable_extensions; do\n    ac_path_EGREP=\"$as_dir/$ac_prog$ac_exec_ext\"\n    { test -f \"$ac_path_EGREP\" && $as_test_x \"$ac_path_EGREP\"; } || continue\n    # Check for GNU ac_path_EGREP and select it if it is found.\n  # Check for GNU $ac_path_EGREP\ncase `\"$ac_path_EGREP\" --version 2>&1` in\n*GNU*)\n  ac_cv_path_EGREP=\"$ac_path_EGREP\" ac_path_EGREP_found=:;;\n*)\n  ac_count=0\n  echo $ECHO_N \"0123456789$ECHO_C\" >\"conftest.in\"\n  while :\n  do\n    cat \"conftest.in\" \"conftest.in\" >\"conftest.tmp\"\n    mv \"conftest.tmp\" \"conftest.in\"\n    cp \"conftest.in\" \"conftest.nl\"\n    echo 'EGREP' >> \"conftest.nl\"\n    \"$ac_path_EGREP\" 'EGREP$' < \"conftest.nl\" >\"conftest.out\" 2>/dev/null || break\n    diff \"conftest.out\" \"conftest.nl\" >/dev/null 2>&1 || break\n    ac_count=`expr $ac_count + 1`\n    if test $ac_count -gt ${ac_path_EGREP_max-0}; then\n      # Best one so far, save it but keep looking for a better one\n      ac_cv_path_EGREP=\"$ac_path_EGREP\"\n      ac_path_EGREP_max=$ac_count\n    fi\n    # 10*(2^10) chars as input seems more than enough\n    test $ac_count -gt 10 && break\n  done\n  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;\nesac\n\n\n    $ac_path_EGREP_found && break 3\n  done\ndone\n\ndone\nIFS=$as_save_IFS\n\n\nfi\n\nEGREP=\"$ac_cv_path_EGREP\"\nif test -z \"$EGREP\"; then\n  { { echo \"$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin\" >&5\necho \"$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin\" >&2;}\n   { (exit 1); exit 1; }; }\nfi\n\nelse\n  ac_cv_path_EGREP=$EGREP\nfi\n\n\n   fi\nfi\n{ echo \"$as_me:$LINENO: result: $ac_cv_path_EGREP\" >&5\necho \"${ECHO_T}$ac_cv_path_EGREP\" >&6; }\n EGREP=\"$ac_cv_path_EGREP\"\n\n\n{ echo \"$as_me:$LINENO: checking for fgrep\" >&5\necho $ECHO_N \"checking for fgrep... $ECHO_C\" >&6; }\nif test \"${ac_cv_path_FGREP+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1\n   then ac_cv_path_FGREP=\"$GREP -F\"\n   else\n     # Extract the first word of \"fgrep\" to use in msg output\nif test -z \"$FGREP\"; then\nset dummy fgrep; ac_prog_name=$2\nif test \"${ac_cv_path_FGREP+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  ac_path_FGREP_found=false\n# Loop through the user's path and test for each of PROGNAME-LIST\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_prog in fgrep; do\n  for ac_exec_ext in '' $ac_executable_extensions; do\n    ac_path_FGREP=\"$as_dir/$ac_prog$ac_exec_ext\"\n    { test -f \"$ac_path_FGREP\" && $as_test_x \"$ac_path_FGREP\"; } || continue\n    # Check for GNU ac_path_FGREP and select it if it is found.\n  # Check for GNU $ac_path_FGREP\ncase `\"$ac_path_FGREP\" --version 2>&1` in\n*GNU*)\n  ac_cv_path_FGREP=\"$ac_path_FGREP\" ac_path_FGREP_found=:;;\n*)\n  ac_count=0\n  echo $ECHO_N \"0123456789$ECHO_C\" >\"conftest.in\"\n  while :\n  do\n    cat \"conftest.in\" \"conftest.in\" >\"conftest.tmp\"\n    mv \"conftest.tmp\" \"conftest.in\"\n    cp \"conftest.in\" \"conftest.nl\"\n    echo 'FGREP' >> \"conftest.nl\"\n    \"$ac_path_FGREP\" FGREP < \"conftest.nl\" >\"conftest.out\" 2>/dev/null || break\n    diff \"conftest.out\" \"conftest.nl\" >/dev/null 2>&1 || break\n    ac_count=`expr $ac_count + 1`\n    if test $ac_count -gt ${ac_path_FGREP_max-0}; then\n      # Best one so far, save it but keep looking for a better one\n      ac_cv_path_FGREP=\"$ac_path_FGREP\"\n      ac_path_FGREP_max=$ac_count\n    fi\n    # 10*(2^10) chars as input seems more than enough\n    test $ac_count -gt 10 && break\n  done\n  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;\nesac\n\n\n    $ac_path_FGREP_found && break 3\n  done\ndone\n\ndone\nIFS=$as_save_IFS\n\n\nfi\n\nFGREP=\"$ac_cv_path_FGREP\"\nif test -z \"$FGREP\"; then\n  { { echo \"$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin\" >&5\necho \"$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin\" >&2;}\n   { (exit 1); exit 1; }; }\nfi\n\nelse\n  ac_cv_path_FGREP=$FGREP\nfi\n\n\n   fi\nfi\n{ echo \"$as_me:$LINENO: result: $ac_cv_path_FGREP\" >&5\necho \"${ECHO_T}$ac_cv_path_FGREP\" >&6; }\n FGREP=\"$ac_cv_path_FGREP\"\n\n\ntest -z \"$GREP\" && GREP=grep\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n# Check whether --with-gnu-ld was given.\nif test \"${with_gnu_ld+set}\" = set; then\n  withval=$with_gnu_ld; test \"$withval\" = no || with_gnu_ld=yes\nelse\n  with_gnu_ld=no\nfi\n\nac_prog=ld\nif test \"$GCC\" = yes; then\n  # Check if gcc -print-prog-name=ld gives a path.\n  { echo \"$as_me:$LINENO: checking for ld used by $CC\" >&5\necho $ECHO_N \"checking for ld used by $CC... $ECHO_C\" >&6; }\n  case $host in\n  *-*-mingw*)\n    # gcc leaves a trailing carriage return which upsets mingw\n    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\\015'` ;;\n  *)\n    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;\n  esac\n  case $ac_prog in\n    # Accept absolute paths.\n    [\\\\/]* | ?:[\\\\/]*)\n      re_direlt='/[^/][^/]*/\\.\\./'\n      # Canonicalize the pathname of ld\n      ac_prog=`$ECHO \"$ac_prog\"| $SED 's%\\\\\\\\%/%g'`\n      while $ECHO \"$ac_prog\" | $GREP \"$re_direlt\" > /dev/null 2>&1; do\n\tac_prog=`$ECHO $ac_prog| $SED \"s%$re_direlt%/%\"`\n      done\n      test -z \"$LD\" && LD=\"$ac_prog\"\n      ;;\n  \"\")\n    # If it fails, then pretend we aren't using GCC.\n    ac_prog=ld\n    ;;\n  *)\n    # If it is relative, then search for the first ld in PATH.\n    with_gnu_ld=unknown\n    ;;\n  esac\nelif test \"$with_gnu_ld\" = yes; then\n  { echo \"$as_me:$LINENO: checking for GNU ld\" >&5\necho $ECHO_N \"checking for GNU ld... $ECHO_C\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: checking for non-GNU ld\" >&5\necho $ECHO_N \"checking for non-GNU ld... $ECHO_C\" >&6; }\nfi\nif test \"${lt_cv_path_LD+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -z \"$LD\"; then\n  lt_save_ifs=\"$IFS\"; IFS=$PATH_SEPARATOR\n  for ac_dir in $PATH; do\n    IFS=\"$lt_save_ifs\"\n    test -z \"$ac_dir\" && ac_dir=.\n    if test -f \"$ac_dir/$ac_prog\" || test -f \"$ac_dir/$ac_prog$ac_exeext\"; then\n      lt_cv_path_LD=\"$ac_dir/$ac_prog\"\n      # Check to see if the program is GNU ld.  I'd rather use --version,\n      # but apparently some variants of GNU ld only accept -v.\n      # Break only if it was the GNU/non-GNU ld that we prefer.\n      case `\"$lt_cv_path_LD\" -v 2>&1 </dev/null` in\n      *GNU* | *'with BFD'*)\n\ttest \"$with_gnu_ld\" != no && break\n\t;;\n      *)\n\ttest \"$with_gnu_ld\" != yes && break\n\t;;\n      esac\n    fi\n  done\n  IFS=\"$lt_save_ifs\"\nelse\n  lt_cv_path_LD=\"$LD\" # Let the user override the test with a path.\nfi\nfi\n\nLD=\"$lt_cv_path_LD\"\nif test -n \"$LD\"; then\n  { echo \"$as_me:$LINENO: result: $LD\" >&5\necho \"${ECHO_T}$LD\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\ntest -z \"$LD\" && { { echo \"$as_me:$LINENO: error: no acceptable ld found in \\$PATH\" >&5\necho \"$as_me: error: no acceptable ld found in \\$PATH\" >&2;}\n   { (exit 1); exit 1; }; }\n{ echo \"$as_me:$LINENO: checking if the linker ($LD) is GNU ld\" >&5\necho $ECHO_N \"checking if the linker ($LD) is GNU ld... $ECHO_C\" >&6; }\nif test \"${lt_cv_prog_gnu_ld+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  # I'd rather use --version here, but apparently some GNU lds only accept -v.\ncase `$LD -v 2>&1 </dev/null` in\n*GNU* | *'with BFD'*)\n  lt_cv_prog_gnu_ld=yes\n  ;;\n*)\n  lt_cv_prog_gnu_ld=no\n  ;;\nesac\nfi\n{ echo \"$as_me:$LINENO: result: $lt_cv_prog_gnu_ld\" >&5\necho \"${ECHO_T}$lt_cv_prog_gnu_ld\" >&6; }\nwith_gnu_ld=$lt_cv_prog_gnu_ld\n\n\n\n\n\n\n\n\n\n{ echo \"$as_me:$LINENO: checking for BSD- or MS-compatible name lister (nm)\" >&5\necho $ECHO_N \"checking for BSD- or MS-compatible name lister (nm)... $ECHO_C\" >&6; }\nif test \"${lt_cv_path_NM+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$NM\"; then\n  # Let the user override the test.\n  lt_cv_path_NM=\"$NM\"\nelse\n  lt_nm_to_check=\"${ac_tool_prefix}nm\"\n  if test -n \"$ac_tool_prefix\" && test \"$build\" = \"$host\"; then\n    lt_nm_to_check=\"$lt_nm_to_check nm\"\n  fi\n  for lt_tmp_nm in $lt_nm_to_check; do\n    lt_save_ifs=\"$IFS\"; IFS=$PATH_SEPARATOR\n    for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do\n      IFS=\"$lt_save_ifs\"\n      test -z \"$ac_dir\" && ac_dir=.\n      tmp_nm=\"$ac_dir/$lt_tmp_nm\"\n      if test -f \"$tmp_nm\" || test -f \"$tmp_nm$ac_exeext\" ; then\n\t# Check to see if the nm accepts a BSD-compat flag.\n\t# Adding the `sed 1q' prevents false positives on HP-UX, which says:\n\t#   nm: unknown option \"B\" ignored\n\t# Tru64's nm complains that /dev/null is an invalid object file\n\tcase `\"$tmp_nm\" -B /dev/null 2>&1 | sed '1q'` in\n\t*/dev/null* | *'Invalid file or object type'*)\n\t  lt_cv_path_NM=\"$tmp_nm -B\"\n\t  break\n\t  ;;\n\t*)\n\t  case `\"$tmp_nm\" -p /dev/null 2>&1 | sed '1q'` in\n\t  */dev/null*)\n\t    lt_cv_path_NM=\"$tmp_nm -p\"\n\t    break\n\t    ;;\n\t  *)\n\t    lt_cv_path_NM=${lt_cv_path_NM=\"$tmp_nm\"} # keep the first match, but\n\t    continue # so that we can try to find one that supports BSD flags\n\t    ;;\n\t  esac\n\t  ;;\n\tesac\n      fi\n    done\n    IFS=\"$lt_save_ifs\"\n  done\n  : ${lt_cv_path_NM=no}\nfi\nfi\n{ echo \"$as_me:$LINENO: result: $lt_cv_path_NM\" >&5\necho \"${ECHO_T}$lt_cv_path_NM\" >&6; }\nif test \"$lt_cv_path_NM\" != \"no\"; then\n  NM=\"$lt_cv_path_NM\"\nelse\n  # Didn't find any BSD compatible name lister, look for dumpbin.\n  if test -n \"$DUMPBIN\"; then :\n    # Let the user override the test.\n  else\n    if test -n \"$ac_tool_prefix\"; then\n  for ac_prog in dumpbin \"link -dump\"\n  do\n    # Extract the first word of \"$ac_tool_prefix$ac_prog\", so it can be a program name with args.\nset dummy $ac_tool_prefix$ac_prog; ac_word=$2\n{ echo \"$as_me:$LINENO: checking for $ac_word\" >&5\necho $ECHO_N \"checking for $ac_word... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_DUMPBIN+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$DUMPBIN\"; then\n  ac_cv_prog_DUMPBIN=\"$DUMPBIN\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_exec_ext in '' $ac_executable_extensions; do\n  if { test -f \"$as_dir/$ac_word$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_word$ac_exec_ext\"; }; then\n    ac_cv_prog_DUMPBIN=\"$ac_tool_prefix$ac_prog\"\n    echo \"$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\ndone\nIFS=$as_save_IFS\n\nfi\nfi\nDUMPBIN=$ac_cv_prog_DUMPBIN\nif test -n \"$DUMPBIN\"; then\n  { echo \"$as_me:$LINENO: result: $DUMPBIN\" >&5\necho \"${ECHO_T}$DUMPBIN\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n\n    test -n \"$DUMPBIN\" && break\n  done\nfi\nif test -z \"$DUMPBIN\"; then\n  ac_ct_DUMPBIN=$DUMPBIN\n  for ac_prog in dumpbin \"link -dump\"\ndo\n  # Extract the first word of \"$ac_prog\", so it can be a program name with args.\nset dummy $ac_prog; ac_word=$2\n{ echo \"$as_me:$LINENO: checking for $ac_word\" >&5\necho $ECHO_N \"checking for $ac_word... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_ac_ct_DUMPBIN+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$ac_ct_DUMPBIN\"; then\n  ac_cv_prog_ac_ct_DUMPBIN=\"$ac_ct_DUMPBIN\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_exec_ext in '' $ac_executable_extensions; do\n  if { test -f \"$as_dir/$ac_word$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_word$ac_exec_ext\"; }; then\n    ac_cv_prog_ac_ct_DUMPBIN=\"$ac_prog\"\n    echo \"$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\ndone\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN\nif test -n \"$ac_ct_DUMPBIN\"; then\n  { echo \"$as_me:$LINENO: result: $ac_ct_DUMPBIN\" >&5\necho \"${ECHO_T}$ac_ct_DUMPBIN\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n\n  test -n \"$ac_ct_DUMPBIN\" && break\ndone\n\n  if test \"x$ac_ct_DUMPBIN\" = x; then\n    DUMPBIN=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ echo \"$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools\nwhose name does not start with the host triplet.  If you think this\nconfiguration is useful to you, please write to autoconf@gnu.org.\" >&5\necho \"$as_me: WARNING: In the future, Autoconf will not detect cross-tools\nwhose name does not start with the host triplet.  If you think this\nconfiguration is useful to you, please write to autoconf@gnu.org.\" >&2;}\nac_tool_warned=yes ;;\nesac\n    DUMPBIN=$ac_ct_DUMPBIN\n  fi\nfi\n\n    case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in\n    *COFF*)\n      DUMPBIN=\"$DUMPBIN -symbols\"\n      ;;\n    *)\n      DUMPBIN=:\n      ;;\n    esac\n  fi\n\n  if test \"$DUMPBIN\" != \":\"; then\n    NM=\"$DUMPBIN\"\n  fi\nfi\ntest -z \"$NM\" && NM=nm\n\n\n\n\n\n\n{ echo \"$as_me:$LINENO: checking the name lister ($NM) interface\" >&5\necho $ECHO_N \"checking the name lister ($NM) interface... $ECHO_C\" >&6; }\nif test \"${lt_cv_nm_interface+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  lt_cv_nm_interface=\"BSD nm\"\n  echo \"int some_variable = 0;\" > conftest.$ac_ext\n  (eval echo \"\\\"\\$as_me:$LINENO: $ac_compile\\\"\" >&5)\n  (eval \"$ac_compile\" 2>conftest.err)\n  cat conftest.err >&5\n  (eval echo \"\\\"\\$as_me:$LINENO: $NM \\\\\\\"conftest.$ac_objext\\\\\\\"\\\"\" >&5)\n  (eval \"$NM \\\"conftest.$ac_objext\\\"\" 2>conftest.err > conftest.out)\n  cat conftest.err >&5\n  (eval echo \"\\\"\\$as_me:$LINENO: output\\\"\" >&5)\n  cat conftest.out >&5\n  if $GREP 'External.*some_variable' conftest.out > /dev/null; then\n    lt_cv_nm_interface=\"MS dumpbin\"\n  fi\n  rm -r -f conftest*\nfi\n{ echo \"$as_me:$LINENO: result: $lt_cv_nm_interface\" >&5\necho \"${ECHO_T}$lt_cv_nm_interface\" >&6; }\n\n{ echo \"$as_me:$LINENO: checking whether ln -s works\" >&5\necho $ECHO_N \"checking whether ln -s works... $ECHO_C\" >&6; }\nLN_S=$as_ln_s\nif test \"$LN_S\" = \"ln -s\"; then\n  { echo \"$as_me:$LINENO: result: yes\" >&5\necho \"${ECHO_T}yes\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no, using $LN_S\" >&5\necho \"${ECHO_T}no, using $LN_S\" >&6; }\nfi\n\n# find the maximum length of command line arguments\n{ echo \"$as_me:$LINENO: checking the maximum length of command line arguments\" >&5\necho $ECHO_N \"checking the maximum length of command line arguments... $ECHO_C\" >&6; }\nif test \"${lt_cv_sys_max_cmd_len+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n    i=0\n  teststring=\"ABCD\"\n\n  case $build_os in\n  msdosdjgpp*)\n    # On DJGPP, this test can blow up pretty badly due to problems in libc\n    # (any single argument exceeding 2000 bytes causes a buffer overrun\n    # during glob expansion).  Even if it were fixed, the result of this\n    # check would be larger than it should be.\n    lt_cv_sys_max_cmd_len=12288;    # 12K is about right\n    ;;\n\n  gnu*)\n    # Under GNU Hurd, this test is not required because there is\n    # no limit to the length of command line arguments.\n    # Libtool will interpret -1 as no limit whatsoever\n    lt_cv_sys_max_cmd_len=-1;\n    ;;\n\n  cygwin* | mingw* | cegcc*)\n    # On Win9x/ME, this test blows up -- it succeeds, but takes\n    # about 5 minutes as the teststring grows exponentially.\n    # Worse, since 9x/ME are not pre-emptively multitasking,\n    # you end up with a \"frozen\" computer, even though with patience\n    # the test eventually succeeds (with a max line length of 256k).\n    # Instead, let's just punt: use the minimum linelength reported by\n    # all of the supported platforms: 8192 (on NT/2K/XP).\n    lt_cv_sys_max_cmd_len=8192;\n    ;;\n\n  mint*)\n    # On MiNT this can take a long time and run out of memory.\n    lt_cv_sys_max_cmd_len=8192;\n    ;;\n\n  amigaos*)\n    # On AmigaOS with pdksh, this test takes hours, literally.\n    # So we just punt and use a minimum line length of 8192.\n    lt_cv_sys_max_cmd_len=8192;\n    ;;\n\n  netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)\n    # This has been around since 386BSD, at least.  Likely further.\n    if test -x /sbin/sysctl; then\n      lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`\n    elif test -x /usr/sbin/sysctl; then\n      lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`\n    else\n      lt_cv_sys_max_cmd_len=65536\t# usable default for all BSDs\n    fi\n    # And add a safety zone\n    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\/ 4`\n    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\* 3`\n    ;;\n\n  interix*)\n    # We know the value 262144 and hardcode it with a safety zone (like BSD)\n    lt_cv_sys_max_cmd_len=196608\n    ;;\n\n  osf*)\n    # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure\n    # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not\n    # nice to cause kernel panics so lets avoid the loop below.\n    # First set a reasonable default.\n    lt_cv_sys_max_cmd_len=16384\n    #\n    if test -x /sbin/sysconfig; then\n      case `/sbin/sysconfig -q proc exec_disable_arg_limit` in\n        *1*) lt_cv_sys_max_cmd_len=-1 ;;\n      esac\n    fi\n    ;;\n  sco3.2v5*)\n    lt_cv_sys_max_cmd_len=102400\n    ;;\n  sysv5* | sco5v6* | sysv4.2uw2*)\n    kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`\n    if test -n \"$kargmax\"; then\n      lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[\t ]//'`\n    else\n      lt_cv_sys_max_cmd_len=32768\n    fi\n    ;;\n  *)\n    lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`\n    if test -n \"$lt_cv_sys_max_cmd_len\"; then\n      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\/ 4`\n      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\* 3`\n    else\n      # Make teststring a little bigger before we do anything with it.\n      # a 1K string should be a reasonable start.\n      for i in 1 2 3 4 5 6 7 8 ; do\n        teststring=$teststring$teststring\n      done\n      SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}\n      # If test is not a shell built-in, we'll probably end up computing a\n      # maximum length that is only half of the actual maximum length, but\n      # we can't tell.\n      while { test \"X\"`func_fallback_echo \"$teststring$teststring\" 2>/dev/null` \\\n\t         = \"X$teststring$teststring\"; } >/dev/null 2>&1 &&\n\t      test $i != 17 # 1/2 MB should be enough\n      do\n        i=`expr $i + 1`\n        teststring=$teststring$teststring\n      done\n      # Only check the string length outside the loop.\n      lt_cv_sys_max_cmd_len=`expr \"X$teststring\" : \".*\" 2>&1`\n      teststring=\n      # Add a significant safety factor because C++ compilers can tack on\n      # massive amounts of additional arguments before passing them to the\n      # linker.  It appears as though 1/2 is a usable value.\n      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \\/ 2`\n    fi\n    ;;\n  esac\n\nfi\n\nif test -n $lt_cv_sys_max_cmd_len ; then\n  { echo \"$as_me:$LINENO: result: $lt_cv_sys_max_cmd_len\" >&5\necho \"${ECHO_T}$lt_cv_sys_max_cmd_len\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: none\" >&5\necho \"${ECHO_T}none\" >&6; }\nfi\nmax_cmd_len=$lt_cv_sys_max_cmd_len\n\n\n\n\n\n\n: ${CP=\"cp -f\"}\n: ${MV=\"mv -f\"}\n: ${RM=\"rm -f\"}\n\n{ echo \"$as_me:$LINENO: checking whether the shell understands some XSI constructs\" >&5\necho $ECHO_N \"checking whether the shell understands some XSI constructs... $ECHO_C\" >&6; }\n# Try some XSI features\nxsi_shell=no\n( _lt_dummy=\"a/b/c\"\n  test \"${_lt_dummy##*/},${_lt_dummy%/*},\"${_lt_dummy%\"$_lt_dummy\"}, \\\n      = c,a/b,, \\\n    && eval 'test $(( 1 + 1 )) -eq 2 \\\n    && test \"${#_lt_dummy}\" -eq 5' ) >/dev/null 2>&1 \\\n  && xsi_shell=yes\n{ echo \"$as_me:$LINENO: result: $xsi_shell\" >&5\necho \"${ECHO_T}$xsi_shell\" >&6; }\n\n\n{ echo \"$as_me:$LINENO: checking whether the shell understands \\\"+=\\\"\" >&5\necho $ECHO_N \"checking whether the shell understands \\\"+=\\\"... $ECHO_C\" >&6; }\nlt_shell_append=no\n( foo=bar; set foo baz; eval \"$1+=\\$2\" && test \"$foo\" = barbaz ) \\\n    >/dev/null 2>&1 \\\n  && lt_shell_append=yes\n{ echo \"$as_me:$LINENO: result: $lt_shell_append\" >&5\necho \"${ECHO_T}$lt_shell_append\" >&6; }\n\n\nif ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then\n  lt_unset=unset\nelse\n  lt_unset=false\nfi\n\n\n\n\n\n# test EBCDIC or ASCII\ncase `echo X|tr X '\\101'` in\n A) # ASCII based system\n    # \\n is not interpreted correctly by Solaris 8 /usr/ucb/tr\n  lt_SP2NL='tr \\040 \\012'\n  lt_NL2SP='tr \\015\\012 \\040\\040'\n  ;;\n *) # EBCDIC based system\n  lt_SP2NL='tr \\100 \\n'\n  lt_NL2SP='tr \\r\\n \\100\\100'\n  ;;\nesac\n\n\n\n\n\n\n\n\n\n{ echo \"$as_me:$LINENO: checking for $LD option to reload object files\" >&5\necho $ECHO_N \"checking for $LD option to reload object files... $ECHO_C\" >&6; }\nif test \"${lt_cv_ld_reload_flag+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  lt_cv_ld_reload_flag='-r'\nfi\n{ echo \"$as_me:$LINENO: result: $lt_cv_ld_reload_flag\" >&5\necho \"${ECHO_T}$lt_cv_ld_reload_flag\" >&6; }\nreload_flag=$lt_cv_ld_reload_flag\ncase $reload_flag in\n\"\" | \" \"*) ;;\n*) reload_flag=\" $reload_flag\" ;;\nesac\nreload_cmds='$LD$reload_flag -o $output$reload_objs'\ncase $host_os in\n  darwin*)\n    if test \"$GCC\" = yes; then\n      reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs'\n    else\n      reload_cmds='$LD$reload_flag -o $output$reload_objs'\n    fi\n    ;;\nesac\n\n\n\n\n\n\n\n\n\nif test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}objdump\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}objdump; ac_word=$2\n{ echo \"$as_me:$LINENO: checking for $ac_word\" >&5\necho $ECHO_N \"checking for $ac_word... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_OBJDUMP+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$OBJDUMP\"; then\n  ac_cv_prog_OBJDUMP=\"$OBJDUMP\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_exec_ext in '' $ac_executable_extensions; do\n  if { test -f \"$as_dir/$ac_word$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_word$ac_exec_ext\"; }; then\n    ac_cv_prog_OBJDUMP=\"${ac_tool_prefix}objdump\"\n    echo \"$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\ndone\nIFS=$as_save_IFS\n\nfi\nfi\nOBJDUMP=$ac_cv_prog_OBJDUMP\nif test -n \"$OBJDUMP\"; then\n  { echo \"$as_me:$LINENO: result: $OBJDUMP\" >&5\necho \"${ECHO_T}$OBJDUMP\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_OBJDUMP\"; then\n  ac_ct_OBJDUMP=$OBJDUMP\n  # Extract the first word of \"objdump\", so it can be a program name with args.\nset dummy objdump; ac_word=$2\n{ echo \"$as_me:$LINENO: checking for $ac_word\" >&5\necho $ECHO_N \"checking for $ac_word... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_ac_ct_OBJDUMP+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$ac_ct_OBJDUMP\"; then\n  ac_cv_prog_ac_ct_OBJDUMP=\"$ac_ct_OBJDUMP\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_exec_ext in '' $ac_executable_extensions; do\n  if { test -f \"$as_dir/$ac_word$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_word$ac_exec_ext\"; }; then\n    ac_cv_prog_ac_ct_OBJDUMP=\"objdump\"\n    echo \"$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\ndone\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP\nif test -n \"$ac_ct_OBJDUMP\"; then\n  { echo \"$as_me:$LINENO: result: $ac_ct_OBJDUMP\" >&5\necho \"${ECHO_T}$ac_ct_OBJDUMP\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n  if test \"x$ac_ct_OBJDUMP\" = x; then\n    OBJDUMP=\"false\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ echo \"$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools\nwhose name does not start with the host triplet.  If you think this\nconfiguration is useful to you, please write to autoconf@gnu.org.\" >&5\necho \"$as_me: WARNING: In the future, Autoconf will not detect cross-tools\nwhose name does not start with the host triplet.  If you think this\nconfiguration is useful to you, please write to autoconf@gnu.org.\" >&2;}\nac_tool_warned=yes ;;\nesac\n    OBJDUMP=$ac_ct_OBJDUMP\n  fi\nelse\n  OBJDUMP=\"$ac_cv_prog_OBJDUMP\"\nfi\n\ntest -z \"$OBJDUMP\" && OBJDUMP=objdump\n\n\n\n\n\n\n\n\n\n{ echo \"$as_me:$LINENO: checking how to recognize dependent libraries\" >&5\necho $ECHO_N \"checking how to recognize dependent libraries... $ECHO_C\" >&6; }\nif test \"${lt_cv_deplibs_check_method+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  lt_cv_file_magic_cmd='$MAGIC_CMD'\nlt_cv_file_magic_test_file=\nlt_cv_deplibs_check_method='unknown'\n# Need to set the preceding variable on all platforms that support\n# interlibrary dependencies.\n# 'none' -- dependencies not supported.\n# `unknown' -- same as none, but documents that we really don't know.\n# 'pass_all' -- all dependencies passed with no checks.\n# 'test_compile' -- check by making test program.\n# 'file_magic [[regex]]' -- check by looking for files in library path\n# which responds to the $file_magic_cmd with a given extended regex.\n# If you have `file' or equivalent on your system and you're not sure\n# whether `pass_all' will *always* work, you probably want this one.\n\ncase $host_os in\naix[4-9]*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nbeos*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nbsdi[45]*)\n  lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)'\n  lt_cv_file_magic_cmd='/usr/bin/file -L'\n  lt_cv_file_magic_test_file=/shlib/libc.so\n  ;;\n\ncygwin*)\n  # func_win32_libid is a shell function defined in ltmain.sh\n  lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'\n  lt_cv_file_magic_cmd='func_win32_libid'\n  ;;\n\nmingw* | pw32*)\n  # Base MSYS/MinGW do not provide the 'file' command needed by\n  # func_win32_libid shell function, so use a weaker test based on 'objdump',\n  # unless we find 'file', for example because we are cross-compiling.\n  # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin.\n  if ( test \"$lt_cv_nm_interface\" = \"BSD nm\" && file / ) >/dev/null 2>&1; then\n    lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'\n    lt_cv_file_magic_cmd='func_win32_libid'\n  else\n    # Keep this pattern in sync with the one in func_win32_libid.\n    lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)'\n    lt_cv_file_magic_cmd='$OBJDUMP -f'\n  fi\n  ;;\n\ncegcc*)\n  # use the weaker test based on 'objdump'. See mingw*.\n  lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?'\n  lt_cv_file_magic_cmd='$OBJDUMP -f'\n  ;;\n\ndarwin* | rhapsody*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nfreebsd* | dragonfly*)\n  if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then\n    case $host_cpu in\n    i*86 )\n      # Not sure whether the presence of OpenBSD here was a mistake.\n      # Let's accept both of them until this is cleared up.\n      lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library'\n      lt_cv_file_magic_cmd=/usr/bin/file\n      lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`\n      ;;\n    esac\n  else\n    lt_cv_deplibs_check_method=pass_all\n  fi\n  ;;\n\ngnu*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nhaiku*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nhpux10.20* | hpux11*)\n  lt_cv_file_magic_cmd=/usr/bin/file\n  case $host_cpu in\n  ia64*)\n    lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64'\n    lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so\n    ;;\n  hppa*64*)\n    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]'\n    lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl\n    ;;\n  *)\n    lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9]\\.[0-9]) shared library'\n    lt_cv_file_magic_test_file=/usr/lib/libc.sl\n    ;;\n  esac\n  ;;\n\ninterix[3-9]*)\n  # PIC code is broken on Interix 3.x, that's why |\\.a not |_pic\\.a here\n  lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\\.so|\\.a)$'\n  ;;\n\nirix5* | irix6* | nonstopux*)\n  case $LD in\n  *-32|*\"-32 \") libmagic=32-bit;;\n  *-n32|*\"-n32 \") libmagic=N32;;\n  *-64|*\"-64 \") libmagic=64-bit;;\n  *) libmagic=never-match;;\n  esac\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\n# This must be Linux ELF.\nlinux* | k*bsd*-gnu | kopensolaris*-gnu)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nnetbsd*)\n  if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then\n    lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\\.so\\.[0-9]+\\.[0-9]+|_pic\\.a)$'\n  else\n    lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\\.so|_pic\\.a)$'\n  fi\n  ;;\n\nnewos6*)\n  lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)'\n  lt_cv_file_magic_cmd=/usr/bin/file\n  lt_cv_file_magic_test_file=/usr/lib/libnls.so\n  ;;\n\n*nto* | *qnx*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nopenbsd*)\n  if test -z \"`echo __ELF__ | $CC -E - | $GREP __ELF__`\" || test \"$host_os-$host_cpu\" = \"openbsd2.8-powerpc\"; then\n    lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\\.so\\.[0-9]+\\.[0-9]+|\\.so|_pic\\.a)$'\n  else\n    lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\\.so\\.[0-9]+\\.[0-9]+|_pic\\.a)$'\n  fi\n  ;;\n\nosf3* | osf4* | osf5*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nrdos*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nsolaris*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nsysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\n\nsysv4 | sysv4.3*)\n  case $host_vendor in\n  motorola)\n    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]'\n    lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`\n    ;;\n  ncr)\n    lt_cv_deplibs_check_method=pass_all\n    ;;\n  sequent)\n    lt_cv_file_magic_cmd='/bin/file'\n    lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )'\n    ;;\n  sni)\n    lt_cv_file_magic_cmd='/bin/file'\n    lt_cv_deplibs_check_method=\"file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib\"\n    lt_cv_file_magic_test_file=/lib/libc.so\n    ;;\n  siemens)\n    lt_cv_deplibs_check_method=pass_all\n    ;;\n  pc)\n    lt_cv_deplibs_check_method=pass_all\n    ;;\n  esac\n  ;;\n\ntpf*)\n  lt_cv_deplibs_check_method=pass_all\n  ;;\nesac\n\nfi\n{ echo \"$as_me:$LINENO: result: $lt_cv_deplibs_check_method\" >&5\necho \"${ECHO_T}$lt_cv_deplibs_check_method\" >&6; }\nfile_magic_cmd=$lt_cv_file_magic_cmd\ndeplibs_check_method=$lt_cv_deplibs_check_method\ntest -z \"$deplibs_check_method\" && deplibs_check_method=unknown\n\n\n\n\n\n\n\n\n\n\n\n\nif test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}ar\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}ar; ac_word=$2\n{ echo \"$as_me:$LINENO: checking for $ac_word\" >&5\necho $ECHO_N \"checking for $ac_word... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_AR+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$AR\"; then\n  ac_cv_prog_AR=\"$AR\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_exec_ext in '' $ac_executable_extensions; do\n  if { test -f \"$as_dir/$ac_word$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_word$ac_exec_ext\"; }; then\n    ac_cv_prog_AR=\"${ac_tool_prefix}ar\"\n    echo \"$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\ndone\nIFS=$as_save_IFS\n\nfi\nfi\nAR=$ac_cv_prog_AR\nif test -n \"$AR\"; then\n  { echo \"$as_me:$LINENO: result: $AR\" >&5\necho \"${ECHO_T}$AR\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_AR\"; then\n  ac_ct_AR=$AR\n  # Extract the first word of \"ar\", so it can be a program name with args.\nset dummy ar; ac_word=$2\n{ echo \"$as_me:$LINENO: checking for $ac_word\" >&5\necho $ECHO_N \"checking for $ac_word... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_ac_ct_AR+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$ac_ct_AR\"; then\n  ac_cv_prog_ac_ct_AR=\"$ac_ct_AR\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_exec_ext in '' $ac_executable_extensions; do\n  if { test -f \"$as_dir/$ac_word$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_word$ac_exec_ext\"; }; then\n    ac_cv_prog_ac_ct_AR=\"ar\"\n    echo \"$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\ndone\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_AR=$ac_cv_prog_ac_ct_AR\nif test -n \"$ac_ct_AR\"; then\n  { echo \"$as_me:$LINENO: result: $ac_ct_AR\" >&5\necho \"${ECHO_T}$ac_ct_AR\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n  if test \"x$ac_ct_AR\" = x; then\n    AR=\"false\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ echo \"$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools\nwhose name does not start with the host triplet.  If you think this\nconfiguration is useful to you, please write to autoconf@gnu.org.\" >&5\necho \"$as_me: WARNING: In the future, Autoconf will not detect cross-tools\nwhose name does not start with the host triplet.  If you think this\nconfiguration is useful to you, please write to autoconf@gnu.org.\" >&2;}\nac_tool_warned=yes ;;\nesac\n    AR=$ac_ct_AR\n  fi\nelse\n  AR=\"$ac_cv_prog_AR\"\nfi\n\ntest -z \"$AR\" && AR=ar\ntest -z \"$AR_FLAGS\" && AR_FLAGS=cru\n\n\n\n\n\n\n\n\n\n\n\nif test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}strip\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}strip; ac_word=$2\n{ echo \"$as_me:$LINENO: checking for $ac_word\" >&5\necho $ECHO_N \"checking for $ac_word... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_STRIP+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$STRIP\"; then\n  ac_cv_prog_STRIP=\"$STRIP\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_exec_ext in '' $ac_executable_extensions; do\n  if { test -f \"$as_dir/$ac_word$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_word$ac_exec_ext\"; }; then\n    ac_cv_prog_STRIP=\"${ac_tool_prefix}strip\"\n    echo \"$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\ndone\nIFS=$as_save_IFS\n\nfi\nfi\nSTRIP=$ac_cv_prog_STRIP\nif test -n \"$STRIP\"; then\n  { echo \"$as_me:$LINENO: result: $STRIP\" >&5\necho \"${ECHO_T}$STRIP\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_STRIP\"; then\n  ac_ct_STRIP=$STRIP\n  # Extract the first word of \"strip\", so it can be a program name with args.\nset dummy strip; ac_word=$2\n{ echo \"$as_me:$LINENO: checking for $ac_word\" >&5\necho $ECHO_N \"checking for $ac_word... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_ac_ct_STRIP+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$ac_ct_STRIP\"; then\n  ac_cv_prog_ac_ct_STRIP=\"$ac_ct_STRIP\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_exec_ext in '' $ac_executable_extensions; do\n  if { test -f \"$as_dir/$ac_word$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_word$ac_exec_ext\"; }; then\n    ac_cv_prog_ac_ct_STRIP=\"strip\"\n    echo \"$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\ndone\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP\nif test -n \"$ac_ct_STRIP\"; then\n  { echo \"$as_me:$LINENO: result: $ac_ct_STRIP\" >&5\necho \"${ECHO_T}$ac_ct_STRIP\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n  if test \"x$ac_ct_STRIP\" = x; then\n    STRIP=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ echo \"$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools\nwhose name does not start with the host triplet.  If you think this\nconfiguration is useful to you, please write to autoconf@gnu.org.\" >&5\necho \"$as_me: WARNING: In the future, Autoconf will not detect cross-tools\nwhose name does not start with the host triplet.  If you think this\nconfiguration is useful to you, please write to autoconf@gnu.org.\" >&2;}\nac_tool_warned=yes ;;\nesac\n    STRIP=$ac_ct_STRIP\n  fi\nelse\n  STRIP=\"$ac_cv_prog_STRIP\"\nfi\n\ntest -z \"$STRIP\" && STRIP=:\n\n\n\n\n\n\nif test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}ranlib\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}ranlib; ac_word=$2\n{ echo \"$as_me:$LINENO: checking for $ac_word\" >&5\necho $ECHO_N \"checking for $ac_word... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_RANLIB+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$RANLIB\"; then\n  ac_cv_prog_RANLIB=\"$RANLIB\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_exec_ext in '' $ac_executable_extensions; do\n  if { test -f \"$as_dir/$ac_word$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_word$ac_exec_ext\"; }; then\n    ac_cv_prog_RANLIB=\"${ac_tool_prefix}ranlib\"\n    echo \"$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\ndone\nIFS=$as_save_IFS\n\nfi\nfi\nRANLIB=$ac_cv_prog_RANLIB\nif test -n \"$RANLIB\"; then\n  { echo \"$as_me:$LINENO: result: $RANLIB\" >&5\necho \"${ECHO_T}$RANLIB\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_RANLIB\"; then\n  ac_ct_RANLIB=$RANLIB\n  # Extract the first word of \"ranlib\", so it can be a program name with args.\nset dummy ranlib; ac_word=$2\n{ echo \"$as_me:$LINENO: checking for $ac_word\" >&5\necho $ECHO_N \"checking for $ac_word... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_ac_ct_RANLIB+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$ac_ct_RANLIB\"; then\n  ac_cv_prog_ac_ct_RANLIB=\"$ac_ct_RANLIB\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_exec_ext in '' $ac_executable_extensions; do\n  if { test -f \"$as_dir/$ac_word$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_word$ac_exec_ext\"; }; then\n    ac_cv_prog_ac_ct_RANLIB=\"ranlib\"\n    echo \"$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\ndone\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB\nif test -n \"$ac_ct_RANLIB\"; then\n  { echo \"$as_me:$LINENO: result: $ac_ct_RANLIB\" >&5\necho \"${ECHO_T}$ac_ct_RANLIB\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n  if test \"x$ac_ct_RANLIB\" = x; then\n    RANLIB=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ echo \"$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools\nwhose name does not start with the host triplet.  If you think this\nconfiguration is useful to you, please write to autoconf@gnu.org.\" >&5\necho \"$as_me: WARNING: In the future, Autoconf will not detect cross-tools\nwhose name does not start with the host triplet.  If you think this\nconfiguration is useful to you, please write to autoconf@gnu.org.\" >&2;}\nac_tool_warned=yes ;;\nesac\n    RANLIB=$ac_ct_RANLIB\n  fi\nelse\n  RANLIB=\"$ac_cv_prog_RANLIB\"\nfi\n\ntest -z \"$RANLIB\" && RANLIB=:\n\n\n\n\n\n\n# Determine commands to create old-style static archives.\nold_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs'\nold_postinstall_cmds='chmod 644 $oldlib'\nold_postuninstall_cmds=\n\nif test -n \"$RANLIB\"; then\n  case $host_os in\n  openbsd*)\n    old_postinstall_cmds=\"$old_postinstall_cmds~\\$RANLIB -t \\$oldlib\"\n    ;;\n  *)\n    old_postinstall_cmds=\"$old_postinstall_cmds~\\$RANLIB \\$oldlib\"\n    ;;\n  esac\n  old_archive_cmds=\"$old_archive_cmds~\\$RANLIB \\$oldlib\"\nfi\n\ncase $host_os in\n  darwin*)\n    lock_old_archive_extraction=yes ;;\n  *)\n    lock_old_archive_extraction=no ;;\nesac\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# If no C compiler was specified, use CC.\nLTCC=${LTCC-\"$CC\"}\n\n# If no C compiler flags were specified, use CFLAGS.\nLTCFLAGS=${LTCFLAGS-\"$CFLAGS\"}\n\n# Allow CC to be a program name with arguments.\ncompiler=$CC\n\n\n# Check for command to grab the raw symbol name followed by C symbol from nm.\n{ echo \"$as_me:$LINENO: checking command to parse $NM output from $compiler object\" >&5\necho $ECHO_N \"checking command to parse $NM output from $compiler object... $ECHO_C\" >&6; }\nif test \"${lt_cv_sys_global_symbol_pipe+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n\n# These are sane defaults that work on at least a few old systems.\n# [They come from Ultrix.  What could be older than Ultrix?!! ;)]\n\n# Character class describing NM global symbol codes.\nsymcode='[BCDEGRST]'\n\n# Regexp to match symbols that can be accessed directly from C.\nsympat='\\([_A-Za-z][_A-Za-z0-9]*\\)'\n\n# Define system-specific variables.\ncase $host_os in\naix*)\n  symcode='[BCDT]'\n  ;;\ncygwin* | mingw* | pw32* | cegcc*)\n  symcode='[ABCDGISTW]'\n  ;;\nhpux*)\n  if test \"$host_cpu\" = ia64; then\n    symcode='[ABCDEGRST]'\n  fi\n  ;;\nirix* | nonstopux*)\n  symcode='[BCDEGRST]'\n  ;;\nosf*)\n  symcode='[BCDEGQRST]'\n  ;;\nsolaris*)\n  symcode='[BDRT]'\n  ;;\nsco3.2v5*)\n  symcode='[DT]'\n  ;;\nsysv4.2uw2*)\n  symcode='[DT]'\n  ;;\nsysv5* | sco5v6* | unixware* | OpenUNIX*)\n  symcode='[ABDT]'\n  ;;\nsysv4)\n  symcode='[DFNSTU]'\n  ;;\nesac\n\n# If we're using GNU nm, then use its standard symbol codes.\ncase `$NM -V 2>&1` in\n*GNU* | *'with BFD'*)\n  symcode='[ABCDGIRSTW]' ;;\nesac\n\n# Transform an extracted symbol line into a proper C declaration.\n# Some systems (esp. on ia64) link data and code symbols differently,\n# so use this general approach.\nlt_cv_sys_global_symbol_to_cdecl=\"sed -n -e 's/^T .* \\(.*\\)$/extern int \\1();/p' -e 's/^$symcode* .* \\(.*\\)$/extern char \\1;/p'\"\n\n# Transform an extracted symbol line into symbol name and symbol address\nlt_cv_sys_global_symbol_to_c_name_address=\"sed -n -e 's/^: \\([^ ]*\\) $/  {\\\\\\\"\\1\\\\\\\", (void *) 0},/p' -e 's/^$symcode* \\([^ ]*\\) \\([^ ]*\\)$/  {\\\"\\2\\\", (void *) \\&\\2},/p'\"\nlt_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'\"\n\n# Handle CRLF in mingw tool chain\nopt_cr=\ncase $build_os in\nmingw*)\n  opt_cr=`$ECHO 'x\\{0,1\\}' | tr x '\\015'` # option cr in regexp\n  ;;\nesac\n\n# Try without a prefix underscore, then with it.\nfor ac_symprfx in \"\" \"_\"; do\n\n  # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol.\n  symxfrm=\"\\\\1 $ac_symprfx\\\\2 \\\\2\"\n\n  # Write the raw and C identifiers.\n  if test \"$lt_cv_nm_interface\" = \"MS dumpbin\"; then\n    # Fake it for dumpbin and say T for any non-static function\n    # and D for any global variable.\n    # Also find C++ and __fastcall symbols from MSVC++,\n    # which start with @ or ?.\n    lt_cv_sys_global_symbol_pipe=\"$AWK '\"\\\n\"     {last_section=section; section=\\$ 3};\"\\\n\"     /Section length .*#relocs.*(pick any)/{hide[last_section]=1};\"\\\n\"     \\$ 0!~/External *\\|/{next};\"\\\n\"     / 0+ UNDEF /{next}; / UNDEF \\([^|]\\)*()/{next};\"\\\n\"     {if(hide[section]) next};\"\\\n\"     {f=0}; \\$ 0~/\\(\\).*\\|/{f=1}; {printf f ? \\\"T \\\" : \\\"D \\\"};\"\\\n\"     {split(\\$ 0, a, /\\||\\r/); split(a[2], s)};\"\\\n\"     s[1]~/^[@?]/{print s[1], s[1]; next};\"\\\n\"     s[1]~prfx {split(s[1],t,\\\"@\\\"); print t[1], substr(t[1],length(prfx))}\"\\\n\"     ' prfx=^$ac_symprfx\"\n  else\n    lt_cv_sys_global_symbol_pipe=\"sed -n -e 's/^.*[\t ]\\($symcode$symcode*\\)[\t ][\t ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'\"\n  fi\n\n  # Check to see that the pipe works correctly.\n  pipe_works=no\n\n  rm -r -f conftest*\n  cat > conftest.$ac_ext <<_LT_EOF\n#ifdef __cplusplus\nextern \"C\" {\n#endif\nchar nm_test_var;\nvoid nm_test_func(void);\nvoid nm_test_func(void){}\n#ifdef __cplusplus\n}\n#endif\nint main(){nm_test_var='a';nm_test_func();return(0);}\n_LT_EOF\n\n  if { (eval echo \"$as_me:$LINENO: \\\"$ac_compile\\\"\") >&5\n  (eval $ac_compile) 2>&5\n  ac_status=$?\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); }; then\n    # Now try to grab the symbols.\n    nlist=conftest.nm\n    if { (eval echo \"$as_me:$LINENO: \\\"$NM conftest.$ac_objext \\| \"$lt_cv_sys_global_symbol_pipe\" \\> $nlist\\\"\") >&5\n  (eval $NM conftest.$ac_objext \\| \"$lt_cv_sys_global_symbol_pipe\" \\> $nlist) 2>&5\n  ac_status=$?\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && test -s \"$nlist\"; then\n      # Try sorting and uniquifying the output.\n      if sort \"$nlist\" | uniq > \"$nlist\"T; then\n\tmv -f \"$nlist\"T \"$nlist\"\n      else\n\trm -f \"$nlist\"T\n      fi\n\n      # Make sure that we snagged all the symbols we need.\n      if $GREP ' nm_test_var$' \"$nlist\" >/dev/null; then\n\tif $GREP ' nm_test_func$' \"$nlist\" >/dev/null; then\n\t  cat <<_LT_EOF > conftest.$ac_ext\n#ifdef __cplusplus\nextern \"C\" {\n#endif\n\n_LT_EOF\n\t  # Now generate the symbol file.\n\t  eval \"$lt_cv_sys_global_symbol_to_cdecl\"' < \"$nlist\" | $GREP -v main >> conftest.$ac_ext'\n\n\t  cat <<_LT_EOF >> conftest.$ac_ext\n\n/* The mapping between symbol names and symbols.  */\nconst struct {\n  const char *name;\n  void       *address;\n}\nlt__PROGRAM__LTX_preloaded_symbols[] =\n{\n  { \"@PROGRAM@\", (void *) 0 },\n_LT_EOF\n\t  $SED \"s/^$symcode$symcode* \\(.*\\) \\(.*\\)$/  {\\\"\\2\\\", (void *) \\&\\2},/\" < \"$nlist\" | $GREP -v main >> conftest.$ac_ext\n\t  cat <<\\_LT_EOF >> conftest.$ac_ext\n  {0, (void *) 0}\n};\n\n/* This works around a problem in FreeBSD linker */\n#ifdef FREEBSD_WORKAROUND\nstatic const void *lt_preloaded_setup() {\n  return lt__PROGRAM__LTX_preloaded_symbols;\n}\n#endif\n\n#ifdef __cplusplus\n}\n#endif\n_LT_EOF\n\t  # Now try linking the two files.\n\t  mv conftest.$ac_objext conftstm.$ac_objext\n\t  lt_save_LIBS=\"$LIBS\"\n\t  lt_save_CFLAGS=\"$CFLAGS\"\n\t  LIBS=\"conftstm.$ac_objext\"\n\t  CFLAGS=\"$CFLAGS$lt_prog_compiler_no_builtin_flag\"\n\t  if { (eval echo \"$as_me:$LINENO: \\\"$ac_link\\\"\") >&5\n  (eval $ac_link) 2>&5\n  ac_status=$?\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && test -s conftest${ac_exeext}; then\n\t    pipe_works=yes\n\t  fi\n\t  LIBS=\"$lt_save_LIBS\"\n\t  CFLAGS=\"$lt_save_CFLAGS\"\n\telse\n\t  echo \"cannot find nm_test_func in $nlist\" >&5\n\tfi\n      else\n\techo \"cannot find nm_test_var in $nlist\" >&5\n      fi\n    else\n      echo \"cannot run $lt_cv_sys_global_symbol_pipe\" >&5\n    fi\n  else\n    echo \"$progname: failed program was:\" >&5\n    cat conftest.$ac_ext >&5\n  fi\n  rm -rf conftest* conftst*\n\n  # Do not use the global_symbol_pipe unless it works.\n  if test \"$pipe_works\" = yes; then\n    break\n  else\n    lt_cv_sys_global_symbol_pipe=\n  fi\ndone\n\nfi\n\nif test -z \"$lt_cv_sys_global_symbol_pipe\"; then\n  lt_cv_sys_global_symbol_to_cdecl=\nfi\nif test -z \"$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl\"; then\n  { echo \"$as_me:$LINENO: result: failed\" >&5\necho \"${ECHO_T}failed\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: ok\" >&5\necho \"${ECHO_T}ok\" >&6; }\nfi\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n# Check whether --enable-libtool-lock was given.\nif test \"${enable_libtool_lock+set}\" = set; then\n  enableval=$enable_libtool_lock;\nfi\n\ntest \"x$enable_libtool_lock\" != xno && enable_libtool_lock=yes\n\n# Some flags need to be propagated to the compiler or linker for good\n# libtool support.\ncase $host in\nia64-*-hpux*)\n  # Find out which ABI we are using.\n  echo 'int i;' > conftest.$ac_ext\n  if { (eval echo \"$as_me:$LINENO: \\\"$ac_compile\\\"\") >&5\n  (eval $ac_compile) 2>&5\n  ac_status=$?\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); }; then\n    case `/usr/bin/file conftest.$ac_objext` in\n      *ELF-32*)\n\tHPUX_IA64_MODE=\"32\"\n\t;;\n      *ELF-64*)\n\tHPUX_IA64_MODE=\"64\"\n\t;;\n    esac\n  fi\n  rm -rf conftest*\n  ;;\n*-*-irix6*)\n  # Find out which ABI we are using.\n  echo '#line '$LINENO' \"configure\"' > conftest.$ac_ext\n  if { (eval echo \"$as_me:$LINENO: \\\"$ac_compile\\\"\") >&5\n  (eval $ac_compile) 2>&5\n  ac_status=$?\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); }; then\n    if test \"$lt_cv_prog_gnu_ld\" = yes; then\n      case `/usr/bin/file conftest.$ac_objext` in\n\t*32-bit*)\n\t  LD=\"${LD-ld} -melf32bsmip\"\n\t  ;;\n\t*N32*)\n\t  LD=\"${LD-ld} -melf32bmipn32\"\n\t  ;;\n\t*64-bit*)\n\t  LD=\"${LD-ld} -melf64bmip\"\n\t;;\n      esac\n    else\n      case `/usr/bin/file conftest.$ac_objext` in\n\t*32-bit*)\n\t  LD=\"${LD-ld} -32\"\n\t  ;;\n\t*N32*)\n\t  LD=\"${LD-ld} -n32\"\n\t  ;;\n\t*64-bit*)\n\t  LD=\"${LD-ld} -64\"\n\t  ;;\n      esac\n    fi\n  fi\n  rm -rf conftest*\n  ;;\n\nx86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \\\ns390*-*linux*|s390*-*tpf*|sparc*-*linux*)\n  # Find out which ABI we are using.\n  echo 'int i;' > conftest.$ac_ext\n  if { (eval echo \"$as_me:$LINENO: \\\"$ac_compile\\\"\") >&5\n  (eval $ac_compile) 2>&5\n  ac_status=$?\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); }; then\n    case `/usr/bin/file conftest.o` in\n      *32-bit*)\n\tcase $host in\n\t  x86_64-*kfreebsd*-gnu)\n\t    LD=\"${LD-ld} -m elf_i386_fbsd\"\n\t    ;;\n\t  x86_64-*linux*)\n\t    LD=\"${LD-ld} -m elf_i386\"\n\t    ;;\n\t  ppc64-*linux*|powerpc64-*linux*)\n\t    LD=\"${LD-ld} -m elf32ppclinux\"\n\t    ;;\n\t  s390x-*linux*)\n\t    LD=\"${LD-ld} -m elf_s390\"\n\t    ;;\n\t  sparc64-*linux*)\n\t    LD=\"${LD-ld} -m elf32_sparc\"\n\t    ;;\n\tesac\n\t;;\n      *64-bit*)\n\tcase $host in\n\t  x86_64-*kfreebsd*-gnu)\n\t    LD=\"${LD-ld} -m elf_x86_64_fbsd\"\n\t    ;;\n\t  x86_64-*linux*)\n\t    LD=\"${LD-ld} -m elf_x86_64\"\n\t    ;;\n\t  ppc*-*linux*|powerpc*-*linux*)\n\t    LD=\"${LD-ld} -m elf64ppc\"\n\t    ;;\n\t  s390*-*linux*|s390*-*tpf*)\n\t    LD=\"${LD-ld} -m elf64_s390\"\n\t    ;;\n\t  sparc*-*linux*)\n\t    LD=\"${LD-ld} -m elf64_sparc\"\n\t    ;;\n\tesac\n\t;;\n    esac\n  fi\n  rm -rf conftest*\n  ;;\n\n*-*-sco3.2v5*)\n  # On SCO OpenServer 5, we need -belf to get full-featured binaries.\n  SAVE_CFLAGS=\"$CFLAGS\"\n  CFLAGS=\"$CFLAGS -belf\"\n  { echo \"$as_me:$LINENO: checking whether the C compiler needs -belf\" >&5\necho $ECHO_N \"checking whether the C compiler needs -belf... $ECHO_C\" >&6; }\nif test \"${lt_cv_cc_needs_belf+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  ac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\n     cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nrm -f conftest.$ac_objext conftest$ac_exeext\nif { (ac_try=\"$ac_link\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_link\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && {\n\t test -z \"$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest$ac_exeext &&\n       $as_test_x conftest$ac_exeext; then\n  lt_cv_cc_needs_belf=yes\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\tlt_cv_cc_needs_belf=no\nfi\n\nrm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \\\n      conftest$ac_exeext conftest.$ac_ext\n     ac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\nfi\n{ echo \"$as_me:$LINENO: result: $lt_cv_cc_needs_belf\" >&5\necho \"${ECHO_T}$lt_cv_cc_needs_belf\" >&6; }\n  if test x\"$lt_cv_cc_needs_belf\" != x\"yes\"; then\n    # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf\n    CFLAGS=\"$SAVE_CFLAGS\"\n  fi\n  ;;\nsparc*-*solaris*)\n  # Find out which ABI we are using.\n  echo 'int i;' > conftest.$ac_ext\n  if { (eval echo \"$as_me:$LINENO: \\\"$ac_compile\\\"\") >&5\n  (eval $ac_compile) 2>&5\n  ac_status=$?\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); }; then\n    case `/usr/bin/file conftest.o` in\n    *64-bit*)\n      case $lt_cv_prog_gnu_ld in\n      yes*) LD=\"${LD-ld} -m elf64_sparc\" ;;\n      *)\n\tif ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then\n\t  LD=\"${LD-ld} -64\"\n\tfi\n\t;;\n      esac\n      ;;\n    esac\n  fi\n  rm -rf conftest*\n  ;;\nesac\n\nneed_locks=\"$enable_libtool_lock\"\n\n\n  case $host_os in\n    rhapsody* | darwin*)\n    if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}dsymutil\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}dsymutil; ac_word=$2\n{ echo \"$as_me:$LINENO: checking for $ac_word\" >&5\necho $ECHO_N \"checking for $ac_word... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_DSYMUTIL+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$DSYMUTIL\"; then\n  ac_cv_prog_DSYMUTIL=\"$DSYMUTIL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_exec_ext in '' $ac_executable_extensions; do\n  if { test -f \"$as_dir/$ac_word$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_word$ac_exec_ext\"; }; then\n    ac_cv_prog_DSYMUTIL=\"${ac_tool_prefix}dsymutil\"\n    echo \"$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\ndone\nIFS=$as_save_IFS\n\nfi\nfi\nDSYMUTIL=$ac_cv_prog_DSYMUTIL\nif test -n \"$DSYMUTIL\"; then\n  { echo \"$as_me:$LINENO: result: $DSYMUTIL\" >&5\necho \"${ECHO_T}$DSYMUTIL\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_DSYMUTIL\"; then\n  ac_ct_DSYMUTIL=$DSYMUTIL\n  # Extract the first word of \"dsymutil\", so it can be a program name with args.\nset dummy dsymutil; ac_word=$2\n{ echo \"$as_me:$LINENO: checking for $ac_word\" >&5\necho $ECHO_N \"checking for $ac_word... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_ac_ct_DSYMUTIL+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$ac_ct_DSYMUTIL\"; then\n  ac_cv_prog_ac_ct_DSYMUTIL=\"$ac_ct_DSYMUTIL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_exec_ext in '' $ac_executable_extensions; do\n  if { test -f \"$as_dir/$ac_word$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_word$ac_exec_ext\"; }; then\n    ac_cv_prog_ac_ct_DSYMUTIL=\"dsymutil\"\n    echo \"$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\ndone\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL\nif test -n \"$ac_ct_DSYMUTIL\"; then\n  { echo \"$as_me:$LINENO: result: $ac_ct_DSYMUTIL\" >&5\necho \"${ECHO_T}$ac_ct_DSYMUTIL\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n  if test \"x$ac_ct_DSYMUTIL\" = x; then\n    DSYMUTIL=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ echo \"$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools\nwhose name does not start with the host triplet.  If you think this\nconfiguration is useful to you, please write to autoconf@gnu.org.\" >&5\necho \"$as_me: WARNING: In the future, Autoconf will not detect cross-tools\nwhose name does not start with the host triplet.  If you think this\nconfiguration is useful to you, please write to autoconf@gnu.org.\" >&2;}\nac_tool_warned=yes ;;\nesac\n    DSYMUTIL=$ac_ct_DSYMUTIL\n  fi\nelse\n  DSYMUTIL=\"$ac_cv_prog_DSYMUTIL\"\nfi\n\n    if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}nmedit\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}nmedit; ac_word=$2\n{ echo \"$as_me:$LINENO: checking for $ac_word\" >&5\necho $ECHO_N \"checking for $ac_word... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_NMEDIT+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$NMEDIT\"; then\n  ac_cv_prog_NMEDIT=\"$NMEDIT\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_exec_ext in '' $ac_executable_extensions; do\n  if { test -f \"$as_dir/$ac_word$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_word$ac_exec_ext\"; }; then\n    ac_cv_prog_NMEDIT=\"${ac_tool_prefix}nmedit\"\n    echo \"$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\ndone\nIFS=$as_save_IFS\n\nfi\nfi\nNMEDIT=$ac_cv_prog_NMEDIT\nif test -n \"$NMEDIT\"; then\n  { echo \"$as_me:$LINENO: result: $NMEDIT\" >&5\necho \"${ECHO_T}$NMEDIT\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_NMEDIT\"; then\n  ac_ct_NMEDIT=$NMEDIT\n  # Extract the first word of \"nmedit\", so it can be a program name with args.\nset dummy nmedit; ac_word=$2\n{ echo \"$as_me:$LINENO: checking for $ac_word\" >&5\necho $ECHO_N \"checking for $ac_word... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_ac_ct_NMEDIT+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$ac_ct_NMEDIT\"; then\n  ac_cv_prog_ac_ct_NMEDIT=\"$ac_ct_NMEDIT\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_exec_ext in '' $ac_executable_extensions; do\n  if { test -f \"$as_dir/$ac_word$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_word$ac_exec_ext\"; }; then\n    ac_cv_prog_ac_ct_NMEDIT=\"nmedit\"\n    echo \"$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\ndone\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT\nif test -n \"$ac_ct_NMEDIT\"; then\n  { echo \"$as_me:$LINENO: result: $ac_ct_NMEDIT\" >&5\necho \"${ECHO_T}$ac_ct_NMEDIT\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n  if test \"x$ac_ct_NMEDIT\" = x; then\n    NMEDIT=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ echo \"$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools\nwhose name does not start with the host triplet.  If you think this\nconfiguration is useful to you, please write to autoconf@gnu.org.\" >&5\necho \"$as_me: WARNING: In the future, Autoconf will not detect cross-tools\nwhose name does not start with the host triplet.  If you think this\nconfiguration is useful to you, please write to autoconf@gnu.org.\" >&2;}\nac_tool_warned=yes ;;\nesac\n    NMEDIT=$ac_ct_NMEDIT\n  fi\nelse\n  NMEDIT=\"$ac_cv_prog_NMEDIT\"\nfi\n\n    if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}lipo\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}lipo; ac_word=$2\n{ echo \"$as_me:$LINENO: checking for $ac_word\" >&5\necho $ECHO_N \"checking for $ac_word... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_LIPO+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$LIPO\"; then\n  ac_cv_prog_LIPO=\"$LIPO\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_exec_ext in '' $ac_executable_extensions; do\n  if { test -f \"$as_dir/$ac_word$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_word$ac_exec_ext\"; }; then\n    ac_cv_prog_LIPO=\"${ac_tool_prefix}lipo\"\n    echo \"$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\ndone\nIFS=$as_save_IFS\n\nfi\nfi\nLIPO=$ac_cv_prog_LIPO\nif test -n \"$LIPO\"; then\n  { echo \"$as_me:$LINENO: result: $LIPO\" >&5\necho \"${ECHO_T}$LIPO\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_LIPO\"; then\n  ac_ct_LIPO=$LIPO\n  # Extract the first word of \"lipo\", so it can be a program name with args.\nset dummy lipo; ac_word=$2\n{ echo \"$as_me:$LINENO: checking for $ac_word\" >&5\necho $ECHO_N \"checking for $ac_word... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_ac_ct_LIPO+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$ac_ct_LIPO\"; then\n  ac_cv_prog_ac_ct_LIPO=\"$ac_ct_LIPO\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_exec_ext in '' $ac_executable_extensions; do\n  if { test -f \"$as_dir/$ac_word$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_word$ac_exec_ext\"; }; then\n    ac_cv_prog_ac_ct_LIPO=\"lipo\"\n    echo \"$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\ndone\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO\nif test -n \"$ac_ct_LIPO\"; then\n  { echo \"$as_me:$LINENO: result: $ac_ct_LIPO\" >&5\necho \"${ECHO_T}$ac_ct_LIPO\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n  if test \"x$ac_ct_LIPO\" = x; then\n    LIPO=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ echo \"$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools\nwhose name does not start with the host triplet.  If you think this\nconfiguration is useful to you, please write to autoconf@gnu.org.\" >&5\necho \"$as_me: WARNING: In the future, Autoconf will not detect cross-tools\nwhose name does not start with the host triplet.  If you think this\nconfiguration is useful to you, please write to autoconf@gnu.org.\" >&2;}\nac_tool_warned=yes ;;\nesac\n    LIPO=$ac_ct_LIPO\n  fi\nelse\n  LIPO=\"$ac_cv_prog_LIPO\"\nfi\n\n    if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}otool\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}otool; ac_word=$2\n{ echo \"$as_me:$LINENO: checking for $ac_word\" >&5\necho $ECHO_N \"checking for $ac_word... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_OTOOL+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$OTOOL\"; then\n  ac_cv_prog_OTOOL=\"$OTOOL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_exec_ext in '' $ac_executable_extensions; do\n  if { test -f \"$as_dir/$ac_word$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_word$ac_exec_ext\"; }; then\n    ac_cv_prog_OTOOL=\"${ac_tool_prefix}otool\"\n    echo \"$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\ndone\nIFS=$as_save_IFS\n\nfi\nfi\nOTOOL=$ac_cv_prog_OTOOL\nif test -n \"$OTOOL\"; then\n  { echo \"$as_me:$LINENO: result: $OTOOL\" >&5\necho \"${ECHO_T}$OTOOL\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_OTOOL\"; then\n  ac_ct_OTOOL=$OTOOL\n  # Extract the first word of \"otool\", so it can be a program name with args.\nset dummy otool; ac_word=$2\n{ echo \"$as_me:$LINENO: checking for $ac_word\" >&5\necho $ECHO_N \"checking for $ac_word... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_ac_ct_OTOOL+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$ac_ct_OTOOL\"; then\n  ac_cv_prog_ac_ct_OTOOL=\"$ac_ct_OTOOL\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_exec_ext in '' $ac_executable_extensions; do\n  if { test -f \"$as_dir/$ac_word$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_word$ac_exec_ext\"; }; then\n    ac_cv_prog_ac_ct_OTOOL=\"otool\"\n    echo \"$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\ndone\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL\nif test -n \"$ac_ct_OTOOL\"; then\n  { echo \"$as_me:$LINENO: result: $ac_ct_OTOOL\" >&5\necho \"${ECHO_T}$ac_ct_OTOOL\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n  if test \"x$ac_ct_OTOOL\" = x; then\n    OTOOL=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ echo \"$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools\nwhose name does not start with the host triplet.  If you think this\nconfiguration is useful to you, please write to autoconf@gnu.org.\" >&5\necho \"$as_me: WARNING: In the future, Autoconf will not detect cross-tools\nwhose name does not start with the host triplet.  If you think this\nconfiguration is useful to you, please write to autoconf@gnu.org.\" >&2;}\nac_tool_warned=yes ;;\nesac\n    OTOOL=$ac_ct_OTOOL\n  fi\nelse\n  OTOOL=\"$ac_cv_prog_OTOOL\"\nfi\n\n    if test -n \"$ac_tool_prefix\"; then\n  # Extract the first word of \"${ac_tool_prefix}otool64\", so it can be a program name with args.\nset dummy ${ac_tool_prefix}otool64; ac_word=$2\n{ echo \"$as_me:$LINENO: checking for $ac_word\" >&5\necho $ECHO_N \"checking for $ac_word... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_OTOOL64+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$OTOOL64\"; then\n  ac_cv_prog_OTOOL64=\"$OTOOL64\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_exec_ext in '' $ac_executable_extensions; do\n  if { test -f \"$as_dir/$ac_word$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_word$ac_exec_ext\"; }; then\n    ac_cv_prog_OTOOL64=\"${ac_tool_prefix}otool64\"\n    echo \"$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\ndone\nIFS=$as_save_IFS\n\nfi\nfi\nOTOOL64=$ac_cv_prog_OTOOL64\nif test -n \"$OTOOL64\"; then\n  { echo \"$as_me:$LINENO: result: $OTOOL64\" >&5\necho \"${ECHO_T}$OTOOL64\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n\nfi\nif test -z \"$ac_cv_prog_OTOOL64\"; then\n  ac_ct_OTOOL64=$OTOOL64\n  # Extract the first word of \"otool64\", so it can be a program name with args.\nset dummy otool64; ac_word=$2\n{ echo \"$as_me:$LINENO: checking for $ac_word\" >&5\necho $ECHO_N \"checking for $ac_word... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_ac_ct_OTOOL64+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$ac_ct_OTOOL64\"; then\n  ac_cv_prog_ac_ct_OTOOL64=\"$ac_ct_OTOOL64\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_exec_ext in '' $ac_executable_extensions; do\n  if { test -f \"$as_dir/$ac_word$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_word$ac_exec_ext\"; }; then\n    ac_cv_prog_ac_ct_OTOOL64=\"otool64\"\n    echo \"$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\ndone\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64\nif test -n \"$ac_ct_OTOOL64\"; then\n  { echo \"$as_me:$LINENO: result: $ac_ct_OTOOL64\" >&5\necho \"${ECHO_T}$ac_ct_OTOOL64\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n  if test \"x$ac_ct_OTOOL64\" = x; then\n    OTOOL64=\":\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ echo \"$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools\nwhose name does not start with the host triplet.  If you think this\nconfiguration is useful to you, please write to autoconf@gnu.org.\" >&5\necho \"$as_me: WARNING: In the future, Autoconf will not detect cross-tools\nwhose name does not start with the host triplet.  If you think this\nconfiguration is useful to you, please write to autoconf@gnu.org.\" >&2;}\nac_tool_warned=yes ;;\nesac\n    OTOOL64=$ac_ct_OTOOL64\n  fi\nelse\n  OTOOL64=\"$ac_cv_prog_OTOOL64\"\nfi\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    { echo \"$as_me:$LINENO: checking for -single_module linker flag\" >&5\necho $ECHO_N \"checking for -single_module linker flag... $ECHO_C\" >&6; }\nif test \"${lt_cv_apple_cc_single_mod+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  lt_cv_apple_cc_single_mod=no\n      if test -z \"${LT_MULTI_MODULE}\"; then\n\t# By default we will add the -single_module flag. You can override\n\t# by either setting the environment variable LT_MULTI_MODULE\n\t# non-empty at configure time, or by adding -multi_module to the\n\t# link flags.\n\trm -rf libconftest.dylib*\n\techo \"int foo(void){return 1;}\" > conftest.c\n\techo \"$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \\\n-dynamiclib -Wl,-single_module conftest.c\" >&5\n\t$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \\\n\t  -dynamiclib -Wl,-single_module conftest.c 2>conftest.err\n        _lt_result=$?\n\tif test -f libconftest.dylib && test ! -s conftest.err && test $_lt_result = 0; then\n\t  lt_cv_apple_cc_single_mod=yes\n\telse\n\t  cat conftest.err >&5\n\tfi\n\trm -rf libconftest.dylib*\n\trm -f conftest.*\n      fi\nfi\n{ echo \"$as_me:$LINENO: result: $lt_cv_apple_cc_single_mod\" >&5\necho \"${ECHO_T}$lt_cv_apple_cc_single_mod\" >&6; }\n    { echo \"$as_me:$LINENO: checking for -exported_symbols_list linker flag\" >&5\necho $ECHO_N \"checking for -exported_symbols_list linker flag... $ECHO_C\" >&6; }\nif test \"${lt_cv_ld_exported_symbols_list+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  lt_cv_ld_exported_symbols_list=no\n      save_LDFLAGS=$LDFLAGS\n      echo \"_main\" > conftest.sym\n      LDFLAGS=\"$LDFLAGS -Wl,-exported_symbols_list,conftest.sym\"\n      cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nrm -f conftest.$ac_objext conftest$ac_exeext\nif { (ac_try=\"$ac_link\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_link\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && {\n\t test -z \"$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest$ac_exeext &&\n       $as_test_x conftest$ac_exeext; then\n  lt_cv_ld_exported_symbols_list=yes\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\tlt_cv_ld_exported_symbols_list=no\nfi\n\nrm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \\\n      conftest$ac_exeext conftest.$ac_ext\n\tLDFLAGS=\"$save_LDFLAGS\"\n\nfi\n{ echo \"$as_me:$LINENO: result: $lt_cv_ld_exported_symbols_list\" >&5\necho \"${ECHO_T}$lt_cv_ld_exported_symbols_list\" >&6; }\n    { echo \"$as_me:$LINENO: checking for -force_load linker flag\" >&5\necho $ECHO_N \"checking for -force_load linker flag... $ECHO_C\" >&6; }\nif test \"${lt_cv_ld_force_load+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  lt_cv_ld_force_load=no\n      cat > conftest.c << _LT_EOF\nint forced_loaded() { return 2;}\n_LT_EOF\n      echo \"$LTCC $LTCFLAGS -c -o conftest.o conftest.c\" >&5\n      $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5\n      echo \"$AR cru libconftest.a conftest.o\" >&5\n      $AR cru libconftest.a conftest.o 2>&5\n      echo \"$RANLIB libconftest.a\" >&5\n      $RANLIB libconftest.a 2>&5\n      cat > conftest.c << _LT_EOF\nint main() { return 0;}\n_LT_EOF\n      echo \"$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a\" >&5\n      $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err\n      _lt_result=$?\n      if test -f conftest && test ! -s conftest.err && test $_lt_result = 0 && $GREP forced_load conftest 2>&1 >/dev/null; then\n\tlt_cv_ld_force_load=yes\n      else\n\tcat conftest.err >&5\n      fi\n        rm -f conftest.err libconftest.a conftest conftest.c\n        rm -rf conftest.dSYM\n\nfi\n{ echo \"$as_me:$LINENO: result: $lt_cv_ld_force_load\" >&5\necho \"${ECHO_T}$lt_cv_ld_force_load\" >&6; }\n    case $host_os in\n    rhapsody* | darwin1.[012])\n      _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;;\n    darwin1.*)\n      _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;\n    darwin*) # darwin 5.x on\n      # if running on 10.5 or later, the deployment target defaults\n      # to the OS version, if on x86, and 10.4, the deployment\n      # target defaults to 10.4. Don't you love it?\n      case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in\n\t10.0,*86*-darwin8*|10.0,*-darwin[91]*)\n\t  _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;;\n\t10.[012]*)\n\t  _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;\n\t10.*)\n\t  _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;;\n      esac\n    ;;\n  esac\n    if test \"$lt_cv_apple_cc_single_mod\" = \"yes\"; then\n      _lt_dar_single_mod='$single_module'\n    fi\n    if test \"$lt_cv_ld_exported_symbols_list\" = \"yes\"; then\n      _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym'\n    else\n      _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}'\n    fi\n    if test \"$DSYMUTIL\" != \":\" && test \"$lt_cv_ld_force_load\" = \"no\"; then\n      _lt_dsymutil='~$DSYMUTIL $lib || :'\n    else\n      _lt_dsymutil=\n    fi\n    ;;\n  esac\n\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n{ echo \"$as_me:$LINENO: checking how to run the C preprocessor\" >&5\necho $ECHO_N \"checking how to run the C preprocessor... $ECHO_C\" >&6; }\n# On Suns, sometimes $CPP names a directory.\nif test -n \"$CPP\" && test -d \"$CPP\"; then\n  CPP=\nfi\nif test -z \"$CPP\"; then\n  if test \"${ac_cv_prog_CPP+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n      # Double quotes because CPP needs to be expanded\n    for CPP in \"$CC -E\" \"$CC -E -traditional-cpp\" \"/lib/cpp\"\n    do\n      ac_preproc_ok=false\nfor ac_c_preproc_warn_flag in '' yes\ndo\n  # Use a header file that comes with gcc, so configuring glibc\n  # with a fresh cross-compiler works.\n  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since\n  # <limits.h> exists even on freestanding compilers.\n  # On the NeXT, cc -E runs the code through the compiler's parser,\n  # not just through cpp. \"Syntax error\" is here to catch this case.\n  cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n#ifdef __STDC__\n# include <limits.h>\n#else\n# include <assert.h>\n#endif\n\t\t     Syntax error\n_ACEOF\nif { (ac_try=\"$ac_cpp conftest.$ac_ext\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_cpp conftest.$ac_ext\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } >/dev/null && {\n\t test -z \"$ac_c_preproc_warn_flag$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       }; then\n  :\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n  # Broken: fails on valid input.\ncontinue\nfi\n\nrm -f conftest.err conftest.$ac_ext\n\n  # OK, works on sane cases.  Now check whether nonexistent headers\n  # can be detected and how.\n  cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n#include <ac_nonexistent.h>\n_ACEOF\nif { (ac_try=\"$ac_cpp conftest.$ac_ext\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_cpp conftest.$ac_ext\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } >/dev/null && {\n\t test -z \"$ac_c_preproc_warn_flag$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       }; then\n  # Broken: success on invalid input.\ncontinue\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n  # Passes both tests.\nac_preproc_ok=:\nbreak\nfi\n\nrm -f conftest.err conftest.$ac_ext\n\ndone\n# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.\nrm -f conftest.err conftest.$ac_ext\nif $ac_preproc_ok; then\n  break\nfi\n\n    done\n    ac_cv_prog_CPP=$CPP\n\nfi\n  CPP=$ac_cv_prog_CPP\nelse\n  ac_cv_prog_CPP=$CPP\nfi\n{ echo \"$as_me:$LINENO: result: $CPP\" >&5\necho \"${ECHO_T}$CPP\" >&6; }\nac_preproc_ok=false\nfor ac_c_preproc_warn_flag in '' yes\ndo\n  # Use a header file that comes with gcc, so configuring glibc\n  # with a fresh cross-compiler works.\n  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since\n  # <limits.h> exists even on freestanding compilers.\n  # On the NeXT, cc -E runs the code through the compiler's parser,\n  # not just through cpp. \"Syntax error\" is here to catch this case.\n  cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n#ifdef __STDC__\n# include <limits.h>\n#else\n# include <assert.h>\n#endif\n\t\t     Syntax error\n_ACEOF\nif { (ac_try=\"$ac_cpp conftest.$ac_ext\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_cpp conftest.$ac_ext\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } >/dev/null && {\n\t test -z \"$ac_c_preproc_warn_flag$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       }; then\n  :\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n  # Broken: fails on valid input.\ncontinue\nfi\n\nrm -f conftest.err conftest.$ac_ext\n\n  # OK, works on sane cases.  Now check whether nonexistent headers\n  # can be detected and how.\n  cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n#include <ac_nonexistent.h>\n_ACEOF\nif { (ac_try=\"$ac_cpp conftest.$ac_ext\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_cpp conftest.$ac_ext\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } >/dev/null && {\n\t test -z \"$ac_c_preproc_warn_flag$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       }; then\n  # Broken: success on invalid input.\ncontinue\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n  # Passes both tests.\nac_preproc_ok=:\nbreak\nfi\n\nrm -f conftest.err conftest.$ac_ext\n\ndone\n# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.\nrm -f conftest.err conftest.$ac_ext\nif $ac_preproc_ok; then\n  :\nelse\n  { { echo \"$as_me:$LINENO: error: C preprocessor \\\"$CPP\\\" fails sanity check\nSee \\`config.log' for more details.\" >&5\necho \"$as_me: error: C preprocessor \\\"$CPP\\\" fails sanity check\nSee \\`config.log' for more details.\" >&2;}\n   { (exit 1); exit 1; }; }\nfi\n\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\n\n{ echo \"$as_me:$LINENO: checking for ANSI C header files\" >&5\necho $ECHO_N \"checking for ANSI C header files... $ECHO_C\" >&6; }\nif test \"${ac_cv_header_stdc+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n#include <stdlib.h>\n#include <stdarg.h>\n#include <string.h>\n#include <float.h>\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nrm -f conftest.$ac_objext\nif { (ac_try=\"$ac_compile\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_compile\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && {\n\t test -z \"$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest.$ac_objext; then\n  ac_cv_header_stdc=yes\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\tac_cv_header_stdc=no\nfi\n\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n\nif test $ac_cv_header_stdc = yes; then\n  # SunOS 4.x string.h does not declare mem*, contrary to ANSI.\n  cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n#include <string.h>\n\n_ACEOF\nif (eval \"$ac_cpp conftest.$ac_ext\") 2>&5 |\n  $EGREP \"memchr\" >/dev/null 2>&1; then\n  :\nelse\n  ac_cv_header_stdc=no\nfi\nrm -f -r conftest*\n\nfi\n\nif test $ac_cv_header_stdc = yes; then\n  # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.\n  cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n#include <stdlib.h>\n\n_ACEOF\nif (eval \"$ac_cpp conftest.$ac_ext\") 2>&5 |\n  $EGREP \"free\" >/dev/null 2>&1; then\n  :\nelse\n  ac_cv_header_stdc=no\nfi\nrm -f -r conftest*\n\nfi\n\nif test $ac_cv_header_stdc = yes; then\n  # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.\n  if test \"$cross_compiling\" = yes; then\n  :\nelse\n  cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n#include <ctype.h>\n#include <stdlib.h>\n#if ((' ' & 0x0FF) == 0x020)\n# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')\n# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))\n#else\n# define ISLOWER(c) \\\n\t\t   (('a' <= (c) && (c) <= 'i') \\\n\t\t     || ('j' <= (c) && (c) <= 'r') \\\n\t\t     || ('s' <= (c) && (c) <= 'z'))\n# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))\n#endif\n\n#define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))\nint\nmain ()\n{\n  int i;\n  for (i = 0; i < 256; i++)\n    if (XOR (islower (i), ISLOWER (i))\n\t|| toupper (i) != TOUPPER (i))\n      return 2;\n  return 0;\n}\n_ACEOF\nrm -f conftest$ac_exeext\nif { (ac_try=\"$ac_link\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_link\") 2>&5\n  ac_status=$?\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && { ac_try='./conftest$ac_exeext'\n  { (case \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_try\") 2>&5\n  ac_status=$?\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); }; }; then\n  :\nelse\n  echo \"$as_me: program exited with status $ac_status\" >&5\necho \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n( exit $ac_status )\nac_cv_header_stdc=no\nfi\nrm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext\nfi\n\n\nfi\nfi\n{ echo \"$as_me:$LINENO: result: $ac_cv_header_stdc\" >&5\necho \"${ECHO_T}$ac_cv_header_stdc\" >&6; }\nif test $ac_cv_header_stdc = yes; then\n\ncat >>confdefs.h <<\\_ACEOF\n#define STDC_HEADERS 1\n_ACEOF\n\nfi\n\n# On IRIX 5.3, sys/types and inttypes.h are conflicting.\n\n\n\n\n\n\n\n\n\nfor ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \\\n\t\t  inttypes.h stdint.h unistd.h\ndo\nas_ac_Header=`echo \"ac_cv_header_$ac_header\" | $as_tr_sh`\n{ echo \"$as_me:$LINENO: checking for $ac_header\" >&5\necho $ECHO_N \"checking for $ac_header... $ECHO_C\" >&6; }\nif { as_var=$as_ac_Header; eval \"test \\\"\\${$as_var+set}\\\" = set\"; }; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n$ac_includes_default\n\n#include <$ac_header>\n_ACEOF\nrm -f conftest.$ac_objext\nif { (ac_try=\"$ac_compile\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_compile\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && {\n\t test -z \"$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest.$ac_objext; then\n  eval \"$as_ac_Header=yes\"\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\teval \"$as_ac_Header=no\"\nfi\n\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\nac_res=`eval echo '${'$as_ac_Header'}'`\n\t       { echo \"$as_me:$LINENO: result: $ac_res\" >&5\necho \"${ECHO_T}$ac_res\" >&6; }\nif test `eval echo '${'$as_ac_Header'}'` = yes; then\n  cat >>confdefs.h <<_ACEOF\n#define `echo \"HAVE_$ac_header\" | $as_tr_cpp` 1\n_ACEOF\n\nfi\n\ndone\n\n\n\nfor ac_header in dlfcn.h\ndo\nas_ac_Header=`echo \"ac_cv_header_$ac_header\" | $as_tr_sh`\n{ echo \"$as_me:$LINENO: checking for $ac_header\" >&5\necho $ECHO_N \"checking for $ac_header... $ECHO_C\" >&6; }\nif { as_var=$as_ac_Header; eval \"test \\\"\\${$as_var+set}\\\" = set\"; }; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n$ac_includes_default\n\n#include <$ac_header>\n_ACEOF\nrm -f conftest.$ac_objext\nif { (ac_try=\"$ac_compile\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_compile\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && {\n\t test -z \"$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest.$ac_objext; then\n  eval \"$as_ac_Header=yes\"\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\teval \"$as_ac_Header=no\"\nfi\n\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\nac_res=`eval echo '${'$as_ac_Header'}'`\n\t       { echo \"$as_me:$LINENO: result: $ac_res\" >&5\necho \"${ECHO_T}$ac_res\" >&6; }\nif test `eval echo '${'$as_ac_Header'}'` = yes; then\n  cat >>confdefs.h <<_ACEOF\n#define `echo \"HAVE_$ac_header\" | $as_tr_cpp` 1\n_ACEOF\n\nfi\n\ndone\n\n\n\n\n\n# Set options\n\n\n\n        enable_dlopen=no\n\n\n  enable_win32_dll=no\n\n\n            # Check whether --enable-shared was given.\nif test \"${enable_shared+set}\" = set; then\n  enableval=$enable_shared; p=${PACKAGE-default}\n    case $enableval in\n    yes) enable_shared=yes ;;\n    no) enable_shared=no ;;\n    *)\n      enable_shared=no\n      # Look at the argument we got.  We use all the common list separators.\n      lt_save_ifs=\"$IFS\"; IFS=\"${IFS}$PATH_SEPARATOR,\"\n      for pkg in $enableval; do\n\tIFS=\"$lt_save_ifs\"\n\tif test \"X$pkg\" = \"X$p\"; then\n\t  enable_shared=yes\n\tfi\n      done\n      IFS=\"$lt_save_ifs\"\n      ;;\n    esac\nelse\n  enable_shared=yes\nfi\n\n\n\n\n\n\n\n\n\n  # Check whether --enable-static was given.\nif test \"${enable_static+set}\" = set; then\n  enableval=$enable_static; p=${PACKAGE-default}\n    case $enableval in\n    yes) enable_static=yes ;;\n    no) enable_static=no ;;\n    *)\n     enable_static=no\n      # Look at the argument we got.  We use all the common list separators.\n      lt_save_ifs=\"$IFS\"; IFS=\"${IFS}$PATH_SEPARATOR,\"\n      for pkg in $enableval; do\n\tIFS=\"$lt_save_ifs\"\n\tif test \"X$pkg\" = \"X$p\"; then\n\t  enable_static=yes\n\tfi\n      done\n      IFS=\"$lt_save_ifs\"\n      ;;\n    esac\nelse\n  enable_static=yes\nfi\n\n\n\n\n\n\n\n\n\n\n# Check whether --with-pic was given.\nif test \"${with_pic+set}\" = set; then\n  withval=$with_pic; pic_mode=\"$withval\"\nelse\n  pic_mode=default\nfi\n\n\ntest -z \"$pic_mode\" && pic_mode=default\n\n\n\n\n\n\n\n  # Check whether --enable-fast-install was given.\nif test \"${enable_fast_install+set}\" = set; then\n  enableval=$enable_fast_install; p=${PACKAGE-default}\n    case $enableval in\n    yes) enable_fast_install=yes ;;\n    no) enable_fast_install=no ;;\n    *)\n      enable_fast_install=no\n      # Look at the argument we got.  We use all the common list separators.\n      lt_save_ifs=\"$IFS\"; IFS=\"${IFS}$PATH_SEPARATOR,\"\n      for pkg in $enableval; do\n\tIFS=\"$lt_save_ifs\"\n\tif test \"X$pkg\" = \"X$p\"; then\n\t  enable_fast_install=yes\n\tfi\n      done\n      IFS=\"$lt_save_ifs\"\n      ;;\n    esac\nelse\n  enable_fast_install=yes\nfi\n\n\n\n\n\n\n\n\n\n\n\n# This can be used to rebuild libtool when needed\nLIBTOOL_DEPS=\"$ltmain\"\n\n# Always use our own libtool.\nLIBTOOL='$(SHELL) $(top_builddir)/libtool'\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\ntest -z \"$LN_S\" && LN_S=\"ln -s\"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nif test -n \"${ZSH_VERSION+set}\" ; then\n   setopt NO_GLOB_SUBST\nfi\n\n{ echo \"$as_me:$LINENO: checking for objdir\" >&5\necho $ECHO_N \"checking for objdir... $ECHO_C\" >&6; }\nif test \"${lt_cv_objdir+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  rm -f .libs 2>/dev/null\nmkdir .libs 2>/dev/null\nif test -d .libs; then\n  lt_cv_objdir=.libs\nelse\n  # MS-DOS does not allow filenames that begin with a dot.\n  lt_cv_objdir=_libs\nfi\nrmdir .libs 2>/dev/null\nfi\n{ echo \"$as_me:$LINENO: result: $lt_cv_objdir\" >&5\necho \"${ECHO_T}$lt_cv_objdir\" >&6; }\nobjdir=$lt_cv_objdir\n\n\n\n\n\ncat >>confdefs.h <<_ACEOF\n#define LT_OBJDIR \"$lt_cv_objdir/\"\n_ACEOF\n\n\n\n\ncase $host_os in\naix3*)\n  # AIX sometimes has problems with the GCC collect2 program.  For some\n  # reason, if we set the COLLECT_NAMES environment variable, the problems\n  # vanish in a puff of smoke.\n  if test \"X${COLLECT_NAMES+set}\" != Xset; then\n    COLLECT_NAMES=\n    export COLLECT_NAMES\n  fi\n  ;;\nesac\n\n# Global variables:\nofile=libtool\ncan_build_shared=yes\n\n# All known linkers require a `.a' archive for static linking (except MSVC,\n# which needs '.lib').\nlibext=a\n\nwith_gnu_ld=\"$lt_cv_prog_gnu_ld\"\n\nold_CC=\"$CC\"\nold_CFLAGS=\"$CFLAGS\"\n\n# Set sane defaults for various variables\ntest -z \"$CC\" && CC=cc\ntest -z \"$LTCC\" && LTCC=$CC\ntest -z \"$LTCFLAGS\" && LTCFLAGS=$CFLAGS\ntest -z \"$LD\" && LD=ld\ntest -z \"$ac_objext\" && ac_objext=o\n\nfor cc_temp in $compiler\"\"; do\n  case $cc_temp in\n    compile | *[\\\\/]compile | ccache | *[\\\\/]ccache ) ;;\n    distcc | *[\\\\/]distcc | purify | *[\\\\/]purify ) ;;\n    \\-*) ;;\n    *) break;;\n  esac\ndone\ncc_basename=`$ECHO \"$cc_temp\" | $SED \"s%.*/%%; s%^$host_alias-%%\"`\n\n\n# Only perform the check for file, if the check method requires it\ntest -z \"$MAGIC_CMD\" && MAGIC_CMD=file\ncase $deplibs_check_method in\nfile_magic*)\n  if test \"$file_magic_cmd\" = '$MAGIC_CMD'; then\n    { echo \"$as_me:$LINENO: checking for ${ac_tool_prefix}file\" >&5\necho $ECHO_N \"checking for ${ac_tool_prefix}file... $ECHO_C\" >&6; }\nif test \"${lt_cv_path_MAGIC_CMD+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  case $MAGIC_CMD in\n[\\\\/*] |  ?:[\\\\/]*)\n  lt_cv_path_MAGIC_CMD=\"$MAGIC_CMD\" # Let the user override the test with a path.\n  ;;\n*)\n  lt_save_MAGIC_CMD=\"$MAGIC_CMD\"\n  lt_save_ifs=\"$IFS\"; IFS=$PATH_SEPARATOR\n  ac_dummy=\"/usr/bin$PATH_SEPARATOR$PATH\"\n  for ac_dir in $ac_dummy; do\n    IFS=\"$lt_save_ifs\"\n    test -z \"$ac_dir\" && ac_dir=.\n    if test -f $ac_dir/${ac_tool_prefix}file; then\n      lt_cv_path_MAGIC_CMD=\"$ac_dir/${ac_tool_prefix}file\"\n      if test -n \"$file_magic_test_file\"; then\n\tcase $deplibs_check_method in\n\t\"file_magic \"*)\n\t  file_magic_regex=`expr \"$deplibs_check_method\" : \"file_magic \\(.*\\)\"`\n\t  MAGIC_CMD=\"$lt_cv_path_MAGIC_CMD\"\n\t  if eval $file_magic_cmd \\$file_magic_test_file 2> /dev/null |\n\t    $EGREP \"$file_magic_regex\" > /dev/null; then\n\t    :\n\t  else\n\t    cat <<_LT_EOF 1>&2\n\n*** Warning: the command libtool uses to detect shared libraries,\n*** $file_magic_cmd, produces output that libtool cannot recognize.\n*** The result is that libtool may fail to recognize shared libraries\n*** as such.  This will affect the creation of libtool libraries that\n*** depend on shared libraries, but programs linked with such libtool\n*** libraries will work regardless of this problem.  Nevertheless, you\n*** may want to report the problem to your system manager and/or to\n*** bug-libtool@gnu.org\n\n_LT_EOF\n\t  fi ;;\n\tesac\n      fi\n      break\n    fi\n  done\n  IFS=\"$lt_save_ifs\"\n  MAGIC_CMD=\"$lt_save_MAGIC_CMD\"\n  ;;\nesac\nfi\n\nMAGIC_CMD=\"$lt_cv_path_MAGIC_CMD\"\nif test -n \"$MAGIC_CMD\"; then\n  { echo \"$as_me:$LINENO: result: $MAGIC_CMD\" >&5\necho \"${ECHO_T}$MAGIC_CMD\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n\n\n\n\nif test -z \"$lt_cv_path_MAGIC_CMD\"; then\n  if test -n \"$ac_tool_prefix\"; then\n    { echo \"$as_me:$LINENO: checking for file\" >&5\necho $ECHO_N \"checking for file... $ECHO_C\" >&6; }\nif test \"${lt_cv_path_MAGIC_CMD+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  case $MAGIC_CMD in\n[\\\\/*] |  ?:[\\\\/]*)\n  lt_cv_path_MAGIC_CMD=\"$MAGIC_CMD\" # Let the user override the test with a path.\n  ;;\n*)\n  lt_save_MAGIC_CMD=\"$MAGIC_CMD\"\n  lt_save_ifs=\"$IFS\"; IFS=$PATH_SEPARATOR\n  ac_dummy=\"/usr/bin$PATH_SEPARATOR$PATH\"\n  for ac_dir in $ac_dummy; do\n    IFS=\"$lt_save_ifs\"\n    test -z \"$ac_dir\" && ac_dir=.\n    if test -f $ac_dir/file; then\n      lt_cv_path_MAGIC_CMD=\"$ac_dir/file\"\n      if test -n \"$file_magic_test_file\"; then\n\tcase $deplibs_check_method in\n\t\"file_magic \"*)\n\t  file_magic_regex=`expr \"$deplibs_check_method\" : \"file_magic \\(.*\\)\"`\n\t  MAGIC_CMD=\"$lt_cv_path_MAGIC_CMD\"\n\t  if eval $file_magic_cmd \\$file_magic_test_file 2> /dev/null |\n\t    $EGREP \"$file_magic_regex\" > /dev/null; then\n\t    :\n\t  else\n\t    cat <<_LT_EOF 1>&2\n\n*** Warning: the command libtool uses to detect shared libraries,\n*** $file_magic_cmd, produces output that libtool cannot recognize.\n*** The result is that libtool may fail to recognize shared libraries\n*** as such.  This will affect the creation of libtool libraries that\n*** depend on shared libraries, but programs linked with such libtool\n*** libraries will work regardless of this problem.  Nevertheless, you\n*** may want to report the problem to your system manager and/or to\n*** bug-libtool@gnu.org\n\n_LT_EOF\n\t  fi ;;\n\tesac\n      fi\n      break\n    fi\n  done\n  IFS=\"$lt_save_ifs\"\n  MAGIC_CMD=\"$lt_save_MAGIC_CMD\"\n  ;;\nesac\nfi\n\nMAGIC_CMD=\"$lt_cv_path_MAGIC_CMD\"\nif test -n \"$MAGIC_CMD\"; then\n  { echo \"$as_me:$LINENO: result: $MAGIC_CMD\" >&5\necho \"${ECHO_T}$MAGIC_CMD\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n\n  else\n    MAGIC_CMD=:\n  fi\nfi\n\n  fi\n  ;;\nesac\n\n# Use C for the default configuration in the libtool script\n\nlt_save_CC=\"$CC\"\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\n\n# Source file extension for C test sources.\nac_ext=c\n\n# Object file extension for compiled C test sources.\nobjext=o\nobjext=$objext\n\n# Code to be used in simple compile tests\nlt_simple_compile_test_code=\"int some_variable = 0;\"\n\n# Code to be used in simple link tests\nlt_simple_link_test_code='int main(){return(0);}'\n\n\n\n\n\n\n\n# If no C compiler was specified, use CC.\nLTCC=${LTCC-\"$CC\"}\n\n# If no C compiler flags were specified, use CFLAGS.\nLTCFLAGS=${LTCFLAGS-\"$CFLAGS\"}\n\n# Allow CC to be a program name with arguments.\ncompiler=$CC\n\n# Save the default compiler, since it gets overwritten when the other\n# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP.\ncompiler_DEFAULT=$CC\n\n# save warnings/boilerplate of simple test code\nac_outfile=conftest.$ac_objext\necho \"$lt_simple_compile_test_code\" >conftest.$ac_ext\neval \"$ac_compile\" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err\n_lt_compiler_boilerplate=`cat conftest.err`\n$RM -r conftest*\n\nac_outfile=conftest.$ac_objext\necho \"$lt_simple_link_test_code\" >conftest.$ac_ext\neval \"$ac_link\" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err\n_lt_linker_boilerplate=`cat conftest.err`\n$RM -r conftest*\n\n\nif test -n \"$compiler\"; then\n\nlt_prog_compiler_no_builtin_flag=\n\nif test \"$GCC\" = yes; then\n  case $cc_basename in\n  nvcc*)\n    lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;;\n  *)\n    lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;;\n  esac\n\n  { echo \"$as_me:$LINENO: checking if $compiler supports -fno-rtti -fno-exceptions\" >&5\necho $ECHO_N \"checking if $compiler supports -fno-rtti -fno-exceptions... $ECHO_C\" >&6; }\nif test \"${lt_cv_prog_compiler_rtti_exceptions+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  lt_cv_prog_compiler_rtti_exceptions=no\n   ac_outfile=conftest.$ac_objext\n   echo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n   lt_compiler_flag=\"-fno-rtti -fno-exceptions\"\n   # Insert the option either (1) after the last *FLAGS variable, or\n   # (2) before a word containing \"conftest.\", or (3) at the end.\n   # Note that $ac_compile itself does not contain backslashes and begins\n   # with a dollar sign (not a hyphen), so the echo should work correctly.\n   # The option is referenced via a variable to avoid confusing sed.\n   lt_compile=`echo \"$ac_compile\" | $SED \\\n   -e 's:.*FLAGS}\\{0,1\\} :&$lt_compiler_flag :; t' \\\n   -e 's: [^ ]*conftest\\.: $lt_compiler_flag&:; t' \\\n   -e 's:$: $lt_compiler_flag:'`\n   (eval echo \"\\\"\\$as_me:$LINENO: $lt_compile\\\"\" >&5)\n   (eval \"$lt_compile\" 2>conftest.err)\n   ac_status=$?\n   cat conftest.err >&5\n   echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n   if (exit $ac_status) && test -s \"$ac_outfile\"; then\n     # The compiler can only warn and ignore the option if not recognized\n     # So say no if there are warnings other than the usual output.\n     $ECHO \"$_lt_compiler_boilerplate\" | $SED '/^$/d' >conftest.exp\n     $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2\n     if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then\n       lt_cv_prog_compiler_rtti_exceptions=yes\n     fi\n   fi\n   $RM -r conftest*\n\nfi\n{ echo \"$as_me:$LINENO: result: $lt_cv_prog_compiler_rtti_exceptions\" >&5\necho \"${ECHO_T}$lt_cv_prog_compiler_rtti_exceptions\" >&6; }\n\nif test x\"$lt_cv_prog_compiler_rtti_exceptions\" = xyes; then\n    lt_prog_compiler_no_builtin_flag=\"$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions\"\nelse\n    :\nfi\n\nfi\n\n\n\n\n\n\n  lt_prog_compiler_wl=\nlt_prog_compiler_pic=\nlt_prog_compiler_static=\n\n{ echo \"$as_me:$LINENO: checking for $compiler option to produce PIC\" >&5\necho $ECHO_N \"checking for $compiler option to produce PIC... $ECHO_C\" >&6; }\n\n  if test \"$GCC\" = yes; then\n    lt_prog_compiler_wl='-Wl,'\n    lt_prog_compiler_static='-static'\n\n    case $host_os in\n      aix*)\n      # All AIX code is PIC.\n      if test \"$host_cpu\" = ia64; then\n\t# AIX 5 now supports IA64 processor\n\tlt_prog_compiler_static='-Bstatic'\n      fi\n      ;;\n\n    amigaos*)\n      case $host_cpu in\n      powerpc)\n            # see comment about AmigaOS4 .so support\n            lt_prog_compiler_pic='-fPIC'\n        ;;\n      m68k)\n            # FIXME: we need at least 68020 code to build shared libraries, but\n            # adding the `-m68020' flag to GCC prevents building anything better,\n            # like `-m68040'.\n            lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4'\n        ;;\n      esac\n      ;;\n\n    beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)\n      # PIC is the default for these OSes.\n      ;;\n\n    mingw* | cygwin* | pw32* | os2* | cegcc*)\n      # This hack is so that the source file can tell whether it is being\n      # built for inclusion in a dll (and should export symbols for example).\n      # Although the cygwin gcc ignores -fPIC, still need this for old-style\n      # (--disable-auto-import) libraries\n      lt_prog_compiler_pic='-DDLL_EXPORT'\n      ;;\n\n    darwin* | rhapsody*)\n      # PIC is the default on this platform\n      # Common symbols not allowed in MH_DYLIB files\n      lt_prog_compiler_pic='-fno-common'\n      ;;\n\n    haiku*)\n      # PIC is the default for Haiku.\n      # The \"-static\" flag exists, but is broken.\n      lt_prog_compiler_static=\n      ;;\n\n    hpux*)\n      # PIC is the default for 64-bit PA HP-UX, but not for 32-bit\n      # PA HP-UX.  On IA64 HP-UX, PIC is the default but the pic flag\n      # sets the default TLS model and affects inlining.\n      case $host_cpu in\n      hppa*64*)\n\t# +Z the default\n\t;;\n      *)\n\tlt_prog_compiler_pic='-fPIC'\n\t;;\n      esac\n      ;;\n\n    interix[3-9]*)\n      # Interix 3.x gcc -fpic/-fPIC options generate broken code.\n      # Instead, we relocate shared libraries at runtime.\n      ;;\n\n    msdosdjgpp*)\n      # Just because we use GCC doesn't mean we suddenly get shared libraries\n      # on systems that don't support them.\n      lt_prog_compiler_can_build_shared=no\n      enable_shared=no\n      ;;\n\n    *nto* | *qnx*)\n      # QNX uses GNU C++, but need to define -shared option too, otherwise\n      # it will coredump.\n      lt_prog_compiler_pic='-fPIC -shared'\n      ;;\n\n    sysv4*MP*)\n      if test -d /usr/nec; then\n\tlt_prog_compiler_pic=-Kconform_pic\n      fi\n      ;;\n\n    *)\n      lt_prog_compiler_pic='-fPIC'\n      ;;\n    esac\n\n    case $cc_basename in\n    nvcc*) # Cuda Compiler Driver 2.2\n      lt_prog_compiler_wl='-Xlinker '\n      lt_prog_compiler_pic='-Xcompiler -fPIC'\n      ;;\n    esac\n  else\n    # PORTME Check for flag to pass linker flags through the system compiler.\n    case $host_os in\n    aix*)\n      lt_prog_compiler_wl='-Wl,'\n      if test \"$host_cpu\" = ia64; then\n\t# AIX 5 now supports IA64 processor\n\tlt_prog_compiler_static='-Bstatic'\n      else\n\tlt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp'\n      fi\n      ;;\n\n    mingw* | cygwin* | pw32* | os2* | cegcc*)\n      # This hack is so that the source file can tell whether it is being\n      # built for inclusion in a dll (and should export symbols for example).\n      lt_prog_compiler_pic='-DDLL_EXPORT'\n      ;;\n\n    hpux9* | hpux10* | hpux11*)\n      lt_prog_compiler_wl='-Wl,'\n      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but\n      # not for PA HP-UX.\n      case $host_cpu in\n      hppa*64*|ia64*)\n\t# +Z the default\n\t;;\n      *)\n\tlt_prog_compiler_pic='+Z'\n\t;;\n      esac\n      # Is there a better lt_prog_compiler_static that works with the bundled CC?\n      lt_prog_compiler_static='${wl}-a ${wl}archive'\n      ;;\n\n    irix5* | irix6* | nonstopux*)\n      lt_prog_compiler_wl='-Wl,'\n      # PIC (with -KPIC) is the default.\n      lt_prog_compiler_static='-non_shared'\n      ;;\n\n    linux* | k*bsd*-gnu | kopensolaris*-gnu)\n      case $cc_basename in\n      # old Intel for x86_64 which still supported -KPIC.\n      ecc*)\n\tlt_prog_compiler_wl='-Wl,'\n\tlt_prog_compiler_pic='-KPIC'\n\tlt_prog_compiler_static='-static'\n        ;;\n      # icc used to be incompatible with GCC.\n      # ICC 10 doesn't accept -KPIC any more.\n      icc* | ifort*)\n\tlt_prog_compiler_wl='-Wl,'\n\tlt_prog_compiler_pic='-fPIC'\n\tlt_prog_compiler_static='-static'\n        ;;\n      # Lahey Fortran 8.1.\n      lf95*)\n\tlt_prog_compiler_wl='-Wl,'\n\tlt_prog_compiler_pic='--shared'\n\tlt_prog_compiler_static='--static'\n\t;;\n      pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*)\n        # Portland Group compilers (*not* the Pentium gcc compiler,\n\t# which looks to be a dead project)\n\tlt_prog_compiler_wl='-Wl,'\n\tlt_prog_compiler_pic='-fpic'\n\tlt_prog_compiler_static='-Bstatic'\n        ;;\n      ccc*)\n        lt_prog_compiler_wl='-Wl,'\n        # All Alpha code is PIC.\n        lt_prog_compiler_static='-non_shared'\n        ;;\n      xl* | bgxl* | bgf* | mpixl*)\n\t# IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene\n\tlt_prog_compiler_wl='-Wl,'\n\tlt_prog_compiler_pic='-qpic'\n\tlt_prog_compiler_static='-qstaticlink'\n\t;;\n      *)\n\tcase `$CC -V 2>&1 | sed 5q` in\n\t*Sun\\ F* | *Sun*Fortran*)\n\t  # Sun Fortran 8.3 passes all unrecognized flags to the linker\n\t  lt_prog_compiler_pic='-KPIC'\n\t  lt_prog_compiler_static='-Bstatic'\n\t  lt_prog_compiler_wl=''\n\t  ;;\n\t*Sun\\ C*)\n\t  # Sun C 5.9\n\t  lt_prog_compiler_pic='-KPIC'\n\t  lt_prog_compiler_static='-Bstatic'\n\t  lt_prog_compiler_wl='-Wl,'\n\t  ;;\n\tesac\n\t;;\n      esac\n      ;;\n\n    newsos6)\n      lt_prog_compiler_pic='-KPIC'\n      lt_prog_compiler_static='-Bstatic'\n      ;;\n\n    *nto* | *qnx*)\n      # QNX uses GNU C++, but need to define -shared option too, otherwise\n      # it will coredump.\n      lt_prog_compiler_pic='-fPIC -shared'\n      ;;\n\n    osf3* | osf4* | osf5*)\n      lt_prog_compiler_wl='-Wl,'\n      # All OSF/1 code is PIC.\n      lt_prog_compiler_static='-non_shared'\n      ;;\n\n    rdos*)\n      lt_prog_compiler_static='-non_shared'\n      ;;\n\n    solaris*)\n      lt_prog_compiler_pic='-KPIC'\n      lt_prog_compiler_static='-Bstatic'\n      case $cc_basename in\n      f77* | f90* | f95* | sunf77* | sunf90* | sunf95*)\n\tlt_prog_compiler_wl='-Qoption ld ';;\n      *)\n\tlt_prog_compiler_wl='-Wl,';;\n      esac\n      ;;\n\n    sunos4*)\n      lt_prog_compiler_wl='-Qoption ld '\n      lt_prog_compiler_pic='-PIC'\n      lt_prog_compiler_static='-Bstatic'\n      ;;\n\n    sysv4 | sysv4.2uw2* | sysv4.3*)\n      lt_prog_compiler_wl='-Wl,'\n      lt_prog_compiler_pic='-KPIC'\n      lt_prog_compiler_static='-Bstatic'\n      ;;\n\n    sysv4*MP*)\n      if test -d /usr/nec ;then\n\tlt_prog_compiler_pic='-Kconform_pic'\n\tlt_prog_compiler_static='-Bstatic'\n      fi\n      ;;\n\n    sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)\n      lt_prog_compiler_wl='-Wl,'\n      lt_prog_compiler_pic='-KPIC'\n      lt_prog_compiler_static='-Bstatic'\n      ;;\n\n    unicos*)\n      lt_prog_compiler_wl='-Wl,'\n      lt_prog_compiler_can_build_shared=no\n      ;;\n\n    uts4*)\n      lt_prog_compiler_pic='-pic'\n      lt_prog_compiler_static='-Bstatic'\n      ;;\n\n    *)\n      lt_prog_compiler_can_build_shared=no\n      ;;\n    esac\n  fi\n\ncase $host_os in\n  # For platforms which do not support PIC, -DPIC is meaningless:\n  *djgpp*)\n    lt_prog_compiler_pic=\n    ;;\n  *)\n    lt_prog_compiler_pic=\"$lt_prog_compiler_pic -DPIC\"\n    ;;\nesac\n{ echo \"$as_me:$LINENO: result: $lt_prog_compiler_pic\" >&5\necho \"${ECHO_T}$lt_prog_compiler_pic\" >&6; }\n\n\n\n\n\n\n#\n# Check to make sure the PIC flag actually works.\n#\nif test -n \"$lt_prog_compiler_pic\"; then\n  { echo \"$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic works\" >&5\necho $ECHO_N \"checking if $compiler PIC flag $lt_prog_compiler_pic works... $ECHO_C\" >&6; }\nif test \"${lt_cv_prog_compiler_pic_works+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  lt_cv_prog_compiler_pic_works=no\n   ac_outfile=conftest.$ac_objext\n   echo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n   lt_compiler_flag=\"$lt_prog_compiler_pic -DPIC\"\n   # Insert the option either (1) after the last *FLAGS variable, or\n   # (2) before a word containing \"conftest.\", or (3) at the end.\n   # Note that $ac_compile itself does not contain backslashes and begins\n   # with a dollar sign (not a hyphen), so the echo should work correctly.\n   # The option is referenced via a variable to avoid confusing sed.\n   lt_compile=`echo \"$ac_compile\" | $SED \\\n   -e 's:.*FLAGS}\\{0,1\\} :&$lt_compiler_flag :; t' \\\n   -e 's: [^ ]*conftest\\.: $lt_compiler_flag&:; t' \\\n   -e 's:$: $lt_compiler_flag:'`\n   (eval echo \"\\\"\\$as_me:$LINENO: $lt_compile\\\"\" >&5)\n   (eval \"$lt_compile\" 2>conftest.err)\n   ac_status=$?\n   cat conftest.err >&5\n   echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n   if (exit $ac_status) && test -s \"$ac_outfile\"; then\n     # The compiler can only warn and ignore the option if not recognized\n     # So say no if there are warnings other than the usual output.\n     $ECHO \"$_lt_compiler_boilerplate\" | $SED '/^$/d' >conftest.exp\n     $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2\n     if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then\n       lt_cv_prog_compiler_pic_works=yes\n     fi\n   fi\n   $RM -r conftest*\n\nfi\n{ echo \"$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works\" >&5\necho \"${ECHO_T}$lt_cv_prog_compiler_pic_works\" >&6; }\n\nif test x\"$lt_cv_prog_compiler_pic_works\" = xyes; then\n    case $lt_prog_compiler_pic in\n     \"\" | \" \"*) ;;\n     *) lt_prog_compiler_pic=\" $lt_prog_compiler_pic\" ;;\n     esac\nelse\n    lt_prog_compiler_pic=\n     lt_prog_compiler_can_build_shared=no\nfi\n\nfi\n\n\n\n\n\n\n#\n# Check to make sure the static flag actually works.\n#\nwl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\\\"$lt_prog_compiler_static\\\"\n{ echo \"$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works\" >&5\necho $ECHO_N \"checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C\" >&6; }\nif test \"${lt_cv_prog_compiler_static_works+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  lt_cv_prog_compiler_static_works=no\n   save_LDFLAGS=\"$LDFLAGS\"\n   LDFLAGS=\"$LDFLAGS $lt_tmp_static_flag\"\n   echo \"$lt_simple_link_test_code\" > conftest.$ac_ext\n   if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then\n     # The linker can only warn and ignore the option if not recognized\n     # So say no if there are warnings\n     if test -s conftest.err; then\n       # Append any errors to the config.log.\n       cat conftest.err 1>&5\n       $ECHO \"$_lt_linker_boilerplate\" | $SED '/^$/d' > conftest.exp\n       $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2\n       if diff conftest.exp conftest.er2 >/dev/null; then\n         lt_cv_prog_compiler_static_works=yes\n       fi\n     else\n       lt_cv_prog_compiler_static_works=yes\n     fi\n   fi\n   $RM -r conftest*\n   LDFLAGS=\"$save_LDFLAGS\"\n\nfi\n{ echo \"$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works\" >&5\necho \"${ECHO_T}$lt_cv_prog_compiler_static_works\" >&6; }\n\nif test x\"$lt_cv_prog_compiler_static_works\" = xyes; then\n    :\nelse\n    lt_prog_compiler_static=\nfi\n\n\n\n\n\n\n\n  { echo \"$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext\" >&5\necho $ECHO_N \"checking if $compiler supports -c -o file.$ac_objext... $ECHO_C\" >&6; }\nif test \"${lt_cv_prog_compiler_c_o+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  lt_cv_prog_compiler_c_o=no\n   $RM -r conftest 2>/dev/null\n   mkdir conftest\n   cd conftest\n   mkdir out\n   echo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n\n   lt_compiler_flag=\"-o out/conftest2.$ac_objext\"\n   # Insert the option either (1) after the last *FLAGS variable, or\n   # (2) before a word containing \"conftest.\", or (3) at the end.\n   # Note that $ac_compile itself does not contain backslashes and begins\n   # with a dollar sign (not a hyphen), so the echo should work correctly.\n   lt_compile=`echo \"$ac_compile\" | $SED \\\n   -e 's:.*FLAGS}\\{0,1\\} :&$lt_compiler_flag :; t' \\\n   -e 's: [^ ]*conftest\\.: $lt_compiler_flag&:; t' \\\n   -e 's:$: $lt_compiler_flag:'`\n   (eval echo \"\\\"\\$as_me:$LINENO: $lt_compile\\\"\" >&5)\n   (eval \"$lt_compile\" 2>out/conftest.err)\n   ac_status=$?\n   cat out/conftest.err >&5\n   echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n   if (exit $ac_status) && test -s out/conftest2.$ac_objext\n   then\n     # The compiler can only warn and ignore the option if not recognized\n     # So say no if there are warnings\n     $ECHO \"$_lt_compiler_boilerplate\" | $SED '/^$/d' > out/conftest.exp\n     $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2\n     if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then\n       lt_cv_prog_compiler_c_o=yes\n     fi\n   fi\n   chmod u+w . 2>&5\n   $RM -r conftest*\n   # SGI C++ compiler will create directory out/ii_files/ for\n   # template instantiation\n   test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files\n   $RM out/* && rmdir out\n   cd ..\n   $RM -r conftest\n   $RM -r conftest*\n\nfi\n{ echo \"$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o\" >&5\necho \"${ECHO_T}$lt_cv_prog_compiler_c_o\" >&6; }\n\n\n\n\n\n\n  { echo \"$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext\" >&5\necho $ECHO_N \"checking if $compiler supports -c -o file.$ac_objext... $ECHO_C\" >&6; }\nif test \"${lt_cv_prog_compiler_c_o+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  lt_cv_prog_compiler_c_o=no\n   $RM -r conftest 2>/dev/null\n   mkdir conftest\n   cd conftest\n   mkdir out\n   echo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n\n   lt_compiler_flag=\"-o out/conftest2.$ac_objext\"\n   # Insert the option either (1) after the last *FLAGS variable, or\n   # (2) before a word containing \"conftest.\", or (3) at the end.\n   # Note that $ac_compile itself does not contain backslashes and begins\n   # with a dollar sign (not a hyphen), so the echo should work correctly.\n   lt_compile=`echo \"$ac_compile\" | $SED \\\n   -e 's:.*FLAGS}\\{0,1\\} :&$lt_compiler_flag :; t' \\\n   -e 's: [^ ]*conftest\\.: $lt_compiler_flag&:; t' \\\n   -e 's:$: $lt_compiler_flag:'`\n   (eval echo \"\\\"\\$as_me:$LINENO: $lt_compile\\\"\" >&5)\n   (eval \"$lt_compile\" 2>out/conftest.err)\n   ac_status=$?\n   cat out/conftest.err >&5\n   echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n   if (exit $ac_status) && test -s out/conftest2.$ac_objext\n   then\n     # The compiler can only warn and ignore the option if not recognized\n     # So say no if there are warnings\n     $ECHO \"$_lt_compiler_boilerplate\" | $SED '/^$/d' > out/conftest.exp\n     $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2\n     if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then\n       lt_cv_prog_compiler_c_o=yes\n     fi\n   fi\n   chmod u+w . 2>&5\n   $RM -r conftest*\n   # SGI C++ compiler will create directory out/ii_files/ for\n   # template instantiation\n   test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files\n   $RM out/* && rmdir out\n   cd ..\n   $RM -r conftest\n   $RM -r conftest*\n\nfi\n{ echo \"$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o\" >&5\necho \"${ECHO_T}$lt_cv_prog_compiler_c_o\" >&6; }\n\n\n\n\nhard_links=\"nottested\"\nif test \"$lt_cv_prog_compiler_c_o\" = no && test \"$need_locks\" != no; then\n  # do not overwrite the value of need_locks provided by the user\n  { echo \"$as_me:$LINENO: checking if we can lock with hard links\" >&5\necho $ECHO_N \"checking if we can lock with hard links... $ECHO_C\" >&6; }\n  hard_links=yes\n  $RM -r conftest*\n  ln conftest.a conftest.b 2>/dev/null && hard_links=no\n  touch conftest.a\n  ln conftest.a conftest.b 2>&5 || hard_links=no\n  ln conftest.a conftest.b 2>/dev/null && hard_links=no\n  { echo \"$as_me:$LINENO: result: $hard_links\" >&5\necho \"${ECHO_T}$hard_links\" >&6; }\n  if test \"$hard_links\" = no; then\n    { echo \"$as_me:$LINENO: WARNING: \\`$CC' does not support \\`-c -o', so \\`make -j' may be unsafe\" >&5\necho \"$as_me: WARNING: \\`$CC' does not support \\`-c -o', so \\`make -j' may be unsafe\" >&2;}\n    need_locks=warn\n  fi\nelse\n  need_locks=no\nfi\n\n\n\n\n\n\n  { echo \"$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries\" >&5\necho $ECHO_N \"checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C\" >&6; }\n\n  runpath_var=\n  allow_undefined_flag=\n  always_export_symbols=no\n  archive_cmds=\n  archive_expsym_cmds=\n  compiler_needs_object=no\n  enable_shared_with_static_runtimes=no\n  export_dynamic_flag_spec=\n  export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\\''s/.* //'\\'' | sort | uniq > $export_symbols'\n  hardcode_automatic=no\n  hardcode_direct=no\n  hardcode_direct_absolute=no\n  hardcode_libdir_flag_spec=\n  hardcode_libdir_flag_spec_ld=\n  hardcode_libdir_separator=\n  hardcode_minus_L=no\n  hardcode_shlibpath_var=unsupported\n  inherit_rpath=no\n  link_all_deplibs=unknown\n  module_cmds=\n  module_expsym_cmds=\n  old_archive_from_new_cmds=\n  old_archive_from_expsyms_cmds=\n  thread_safe_flag_spec=\n  whole_archive_flag_spec=\n  # include_expsyms should be a list of space-separated symbols to be *always*\n  # included in the symbol list\n  include_expsyms=\n  # exclude_expsyms can be an extended regexp of symbols to exclude\n  # it will be wrapped by ` (' and `)$', so one must not match beginning or\n  # end of line.  Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc',\n  # as well as any symbol that contains `d'.\n  exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'\n  # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out\n  # platforms (ab)use it in PIC code, but their linkers get confused if\n  # the symbol is explicitly referenced.  Since portable code cannot\n  # rely on this symbol name, it's probably fine to never include it in\n  # preloaded symbol tables.\n  # Exclude shared library initialization/finalization symbols.\n  extract_expsyms_cmds=\n\n  case $host_os in\n  cygwin* | mingw* | pw32* | cegcc*)\n    # FIXME: the MSVC++ port hasn't been tested in a loooong time\n    # When not using gcc, we currently assume that we are using\n    # Microsoft Visual C++.\n    if test \"$GCC\" != yes; then\n      with_gnu_ld=no\n    fi\n    ;;\n  interix*)\n    # we just hope/assume this is gcc and not c89 (= MSVC++)\n    with_gnu_ld=yes\n    ;;\n  openbsd*)\n    with_gnu_ld=no\n    ;;\n  esac\n\n  ld_shlibs=yes\n\n  # On some targets, GNU ld is compatible enough with the native linker\n  # that we're better off using the native interface for both.\n  lt_use_gnu_ld_interface=no\n  if test \"$with_gnu_ld\" = yes; then\n    case $host_os in\n      aix*)\n\t# The AIX port of GNU ld has always aspired to compatibility\n\t# with the native linker.  However, as the warning in the GNU ld\n\t# block says, versions before 2.19.5* couldn't really create working\n\t# shared libraries, regardless of the interface used.\n\tcase `$LD -v 2>&1` in\n\t  *\\ \\(GNU\\ Binutils\\)\\ 2.19.5*) ;;\n\t  *\\ \\(GNU\\ Binutils\\)\\ 2.[2-9]*) ;;\n\t  *\\ \\(GNU\\ Binutils\\)\\ [3-9]*) ;;\n\t  *)\n\t    lt_use_gnu_ld_interface=yes\n\t    ;;\n\tesac\n\t;;\n      *)\n\tlt_use_gnu_ld_interface=yes\n\t;;\n    esac\n  fi\n\n  if test \"$lt_use_gnu_ld_interface\" = yes; then\n    # If archive_cmds runs LD, not CC, wlarc should be empty\n    wlarc='${wl}'\n\n    # Set some defaults for GNU ld with shared library support. These\n    # are reset later if shared libraries are not supported. Putting them\n    # here allows them to be overridden if necessary.\n    runpath_var=LD_RUN_PATH\n    hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'\n    export_dynamic_flag_spec='${wl}--export-dynamic'\n    # ancient GNU ld didn't support --whole-archive et. al.\n    if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then\n      whole_archive_flag_spec=\"$wlarc\"'--whole-archive$convenience '\"$wlarc\"'--no-whole-archive'\n    else\n      whole_archive_flag_spec=\n    fi\n    supports_anon_versioning=no\n    case `$LD -v 2>&1` in\n      *GNU\\ gold*) supports_anon_versioning=yes ;;\n      *\\ [01].* | *\\ 2.[0-9].* | *\\ 2.10.*) ;; # catch versions < 2.11\n      *\\ 2.11.93.0.2\\ *) supports_anon_versioning=yes ;; # RH7.3 ...\n      *\\ 2.11.92.0.12\\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ...\n      *\\ 2.11.*) ;; # other 2.11 versions\n      *) supports_anon_versioning=yes ;;\n    esac\n\n    # See if GNU ld supports shared libraries.\n    case $host_os in\n    aix[3-9]*)\n      # On AIX/PPC, the GNU linker is very broken\n      if test \"$host_cpu\" != ia64; then\n\tld_shlibs=no\n\tcat <<_LT_EOF 1>&2\n\n*** Warning: the GNU linker, at least up to release 2.19, is reported\n*** to be unable to reliably create shared libraries on AIX.\n*** Therefore, libtool is disabling shared libraries support.  If you\n*** really care for shared libraries, you may want to install binutils\n*** 2.20 or above, or modify your PATH so that a non-GNU linker is found.\n*** You will then need to restart the configuration process.\n\n_LT_EOF\n      fi\n      ;;\n\n    amigaos*)\n      case $host_cpu in\n      powerpc)\n            # see comment about AmigaOS4 .so support\n            archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'\n            archive_expsym_cmds=''\n        ;;\n      m68k)\n            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)'\n            hardcode_libdir_flag_spec='-L$libdir'\n            hardcode_minus_L=yes\n        ;;\n      esac\n      ;;\n\n    beos*)\n      if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\tallow_undefined_flag=unsupported\n\t# Joseph Beckenbach <jrb3@best.com> says some releases of gcc\n\t# support --undefined.  This deserves some investigation.  FIXME\n\tarchive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'\n      else\n\tld_shlibs=no\n      fi\n      ;;\n\n    cygwin* | mingw* | pw32* | cegcc*)\n      # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless,\n      # as there is no search path for DLLs.\n      hardcode_libdir_flag_spec='-L$libdir'\n      export_dynamic_flag_spec='${wl}--export-all-symbols'\n      allow_undefined_flag=unsupported\n      always_export_symbols=no\n      enable_shared_with_static_runtimes=yes\n      export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\\''/^[BCDGRS][ ]/s/.*[ ]\\([^ ]*\\)/\\1 DATA/'\\'' | $SED -e '\\''/^[AITW][ ]/s/.*[ ]//'\\'' | sort | uniq > $export_symbols'\n\n      if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then\n        archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'\n\t# If the export-symbols file already is a .def file (1st line\n\t# is EXPORTS), use it as is; otherwise, prepend...\n\tarchive_expsym_cmds='if test \"x`$SED 1q $export_symbols`\" = xEXPORTS; then\n\t  cp $export_symbols $output_objdir/$soname.def;\n\telse\n\t  echo EXPORTS > $output_objdir/$soname.def;\n\t  cat $export_symbols >> $output_objdir/$soname.def;\n\tfi~\n\t$CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'\n      else\n\tld_shlibs=no\n      fi\n      ;;\n\n    haiku*)\n      archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'\n      link_all_deplibs=yes\n      ;;\n\n    interix[3-9]*)\n      hardcode_direct=no\n      hardcode_shlibpath_var=no\n      hardcode_libdir_flag_spec='${wl}-rpath,$libdir'\n      export_dynamic_flag_spec='${wl}-E'\n      # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.\n      # Instead, shared libraries are loaded at an image base (0x10000000 by\n      # default) and relocated if they conflict, which is a slow very memory\n      # consuming and fragmenting process.  To avoid this, we pick a random,\n      # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link\n      # time.  Moving up from 0x10000000 also allows more sbrk(2) space.\n      archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \\* 262144 + 1342177280` -o $lib'\n      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'\n      ;;\n\n    gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu)\n      tmp_diet=no\n      if test \"$host_os\" = linux-dietlibc; then\n\tcase $cc_basename in\n\t  diet\\ *) tmp_diet=yes;;\t# linux-dietlibc with static linking (!diet-dyn)\n\tesac\n      fi\n      if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \\\n\t && test \"$tmp_diet\" = no\n      then\n\ttmp_addflag=\n\ttmp_sharedflag='-shared'\n\tcase $cc_basename,$host_cpu in\n        pgcc*)\t\t\t\t# Portland Group C compiler\n\t  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'\n\t  tmp_addflag=' $pic_flag'\n\t  ;;\n\tpgf77* | pgf90* | pgf95* | pgfortran*)\n\t\t\t\t\t# Portland Group f77 and f90 compilers\n\t  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'\n\t  tmp_addflag=' $pic_flag -Mnomain' ;;\n\tecc*,ia64* | icc*,ia64*)\t# Intel C compiler on ia64\n\t  tmp_addflag=' -i_dynamic' ;;\n\tefc*,ia64* | ifort*,ia64*)\t# Intel Fortran compiler on ia64\n\t  tmp_addflag=' -i_dynamic -nofor_main' ;;\n\tifc* | ifort*)\t\t\t# Intel Fortran compiler\n\t  tmp_addflag=' -nofor_main' ;;\n\tlf95*)\t\t\t\t# Lahey Fortran 8.1\n\t  whole_archive_flag_spec=\n\t  tmp_sharedflag='--shared' ;;\n\txl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below)\n\t  tmp_sharedflag='-qmkshrobj'\n\t  tmp_addflag= ;;\n\tnvcc*)\t# Cuda Compiler Driver 2.2\n\t  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'\n\t  compiler_needs_object=yes\n\t  ;;\n\tesac\n\tcase `$CC -V 2>&1 | sed 5q` in\n\t*Sun\\ C*)\t\t\t# Sun C 5.9\n\t  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'\n\t  compiler_needs_object=yes\n\t  tmp_sharedflag='-G' ;;\n\t*Sun\\ F*)\t\t\t# Sun Fortran 8.3\n\t  tmp_sharedflag='-G' ;;\n\tesac\n\tarchive_cmds='$CC '\"$tmp_sharedflag\"\"$tmp_addflag\"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'\n\n        if test \"x$supports_anon_versioning\" = xyes; then\n          archive_expsym_cmds='echo \"{ global:\" > $output_objdir/$libname.ver~\n\t    cat $export_symbols | sed -e \"s/\\(.*\\)/\\1;/\" >> $output_objdir/$libname.ver~\n\t    echo \"local: *; };\" >> $output_objdir/$libname.ver~\n\t    $CC '\"$tmp_sharedflag\"\"$tmp_addflag\"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'\n        fi\n\n\tcase $cc_basename in\n\txlf* | bgf* | bgxlf* | mpixlf*)\n\t  # IBM XL Fortran 10.1 on PPC cannot create shared libs itself\n\t  whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive'\n\t  hardcode_libdir_flag_spec=\n\t  hardcode_libdir_flag_spec_ld='-rpath $libdir'\n\t  archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib'\n\t  if test \"x$supports_anon_versioning\" = xyes; then\n\t    archive_expsym_cmds='echo \"{ global:\" > $output_objdir/$libname.ver~\n\t      cat $export_symbols | sed -e \"s/\\(.*\\)/\\1;/\" >> $output_objdir/$libname.ver~\n\t      echo \"local: *; };\" >> $output_objdir/$libname.ver~\n\t      $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib'\n\t  fi\n\t  ;;\n\tesac\n      else\n        ld_shlibs=no\n      fi\n      ;;\n\n    netbsd*)\n      if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then\n\tarchive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'\n\twlarc=\n      else\n\tarchive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'\n\tarchive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'\n      fi\n      ;;\n\n    solaris*)\n      if $LD -v 2>&1 | $GREP 'BFD 2\\.8' > /dev/null; then\n\tld_shlibs=no\n\tcat <<_LT_EOF 1>&2\n\n*** Warning: The releases 2.8.* of the GNU linker cannot reliably\n*** create shared libraries on Solaris systems.  Therefore, libtool\n*** is disabling shared libraries support.  We urge you to upgrade GNU\n*** binutils to release 2.9.1 or newer.  Another option is to modify\n*** your PATH or compiler configuration so that the native linker is\n*** used, and then restart.\n\n_LT_EOF\n      elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\tarchive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'\n\tarchive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'\n      else\n\tld_shlibs=no\n      fi\n      ;;\n\n    sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)\n      case `$LD -v 2>&1` in\n        *\\ [01].* | *\\ 2.[0-9].* | *\\ 2.1[0-5].*)\n\tld_shlibs=no\n\tcat <<_LT_EOF 1>&2\n\n*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not\n*** reliably create shared libraries on SCO systems.  Therefore, libtool\n*** is disabling shared libraries support.  We urge you to upgrade GNU\n*** binutils to release 2.16.91.0.3 or newer.  Another option is to modify\n*** your PATH or compiler configuration so that the native linker is\n*** used, and then restart.\n\n_LT_EOF\n\t;;\n\t*)\n\t  # For security reasons, it is highly recommended that you always\n\t  # use absolute paths for naming shared libraries, and exclude the\n\t  # DT_RUNPATH tag from executables and libraries.  But doing so\n\t  # requires that you compile everything twice, which is a pain.\n\t  if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\t    hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'\n\t    archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'\n\t    archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'\n\t  else\n\t    ld_shlibs=no\n\t  fi\n\t;;\n      esac\n      ;;\n\n    sunos4*)\n      archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'\n      wlarc=\n      hardcode_direct=yes\n      hardcode_shlibpath_var=no\n      ;;\n\n    *)\n      if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\tarchive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'\n\tarchive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'\n      else\n\tld_shlibs=no\n      fi\n      ;;\n    esac\n\n    if test \"$ld_shlibs\" = no; then\n      runpath_var=\n      hardcode_libdir_flag_spec=\n      export_dynamic_flag_spec=\n      whole_archive_flag_spec=\n    fi\n  else\n    # PORTME fill in a description of your system's linker (not GNU ld)\n    case $host_os in\n    aix3*)\n      allow_undefined_flag=unsupported\n      always_export_symbols=yes\n      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'\n      # Note: this linker hardcodes the directories in LIBPATH if there\n      # are no directories specified by -L.\n      hardcode_minus_L=yes\n      if test \"$GCC\" = yes && test -z \"$lt_prog_compiler_static\"; then\n\t# Neither direct hardcoding nor static linking is supported with a\n\t# broken collect2.\n\thardcode_direct=unsupported\n      fi\n      ;;\n\n    aix[4-9]*)\n      if test \"$host_cpu\" = ia64; then\n\t# On IA64, the linker does run time linking by default, so we don't\n\t# have to do anything special.\n\taix_use_runtimelinking=no\n\texp_sym_flag='-Bexport'\n\tno_entry_flag=\"\"\n      else\n\t# If we're using GNU nm, then we don't want the \"-C\" option.\n\t# -C means demangle to AIX nm, but means don't demangle with GNU nm\n\t# Also, AIX nm treats weak defined symbols like other global\n\t# defined symbols, whereas GNU nm marks them as \"W\".\n\tif $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then\n\t  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'\n\telse\n\t  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'\n\tfi\n\taix_use_runtimelinking=no\n\n\t# Test if we are trying to use run time linking or normal\n\t# AIX style linking. If -brtl is somewhere in LDFLAGS, we\n\t# need to do runtime linking.\n\tcase $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*)\n\t  for ld_flag in $LDFLAGS; do\n\t  if (test $ld_flag = \"-brtl\" || test $ld_flag = \"-Wl,-brtl\"); then\n\t    aix_use_runtimelinking=yes\n\t    break\n\t  fi\n\t  done\n\t  ;;\n\tesac\n\n\texp_sym_flag='-bexport'\n\tno_entry_flag='-bnoentry'\n      fi\n\n      # When large executables or shared objects are built, AIX ld can\n      # have problems creating the table of contents.  If linking a library\n      # or program results in \"error TOC overflow\" add -mminimal-toc to\n      # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not\n      # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.\n\n      archive_cmds=''\n      hardcode_direct=yes\n      hardcode_direct_absolute=yes\n      hardcode_libdir_separator=':'\n      link_all_deplibs=yes\n      file_list_spec='${wl}-f,'\n\n      if test \"$GCC\" = yes; then\n\tcase $host_os in aix4.[012]|aix4.[012].*)\n\t# We only want to do this on AIX 4.2 and lower, the check\n\t# below for broken collect2 doesn't work under 4.3+\n\t  collect2name=`${CC} -print-prog-name=collect2`\n\t  if test -f \"$collect2name\" &&\n\t   strings \"$collect2name\" | $GREP resolve_lib_name >/dev/null\n\t  then\n\t  # We have reworked collect2\n\t  :\n\t  else\n\t  # We have old collect2\n\t  hardcode_direct=unsupported\n\t  # It fails to find uninstalled libraries when the uninstalled\n\t  # path is not listed in the libpath.  Setting hardcode_minus_L\n\t  # to unsupported forces relinking\n\t  hardcode_minus_L=yes\n\t  hardcode_libdir_flag_spec='-L$libdir'\n\t  hardcode_libdir_separator=\n\t  fi\n\t  ;;\n\tesac\n\tshared_flag='-shared'\n\tif test \"$aix_use_runtimelinking\" = yes; then\n\t  shared_flag=\"$shared_flag \"'${wl}-G'\n\tfi\n      else\n\t# not using gcc\n\tif test \"$host_cpu\" = ia64; then\n\t# VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release\n\t# chokes on -Wl,-G. The following line is correct:\n\t  shared_flag='-G'\n\telse\n\t  if test \"$aix_use_runtimelinking\" = yes; then\n\t    shared_flag='${wl}-G'\n\t  else\n\t    shared_flag='${wl}-bM:SRE'\n\t  fi\n\tfi\n      fi\n\n      export_dynamic_flag_spec='${wl}-bexpall'\n      # It seems that -bexpall does not export symbols beginning with\n      # underscore (_), so it is better to generate a list of symbols to export.\n      always_export_symbols=yes\n      if test \"$aix_use_runtimelinking\" = yes; then\n\t# Warning - without using the other runtime loading flags (-brtl),\n\t# -berok will link without error, but may produce a broken library.\n\tallow_undefined_flag='-berok'\n        # Determine the default libpath from the value encoded in an\n        # empty executable.\n        cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nrm -f conftest.$ac_objext conftest$ac_exeext\nif { (ac_try=\"$ac_link\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_link\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && {\n\t test -z \"$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest$ac_exeext &&\n       $as_test_x conftest$ac_exeext; then\n\nlt_aix_libpath_sed='\n    /Import File Strings/,/^$/ {\n\t/^0/ {\n\t    s/^0  *\\(.*\\)$/\\1/\n\t    p\n\t}\n    }'\naix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e \"$lt_aix_libpath_sed\"`\n# Check for a 64-bit object if we didn't find anything.\nif test -z \"$aix_libpath\"; then\n  aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e \"$lt_aix_libpath_sed\"`\nfi\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\nfi\n\nrm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \\\n      conftest$ac_exeext conftest.$ac_ext\nif test -z \"$aix_libpath\"; then aix_libpath=\"/usr/lib:/lib\"; fi\n\n        hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'\"$aix_libpath\"\n        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\"\n      else\n\tif test \"$host_cpu\" = ia64; then\n\t  hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib'\n\t  allow_undefined_flag=\"-z nodefs\"\n\t  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\"\n\telse\n\t # Determine the default libpath from the value encoded in an\n\t # empty executable.\n\t cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nrm -f conftest.$ac_objext conftest$ac_exeext\nif { (ac_try=\"$ac_link\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_link\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && {\n\t test -z \"$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest$ac_exeext &&\n       $as_test_x conftest$ac_exeext; then\n\nlt_aix_libpath_sed='\n    /Import File Strings/,/^$/ {\n\t/^0/ {\n\t    s/^0  *\\(.*\\)$/\\1/\n\t    p\n\t}\n    }'\naix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e \"$lt_aix_libpath_sed\"`\n# Check for a 64-bit object if we didn't find anything.\nif test -z \"$aix_libpath\"; then\n  aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e \"$lt_aix_libpath_sed\"`\nfi\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\nfi\n\nrm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \\\n      conftest$ac_exeext conftest.$ac_ext\nif test -z \"$aix_libpath\"; then aix_libpath=\"/usr/lib:/lib\"; fi\n\n\t hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'\"$aix_libpath\"\n\t  # Warning - without using the other run time loading flags,\n\t  # -berok will link without error, but may produce a broken library.\n\t  no_undefined_flag=' ${wl}-bernotok'\n\t  allow_undefined_flag=' ${wl}-berok'\n\t  if test \"$with_gnu_ld\" = yes; then\n\t    # We only use this code for GNU lds that support --whole-archive.\n\t    whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive'\n\t  else\n\t    # Exported symbols can be pulled into shared objects from archives\n\t    whole_archive_flag_spec='$convenience'\n\t  fi\n\t  archive_cmds_need_lc=yes\n\t  # This is similar to how AIX traditionally builds its shared libraries.\n\t  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'\n\tfi\n      fi\n      ;;\n\n    amigaos*)\n      case $host_cpu in\n      powerpc)\n            # see comment about AmigaOS4 .so support\n            archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'\n            archive_expsym_cmds=''\n        ;;\n      m68k)\n            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)'\n            hardcode_libdir_flag_spec='-L$libdir'\n            hardcode_minus_L=yes\n        ;;\n      esac\n      ;;\n\n    bsdi[45]*)\n      export_dynamic_flag_spec=-rdynamic\n      ;;\n\n    cygwin* | mingw* | pw32* | cegcc*)\n      # When not using gcc, we currently assume that we are using\n      # Microsoft Visual C++.\n      # hardcode_libdir_flag_spec is actually meaningless, as there is\n      # no search path for DLLs.\n      hardcode_libdir_flag_spec=' '\n      allow_undefined_flag=unsupported\n      # Tell ltmain to make .lib files, not .a files.\n      libext=lib\n      # Tell ltmain to make .dll files, not .so files.\n      shrext_cmds=\".dll\"\n      # FIXME: Setting linknames here is a bad hack.\n      archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all \"$deplibs\" | $SED '\\''s/ -lc$//'\\''` -link -dll~linknames='\n      # The linker will automatically build a .lib file if we build a DLL.\n      old_archive_from_new_cmds='true'\n      # FIXME: Should let the user specify the lib program.\n      old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs'\n      fix_srcfile_path='`cygpath -w \"$srcfile\"`'\n      enable_shared_with_static_runtimes=yes\n      ;;\n\n    darwin* | rhapsody*)\n\n\n  archive_cmds_need_lc=no\n  hardcode_direct=no\n  hardcode_automatic=yes\n  hardcode_shlibpath_var=unsupported\n  if test \"$lt_cv_ld_force_load\" = \"yes\"; then\n    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\\\"`'\n  else\n    whole_archive_flag_spec=''\n  fi\n  link_all_deplibs=yes\n  allow_undefined_flag=\"$_lt_dar_allow_undefined\"\n  case $cc_basename in\n     ifort*) _lt_dar_can_shared=yes ;;\n     *) _lt_dar_can_shared=$GCC ;;\n  esac\n  if test \"$_lt_dar_can_shared\" = \"yes\"; then\n    output_verbose_link_cmd=func_echo_all\n    archive_cmds=\"\\$CC -dynamiclib \\$allow_undefined_flag -o \\$lib \\$libobjs \\$deplibs \\$compiler_flags -install_name \\$rpath/\\$soname \\$verstring $_lt_dar_single_mod${_lt_dsymutil}\"\n    module_cmds=\"\\$CC \\$allow_undefined_flag -o \\$lib -bundle \\$libobjs \\$deplibs \\$compiler_flags${_lt_dsymutil}\"\n    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}\"\n    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}\"\n\n  else\n  ld_shlibs=no\n  fi\n\n      ;;\n\n    dgux*)\n      archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n      hardcode_libdir_flag_spec='-L$libdir'\n      hardcode_shlibpath_var=no\n      ;;\n\n    freebsd1*)\n      ld_shlibs=no\n      ;;\n\n    # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor\n    # support.  Future versions do this automatically, but an explicit c++rt0.o\n    # does not break anything, and helps significantly (at the cost of a little\n    # extra space).\n    freebsd2.2*)\n      archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o'\n      hardcode_libdir_flag_spec='-R$libdir'\n      hardcode_direct=yes\n      hardcode_shlibpath_var=no\n      ;;\n\n    # Unfortunately, older versions of FreeBSD 2 do not have this feature.\n    freebsd2*)\n      archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'\n      hardcode_direct=yes\n      hardcode_minus_L=yes\n      hardcode_shlibpath_var=no\n      ;;\n\n    # FreeBSD 3 and greater uses gcc -shared to do shared libraries.\n    freebsd* | dragonfly*)\n      archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'\n      hardcode_libdir_flag_spec='-R$libdir'\n      hardcode_direct=yes\n      hardcode_shlibpath_var=no\n      ;;\n\n    hpux9*)\n      if test \"$GCC\" = yes; then\n\tarchive_cmds='$RM $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'\n      else\n\tarchive_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'\n      fi\n      hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'\n      hardcode_libdir_separator=:\n      hardcode_direct=yes\n\n      # hardcode_minus_L: Not really in the search PATH,\n      # but as the default location of the library.\n      hardcode_minus_L=yes\n      export_dynamic_flag_spec='${wl}-E'\n      ;;\n\n    hpux10*)\n      if test \"$GCC\" = yes && test \"$with_gnu_ld\" = no; then\n\tarchive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'\n      else\n\tarchive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'\n      fi\n      if test \"$with_gnu_ld\" = no; then\n\thardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'\n\thardcode_libdir_flag_spec_ld='+b $libdir'\n\thardcode_libdir_separator=:\n\thardcode_direct=yes\n\thardcode_direct_absolute=yes\n\texport_dynamic_flag_spec='${wl}-E'\n\t# hardcode_minus_L: Not really in the search PATH,\n\t# but as the default location of the library.\n\thardcode_minus_L=yes\n      fi\n      ;;\n\n    hpux11*)\n      if test \"$GCC\" = yes && test \"$with_gnu_ld\" = no; then\n\tcase $host_cpu in\n\thppa*64*)\n\t  archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\tia64*)\n\t  archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\t*)\n\t  archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\tesac\n      else\n\tcase $host_cpu in\n\thppa*64*)\n\t  archive_cmds='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\tia64*)\n\t  archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\t*)\n\n\t  # Older versions of the 11.00 compiler do not understand -b yet\n\t  # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does)\n\t  { echo \"$as_me:$LINENO: checking if $CC understands -b\" >&5\necho $ECHO_N \"checking if $CC understands -b... $ECHO_C\" >&6; }\nif test \"${lt_cv_prog_compiler__b+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  lt_cv_prog_compiler__b=no\n   save_LDFLAGS=\"$LDFLAGS\"\n   LDFLAGS=\"$LDFLAGS -b\"\n   echo \"$lt_simple_link_test_code\" > conftest.$ac_ext\n   if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then\n     # The linker can only warn and ignore the option if not recognized\n     # So say no if there are warnings\n     if test -s conftest.err; then\n       # Append any errors to the config.log.\n       cat conftest.err 1>&5\n       $ECHO \"$_lt_linker_boilerplate\" | $SED '/^$/d' > conftest.exp\n       $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2\n       if diff conftest.exp conftest.er2 >/dev/null; then\n         lt_cv_prog_compiler__b=yes\n       fi\n     else\n       lt_cv_prog_compiler__b=yes\n     fi\n   fi\n   $RM -r conftest*\n   LDFLAGS=\"$save_LDFLAGS\"\n\nfi\n{ echo \"$as_me:$LINENO: result: $lt_cv_prog_compiler__b\" >&5\necho \"${ECHO_T}$lt_cv_prog_compiler__b\" >&6; }\n\nif test x\"$lt_cv_prog_compiler__b\" = xyes; then\n    archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'\nelse\n    archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'\nfi\n\n\t  ;;\n\tesac\n      fi\n      if test \"$with_gnu_ld\" = no; then\n\thardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'\n\thardcode_libdir_separator=:\n\n\tcase $host_cpu in\n\thppa*64*|ia64*)\n\t  hardcode_direct=no\n\t  hardcode_shlibpath_var=no\n\t  ;;\n\t*)\n\t  hardcode_direct=yes\n\t  hardcode_direct_absolute=yes\n\t  export_dynamic_flag_spec='${wl}-E'\n\n\t  # hardcode_minus_L: Not really in the search PATH,\n\t  # but as the default location of the library.\n\t  hardcode_minus_L=yes\n\t  ;;\n\tesac\n      fi\n      ;;\n\n    irix5* | irix6* | nonstopux*)\n      if test \"$GCC\" = yes; then\n\tarchive_cmds='$CC -shared $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'\n\t# Try to use the -exported_symbol ld option, if it does not\n\t# work, assume that -exports_file does not work either and\n\t# implicitly export all symbols.\n        save_LDFLAGS=\"$LDFLAGS\"\n        LDFLAGS=\"$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null\"\n        cat >conftest.$ac_ext <<_ACEOF\nint foo(void) {}\n_ACEOF\nrm -f conftest.$ac_objext conftest$ac_exeext\nif { (ac_try=\"$ac_link\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_link\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && {\n\t test -z \"$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest$ac_exeext &&\n       $as_test_x conftest$ac_exeext; then\n  archive_expsym_cmds='$CC -shared $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'\n\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\nfi\n\nrm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \\\n      conftest$ac_exeext conftest.$ac_ext\n        LDFLAGS=\"$save_LDFLAGS\"\n      else\n\tarchive_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'\n\tarchive_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'\n      fi\n      archive_cmds_need_lc='no'\n      hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'\n      hardcode_libdir_separator=:\n      inherit_rpath=yes\n      link_all_deplibs=yes\n      ;;\n\n    netbsd*)\n      if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then\n\tarchive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out\n      else\n\tarchive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags'      # ELF\n      fi\n      hardcode_libdir_flag_spec='-R$libdir'\n      hardcode_direct=yes\n      hardcode_shlibpath_var=no\n      ;;\n\n    newsos6)\n      archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n      hardcode_direct=yes\n      hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'\n      hardcode_libdir_separator=:\n      hardcode_shlibpath_var=no\n      ;;\n\n    *nto* | *qnx*)\n      ;;\n\n    openbsd*)\n      if test -f /usr/libexec/ld.so; then\n\thardcode_direct=yes\n\thardcode_shlibpath_var=no\n\thardcode_direct_absolute=yes\n\tif test -z \"`echo __ELF__ | $CC -E - | $GREP __ELF__`\" || test \"$host_os-$host_cpu\" = \"openbsd2.8-powerpc\"; then\n\t  archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'\n\t  archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols'\n\t  hardcode_libdir_flag_spec='${wl}-rpath,$libdir'\n\t  export_dynamic_flag_spec='${wl}-E'\n\telse\n\t  case $host_os in\n\t   openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*)\n\t     archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'\n\t     hardcode_libdir_flag_spec='-R$libdir'\n\t     ;;\n\t   *)\n\t     archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'\n\t     hardcode_libdir_flag_spec='${wl}-rpath,$libdir'\n\t     ;;\n\t  esac\n\tfi\n      else\n\tld_shlibs=no\n      fi\n      ;;\n\n    os2*)\n      hardcode_libdir_flag_spec='-L$libdir'\n      hardcode_minus_L=yes\n      allow_undefined_flag=unsupported\n      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'\n      old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def'\n      ;;\n\n    osf3*)\n      if test \"$GCC\" = yes; then\n\tallow_undefined_flag=' ${wl}-expect_unresolved ${wl}\\*'\n\tarchive_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'\n      else\n\tallow_undefined_flag=' -expect_unresolved \\*'\n\tarchive_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'\n      fi\n      archive_cmds_need_lc='no'\n      hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'\n      hardcode_libdir_separator=:\n      ;;\n\n    osf4* | osf5*)\t# as osf3* with the addition of -msym flag\n      if test \"$GCC\" = yes; then\n\tallow_undefined_flag=' ${wl}-expect_unresolved ${wl}\\*'\n\tarchive_cmds='$CC -shared${allow_undefined_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'\n\thardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'\n      else\n\tallow_undefined_flag=' -expect_unresolved \\*'\n\tarchive_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'\n\tarchive_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~\n\t$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'\n\n\t# Both c and cxx compiler support -rpath directly\n\thardcode_libdir_flag_spec='-rpath $libdir'\n      fi\n      archive_cmds_need_lc='no'\n      hardcode_libdir_separator=:\n      ;;\n\n    solaris*)\n      no_undefined_flag=' -z defs'\n      if test \"$GCC\" = yes; then\n\twlarc='${wl}'\n\tarchive_cmds='$CC -shared ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'\n\tarchive_expsym_cmds='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n\t  $CC -shared ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'\n      else\n\tcase `$CC -V 2>&1` in\n\t*\"Compilers 5.0\"*)\n\t  wlarc=''\n\t  archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'\n\t  archive_expsym_cmds='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n\t  $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp'\n\t  ;;\n\t*)\n\t  wlarc='${wl}'\n\t  archive_cmds='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  archive_expsym_cmds='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n\t  $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'\n\t  ;;\n\tesac\n      fi\n      hardcode_libdir_flag_spec='-R$libdir'\n      hardcode_shlibpath_var=no\n      case $host_os in\n      solaris2.[0-5] | solaris2.[0-5].*) ;;\n      *)\n\t# The compiler driver will combine and reorder linker options,\n\t# but understands `-z linker_flag'.  GCC discards it without `$wl',\n\t# but is careful enough not to reorder.\n\t# Supported since Solaris 2.6 (maybe 2.5.1?)\n\tif test \"$GCC\" = yes; then\n\t  whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'\n\telse\n\t  whole_archive_flag_spec='-z allextract$convenience -z defaultextract'\n\tfi\n\t;;\n      esac\n      link_all_deplibs=yes\n      ;;\n\n    sunos4*)\n      if test \"x$host_vendor\" = xsequent; then\n\t# Use $CC to link under sequent, because it throws in some extra .o\n\t# files that make .init and .fini sections work.\n\tarchive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags'\n      else\n\tarchive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags'\n      fi\n      hardcode_libdir_flag_spec='-L$libdir'\n      hardcode_direct=yes\n      hardcode_minus_L=yes\n      hardcode_shlibpath_var=no\n      ;;\n\n    sysv4)\n      case $host_vendor in\n\tsni)\n\t  archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n\t  hardcode_direct=yes # is this really true???\n\t;;\n\tsiemens)\n\t  ## LD is ld it makes a PLAMLIB\n\t  ## CC just makes a GrossModule.\n\t  archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags'\n\t  reload_cmds='$CC -r -o $output$reload_objs'\n\t  hardcode_direct=no\n        ;;\n\tmotorola)\n\t  archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n\t  hardcode_direct=no #Motorola manual says yes, but my tests say they lie\n\t;;\n      esac\n      runpath_var='LD_RUN_PATH'\n      hardcode_shlibpath_var=no\n      ;;\n\n    sysv4.3*)\n      archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n      hardcode_shlibpath_var=no\n      export_dynamic_flag_spec='-Bexport'\n      ;;\n\n    sysv4*MP*)\n      if test -d /usr/nec; then\n\tarchive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n\thardcode_shlibpath_var=no\n\trunpath_var=LD_RUN_PATH\n\thardcode_runpath_var=yes\n\tld_shlibs=yes\n      fi\n      ;;\n\n    sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*)\n      no_undefined_flag='${wl}-z,text'\n      archive_cmds_need_lc=no\n      hardcode_shlibpath_var=no\n      runpath_var='LD_RUN_PATH'\n\n      if test \"$GCC\" = yes; then\n\tarchive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\tarchive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n      else\n\tarchive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\tarchive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n      fi\n      ;;\n\n    sysv5* | sco3.2v5* | sco5v6*)\n      # Note: We can NOT use -z defs as we might desire, because we do not\n      # link with -lc, and that would cause any symbols used from libc to\n      # always be unresolved, which means just about no library would\n      # ever link correctly.  If we're not using GNU ld we use -z text\n      # though, which does catch some bad symbols but isn't as heavy-handed\n      # as -z defs.\n      no_undefined_flag='${wl}-z,text'\n      allow_undefined_flag='${wl}-z,nodefs'\n      archive_cmds_need_lc=no\n      hardcode_shlibpath_var=no\n      hardcode_libdir_flag_spec='${wl}-R,$libdir'\n      hardcode_libdir_separator=':'\n      link_all_deplibs=yes\n      export_dynamic_flag_spec='${wl}-Bexport'\n      runpath_var='LD_RUN_PATH'\n\n      if test \"$GCC\" = yes; then\n\tarchive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\tarchive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n      else\n\tarchive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\tarchive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n      fi\n      ;;\n\n    uts4*)\n      archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'\n      hardcode_libdir_flag_spec='-L$libdir'\n      hardcode_shlibpath_var=no\n      ;;\n\n    *)\n      ld_shlibs=no\n      ;;\n    esac\n\n    if test x$host_vendor = xsni; then\n      case $host in\n      sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)\n\texport_dynamic_flag_spec='${wl}-Blargedynsym'\n\t;;\n      esac\n    fi\n  fi\n\n{ echo \"$as_me:$LINENO: result: $ld_shlibs\" >&5\necho \"${ECHO_T}$ld_shlibs\" >&6; }\ntest \"$ld_shlibs\" = no && can_build_shared=no\n\nwith_gnu_ld=$with_gnu_ld\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n#\n# Do we need to explicitly link libc?\n#\ncase \"x$archive_cmds_need_lc\" in\nx|xyes)\n  # Assume -lc should be added\n  archive_cmds_need_lc=yes\n\n  if test \"$enable_shared\" = yes && test \"$GCC\" = yes; then\n    case $archive_cmds in\n    *'~'*)\n      # FIXME: we may have to deal with multi-command sequences.\n      ;;\n    '$CC '*)\n      # Test whether the compiler implicitly links with -lc since on some\n      # systems, -lgcc has to come before -lc. If gcc already passes -lc\n      # to ld, don't add -lc before -lgcc.\n      { echo \"$as_me:$LINENO: checking whether -lc should be explicitly linked in\" >&5\necho $ECHO_N \"checking whether -lc should be explicitly linked in... $ECHO_C\" >&6; }\nif test \"${lt_cv_archive_cmds_need_lc+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  $RM -r conftest*\n\techo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n\n\tif { (eval echo \"$as_me:$LINENO: \\\"$ac_compile\\\"\") >&5\n  (eval $ac_compile) 2>&5\n  ac_status=$?\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } 2>conftest.err; then\n\t  soname=conftest\n\t  lib=conftest\n\t  libobjs=conftest.$ac_objext\n\t  deplibs=\n\t  wl=$lt_prog_compiler_wl\n\t  pic_flag=$lt_prog_compiler_pic\n\t  compiler_flags=-v\n\t  linker_flags=-v\n\t  verstring=\n\t  output_objdir=.\n\t  libname=conftest\n\t  lt_save_allow_undefined_flag=$allow_undefined_flag\n\t  allow_undefined_flag=\n\t  if { (eval echo \"$as_me:$LINENO: \\\"$archive_cmds 2\\>\\&1 \\| $GREP \\\" -lc \\\" \\>/dev/null 2\\>\\&1\\\"\") >&5\n  (eval $archive_cmds 2\\>\\&1 \\| $GREP \\\" -lc \\\" \\>/dev/null 2\\>\\&1) 2>&5\n  ac_status=$?\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); }\n\t  then\n\t    lt_cv_archive_cmds_need_lc=no\n\t  else\n\t    lt_cv_archive_cmds_need_lc=yes\n\t  fi\n\t  allow_undefined_flag=$lt_save_allow_undefined_flag\n\telse\n\t  cat conftest.err 1>&5\n\tfi\n\t$RM -r conftest*\n\nfi\n{ echo \"$as_me:$LINENO: result: $lt_cv_archive_cmds_need_lc\" >&5\necho \"${ECHO_T}$lt_cv_archive_cmds_need_lc\" >&6; }\n      archive_cmds_need_lc=$lt_cv_archive_cmds_need_lc\n      ;;\n    esac\n  fi\n  ;;\nesac\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\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\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  { echo \"$as_me:$LINENO: checking dynamic linker characteristics\" >&5\necho $ECHO_N \"checking dynamic linker characteristics... $ECHO_C\" >&6; }\n\nif test \"$GCC\" = yes; then\n  case $host_os in\n    darwin*) lt_awk_arg=\"/^libraries:/,/LR/\" ;;\n    *) lt_awk_arg=\"/^libraries:/\" ;;\n  esac\n  case $host_os in\n    mingw* | cegcc*) lt_sed_strip_eq=\"s,=\\([A-Za-z]:\\),\\1,g\" ;;\n    *) lt_sed_strip_eq=\"s,=/,/,g\" ;;\n  esac\n  lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e \"s/^libraries://\" -e $lt_sed_strip_eq`\n  case $lt_search_path_spec in\n  *\\;*)\n    # if the path contains \";\" then we assume it to be the separator\n    # otherwise default to the standard path separator (i.e. \":\") - it is\n    # assumed that no part of a normal pathname contains \";\" but that should\n    # okay in the real world where \";\" in dirpaths is itself problematic.\n    lt_search_path_spec=`$ECHO \"$lt_search_path_spec\" | $SED 's/;/ /g'`\n    ;;\n  *)\n    lt_search_path_spec=`$ECHO \"$lt_search_path_spec\" | $SED \"s/$PATH_SEPARATOR/ /g\"`\n    ;;\n  esac\n  # Ok, now we have the path, separated by spaces, we can step through it\n  # and add multilib dir if necessary.\n  lt_tmp_lt_search_path_spec=\n  lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null`\n  for lt_sys_path in $lt_search_path_spec; do\n    if test -d \"$lt_sys_path/$lt_multi_os_dir\"; then\n      lt_tmp_lt_search_path_spec=\"$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir\"\n    else\n      test -d \"$lt_sys_path\" && \\\n\tlt_tmp_lt_search_path_spec=\"$lt_tmp_lt_search_path_spec $lt_sys_path\"\n    fi\n  done\n  lt_search_path_spec=`$ECHO \"$lt_tmp_lt_search_path_spec\" | awk '\nBEGIN {RS=\" \"; FS=\"/|\\n\";} {\n  lt_foo=\"\";\n  lt_count=0;\n  for (lt_i = NF; lt_i > 0; lt_i--) {\n    if ($lt_i != \"\" && $lt_i != \".\") {\n      if ($lt_i == \"..\") {\n        lt_count++;\n      } else {\n        if (lt_count == 0) {\n          lt_foo=\"/\" $lt_i lt_foo;\n        } else {\n          lt_count--;\n        }\n      }\n    }\n  }\n  if (lt_foo != \"\") { lt_freq[lt_foo]++; }\n  if (lt_freq[lt_foo] == 1) { print lt_foo; }\n}'`\n  # AWK program above erroneously prepends '/' to C:/dos/paths\n  # for these hosts.\n  case $host_os in\n    mingw* | cegcc*) lt_search_path_spec=`$ECHO \"$lt_search_path_spec\" |\\\n      $SED 's,/\\([A-Za-z]:\\),\\1,g'` ;;\n  esac\n  sys_lib_search_path_spec=`$ECHO \"$lt_search_path_spec\" | $lt_NL2SP`\nelse\n  sys_lib_search_path_spec=\"/lib /usr/lib /usr/local/lib\"\nfi\nlibrary_names_spec=\nlibname_spec='lib$name'\nsoname_spec=\nshrext_cmds=\".so\"\npostinstall_cmds=\npostuninstall_cmds=\nfinish_cmds=\nfinish_eval=\nshlibpath_var=\nshlibpath_overrides_runpath=unknown\nversion_type=none\ndynamic_linker=\"$host_os ld.so\"\nsys_lib_dlsearch_path_spec=\"/lib /usr/lib\"\nneed_lib_prefix=unknown\nhardcode_into_libs=no\n\n# when you set need_version to no, make sure it does not cause -set_version\n# flags to be left without arguments\nneed_version=unknown\n\ncase $host_os in\naix3*)\n  version_type=linux\n  library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a'\n  shlibpath_var=LIBPATH\n\n  # AIX 3 has no versioning support, so we append a major version to the name.\n  soname_spec='${libname}${release}${shared_ext}$major'\n  ;;\n\naix[4-9]*)\n  version_type=linux\n  need_lib_prefix=no\n  need_version=no\n  hardcode_into_libs=yes\n  if test \"$host_cpu\" = ia64; then\n    # AIX 5 supports IA64\n    library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}'\n    shlibpath_var=LD_LIBRARY_PATH\n  else\n    # With GCC up to 2.95.x, collect2 would create an import file\n    # for dependence libraries.  The import file would start with\n    # the line `#! .'.  This would cause the generated library to\n    # depend on `.', always an invalid library.  This was fixed in\n    # development snapshots of GCC prior to 3.0.\n    case $host_os in\n      aix4 | aix4.[01] | aix4.[01].*)\n      if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'\n\t   echo ' yes '\n\t   echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then\n\t:\n      else\n\tcan_build_shared=no\n      fi\n      ;;\n    esac\n    # AIX (on Power*) has no versioning support, so currently we can not hardcode correct\n    # soname into executable. Probably we can add versioning support to\n    # collect2, so additional links can be useful in future.\n    if test \"$aix_use_runtimelinking\" = yes; then\n      # If using run time linking (on AIX 4.2 or later) use lib<name>.so\n      # instead of lib<name>.a to let people know that these are not\n      # typical AIX shared libraries.\n      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n    else\n      # We preserve .a as extension for shared libraries through AIX4.2\n      # and later when we are not doing run time linking.\n      library_names_spec='${libname}${release}.a $libname.a'\n      soname_spec='${libname}${release}${shared_ext}$major'\n    fi\n    shlibpath_var=LIBPATH\n  fi\n  ;;\n\namigaos*)\n  case $host_cpu in\n  powerpc)\n    # Since July 2007 AmigaOS4 officially supports .so libraries.\n    # When compiling the executable, add -use-dynld -Lsobjs: to the compileline.\n    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n    ;;\n  m68k)\n    library_names_spec='$libname.ixlibrary $libname.a'\n    # Create ${libname}_ixlibrary.a entries in /sys/libs.\n    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'\n    ;;\n  esac\n  ;;\n\nbeos*)\n  library_names_spec='${libname}${shared_ext}'\n  dynamic_linker=\"$host_os ld.so\"\n  shlibpath_var=LIBRARY_PATH\n  ;;\n\nbsdi[45]*)\n  version_type=linux\n  need_version=no\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  sys_lib_search_path_spec=\"/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib\"\n  sys_lib_dlsearch_path_spec=\"/shlib /usr/lib /usr/local/lib\"\n  # the default ld.so.conf also contains /usr/contrib/lib and\n  # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow\n  # libtool to hard-code these into programs\n  ;;\n\ncygwin* | mingw* | pw32* | cegcc*)\n  version_type=windows\n  shrext_cmds=\".dll\"\n  need_version=no\n  need_lib_prefix=no\n\n  case $GCC,$host_os in\n  yes,cygwin* | yes,mingw* | yes,pw32* | yes,cegcc*)\n    library_names_spec='$libname.dll.a'\n    # DLL is installed to $(libdir)/../bin by postinstall_cmds\n    postinstall_cmds='base_file=`basename \\${file}`~\n      dlpath=`$SHELL 2>&1 -c '\\''. $dir/'\\''\\${base_file}'\\''i; echo \\$dlname'\\''`~\n      dldir=$destdir/`dirname \\$dlpath`~\n      test -d \\$dldir || mkdir -p \\$dldir~\n      $install_prog $dir/$dlname \\$dldir/$dlname~\n      chmod a+x \\$dldir/$dlname~\n      if test -n '\\''$stripme'\\'' && test -n '\\''$striplib'\\''; then\n        eval '\\''$striplib \\$dldir/$dlname'\\'' || exit \\$?;\n      fi'\n    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\\''. $file; echo \\$dlname'\\''`~\n      dlpath=$dir/\\$dldll~\n       $RM \\$dlpath'\n    shlibpath_overrides_runpath=yes\n\n    case $host_os in\n    cygwin*)\n      # Cygwin DLLs use 'cyg' prefix rather than 'lib'\n      soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'\n\n      sys_lib_search_path_spec=\"$sys_lib_search_path_spec /usr/lib/w32api\"\n      ;;\n    mingw* | cegcc*)\n      # MinGW DLLs use traditional 'lib' prefix\n      soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'\n      ;;\n    pw32*)\n      # pw32 DLLs use 'pw' prefix rather than 'lib'\n      library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'\n      ;;\n    esac\n    ;;\n\n  *)\n    library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib'\n    ;;\n  esac\n  dynamic_linker='Win32 ld.exe'\n  # FIXME: first we should search . and the directory the executable is in\n  shlibpath_var=PATH\n  ;;\n\ndarwin* | rhapsody*)\n  dynamic_linker=\"$host_os dyld\"\n  version_type=darwin\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext ${libname}${release}${versuffix}$shared_ext'\n  soname_spec='${libname}${release}${major}$shared_ext'\n  shlibpath_overrides_runpath=yes\n  shlibpath_var=DYLD_LIBRARY_PATH\n  shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'\n\n  sys_lib_search_path_spec=\"$sys_lib_search_path_spec /usr/local/lib\"\n  sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'\n  ;;\n\ndgux*)\n  version_type=linux\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  ;;\n\nfreebsd1*)\n  dynamic_linker=no\n  ;;\n\nfreebsd* | dragonfly*)\n  # DragonFly does not have aout.  When/if they implement a new\n  # versioning mechanism, adjust this.\n  if test -x /usr/bin/objformat; then\n    objformat=`/usr/bin/objformat`\n  else\n    case $host_os in\n    freebsd[123]*) objformat=aout ;;\n    *) objformat=elf ;;\n    esac\n  fi\n  version_type=freebsd-$objformat\n  case $version_type in\n    freebsd-elf*)\n      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'\n      need_version=no\n      need_lib_prefix=no\n      ;;\n    freebsd-*)\n      library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix'\n      need_version=yes\n      ;;\n  esac\n  shlibpath_var=LD_LIBRARY_PATH\n  case $host_os in\n  freebsd2*)\n    shlibpath_overrides_runpath=yes\n    ;;\n  freebsd3.[01]* | freebsdelf3.[01]*)\n    shlibpath_overrides_runpath=yes\n    hardcode_into_libs=yes\n    ;;\n  freebsd3.[2-9]* | freebsdelf3.[2-9]* | \\\n  freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1)\n    shlibpath_overrides_runpath=no\n    hardcode_into_libs=yes\n    ;;\n  *) # from 4.6 on, and DragonFly\n    shlibpath_overrides_runpath=yes\n    hardcode_into_libs=yes\n    ;;\n  esac\n  ;;\n\ngnu*)\n  version_type=linux\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  hardcode_into_libs=yes\n  ;;\n\nhaiku*)\n  version_type=linux\n  need_lib_prefix=no\n  need_version=no\n  dynamic_linker=\"$host_os runtime_loader\"\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  shlibpath_var=LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib'\n  hardcode_into_libs=yes\n  ;;\n\nhpux9* | hpux10* | hpux11*)\n  # Give a soname corresponding to the major version so that dld.sl refuses to\n  # link against other versions.\n  version_type=sunos\n  need_lib_prefix=no\n  need_version=no\n  case $host_cpu in\n  ia64*)\n    shrext_cmds='.so'\n    hardcode_into_libs=yes\n    dynamic_linker=\"$host_os dld.so\"\n    shlibpath_var=LD_LIBRARY_PATH\n    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.\n    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n    soname_spec='${libname}${release}${shared_ext}$major'\n    if test \"X$HPUX_IA64_MODE\" = X32; then\n      sys_lib_search_path_spec=\"/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib\"\n    else\n      sys_lib_search_path_spec=\"/usr/lib/hpux64 /usr/local/lib/hpux64\"\n    fi\n    sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec\n    ;;\n  hppa*64*)\n    shrext_cmds='.sl'\n    hardcode_into_libs=yes\n    dynamic_linker=\"$host_os dld.sl\"\n    shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH\n    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.\n    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n    soname_spec='${libname}${release}${shared_ext}$major'\n    sys_lib_search_path_spec=\"/usr/lib/pa20_64 /usr/ccs/lib/pa20_64\"\n    sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec\n    ;;\n  *)\n    shrext_cmds='.sl'\n    dynamic_linker=\"$host_os dld.sl\"\n    shlibpath_var=SHLIB_PATH\n    shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH\n    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n    soname_spec='${libname}${release}${shared_ext}$major'\n    ;;\n  esac\n  # HP-UX runs *really* slowly unless shared libraries are mode 555, ...\n  postinstall_cmds='chmod 555 $lib'\n  # or fails outright, so override atomically:\n  install_override_mode=555\n  ;;\n\ninterix[3-9]*)\n  version_type=linux\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n  hardcode_into_libs=yes\n  ;;\n\nirix5* | irix6* | nonstopux*)\n  case $host_os in\n    nonstopux*) version_type=nonstopux ;;\n    *)\n\tif test \"$lt_cv_prog_gnu_ld\" = yes; then\n\t\tversion_type=linux\n\telse\n\t\tversion_type=irix\n\tfi ;;\n  esac\n  need_lib_prefix=no\n  need_version=no\n  soname_spec='${libname}${release}${shared_ext}$major'\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}'\n  case $host_os in\n  irix5* | nonstopux*)\n    libsuff= shlibsuff=\n    ;;\n  *)\n    case $LD in # libtool.m4 will add one of these switches to LD\n    *-32|*\"-32 \"|*-melf32bsmip|*\"-melf32bsmip \")\n      libsuff= shlibsuff= libmagic=32-bit;;\n    *-n32|*\"-n32 \"|*-melf32bmipn32|*\"-melf32bmipn32 \")\n      libsuff=32 shlibsuff=N32 libmagic=N32;;\n    *-64|*\"-64 \"|*-melf64bmip|*\"-melf64bmip \")\n      libsuff=64 shlibsuff=64 libmagic=64-bit;;\n    *) libsuff= shlibsuff= libmagic=never-match;;\n    esac\n    ;;\n  esac\n  shlibpath_var=LD_LIBRARY${shlibsuff}_PATH\n  shlibpath_overrides_runpath=no\n  sys_lib_search_path_spec=\"/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}\"\n  sys_lib_dlsearch_path_spec=\"/usr/lib${libsuff} /lib${libsuff}\"\n  hardcode_into_libs=yes\n  ;;\n\n# No shared lib support for Linux oldld, aout, or coff.\nlinux*oldld* | linux*aout* | linux*coff*)\n  dynamic_linker=no\n  ;;\n\n# This must be Linux ELF.\nlinux* | k*bsd*-gnu | kopensolaris*-gnu)\n  version_type=linux\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig -n $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n\n  # Some binutils ld are patched to set DT_RUNPATH\n  if test \"${lt_cv_shlibpath_overrides_runpath+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  lt_cv_shlibpath_overrides_runpath=no\n    save_LDFLAGS=$LDFLAGS\n    save_libdir=$libdir\n    eval \"libdir=/foo; wl=\\\"$lt_prog_compiler_wl\\\"; \\\n\t LDFLAGS=\\\"\\$LDFLAGS $hardcode_libdir_flag_spec\\\"\"\n    cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nrm -f conftest.$ac_objext conftest$ac_exeext\nif { (ac_try=\"$ac_link\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_link\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && {\n\t test -z \"$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest$ac_exeext &&\n       $as_test_x conftest$ac_exeext; then\n  if  ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep \"RUNPATH.*$libdir\" >/dev/null; then\n  lt_cv_shlibpath_overrides_runpath=yes\nfi\n\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\nfi\n\nrm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \\\n      conftest$ac_exeext conftest.$ac_ext\n    LDFLAGS=$save_LDFLAGS\n    libdir=$save_libdir\n\nfi\n\n  shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath\n\n  # This implies no fast_install, which is unacceptable.\n  # Some rework will be needed to allow for fast_install\n  # before this can be enabled.\n  hardcode_into_libs=yes\n\n  # Append ld.so.conf contents to the search path\n  if test -f /etc/ld.so.conf; then\n    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/#.*//;/^[\t ]*hwcap[\t ]/d;s/[:,\t]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/\"//g;/^$/d' | tr '\\n' ' '`\n    sys_lib_dlsearch_path_spec=\"/lib /usr/lib $lt_ld_extra\"\n  fi\n\n  # We used to test for /lib/ld.so.1 and disable shared libraries on\n  # powerpc, because MkLinux only supported shared libraries with the\n  # GNU dynamic linker.  Since this was broken with cross compilers,\n  # most powerpc-linux boxes support dynamic linking these days and\n  # people can always --disable-shared, the test was removed, and we\n  # assume the GNU/Linux dynamic linker is in use.\n  dynamic_linker='GNU/Linux ld.so'\n  ;;\n\nnetbsd*)\n  version_type=sunos\n  need_lib_prefix=no\n  need_version=no\n  if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then\n    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'\n    finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig -m $libdir'\n    dynamic_linker='NetBSD (a.out) ld.so'\n  else\n    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'\n    soname_spec='${libname}${release}${shared_ext}$major'\n    dynamic_linker='NetBSD ld.elf_so'\n  fi\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  hardcode_into_libs=yes\n  ;;\n\nnewsos6)\n  version_type=linux\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  ;;\n\n*nto* | *qnx*)\n  version_type=qnx\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n  hardcode_into_libs=yes\n  dynamic_linker='ldqnx.so'\n  ;;\n\nopenbsd*)\n  version_type=sunos\n  sys_lib_dlsearch_path_spec=\"/usr/lib\"\n  need_lib_prefix=no\n  # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs.\n  case $host_os in\n    openbsd3.3 | openbsd3.3.*)\tneed_version=yes ;;\n    *)\t\t\t\tneed_version=no  ;;\n  esac\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'\n  finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig -m $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  if test -z \"`echo __ELF__ | $CC -E - | $GREP __ELF__`\" || test \"$host_os-$host_cpu\" = \"openbsd2.8-powerpc\"; then\n    case $host_os in\n      openbsd2.[89] | openbsd2.[89].*)\n\tshlibpath_overrides_runpath=no\n\t;;\n      *)\n\tshlibpath_overrides_runpath=yes\n\t;;\n      esac\n  else\n    shlibpath_overrides_runpath=yes\n  fi\n  ;;\n\nos2*)\n  libname_spec='$name'\n  shrext_cmds=\".dll\"\n  need_lib_prefix=no\n  library_names_spec='$libname${shared_ext} $libname.a'\n  dynamic_linker='OS/2 ld.exe'\n  shlibpath_var=LIBPATH\n  ;;\n\nosf3* | osf4* | osf5*)\n  version_type=osf\n  need_lib_prefix=no\n  need_version=no\n  soname_spec='${libname}${release}${shared_ext}$major'\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n  shlibpath_var=LD_LIBRARY_PATH\n  sys_lib_search_path_spec=\"/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib\"\n  sys_lib_dlsearch_path_spec=\"$sys_lib_search_path_spec\"\n  ;;\n\nrdos*)\n  dynamic_linker=no\n  ;;\n\nsolaris*)\n  version_type=linux\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  hardcode_into_libs=yes\n  # ldd complains unless libraries are executable\n  postinstall_cmds='chmod +x $lib'\n  ;;\n\nsunos4*)\n  version_type=sunos\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'\n  finish_cmds='PATH=\"\\$PATH:/usr/etc\" ldconfig $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  if test \"$with_gnu_ld\" = yes; then\n    need_lib_prefix=no\n  fi\n  need_version=yes\n  ;;\n\nsysv4 | sysv4.3*)\n  version_type=linux\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  case $host_vendor in\n    sni)\n      shlibpath_overrides_runpath=no\n      need_lib_prefix=no\n      runpath_var=LD_RUN_PATH\n      ;;\n    siemens)\n      need_lib_prefix=no\n      ;;\n    motorola)\n      need_lib_prefix=no\n      need_version=no\n      shlibpath_overrides_runpath=no\n      sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'\n      ;;\n  esac\n  ;;\n\nsysv4*MP*)\n  if test -d /usr/nec ;then\n    version_type=linux\n    library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}'\n    soname_spec='$libname${shared_ext}.$major'\n    shlibpath_var=LD_LIBRARY_PATH\n  fi\n  ;;\n\nsysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)\n  version_type=freebsd-elf\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  hardcode_into_libs=yes\n  if test \"$with_gnu_ld\" = yes; then\n    sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'\n  else\n    sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'\n    case $host_os in\n      sco3.2v5*)\n        sys_lib_search_path_spec=\"$sys_lib_search_path_spec /lib\"\n\t;;\n    esac\n  fi\n  sys_lib_dlsearch_path_spec='/usr/lib'\n  ;;\n\ntpf*)\n  # TPF is a cross-target only.  Preferred cross-host = GNU/Linux.\n  version_type=linux\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n  hardcode_into_libs=yes\n  ;;\n\nuts4*)\n  version_type=linux\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  ;;\n\n*)\n  dynamic_linker=no\n  ;;\nesac\n{ echo \"$as_me:$LINENO: result: $dynamic_linker\" >&5\necho \"${ECHO_T}$dynamic_linker\" >&6; }\ntest \"$dynamic_linker\" = no && can_build_shared=no\n\nvariables_saved_for_relink=\"PATH $shlibpath_var $runpath_var\"\nif test \"$GCC\" = yes; then\n  variables_saved_for_relink=\"$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH\"\nfi\n\nif test \"${lt_cv_sys_lib_search_path_spec+set}\" = set; then\n  sys_lib_search_path_spec=\"$lt_cv_sys_lib_search_path_spec\"\nfi\nif test \"${lt_cv_sys_lib_dlsearch_path_spec+set}\" = set; then\n  sys_lib_dlsearch_path_spec=\"$lt_cv_sys_lib_dlsearch_path_spec\"\nfi\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\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  { echo \"$as_me:$LINENO: checking how to hardcode library paths into programs\" >&5\necho $ECHO_N \"checking how to hardcode library paths into programs... $ECHO_C\" >&6; }\nhardcode_action=\nif test -n \"$hardcode_libdir_flag_spec\" ||\n   test -n \"$runpath_var\" ||\n   test \"X$hardcode_automatic\" = \"Xyes\" ; then\n\n  # We can hardcode non-existent directories.\n  if test \"$hardcode_direct\" != no &&\n     # If the only mechanism to avoid hardcoding is shlibpath_var, we\n     # have to relink, otherwise we might link with an installed library\n     # when we should be linking with a yet-to-be-installed one\n     ## test \"$_LT_TAGVAR(hardcode_shlibpath_var, )\" != no &&\n     test \"$hardcode_minus_L\" != no; then\n    # Linking always hardcodes the temporary library directory.\n    hardcode_action=relink\n  else\n    # We can link without hardcoding, and we can hardcode nonexisting dirs.\n    hardcode_action=immediate\n  fi\nelse\n  # We cannot hardcode anything, or else we can only hardcode existing\n  # directories.\n  hardcode_action=unsupported\nfi\n{ echo \"$as_me:$LINENO: result: $hardcode_action\" >&5\necho \"${ECHO_T}$hardcode_action\" >&6; }\n\nif test \"$hardcode_action\" = relink ||\n   test \"$inherit_rpath\" = yes; then\n  # Fast installation is not supported\n  enable_fast_install=no\nelif test \"$shlibpath_overrides_runpath\" = yes ||\n     test \"$enable_shared\" = no; then\n  # Fast installation is not necessary\n  enable_fast_install=needless\nfi\n\n\n\n\n\n\n  if test \"x$enable_dlopen\" != xyes; then\n  enable_dlopen=unknown\n  enable_dlopen_self=unknown\n  enable_dlopen_self_static=unknown\nelse\n  lt_cv_dlopen=no\n  lt_cv_dlopen_libs=\n\n  case $host_os in\n  beos*)\n    lt_cv_dlopen=\"load_add_on\"\n    lt_cv_dlopen_libs=\n    lt_cv_dlopen_self=yes\n    ;;\n\n  mingw* | pw32* | cegcc*)\n    lt_cv_dlopen=\"LoadLibrary\"\n    lt_cv_dlopen_libs=\n    ;;\n\n  cygwin*)\n    lt_cv_dlopen=\"dlopen\"\n    lt_cv_dlopen_libs=\n    ;;\n\n  darwin*)\n  # if libdl is installed we need to link against it\n    { echo \"$as_me:$LINENO: checking for dlopen in -ldl\" >&5\necho $ECHO_N \"checking for dlopen in -ldl... $ECHO_C\" >&6; }\nif test \"${ac_cv_lib_dl_dlopen+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  ac_check_lib_save_LIBS=$LIBS\nLIBS=\"-ldl  $LIBS\"\ncat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n\n/* Override any GCC internal prototype to avoid an error.\n   Use char because int might match the return type of a GCC\n   builtin and then its argument prototype would still apply.  */\n#ifdef __cplusplus\nextern \"C\"\n#endif\nchar dlopen ();\nint\nmain ()\n{\nreturn dlopen ();\n  ;\n  return 0;\n}\n_ACEOF\nrm -f conftest.$ac_objext conftest$ac_exeext\nif { (ac_try=\"$ac_link\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_link\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && {\n\t test -z \"$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest$ac_exeext &&\n       $as_test_x conftest$ac_exeext; then\n  ac_cv_lib_dl_dlopen=yes\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\tac_cv_lib_dl_dlopen=no\nfi\n\nrm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \\\n      conftest$ac_exeext conftest.$ac_ext\nLIBS=$ac_check_lib_save_LIBS\nfi\n{ echo \"$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen\" >&5\necho \"${ECHO_T}$ac_cv_lib_dl_dlopen\" >&6; }\nif test $ac_cv_lib_dl_dlopen = yes; then\n  lt_cv_dlopen=\"dlopen\" lt_cv_dlopen_libs=\"-ldl\"\nelse\n\n    lt_cv_dlopen=\"dyld\"\n    lt_cv_dlopen_libs=\n    lt_cv_dlopen_self=yes\n\nfi\n\n    ;;\n\n  *)\n    { echo \"$as_me:$LINENO: checking for shl_load\" >&5\necho $ECHO_N \"checking for shl_load... $ECHO_C\" >&6; }\nif test \"${ac_cv_func_shl_load+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n/* Define shl_load to an innocuous variant, in case <limits.h> declares shl_load.\n   For example, HP-UX 11i <limits.h> declares gettimeofday.  */\n#define shl_load innocuous_shl_load\n\n/* System header to define __stub macros and hopefully few prototypes,\n    which can conflict with char shl_load (); below.\n    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since\n    <limits.h> exists even on freestanding compilers.  */\n\n#ifdef __STDC__\n# include <limits.h>\n#else\n# include <assert.h>\n#endif\n\n#undef shl_load\n\n/* Override any GCC internal prototype to avoid an error.\n   Use char because int might match the return type of a GCC\n   builtin and then its argument prototype would still apply.  */\n#ifdef __cplusplus\nextern \"C\"\n#endif\nchar shl_load ();\n/* The GNU C library defines this for functions which it implements\n    to always fail with ENOSYS.  Some functions are actually named\n    something starting with __ and the normal name is an alias.  */\n#if defined __stub_shl_load || defined __stub___shl_load\nchoke me\n#endif\n\nint\nmain ()\n{\nreturn shl_load ();\n  ;\n  return 0;\n}\n_ACEOF\nrm -f conftest.$ac_objext conftest$ac_exeext\nif { (ac_try=\"$ac_link\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_link\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && {\n\t test -z \"$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest$ac_exeext &&\n       $as_test_x conftest$ac_exeext; then\n  ac_cv_func_shl_load=yes\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\tac_cv_func_shl_load=no\nfi\n\nrm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \\\n      conftest$ac_exeext conftest.$ac_ext\nfi\n{ echo \"$as_me:$LINENO: result: $ac_cv_func_shl_load\" >&5\necho \"${ECHO_T}$ac_cv_func_shl_load\" >&6; }\nif test $ac_cv_func_shl_load = yes; then\n  lt_cv_dlopen=\"shl_load\"\nelse\n  { echo \"$as_me:$LINENO: checking for shl_load in -ldld\" >&5\necho $ECHO_N \"checking for shl_load in -ldld... $ECHO_C\" >&6; }\nif test \"${ac_cv_lib_dld_shl_load+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  ac_check_lib_save_LIBS=$LIBS\nLIBS=\"-ldld  $LIBS\"\ncat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n\n/* Override any GCC internal prototype to avoid an error.\n   Use char because int might match the return type of a GCC\n   builtin and then its argument prototype would still apply.  */\n#ifdef __cplusplus\nextern \"C\"\n#endif\nchar shl_load ();\nint\nmain ()\n{\nreturn shl_load ();\n  ;\n  return 0;\n}\n_ACEOF\nrm -f conftest.$ac_objext conftest$ac_exeext\nif { (ac_try=\"$ac_link\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_link\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && {\n\t test -z \"$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest$ac_exeext &&\n       $as_test_x conftest$ac_exeext; then\n  ac_cv_lib_dld_shl_load=yes\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\tac_cv_lib_dld_shl_load=no\nfi\n\nrm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \\\n      conftest$ac_exeext conftest.$ac_ext\nLIBS=$ac_check_lib_save_LIBS\nfi\n{ echo \"$as_me:$LINENO: result: $ac_cv_lib_dld_shl_load\" >&5\necho \"${ECHO_T}$ac_cv_lib_dld_shl_load\" >&6; }\nif test $ac_cv_lib_dld_shl_load = yes; then\n  lt_cv_dlopen=\"shl_load\" lt_cv_dlopen_libs=\"-ldld\"\nelse\n  { echo \"$as_me:$LINENO: checking for dlopen\" >&5\necho $ECHO_N \"checking for dlopen... $ECHO_C\" >&6; }\nif test \"${ac_cv_func_dlopen+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n/* Define dlopen to an innocuous variant, in case <limits.h> declares dlopen.\n   For example, HP-UX 11i <limits.h> declares gettimeofday.  */\n#define dlopen innocuous_dlopen\n\n/* System header to define __stub macros and hopefully few prototypes,\n    which can conflict with char dlopen (); below.\n    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since\n    <limits.h> exists even on freestanding compilers.  */\n\n#ifdef __STDC__\n# include <limits.h>\n#else\n# include <assert.h>\n#endif\n\n#undef dlopen\n\n/* Override any GCC internal prototype to avoid an error.\n   Use char because int might match the return type of a GCC\n   builtin and then its argument prototype would still apply.  */\n#ifdef __cplusplus\nextern \"C\"\n#endif\nchar dlopen ();\n/* The GNU C library defines this for functions which it implements\n    to always fail with ENOSYS.  Some functions are actually named\n    something starting with __ and the normal name is an alias.  */\n#if defined __stub_dlopen || defined __stub___dlopen\nchoke me\n#endif\n\nint\nmain ()\n{\nreturn dlopen ();\n  ;\n  return 0;\n}\n_ACEOF\nrm -f conftest.$ac_objext conftest$ac_exeext\nif { (ac_try=\"$ac_link\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_link\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && {\n\t test -z \"$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest$ac_exeext &&\n       $as_test_x conftest$ac_exeext; then\n  ac_cv_func_dlopen=yes\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\tac_cv_func_dlopen=no\nfi\n\nrm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \\\n      conftest$ac_exeext conftest.$ac_ext\nfi\n{ echo \"$as_me:$LINENO: result: $ac_cv_func_dlopen\" >&5\necho \"${ECHO_T}$ac_cv_func_dlopen\" >&6; }\nif test $ac_cv_func_dlopen = yes; then\n  lt_cv_dlopen=\"dlopen\"\nelse\n  { echo \"$as_me:$LINENO: checking for dlopen in -ldl\" >&5\necho $ECHO_N \"checking for dlopen in -ldl... $ECHO_C\" >&6; }\nif test \"${ac_cv_lib_dl_dlopen+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  ac_check_lib_save_LIBS=$LIBS\nLIBS=\"-ldl  $LIBS\"\ncat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n\n/* Override any GCC internal prototype to avoid an error.\n   Use char because int might match the return type of a GCC\n   builtin and then its argument prototype would still apply.  */\n#ifdef __cplusplus\nextern \"C\"\n#endif\nchar dlopen ();\nint\nmain ()\n{\nreturn dlopen ();\n  ;\n  return 0;\n}\n_ACEOF\nrm -f conftest.$ac_objext conftest$ac_exeext\nif { (ac_try=\"$ac_link\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_link\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && {\n\t test -z \"$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest$ac_exeext &&\n       $as_test_x conftest$ac_exeext; then\n  ac_cv_lib_dl_dlopen=yes\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\tac_cv_lib_dl_dlopen=no\nfi\n\nrm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \\\n      conftest$ac_exeext conftest.$ac_ext\nLIBS=$ac_check_lib_save_LIBS\nfi\n{ echo \"$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen\" >&5\necho \"${ECHO_T}$ac_cv_lib_dl_dlopen\" >&6; }\nif test $ac_cv_lib_dl_dlopen = yes; then\n  lt_cv_dlopen=\"dlopen\" lt_cv_dlopen_libs=\"-ldl\"\nelse\n  { echo \"$as_me:$LINENO: checking for dlopen in -lsvld\" >&5\necho $ECHO_N \"checking for dlopen in -lsvld... $ECHO_C\" >&6; }\nif test \"${ac_cv_lib_svld_dlopen+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  ac_check_lib_save_LIBS=$LIBS\nLIBS=\"-lsvld  $LIBS\"\ncat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n\n/* Override any GCC internal prototype to avoid an error.\n   Use char because int might match the return type of a GCC\n   builtin and then its argument prototype would still apply.  */\n#ifdef __cplusplus\nextern \"C\"\n#endif\nchar dlopen ();\nint\nmain ()\n{\nreturn dlopen ();\n  ;\n  return 0;\n}\n_ACEOF\nrm -f conftest.$ac_objext conftest$ac_exeext\nif { (ac_try=\"$ac_link\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_link\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && {\n\t test -z \"$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest$ac_exeext &&\n       $as_test_x conftest$ac_exeext; then\n  ac_cv_lib_svld_dlopen=yes\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\tac_cv_lib_svld_dlopen=no\nfi\n\nrm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \\\n      conftest$ac_exeext conftest.$ac_ext\nLIBS=$ac_check_lib_save_LIBS\nfi\n{ echo \"$as_me:$LINENO: result: $ac_cv_lib_svld_dlopen\" >&5\necho \"${ECHO_T}$ac_cv_lib_svld_dlopen\" >&6; }\nif test $ac_cv_lib_svld_dlopen = yes; then\n  lt_cv_dlopen=\"dlopen\" lt_cv_dlopen_libs=\"-lsvld\"\nelse\n  { echo \"$as_me:$LINENO: checking for dld_link in -ldld\" >&5\necho $ECHO_N \"checking for dld_link in -ldld... $ECHO_C\" >&6; }\nif test \"${ac_cv_lib_dld_dld_link+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  ac_check_lib_save_LIBS=$LIBS\nLIBS=\"-ldld  $LIBS\"\ncat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n\n/* Override any GCC internal prototype to avoid an error.\n   Use char because int might match the return type of a GCC\n   builtin and then its argument prototype would still apply.  */\n#ifdef __cplusplus\nextern \"C\"\n#endif\nchar dld_link ();\nint\nmain ()\n{\nreturn dld_link ();\n  ;\n  return 0;\n}\n_ACEOF\nrm -f conftest.$ac_objext conftest$ac_exeext\nif { (ac_try=\"$ac_link\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_link\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && {\n\t test -z \"$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest$ac_exeext &&\n       $as_test_x conftest$ac_exeext; then\n  ac_cv_lib_dld_dld_link=yes\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\tac_cv_lib_dld_dld_link=no\nfi\n\nrm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \\\n      conftest$ac_exeext conftest.$ac_ext\nLIBS=$ac_check_lib_save_LIBS\nfi\n{ echo \"$as_me:$LINENO: result: $ac_cv_lib_dld_dld_link\" >&5\necho \"${ECHO_T}$ac_cv_lib_dld_dld_link\" >&6; }\nif test $ac_cv_lib_dld_dld_link = yes; then\n  lt_cv_dlopen=\"dld_link\" lt_cv_dlopen_libs=\"-ldld\"\nfi\n\n\nfi\n\n\nfi\n\n\nfi\n\n\nfi\n\n\nfi\n\n    ;;\n  esac\n\n  if test \"x$lt_cv_dlopen\" != xno; then\n    enable_dlopen=yes\n  else\n    enable_dlopen=no\n  fi\n\n  case $lt_cv_dlopen in\n  dlopen)\n    save_CPPFLAGS=\"$CPPFLAGS\"\n    test \"x$ac_cv_header_dlfcn_h\" = xyes && CPPFLAGS=\"$CPPFLAGS -DHAVE_DLFCN_H\"\n\n    save_LDFLAGS=\"$LDFLAGS\"\n    wl=$lt_prog_compiler_wl eval LDFLAGS=\\\"\\$LDFLAGS $export_dynamic_flag_spec\\\"\n\n    save_LIBS=\"$LIBS\"\n    LIBS=\"$lt_cv_dlopen_libs $LIBS\"\n\n    { echo \"$as_me:$LINENO: checking whether a program can dlopen itself\" >&5\necho $ECHO_N \"checking whether a program can dlopen itself... $ECHO_C\" >&6; }\nif test \"${lt_cv_dlopen_self+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  \t  if test \"$cross_compiling\" = yes; then :\n  lt_cv_dlopen_self=cross\nelse\n  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2\n  lt_status=$lt_dlunknown\n  cat > conftest.$ac_ext <<_LT_EOF\n#line $LINENO \"configure\"\n#include \"confdefs.h\"\n\n#if HAVE_DLFCN_H\n#include <dlfcn.h>\n#endif\n\n#include <stdio.h>\n\n#ifdef RTLD_GLOBAL\n#  define LT_DLGLOBAL\t\tRTLD_GLOBAL\n#else\n#  ifdef DL_GLOBAL\n#    define LT_DLGLOBAL\t\tDL_GLOBAL\n#  else\n#    define LT_DLGLOBAL\t\t0\n#  endif\n#endif\n\n/* We may have to define LT_DLLAZY_OR_NOW in the command line if we\n   find out it does not work in some platform. */\n#ifndef LT_DLLAZY_OR_NOW\n#  ifdef RTLD_LAZY\n#    define LT_DLLAZY_OR_NOW\t\tRTLD_LAZY\n#  else\n#    ifdef DL_LAZY\n#      define LT_DLLAZY_OR_NOW\t\tDL_LAZY\n#    else\n#      ifdef RTLD_NOW\n#        define LT_DLLAZY_OR_NOW\tRTLD_NOW\n#      else\n#        ifdef DL_NOW\n#          define LT_DLLAZY_OR_NOW\tDL_NOW\n#        else\n#          define LT_DLLAZY_OR_NOW\t0\n#        endif\n#      endif\n#    endif\n#  endif\n#endif\n\n/* When -fvisbility=hidden is used, assume the code has been annotated\n   correspondingly for the symbols needed.  */\n#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))\nvoid fnord () __attribute__((visibility(\"default\")));\n#endif\n\nvoid fnord () { int i=42; }\nint main ()\n{\n  void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);\n  int status = $lt_dlunknown;\n\n  if (self)\n    {\n      if (dlsym (self,\"fnord\"))       status = $lt_dlno_uscore;\n      else\n        {\n\t  if (dlsym( self,\"_fnord\"))  status = $lt_dlneed_uscore;\n          else puts (dlerror ());\n\t}\n      /* dlclose (self); */\n    }\n  else\n    puts (dlerror ());\n\n  return status;\n}\n_LT_EOF\n  if { (eval echo \"$as_me:$LINENO: \\\"$ac_link\\\"\") >&5\n  (eval $ac_link) 2>&5\n  ac_status=$?\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then\n    (./conftest; exit; ) >&5 2>/dev/null\n    lt_status=$?\n    case x$lt_status in\n      x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;;\n      x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;;\n      x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;;\n    esac\n  else :\n    # compilation failed\n    lt_cv_dlopen_self=no\n  fi\nfi\nrm -fr conftest*\n\n\nfi\n{ echo \"$as_me:$LINENO: result: $lt_cv_dlopen_self\" >&5\necho \"${ECHO_T}$lt_cv_dlopen_self\" >&6; }\n\n    if test \"x$lt_cv_dlopen_self\" = xyes; then\n      wl=$lt_prog_compiler_wl eval LDFLAGS=\\\"\\$LDFLAGS $lt_prog_compiler_static\\\"\n      { echo \"$as_me:$LINENO: checking whether a statically linked program can dlopen itself\" >&5\necho $ECHO_N \"checking whether a statically linked program can dlopen itself... $ECHO_C\" >&6; }\nif test \"${lt_cv_dlopen_self_static+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  \t  if test \"$cross_compiling\" = yes; then :\n  lt_cv_dlopen_self_static=cross\nelse\n  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2\n  lt_status=$lt_dlunknown\n  cat > conftest.$ac_ext <<_LT_EOF\n#line $LINENO \"configure\"\n#include \"confdefs.h\"\n\n#if HAVE_DLFCN_H\n#include <dlfcn.h>\n#endif\n\n#include <stdio.h>\n\n#ifdef RTLD_GLOBAL\n#  define LT_DLGLOBAL\t\tRTLD_GLOBAL\n#else\n#  ifdef DL_GLOBAL\n#    define LT_DLGLOBAL\t\tDL_GLOBAL\n#  else\n#    define LT_DLGLOBAL\t\t0\n#  endif\n#endif\n\n/* We may have to define LT_DLLAZY_OR_NOW in the command line if we\n   find out it does not work in some platform. */\n#ifndef LT_DLLAZY_OR_NOW\n#  ifdef RTLD_LAZY\n#    define LT_DLLAZY_OR_NOW\t\tRTLD_LAZY\n#  else\n#    ifdef DL_LAZY\n#      define LT_DLLAZY_OR_NOW\t\tDL_LAZY\n#    else\n#      ifdef RTLD_NOW\n#        define LT_DLLAZY_OR_NOW\tRTLD_NOW\n#      else\n#        ifdef DL_NOW\n#          define LT_DLLAZY_OR_NOW\tDL_NOW\n#        else\n#          define LT_DLLAZY_OR_NOW\t0\n#        endif\n#      endif\n#    endif\n#  endif\n#endif\n\n/* When -fvisbility=hidden is used, assume the code has been annotated\n   correspondingly for the symbols needed.  */\n#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))\nvoid fnord () __attribute__((visibility(\"default\")));\n#endif\n\nvoid fnord () { int i=42; }\nint main ()\n{\n  void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);\n  int status = $lt_dlunknown;\n\n  if (self)\n    {\n      if (dlsym (self,\"fnord\"))       status = $lt_dlno_uscore;\n      else\n        {\n\t  if (dlsym( self,\"_fnord\"))  status = $lt_dlneed_uscore;\n          else puts (dlerror ());\n\t}\n      /* dlclose (self); */\n    }\n  else\n    puts (dlerror ());\n\n  return status;\n}\n_LT_EOF\n  if { (eval echo \"$as_me:$LINENO: \\\"$ac_link\\\"\") >&5\n  (eval $ac_link) 2>&5\n  ac_status=$?\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then\n    (./conftest; exit; ) >&5 2>/dev/null\n    lt_status=$?\n    case x$lt_status in\n      x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;;\n      x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;;\n      x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;;\n    esac\n  else :\n    # compilation failed\n    lt_cv_dlopen_self_static=no\n  fi\nfi\nrm -fr conftest*\n\n\nfi\n{ echo \"$as_me:$LINENO: result: $lt_cv_dlopen_self_static\" >&5\necho \"${ECHO_T}$lt_cv_dlopen_self_static\" >&6; }\n    fi\n\n    CPPFLAGS=\"$save_CPPFLAGS\"\n    LDFLAGS=\"$save_LDFLAGS\"\n    LIBS=\"$save_LIBS\"\n    ;;\n  esac\n\n  case $lt_cv_dlopen_self in\n  yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;\n  *) enable_dlopen_self=unknown ;;\n  esac\n\n  case $lt_cv_dlopen_self_static in\n  yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;\n  *) enable_dlopen_self_static=unknown ;;\n  esac\nfi\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nstriplib=\nold_striplib=\n{ echo \"$as_me:$LINENO: checking whether stripping libraries is possible\" >&5\necho $ECHO_N \"checking whether stripping libraries is possible... $ECHO_C\" >&6; }\nif test -n \"$STRIP\" && $STRIP -V 2>&1 | $GREP \"GNU strip\" >/dev/null; then\n  test -z \"$old_striplib\" && old_striplib=\"$STRIP --strip-debug\"\n  test -z \"$striplib\" && striplib=\"$STRIP --strip-unneeded\"\n  { echo \"$as_me:$LINENO: result: yes\" >&5\necho \"${ECHO_T}yes\" >&6; }\nelse\n# FIXME - insert some real tests, host_os isn't really good enough\n  case $host_os in\n  darwin*)\n    if test -n \"$STRIP\" ; then\n      striplib=\"$STRIP -x\"\n      old_striplib=\"$STRIP -S\"\n      { echo \"$as_me:$LINENO: result: yes\" >&5\necho \"${ECHO_T}yes\" >&6; }\n    else\n      { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\n    fi\n    ;;\n  *)\n    { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\n    ;;\n  esac\nfi\n\n\n\n\n\n\n\n\n\n\n\n\n  # Report which library types will actually be built\n  { echo \"$as_me:$LINENO: checking if libtool supports shared libraries\" >&5\necho $ECHO_N \"checking if libtool supports shared libraries... $ECHO_C\" >&6; }\n  { echo \"$as_me:$LINENO: result: $can_build_shared\" >&5\necho \"${ECHO_T}$can_build_shared\" >&6; }\n\n  { echo \"$as_me:$LINENO: checking whether to build shared libraries\" >&5\necho $ECHO_N \"checking whether to build shared libraries... $ECHO_C\" >&6; }\n  test \"$can_build_shared\" = \"no\" && enable_shared=no\n\n  # On AIX, shared libraries and static libraries use the same namespace, and\n  # are all built from PIC.\n  case $host_os in\n  aix3*)\n    test \"$enable_shared\" = yes && enable_static=no\n    if test -n \"$RANLIB\"; then\n      archive_cmds=\"$archive_cmds~\\$RANLIB \\$lib\"\n      postinstall_cmds='$RANLIB $lib'\n    fi\n    ;;\n\n  aix[4-9]*)\n    if test \"$host_cpu\" != ia64 && test \"$aix_use_runtimelinking\" = no ; then\n      test \"$enable_shared\" = yes && enable_static=no\n    fi\n    ;;\n  esac\n  { echo \"$as_me:$LINENO: result: $enable_shared\" >&5\necho \"${ECHO_T}$enable_shared\" >&6; }\n\n  { echo \"$as_me:$LINENO: checking whether to build static libraries\" >&5\necho $ECHO_N \"checking whether to build static libraries... $ECHO_C\" >&6; }\n  # Make sure either enable_shared or enable_static is yes.\n  test \"$enable_shared\" = yes || enable_static=yes\n  { echo \"$as_me:$LINENO: result: $enable_static\" >&5\necho \"${ECHO_T}$enable_static\" >&6; }\n\n\n\n\nfi\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\nCC=\"$lt_save_CC\"\n\n\n\n\n\n\n\n\n\n\n\n\n\n        ac_config_commands=\"$ac_config_commands libtool\"\n\n\n\n\n# Only expand once:\n\n\n\n# Checks for a C++ compiler.\nac_ext=cpp\nac_cpp='$CXXCPP $CPPFLAGS'\nac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_cxx_compiler_gnu\nif test -z \"$CXX\"; then\n  if test -n \"$CCC\"; then\n    CXX=$CCC\n  else\n    if test -n \"$ac_tool_prefix\"; then\n  for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC\n  do\n    # Extract the first word of \"$ac_tool_prefix$ac_prog\", so it can be a program name with args.\nset dummy $ac_tool_prefix$ac_prog; ac_word=$2\n{ echo \"$as_me:$LINENO: checking for $ac_word\" >&5\necho $ECHO_N \"checking for $ac_word... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_CXX+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$CXX\"; then\n  ac_cv_prog_CXX=\"$CXX\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_exec_ext in '' $ac_executable_extensions; do\n  if { test -f \"$as_dir/$ac_word$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_word$ac_exec_ext\"; }; then\n    ac_cv_prog_CXX=\"$ac_tool_prefix$ac_prog\"\n    echo \"$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\ndone\nIFS=$as_save_IFS\n\nfi\nfi\nCXX=$ac_cv_prog_CXX\nif test -n \"$CXX\"; then\n  { echo \"$as_me:$LINENO: result: $CXX\" >&5\necho \"${ECHO_T}$CXX\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n\n    test -n \"$CXX\" && break\n  done\nfi\nif test -z \"$CXX\"; then\n  ac_ct_CXX=$CXX\n  for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC\ndo\n  # Extract the first word of \"$ac_prog\", so it can be a program name with args.\nset dummy $ac_prog; ac_word=$2\n{ echo \"$as_me:$LINENO: checking for $ac_word\" >&5\necho $ECHO_N \"checking for $ac_word... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_ac_ct_CXX+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -n \"$ac_ct_CXX\"; then\n  ac_cv_prog_ac_ct_CXX=\"$ac_ct_CXX\" # Let the user override the test.\nelse\nas_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  for ac_exec_ext in '' $ac_executable_extensions; do\n  if { test -f \"$as_dir/$ac_word$ac_exec_ext\" && $as_test_x \"$as_dir/$ac_word$ac_exec_ext\"; }; then\n    ac_cv_prog_ac_ct_CXX=\"$ac_prog\"\n    echo \"$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext\" >&5\n    break 2\n  fi\ndone\ndone\nIFS=$as_save_IFS\n\nfi\nfi\nac_ct_CXX=$ac_cv_prog_ac_ct_CXX\nif test -n \"$ac_ct_CXX\"; then\n  { echo \"$as_me:$LINENO: result: $ac_ct_CXX\" >&5\necho \"${ECHO_T}$ac_ct_CXX\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\n\n\n  test -n \"$ac_ct_CXX\" && break\ndone\n\n  if test \"x$ac_ct_CXX\" = x; then\n    CXX=\"g++\"\n  else\n    case $cross_compiling:$ac_tool_warned in\nyes:)\n{ echo \"$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools\nwhose name does not start with the host triplet.  If you think this\nconfiguration is useful to you, please write to autoconf@gnu.org.\" >&5\necho \"$as_me: WARNING: In the future, Autoconf will not detect cross-tools\nwhose name does not start with the host triplet.  If you think this\nconfiguration is useful to you, please write to autoconf@gnu.org.\" >&2;}\nac_tool_warned=yes ;;\nesac\n    CXX=$ac_ct_CXX\n  fi\nfi\n\n  fi\nfi\n# Provide some information about the compiler.\necho \"$as_me:$LINENO: checking for C++ compiler version\" >&5\nac_compiler=`set X $ac_compile; echo $2`\n{ (ac_try=\"$ac_compiler --version >&5\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_compiler --version >&5\") 2>&5\n  ac_status=$?\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); }\n{ (ac_try=\"$ac_compiler -v >&5\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_compiler -v >&5\") 2>&5\n  ac_status=$?\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); }\n{ (ac_try=\"$ac_compiler -V >&5\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_compiler -V >&5\") 2>&5\n  ac_status=$?\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); }\n\n{ echo \"$as_me:$LINENO: checking whether we are using the GNU C++ compiler\" >&5\necho $ECHO_N \"checking whether we are using the GNU C++ compiler... $ECHO_C\" >&6; }\nif test \"${ac_cv_cxx_compiler_gnu+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n#ifndef __GNUC__\n       choke me\n#endif\n\n  ;\n  return 0;\n}\n_ACEOF\nrm -f conftest.$ac_objext\nif { (ac_try=\"$ac_compile\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_compile\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && {\n\t test -z \"$ac_cxx_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest.$ac_objext; then\n  ac_compiler_gnu=yes\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\tac_compiler_gnu=no\nfi\n\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nac_cv_cxx_compiler_gnu=$ac_compiler_gnu\n\nfi\n{ echo \"$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu\" >&5\necho \"${ECHO_T}$ac_cv_cxx_compiler_gnu\" >&6; }\nGXX=`test $ac_compiler_gnu = yes && echo yes`\nac_test_CXXFLAGS=${CXXFLAGS+set}\nac_save_CXXFLAGS=$CXXFLAGS\n{ echo \"$as_me:$LINENO: checking whether $CXX accepts -g\" >&5\necho $ECHO_N \"checking whether $CXX accepts -g... $ECHO_C\" >&6; }\nif test \"${ac_cv_prog_cxx_g+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  ac_save_cxx_werror_flag=$ac_cxx_werror_flag\n   ac_cxx_werror_flag=yes\n   ac_cv_prog_cxx_g=no\n   CXXFLAGS=\"-g\"\n   cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nrm -f conftest.$ac_objext\nif { (ac_try=\"$ac_compile\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_compile\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && {\n\t test -z \"$ac_cxx_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest.$ac_objext; then\n  ac_cv_prog_cxx_g=yes\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\tCXXFLAGS=\"\"\n      cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nrm -f conftest.$ac_objext\nif { (ac_try=\"$ac_compile\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_compile\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && {\n\t test -z \"$ac_cxx_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest.$ac_objext; then\n  :\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\tac_cxx_werror_flag=$ac_save_cxx_werror_flag\n\t CXXFLAGS=\"-g\"\n\t cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nrm -f conftest.$ac_objext\nif { (ac_try=\"$ac_compile\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_compile\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && {\n\t test -z \"$ac_cxx_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest.$ac_objext; then\n  ac_cv_prog_cxx_g=yes\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\nfi\n\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\n\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\nfi\n\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n   ac_cxx_werror_flag=$ac_save_cxx_werror_flag\nfi\n{ echo \"$as_me:$LINENO: result: $ac_cv_prog_cxx_g\" >&5\necho \"${ECHO_T}$ac_cv_prog_cxx_g\" >&6; }\nif test \"$ac_test_CXXFLAGS\" = set; then\n  CXXFLAGS=$ac_save_CXXFLAGS\nelif test $ac_cv_prog_cxx_g = yes; then\n  if test \"$GXX\" = yes; then\n    CXXFLAGS=\"-g -O2\"\n  else\n    CXXFLAGS=\"-g\"\n  fi\nelse\n  if test \"$GXX\" = yes; then\n    CXXFLAGS=\"-O2\"\n  else\n    CXXFLAGS=\n  fi\nfi\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\ndepcc=\"$CXX\"  am_compiler_list=\n\n{ echo \"$as_me:$LINENO: checking dependency style of $depcc\" >&5\necho $ECHO_N \"checking dependency style of $depcc... $ECHO_C\" >&6; }\nif test \"${am_cv_CXX_dependencies_compiler_type+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -z \"$AMDEP_TRUE\" && test -f \"$am_depcomp\"; then\n  # We make a subdir and do the tests there.  Otherwise we can end up\n  # making bogus files that we don't know about and never remove.  For\n  # instance it was reported that on HP-UX the gcc test will end up\n  # making a dummy file named `D' -- because `-MD' means `put the output\n  # in D'.\n  mkdir conftest.dir\n  # Copy depcomp to subdir because otherwise we won't find it if we're\n  # using a relative directory.\n  cp \"$am_depcomp\" conftest.dir\n  cd conftest.dir\n  # We will build objects and dependencies in a subdirectory because\n  # it helps to detect inapplicable dependency modes.  For instance\n  # both Tru64's cc and ICC support -MD to output dependencies as a\n  # side effect of compilation, but ICC will put the dependencies in\n  # the current directory while Tru64 will put them in the object\n  # directory.\n  mkdir sub\n\n  am_cv_CXX_dependencies_compiler_type=none\n  if test \"$am_compiler_list\" = \"\"; then\n     am_compiler_list=`sed -n 's/^#*\\([a-zA-Z0-9]*\\))$/\\1/p' < ./depcomp`\n  fi\n  for depmode in $am_compiler_list; do\n    # Setup a source with many dependencies, because some compilers\n    # like to wrap large dependency lists on column 80 (with \\), and\n    # we should not choose a depcomp mode which is confused by this.\n    #\n    # We need to recreate these files for each test, as the compiler may\n    # overwrite some of them when testing with obscure command lines.\n    # This happens at least with the AIX C compiler.\n    : > sub/conftest.c\n    for i in 1 2 3 4 5 6; do\n      echo '#include \"conftst'$i'.h\"' >> sub/conftest.c\n      # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with\n      # Solaris 8's {/usr,}/bin/sh.\n      touch sub/conftst$i.h\n    done\n    echo \"${am__include} ${am__quote}sub/conftest.Po${am__quote}\" > confmf\n\n    case $depmode in\n    nosideeffect)\n      # after this tag, mechanisms are not by side-effect, so they'll\n      # only be used when explicitly requested\n      if test \"x$enable_dependency_tracking\" = xyes; then\n\tcontinue\n      else\n\tbreak\n      fi\n      ;;\n    none) break ;;\n    esac\n    # We check with `-c' and `-o' for the sake of the \"dashmstdout\"\n    # mode.  It turns out that the SunPro C++ compiler does not properly\n    # handle `-M -o', and we need to detect this.\n    if depmode=$depmode \\\n       source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \\\n       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \\\n       $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \\\n         >/dev/null 2>conftest.err &&\n       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&\n       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&\n       grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&\n       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then\n      # icc doesn't choke on unknown options, it will just issue warnings\n      # or remarks (even with -Werror).  So we grep stderr for any message\n      # that says an option was ignored or not supported.\n      # When given -MP, icc 7.0 and 7.1 complain thusly:\n      #   icc: Command line warning: ignoring option '-M'; no argument required\n      # The diagnosis changed in icc 8.0:\n      #   icc: Command line remark: option '-MP' not supported\n      if (grep 'ignoring option' conftest.err ||\n          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else\n        am_cv_CXX_dependencies_compiler_type=$depmode\n        break\n      fi\n    fi\n  done\n\n  cd ..\n  rm -rf conftest.dir\nelse\n  am_cv_CXX_dependencies_compiler_type=none\nfi\n\nfi\n{ echo \"$as_me:$LINENO: result: $am_cv_CXX_dependencies_compiler_type\" >&5\necho \"${ECHO_T}$am_cv_CXX_dependencies_compiler_type\" >&6; }\nCXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type\n\n if\n  test \"x$enable_dependency_tracking\" != xno \\\n  && test \"$am_cv_CXX_dependencies_compiler_type\" = gcc3; then\n  am__fastdepCXX_TRUE=\n  am__fastdepCXX_FALSE='#'\nelse\n  am__fastdepCXX_TRUE='#'\n  am__fastdepCXX_FALSE=\nfi\n\n\n      if test -n \"$CXX\" && ( test \"X$CXX\" != \"Xno\" &&\n    ( (test \"X$CXX\" = \"Xg++\" && `g++ -v >/dev/null 2>&1` ) ||\n    (test \"X$CXX\" != \"Xg++\"))) ; then\n  ac_ext=cpp\nac_cpp='$CXXCPP $CPPFLAGS'\nac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_cxx_compiler_gnu\n{ echo \"$as_me:$LINENO: checking how to run the C++ preprocessor\" >&5\necho $ECHO_N \"checking how to run the C++ preprocessor... $ECHO_C\" >&6; }\nif test -z \"$CXXCPP\"; then\n  if test \"${ac_cv_prog_CXXCPP+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n      # Double quotes because CXXCPP needs to be expanded\n    for CXXCPP in \"$CXX -E\" \"/lib/cpp\"\n    do\n      ac_preproc_ok=false\nfor ac_cxx_preproc_warn_flag in '' yes\ndo\n  # Use a header file that comes with gcc, so configuring glibc\n  # with a fresh cross-compiler works.\n  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since\n  # <limits.h> exists even on freestanding compilers.\n  # On the NeXT, cc -E runs the code through the compiler's parser,\n  # not just through cpp. \"Syntax error\" is here to catch this case.\n  cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n#ifdef __STDC__\n# include <limits.h>\n#else\n# include <assert.h>\n#endif\n\t\t     Syntax error\n_ACEOF\nif { (ac_try=\"$ac_cpp conftest.$ac_ext\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_cpp conftest.$ac_ext\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } >/dev/null && {\n\t test -z \"$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag\" ||\n\t test ! -s conftest.err\n       }; then\n  :\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n  # Broken: fails on valid input.\ncontinue\nfi\n\nrm -f conftest.err conftest.$ac_ext\n\n  # OK, works on sane cases.  Now check whether nonexistent headers\n  # can be detected and how.\n  cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n#include <ac_nonexistent.h>\n_ACEOF\nif { (ac_try=\"$ac_cpp conftest.$ac_ext\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_cpp conftest.$ac_ext\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } >/dev/null && {\n\t test -z \"$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag\" ||\n\t test ! -s conftest.err\n       }; then\n  # Broken: success on invalid input.\ncontinue\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n  # Passes both tests.\nac_preproc_ok=:\nbreak\nfi\n\nrm -f conftest.err conftest.$ac_ext\n\ndone\n# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.\nrm -f conftest.err conftest.$ac_ext\nif $ac_preproc_ok; then\n  break\nfi\n\n    done\n    ac_cv_prog_CXXCPP=$CXXCPP\n\nfi\n  CXXCPP=$ac_cv_prog_CXXCPP\nelse\n  ac_cv_prog_CXXCPP=$CXXCPP\nfi\n{ echo \"$as_me:$LINENO: result: $CXXCPP\" >&5\necho \"${ECHO_T}$CXXCPP\" >&6; }\nac_preproc_ok=false\nfor ac_cxx_preproc_warn_flag in '' yes\ndo\n  # Use a header file that comes with gcc, so configuring glibc\n  # with a fresh cross-compiler works.\n  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since\n  # <limits.h> exists even on freestanding compilers.\n  # On the NeXT, cc -E runs the code through the compiler's parser,\n  # not just through cpp. \"Syntax error\" is here to catch this case.\n  cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n#ifdef __STDC__\n# include <limits.h>\n#else\n# include <assert.h>\n#endif\n\t\t     Syntax error\n_ACEOF\nif { (ac_try=\"$ac_cpp conftest.$ac_ext\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_cpp conftest.$ac_ext\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } >/dev/null && {\n\t test -z \"$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag\" ||\n\t test ! -s conftest.err\n       }; then\n  :\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n  # Broken: fails on valid input.\ncontinue\nfi\n\nrm -f conftest.err conftest.$ac_ext\n\n  # OK, works on sane cases.  Now check whether nonexistent headers\n  # can be detected and how.\n  cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n#include <ac_nonexistent.h>\n_ACEOF\nif { (ac_try=\"$ac_cpp conftest.$ac_ext\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_cpp conftest.$ac_ext\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } >/dev/null && {\n\t test -z \"$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag\" ||\n\t test ! -s conftest.err\n       }; then\n  # Broken: success on invalid input.\ncontinue\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n  # Passes both tests.\nac_preproc_ok=:\nbreak\nfi\n\nrm -f conftest.err conftest.$ac_ext\n\ndone\n# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.\nrm -f conftest.err conftest.$ac_ext\nif $ac_preproc_ok; then\n  :\nelse\n  { { echo \"$as_me:$LINENO: error: C++ preprocessor \\\"$CXXCPP\\\" fails sanity check\nSee \\`config.log' for more details.\" >&5\necho \"$as_me: error: C++ preprocessor \\\"$CXXCPP\\\" fails sanity check\nSee \\`config.log' for more details.\" >&2;}\n   { (exit 1); exit 1; }; }\nfi\n\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\nelse\n  _lt_caught_CXX_error=yes\nfi\n\nac_ext=cpp\nac_cpp='$CXXCPP $CPPFLAGS'\nac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_cxx_compiler_gnu\n\narchive_cmds_need_lc_CXX=no\nallow_undefined_flag_CXX=\nalways_export_symbols_CXX=no\narchive_expsym_cmds_CXX=\ncompiler_needs_object_CXX=no\nexport_dynamic_flag_spec_CXX=\nhardcode_direct_CXX=no\nhardcode_direct_absolute_CXX=no\nhardcode_libdir_flag_spec_CXX=\nhardcode_libdir_flag_spec_ld_CXX=\nhardcode_libdir_separator_CXX=\nhardcode_minus_L_CXX=no\nhardcode_shlibpath_var_CXX=unsupported\nhardcode_automatic_CXX=no\ninherit_rpath_CXX=no\nmodule_cmds_CXX=\nmodule_expsym_cmds_CXX=\nlink_all_deplibs_CXX=unknown\nold_archive_cmds_CXX=$old_archive_cmds\nreload_flag_CXX=$reload_flag\nreload_cmds_CXX=$reload_cmds\nno_undefined_flag_CXX=\nwhole_archive_flag_spec_CXX=\nenable_shared_with_static_runtimes_CXX=no\n\n# Source file extension for C++ test sources.\nac_ext=cpp\n\n# Object file extension for compiled C++ test sources.\nobjext=o\nobjext_CXX=$objext\n\n# No sense in running all these tests if we already determined that\n# the CXX compiler isn't working.  Some variables (like enable_shared)\n# are currently assumed to apply to all compilers on this platform,\n# and will be corrupted by setting them based on a non-working compiler.\nif test \"$_lt_caught_CXX_error\" != yes; then\n  # Code to be used in simple compile tests\n  lt_simple_compile_test_code=\"int some_variable = 0;\"\n\n  # Code to be used in simple link tests\n  lt_simple_link_test_code='int main(int, char *[]) { return(0); }'\n\n  # ltmain only uses $CC for tagged configurations so make sure $CC is set.\n\n\n\n\n\n\n# If no C compiler was specified, use CC.\nLTCC=${LTCC-\"$CC\"}\n\n# If no C compiler flags were specified, use CFLAGS.\nLTCFLAGS=${LTCFLAGS-\"$CFLAGS\"}\n\n# Allow CC to be a program name with arguments.\ncompiler=$CC\n\n\n  # save warnings/boilerplate of simple test code\n  ac_outfile=conftest.$ac_objext\necho \"$lt_simple_compile_test_code\" >conftest.$ac_ext\neval \"$ac_compile\" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err\n_lt_compiler_boilerplate=`cat conftest.err`\n$RM -r conftest*\n\n  ac_outfile=conftest.$ac_objext\necho \"$lt_simple_link_test_code\" >conftest.$ac_ext\neval \"$ac_link\" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err\n_lt_linker_boilerplate=`cat conftest.err`\n$RM -r conftest*\n\n\n  # Allow CC to be a program name with arguments.\n  lt_save_CC=$CC\n  lt_save_LD=$LD\n  lt_save_GCC=$GCC\n  GCC=$GXX\n  lt_save_with_gnu_ld=$with_gnu_ld\n  lt_save_path_LD=$lt_cv_path_LD\n  if test -n \"${lt_cv_prog_gnu_ldcxx+set}\"; then\n    lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx\n  else\n    $as_unset lt_cv_prog_gnu_ld\n  fi\n  if test -n \"${lt_cv_path_LDCXX+set}\"; then\n    lt_cv_path_LD=$lt_cv_path_LDCXX\n  else\n    $as_unset lt_cv_path_LD\n  fi\n  test -z \"${LDCXX+set}\" || LD=$LDCXX\n  CC=${CXX-\"c++\"}\n  compiler=$CC\n  compiler_CXX=$CC\n  for cc_temp in $compiler\"\"; do\n  case $cc_temp in\n    compile | *[\\\\/]compile | ccache | *[\\\\/]ccache ) ;;\n    distcc | *[\\\\/]distcc | purify | *[\\\\/]purify ) ;;\n    \\-*) ;;\n    *) break;;\n  esac\ndone\ncc_basename=`$ECHO \"$cc_temp\" | $SED \"s%.*/%%; s%^$host_alias-%%\"`\n\n\n  if test -n \"$compiler\"; then\n    # We don't want -fno-exception when compiling C++ code, so set the\n    # no_builtin_flag separately\n    if test \"$GXX\" = yes; then\n      lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin'\n    else\n      lt_prog_compiler_no_builtin_flag_CXX=\n    fi\n\n    if test \"$GXX\" = yes; then\n      # Set up default GNU C++ configuration\n\n\n\n# Check whether --with-gnu-ld was given.\nif test \"${with_gnu_ld+set}\" = set; then\n  withval=$with_gnu_ld; test \"$withval\" = no || with_gnu_ld=yes\nelse\n  with_gnu_ld=no\nfi\n\nac_prog=ld\nif test \"$GCC\" = yes; then\n  # Check if gcc -print-prog-name=ld gives a path.\n  { echo \"$as_me:$LINENO: checking for ld used by $CC\" >&5\necho $ECHO_N \"checking for ld used by $CC... $ECHO_C\" >&6; }\n  case $host in\n  *-*-mingw*)\n    # gcc leaves a trailing carriage return which upsets mingw\n    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\\015'` ;;\n  *)\n    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;\n  esac\n  case $ac_prog in\n    # Accept absolute paths.\n    [\\\\/]* | ?:[\\\\/]*)\n      re_direlt='/[^/][^/]*/\\.\\./'\n      # Canonicalize the pathname of ld\n      ac_prog=`$ECHO \"$ac_prog\"| $SED 's%\\\\\\\\%/%g'`\n      while $ECHO \"$ac_prog\" | $GREP \"$re_direlt\" > /dev/null 2>&1; do\n\tac_prog=`$ECHO $ac_prog| $SED \"s%$re_direlt%/%\"`\n      done\n      test -z \"$LD\" && LD=\"$ac_prog\"\n      ;;\n  \"\")\n    # If it fails, then pretend we aren't using GCC.\n    ac_prog=ld\n    ;;\n  *)\n    # If it is relative, then search for the first ld in PATH.\n    with_gnu_ld=unknown\n    ;;\n  esac\nelif test \"$with_gnu_ld\" = yes; then\n  { echo \"$as_me:$LINENO: checking for GNU ld\" >&5\necho $ECHO_N \"checking for GNU ld... $ECHO_C\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: checking for non-GNU ld\" >&5\necho $ECHO_N \"checking for non-GNU ld... $ECHO_C\" >&6; }\nfi\nif test \"${lt_cv_path_LD+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  if test -z \"$LD\"; then\n  lt_save_ifs=\"$IFS\"; IFS=$PATH_SEPARATOR\n  for ac_dir in $PATH; do\n    IFS=\"$lt_save_ifs\"\n    test -z \"$ac_dir\" && ac_dir=.\n    if test -f \"$ac_dir/$ac_prog\" || test -f \"$ac_dir/$ac_prog$ac_exeext\"; then\n      lt_cv_path_LD=\"$ac_dir/$ac_prog\"\n      # Check to see if the program is GNU ld.  I'd rather use --version,\n      # but apparently some variants of GNU ld only accept -v.\n      # Break only if it was the GNU/non-GNU ld that we prefer.\n      case `\"$lt_cv_path_LD\" -v 2>&1 </dev/null` in\n      *GNU* | *'with BFD'*)\n\ttest \"$with_gnu_ld\" != no && break\n\t;;\n      *)\n\ttest \"$with_gnu_ld\" != yes && break\n\t;;\n      esac\n    fi\n  done\n  IFS=\"$lt_save_ifs\"\nelse\n  lt_cv_path_LD=\"$LD\" # Let the user override the test with a path.\nfi\nfi\n\nLD=\"$lt_cv_path_LD\"\nif test -n \"$LD\"; then\n  { echo \"$as_me:$LINENO: result: $LD\" >&5\necho \"${ECHO_T}$LD\" >&6; }\nelse\n  { echo \"$as_me:$LINENO: result: no\" >&5\necho \"${ECHO_T}no\" >&6; }\nfi\ntest -z \"$LD\" && { { echo \"$as_me:$LINENO: error: no acceptable ld found in \\$PATH\" >&5\necho \"$as_me: error: no acceptable ld found in \\$PATH\" >&2;}\n   { (exit 1); exit 1; }; }\n{ echo \"$as_me:$LINENO: checking if the linker ($LD) is GNU ld\" >&5\necho $ECHO_N \"checking if the linker ($LD) is GNU ld... $ECHO_C\" >&6; }\nif test \"${lt_cv_prog_gnu_ld+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  # I'd rather use --version here, but apparently some GNU lds only accept -v.\ncase `$LD -v 2>&1 </dev/null` in\n*GNU* | *'with BFD'*)\n  lt_cv_prog_gnu_ld=yes\n  ;;\n*)\n  lt_cv_prog_gnu_ld=no\n  ;;\nesac\nfi\n{ echo \"$as_me:$LINENO: result: $lt_cv_prog_gnu_ld\" >&5\necho \"${ECHO_T}$lt_cv_prog_gnu_ld\" >&6; }\nwith_gnu_ld=$lt_cv_prog_gnu_ld\n\n\n\n\n\n\n\n      # Check if GNU C++ uses GNU ld as the underlying linker, since the\n      # archiving commands below assume that GNU ld is being used.\n      if test \"$with_gnu_ld\" = yes; then\n        archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'\n        archive_expsym_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'\n\n        hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir'\n        export_dynamic_flag_spec_CXX='${wl}--export-dynamic'\n\n        # If archive_cmds runs LD, not CC, wlarc should be empty\n        # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to\n        #     investigate it a little bit more. (MM)\n        wlarc='${wl}'\n\n        # ancient GNU ld didn't support --whole-archive et. al.\n        if eval \"`$CC -print-prog-name=ld` --help 2>&1\" |\n\t  $GREP 'no-whole-archive' > /dev/null; then\n          whole_archive_flag_spec_CXX=\"$wlarc\"'--whole-archive$convenience '\"$wlarc\"'--no-whole-archive'\n        else\n          whole_archive_flag_spec_CXX=\n        fi\n      else\n        with_gnu_ld=no\n        wlarc=\n\n        # A generic and very simple default shared library creation\n        # command for GNU C++ for the case where it uses the native\n        # linker, instead of GNU ld.  If possible, this setting should\n        # overridden to take advantage of the native linker features on\n        # the platform it is being used on.\n        archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'\n      fi\n\n      # Commands to make compiler produce verbose output that lists\n      # what \"hidden\" libraries, object files and flags are used when\n      # linking a shared library.\n      output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v \"^Configured with:\" | $GREP \"\\-L\"'\n\n    else\n      GXX=no\n      with_gnu_ld=no\n      wlarc=\n    fi\n\n    # PORTME: fill in a description of your system's C++ link characteristics\n    { echo \"$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries\" >&5\necho $ECHO_N \"checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C\" >&6; }\n    ld_shlibs_CXX=yes\n    case $host_os in\n      aix3*)\n        # FIXME: insert proper C++ library support\n        ld_shlibs_CXX=no\n        ;;\n      aix[4-9]*)\n        if test \"$host_cpu\" = ia64; then\n          # On IA64, the linker does run time linking by default, so we don't\n          # have to do anything special.\n          aix_use_runtimelinking=no\n          exp_sym_flag='-Bexport'\n          no_entry_flag=\"\"\n        else\n          aix_use_runtimelinking=no\n\n          # Test if we are trying to use run time linking or normal\n          # AIX style linking. If -brtl is somewhere in LDFLAGS, we\n          # need to do runtime linking.\n          case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*)\n\t    for ld_flag in $LDFLAGS; do\n\t      case $ld_flag in\n\t      *-brtl*)\n\t        aix_use_runtimelinking=yes\n\t        break\n\t        ;;\n\t      esac\n\t    done\n\t    ;;\n          esac\n\n          exp_sym_flag='-bexport'\n          no_entry_flag='-bnoentry'\n        fi\n\n        # When large executables or shared objects are built, AIX ld can\n        # have problems creating the table of contents.  If linking a library\n        # or program results in \"error TOC overflow\" add -mminimal-toc to\n        # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not\n        # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.\n\n        archive_cmds_CXX=''\n        hardcode_direct_CXX=yes\n        hardcode_direct_absolute_CXX=yes\n        hardcode_libdir_separator_CXX=':'\n        link_all_deplibs_CXX=yes\n        file_list_spec_CXX='${wl}-f,'\n\n        if test \"$GXX\" = yes; then\n          case $host_os in aix4.[012]|aix4.[012].*)\n          # We only want to do this on AIX 4.2 and lower, the check\n          # below for broken collect2 doesn't work under 4.3+\n\t  collect2name=`${CC} -print-prog-name=collect2`\n\t  if test -f \"$collect2name\" &&\n\t     strings \"$collect2name\" | $GREP resolve_lib_name >/dev/null\n\t  then\n\t    # We have reworked collect2\n\t    :\n\t  else\n\t    # We have old collect2\n\t    hardcode_direct_CXX=unsupported\n\t    # It fails to find uninstalled libraries when the uninstalled\n\t    # path is not listed in the libpath.  Setting hardcode_minus_L\n\t    # to unsupported forces relinking\n\t    hardcode_minus_L_CXX=yes\n\t    hardcode_libdir_flag_spec_CXX='-L$libdir'\n\t    hardcode_libdir_separator_CXX=\n\t  fi\n          esac\n          shared_flag='-shared'\n\t  if test \"$aix_use_runtimelinking\" = yes; then\n\t    shared_flag=\"$shared_flag \"'${wl}-G'\n\t  fi\n        else\n          # not using gcc\n          if test \"$host_cpu\" = ia64; then\n\t  # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release\n\t  # chokes on -Wl,-G. The following line is correct:\n\t  shared_flag='-G'\n          else\n\t    if test \"$aix_use_runtimelinking\" = yes; then\n\t      shared_flag='${wl}-G'\n\t    else\n\t      shared_flag='${wl}-bM:SRE'\n\t    fi\n          fi\n        fi\n\n        export_dynamic_flag_spec_CXX='${wl}-bexpall'\n        # It seems that -bexpall does not export symbols beginning with\n        # underscore (_), so it is better to generate a list of symbols to\n\t# export.\n        always_export_symbols_CXX=yes\n        if test \"$aix_use_runtimelinking\" = yes; then\n          # Warning - without using the other runtime loading flags (-brtl),\n          # -berok will link without error, but may produce a broken library.\n          allow_undefined_flag_CXX='-berok'\n          # Determine the default libpath from the value encoded in an empty\n          # executable.\n          cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nrm -f conftest.$ac_objext conftest$ac_exeext\nif { (ac_try=\"$ac_link\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_link\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && {\n\t test -z \"$ac_cxx_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest$ac_exeext &&\n       $as_test_x conftest$ac_exeext; then\n\nlt_aix_libpath_sed='\n    /Import File Strings/,/^$/ {\n\t/^0/ {\n\t    s/^0  *\\(.*\\)$/\\1/\n\t    p\n\t}\n    }'\naix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e \"$lt_aix_libpath_sed\"`\n# Check for a 64-bit object if we didn't find anything.\nif test -z \"$aix_libpath\"; then\n  aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e \"$lt_aix_libpath_sed\"`\nfi\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\nfi\n\nrm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \\\n      conftest$ac_exeext conftest.$ac_ext\nif test -z \"$aix_libpath\"; then aix_libpath=\"/usr/lib:/lib\"; fi\n\n          hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'\"$aix_libpath\"\n\n          archive_expsym_cmds_CXX='$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\"\n        else\n          if test \"$host_cpu\" = ia64; then\n\t    hardcode_libdir_flag_spec_CXX='${wl}-R $libdir:/usr/lib:/lib'\n\t    allow_undefined_flag_CXX=\"-z nodefs\"\n\t    archive_expsym_cmds_CXX=\"\\$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\"\n          else\n\t    # Determine the default libpath from the value encoded in an\n\t    # empty executable.\n\t    cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nrm -f conftest.$ac_objext conftest$ac_exeext\nif { (ac_try=\"$ac_link\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_link\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && {\n\t test -z \"$ac_cxx_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest$ac_exeext &&\n       $as_test_x conftest$ac_exeext; then\n\nlt_aix_libpath_sed='\n    /Import File Strings/,/^$/ {\n\t/^0/ {\n\t    s/^0  *\\(.*\\)$/\\1/\n\t    p\n\t}\n    }'\naix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e \"$lt_aix_libpath_sed\"`\n# Check for a 64-bit object if we didn't find anything.\nif test -z \"$aix_libpath\"; then\n  aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e \"$lt_aix_libpath_sed\"`\nfi\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\nfi\n\nrm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \\\n      conftest$ac_exeext conftest.$ac_ext\nif test -z \"$aix_libpath\"; then aix_libpath=\"/usr/lib:/lib\"; fi\n\n\t    hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'\"$aix_libpath\"\n\t    # Warning - without using the other run time loading flags,\n\t    # -berok will link without error, but may produce a broken library.\n\t    no_undefined_flag_CXX=' ${wl}-bernotok'\n\t    allow_undefined_flag_CXX=' ${wl}-berok'\n\t    if test \"$with_gnu_ld\" = yes; then\n\t      # We only use this code for GNU lds that support --whole-archive.\n\t      whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive'\n\t    else\n\t      # Exported symbols can be pulled into shared objects from archives\n\t      whole_archive_flag_spec_CXX='$convenience'\n\t    fi\n\t    archive_cmds_need_lc_CXX=yes\n\t    # This is similar to how AIX traditionally builds its shared\n\t    # libraries.\n\t    archive_expsym_cmds_CXX=\"\\$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'\n          fi\n        fi\n        ;;\n\n      beos*)\n\tif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then\n\t  allow_undefined_flag_CXX=unsupported\n\t  # Joseph Beckenbach <jrb3@best.com> says some releases of gcc\n\t  # support --undefined.  This deserves some investigation.  FIXME\n\t  archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'\n\telse\n\t  ld_shlibs_CXX=no\n\tfi\n\t;;\n\n      chorus*)\n        case $cc_basename in\n          *)\n\t  # FIXME: insert proper C++ library support\n\t  ld_shlibs_CXX=no\n\t  ;;\n        esac\n        ;;\n\n      cygwin* | mingw* | pw32* | cegcc*)\n        # _LT_TAGVAR(hardcode_libdir_flag_spec, CXX) is actually meaningless,\n        # as there is no search path for DLLs.\n        hardcode_libdir_flag_spec_CXX='-L$libdir'\n        export_dynamic_flag_spec_CXX='${wl}--export-all-symbols'\n        allow_undefined_flag_CXX=unsupported\n        always_export_symbols_CXX=no\n        enable_shared_with_static_runtimes_CXX=yes\n\n        if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then\n          archive_cmds_CXX='$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'\n          # If the export-symbols file already is a .def file (1st line\n          # is EXPORTS), use it as is; otherwise, prepend...\n          archive_expsym_cmds_CXX='if test \"x`$SED 1q $export_symbols`\" = xEXPORTS; then\n\t    cp $export_symbols $output_objdir/$soname.def;\n          else\n\t    echo EXPORTS > $output_objdir/$soname.def;\n\t    cat $export_symbols >> $output_objdir/$soname.def;\n          fi~\n          $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'\n        else\n          ld_shlibs_CXX=no\n        fi\n        ;;\n      darwin* | rhapsody*)\n\n\n  archive_cmds_need_lc_CXX=no\n  hardcode_direct_CXX=no\n  hardcode_automatic_CXX=yes\n  hardcode_shlibpath_var_CXX=unsupported\n  if test \"$lt_cv_ld_force_load\" = \"yes\"; then\n    whole_archive_flag_spec_CXX='`for conv in $convenience\\\"\\\"; do test  -n \\\"$conv\\\" && new_convenience=\\\"$new_convenience ${wl}-force_load,$conv\\\"; done; func_echo_all \\\"$new_convenience\\\"`'\n  else\n    whole_archive_flag_spec_CXX=''\n  fi\n  link_all_deplibs_CXX=yes\n  allow_undefined_flag_CXX=\"$_lt_dar_allow_undefined\"\n  case $cc_basename in\n     ifort*) _lt_dar_can_shared=yes ;;\n     *) _lt_dar_can_shared=$GCC ;;\n  esac\n  if test \"$_lt_dar_can_shared\" = \"yes\"; then\n    output_verbose_link_cmd=func_echo_all\n    archive_cmds_CXX=\"\\$CC -dynamiclib \\$allow_undefined_flag -o \\$lib \\$libobjs \\$deplibs \\$compiler_flags -install_name \\$rpath/\\$soname \\$verstring $_lt_dar_single_mod${_lt_dsymutil}\"\n    module_cmds_CXX=\"\\$CC \\$allow_undefined_flag -o \\$lib -bundle \\$libobjs \\$deplibs \\$compiler_flags${_lt_dsymutil}\"\n    archive_expsym_cmds_CXX=\"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}\"\n    module_expsym_cmds_CXX=\"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}\"\n       if test \"$lt_cv_apple_cc_single_mod\" != \"yes\"; then\n      archive_cmds_CXX=\"\\$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}\"\n      archive_expsym_cmds_CXX=\"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}\"\n    fi\n\n  else\n  ld_shlibs_CXX=no\n  fi\n\n\t;;\n\n      dgux*)\n        case $cc_basename in\n          ec++*)\n\t    # FIXME: insert proper C++ library support\n\t    ld_shlibs_CXX=no\n\t    ;;\n          ghcx*)\n\t    # Green Hills C++ Compiler\n\t    # FIXME: insert proper C++ library support\n\t    ld_shlibs_CXX=no\n\t    ;;\n          *)\n\t    # FIXME: insert proper C++ library support\n\t    ld_shlibs_CXX=no\n\t    ;;\n        esac\n        ;;\n\n      freebsd[12]*)\n        # C++ shared libraries reported to be fairly broken before\n\t# switch to ELF\n        ld_shlibs_CXX=no\n        ;;\n\n      freebsd-elf*)\n        archive_cmds_need_lc_CXX=no\n        ;;\n\n      freebsd* | dragonfly*)\n        # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF\n        # conventions\n        ld_shlibs_CXX=yes\n        ;;\n\n      gnu*)\n        ;;\n\n      haiku*)\n        archive_cmds_CXX='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'\n        link_all_deplibs_CXX=yes\n        ;;\n\n      hpux9*)\n        hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir'\n        hardcode_libdir_separator_CXX=:\n        export_dynamic_flag_spec_CXX='${wl}-E'\n        hardcode_direct_CXX=yes\n        hardcode_minus_L_CXX=yes # Not in the search PATH,\n\t\t\t\t             # but as the default\n\t\t\t\t             # location of the library.\n\n        case $cc_basename in\n          CC*)\n            # FIXME: insert proper C++ library support\n            ld_shlibs_CXX=no\n            ;;\n          aCC*)\n            archive_cmds_CXX='$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'\n            # Commands to make compiler produce verbose output that lists\n            # what \"hidden\" libraries, object files and flags are used when\n            # linking a shared library.\n            #\n            # There doesn't appear to be a way to prevent this compiler from\n            # explicitly linking system object files so we need to strip them\n            # from the output so that they don't get included in the library\n            # dependencies.\n            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\"'\n            ;;\n          *)\n            if test \"$GXX\" = yes; then\n              archive_cmds_CXX='$RM $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${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'\n            else\n              # FIXME: insert proper C++ library support\n              ld_shlibs_CXX=no\n            fi\n            ;;\n        esac\n        ;;\n\n      hpux10*|hpux11*)\n        if test $with_gnu_ld = no; then\n\t  hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir'\n\t  hardcode_libdir_separator_CXX=:\n\n          case $host_cpu in\n            hppa*64*|ia64*)\n              ;;\n            *)\n\t      export_dynamic_flag_spec_CXX='${wl}-E'\n              ;;\n          esac\n        fi\n        case $host_cpu in\n          hppa*64*|ia64*)\n            hardcode_direct_CXX=no\n            hardcode_shlibpath_var_CXX=no\n            ;;\n          *)\n            hardcode_direct_CXX=yes\n            hardcode_direct_absolute_CXX=yes\n            hardcode_minus_L_CXX=yes # Not in the search PATH,\n\t\t\t\t\t         # but as the default\n\t\t\t\t\t         # location of the library.\n            ;;\n        esac\n\n        case $cc_basename in\n          CC*)\n\t    # FIXME: insert proper C++ library support\n\t    ld_shlibs_CXX=no\n\t    ;;\n          aCC*)\n\t    case $host_cpu in\n\t      hppa*64*)\n\t        archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'\n\t        ;;\n\t      ia64*)\n\t        archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'\n\t        ;;\n\t      *)\n\t        archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'\n\t        ;;\n\t    esac\n\t    # Commands to make compiler produce verbose output that lists\n\t    # what \"hidden\" libraries, object files and flags are used when\n\t    # linking a shared library.\n\t    #\n\t    # There doesn't appear to be a way to prevent this compiler from\n\t    # explicitly linking system object files so we need to strip them\n\t    # from the output so that they don't get included in the library\n\t    # dependencies.\n\t    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\"'\n\t    ;;\n          *)\n\t    if test \"$GXX\" = yes; then\n\t      if test $with_gnu_ld = no; then\n\t        case $host_cpu in\n\t          hppa*64*)\n\t            archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'\n\t            ;;\n\t          ia64*)\n\t            archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'\n\t            ;;\n\t          *)\n\t            archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'\n\t            ;;\n\t        esac\n\t      fi\n\t    else\n\t      # FIXME: insert proper C++ library support\n\t      ld_shlibs_CXX=no\n\t    fi\n\t    ;;\n        esac\n        ;;\n\n      interix[3-9]*)\n\thardcode_direct_CXX=no\n\thardcode_shlibpath_var_CXX=no\n\thardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir'\n\texport_dynamic_flag_spec_CXX='${wl}-E'\n\t# Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.\n\t# Instead, shared libraries are loaded at an image base (0x10000000 by\n\t# default) and relocated if they conflict, which is a slow very memory\n\t# consuming and fragmenting process.  To avoid this, we pick a random,\n\t# 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link\n\t# time.  Moving up from 0x10000000 also allows more sbrk(2) space.\n\tarchive_cmds_CXX='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \\* 262144 + 1342177280` -o $lib'\n\tarchive_expsym_cmds_CXX='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'\n\t;;\n      irix5* | irix6*)\n        case $cc_basename in\n          CC*)\n\t    # SGI C++\n\t    archive_cmds_CXX='$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'\n\n\t    # Archives containing C++ object files must be created using\n\t    # \"CC -ar\", where \"CC\" is the IRIX C++ compiler.  This is\n\t    # necessary to make sure instantiated templates are included\n\t    # in the archive.\n\t    old_archive_cmds_CXX='$CC -ar -WR,-u -o $oldlib $oldobjs'\n\t    ;;\n          *)\n\t    if test \"$GXX\" = yes; then\n\t      if test \"$with_gnu_ld\" = no; then\n\t        archive_cmds_CXX='$CC -shared -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'\n\t      else\n\t        archive_cmds_CXX='$CC -shared -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'\n\t      fi\n\t    fi\n\t    link_all_deplibs_CXX=yes\n\t    ;;\n        esac\n        hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir'\n        hardcode_libdir_separator_CXX=:\n        inherit_rpath_CXX=yes\n        ;;\n\n      linux* | k*bsd*-gnu | kopensolaris*-gnu)\n        case $cc_basename in\n          KCC*)\n\t    # Kuck and Associates, Inc. (KAI) C++ Compiler\n\n\t    # KCC will only create a shared library if the output file\n\t    # ends with \".so\" (or \".sl\" for HP-UX), so rename the library\n\t    # to its proper name (with version) after linking.\n\t    archive_cmds_CXX='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'\n\t    archive_expsym_cmds_CXX='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'\n\t    # Commands to make compiler produce verbose output that lists\n\t    # what \"hidden\" libraries, object files and flags are used when\n\t    # linking a shared library.\n\t    #\n\t    # There doesn't appear to be a way to prevent this compiler from\n\t    # explicitly linking system object files so we need to strip them\n\t    # from the output so that they don't get included in the library\n\t    # dependencies.\n\t    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\"'\n\n\t    hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir'\n\t    export_dynamic_flag_spec_CXX='${wl}--export-dynamic'\n\n\t    # Archives containing C++ object files must be created using\n\t    # \"CC -Bstatic\", where \"CC\" is the KAI C++ compiler.\n\t    old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs'\n\t    ;;\n\t  icpc* | ecpc* )\n\t    # Intel C++\n\t    with_gnu_ld=yes\n\t    # version 8.0 and above of icpc choke on multiply defined symbols\n\t    # if we add $predep_objects and $postdep_objects, however 7.1 and\n\t    # earlier do not add the objects themselves.\n\t    case `$CC -V 2>&1` in\n\t      *\"Version 7.\"*)\n\t        archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'\n\t\tarchive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'\n\t\t;;\n\t      *)  # Version 8.0 or newer\n\t        tmp_idyn=\n\t        case $host_cpu in\n\t\t  ia64*) tmp_idyn=' -i_dynamic';;\n\t\tesac\n\t        archive_cmds_CXX='$CC -shared'\"$tmp_idyn\"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'\n\t\tarchive_expsym_cmds_CXX='$CC -shared'\"$tmp_idyn\"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'\n\t\t;;\n\t    esac\n\t    archive_cmds_need_lc_CXX=no\n\t    hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir'\n\t    export_dynamic_flag_spec_CXX='${wl}--export-dynamic'\n\t    whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive'\n\t    ;;\n          pgCC* | pgcpp*)\n            # Portland Group C++ compiler\n\t    case `$CC -V` in\n\t    *pgCC\\ [1-5].* | *pgcpp\\ [1-5].*)\n\t      prelink_cmds_CXX='tpldir=Template.dir~\n\t\trm -rf $tpldir~\n\t\t$CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~\n\t\tcompile_command=\"$compile_command `find $tpldir -name \\*.o | sort | $NL2SP`\"'\n\t      old_archive_cmds_CXX='tpldir=Template.dir~\n\t\trm -rf $tpldir~\n\t\t$CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~\n\t\t$AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \\*.o | sort | $NL2SP`~\n\t\t$RANLIB $oldlib'\n\t      archive_cmds_CXX='tpldir=Template.dir~\n\t\trm -rf $tpldir~\n\t\t$CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~\n\t\t$CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \\*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'\n\t      archive_expsym_cmds_CXX='tpldir=Template.dir~\n\t\trm -rf $tpldir~\n\t\t$CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~\n\t\t$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'\n\t      ;;\n\t    *) # Version 6 and above use weak symbols\n\t      archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'\n\t      archive_expsym_cmds_CXX='$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'\n\t      ;;\n\t    esac\n\n\t    hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir'\n\t    export_dynamic_flag_spec_CXX='${wl}--export-dynamic'\n\t    whole_archive_flag_spec_CXX='${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'\n            ;;\n\t  cxx*)\n\t    # Compaq C++\n\t    archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'\n\t    archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname  -o $lib ${wl}-retain-symbols-file $wl$export_symbols'\n\n\t    runpath_var=LD_RUN_PATH\n\t    hardcode_libdir_flag_spec_CXX='-rpath $libdir'\n\t    hardcode_libdir_separator_CXX=:\n\n\t    # Commands to make compiler produce verbose output that lists\n\t    # what \"hidden\" libraries, object files and flags are used when\n\t    # linking a shared library.\n\t    #\n\t    # There doesn't appear to be a way to prevent this compiler from\n\t    # explicitly linking system object files so we need to strip them\n\t    # from the output so that they don't get included in the library\n\t    # dependencies.\n\t    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'\n\t    ;;\n\t  xl* | mpixl* | bgxl*)\n\t    # IBM XL 8.0 on PPC, with GNU ld\n\t    hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir'\n\t    export_dynamic_flag_spec_CXX='${wl}--export-dynamic'\n\t    archive_cmds_CXX='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'\n\t    if test \"x$supports_anon_versioning\" = xyes; then\n\t      archive_expsym_cmds_CXX='echo \"{ global:\" > $output_objdir/$libname.ver~\n\t\tcat $export_symbols | sed -e \"s/\\(.*\\)/\\1;/\" >> $output_objdir/$libname.ver~\n\t\techo \"local: *; };\" >> $output_objdir/$libname.ver~\n\t\t$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'\n\t    fi\n\t    ;;\n\t  *)\n\t    case `$CC -V 2>&1 | sed 5q` in\n\t    *Sun\\ C*)\n\t      # Sun C++ 5.9\n\t      no_undefined_flag_CXX=' -zdefs'\n\t      archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'\n\t      archive_expsym_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols'\n\t      hardcode_libdir_flag_spec_CXX='-R$libdir'\n\t      whole_archive_flag_spec_CXX='${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'\n\t      compiler_needs_object_CXX=yes\n\n\t      # Not sure whether something based on\n\t      # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1\n\t      # would be better.\n\t      output_verbose_link_cmd='func_echo_all'\n\n\t      # Archives containing C++ object files must be created using\n\t      # \"CC -xar\", where \"CC\" is the Sun C++ compiler.  This is\n\t      # necessary to make sure instantiated templates are included\n\t      # in the archive.\n\t      old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs'\n\t      ;;\n\t    esac\n\t    ;;\n\tesac\n\t;;\n\n      lynxos*)\n        # FIXME: insert proper C++ library support\n\tld_shlibs_CXX=no\n\t;;\n\n      m88k*)\n        # FIXME: insert proper C++ library support\n        ld_shlibs_CXX=no\n\t;;\n\n      mvs*)\n        case $cc_basename in\n          cxx*)\n\t    # FIXME: insert proper C++ library support\n\t    ld_shlibs_CXX=no\n\t    ;;\n\t  *)\n\t    # FIXME: insert proper C++ library support\n\t    ld_shlibs_CXX=no\n\t    ;;\n\tesac\n\t;;\n\n      netbsd*)\n        if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then\n\t  archive_cmds_CXX='$LD -Bshareable  -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags'\n\t  wlarc=\n\t  hardcode_libdir_flag_spec_CXX='-R$libdir'\n\t  hardcode_direct_CXX=yes\n\t  hardcode_shlibpath_var_CXX=no\n\tfi\n\t# Workaround some broken pre-1.5 toolchains\n\toutput_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e \"s:-lgcc -lc -lgcc::\"'\n\t;;\n\n      *nto* | *qnx*)\n        ld_shlibs_CXX=yes\n\t;;\n\n      openbsd2*)\n        # C++ shared libraries are fairly broken\n\tld_shlibs_CXX=no\n\t;;\n\n      openbsd*)\n\tif test -f /usr/libexec/ld.so; then\n\t  hardcode_direct_CXX=yes\n\t  hardcode_shlibpath_var_CXX=no\n\t  hardcode_direct_absolute_CXX=yes\n\t  archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'\n\t  hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir'\n\t  if test -z \"`echo __ELF__ | $CC -E - | grep __ELF__`\" || test \"$host_os-$host_cpu\" = \"openbsd2.8-powerpc\"; then\n\t    archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib'\n\t    export_dynamic_flag_spec_CXX='${wl}-E'\n\t    whole_archive_flag_spec_CXX=\"$wlarc\"'--whole-archive$convenience '\"$wlarc\"'--no-whole-archive'\n\t  fi\n\t  output_verbose_link_cmd=func_echo_all\n\telse\n\t  ld_shlibs_CXX=no\n\tfi\n\t;;\n\n      osf3* | osf4* | osf5*)\n        case $cc_basename in\n          KCC*)\n\t    # Kuck and Associates, Inc. (KAI) C++ Compiler\n\n\t    # KCC will only create a shared library if the output file\n\t    # ends with \".so\" (or \".sl\" for HP-UX), so rename the library\n\t    # to its proper name (with version) after linking.\n\t    archive_cmds_CXX='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'\n\n\t    hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir'\n\t    hardcode_libdir_separator_CXX=:\n\n\t    # Archives containing C++ object files must be created using\n\t    # the KAI C++ compiler.\n\t    case $host in\n\t      osf3*) old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;;\n\t      *) old_archive_cmds_CXX='$CC -o $oldlib $oldobjs' ;;\n\t    esac\n\t    ;;\n          RCC*)\n\t    # Rational C++ 2.4.1\n\t    # FIXME: insert proper C++ library support\n\t    ld_shlibs_CXX=no\n\t    ;;\n          cxx*)\n\t    case $host in\n\t      osf3*)\n\t        allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\\*'\n\t        archive_cmds_CXX='$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'\n\t        hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir'\n\t\t;;\n\t      *)\n\t        allow_undefined_flag_CXX=' -expect_unresolved \\*'\n\t        archive_cmds_CXX='$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'\n\t        archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf \"%s %s\\\\n\" -exported_symbol \"\\$i\" >> $lib.exp; done~\n\t          echo \"-hidden\">> $lib.exp~\n\t          $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~\n\t          $RM $lib.exp'\n\t        hardcode_libdir_flag_spec_CXX='-rpath $libdir'\n\t\t;;\n\t    esac\n\n\t    hardcode_libdir_separator_CXX=:\n\n\t    # Commands to make compiler produce verbose output that lists\n\t    # what \"hidden\" libraries, object files and flags are used when\n\t    # linking a shared library.\n\t    #\n\t    # There doesn't appear to be a way to prevent this compiler from\n\t    # explicitly linking system object files so we need to strip them\n\t    # from the output so that they don't get included in the library\n\t    # dependencies.\n\t    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\"'\n\t    ;;\n\t  *)\n\t    if test \"$GXX\" = yes && test \"$with_gnu_ld\" = no; then\n\t      allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\\*'\n\t      case $host in\n\t        osf3*)\n\t          archive_cmds_CXX='$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'\n\t\t  ;;\n\t        *)\n\t          archive_cmds_CXX='$CC -shared -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'\n\t\t  ;;\n\t      esac\n\n\t      hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir'\n\t      hardcode_libdir_separator_CXX=:\n\n\t      # Commands to make compiler produce verbose output that lists\n\t      # what \"hidden\" libraries, object files and flags are used when\n\t      # linking a shared library.\n\t      output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v \"^Configured with:\" | $GREP \"\\-L\"'\n\n\t    else\n\t      # FIXME: insert proper C++ library support\n\t      ld_shlibs_CXX=no\n\t    fi\n\t    ;;\n        esac\n        ;;\n\n      psos*)\n        # FIXME: insert proper C++ library support\n        ld_shlibs_CXX=no\n        ;;\n\n      sunos4*)\n        case $cc_basename in\n          CC*)\n\t    # Sun C++ 4.x\n\t    # FIXME: insert proper C++ library support\n\t    ld_shlibs_CXX=no\n\t    ;;\n          lcc*)\n\t    # Lucid\n\t    # FIXME: insert proper C++ library support\n\t    ld_shlibs_CXX=no\n\t    ;;\n          *)\n\t    # FIXME: insert proper C++ library support\n\t    ld_shlibs_CXX=no\n\t    ;;\n        esac\n        ;;\n\n      solaris*)\n        case $cc_basename in\n          CC* | sunCC*)\n\t    # Sun C++ 4.2, 5.x and Centerline C++\n            archive_cmds_need_lc_CXX=yes\n\t    no_undefined_flag_CXX=' -zdefs'\n\t    archive_cmds_CXX='$CC -G${allow_undefined_flag}  -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'\n\t    archive_expsym_cmds_CXX='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n\t      $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'\n\n\t    hardcode_libdir_flag_spec_CXX='-R$libdir'\n\t    hardcode_shlibpath_var_CXX=no\n\t    case $host_os in\n\t      solaris2.[0-5] | solaris2.[0-5].*) ;;\n\t      *)\n\t\t# The compiler driver will combine and reorder linker options,\n\t\t# but understands `-z linker_flag'.\n\t        # Supported since Solaris 2.6 (maybe 2.5.1?)\n\t\twhole_archive_flag_spec_CXX='-z allextract$convenience -z defaultextract'\n\t        ;;\n\t    esac\n\t    link_all_deplibs_CXX=yes\n\n\t    output_verbose_link_cmd='func_echo_all'\n\n\t    # Archives containing C++ object files must be created using\n\t    # \"CC -xar\", where \"CC\" is the Sun C++ compiler.  This is\n\t    # necessary to make sure instantiated templates are included\n\t    # in the archive.\n\t    old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs'\n\t    ;;\n          gcx*)\n\t    # Green Hills C++ Compiler\n\t    archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'\n\n\t    # The C++ compiler must be used to create the archive.\n\t    old_archive_cmds_CXX='$CC $LDFLAGS -archive -o $oldlib $oldobjs'\n\t    ;;\n          *)\n\t    # GNU C++ compiler with Solaris linker\n\t    if test \"$GXX\" = yes && test \"$with_gnu_ld\" = no; then\n\t      no_undefined_flag_CXX=' ${wl}-z ${wl}defs'\n\t      if $CC --version | $GREP -v '^2\\.7' > /dev/null; then\n\t        archive_cmds_CXX='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'\n\t        archive_expsym_cmds_CXX='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n\t\t  $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'\n\n\t        # Commands to make compiler produce verbose output that lists\n\t        # what \"hidden\" libraries, object files and flags are used when\n\t        # linking a shared library.\n\t        output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v \"^Configured with:\" | $GREP \"\\-L\"'\n\t      else\n\t        # g++ 2.7 appears to require `-G' NOT `-shared' on this\n\t        # platform.\n\t        archive_cmds_CXX='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'\n\t        archive_expsym_cmds_CXX='echo \"{ global:\" > $lib.exp~cat $export_symbols | $SED -e \"s/\\(.*\\)/\\1;/\" >> $lib.exp~echo \"local: *; };\" >> $lib.exp~\n\t\t  $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'\n\n\t        # Commands to make compiler produce verbose output that lists\n\t        # what \"hidden\" libraries, object files and flags are used when\n\t        # linking a shared library.\n\t        output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v \"^Configured with:\" | $GREP \"\\-L\"'\n\t      fi\n\n\t      hardcode_libdir_flag_spec_CXX='${wl}-R $wl$libdir'\n\t      case $host_os in\n\t\tsolaris2.[0-5] | solaris2.[0-5].*) ;;\n\t\t*)\n\t\t  whole_archive_flag_spec_CXX='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'\n\t\t  ;;\n\t      esac\n\t    fi\n\t    ;;\n        esac\n        ;;\n\n    sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*)\n      no_undefined_flag_CXX='${wl}-z,text'\n      archive_cmds_need_lc_CXX=no\n      hardcode_shlibpath_var_CXX=no\n      runpath_var='LD_RUN_PATH'\n\n      case $cc_basename in\n        CC*)\n\t  archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n\t*)\n\t  archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t  ;;\n      esac\n      ;;\n\n      sysv5* | sco3.2v5* | sco5v6*)\n\t# Note: We can NOT use -z defs as we might desire, because we do not\n\t# link with -lc, and that would cause any symbols used from libc to\n\t# always be unresolved, which means just about no library would\n\t# ever link correctly.  If we're not using GNU ld we use -z text\n\t# though, which does catch some bad symbols but isn't as heavy-handed\n\t# as -z defs.\n\tno_undefined_flag_CXX='${wl}-z,text'\n\tallow_undefined_flag_CXX='${wl}-z,nodefs'\n\tarchive_cmds_need_lc_CXX=no\n\thardcode_shlibpath_var_CXX=no\n\thardcode_libdir_flag_spec_CXX='${wl}-R,$libdir'\n\thardcode_libdir_separator_CXX=':'\n\tlink_all_deplibs_CXX=yes\n\texport_dynamic_flag_spec_CXX='${wl}-Bexport'\n\trunpath_var='LD_RUN_PATH'\n\n\tcase $cc_basename in\n          CC*)\n\t    archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t    archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t    old_archive_cmds_CXX='$CC -Tprelink_objects $oldobjs~\n\t      '\"$old_archive_cmds_CXX\"\n\t    reload_cmds_CXX='$CC -Tprelink_objects $reload_objs~\n\t      '\"$reload_cmds_CXX\"\n\t    ;;\n\t  *)\n\t    archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t    archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'\n\t    ;;\n\tesac\n      ;;\n\n      tandem*)\n        case $cc_basename in\n          NCC*)\n\t    # NonStop-UX NCC 3.20\n\t    # FIXME: insert proper C++ library support\n\t    ld_shlibs_CXX=no\n\t    ;;\n          *)\n\t    # FIXME: insert proper C++ library support\n\t    ld_shlibs_CXX=no\n\t    ;;\n        esac\n        ;;\n\n      vxworks*)\n        # FIXME: insert proper C++ library support\n        ld_shlibs_CXX=no\n        ;;\n\n      *)\n        # FIXME: insert proper C++ library support\n        ld_shlibs_CXX=no\n        ;;\n    esac\n\n    { echo \"$as_me:$LINENO: result: $ld_shlibs_CXX\" >&5\necho \"${ECHO_T}$ld_shlibs_CXX\" >&6; }\n    test \"$ld_shlibs_CXX\" = no && can_build_shared=no\n\n    GCC_CXX=\"$GXX\"\n    LD_CXX=\"$LD\"\n\n    ## CAVEAT EMPTOR:\n    ## There is no encapsulation within the following macros, do not change\n    ## the running order or otherwise move them around unless you know exactly\n    ## what you are doing...\n    # Dependencies to place before and after the object being linked:\npredep_objects_CXX=\npostdep_objects_CXX=\npredeps_CXX=\npostdeps_CXX=\ncompiler_lib_search_path_CXX=\n\ncat > conftest.$ac_ext <<_LT_EOF\nclass Foo\n{\npublic:\n  Foo (void) { a = 0; }\nprivate:\n  int a;\n};\n_LT_EOF\n\nif { (eval echo \"$as_me:$LINENO: \\\"$ac_compile\\\"\") >&5\n  (eval $ac_compile) 2>&5\n  ac_status=$?\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); }; then\n  # Parse the compiler output and extract the necessary\n  # objects, libraries and library flags.\n\n  # Sentinel used to keep track of whether or not we are before\n  # the conftest object file.\n  pre_test_object_deps_done=no\n\n  for p in `eval \"$output_verbose_link_cmd\"`; do\n    case $p in\n\n    -L* | -R* | -l*)\n       # Some compilers place space between \"-{L,R}\" and the path.\n       # Remove the space.\n       if test $p = \"-L\" ||\n          test $p = \"-R\"; then\n\t prev=$p\n\t continue\n       else\n\t prev=\n       fi\n\n       if test \"$pre_test_object_deps_done\" = no; then\n\t case $p in\n\t -L* | -R*)\n\t   # Internal compiler library paths should come after those\n\t   # provided the user.  The postdeps already come after the\n\t   # user supplied libs so there is no need to process them.\n\t   if test -z \"$compiler_lib_search_path_CXX\"; then\n\t     compiler_lib_search_path_CXX=\"${prev}${p}\"\n\t   else\n\t     compiler_lib_search_path_CXX=\"${compiler_lib_search_path_CXX} ${prev}${p}\"\n\t   fi\n\t   ;;\n\t # The \"-l\" case would never come before the object being\n\t # linked, so don't bother handling this case.\n\t esac\n       else\n\t if test -z \"$postdeps_CXX\"; then\n\t   postdeps_CXX=\"${prev}${p}\"\n\t else\n\t   postdeps_CXX=\"${postdeps_CXX} ${prev}${p}\"\n\t fi\n       fi\n       ;;\n\n    *.$objext)\n       # This assumes that the test object file only shows up\n       # once in the compiler output.\n       if test \"$p\" = \"conftest.$objext\"; then\n\t pre_test_object_deps_done=yes\n\t continue\n       fi\n\n       if test \"$pre_test_object_deps_done\" = no; then\n\t if test -z \"$predep_objects_CXX\"; then\n\t   predep_objects_CXX=\"$p\"\n\t else\n\t   predep_objects_CXX=\"$predep_objects_CXX $p\"\n\t fi\n       else\n\t if test -z \"$postdep_objects_CXX\"; then\n\t   postdep_objects_CXX=\"$p\"\n\t else\n\t   postdep_objects_CXX=\"$postdep_objects_CXX $p\"\n\t fi\n       fi\n       ;;\n\n    *) ;; # Ignore the rest.\n\n    esac\n  done\n\n  # Clean up.\n  rm -f a.out a.exe\nelse\n  echo \"libtool.m4: error: problem compiling CXX test program\"\nfi\n\n$RM -f confest.$objext\n\n# PORTME: override above test on systems where it is broken\ncase $host_os in\ninterix[3-9]*)\n  # Interix 3.5 installs completely hosed .la files for C++, so rather than\n  # hack all around it, let's just trust \"g++\" to DTRT.\n  predep_objects_CXX=\n  postdep_objects_CXX=\n  postdeps_CXX=\n  ;;\n\nlinux*)\n  case `$CC -V 2>&1 | sed 5q` in\n  *Sun\\ C*)\n    # Sun C++ 5.9\n\n    # The more standards-conforming stlport4 library is\n    # incompatible with the Cstd library. Avoid specifying\n    # it if it's in CXXFLAGS. Ignore libCrun as\n    # -library=stlport4 depends on it.\n    case \" $CXX $CXXFLAGS \" in\n    *\" -library=stlport4 \"*)\n      solaris_use_stlport4=yes\n      ;;\n    esac\n\n    if test \"$solaris_use_stlport4\" != yes; then\n      postdeps_CXX='-library=Cstd -library=Crun'\n    fi\n    ;;\n  esac\n  ;;\n\nsolaris*)\n  case $cc_basename in\n  CC* | sunCC*)\n    # The more standards-conforming stlport4 library is\n    # incompatible with the Cstd library. Avoid specifying\n    # it if it's in CXXFLAGS. Ignore libCrun as\n    # -library=stlport4 depends on it.\n    case \" $CXX $CXXFLAGS \" in\n    *\" -library=stlport4 \"*)\n      solaris_use_stlport4=yes\n      ;;\n    esac\n\n    # Adding this requires a known-good setup of shared libraries for\n    # Sun compiler versions before 5.6, else PIC objects from an old\n    # archive will be linked into the output, leading to subtle bugs.\n    if test \"$solaris_use_stlport4\" != yes; then\n      postdeps_CXX='-library=Cstd -library=Crun'\n    fi\n    ;;\n  esac\n  ;;\nesac\n\n\ncase \" $postdeps_CXX \" in\n*\" -lc \"*) archive_cmds_need_lc_CXX=no ;;\nesac\n compiler_lib_search_dirs_CXX=\nif test -n \"${compiler_lib_search_path_CXX}\"; then\n compiler_lib_search_dirs_CXX=`echo \" ${compiler_lib_search_path_CXX}\" | ${SED} -e 's! -L! !g' -e 's!^ !!'`\nfi\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    lt_prog_compiler_wl_CXX=\nlt_prog_compiler_pic_CXX=\nlt_prog_compiler_static_CXX=\n\n{ echo \"$as_me:$LINENO: checking for $compiler option to produce PIC\" >&5\necho $ECHO_N \"checking for $compiler option to produce PIC... $ECHO_C\" >&6; }\n\n  # C++ specific cases for pic, static, wl, etc.\n  if test \"$GXX\" = yes; then\n    lt_prog_compiler_wl_CXX='-Wl,'\n    lt_prog_compiler_static_CXX='-static'\n\n    case $host_os in\n    aix*)\n      # All AIX code is PIC.\n      if test \"$host_cpu\" = ia64; then\n\t# AIX 5 now supports IA64 processor\n\tlt_prog_compiler_static_CXX='-Bstatic'\n      fi\n      ;;\n\n    amigaos*)\n      case $host_cpu in\n      powerpc)\n            # see comment about AmigaOS4 .so support\n            lt_prog_compiler_pic_CXX='-fPIC'\n        ;;\n      m68k)\n            # FIXME: we need at least 68020 code to build shared libraries, but\n            # adding the `-m68020' flag to GCC prevents building anything better,\n            # like `-m68040'.\n            lt_prog_compiler_pic_CXX='-m68020 -resident32 -malways-restore-a4'\n        ;;\n      esac\n      ;;\n\n    beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)\n      # PIC is the default for these OSes.\n      ;;\n    mingw* | cygwin* | os2* | pw32* | cegcc*)\n      # This hack is so that the source file can tell whether it is being\n      # built for inclusion in a dll (and should export symbols for example).\n      # Although the cygwin gcc ignores -fPIC, still need this for old-style\n      # (--disable-auto-import) libraries\n      lt_prog_compiler_pic_CXX='-DDLL_EXPORT'\n      ;;\n    darwin* | rhapsody*)\n      # PIC is the default on this platform\n      # Common symbols not allowed in MH_DYLIB files\n      lt_prog_compiler_pic_CXX='-fno-common'\n      ;;\n    *djgpp*)\n      # DJGPP does not support shared libraries at all\n      lt_prog_compiler_pic_CXX=\n      ;;\n    haiku*)\n      # PIC is the default for Haiku.\n      # The \"-static\" flag exists, but is broken.\n      lt_prog_compiler_static_CXX=\n      ;;\n    interix[3-9]*)\n      # Interix 3.x gcc -fpic/-fPIC options generate broken code.\n      # Instead, we relocate shared libraries at runtime.\n      ;;\n    sysv4*MP*)\n      if test -d /usr/nec; then\n\tlt_prog_compiler_pic_CXX=-Kconform_pic\n      fi\n      ;;\n    hpux*)\n      # PIC is the default for 64-bit PA HP-UX, but not for 32-bit\n      # PA HP-UX.  On IA64 HP-UX, PIC is the default but the pic flag\n      # sets the default TLS model and affects inlining.\n      case $host_cpu in\n      hppa*64*)\n\t;;\n      *)\n\tlt_prog_compiler_pic_CXX='-fPIC'\n\t;;\n      esac\n      ;;\n    *qnx* | *nto*)\n      # QNX uses GNU C++, but need to define -shared option too, otherwise\n      # it will coredump.\n      lt_prog_compiler_pic_CXX='-fPIC -shared'\n      ;;\n    *)\n      lt_prog_compiler_pic_CXX='-fPIC'\n      ;;\n    esac\n  else\n    case $host_os in\n      aix[4-9]*)\n\t# All AIX code is PIC.\n\tif test \"$host_cpu\" = ia64; then\n\t  # AIX 5 now supports IA64 processor\n\t  lt_prog_compiler_static_CXX='-Bstatic'\n\telse\n\t  lt_prog_compiler_static_CXX='-bnso -bI:/lib/syscalls.exp'\n\tfi\n\t;;\n      chorus*)\n\tcase $cc_basename in\n\tcxch68*)\n\t  # Green Hills C++ Compiler\n\t  # _LT_TAGVAR(lt_prog_compiler_static, CXX)=\"--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\"\n\t  ;;\n\tesac\n\t;;\n      dgux*)\n\tcase $cc_basename in\n\t  ec++*)\n\t    lt_prog_compiler_pic_CXX='-KPIC'\n\t    ;;\n\t  ghcx*)\n\t    # Green Hills C++ Compiler\n\t    lt_prog_compiler_pic_CXX='-pic'\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      freebsd* | dragonfly*)\n\t# FreeBSD uses GNU C++\n\t;;\n      hpux9* | hpux10* | hpux11*)\n\tcase $cc_basename in\n\t  CC*)\n\t    lt_prog_compiler_wl_CXX='-Wl,'\n\t    lt_prog_compiler_static_CXX='${wl}-a ${wl}archive'\n\t    if test \"$host_cpu\" != ia64; then\n\t      lt_prog_compiler_pic_CXX='+Z'\n\t    fi\n\t    ;;\n\t  aCC*)\n\t    lt_prog_compiler_wl_CXX='-Wl,'\n\t    lt_prog_compiler_static_CXX='${wl}-a ${wl}archive'\n\t    case $host_cpu in\n\t    hppa*64*|ia64*)\n\t      # +Z the default\n\t      ;;\n\t    *)\n\t      lt_prog_compiler_pic_CXX='+Z'\n\t      ;;\n\t    esac\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      interix*)\n\t# This is c89, which is MS Visual C++ (no shared libs)\n\t# Anyone wants to do a port?\n\t;;\n      irix5* | irix6* | nonstopux*)\n\tcase $cc_basename in\n\t  CC*)\n\t    lt_prog_compiler_wl_CXX='-Wl,'\n\t    lt_prog_compiler_static_CXX='-non_shared'\n\t    # CC pic flag -KPIC is the default.\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      linux* | k*bsd*-gnu | kopensolaris*-gnu)\n\tcase $cc_basename in\n\t  KCC*)\n\t    # KAI C++ Compiler\n\t    lt_prog_compiler_wl_CXX='--backend -Wl,'\n\t    lt_prog_compiler_pic_CXX='-fPIC'\n\t    ;;\n\t  ecpc* )\n\t    # old Intel C++ for x86_64 which still supported -KPIC.\n\t    lt_prog_compiler_wl_CXX='-Wl,'\n\t    lt_prog_compiler_pic_CXX='-KPIC'\n\t    lt_prog_compiler_static_CXX='-static'\n\t    ;;\n\t  icpc* )\n\t    # Intel C++, used to be incompatible with GCC.\n\t    # ICC 10 doesn't accept -KPIC any more.\n\t    lt_prog_compiler_wl_CXX='-Wl,'\n\t    lt_prog_compiler_pic_CXX='-fPIC'\n\t    lt_prog_compiler_static_CXX='-static'\n\t    ;;\n\t  pgCC* | pgcpp*)\n\t    # Portland Group C++ compiler\n\t    lt_prog_compiler_wl_CXX='-Wl,'\n\t    lt_prog_compiler_pic_CXX='-fpic'\n\t    lt_prog_compiler_static_CXX='-Bstatic'\n\t    ;;\n\t  cxx*)\n\t    # Compaq C++\n\t    # Make sure the PIC flag is empty.  It appears that all Alpha\n\t    # Linux and Compaq Tru64 Unix objects are PIC.\n\t    lt_prog_compiler_pic_CXX=\n\t    lt_prog_compiler_static_CXX='-non_shared'\n\t    ;;\n\t  xlc* | xlC* | bgxl[cC]* | mpixl[cC]*)\n\t    # IBM XL 8.0, 9.0 on PPC and BlueGene\n\t    lt_prog_compiler_wl_CXX='-Wl,'\n\t    lt_prog_compiler_pic_CXX='-qpic'\n\t    lt_prog_compiler_static_CXX='-qstaticlink'\n\t    ;;\n\t  *)\n\t    case `$CC -V 2>&1 | sed 5q` in\n\t    *Sun\\ C*)\n\t      # Sun C++ 5.9\n\t      lt_prog_compiler_pic_CXX='-KPIC'\n\t      lt_prog_compiler_static_CXX='-Bstatic'\n\t      lt_prog_compiler_wl_CXX='-Qoption ld '\n\t      ;;\n\t    esac\n\t    ;;\n\tesac\n\t;;\n      lynxos*)\n\t;;\n      m88k*)\n\t;;\n      mvs*)\n\tcase $cc_basename in\n\t  cxx*)\n\t    lt_prog_compiler_pic_CXX='-W c,exportall'\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      netbsd*)\n\t;;\n      *qnx* | *nto*)\n        # QNX uses GNU C++, but need to define -shared option too, otherwise\n        # it will coredump.\n        lt_prog_compiler_pic_CXX='-fPIC -shared'\n        ;;\n      osf3* | osf4* | osf5*)\n\tcase $cc_basename in\n\t  KCC*)\n\t    lt_prog_compiler_wl_CXX='--backend -Wl,'\n\t    ;;\n\t  RCC*)\n\t    # Rational C++ 2.4.1\n\t    lt_prog_compiler_pic_CXX='-pic'\n\t    ;;\n\t  cxx*)\n\t    # Digital/Compaq C++\n\t    lt_prog_compiler_wl_CXX='-Wl,'\n\t    # Make sure the PIC flag is empty.  It appears that all Alpha\n\t    # Linux and Compaq Tru64 Unix objects are PIC.\n\t    lt_prog_compiler_pic_CXX=\n\t    lt_prog_compiler_static_CXX='-non_shared'\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      psos*)\n\t;;\n      solaris*)\n\tcase $cc_basename in\n\t  CC* | sunCC*)\n\t    # Sun C++ 4.2, 5.x and Centerline C++\n\t    lt_prog_compiler_pic_CXX='-KPIC'\n\t    lt_prog_compiler_static_CXX='-Bstatic'\n\t    lt_prog_compiler_wl_CXX='-Qoption ld '\n\t    ;;\n\t  gcx*)\n\t    # Green Hills C++ Compiler\n\t    lt_prog_compiler_pic_CXX='-PIC'\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      sunos4*)\n\tcase $cc_basename in\n\t  CC*)\n\t    # Sun C++ 4.x\n\t    lt_prog_compiler_pic_CXX='-pic'\n\t    lt_prog_compiler_static_CXX='-Bstatic'\n\t    ;;\n\t  lcc*)\n\t    # Lucid\n\t    lt_prog_compiler_pic_CXX='-pic'\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)\n\tcase $cc_basename in\n\t  CC*)\n\t    lt_prog_compiler_wl_CXX='-Wl,'\n\t    lt_prog_compiler_pic_CXX='-KPIC'\n\t    lt_prog_compiler_static_CXX='-Bstatic'\n\t    ;;\n\tesac\n\t;;\n      tandem*)\n\tcase $cc_basename in\n\t  NCC*)\n\t    # NonStop-UX NCC 3.20\n\t    lt_prog_compiler_pic_CXX='-KPIC'\n\t    ;;\n\t  *)\n\t    ;;\n\tesac\n\t;;\n      vxworks*)\n\t;;\n      *)\n\tlt_prog_compiler_can_build_shared_CXX=no\n\t;;\n    esac\n  fi\n\ncase $host_os in\n  # For platforms which do not support PIC, -DPIC is meaningless:\n  *djgpp*)\n    lt_prog_compiler_pic_CXX=\n    ;;\n  *)\n    lt_prog_compiler_pic_CXX=\"$lt_prog_compiler_pic_CXX -DPIC\"\n    ;;\nesac\n{ echo \"$as_me:$LINENO: result: $lt_prog_compiler_pic_CXX\" >&5\necho \"${ECHO_T}$lt_prog_compiler_pic_CXX\" >&6; }\n\n\n\n#\n# Check to make sure the PIC flag actually works.\n#\nif test -n \"$lt_prog_compiler_pic_CXX\"; then\n  { echo \"$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works\" >&5\necho $ECHO_N \"checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... $ECHO_C\" >&6; }\nif test \"${lt_cv_prog_compiler_pic_works_CXX+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  lt_cv_prog_compiler_pic_works_CXX=no\n   ac_outfile=conftest.$ac_objext\n   echo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n   lt_compiler_flag=\"$lt_prog_compiler_pic_CXX -DPIC\"\n   # Insert the option either (1) after the last *FLAGS variable, or\n   # (2) before a word containing \"conftest.\", or (3) at the end.\n   # Note that $ac_compile itself does not contain backslashes and begins\n   # with a dollar sign (not a hyphen), so the echo should work correctly.\n   # The option is referenced via a variable to avoid confusing sed.\n   lt_compile=`echo \"$ac_compile\" | $SED \\\n   -e 's:.*FLAGS}\\{0,1\\} :&$lt_compiler_flag :; t' \\\n   -e 's: [^ ]*conftest\\.: $lt_compiler_flag&:; t' \\\n   -e 's:$: $lt_compiler_flag:'`\n   (eval echo \"\\\"\\$as_me:$LINENO: $lt_compile\\\"\" >&5)\n   (eval \"$lt_compile\" 2>conftest.err)\n   ac_status=$?\n   cat conftest.err >&5\n   echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n   if (exit $ac_status) && test -s \"$ac_outfile\"; then\n     # The compiler can only warn and ignore the option if not recognized\n     # So say no if there are warnings other than the usual output.\n     $ECHO \"$_lt_compiler_boilerplate\" | $SED '/^$/d' >conftest.exp\n     $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2\n     if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then\n       lt_cv_prog_compiler_pic_works_CXX=yes\n     fi\n   fi\n   $RM -r conftest*\n\nfi\n{ echo \"$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works_CXX\" >&5\necho \"${ECHO_T}$lt_cv_prog_compiler_pic_works_CXX\" >&6; }\n\nif test x\"$lt_cv_prog_compiler_pic_works_CXX\" = xyes; then\n    case $lt_prog_compiler_pic_CXX in\n     \"\" | \" \"*) ;;\n     *) lt_prog_compiler_pic_CXX=\" $lt_prog_compiler_pic_CXX\" ;;\n     esac\nelse\n    lt_prog_compiler_pic_CXX=\n     lt_prog_compiler_can_build_shared_CXX=no\nfi\n\nfi\n\n\n\n#\n# Check to make sure the static flag actually works.\n#\nwl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\\\"$lt_prog_compiler_static_CXX\\\"\n{ echo \"$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works\" >&5\necho $ECHO_N \"checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C\" >&6; }\nif test \"${lt_cv_prog_compiler_static_works_CXX+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  lt_cv_prog_compiler_static_works_CXX=no\n   save_LDFLAGS=\"$LDFLAGS\"\n   LDFLAGS=\"$LDFLAGS $lt_tmp_static_flag\"\n   echo \"$lt_simple_link_test_code\" > conftest.$ac_ext\n   if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then\n     # The linker can only warn and ignore the option if not recognized\n     # So say no if there are warnings\n     if test -s conftest.err; then\n       # Append any errors to the config.log.\n       cat conftest.err 1>&5\n       $ECHO \"$_lt_linker_boilerplate\" | $SED '/^$/d' > conftest.exp\n       $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2\n       if diff conftest.exp conftest.er2 >/dev/null; then\n         lt_cv_prog_compiler_static_works_CXX=yes\n       fi\n     else\n       lt_cv_prog_compiler_static_works_CXX=yes\n     fi\n   fi\n   $RM -r conftest*\n   LDFLAGS=\"$save_LDFLAGS\"\n\nfi\n{ echo \"$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works_CXX\" >&5\necho \"${ECHO_T}$lt_cv_prog_compiler_static_works_CXX\" >&6; }\n\nif test x\"$lt_cv_prog_compiler_static_works_CXX\" = xyes; then\n    :\nelse\n    lt_prog_compiler_static_CXX=\nfi\n\n\n\n\n    { echo \"$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext\" >&5\necho $ECHO_N \"checking if $compiler supports -c -o file.$ac_objext... $ECHO_C\" >&6; }\nif test \"${lt_cv_prog_compiler_c_o_CXX+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  lt_cv_prog_compiler_c_o_CXX=no\n   $RM -r conftest 2>/dev/null\n   mkdir conftest\n   cd conftest\n   mkdir out\n   echo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n\n   lt_compiler_flag=\"-o out/conftest2.$ac_objext\"\n   # Insert the option either (1) after the last *FLAGS variable, or\n   # (2) before a word containing \"conftest.\", or (3) at the end.\n   # Note that $ac_compile itself does not contain backslashes and begins\n   # with a dollar sign (not a hyphen), so the echo should work correctly.\n   lt_compile=`echo \"$ac_compile\" | $SED \\\n   -e 's:.*FLAGS}\\{0,1\\} :&$lt_compiler_flag :; t' \\\n   -e 's: [^ ]*conftest\\.: $lt_compiler_flag&:; t' \\\n   -e 's:$: $lt_compiler_flag:'`\n   (eval echo \"\\\"\\$as_me:$LINENO: $lt_compile\\\"\" >&5)\n   (eval \"$lt_compile\" 2>out/conftest.err)\n   ac_status=$?\n   cat out/conftest.err >&5\n   echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n   if (exit $ac_status) && test -s out/conftest2.$ac_objext\n   then\n     # The compiler can only warn and ignore the option if not recognized\n     # So say no if there are warnings\n     $ECHO \"$_lt_compiler_boilerplate\" | $SED '/^$/d' > out/conftest.exp\n     $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2\n     if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then\n       lt_cv_prog_compiler_c_o_CXX=yes\n     fi\n   fi\n   chmod u+w . 2>&5\n   $RM -r conftest*\n   # SGI C++ compiler will create directory out/ii_files/ for\n   # template instantiation\n   test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files\n   $RM out/* && rmdir out\n   cd ..\n   $RM -r conftest\n   $RM -r conftest*\n\nfi\n{ echo \"$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_CXX\" >&5\necho \"${ECHO_T}$lt_cv_prog_compiler_c_o_CXX\" >&6; }\n\n\n\n    { echo \"$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext\" >&5\necho $ECHO_N \"checking if $compiler supports -c -o file.$ac_objext... $ECHO_C\" >&6; }\nif test \"${lt_cv_prog_compiler_c_o_CXX+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  lt_cv_prog_compiler_c_o_CXX=no\n   $RM -r conftest 2>/dev/null\n   mkdir conftest\n   cd conftest\n   mkdir out\n   echo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n\n   lt_compiler_flag=\"-o out/conftest2.$ac_objext\"\n   # Insert the option either (1) after the last *FLAGS variable, or\n   # (2) before a word containing \"conftest.\", or (3) at the end.\n   # Note that $ac_compile itself does not contain backslashes and begins\n   # with a dollar sign (not a hyphen), so the echo should work correctly.\n   lt_compile=`echo \"$ac_compile\" | $SED \\\n   -e 's:.*FLAGS}\\{0,1\\} :&$lt_compiler_flag :; t' \\\n   -e 's: [^ ]*conftest\\.: $lt_compiler_flag&:; t' \\\n   -e 's:$: $lt_compiler_flag:'`\n   (eval echo \"\\\"\\$as_me:$LINENO: $lt_compile\\\"\" >&5)\n   (eval \"$lt_compile\" 2>out/conftest.err)\n   ac_status=$?\n   cat out/conftest.err >&5\n   echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n   if (exit $ac_status) && test -s out/conftest2.$ac_objext\n   then\n     # The compiler can only warn and ignore the option if not recognized\n     # So say no if there are warnings\n     $ECHO \"$_lt_compiler_boilerplate\" | $SED '/^$/d' > out/conftest.exp\n     $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2\n     if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then\n       lt_cv_prog_compiler_c_o_CXX=yes\n     fi\n   fi\n   chmod u+w . 2>&5\n   $RM -r conftest*\n   # SGI C++ compiler will create directory out/ii_files/ for\n   # template instantiation\n   test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files\n   $RM out/* && rmdir out\n   cd ..\n   $RM -r conftest\n   $RM -r conftest*\n\nfi\n{ echo \"$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_CXX\" >&5\necho \"${ECHO_T}$lt_cv_prog_compiler_c_o_CXX\" >&6; }\n\n\n\n\nhard_links=\"nottested\"\nif test \"$lt_cv_prog_compiler_c_o_CXX\" = no && test \"$need_locks\" != no; then\n  # do not overwrite the value of need_locks provided by the user\n  { echo \"$as_me:$LINENO: checking if we can lock with hard links\" >&5\necho $ECHO_N \"checking if we can lock with hard links... $ECHO_C\" >&6; }\n  hard_links=yes\n  $RM -r conftest*\n  ln conftest.a conftest.b 2>/dev/null && hard_links=no\n  touch conftest.a\n  ln conftest.a conftest.b 2>&5 || hard_links=no\n  ln conftest.a conftest.b 2>/dev/null && hard_links=no\n  { echo \"$as_me:$LINENO: result: $hard_links\" >&5\necho \"${ECHO_T}$hard_links\" >&6; }\n  if test \"$hard_links\" = no; then\n    { echo \"$as_me:$LINENO: WARNING: \\`$CC' does not support \\`-c -o', so \\`make -j' may be unsafe\" >&5\necho \"$as_me: WARNING: \\`$CC' does not support \\`-c -o', so \\`make -j' may be unsafe\" >&2;}\n    need_locks=warn\n  fi\nelse\n  need_locks=no\nfi\n\n\n\n    { echo \"$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries\" >&5\necho $ECHO_N \"checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C\" >&6; }\n\n  export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\\''s/.* //'\\'' | sort | uniq > $export_symbols'\n  case $host_os in\n  aix[4-9]*)\n    # If we're using GNU nm, then we don't want the \"-C\" option.\n    # -C means demangle to AIX nm, but means don't demangle with GNU nm\n    # Also, AIX nm treats weak defined symbols like other global defined\n    # symbols, whereas GNU nm marks them as \"W\".\n    if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then\n      export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\\''{ if (((\\$ 2 == \"T\") || (\\$ 2 == \"D\") || (\\$ 2 == \"B\") || (\\$ 2 == \"W\")) && (substr(\\$ 3,1,1) != \".\")) { print \\$ 3 } }'\\'' | sort -u > $export_symbols'\n    else\n      export_symbols_cmds_CXX='$NM -BCpg $libobjs $convenience | awk '\\''{ if (((\\$ 2 == \"T\") || (\\$ 2 == \"D\") || (\\$ 2 == \"B\")) && (substr(\\$ 3,1,1) != \".\")) { print \\$ 3 } }'\\'' | sort -u > $export_symbols'\n    fi\n    ;;\n  pw32*)\n    export_symbols_cmds_CXX=\"$ltdll_cmds\"\n  ;;\n  cygwin* | mingw* | cegcc*)\n    export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\\''/^[BCDGRS][ ]/s/.*[ ]\\([^ ]*\\)/\\1 DATA/;/^.*[ ]__nm__/s/^.*[ ]__nm__\\([^ ]*\\)[ ][^ ]*/\\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\\'' | sort | uniq > $export_symbols'\n  ;;\n  *)\n    export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\\''s/.* //'\\'' | sort | uniq > $export_symbols'\n  ;;\n  esac\n  exclude_expsyms_CXX='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'\n\n{ echo \"$as_me:$LINENO: result: $ld_shlibs_CXX\" >&5\necho \"${ECHO_T}$ld_shlibs_CXX\" >&6; }\ntest \"$ld_shlibs_CXX\" = no && can_build_shared=no\n\nwith_gnu_ld_CXX=$with_gnu_ld\n\n\n\n\n\n\n#\n# Do we need to explicitly link libc?\n#\ncase \"x$archive_cmds_need_lc_CXX\" in\nx|xyes)\n  # Assume -lc should be added\n  archive_cmds_need_lc_CXX=yes\n\n  if test \"$enable_shared\" = yes && test \"$GCC\" = yes; then\n    case $archive_cmds_CXX in\n    *'~'*)\n      # FIXME: we may have to deal with multi-command sequences.\n      ;;\n    '$CC '*)\n      # Test whether the compiler implicitly links with -lc since on some\n      # systems, -lgcc has to come before -lc. If gcc already passes -lc\n      # to ld, don't add -lc before -lgcc.\n      { echo \"$as_me:$LINENO: checking whether -lc should be explicitly linked in\" >&5\necho $ECHO_N \"checking whether -lc should be explicitly linked in... $ECHO_C\" >&6; }\nif test \"${lt_cv_archive_cmds_need_lc_CXX+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  $RM -r conftest*\n\techo \"$lt_simple_compile_test_code\" > conftest.$ac_ext\n\n\tif { (eval echo \"$as_me:$LINENO: \\\"$ac_compile\\\"\") >&5\n  (eval $ac_compile) 2>&5\n  ac_status=$?\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } 2>conftest.err; then\n\t  soname=conftest\n\t  lib=conftest\n\t  libobjs=conftest.$ac_objext\n\t  deplibs=\n\t  wl=$lt_prog_compiler_wl_CXX\n\t  pic_flag=$lt_prog_compiler_pic_CXX\n\t  compiler_flags=-v\n\t  linker_flags=-v\n\t  verstring=\n\t  output_objdir=.\n\t  libname=conftest\n\t  lt_save_allow_undefined_flag=$allow_undefined_flag_CXX\n\t  allow_undefined_flag_CXX=\n\t  if { (eval echo \"$as_me:$LINENO: \\\"$archive_cmds_CXX 2\\>\\&1 \\| $GREP \\\" -lc \\\" \\>/dev/null 2\\>\\&1\\\"\") >&5\n  (eval $archive_cmds_CXX 2\\>\\&1 \\| $GREP \\\" -lc \\\" \\>/dev/null 2\\>\\&1) 2>&5\n  ac_status=$?\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); }\n\t  then\n\t    lt_cv_archive_cmds_need_lc_CXX=no\n\t  else\n\t    lt_cv_archive_cmds_need_lc_CXX=yes\n\t  fi\n\t  allow_undefined_flag_CXX=$lt_save_allow_undefined_flag\n\telse\n\t  cat conftest.err 1>&5\n\tfi\n\t$RM -r conftest*\n\nfi\n{ echo \"$as_me:$LINENO: result: $lt_cv_archive_cmds_need_lc_CXX\" >&5\necho \"${ECHO_T}$lt_cv_archive_cmds_need_lc_CXX\" >&6; }\n      archive_cmds_need_lc_CXX=$lt_cv_archive_cmds_need_lc_CXX\n      ;;\n    esac\n  fi\n  ;;\nesac\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\n\n\n\n    { echo \"$as_me:$LINENO: checking dynamic linker characteristics\" >&5\necho $ECHO_N \"checking dynamic linker characteristics... $ECHO_C\" >&6; }\n\nlibrary_names_spec=\nlibname_spec='lib$name'\nsoname_spec=\nshrext_cmds=\".so\"\npostinstall_cmds=\npostuninstall_cmds=\nfinish_cmds=\nfinish_eval=\nshlibpath_var=\nshlibpath_overrides_runpath=unknown\nversion_type=none\ndynamic_linker=\"$host_os ld.so\"\nsys_lib_dlsearch_path_spec=\"/lib /usr/lib\"\nneed_lib_prefix=unknown\nhardcode_into_libs=no\n\n# when you set need_version to no, make sure it does not cause -set_version\n# flags to be left without arguments\nneed_version=unknown\n\ncase $host_os in\naix3*)\n  version_type=linux\n  library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a'\n  shlibpath_var=LIBPATH\n\n  # AIX 3 has no versioning support, so we append a major version to the name.\n  soname_spec='${libname}${release}${shared_ext}$major'\n  ;;\n\naix[4-9]*)\n  version_type=linux\n  need_lib_prefix=no\n  need_version=no\n  hardcode_into_libs=yes\n  if test \"$host_cpu\" = ia64; then\n    # AIX 5 supports IA64\n    library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}'\n    shlibpath_var=LD_LIBRARY_PATH\n  else\n    # With GCC up to 2.95.x, collect2 would create an import file\n    # for dependence libraries.  The import file would start with\n    # the line `#! .'.  This would cause the generated library to\n    # depend on `.', always an invalid library.  This was fixed in\n    # development snapshots of GCC prior to 3.0.\n    case $host_os in\n      aix4 | aix4.[01] | aix4.[01].*)\n      if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'\n\t   echo ' yes '\n\t   echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then\n\t:\n      else\n\tcan_build_shared=no\n      fi\n      ;;\n    esac\n    # AIX (on Power*) has no versioning support, so currently we can not hardcode correct\n    # soname into executable. Probably we can add versioning support to\n    # collect2, so additional links can be useful in future.\n    if test \"$aix_use_runtimelinking\" = yes; then\n      # If using run time linking (on AIX 4.2 or later) use lib<name>.so\n      # instead of lib<name>.a to let people know that these are not\n      # typical AIX shared libraries.\n      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n    else\n      # We preserve .a as extension for shared libraries through AIX4.2\n      # and later when we are not doing run time linking.\n      library_names_spec='${libname}${release}.a $libname.a'\n      soname_spec='${libname}${release}${shared_ext}$major'\n    fi\n    shlibpath_var=LIBPATH\n  fi\n  ;;\n\namigaos*)\n  case $host_cpu in\n  powerpc)\n    # Since July 2007 AmigaOS4 officially supports .so libraries.\n    # When compiling the executable, add -use-dynld -Lsobjs: to the compileline.\n    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n    ;;\n  m68k)\n    library_names_spec='$libname.ixlibrary $libname.a'\n    # Create ${libname}_ixlibrary.a entries in /sys/libs.\n    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'\n    ;;\n  esac\n  ;;\n\nbeos*)\n  library_names_spec='${libname}${shared_ext}'\n  dynamic_linker=\"$host_os ld.so\"\n  shlibpath_var=LIBRARY_PATH\n  ;;\n\nbsdi[45]*)\n  version_type=linux\n  need_version=no\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  sys_lib_search_path_spec=\"/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib\"\n  sys_lib_dlsearch_path_spec=\"/shlib /usr/lib /usr/local/lib\"\n  # the default ld.so.conf also contains /usr/contrib/lib and\n  # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow\n  # libtool to hard-code these into programs\n  ;;\n\ncygwin* | mingw* | pw32* | cegcc*)\n  version_type=windows\n  shrext_cmds=\".dll\"\n  need_version=no\n  need_lib_prefix=no\n\n  case $GCC,$host_os in\n  yes,cygwin* | yes,mingw* | yes,pw32* | yes,cegcc*)\n    library_names_spec='$libname.dll.a'\n    # DLL is installed to $(libdir)/../bin by postinstall_cmds\n    postinstall_cmds='base_file=`basename \\${file}`~\n      dlpath=`$SHELL 2>&1 -c '\\''. $dir/'\\''\\${base_file}'\\''i; echo \\$dlname'\\''`~\n      dldir=$destdir/`dirname \\$dlpath`~\n      test -d \\$dldir || mkdir -p \\$dldir~\n      $install_prog $dir/$dlname \\$dldir/$dlname~\n      chmod a+x \\$dldir/$dlname~\n      if test -n '\\''$stripme'\\'' && test -n '\\''$striplib'\\''; then\n        eval '\\''$striplib \\$dldir/$dlname'\\'' || exit \\$?;\n      fi'\n    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\\''. $file; echo \\$dlname'\\''`~\n      dlpath=$dir/\\$dldll~\n       $RM \\$dlpath'\n    shlibpath_overrides_runpath=yes\n\n    case $host_os in\n    cygwin*)\n      # Cygwin DLLs use 'cyg' prefix rather than 'lib'\n      soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'\n\n      ;;\n    mingw* | cegcc*)\n      # MinGW DLLs use traditional 'lib' prefix\n      soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'\n      ;;\n    pw32*)\n      # pw32 DLLs use 'pw' prefix rather than 'lib'\n      library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'\n      ;;\n    esac\n    ;;\n\n  *)\n    library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib'\n    ;;\n  esac\n  dynamic_linker='Win32 ld.exe'\n  # FIXME: first we should search . and the directory the executable is in\n  shlibpath_var=PATH\n  ;;\n\ndarwin* | rhapsody*)\n  dynamic_linker=\"$host_os dyld\"\n  version_type=darwin\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext ${libname}${release}${versuffix}$shared_ext'\n  soname_spec='${libname}${release}${major}$shared_ext'\n  shlibpath_overrides_runpath=yes\n  shlibpath_var=DYLD_LIBRARY_PATH\n  shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'\n\n  sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'\n  ;;\n\ndgux*)\n  version_type=linux\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  ;;\n\nfreebsd1*)\n  dynamic_linker=no\n  ;;\n\nfreebsd* | dragonfly*)\n  # DragonFly does not have aout.  When/if they implement a new\n  # versioning mechanism, adjust this.\n  if test -x /usr/bin/objformat; then\n    objformat=`/usr/bin/objformat`\n  else\n    case $host_os in\n    freebsd[123]*) objformat=aout ;;\n    *) objformat=elf ;;\n    esac\n  fi\n  version_type=freebsd-$objformat\n  case $version_type in\n    freebsd-elf*)\n      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'\n      need_version=no\n      need_lib_prefix=no\n      ;;\n    freebsd-*)\n      library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix'\n      need_version=yes\n      ;;\n  esac\n  shlibpath_var=LD_LIBRARY_PATH\n  case $host_os in\n  freebsd2*)\n    shlibpath_overrides_runpath=yes\n    ;;\n  freebsd3.[01]* | freebsdelf3.[01]*)\n    shlibpath_overrides_runpath=yes\n    hardcode_into_libs=yes\n    ;;\n  freebsd3.[2-9]* | freebsdelf3.[2-9]* | \\\n  freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1)\n    shlibpath_overrides_runpath=no\n    hardcode_into_libs=yes\n    ;;\n  *) # from 4.6 on, and DragonFly\n    shlibpath_overrides_runpath=yes\n    hardcode_into_libs=yes\n    ;;\n  esac\n  ;;\n\ngnu*)\n  version_type=linux\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  hardcode_into_libs=yes\n  ;;\n\nhaiku*)\n  version_type=linux\n  need_lib_prefix=no\n  need_version=no\n  dynamic_linker=\"$host_os runtime_loader\"\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  shlibpath_var=LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib'\n  hardcode_into_libs=yes\n  ;;\n\nhpux9* | hpux10* | hpux11*)\n  # Give a soname corresponding to the major version so that dld.sl refuses to\n  # link against other versions.\n  version_type=sunos\n  need_lib_prefix=no\n  need_version=no\n  case $host_cpu in\n  ia64*)\n    shrext_cmds='.so'\n    hardcode_into_libs=yes\n    dynamic_linker=\"$host_os dld.so\"\n    shlibpath_var=LD_LIBRARY_PATH\n    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.\n    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n    soname_spec='${libname}${release}${shared_ext}$major'\n    if test \"X$HPUX_IA64_MODE\" = X32; then\n      sys_lib_search_path_spec=\"/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib\"\n    else\n      sys_lib_search_path_spec=\"/usr/lib/hpux64 /usr/local/lib/hpux64\"\n    fi\n    sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec\n    ;;\n  hppa*64*)\n    shrext_cmds='.sl'\n    hardcode_into_libs=yes\n    dynamic_linker=\"$host_os dld.sl\"\n    shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH\n    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.\n    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n    soname_spec='${libname}${release}${shared_ext}$major'\n    sys_lib_search_path_spec=\"/usr/lib/pa20_64 /usr/ccs/lib/pa20_64\"\n    sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec\n    ;;\n  *)\n    shrext_cmds='.sl'\n    dynamic_linker=\"$host_os dld.sl\"\n    shlibpath_var=SHLIB_PATH\n    shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH\n    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n    soname_spec='${libname}${release}${shared_ext}$major'\n    ;;\n  esac\n  # HP-UX runs *really* slowly unless shared libraries are mode 555, ...\n  postinstall_cmds='chmod 555 $lib'\n  # or fails outright, so override atomically:\n  install_override_mode=555\n  ;;\n\ninterix[3-9]*)\n  version_type=linux\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n  hardcode_into_libs=yes\n  ;;\n\nirix5* | irix6* | nonstopux*)\n  case $host_os in\n    nonstopux*) version_type=nonstopux ;;\n    *)\n\tif test \"$lt_cv_prog_gnu_ld\" = yes; then\n\t\tversion_type=linux\n\telse\n\t\tversion_type=irix\n\tfi ;;\n  esac\n  need_lib_prefix=no\n  need_version=no\n  soname_spec='${libname}${release}${shared_ext}$major'\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}'\n  case $host_os in\n  irix5* | nonstopux*)\n    libsuff= shlibsuff=\n    ;;\n  *)\n    case $LD in # libtool.m4 will add one of these switches to LD\n    *-32|*\"-32 \"|*-melf32bsmip|*\"-melf32bsmip \")\n      libsuff= shlibsuff= libmagic=32-bit;;\n    *-n32|*\"-n32 \"|*-melf32bmipn32|*\"-melf32bmipn32 \")\n      libsuff=32 shlibsuff=N32 libmagic=N32;;\n    *-64|*\"-64 \"|*-melf64bmip|*\"-melf64bmip \")\n      libsuff=64 shlibsuff=64 libmagic=64-bit;;\n    *) libsuff= shlibsuff= libmagic=never-match;;\n    esac\n    ;;\n  esac\n  shlibpath_var=LD_LIBRARY${shlibsuff}_PATH\n  shlibpath_overrides_runpath=no\n  sys_lib_search_path_spec=\"/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}\"\n  sys_lib_dlsearch_path_spec=\"/usr/lib${libsuff} /lib${libsuff}\"\n  hardcode_into_libs=yes\n  ;;\n\n# No shared lib support for Linux oldld, aout, or coff.\nlinux*oldld* | linux*aout* | linux*coff*)\n  dynamic_linker=no\n  ;;\n\n# This must be Linux ELF.\nlinux* | k*bsd*-gnu | kopensolaris*-gnu)\n  version_type=linux\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig -n $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n\n  # Some binutils ld are patched to set DT_RUNPATH\n  if test \"${lt_cv_shlibpath_overrides_runpath+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  lt_cv_shlibpath_overrides_runpath=no\n    save_LDFLAGS=$LDFLAGS\n    save_libdir=$libdir\n    eval \"libdir=/foo; wl=\\\"$lt_prog_compiler_wl_CXX\\\"; \\\n\t LDFLAGS=\\\"\\$LDFLAGS $hardcode_libdir_flag_spec_CXX\\\"\"\n    cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nrm -f conftest.$ac_objext conftest$ac_exeext\nif { (ac_try=\"$ac_link\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_link\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && {\n\t test -z \"$ac_cxx_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest$ac_exeext &&\n       $as_test_x conftest$ac_exeext; then\n  if  ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep \"RUNPATH.*$libdir\" >/dev/null; then\n  lt_cv_shlibpath_overrides_runpath=yes\nfi\n\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\nfi\n\nrm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \\\n      conftest$ac_exeext conftest.$ac_ext\n    LDFLAGS=$save_LDFLAGS\n    libdir=$save_libdir\n\nfi\n\n  shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath\n\n  # This implies no fast_install, which is unacceptable.\n  # Some rework will be needed to allow for fast_install\n  # before this can be enabled.\n  hardcode_into_libs=yes\n\n  # Append ld.so.conf contents to the search path\n  if test -f /etc/ld.so.conf; then\n    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/#.*//;/^[\t ]*hwcap[\t ]/d;s/[:,\t]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/\"//g;/^$/d' | tr '\\n' ' '`\n    sys_lib_dlsearch_path_spec=\"/lib /usr/lib $lt_ld_extra\"\n  fi\n\n  # We used to test for /lib/ld.so.1 and disable shared libraries on\n  # powerpc, because MkLinux only supported shared libraries with the\n  # GNU dynamic linker.  Since this was broken with cross compilers,\n  # most powerpc-linux boxes support dynamic linking these days and\n  # people can always --disable-shared, the test was removed, and we\n  # assume the GNU/Linux dynamic linker is in use.\n  dynamic_linker='GNU/Linux ld.so'\n  ;;\n\nnetbsd*)\n  version_type=sunos\n  need_lib_prefix=no\n  need_version=no\n  if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then\n    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'\n    finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig -m $libdir'\n    dynamic_linker='NetBSD (a.out) ld.so'\n  else\n    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'\n    soname_spec='${libname}${release}${shared_ext}$major'\n    dynamic_linker='NetBSD ld.elf_so'\n  fi\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  hardcode_into_libs=yes\n  ;;\n\nnewsos6)\n  version_type=linux\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  ;;\n\n*nto* | *qnx*)\n  version_type=qnx\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n  hardcode_into_libs=yes\n  dynamic_linker='ldqnx.so'\n  ;;\n\nopenbsd*)\n  version_type=sunos\n  sys_lib_dlsearch_path_spec=\"/usr/lib\"\n  need_lib_prefix=no\n  # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs.\n  case $host_os in\n    openbsd3.3 | openbsd3.3.*)\tneed_version=yes ;;\n    *)\t\t\t\tneed_version=no  ;;\n  esac\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'\n  finish_cmds='PATH=\"\\$PATH:/sbin\" ldconfig -m $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  if test -z \"`echo __ELF__ | $CC -E - | $GREP __ELF__`\" || test \"$host_os-$host_cpu\" = \"openbsd2.8-powerpc\"; then\n    case $host_os in\n      openbsd2.[89] | openbsd2.[89].*)\n\tshlibpath_overrides_runpath=no\n\t;;\n      *)\n\tshlibpath_overrides_runpath=yes\n\t;;\n      esac\n  else\n    shlibpath_overrides_runpath=yes\n  fi\n  ;;\n\nos2*)\n  libname_spec='$name'\n  shrext_cmds=\".dll\"\n  need_lib_prefix=no\n  library_names_spec='$libname${shared_ext} $libname.a'\n  dynamic_linker='OS/2 ld.exe'\n  shlibpath_var=LIBPATH\n  ;;\n\nosf3* | osf4* | osf5*)\n  version_type=osf\n  need_lib_prefix=no\n  need_version=no\n  soname_spec='${libname}${release}${shared_ext}$major'\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n  shlibpath_var=LD_LIBRARY_PATH\n  sys_lib_search_path_spec=\"/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib\"\n  sys_lib_dlsearch_path_spec=\"$sys_lib_search_path_spec\"\n  ;;\n\nrdos*)\n  dynamic_linker=no\n  ;;\n\nsolaris*)\n  version_type=linux\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  hardcode_into_libs=yes\n  # ldd complains unless libraries are executable\n  postinstall_cmds='chmod +x $lib'\n  ;;\n\nsunos4*)\n  version_type=sunos\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'\n  finish_cmds='PATH=\"\\$PATH:/usr/etc\" ldconfig $libdir'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  if test \"$with_gnu_ld\" = yes; then\n    need_lib_prefix=no\n  fi\n  need_version=yes\n  ;;\n\nsysv4 | sysv4.3*)\n  version_type=linux\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  case $host_vendor in\n    sni)\n      shlibpath_overrides_runpath=no\n      need_lib_prefix=no\n      runpath_var=LD_RUN_PATH\n      ;;\n    siemens)\n      need_lib_prefix=no\n      ;;\n    motorola)\n      need_lib_prefix=no\n      need_version=no\n      shlibpath_overrides_runpath=no\n      sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'\n      ;;\n  esac\n  ;;\n\nsysv4*MP*)\n  if test -d /usr/nec ;then\n    version_type=linux\n    library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}'\n    soname_spec='$libname${shared_ext}.$major'\n    shlibpath_var=LD_LIBRARY_PATH\n  fi\n  ;;\n\nsysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)\n  version_type=freebsd-elf\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=yes\n  hardcode_into_libs=yes\n  if test \"$with_gnu_ld\" = yes; then\n    sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'\n  else\n    sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'\n    case $host_os in\n      sco3.2v5*)\n        sys_lib_search_path_spec=\"$sys_lib_search_path_spec /lib\"\n\t;;\n    esac\n  fi\n  sys_lib_dlsearch_path_spec='/usr/lib'\n  ;;\n\ntpf*)\n  # TPF is a cross-target only.  Preferred cross-host = GNU/Linux.\n  version_type=linux\n  need_lib_prefix=no\n  need_version=no\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n  shlibpath_var=LD_LIBRARY_PATH\n  shlibpath_overrides_runpath=no\n  hardcode_into_libs=yes\n  ;;\n\nuts4*)\n  version_type=linux\n  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'\n  soname_spec='${libname}${release}${shared_ext}$major'\n  shlibpath_var=LD_LIBRARY_PATH\n  ;;\n\n*)\n  dynamic_linker=no\n  ;;\nesac\n{ echo \"$as_me:$LINENO: result: $dynamic_linker\" >&5\necho \"${ECHO_T}$dynamic_linker\" >&6; }\ntest \"$dynamic_linker\" = no && can_build_shared=no\n\nvariables_saved_for_relink=\"PATH $shlibpath_var $runpath_var\"\nif test \"$GCC\" = yes; then\n  variables_saved_for_relink=\"$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH\"\nfi\n\nif test \"${lt_cv_sys_lib_search_path_spec+set}\" = set; then\n  sys_lib_search_path_spec=\"$lt_cv_sys_lib_search_path_spec\"\nfi\nif test \"${lt_cv_sys_lib_dlsearch_path_spec+set}\" = set; then\n  sys_lib_dlsearch_path_spec=\"$lt_cv_sys_lib_dlsearch_path_spec\"\nfi\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    { echo \"$as_me:$LINENO: checking how to hardcode library paths into programs\" >&5\necho $ECHO_N \"checking how to hardcode library paths into programs... $ECHO_C\" >&6; }\nhardcode_action_CXX=\nif test -n \"$hardcode_libdir_flag_spec_CXX\" ||\n   test -n \"$runpath_var_CXX\" ||\n   test \"X$hardcode_automatic_CXX\" = \"Xyes\" ; then\n\n  # We can hardcode non-existent directories.\n  if test \"$hardcode_direct_CXX\" != no &&\n     # If the only mechanism to avoid hardcoding is shlibpath_var, we\n     # have to relink, otherwise we might link with an installed library\n     # when we should be linking with a yet-to-be-installed one\n     ## test \"$_LT_TAGVAR(hardcode_shlibpath_var, CXX)\" != no &&\n     test \"$hardcode_minus_L_CXX\" != no; then\n    # Linking always hardcodes the temporary library directory.\n    hardcode_action_CXX=relink\n  else\n    # We can link without hardcoding, and we can hardcode nonexisting dirs.\n    hardcode_action_CXX=immediate\n  fi\nelse\n  # We cannot hardcode anything, or else we can only hardcode existing\n  # directories.\n  hardcode_action_CXX=unsupported\nfi\n{ echo \"$as_me:$LINENO: result: $hardcode_action_CXX\" >&5\necho \"${ECHO_T}$hardcode_action_CXX\" >&6; }\n\nif test \"$hardcode_action_CXX\" = relink ||\n   test \"$inherit_rpath_CXX\" = yes; then\n  # Fast installation is not supported\n  enable_fast_install=no\nelif test \"$shlibpath_overrides_runpath\" = yes ||\n     test \"$enable_shared\" = no; then\n  # Fast installation is not necessary\n  enable_fast_install=needless\nfi\n\n\n\n\n\n\n\n  fi # test -n \"$compiler\"\n\n  CC=$lt_save_CC\n  LDCXX=$LD\n  LD=$lt_save_LD\n  GCC=$lt_save_GCC\n  with_gnu_ld=$lt_save_with_gnu_ld\n  lt_cv_path_LDCXX=$lt_cv_path_LD\n  lt_cv_path_LD=$lt_save_path_LD\n  lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld\n  lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld\nfi # test \"$_lt_caught_CXX_error\" != yes\n\nac_ext=c\nac_cpp='$CPP $CPPFLAGS'\nac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'\nac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'\nac_compiler_gnu=$ac_cv_c_compiler_gnu\n\n\n\n# Check for stdc headers.\n{ echo \"$as_me:$LINENO: checking for ANSI C header files\" >&5\necho $ECHO_N \"checking for ANSI C header files... $ECHO_C\" >&6; }\nif test \"${ac_cv_header_stdc+set}\" = set; then\n  echo $ECHO_N \"(cached) $ECHO_C\" >&6\nelse\n  cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n#include <stdlib.h>\n#include <stdarg.h>\n#include <string.h>\n#include <float.h>\n\nint\nmain ()\n{\n\n  ;\n  return 0;\n}\n_ACEOF\nrm -f conftest.$ac_objext\nif { (ac_try=\"$ac_compile\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_compile\") 2>conftest.er1\n  ac_status=$?\n  grep -v '^ *+' conftest.er1 >conftest.err\n  rm -f conftest.er1\n  cat conftest.err >&5\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && {\n\t test -z \"$ac_c_werror_flag\" ||\n\t test ! -s conftest.err\n       } && test -s conftest.$ac_objext; then\n  ac_cv_header_stdc=yes\nelse\n  echo \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n\tac_cv_header_stdc=no\nfi\n\nrm -f core conftest.err conftest.$ac_objext conftest.$ac_ext\n\nif test $ac_cv_header_stdc = yes; then\n  # SunOS 4.x string.h does not declare mem*, contrary to ANSI.\n  cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n#include <string.h>\n\n_ACEOF\nif (eval \"$ac_cpp conftest.$ac_ext\") 2>&5 |\n  $EGREP \"memchr\" >/dev/null 2>&1; then\n  :\nelse\n  ac_cv_header_stdc=no\nfi\nrm -f -r conftest*\n\nfi\n\nif test $ac_cv_header_stdc = yes; then\n  # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.\n  cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n#include <stdlib.h>\n\n_ACEOF\nif (eval \"$ac_cpp conftest.$ac_ext\") 2>&5 |\n  $EGREP \"free\" >/dev/null 2>&1; then\n  :\nelse\n  ac_cv_header_stdc=no\nfi\nrm -f -r conftest*\n\nfi\n\nif test $ac_cv_header_stdc = yes; then\n  # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.\n  if test \"$cross_compiling\" = yes; then\n  :\nelse\n  cat >conftest.$ac_ext <<_ACEOF\n/* confdefs.h.  */\n_ACEOF\ncat confdefs.h >>conftest.$ac_ext\ncat >>conftest.$ac_ext <<_ACEOF\n/* end confdefs.h.  */\n#include <ctype.h>\n#include <stdlib.h>\n#if ((' ' & 0x0FF) == 0x020)\n# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')\n# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))\n#else\n# define ISLOWER(c) \\\n\t\t   (('a' <= (c) && (c) <= 'i') \\\n\t\t     || ('j' <= (c) && (c) <= 'r') \\\n\t\t     || ('s' <= (c) && (c) <= 'z'))\n# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))\n#endif\n\n#define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))\nint\nmain ()\n{\n  int i;\n  for (i = 0; i < 256; i++)\n    if (XOR (islower (i), ISLOWER (i))\n\t|| toupper (i) != TOUPPER (i))\n      return 2;\n  return 0;\n}\n_ACEOF\nrm -f conftest$ac_exeext\nif { (ac_try=\"$ac_link\"\ncase \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_link\") 2>&5\n  ac_status=$?\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); } && { ac_try='./conftest$ac_exeext'\n  { (case \"(($ac_try\" in\n  *\\\"* | *\\`* | *\\\\*) ac_try_echo=\\$ac_try;;\n  *) ac_try_echo=$ac_try;;\nesac\neval \"echo \\\"\\$as_me:$LINENO: $ac_try_echo\\\"\") >&5\n  (eval \"$ac_try\") 2>&5\n  ac_status=$?\n  echo \"$as_me:$LINENO: \\$? = $ac_status\" >&5\n  (exit $ac_status); }; }; then\n  :\nelse\n  echo \"$as_me: program exited with status $ac_status\" >&5\necho \"$as_me: failed program was:\" >&5\nsed 's/^/| /' conftest.$ac_ext >&5\n\n( exit $ac_status )\nac_cv_header_stdc=no\nfi\nrm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext\nfi\n\n\nfi\nfi\n{ echo \"$as_me:$LINENO: result: $ac_cv_header_stdc\" >&5\necho \"${ECHO_T}$ac_cv_header_stdc\" >&6; }\nif test $ac_cv_header_stdc = yes; then\n\ncat >>confdefs.h <<\\_ACEOF\n#define STDC_HEADERS 1\n_ACEOF\n\nfi\n\n\nac_config_files=\"$ac_config_files Makefile\"\n\ncat >confcache <<\\_ACEOF\n# This file is a shell script that caches the results of configure\n# tests run on this system so they can be shared between configure\n# scripts and configure runs, see configure's option --config-cache.\n# It is not useful on other systems.  If it contains results you don't\n# want to keep, you may remove or edit it.\n#\n# config.status only pays attention to the cache file if you give it\n# the --recheck option to rerun configure.\n#\n# `ac_cv_env_foo' variables (set or unset) will be overridden when\n# loading this file, other *unset* `ac_cv_foo' will be assigned the\n# following values.\n\n_ACEOF\n\n# The following way of writing the cache mishandles newlines in values,\n# but we know of no workaround that is simple, portable, and efficient.\n# So, we kill variables containing newlines.\n# Ultrix sh set writes to stderr and can't be redirected directly,\n# and sets the high bit in the cache file unless we assign to the vars.\n(\n  for ac_var in `(set) 2>&1 | sed -n 's/^\\([a-zA-Z_][a-zA-Z0-9_]*\\)=.*/\\1/p'`; do\n    eval ac_val=\\$$ac_var\n    case $ac_val in #(\n    *${as_nl}*)\n      case $ac_var in #(\n      *_cv_*) { echo \"$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline.\" >&5\necho \"$as_me: WARNING: Cache variable $ac_var contains a newline.\" >&2;} ;;\n      esac\n      case $ac_var in #(\n      _ | IFS | as_nl) ;; #(\n      *) $as_unset $ac_var ;;\n      esac ;;\n    esac\n  done\n\n  (set) 2>&1 |\n    case $as_nl`(ac_space=' '; set) 2>&1` in #(\n    *${as_nl}ac_space=\\ *)\n      # `set' does not quote correctly, so add quotes (double-quote\n      # substitution turns \\\\\\\\ into \\\\, and sed turns \\\\ into \\).\n      sed -n \\\n\t\"s/'/'\\\\\\\\''/g;\n\t  s/^\\\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\\\)=\\\\(.*\\\\)/\\\\1='\\\\2'/p\"\n      ;; #(\n    *)\n      # `set' quotes correctly as required by POSIX, so do not add quotes.\n      sed -n \"/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p\"\n      ;;\n    esac |\n    sort\n) |\n  sed '\n     /^ac_cv_env_/b end\n     t clear\n     :clear\n     s/^\\([^=]*\\)=\\(.*[{}].*\\)$/test \"${\\1+set}\" = set || &/\n     t end\n     s/^\\([^=]*\\)=\\(.*\\)$/\\1=${\\1=\\2}/\n     :end' >>confcache\nif diff \"$cache_file\" confcache >/dev/null 2>&1; then :; else\n  if test -w \"$cache_file\"; then\n    test \"x$cache_file\" != \"x/dev/null\" &&\n      { echo \"$as_me:$LINENO: updating cache $cache_file\" >&5\necho \"$as_me: updating cache $cache_file\" >&6;}\n    cat confcache >$cache_file\n  else\n    { echo \"$as_me:$LINENO: not updating unwritable cache $cache_file\" >&5\necho \"$as_me: not updating unwritable cache $cache_file\" >&6;}\n  fi\nfi\nrm -f confcache\n\ntest \"x$prefix\" = xNONE && prefix=$ac_default_prefix\n# Let make expand exec_prefix.\ntest \"x$exec_prefix\" = xNONE && exec_prefix='${prefix}'\n\n# Transform confdefs.h into DEFS.\n# Protect against shell expansion while executing Makefile rules.\n# Protect against Makefile macro expansion.\n#\n# If the first sed substitution is executed (which looks for macros that\n# take arguments), then branch to the quote section.  Otherwise,\n# look for a macro that doesn't take arguments.\nac_script='\nt clear\n:clear\ns/^[\t ]*#[\t ]*define[\t ][\t ]*\\([^\t (][^\t (]*([^)]*)\\)[\t ]*\\(.*\\)/-D\\1=\\2/g\nt quote\ns/^[\t ]*#[\t ]*define[\t ][\t ]*\\([^\t ][^\t ]*\\)[\t ]*\\(.*\\)/-D\\1=\\2/g\nt quote\nb any\n:quote\ns/[\t `~#$^&*(){}\\\\|;'\\''\"<>?]/\\\\&/g\ns/\\[/\\\\&/g\ns/\\]/\\\\&/g\ns/\\$/$$/g\nH\n:any\n${\n\tg\n\ts/^\\n//\n\ts/\\n/ /g\n\tp\n}\n'\nDEFS=`sed -n \"$ac_script\" confdefs.h`\n\n\nac_libobjs=\nac_ltlibobjs=\nfor ac_i in : $LIBOBJS; do test \"x$ac_i\" = x: && continue\n  # 1. Remove the extension, and $U if already installed.\n  ac_script='s/\\$U\\././;s/\\.o$//;s/\\.obj$//'\n  ac_i=`echo \"$ac_i\" | sed \"$ac_script\"`\n  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR\n  #    will be set to the directory where LIBOBJS objects are built.\n  ac_libobjs=\"$ac_libobjs \\${LIBOBJDIR}$ac_i\\$U.$ac_objext\"\n  ac_ltlibobjs=\"$ac_ltlibobjs \\${LIBOBJDIR}$ac_i\"'$U.lo'\ndone\nLIBOBJS=$ac_libobjs\n\nLTLIBOBJS=$ac_ltlibobjs\n\n\nif test -z \"${AMDEP_TRUE}\" && test -z \"${AMDEP_FALSE}\"; then\n  { { echo \"$as_me:$LINENO: error: conditional \\\"AMDEP\\\" was never defined.\nUsually this means the macro was only invoked conditionally.\" >&5\necho \"$as_me: error: conditional \\\"AMDEP\\\" was never defined.\nUsually this means the macro was only invoked conditionally.\" >&2;}\n   { (exit 1); exit 1; }; }\nfi\nif test -z \"${am__fastdepCC_TRUE}\" && test -z \"${am__fastdepCC_FALSE}\"; then\n  { { echo \"$as_me:$LINENO: error: conditional \\\"am__fastdepCC\\\" was never defined.\nUsually this means the macro was only invoked conditionally.\" >&5\necho \"$as_me: error: conditional \\\"am__fastdepCC\\\" was never defined.\nUsually this means the macro was only invoked conditionally.\" >&2;}\n   { (exit 1); exit 1; }; }\nfi\nif test -z \"${am__fastdepCXX_TRUE}\" && test -z \"${am__fastdepCXX_FALSE}\"; then\n  { { echo \"$as_me:$LINENO: error: conditional \\\"am__fastdepCXX\\\" was never defined.\nUsually this means the macro was only invoked conditionally.\" >&5\necho \"$as_me: error: conditional \\\"am__fastdepCXX\\\" was never defined.\nUsually this means the macro was only invoked conditionally.\" >&2;}\n   { (exit 1); exit 1; }; }\nfi\n\n: ${CONFIG_STATUS=./config.status}\nac_clean_files_save=$ac_clean_files\nac_clean_files=\"$ac_clean_files $CONFIG_STATUS\"\n{ echo \"$as_me:$LINENO: creating $CONFIG_STATUS\" >&5\necho \"$as_me: creating $CONFIG_STATUS\" >&6;}\ncat >$CONFIG_STATUS <<_ACEOF\n#! $SHELL\n# Generated by $as_me.\n# Run this file to recreate the current configuration.\n# Compiler output produced by configure, useful for debugging\n# configure, is in config.log if it exists.\n\ndebug=false\nac_cs_recheck=false\nac_cs_silent=false\nSHELL=\\${CONFIG_SHELL-$SHELL}\n_ACEOF\n\ncat >>$CONFIG_STATUS <<\\_ACEOF\n## --------------------- ##\n## M4sh Initialization.  ##\n## --------------------- ##\n\n# Be more Bourne compatible\nDUALCASE=1; export DUALCASE # for MKS sh\nif test -n \"${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then\n  emulate sh\n  NULLCMD=:\n  # Zsh 3.x and 4.x performs word splitting on ${1+\"$@\"}, which\n  # is contrary to our usage.  Disable this feature.\n  alias -g '${1+\"$@\"}'='\"$@\"'\n  setopt NO_GLOB_SUBST\nelse\n  case `(set -o) 2>/dev/null` in\n  *posix*) set -o posix ;;\nesac\n\nfi\n\n\n\n\n# PATH needs CR\n# Avoid depending upon Character Ranges.\nas_cr_letters='abcdefghijklmnopqrstuvwxyz'\nas_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'\nas_cr_Letters=$as_cr_letters$as_cr_LETTERS\nas_cr_digits='0123456789'\nas_cr_alnum=$as_cr_Letters$as_cr_digits\n\n# The user is always right.\nif test \"${PATH_SEPARATOR+set}\" != set; then\n  echo \"#! /bin/sh\" >conf$$.sh\n  echo  \"exit 0\"   >>conf$$.sh\n  chmod +x conf$$.sh\n  if (PATH=\"/nonexistent;.\"; conf$$.sh) >/dev/null 2>&1; then\n    PATH_SEPARATOR=';'\n  else\n    PATH_SEPARATOR=:\n  fi\n  rm -f conf$$.sh\nfi\n\n# Support unset when possible.\nif ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then\n  as_unset=unset\nelse\n  as_unset=false\nfi\n\n\n# IFS\n# We need space, tab and new line, in precisely that order.  Quoting is\n# there to prevent editors from complaining about space-tab.\n# (If _AS_PATH_WALK were called with IFS unset, it would disable word\n# splitting by setting IFS to empty value.)\nas_nl='\n'\nIFS=\" \"\"\t$as_nl\"\n\n# Find who we are.  Look in the path if we contain no directory separator.\ncase $0 in\n  *[\\\\/]* ) as_myself=$0 ;;\n  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR\nfor as_dir in $PATH\ndo\n  IFS=$as_save_IFS\n  test -z \"$as_dir\" && as_dir=.\n  test -r \"$as_dir/$0\" && as_myself=$as_dir/$0 && break\ndone\nIFS=$as_save_IFS\n\n     ;;\nesac\n# We did not find ourselves, most probably we were run as `sh COMMAND'\n# in which case we are not to be found in the path.\nif test \"x$as_myself\" = x; then\n  as_myself=$0\nfi\nif test ! -f \"$as_myself\"; then\n  echo \"$as_myself: error: cannot find myself; rerun with an absolute file name\" >&2\n  { (exit 1); exit 1; }\nfi\n\n# Work around bugs in pre-3.0 UWIN ksh.\nfor as_var in ENV MAIL MAILPATH\ndo ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var\ndone\nPS1='$ '\nPS2='> '\nPS4='+ '\n\n# NLS nuisances.\nfor as_var in \\\n  LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \\\n  LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \\\n  LC_TELEPHONE LC_TIME\ndo\n  if (set +x; test -z \"`(eval $as_var=C; export $as_var) 2>&1`\"); then\n    eval $as_var=C; export $as_var\n  else\n    ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var\n  fi\ndone\n\n# Required to use basename.\nif expr a : '\\(a\\)' >/dev/null 2>&1 &&\n   test \"X`expr 00001 : '.*\\(...\\)'`\" = X001; then\n  as_expr=expr\nelse\n  as_expr=false\nfi\n\nif (basename -- /) >/dev/null 2>&1 && test \"X`basename -- / 2>&1`\" = \"X/\"; then\n  as_basename=basename\nelse\n  as_basename=false\nfi\n\n\n# Name of the executable.\nas_me=`$as_basename -- \"$0\" ||\n$as_expr X/\"$0\" : '.*/\\([^/][^/]*\\)/*$' \\| \\\n\t X\"$0\" : 'X\\(//\\)$' \\| \\\n\t X\"$0\" : 'X\\(/\\)' \\| . 2>/dev/null ||\necho X/\"$0\" |\n    sed '/^.*\\/\\([^/][^/]*\\)\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\/\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\/\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n\n# CDPATH.\n$as_unset CDPATH\n\n\n\n  as_lineno_1=$LINENO\n  as_lineno_2=$LINENO\n  test \"x$as_lineno_1\" != \"x$as_lineno_2\" &&\n  test \"x`expr $as_lineno_1 + 1`\" = \"x$as_lineno_2\" || {\n\n  # Create $as_me.lineno as a copy of $as_myself, but with $LINENO\n  # uniformly replaced by the line number.  The first 'sed' inserts a\n  # line-number line after each line using $LINENO; the second 'sed'\n  # does the real work.  The second script uses 'N' to pair each\n  # line-number line with the line containing $LINENO, and appends\n  # trailing '-' during substitution so that $LINENO is not a special\n  # case at line end.\n  # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the\n  # scripts with optimization help from Paolo Bonzini.  Blame Lee\n  # E. McMahon (1931-1989) for sed's syntax.  :-)\n  sed -n '\n    p\n    /[$]LINENO/=\n  ' <$as_myself |\n    sed '\n      s/[$]LINENO.*/&-/\n      t lineno\n      b\n      :lineno\n      N\n      :loop\n      s/[$]LINENO\\([^'$as_cr_alnum'_].*\\n\\)\\(.*\\)/\\2\\1\\2/\n      t loop\n      s/-\\n.*//\n    ' >$as_me.lineno &&\n  chmod +x \"$as_me.lineno\" ||\n    { echo \"$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell\" >&2\n   { (exit 1); exit 1; }; }\n\n  # Don't try to exec as it changes $[0], causing all sort of problems\n  # (the dirname of $[0] is not the place where we might find the\n  # original and so on.  Autoconf is especially sensitive to this).\n  . \"./$as_me.lineno\"\n  # Exit status is that of the last command.\n  exit\n}\n\n\nif (as_dir=`dirname -- /` && test \"X$as_dir\" = X/) >/dev/null 2>&1; then\n  as_dirname=dirname\nelse\n  as_dirname=false\nfi\n\nECHO_C= ECHO_N= ECHO_T=\ncase `echo -n x` in\n-n*)\n  case `echo 'x\\c'` in\n  *c*) ECHO_T='\t';;\t# ECHO_T is single tab character.\n  *)   ECHO_C='\\c';;\n  esac;;\n*)\n  ECHO_N='-n';;\nesac\n\nif expr a : '\\(a\\)' >/dev/null 2>&1 &&\n   test \"X`expr 00001 : '.*\\(...\\)'`\" = X001; then\n  as_expr=expr\nelse\n  as_expr=false\nfi\n\nrm -f conf$$ conf$$.exe conf$$.file\nif test -d conf$$.dir; then\n  rm -f conf$$.dir/conf$$.file\nelse\n  rm -f conf$$.dir\n  mkdir conf$$.dir\nfi\necho >conf$$.file\nif ln -s conf$$.file conf$$ 2>/dev/null; then\n  as_ln_s='ln -s'\n  # ... but there are two gotchas:\n  # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.\n  # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.\n  # In both cases, we have to default to `cp -p'.\n  ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||\n    as_ln_s='cp -p'\nelif ln conf$$.file conf$$ 2>/dev/null; then\n  as_ln_s=ln\nelse\n  as_ln_s='cp -p'\nfi\nrm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file\nrmdir conf$$.dir 2>/dev/null\n\nif mkdir -p . 2>/dev/null; then\n  as_mkdir_p=:\nelse\n  test -d ./-p && rmdir ./-p\n  as_mkdir_p=false\nfi\n\nif test -x / >/dev/null 2>&1; then\n  as_test_x='test -x'\nelse\n  if ls -dL / >/dev/null 2>&1; then\n    as_ls_L_option=L\n  else\n    as_ls_L_option=\n  fi\n  as_test_x='\n    eval sh -c '\\''\n      if test -d \"$1\"; then\n        test -d \"$1/.\";\n      else\n\tcase $1 in\n        -*)set \"./$1\";;\n\tesac;\n\tcase `ls -ld'$as_ls_L_option' \"$1\" 2>/dev/null` in\n\t???[sx]*):;;*)false;;esac;fi\n    '\\'' sh\n  '\nfi\nas_executable_p=$as_test_x\n\n# Sed expression to map a string onto a valid CPP name.\nas_tr_cpp=\"eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'\"\n\n# Sed expression to map a string onto a valid variable name.\nas_tr_sh=\"eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'\"\n\n\nexec 6>&1\n\n# Save the log message, to keep $[0] and so on meaningful, and to\n# report actual input values of CONFIG_FILES etc. instead of their\n# values after options handling.\nac_log=\"\nThis file was extended by cld $as_me 0.6.0, which was\ngenerated by GNU Autoconf 2.61.  Invocation command line was\n\n  CONFIG_FILES    = $CONFIG_FILES\n  CONFIG_HEADERS  = $CONFIG_HEADERS\n  CONFIG_LINKS    = $CONFIG_LINKS\n  CONFIG_COMMANDS = $CONFIG_COMMANDS\n  $ $0 $@\n\non `(hostname || uname -n) 2>/dev/null | sed 1q`\n\"\n\n_ACEOF\n\ncat >>$CONFIG_STATUS <<_ACEOF\n# Files that config.status was made for.\nconfig_files=\"$ac_config_files\"\nconfig_commands=\"$ac_config_commands\"\n\n_ACEOF\n\ncat >>$CONFIG_STATUS <<\\_ACEOF\nac_cs_usage=\"\\\n\\`$as_me' instantiates files from templates according to the\ncurrent configuration.\n\nUsage: $0 [OPTIONS] [FILE]...\n\n  -h, --help       print this help, then exit\n  -V, --version    print version number and configuration settings, then exit\n  -q, --quiet      do not print progress messages\n  -d, --debug      don't remove temporary files\n      --recheck    update $as_me by reconfiguring in the same conditions\n  --file=FILE[:TEMPLATE]\n\t\t   instantiate the configuration file FILE\n\nConfiguration files:\n$config_files\n\nConfiguration commands:\n$config_commands\n\nReport bugs to <bug-autoconf@gnu.org>.\"\n\n_ACEOF\ncat >>$CONFIG_STATUS <<_ACEOF\nac_cs_version=\"\\\\\ncld config.status 0.6.0\nconfigured by $0, generated by GNU Autoconf 2.61,\n  with options \\\\\"`echo \"$ac_configure_args\" | sed 's/^ //; s/[\\\\\"\"\\`\\$]/\\\\\\\\&/g'`\\\\\"\n\nCopyright (C) 2006 Free Software Foundation, Inc.\nThis config.status script is free software; the Free Software Foundation\ngives unlimited permission to copy, distribute and modify it.\"\n\nac_pwd='$ac_pwd'\nsrcdir='$srcdir'\nINSTALL='$INSTALL'\nMKDIR_P='$MKDIR_P'\n_ACEOF\n\ncat >>$CONFIG_STATUS <<\\_ACEOF\n# If no file are specified by the user, then we need to provide default\n# value.  By we need to know if files were specified by the user.\nac_need_defaults=:\nwhile test $# != 0\ndo\n  case $1 in\n  --*=*)\n    ac_option=`expr \"X$1\" : 'X\\([^=]*\\)='`\n    ac_optarg=`expr \"X$1\" : 'X[^=]*=\\(.*\\)'`\n    ac_shift=:\n    ;;\n  *)\n    ac_option=$1\n    ac_optarg=$2\n    ac_shift=shift\n    ;;\n  esac\n\n  case $ac_option in\n  # Handling of the options.\n  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)\n    ac_cs_recheck=: ;;\n  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )\n    echo \"$ac_cs_version\"; exit ;;\n  --debug | --debu | --deb | --de | --d | -d )\n    debug=: ;;\n  --file | --fil | --fi | --f )\n    $ac_shift\n    CONFIG_FILES=\"$CONFIG_FILES $ac_optarg\"\n    ac_need_defaults=false;;\n  --he | --h |  --help | --hel | -h )\n    echo \"$ac_cs_usage\"; exit ;;\n  -q | -quiet | --quiet | --quie | --qui | --qu | --q \\\n  | -silent | --silent | --silen | --sile | --sil | --si | --s)\n    ac_cs_silent=: ;;\n\n  # This is an error.\n  -*) { echo \"$as_me: error: unrecognized option: $1\nTry \\`$0 --help' for more information.\" >&2\n   { (exit 1); exit 1; }; } ;;\n\n  *) ac_config_targets=\"$ac_config_targets $1\"\n     ac_need_defaults=false ;;\n\n  esac\n  shift\ndone\n\nac_configure_extra_args=\n\nif $ac_cs_silent; then\n  exec 6>/dev/null\n  ac_configure_extra_args=\"$ac_configure_extra_args --silent\"\nfi\n\n_ACEOF\ncat >>$CONFIG_STATUS <<_ACEOF\nif \\$ac_cs_recheck; then\n  echo \"running CONFIG_SHELL=$SHELL $SHELL $0 \"$ac_configure_args \\$ac_configure_extra_args \" --no-create --no-recursion\" >&6\n  CONFIG_SHELL=$SHELL\n  export CONFIG_SHELL\n  exec $SHELL \"$0\"$ac_configure_args \\$ac_configure_extra_args --no-create --no-recursion\nfi\n\n_ACEOF\ncat >>$CONFIG_STATUS <<\\_ACEOF\nexec 5>>config.log\n{\n  echo\n  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX\n## Running $as_me. ##\n_ASBOX\n  echo \"$ac_log\"\n} >&5\n\n_ACEOF\ncat >>$CONFIG_STATUS <<_ACEOF\n#\n# INIT-COMMANDS\n#\nAMDEP_TRUE=\"$AMDEP_TRUE\" ac_aux_dir=\"$ac_aux_dir\"\n\n\n# The HP-UX ksh and POSIX shell print the target directory to stdout\n# if CDPATH is set.\n(unset CDPATH) >/dev/null 2>&1 && unset CDPATH\n\nsed_quote_subst='$sed_quote_subst'\ndouble_quote_subst='$double_quote_subst'\ndelay_variable_subst='$delay_variable_subst'\nmacro_version='`$ECHO \"$macro_version\" | $SED \"$delay_single_quote_subst\"`'\nmacro_revision='`$ECHO \"$macro_revision\" | $SED \"$delay_single_quote_subst\"`'\nenable_shared='`$ECHO \"$enable_shared\" | $SED \"$delay_single_quote_subst\"`'\nenable_static='`$ECHO \"$enable_static\" | $SED \"$delay_single_quote_subst\"`'\npic_mode='`$ECHO \"$pic_mode\" | $SED \"$delay_single_quote_subst\"`'\nenable_fast_install='`$ECHO \"$enable_fast_install\" | $SED \"$delay_single_quote_subst\"`'\nSHELL='`$ECHO \"$SHELL\" | $SED \"$delay_single_quote_subst\"`'\nECHO='`$ECHO \"$ECHO\" | $SED \"$delay_single_quote_subst\"`'\nhost_alias='`$ECHO \"$host_alias\" | $SED \"$delay_single_quote_subst\"`'\nhost='`$ECHO \"$host\" | $SED \"$delay_single_quote_subst\"`'\nhost_os='`$ECHO \"$host_os\" | $SED \"$delay_single_quote_subst\"`'\nbuild_alias='`$ECHO \"$build_alias\" | $SED \"$delay_single_quote_subst\"`'\nbuild='`$ECHO \"$build\" | $SED \"$delay_single_quote_subst\"`'\nbuild_os='`$ECHO \"$build_os\" | $SED \"$delay_single_quote_subst\"`'\nSED='`$ECHO \"$SED\" | $SED \"$delay_single_quote_subst\"`'\nXsed='`$ECHO \"$Xsed\" | $SED \"$delay_single_quote_subst\"`'\nGREP='`$ECHO \"$GREP\" | $SED \"$delay_single_quote_subst\"`'\nEGREP='`$ECHO \"$EGREP\" | $SED \"$delay_single_quote_subst\"`'\nFGREP='`$ECHO \"$FGREP\" | $SED \"$delay_single_quote_subst\"`'\nLD='`$ECHO \"$LD\" | $SED \"$delay_single_quote_subst\"`'\nNM='`$ECHO \"$NM\" | $SED \"$delay_single_quote_subst\"`'\nLN_S='`$ECHO \"$LN_S\" | $SED \"$delay_single_quote_subst\"`'\nmax_cmd_len='`$ECHO \"$max_cmd_len\" | $SED \"$delay_single_quote_subst\"`'\nac_objext='`$ECHO \"$ac_objext\" | $SED \"$delay_single_quote_subst\"`'\nexeext='`$ECHO \"$exeext\" | $SED \"$delay_single_quote_subst\"`'\nlt_unset='`$ECHO \"$lt_unset\" | $SED \"$delay_single_quote_subst\"`'\nlt_SP2NL='`$ECHO \"$lt_SP2NL\" | $SED \"$delay_single_quote_subst\"`'\nlt_NL2SP='`$ECHO \"$lt_NL2SP\" | $SED \"$delay_single_quote_subst\"`'\nreload_flag='`$ECHO \"$reload_flag\" | $SED \"$delay_single_quote_subst\"`'\nreload_cmds='`$ECHO \"$reload_cmds\" | $SED \"$delay_single_quote_subst\"`'\nOBJDUMP='`$ECHO \"$OBJDUMP\" | $SED \"$delay_single_quote_subst\"`'\ndeplibs_check_method='`$ECHO \"$deplibs_check_method\" | $SED \"$delay_single_quote_subst\"`'\nfile_magic_cmd='`$ECHO \"$file_magic_cmd\" | $SED \"$delay_single_quote_subst\"`'\nAR='`$ECHO \"$AR\" | $SED \"$delay_single_quote_subst\"`'\nAR_FLAGS='`$ECHO \"$AR_FLAGS\" | $SED \"$delay_single_quote_subst\"`'\nSTRIP='`$ECHO \"$STRIP\" | $SED \"$delay_single_quote_subst\"`'\nRANLIB='`$ECHO \"$RANLIB\" | $SED \"$delay_single_quote_subst\"`'\nold_postinstall_cmds='`$ECHO \"$old_postinstall_cmds\" | $SED \"$delay_single_quote_subst\"`'\nold_postuninstall_cmds='`$ECHO \"$old_postuninstall_cmds\" | $SED \"$delay_single_quote_subst\"`'\nold_archive_cmds='`$ECHO \"$old_archive_cmds\" | $SED \"$delay_single_quote_subst\"`'\nlock_old_archive_extraction='`$ECHO \"$lock_old_archive_extraction\" | $SED \"$delay_single_quote_subst\"`'\nCC='`$ECHO \"$CC\" | $SED \"$delay_single_quote_subst\"`'\nCFLAGS='`$ECHO \"$CFLAGS\" | $SED \"$delay_single_quote_subst\"`'\ncompiler='`$ECHO \"$compiler\" | $SED \"$delay_single_quote_subst\"`'\nGCC='`$ECHO \"$GCC\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_sys_global_symbol_pipe='`$ECHO \"$lt_cv_sys_global_symbol_pipe\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_sys_global_symbol_to_cdecl='`$ECHO \"$lt_cv_sys_global_symbol_to_cdecl\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_sys_global_symbol_to_c_name_address='`$ECHO \"$lt_cv_sys_global_symbol_to_c_name_address\" | $SED \"$delay_single_quote_subst\"`'\nlt_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\"`'\nobjdir='`$ECHO \"$objdir\" | $SED \"$delay_single_quote_subst\"`'\nMAGIC_CMD='`$ECHO \"$MAGIC_CMD\" | $SED \"$delay_single_quote_subst\"`'\nlt_prog_compiler_no_builtin_flag='`$ECHO \"$lt_prog_compiler_no_builtin_flag\" | $SED \"$delay_single_quote_subst\"`'\nlt_prog_compiler_wl='`$ECHO \"$lt_prog_compiler_wl\" | $SED \"$delay_single_quote_subst\"`'\nlt_prog_compiler_pic='`$ECHO \"$lt_prog_compiler_pic\" | $SED \"$delay_single_quote_subst\"`'\nlt_prog_compiler_static='`$ECHO \"$lt_prog_compiler_static\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_prog_compiler_c_o='`$ECHO \"$lt_cv_prog_compiler_c_o\" | $SED \"$delay_single_quote_subst\"`'\nneed_locks='`$ECHO \"$need_locks\" | $SED \"$delay_single_quote_subst\"`'\nDSYMUTIL='`$ECHO \"$DSYMUTIL\" | $SED \"$delay_single_quote_subst\"`'\nNMEDIT='`$ECHO \"$NMEDIT\" | $SED \"$delay_single_quote_subst\"`'\nLIPO='`$ECHO \"$LIPO\" | $SED \"$delay_single_quote_subst\"`'\nOTOOL='`$ECHO \"$OTOOL\" | $SED \"$delay_single_quote_subst\"`'\nOTOOL64='`$ECHO \"$OTOOL64\" | $SED \"$delay_single_quote_subst\"`'\nlibext='`$ECHO \"$libext\" | $SED \"$delay_single_quote_subst\"`'\nshrext_cmds='`$ECHO \"$shrext_cmds\" | $SED \"$delay_single_quote_subst\"`'\nextract_expsyms_cmds='`$ECHO \"$extract_expsyms_cmds\" | $SED \"$delay_single_quote_subst\"`'\narchive_cmds_need_lc='`$ECHO \"$archive_cmds_need_lc\" | $SED \"$delay_single_quote_subst\"`'\nenable_shared_with_static_runtimes='`$ECHO \"$enable_shared_with_static_runtimes\" | $SED \"$delay_single_quote_subst\"`'\nexport_dynamic_flag_spec='`$ECHO \"$export_dynamic_flag_spec\" | $SED \"$delay_single_quote_subst\"`'\nwhole_archive_flag_spec='`$ECHO \"$whole_archive_flag_spec\" | $SED \"$delay_single_quote_subst\"`'\ncompiler_needs_object='`$ECHO \"$compiler_needs_object\" | $SED \"$delay_single_quote_subst\"`'\nold_archive_from_new_cmds='`$ECHO \"$old_archive_from_new_cmds\" | $SED \"$delay_single_quote_subst\"`'\nold_archive_from_expsyms_cmds='`$ECHO \"$old_archive_from_expsyms_cmds\" | $SED \"$delay_single_quote_subst\"`'\narchive_cmds='`$ECHO \"$archive_cmds\" | $SED \"$delay_single_quote_subst\"`'\narchive_expsym_cmds='`$ECHO \"$archive_expsym_cmds\" | $SED \"$delay_single_quote_subst\"`'\nmodule_cmds='`$ECHO \"$module_cmds\" | $SED \"$delay_single_quote_subst\"`'\nmodule_expsym_cmds='`$ECHO \"$module_expsym_cmds\" | $SED \"$delay_single_quote_subst\"`'\nwith_gnu_ld='`$ECHO \"$with_gnu_ld\" | $SED \"$delay_single_quote_subst\"`'\nallow_undefined_flag='`$ECHO \"$allow_undefined_flag\" | $SED \"$delay_single_quote_subst\"`'\nno_undefined_flag='`$ECHO \"$no_undefined_flag\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_libdir_flag_spec='`$ECHO \"$hardcode_libdir_flag_spec\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_libdir_flag_spec_ld='`$ECHO \"$hardcode_libdir_flag_spec_ld\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_libdir_separator='`$ECHO \"$hardcode_libdir_separator\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_direct='`$ECHO \"$hardcode_direct\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_direct_absolute='`$ECHO \"$hardcode_direct_absolute\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_minus_L='`$ECHO \"$hardcode_minus_L\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_shlibpath_var='`$ECHO \"$hardcode_shlibpath_var\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_automatic='`$ECHO \"$hardcode_automatic\" | $SED \"$delay_single_quote_subst\"`'\ninherit_rpath='`$ECHO \"$inherit_rpath\" | $SED \"$delay_single_quote_subst\"`'\nlink_all_deplibs='`$ECHO \"$link_all_deplibs\" | $SED \"$delay_single_quote_subst\"`'\nfix_srcfile_path='`$ECHO \"$fix_srcfile_path\" | $SED \"$delay_single_quote_subst\"`'\nalways_export_symbols='`$ECHO \"$always_export_symbols\" | $SED \"$delay_single_quote_subst\"`'\nexport_symbols_cmds='`$ECHO \"$export_symbols_cmds\" | $SED \"$delay_single_quote_subst\"`'\nexclude_expsyms='`$ECHO \"$exclude_expsyms\" | $SED \"$delay_single_quote_subst\"`'\ninclude_expsyms='`$ECHO \"$include_expsyms\" | $SED \"$delay_single_quote_subst\"`'\nprelink_cmds='`$ECHO \"$prelink_cmds\" | $SED \"$delay_single_quote_subst\"`'\nfile_list_spec='`$ECHO \"$file_list_spec\" | $SED \"$delay_single_quote_subst\"`'\nvariables_saved_for_relink='`$ECHO \"$variables_saved_for_relink\" | $SED \"$delay_single_quote_subst\"`'\nneed_lib_prefix='`$ECHO \"$need_lib_prefix\" | $SED \"$delay_single_quote_subst\"`'\nneed_version='`$ECHO \"$need_version\" | $SED \"$delay_single_quote_subst\"`'\nversion_type='`$ECHO \"$version_type\" | $SED \"$delay_single_quote_subst\"`'\nrunpath_var='`$ECHO \"$runpath_var\" | $SED \"$delay_single_quote_subst\"`'\nshlibpath_var='`$ECHO \"$shlibpath_var\" | $SED \"$delay_single_quote_subst\"`'\nshlibpath_overrides_runpath='`$ECHO \"$shlibpath_overrides_runpath\" | $SED \"$delay_single_quote_subst\"`'\nlibname_spec='`$ECHO \"$libname_spec\" | $SED \"$delay_single_quote_subst\"`'\nlibrary_names_spec='`$ECHO \"$library_names_spec\" | $SED \"$delay_single_quote_subst\"`'\nsoname_spec='`$ECHO \"$soname_spec\" | $SED \"$delay_single_quote_subst\"`'\ninstall_override_mode='`$ECHO \"$install_override_mode\" | $SED \"$delay_single_quote_subst\"`'\npostinstall_cmds='`$ECHO \"$postinstall_cmds\" | $SED \"$delay_single_quote_subst\"`'\npostuninstall_cmds='`$ECHO \"$postuninstall_cmds\" | $SED \"$delay_single_quote_subst\"`'\nfinish_cmds='`$ECHO \"$finish_cmds\" | $SED \"$delay_single_quote_subst\"`'\nfinish_eval='`$ECHO \"$finish_eval\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_into_libs='`$ECHO \"$hardcode_into_libs\" | $SED \"$delay_single_quote_subst\"`'\nsys_lib_search_path_spec='`$ECHO \"$sys_lib_search_path_spec\" | $SED \"$delay_single_quote_subst\"`'\nsys_lib_dlsearch_path_spec='`$ECHO \"$sys_lib_dlsearch_path_spec\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_action='`$ECHO \"$hardcode_action\" | $SED \"$delay_single_quote_subst\"`'\nenable_dlopen='`$ECHO \"$enable_dlopen\" | $SED \"$delay_single_quote_subst\"`'\nenable_dlopen_self='`$ECHO \"$enable_dlopen_self\" | $SED \"$delay_single_quote_subst\"`'\nenable_dlopen_self_static='`$ECHO \"$enable_dlopen_self_static\" | $SED \"$delay_single_quote_subst\"`'\nold_striplib='`$ECHO \"$old_striplib\" | $SED \"$delay_single_quote_subst\"`'\nstriplib='`$ECHO \"$striplib\" | $SED \"$delay_single_quote_subst\"`'\ncompiler_lib_search_dirs='`$ECHO \"$compiler_lib_search_dirs\" | $SED \"$delay_single_quote_subst\"`'\npredep_objects='`$ECHO \"$predep_objects\" | $SED \"$delay_single_quote_subst\"`'\npostdep_objects='`$ECHO \"$postdep_objects\" | $SED \"$delay_single_quote_subst\"`'\npredeps='`$ECHO \"$predeps\" | $SED \"$delay_single_quote_subst\"`'\npostdeps='`$ECHO \"$postdeps\" | $SED \"$delay_single_quote_subst\"`'\ncompiler_lib_search_path='`$ECHO \"$compiler_lib_search_path\" | $SED \"$delay_single_quote_subst\"`'\nLD_CXX='`$ECHO \"$LD_CXX\" | $SED \"$delay_single_quote_subst\"`'\nreload_flag_CXX='`$ECHO \"$reload_flag_CXX\" | $SED \"$delay_single_quote_subst\"`'\nreload_cmds_CXX='`$ECHO \"$reload_cmds_CXX\" | $SED \"$delay_single_quote_subst\"`'\nold_archive_cmds_CXX='`$ECHO \"$old_archive_cmds_CXX\" | $SED \"$delay_single_quote_subst\"`'\ncompiler_CXX='`$ECHO \"$compiler_CXX\" | $SED \"$delay_single_quote_subst\"`'\nGCC_CXX='`$ECHO \"$GCC_CXX\" | $SED \"$delay_single_quote_subst\"`'\nlt_prog_compiler_no_builtin_flag_CXX='`$ECHO \"$lt_prog_compiler_no_builtin_flag_CXX\" | $SED \"$delay_single_quote_subst\"`'\nlt_prog_compiler_wl_CXX='`$ECHO \"$lt_prog_compiler_wl_CXX\" | $SED \"$delay_single_quote_subst\"`'\nlt_prog_compiler_pic_CXX='`$ECHO \"$lt_prog_compiler_pic_CXX\" | $SED \"$delay_single_quote_subst\"`'\nlt_prog_compiler_static_CXX='`$ECHO \"$lt_prog_compiler_static_CXX\" | $SED \"$delay_single_quote_subst\"`'\nlt_cv_prog_compiler_c_o_CXX='`$ECHO \"$lt_cv_prog_compiler_c_o_CXX\" | $SED \"$delay_single_quote_subst\"`'\narchive_cmds_need_lc_CXX='`$ECHO \"$archive_cmds_need_lc_CXX\" | $SED \"$delay_single_quote_subst\"`'\nenable_shared_with_static_runtimes_CXX='`$ECHO \"$enable_shared_with_static_runtimes_CXX\" | $SED \"$delay_single_quote_subst\"`'\nexport_dynamic_flag_spec_CXX='`$ECHO \"$export_dynamic_flag_spec_CXX\" | $SED \"$delay_single_quote_subst\"`'\nwhole_archive_flag_spec_CXX='`$ECHO \"$whole_archive_flag_spec_CXX\" | $SED \"$delay_single_quote_subst\"`'\ncompiler_needs_object_CXX='`$ECHO \"$compiler_needs_object_CXX\" | $SED \"$delay_single_quote_subst\"`'\nold_archive_from_new_cmds_CXX='`$ECHO \"$old_archive_from_new_cmds_CXX\" | $SED \"$delay_single_quote_subst\"`'\nold_archive_from_expsyms_cmds_CXX='`$ECHO \"$old_archive_from_expsyms_cmds_CXX\" | $SED \"$delay_single_quote_subst\"`'\narchive_cmds_CXX='`$ECHO \"$archive_cmds_CXX\" | $SED \"$delay_single_quote_subst\"`'\narchive_expsym_cmds_CXX='`$ECHO \"$archive_expsym_cmds_CXX\" | $SED \"$delay_single_quote_subst\"`'\nmodule_cmds_CXX='`$ECHO \"$module_cmds_CXX\" | $SED \"$delay_single_quote_subst\"`'\nmodule_expsym_cmds_CXX='`$ECHO \"$module_expsym_cmds_CXX\" | $SED \"$delay_single_quote_subst\"`'\nwith_gnu_ld_CXX='`$ECHO \"$with_gnu_ld_CXX\" | $SED \"$delay_single_quote_subst\"`'\nallow_undefined_flag_CXX='`$ECHO \"$allow_undefined_flag_CXX\" | $SED \"$delay_single_quote_subst\"`'\nno_undefined_flag_CXX='`$ECHO \"$no_undefined_flag_CXX\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_libdir_flag_spec_CXX='`$ECHO \"$hardcode_libdir_flag_spec_CXX\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_libdir_flag_spec_ld_CXX='`$ECHO \"$hardcode_libdir_flag_spec_ld_CXX\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_libdir_separator_CXX='`$ECHO \"$hardcode_libdir_separator_CXX\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_direct_CXX='`$ECHO \"$hardcode_direct_CXX\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_direct_absolute_CXX='`$ECHO \"$hardcode_direct_absolute_CXX\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_minus_L_CXX='`$ECHO \"$hardcode_minus_L_CXX\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_shlibpath_var_CXX='`$ECHO \"$hardcode_shlibpath_var_CXX\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_automatic_CXX='`$ECHO \"$hardcode_automatic_CXX\" | $SED \"$delay_single_quote_subst\"`'\ninherit_rpath_CXX='`$ECHO \"$inherit_rpath_CXX\" | $SED \"$delay_single_quote_subst\"`'\nlink_all_deplibs_CXX='`$ECHO \"$link_all_deplibs_CXX\" | $SED \"$delay_single_quote_subst\"`'\nfix_srcfile_path_CXX='`$ECHO \"$fix_srcfile_path_CXX\" | $SED \"$delay_single_quote_subst\"`'\nalways_export_symbols_CXX='`$ECHO \"$always_export_symbols_CXX\" | $SED \"$delay_single_quote_subst\"`'\nexport_symbols_cmds_CXX='`$ECHO \"$export_symbols_cmds_CXX\" | $SED \"$delay_single_quote_subst\"`'\nexclude_expsyms_CXX='`$ECHO \"$exclude_expsyms_CXX\" | $SED \"$delay_single_quote_subst\"`'\ninclude_expsyms_CXX='`$ECHO \"$include_expsyms_CXX\" | $SED \"$delay_single_quote_subst\"`'\nprelink_cmds_CXX='`$ECHO \"$prelink_cmds_CXX\" | $SED \"$delay_single_quote_subst\"`'\nfile_list_spec_CXX='`$ECHO \"$file_list_spec_CXX\" | $SED \"$delay_single_quote_subst\"`'\nhardcode_action_CXX='`$ECHO \"$hardcode_action_CXX\" | $SED \"$delay_single_quote_subst\"`'\ncompiler_lib_search_dirs_CXX='`$ECHO \"$compiler_lib_search_dirs_CXX\" | $SED \"$delay_single_quote_subst\"`'\npredep_objects_CXX='`$ECHO \"$predep_objects_CXX\" | $SED \"$delay_single_quote_subst\"`'\npostdep_objects_CXX='`$ECHO \"$postdep_objects_CXX\" | $SED \"$delay_single_quote_subst\"`'\npredeps_CXX='`$ECHO \"$predeps_CXX\" | $SED \"$delay_single_quote_subst\"`'\npostdeps_CXX='`$ECHO \"$postdeps_CXX\" | $SED \"$delay_single_quote_subst\"`'\ncompiler_lib_search_path_CXX='`$ECHO \"$compiler_lib_search_path_CXX\" | $SED \"$delay_single_quote_subst\"`'\n\nLTCC='$LTCC'\nLTCFLAGS='$LTCFLAGS'\ncompiler='$compiler_DEFAULT'\n\n# A function that is used when there is no print builtin or printf.\nfunc_fallback_echo ()\n{\n  eval 'cat <<_LTECHO_EOF\n\\$1\n_LTECHO_EOF'\n}\n\n# Quote evaled strings.\nfor var in SHELL \\\nECHO \\\nSED \\\nGREP \\\nEGREP \\\nFGREP \\\nLD \\\nNM \\\nLN_S \\\nlt_SP2NL \\\nlt_NL2SP \\\nreload_flag \\\nOBJDUMP \\\ndeplibs_check_method \\\nfile_magic_cmd \\\nAR \\\nAR_FLAGS \\\nSTRIP \\\nRANLIB \\\nCC \\\nCFLAGS \\\ncompiler \\\nlt_cv_sys_global_symbol_pipe \\\nlt_cv_sys_global_symbol_to_cdecl \\\nlt_cv_sys_global_symbol_to_c_name_address \\\nlt_cv_sys_global_symbol_to_c_name_address_lib_prefix \\\nlt_prog_compiler_no_builtin_flag \\\nlt_prog_compiler_wl \\\nlt_prog_compiler_pic \\\nlt_prog_compiler_static \\\nlt_cv_prog_compiler_c_o \\\nneed_locks \\\nDSYMUTIL \\\nNMEDIT \\\nLIPO \\\nOTOOL \\\nOTOOL64 \\\nshrext_cmds \\\nexport_dynamic_flag_spec \\\nwhole_archive_flag_spec \\\ncompiler_needs_object \\\nwith_gnu_ld \\\nallow_undefined_flag \\\nno_undefined_flag \\\nhardcode_libdir_flag_spec \\\nhardcode_libdir_flag_spec_ld \\\nhardcode_libdir_separator \\\nfix_srcfile_path \\\nexclude_expsyms \\\ninclude_expsyms \\\nfile_list_spec \\\nvariables_saved_for_relink \\\nlibname_spec \\\nlibrary_names_spec \\\nsoname_spec \\\ninstall_override_mode \\\nfinish_eval \\\nold_striplib \\\nstriplib \\\ncompiler_lib_search_dirs \\\npredep_objects \\\npostdep_objects \\\npredeps \\\npostdeps \\\ncompiler_lib_search_path \\\nLD_CXX \\\nreload_flag_CXX \\\ncompiler_CXX \\\nlt_prog_compiler_no_builtin_flag_CXX \\\nlt_prog_compiler_wl_CXX \\\nlt_prog_compiler_pic_CXX \\\nlt_prog_compiler_static_CXX \\\nlt_cv_prog_compiler_c_o_CXX \\\nexport_dynamic_flag_spec_CXX \\\nwhole_archive_flag_spec_CXX \\\ncompiler_needs_object_CXX \\\nwith_gnu_ld_CXX \\\nallow_undefined_flag_CXX \\\nno_undefined_flag_CXX \\\nhardcode_libdir_flag_spec_CXX \\\nhardcode_libdir_flag_spec_ld_CXX \\\nhardcode_libdir_separator_CXX \\\nfix_srcfile_path_CXX \\\nexclude_expsyms_CXX \\\ninclude_expsyms_CXX \\\nfile_list_spec_CXX \\\ncompiler_lib_search_dirs_CXX \\\npredep_objects_CXX \\\npostdep_objects_CXX \\\npredeps_CXX \\\npostdeps_CXX \\\ncompiler_lib_search_path_CXX; do\n    case \\`eval \\\\\\\\\\$ECHO \\\\\\\\\"\"\\\\\\\\\\$\\$var\"\\\\\\\\\"\\` in\n    *[\\\\\\\\\\\\\\`\\\\\"\\\\\\$]*)\n      eval \"lt_\\$var=\\\\\\\\\\\\\"\\\\\\`\\\\\\$ECHO \\\\\"\\\\\\$\\$var\\\\\" | \\\\\\$SED \\\\\"\\\\\\$sed_quote_subst\\\\\"\\\\\\`\\\\\\\\\\\\\"\"\n      ;;\n    *)\n      eval \"lt_\\$var=\\\\\\\\\\\\\"\\\\\\$\\$var\\\\\\\\\\\\\"\"\n      ;;\n    esac\ndone\n\n# Double-quote double-evaled strings.\nfor var in reload_cmds \\\nold_postinstall_cmds \\\nold_postuninstall_cmds \\\nold_archive_cmds \\\nextract_expsyms_cmds \\\nold_archive_from_new_cmds \\\nold_archive_from_expsyms_cmds \\\narchive_cmds \\\narchive_expsym_cmds \\\nmodule_cmds \\\nmodule_expsym_cmds \\\nexport_symbols_cmds \\\nprelink_cmds \\\npostinstall_cmds \\\npostuninstall_cmds \\\nfinish_cmds \\\nsys_lib_search_path_spec \\\nsys_lib_dlsearch_path_spec \\\nreload_cmds_CXX \\\nold_archive_cmds_CXX \\\nold_archive_from_new_cmds_CXX \\\nold_archive_from_expsyms_cmds_CXX \\\narchive_cmds_CXX \\\narchive_expsym_cmds_CXX \\\nmodule_cmds_CXX \\\nmodule_expsym_cmds_CXX \\\nexport_symbols_cmds_CXX \\\nprelink_cmds_CXX; do\n    case \\`eval \\\\\\\\\\$ECHO \\\\\\\\\"\"\\\\\\\\\\$\\$var\"\\\\\\\\\"\\` in\n    *[\\\\\\\\\\\\\\`\\\\\"\\\\\\$]*)\n      eval \"lt_\\$var=\\\\\\\\\\\\\"\\\\\\`\\\\\\$ECHO \\\\\"\\\\\\$\\$var\\\\\" | \\\\\\$SED -e \\\\\"\\\\\\$double_quote_subst\\\\\" -e \\\\\"\\\\\\$sed_quote_subst\\\\\" -e \\\\\"\\\\\\$delay_variable_subst\\\\\"\\\\\\`\\\\\\\\\\\\\"\"\n      ;;\n    *)\n      eval \"lt_\\$var=\\\\\\\\\\\\\"\\\\\\$\\$var\\\\\\\\\\\\\"\"\n      ;;\n    esac\ndone\n\nac_aux_dir='$ac_aux_dir'\nxsi_shell='$xsi_shell'\nlt_shell_append='$lt_shell_append'\n\n# See if we are running on zsh, and set the options which allow our\n# commands through without removal of \\ escapes INIT.\nif test -n \"\\${ZSH_VERSION+set}\" ; then\n   setopt NO_GLOB_SUBST\nfi\n\n\n    PACKAGE='$PACKAGE'\n    VERSION='$VERSION'\n    TIMESTAMP='$TIMESTAMP'\n    RM='$RM'\n    ofile='$ofile'\n\n\n\n\n\n\n_ACEOF\n\ncat >>$CONFIG_STATUS <<\\_ACEOF\n\n# Handling of arguments.\nfor ac_config_target in $ac_config_targets\ndo\n  case $ac_config_target in\n    \"depfiles\") CONFIG_COMMANDS=\"$CONFIG_COMMANDS depfiles\" ;;\n    \"libtool\") CONFIG_COMMANDS=\"$CONFIG_COMMANDS libtool\" ;;\n    \"Makefile\") CONFIG_FILES=\"$CONFIG_FILES Makefile\" ;;\n\n  *) { { echo \"$as_me:$LINENO: error: invalid argument: $ac_config_target\" >&5\necho \"$as_me: error: invalid argument: $ac_config_target\" >&2;}\n   { (exit 1); exit 1; }; };;\n  esac\ndone\n\n\n# If the user did not use the arguments to specify the items to instantiate,\n# then the envvar interface is used.  Set only those that are not.\n# We use the long form for the default assignment because of an extremely\n# bizarre bug on SunOS 4.1.3.\nif $ac_need_defaults; then\n  test \"${CONFIG_FILES+set}\" = set || CONFIG_FILES=$config_files\n  test \"${CONFIG_COMMANDS+set}\" = set || CONFIG_COMMANDS=$config_commands\nfi\n\n# Have a temporary directory for convenience.  Make it in the build tree\n# simply because there is no reason against having it here, and in addition,\n# creating and moving files from /tmp can sometimes cause problems.\n# Hook for its removal unless debugging.\n# Note that there is a small window in which the directory will not be cleaned:\n# after its creation but before its name has been assigned to `$tmp'.\n$debug ||\n{\n  tmp=\n  trap 'exit_status=$?\n  { test -z \"$tmp\" || test ! -d \"$tmp\" || rm -fr \"$tmp\"; } && exit $exit_status\n' 0\n  trap '{ (exit 1); exit 1; }' 1 2 13 15\n}\n# Create a (secure) tmp directory for tmp files.\n\n{\n  tmp=`(umask 077 && mktemp -d \"./confXXXXXX\") 2>/dev/null` &&\n  test -n \"$tmp\" && test -d \"$tmp\"\n}  ||\n{\n  tmp=./conf$$-$RANDOM\n  (umask 077 && mkdir \"$tmp\")\n} ||\n{\n   echo \"$me: cannot create a temporary directory in .\" >&2\n   { (exit 1); exit 1; }\n}\n\n#\n# Set up the sed scripts for CONFIG_FILES section.\n#\n\n# No need to generate the scripts if there are no CONFIG_FILES.\n# This happens for instance when ./config.status config.h\nif test -n \"$CONFIG_FILES\"; then\n\n_ACEOF\n\n\n\nac_delim='%!_!# '\nfor ac_last_try in false false false false false :; do\n  cat >conf$$subs.sed <<_ACEOF\nSHELL!$SHELL$ac_delim\nPATH_SEPARATOR!$PATH_SEPARATOR$ac_delim\nPACKAGE_NAME!$PACKAGE_NAME$ac_delim\nPACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim\nPACKAGE_VERSION!$PACKAGE_VERSION$ac_delim\nPACKAGE_STRING!$PACKAGE_STRING$ac_delim\nPACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim\nexec_prefix!$exec_prefix$ac_delim\nprefix!$prefix$ac_delim\nprogram_transform_name!$program_transform_name$ac_delim\nbindir!$bindir$ac_delim\nsbindir!$sbindir$ac_delim\nlibexecdir!$libexecdir$ac_delim\ndatarootdir!$datarootdir$ac_delim\ndatadir!$datadir$ac_delim\nsysconfdir!$sysconfdir$ac_delim\nsharedstatedir!$sharedstatedir$ac_delim\nlocalstatedir!$localstatedir$ac_delim\nincludedir!$includedir$ac_delim\noldincludedir!$oldincludedir$ac_delim\ndocdir!$docdir$ac_delim\ninfodir!$infodir$ac_delim\nhtmldir!$htmldir$ac_delim\ndvidir!$dvidir$ac_delim\npdfdir!$pdfdir$ac_delim\npsdir!$psdir$ac_delim\nlibdir!$libdir$ac_delim\nlocaledir!$localedir$ac_delim\nmandir!$mandir$ac_delim\nDEFS!$DEFS$ac_delim\nECHO_C!$ECHO_C$ac_delim\nECHO_N!$ECHO_N$ac_delim\nECHO_T!$ECHO_T$ac_delim\nLIBS!$LIBS$ac_delim\nbuild_alias!$build_alias$ac_delim\nhost_alias!$host_alias$ac_delim\ntarget_alias!$target_alias$ac_delim\nINSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim\nINSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim\nINSTALL_DATA!$INSTALL_DATA$ac_delim\nam__isrc!$am__isrc$ac_delim\nCYGPATH_W!$CYGPATH_W$ac_delim\nPACKAGE!$PACKAGE$ac_delim\nVERSION!$VERSION$ac_delim\nACLOCAL!$ACLOCAL$ac_delim\nAUTOCONF!$AUTOCONF$ac_delim\nAUTOMAKE!$AUTOMAKE$ac_delim\nAUTOHEADER!$AUTOHEADER$ac_delim\nMAKEINFO!$MAKEINFO$ac_delim\ninstall_sh!$install_sh$ac_delim\nSTRIP!$STRIP$ac_delim\nINSTALL_STRIP_PROGRAM!$INSTALL_STRIP_PROGRAM$ac_delim\nmkdir_p!$mkdir_p$ac_delim\nAWK!$AWK$ac_delim\nSET_MAKE!$SET_MAKE$ac_delim\nam__leading_dot!$am__leading_dot$ac_delim\nAMTAR!$AMTAR$ac_delim\nam__tar!$am__tar$ac_delim\nam__untar!$am__untar$ac_delim\nLIBTOOL!$LIBTOOL$ac_delim\nbuild!$build$ac_delim\nbuild_cpu!$build_cpu$ac_delim\nbuild_vendor!$build_vendor$ac_delim\nbuild_os!$build_os$ac_delim\nhost!$host$ac_delim\nhost_cpu!$host_cpu$ac_delim\nhost_vendor!$host_vendor$ac_delim\nhost_os!$host_os$ac_delim\nCC!$CC$ac_delim\nCFLAGS!$CFLAGS$ac_delim\nLDFLAGS!$LDFLAGS$ac_delim\nCPPFLAGS!$CPPFLAGS$ac_delim\nac_ct_CC!$ac_ct_CC$ac_delim\nEXEEXT!$EXEEXT$ac_delim\nOBJEXT!$OBJEXT$ac_delim\nDEPDIR!$DEPDIR$ac_delim\nam__include!$am__include$ac_delim\nam__quote!$am__quote$ac_delim\nAMDEP_TRUE!$AMDEP_TRUE$ac_delim\nAMDEP_FALSE!$AMDEP_FALSE$ac_delim\nAMDEPBACKSLASH!$AMDEPBACKSLASH$ac_delim\nCCDEPMODE!$CCDEPMODE$ac_delim\nam__fastdepCC_TRUE!$am__fastdepCC_TRUE$ac_delim\nam__fastdepCC_FALSE!$am__fastdepCC_FALSE$ac_delim\nSED!$SED$ac_delim\nGREP!$GREP$ac_delim\nEGREP!$EGREP$ac_delim\nFGREP!$FGREP$ac_delim\nLD!$LD$ac_delim\nDUMPBIN!$DUMPBIN$ac_delim\nac_ct_DUMPBIN!$ac_ct_DUMPBIN$ac_delim\nNM!$NM$ac_delim\nLN_S!$LN_S$ac_delim\nOBJDUMP!$OBJDUMP$ac_delim\nAR!$AR$ac_delim\nRANLIB!$RANLIB$ac_delim\nDSYMUTIL!$DSYMUTIL$ac_delim\n_ACEOF\n\n  if test `sed -n \"s/.*$ac_delim\\$/X/p\" conf$$subs.sed | grep -c X` = 97; then\n    break\n  elif $ac_last_try; then\n    { { echo \"$as_me:$LINENO: error: could not make $CONFIG_STATUS\" >&5\necho \"$as_me: error: could not make $CONFIG_STATUS\" >&2;}\n   { (exit 1); exit 1; }; }\n  else\n    ac_delim=\"$ac_delim!$ac_delim _$ac_delim!! \"\n  fi\ndone\n\nac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`\nif test -n \"$ac_eof\"; then\n  ac_eof=`echo \"$ac_eof\" | sort -nru | sed 1q`\n  ac_eof=`expr $ac_eof + 1`\nfi\n\ncat >>$CONFIG_STATUS <<_ACEOF\ncat >\"\\$tmp/subs-1.sed\" <<\\CEOF$ac_eof\n/@[a-zA-Z_][a-zA-Z_0-9]*@/!b\n_ACEOF\nsed '\ns/[,\\\\&]/\\\\&/g; s/@/@|#_!!_#|/g\ns/^/s,@/; s/!/@,|#_!!_#|/\n:n\nt n\ns/'\"$ac_delim\"'$/,g/; t\ns/$/\\\\/; p\nN; s/^.*\\n//; s/[,\\\\&]/\\\\&/g; s/@/@|#_!!_#|/g; b n\n' >>$CONFIG_STATUS <conf$$subs.sed\nrm -f conf$$subs.sed\ncat >>$CONFIG_STATUS <<_ACEOF\nCEOF$ac_eof\n_ACEOF\n\n\nac_delim='%!_!# '\nfor ac_last_try in false false false false false :; do\n  cat >conf$$subs.sed <<_ACEOF\nNMEDIT!$NMEDIT$ac_delim\nLIPO!$LIPO$ac_delim\nOTOOL!$OTOOL$ac_delim\nOTOOL64!$OTOOL64$ac_delim\nCPP!$CPP$ac_delim\nCXX!$CXX$ac_delim\nCXXFLAGS!$CXXFLAGS$ac_delim\nac_ct_CXX!$ac_ct_CXX$ac_delim\nCXXDEPMODE!$CXXDEPMODE$ac_delim\nam__fastdepCXX_TRUE!$am__fastdepCXX_TRUE$ac_delim\nam__fastdepCXX_FALSE!$am__fastdepCXX_FALSE$ac_delim\nCXXCPP!$CXXCPP$ac_delim\nLIBOBJS!$LIBOBJS$ac_delim\nLTLIBOBJS!$LTLIBOBJS$ac_delim\n_ACEOF\n\n  if test `sed -n \"s/.*$ac_delim\\$/X/p\" conf$$subs.sed | grep -c X` = 14; then\n    break\n  elif $ac_last_try; then\n    { { echo \"$as_me:$LINENO: error: could not make $CONFIG_STATUS\" >&5\necho \"$as_me: error: could not make $CONFIG_STATUS\" >&2;}\n   { (exit 1); exit 1; }; }\n  else\n    ac_delim=\"$ac_delim!$ac_delim _$ac_delim!! \"\n  fi\ndone\n\nac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`\nif test -n \"$ac_eof\"; then\n  ac_eof=`echo \"$ac_eof\" | sort -nru | sed 1q`\n  ac_eof=`expr $ac_eof + 1`\nfi\n\ncat >>$CONFIG_STATUS <<_ACEOF\ncat >\"\\$tmp/subs-2.sed\" <<\\CEOF$ac_eof\n/@[a-zA-Z_][a-zA-Z_0-9]*@/!b end\n_ACEOF\nsed '\ns/[,\\\\&]/\\\\&/g; s/@/@|#_!!_#|/g\ns/^/s,@/; s/!/@,|#_!!_#|/\n:n\nt n\ns/'\"$ac_delim\"'$/,g/; t\ns/$/\\\\/; p\nN; s/^.*\\n//; s/[,\\\\&]/\\\\&/g; s/@/@|#_!!_#|/g; b n\n' >>$CONFIG_STATUS <conf$$subs.sed\nrm -f conf$$subs.sed\ncat >>$CONFIG_STATUS <<_ACEOF\n:end\ns/|#_!!_#|//g\nCEOF$ac_eof\n_ACEOF\n\n\n# VPATH may cause trouble with some makes, so we remove $(srcdir),\n# ${srcdir} and @srcdir@ from VPATH if srcdir is \".\", strip leading and\n# trailing colons and then remove the whole line if VPATH becomes empty\n# (actually we leave an empty line to preserve line numbers).\nif test \"x$srcdir\" = x.; then\n  ac_vpsub='/^[\t ]*VPATH[\t ]*=/{\ns/:*\\$(srcdir):*/:/\ns/:*\\${srcdir}:*/:/\ns/:*@srcdir@:*/:/\ns/^\\([^=]*=[\t ]*\\):*/\\1/\ns/:*$//\ns/^[^=]*=[\t ]*$//\n}'\nfi\n\ncat >>$CONFIG_STATUS <<\\_ACEOF\nfi # test -n \"$CONFIG_FILES\"\n\n\nfor ac_tag in  :F $CONFIG_FILES      :C $CONFIG_COMMANDS\ndo\n  case $ac_tag in\n  :[FHLC]) ac_mode=$ac_tag; continue;;\n  esac\n  case $ac_mode$ac_tag in\n  :[FHL]*:*);;\n  :L* | :C*:*) { { echo \"$as_me:$LINENO: error: Invalid tag $ac_tag.\" >&5\necho \"$as_me: error: Invalid tag $ac_tag.\" >&2;}\n   { (exit 1); exit 1; }; };;\n  :[FH]-) ac_tag=-:-;;\n  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;\n  esac\n  ac_save_IFS=$IFS\n  IFS=:\n  set x $ac_tag\n  IFS=$ac_save_IFS\n  shift\n  ac_file=$1\n  shift\n\n  case $ac_mode in\n  :L) ac_source=$1;;\n  :[FH])\n    ac_file_inputs=\n    for ac_f\n    do\n      case $ac_f in\n      -) ac_f=\"$tmp/stdin\";;\n      *) # Look for the file first in the build tree, then in the source tree\n\t # (if the path is not absolute).  The absolute path cannot be DOS-style,\n\t # because $ac_f cannot contain `:'.\n\t test -f \"$ac_f\" ||\n\t   case $ac_f in\n\t   [\\\\/$]*) false;;\n\t   *) test -f \"$srcdir/$ac_f\" && ac_f=\"$srcdir/$ac_f\";;\n\t   esac ||\n\t   { { echo \"$as_me:$LINENO: error: cannot find input file: $ac_f\" >&5\necho \"$as_me: error: cannot find input file: $ac_f\" >&2;}\n   { (exit 1); exit 1; }; };;\n      esac\n      ac_file_inputs=\"$ac_file_inputs $ac_f\"\n    done\n\n    # Let's still pretend it is `configure' which instantiates (i.e., don't\n    # use $as_me), people would be surprised to read:\n    #    /* config.h.  Generated by config.status.  */\n    configure_input=\"Generated from \"`IFS=:\n\t  echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`\" by configure.\"\n    if test x\"$ac_file\" != x-; then\n      configure_input=\"$ac_file.  $configure_input\"\n      { echo \"$as_me:$LINENO: creating $ac_file\" >&5\necho \"$as_me: creating $ac_file\" >&6;}\n    fi\n\n    case $ac_tag in\n    *:-:* | *:-) cat >\"$tmp/stdin\";;\n    esac\n    ;;\n  esac\n\n  ac_dir=`$as_dirname -- \"$ac_file\" ||\n$as_expr X\"$ac_file\" : 'X\\(.*[^/]\\)//*[^/][^/]*/*$' \\| \\\n\t X\"$ac_file\" : 'X\\(//\\)[^/]' \\| \\\n\t X\"$ac_file\" : 'X\\(//\\)$' \\| \\\n\t X\"$ac_file\" : 'X\\(/\\)' \\| . 2>/dev/null ||\necho X\"$ac_file\" |\n    sed '/^X\\(.*[^/]\\)\\/\\/*[^/][^/]*\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)[^/].*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n  { as_dir=\"$ac_dir\"\n  case $as_dir in #(\n  -*) as_dir=./$as_dir;;\n  esac\n  test -d \"$as_dir\" || { $as_mkdir_p && mkdir -p \"$as_dir\"; } || {\n    as_dirs=\n    while :; do\n      case $as_dir in #(\n      *\\'*) as_qdir=`echo \"$as_dir\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"`;; #(\n      *) as_qdir=$as_dir;;\n      esac\n      as_dirs=\"'$as_qdir' $as_dirs\"\n      as_dir=`$as_dirname -- \"$as_dir\" ||\n$as_expr X\"$as_dir\" : 'X\\(.*[^/]\\)//*[^/][^/]*/*$' \\| \\\n\t X\"$as_dir\" : 'X\\(//\\)[^/]' \\| \\\n\t X\"$as_dir\" : 'X\\(//\\)$' \\| \\\n\t X\"$as_dir\" : 'X\\(/\\)' \\| . 2>/dev/null ||\necho X\"$as_dir\" |\n    sed '/^X\\(.*[^/]\\)\\/\\/*[^/][^/]*\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)[^/].*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n      test -d \"$as_dir\" && break\n    done\n    test -z \"$as_dirs\" || eval \"mkdir $as_dirs\"\n  } || test -d \"$as_dir\" || { { echo \"$as_me:$LINENO: error: cannot create directory $as_dir\" >&5\necho \"$as_me: error: cannot create directory $as_dir\" >&2;}\n   { (exit 1); exit 1; }; }; }\n  ac_builddir=.\n\ncase \"$ac_dir\" in\n.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;\n*)\n  ac_dir_suffix=/`echo \"$ac_dir\" | sed 's,^\\.[\\\\/],,'`\n  # A \"..\" for each directory in $ac_dir_suffix.\n  ac_top_builddir_sub=`echo \"$ac_dir_suffix\" | sed 's,/[^\\\\/]*,/..,g;s,/,,'`\n  case $ac_top_builddir_sub in\n  \"\") ac_top_builddir_sub=. ac_top_build_prefix= ;;\n  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;\n  esac ;;\nesac\nac_abs_top_builddir=$ac_pwd\nac_abs_builddir=$ac_pwd$ac_dir_suffix\n# for backward compatibility:\nac_top_builddir=$ac_top_build_prefix\n\ncase $srcdir in\n  .)  # We are building in place.\n    ac_srcdir=.\n    ac_top_srcdir=$ac_top_builddir_sub\n    ac_abs_top_srcdir=$ac_pwd ;;\n  [\\\\/]* | ?:[\\\\/]* )  # Absolute name.\n    ac_srcdir=$srcdir$ac_dir_suffix;\n    ac_top_srcdir=$srcdir\n    ac_abs_top_srcdir=$srcdir ;;\n  *) # Relative name.\n    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix\n    ac_top_srcdir=$ac_top_build_prefix$srcdir\n    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;\nesac\nac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix\n\n\n  case $ac_mode in\n  :F)\n  #\n  # CONFIG_FILE\n  #\n\n  case $INSTALL in\n  [\\\\/$]* | ?:[\\\\/]* ) ac_INSTALL=$INSTALL ;;\n  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;\n  esac\n  ac_MKDIR_P=$MKDIR_P\n  case $MKDIR_P in\n  [\\\\/$]* | ?:[\\\\/]* ) ;;\n  */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;\n  esac\n_ACEOF\n\ncat >>$CONFIG_STATUS <<\\_ACEOF\n# If the template does not know about datarootdir, expand it.\n# FIXME: This hack should be removed a few years after 2.60.\nac_datarootdir_hack=; ac_datarootdir_seen=\n\ncase `sed -n '/datarootdir/ {\n  p\n  q\n}\n/@datadir@/p\n/@docdir@/p\n/@infodir@/p\n/@localedir@/p\n/@mandir@/p\n' $ac_file_inputs` in\n*datarootdir*) ac_datarootdir_seen=yes;;\n*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)\n  { echo \"$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting\" >&5\necho \"$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting\" >&2;}\n_ACEOF\ncat >>$CONFIG_STATUS <<_ACEOF\n  ac_datarootdir_hack='\n  s&@datadir@&$datadir&g\n  s&@docdir@&$docdir&g\n  s&@infodir@&$infodir&g\n  s&@localedir@&$localedir&g\n  s&@mandir@&$mandir&g\n    s&\\\\\\${datarootdir}&$datarootdir&g' ;;\nesac\n_ACEOF\n\n# Neutralize VPATH when `$srcdir' = `.'.\n# Shell code in configure.ac might set extrasub.\n# FIXME: do we really want to maintain this feature?\ncat >>$CONFIG_STATUS <<_ACEOF\n  sed \"$ac_vpsub\n$extrasub\n_ACEOF\ncat >>$CONFIG_STATUS <<\\_ACEOF\n:t\n/@[a-zA-Z_][a-zA-Z_0-9]*@/!b\ns&@configure_input@&$configure_input&;t t\ns&@top_builddir@&$ac_top_builddir_sub&;t t\ns&@srcdir@&$ac_srcdir&;t t\ns&@abs_srcdir@&$ac_abs_srcdir&;t t\ns&@top_srcdir@&$ac_top_srcdir&;t t\ns&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t\ns&@builddir@&$ac_builddir&;t t\ns&@abs_builddir@&$ac_abs_builddir&;t t\ns&@abs_top_builddir@&$ac_abs_top_builddir&;t t\ns&@INSTALL@&$ac_INSTALL&;t t\ns&@MKDIR_P@&$ac_MKDIR_P&;t t\n$ac_datarootdir_hack\n\" $ac_file_inputs | sed -f \"$tmp/subs-1.sed\" | sed -f \"$tmp/subs-2.sed\" >$tmp/out\n\ntest -z \"$ac_datarootdir_hack$ac_datarootdir_seen\" &&\n  { ac_out=`sed -n '/\\${datarootdir}/p' \"$tmp/out\"`; test -n \"$ac_out\"; } &&\n  { ac_out=`sed -n '/^[\t ]*datarootdir[\t ]*:*=/p' \"$tmp/out\"`; test -z \"$ac_out\"; } &&\n  { echo \"$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \\`datarootdir'\nwhich seems to be undefined.  Please make sure it is defined.\" >&5\necho \"$as_me: WARNING: $ac_file contains a reference to the variable \\`datarootdir'\nwhich seems to be undefined.  Please make sure it is defined.\" >&2;}\n\n  rm -f \"$tmp/stdin\"\n  case $ac_file in\n  -) cat \"$tmp/out\"; rm -f \"$tmp/out\";;\n  *) rm -f \"$ac_file\"; mv \"$tmp/out\" $ac_file;;\n  esac\n ;;\n\n\n  :C)  { echo \"$as_me:$LINENO: executing $ac_file commands\" >&5\necho \"$as_me: executing $ac_file commands\" >&6;}\n ;;\n  esac\n\n\n  case $ac_file$ac_mode in\n    \"depfiles\":C) test x\"$AMDEP_TRUE\" != x\"\" || for mf in $CONFIG_FILES; do\n  # Strip MF so we end up with the name of the file.\n  mf=`echo \"$mf\" | sed -e 's/:.*$//'`\n  # Check whether this is an Automake generated Makefile or not.\n  # We used to match only the files named `Makefile.in', but\n  # some people rename them; so instead we look at the file content.\n  # Grep'ing the first line is not enough: some people post-process\n  # each Makefile.in and add a new line on top of each file to say so.\n  # Grep'ing the whole file is not good either: AIX grep has a line\n  # limit of 2048, but all sed's we know have understand at least 4000.\n  if sed 10q \"$mf\" | grep '^#.*generated by automake' > /dev/null 2>&1; then\n    dirpart=`$as_dirname -- \"$mf\" ||\n$as_expr X\"$mf\" : 'X\\(.*[^/]\\)//*[^/][^/]*/*$' \\| \\\n\t X\"$mf\" : 'X\\(//\\)[^/]' \\| \\\n\t X\"$mf\" : 'X\\(//\\)$' \\| \\\n\t X\"$mf\" : 'X\\(/\\)' \\| . 2>/dev/null ||\necho X\"$mf\" |\n    sed '/^X\\(.*[^/]\\)\\/\\/*[^/][^/]*\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)[^/].*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n  else\n    continue\n  fi\n  # Extract the definition of DEPDIR, am__include, and am__quote\n  # from the Makefile without running `make'.\n  DEPDIR=`sed -n 's/^DEPDIR = //p' < \"$mf\"`\n  test -z \"$DEPDIR\" && continue\n  am__include=`sed -n 's/^am__include = //p' < \"$mf\"`\n  test -z \"am__include\" && continue\n  am__quote=`sed -n 's/^am__quote = //p' < \"$mf\"`\n  # When using ansi2knr, U may be empty or an underscore; expand it\n  U=`sed -n 's/^U = //p' < \"$mf\"`\n  # Find all dependency output files, they are included files with\n  # $(DEPDIR) in their names.  We invoke sed twice because it is the\n  # simplest approach to changing $(DEPDIR) to its actual value in the\n  # expansion.\n  for file in `sed -n \"\n    s/^$am__include $am__quote\\(.*(DEPDIR).*\\)$am__quote\"'$/\\1/p' <\"$mf\" | \\\n       sed -e 's/\\$(DEPDIR)/'\"$DEPDIR\"'/g' -e 's/\\$U/'\"$U\"'/g'`; do\n    # Make sure the directory exists.\n    test -f \"$dirpart/$file\" && continue\n    fdir=`$as_dirname -- \"$file\" ||\n$as_expr X\"$file\" : 'X\\(.*[^/]\\)//*[^/][^/]*/*$' \\| \\\n\t X\"$file\" : 'X\\(//\\)[^/]' \\| \\\n\t X\"$file\" : 'X\\(//\\)$' \\| \\\n\t X\"$file\" : 'X\\(/\\)' \\| . 2>/dev/null ||\necho X\"$file\" |\n    sed '/^X\\(.*[^/]\\)\\/\\/*[^/][^/]*\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)[^/].*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n    { as_dir=$dirpart/$fdir\n  case $as_dir in #(\n  -*) as_dir=./$as_dir;;\n  esac\n  test -d \"$as_dir\" || { $as_mkdir_p && mkdir -p \"$as_dir\"; } || {\n    as_dirs=\n    while :; do\n      case $as_dir in #(\n      *\\'*) as_qdir=`echo \"$as_dir\" | sed \"s/'/'\\\\\\\\\\\\\\\\''/g\"`;; #(\n      *) as_qdir=$as_dir;;\n      esac\n      as_dirs=\"'$as_qdir' $as_dirs\"\n      as_dir=`$as_dirname -- \"$as_dir\" ||\n$as_expr X\"$as_dir\" : 'X\\(.*[^/]\\)//*[^/][^/]*/*$' \\| \\\n\t X\"$as_dir\" : 'X\\(//\\)[^/]' \\| \\\n\t X\"$as_dir\" : 'X\\(//\\)$' \\| \\\n\t X\"$as_dir\" : 'X\\(/\\)' \\| . 2>/dev/null ||\necho X\"$as_dir\" |\n    sed '/^X\\(.*[^/]\\)\\/\\/*[^/][^/]*\\/*$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)[^/].*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\/\\)$/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  /^X\\(\\/\\).*/{\n\t    s//\\1/\n\t    q\n\t  }\n\t  s/.*/./; q'`\n      test -d \"$as_dir\" && break\n    done\n    test -z \"$as_dirs\" || eval \"mkdir $as_dirs\"\n  } || test -d \"$as_dir\" || { { echo \"$as_me:$LINENO: error: cannot create directory $as_dir\" >&5\necho \"$as_me: error: cannot create directory $as_dir\" >&2;}\n   { (exit 1); exit 1; }; }; }\n    # echo \"creating $dirpart/$file\"\n    echo '# dummy' > \"$dirpart/$file\"\n  done\ndone\n ;;\n    \"libtool\":C)\n\n    # See if we are running on zsh, and set the options which allow our\n    # commands through without removal of \\ escapes.\n    if test -n \"${ZSH_VERSION+set}\" ; then\n      setopt NO_GLOB_SUBST\n    fi\n\n    cfgfile=\"${ofile}T\"\n    trap \"$RM -f \\\"$cfgfile\\\"; exit 1\" 1 2 15\n    $RM -f \"$cfgfile\"\n\n    cat <<_LT_EOF >> \"$cfgfile\"\n#! $SHELL\n\n# `$ECHO \"$ofile\" | sed 's%^.*/%%'` - Provide generalized library-building support services.\n# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION\n# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:\n# NOTE: Changes made to this file will be lost: look at ltmain.sh.\n#\n#   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,\n#                 2006, 2007, 2008, 2009, 2010 Free Software Foundation,\n#                 Inc.\n#   Written by Gordon Matzigkeit, 1996\n#\n#   This file is part of GNU Libtool.\n#\n# GNU Libtool is free software; you can redistribute it and/or\n# modify it under the terms of the GNU General Public License as\n# published by the Free Software Foundation; either version 2 of\n# the License, or (at your option) any later version.\n#\n# As a special exception to the GNU General Public License,\n# if you distribute this file as part of a program or library that\n# is built using GNU Libtool, you may include this file under the\n# same distribution terms that you use for the rest of that program.\n#\n# GNU Libtool is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with GNU Libtool; see the file COPYING.  If not, a copy\n# can be downloaded from http://www.gnu.org/licenses/gpl.html, or\n# obtained by writing to the Free Software Foundation, Inc.,\n# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\n\n# The names of the tagged configurations supported by this script.\navailable_tags=\"CXX \"\n\n# ### BEGIN LIBTOOL CONFIG\n\n# Which release of libtool.m4 was used?\nmacro_version=$macro_version\nmacro_revision=$macro_revision\n\n# Whether or not to build shared libraries.\nbuild_libtool_libs=$enable_shared\n\n# Whether or not to build static libraries.\nbuild_old_libs=$enable_static\n\n# What type of objects to build.\npic_mode=$pic_mode\n\n# Whether or not to optimize for fast installation.\nfast_install=$enable_fast_install\n\n# Shell to use when invoking shell scripts.\nSHELL=$lt_SHELL\n\n# An echo program that protects backslashes.\nECHO=$lt_ECHO\n\n# The host system.\nhost_alias=$host_alias\nhost=$host\nhost_os=$host_os\n\n# The build system.\nbuild_alias=$build_alias\nbuild=$build\nbuild_os=$build_os\n\n# A sed program that does not truncate output.\nSED=$lt_SED\n\n# Sed that helps us avoid accidentally triggering echo(1) options like -n.\nXsed=\"\\$SED -e 1s/^X//\"\n\n# A grep program that handles long lines.\nGREP=$lt_GREP\n\n# An ERE matcher.\nEGREP=$lt_EGREP\n\n# A literal string matcher.\nFGREP=$lt_FGREP\n\n# A BSD- or MS-compatible name lister.\nNM=$lt_NM\n\n# Whether we need soft or hard links.\nLN_S=$lt_LN_S\n\n# What is the maximum length of a command?\nmax_cmd_len=$max_cmd_len\n\n# Object file suffix (normally \"o\").\nobjext=$ac_objext\n\n# Executable file suffix (normally \"\").\nexeext=$exeext\n\n# whether the shell understands \"unset\".\nlt_unset=$lt_unset\n\n# turn spaces into newlines.\nSP2NL=$lt_lt_SP2NL\n\n# turn newlines into spaces.\nNL2SP=$lt_lt_NL2SP\n\n# An object symbol dumper.\nOBJDUMP=$lt_OBJDUMP\n\n# Method to check whether dependent libraries are shared objects.\ndeplibs_check_method=$lt_deplibs_check_method\n\n# Command to use when deplibs_check_method == \"file_magic\".\nfile_magic_cmd=$lt_file_magic_cmd\n\n# The archiver.\nAR=$lt_AR\nAR_FLAGS=$lt_AR_FLAGS\n\n# A symbol stripping program.\nSTRIP=$lt_STRIP\n\n# Commands used to install an old-style archive.\nRANLIB=$lt_RANLIB\nold_postinstall_cmds=$lt_old_postinstall_cmds\nold_postuninstall_cmds=$lt_old_postuninstall_cmds\n\n# Whether to use a lock for old archive extraction.\nlock_old_archive_extraction=$lock_old_archive_extraction\n\n# A C compiler.\nLTCC=$lt_CC\n\n# LTCC compiler flags.\nLTCFLAGS=$lt_CFLAGS\n\n# Take the output of nm and produce a listing of raw symbols and C names.\nglobal_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe\n\n# Transform the output of nm in a proper C declaration.\nglobal_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl\n\n# Transform the output of nm in a C name address pair.\nglobal_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address\n\n# Transform the output of nm in a C name address pair when lib prefix is needed.\nglobal_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix\n\n# The name of the directory that contains temporary libtool files.\nobjdir=$objdir\n\n# Used to examine libraries when file_magic_cmd begins with \"file\".\nMAGIC_CMD=$MAGIC_CMD\n\n# Must we lock files when doing compilation?\nneed_locks=$lt_need_locks\n\n# Tool to manipulate archived DWARF debug symbol files on Mac OS X.\nDSYMUTIL=$lt_DSYMUTIL\n\n# Tool to change global to local symbols on Mac OS X.\nNMEDIT=$lt_NMEDIT\n\n# Tool to manipulate fat objects and archives on Mac OS X.\nLIPO=$lt_LIPO\n\n# ldd/readelf like tool for Mach-O binaries on Mac OS X.\nOTOOL=$lt_OTOOL\n\n# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4.\nOTOOL64=$lt_OTOOL64\n\n# Old archive suffix (normally \"a\").\nlibext=$libext\n\n# Shared library suffix (normally \".so\").\nshrext_cmds=$lt_shrext_cmds\n\n# The commands to extract the exported symbol list from a shared archive.\nextract_expsyms_cmds=$lt_extract_expsyms_cmds\n\n# Variables whose values should be saved in libtool wrapper scripts and\n# restored at link time.\nvariables_saved_for_relink=$lt_variables_saved_for_relink\n\n# Do we need the \"lib\" prefix for modules?\nneed_lib_prefix=$need_lib_prefix\n\n# Do we need a version for libraries?\nneed_version=$need_version\n\n# Library versioning type.\nversion_type=$version_type\n\n# Shared library runtime path variable.\nrunpath_var=$runpath_var\n\n# Shared library path variable.\nshlibpath_var=$shlibpath_var\n\n# Is shlibpath searched before the hard-coded library search path?\nshlibpath_overrides_runpath=$shlibpath_overrides_runpath\n\n# Format of library name prefix.\nlibname_spec=$lt_libname_spec\n\n# List of archive names.  First name is the real one, the rest are links.\n# The last name is the one that the linker finds with -lNAME\nlibrary_names_spec=$lt_library_names_spec\n\n# The coded name of the library, if different from the real name.\nsoname_spec=$lt_soname_spec\n\n# Permission mode override for installation of shared libraries.\ninstall_override_mode=$lt_install_override_mode\n\n# Command to use after installation of a shared archive.\npostinstall_cmds=$lt_postinstall_cmds\n\n# Command to use after uninstallation of a shared archive.\npostuninstall_cmds=$lt_postuninstall_cmds\n\n# Commands used to finish a libtool library installation in a directory.\nfinish_cmds=$lt_finish_cmds\n\n# As \"finish_cmds\", except a single script fragment to be evaled but\n# not shown.\nfinish_eval=$lt_finish_eval\n\n# Whether we should hardcode library paths into libraries.\nhardcode_into_libs=$hardcode_into_libs\n\n# Compile-time system search path for libraries.\nsys_lib_search_path_spec=$lt_sys_lib_search_path_spec\n\n# Run-time system search path for libraries.\nsys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec\n\n# Whether dlopen is supported.\ndlopen_support=$enable_dlopen\n\n# Whether dlopen of programs is supported.\ndlopen_self=$enable_dlopen_self\n\n# Whether dlopen of statically linked programs is supported.\ndlopen_self_static=$enable_dlopen_self_static\n\n# Commands to strip libraries.\nold_striplib=$lt_old_striplib\nstriplib=$lt_striplib\n\n\n# The linker used to build libraries.\nLD=$lt_LD\n\n# How to create reloadable object files.\nreload_flag=$lt_reload_flag\nreload_cmds=$lt_reload_cmds\n\n# Commands used to build an old-style archive.\nold_archive_cmds=$lt_old_archive_cmds\n\n# A language specific compiler.\nCC=$lt_compiler\n\n# Is the compiler the GNU compiler?\nwith_gcc=$GCC\n\n# Compiler flag to turn off builtin functions.\nno_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag\n\n# How to pass a linker flag through the compiler.\nwl=$lt_lt_prog_compiler_wl\n\n# Additional compiler flags for building library objects.\npic_flag=$lt_lt_prog_compiler_pic\n\n# Compiler flag to prevent dynamic linking.\nlink_static_flag=$lt_lt_prog_compiler_static\n\n# Does compiler simultaneously support -c and -o options?\ncompiler_c_o=$lt_lt_cv_prog_compiler_c_o\n\n# Whether or not to add -lc for building shared libraries.\nbuild_libtool_need_lc=$archive_cmds_need_lc\n\n# Whether or not to disallow shared libs when runtime libs are static.\nallow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes\n\n# Compiler flag to allow reflexive dlopens.\nexport_dynamic_flag_spec=$lt_export_dynamic_flag_spec\n\n# Compiler flag to generate shared objects directly from archives.\nwhole_archive_flag_spec=$lt_whole_archive_flag_spec\n\n# Whether the compiler copes with passing no objects directly.\ncompiler_needs_object=$lt_compiler_needs_object\n\n# Create an old-style archive from a shared archive.\nold_archive_from_new_cmds=$lt_old_archive_from_new_cmds\n\n# Create a temporary old-style archive to link instead of a shared archive.\nold_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds\n\n# Commands used to build a shared archive.\narchive_cmds=$lt_archive_cmds\narchive_expsym_cmds=$lt_archive_expsym_cmds\n\n# Commands used to build a loadable module if different from building\n# a shared archive.\nmodule_cmds=$lt_module_cmds\nmodule_expsym_cmds=$lt_module_expsym_cmds\n\n# Whether we are building with GNU ld or not.\nwith_gnu_ld=$lt_with_gnu_ld\n\n# Flag that allows shared libraries with undefined symbols to be built.\nallow_undefined_flag=$lt_allow_undefined_flag\n\n# Flag that enforces no undefined symbols.\nno_undefined_flag=$lt_no_undefined_flag\n\n# Flag to hardcode \\$libdir into a binary during linking.\n# This must work even if \\$libdir does not exist\nhardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec\n\n# If ld is used when linking, flag to hardcode \\$libdir into a binary\n# during linking.  This must work even if \\$libdir does not exist.\nhardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld\n\n# Whether we need a single \"-rpath\" flag with a separated argument.\nhardcode_libdir_separator=$lt_hardcode_libdir_separator\n\n# Set to \"yes\" if using DIR/libNAME\\${shared_ext} during linking hardcodes\n# DIR into the resulting binary.\nhardcode_direct=$hardcode_direct\n\n# Set to \"yes\" if using DIR/libNAME\\${shared_ext} during linking hardcodes\n# DIR into the resulting binary and the resulting library dependency is\n# \"absolute\",i.e impossible to change by setting \\${shlibpath_var} if the\n# library is relocated.\nhardcode_direct_absolute=$hardcode_direct_absolute\n\n# Set to \"yes\" if using the -LDIR flag during linking hardcodes DIR\n# into the resulting binary.\nhardcode_minus_L=$hardcode_minus_L\n\n# Set to \"yes\" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR\n# into the resulting binary.\nhardcode_shlibpath_var=$hardcode_shlibpath_var\n\n# Set to \"yes\" if building a shared library automatically hardcodes DIR\n# into the library and all subsequent libraries and executables linked\n# against it.\nhardcode_automatic=$hardcode_automatic\n\n# Set to yes if linker adds runtime paths of dependent libraries\n# to runtime path list.\ninherit_rpath=$inherit_rpath\n\n# Whether libtool must link a program against all its dependency libraries.\nlink_all_deplibs=$link_all_deplibs\n\n# Fix the shell variable \\$srcfile for the compiler.\nfix_srcfile_path=$lt_fix_srcfile_path\n\n# Set to \"yes\" if exported symbols are required.\nalways_export_symbols=$always_export_symbols\n\n# The commands to list exported symbols.\nexport_symbols_cmds=$lt_export_symbols_cmds\n\n# Symbols that should not be listed in the preloaded symbols.\nexclude_expsyms=$lt_exclude_expsyms\n\n# Symbols that must always be exported.\ninclude_expsyms=$lt_include_expsyms\n\n# Commands necessary for linking programs (against libraries) with templates.\nprelink_cmds=$lt_prelink_cmds\n\n# Specify filename containing input files.\nfile_list_spec=$lt_file_list_spec\n\n# How to hardcode a shared library path into an executable.\nhardcode_action=$hardcode_action\n\n# The directories searched by this compiler when creating a shared library.\ncompiler_lib_search_dirs=$lt_compiler_lib_search_dirs\n\n# Dependencies to place before and after the objects being linked to\n# create a shared library.\npredep_objects=$lt_predep_objects\npostdep_objects=$lt_postdep_objects\npredeps=$lt_predeps\npostdeps=$lt_postdeps\n\n# The library search path used internally by the compiler when linking\n# a shared library.\ncompiler_lib_search_path=$lt_compiler_lib_search_path\n\n# ### END LIBTOOL CONFIG\n\n_LT_EOF\n\n  case $host_os in\n  aix3*)\n    cat <<\\_LT_EOF >> \"$cfgfile\"\n# AIX sometimes has problems with the GCC collect2 program.  For some\n# reason, if we set the COLLECT_NAMES environment variable, the problems\n# vanish in a puff of smoke.\nif test \"X${COLLECT_NAMES+set}\" != Xset; then\n  COLLECT_NAMES=\n  export COLLECT_NAMES\nfi\n_LT_EOF\n    ;;\n  esac\n\n\nltmain=\"$ac_aux_dir/ltmain.sh\"\n\n\n  # We use sed instead of cat because bash on DJGPP gets confused if\n  # if finds mixed CR/LF and LF-only lines.  Since sed operates in\n  # text mode, it properly converts lines to CR/LF.  This bash problem\n  # is reportedly fixed, but why not run on old versions too?\n  sed '/^# Generated shell functions inserted here/q' \"$ltmain\" >> \"$cfgfile\" \\\n    || (rm -f \"$cfgfile\"; exit 1)\n\n  case $xsi_shell in\n  yes)\n    cat << \\_LT_EOF >> \"$cfgfile\"\n\n# func_dirname file append nondir_replacement\n# Compute the dirname of FILE.  If nonempty, add APPEND to the result,\n# otherwise set result to NONDIR_REPLACEMENT.\nfunc_dirname ()\n{\n  case ${1} in\n    */*) func_dirname_result=\"${1%/*}${2}\" ;;\n    *  ) func_dirname_result=\"${3}\" ;;\n  esac\n}\n\n# func_basename file\nfunc_basename ()\n{\n  func_basename_result=\"${1##*/}\"\n}\n\n# func_dirname_and_basename file append nondir_replacement\n# perform func_basename and func_dirname in a single function\n# call:\n#   dirname:  Compute the dirname of FILE.  If nonempty,\n#             add APPEND to the result, otherwise set result\n#             to NONDIR_REPLACEMENT.\n#             value returned in \"$func_dirname_result\"\n#   basename: Compute filename of FILE.\n#             value retuned in \"$func_basename_result\"\n# Implementation must be kept synchronized with func_dirname\n# and func_basename. For efficiency, we do not delegate to\n# those functions but instead duplicate the functionality here.\nfunc_dirname_and_basename ()\n{\n  case ${1} in\n    */*) func_dirname_result=\"${1%/*}${2}\" ;;\n    *  ) func_dirname_result=\"${3}\" ;;\n  esac\n  func_basename_result=\"${1##*/}\"\n}\n\n# func_stripname prefix suffix name\n# strip PREFIX and SUFFIX off of NAME.\n# PREFIX and SUFFIX must not contain globbing or regex special\n# characters, hashes, percent signs, but SUFFIX may contain a leading\n# dot (in which case that matches only a dot).\nfunc_stripname ()\n{\n  # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\n  # positional parameters, so assign one to ordinary parameter first.\n  func_stripname_result=${3}\n  func_stripname_result=${func_stripname_result#\"${1}\"}\n  func_stripname_result=${func_stripname_result%\"${2}\"}\n}\n\n# func_opt_split\nfunc_opt_split ()\n{\n  func_opt_split_opt=${1%%=*}\n  func_opt_split_arg=${1#*=}\n}\n\n# func_lo2o object\nfunc_lo2o ()\n{\n  case ${1} in\n    *.lo) func_lo2o_result=${1%.lo}.${objext} ;;\n    *)    func_lo2o_result=${1} ;;\n  esac\n}\n\n# func_xform libobj-or-source\nfunc_xform ()\n{\n  func_xform_result=${1%.*}.lo\n}\n\n# func_arith arithmetic-term...\nfunc_arith ()\n{\n  func_arith_result=$(( $* ))\n}\n\n# func_len string\n# STRING may not start with a hyphen.\nfunc_len ()\n{\n  func_len_result=${#1}\n}\n\n_LT_EOF\n    ;;\n  *) # Bourne compatible functions.\n    cat << \\_LT_EOF >> \"$cfgfile\"\n\n# func_dirname file append nondir_replacement\n# Compute the dirname of FILE.  If nonempty, add APPEND to the result,\n# otherwise set result to NONDIR_REPLACEMENT.\nfunc_dirname ()\n{\n  # Extract subdirectory from the argument.\n  func_dirname_result=`$ECHO \"${1}\" | $SED \"$dirname\"`\n  if test \"X$func_dirname_result\" = \"X${1}\"; then\n    func_dirname_result=\"${3}\"\n  else\n    func_dirname_result=\"$func_dirname_result${2}\"\n  fi\n}\n\n# func_basename file\nfunc_basename ()\n{\n  func_basename_result=`$ECHO \"${1}\" | $SED \"$basename\"`\n}\n\n\n# func_stripname prefix suffix name\n# strip PREFIX and SUFFIX off of NAME.\n# PREFIX and SUFFIX must not contain globbing or regex special\n# characters, hashes, percent signs, but SUFFIX may contain a leading\n# dot (in which case that matches only a dot).\n# func_strip_suffix prefix name\nfunc_stripname ()\n{\n  case ${2} in\n    .*) func_stripname_result=`$ECHO \"${3}\" | $SED \"s%^${1}%%; s%\\\\\\\\${2}\\$%%\"`;;\n    *)  func_stripname_result=`$ECHO \"${3}\" | $SED \"s%^${1}%%; s%${2}\\$%%\"`;;\n  esac\n}\n\n# sed scripts:\nmy_sed_long_opt='1s/^\\(-[^=]*\\)=.*/\\1/;q'\nmy_sed_long_arg='1s/^-[^=]*=//'\n\n# func_opt_split\nfunc_opt_split ()\n{\n  func_opt_split_opt=`$ECHO \"${1}\" | $SED \"$my_sed_long_opt\"`\n  func_opt_split_arg=`$ECHO \"${1}\" | $SED \"$my_sed_long_arg\"`\n}\n\n# func_lo2o object\nfunc_lo2o ()\n{\n  func_lo2o_result=`$ECHO \"${1}\" | $SED \"$lo2o\"`\n}\n\n# func_xform libobj-or-source\nfunc_xform ()\n{\n  func_xform_result=`$ECHO \"${1}\" | $SED 's/\\.[^.]*$/.lo/'`\n}\n\n# func_arith arithmetic-term...\nfunc_arith ()\n{\n  func_arith_result=`expr \"$@\"`\n}\n\n# func_len string\n# STRING may not start with a hyphen.\nfunc_len ()\n{\n  func_len_result=`expr \"$1\" : \".*\" 2>/dev/null || echo $max_cmd_len`\n}\n\n_LT_EOF\nesac\n\ncase $lt_shell_append in\n  yes)\n    cat << \\_LT_EOF >> \"$cfgfile\"\n\n# func_append var value\n# Append VALUE to the end of shell variable VAR.\nfunc_append ()\n{\n  eval \"$1+=\\$2\"\n}\n_LT_EOF\n    ;;\n  *)\n    cat << \\_LT_EOF >> \"$cfgfile\"\n\n# func_append var value\n# Append VALUE to the end of shell variable VAR.\nfunc_append ()\n{\n  eval \"$1=\\$$1\\$2\"\n}\n\n_LT_EOF\n    ;;\n  esac\n\n\n  sed -n '/^# Generated shell functions inserted here/,$p' \"$ltmain\" >> \"$cfgfile\" \\\n    || (rm -f \"$cfgfile\"; exit 1)\n\n  mv -f \"$cfgfile\" \"$ofile\" ||\n    (rm -f \"$ofile\" && cp \"$cfgfile\" \"$ofile\" && rm -f \"$cfgfile\")\n  chmod +x \"$ofile\"\n\n\n    cat <<_LT_EOF >> \"$ofile\"\n\n# ### BEGIN LIBTOOL TAG CONFIG: CXX\n\n# The linker used to build libraries.\nLD=$lt_LD_CXX\n\n# How to create reloadable object files.\nreload_flag=$lt_reload_flag_CXX\nreload_cmds=$lt_reload_cmds_CXX\n\n# Commands used to build an old-style archive.\nold_archive_cmds=$lt_old_archive_cmds_CXX\n\n# A language specific compiler.\nCC=$lt_compiler_CXX\n\n# Is the compiler the GNU compiler?\nwith_gcc=$GCC_CXX\n\n# Compiler flag to turn off builtin functions.\nno_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX\n\n# How to pass a linker flag through the compiler.\nwl=$lt_lt_prog_compiler_wl_CXX\n\n# Additional compiler flags for building library objects.\npic_flag=$lt_lt_prog_compiler_pic_CXX\n\n# Compiler flag to prevent dynamic linking.\nlink_static_flag=$lt_lt_prog_compiler_static_CXX\n\n# Does compiler simultaneously support -c and -o options?\ncompiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX\n\n# Whether or not to add -lc for building shared libraries.\nbuild_libtool_need_lc=$archive_cmds_need_lc_CXX\n\n# Whether or not to disallow shared libs when runtime libs are static.\nallow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX\n\n# Compiler flag to allow reflexive dlopens.\nexport_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX\n\n# Compiler flag to generate shared objects directly from archives.\nwhole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX\n\n# Whether the compiler copes with passing no objects directly.\ncompiler_needs_object=$lt_compiler_needs_object_CXX\n\n# Create an old-style archive from a shared archive.\nold_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX\n\n# Create a temporary old-style archive to link instead of a shared archive.\nold_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX\n\n# Commands used to build a shared archive.\narchive_cmds=$lt_archive_cmds_CXX\narchive_expsym_cmds=$lt_archive_expsym_cmds_CXX\n\n# Commands used to build a loadable module if different from building\n# a shared archive.\nmodule_cmds=$lt_module_cmds_CXX\nmodule_expsym_cmds=$lt_module_expsym_cmds_CXX\n\n# Whether we are building with GNU ld or not.\nwith_gnu_ld=$lt_with_gnu_ld_CXX\n\n# Flag that allows shared libraries with undefined symbols to be built.\nallow_undefined_flag=$lt_allow_undefined_flag_CXX\n\n# Flag that enforces no undefined symbols.\nno_undefined_flag=$lt_no_undefined_flag_CXX\n\n# Flag to hardcode \\$libdir into a binary during linking.\n# This must work even if \\$libdir does not exist\nhardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX\n\n# If ld is used when linking, flag to hardcode \\$libdir into a binary\n# during linking.  This must work even if \\$libdir does not exist.\nhardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_CXX\n\n# Whether we need a single \"-rpath\" flag with a separated argument.\nhardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX\n\n# Set to \"yes\" if using DIR/libNAME\\${shared_ext} during linking hardcodes\n# DIR into the resulting binary.\nhardcode_direct=$hardcode_direct_CXX\n\n# Set to \"yes\" if using DIR/libNAME\\${shared_ext} during linking hardcodes\n# DIR into the resulting binary and the resulting library dependency is\n# \"absolute\",i.e impossible to change by setting \\${shlibpath_var} if the\n# library is relocated.\nhardcode_direct_absolute=$hardcode_direct_absolute_CXX\n\n# Set to \"yes\" if using the -LDIR flag during linking hardcodes DIR\n# into the resulting binary.\nhardcode_minus_L=$hardcode_minus_L_CXX\n\n# Set to \"yes\" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR\n# into the resulting binary.\nhardcode_shlibpath_var=$hardcode_shlibpath_var_CXX\n\n# Set to \"yes\" if building a shared library automatically hardcodes DIR\n# into the library and all subsequent libraries and executables linked\n# against it.\nhardcode_automatic=$hardcode_automatic_CXX\n\n# Set to yes if linker adds runtime paths of dependent libraries\n# to runtime path list.\ninherit_rpath=$inherit_rpath_CXX\n\n# Whether libtool must link a program against all its dependency libraries.\nlink_all_deplibs=$link_all_deplibs_CXX\n\n# Fix the shell variable \\$srcfile for the compiler.\nfix_srcfile_path=$lt_fix_srcfile_path_CXX\n\n# Set to \"yes\" if exported symbols are required.\nalways_export_symbols=$always_export_symbols_CXX\n\n# The commands to list exported symbols.\nexport_symbols_cmds=$lt_export_symbols_cmds_CXX\n\n# Symbols that should not be listed in the preloaded symbols.\nexclude_expsyms=$lt_exclude_expsyms_CXX\n\n# Symbols that must always be exported.\ninclude_expsyms=$lt_include_expsyms_CXX\n\n# Commands necessary for linking programs (against libraries) with templates.\nprelink_cmds=$lt_prelink_cmds_CXX\n\n# Specify filename containing input files.\nfile_list_spec=$lt_file_list_spec_CXX\n\n# How to hardcode a shared library path into an executable.\nhardcode_action=$hardcode_action_CXX\n\n# The directories searched by this compiler when creating a shared library.\ncompiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX\n\n# Dependencies to place before and after the objects being linked to\n# create a shared library.\npredep_objects=$lt_predep_objects_CXX\npostdep_objects=$lt_postdep_objects_CXX\npredeps=$lt_predeps_CXX\npostdeps=$lt_postdeps_CXX\n\n# The library search path used internally by the compiler when linking\n# a shared library.\ncompiler_lib_search_path=$lt_compiler_lib_search_path_CXX\n\n# ### END LIBTOOL TAG CONFIG: CXX\n_LT_EOF\n\n ;;\n\n  esac\ndone # for ac_tag\n\n\n{ (exit 0); exit 0; }\n_ACEOF\nchmod +x $CONFIG_STATUS\nac_clean_files=$ac_clean_files_save\n\n\n# configure is writing to config.log, and then calls config.status.\n# config.status does its own redirection, appending to config.log.\n# Unfortunately, on DOS this fails, as config.log is still kept open\n# by configure, so config.status won't be able to write to it; its\n# output is simply discarded.  So we exec the FD to /dev/null,\n# effectively closing config.log, so it can be properly (re)opened and\n# appended to by config.status.  When coming back to configure, we\n# need to make the FD available again.\nif test \"$no_create\" != yes; then\n  ac_cs_success=:\n  ac_config_status_args=\n  test \"$silent\" = yes &&\n    ac_config_status_args=\"$ac_config_status_args --quiet\"\n  exec 5>/dev/null\n  $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false\n  exec 5>>config.log\n  # Use ||, not &&, to avoid exiting from the if with $? = 1, which\n  # would make configure fail if this is the last instruction.\n  $ac_cs_success || { (exit 1); exit 1; }\nfi\n\n"
  },
  {
    "path": "ext/cld/configure.ac",
    "content": "AC_INIT(cld, 0.6.0)\nAC_CONFIG_AUX_DIR(build_aux)\nAM_INIT_AUTOMAKE(cld, 0.6.0)\n\nLT_INIT\n\n# Checks for a C++ compiler.\nAC_PROG_CXX\n\n# Check for stdc headers.\nAC_HEADER_STDC\n\nAC_CONFIG_FILES(Makefile)\nAC_OUTPUT\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/#cldutil.cc#",
    "content": "// Copyright (c) 2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#include <string>\n#include \"encodings/compact_lang_det/cldutil.h\"\n#include \"encodings/compact_lang_det/cldutil_dbg.h\"\n#include \"encodings/compact_lang_det/generated/compact_lang_det_generated_meanscore.h\"\n#include \"encodings/compact_lang_det/utf8propletterscriptnum.h\"\n#include \"encodings/compact_lang_det/win/cld_commandlineflags.h\"\n#include \"encodings/compact_lang_det/win/cld_logging.h\"\n#include \"encodings/compact_lang_det/win/cld_unilib.h\"\n#include \"encodings/compact_lang_det/win/cld_utf.h\"\n#include \"encodings/compact_lang_det/win/cld_utf8statetable.h\"\n\n// Runtime routines for hashing, looking up, and scoring\n// unigrams (CJK), bigrams (CJK), quadgrams, and octagrams.\n// Unigrams and bigrams are for CJK languages only, including simplified/\n// traditional Chinese, Japanese, Korean, Vietnamese Han characters, and\n// Zhuang Han characters. Surrounding spaces are not considered.\n// Quadgrams and octagrams for for non-CJK and include two bits indicating\n// preceding and trailing spaces (word boundaries).\n\n\n// Indicator bits for leading/trailing space around quad/octagram\n// NOTE: 4444 bits are chosen to flip constant bits in hash of four chars of\n// 1-, 2-, or 3-bytes each.\nstatic const uint32 kPreSpaceIndicator =  0x00004444;\nstatic const uint32 kPostSpaceIndicator = 0x44440000;\n\n// Little-endian masks for 0..24 bytes picked up as uint32's\nstatic const uint32 kWordMask0[4] = {\n  0xFFFFFFFF, 0x000000FF, 0x0000FFFF, 0x00FFFFFF\n};\n\nstatic const int kMinCJKUTF8CharBytes = 3;\n\nstatic const int kMinGramCount = 3;\nstatic const int kMaxGramCount = 16;\n\n\n\n\n// Routines to access a hash table of <key:wordhash, value:probs> pairs\n// Buckets have 4-byte wordhash for sizes < 32K buckets, but only\n// 2-byte wordhash for sizes >= 32K buckets, with other wordhash bits used as\n// bucket subscript.\n// Probs is a packed: three languages plus a subscript for probability table\n// Buckets have all the keys together, then all the values.Key array never\n// crosses a cache-line boundary, so no-match case takes exactly one cache miss.\n// Match case may sometimes take an additional cache miss on value access.\n//\n// Other possibilites include 5 or 10 6-byte entries plus pad to make 32 or 64\n// byte buckets with single cache miss.\n// Or 2-byte key and 6-byte value, allowing 5 languages instead  of three.\n//------------------------------------------------------------------------------\n\n\n//------------------------------------------------------------------------------\n// Hashing groups of 1/2/4/8 letters, perhaps with spaces or underscores\n//------------------------------------------------------------------------------\n\n// Design principles for these hash functions\n// - Few operations\n// - Handle 1-, 2-, and 3-byte UTF-8 scripts, ignoring intermixing except in\n//   Latin script expect 1- and 2-byte mixtures.\n// - Last byte of each character has about 5 bits of information\n// - Spread good bits around so they can interact in at least two ways\n//   with other characters\n// - Use add for additional mixing thorugh carries\n\n// CJK Three-byte bigram\n//   ....dddd..cccccc..bbbbbb....aaaa\n//   ..................ffffff..eeeeee\n// make\n//   ....dddd..cccccc..bbbbbb....aaaa\n//   000....dddd..cccccc..bbbbbb....a\n//   ..................ffffff..eeeeee\n//   ffffff..eeeeee000000000000000000\n//\n// CJK Four-byte bigram\n//   ..dddddd..cccccc....bbbb....aaaa\n//   ..hhhhhh..gggggg....ffff....eeee\n// make\n//   ..dddddd..cccccc....bbbb....aaaa\n//   000..dddddd..cccccc....bbbb....a\n//   ..hhhhhh..gggggg....ffff....eeee\n//   ..ffff....eeee000000000000000000\n\n// BIGRAM\n// Pick up 1..8 bytes and hash them via mask/shift/add. NO pre/post\n// OVERSHOOTS up to 3 bytes\n// For runtime use of tables\nuint32 cld::BiHashV25(const char* word_ptr, int bytecount) {\n  if (bytecount == 0) {\n    return 0;\n  }\n  const uint32* word_ptr32 = reinterpret_cast<const uint32*>(word_ptr);\n  uint32 word0, word1;\n  if (bytecount <= 4) {\n    word0 = word_ptr32[0] & kWordMask0[bytecount & 3];\n    word0 = word0 ^ (word0 >> 3);\n    return word0;\n  }\n  // Else do 8 bytes\n  word0 = word_ptr32[0];\n  word0 = word0 ^ (word0 >> 3);\n  word1 = word_ptr32[1] & kWordMask0[bytecount & 3];\n  word1 = word1 ^ (word1 << 18);\n  return word0 + word1;\n}\n\n//\n// Ascii-7 One-byte chars\n//   ...ddddd...ccccc...bbbbb...aaaaa\n// make\n//   ...ddddd...ccccc...bbbbb...aaaaa\n//   000...ddddd...ccccc...bbbbb...aa\n//\n// Latin 1- and 2-byte chars\n//   ...ddddd...ccccc...bbbbb...aaaaa\n//   ...................fffff...eeeee\n// make\n//   ...ddddd...ccccc...bbbbb...aaaaa\n//   000...ddddd...ccccc...bbbbb...aa\n//   ...................fffff...eeeee\n//   ...............fffff...eeeee0000\n//\n// Non-CJK Two-byte chars\n//   ...ddddd...........bbbbb........\n//   ...hhhhh...........fffff........\n// make\n//   ...ddddd...........bbbbb........\n//   000...ddddd...........bbbbb.....\n//   ...hhhhh...........fffff........\n//   hhhh...........fffff........0000\n//\n// Non-CJK Three-byte chars\n//   ...........ccccc................\n//   ...................fffff........\n//   ...lllll...................iiiii\n// make\n//   ...........ccccc................\n//   000...........ccccc.............\n//   ...................fffff........\n//   ...............fffff........0000\n//   ...lllll...................iiiii\n//   .lllll...................iiiii00\n//\n\n// QUADGRAM\n// Pick up 1..12 bytes plus pre/post space and hash them via mask/shift/add\n// OVERSHOOTS up to 3 bytes\n// For runtime use of tables\nuint32 QuadHashV25Mix(const char* word_ptr, int bytecount, uint32 prepost) {\n  const uint32* word_ptr32 = reinterpret_cast<const uint32*>(word_ptr);\n  uint32 word0, word1, word2;\n  if (bytecount <= 4) {\n    word0 = word_ptr32[0] & kWordMask0[bytecount & 3];\n    word0 = word0 ^ (word0 >> 3);\n    return word0 ^ prepost;\n  } else if (bytecount <= 8) {\n    word0 = word_ptr32[0];\n    word0 = word0 ^ (word0 >> 3);\n    word1 = word_ptr32[1] & kWordMask0[bytecount & 3];\n    word1 = word1 ^ (word1 << 4);\n    return (word0 ^ prepost) + word1;\n  }\n  // else do 12 bytes\n  word0 = word_ptr32[0];\n  word0 = word0 ^ (word0 >> 3);\n  word1 = word_ptr32[1];\n  word1 = word1 ^ (word1 << 4);\n  word2 = word_ptr32[2] & kWordMask0[bytecount & 3];\n  word2 = word2 ^ (word2 << 2);\n  return (word0 ^ prepost) + word1 + word2;\n}\n\n\n// QUADGRAM wrapper with surrounding spaces\n// Pick up 1..12 bytes plus pre/post space and hash them via mask/shift/add\n// UNDERSHOOTS 1 byte, OVERSHOOTS up to 3 bytes\n// For runtime use of tables\nuint32 cld::QuadHashV25(const char* word_ptr, int bytecount) {\n  if (bytecount == 0) {\n    return 0;\n  }\n  uint32 prepost = 0;\n  if (word_ptr[-1] == ' ') {prepost |= kPreSpaceIndicator;}\n  if (word_ptr[bytecount] == ' ') {prepost |= kPostSpaceIndicator;}\n  return QuadHashV25Mix(word_ptr, bytecount, prepost);\n}\n\n// QUADGRAM wrapper with surrounding underscores (offline use)\n// Pick up 1..12 bytes plus pre/post '_' and hash them via mask/shift/add\n// OVERSHOOTS up to 3 bytes\n// For offline construction of tables\nuint32 cld::QuadHashV25Underscore(const char* word_ptr, int bytecount) {\n  if (bytecount == 0) {\n    return 0;\n  }\n  const char* local_word_ptr = word_ptr;\n  int local_bytecount = bytecount;\n  uint32 prepost = 0;\n  if (local_word_ptr[0] == '_') {\n    prepost |= kPreSpaceIndicator;\n    ++local_word_ptr;\n    --local_bytecount;\n  }\n  if (local_word_ptr[local_bytecount - 1] == '_') {\n    prepost |= kPostSpaceIndicator;\n    --local_bytecount;\n  }\n  return QuadHashV25Mix(local_word_ptr, local_bytecount, prepost);\n}\n\n\n// OCTAGRAM\n// Pick up 1..24 bytes plus pre/post space and hash them via mask/shift/add\n// UNDERSHOOTS 1 byte, OVERSHOOTS up to 3 bytes\n//\n// The low 32 bits follow the pattern from above, tuned to different scripts\n// The high 8 bits are a simple sum of all bytes, shifted by 0/1/2/3 bits each\n// For runtime use of tables V3\nuint64 OctaHash40Mix(const char* word_ptr, int bytecount, uint64 prepost) {\n  const uint32* word_ptr32 = reinterpret_cast<const uint32*>(word_ptr);\n  uint64 word0;\n  uint64 word1;\n  uint64 sum;\n\n  if (word_ptr[-1] == ' ') {prepost |= kPreSpaceIndicator;}\n  if (word_ptr[bytecount] == ' ') {prepost |= kPostSpaceIndicator;}\n  switch ((bytecount - 1) >> 2) {\n  case 0:       // 1..4 bytes\n    word0 = word_ptr32[0] & kWordMask0[bytecount & 3];\n    sum = word0;\n    word0 = word0 ^ (word0 >> 3);\n    break;\n  case 1:       // 5..8 bytes\n    word0 = word_ptr32[0];\n    sum = word0;\n    word0 = word0 ^ (word0 >> 3);\n    word1 = word_ptr32[1] & kWordMask0[bytecount & 3];\n    sum += word1;\n    word1 = word1 ^ (word1 << 4);\n    word0 += word1;\n    break;\n  case 2:       // 9..12 bytes\n    word0 = word_ptr32[0];\n    sum = word0;\n    word0 = word0 ^ (word0 >> 3);\n    word1 = word_ptr32[1];\n    sum += word1;\n    word1 = word1 ^ (word1 << 4);\n    word0 += word1;\n    word1 = word_ptr32[2] & kWordMask0[bytecount & 3];\n    sum += word1;\n    word1 = word1 ^ (word1 << 2);\n    word0 += word1;\n    break;\n  case 3:       // 13..16 bytes\n    word0 = word_ptr32[0];\n    sum = word0;\n    word0 = word0 ^ (word0 >> 3);\n    word1 = word_ptr32[1];\n    sum += word1;\n    word1 = word1 ^ (word1 << 4);\n    word0 += word1;\n    word1 = word_ptr32[2];\n    sum += word1;\n    word1 = word1 ^ (word1 << 2);\n    word0 += word1;\n    word1 = word_ptr32[3] & kWordMask0[bytecount & 3];\n    sum += word1;\n    word1 = word1 ^ (word1 >> 8);\n    word0 += word1;\n    break;\n  case 4:       // 17..20 bytes\n    word0 = word_ptr32[0];\n    sum = word0;\n    word0 = word0 ^ (word0 >> 3);\n    word1 = word_ptr32[1];\n    sum += word1;\n    word1 = word1 ^ (word1 << 4);\n    word0 += word1;\n    word1 = word_ptr32[2];\n    sum += word1;\n    word1 = word1 ^ (word1 << 2);\n    word0 += word1;\n    word1 = word_ptr32[3];\n    sum += word1;\n    word1 = word1 ^ (word1 >> 8);\n    word0 += word1;\n    word1 = word_ptr32[4] & kWordMask0[bytecount & 3];\n    sum += word1;\n    word1 = word1 ^ (word1 >> 4);\n    word0 += word1;\n    break;\n  default:      // 21..24 bytes and higher (ignores beyond 24)\n    word0 = word_ptr32[0];\n    sum = word0;\n    word0 = word0 ^ (word0 >> 3);\n    word1 = word_ptr32[1];\n    sum += word1;\n    word1 = word1 ^ (word1 << 4);\n    word0 += word1;\n    word1 = word_ptr32[2];\n    sum += word1;\n    word1 = word1 ^ (word1 << 2);\n    word0 += word1;\n    word1 = word_ptr32[3];\n    sum += word1;\n    word1 = word1 ^ (word1 >> 8);\n    word0 += word1;\n    word1 = word_ptr32[4];\n    sum += word1;\n    word1 = word1 ^ (word1 >> 4);\n    word0 += word1;\n    word1 = word_ptr32[5] & kWordMask0[bytecount & 3];\n    sum += word1;\n    word1 = word1 ^ (word1 >> 6);\n    word0 += word1;\n    break;\n  }\n\n  sum += (sum >> 17);             // extra 1-bit shift for bytes 2 & 3\n  sum += (sum >> 9);              // extra 1-bit shift for bytes 1 & 3\n  sum = (sum & 0xff) << 32;\n  return (word0 ^ prepost) + sum;\n}\n\n// OCTAGRAM wrapper with surrounding spaces\n// Pick up 1..24 bytes plus pre/post space and hash them via mask/shift/add\n// UNDERSHOOTS 1 byte, OVERSHOOTS up to 3 bytes\n//\n// The low 32 bits follow the pattern from above, tuned to different scripts\n// The high 8 bits are a simple sum of all bytes, shifted by 0/1/2/3 bits each\n// For runtime use of tables V3\nuint64 cld::OctaHash40(const char* word_ptr, int bytecount) {\n  if (bytecount == 0) {\n    return 0;\n  }\n  uint64 prepost = 0;\n  if (word_ptr[-1] == ' ') {prepost |= kPreSpaceIndicator;}\n  if (word_ptr[bytecount] == ' ') {prepost |= kPostSpaceIndicator;}\n  return OctaHash40Mix(word_ptr, bytecount, prepost);\n}\n\n\n// OCTAGRAM wrapper with surrounding underscores (offline use)\n// Pick up 1..24 bytes plus pre/post space and hash them via mask/shift/add\n// UNDERSHOOTS 1 byte, OVERSHOOTS up to 3 bytes\n//\n// The low 32 bits follow the pattern from above, tuned to different scripts\n// The high 8 bits are a simple sum of all bytes, shifted by 0/1/2/3 bits each\n// For offline construction of tables\nuint64 cld::OctaHash40underscore(const char* word_ptr, int bytecount) {\n  if (bytecount == 0) {\n    return 0;\n  }\n  const char* local_word_ptr = word_ptr;\n  int local_bytecount = bytecount;\n  uint64 prepost = 0;\n  if (local_word_ptr[0] == '_') {\n    prepost |= kPreSpaceIndicator;\n    ++local_word_ptr;\n    --local_bytecount;\n  }\n  if (local_word_ptr[local_bytecount - 1] == '_') {\n    prepost |= kPostSpaceIndicator;\n    --local_bytecount;\n  }\n  return OctaHash40Mix(local_word_ptr, local_bytecount, prepost);\n}\n\n\n\n\n//------------------------------------------------------------------------------\n// Scoring single groups of letters\n//------------------------------------------------------------------------------\n\n// UNIGRAM score one => tote\n// Input: 1-byte entry of subscript into unigram probs, plus\n//  an accumulator tote.\n// Output: running sums in tote updated\nvoid cld::ProcessProbV25UniTote(int propval, Tote* tote) {\n  tote->AddGram();\n  const UnigramProbArray* pa = &kTargetCTJKVZProbs[propval];\n  if (pa->probs[0] > 0) {tote->Add(cld::PackLanguage(CHINESE), pa->probs[0]);}\n  if (pa->probs[1] > 0) {tote->Add(cld::PackLanguage(CHINESE_T), pa->probs[1]);}\n  if (pa->probs[2] > 0) {tote->Add(cld::PackLanguage(JAPANESE), pa->probs[2]);}\n  if (pa->probs[3] > 0) {tote->Add(cld::PackLanguage(KOREAN), pa->probs[3]);}\n  if (pa->probs[4] > 0) {tote->Add(cld::PackLanguage(VIETNAMESE), pa->probs[4]);}\n  if (pa->probs[5] > 0) {tote->Add(cld::PackLanguage(ZHUANG), pa->probs[5]);}\n}\n\n// BIGRAM, QUADGRAM, OCTAGRAM score one => tote\n// Input: 4-byte entry of 3 language numbers and one probability subscript, plus\n//  an accumulator tote. (language 0 means unused entry)\n// Output: running sums in tote updated\nvoid cld::ProcessProbV25Tote(uint32 probs, Tote* tote) {\n  tote->AddGram();\n  uint8 prob123 = (probs >> 0) & 0xff;\n  const uint8* prob123_entry = cld::LgProb2TblEntry(prob123);\n\n  uint8 top1 = (probs >> 8) & 0xff;\n  if (top1 > 0) {tote->Add(top1, cld::LgProb3(prob123_entry, 0));}\n  uint8 top2 = (probs >> 16) & 0xff;\n  if (top2 > 0) {tote->Add(top2, cld::LgProb3(prob123_entry, 1));}\n  uint8 top3 = (probs >> 24) & 0xff;\n  if (top3 > 0) {tote->Add(top3, cld::LgProb3(prob123_entry, 2));}\n}\n\n\n//------------------------------------------------------------------------------\n// Routines to accumulate probabilities\n//------------------------------------------------------------------------------\n\n\n// UNIGRAM, using UTF-8 property table, advancing by 1/2/4/8 chars\n// Caller supplies table, such as compact_lang_det_generated_ctjkvz_b1_obj\n// Score up to n unigrams, returning number of bytes consumed\n// Updates tote_grams\nint cld::DoUniScoreV3(const UTF8PropObj* unigram_obj,\n                      const char* isrc, int srclen, int advance_by,\n                      int* tote_grams, int gram_limit, Tote* chunk_tote) {\n  const char* src = isrc;\n  if (FLAGS_dbgscore) {DbgScoreInit(src, srclen);}\n\n  // Property-based CJK unigram lookup\n  if (src[0] == ' ') {++src; --srclen;}\n\n  const uint8* usrc = reinterpret_cast<const uint8*>(src);\n  int usrclen = srclen;\n\n  while (usrclen > 0) {\n    int len = kAdvanceOneChar[usrc[0]];\n    // Look up property of one UTF-8 character and advance over it\n    // Return 0 if input length is zero\n    // Return 0 and advance one byte if input is ill-formed\n\n    int propval = UTF8GenericPropertyBigOneByte(unigram_obj, &usrc, &usrclen);\n\n    if (FLAGS_dbglookup) {\n      DbgUniTermToStderr(propval, usrc, len);\n    }\n\n    if (propval > 0) {\n      ProcessProbV25UniTote(propval, chunk_tote);\n      ++(*tote_grams);\n      if (FLAGS_dbgscore) {DbgScoreRecordUni((const char*)usrc, propval, len);}\n    }\n\n    // Advance by 1/2/4/8 characters (half of quad advance)\n    if (advance_by == 2) {\n      // Already advanced by 1\n    } else if (advance_by == 4) {\n      // Advance by 2 chars total, if not at end\n      if (UTFmax <= usrclen) {\n        int n = kAdvanceOneChar[*usrc]; usrc += n; usrclen -= n;\n      }\n    } else if (advance_by == 8) {\n      // Advance by 4 chars total, if not at end\n      if ((UTFmax * 3) <= usrclen) {\n        int n = kAdvanceOneChar[*usrc]; usrc += n; usrclen -= n;\n        n = kAdvanceOneChar[*usrc]; usrc += n; usrclen -= n;\n        n = kAdvanceOneChar[*usrc]; usrc += n; usrclen -= n;\n      }\n    } else {\n      // Advance by 8 chars total, if not at end\n      if ((UTFmax * 7) <= usrclen) {\n        int n = kAdvanceOneChar[*usrc]; usrc += n; usrclen -= n;\n        n = kAdvanceOneChar[*usrc]; usrc += n; usrclen -= n;\n        n = kAdvanceOneChar[*usrc]; usrc += n; usrclen -= n;\n        n = kAdvanceOneChar[*usrc]; usrc += n; usrclen -= n;\n        n = kAdvanceOneChar[*usrc]; usrc += n; usrclen -= n;\n        n = kAdvanceOneChar[*usrc]; usrc += n; usrclen -= n;\n        n = kAdvanceOneChar[*usrc]; usrc += n; usrclen -= n;\n      }\n    }\n    DCHECK(usrclen >= 0);\n\n    if (*tote_grams >= gram_limit) {\n      break;\n    }\n  }\n  if (FLAGS_dbgscore) {\n    // With advance_by>2, we consume more input to get the same number of quads\n    int len = src - isrc;\n    DbgScoreTop(src, (len * 2) / advance_by, chunk_tote);\n    DbgScoreFlush();\n  }\n\n  int consumed2 = reinterpret_cast<const char*>(usrc) - isrc;\n  return consumed2;\n}\n\n\n// BIGRAM, using hash table, always advancing by 1 char\n// Caller supplies table, such as &kCjkBiTable_obj or &kGibberishTable_obj\n// Score all bigrams in isrc, using languages that have bigrams (CJK)\n// Return number of bigrams that hit in the hash table\nint cld::DoBigramScoreV3(const cld::CLDTableSummary* bigram_obj,\n                         const char* isrc, int srclen, Tote* chunk_tote) {\n  int hit_count = 0;\n  const char* src = isrc;\n\n  // Hashtable-based CJK bigram lookup\n  const uint8* usrc = reinterpret_cast<const uint8*>(src);\n  const uint8* usrclimit1 = usrc + srclen - UTFmax;\n  if (FLAGS_dbgscore) {\n    fprintf(stderr, \"  \" );\n  }\n\n  while (usrc < usrclimit1) {\n    int len = kAdvanceOneChar[usrc[0]];\n    int len2 = kAdvanceOneChar[usrc[len]] + len;\n\n    if ((kMinCJKUTF8CharBytes * 2) <= len2) {      // Two CJK chars possible\n      // Lookup and score this bigram\n      // Always ignore pre/post spaces\n      uint32 bihash = BiHashV25(reinterpret_cast<const char*>(usrc), len2);\n      uint32 probs = QuadHashV3Lookup4(bigram_obj, bihash);\n      // Now go indirect on the subscript\n      probs = bigram_obj->kCLDTableInd[probs &\n        ~bigram_obj->kCLDTableKeyMask];\n\n      // Process the bigram\n      if (FLAGS_dbglookup) {\n        const char* ssrc = reinterpret_cast<const char*>(usrc);\n        DbgBiTermToStderr(bihash, probs, ssrc, len2);\n        DbgScoreRecord(NULL, probs, len2);\n      } else if (FLAGS_dbgscore && (probs != 0)) {\n        const char* ssrc = reinterpret_cast<const char*>(usrc);\n        DbgScoreRecord(NULL, probs, len2);\n        string temp(ssrc, len2);\n        fprintf(stderr, \"%s \", temp.c_str());\n      }\n\n      if (probs != 0) {\n        ProcessProbV25Tote(probs, chunk_tote);\n        ++hit_count;\n      }\n    }\n    usrc += len;  // Advance by one char\n  }\n\n  if (FLAGS_dbgscore) {\n    fprintf(stderr, \"[%d bigrams scored]\\n\", hit_count);\n    DbgScoreState();\n  }\n  return hit_count;\n}\n\n\n\n// QUADGRAM, using hash table, advancing by 2/4/8/16 chars\n// Caller supplies table, such as &kQuadTable_obj or &kGibberishTable_obj\n// Score up to n quadgrams, returning number of bytes consumed\n// Updates tote_grams\nint cld::DoQuadScoreV3(const cld::CLDTableSummary* quadgram_obj,\n                       const char* isrc, int srclen, int advance_by,\n                       int* tote_grams, int gram_limit, Tote* chunk_tote) {\n  const char* src = isrc;\n  const char* srclimit = src + srclen;\n  // Limit is end, which has extra 20 20 20 00 past len\n  const char* srclimit7 = src + srclen - (UTFmax * 7);\n  const char* srclimit15 = src + srclen - (UTFmax * 15);\n\n  if (FLAGS_dbgscore) {DbgScoreInit(src, srclen);}\n\n  // Run a little cache of last hits to catch overly-repetitive \"text\"\n  int next_prior = 0;\n  uint32 prior_quads[2] = {0, 0};\n\n  // Visit all quadgrams\n  if (src[0] == ' ') {++src;}\n  while (src < srclimit) {\n    // Find one quadgram\n    const char* src_end = src;\n    src_end += kAdvanceOneCharButSpace[(uint8)src_end[0]];\n    src_end += kAdvanceOneCharButSpace[(uint8)src_end[0]];\n    const char* src_mid = src_end;\n    src_end += kAdvanceOneCharButSpace[(uint8)src_end[0]];\n    src_end += kAdvanceOneCharButSpace[(uint8)src_end[0]];\n    int len = src_end - src;\n\n    // Lookup and score this quadgram\n    uint32 quadhash = QuadHashV25(src, len);\n    uint32 probs = QuadHashV3Lookup4(quadgram_obj, quadhash);\n    // Now go indirect on the subscript\n    probs = quadgram_obj->kCLDTableInd[probs &\n      ~quadgram_obj->kCLDTableKeyMask];\n\n    // Process the quadgram\n    if (FLAGS_dbglookup) {\n      DbgQuadTermToStderr(quadhash, probs, src, len);\n    }\n    if (probs != 0) {\n      // Filter out recent repeats. If this works out, use in the other lookups\n      if ((quadhash != prior_quads[0]) && (quadhash != prior_quads[1])) {\n        prior_quads[next_prior] = quadhash;\n        next_prior = (next_prior + 1) & 1;\n        ProcessProbV25Tote(probs, chunk_tote);\n        ++(*tote_grams);\n        if (FLAGS_dbgscore) {DbgScoreRecord(src, probs, len);}\n      }\n    }\n\n    // Advance all the way past word if at end-of-word\n    if (src_end[0] == ' ') {\n      src_mid = src_end;\n    }\n\n    // Advance by 2/4/8/16 characters\n    if (advance_by == 2) {\n      src = src_mid;\n    } else if (advance_by == 4) {\n      src = src_end;\n    } else if (advance_by == 8) {\n      // Advance by 8 chars total (4 more), if not at end\n      if (src < srclimit7) {\n        src_end += kAdvanceOneChar[(uint8)src_end[0]];\n        src_end += kAdvanceOneChar[(uint8)src_end[0]];\n        src_end += kAdvanceOneChar[(uint8)src_end[0]];\n        src_end += kAdvanceOneChar[(uint8)src_end[0]];\n      }\n      src = src_end;\n    } else {\n      // Advance by 16 chars total (12 more), if not at end\n      if (src < srclimit15) {\n        // Advance by ~16 chars by adding 3 * current bytelen\n        int fourcharlen = src_end - src;\n        src = src_end + (3 * fourcharlen);\n        // Advance a bit more if mid-character\n        src += kAdvanceOneCharSpaceVowel[(uint8)src[0]];\n        src += kAdvanceOneCharSpaceVowel[(uint8)src[0]];\n      } else {\n        src = src_end;\n      }\n    }\n    DCHECK(src < srclimit);\n    src += kAdvanceOneCharSpaceVowel[(uint8)src[0]];\n\n    if (*tote_grams >= gram_limit) {\n      break;\n    }\n  }\n\n  if (FLAGS_dbgscore) {\n    // With advance_by>2, we consume more input to get the same number of quads\n    int len = src - isrc;\n    DbgScoreTop(src, (len * 2) / advance_by, chunk_tote);\n    DbgScoreFlush();\n  }\n\n  int consumed = src - isrc;\n\n  // If advancing by more than 2, src may have overshot srclimit\n  if (consumed > srclen) {\n    consumed = srclen;\n  }\n\n  return consumed;\n}\n\n\n// OCTAGRAM, using hash table, always advancing by 1 word\n// Caller supplies table, such as &kLongWord8Table_obj\n// Score all words in isrc, using languages that have quadgrams\n// We don't normally use this routine except on the first quadgram run,\n// but it can be used to resolve unreliable pages.\n// This routine does not have an optimized advance_by\n// SOON: Uses indirect language/probability longword\n//\n// Return number of words that hit in the hash table\nint cld::DoOctaScoreV3(const cld::CLDTableSummary* octagram_obj,\n                       const char* isrc, int srclen, Tote* chunk_tote) {\n  int hit_count = 0;\n  const char* src = isrc;\n  const char* srclimit = src + srclen + 1;\n  // Limit is end+1, to include extra space char (0x20) off the end\n  //\n  // Score all words truncated to 8 characters\n  int charcount = 0;\n  // Skip any initial space\n  if (src[0] == ' ') {++src;}\n  const char* word_ptr = src;\n  const char* word_end = word_ptr;\n  if (FLAGS_dbgscore) {\n    fprintf(stderr, \"  \" );\n  }\n  while (src < srclimit) {\n    // Terminate previous word or continue current word\n    if (src[0] == ' ') {\n      int bytecount = word_end - word_ptr;\n      if (bytecount == 0)\n        break;\n      // Lookup and score this word\n      uint64 wordhash40 = OctaHash40(word_ptr, bytecount);\n      uint32 probs = OctaHashV3Lookup4(octagram_obj, wordhash40);\n      // Now go indirect on the subscript\n      probs = octagram_obj->kCLDTableInd[probs &\n        ~octagram_obj->kCLDTableKeyMask];\n\n      // // Lookup and score this word\n      // uint32 wordhash = QuadHashV25(word_ptr, bytecount);\n      // uint32 probs = WordHashLookup4(wordhash, kLongWord8Table,\n      //                                kLongWord8TableSize);\n      //\n      if (FLAGS_dbglookup) {\n        DbgWordTermToStderr(wordhash40, probs, word_ptr, bytecount);\n        DbgScoreRecord(NULL, probs, bytecount);\n      } else if (FLAGS_dbgscore && (probs != 0)) {\n        DbgScoreRecord(NULL, probs, bytecount);\n        string temp(word_ptr, bytecount);\n        fprintf(stderr, \"%s \", temp.c_str());\n      }\n\n      if (probs != 0) {\n        ProcessProbV25Tote(probs, chunk_tote);\n        ++hit_count;\n      }\n      charcount = 0;\n      word_ptr = src + 1;   // Over the space\n      word_end = word_ptr;\n    } else {\n      ++charcount;\n    }\n\n    // Advance to next char\n    src += cld_UniLib::OneCharLen(src);\n    if (charcount <= 8) {\n      word_end = src;\n    }\n  }\n\n  if (FLAGS_dbgscore) {\n    fprintf(stderr, \"[%d words scored]\\n\", hit_count);\n    DbgScoreState();\n  }\n  return hit_count;\n}\n\n\n\n//------------------------------------------------------------------------------\n// Reliability calculations, for single language and between languages\n//------------------------------------------------------------------------------\n\n// Return reliablity of result 0..100 for top two scores\n// delta==0 is 0% reliable, delta==fully_reliable_thresh is 100% reliable\n// (on a scale where +1 is a factor of  2 ** 1.6 = 3.02)\n// Threshold is uni/quadgram increment count, bounded above and below.\n//\n// Requiring a factor of 3 improvement (e.g. +1 log base 3)\n// for each scored quadgram is too stringent, so I've backed this off to a\n// factor of 2 (e.g. +5/8 log base 3).\n//\n// I also somewhat lowered the Min/MaxGramCount limits above\n//\n// Added: if fewer than 8 quads/unis, max reliability is 12*n percent\n//\nint cld::ReliabilityDelta(int value1, int value2, int gramcount) {\n  int max_reliability_percent = 100;\n  if (gramcount < 8) {\n    max_reliability_percent = 12 * gramcount;\n  }\n  int fully_reliable_thresh = (gramcount * 5) >> 3;     // see note above\n  if (fully_reliable_thresh < kMinGramCount) {          // Fully = 3..16\n    fully_reliable_thresh = kMinGramCount;\n  } else if (fully_reliable_thresh > kMaxGramCount) {\n    fully_reliable_thresh = kMaxGramCount;\n  }\n\n  int delta = value1 - value2;\n  if (delta >= fully_reliable_thresh) {return max_reliability_percent;}\n  if (delta <= 0) {return 0;}\n  return cld::minint(max_reliability_percent,\n                     (100 * delta) / fully_reliable_thresh);\n}\n\n// Return reliablity of result 0..100 for top score vs. mainsteam score\n// Values are score per 1024 bytes of input\n// ratio = max(top/mainstream, mainstream/top)\n// ratio > 4.0 is 0% reliable, <= 2.0 is 100% reliable\n// Change: short-text word scoring can give unusually good results.\n//  Let top exceed mainstream by 4x at 50% reliable\nint cld::ReliabilityMainstream(int topscore, int len, int mean_score) {\n  if (mean_score == 0) {return 100;}    // No reliability data available yet\n  if (topscore == 0) {return 0;}        // zero score = unreliable\n  if (len == 0) {return 0;}             // zero len = unreliable\n  int top_kb = (topscore << 10) / len;\n  double ratio;\n  double ratio_cutoff;\n  if (top_kb > mean_score) {\n    ratio = (1.0 * top_kb) / mean_score;\n    ratio_cutoff = 5.0;                 // ramp down from 100% to 0%: 3.0-5.0\n  } else {\n    ratio = (1.0 * mean_score) / top_kb;\n    ratio_cutoff = 4.0;                 // ramp down from 100% to 0%: 2.0-4.0\n  }\n  if (ratio <= ratio_cutoff - 2.0) {return 100;}\n  if (ratio > ratio_cutoff) {return 0;}\n\n  int iratio = static_cast<int>(100 * (ratio_cutoff - ratio) / 2.0);\n  return iratio;\n}\n\n// Calculate ratio of score per 1KB vs. expected score per 1KB\ndouble cld::GetNormalizedScore(Language lang, UnicodeLScript lscript,\n                          int bytes, int score) {\n  // Average training-data score for this language-script combo, per 1KB\n  int expected_score = kMeanScore[lang * 4 + LScript4(lscript)];\n  if (lscript == ULScript_Common) {\n    // We don't know the script (only happens with second-chance score)\n    // Look for first non-zero mean value\n    for (int i = 0; i < 3; ++i) {\n      if (kMeanScore[lang * 4 + i] > 0) {\n        expected_score = kMeanScore[lang * 4 + i];\n      }\n    }\n  }\n  if (expected_score < 100) {\n      expected_score = 1000;\n  }\n\n  // Our score per 1KB\n  double our_score = (score << 10) / (bytes ? bytes : 1);  // Avoid zdiv\n  double ratio = our_score / expected_score;\n\n  // Just the raw count normalized as though each language has mean=1000;\n  ratio = (score * 1000.0) /  expected_score;\n  return ratio;\n}\n\n// Calculate reliablity of len bytes of script lscript with chunk_tote\nint cld::GetReliability(int len, UnicodeLScript lscript,\n                   const Tote* chunk_tote) {\n  Language cur_lang = UnpackLanguage(chunk_tote->Key(0));\n  // Average score for this language-script combo\n  int mean_score = kMeanScore[cur_lang * 4 + LScript4(lscript)];\n  if (lscript == ULScript_Common) {\n    // We don't know the script (only happens with second-chance score)\n    // Look for first non-zero mean value\n    for (int i = 0; i < 3; ++i) {\n      if (kMeanScore[cur_lang * 4 + i] > 0) {\n        mean_score = kMeanScore[cur_lang * 4 + i];\n      }\n    }\n  }\n  int reliability_delta = ReliabilityDelta(chunk_tote->Value(0),\n                                           chunk_tote->Value(1),\n                                           chunk_tote->GetGramCount());\n\n  int reliability_main = ReliabilityMainstream(chunk_tote->Value(0),\n                                               len,\n                                               mean_score);\n\n  int reliability_min = minint(reliability_delta, reliability_main);\n\n\n  if (FLAGS_dbgreli) {\n    char temp1[4];\n    char temp2[4];\n    cld::DbgLangName3(UnpackLanguage(chunk_tote->Key(0)), temp1);\n    if (temp1[2] == ' ') {temp1[2] = '\\0';}\n    cld::DbgLangName3(UnpackLanguage(chunk_tote->Key(1)), temp2);\n    if (temp2[2] == ' ') {temp2[2] = '\\0';}\n    int srclen = len;\n    fprintf(stderr, \"CALC GetReliability gram=%d incr=%d srclen=%d,  %s=%d %s=%d \"\n                   \"top/KB=%d mean/KB=%d del=%d%% reli=%d%%   \"\n                   \"lang/lscript %d %d\\n\",\n           chunk_tote->GetGramCount(),\n           chunk_tote->GetIncrCount(),\n           srclen,\n           temp1, chunk_tote->Value(0),\n           temp2, chunk_tote->Value(1),\n           (chunk_tote->Value(0) << 10) / (srclen ? srclen : 1),\n           mean_score,\n           reliability_delta,\n           reliability_main,\n           cur_lang, lscript);\n  }\n\n  return reliability_min;\n}\n\n\n//------------------------------------------------------------------------------\n// Miscellaneous\n//------------------------------------------------------------------------------\n\n// Demote all languages except Top40 and plus_one\n// Do this just before sorting chunk_tote results\nvoid cld::DemoteNotTop40(Tote* chunk_tote, int packed_plus_one) {\n  for (int sub = 0; sub < chunk_tote->MaxSize(); ++sub) {\n    if (chunk_tote->Key(sub) == 0) continue;\n    if (chunk_tote->Key(sub) == packed_plus_one) continue;\n    if (kIsPackedTop40[chunk_tote->Key(sub)]) continue;\n    // Quarter the score of others\n    chunk_tote->SetValue(sub, chunk_tote->Value(sub) >> 2);\n  }\n}\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/#cldutil.h#",
    "content": "// Copyright (c) 2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef ENCODINGS_COMPACT_LANG_DET_CLDUTIL_H_\n#define ENCODINGS_COMPACT_LANG_DET_CLDUTIL_H_\n\n#include <string>\n#include \"encodings/compact_lang_det/ext_lang_enc.h\"\n#include \"encodings/compact_lang_det/tote.h\"\n#include \"encodings/compact_lang_det/win/cld_basictypes.h\"\n#include \"encodings/compact_lang_det/win/cld_commandlineflags.h\"\n//#include \"encodings/compact_lang_det/win/cld_utf8statetable.h\"\n\nnamespace cld {\n\n  // Hash bucket for four-way associative lookup with < 64K buckets\n  // 32 bytes per bucket, 8-byte entries\n  typedef struct {\n    uint32 key[4];        // hashed word to look up\n    uint32 value[4];      // packed three lang numbers and probability subscript\n  } SmallWordProbBucket4;\n\n  // Hash bucket for fouro-way associative lookup with >= 64K buckets\n  // 24 bytes per bucket, 6-byte entries\n  typedef struct {\n    uint16 key[4];        // Half of hashed word to look up; other\n                          //  half is used to pick the bucket\n    uint32 value[4];      // packed three lang numbers and probability subscript\n  } LargeQuadProbBucket4;\n\n  // Hash bucket for four-way associative lookup, indirect probabilities\n  // 16 bytes per bucket, 4-byte entries\n  typedef struct {\n    uint32 keyvalue[4];   // Upper part of word is hash, lower is indirect prob\n  } IndirectProbBucket4;\n\n\n  // This describes a complete CLD table, consisting of\n  // a main lookup table, an indirect language/probability table, and\n  // three constants.\n  // The main table key is a quadgram, bigram, or longword hash, with\n  // part of the key used to select a bucket modulo kCLDTableSize,\n  // and the rest matched against the key portion of four entries in a bucket,\n  // defined by kCLDTableKeyMask. The remaining bits of an entry, defined\n  // by ~kCLDTableKeyMask, are usually a subscript in the indirect table.\n  //\n  // By using part of the key to select a bucket, those key bits do not need\n  // to be stored in the main table entries, saving space (typically 2 bytes).\n  //\n  // By using an indirect table for lang/prob triples, only the subscript needs\n  // to be stored in the main table entires, saving space (typically 2 bytes).\n  //\n  // Each entry in the indirect table has three languages and three\n  // corresponding probabilities, packed into four bytes.\n  //\n  // The build date constant is included just for version tracking and is not\n  // otherwise used.\n  //\n  // Different-size tables can be linked in for different production\n  // environments. By going indirect through this struct, the runtime code is\n  // insensitive to the actual sizes.\n  //\n  // An empty placeholder table can be described by a table size of 1\n  // bucket, a keymask of 0xffffffff, a degenerate bucket of four no-match\n  // entries, and a degenerate indirect table of one no-languages entry.\n  //\n  //\n  struct CLDTableSummary {\n    const IndirectProbBucket4* kCLDTable;\n                                        // Each bucket has four entries, part\n                                        //  key and part indirect subscript\n    const uint32* kCLDTableInd;         // Each entry is three packed lang/prob\n    const int kCLDTableSize;            // Bucket count\n    const int kCLDTableIndSize;         // Entries count\n    const int kCLDTableKeyMask;         // Mask hash key\n    const int kCLDTableBuildDate;       // yyyymmdd\n  };\n\n\n  // Keeps per-character 0-12 language probabilities for CTJKVZ-- in that order.\n  // Chinese ChineseT Japanese Korean Vietnamese Zhuang\n  // (2 bytes unused, for alignment padding and future)\n  typedef struct {\n    uint8 probs[8];\n  } UnigramProbArray;\n\n  // Map 8-bit subscript to CTJKVZ probabilities\n  // Target runtime probabilities for CTJK + VZ\n  // Hand-generated to cover a reasonable range of choices\n  static const int kTargetCTJKVZProbsSize = 242;\n  static const UnigramProbArray kTargetCTJKVZProbs[kTargetCTJKVZProbsSize] = {\n    {{0,0,0,0,0,0,0,0}},\n    {{0,0,0,0,0,12,0,0}},\n    {{0,0,0,0,12,0,0,0}},\n    {{0,0,0,12,0,0,0,0}},\n    {{0,0,12,0,0,0,0,0}},\n    {{0,12,0,0,0,0,0,0}},\n    {{12,0,0,0,0,0,0,0}},\n\n    {{8,0,0,0,4,0,0,0}},\n    {{8,0,0,4,0,0,0,0}},\n    {{8,0,4,0,0,0,0,0}},\n    {{8,4,0,0,0,0,0,0}},\n    {{8,2,0,2,0,0,0,0}},\n    {{0,0,0,0,0,8,0,0}},\n    {{0,4,8,0,0,0,0,0}},\n    {{4,0,0,0,0,8,0,0}},\n    {{0,0,8,0,0,0,0,0}},\n    {{8,2,2,0,0,0,0,0}},\n    {{0,8,4,0,0,0,0,0}},\n    {{8,0,0,0,0,4,0,0}},\n    {{0,8,2,0,0,0,0,0}},\n    {{4,8,0,0,0,0,0,0}},\n    {{2,8,0,2,0,0,0,0}},\n    {{2,2,8,0,0,0,0,0}},\n    {{0,8,0,0,0,0,0,0}},\n    {{0,2,8,0,0,0,0,0}},\n    {{2,8,2,0,0,0,0,0}},\n    {{8,0,0,0,0,0,0,0}},\n    {{2,8,0,0,0,0,0,0}},\n    {{8,2,0,0,0,0,0,0}},\n\n    {{0,6,2,0,2,0,0,0}},\n    {{2,0,0,0,6,0,0,0}},\n    {{4,0,0,0,6,0,0,0}},\n    {{4,6,0,0,4,0,0,0}},\n    {{4,6,2,0,2,0,0,0}},\n    {{4,6,4,0,2,0,0,0}},\n    {{5,4,6,0,0,0,0,0}},\n    {{6,0,0,0,4,0,0,0}},\n    {{6,0,2,0,4,0,0,0}},\n    {{6,0,4,0,4,0,0,0}},\n    {{6,2,0,0,4,0,0,0}},\n    {{6,2,2,0,4,0,0,0}},\n    {{6,2,4,0,2,0,0,0}},\n    {{6,4,0,0,2,0,0,0}},\n    {{6,4,2,0,2,0,0,0}},\n    {{0,0,6,2,0,0,0,0}},\n    {{0,6,2,0,0,2,0,0}},\n    {{2,2,2,0,0,6,0,0}},\n    {{2,2,6,4,0,0,0,0}},\n    {{2,4,0,0,0,6,0,0}},\n    {{2,6,0,4,0,0,0,0}},\n    {{2,6,2,4,0,0,0,0}},\n    {{2,6,4,4,0,0,0,0}},\n    {{4,0,2,0,0,6,0,0}},\n    {{4,2,6,2,0,0,0,0}},\n    {{4,4,2,0,0,6,0,0}},\n    {{4,6,4,0,0,2,0,0}},\n    {{6,0,2,0,0,2,0,0}},\n    {{6,2,0,0,0,2,0,0}},\n    {{6,2,2,0,0,4,0,0}},\n    {{6,2,4,0,0,2,0,0}},\n    {{4,6,2,0,0,4,0,0}},\n    {{6,4,2,0,0,4,0,0}},\n    {{2,0,0,0,0,6,0,0}},\n    {{6,2,0,2,0,0,0,0}},\n    {{2,2,0,0,0,6,0,0}},\n    {{6,2,6,0,0,0,0,0}},\n    {{6,4,2,0,0,2,0,0}},\n    {{6,4,2,2,0,0,0,0}},\n    {{4,6,4,2,0,0,0,0}},\n    {{6,0,2,0,0,4,0,0}},\n    {{6,0,4,0,0,2,0,0}},\n    {{6,0,6,0,0,0,0,0}},\n    {{6,2,2,0,0,0,0,0}},\n    {{6,4,0,0,0,2,0,0}},\n    {{6,4,5,0,0,0,0,0}},\n    {{0,6,0,2,0,0,0,0}},\n    {{0,6,2,2,0,0,0,0}},\n    {{2,6,0,2,0,0,0,0}},\n    {{2,6,2,2,0,0,0,0}},\n    {{4,2,0,0,0,6,0,0}},\n    {{6,4,0,0,0,4,0,0}},\n    {{6,4,0,2,0,0,0,0}},\n    {{6,6,0,2,0,0,0,0}},\n    {{6,0,4,0,0,4,0,0}},\n    {{6,2,0,0,0,4,0,0}},\n    {{6,6,2,2,0,0,0,0}},\n    {{4,6,0,0,0,2,0,0}},\n    {{2,6,6,0,0,0,0,0}},\n    {{4,5,6,0,0,0,0,0}},\n    {{4,6,0,2,0,0,0,0}},\n    {{6,2,0,0,0,6,0,0}},\n    {{0,6,4,2,0,0,0,0}},\n    {{4,0,6,0,0,0,0,0}},\n    {{2,6,4,2,0,0,0,0}},\n    {{4,6,0,0,0,4,0,0}},\n    {{6,2,2,0,0,0,0,0}},\n    {{4,6,2,2,0,0,0,0}},\n    {{4,6,5,0,0,0,0,0}},\n    {{6,0,2,0,0,0,0,0}},\n    {{6,4,4,0,0,0,0,0}},\n    {{4,2,6,0,0,0,0,0}},\n    {{2,0,6,0,0,0,0,0}},\n    {{4,4,0,0,0,6,0,0}},\n    {{4,4,6,0,0,0,0,0}},\n    {{4,6,2,0,0,2,0,0}},\n    {{2,2,6,0,0,0,0,0}},\n    {{2,4,6,0,0,0,0,0}},\n    {{0,6,6,0,0,0,0,0}},\n    {{6,2,4,0,0,0,0,0}},\n    {{0,4,6,0,0,0,0,0}},\n    {{4,0,0,0,0,6,0,0}},\n    {{4,6,4,0,0,0,0,0}},\n    {{6,0,0,0,0,6,0,0}},\n    {{6,0,0,0,0,2,0,0}},\n    {{6,0,4,0,0,0,0,0}},\n    {{6,5,4,0,0,0,0,0}},\n    {{0,2,6,0,0,0,0,0}},\n    {{0,0,6,0,0,0,0,0}},\n    {{6,6,2,0,0,0,0,0}},\n    {{2,6,4,0,0,0,0,0}},\n    {{6,4,2,0,0,0,0,0}},\n    {{2,6,2,0,0,0,0,0}},\n    {{2,6,0,0,0,0,0,0}},\n    {{6,0,0,0,0,4,0,0}},\n    {{6,4,0,0,0,0,0,0}},\n    {{6,6,0,0,0,0,0,0}},\n    {{5,6,4,0,0,0,0,0}},\n    {{0,6,0,0,0,0,0,0}},\n    {{6,2,0,0,0,0,0,0}},\n    {{0,6,2,0,0,0,0,0}},\n    {{4,6,2,0,0,0,0,0}},\n    {{0,6,4,0,0,0,0,0}},\n    {{4,6,0,0,0,0,0,0}},\n    {{6,0,0,0,0,0,0,0}},\n    {{6,6,5,0,0,0,0,0}},\n    {{6,5,6,0,0,0,0,0}},\n    {{5,6,6,0,0,0,0,0}},\n    {{5,5,6,0,0,0,0,0}},\n    {{5,6,5,0,0,0,0,0}},\n    {{6,5,5,0,0,0,0,0}},\n    {{6,6,6,0,0,0,0,0}},\n    {{6,5,0,0,0,0,0,0}},\n    {{6,0,5,0,0,0,0,0}},\n    {{0,6,5,0,0,0,0,0}},\n    {{5,6,0,0,0,0,0,0}},\n    {{5,0,6,0,0,0,0,0}},\n    {{0,5,6,0,0,0,0,0}},\n\n    {{0,0,0,0,4,0,0,0}},\n    {{0,0,0,4,0,0,0,0}},\n    {{2,2,0,0,4,0,0,0}},\n    {{2,2,2,0,4,0,0,0}},\n    {{2,4,0,0,2,0,0,0}},\n    {{2,4,2,0,2,0,0,0}},\n    {{2,4,4,0,2,0,0,0}},\n    {{4,0,2,0,4,0,0,0}},\n    {{4,0,4,0,2,0,0,0}},\n    {{4,2,0,0,2,0,0,0}},\n    {{4,2,2,0,2,0,0,0}},\n    {{4,4,0,0,2,0,0,0}},\n    {{4,4,2,0,2,0,0,0}},\n    {{4,4,4,0,2,0,0,0}},\n    {{0,2,2,4,0,0,0,0}},\n    {{2,2,4,2,0,0,0,0}},\n    {{2,4,4,0,0,2,0,0}},\n    {{2,4,4,2,0,0,0,0}},\n    {{4,0,4,0,0,2,0,0}},\n    {{4,0,4,0,0,4,0,0}},\n    {{4,2,2,4,0,0,0,0}},\n    {{4,4,0,2,0,0,0,0}},\n    {{2,2,0,4,0,0,0,0}},\n    {{2,4,2,2,0,0,0,0}},\n    {{4,4,2,2,0,0,0,0}},\n    {{4,0,4,0,0,0,0,0}},\n    {{4,4,4,0,0,4,0,0}},\n    {{0,4,0,2,0,0,0,0}},\n    {{0,4,2,2,0,0,0,0}},\n    {{4,0,2,0,0,2,0,0}},\n    {{4,2,0,0,0,4,0,0}},\n    {{2,2,2,0,0,4,0,0}},\n    {{4,0,0,2,0,0,0,0}},\n    {{4,4,4,0,0,2,0,0}},\n    {{4,0,0,0,0,4,0,0}},\n    {{4,0,2,0,0,4,0,0}},\n    {{4,2,0,0,0,2,0,0}},\n    {{4,2,2,0,0,2,0,0}},\n    {{2,4,0,2,0,0,0,0}},\n    {{2,2,0,0,0,4,0,0}},\n    {{2,4,0,0,0,4,0,0}},\n    {{2,4,2,0,0,4,0,0}},\n    {{4,2,4,0,0,0,0,0}},\n    {{2,0,4,0,0,0,0,0}},\n    {{4,0,2,0,0,0,0,0}},\n    {{4,4,0,0,0,4,0,0}},\n    {{4,4,2,0,0,4,0,0}},\n    {{0,4,4,0,0,0,0,0}},\n    {{4,4,0,0,0,2,0,0}},\n    {{2,4,0,0,0,2,0,0}},\n    {{2,2,4,0,0,0,0,0}},\n    {{0,2,4,0,0,0,0,0}},\n    {{4,2,2,0,0,0,0,0}},\n    {{2,4,2,0,0,2,0,0}},\n    {{4,4,4,0,0,0,0,0}},\n    {{2,4,4,0,0,0,0,0}},\n    {{0,0,4,0,0,0,0,0}},\n    {{0,4,2,0,0,0,0,0}},\n    {{4,4,2,0,0,2,0,0}},\n    {{2,4,2,0,0,0,0,0}},\n    {{4,2,0,0,0,0,0,0}},\n    {{4,4,0,0,0,0,0,0}},\n    {{4,4,2,0,0,0,0,0}},\n    {{2,4,0,0,0,0,0,0}},\n    {{0,4,0,0,0,0,0,0}},\n    {{4,0,0,0,0,0,0,0}},\n    {{0,0,0,4,4,0,0,0}},\n    {{0,0,4,0,4,0,0,0}},\n    {{0,0,4,4,0,0,0,0}},\n    {{0,4,0,0,4,0,0,0}},\n    {{0,4,0,4,0,0,0,0}},\n    {{4,0,0,0,4,0,0,0}},\n    {{4,0,0,4,0,0,0,0}},\n\n    {{2,0,0,0,0,0,0,0}},\n    {{0,2,0,0,0,0,0,0}},\n    {{0,2,0,2,2,0,0,0}},\n    {{0,2,2,0,2,0,0,0}},\n    {{2,0,0,2,2,0,0,0}},\n    {{2,0,2,0,2,0,0,0}},\n    {{2,0,2,2,0,0,0,0}},\n    {{2,2,0,0,2,0,0,0}},\n    {{2,2,2,2,0,0,0,0}},\n    {{2,2,0,2,0,0,0,0}},\n    {{2,2,0,0,0,0,0,0}},\n    {{0,0,2,0,0,0,0,0}},\n    {{0,2,2,0,0,0,0,0}},\n    {{2,2,2,0,0,0,0,0}},\n    {{0,0,0,2,0,0,0,0}},\n    {{2,0,2,0,0,0,0,0}},\n    {{0,2,0,2,0,0,0,0}},\n    {{0,0,2,2,0,0,0,0}},\n    {{0,2,2,2,0,0,0,0}},\n  };\n\n\n\n\n  // 1 to skip ASCII space, vowels AEIOU aeiou and UTF-8 continuation bytes 80-BF\n  static const uint8 kSkipSpaceVowelContinue[256] = {\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n    1,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n    0,1,0,0,0,1,0,0, 0,1,0,0,0,0,0,1, 0,0,0,0,0,1,0,0, 0,0,0,0,0,0,0,0,\n    0,1,0,0,0,1,0,0, 0,1,0,0,0,0,0,1, 0,0,0,0,0,1,0,0, 0,0,0,0,0,0,0,0,\n\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  };\n\n  // 1 to skip ASCII space, and UTF-8 continuation bytes 80-BF\n  static const uint8 kSkipSpaceContinue[256] = {\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n    1,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  };\n\n\n  // If != UNKNOWN, use nilgrams to determine language of this script\n  static const Language kOnlyLanguagePerLScript[] = {\n    ENGLISH,            // ULScript_Common, [no words should be in this script]\n    UNKNOWN_LANGUAGE,   // ULScript_Latin,\n    //UNKNOWN_LANGUAGE,   // ULScript_Greek,  Jan 2009: change so we can score quads\n    GREEK,              // ULScript_Greek,  Mar 2009: change back; do gibberish separately\n    UNKNOWN_LANGUAGE,   // ULScript_Cyrillic,\n    ARMENIAN,           // ULScript_Armenian,\n    UNKNOWN_LANGUAGE,   // ULScript_Hebrew,\n    UNKNOWN_LANGUAGE,   // ULScript_Arabic,\n    SYRIAC,             // ULScript_Syriac,\n    DHIVEHI,            // ULScript_Thaana,\n    UNKNOWN_LANGUAGE,   // ULScript_Devanagari,\n    UNKNOWN_LANGUAGE,   // ULScript_Bengali,\n    PUNJABI,            // ULScript_Gurmukhi,\n    GUJARATI,           // ULScript_Gujarati,\n    ORIYA,              // ULScript_Oriya,\n    TAMIL,              // ULScript_Tamil,\n    TELUGU,             // ULScript_Telugu,\n    KANNADA,            // ULScript_Kannada,\n    MALAYALAM,          // ULScript_Malayalam,\n    SINHALESE,          // ULScript_Sinhala,\n    THAI,               // ULScript_Thai,\n    LAOTHIAN,           // ULScript_Lao,\n    UNKNOWN_LANGUAGE,   // ULScript_Tibetan,\n    BURMESE,            // ULScript_Myanmar,\n    GEORGIAN,           // ULScript_Georgian,\n    UNKNOWN_LANGUAGE,   // ULScript_HanCJK,\n    UNKNOWN_LANGUAGE,   // ULScript_Ethiopic,\n    CHEROKEE,           // ULScript_Cherokee,\n    INUKTITUT,          // ULScript_Canadian_Aboriginal,\n    X_OGHAM,            // ULScript_Ogham,\n    X_RUNIC,            // ULScript_Runic,\n    KHMER,              // ULScript_Khmer,\n    MONGOLIAN,          // ULScript_Mongolian,\n    X_YI,               // ULScript_Yi,\n    X_OLD_ITALIC,       // ULScript_Old_Italic,\n    X_GOTHIC,           // ULScript_Gothic,\n    X_DESERET,          // ULScript_Deseret,\n    ENGLISH,            // ULScript_Inherited, [no words should be in this script]\n    TAGALOG,            // ULScript_Tagalog,\n    X_HANUNOO,          // ULScript_Hanunoo,\n    X_BUHID,            // ULScript_Buhid,\n    X_TAGBANWA,         // ULScript_Tagbanwa,\n    LIMBU,              // ULScript_Limbu,\n    X_TAI_LE,           // ULScript_Tai_Le,\n    X_LINEAR_B,         // ULScript_Linear_B,\n    X_UGARITIC,         // ULScript_Ugaritic,\n    X_SHAVIAN,          // ULScript_Shavian,\n    X_OSMANYA,          // ULScript_Osmanya,\n    X_CYPRIOT,          // ULScript_Cypriot,\n    X_BUGINESE,         // ULScript_Buginese,\n    X_COPTIC,           // ULScript_Coptic,\n    X_NEW_TAI_LUE,      // ULScript_New_Tai_Lue,\n    X_GLAGOLITIC,       // ULScript_Glagolitic,\n    X_TIFINAGH,         // ULScript_Tifinagh,\n    X_SYLOTI_NAGRI,     // ULScript_Syloti_Nagri,\n    X_OLD_PERSIAN,      // ULScript_Old_Persian,\n    X_KHAROSHTHI,       // ULScript_Kharoshthi,\n    X_BALINESE,         // ULScript_Balinese,\n    X_CUNEIFORM,        // ULScript_Cuneiform,\n    X_PHOENICIAN,       // ULScript_Phoenician,\n    X_PHAGS_PA,         // ULScript_Phags_Pa,\n    X_NKO,              // ULScript_Nko,\n\n    // Unicode 5.1\n    X_SUDANESE,         // ULScript_Sundanese,\n    X_LEPCHA,           // ULScript_Lepcha,\n    X_OL_CHIKI,         // ULScript_Ol_Chiki,\n    X_VAI,              // ULScript_Vai,\n    X_SAURASHTRA,       // ULScript_Saurashtra,\n    X_KAYAH_LI,         // ULScript_Kayah_Li,\n    X_REJANG,           // ULScript_Rejang,\n    X_LYCIAN,           // ULScript_Lycian,\n    X_CARIAN,           // ULScript_Carian,\n    X_LYDIAN,           // ULScript_Lydian,\n    X_CHAM,             // ULScript_Cham,\n  };\n\n  COMPILE_ASSERT(arraysize(kOnlyLanguagePerLScript) == ULScript_NUM_SCRIPTS,\n       kOnlyLanguagePerLScript_has_incorrect_length);\n\n\n  // This is, in a sense, the complement of the table above\n  // If != UNKNOWN, determines a default language of this script\n  static const Language kDefaultLanguagePerLScript[] = {\n    UNKNOWN_LANGUAGE,            // ULScript_Common, [no words should be in this script]\n    ENGLISH,   // ULScript_Latin,\n    UNKNOWN_LANGUAGE,              // ULScript_Greek,\n    RUSSIAN,   // ULScript_Cyrillic,\n    UNKNOWN_LANGUAGE,           // ULScript_Armenian,\n    HEBREW,   // ULScript_Hebrew,\n    ARABIC,   // ULScript_Arabic,\n    UNKNOWN_LANGUAGE,             // ULScript_Syriac,\n    UNKNOWN_LANGUAGE,            // ULScript_Thaana,\n    HINDI,   // ULScript_Devanagari,\n    BENGALI,   // ULScript_Bengali,\n    UNKNOWN_LANGUAGE,            // ULScript_Gurmukhi,\n    UNKNOWN_LANGUAGE,           // ULScript_Gujarati,\n    UNKNOWN_LANGUAGE,              // ULScript_Oriya,\n    UNKNOWN_LANGUAGE,              // ULScript_Tamil,\n    UNKNOWN_LANGUAGE,             // ULScript_Telugu,\n    UNKNOWN_LANGUAGE,            // ULScript_Kannada,\n    UNKNOWN_LANGUAGE,          // ULScript_Malayalam,\n    UNKNOWN_LANGUAGE,          // ULScript_Sinhala,\n    UNKNOWN_LANGUAGE,               // ULScript_Thai,\n    UNKNOWN_LANGUAGE,           // ULScript_Lao,\n    TIBETAN,   // ULScript_Tibetan,\n    UNKNOWN_LANGUAGE,            // ULScript_Myanmar,\n    UNKNOWN_LANGUAGE,           // ULScript_Georgian,\n    CHINESE,   // ULScript_HanCJK,\n    AMHARIC,   // ULScript_Ethiopic,\n    UNKNOWN_LANGUAGE,           // ULScript_Cherokee,\n    UNKNOWN_LANGUAGE,          // ULScript_Canadian_Aboriginal,\n    UNKNOWN_LANGUAGE,            // ULScript_Ogham,\n    UNKNOWN_LANGUAGE,            // ULScript_Runic,\n    UNKNOWN_LANGUAGE,              // ULScript_Khmer,\n    UNKNOWN_LANGUAGE,          // ULScript_Mongolian,\n    UNKNOWN_LANGUAGE,               // ULScript_Yi,\n    UNKNOWN_LANGUAGE,       // ULScript_Old_Italic,\n    UNKNOWN_LANGUAGE,           // ULScript_Gothic,\n    UNKNOWN_LANGUAGE,          // ULScript_Deseret,\n    UNKNOWN_LANGUAGE,            // ULScript_Inherited, [no words should be in this script]\n    UNKNOWN_LANGUAGE,            // ULScript_Tagalog,\n    UNKNOWN_LANGUAGE,          // ULScript_Hanunoo,\n    UNKNOWN_LANGUAGE,            // ULScript_Buhid,\n    UNKNOWN_LANGUAGE,         // ULScript_Tagbanwa,\n    UNKNOWN_LANGUAGE,              // ULScript_Limbu,\n    UNKNOWN_LANGUAGE,           // ULScript_Tai_Le,\n    UNKNOWN_LANGUAGE,         // ULScript_Linear_B,\n    UNKNOWN_LANGUAGE,         // ULScript_Ugaritic,\n    UNKNOWN_LANGUAGE,          // ULScript_Shavian,\n    UNKNOWN_LANGUAGE,          // ULScript_Osmanya,\n    UNKNOWN_LANGUAGE,          // ULScript_Cypriot,\n    UNKNOWN_LANGUAGE,         // ULScript_Buginese,\n    UNKNOWN_LANGUAGE,           // ULScript_Coptic,\n    UNKNOWN_LANGUAGE,      // ULScript_New_Tai_Lue,\n    UNKNOWN_LANGUAGE,       // ULScript_Glagolitic,\n    UNKNOWN_LANGUAGE,         // ULScript_Tifinagh,\n    UNKNOWN_LANGUAGE,     // ULScript_Syloti_Nagri,\n    UNKNOWN_LANGUAGE,      // ULScript_Old_Persian,\n    UNKNOWN_LANGUAGE,       // ULScript_Kharoshthi,\n    UNKNOWN_LANGUAGE,         // ULScript_Balinese,\n    UNKNOWN_LANGUAGE,        // ULScript_Cuneiform,\n    UNKNOWN_LANGUAGE,       // ULScript_Phoenician,\n    UNKNOWN_LANGUAGE,         // ULScript_Phags_Pa,\n    UNKNOWN_LANGUAGE,              // ULScript_Nko,\n\n    // Unicode 5.1\n    UNKNOWN_LANGUAGE,         // ULScript_Sundanese,\n    UNKNOWN_LANGUAGE,           // ULScript_Lepcha,\n    UNKNOWN_LANGUAGE,         // ULScript_Ol_Chiki,\n    UNKNOWN_LANGUAGE,              // ULScript_Vai,\n    UNKNOWN_LANGUAGE,       // ULScript_Saurashtra,\n    UNKNOWN_LANGUAGE,         // ULScript_Kayah_Li,\n    UNKNOWN_LANGUAGE,           // ULScript_Rejang,\n    UNKNOWN_LANGUAGE,           // ULScript_Lycian,\n    UNKNOWN_LANGUAGE,           // ULScript_Carian,\n    UNKNOWN_LANGUAGE,           // ULScript_Lydian,\n    UNKNOWN_LANGUAGE,             // ULScript_Cham,\n  };\n\n  COMPILE_ASSERT(arraysize(kDefaultLanguagePerLScript) == ULScript_NUM_SCRIPTS,\n       kDefaultLanguagePerLScript_has_incorrect_length);\n\n\n  // True for standalone languages (only lang in a script)\n  // Subscripted by packed language number\n  // If 1, we will use nilgrams to determine language\n  static const uint8 kIsStandaloneLang[EXT_NUM_LANGUAGES + 1] = {\n     0,\n     0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,1,0,    // GREEK\n     0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,\n     0,1,0,0,1, 0,1,0,0,0, 0,0,1,1,0, 0,0,0,0,1,    // MALAYALAM..KANNADA\n     1,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 1,0,0,0,1,    // PUNJABI..SINHALESE\n     0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,1,1,0,    // ARMENIAN..LAOTHIAN\n\n     0,0,0,0,1, 0,1,1,1,0, 1,0,0,0,0, 0,0,0,0,0,    // KHMER..ORIYA\n     0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,\n     0,1,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,    // INUKTITUT\n\n     0,0,0,0,0,                                     // [160..164]\n    // Add new language standalone bit just before here\n     0,0,0,0,0, 1,1,1,1,1, 1,1,1,1,1, 1,1,1,1,1,\n     1,1,1,1,1, 1,1,1,1,1, 1,1,1,1,1, 1,1,1,1,1,\n\n     1,1,1,1,\n   };\n\n   // True for ULScript_HanCJK\n   // (Vietnamese and Zhuang also have Latin script quadgrams)\n   // Subscripted by packed language number\n   static const uint8 kIsUnigramLang[EXT_NUM_LANGUAGES + 1] = {\n      0,\n      0,0,0,0,0, 0,0,0,1,1, 0,0,0,0,0, 0,1,0,0,0,    // JAPANESE KOREAN CHINESE\n      0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,    //\n      0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,    //\n      0,0,0,0,0, 0,1,0,0,1, 0,0,0,0,0, 0,0,0,0,0,    // VIETNAMESE CHINESE_T\n      0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,    //\n\n      0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,    //\n      0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,    //\n      0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 1,0,0,0,0,    // ZHUANG\n\n      0,0,0,0,0,                                     // [160..164]\n     // Add new language unigram bit just before here\n\n      0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,    //\n      0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,    //\n\n      0,0,0,0,\n   };\n\n\n  // True for ULScript_HanCJK\n  // Subscripted by lscript number\n  static const uint8 kScoreUniPerLScript[] = {\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 1,0,0,0,0,0,0,0,\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n    0,0,0,0,0,0,0,0,\n  };\n\n  COMPILE_ASSERT(arraysize(kScoreUniPerLScript) == ULScript_NUM_SCRIPTS,\n       kScoreUniPerLScript_has_incorrect_length);\n\n\n  // Defines Top40 packed languages\n\n  // Tier 0/1 Language enum list (16)\n  //   ENGLISH, /*no en_GB,*/ FRENCH, ITALIAN, GERMAN, SPANISH,    // E - FIGS\n  //   DUTCH, CHINESE, CHINESE_T, JAPANESE, KOREAN,\n  //   PORTUGUESE, RUSSIAN, POLISH, TURKISH, THAI,\n  //   ARABIC,\n  //\n  // Tier 2 Language enum list (22)\n  //   SWEDISH, FINNISH, DANISH, /*no pt-PT,*/ ROMANIAN, HUNGARIAN,\n  //   HEBREW, INDONESIAN, CZECH, GREEK, NORWEGIAN,\n  //   VIETNAMESE, BULGARIAN, CROATIAN, LITHUANIAN, SLOVAK,\n  //   TAGALOG, SLOVENIAN, SERBIAN, CATALAN, LATVIAN,\n  //   UKRAINIAN, HINDI,\n  //\n  //   use SERBO_CROATIAN instead of BOSNIAN, SERBIAN, CROATIAN, MONTENEGRIN(21)\n  //\n  // Include IgnoreMe (TG_UNKNOWN_LANGUAGE, 25+1) as a top 40\n\n  // NOTE: packed, i.e. Language enum + 1\n  static const uint8 kIsPackedTop40[EXT_NUM_LANGUAGES + 1] = {\n    0,\n    1,1,1,1,1, 1,1,1,1,1, 1,1,1,1,1, 1,1,1,1,0,\n    1,1,1,1,0, 1,0,1,0,0, 0,0,1,1,1, 1,0,0,1,0,\n    0,0,0,0,0, 0,0,0,0,0, 0,0,0,1,1, 1,0,0,0,0,\n    0,0,0,1,0, 0,1,0,1,1, 0,0,0,0,0, 0,0,0,0,0,\n    0,0,0,0,0, 0,0,0,0,0, 0,0,1,0,0, 0,0,0,0,0,\n\n    0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,\n    0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,\n    0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,\n\n    0,0,0,0,0,                                    // [160..164]\n    // Add new language top40 bit just before here\n\n    0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,\n    0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,\n\n    0,0,0,0,\n  };\n\n\n\n  // Table has 234 eight-byte entries. Each entry has a five-byte array and\n  // a three-byte array of log base 2 probabilities in the range 0..11.\n  // The intended use is to express five or three probabilities in a single-byte\n  // subscript, then decode via this table. These probabilities are\n  // intended to go with an array of five or three language numbers.\n  //\n  // The corresponding language numbers will have to be sorted by descending\n  // probability, then the actual probability subscript chosen to match the\n  // closest available entry in this table.\n  //\n  // Pattern of probability values:\n  // hi 3/4 1/2 1/4 lo    hi mid lo\n  // where \"3/4\" is (hi*3+lo)/4, \"1/2\" is (hi+lo)/2, and \"1/4\" is (hi+lo*3)/4 and\n  // mid is one of 3/4 1/2 or 1/4.\n  // There are three groups of 78 (=12*13/2) entries, with hi running 0..11 and\n  // lo running 0..hi. Only the first group is used for five-entry lookups.\n  // The mid value in the first group is 1/2, the second group 3/4, and the\n  // third group 1/4. For three-entry lookups, this allows the mid entry to be\n  // somewhat higher or lower than the midpoint, to allow a better match to the\n  // original probabilities.\n  static const int kLgProbV2TblSize = 234;\n  static const uint8 kLgProbV2Tbl[kLgProbV2TblSize * 8] = {\n    1,1,1,1,1, 1,1,1,     // [0]\n    2,2,2,1,1, 2,2,1,     // [1]\n    2,2,2,2,2, 2,2,2,\n    3,3,2,2,1, 3,2,1,     // [3]\n    3,3,3,2,2, 3,3,2,\n    3,3,3,3,3, 3,3,3,\n    4,3,3,2,1, 4,3,1,     // [6]\n    4,4,3,3,2, 4,3,2,\n    4,4,4,3,3, 4,4,3,\n    4,4,4,4,4, 4,4,4,\n    5,4,3,2,1, 5,3,1,     // [10]\n    5,4,4,3,2, 5,4,2,\n    5,5,4,4,3, 5,4,3,\n    5,5,5,4,4, 5,5,4,\n    5,5,5,5,5, 5,5,5,\n    6,5,4,2,1, 6,4,1,     // [15]\n    6,5,4,3,2, 6,4,2,\n    6,5,5,4,3, 6,5,3,\n    6,6,5,5,4, 6,5,4,\n    6,6,6,5,5, 6,6,5,\n    6,6,6,6,6, 6,6,6,\n    7,6,4,3,1, 7,4,1,     // [21]\n    7,6,5,3,2, 7,5,2,\n    7,6,5,4,3, 7,5,3,\n    7,6,6,5,4, 7,6,4,\n    7,7,6,6,5, 7,6,5,\n    7,7,7,6,6, 7,7,6,\n    7,7,7,7,7, 7,7,7,\n    8,6,5,3,1, 8,5,1,     // [28]\n    8,7,5,4,2, 8,5,2,\n    8,7,6,4,3, 8,6,3,\n    8,7,6,5,4, 8,6,4,\n    8,7,7,6,5, 8,7,5,\n    8,8,7,7,6, 8,7,6,\n    8,8,8,7,7, 8,8,7,\n    8,8,8,8,8, 8,8,8,\n    9,7,5,3,1, 9,5,1,     // [36]\n    9,7,6,4,2, 9,6,2,\n    9,8,6,5,3, 9,6,3,\n    9,8,7,5,4, 9,7,4,\n    9,8,7,6,5, 9,7,5,\n    9,8,8,7,6, 9,8,6,\n    9,9,8,8,7, 9,8,7,\n    9,9,9,8,8, 9,9,8,\n    9,9,9,9,9, 9,9,9,\n    10,8,6,3,1, 10,6,1,   // [45]\n    10,8,6,4,2, 10,6,2,\n    10,8,7,5,3, 10,7,3,\n    10,9,7,6,4, 10,7,4,\n    10,9,8,6,5, 10,8,5,\n    10,9,8,7,6, 10,8,6,\n    10,9,9,8,7, 10,9,7,\n    10,10,9,9,8, 10,9,8,\n    10,10,10,9,9, 10,10,9,\n    10,10,10,10,10, 10,10,10,\n    11,9,6,4,1, 11,6,1,   // [55]\n    11,9,7,4,2, 11,7,2,\n    11,9,7,5,3, 11,7,3,\n    11,9,8,6,4, 11,8,4,\n    11,10,8,7,5, 11,8,5,\n    11,10,9,7,6, 11,9,6,\n    11,10,9,8,7, 11,9,7,\n    11,10,10,9,8, 11,10,8,\n    11,11,10,10,9, 11,10,9,\n    11,11,11,10,10, 11,11,10,\n    11,11,11,11,11, 11,11,11,\n    12,9,7,4,1, 12,7,1,   // [66]\n    12,10,7,5,2, 12,7,2,\n    12,10,8,5,3, 12,8,3,\n    12,10,8,6,4, 12,8,4,\n    12,10,9,7,5, 12,9,5,\n    12,11,9,8,6, 12,9,6,\n    12,11,10,8,7, 12,10,7,\n    12,11,10,9,8, 12,10,8,\n    12,11,11,10,9, 12,11,9,\n    12,12,11,11,10, 12,11,10,\n    12,12,12,11,11, 12,12,11,\n    12,12,12,12,12, 12,12,12,\n\n    1,1,1,1,1, 1,1,1,\n    2,2,2,1,1, 2,2,1,\n    2,2,2,2,2, 2,2,2,\n    3,3,2,2,1, 3,3,1,\n    3,3,3,2,2, 3,3,2,\n    3,3,3,3,3, 3,3,3,\n    4,3,3,2,1, 4,3,1,\n    4,4,3,3,2, 4,4,2,\n    4,4,4,3,3, 4,4,3,\n    4,4,4,4,4, 4,4,4,\n    5,4,3,2,1, 5,4,1,\n    5,4,4,3,2, 5,4,2,\n    5,5,4,4,3, 5,5,3,\n    5,5,5,4,4, 5,5,4,\n    5,5,5,5,5, 5,5,5,\n    6,5,4,2,1, 6,5,1,\n    6,5,4,3,2, 6,5,2,\n    6,5,5,4,3, 6,5,3,\n    6,6,5,5,4, 6,6,4,\n    6,6,6,5,5, 6,6,5,\n    6,6,6,6,6, 6,6,6,\n    7,6,4,3,1, 7,6,1,\n    7,6,5,3,2, 7,6,2,\n    7,6,5,4,3, 7,6,3,\n    7,6,6,5,4, 7,6,4,\n    7,7,6,6,5, 7,7,5,\n    7,7,7,6,6, 7,7,6,\n    7,7,7,7,7, 7,7,7,\n    8,6,5,3,1, 8,6,1,\n    8,7,5,4,2, 8,7,2,\n    8,7,6,4,3, 8,7,3,\n    8,7,6,5,4, 8,7,4,\n    8,7,7,6,5, 8,7,5,\n    8,8,7,7,6, 8,8,6,\n    8,8,8,7,7, 8,8,7,\n    8,8,8,8,8, 8,8,8,\n    9,7,5,3,1, 9,7,1,\n    9,7,6,4,2, 9,7,2,\n    9,8,6,5,3, 9,8,3,\n    9,8,7,5,4, 9,8,4,\n    9,8,7,6,5, 9,8,5,\n    9,8,8,7,6, 9,8,6,\n    9,9,8,8,7, 9,9,7,\n    9,9,9,8,8, 9,9,8,\n    9,9,9,9,9, 9,9,9,\n    10,8,6,3,1, 10,8,1,\n    10,8,6,4,2, 10,8,2,\n    10,8,7,5,3, 10,8,3,\n    10,9,7,6,4, 10,9,4,\n    10,9,8,6,5, 10,9,5,\n    10,9,8,7,6, 10,9,6,\n    10,9,9,8,7, 10,9,7,\n    10,10,9,9,8, 10,10,8,\n    10,10,10,9,9, 10,10,9,\n    10,10,10,10,10, 10,10,10,\n    11,9,6,4,1, 11,9,1,\n    11,9,7,4,2, 11,9,2,\n    11,9,7,5,3, 11,9,3,\n    11,9,8,6,4, 11,9,4,\n    11,10,8,7,5, 11,10,5,\n    11,10,9,7,6, 11,10,6,\n    11,10,9,8,7, 11,10,7,\n    11,10,10,9,8, 11,10,8,\n    11,11,10,10,9, 11,11,9,\n    11,11,11,10,10, 11,11,10,\n    11,11,11,11,11, 11,11,11,\n    12,9,7,4,1, 12,9,1,\n    12,10,7,5,2, 12,10,2,\n    12,10,8,5,3, 12,10,3,\n    12,10,8,6,4, 12,10,4,\n    12,10,9,7,5, 12,10,5,\n    12,11,9,8,6, 12,11,6,\n    12,11,10,8,7, 12,11,7,\n    12,11,10,9,8, 12,11,8,\n    12,11,11,10,9, 12,11,9,\n    12,12,11,11,10, 12,12,10,\n    12,12,12,11,11, 12,12,11,\n    12,12,12,12,12, 12,12,12,\n\n    1,1,1,1,1, 1,1,1,\n    2,2,2,1,1, 2,1,1,\n    2,2,2,2,2, 2,2,2,\n    3,3,2,2,1, 3,2,1,\n    3,3,3,2,2, 3,2,2,\n    3,3,3,3,3, 3,3,3,\n    4,3,3,2,1, 4,2,1,\n    4,4,3,3,2, 4,3,2,\n    4,4,4,3,3, 4,3,3,\n    4,4,4,4,4, 4,4,4,\n    5,4,3,2,1, 5,2,1,\n    5,4,4,3,2, 5,3,2,\n    5,5,4,4,3, 5,4,3,\n    5,5,5,4,4, 5,4,4,\n    5,5,5,5,5, 5,5,5,\n    6,5,4,2,1, 6,2,1,\n    6,5,4,3,2, 6,3,2,\n    6,5,5,4,3, 6,4,3,\n    6,6,5,5,4, 6,5,4,\n    6,6,6,5,5, 6,5,5,\n    6,6,6,6,6, 6,6,6,\n    7,6,4,3,1, 7,3,1,\n    7,6,5,3,2, 7,3,2,\n    7,6,5,4,3, 7,4,3,\n    7,6,6,5,4, 7,5,4,\n    7,7,6,6,5, 7,6,5,\n    7,7,7,6,6, 7,6,6,\n    7,7,7,7,7, 7,7,7,\n    8,6,5,3,1, 8,3,1,\n    8,7,5,4,2, 8,4,2,\n    8,7,6,4,3, 8,4,3,\n    8,7,6,5,4, 8,5,4,\n    8,7,7,6,5, 8,6,5,\n    8,8,7,7,6, 8,7,6,\n    8,8,8,7,7, 8,7,7,\n    8,8,8,8,8, 8,8,8,\n    9,7,5,3,1, 9,3,1,\n    9,7,6,4,2, 9,4,2,\n    9,8,6,5,3, 9,5,3,\n    9,8,7,5,4, 9,5,4,\n    9,8,7,6,5, 9,6,5,\n    9,8,8,7,6, 9,7,6,\n    9,9,8,8,7, 9,8,7,\n    9,9,9,8,8, 9,8,8,\n    9,9,9,9,9, 9,9,9,\n    10,8,6,3,1, 10,3,1,\n    10,8,6,4,2, 10,4,2,\n    10,8,7,5,3, 10,5,3,\n    10,9,7,6,4, 10,6,4,\n    10,9,8,6,5, 10,6,5,\n    10,9,8,7,6, 10,7,6,\n    10,9,9,8,7, 10,8,7,\n    10,10,9,9,8, 10,9,8,\n    10,10,10,9,9, 10,9,9,\n    10,10,10,10,10, 10,10,10,\n    11,9,6,4,1, 11,4,1,\n    11,9,7,4,2, 11,4,2,\n    11,9,7,5,3, 11,5,3,\n    11,9,8,6,4, 11,6,4,\n    11,10,8,7,5, 11,7,5,\n    11,10,9,7,6, 11,7,6,\n    11,10,9,8,7, 11,8,7,\n    11,10,10,9,8, 11,9,8,\n    11,11,10,10,9, 11,10,9,\n    11,11,11,10,10, 11,10,10,\n    11,11,11,11,11, 11,11,11,\n    12,9,7,4,1, 12,4,1,\n    12,10,7,5,2, 12,5,2,\n    12,10,8,5,3, 12,5,3,\n    12,10,8,6,4, 12,6,4,\n    12,10,9,7,5, 12,7,5,\n    12,11,9,8,6, 12,8,6,\n    12,11,10,8,7, 12,8,7,\n    12,11,10,9,8, 12,9,8,\n    12,11,11,10,9, 12,10,9,\n    12,12,11,11,10, 12,11,10,\n    12,12,12,11,11, 12,11,11,\n    12,12,12,12,12, 12,12,12,\n  };\n\n  // Backmap a single desired probability into an entry in kLgProbV2Tbl\n  static const uint8 kLgProbV2TblBackmap[13] = {\n    0,\n    0, 1, 3, 6,   10, 15, 21, 28,   36, 45, 55, 66,\n  };\n\n\n  // Always advances one UTF-8 character\n  static const uint8 kAdvanceOneChar[256] = {\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2,\n    3,3,3,3,3,3,3,3, 3,3,3,3,3,3,3,3, 4,4,4,4,4,4,4,4, 4,4,4,4,4,4,4,4,\n  };\n\n  // Does not advance past space or cr/lf/nul\n  static const uint8 kAdvanceOneCharButSpace[256] = {\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n    0,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2,\n    3,3,3,3,3,3,3,3, 3,3,3,3,3,3,3,3, 4,4,4,4,4,4,4,4, 4,4,4,4,4,4,4,4,\n  };\n\n  // Advances *only* on space or ASCII vowel (or illegal byte)\n  static const uint8 kAdvanceOneCharSpaceVowel[256] = {\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    1,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n    0,1,0,0,0,1,0,0, 0,1,0,0,0,0,0,1, 0,0,0,0,0,1,0,0, 0,0,0,0,0,0,0,0,\n    0,1,0,0,0,1,0,0, 0,1,0,0,0,0,0,1, 0,0,0,0,0,1,0,0, 0,0,0,0,0,0,0,0,\n\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  };\n\n  // Advances *only* on space (or illegal byte)\n  static const uint8 kAdvanceOneCharSpace[256] = {\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    1,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  };\n\n\n//------------------------------------------------------------------------------\n// General\n//------------------------------------------------------------------------------\n  static inline int minint(int a, int b) {return (a < b) ? a: b;}\n  static inline int maxint(int a, int b) {return (a > b) ? a: b;}\n\n  // Here to make available for debugging\n  int ReliabilityDelta(int value1, int value2, int count);\n  int ReliabilityMainstream(int topscore, int len, int mean_score);\n\n  // Returns \"0\" for too small\n  inline const char* MyExtLanguageCode(Language lang) {\n    return ExtLanguageCode(lang);\n  }\n\n  // Map script into Latin, Cyrillic, Arabic, Other. Used in keeping track of\n  // amount of training data for language-script combinations\n  inline int LScript4(UnicodeLScript lscript) {\n    if (lscript == ULScript_Latin) {return 0;}\n    if (lscript == ULScript_Cyrillic) {return 1;}\n    if (lscript == ULScript_Arabic) {return 2;}\n    return 3;\n  }\n\n\n  // Routines to access 3 or 5 log probabilities in a single byte.\n\n  // Return address of 8-byte entry[i]\n  inline const uint8* LgProb2TblEntry(int i) {\n    return &kLgProbV2Tbl[i * 8];\n  }\n\n  // Return one of five probabilities in an entry\n  // CURRENTLY UNUSED\n  inline uint8 LgProb5(const uint8* entry, int j) {\n    return entry[j];\n  }\n\n  // Return one of three probabilities in an entry\n  inline uint8 LgProb3(const uint8* entry, int j) {\n    return entry[j + 5];\n  }\n\n\n\n//------------------------------------------------------------------------------\n// Hashing groups of 1/2/4/8 letters, perhaps with spaces or underscores\n//------------------------------------------------------------------------------\n\n  // Pick up 1..12 bytes and hash them via mask/shift/add. NO pre/post\n  // OVERSHOOTS up to 3 bytes\n  uint32 BiHashV25(const char* word_ptr, int bytecount);\n\n  // Pick up 1..12 bytes plus pre/post space and hash them via mask/shift/add\n  // UNDERSHOOTS 1 byte, OVERSHOOTS up to 3 bytes\n  uint32 QuadHashV25(const char* word_ptr, int bytecount);\n\n  // Pick up 1..12 bytes plus pre/post '_' and hash them via mask/shift/add\n  // OVERSHOOTS up to 3 bytes\n  uint32 QuadHashV25Underscore(const char* word_ptr, int bytecount);\n\n\n  // Pick up 1..24 bytes plus pre/post space and hash them via mask/shift/add\n  // UNDERSHOOTS 1 byte, OVERSHOOTS up to 3 bytes\n  // For runtime use of tables V3\n  uint64 OctaHash40(const char* word_ptr, int bytecount);\n\n  uint64 OctaHash40underscore(const char* word_ptr, int bytecount);\n\n\n  // From 32-bit gram FP, return hash table subscript and remaining key\n  inline void QuadFPJustHash(uint32 quadhash,\n                                  uint32 keymask,\n                                  int bucketcount,\n                                  uint32* subscr, uint32* hashkey) {\n    *subscr = (quadhash + (quadhash >> 12)) & (bucketcount - 1);\n    *hashkey = quadhash & keymask;\n  }\n\n  // Look up 32-bit gram FP in caller-passed table\n  // Typical size 256K entries (1.5MB)\n  // Two-byte hashkey\n  inline const uint32 QuadHashV3Lookup4(const cld::CLDTableSummary* gram_obj,\n                                        uint32 quadhash) {\n\n    uint32 subscr, hashkey;\n    const IndirectProbBucket4* quadtable = gram_obj->kCLDTable;\n    uint32 keymask = gram_obj->kCLDTableKeyMask;\n    int bucketcount = gram_obj->kCLDTableSize;\n    QuadFPJustHash(quadhash, keymask, bucketcount, &subscr, &hashkey);\n    const IndirectProbBucket4* bucket_ptr = &quadtable[subscr];\n    // Four-way associative, 4 compares\n    if (((hashkey ^ bucket_ptr->keyvalue[0]) & keymask) == 0) {\n      return bucket_ptr->keyvalue[0];\n    }\n    if (((hashkey ^ bucket_ptr->keyvalue[1]) & keymask) == 0) {\n      return bucket_ptr->keyvalue[1];\n    }\n    if (((hashkey ^ bucket_ptr->keyvalue[2]) & keymask) == 0) {\n      return bucket_ptr->keyvalue[2];\n    }\n    if (((hashkey ^ bucket_ptr->keyvalue[3]) & keymask) == 0) {\n      return bucket_ptr->keyvalue[3];\n    }\n    return 0;\n  }\n\n\n  // Map 40 bits to subscript, hashkey, expected 18-22 bit subscript (min 16)\n  //     wwwwwwww xxxxxxxx xxxxxxxx yyyyyyyy yyyyyyyy\n  //   + ........ ....wwww wwwwxxxx xxxxxxxx xxxxyyyy\n  //     00000000 00000000 00000011 11111111 11111111 (18-bit bucketcount-1)\n  //\n  // hashkey:\n  //              wwwwxxxx xxxxxxxx xxxx.... ........ (20-bit keymask)\n  // 12-bit shift in subscript mixes in ~4 letters x 4 bits each\n\n  // From 40-bit gram FP, return hash table subscript and remaining key\n  inline void OctaFPJustHash(uint64 longwordhash,\n                                    uint32 keymask,\n                                    int bucketcount,\n                                    uint32* subscr, uint32* hashkey) {\n    uint32 temp = (longwordhash + (longwordhash >> 12)) & (bucketcount - 1);\n    *subscr = temp;\n    temp = longwordhash >> 4;\n    *hashkey = temp & keymask;\n  }\n\n  // Look up 40-bit gram FP in caller-passed table\n  // Typical size 256K-4M entries (1-16MB)\n  // 24-12 bit hashkey packed with 8-20 bit indirect lang/probs\n  // keymask is 0xfffff000 for 20-bit hashkey and 12-bit indirect\n  inline const uint32 OctaHashV3Lookup4(const cld::CLDTableSummary* gram_obj,\n                                            uint64 longwordhash) {\n    uint32 subscr, hashkey;\n    const IndirectProbBucket4* octatable = gram_obj->kCLDTable;\n    uint32 keymask = gram_obj->kCLDTableKeyMask;\n    int bucketcount = gram_obj->kCLDTableSize;\n    OctaFPJustHash(longwordhash, keymask, bucketcount,\n                          &subscr, &hashkey);\n    const IndirectProbBucket4* bucket_ptr = &octatable[subscr];\n    // Four-way associative, 4 compares\n    if (((hashkey ^ bucket_ptr->keyvalue[0]) & keymask) == 0) {\n      return bucket_ptr->keyvalue[0];\n    }\n    if (((hashkey ^ bucket_ptr->keyvalue[1]) & keymask) == 0) {\n      return bucket_ptr->keyvalue[1];\n    }\n    if (((hashkey ^ bucket_ptr->keyvalue[2]) & keymask) == 0) {\n      return bucket_ptr->keyvalue[2];\n    }\n    if (((hashkey ^ bucket_ptr->keyvalue[3]) & keymask) == 0) {\n      return bucket_ptr->keyvalue[3];\n    }\n    return 0;\n  }\n\n\n\n//------------------------------------------------------------------------------\n// Scoring single groups of letters\n//------------------------------------------------------------------------------\n\n  // UNIGRAM score one => tote\n  // Input: 1-byte entry of subscript into unigram probs, plus\n  //  an accumulator tote.\n  // Output: running sums in tote updated\n  void ProcessProbV25UniTote(int propval, Tote* tote);\n\n  // BIGRAM, QUADGRAM, OCTAGRAM score one => tote\n  // Input: 4-byte entry of 3 language numbers and one probability subscript,\n  //  plus an accumulator tote. (language 0 means unused entry)\n  // Output: running sums in tote updated\n  void ProcessProbV25Tote(uint32 probs, Tote* tote);\n\n\n//------------------------------------------------------------------------------\n// Routines to accumulate probabilities\n//------------------------------------------------------------------------------\n\n  // Score up to n=gram_limit unigrams, returning number of bytes consumed\n  // Caller supplies table, such as compact_lang_det_generated_ctjkvz_b1_obj\n  int DoUniScoreV3(const UTF8PropObj* unigram_obj,\n                   const char* isrc, int srclen, int advance_by,\n                   int* tote_grams, int gram_limit, Tote* chunk_tote);\n\n\n  // Score all words in isrc, using languages that have bigrams (CJK)\n  // Caller supplies table, such as &kCjkBiTable_obj or &kGibberishTable_obj\n  // Return number of bigrams that hit in the hash table\n  int DoBigramScoreV3(const cld::CLDTableSummary* bigram_obj,\n                      const char* isrc, int srclen, Tote* chunk_tote);\n\n\n  // Score up to n=gram_limit quadgrams, returning number of bytes consumed\n  // Caller supplies table, such as &kQuadTable_obj or &kGibberishTable_obj\n  int DoQuadScoreV3(const cld::CLDTableSummary* quadgram_obj,\n                    const char* isrc, int srclen, int advance_by,\n                    int* tote_grams, int gram_limit, Tote* chunk_tote);\n\n  // Score all octagrams (words) in isrc, using languages that have quadgrams\n  // Caller supplies table, such as &kLongWord8Table_obj\n  // Return number of words that hit in the hash table\n  int DoOctaScoreV3(const cld::CLDTableSummary* octagram_obj,\n                    const char* isrc, int srclen, Tote* chunk_tote);\n\n//------------------------------------------------------------------------------\n// Reliability calculations, for single language and between languages\n//------------------------------------------------------------------------------\n\n  // Reliability = 0..100\n  static const int kMinReliable = 75;\n\n  // Calculate ratio of score per 1KB vs. expected score per 1KB\n  double GetNormalizedScore(Language lang, UnicodeLScript lscript,\n                          int bytes, int score);\n\n  // Calculate reliablity of len bytes of script lscript with chunk_tote\n  int GetReliability(int len, UnicodeLScript lscript, const Tote* chunk_tote);\n\n\n//------------------------------------------------------------------------------\n// Miscellaneous\n//------------------------------------------------------------------------------\n\n  // Make languages packed into uint32 values non-zero\n  // These routines later could remap so languages not in QuadHash tables are not\n  // represented, and so that any thrashing in accumulation is eliminated\n  uint8 inline PackLanguage(Language lang) {\n    return static_cast<uint8>(lang + 1);}\n\n  Language inline UnpackLanguage(int ilang) {\n    return static_cast<Language>(ilang - 1);}\n\n  // Useful single-byte tests\n  bool inline IsUTF8ContinueByte(char c) {\n    return static_cast<signed char>(c) < -64;}\n  bool inline IsUTF8HighByte(char c) {\n    return static_cast<signed char>(c) < 0;}\n\n\n  // Demote all languages except Top40 and plus_one\n  // Do this just before sorting\n  void DemoteNotTop40(Tote* chunk_tote, int packed_plus_one);\n\n}       // End namespace cld\n\n\n#endif  // ENCODINGS_COMPACT_LANG_DET_CLDUTIL_H_\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/#compact_lang_det_impl.h#",
    "content": "// Copyright (c) 2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef ENCODINGS_COMPACT_LANG_DET_COMPACT_LANG_DET_IMPL_H_\n#define ENCODINGS_COMPACT_LANG_DET_COMPACT_LANG_DET_IMPL_H_\n\n#include \"encodings/lang_enc.h\"\n#include \"encodings/compact_lang_det/win/cld_basictypes.h\"\n\n\nstatic const int kCLDFlagFinish = 1;\nstatic const int kCLDFlagSqueeze = 2;\nstatic const int kCLDFlagRepeats = 4;\nstatic const int kCLDFlagTop40 = 8;\nstatic const int kCLDFlagShort = 16;\nstatic const int kCLDFlagHint = 32;   // Experimental, undebugged\nstatic const int kCLDFlagUseWords = 64;\n\n/***\n\nFlag meanings:\n\nFlags are used in the context of a recursive call from Detect to itself,\ntrying to deal in a more restrictive way with input that was not reliably\nidentified in the top-level call.\n\nFinish -- Do not further recurse; return whatever result ensues, even if it is\n          unreliable. Typically set in any recursive call to take a second try\n          on unreliable text.\n\nSqueeze -- For each text run, do an inplace cheapsqueeze to remove chunks of\n          highly repetitive text and chunks of text with too many 1- and\n          2-letter words. This avoids scoring repetitive or useless non-text\n          crap in large files such bogus JPEGs within an HTML file.\n\nRepeats -- When scoring a text run, do a cheap prediction of each character\n          and do not score a unigram/quadgram if the last character of same is\n          correctly predicted. This is a slower, finer-grained form of\n          cheapsqueeze, typically used when the first pass got unreliable\n          results.\n\nTop40 -- Restrict the set of scored languages to the Google \"Top 40*\", which is\n          actually 38 languages. This gets rid of about 110 language that\n          represent about 0.7% of the web. Typically used when the first pass\n          got unreliable results.\n\nShort -- Use trigram (three letter) scoring instad of quadgrams. Restricted to\n          the top 40* languages, Latin and Cyrillic scripts only.\n          Not as precise as quadgrams, but it gives some plausible result on\n          1- or 2-word text in major languages.\n\nHint -- EXPERIMENTAL flag for compact_lang_det_test.cc to indicate a language\n          hint supplied in parameter plus_one.\n\nUseWords -- In additon to scoring quad/uni/nil-grams, score complete words\n\n\nTentative decision logic:\n\nIn the middle of first pass -- After 4KB of text, look at the front 256 bytes\n          of every full 4KB buffer. If it compresses very well (say 3:1) or has\n          lots of spaces (say 1 of every 4 bytes), assume that the input is\n          large and contains lots of bogus non-text. Recurse, passing the\n          Squeeze flag to strip out chunks of this non-text.\n\nAt the end of the first pass --\n          If the top language is reliable and >= 70% of the document, return.\n          Else if the top language is reliable and top+2nd >= say 94%, return.\n          Else, either the top language is not reliable or there is a lot of\n          other crap.\n***/\n\n\nnamespace CompactLangDet {\n  struct DetectionTables;\n}  // namespace CompactLangDet\n\n\nnamespace CompactLangDetImpl {\n  // Scan interchange-valid UTF-8 bytes and detect most likely language,\n  // or set of languages.\n  //\n  // Design goals:\n  //   Skip over big stretches of HTML tags\n  //   Able to return ranges of different languages\n  //   Relatively small tables and relatively fast processing\n  //   Thread safe\n  //\n\n  typedef struct {\n    int perscript_count;\n    const Language* perscript_lang;\n  } PerScriptPair;\n\n  typedef struct {\n    // Constants for hashing 4-7 byte quadgram to 32 bits\n    const int kQuadHashB4Shift;\n    const int kQuadHashB4bShift;\n    const int kQuadHashB5Shift;\n    const int kQuadHashB5bShift;\n    // Constants for hashing 32 bits to kQuadKeyTable subscript/key\n    const int kHashvalToSubShift;\n    const uint32 kHashvalToSubMask;\n    const int kHashvalToKeyShift;\n    const uint32 kHashvalToKeyMask;\n    const int kHashvalAssociativity;\n    // Pointers to the actual tables\n    const PerScriptPair* kPerScriptPair;\n    const uint16* kQuadKeyTable;\n    const uint32* kQuadValueTable;\n  } LangDetObj;\n\n  // For HTML documents, tags are skipped, along with <script> ... </script>\n  // and <style> ... </style> sequences, and entities are expanded.\n  //\n  // We distinguish between bytes of the raw input buffer and bytes of non-tag\n  // text letters. Since tags can be over 50% of the bytes of an HTML Page,\n  // and are nearly all seven-bit ASCII English, we prefer to distinguish\n  // language mixture fractions based on just the non-tag text.\n  //\n  // Inputs: text and text_length\n  //  is_plain_text if true says to NOT parse/skip HTML tags nor entities\n  // Outputs:\n  //  language3 is an array of the top 3 languages or UNKNOWN_LANGUAGE\n  //  percent3 is an array of the text percentages 0..100 of the top 3 languages\n  //  normalized_score3 is an array of internal scores, normalized to the\n  //    average score for each language over a body of training text. A\n  //    normalized score significantly away from 1.0 indicates very skewed text\n  //    or gibberish.\n  //\n  //  text_bytes is the amount of non-tag/letters-only text found\n  //  is_reliable set true if the returned Language is at least 2**30 times more\n  //  probable then the second-best Language\n  //\n  // Return value: the most likely Language for the majority of the input text\n  //  Length 0 input and text with no reliable letter sequences returns\n  //  UNKNOWN_LANGUAGE\n  //\n  // Subsetting: For fast detection over large documents, these routines will\n  // scan non-tag text of the initial part of a document, then will\n  // skip 4-16 bytes and subsample text in the rest of the document, up to a\n  // fixed limit (currently 160KB of non-tag letters).\n  //\n\n  Language DetectLanguageSummaryV25(\n                        const CompactLangDet::DetectionTables* tables,\n                        const char* buffer,\n                        int buffer_length,\n                        bool is_plain_text,\n                        const char* tld_hint,       // \"id\" boosts Indonesian\n                        int encoding_hint,          // SJS boosts Japanese\n                        Language language_hint,     // ITALIAN boosts it\n                        bool allow_extended_lang,\n                        int flags,\n                        Language plus_one,\n                        Language* language3,\n                        int* percent3,\n                        double* normalized_score3,\n                        int* text_bytes,\n                        bool* is_reliable);\n\n  // For unit testing:\n  // Remove portions of text that have a high density of spaces, or that are\n  // overly repetitive, squeezing the remaining text in-place to the front\n  // of the input buffer.\n  // Return the new, possibly-shorter length\n  int CheapSqueezeInplace(char* isrc, int srclen, int ichunksize);\n};      // End namespace CompactLangDetImpl\n\n#endif  // ENCODINGS_COMPACT_LANG_DET_COMPACT_LANG_DET_IMPL_H_\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/#ext_lang_enc.cc#",
    "content": "// Copyright (c) 2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n// This file extends lang_enc.cc with additional languages and extended routines\n// It is current with Unicode 5.1 (beta Jan 2008)\n//\n\n#include <stdlib.h>\n#include <stdio.h>\n#include <string.h>\n\n#include \"encodings/compact_lang_det/ext_lang_enc.h\"\n#include \"encodings/compact_lang_det/win/cld_macros.h\"\n#include \"encodings/compact_lang_det/win/cld_strtoint.h\"\n\n// Language names above NUM_LANGUAGES\n// These are also the C enum declared names\nstatic const char* const kExtLanguageName[] = {\n\"X_BORK_BORK_BORK\", \"X_PIG_LATIN\", \"X_HACKER\", \"X_KLINGON\", \"X_ELMER_FUDD\",\n\n// Pseudo-languages for Unicode scripts that express a single language\n\"X_OGHAM\", \"X_RUNIC\", \"X_YI\", \"X_OLD_ITALIC\", \"X_GOTHIC\",\n\"X_DESERET\", \"X_HANUNOO\", \"X_BUHID\", \"X_TAGBANWA\", \"X_TAI_LE\",\n\"X_LINEAR_B\", \"X_UGARITIC\", \"X_SHAVIAN\", \"X_OSMANYA\", \"X_CYPRIOT\",\n\"X_BUGINESE\", \"X_COPTIC\", \"X_NEW_TAI_LUE\", \"X_GLAGOLITIC\", \"X_TIFINAGH\",\n\"X_SYLOTI_NAGRI\", \"X_OLD_PERSIAN\", \"X_KHAROSHTHI\", \"X_BALINESE\", \"X_CUNEIFORM\",\n\"X_PHOENICIAN\", \"X_PHAGS_PA\", \"X_NKO\",\n\n// Unicode 5.1\n\"X_SUDANESE\", \"X_LEPCHA\", \"X_OL_CHIKI\", \"X_VAI\", \"X_SAURASHTRA\",\n\"X_KAYAH_LI\", \"X_REJANG\", \"X_LYCIAN\", \"X_CARIAN\", \"X_LYDIAN\",\n\"X_CHAM\",\n};\n\n\n// These are the C enum declared names, for programs creating C code\nstatic const char* const kExtLangDeclaredName[] = {\n  \"ENGLISH\",      /* 0 */\n  \"DANISH\",       /* 1 */\n  \"DUTCH\",        /* 2 */\n  \"FINNISH\",      /* 3 */\n  \"FRENCH\",       /* 4 */\n  \"GERMAN\",       /* 5 */\n  \"HEBREW\",       /* 6 */\n  \"ITALIAN\",      /* 7 */\n  \"JAPANESE\",     /* 8 */\n  \"KOREAN\",       /* 9 */\n  \"NORWEGIAN\",    /* 10 */\n  \"POLISH\",       /* 11 */\n  \"PORTUGUESE\",   /* 12 */\n  \"RUSSIAN\",      /* 13 */\n  \"SPANISH\",      /* 14 */\n  \"SWEDISH\",      /* 15 */\n  \"CHINESE\",      /* 16 */\n  \"CZECH\",        /* 17 */\n  \"GREEK\",        /* 18 */\n  \"ICELANDIC\",    /* 19 */\n  \"LATVIAN\",      /* 20 */\n  \"LITHUANIAN\",   /* 21 */\n  \"ROMANIAN\",     /* 22 */\n  \"HUNGARIAN\",    /* 23 */\n  \"ESTONIAN\",     /* 24 */\n  \"TG_UNKNOWN_LANGUAGE\",  /* 25 */\n  \"UNKNOWN_LANGUAGE\",     /* 26 */\n  \"BULGARIAN\",    /* 27 */\n  \"CROATIAN\",     /* 28 */\n  \"SERBIAN\",      /* 29 */\n  \"IRISH\",        /* 30 */\n  \"GALICIAN\",     /* 31 */\n  \"TAGALOG\",      /* 32 */\n  \"TURKISH\",      /* 33 */\n  \"UKRAINIAN\",    /* 34 */\n  \"HINDI\",        /* 35 */\n  \"MACEDONIAN\",   /* 36 */\n  \"BENGALI\",      /* 37 */\n  \"INDONESIAN\",   /* 38 */\n  \"LATIN\",        /* 39 */\n  \"MALAY\",        /* 40 */\n  \"MALAYALAM\",    /* 41 */\n  \"WELSH\",        /* 42 */\n  \"NEPALI\",       /* 43 */\n  \"TELUGU\",       /* 44 */\n  \"ALBANIAN\",     /* 45 */\n  \"TAMIL\",        /* 46 */\n  \"BELARUSIAN\",   /* 47 */\n  \"JAVANESE\",     /* 48 */\n  \"OCCITAN\",      /* 49 */\n  \"URDU\",         /* 50 */\n  \"BIHARI\",       /* 51 */\n  \"GUJARATI\",     /* 52 */\n  \"THAI\",         /* 53 */\n  \"ARABIC\",       /* 54 */\n  \"CATALAN\",      /* 55 */\n  \"ESPERANTO\",    /* 56 */\n  \"BASQUE\",       /* 57 */\n  \"INTERLINGUA\",  /* 58 */\n  \"KANNADA\",      /* 59 */\n  \"PUNJABI\",      /* 60 */\n  \"SCOTS_GAELIC\", /* 61 */\n  \"SWAHILI\",      /* 62 */\n  \"SLOVENIAN\",    /* 63 */\n  \"MARATHI\",      /* 64 */\n  \"MALTESE\",      /* 65 */\n  \"VIETNAMESE\",   /* 66 */\n  \"FRISIAN\",      /* 67 */\n  \"SLOVAK\",       /* 68 */\n  \"CHINESE_T\",    /* 69 */\n  \"FAROESE\",      /* 70 */\n  \"SUNDANESE\",    /* 71 */\n  \"UZBEK\",        /* 72 */\n  \"AMHARIC\",      /* 73 */\n  \"AZERBAIJANI\",  /* 74 */\n  \"GEORGIAN\",     /* 75 */\n  \"TIGRINYA\",     /* 76 */\n  \"PERSIAN\",      /* 77 */\n  \"BOSNIAN\",      /* 78 */\n  \"SINHALESE\",    /* 79 */\n  \"NORWEGIAN_N\",  /* 80 */\n  \"PORTUGUESE_P\", /* 81 */\n  \"PORTUGUESE_B\", /* 82 */\n  \"XHOSA\",        /* 83 */\n  \"ZULU\",         /* 84 */\n  \"GUARANI\",      /* 85 */\n  \"SESOTHO\",      /* 86 */\n  \"TURKMEN\",      /* 87 */\n  \"KYRGYZ\",       /* 88 */\n  \"BRETON\",       /* 89 */\n  \"TWI\",          /* 90 */\n  \"YIDDISH\",      /* 91 */\n  \"SERBO_CROATIAN\",       /* 92 */\n  \"SOMALI\",       /* 93 */\n  \"UIGHUR\",       /* 94 */\n  \"KURDISH\",      /* 95 */\n  \"MONGOLIAN\",    /* 96 */\n  \"ARMENIAN\",     /* 97 */\n  \"LAOTHIAN\",     /* 98 */\n  \"SINDHI\",       /* 99 */\n  \"RHAETO_ROMANCE\",  /* 100 */\n  \"AFRIKAANS\",    /* 101 */\n  \"LUXEMBOURGISH\", /* 102 */\n  \"BURMESE\",      /* 103 */\n  \"KHMER\",        /* 104 */\n  \"TIBETAN\",      /* 105 */\n  \"DHIVEHI\",      /* 106 */       // sometimes spelled Divehi; lang of Maldives\n  \"CHEROKEE\",     /* 107 */\n  \"SYRIAC\",       /* 108 */\n  \"LIMBU\",        /* 109 */\n  \"ORIYA\",        /* 110 */\n  \"ASSAMESE\",     /* 111 */\n  \"CORSICAN\",     /* 112 */\n  \"INTERLINGUE\",  /* 113 */\n  \"KAZAKH\",       /* 114 */\n  \"LINGALA\",      /* 115 */\n  \"MOLDAVIAN\",    /* 116 */\n  \"PASHTO\",       /* 117 */\n  \"QUECHUA\",      /* 118 */\n  \"SHONA\",        /* 119 */\n  \"TAJIK\",        /* 120 */\n  \"TATAR\",        /* 121 */\n  \"TONGA\",        /* 122 */\n  \"YORUBA\",       /* 123 */\n  \"CREOLES_AND_PIDGINS_ENGLISH_BASED\",      /* 124 */\n  \"CREOLES_AND_PIDGINS_FRENCH_BASED\",       /* 125 */\n  \"CREOLES_AND_PIDGINS_PORTUGUESE_BASED\",   /* 126 */\n  \"CREOLES_AND_PIDGINS_OTHER\",              /* 127 */\n  \"MAORI\",        /* 128 */\n  \"WOLOF\",        /* 129 */\n  \"ABKHAZIAN\",    /* 130 */\n  \"AFAR\",         /* 131 */\n  \"AYMARA\",       /* 132 */\n  \"BASHKIR\",      /* 133 */\n  \"BISLAMA\",      /* 134 */\n  \"DZONGKHA\",     /* 135 */\n  \"FIJIAN\",       /* 136 */\n  \"GREENLANDIC\",  /* 137 */\n  \"HAUSA\",        /* 138 */\n  \"HAITIAN_CREOLE\",  /* 139 */\n  \"INUPIAK\",      /* 140 */\n  \"INUKTITUT\",    /* 141 */\n  \"KASHMIRI\",     /* 142 */\n  \"KINYARWANDA\",  /* 143 */\n  \"MALAGASY\",     /* 144 */\n  \"NAURU\",        /* 145 */\n  \"OROMO\",        /* 146 */\n  \"RUNDI\",        /* 147 */\n  \"SAMOAN\",       /* 148 */\n  \"SANGO\",        /* 149 */\n  \"SANSKRIT\",     /* 150 */\n  \"SISWANT\",      /* 151 */\n  \"TSONGA\",       /* 152 */\n  \"TSWANA\",       /* 153 */\n  \"VOLAPUK\",      /* 154 */\n  \"ZHUANG\",       /* 155 */\n  \"KHASI\",        /* 156 */\n  \"SCOTS\",        /* 157 */\n  \"GANDA\",        /* 158 */\n  \"MANX\",         /* 159 */\n  \"MONTENEGRIN\",  /* 160 */\n  // Add new language declared names just before here\n};\n\nCOMPILE_ASSERT(arraysize(kExtLangDeclaredName) == NUM_LANGUAGES,\n       kExtLangDeclaredName_has_incorrect_length);\n\n\n// Language codes above NUM_LANGUAGES\n// I made all these up, except Klingon from ISO-639-2 (dsites)\n// NOTE: zza is a standard name\nstatic const char* const kExtLanguageCode[] = {\n  // \"X_BORK_BORK_BORK\", \"X_PIG_LATIN\", \"X_HACKER\", \"X_KLINGON\", \"X_ELMER_FUDD\",\n  // All Latin script\n  \"zzb\", \"zzp\", \"zzh\", \"tlh\", \"zze\",\n\n  // Pseudo-languages for Unicode scripts that express a single language\n  \"xx-Ogam\", \"xx-Runr\", \"xx-Yiii\", \"xx-Ital\", \"xx-Goth\",\n  \"xx-Dsrt\", \"xx-Hano\", \"xx-Buhd\", \"xx-Tagb\", \"xx-Tale\",\n  \"xx-Linb\", \"xx-Ugar\", \"xx-Shaw\", \"xx-Osma\", \"xx-Cprt\",\n  \"xx-Bugi\", \"xx-Copt\", \"xx-Talu\", \"xx-Glag\", \"xx-Tfng\",\n  \"xx-Sylo\", \"xx-Xpeo\", \"xx-Khar\", \"xx-Bali\", \"xx-Xsux\",\n  \"xx-Phnx\", \"xx-Phag\", \"xx-Nkoo\",\n\n  // Unicode 5.1\n  \"xx-Sund\", \"xx-Lepc\", \"xx-Olck\", \"xx-Vaii\", \"xx-Saur\",\n  \"xx-Kali\", \"xx-Rjng\", \"xx-Lyci\", \"xx-Cari\", \"xx-Lydi\",\n  \"xx-Cham\",\n};\n\n\n// Given the Language, returns its string name used as the output by\n// the lang/enc identifier, e.g. \"Korean\"\n// \"invalid_language\" if the input is invalid.\n// TG_UNKNOWN_LANGUAGE is used as a placeholder for the \"ignore me\" language,\n// used to subtract out HTML, link farms, DNA strings, and alittle English porn\nconst char* ExtLanguageName(const Language lang) {\n  if (lang < 0) {\n    // No-text-at-all result from a Tote\n    return \"\";\n  }\n  // CompactLanguageDetect extension\n  if (lang == TG_UNKNOWN_LANGUAGE) {\n    return \"Ignore\";\n  }\n  if ((0 <= lang) && (lang < NUM_LANGUAGES)) {\n    return LanguageName(lang);\n  }\n  if ((EXT_LANGUAGE_BASE <= lang) && (lang < EXT_NUM_LANGUAGES)) {\n    return kExtLanguageName[lang - EXT_LANGUAGE_BASE];\n  }\n  return invalid_language_name();\n}\n\n\n// Given the Language, returns its Language enum spelling, for use by\n// programs that create C declarations, e.g. \"KOREAN\"\n// \"UNKNOWN_LANGUAGE\" if the input is invalid.\nconst char* ExtLanguageDeclaredName(const Language lang) {\n  if ((0 <= lang) && (lang < NUM_LANGUAGES)) {\n    return kExtLangDeclaredName[lang];\n  }\n  if ((EXT_LANGUAGE_BASE <= lang) && (lang < EXT_NUM_LANGUAGES)) {\n    return kExtLanguageName[lang - EXT_LANGUAGE_BASE];\n  }\n  return \"UNKNOWN_LANGUAGE\";\n}\n\n// Given the Language, return the language code, e.g. \"ko\"\nconst char* ExtLanguageCode(const Language lang) {\n  // Hack for ignore/porn pseudo-language\n  if (lang == TG_UNKNOWN_LANGUAGE) {\n    return \"xxx\";\n  }\n  if ((0 <= lang) && (lang < NUM_LANGUAGES)) {\n    return LanguageCode(lang);\n  }\n  if ((EXT_LANGUAGE_BASE <= lang) && (lang < EXT_NUM_LANGUAGES)) {\n    return kExtLanguageCode[lang - EXT_LANGUAGE_BASE];\n  }\n  return \"??\";\n}\n\n\n// Convert \"en-Latn-GB\" to ENGLISH\n// Normalize to PORTUGUESE, not PORTUGUESE_B nor PORTUGUESE_P\n// Consider for later: NORWEGIAN, NORWEGIAN_N\n// Consider for later: SCOTS, SCOTS_GAELIC\n// Consider for later: SERBO_CROATIAN, SERBIAN, CROATIAN, BOSNIAN\n//\nLanguage GetLanguageFromNumberOrName(const char* src) {\n  if (strspn(src, \"0123456789\") == strlen(src)) {\n    // All digits\n    return static_cast<Language>(strto32(src, NULL, 10));\n  }\n\n  Language retlang = UNKNOWN_LANGUAGE;\n  size_t len = strlen(src);\n\n  if (true /*FLAGS_mergepairs*/) {\n    // Merge sets of langauges pt-xx en-xx fr-xx, NOT bs/hr/sr\n    if (memcmp(src, \"pt-\", 3) == 0) {return PORTUGUESE;}\n    if (memcmp(src, \"en-\", 3) == 0) {return ENGLISH;}\n    if (memcmp(src, \"fr-\", 3) == 0) {return FRENCH;}\n    // Use NormalizeLanguage instead\n    if (memcmp(src, \"bs-\", 3) == 0) {return CROATIAN;}\n    if (memcmp(src, \"hr-\", 3) == 0) {return CROATIAN;}\n    if (memcmp(src, \"sr-Latn\", 7) == 0) {return CROATIAN;}\n    if (memcmp(src, \"sh-Latn\", 7) == 0) {return CROATIAN;}\n    if (memcmp(src, \"sr-Cyrl\", 7) == 0) {return SERBIAN;}\n    if (memcmp(src, \"sh-Cyrl\", 7) == 0) {return SERBIAN;}\n  }\n\n  // Extensions\n  if (len >= 3) {\n    // Standin for ignore/porn \"language\"\n    if (memcmp(src, \"xxx\", 3) == 0) {return TG_UNKNOWN_LANGUAGE;}\n\n    if (memcmp(src, \"zzb\", 3) == 0) {return X_BORK_BORK_BORK;}\n    if (memcmp(src, \"zzp\", 3) == 0) {return X_PIG_LATIN;}\n    if (memcmp(src, \"zzh\", 3) == 0) {return X_HACKER;}\n    if (memcmp(src, \"tlh\", 3) == 0) {return X_KLINGON;}\n    if (memcmp(src, \"zze\", 3) == 0) {return X_ELMER_FUDD;}\n  }\n\n  // We have a name like en-Latn-GB or pt-BR\n  // First, get rid of some special cases\n  if (len <= 3) {\n    LanguageFromCode(src, &retlang);\n  } else if (len == 7) {\n    // More Extensions\n    if (memcmp(src, \"xx-\", 3) == 0) {\n      if (memcmp(src, \"xx-Ogam\", 7) == 0) {return X_OGHAM;}\n      if (memcmp(src, \"xx-Runr\", 7) == 0) {return X_RUNIC;}\n      if (memcmp(src, \"xx-Yiii\", 7) == 0) {return X_YI;}\n      if (memcmp(src, \"xx-Ital\", 7) == 0) {return X_OLD_ITALIC;}\n      if (memcmp(src, \"xx-Goth\", 7) == 0) {return X_GOTHIC;}\n      if (memcmp(src, \"xx-Dsrt\", 7) == 0) {return X_DESERET;}\n      if (memcmp(src, \"xx-Hano\", 7) == 0) {return X_HANUNOO;}\n      if (memcmp(src, \"xx-Buhd\", 7) == 0) {return X_BUHID;}\n      if (memcmp(src, \"xx-Tagb\", 7) == 0) {return X_TAGBANWA;}\n      if (memcmp(src, \"xx-Tale\", 7) == 0) {return X_TAI_LE;}\n      if (memcmp(src, \"xx-Linb\", 7) == 0) {return X_LINEAR_B;}\n      if (memcmp(src, \"xx-Ugar\", 7) == 0) {return X_UGARITIC;}\n      if (memcmp(src, \"xx-Shaw\", 7) == 0) {return X_SHAVIAN;}\n      if (memcmp(src, \"xx-Osma\", 7) == 0) {return X_OSMANYA;}\n      if (memcmp(src, \"xx-Cprt\", 7) == 0) {return X_CYPRIOT;}\n      if (memcmp(src, \"xx-Bugi\", 7) == 0) {return X_BUGINESE;}\n      if (memcmp(src, \"xx-Copt\", 7) == 0) {return X_COPTIC;}\n      if (memcmp(src, \"xx-Talu\", 7) == 0) {return X_NEW_TAI_LUE;}\n      if (memcmp(src, \"xx-Glag\", 7) == 0) {return X_GLAGOLITIC;}\n      if (memcmp(src, \"xx-Tfng\", 7) == 0) {return X_TIFINAGH;}\n      if (memcmp(src, \"xx-Sylo\", 7) == 0) {return X_SYLOTI_NAGRI;}\n      if (memcmp(src, \"xx-Xpeo\", 7) == 0) {return X_OLD_PERSIAN;}\n      if (memcmp(src, \"xx-Khar\", 7) == 0) {return X_KHAROSHTHI;}\n      if (memcmp(src, \"xx-Bali\", 7) == 0) {return X_BALINESE;}\n      if (memcmp(src, \"xx-Xsux\", 7) == 0) {return X_CUNEIFORM;}\n      if (memcmp(src, \"xx-Phnx\", 7) == 0) {return X_PHOENICIAN;}\n      if (memcmp(src, \"xx-Phag\", 7) == 0) {return X_PHAGS_PA;}\n      if (memcmp(src, \"xx-Nkoo\", 7) == 0) {return X_NKO;}\n\n      // Unicode 5.1\n      if (memcmp(src, \"xx-Sund\", 7) == 0) {return X_SUDANESE;}\n      if (memcmp(src, \"xx-Lepc\", 7) == 0) {return X_LEPCHA;}\n      if (memcmp(src, \"xx-Olck\", 7) == 0) {return X_OL_CHIKI;}\n      if (memcmp(src, \"xx-Vaii\", 7) == 0) {return X_VAI;}\n      if (memcmp(src, \"xx-Saur\", 7) == 0) {return X_SAURASHTRA;}\n      if (memcmp(src, \"xx-Kali\", 7) == 0) {return X_KAYAH_LI;}\n      if (memcmp(src, \"xx-Rjng\", 7) == 0) {return X_REJANG;}\n      if (memcmp(src, \"xx-Lyci\", 7) == 0) {return X_LYCIAN;}\n      if (memcmp(src, \"xx-Cari\", 7) == 0) {return X_CARIAN;}\n      if (memcmp(src, \"xx-Lydi\", 7) == 0) {return X_LYDIAN;}\n      if (memcmp(src, \"xx-Cham\", 7) == 0) {return X_CHAM;}\n    }\n  }\n  // Some other weird ones\n  // Could be Latn or Limb; all our current training data is Latn\n  if (strcmp(src, \"sit-NP\") == 0) {return LIMBU;}\n  if (strcmp(src, \"un-Latn\") == 0) {return UNKNOWN_LANGUAGE;}\n\n  // Multi-country langauges\n  if (memcmp(src, \"zh\", 2) == 0) {\n    if (memcmp(&src[len - 2], \"TW\", 2) == 0) {return CHINESE_T;}\n    if (memcmp(&src[len - 2], \"HK\", 2) == 0) {return CHINESE_T;}\n    return CHINESE;\n  }\n  if (memcmp(src, \"pt\", 2) == 0) {\n    if (memcmp(&src[len - 2], \"BR\", 2) == 0) {return PORTUGUESE;}\n    return PORTUGUESE;\n  }\n  if (memcmp(src, \"fr\", 2) == 0) {\n    if (memcmp(&src[len -2], \"CA\", 2) == 0) {return FRENCH;}\n    return FRENCH;\n  }\n\n  // None of the special cases matched\n  if (src[2] == '-') {\n    char temp[4];\n    memcpy(temp, src, 4);\n    temp[2] = '\\0';\n    LanguageFromCode(temp, &retlang);\n  }\n  if (src[3] == '-') {\n    char temp[4];\n    memcpy(temp, src, 4);\n    temp[3] = '\\0';\n    LanguageFromCode(temp, &retlang);\n  }\n  if (retlang != UNKNOWN_LANGUAGE) {\n    return retlang;\n  }\n\n  return retlang;\n}\n\ntypedef struct {\n  const char* name;\n  UnicodeLScript lscript;\n} NameScriptPair;\n\n// In alphabetic order for binary search\nstatic const NameScriptPair kNameScriptPair[] = {\n  // Unicode 5.1 additional scripts\n  {\"Arab\", ULScript_Arabic},\n  {\"Armn\", ULScript_Armenian},\n  {\"Bali\", ULScript_Balinese},\n  {\"Beng\", ULScript_Bengali},\n  {\"Bugi\", ULScript_Buginese},\n  {\"Buhd\", ULScript_Buhid},\n  {\"Cans\", ULScript_Canadian_Aboriginal},\n  {\"Cari\", ULScript_Carian},      // Unicode 5.1\n  {\"Cham\", ULScript_Cham},        // Unicode 5.1\n  {\"Cher\", ULScript_Cherokee},\n  {\"Copt\", ULScript_Coptic},\n  {\"Cprt\", ULScript_Cypriot},\n  {\"Cyrl\", ULScript_Cyrillic},\n  {\"Deva\", ULScript_Devanagari},\n  {\"Dsrt\", ULScript_Deseret},\n  {\"Ethi\", ULScript_Ethiopic},\n  {\"Geor\", ULScript_Georgian},\n  {\"Glag\", ULScript_Glagolitic},\n  {\"Goth\", ULScript_Gothic},\n  {\"Grek\", ULScript_Greek},\n  {\"Gujr\", ULScript_Gujarati},\n  {\"Guru\", ULScript_Gurmukhi},\n  {\"Hani\", ULScript_HanCJK},\n  {\"Hano\", ULScript_Hanunoo},\n  {\"Hebr\", ULScript_Hebrew},\n  {\"Ital\", ULScript_Old_Italic},\n  {\"Kali\", ULScript_Kayah_Li},    // Unicode 5.1\n  {\"Khar\", ULScript_Kharoshthi},\n  {\"Khmr\", ULScript_Khmer},\n  {\"Knda\", ULScript_Kannada},\n  {\"Laoo\", ULScript_Lao},\n  {\"Latn\", ULScript_Latin},\n  {\"Lepc\", ULScript_Lepcha},      // Unicode 5.1\n  {\"Limb\", ULScript_Limbu},\n  {\"Linb\", ULScript_Linear_B},\n  {\"Lyci\", ULScript_Lycian},      // Unicode 5.1\n  {\"Lydi\", ULScript_Lydian},      // Unicode 5.1\n  {\"Mlym\", ULScript_Malayalam},\n  {\"Mong\", ULScript_Mongolian},\n  {\"Mymr\", ULScript_Myanmar},\n  {\"Nkoo\", ULScript_Nko},\n  {\"Ogam\", ULScript_Ogham},\n  {\"Olck\", ULScript_Ol_Chiki},    // Unicode 5.1\n  {\"Orya\", ULScript_Oriya},\n  {\"Osma\", ULScript_Osmanya},\n  {\"Phag\", ULScript_Phags_Pa},\n  {\"Phnx\", ULScript_Phoenician},\n  {\"Rjng\", ULScript_Rejang},      // Unicode 5.1\n  {\"Runr\", ULScript_Runic},\n  {\"Saur\", ULScript_Saurashtra},  // Unicode 5.1\n  {\"Shaw\", ULScript_Shavian},\n  {\"Sinh\", ULScript_Sinhala},\n  {\"Sund\", ULScript_Sundanese},   // Unicode 5.1\n  {\"Sylo\", ULScript_Syloti_Nagri},\n  {\"Syrc\", ULScript_Syriac},\n  {\"Tagb\", ULScript_Tagbanwa},\n  {\"Tale\", ULScript_Tai_Le},\n  {\"Talu\", ULScript_New_Tai_Lue},\n  {\"Taml\", ULScript_Tamil},\n  {\"Telu\", ULScript_Telugu},\n  {\"Tfng\", ULScript_Tifinagh},\n  {\"Tglg\", ULScript_Tagalog},\n  {\"Thaa\", ULScript_Thaana},\n  {\"Thai\", ULScript_Thai},\n  {\"Tibt\", ULScript_Tibetan},\n  {\"Ugar\", ULScript_Ugaritic},\n  {\"Vaii\", ULScript_Vai},         // Unicode 5.1 // NOTE: apparently 'Vai '\n  {\"Xpeo\", ULScript_Old_Persian},\n  {\"Xsux\", ULScript_Cuneiform},\n  {\"Yiii\", ULScript_Yi},\n  {\"Zyyy\", ULScript_Common},\n  {\"Zzzz\", ULScript_Inherited},\n};\n\n// Convert \"en-Latn-GB\" to ULScript_Latin\nUnicodeLScript GetLScriptFromNumberOrName(const char* src) {\n  if (strspn(src, \"0123456789\") == strlen(src)) {\n    // All digits\n    return static_cast<UnicodeLScript>(strto32(src, NULL, 10));\n  }\n\n  if (strcmp(src, \"zh-TW\") == 0) {return ULScript_HanCJK;}\n  if (strcmp(src, \"zh-CN\") == 0) {return ULScript_HanCJK;}\n  if (strcmp(src, \"pt-BR\") == 0) {return ULScript_Latin;}\n  if (strcmp(src, \"pt-PT\") == 0) {return ULScript_Latin;}\n  // Could be Latn or Limb; all our current training data is Latn\n  if (strcmp(src, \"sit-NP\") == 0) {return ULScript_Latin;}\n\n  // Isolate just the script field\n  char temp[5];\n  const char* src2 = strchr(src, '-');\n  if (src2 == NULL) {return ULScript_Latin;}\n  src2 += 1;      // over the -\n  memcpy(temp, src2, 4);\n  temp[4] = '\\0';\n\n  int lo = 0;\n  int hi = ULScript_NUM_SCRIPTS;\n  while (lo < hi) {\n    int mid = (lo + hi) >> 1;\n    if (strcmp(temp, kNameScriptPair[mid].name) < 0) {\n      hi = mid;\n    } else if (strcmp(temp, kNameScriptPair[mid].name) > 0) {\n      lo = mid + 1;\n    } else {\n      return kNameScriptPair[mid].lscript;\n    }\n  }\n  return ULScript_Latin;\n}\n\n\n// Merge together some languages, such as bo/hr/sr\n// Croatian Latin and Serbian Cyrillic now.\nLanguage NormalizeLanguage(Language lang) {\n  if (lang == BOSNIAN) {return CROATIAN;}\n  if (lang == SERBO_CROATIAN) {return SERBIAN;}\n\n  if (lang == PORTUGUESE_P) {return PORTUGUESE;}\n  if (lang == PORTUGUESE_B) {return PORTUGUESE;}\n\n  return lang;\n}\n\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/#ext_lang_enc.h#",
    "content": "// Copyright (c) 2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n//\n// This file extends lang_enc.h with additional languages and extended routines.\n// It is current with Unicode 5.1 (March 2008)\n//\n\n#ifndef ENCODINGS_COMPACT_LANG_DET_EXT_LANG_ENC_H__\n#define ENCODINGS_COMPACT_LANG_DET_EXT_LANG_ENC_H__\n\n#include \"languages/public/languages.h\"\n#include \"encodings/compact_lang_det/letterscript_enum.h\"\n\n\n// Leave a small gap after the base languages, so adding one or two is easy.\n// Just reduce the gap here (currently 5 entries)\n\n// Montengrin added, so reducing this from 5 to 4. dsites 2008.10.06\n#define EXT_LANGUAGE_BASE (NUM_LANGUAGES + 4)\n\n// Google UI languages\n#define X_BORK_BORK_BORK (Language)(EXT_LANGUAGE_BASE+0)\n#define X_PIG_LATIN (Language)(EXT_LANGUAGE_BASE+1)\n#define X_HACKER (Language)(EXT_LANGUAGE_BASE+2)\n#define X_KLINGON (Language)(EXT_LANGUAGE_BASE+3)\n#define X_ELMER_FUDD (Language)(EXT_LANGUAGE_BASE+4)\n\n// Pseudo-languages for Unicode scripts that express a single language\n#define X_OGHAM (Language)(EXT_LANGUAGE_BASE+5)\n#define X_RUNIC (Language)(EXT_LANGUAGE_BASE+6)\n#define X_YI (Language)(EXT_LANGUAGE_BASE+7)\n#define X_OLD_ITALIC (Language)(EXT_LANGUAGE_BASE+8)\n#define X_GOTHIC (Language)(EXT_LANGUAGE_BASE+9)\n#define X_DESERET (Language)(EXT_LANGUAGE_BASE+10)\n#define X_HANUNOO (Language)(EXT_LANGUAGE_BASE+11)\n#define X_BUHID (Language)(EXT_LANGUAGE_BASE+12)\n#define X_TAGBANWA (Language)(EXT_LANGUAGE_BASE+13)\n#define X_TAI_LE (Language)(EXT_LANGUAGE_BASE+14)\n#define X_LINEAR_B (Language)(EXT_LANGUAGE_BASE+15)\n#define X_UGARITIC (Language)(EXT_LANGUAGE_BASE+16)\n#define X_SHAVIAN (Language)(EXT_LANGUAGE_BASE+17)\n#define X_OSMANYA (Language)(EXT_LANGUAGE_BASE+18)\n#define X_CYPRIOT (Language)(EXT_LANGUAGE_BASE+19)\n#define X_BUGINESE (Language)(EXT_LANGUAGE_BASE+20)\n#define X_COPTIC (Language)(EXT_LANGUAGE_BASE+21)\n#define X_NEW_TAI_LUE (Language)(EXT_LANGUAGE_BASE+22)\n#define X_GLAGOLITIC (Language)(EXT_LANGUAGE_BASE+23)\n#define X_TIFINAGH (Language)(EXT_LANGUAGE_BASE+24)\n#define X_SYLOTI_NAGRI (Language)(EXT_LANGUAGE_BASE+25)\n#define X_OLD_PERSIAN (Language)(EXT_LANGUAGE_BASE+26)\n#define X_KHAROSHTHI (Language)(EXT_LANGUAGE_BASE+27)\n#define X_BALINESE (Language)(EXT_LANGUAGE_BASE+28)\n#define X_CUNEIFORM (Language)(EXT_LANGUAGE_BASE+29)\n#define X_PHOENICIAN (Language)(EXT_LANGUAGE_BASE+30)\n#define X_PHAGS_PA (Language)(EXT_LANGUAGE_BASE+31)\n#define X_NKO (Language)(EXT_LANGUAGE_BASE+32)\n\n// Unicode 5.1\n#define X_SUDANESE (Language)(EXT_LANGUAGE_BASE+33)\n#define X_LEPCHA (Language)(EXT_LANGUAGE_BASE+34)\n#define X_OL_CHIKI (Language)(EXT_LANGUAGE_BASE+35)\n#define X_VAI (Language)(EXT_LANGUAGE_BASE+36)\n#define X_SAURASHTRA (Language)(EXT_LANGUAGE_BASE+37)\n#define X_KAYAH_LI (Language)(EXT_LANGUAGE_BASE+38)\n#define X_REJANG (Language)(EXT_LANGUAGE_BASE+39)\n#define X_LYCIAN (Language)(EXT_LANGUAGE_BASE+40)\n#define X_CARIAN (Language)(EXT_LANGUAGE_BASE+41)\n#define X_LYDIAN (Language)(EXT_LANGUAGE_BASE+42)\n#define X_CHAM (Language)(EXT_LANGUAGE_BASE+43)\n\n#define EXT_NUM_LANGUAGES (Language)(EXT_LANGUAGE_BASE+44)\n\n\n\n// ExtLanguageName\n// ------------\n// Given the Language, returns its string name used as the output by\n// the lang/enc identifier, e.g. \"Korean\"\n// \"invalid_language\" if the input is invalid.\nextern const char* ExtLanguageName(const Language lang);\n\n// ExtLanguageDeclaredName\n// ------------\n// Given the Language, returns its Language enum spelling, for use by\n// programs that create C declarations, e.g. \"KOREAN\"\n// \"UNKNOWN_LANGUAGE\" if the input is invalid.\nextern const char* ExtLanguageDeclaredName(const Language lang);\n\n// ExtLanguageCode\n// ------------\n// Given the Language, return the language code, e.g. \"ko\"\n// This is determined by\n// the following (in order of preference):\n// - ISO-639-1 two-letter language code\n//   (all except those mentioned below)\n// - ISO-639-2 three-letter bibliographic language code\n//   (Tibetan, Dhivehi, Cherokee, Syriac)\n// - Google-specific language code\n//   (ChineseT (\"zh-TW\"), Teragram Unknown, Unknown,\n//   Portuguese-Portugal, Portuguese-Brazil, Limbu)\nextern const char * ExtLanguageCode(const Language lang);\n\n\n// Convert \"en-Latn-GB\" to ENGLISH\n// Normalize to PORTUGUESE, not PORTUGUESE_B nor PORTUGUESE_P\n// Consider for later: NORWEGIAN, NORWEGIAN_N\n// Consider for later: SCOTS, SCOTS_GAELIC\n// Consider for later: SERBO_CROATIAN, SERBIAN, CROATIAN, BOSNIAN\n//\nLanguage GetLanguageFromNumberOrName(const char* src);\n\n// Convert \"en-Latn-GB\" to ULScript_Latin\nUnicodeLScript GetLScriptFromNumberOrName(const char* src);\n\n// Merge together some languages, such as bo/hr/sr\nLanguage NormalizeLanguage(Language lang);\n\n#endif  // ENCODINGS_COMPACT_LANG_DET_EXT_LANG_ENC_H__\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/#getonescriptspan.cc#",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#include \"encodings/compact_lang_det/getonescriptspan.h\"\n#include <stdio.h>\n#include <string.h>\n\n#include \"encodings/lang_enc.h\"\n#include \"encodings/compact_lang_det/utf8propjustletter.h\"\n#include \"encodings/compact_lang_det/utf8propletterscriptnum.h\"\n#include \"encodings/compact_lang_det/utf8scannotjustletterspecial.h\"\n\n#include \"encodings/compact_lang_det/win/cld_basictypes.h\"\n#include \"encodings/compact_lang_det/win/cld_commandlineflags.h\"\n#include \"encodings/compact_lang_det/win/cld_google.h\"\n#include \"encodings/compact_lang_det/win/cld_htmlutils.h\"\n#include \"encodings/compact_lang_det/win/cld_unilib.h\"\n#include \"encodings/compact_lang_det/win/cld_utf8statetable.h\"\n#include \"encodings/compact_lang_det/win/cld_utf8utils.h\"\n\nstatic const Language GRAY_LANG = (Language)254;\n\nstatic const int kMaxUpToWordBoundary = 50;       // span < this make longer,\n                                                  // else make shorter\nstatic const int kMaxAdvanceToWordBoundary = 10;  // +/- this many bytes\n                                                  // to round to word boundary,\n                                                  // direction above\n\nstatic const char kSpecialSymbol[256] = {       // true for < > &\n  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  0,0,0,0,0,0,1,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,1,0,1,0,\n  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n\n  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n};\n\n\n\n#define LT 0      // <\n#define GT 1      // >\n#define EX 2      // !\n#define HY 3      // -\n#define QU 4      // \"\n#define AP 5      // '\n#define SL 6      // /\n#define S_ 7\n#define C_ 8\n#define R_ 9\n#define I_ 10\n#define P_ 11\n#define T_ 12\n#define Y_ 13\n#define L_ 14\n#define E_ 15\n#define CR 16     // <cr> or <lf>\n#define NL 17     // non-letter: ASCII whitespace, digit, punctuation\n#define PL 18     // possible letter, incl. &\n#define xx 19     // <unused>\n\n// Map byte to one of ~20 interesting categories for cheap tag parsing\nstatic const uint8 kCharToSub[256] = {\n  NL,NL,NL,NL, NL,NL,NL,NL, NL,NL,CR,NL, NL,CR,NL,NL,\n  NL,NL,NL,NL, NL,NL,NL,NL, NL,NL,NL,NL, NL,NL,NL,NL,\n  NL,EX,QU,NL, NL,NL,PL,AP, NL,NL,NL,NL, NL,HY,NL,SL,\n  NL,NL,NL,NL, NL,NL,NL,NL, NL,NL,NL,NL, LT,NL,GT,NL,\n\n  PL,PL,PL,C_, PL,E_,PL,PL, PL,I_,PL,PL, L_,PL,PL,PL,\n  P_,PL,R_,S_, T_,PL,PL,PL, PL,Y_,PL,NL, NL,NL,NL,NL,\n  PL,PL,PL,C_, PL,E_,PL,PL, PL,I_,PL,PL, L_,PL,PL,PL,\n  P_,PL,R_,S_, T_,PL,PL,PL, PL,Y_,PL,NL, NL,NL,NL,NL,\n\n  NL,NL,NL,NL, NL,NL,NL,NL, NL,NL,NL,NL, NL,NL,NL,NL,\n  NL,NL,NL,NL, NL,NL,NL,NL, NL,NL,NL,NL, NL,NL,NL,NL,\n  NL,NL,NL,NL, NL,NL,NL,NL, NL,NL,NL,NL, NL,NL,NL,NL,\n  NL,NL,NL,NL, NL,NL,NL,NL, NL,NL,NL,NL, NL,NL,NL,NL,\n\n  PL,PL,PL,PL, PL,PL,PL,PL, PL,PL,PL,PL, PL,PL,PL,PL,\n  PL,PL,PL,PL, PL,PL,PL,PL, PL,PL,PL,PL, PL,PL,PL,PL,\n  PL,PL,PL,PL, PL,PL,PL,PL, PL,PL,PL,PL, PL,PL,PL,PL,\n  PL,PL,PL,PL, PL,PL,PL,PL, PL,PL,PL,PL, PL,PL,PL,PL,\n};\n\n#undef LT\n#undef GT\n#undef EX\n#undef HY\n#undef QU\n#undef AP\n#undef SL\n#undef S_\n#undef C_\n#undef R_\n#undef I_\n#undef P_\n#undef T_\n#undef Y_\n#undef L_\n#undef E_\n#undef CR\n#undef NL\n#undef PL\n#undef xx\n\n\n#define OK 0\n#define X_ 1\n\n// State machine to do cheap parse of non-letter strings incl. tags\n// advances <tag>\n//          |    |\n// advances <tag> ... </tag>  for <script> <style>\n//          |               |\n// advances <!-- ... <tag> ... -->\n//          |                     |\n// advances <tag\n//          ||  (0)\n// advances <tag <tag2>\n//          ||  (0)\nstatic const uint8 kTagParseTbl_0[] = {\n// <  >  !  -   \"  '  /  S   C  R  I  P   T  Y  L  E  CR NL PL xx\n   3, 2, 2, 2,  2, 2, 2,OK, OK,OK,OK,OK, OK,OK,OK,OK,  2, 2,OK,X_, // [0] OK\n  X_,X_,X_,X_, X_,X_,X_,X_, X_,X_,X_,X_, X_,X_,X_,X_, X_,X_,X_,X_, // [1] error\n   3, 2, 2, 2,  2, 2, 2,OK, OK,OK,OK,OK, OK,OK,OK,OK,  2, 2,OK,X_, // [2] NL*\n  X_, 2, 4, 9, 10,11, 9,13,  9, 9, 9, 9,  9, 9, 9, 9,  9, 9, 9,X_, // [3] <\n  X_, 2, 9, 5, 10,11, 9, 9,  9, 9, 9, 9,  9, 9, 9, 9,  9, 9, 9,X_, // [4] <!\n  X_, 2, 9, 6, 10,11, 9, 9,  9, 9, 9, 9,  9, 9, 9, 9,  9, 9, 9,X_, // [5] <!-\n   6, 6, 6, 7,  6, 6, 6, 6,  6, 6, 6, 6,  6, 6, 6, 6,  6, 6, 6,X_, // [6] <!--.*\n   6, 6, 6, 8,  6, 6, 6, 6,  6, 6, 6, 6,  6, 6, 6, 6,  6, 6, 6,X_, // [7] <!--.*-\n   6, 2, 6, 8,  6, 6, 6, 6,  6, 6, 6, 6,  6, 6, 6, 6,  6, 6, 6,X_, // [8] <!--.*--\n  X_, 2, 9, 9, 10,11, 9, 9,  9, 9, 9, 9,  9, 9, 9, 9,  9, 9, 9,X_, // [9] <.*\n  10,10,10,10,  9,10,10,10, 10,10,10,10, 10,10,10,10, 12,10,10,X_, // [10] <.*\"\n  11,11,11,11, 11, 9,11,11, 11,11,11,11, 11,11,11,11, 12,11,11,X_, // [11] <.*'\n  X_, 2,12,12, 12,12,12,12, 12,12,12,12, 12,12,12,12, 12,12,12,X_, // [12] <.* no \" '\n\n// <  >  !  -   \"  '  /  S   C  R  I  P   T  Y  L  E  CR NL PL xx\n  X_, 2, 9, 9, 10,11, 9, 9, 14, 9, 9, 9, 28, 9, 9, 9,  9, 9, 9,X_, // [13] <S\n  X_, 2, 9, 9, 10,11, 9, 9,  9,15, 9, 9,  9, 9, 9, 9,  9, 9, 9,X_, // [14] <SC\n  X_, 2, 9, 9, 10,11, 9, 9,  9, 9,16, 9,  9, 9, 9, 9,  9, 9, 9,X_, // [15] <SCR\n  X_, 2, 9, 9, 10,11, 9, 9,  9, 9, 9,17,  9, 9, 9, 9,  9, 9, 9,X_, // [16] <SCRI\n  X_, 2, 9, 9, 10,11, 9, 9,  9, 9, 9, 9, 18, 9, 9, 9,  9, 9, 9,X_, // [17] <SCRIP\n  X_,19, 9, 9, 10,11, 9, 9,  9, 9, 9, 9,  9, 9, 9, 9, 19,19, 9,X_, // [18] <SCRIPT\n  20,19,19,19, 19,19,19,19, 19,19,19,19, 19,19,19,19, 19,19,19,X_, // [19] <SCRIPT .*\n  19,19,19,19, 19,19,21,19, 19,19,19,19, 19,19,19,19, 19,19,19,X_, // [20] <SCRIPT .*<\n  19,19,19,19, 19,19,19,22, 19,19,19,19, 19,19,19,19, 19,19,19,X_, // [21] <SCRIPT .*</\n  19,19,19,19, 19,19,19,19, 23,19,19,19, 19,19,19,19, 19,19,19,X_, // [22] <SCRIPT .*</S\n  19,19,19,19, 19,19,19,19, 19,24,19,19, 19,19,19,19, 19,19,19,X_, // [23] <SCRIPT .*</SC\n  19,19,19,19, 19,19,19,19, 19,19,25,19, 19,19,19,19, 19,19,19,X_, // [24] <SCRIPT .*</SCR\n  19,19,19,19, 19,19,19,19, 19,19,19,26, 19,19,19,19, 19,19,19,X_, // [25] <SCRIPT .*</SCRI\n  19,19,19,19, 19,19,19,19, 19,19,19,19, 27,19,19,19, 19,19,19,X_, // [26] <SCRIPT .*</SCRIP\n  19, 2,19,19, 19,19,19,19, 19,19,19,19, 19,19,19,19, 19,19,19,X_, // [27] <SCRIPT .*</SCRIPT\n\n// <  >  !  -   \"  '  /  S   C  R  I  P   T  Y  L  E  CR NL PL xx\n  X_, 2, 9, 9, 10,11, 9, 9,  9, 9, 9, 9,  9,29, 9, 9,  9, 9, 9,X_, // [28] <ST\n  X_, 2, 9, 9, 10,11, 9, 9,  9, 9, 9, 9,  9, 9,30, 9,  9, 9, 9,X_, // [29] <STY\n  X_, 2, 9, 9, 10,11, 9, 9,  9, 9, 9, 9,  9, 9, 9,31,  9, 9, 9,X_, // [30] <STYL\n  X_,32, 9, 9, 10,11, 9, 9,  9, 9, 9, 9,  9, 9, 9, 9, 32,32, 9,X_, // [31] <STYLE\n  33,32,32,32, 32,32,32,32, 32,32,32,32, 32,32,32,32, 32,32,32,X_, // [32] <STYLE .*\n  32,32,32,32, 32,32,34,32, 32,32,32,32, 32,32,32,32, 32,32,32,X_, // [33] <STYLE .*<\n  32,32,32,32, 32,32,32,35, 32,32,32,32, 32,32,32,32, 32,32,32,X_, // [34] <STYLE .*</\n  32,32,32,32, 32,32,32,32, 32,32,32,32, 36,32,32,32, 32,32,32,X_, // [35] <STYLE .*</S\n  32,32,32,32, 32,32,32,32, 32,32,32,32, 32,37,32,32, 32,32,32,X_, // [36] <STYLE .*</ST\n  32,32,32,32, 32,32,32,32, 32,32,32,32, 32,32,38,32, 32,32,32,X_, // [37] <STYLE .*</STY\n  32,32,32,32, 32,32,32,32, 32,32,32,32, 32,32,32,39, 32,32,32,X_, // [38] <STYLE .*</STYL\n  32, 2,32,32, 32,32,32,32, 32,32,32,32, 32,32,32,32, 32,32,32,X_, // [39] <STYLE .*</STYLE\n};\n\n#undef OK\n#undef X_\n\n\n/*\n// Convert GetTimeOfDay output to 64-bit usec\nstatic inline uint64 Microseconds(const struct timeval& t) {\n  // The SumReducer uses uint64, so convert to (uint64) microseconds,\n  // not (double) seconds.\n  return t.tv_sec * 1000000ULL + t.tv_usec;\n}\n*/\n\n\n// Returns true if character is < > or &\nbool inline IsSpecial(char c) {\n  if ((c & 0xe0) == 0x20) {\n    return kSpecialSymbol[static_cast<uint8>(c)];\n  }\n  return false;\n}\n\n// Quick Skip to next letter or < > & or to end of string (eos)\n// Always return is_letter for eos\nint ScanToLetterOrSpecial(const char* src, int len) {\n  int bytes_consumed;\n  cld::UTF8GenericScan(&utf8scannotjustletterspecial_obj, src, len,\n                       &bytes_consumed);\n  return bytes_consumed;\n}\n\n\n\n// src points to non-letter, such as tag-opening '<'\n// Return length from here to next possible letter\n// On eos or another < before >, return 1\n// advances <tag>\n//          |    |\n// advances <tag> ... </tag>  for <script> <style>\n//          |               |\n// advances <!-- ... <tag> ... -->\n//          |                     |\n// advances <tag\n//          ||  (1)\n// advances <tag <tag2>\n//          ||  (1)\nint ScanToPossibleLetter(const char* isrc, int len) {\n  const uint8* src = reinterpret_cast<const uint8*>(isrc);\n  const uint8* srclimit = src + len;\n  const uint8* tagParseTbl = kTagParseTbl_0;\n  int e = 0;\n  while (src < srclimit) {\n    e = tagParseTbl[kCharToSub[*src++]];\n    if ((e & ~1) == 0) {\n      // We overshot by one byte\n      --src;\n      break;\n    }\n    tagParseTbl = &kTagParseTbl_0[e * 20];\n  }\n\n  if (src >= srclimit) {\n    // We fell off the end of the text.\n    // It looks like the most common case for this is a truncated file, not\n    // mismatched angle brackets. So we pretend that the last char was '>'\n    return len;\n  }\n\n  // OK to be in state 0 or state 2 at exit\n  if ((e != 0) && (e != 2)) {\n    // Error, '<' followed by '<'\n    // We want to back up to first <, then advance by one byte past it\n    int offset = src - reinterpret_cast<const uint8*>(isrc);\n    // printf(\"ScanToPossibleLetter error at %d[%d] in '%s'\\n\",offset,e,isrc);\n\n    // Backscan to first '<' and return enough length to just get past it\n    --offset;   // back up over the second '<', which caused us to stop\n    while ((0 < offset) && (isrc[offset] != '<')) {\n      // Find the first '<', which is unmatched\n      --offset;\n    }\n    // skip to just beyond first '<'\n    // printf(\"  returning %d\\n\", offset + 1);\n    return offset + 1;\n  }\n\n  return src - reinterpret_cast<const uint8*>(isrc);\n}\n\n\n\nScriptScanner::ScriptScanner(const char* buffer,\n                             int buffer_length,\n                             bool is_plain_text)\n  : start_byte_(buffer),\n  next_byte_(buffer),\n  next_byte_limit_(buffer + buffer_length),\n  byte_length_(buffer_length),\n  is_plain_text_(is_plain_text) {\n    script_buffer_ = new char[getone::kMaxScriptBuffer];\n    script_buffer_lower_ = new char[getone::kMaxScriptLowerBuffer];\n}\n\nScriptScanner::~ScriptScanner() {\n  delete[] script_buffer_;\n  delete[] script_buffer_lower_;\n}\n\n\n\n\n// Get to the first real non-tag letter or entity that is a letter\n// Sets script of that letter\n// Return len if no more letters\nint ScriptScanner::SkipToFrontOfSpan(const char* src, int len, int* script) {\n  int sc = UNKNOWN_LSCRIPT;\n  int skip = 0;\n  int tlen, plen;\n\n  // Do run of non-letters (tag | &NL | NL)*\n  while (skip < len) {\n    // Do fast scan to next interesting byte\n    // int oldskip = skip;\n    skip += ScanToLetterOrSpecial(src + skip, len - skip);\n    // TEMP\n    // printf(\"ScanToLetterOrSpecial[%d] 0x%02x => [%d] 0x%02x\\n\",\n    //       oldskip, src[oldskip], skip, src[skip]);\n\n    // Check for no more letters/specials\n    if (skip >= len) {\n      // All done\n      return len;\n    }\n\n    // We are at a letter, nonletter, tag, or entity\n    if (IsSpecial(src[skip]) && !is_plain_text_) {\n      if (src[skip] == '<') {\n        // Begining of tag; skip to end and go around again\n        tlen = ScanToPossibleLetter(src + skip, len - skip);\n        sc = 0;\n        // printf(\"<...> \");\n      } else if (src[skip] == '>') {\n        // Unexpected end of tag; skip it and go around again\n        tlen = 1;         // Over the >\n        sc = 0;\n        // printf(\"..> \");\n      } else if (src[skip] == '&') {\n        // Expand entity, no advance\n        char temp[4];\n        EntityToBuffer(src + skip, len - skip,\n                       temp, &tlen, &plen);\n        sc = getone::GetUTF8LetterScriptNum(temp);\n        // printf(\"#(%02x%02x)=%d \", temp[0], temp[1], sc);\n      }\n    } else {\n      // Update 1..4 bytes\n      tlen = cld_UniLib::OneCharLen(src + skip);\n      sc = getone::GetUTF8LetterScriptNum(src + skip);\n      // printf(\"#(%02x%02x)=%d \", src[skip], src[skip+1], sc);\n    }\n    // TEMP\n    // printf(\"sc=%d \", sc);\n    if (sc != 0) {break;}           // Letter found\n    skip += tlen;                   // Advance\n  }\n\n  *script = sc;\n  return skip;\n}\n\n\n\n// Copy next run of same-script non-tag letters to buffer [NUL terminated]\n// Buffer has leading space and all text is lowercased\nbool ScriptScanner::GetOneScriptSpan(getone::LangSpan* span) {\n  span->text = script_buffer_;\n  span->text_bytes = 0;\n  span->offset = next_byte_ - start_byte_;\n  span->script = UNKNOWN_LSCRIPT;\n  span->lang = UNKNOWN_LANGUAGE;\n  span->truncated = false;\n\n  // printf(\"GetOneScriptSpan[[ \");\n  // struct timeval script_start, script_mid, script_end;\n\n  int spanscript;           // The script of this span\n  int sc = UNKNOWN_LSCRIPT;  // The script of next character\n  int tlen, plen;\n\n\n  script_buffer_[0] = ' ';  // Always a space at front of output\n  script_buffer_[1] = '\\0';\n  int take = 0;\n  int put = 1;              // Start after the initial space\n\n  // gettimeofday(&script_start, NULL);\n  // Get to the first real non-tag letter or entity that is a letter\n  int skip = SkipToFrontOfSpan(next_byte_, byte_length_, &spanscript);\n  next_byte_ += skip;\n  byte_length_ -= skip;\n  if (byte_length_ <= 0) {\n    // printf(\"]]\\n\");\n    return false;               // No more letters to be found\n  }\n\n  // gettimeofday(&script_mid, NULL);\n\n  // There is at least one letter, so we know the script for this span\n  // printf(\"{%d} \", spanscript);\n  span->script = (UnicodeLScript)spanscript;\n\n\n  // Go over alternating spans of same-script letters and non-letters,\n  // copying letters to buffer with single spaces for each run of non-letters\n  while (take < byte_length_) {\n    // Copy run of letters in same script (&LS | LS)*\n    int letter_count = 0;              // Keep track of word length\n    bool need_break = false;\n    while (take < byte_length_) {\n      // We are at a letter, nonletter, tag, or entity\n      if (IsSpecial(next_byte_[take]) && !is_plain_text_) {\n        // printf(\"\\\"%c\\\" \", next_byte_[take]);\n        if (next_byte_[take] == '<') {\n          // Begining of tag\n          sc = 0;\n          break;\n        } else if (next_byte_[take] == '>') {\n          // Unexpected end of tag\n          sc = 0;\n          break;\n        } else if (next_byte_[take] == '&') {\n          // Copy entity, no advance\n          EntityToBuffer(next_byte_ + take, byte_length_ - take,\n                         script_buffer_ + put, &tlen, &plen);\n          sc = getone::GetUTF8LetterScriptNum(script_buffer_ + put);\n        }\n      } else {\n        // Real letter, safely copy up to 4 bytes, increment by 1..4\n        // Will update by 1..4 bytes at Advance, below\n        tlen = plen = cld_UniLib::OneCharLen(next_byte_ + take);\n        if (take < (byte_length_ - 3)) {\n          // Fast case\n          *reinterpret_cast<uint32*>(script_buffer_ + put) =\n            *reinterpret_cast<const uint32*>(next_byte_ + take);\n        } else {\n          // Slow case, happens 1-3 times per input document\n          memcpy(script_buffer_ + put, next_byte_ + take, plen);\n        }\n        sc = getone::GetUTF8LetterScriptNum(next_byte_ + take);\n      }\n      // printf(\"sc(%c)=%d \", next_byte_[take], sc);\n      // char xtmp[8]; memcpy(xtmp,script_buffer_ + put, plen);\n      // xtmp[plen] = '\\0'; printf(\"'%s'{%d} \", xtmp, sc);\n\n      // Allow continue across a single letter in a different script:\n      // A B D = three scripts, c = common script, i = inherited script,\n      // - = don't care, ( = take position before the += below\n      //  AAA(A-    continue\n      //\n      //  AAA(BA    continue\n      //  AAA(BB    break\n      //  AAA(Bc    continue (breaks after B)\n      //  AAA(BD    break\n      //  AAA(Bi    break\n      //\n      //  AAA(c-    break\n      //\n      //  AAA(i-    continue\n      //\n\n      if ((sc != spanscript) && (sc != ULScript_Inherited)) {\n        // Might need to break this script span\n        if (sc == ULScript_Common) {\n          need_break = true;\n        } else {\n          // Look at next following character, ignoring entity as Common\n          int sc2 = getone::GetUTF8LetterScriptNum(next_byte_ + take + tlen);\n          if ((sc2 != ULScript_Common) && (sc2 != spanscript)) {\n            need_break = true;\n          }\n        }\n      }\n      if (need_break) {break;}  // Non-letter or letter in wrong script\n\n      take += tlen;                   // Advance\n      put += plen;                    // Advance\n      ++letter_count;\n      if (put >= getone::kMaxScriptBytes) {\n        // Buffer is full\n        span->truncated = true;\n        break;\n      }\n    }     // End while letters\n\n    // Do run of non-letters (tag | &NL | NL)*\n    while (take < byte_length_) {\n      // Do fast scan to next interesting byte\n      take += ScanToLetterOrSpecial(next_byte_ + take, byte_length_ - take);\n      \n      // Check for no more letters/specials\n      if (take >= byte_length_) {\n        take = byte_length_;\n        break;\n      }\n\n      // We are at a letter, nonletter, tag, or entity\n      if (IsSpecial(next_byte_[take]) && !is_plain_text_) {\n        // printf(\"\\\"%c\\\" \", next_byte_[take]);\n        if (next_byte_[take] == '<') {\n          // Begining of tag; skip to end and go around again\n          tlen = ScanToPossibleLetter(next_byte_ + take, byte_length_ - take);\n          sc = 0;\n          // printf(\"<...> \");\n        } else if (next_byte_[take] == '>') {\n          // Unexpected end of tag; skip it and go around again\n          tlen = 1;         // Over the >\n          sc = 0;\n          // printf(\"..> \");\n        } else if (next_byte_[take] == '&') {\n          // Expand entity, no advance\n          EntityToBuffer(next_byte_ + take, byte_length_ - take,\n                         script_buffer_ + put, &tlen, &plen);\n          sc = getone::GetUTF8LetterScriptNum(script_buffer_ + put);\n        }\n      } else {\n        // Update 1..4\n        tlen = cld_UniLib::OneCharLen(next_byte_ + take);\n        sc = getone::GetUTF8LetterScriptNum(next_byte_ + take);\n      }\n      // printf(\"sc[%c]=%d \", next_byte_[take], sc);\n      if (sc != 0) {break;}           // Letter found\n      take += tlen;                   // Advance\n    }     // End while not-letters\n\n    script_buffer_[put++] = ' ';\n\n    // We are at a letter again (or eos), after letter* not-letter*\n    if (sc != spanscript) {break;}            // Letter in wrong script\n    if (put >= getone::kMaxScriptBytes - 8) {\n      // Buffer is almost full\n      span->truncated = true;\n      break;\n    }\n  }\n\n  // Update input position\n  next_byte_ += take;\n  byte_length_ -= take;\n\n  // Put four more spaces/NUL. Worst case is abcd _ _ _ \\0\n  //                          kMaxScriptBytes |   | put\n  script_buffer_[put + 0] = ' ';\n  script_buffer_[put + 1] = ' ';\n  script_buffer_[put + 2] = ' ';\n  script_buffer_[put + 3] = '\\0';\n\n  span->text_bytes = put;       // Does not include the last four chars above\n\n  // printf(\" %d]]\\n\\n\", put);\n  return true;\n}\n\n// Force Latin, Cyrillic, Greek scripts to be lowercase\nvoid ScriptScanner::LowerScriptSpan(getone::LangSpan* span) {\n  // On Windows, text is lowercased beforehand, so no need to do anything here.\n#if !defined(CLD_WINDOWS)\n  // If needed, lowercase all the text. If we do it sooner, might miss\n  // lowercasing an entity such as &Aacute;\n  // We only need to do this for Latn and Cyrl scripts\n  if ((span->script == ULScript_Latin) ||\n      (span->script == ULScript_Cyrillic) ||\n      (span->script == ULScript_Greek)) {\n    // Full Unicode lowercase of the entire buffer, including\n    // four pad bytes off the end\n    int consumed, filled;\n    UniLib::ToLower(span->text, span->text_bytes + 4,\n                    script_buffer_lower_, getone::kMaxScriptLowerBuffer,\n                    &consumed, &filled);\n    span->text = script_buffer_lower_;\n    span->text_bytes = filled - 4;\n  }\n#endif\n}\n\n// Copy next run of same-script non-tag letters to buffer [NUL terminated]\n// Force Latin and Cyrillic scripts to be lowercase\nbool ScriptScanner::GetOneScriptSpanLower(getone::LangSpan* span) {\n  bool ok = GetOneScriptSpan(span);\n  LowerScriptSpan(span);\n  return ok;\n}\n\n// Gets lscript number for letters; always returns\n//   0 (common script) for non-letters\nint getone::GetUTF8LetterScriptNum(const char* src) {\n  int srclen = cld_UniLib::OneCharLen(src);\n  const uint8* usrc = reinterpret_cast<const uint8*>(src);\n  return UTF8GenericProperty(&utf8propletterscriptnum_obj, &usrc, &srclen);\n}\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/#getonescriptspan.h#",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef ENCODINGS_COMPACT_LANG_DET_GETONESCRIPTSPAN_H_\n#define ENCODINGS_COMPACT_LANG_DET_GETONESCRIPTSPAN_H_\n\n#include \"encodings/compact_lang_det/letterscript_enum.h\"\n#include \"encodings/compact_lang_det/compact_lang_det_impl.h\"\n\nnamespace getone {\n  static const int kMaxScriptBuffer = 4096;\n  static const int kMaxScriptLowerBuffer = (kMaxScriptBuffer * 3) / 2;\n  static const int kMaxScriptBytes = kMaxScriptBuffer- 8;   // Leave some room\n  static const int kMaxAnswerBuffer = 256;\n\n  typedef enum UnicodeLScript ULScript;\n\n  typedef struct {\n    char* text;             // Pointer to the span, somewhere\n    int text_bytes;         // Number of bytes of text in the span\n    int offset;             // Offset of start of span in original input buffer\n    ULScript script;        // Script of all the letters in this span\n    Language lang;          // Language identified for this span\n    bool truncated;         // true if buffer filled up before a\n                            // different script or EOF was found\n  } LangSpan;\n\n\n  static inline bool IsContinuationByte(char c) {\n    return static_cast<signed char>(c) < -64;\n  }\n\n  // Gets lscript number for letters; always returns\n  //   0 (common script) for non-letters\n  int GetUTF8LetterScriptNum(const char* src);\n\n\n  // Update src pointer to point to next quadgram, +2..+5\n  // Looks at src[0..4]\n  const char* AdvanceQuad(const char* src);\n}     // end namespace getone\n\n\n\n\n\n\nclass ScriptScanner {\n public:\n  ScriptScanner(const char* buffer, int buffer_length, bool is_plain_text);\n  ~ScriptScanner();\n\n  // Copy next run of same-script non-tag letters to buffer [NUL terminated]\n  bool GetOneScriptSpan(getone::LangSpan* span);\n\n  // Force Latin and Cyrillic scripts to be lowercase\n  void LowerScriptSpan(getone::LangSpan* span);\n\n  // Copy next run of same-script non-tag letters to buffer [NUL terminated]\n  // Force Latin and Cyrillic scripts to be lowercase\n  bool GetOneScriptSpanLower(getone::LangSpan* span);\n\n private:\n  int SkipToFrontOfSpan(const char* src, int len, int* script);\n\n  const char* start_byte_;\n  const char* next_byte_;\n  const char* next_byte_limit_;\n  int byte_length_;\n  bool is_plain_text_;\n  char* script_buffer_;           // Holds text with expanded entities\n  char* script_buffer_lower_;     // Holds lowercased text\n};\n\n\nclass LangScanner {\n public:\n  LangScanner(const CompactLangDetImpl::LangDetObj* langdetobj,\n              getone::LangSpan* spn, int smoothwidth, int smoothcandidates,\n              int maxlangs, int minlangspan);\n  ~LangScanner();\n\n\n  int script() {return script_;}\n\n  // Use new text\n  // Keep smoothing state if same script, otherwise reinit smoothing\n  void NewText(getone::LangSpan* spn);\n\n  bool GetOneShortLangSpanBoot(getone::LangSpan* span);  // Just for bootstrapping\n  bool GetOneLangSpanBoot(getone::LangSpan* span);       // Just for bootstrapping\n\n  // The real ones\n  bool GetOneShortLangSpan(const CompactLangDetImpl::LangDetObj* langdetobj,\n                           getone::LangSpan* span);\n  bool GetOneLangSpan(const CompactLangDetImpl::LangDetObj* langdetobj,\n                      getone::LangSpan* span);\n\n  // Increases language bias by delta\n  void SetLanguageBias(const CompactLangDetImpl::LangDetObj* langdetobj,\n                       Language key, int delta);\n\n  // For debugging output\n  int next_answer_;\n  char answer_buffer_[getone::kMaxAnswerBuffer];\n  char answer_buffer2_[getone::kMaxAnswerBuffer];\n  char answer_buffer3_[getone::kMaxAnswerBuffer];\n  char answer_buffer4_[getone::kMaxAnswerBuffer];\n\n private:\n  const char* start_byte_;\n  const char* next_byte_limit_;\n  const char* next_byte_;\n  const char* onelangspan_begin_;\n  int byte_length_;\n  int script_;\n  Language spanlang_;\n  int smoothwidth_;\n  int smoothwidth_2_;\n  int smoothcandidates_;\n  int maxlangs_;\n  int minlangspan_;\n  int rb_size_;\n  int next_rb_;\n  int rb_mask_;\n  uint32* rb_;\n  int* offset_rb_;\n};\n\n#endif  // ENCODINGS_COMPACT_LANG_DET_GETONESCRIPTSPAN_H_\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/#tote.cc#",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#include \"encodings/compact_lang_det/tote.h\"\n#include <string.h>     // memset\n\n#include \"encodings/compact_lang_det/win/cld_logging.h\"\n\n\n// Take a set of <key, value> pairs and tote them up.\n// After explicitly sorting, retrieve top key, value pairs\nTote::Tote() {\n  gram_count_ = 0;\n  incr_count_ = 0;\n  byte_count_ = 0;\n  memset(key_, 0, sizeof(key_));\n  // No need to initialize values\n}\n\nTote::~Tote() {\n}\n\nvoid Tote::Reinit() {\n  gram_count_ = 0;\n  incr_count_ = 0;\n  byte_count_ = 0;\n  memset(key_, 0, sizeof(key_));\n  // No need to initialize values\n}\n\n// Increment count of quadgrams/trigrams/unigrams scored\nvoid Tote::AddGram() {\n  ++gram_count_;\n}\n\n// Three-way associative, guaranteeing that the largest two counts are always\n// in the data structure. kMaxSize must be a multiple of 3, and is tied to the\n// subscript calculations here, which are for 8 sets of 3-way associative\n// buckets. The subscripts for set N are [N], [N+8], and [N+16] used in a\n// slightly-weird way: The initial probe point is [N] or [N+8], whichever\n// is specified by key mod 16. In most cases (nearly *all* cases except Latin\n// script), this entry matches and we update/return. The second probe is\n// the other of [N] and [N+8]. The third probe is only used as a fallback to\n// these two, and is there only for the rare case that there are three or more\n// languages with Language enum values equal mod 8, contending within the same\n// bucket. This can only happen in Latin and (rarely) Cyrillic scripts, because\n// the other scripts have fewer than 17 languages total.\n// If you change kMaxSize, change the constants 7/8/15/16 below\nvoid Tote::Add(uint8 ikey, int idelta) {\n  DCHECK(ikey != 0);\n  ++incr_count_;\n\n  // Look for existing entry\n  int sub0 = ikey & 15;\n  if (key_[sub0] == ikey) {\n    value_[sub0] += idelta;\n    return;\n  }\n  int sub1 = sub0 ^ 8;\n  if (key_[sub1] == ikey) {\n    value_[sub1] += idelta;\n    return;\n  }\n  int sub2 = (ikey & 7) + 16;\n  if (key_[sub2] == ikey) {\n    value_[sub2] += idelta;\n    return;\n  }\n\n  // Allocate new entry\n  int alloc = -1;\n  if (key_[sub0] == 0) {\n    alloc = sub0;\n  } else if (key_[sub1] == 0) {\n    alloc = sub1;\n  } else if (key_[sub2] == 0) {\n    alloc = sub2;\n  } else {\n    // All choices allocated, need to replace smallest one\n    alloc = sub0;\n    if (value_[sub1] < value_[alloc]) {alloc = sub1;}\n    if (value_[sub2] < value_[alloc]) {alloc = sub2;}\n  }\n  key_[alloc] = ikey;\n  value_[alloc] = idelta;\n  return;\n}\n\n// Return current top key\nint Tote::CurrentTopKey() {\n  int top_key = 0;\n  int top_value = -1;\n  for (int sub = 0; sub < kMaxSize_; ++sub) {\n    if (key_[sub] == 0) {continue;}\n    if (top_value < value_[sub]) {\n      top_value = value_[sub];\n      top_key = key_[sub];\n    }\n  }\n  return top_key;\n}\n\n\n// Sort first n entries by decreasing order of value\n// If key==0 other fields are not valid, treat value as -1\nvoid Tote::Sort(int n) {\n  // This is n**2, but n is small\n  for (int sub = 0; sub < n; ++sub) {\n    if (key_[sub] == 0) {value_[sub] = -1;}\n\n    // Bubble sort key[sub] and entry[sub]\n    for (int sub2 = sub + 1; sub2 < kMaxSize_; ++sub2) {\n      if (key_[sub2] == 0) {value_[sub2] = -1;}\n      if (value_[sub] < value_[sub2]) {\n        // swap\n        uint8 tmpk = key_[sub];\n        key_[sub] = key_[sub2];\n        key_[sub2] = tmpk;\n        int tmpv = value_[sub];\n        value_[sub] = value_[sub2];\n        value_[sub2] = tmpv;\n      }\n    }\n  }\n}\n\nvoid Tote::Dump(FILE* f) {\n  for (int sub = 0; sub < kMaxSize_; ++sub) {\n    if (key_[sub] > 0) {\n      fprintf(f, \"[%2d] %3d %8d\\n\", sub, key_[sub], value_[sub]);\n    }\n  }\n  fprintf(f, \"%d %d %d\\n\", gram_count_, incr_count_, byte_count_);\n}\n\n\n\n\n// Take a set of <key, value> pairs and tote them up.\n// After explicitly sorting, retrieve top key, value pairs\nToteWithReliability::ToteWithReliability() {\n  // No need to initialize score_ or value_\n  incr_count_ = 0;\n  sorted_ = 0;\n  memset(closepair_, 0, sizeof(closepair_));\n  memset(key_, 0, sizeof(key_));\n}\n\nToteWithReliability::~ToteWithReliability() {\n}\n\nvoid ToteWithReliability::Reinit() {\n  // No need to initialize score_ or value_\n  incr_count_ = 0;\n  sorted_ = 0;\n  memset(closepair_, 0, sizeof(closepair_));\n  memset(key_, 0, sizeof(key_));\n  ////ss_.Init();\n}\n\n// Weight reliability by ibytes\n// Also see three-way associative comments above for Tote\nvoid ToteWithReliability::Add(uint8 ikey, int ibytes,\n                              int score, int ireliability) {\n  DCHECK(ikey != 0);\n  CHECK(sorted_ == 0);\n  ++incr_count_;\n\n  // Look for existing entry\n  int sub0 = ikey & 15;\n  if (key_[sub0] == ikey) {\n    value_[sub0] += ibytes;\n    score_[sub0] += score;\n    reliability_[sub0] += ireliability * ibytes;\n    return;\n  }\n  int sub1 = sub0 ^ 8;\n  if (key_[sub1] == ikey) {\n    value_[sub1] += ibytes;\n    score_[sub1] += score;\n    reliability_[sub1] += ireliability * ibytes;\n    return;\n  }\n  int sub2 = (ikey & 7) + 16;\n  if (key_[sub2] == ikey) {\n    value_[sub2] += ibytes;\n    score_[sub2] += score;\n    reliability_[sub2] += ireliability * ibytes;\n    return;\n  }\n\n  // Allocate new entry\n  int alloc = -1;\n  if (key_[sub0] == 0) {\n    alloc = sub0;\n  } else if (key_[sub1] == 0) {\n    alloc = sub1;\n  } else if (key_[sub2] == 0) {\n    alloc = sub2;\n  } else {\n    // All choices allocated, need to replace smallest one\n    alloc = sub0;\n    if (value_[sub1] < value_[alloc]) {alloc = sub1;}\n    if (value_[sub2] < value_[alloc]) {alloc = sub2;}\n  }\n  key_[alloc] = ikey;\n  value_[alloc] = ibytes;\n  score_[alloc] = score;\n  reliability_[alloc] = ireliability * ibytes;\n  return;\n}\n\n// Find subscript of a given packed language, or -1\nint ToteWithReliability::Find(uint8 ikey) {\n  DCHECK(ikey != 0);\n\n  if (sorted_) {\n    // Linear search if sorted\n    for (int sub = 0; sub < kMaxSize_; ++sub) {\n      if (key_[sub] == ikey) {return sub;}\n    }\n    return -1;\n  }\n\n  // Look for existing entry\n  int sub0 = ikey & 15;\n  if (key_[sub0] == ikey) {\n    return sub0;\n  }\n  int sub1 = sub0 ^ 8;\n  if (key_[sub1] == ikey) {\n    return sub1;\n  }\n  int sub2 = (ikey & 7) + 16;\n  if (key_[sub2] == ikey) {\n    return sub2;\n  }\n\n  return -1;\n}\n\n// Return current top key\nint ToteWithReliability::CurrentTopKey() {\n  int top_key = 0;\n  int top_value = -1;\n  for (int sub = 0; sub < kMaxSize_; ++sub) {\n    if (key_[sub] == 0) {continue;}\n    if (top_value < value_[sub]) {\n      top_value = value_[sub];\n      top_key = key_[sub];\n    }\n  }\n  return top_key;\n}\n\n\n// Sort first n entries by decreasing order of value\n// If key==0 other fields are not valid, treat value as -1\nvoid ToteWithReliability::Sort(int n) {\n  // This is n**2, but n is small\n  for (int sub = 0; sub < n; ++sub) {\n    if (key_[sub] == 0) {value_[sub] = -1;}\n\n    // Bubble sort key[sub] and entry[sub]\n    for (int sub2 = sub + 1; sub2 < kMaxSize_; ++sub2) {\n      if (key_[sub2] == 0) {value_[sub2] = -1;}\n      if (value_[sub] < value_[sub2]) {\n        // swap\n        uint8 tmpk = key_[sub];\n        key_[sub] = key_[sub2];\n        key_[sub2] = tmpk;\n\n        int tmpv = value_[sub];\n        value_[sub] = value_[sub2];\n        value_[sub2] = tmpv;\n\n        double tmps = score_[sub];\n        score_[sub] = score_[sub2];\n        score_[sub2] = tmps;\n\n        int tmpr = reliability_[sub];\n        reliability_[sub] = reliability_[sub2];\n        reliability_[sub2] = tmpr;\n      }\n    }\n  }\n  sorted_ = 1;\n}\n\nvoid ToteWithReliability::Dump(FILE* f) {\n  for (int sub = 0; sub < kMaxSize_; ++sub) {\n    if (key_[sub] > 0) {\n      fprintf(f, \"[%2d] %3d %6d %5d %4d\\n\",\n              sub, key_[sub], value_[sub], score_[sub], reliability_[sub]);\n    }\n  }\n  fprintf(f, \"  %d#\\n\", incr_count_);\n}\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/#tote.h#",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef ENCODINGS_COMPACT_LANG_DET_TOTE_H_\n#define ENCODINGS_COMPACT_LANG_DET_TOTE_H_\n\n#include <stdio.h>\n#include \"encodings/compact_lang_det/win/cld_basictypes.h\"\n\n// Take a set of <key, value> pairs and tote them up.\n// After explicitly sorting, retrieve top key, value pairs\nclass Tote {\n public:\n  Tote();\n  ~Tote();\n  void Reinit();\n  void AddGram();\n  void Add(uint8 ikey, int idelta);\n  void AddBytes(int ibytes) {byte_count_ += ibytes;}\n  int CurrentTopKey();\n  void Sort(int n);\n  void Dump(FILE* f);\n  uint16 GetGramCount() const {return gram_count_;}\n  uint16 GetIncrCount() const {return incr_count_;}\n  int GetByteCount() const {return byte_count_;}\n  int MaxSize() const {return kMaxSize_;}\n  uint8 Key(int i) const {return key_[i];}\n  int Value(int i) const {return value_[i];}\n  void SetGramCount(uint16 v) {gram_count_ = v;}\n  void SetIncrCount(uint16 v) {incr_count_ = v;}\n  void SetKey(int i, int v) {key_[i] = v;}\n  void SetValue(int i, int v) {value_[i] = v;}\n\n private:\n  static const int kMaxSize_ = 24;\n  uint16 gram_count_;       // Number of quadgrams/etc. scored\n  uint16 incr_count_;       // Number of Add calls (1-3 per gram)\n  int byte_count_;          // Bytes of text scored\n  // Align at multiple of 8 bytes\n  uint8 key_[kMaxSize_];    // Lang unassigned = 0, valid = 1..255\n  int value_[kMaxSize_];    // Probability score sum\n};\n\n\n// Take a set of <key, value, reliability> triples and tote them up.\n// After explicitly sorting, retrieve top key, value, reliability triples\nclass ToteWithReliability {\n public:\n  ToteWithReliability();\n  ~ToteWithReliability();\n  void Reinit();\n  void Add(uint8 ikey, int ibytes, int score, int ireliability);\n  int Find(uint8 ikey);\n  void AddClosePair(int subscr, int val) {closepair_[subscr] += val;}\n  int CurrentTopKey();\n  void Sort(int n);\n  void Dump(FILE* f);\n\n  ////void AddSeq(uint8 ikey) {ss_.Add(ikey);}\n  ////void ExtractSeq(int n, uint8* dst) {ss_.Extract(n, dst);}\n\n  int GetIncrCount() const {return incr_count_;}\n  int GetClosePair(int subscr) const {return closepair_[subscr];}\n  int MaxSize() const {return kMaxSize_;}\n  uint8 Key(int i) const {return key_[i];}\n  int Value(int i) const {return value_[i];}\n  int Score(int i) const {return score_[i];}\n  int Reliability(int i) const {return reliability_[i];}\n  void SetKey(int i, int v) {key_[i] = v;}\n  void SetValue(int i, int v) {value_[i] = v;}\n  void SetScore(int i, int v) {score_[i] = v;}\n  void SetReliability(int i, int v) {reliability_[i] = v;}\n\n private:\n  static const int kMaxSize_ = 24;\n  static const int kMaxClosePairSize_ = 8;\n  int incr_count_;         // Number of Add calls\n  int sorted_;             // Contents have been sorted, cannot Add\n  // Align at multiple of 8 bytes\n  int closepair_[kMaxClosePairSize_];\n  uint8 key_[kMaxSize_];    // Lang unassigned = 0, valid = 1..255\n  int value_[kMaxSize_];    // Bytecount this lang\n  int score_[kMaxSize_];    // Probability score sum\n  int reliability_[kMaxSize_];  // Percentage 0..100\n  ////SubsetSequence ss_;\n};\n\n#endif  // ENCODINGS_COMPACT_LANG_DET_TOTE_H_\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/cldutil.cc",
    "content": "// Copyright (c) 2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#include <string>\n#include \"encodings/compact_lang_det/cldutil.h\"\n#include \"encodings/compact_lang_det/cldutil_dbg.h\"\n#include \"encodings/compact_lang_det/generated/compact_lang_det_generated_meanscore.h\"\n#include \"encodings/compact_lang_det/utf8propletterscriptnum.h\"\n#include \"encodings/compact_lang_det/win/cld_commandlineflags.h\"\n#include \"encodings/compact_lang_det/win/cld_logging.h\"\n#include \"encodings/compact_lang_det/win/cld_unilib.h\"\n#include \"encodings/compact_lang_det/win/cld_utf.h\"\n#include \"encodings/compact_lang_det/win/cld_utf8statetable.h\"\n\n// Runtime routines for hashing, looking up, and scoring\n// unigrams (CJK), bigrams (CJK), quadgrams, and octagrams.\n// Unigrams and bigrams are for CJK languages only, including simplified/\n// traditional Chinese, Japanese, Korean, Vietnamese Han characters, and\n// Zhuang Han characters. Surrounding spaces are not considered.\n// Quadgrams and octagrams for for non-CJK and include two bits indicating\n// preceding and trailing spaces (word boundaries).\n\n\n// Indicator bits for leading/trailing space around quad/octagram\n// NOTE: 4444 bits are chosen to flip constant bits in hash of four chars of\n// 1-, 2-, or 3-bytes each.\nstatic const uint32 kPreSpaceIndicator =  0x00004444;\nstatic const uint32 kPostSpaceIndicator = 0x44440000;\n\n// Little-endian masks for 0..24 bytes picked up as uint32's\nstatic const uint32 kWordMask0[4] = {\n  0xFFFFFFFF, 0x000000FF, 0x0000FFFF, 0x00FFFFFF\n};\n\nstatic const int kMinCJKUTF8CharBytes = 3;\n\nstatic const int kMinGramCount = 3;\nstatic const int kMaxGramCount = 16;\n\n\n\n\n// Routines to access a hash table of <key:wordhash, value:probs> pairs\n// Buckets have 4-byte wordhash for sizes < 32K buckets, but only\n// 2-byte wordhash for sizes >= 32K buckets, with other wordhash bits used as\n// bucket subscript.\n// Probs is a packed: three languages plus a subscript for probability table\n// Buckets have all the keys together, then all the values.Key array never\n// crosses a cache-line boundary, so no-match case takes exactly one cache miss.\n// Match case may sometimes take an additional cache miss on value access.\n//\n// Other possibilites include 5 or 10 6-byte entries plus pad to make 32 or 64\n// byte buckets with single cache miss.\n// Or 2-byte key and 6-byte value, allowing 5 languages instead  of three.\n//------------------------------------------------------------------------------\n\n\n//------------------------------------------------------------------------------\n// Hashing groups of 1/2/4/8 letters, perhaps with spaces or underscores\n//------------------------------------------------------------------------------\n\n// Design principles for these hash functions\n// - Few operations\n// - Handle 1-, 2-, and 3-byte UTF-8 scripts, ignoring intermixing except in\n//   Latin script expect 1- and 2-byte mixtures.\n// - Last byte of each character has about 5 bits of information\n// - Spread good bits around so they can interact in at least two ways\n//   with other characters\n// - Use add for additional mixing thorugh carries\n\n// CJK Three-byte bigram\n//   ....dddd..cccccc..bbbbbb....aaaa\n//   ..................ffffff..eeeeee\n// make\n//   ....dddd..cccccc..bbbbbb....aaaa\n//   000....dddd..cccccc..bbbbbb....a\n//   ..................ffffff..eeeeee\n//   ffffff..eeeeee000000000000000000\n//\n// CJK Four-byte bigram\n//   ..dddddd..cccccc....bbbb....aaaa\n//   ..hhhhhh..gggggg....ffff....eeee\n// make\n//   ..dddddd..cccccc....bbbb....aaaa\n//   000..dddddd..cccccc....bbbb....a\n//   ..hhhhhh..gggggg....ffff....eeee\n//   ..ffff....eeee000000000000000000\n\n// BIGRAM\n// Pick up 1..8 bytes and hash them via mask/shift/add. NO pre/post\n// OVERSHOOTS up to 3 bytes\n// For runtime use of tables\nuint32 cld::BiHashV25(const char* word_ptr, int bytecount) {\n  if (bytecount == 0) {\n    return 0;\n  }\n  const uint32* word_ptr32 = reinterpret_cast<const uint32*>(word_ptr);\n  uint32 word0, word1;\n  if (bytecount <= 4) {\n    word0 = word_ptr32[0] & kWordMask0[bytecount & 3];\n    word0 = word0 ^ (word0 >> 3);\n    return word0;\n  }\n  // Else do 8 bytes\n  word0 = word_ptr32[0];\n  word0 = word0 ^ (word0 >> 3);\n  word1 = word_ptr32[1] & kWordMask0[bytecount & 3];\n  word1 = word1 ^ (word1 << 18);\n  return word0 + word1;\n}\n\n//\n// Ascii-7 One-byte chars\n//   ...ddddd...ccccc...bbbbb...aaaaa\n// make\n//   ...ddddd...ccccc...bbbbb...aaaaa\n//   000...ddddd...ccccc...bbbbb...aa\n//\n// Latin 1- and 2-byte chars\n//   ...ddddd...ccccc...bbbbb...aaaaa\n//   ...................fffff...eeeee\n// make\n//   ...ddddd...ccccc...bbbbb...aaaaa\n//   000...ddddd...ccccc...bbbbb...aa\n//   ...................fffff...eeeee\n//   ...............fffff...eeeee0000\n//\n// Non-CJK Two-byte chars\n//   ...ddddd...........bbbbb........\n//   ...hhhhh...........fffff........\n// make\n//   ...ddddd...........bbbbb........\n//   000...ddddd...........bbbbb.....\n//   ...hhhhh...........fffff........\n//   hhhh...........fffff........0000\n//\n// Non-CJK Three-byte chars\n//   ...........ccccc................\n//   ...................fffff........\n//   ...lllll...................iiiii\n// make\n//   ...........ccccc................\n//   000...........ccccc.............\n//   ...................fffff........\n//   ...............fffff........0000\n//   ...lllll...................iiiii\n//   .lllll...................iiiii00\n//\n\n// QUADGRAM\n// Pick up 1..12 bytes plus pre/post space and hash them via mask/shift/add\n// OVERSHOOTS up to 3 bytes\n// For runtime use of tables\nuint32 QuadHashV25Mix(const char* word_ptr, int bytecount, uint32 prepost) {\n  const uint32* word_ptr32 = reinterpret_cast<const uint32*>(word_ptr);\n  uint32 word0, word1, word2;\n  if (bytecount <= 4) {\n    word0 = word_ptr32[0] & kWordMask0[bytecount & 3];\n    word0 = word0 ^ (word0 >> 3);\n    return word0 ^ prepost;\n  } else if (bytecount <= 8) {\n    word0 = word_ptr32[0];\n    word0 = word0 ^ (word0 >> 3);\n    word1 = word_ptr32[1] & kWordMask0[bytecount & 3];\n    word1 = word1 ^ (word1 << 4);\n    return (word0 ^ prepost) + word1;\n  }\n  // else do 12 bytes\n  word0 = word_ptr32[0];\n  word0 = word0 ^ (word0 >> 3);\n  word1 = word_ptr32[1];\n  word1 = word1 ^ (word1 << 4);\n  word2 = word_ptr32[2] & kWordMask0[bytecount & 3];\n  word2 = word2 ^ (word2 << 2);\n  return (word0 ^ prepost) + word1 + word2;\n}\n\n\n// QUADGRAM wrapper with surrounding spaces\n// Pick up 1..12 bytes plus pre/post space and hash them via mask/shift/add\n// UNDERSHOOTS 1 byte, OVERSHOOTS up to 3 bytes\n// For runtime use of tables\nuint32 cld::QuadHashV25(const char* word_ptr, int bytecount) {\n  if (bytecount == 0) {\n    return 0;\n  }\n  uint32 prepost = 0;\n  if (word_ptr[-1] == ' ') {prepost |= kPreSpaceIndicator;}\n  if (word_ptr[bytecount] == ' ') {prepost |= kPostSpaceIndicator;}\n  return QuadHashV25Mix(word_ptr, bytecount, prepost);\n}\n\n// QUADGRAM wrapper with surrounding underscores (offline use)\n// Pick up 1..12 bytes plus pre/post '_' and hash them via mask/shift/add\n// OVERSHOOTS up to 3 bytes\n// For offline construction of tables\nuint32 cld::QuadHashV25Underscore(const char* word_ptr, int bytecount) {\n  if (bytecount == 0) {\n    return 0;\n  }\n  const char* local_word_ptr = word_ptr;\n  int local_bytecount = bytecount;\n  uint32 prepost = 0;\n  if (local_word_ptr[0] == '_') {\n    prepost |= kPreSpaceIndicator;\n    ++local_word_ptr;\n    --local_bytecount;\n  }\n  if (local_word_ptr[local_bytecount - 1] == '_') {\n    prepost |= kPostSpaceIndicator;\n    --local_bytecount;\n  }\n  return QuadHashV25Mix(local_word_ptr, local_bytecount, prepost);\n}\n\n\n// OCTAGRAM\n// Pick up 1..24 bytes plus pre/post space and hash them via mask/shift/add\n// UNDERSHOOTS 1 byte, OVERSHOOTS up to 3 bytes\n//\n// The low 32 bits follow the pattern from above, tuned to different scripts\n// The high 8 bits are a simple sum of all bytes, shifted by 0/1/2/3 bits each\n// For runtime use of tables V3\nuint64 OctaHash40Mix(const char* word_ptr, int bytecount, uint64 prepost) {\n  const uint32* word_ptr32 = reinterpret_cast<const uint32*>(word_ptr);\n  uint64 word0;\n  uint64 word1;\n  uint64 sum;\n\n  if (word_ptr[-1] == ' ') {prepost |= kPreSpaceIndicator;}\n  if (word_ptr[bytecount] == ' ') {prepost |= kPostSpaceIndicator;}\n  switch ((bytecount - 1) >> 2) {\n  case 0:       // 1..4 bytes\n    word0 = word_ptr32[0] & kWordMask0[bytecount & 3];\n    sum = word0;\n    word0 = word0 ^ (word0 >> 3);\n    break;\n  case 1:       // 5..8 bytes\n    word0 = word_ptr32[0];\n    sum = word0;\n    word0 = word0 ^ (word0 >> 3);\n    word1 = word_ptr32[1] & kWordMask0[bytecount & 3];\n    sum += word1;\n    word1 = word1 ^ (word1 << 4);\n    word0 += word1;\n    break;\n  case 2:       // 9..12 bytes\n    word0 = word_ptr32[0];\n    sum = word0;\n    word0 = word0 ^ (word0 >> 3);\n    word1 = word_ptr32[1];\n    sum += word1;\n    word1 = word1 ^ (word1 << 4);\n    word0 += word1;\n    word1 = word_ptr32[2] & kWordMask0[bytecount & 3];\n    sum += word1;\n    word1 = word1 ^ (word1 << 2);\n    word0 += word1;\n    break;\n  case 3:       // 13..16 bytes\n    word0 = word_ptr32[0];\n    sum = word0;\n    word0 = word0 ^ (word0 >> 3);\n    word1 = word_ptr32[1];\n    sum += word1;\n    word1 = word1 ^ (word1 << 4);\n    word0 += word1;\n    word1 = word_ptr32[2];\n    sum += word1;\n    word1 = word1 ^ (word1 << 2);\n    word0 += word1;\n    word1 = word_ptr32[3] & kWordMask0[bytecount & 3];\n    sum += word1;\n    word1 = word1 ^ (word1 >> 8);\n    word0 += word1;\n    break;\n  case 4:       // 17..20 bytes\n    word0 = word_ptr32[0];\n    sum = word0;\n    word0 = word0 ^ (word0 >> 3);\n    word1 = word_ptr32[1];\n    sum += word1;\n    word1 = word1 ^ (word1 << 4);\n    word0 += word1;\n    word1 = word_ptr32[2];\n    sum += word1;\n    word1 = word1 ^ (word1 << 2);\n    word0 += word1;\n    word1 = word_ptr32[3];\n    sum += word1;\n    word1 = word1 ^ (word1 >> 8);\n    word0 += word1;\n    word1 = word_ptr32[4] & kWordMask0[bytecount & 3];\n    sum += word1;\n    word1 = word1 ^ (word1 >> 4);\n    word0 += word1;\n    break;\n  default:      // 21..24 bytes and higher (ignores beyond 24)\n    word0 = word_ptr32[0];\n    sum = word0;\n    word0 = word0 ^ (word0 >> 3);\n    word1 = word_ptr32[1];\n    sum += word1;\n    word1 = word1 ^ (word1 << 4);\n    word0 += word1;\n    word1 = word_ptr32[2];\n    sum += word1;\n    word1 = word1 ^ (word1 << 2);\n    word0 += word1;\n    word1 = word_ptr32[3];\n    sum += word1;\n    word1 = word1 ^ (word1 >> 8);\n    word0 += word1;\n    word1 = word_ptr32[4];\n    sum += word1;\n    word1 = word1 ^ (word1 >> 4);\n    word0 += word1;\n    word1 = word_ptr32[5] & kWordMask0[bytecount & 3];\n    sum += word1;\n    word1 = word1 ^ (word1 >> 6);\n    word0 += word1;\n    break;\n  }\n\n  sum += (sum >> 17);             // extra 1-bit shift for bytes 2 & 3\n  sum += (sum >> 9);              // extra 1-bit shift for bytes 1 & 3\n  sum = (sum & 0xff) << 32;\n  return (word0 ^ prepost) + sum;\n}\n\n// OCTAGRAM wrapper with surrounding spaces\n// Pick up 1..24 bytes plus pre/post space and hash them via mask/shift/add\n// UNDERSHOOTS 1 byte, OVERSHOOTS up to 3 bytes\n//\n// The low 32 bits follow the pattern from above, tuned to different scripts\n// The high 8 bits are a simple sum of all bytes, shifted by 0/1/2/3 bits each\n// For runtime use of tables V3\nuint64 cld::OctaHash40(const char* word_ptr, int bytecount) {\n  if (bytecount == 0) {\n    return 0;\n  }\n  uint64 prepost = 0;\n  if (word_ptr[-1] == ' ') {prepost |= kPreSpaceIndicator;}\n  if (word_ptr[bytecount] == ' ') {prepost |= kPostSpaceIndicator;}\n  return OctaHash40Mix(word_ptr, bytecount, prepost);\n}\n\n\n// OCTAGRAM wrapper with surrounding underscores (offline use)\n// Pick up 1..24 bytes plus pre/post space and hash them via mask/shift/add\n// UNDERSHOOTS 1 byte, OVERSHOOTS up to 3 bytes\n//\n// The low 32 bits follow the pattern from above, tuned to different scripts\n// The high 8 bits are a simple sum of all bytes, shifted by 0/1/2/3 bits each\n// For offline construction of tables\nuint64 cld::OctaHash40underscore(const char* word_ptr, int bytecount) {\n  if (bytecount == 0) {\n    return 0;\n  }\n  const char* local_word_ptr = word_ptr;\n  int local_bytecount = bytecount;\n  uint64 prepost = 0;\n  if (local_word_ptr[0] == '_') {\n    prepost |= kPreSpaceIndicator;\n    ++local_word_ptr;\n    --local_bytecount;\n  }\n  if (local_word_ptr[local_bytecount - 1] == '_') {\n    prepost |= kPostSpaceIndicator;\n    --local_bytecount;\n  }\n  return OctaHash40Mix(local_word_ptr, local_bytecount, prepost);\n}\n\n\n\n\n//------------------------------------------------------------------------------\n// Scoring single groups of letters\n//------------------------------------------------------------------------------\n\n// UNIGRAM score one => tote\n// Input: 1-byte entry of subscript into unigram probs, plus\n//  an accumulator tote.\n// Output: running sums in tote updated\nvoid cld::ProcessProbV25UniTote(int propval, Tote* tote) {\n  tote->AddGram();\n  const UnigramProbArray* pa = &kTargetCTJKVZProbs[propval];\n  if (pa->probs[0] > 0) {tote->Add(cld::PackLanguage(CHINESE), pa->probs[0]);}\n  if (pa->probs[1] > 0) {tote->Add(cld::PackLanguage(CHINESE_T), pa->probs[1]);}\n  if (pa->probs[2] > 0) {tote->Add(cld::PackLanguage(JAPANESE), pa->probs[2]);}\n  if (pa->probs[3] > 0) {tote->Add(cld::PackLanguage(KOREAN), pa->probs[3]);}\n  if (pa->probs[4] > 0) {tote->Add(cld::PackLanguage(VIETNAMESE), pa->probs[4]);}\n  if (pa->probs[5] > 0) {tote->Add(cld::PackLanguage(ZHUANG), pa->probs[5]);}\n}\n\n// BIGRAM, QUADGRAM, OCTAGRAM score one => tote\n// Input: 4-byte entry of 3 language numbers and one probability subscript, plus\n//  an accumulator tote. (language 0 means unused entry)\n// Output: running sums in tote updated\nvoid cld::ProcessProbV25Tote(uint32 probs, Tote* tote) {\n  tote->AddGram();\n  uint8 prob123 = (probs >> 0) & 0xff;\n  const uint8* prob123_entry = cld::LgProb2TblEntry(prob123);\n\n  uint8 top1 = (probs >> 8) & 0xff;\n  if (top1 > 0) {tote->Add(top1, cld::LgProb3(prob123_entry, 0));}\n  uint8 top2 = (probs >> 16) & 0xff;\n  if (top2 > 0) {tote->Add(top2, cld::LgProb3(prob123_entry, 1));}\n  uint8 top3 = (probs >> 24) & 0xff;\n  if (top3 > 0) {tote->Add(top3, cld::LgProb3(prob123_entry, 2));}\n}\n\n\n//------------------------------------------------------------------------------\n// Routines to accumulate probabilities\n//------------------------------------------------------------------------------\n\n\n// UNIGRAM, using UTF-8 property table, advancing by 1/2/4/8 chars\n// Caller supplies table, such as compact_lang_det_generated_ctjkvz_b1_obj\n// Score up to n unigrams, returning number of bytes consumed\n// Updates tote_grams\nint cld::DoUniScoreV3(const UTF8PropObj* unigram_obj,\n                      const char* isrc, int srclen, int advance_by,\n                      int* tote_grams, int gram_limit, Tote* chunk_tote) {\n  const char* src = isrc;\n  if (FLAGS_dbgscore) {DbgScoreInit(src, srclen);}\n\n  // Property-based CJK unigram lookup\n  if (src[0] == ' ') {++src; --srclen;}\n\n  const uint8* usrc = reinterpret_cast<const uint8*>(src);\n  int usrclen = srclen;\n\n  while (usrclen > 0) {\n    int len = kAdvanceOneChar[usrc[0]];\n    // Look up property of one UTF-8 character and advance over it\n    // Return 0 if input length is zero\n    // Return 0 and advance one byte if input is ill-formed\n\n    int propval = UTF8GenericPropertyBigOneByte(unigram_obj, &usrc, &usrclen);\n\n    if (FLAGS_dbglookup) {\n      DbgUniTermToStderr(propval, usrc, len);\n    }\n\n    if (propval > 0) {\n      ProcessProbV25UniTote(propval, chunk_tote);\n      ++(*tote_grams);\n      if (FLAGS_dbgscore) {DbgScoreRecordUni((const char*)usrc, propval, len);}\n    }\n\n    // Advance by 1/2/4/8 characters (half of quad advance)\n    if (advance_by == 2) {\n      // Already advanced by 1\n    } else if (advance_by == 4) {\n      // Advance by 2 chars total, if not at end\n      if (UTFmax <= usrclen) {\n        int n = kAdvanceOneChar[*usrc]; usrc += n; usrclen -= n;\n      }\n    } else if (advance_by == 8) {\n      // Advance by 4 chars total, if not at end\n      if ((UTFmax * 3) <= usrclen) {\n        int n = kAdvanceOneChar[*usrc]; usrc += n; usrclen -= n;\n        n = kAdvanceOneChar[*usrc]; usrc += n; usrclen -= n;\n        n = kAdvanceOneChar[*usrc]; usrc += n; usrclen -= n;\n      }\n    } else {\n      // Advance by 8 chars total, if not at end\n      if ((UTFmax * 7) <= usrclen) {\n        int n = kAdvanceOneChar[*usrc]; usrc += n; usrclen -= n;\n        n = kAdvanceOneChar[*usrc]; usrc += n; usrclen -= n;\n        n = kAdvanceOneChar[*usrc]; usrc += n; usrclen -= n;\n        n = kAdvanceOneChar[*usrc]; usrc += n; usrclen -= n;\n        n = kAdvanceOneChar[*usrc]; usrc += n; usrclen -= n;\n        n = kAdvanceOneChar[*usrc]; usrc += n; usrclen -= n;\n        n = kAdvanceOneChar[*usrc]; usrc += n; usrclen -= n;\n      }\n    }\n    DCHECK(usrclen >= 0);\n\n    if (*tote_grams >= gram_limit) {\n      break;\n    }\n  }\n  if (FLAGS_dbgscore) {\n    // With advance_by>2, we consume more input to get the same number of quads\n    int len = src - isrc;\n    DbgScoreTop(src, (len * 2) / advance_by, chunk_tote);\n    DbgScoreFlush();\n  }\n\n  int consumed2 = reinterpret_cast<const char*>(usrc) - isrc;\n  return consumed2;\n}\n\n\n// BIGRAM, using hash table, always advancing by 1 char\n// Caller supplies table, such as &kCjkBiTable_obj or &kGibberishTable_obj\n// Score all bigrams in isrc, using languages that have bigrams (CJK)\n// Return number of bigrams that hit in the hash table\nint cld::DoBigramScoreV3(const cld::CLDTableSummary* bigram_obj,\n                         const char* isrc, int srclen, Tote* chunk_tote) {\n  int hit_count = 0;\n  const char* src = isrc;\n\n  // Hashtable-based CJK bigram lookup\n  const uint8* usrc = reinterpret_cast<const uint8*>(src);\n  const uint8* usrclimit1 = usrc + srclen - UTFmax;\n  if (FLAGS_dbgscore) {\n    fprintf(stderr, \"  \" );\n  }\n\n  while (usrc < usrclimit1) {\n    int len = kAdvanceOneChar[usrc[0]];\n    int len2 = kAdvanceOneChar[usrc[len]] + len;\n\n    if ((kMinCJKUTF8CharBytes * 2) <= len2) {      // Two CJK chars possible\n      // Lookup and score this bigram\n      // Always ignore pre/post spaces\n      uint32 bihash = BiHashV25(reinterpret_cast<const char*>(usrc), len2);\n      uint32 probs = QuadHashV3Lookup4(bigram_obj, bihash);\n      // Now go indirect on the subscript\n      probs = bigram_obj->kCLDTableInd[probs &\n        ~bigram_obj->kCLDTableKeyMask];\n\n      // Process the bigram\n      if (FLAGS_dbglookup) {\n        const char* ssrc = reinterpret_cast<const char*>(usrc);\n        DbgBiTermToStderr(bihash, probs, ssrc, len2);\n        DbgScoreRecord(NULL, probs, len2);\n      } else if (FLAGS_dbgscore && (probs != 0)) {\n        const char* ssrc = reinterpret_cast<const char*>(usrc);\n        DbgScoreRecord(NULL, probs, len2);\n        string temp(ssrc, len2);\n        fprintf(stderr, \"%s \", temp.c_str());\n      }\n\n      if (probs != 0) {\n        ProcessProbV25Tote(probs, chunk_tote);\n        ++hit_count;\n      }\n    }\n    usrc += len;  // Advance by one char\n  }\n\n  if (FLAGS_dbgscore) {\n    fprintf(stderr, \"[%d bigrams scored]\\n\", hit_count);\n    DbgScoreState();\n  }\n  return hit_count;\n}\n\n\n\n// QUADGRAM, using hash table, advancing by 2/4/8/16 chars\n// Caller supplies table, such as &kQuadTable_obj or &kGibberishTable_obj\n// Score up to n quadgrams, returning number of bytes consumed\n// Updates tote_grams\nint cld::DoQuadScoreV3(const cld::CLDTableSummary* quadgram_obj,\n                       const char* isrc, int srclen, int advance_by,\n                       int* tote_grams, int gram_limit, Tote* chunk_tote) {\n  const char* src = isrc;\n  const char* srclimit = src + srclen;\n  // Limit is end, which has extra 20 20 20 00 past len\n  const char* srclimit7 = src + srclen - (UTFmax * 7);\n  const char* srclimit15 = src + srclen - (UTFmax * 15);\n\n  if (FLAGS_dbgscore) {DbgScoreInit(src, srclen);}\n\n  // Run a little cache of last hits to catch overly-repetitive \"text\"\n  int next_prior = 0;\n  uint32 prior_quads[2] = {0, 0};\n\n  // Visit all quadgrams\n  if (src[0] == ' ') {++src;}\n  while (src < srclimit) {\n    // Find one quadgram\n    const char* src_end = src;\n    src_end += kAdvanceOneCharButSpace[(uint8)src_end[0]];\n    src_end += kAdvanceOneCharButSpace[(uint8)src_end[0]];\n    const char* src_mid = src_end;\n    src_end += kAdvanceOneCharButSpace[(uint8)src_end[0]];\n    src_end += kAdvanceOneCharButSpace[(uint8)src_end[0]];\n    int len = src_end - src;\n\n    // Lookup and score this quadgram\n    uint32 quadhash = QuadHashV25(src, len);\n    uint32 probs = QuadHashV3Lookup4(quadgram_obj, quadhash);\n    // Now go indirect on the subscript\n    probs = quadgram_obj->kCLDTableInd[probs &\n      ~quadgram_obj->kCLDTableKeyMask];\n\n    // Process the quadgram\n    if (FLAGS_dbglookup) {\n      DbgQuadTermToStderr(quadhash, probs, src, len);\n    }\n    if (probs != 0) {\n      // Filter out recent repeats. If this works out, use in the other lookups\n      if ((quadhash != prior_quads[0]) && (quadhash != prior_quads[1])) {\n        prior_quads[next_prior] = quadhash;\n        next_prior = (next_prior + 1) & 1;\n        ProcessProbV25Tote(probs, chunk_tote);\n        ++(*tote_grams);\n        if (FLAGS_dbgscore) {DbgScoreRecord(src, probs, len);}\n      }\n    }\n\n    // Advance all the way past word if at end-of-word\n    if (src_end[0] == ' ') {\n      src_mid = src_end;\n    }\n\n    // Advance by 2/4/8/16 characters\n    if (advance_by == 2) {\n      src = src_mid;\n    } else if (advance_by == 4) {\n      src = src_end;\n    } else if (advance_by == 8) {\n      // Advance by 8 chars total (4 more), if not at end\n      if (src < srclimit7) {\n        src_end += kAdvanceOneChar[(uint8)src_end[0]];\n        src_end += kAdvanceOneChar[(uint8)src_end[0]];\n        src_end += kAdvanceOneChar[(uint8)src_end[0]];\n        src_end += kAdvanceOneChar[(uint8)src_end[0]];\n      }\n      src = src_end;\n    } else {\n      // Advance by 16 chars total (12 more), if not at end\n      if (src < srclimit15) {\n        // Advance by ~16 chars by adding 3 * current bytelen\n        int fourcharlen = src_end - src;\n        src = src_end + (3 * fourcharlen);\n        // Advance a bit more if mid-character\n        src += kAdvanceOneCharSpaceVowel[(uint8)src[0]];\n        src += kAdvanceOneCharSpaceVowel[(uint8)src[0]];\n      } else {\n        src = src_end;\n      }\n    }\n    DCHECK(src < srclimit);\n    src += kAdvanceOneCharSpaceVowel[(uint8)src[0]];\n\n    if (*tote_grams >= gram_limit) {\n      break;\n    }\n  }\n\n  if (FLAGS_dbgscore) {\n    // With advance_by>2, we consume more input to get the same number of quads\n    int len = src - isrc;\n    DbgScoreTop(src, (len * 2) / advance_by, chunk_tote);\n    DbgScoreFlush();\n  }\n\n  int consumed = src - isrc;\n\n  // If advancing by more than 2, src may have overshot srclimit\n  if (consumed > srclen) {\n    consumed = srclen;\n  }\n\n  return consumed;\n}\n\n\n// OCTAGRAM, using hash table, always advancing by 1 word\n// Caller supplies table, such as &kLongWord8Table_obj\n// Score all words in isrc, using languages that have quadgrams\n// We don't normally use this routine except on the first quadgram run,\n// but it can be used to resolve unreliable pages.\n// This routine does not have an optimized advance_by\n// SOON: Uses indirect language/probability longword\n//\n// Return number of words that hit in the hash table\nint cld::DoOctaScoreV3(const cld::CLDTableSummary* octagram_obj,\n                       const char* isrc, int srclen, Tote* chunk_tote) {\n  int hit_count = 0;\n  const char* src = isrc;\n  const char* srclimit = src + srclen + 1;\n  // Limit is end+1, to include extra space char (0x20) off the end\n  //\n  // Score all words truncated to 8 characters\n  int charcount = 0;\n  // Skip any initial space\n  if (src[0] == ' ') {++src;}\n  const char* word_ptr = src;\n  const char* word_end = word_ptr;\n  if (FLAGS_dbgscore) {\n    fprintf(stderr, \"  \" );\n  }\n  while (src < srclimit) {\n    // Terminate previous word or continue current word\n    if (src[0] == ' ') {\n      int bytecount = word_end - word_ptr;\n      if (bytecount == 0)\n        break;\n      // Lookup and score this word\n      uint64 wordhash40 = OctaHash40(word_ptr, bytecount);\n      uint32 probs = OctaHashV3Lookup4(octagram_obj, wordhash40);\n      // Now go indirect on the subscript\n      probs = octagram_obj->kCLDTableInd[probs &\n        ~octagram_obj->kCLDTableKeyMask];\n\n      // // Lookup and score this word\n      // uint32 wordhash = QuadHashV25(word_ptr, bytecount);\n      // uint32 probs = WordHashLookup4(wordhash, kLongWord8Table,\n      //                                kLongWord8TableSize);\n      //\n      if (FLAGS_dbglookup) {\n        DbgWordTermToStderr(wordhash40, probs, word_ptr, bytecount);\n        DbgScoreRecord(NULL, probs, bytecount);\n      } else if (FLAGS_dbgscore && (probs != 0)) {\n        DbgScoreRecord(NULL, probs, bytecount);\n        string temp(word_ptr, bytecount);\n        fprintf(stderr, \"%s \", temp.c_str());\n      }\n\n      if (probs != 0) {\n        ProcessProbV25Tote(probs, chunk_tote);\n        ++hit_count;\n      }\n      charcount = 0;\n      word_ptr = src + 1;   // Over the space\n      word_end = word_ptr;\n    } else {\n      ++charcount;\n    }\n\n    // Advance to next char\n    src += cld_UniLib::OneCharLen(src);\n    if (charcount <= 8) {\n      word_end = src;\n    }\n  }\n\n  if (FLAGS_dbgscore) {\n    fprintf(stderr, \"[%d words scored]\\n\", hit_count);\n    DbgScoreState();\n  }\n  return hit_count;\n}\n\n\n\n//------------------------------------------------------------------------------\n// Reliability calculations, for single language and between languages\n//------------------------------------------------------------------------------\n\n// Return reliablity of result 0..100 for top two scores\n// delta==0 is 0% reliable, delta==fully_reliable_thresh is 100% reliable\n// (on a scale where +1 is a factor of  2 ** 1.6 = 3.02)\n// Threshold is uni/quadgram increment count, bounded above and below.\n//\n// Requiring a factor of 3 improvement (e.g. +1 log base 3)\n// for each scored quadgram is too stringent, so I've backed this off to a\n// factor of 2 (e.g. +5/8 log base 3).\n//\n// I also somewhat lowered the Min/MaxGramCount limits above\n//\n// Added: if fewer than 8 quads/unis, max reliability is 12*n percent\n//\nint cld::ReliabilityDelta(int value1, int value2, int gramcount) {\n  int max_reliability_percent = 100;\n  if (gramcount < 8) {\n    max_reliability_percent = 12 * gramcount;\n  }\n  int fully_reliable_thresh = (gramcount * 5) >> 3;     // see note above\n  if (fully_reliable_thresh < kMinGramCount) {          // Fully = 3..16\n    fully_reliable_thresh = kMinGramCount;\n  } else if (fully_reliable_thresh > kMaxGramCount) {\n    fully_reliable_thresh = kMaxGramCount;\n  }\n\n  int delta = value1 - value2;\n  if (delta >= fully_reliable_thresh) {return max_reliability_percent;}\n  if (delta <= 0) {return 0;}\n  return cld::minint(max_reliability_percent,\n                     (100 * delta) / fully_reliable_thresh);\n}\n\n// Return reliablity of result 0..100 for top score vs. mainsteam score\n// Values are score per 1024 bytes of input\n// ratio = max(top/mainstream, mainstream/top)\n// ratio > 4.0 is 0% reliable, <= 2.0 is 100% reliable\n// Change: short-text word scoring can give unusually good results.\n//  Let top exceed mainstream by 4x at 50% reliable\nint cld::ReliabilityMainstream(int topscore, int len, int mean_score) {\n  if (mean_score == 0) {return 100;}    // No reliability data available yet\n  if (topscore == 0) {return 0;}        // zero score = unreliable\n  if (len == 0) {return 0;}             // zero len = unreliable\n  int top_kb = (topscore << 10) / len;\n  double ratio;\n  double ratio_cutoff;\n  if (top_kb > mean_score) {\n    ratio = (1.0 * top_kb) / mean_score;\n    ratio_cutoff = 5.0;                 // ramp down from 100% to 0%: 3.0-5.0\n  } else {\n    ratio = (1.0 * mean_score) / top_kb;\n    ratio_cutoff = 4.0;                 // ramp down from 100% to 0%: 2.0-4.0\n  }\n  if (ratio <= ratio_cutoff - 2.0) {return 100;}\n  if (ratio > ratio_cutoff) {return 0;}\n\n  int iratio = static_cast<int>(100 * (ratio_cutoff - ratio) / 2.0);\n  return iratio;\n}\n\n// Calculate ratio of score per 1KB vs. expected score per 1KB\ndouble cld::GetNormalizedScore(Language lang, UnicodeLScript lscript,\n                          int bytes, int score) {\n  // Average training-data score for this language-script combo, per 1KB\n  int expected_score = kMeanScore[lang * 4 + LScript4(lscript)];\n  if (lscript == ULScript_Common) {\n    // We don't know the script (only happens with second-chance score)\n    // Look for first non-zero mean value\n    for (int i = 0; i < 3; ++i) {\n      if (kMeanScore[lang * 4 + i] > 0) {\n        expected_score = kMeanScore[lang * 4 + i];\n      }\n    }\n  }\n  if (expected_score < 100) {\n      expected_score = 1000;\n  }\n\n  // Our score per 1KB\n  double our_score = (score << 10) / (bytes ? bytes : 1);  // Avoid zdiv\n  double ratio = our_score / expected_score;\n\n  // Just the raw count normalized as though each language has mean=1000;\n  ratio = (score * 1000.0) /  expected_score;\n  return ratio;\n}\n\n// Calculate reliablity of len bytes of script lscript with chunk_tote\nint cld::GetReliability(int len, UnicodeLScript lscript,\n                   const Tote* chunk_tote) {\n  Language cur_lang = UnpackLanguage(chunk_tote->Key(0));\n  // Average score for this language-script combo\n  int mean_score = kMeanScore[cur_lang * 4 + LScript4(lscript)];\n  if (lscript == ULScript_Common) {\n    // We don't know the script (only happens with second-chance score)\n    // Look for first non-zero mean value\n    for (int i = 0; i < 3; ++i) {\n      if (kMeanScore[cur_lang * 4 + i] > 0) {\n        mean_score = kMeanScore[cur_lang * 4 + i];\n      }\n    }\n  }\n  int reliability_delta = ReliabilityDelta(chunk_tote->Value(0),\n                                           chunk_tote->Value(1),\n                                           chunk_tote->GetGramCount());\n\n  int reliability_main = ReliabilityMainstream(chunk_tote->Value(0),\n                                               len,\n                                               mean_score);\n\n  int reliability_min = minint(reliability_delta, reliability_main);\n\n\n  if (FLAGS_dbgreli) {\n    char temp1[4];\n    char temp2[4];\n    cld::DbgLangName3(UnpackLanguage(chunk_tote->Key(0)), temp1);\n    if (temp1[2] == ' ') {temp1[2] = '\\0';}\n    cld::DbgLangName3(UnpackLanguage(chunk_tote->Key(1)), temp2);\n    if (temp2[2] == ' ') {temp2[2] = '\\0';}\n    int srclen = len;\n    fprintf(stderr, \"CALC GetReliability gram=%d incr=%d srclen=%d,  %s=%d %s=%d \"\n                   \"top/KB=%d mean/KB=%d del=%d%% reli=%d%%   \"\n                   \"lang/lscript %d %d\\n\",\n           chunk_tote->GetGramCount(),\n           chunk_tote->GetIncrCount(),\n           srclen,\n           temp1, chunk_tote->Value(0),\n           temp2, chunk_tote->Value(1),\n           (chunk_tote->Value(0) << 10) / (srclen ? srclen : 1),\n           mean_score,\n           reliability_delta,\n           reliability_main,\n           cur_lang, lscript);\n  }\n\n  return reliability_min;\n}\n\n\n//------------------------------------------------------------------------------\n// Miscellaneous\n//------------------------------------------------------------------------------\n\n// Demote all languages except Top40 and plus_one\n// Do this just before sorting chunk_tote results\nvoid cld::DemoteNotTop40(Tote* chunk_tote, int packed_plus_one) {\n  for (int sub = 0; sub < chunk_tote->MaxSize(); ++sub) {\n    if (chunk_tote->Key(sub) == 0) continue;\n    if (chunk_tote->Key(sub) == packed_plus_one) continue;\n    if (kIsPackedTop40[chunk_tote->Key(sub)]) continue;\n    // Quarter the score of others\n    chunk_tote->SetValue(sub, chunk_tote->Value(sub) >> 2);\n  }\n}\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/cldutil.h",
    "content": "// Copyright (c) 2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef ENCODINGS_COMPACT_LANG_DET_CLDUTIL_H_\n#define ENCODINGS_COMPACT_LANG_DET_CLDUTIL_H_\n\n#include <string>\n#include \"encodings/compact_lang_det/ext_lang_enc.h\"\n#include \"encodings/compact_lang_det/tote.h\"\n#include \"encodings/compact_lang_det/win/cld_basictypes.h\"\n#include \"encodings/compact_lang_det/win/cld_commandlineflags.h\"\n#include \"encodings/compact_lang_det/win/cld_utf8statetable.h\"\n\nnamespace cld {\n\n  // Hash bucket for four-way associative lookup with < 64K buckets\n  // 32 bytes per bucket, 8-byte entries\n  typedef struct {\n    uint32 key[4];        // hashed word to look up\n    uint32 value[4];      // packed three lang numbers and probability subscript\n  } SmallWordProbBucket4;\n\n  // Hash bucket for fouro-way associative lookup with >= 64K buckets\n  // 24 bytes per bucket, 6-byte entries\n  typedef struct {\n    uint16 key[4];        // Half of hashed word to look up; other\n                          //  half is used to pick the bucket\n    uint32 value[4];      // packed three lang numbers and probability subscript\n  } LargeQuadProbBucket4;\n\n  // Hash bucket for four-way associative lookup, indirect probabilities\n  // 16 bytes per bucket, 4-byte entries\n  typedef struct {\n    uint32 keyvalue[4];   // Upper part of word is hash, lower is indirect prob\n  } IndirectProbBucket4;\n\n\n  // This describes a complete CLD table, consisting of\n  // a main lookup table, an indirect language/probability table, and\n  // three constants.\n  // The main table key is a quadgram, bigram, or longword hash, with\n  // part of the key used to select a bucket modulo kCLDTableSize,\n  // and the rest matched against the key portion of four entries in a bucket,\n  // defined by kCLDTableKeyMask. The remaining bits of an entry, defined\n  // by ~kCLDTableKeyMask, are usually a subscript in the indirect table.\n  //\n  // By using part of the key to select a bucket, those key bits do not need\n  // to be stored in the main table entries, saving space (typically 2 bytes).\n  //\n  // By using an indirect table for lang/prob triples, only the subscript needs\n  // to be stored in the main table entires, saving space (typically 2 bytes).\n  //\n  // Each entry in the indirect table has three languages and three\n  // corresponding probabilities, packed into four bytes.\n  //\n  // The build date constant is included just for version tracking and is not\n  // otherwise used.\n  //\n  // Different-size tables can be linked in for different production\n  // environments. By going indirect through this struct, the runtime code is\n  // insensitive to the actual sizes.\n  //\n  // An empty placeholder table can be described by a table size of 1\n  // bucket, a keymask of 0xffffffff, a degenerate bucket of four no-match\n  // entries, and a degenerate indirect table of one no-languages entry.\n  //\n  //\n  struct CLDTableSummary {\n    const IndirectProbBucket4* kCLDTable;\n                                        // Each bucket has four entries, part\n                                        //  key and part indirect subscript\n    const uint32* kCLDTableInd;         // Each entry is three packed lang/prob\n    const int kCLDTableSize;            // Bucket count\n    const int kCLDTableIndSize;         // Entries count\n    const int kCLDTableKeyMask;         // Mask hash key\n    const int kCLDTableBuildDate;       // yyyymmdd\n  };\n\n\n  // Keeps per-character 0-12 language probabilities for CTJKVZ-- in that order.\n  // Chinese ChineseT Japanese Korean Vietnamese Zhuang\n  // (2 bytes unused, for alignment padding and future)\n  typedef struct {\n    uint8 probs[8];\n  } UnigramProbArray;\n\n  // Map 8-bit subscript to CTJKVZ probabilities\n  // Target runtime probabilities for CTJK + VZ\n  // Hand-generated to cover a reasonable range of choices\n  static const int kTargetCTJKVZProbsSize = 242;\n  static const UnigramProbArray kTargetCTJKVZProbs[kTargetCTJKVZProbsSize] = {\n    {{0,0,0,0,0,0,0,0}},\n    {{0,0,0,0,0,12,0,0}},\n    {{0,0,0,0,12,0,0,0}},\n    {{0,0,0,12,0,0,0,0}},\n    {{0,0,12,0,0,0,0,0}},\n    {{0,12,0,0,0,0,0,0}},\n    {{12,0,0,0,0,0,0,0}},\n\n    {{8,0,0,0,4,0,0,0}},\n    {{8,0,0,4,0,0,0,0}},\n    {{8,0,4,0,0,0,0,0}},\n    {{8,4,0,0,0,0,0,0}},\n    {{8,2,0,2,0,0,0,0}},\n    {{0,0,0,0,0,8,0,0}},\n    {{0,4,8,0,0,0,0,0}},\n    {{4,0,0,0,0,8,0,0}},\n    {{0,0,8,0,0,0,0,0}},\n    {{8,2,2,0,0,0,0,0}},\n    {{0,8,4,0,0,0,0,0}},\n    {{8,0,0,0,0,4,0,0}},\n    {{0,8,2,0,0,0,0,0}},\n    {{4,8,0,0,0,0,0,0}},\n    {{2,8,0,2,0,0,0,0}},\n    {{2,2,8,0,0,0,0,0}},\n    {{0,8,0,0,0,0,0,0}},\n    {{0,2,8,0,0,0,0,0}},\n    {{2,8,2,0,0,0,0,0}},\n    {{8,0,0,0,0,0,0,0}},\n    {{2,8,0,0,0,0,0,0}},\n    {{8,2,0,0,0,0,0,0}},\n\n    {{0,6,2,0,2,0,0,0}},\n    {{2,0,0,0,6,0,0,0}},\n    {{4,0,0,0,6,0,0,0}},\n    {{4,6,0,0,4,0,0,0}},\n    {{4,6,2,0,2,0,0,0}},\n    {{4,6,4,0,2,0,0,0}},\n    {{5,4,6,0,0,0,0,0}},\n    {{6,0,0,0,4,0,0,0}},\n    {{6,0,2,0,4,0,0,0}},\n    {{6,0,4,0,4,0,0,0}},\n    {{6,2,0,0,4,0,0,0}},\n    {{6,2,2,0,4,0,0,0}},\n    {{6,2,4,0,2,0,0,0}},\n    {{6,4,0,0,2,0,0,0}},\n    {{6,4,2,0,2,0,0,0}},\n    {{0,0,6,2,0,0,0,0}},\n    {{0,6,2,0,0,2,0,0}},\n    {{2,2,2,0,0,6,0,0}},\n    {{2,2,6,4,0,0,0,0}},\n    {{2,4,0,0,0,6,0,0}},\n    {{2,6,0,4,0,0,0,0}},\n    {{2,6,2,4,0,0,0,0}},\n    {{2,6,4,4,0,0,0,0}},\n    {{4,0,2,0,0,6,0,0}},\n    {{4,2,6,2,0,0,0,0}},\n    {{4,4,2,0,0,6,0,0}},\n    {{4,6,4,0,0,2,0,0}},\n    {{6,0,2,0,0,2,0,0}},\n    {{6,2,0,0,0,2,0,0}},\n    {{6,2,2,0,0,4,0,0}},\n    {{6,2,4,0,0,2,0,0}},\n    {{4,6,2,0,0,4,0,0}},\n    {{6,4,2,0,0,4,0,0}},\n    {{2,0,0,0,0,6,0,0}},\n    {{6,2,0,2,0,0,0,0}},\n    {{2,2,0,0,0,6,0,0}},\n    {{6,2,6,0,0,0,0,0}},\n    {{6,4,2,0,0,2,0,0}},\n    {{6,4,2,2,0,0,0,0}},\n    {{4,6,4,2,0,0,0,0}},\n    {{6,0,2,0,0,4,0,0}},\n    {{6,0,4,0,0,2,0,0}},\n    {{6,0,6,0,0,0,0,0}},\n    {{6,2,2,0,0,0,0,0}},\n    {{6,4,0,0,0,2,0,0}},\n    {{6,4,5,0,0,0,0,0}},\n    {{0,6,0,2,0,0,0,0}},\n    {{0,6,2,2,0,0,0,0}},\n    {{2,6,0,2,0,0,0,0}},\n    {{2,6,2,2,0,0,0,0}},\n    {{4,2,0,0,0,6,0,0}},\n    {{6,4,0,0,0,4,0,0}},\n    {{6,4,0,2,0,0,0,0}},\n    {{6,6,0,2,0,0,0,0}},\n    {{6,0,4,0,0,4,0,0}},\n    {{6,2,0,0,0,4,0,0}},\n    {{6,6,2,2,0,0,0,0}},\n    {{4,6,0,0,0,2,0,0}},\n    {{2,6,6,0,0,0,0,0}},\n    {{4,5,6,0,0,0,0,0}},\n    {{4,6,0,2,0,0,0,0}},\n    {{6,2,0,0,0,6,0,0}},\n    {{0,6,4,2,0,0,0,0}},\n    {{4,0,6,0,0,0,0,0}},\n    {{2,6,4,2,0,0,0,0}},\n    {{4,6,0,0,0,4,0,0}},\n    {{6,2,2,0,0,0,0,0}},\n    {{4,6,2,2,0,0,0,0}},\n    {{4,6,5,0,0,0,0,0}},\n    {{6,0,2,0,0,0,0,0}},\n    {{6,4,4,0,0,0,0,0}},\n    {{4,2,6,0,0,0,0,0}},\n    {{2,0,6,0,0,0,0,0}},\n    {{4,4,0,0,0,6,0,0}},\n    {{4,4,6,0,0,0,0,0}},\n    {{4,6,2,0,0,2,0,0}},\n    {{2,2,6,0,0,0,0,0}},\n    {{2,4,6,0,0,0,0,0}},\n    {{0,6,6,0,0,0,0,0}},\n    {{6,2,4,0,0,0,0,0}},\n    {{0,4,6,0,0,0,0,0}},\n    {{4,0,0,0,0,6,0,0}},\n    {{4,6,4,0,0,0,0,0}},\n    {{6,0,0,0,0,6,0,0}},\n    {{6,0,0,0,0,2,0,0}},\n    {{6,0,4,0,0,0,0,0}},\n    {{6,5,4,0,0,0,0,0}},\n    {{0,2,6,0,0,0,0,0}},\n    {{0,0,6,0,0,0,0,0}},\n    {{6,6,2,0,0,0,0,0}},\n    {{2,6,4,0,0,0,0,0}},\n    {{6,4,2,0,0,0,0,0}},\n    {{2,6,2,0,0,0,0,0}},\n    {{2,6,0,0,0,0,0,0}},\n    {{6,0,0,0,0,4,0,0}},\n    {{6,4,0,0,0,0,0,0}},\n    {{6,6,0,0,0,0,0,0}},\n    {{5,6,4,0,0,0,0,0}},\n    {{0,6,0,0,0,0,0,0}},\n    {{6,2,0,0,0,0,0,0}},\n    {{0,6,2,0,0,0,0,0}},\n    {{4,6,2,0,0,0,0,0}},\n    {{0,6,4,0,0,0,0,0}},\n    {{4,6,0,0,0,0,0,0}},\n    {{6,0,0,0,0,0,0,0}},\n    {{6,6,5,0,0,0,0,0}},\n    {{6,5,6,0,0,0,0,0}},\n    {{5,6,6,0,0,0,0,0}},\n    {{5,5,6,0,0,0,0,0}},\n    {{5,6,5,0,0,0,0,0}},\n    {{6,5,5,0,0,0,0,0}},\n    {{6,6,6,0,0,0,0,0}},\n    {{6,5,0,0,0,0,0,0}},\n    {{6,0,5,0,0,0,0,0}},\n    {{0,6,5,0,0,0,0,0}},\n    {{5,6,0,0,0,0,0,0}},\n    {{5,0,6,0,0,0,0,0}},\n    {{0,5,6,0,0,0,0,0}},\n\n    {{0,0,0,0,4,0,0,0}},\n    {{0,0,0,4,0,0,0,0}},\n    {{2,2,0,0,4,0,0,0}},\n    {{2,2,2,0,4,0,0,0}},\n    {{2,4,0,0,2,0,0,0}},\n    {{2,4,2,0,2,0,0,0}},\n    {{2,4,4,0,2,0,0,0}},\n    {{4,0,2,0,4,0,0,0}},\n    {{4,0,4,0,2,0,0,0}},\n    {{4,2,0,0,2,0,0,0}},\n    {{4,2,2,0,2,0,0,0}},\n    {{4,4,0,0,2,0,0,0}},\n    {{4,4,2,0,2,0,0,0}},\n    {{4,4,4,0,2,0,0,0}},\n    {{0,2,2,4,0,0,0,0}},\n    {{2,2,4,2,0,0,0,0}},\n    {{2,4,4,0,0,2,0,0}},\n    {{2,4,4,2,0,0,0,0}},\n    {{4,0,4,0,0,2,0,0}},\n    {{4,0,4,0,0,4,0,0}},\n    {{4,2,2,4,0,0,0,0}},\n    {{4,4,0,2,0,0,0,0}},\n    {{2,2,0,4,0,0,0,0}},\n    {{2,4,2,2,0,0,0,0}},\n    {{4,4,2,2,0,0,0,0}},\n    {{4,0,4,0,0,0,0,0}},\n    {{4,4,4,0,0,4,0,0}},\n    {{0,4,0,2,0,0,0,0}},\n    {{0,4,2,2,0,0,0,0}},\n    {{4,0,2,0,0,2,0,0}},\n    {{4,2,0,0,0,4,0,0}},\n    {{2,2,2,0,0,4,0,0}},\n    {{4,0,0,2,0,0,0,0}},\n    {{4,4,4,0,0,2,0,0}},\n    {{4,0,0,0,0,4,0,0}},\n    {{4,0,2,0,0,4,0,0}},\n    {{4,2,0,0,0,2,0,0}},\n    {{4,2,2,0,0,2,0,0}},\n    {{2,4,0,2,0,0,0,0}},\n    {{2,2,0,0,0,4,0,0}},\n    {{2,4,0,0,0,4,0,0}},\n    {{2,4,2,0,0,4,0,0}},\n    {{4,2,4,0,0,0,0,0}},\n    {{2,0,4,0,0,0,0,0}},\n    {{4,0,2,0,0,0,0,0}},\n    {{4,4,0,0,0,4,0,0}},\n    {{4,4,2,0,0,4,0,0}},\n    {{0,4,4,0,0,0,0,0}},\n    {{4,4,0,0,0,2,0,0}},\n    {{2,4,0,0,0,2,0,0}},\n    {{2,2,4,0,0,0,0,0}},\n    {{0,2,4,0,0,0,0,0}},\n    {{4,2,2,0,0,0,0,0}},\n    {{2,4,2,0,0,2,0,0}},\n    {{4,4,4,0,0,0,0,0}},\n    {{2,4,4,0,0,0,0,0}},\n    {{0,0,4,0,0,0,0,0}},\n    {{0,4,2,0,0,0,0,0}},\n    {{4,4,2,0,0,2,0,0}},\n    {{2,4,2,0,0,0,0,0}},\n    {{4,2,0,0,0,0,0,0}},\n    {{4,4,0,0,0,0,0,0}},\n    {{4,4,2,0,0,0,0,0}},\n    {{2,4,0,0,0,0,0,0}},\n    {{0,4,0,0,0,0,0,0}},\n    {{4,0,0,0,0,0,0,0}},\n    {{0,0,0,4,4,0,0,0}},\n    {{0,0,4,0,4,0,0,0}},\n    {{0,0,4,4,0,0,0,0}},\n    {{0,4,0,0,4,0,0,0}},\n    {{0,4,0,4,0,0,0,0}},\n    {{4,0,0,0,4,0,0,0}},\n    {{4,0,0,4,0,0,0,0}},\n\n    {{2,0,0,0,0,0,0,0}},\n    {{0,2,0,0,0,0,0,0}},\n    {{0,2,0,2,2,0,0,0}},\n    {{0,2,2,0,2,0,0,0}},\n    {{2,0,0,2,2,0,0,0}},\n    {{2,0,2,0,2,0,0,0}},\n    {{2,0,2,2,0,0,0,0}},\n    {{2,2,0,0,2,0,0,0}},\n    {{2,2,2,2,0,0,0,0}},\n    {{2,2,0,2,0,0,0,0}},\n    {{2,2,0,0,0,0,0,0}},\n    {{0,0,2,0,0,0,0,0}},\n    {{0,2,2,0,0,0,0,0}},\n    {{2,2,2,0,0,0,0,0}},\n    {{0,0,0,2,0,0,0,0}},\n    {{2,0,2,0,0,0,0,0}},\n    {{0,2,0,2,0,0,0,0}},\n    {{0,0,2,2,0,0,0,0}},\n    {{0,2,2,2,0,0,0,0}},\n  };\n\n\n\n\n  // 1 to skip ASCII space, vowels AEIOU aeiou and UTF-8 continuation bytes 80-BF\n  static const uint8 kSkipSpaceVowelContinue[256] = {\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n    1,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n    0,1,0,0,0,1,0,0, 0,1,0,0,0,0,0,1, 0,0,0,0,0,1,0,0, 0,0,0,0,0,0,0,0,\n    0,1,0,0,0,1,0,0, 0,1,0,0,0,0,0,1, 0,0,0,0,0,1,0,0, 0,0,0,0,0,0,0,0,\n\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  };\n\n  // 1 to skip ASCII space, and UTF-8 continuation bytes 80-BF\n  static const uint8 kSkipSpaceContinue[256] = {\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n    1,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  };\n\n\n  // If != UNKNOWN, use nilgrams to determine language of this script\n  static const Language kOnlyLanguagePerLScript[] = {\n    ENGLISH,            // ULScript_Common, [no words should be in this script]\n    UNKNOWN_LANGUAGE,   // ULScript_Latin,\n    //UNKNOWN_LANGUAGE,   // ULScript_Greek,  Jan 2009: change so we can score quads\n    GREEK,              // ULScript_Greek,  Mar 2009: change back; do gibberish separately\n    UNKNOWN_LANGUAGE,   // ULScript_Cyrillic,\n    ARMENIAN,           // ULScript_Armenian,\n    UNKNOWN_LANGUAGE,   // ULScript_Hebrew,\n    UNKNOWN_LANGUAGE,   // ULScript_Arabic,\n    SYRIAC,             // ULScript_Syriac,\n    DHIVEHI,            // ULScript_Thaana,\n    UNKNOWN_LANGUAGE,   // ULScript_Devanagari,\n    UNKNOWN_LANGUAGE,   // ULScript_Bengali,\n    PUNJABI,            // ULScript_Gurmukhi,\n    GUJARATI,           // ULScript_Gujarati,\n    ORIYA,              // ULScript_Oriya,\n    TAMIL,              // ULScript_Tamil,\n    TELUGU,             // ULScript_Telugu,\n    KANNADA,            // ULScript_Kannada,\n    MALAYALAM,          // ULScript_Malayalam,\n    SINHALESE,          // ULScript_Sinhala,\n    THAI,               // ULScript_Thai,\n    LAOTHIAN,           // ULScript_Lao,\n    UNKNOWN_LANGUAGE,   // ULScript_Tibetan,\n    BURMESE,            // ULScript_Myanmar,\n    GEORGIAN,           // ULScript_Georgian,\n    UNKNOWN_LANGUAGE,   // ULScript_HanCJK,\n    UNKNOWN_LANGUAGE,   // ULScript_Ethiopic,\n    CHEROKEE,           // ULScript_Cherokee,\n    INUKTITUT,          // ULScript_Canadian_Aboriginal,\n    X_OGHAM,            // ULScript_Ogham,\n    X_RUNIC,            // ULScript_Runic,\n    KHMER,              // ULScript_Khmer,\n    MONGOLIAN,          // ULScript_Mongolian,\n    X_YI,               // ULScript_Yi,\n    X_OLD_ITALIC,       // ULScript_Old_Italic,\n    X_GOTHIC,           // ULScript_Gothic,\n    X_DESERET,          // ULScript_Deseret,\n    ENGLISH,            // ULScript_Inherited, [no words should be in this script]\n    TAGALOG,            // ULScript_Tagalog,\n    X_HANUNOO,          // ULScript_Hanunoo,\n    X_BUHID,            // ULScript_Buhid,\n    X_TAGBANWA,         // ULScript_Tagbanwa,\n    LIMBU,              // ULScript_Limbu,\n    X_TAI_LE,           // ULScript_Tai_Le,\n    X_LINEAR_B,         // ULScript_Linear_B,\n    X_UGARITIC,         // ULScript_Ugaritic,\n    X_SHAVIAN,          // ULScript_Shavian,\n    X_OSMANYA,          // ULScript_Osmanya,\n    X_CYPRIOT,          // ULScript_Cypriot,\n    X_BUGINESE,         // ULScript_Buginese,\n    X_COPTIC,           // ULScript_Coptic,\n    X_NEW_TAI_LUE,      // ULScript_New_Tai_Lue,\n    X_GLAGOLITIC,       // ULScript_Glagolitic,\n    X_TIFINAGH,         // ULScript_Tifinagh,\n    X_SYLOTI_NAGRI,     // ULScript_Syloti_Nagri,\n    X_OLD_PERSIAN,      // ULScript_Old_Persian,\n    X_KHAROSHTHI,       // ULScript_Kharoshthi,\n    X_BALINESE,         // ULScript_Balinese,\n    X_CUNEIFORM,        // ULScript_Cuneiform,\n    X_PHOENICIAN,       // ULScript_Phoenician,\n    X_PHAGS_PA,         // ULScript_Phags_Pa,\n    X_NKO,              // ULScript_Nko,\n\n    // Unicode 5.1\n    X_SUDANESE,         // ULScript_Sundanese,\n    X_LEPCHA,           // ULScript_Lepcha,\n    X_OL_CHIKI,         // ULScript_Ol_Chiki,\n    X_VAI,              // ULScript_Vai,\n    X_SAURASHTRA,       // ULScript_Saurashtra,\n    X_KAYAH_LI,         // ULScript_Kayah_Li,\n    X_REJANG,           // ULScript_Rejang,\n    X_LYCIAN,           // ULScript_Lycian,\n    X_CARIAN,           // ULScript_Carian,\n    X_LYDIAN,           // ULScript_Lydian,\n    X_CHAM,             // ULScript_Cham,\n  };\n\n  COMPILE_ASSERT(arraysize(kOnlyLanguagePerLScript) == ULScript_NUM_SCRIPTS,\n       kOnlyLanguagePerLScript_has_incorrect_length);\n\n\n  // This is, in a sense, the complement of the table above\n  // If != UNKNOWN, determines a default language of this script\n  static const Language kDefaultLanguagePerLScript[] = {\n    UNKNOWN_LANGUAGE,            // ULScript_Common, [no words should be in this script]\n    ENGLISH,   // ULScript_Latin,\n    UNKNOWN_LANGUAGE,              // ULScript_Greek,\n    RUSSIAN,   // ULScript_Cyrillic,\n    UNKNOWN_LANGUAGE,           // ULScript_Armenian,\n    HEBREW,   // ULScript_Hebrew,\n    ARABIC,   // ULScript_Arabic,\n    UNKNOWN_LANGUAGE,             // ULScript_Syriac,\n    UNKNOWN_LANGUAGE,            // ULScript_Thaana,\n    HINDI,   // ULScript_Devanagari,\n    BENGALI,   // ULScript_Bengali,\n    UNKNOWN_LANGUAGE,            // ULScript_Gurmukhi,\n    UNKNOWN_LANGUAGE,           // ULScript_Gujarati,\n    UNKNOWN_LANGUAGE,              // ULScript_Oriya,\n    UNKNOWN_LANGUAGE,              // ULScript_Tamil,\n    UNKNOWN_LANGUAGE,             // ULScript_Telugu,\n    UNKNOWN_LANGUAGE,            // ULScript_Kannada,\n    UNKNOWN_LANGUAGE,          // ULScript_Malayalam,\n    UNKNOWN_LANGUAGE,          // ULScript_Sinhala,\n    UNKNOWN_LANGUAGE,               // ULScript_Thai,\n    UNKNOWN_LANGUAGE,           // ULScript_Lao,\n    TIBETAN,   // ULScript_Tibetan,\n    UNKNOWN_LANGUAGE,            // ULScript_Myanmar,\n    UNKNOWN_LANGUAGE,           // ULScript_Georgian,\n    CHINESE,   // ULScript_HanCJK,\n    AMHARIC,   // ULScript_Ethiopic,\n    UNKNOWN_LANGUAGE,           // ULScript_Cherokee,\n    UNKNOWN_LANGUAGE,          // ULScript_Canadian_Aboriginal,\n    UNKNOWN_LANGUAGE,            // ULScript_Ogham,\n    UNKNOWN_LANGUAGE,            // ULScript_Runic,\n    UNKNOWN_LANGUAGE,              // ULScript_Khmer,\n    UNKNOWN_LANGUAGE,          // ULScript_Mongolian,\n    UNKNOWN_LANGUAGE,               // ULScript_Yi,\n    UNKNOWN_LANGUAGE,       // ULScript_Old_Italic,\n    UNKNOWN_LANGUAGE,           // ULScript_Gothic,\n    UNKNOWN_LANGUAGE,          // ULScript_Deseret,\n    UNKNOWN_LANGUAGE,            // ULScript_Inherited, [no words should be in this script]\n    UNKNOWN_LANGUAGE,            // ULScript_Tagalog,\n    UNKNOWN_LANGUAGE,          // ULScript_Hanunoo,\n    UNKNOWN_LANGUAGE,            // ULScript_Buhid,\n    UNKNOWN_LANGUAGE,         // ULScript_Tagbanwa,\n    UNKNOWN_LANGUAGE,              // ULScript_Limbu,\n    UNKNOWN_LANGUAGE,           // ULScript_Tai_Le,\n    UNKNOWN_LANGUAGE,         // ULScript_Linear_B,\n    UNKNOWN_LANGUAGE,         // ULScript_Ugaritic,\n    UNKNOWN_LANGUAGE,          // ULScript_Shavian,\n    UNKNOWN_LANGUAGE,          // ULScript_Osmanya,\n    UNKNOWN_LANGUAGE,          // ULScript_Cypriot,\n    UNKNOWN_LANGUAGE,         // ULScript_Buginese,\n    UNKNOWN_LANGUAGE,           // ULScript_Coptic,\n    UNKNOWN_LANGUAGE,      // ULScript_New_Tai_Lue,\n    UNKNOWN_LANGUAGE,       // ULScript_Glagolitic,\n    UNKNOWN_LANGUAGE,         // ULScript_Tifinagh,\n    UNKNOWN_LANGUAGE,     // ULScript_Syloti_Nagri,\n    UNKNOWN_LANGUAGE,      // ULScript_Old_Persian,\n    UNKNOWN_LANGUAGE,       // ULScript_Kharoshthi,\n    UNKNOWN_LANGUAGE,         // ULScript_Balinese,\n    UNKNOWN_LANGUAGE,        // ULScript_Cuneiform,\n    UNKNOWN_LANGUAGE,       // ULScript_Phoenician,\n    UNKNOWN_LANGUAGE,         // ULScript_Phags_Pa,\n    UNKNOWN_LANGUAGE,              // ULScript_Nko,\n\n    // Unicode 5.1\n    UNKNOWN_LANGUAGE,         // ULScript_Sundanese,\n    UNKNOWN_LANGUAGE,           // ULScript_Lepcha,\n    UNKNOWN_LANGUAGE,         // ULScript_Ol_Chiki,\n    UNKNOWN_LANGUAGE,              // ULScript_Vai,\n    UNKNOWN_LANGUAGE,       // ULScript_Saurashtra,\n    UNKNOWN_LANGUAGE,         // ULScript_Kayah_Li,\n    UNKNOWN_LANGUAGE,           // ULScript_Rejang,\n    UNKNOWN_LANGUAGE,           // ULScript_Lycian,\n    UNKNOWN_LANGUAGE,           // ULScript_Carian,\n    UNKNOWN_LANGUAGE,           // ULScript_Lydian,\n    UNKNOWN_LANGUAGE,             // ULScript_Cham,\n  };\n\n  COMPILE_ASSERT(arraysize(kDefaultLanguagePerLScript) == ULScript_NUM_SCRIPTS,\n       kDefaultLanguagePerLScript_has_incorrect_length);\n\n\n  // True for standalone languages (only lang in a script)\n  // Subscripted by packed language number\n  // If 1, we will use nilgrams to determine language\n  static const uint8 kIsStandaloneLang[EXT_NUM_LANGUAGES + 1] = {\n     0,\n     0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,1,0,    // GREEK\n     0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,\n     0,1,0,0,1, 0,1,0,0,0, 0,0,1,1,0, 0,0,0,0,1,    // MALAYALAM..KANNADA\n     1,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 1,0,0,0,1,    // PUNJABI..SINHALESE\n     0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,1,1,0,    // ARMENIAN..LAOTHIAN\n\n     0,0,0,0,1, 0,1,1,1,0, 1,0,0,0,0, 0,0,0,0,0,    // KHMER..ORIYA\n     0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,\n     0,1,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,    // INUKTITUT\n\n     0,0,0,0,0,                                     // [160..164]\n    // Add new language standalone bit just before here\n     0,0,0,0,0, 1,1,1,1,1, 1,1,1,1,1, 1,1,1,1,1,\n     1,1,1,1,1, 1,1,1,1,1, 1,1,1,1,1, 1,1,1,1,1,\n\n     1,1,1,1,\n   };\n\n   // True for ULScript_HanCJK\n   // (Vietnamese and Zhuang also have Latin script quadgrams)\n   // Subscripted by packed language number\n   static const uint8 kIsUnigramLang[EXT_NUM_LANGUAGES + 1] = {\n      0,\n      0,0,0,0,0, 0,0,0,1,1, 0,0,0,0,0, 0,1,0,0,0,    // JAPANESE KOREAN CHINESE\n      0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,    //\n      0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,    //\n      0,0,0,0,0, 0,1,0,0,1, 0,0,0,0,0, 0,0,0,0,0,    // VIETNAMESE CHINESE_T\n      0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,    //\n\n      0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,    //\n      0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,    //\n      0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 1,0,0,0,0,    // ZHUANG\n\n      0,0,0,0,0,                                     // [160..164]\n     // Add new language unigram bit just before here\n\n      0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,    //\n      0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,    //\n\n      0,0,0,0,\n   };\n\n\n  // True for ULScript_HanCJK\n  // Subscripted by lscript number\n  static const uint8 kScoreUniPerLScript[] = {\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 1,0,0,0,0,0,0,0,\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n    0,0,0,0,0,0,0,0,\n  };\n\n  COMPILE_ASSERT(arraysize(kScoreUniPerLScript) == ULScript_NUM_SCRIPTS,\n       kScoreUniPerLScript_has_incorrect_length);\n\n\n  // Defines Top40 packed languages\n\n  // Tier 0/1 Language enum list (16)\n  //   ENGLISH, /*no en_GB,*/ FRENCH, ITALIAN, GERMAN, SPANISH,    // E - FIGS\n  //   DUTCH, CHINESE, CHINESE_T, JAPANESE, KOREAN,\n  //   PORTUGUESE, RUSSIAN, POLISH, TURKISH, THAI,\n  //   ARABIC,\n  //\n  // Tier 2 Language enum list (22)\n  //   SWEDISH, FINNISH, DANISH, /*no pt-PT,*/ ROMANIAN, HUNGARIAN,\n  //   HEBREW, INDONESIAN, CZECH, GREEK, NORWEGIAN,\n  //   VIETNAMESE, BULGARIAN, CROATIAN, LITHUANIAN, SLOVAK,\n  //   TAGALOG, SLOVENIAN, SERBIAN, CATALAN, LATVIAN,\n  //   UKRAINIAN, HINDI,\n  //\n  //   use SERBO_CROATIAN instead of BOSNIAN, SERBIAN, CROATIAN, MONTENEGRIN(21)\n  //\n  // Include IgnoreMe (TG_UNKNOWN_LANGUAGE, 25+1) as a top 40\n\n  // NOTE: packed, i.e. Language enum + 1\n  static const uint8 kIsPackedTop40[EXT_NUM_LANGUAGES + 1] = {\n    0,\n    1,1,1,1,1, 1,1,1,1,1, 1,1,1,1,1, 1,1,1,1,0,\n    1,1,1,1,0, 1,0,1,0,0, 0,0,1,1,1, 1,0,0,1,0,\n    0,0,0,0,0, 0,0,0,0,0, 0,0,0,1,1, 1,0,0,0,0,\n    0,0,0,1,0, 0,1,0,1,1, 0,0,0,0,0, 0,0,0,0,0,\n    0,0,0,0,0, 0,0,0,0,0, 0,0,1,0,0, 0,0,0,0,0,\n\n    0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,\n    0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,\n    0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,\n\n    0,0,0,0,0,                                    // [160..164]\n    // Add new language top40 bit just before here\n\n    0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,\n    0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,\n\n    0,0,0,0,\n  };\n\n\n\n  // Table has 234 eight-byte entries. Each entry has a five-byte array and\n  // a three-byte array of log base 2 probabilities in the range 0..11.\n  // The intended use is to express five or three probabilities in a single-byte\n  // subscript, then decode via this table. These probabilities are\n  // intended to go with an array of five or three language numbers.\n  //\n  // The corresponding language numbers will have to be sorted by descending\n  // probability, then the actual probability subscript chosen to match the\n  // closest available entry in this table.\n  //\n  // Pattern of probability values:\n  // hi 3/4 1/2 1/4 lo    hi mid lo\n  // where \"3/4\" is (hi*3+lo)/4, \"1/2\" is (hi+lo)/2, and \"1/4\" is (hi+lo*3)/4 and\n  // mid is one of 3/4 1/2 or 1/4.\n  // There are three groups of 78 (=12*13/2) entries, with hi running 0..11 and\n  // lo running 0..hi. Only the first group is used for five-entry lookups.\n  // The mid value in the first group is 1/2, the second group 3/4, and the\n  // third group 1/4. For three-entry lookups, this allows the mid entry to be\n  // somewhat higher or lower than the midpoint, to allow a better match to the\n  // original probabilities.\n  static const int kLgProbV2TblSize = 234;\n  static const uint8 kLgProbV2Tbl[kLgProbV2TblSize * 8] = {\n    1,1,1,1,1, 1,1,1,     // [0]\n    2,2,2,1,1, 2,2,1,     // [1]\n    2,2,2,2,2, 2,2,2,\n    3,3,2,2,1, 3,2,1,     // [3]\n    3,3,3,2,2, 3,3,2,\n    3,3,3,3,3, 3,3,3,\n    4,3,3,2,1, 4,3,1,     // [6]\n    4,4,3,3,2, 4,3,2,\n    4,4,4,3,3, 4,4,3,\n    4,4,4,4,4, 4,4,4,\n    5,4,3,2,1, 5,3,1,     // [10]\n    5,4,4,3,2, 5,4,2,\n    5,5,4,4,3, 5,4,3,\n    5,5,5,4,4, 5,5,4,\n    5,5,5,5,5, 5,5,5,\n    6,5,4,2,1, 6,4,1,     // [15]\n    6,5,4,3,2, 6,4,2,\n    6,5,5,4,3, 6,5,3,\n    6,6,5,5,4, 6,5,4,\n    6,6,6,5,5, 6,6,5,\n    6,6,6,6,6, 6,6,6,\n    7,6,4,3,1, 7,4,1,     // [21]\n    7,6,5,3,2, 7,5,2,\n    7,6,5,4,3, 7,5,3,\n    7,6,6,5,4, 7,6,4,\n    7,7,6,6,5, 7,6,5,\n    7,7,7,6,6, 7,7,6,\n    7,7,7,7,7, 7,7,7,\n    8,6,5,3,1, 8,5,1,     // [28]\n    8,7,5,4,2, 8,5,2,\n    8,7,6,4,3, 8,6,3,\n    8,7,6,5,4, 8,6,4,\n    8,7,7,6,5, 8,7,5,\n    8,8,7,7,6, 8,7,6,\n    8,8,8,7,7, 8,8,7,\n    8,8,8,8,8, 8,8,8,\n    9,7,5,3,1, 9,5,1,     // [36]\n    9,7,6,4,2, 9,6,2,\n    9,8,6,5,3, 9,6,3,\n    9,8,7,5,4, 9,7,4,\n    9,8,7,6,5, 9,7,5,\n    9,8,8,7,6, 9,8,6,\n    9,9,8,8,7, 9,8,7,\n    9,9,9,8,8, 9,9,8,\n    9,9,9,9,9, 9,9,9,\n    10,8,6,3,1, 10,6,1,   // [45]\n    10,8,6,4,2, 10,6,2,\n    10,8,7,5,3, 10,7,3,\n    10,9,7,6,4, 10,7,4,\n    10,9,8,6,5, 10,8,5,\n    10,9,8,7,6, 10,8,6,\n    10,9,9,8,7, 10,9,7,\n    10,10,9,9,8, 10,9,8,\n    10,10,10,9,9, 10,10,9,\n    10,10,10,10,10, 10,10,10,\n    11,9,6,4,1, 11,6,1,   // [55]\n    11,9,7,4,2, 11,7,2,\n    11,9,7,5,3, 11,7,3,\n    11,9,8,6,4, 11,8,4,\n    11,10,8,7,5, 11,8,5,\n    11,10,9,7,6, 11,9,6,\n    11,10,9,8,7, 11,9,7,\n    11,10,10,9,8, 11,10,8,\n    11,11,10,10,9, 11,10,9,\n    11,11,11,10,10, 11,11,10,\n    11,11,11,11,11, 11,11,11,\n    12,9,7,4,1, 12,7,1,   // [66]\n    12,10,7,5,2, 12,7,2,\n    12,10,8,5,3, 12,8,3,\n    12,10,8,6,4, 12,8,4,\n    12,10,9,7,5, 12,9,5,\n    12,11,9,8,6, 12,9,6,\n    12,11,10,8,7, 12,10,7,\n    12,11,10,9,8, 12,10,8,\n    12,11,11,10,9, 12,11,9,\n    12,12,11,11,10, 12,11,10,\n    12,12,12,11,11, 12,12,11,\n    12,12,12,12,12, 12,12,12,\n\n    1,1,1,1,1, 1,1,1,\n    2,2,2,1,1, 2,2,1,\n    2,2,2,2,2, 2,2,2,\n    3,3,2,2,1, 3,3,1,\n    3,3,3,2,2, 3,3,2,\n    3,3,3,3,3, 3,3,3,\n    4,3,3,2,1, 4,3,1,\n    4,4,3,3,2, 4,4,2,\n    4,4,4,3,3, 4,4,3,\n    4,4,4,4,4, 4,4,4,\n    5,4,3,2,1, 5,4,1,\n    5,4,4,3,2, 5,4,2,\n    5,5,4,4,3, 5,5,3,\n    5,5,5,4,4, 5,5,4,\n    5,5,5,5,5, 5,5,5,\n    6,5,4,2,1, 6,5,1,\n    6,5,4,3,2, 6,5,2,\n    6,5,5,4,3, 6,5,3,\n    6,6,5,5,4, 6,6,4,\n    6,6,6,5,5, 6,6,5,\n    6,6,6,6,6, 6,6,6,\n    7,6,4,3,1, 7,6,1,\n    7,6,5,3,2, 7,6,2,\n    7,6,5,4,3, 7,6,3,\n    7,6,6,5,4, 7,6,4,\n    7,7,6,6,5, 7,7,5,\n    7,7,7,6,6, 7,7,6,\n    7,7,7,7,7, 7,7,7,\n    8,6,5,3,1, 8,6,1,\n    8,7,5,4,2, 8,7,2,\n    8,7,6,4,3, 8,7,3,\n    8,7,6,5,4, 8,7,4,\n    8,7,7,6,5, 8,7,5,\n    8,8,7,7,6, 8,8,6,\n    8,8,8,7,7, 8,8,7,\n    8,8,8,8,8, 8,8,8,\n    9,7,5,3,1, 9,7,1,\n    9,7,6,4,2, 9,7,2,\n    9,8,6,5,3, 9,8,3,\n    9,8,7,5,4, 9,8,4,\n    9,8,7,6,5, 9,8,5,\n    9,8,8,7,6, 9,8,6,\n    9,9,8,8,7, 9,9,7,\n    9,9,9,8,8, 9,9,8,\n    9,9,9,9,9, 9,9,9,\n    10,8,6,3,1, 10,8,1,\n    10,8,6,4,2, 10,8,2,\n    10,8,7,5,3, 10,8,3,\n    10,9,7,6,4, 10,9,4,\n    10,9,8,6,5, 10,9,5,\n    10,9,8,7,6, 10,9,6,\n    10,9,9,8,7, 10,9,7,\n    10,10,9,9,8, 10,10,8,\n    10,10,10,9,9, 10,10,9,\n    10,10,10,10,10, 10,10,10,\n    11,9,6,4,1, 11,9,1,\n    11,9,7,4,2, 11,9,2,\n    11,9,7,5,3, 11,9,3,\n    11,9,8,6,4, 11,9,4,\n    11,10,8,7,5, 11,10,5,\n    11,10,9,7,6, 11,10,6,\n    11,10,9,8,7, 11,10,7,\n    11,10,10,9,8, 11,10,8,\n    11,11,10,10,9, 11,11,9,\n    11,11,11,10,10, 11,11,10,\n    11,11,11,11,11, 11,11,11,\n    12,9,7,4,1, 12,9,1,\n    12,10,7,5,2, 12,10,2,\n    12,10,8,5,3, 12,10,3,\n    12,10,8,6,4, 12,10,4,\n    12,10,9,7,5, 12,10,5,\n    12,11,9,8,6, 12,11,6,\n    12,11,10,8,7, 12,11,7,\n    12,11,10,9,8, 12,11,8,\n    12,11,11,10,9, 12,11,9,\n    12,12,11,11,10, 12,12,10,\n    12,12,12,11,11, 12,12,11,\n    12,12,12,12,12, 12,12,12,\n\n    1,1,1,1,1, 1,1,1,\n    2,2,2,1,1, 2,1,1,\n    2,2,2,2,2, 2,2,2,\n    3,3,2,2,1, 3,2,1,\n    3,3,3,2,2, 3,2,2,\n    3,3,3,3,3, 3,3,3,\n    4,3,3,2,1, 4,2,1,\n    4,4,3,3,2, 4,3,2,\n    4,4,4,3,3, 4,3,3,\n    4,4,4,4,4, 4,4,4,\n    5,4,3,2,1, 5,2,1,\n    5,4,4,3,2, 5,3,2,\n    5,5,4,4,3, 5,4,3,\n    5,5,5,4,4, 5,4,4,\n    5,5,5,5,5, 5,5,5,\n    6,5,4,2,1, 6,2,1,\n    6,5,4,3,2, 6,3,2,\n    6,5,5,4,3, 6,4,3,\n    6,6,5,5,4, 6,5,4,\n    6,6,6,5,5, 6,5,5,\n    6,6,6,6,6, 6,6,6,\n    7,6,4,3,1, 7,3,1,\n    7,6,5,3,2, 7,3,2,\n    7,6,5,4,3, 7,4,3,\n    7,6,6,5,4, 7,5,4,\n    7,7,6,6,5, 7,6,5,\n    7,7,7,6,6, 7,6,6,\n    7,7,7,7,7, 7,7,7,\n    8,6,5,3,1, 8,3,1,\n    8,7,5,4,2, 8,4,2,\n    8,7,6,4,3, 8,4,3,\n    8,7,6,5,4, 8,5,4,\n    8,7,7,6,5, 8,6,5,\n    8,8,7,7,6, 8,7,6,\n    8,8,8,7,7, 8,7,7,\n    8,8,8,8,8, 8,8,8,\n    9,7,5,3,1, 9,3,1,\n    9,7,6,4,2, 9,4,2,\n    9,8,6,5,3, 9,5,3,\n    9,8,7,5,4, 9,5,4,\n    9,8,7,6,5, 9,6,5,\n    9,8,8,7,6, 9,7,6,\n    9,9,8,8,7, 9,8,7,\n    9,9,9,8,8, 9,8,8,\n    9,9,9,9,9, 9,9,9,\n    10,8,6,3,1, 10,3,1,\n    10,8,6,4,2, 10,4,2,\n    10,8,7,5,3, 10,5,3,\n    10,9,7,6,4, 10,6,4,\n    10,9,8,6,5, 10,6,5,\n    10,9,8,7,6, 10,7,6,\n    10,9,9,8,7, 10,8,7,\n    10,10,9,9,8, 10,9,8,\n    10,10,10,9,9, 10,9,9,\n    10,10,10,10,10, 10,10,10,\n    11,9,6,4,1, 11,4,1,\n    11,9,7,4,2, 11,4,2,\n    11,9,7,5,3, 11,5,3,\n    11,9,8,6,4, 11,6,4,\n    11,10,8,7,5, 11,7,5,\n    11,10,9,7,6, 11,7,6,\n    11,10,9,8,7, 11,8,7,\n    11,10,10,9,8, 11,9,8,\n    11,11,10,10,9, 11,10,9,\n    11,11,11,10,10, 11,10,10,\n    11,11,11,11,11, 11,11,11,\n    12,9,7,4,1, 12,4,1,\n    12,10,7,5,2, 12,5,2,\n    12,10,8,5,3, 12,5,3,\n    12,10,8,6,4, 12,6,4,\n    12,10,9,7,5, 12,7,5,\n    12,11,9,8,6, 12,8,6,\n    12,11,10,8,7, 12,8,7,\n    12,11,10,9,8, 12,9,8,\n    12,11,11,10,9, 12,10,9,\n    12,12,11,11,10, 12,11,10,\n    12,12,12,11,11, 12,11,11,\n    12,12,12,12,12, 12,12,12,\n  };\n\n  // Backmap a single desired probability into an entry in kLgProbV2Tbl\n  static const uint8 kLgProbV2TblBackmap[13] = {\n    0,\n    0, 1, 3, 6,   10, 15, 21, 28,   36, 45, 55, 66,\n  };\n\n\n  // Always advances one UTF-8 character\n  static const uint8 kAdvanceOneChar[256] = {\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2,\n    3,3,3,3,3,3,3,3, 3,3,3,3,3,3,3,3, 4,4,4,4,4,4,4,4, 4,4,4,4,4,4,4,4,\n  };\n\n  // Does not advance past space or cr/lf/nul\n  static const uint8 kAdvanceOneCharButSpace[256] = {\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n    0,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2,\n    3,3,3,3,3,3,3,3, 3,3,3,3,3,3,3,3, 4,4,4,4,4,4,4,4, 4,4,4,4,4,4,4,4,\n  };\n\n  // Advances *only* on space or ASCII vowel (or illegal byte)\n  static const uint8 kAdvanceOneCharSpaceVowel[256] = {\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    1,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n    0,1,0,0,0,1,0,0, 0,1,0,0,0,0,0,1, 0,0,0,0,0,1,0,0, 0,0,0,0,0,0,0,0,\n    0,1,0,0,0,1,0,0, 0,1,0,0,0,0,0,1, 0,0,0,0,0,1,0,0, 0,0,0,0,0,0,0,0,\n\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  };\n\n  // Advances *only* on space (or illegal byte)\n  static const uint8 kAdvanceOneCharSpace[256] = {\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    1,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n    0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  };\n\n\n//------------------------------------------------------------------------------\n// General\n//------------------------------------------------------------------------------\n  static inline int minint(int a, int b) {return (a < b) ? a: b;}\n  static inline int maxint(int a, int b) {return (a > b) ? a: b;}\n\n  // Here to make available for debugging\n  int ReliabilityDelta(int value1, int value2, int count);\n  int ReliabilityMainstream(int topscore, int len, int mean_score);\n\n  // Returns \"0\" for too small\n  inline const char* MyExtLanguageCode(Language lang) {\n    return ExtLanguageCode(lang);\n  }\n\n  // Map script into Latin, Cyrillic, Arabic, Other. Used in keeping track of\n  // amount of training data for language-script combinations\n  inline int LScript4(UnicodeLScript lscript) {\n    if (lscript == ULScript_Latin) {return 0;}\n    if (lscript == ULScript_Cyrillic) {return 1;}\n    if (lscript == ULScript_Arabic) {return 2;}\n    return 3;\n  }\n\n\n  // Routines to access 3 or 5 log probabilities in a single byte.\n\n  // Return address of 8-byte entry[i]\n  inline const uint8* LgProb2TblEntry(int i) {\n    return &kLgProbV2Tbl[i * 8];\n  }\n\n  // Return one of five probabilities in an entry\n  // CURRENTLY UNUSED\n  inline uint8 LgProb5(const uint8* entry, int j) {\n    return entry[j];\n  }\n\n  // Return one of three probabilities in an entry\n  inline uint8 LgProb3(const uint8* entry, int j) {\n    return entry[j + 5];\n  }\n\n\n\n//------------------------------------------------------------------------------\n// Hashing groups of 1/2/4/8 letters, perhaps with spaces or underscores\n//------------------------------------------------------------------------------\n\n  // Pick up 1..12 bytes and hash them via mask/shift/add. NO pre/post\n  // OVERSHOOTS up to 3 bytes\n  uint32 BiHashV25(const char* word_ptr, int bytecount);\n\n  // Pick up 1..12 bytes plus pre/post space and hash them via mask/shift/add\n  // UNDERSHOOTS 1 byte, OVERSHOOTS up to 3 bytes\n  uint32 QuadHashV25(const char* word_ptr, int bytecount);\n\n  // Pick up 1..12 bytes plus pre/post '_' and hash them via mask/shift/add\n  // OVERSHOOTS up to 3 bytes\n  uint32 QuadHashV25Underscore(const char* word_ptr, int bytecount);\n\n\n  // Pick up 1..24 bytes plus pre/post space and hash them via mask/shift/add\n  // UNDERSHOOTS 1 byte, OVERSHOOTS up to 3 bytes\n  // For runtime use of tables V3\n  uint64 OctaHash40(const char* word_ptr, int bytecount);\n\n  uint64 OctaHash40underscore(const char* word_ptr, int bytecount);\n\n\n  // From 32-bit gram FP, return hash table subscript and remaining key\n  inline void QuadFPJustHash(uint32 quadhash,\n                                  uint32 keymask,\n                                  int bucketcount,\n                                  uint32* subscr, uint32* hashkey) {\n    *subscr = (quadhash + (quadhash >> 12)) & (bucketcount - 1);\n    *hashkey = quadhash & keymask;\n  }\n\n  // Look up 32-bit gram FP in caller-passed table\n  // Typical size 256K entries (1.5MB)\n  // Two-byte hashkey\n  inline const uint32 QuadHashV3Lookup4(const cld::CLDTableSummary* gram_obj,\n                                        uint32 quadhash) {\n\n    uint32 subscr, hashkey;\n    const IndirectProbBucket4* quadtable = gram_obj->kCLDTable;\n    uint32 keymask = gram_obj->kCLDTableKeyMask;\n    int bucketcount = gram_obj->kCLDTableSize;\n    QuadFPJustHash(quadhash, keymask, bucketcount, &subscr, &hashkey);\n    const IndirectProbBucket4* bucket_ptr = &quadtable[subscr];\n    // Four-way associative, 4 compares\n    if (((hashkey ^ bucket_ptr->keyvalue[0]) & keymask) == 0) {\n      return bucket_ptr->keyvalue[0];\n    }\n    if (((hashkey ^ bucket_ptr->keyvalue[1]) & keymask) == 0) {\n      return bucket_ptr->keyvalue[1];\n    }\n    if (((hashkey ^ bucket_ptr->keyvalue[2]) & keymask) == 0) {\n      return bucket_ptr->keyvalue[2];\n    }\n    if (((hashkey ^ bucket_ptr->keyvalue[3]) & keymask) == 0) {\n      return bucket_ptr->keyvalue[3];\n    }\n    return 0;\n  }\n\n\n  // Map 40 bits to subscript, hashkey, expected 18-22 bit subscript (min 16)\n  //     wwwwwwww xxxxxxxx xxxxxxxx yyyyyyyy yyyyyyyy\n  //   + ........ ....wwww wwwwxxxx xxxxxxxx xxxxyyyy\n  //     00000000 00000000 00000011 11111111 11111111 (18-bit bucketcount-1)\n  //\n  // hashkey:\n  //              wwwwxxxx xxxxxxxx xxxx.... ........ (20-bit keymask)\n  // 12-bit shift in subscript mixes in ~4 letters x 4 bits each\n\n  // From 40-bit gram FP, return hash table subscript and remaining key\n  inline void OctaFPJustHash(uint64 longwordhash,\n                                    uint32 keymask,\n                                    int bucketcount,\n                                    uint32* subscr, uint32* hashkey) {\n    uint32 temp = (longwordhash + (longwordhash >> 12)) & (bucketcount - 1);\n    *subscr = temp;\n    temp = longwordhash >> 4;\n    *hashkey = temp & keymask;\n  }\n\n  // Look up 40-bit gram FP in caller-passed table\n  // Typical size 256K-4M entries (1-16MB)\n  // 24-12 bit hashkey packed with 8-20 bit indirect lang/probs\n  // keymask is 0xfffff000 for 20-bit hashkey and 12-bit indirect\n  inline const uint32 OctaHashV3Lookup4(const cld::CLDTableSummary* gram_obj,\n                                            uint64 longwordhash) {\n    uint32 subscr, hashkey;\n    const IndirectProbBucket4* octatable = gram_obj->kCLDTable;\n    uint32 keymask = gram_obj->kCLDTableKeyMask;\n    int bucketcount = gram_obj->kCLDTableSize;\n    OctaFPJustHash(longwordhash, keymask, bucketcount,\n                          &subscr, &hashkey);\n    const IndirectProbBucket4* bucket_ptr = &octatable[subscr];\n    // Four-way associative, 4 compares\n    if (((hashkey ^ bucket_ptr->keyvalue[0]) & keymask) == 0) {\n      return bucket_ptr->keyvalue[0];\n    }\n    if (((hashkey ^ bucket_ptr->keyvalue[1]) & keymask) == 0) {\n      return bucket_ptr->keyvalue[1];\n    }\n    if (((hashkey ^ bucket_ptr->keyvalue[2]) & keymask) == 0) {\n      return bucket_ptr->keyvalue[2];\n    }\n    if (((hashkey ^ bucket_ptr->keyvalue[3]) & keymask) == 0) {\n      return bucket_ptr->keyvalue[3];\n    }\n    return 0;\n  }\n\n\n\n//------------------------------------------------------------------------------\n// Scoring single groups of letters\n//------------------------------------------------------------------------------\n\n  // UNIGRAM score one => tote\n  // Input: 1-byte entry of subscript into unigram probs, plus\n  //  an accumulator tote.\n  // Output: running sums in tote updated\n  void ProcessProbV25UniTote(int propval, Tote* tote);\n\n  // BIGRAM, QUADGRAM, OCTAGRAM score one => tote\n  // Input: 4-byte entry of 3 language numbers and one probability subscript,\n  //  plus an accumulator tote. (language 0 means unused entry)\n  // Output: running sums in tote updated\n  void ProcessProbV25Tote(uint32 probs, Tote* tote);\n\n\n//------------------------------------------------------------------------------\n// Routines to accumulate probabilities\n//------------------------------------------------------------------------------\n\n  // Score up to n=gram_limit unigrams, returning number of bytes consumed\n  // Caller supplies table, such as compact_lang_det_generated_ctjkvz_b1_obj\n  int DoUniScoreV3(const UTF8PropObj* unigram_obj,\n                   const char* isrc, int srclen, int advance_by,\n                   int* tote_grams, int gram_limit, Tote* chunk_tote);\n\n\n  // Score all words in isrc, using languages that have bigrams (CJK)\n  // Caller supplies table, such as &kCjkBiTable_obj or &kGibberishTable_obj\n  // Return number of bigrams that hit in the hash table\n  int DoBigramScoreV3(const cld::CLDTableSummary* bigram_obj,\n                      const char* isrc, int srclen, Tote* chunk_tote);\n\n\n  // Score up to n=gram_limit quadgrams, returning number of bytes consumed\n  // Caller supplies table, such as &kQuadTable_obj or &kGibberishTable_obj\n  int DoQuadScoreV3(const cld::CLDTableSummary* quadgram_obj,\n                    const char* isrc, int srclen, int advance_by,\n                    int* tote_grams, int gram_limit, Tote* chunk_tote);\n\n  // Score all octagrams (words) in isrc, using languages that have quadgrams\n  // Caller supplies table, such as &kLongWord8Table_obj\n  // Return number of words that hit in the hash table\n  int DoOctaScoreV3(const cld::CLDTableSummary* octagram_obj,\n                    const char* isrc, int srclen, Tote* chunk_tote);\n\n//------------------------------------------------------------------------------\n// Reliability calculations, for single language and between languages\n//------------------------------------------------------------------------------\n\n  // Reliability = 0..100\n  static const int kMinReliable = 75;\n\n  // Calculate ratio of score per 1KB vs. expected score per 1KB\n  double GetNormalizedScore(Language lang, UnicodeLScript lscript,\n                          int bytes, int score);\n\n  // Calculate reliablity of len bytes of script lscript with chunk_tote\n  int GetReliability(int len, UnicodeLScript lscript, const Tote* chunk_tote);\n\n\n//------------------------------------------------------------------------------\n// Miscellaneous\n//------------------------------------------------------------------------------\n\n  // Make languages packed into uint32 values non-zero\n  // These routines later could remap so languages not in QuadHash tables are not\n  // represented, and so that any thrashing in accumulation is eliminated\n  uint8 inline PackLanguage(Language lang) {\n    return static_cast<uint8>(lang + 1);}\n\n  Language inline UnpackLanguage(int ilang) {\n    return static_cast<Language>(ilang - 1);}\n\n  // Useful single-byte tests\n  bool inline IsUTF8ContinueByte(char c) {\n    return static_cast<signed char>(c) < -64;}\n  bool inline IsUTF8HighByte(char c) {\n    return static_cast<signed char>(c) < 0;}\n\n\n  // Demote all languages except Top40 and plus_one\n  // Do this just before sorting\n  void DemoteNotTop40(Tote* chunk_tote, int packed_plus_one);\n\n}       // End namespace cld\n\n\n#endif  // ENCODINGS_COMPACT_LANG_DET_CLDUTIL_H_\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/cldutil_dbg.h",
    "content": "// Copyright (c) 2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef ENCODINGS_COMPACT_LANG_DET_CLDUTIL_DBG_H_\n#define ENCODINGS_COMPACT_LANG_DET_CLDUTIL_DBG_H_\n\n#include \"encodings/compact_lang_det/cldutil.h\"\n#include <string>\n#include \"encodings/compact_lang_det/ext_lang_enc.h\"\n#include \"encodings/compact_lang_det/tote.h\"\n#include \"encodings/compact_lang_det/win/cld_basictypes.h\"\n#include \"encodings/compact_lang_det/win/cld_commandlineflags.h\"\n\nDECLARE_bool(dbgscore);\nDECLARE_bool(dbglookup);\nDECLARE_bool(dbgreli);\n\nusing std::string;\n\nnamespace cld {\n\n\n//------------------------------------------------------------------------------\n// Debugging. Not thread safe\n//------------------------------------------------------------------------------\n\n  void DbgScoreInit(const char* src, int len);\n\n  // Return a 3-byte + NUL code for language\n  void DbgLangName3(Language lang, char* temp);\n\n  // Show all per-language totals\n  void DbgScoreState();\n\n  void DbgScoreTop(const char* src, int srclen, Tote* chunk_tote);\n\n  void DbgScoreFlush();\n\n  // Allow additional scoring debug output\n  void DbgScoreRecord(const char* src, uint32 probs, int len);\n\n  void DbgScoreRecordUni(const char* src, int propval, int len);\n\n  // Debug print language name(s)\n  void PrintLang(FILE* f, const Tote* chunk_tote,\n                 const Language cur_lang, const bool cur_unreliable,\n                 Language prior_lang, bool prior_unreliable);\n\n  // Debug print language name(s)\n  void PrintLang2(FILE* f,\n                  const Language lang1, const Language lang2, bool diff_prior);\n\n  // Debug print text span\n  void PrintText(FILE* f, Language cur_lang, const string& str);\n\n  // Debug print text span with speculative language\n  void PrintTextSpeculative(FILE* f, Language cur_lang, const string& str);\n\n  // Debug print ignored text span\n  void PrintSkippedText(FILE* f, const string& str);\n\n  void DbgProbsToStderr(uint32 probs);\n  void DbgUniTermToStderr(int propval, const uint8* usrc, int len);\n  // No pre/post space\n  void DbgBiTermToStderr(uint32 bihash, uint32 probs,\n                          const char* src, int len);\n  void DbgQuadTermToStderr(uint32 quadhash, uint32 probs,\n                          const char* src, int len);\n  void DbgWordTermToStderr(uint64 wordhash, uint32 probs,\n                          const char* src, int len);\n\n}       // End namespace cld\n\n\n#endif  // ENCODINGS_COMPACT_LANG_DET_CLDUTIL_DBG_H_\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/cldutil_dbg_empty.cc",
    "content": "// Copyright (c) 2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#include \"encodings/compact_lang_det/cldutil_dbg.h\"\n//#include <string>\n\n//#include \"base/logging.h\"\n//#include \"i18n/encodings/compact_lang_det/generated/compact_lang_det_generated_meanscore.h\"\n//#include \"i18n/encodings/compact_lang_det/utf8propletterscriptnum.h\"\n//#include \"third_party/utf/utf.h\"            // for UTFmax\n//#include \"util/utf8/unicodeprops.h\"\n//#include \"util/utf8/unilib.h\"\n//#include \"util/utf8/utf8statetable.h\"\n#include \"encodings/compact_lang_det/win/cld_commandlineflags.h\"\n\nDEFINE_bool(dbgscore, false, \"Print picture of score calculation\");\nDEFINE_bool(dbglookup, false, \"Print every quad/uni lookup in score calc\");\nDEFINE_bool(dbgreli, false, \"Print reliability in score calc\");\n\nnamespace cld {\n\n\n//------------------------------------------------------------------------------\n// Debugging. Not thread safe\n// This is the empty version -- routines return immediately\n//------------------------------------------------------------------------------\n\n  void DbgScoreInit(const char* src, int len) {};\n\n  // Return a 3-byte + NUL code for language\n  void DbgLangName3(Language lang, char* temp) {};\n\n  // Show all per-language totals\n  void DbgScoreState() {};\n\n  void DbgScoreTop(const char* src, int srclen, Tote* chunk_tote) {};\n\n  void DbgScoreFlush() {};\n\n  // Allow additional scoring debug output\n  void DbgScoreRecord(const char* src, uint32 probs, int len) {};\n\n  void DbgScoreRecordUni(const char* src, int propval, int len) {};\n\n  // Debug print language name(s)\n  void PrintLang(FILE* f, const Tote* chunk_tote,\n                 const Language cur_lang, const bool cur_unreliable,\n                 Language prior_lang, bool prior_unreliable) {};\n\n  // Debug print language name(s)\n  void PrintLang2(FILE* f,\n                  const Language lang1, const Language lang2, bool diff_prior) {};\n\n  // Debug print text span\n  void PrintText(FILE* f, Language cur_lang, const string& str) {};\n\n  // Debug print text span with speculative language\n  void PrintTextSpeculative(FILE* f, Language cur_lang, const string& str) {};\n\n  // Debug print ignored text span\n  void PrintSkippedText(FILE* f, const string& str) {};\n\n  void DbgProbsToStderr(uint32 probs) {};\n  void DbgUniTermToStderr(int propval, const uint8* usrc, int len) {};\n  // No pre/post space\n  void DbgBiTermToStderr(uint32 bihash, uint32 probs,\n                          const char* src, int len) {};\n  void DbgQuadTermToStderr(uint32 quadhash, uint32 probs,\n                          const char* src, int len) {};\n  void DbgWordTermToStderr(uint64 wordhash, uint32 probs,\n                          const char* src, int len) {};\n\n\n}       // End namespace cld\n\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/compact_lang_det.cc",
    "content": "// Copyright (c) 2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#include \"encodings/compact_lang_det/compact_lang_det.h\"\n#include \"encodings/compact_lang_det/compact_lang_det_impl.h\"\n#include \"encodings/compact_lang_det/win/cld_basictypes.h\"\n\n// String is \"code_version - data_scrape_date\"\nstatic const char* kDetectLanguageVersion = \"V1.6 - 20081121\";\n\n// Large-table version for all ~160 languages (all Tiers)\n\nLanguage CompactLangDet::DetectLanguage(\n                        const DetectionTables* tables,\n                        const char* buffer,\n                        int buffer_length,\n                        bool is_plain_text,\n                        bool do_allow_extended_languages,\n                        bool do_pick_summary_language,\n                        bool do_remove_weak_matches,\n                        const char* tld_hint,       // \"id\" boosts Indonesian\n                        int encoding_hint,          // SJS boosts Japanese\n                        Language language_hint,     // ITALIAN boosts it\n                        Language* language3,\n                        int* percent3,\n                        double* normalized_score3,\n                        int* text_bytes,\n                        bool* is_reliable) {\n  int flags = 0;\n  Language plus_one = UNKNOWN_LANGUAGE;\n\n  Language lang = CompactLangDetImpl::DetectLanguageSummaryV25(\n                          tables,\n                          buffer,\n                          buffer_length,\n                          is_plain_text,\n                          do_pick_summary_language,\n                          do_remove_weak_matches,\n                          tld_hint,               // \"id\" boosts Indonesian\n                          encoding_hint,          // SJS boosts Japanese\n                          language_hint,          // ITALIAN boosts it\n                          do_allow_extended_languages,\n                          flags,\n                          plus_one,\n                          language3,\n                          percent3,\n                          normalized_score3,\n                          text_bytes,\n                          is_reliable);\n  // Do not default to English\n  return lang;\n  }\n\n\n\n// Return version text string\n// String is \"code_version - data_scrape_date\"\nconst char* CompactLangDet::DetectLanguageVersion() {\n  return kDetectLanguageVersion;\n}\n\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/compact_lang_det.h",
    "content": "// Copyright (c) 2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n// Baybayin (ancient script of the Philippines) is detected as TAGALOG.\n// Chu Nom (Vietnamese ancient Han characters) is detected as VIETNAMESE.\n// HAITIAN_CREOLE is detected as such.\n// NORWEGIAN and NORWEGIAN_N are detected separately (but not robustly)\n// PORTUGUESE, PORTUGUESE_P, and PORTUGUESE_B are all detected as PORTUGUESE.\n// ROMANIAN-Latin is detected as ROMANIAN; ROMANIAN-Cyrillic as MOLDAVIAN.\n// SERBO_CROATIAN, BOSNIAN, CROATIAN, SERBIAN, MONTENEGRIN in the Latin script\n//  are all detected as CROATIAN; in the Cyrillic script as SERBIAN.\n// Zhuang is detected in the Latin script only.\n//\n// The Google interface languages X_PIG_LATIN and X_KLINGON are detected in the\n//  extended calls ExtDetectLanguageSummary(). BorkBorkBork, ElmerFudd, and\n//  Hacker are not detected (too little training data).\n//\n// UNKNOWN_LANGUAGE is returned if no language's internal reliablity measure\n//  is high enough. This happens with non-text input such as the bytes of a\n//  JPEG, and also with some text in languages outside the Google Language\n//  enum, such as Ilonggo.\n//\n// The following languages are detected in multiple scripts:\n//  AZERBAIJANI (Latin, Cyrillic*, Arabic*)\n//  BURMESE (Latin, Myanmar)\n//  HAUSA (Latin, Arabic)\n//  KASHMIRI (Arabic, Devanagari)\n//  KAZAKH (Latin, Cyrillic, Arabic)\n//  KURDISH (Latin*, Arabic)\n//  KYRGYZ (Cyrillic, Arabic)\n//  LIMBU (Devanagari, Limbu)\n//  MONGOLIAN (Cyrillic, Mongolian)\n//  SANSKRIT (Latin, Devanagari)\n//  SINDHI (Arabic, Devanagari)\n//  TAGALOG (Latin, Tagalog)\n//  TAJIK (Cyrillic, Arabic*)\n//  TATAR (Latin, Cyrillic, Arabic)\n//  TURKMEN (Latin, Cyrillic, Arabic)\n//  UIGHUR (Latin, Cyrillic, Arabic)\n//  UZBEK (Latin, Cyrillic, Arabic)\n//\n// * Due to a shortage of training text, AZERBAIJANI is not currently detected\n//   in Arabic or Cyrillic scripts, nor KURDISH in Latin script, nor TAJIK in\n//   Arabic script.\n//\n\n#ifndef ENCODINGS_COMPACT_LANG_DET_COMPACT_LANG_DET_H_\n#define ENCODINGS_COMPACT_LANG_DET_COMPACT_LANG_DET_H_\n\n#include \"languages/public/languages.h\"\n#include \"encodings/compact_lang_det/win/cld_utf8statetable.h\"\n\nnamespace cld {\n  struct CLDTableSummary;\n}  // namespace cld\n\nnamespace CompactLangDet {\n  // Scan interchange-valid UTF-8 bytes and detect most likely language,\n  // or set of languages.\n  //\n  // Design goals:\n  //   Skip over big stretches of HTML tags\n  //   Able to return ranges of different languages\n  //   Relatively small tables and relatively fast processing\n  //   Thread safe\n  //\n  // For HTML documents, tags are skipped, along with <script> ... </script>\n  // and <style> ... </style> sequences, and entities are expanded.\n  //\n  // We distinguish between bytes of the raw input buffer and bytes of non-tag\n  // text letters. Since tags can be over 50% of the bytes of an HTML Page,\n  // and are nearly all seven-bit ASCII English, we prefer to distinguish\n  // language mixture fractions based on just the non-tag text.\n  //\n  // Inputs: text and text_length\n  //  Code skips HTML tags and expands HTML entities, unless\n  //  is_plain_text is true\n  // Outputs:\n  //  language3 is an array of the top 3 languages or UNKNOWN_LANGUAGE\n  //  percent3 is an array of the text percentages 0..100 of the top 3 languages\n  //  text_bytes is the amount of non-tag/letters-only text found\n  //  is_reliable set true if the returned Language is some amount more\n  //  probable then the second-best Language. Calculation is a complex function\n  //  of the length of the text and the different-script runs of text.\n  // Return value: the most likely Language for the majority of the input text\n  //  Length 0 input returns UNKNOWN_LANGUAGE.\n  //\n  // Subsetting: For fast detection over large documents, these routines will\n  // scan non-tag text of the initial part of a document, then will\n  // skip 4-16 bytes and subsample text in the rest of the document, up to a\n  // fixed limit (currently 160KB of non-tag letters).\n  //\n\n  struct DetectionTables {\n    const cld::CLDTableSummary* quadgram_obj;\n    const UTF8PropObj* unigram_obj;\n  };\n\n  // Scan interchange-valid UTF-8 bytes and detect list of top 3 languages.\n  //\n  // Accepts hints to bias languagepriors.\n  //\n  // Extended languages are additional Google interface languages and Unicode\n  // single-language scripts, from ext_lang_enc.h. They are experimental and\n  // this call may be removed.\n  //\n  // Returns internal language scores as a ratio to\n  // normal score for real text in that language. Scores close to 1.0 indicate\n  // normal text, while scores far away from 1.0 indicate badly-skewed text or\n  // gibberish\n  //\n  // If do_pick_summary_lang is true then CLD will sometimes\n  // not pick the top-scoring language; see CalcSummaryLang\n  // in compact_lang_det_impl.cc.  If it's false then the\n  // top language is always returned.\n  //\n  // If do_remove_weak_matches is true then CLD will delete\n  // poor scoring languages from the results, so that if a\n  // language is returned there is some confidence it is\n  // correct.\n  //\n  Language DetectLanguage(\n                          const DetectionTables* tables,\n                          const char* buffer,\n                          int buffer_length,\n                          bool is_plain_text,\n                          bool do_allow_extended_languages,\n                          bool do_pick_summary_language,\n                          bool do_remove_weak_matches,\n                          const char* tld_hint,       // \"id\" boosts Indonesian\n                          int encoding_hint,          // SJS boosts Japanese\n                          Language language_hint,     // ITALIAN boosts it\n                          Language* language3,\n                          int* percent3,\n                          double* normalized_score3,\n                          int* text_bytes,\n                          bool* is_reliable);\n\n  // Return version text string\n  // String is \"code_version - data_scrape_date\"\n  const char* DetectLanguageVersion();\n};      // End namespace CompactLangDet\n\n#endif  // ENCODINGS_COMPACT_LANG_DET_COMPACT_LANG_DET_H_\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/compact_lang_det_impl.cc",
    "content": "// Copyright (c) 2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#include <stdio.h>\n#include <string.h>\n//#include <sys/time.h>                               // for gettimeofday\n#include <string>\n\n#include \"encodings/lang_enc.h\"\n\n#include \"encodings/compact_lang_det/compact_lang_det.h\"\n#include \"encodings/compact_lang_det/compact_lang_det_impl.h\"\n#include \"encodings/compact_lang_det/getonescriptspan.h\"\n#include \"encodings/compact_lang_det/letterscript_enum.h\"\n#include \"encodings/compact_lang_det/tote.h\"\n#include \"encodings/compact_lang_det/utf8propjustletter.h\"\n#include \"encodings/compact_lang_det/utf8propletterscriptnum.h\"\n#include \"encodings/compact_lang_det/utf8scannotjustletterspecial.h\"\n\n#include \"encodings/compact_lang_det/cldutil_dbg.h\"\n\n#include \"encodings/compact_lang_det/win/cld_basictypes.h\"\n#include \"encodings/compact_lang_det/win/cld_commandlineflags.h\"\n#include \"encodings/compact_lang_det/win/cld_google.h\"\n#include \"encodings/compact_lang_det/win/cld_utf8statetable.h\"\n\n// Linker supplies the right tables\nextern const UTF8PropObj compact_lang_det_generated_ctjkvz_b1_obj;\nextern const cld::CLDTableSummary kCjkBiTable_obj;\nextern const cld::CLDTableSummary kQuadTable_obj;\nextern const cld::CLDTableSummary kLongWord8Table_obj;\n\nDEFINE_bool(cld_html, false, \"Print language spans in HTML on stderr\");\nDEFINE_bool(cld_forcewords, false, \"Score all words, in addition to quads\");\n\nDEFINE_bool(cld_showme, false, \"Put squeeze/repeat points into HTML text\");\nDEFINE_bool(cld_echotext, false, \"Print each scriptspan to stderr\");\nDEFINE_int32(cld_textlimit, 160, \"Examine only initial n KB of actual text\");\n// 20 quadgrams is about 80 bytes or about 12 words in real text\nDEFINE_int32(cld_smoothwidth, 20, \"Smoothing window width in quadgrams\");\n\n\nstatic const int kLangHintInitial = 12;  // Boost language by N initially\nstatic const int kLangHintBoost = 12;    // Boost language by N/16 per quadgram\n\nstatic const int kShortSpanThresh = 32;       // Bytes\nstatic const int kMaxSecondChanceLen = 1024;  // Look at first 1K of short spans\n\nstatic const int kCheapSqueezeTestThresh = 4096;  // Only look for squeezing\n                                                  // after this many text bytes\nstatic const int kCheapSqueezeTestLen = 256;   // Bytes to test to trigger sqz\nstatic const int kSpacesTriggerPercent = 25;   // Trigger sqz if >=25% spaces\nstatic const int kPredictTriggerPercent = 67;  // Trigger sqz if >=67% predicted\n\nstatic const int kChunksizeDefault = 48;      // Squeeze 48-byte chunks\nstatic const int kSpacesThreshPercent = 25;   // Squeeze if >=25% spaces\nstatic const int kPredictThreshPercent = 40;  // Squeeze if >=40% predicted\n\nstatic const int kMaxSpaceScan = 32;          // Bytes\n\nstatic const int kGoodLang1Percent = 70;\nstatic const int kGoodLang1and2Percent = 93;\nstatic const int kShortTextThresh = 256;      // Bytes\n\nstatic const int kMinChunkSizeQuads = 4;      // Chunk is at least four quads\nstatic const int kMaxChunkSizeQuads = 1024;   // Chunk is at most 1K quads\n\nstatic const int kDefaultWordSpan = 256;      // Scan at least this many initial\n                                              // bytes with word scoring\nstatic const int kReallyBigWordSpan = 9999999;  // Forces word scoring all text\n\nstatic const int kMinReliableSeq = 50;      // Record in seq if >= 50% reliable\n\nstatic const int kPredictionTableSize = 4096;   // Must be exactly 4096 for\n                                                // cheap compressor\n\n//\n// Generated by dsites 2008.07.07 from 10% of Base\n//\n\n// Three packed language probs, subscripted by Encoding\nstatic const uint32 kEncodingHintProbs[] = {\n  0x00000000,  // ASCII\n  0x18120cd5,  // Latin2   POLISH.11 CZECH.5 HUNGARIAN.3\n  0x1d3a4bc9,  // Latin3   AZERBAIJANI.10 BASQUE.3 CROATIAN.1\n  0x030819d4,  // Latin4   ESTONIAN.11 ITALIAN.4 DUTCH.2\n  0x00000000,  // ISO-8859-5\n  0x00003742,  // Arabic   ARABIC.12\n  0x00000000,  // Greek\n  0x00000742,  // Hebrew   HEBREW.12\n  0x00002242,  // Latin5   TURKISH.12\n  0x060419c9,  // Latin6   ESTONIAN.10 FINNISH.3 GERMAN.1\n  0x00000942,  // EUC-JP   Japanese.12\n  0x00000942,  // SJS   Japanese.12\n  0x00000942,  // JIS   Japanese.12\n  0x00004642,  // BIG5   ChineseT.12\n  0x00001142,  // GB   Chinese.12\n  0x46295fcd,  // EUC-CN   UIGHUR.10 MALAY.6 ChineseT.5\n  0x00000a42,  // KSC   Korean.12\n  0x00000000,  // Unicode\n  0x03104674,  // EUC   ChineseT.9 SWEDISH.8 DUTCH.3\n  0x00000000,  // CNS\n  0x0f1146c3,  // BIG5-CP950   ChineseT.9 Chinese.5 SPANISH.4\n  0x00000942,  // CP932   Japanese.12\n  0x00000000,  // UTF8\n  0x00000000,  // Unknown\n  0x00000000,  // ASCII-7-bit\n  0x00000000,  // KOI8R\n  0x00000000,  // CP1251\n  0x00000000,  // CP1252\n  0x00000000,  // KOI8U\n  0x451d12cd,  // CP1250   CZECH.10 CROATIAN.6 SLOVAK.5\n  0x0d06052a,  // ISO-8859-15   FRENCH.9 GERMAN.8 PORTUGUESE.7\n  0x00002242,  // CP1254   TURKISH.12\n  0x191516be,  // CP1257   LITHUANIAN.8 LATVIAN.7 ESTONIAN.7\n  0x08003642,  // ISO-8859-11   THAI.12 ITALIAN.1\n  0x00000000,  // CP874\n  0x00003742,  // CP1256   ARABIC.12\n  0x00000742,  // CP1255   HEBREW.12\n  0x00000000,  // ISO-8859-8-I\n  0x00000000,  // VISUAL\n  0x00000000,  // CP852\n  0x39001242,  // CSN_369103   CZECH.12 ESPERANTO.1\n  0x00000000,  // CP1253\n  0x00000000,  // CP866\n  0x2e001944,  // ISO-8859-13   ESTONIAN.12 ALBANIAN.3\n  0x08090a74,  // ISO-2022-KR   Korean.9 Japanese.8 ITALIAN.3\n  0x00001142,  // GBK   Chinese.12\n  0x4600113d,  // GB18030   Chinese.11 ChineseT.7\n  0x00004642,  // BIG5_HKSCS   ChineseT.12\n  0x00000000,  // ISO_2022_CN\n  0x00000000,  // TSCII\n  0x00000000,  // TAM\n  0x00000000,  // TAB\n  0x00000000,  // JAGRAN\n  0x00000000,  // MACINTOSH\n  0x00000000,  // UTF7\n  0x00000000,  // BHASKAR\n  0x00000000,  // HTCHANAKYA\n  0x090646ca,  // UTF-16BE   ChineseT.10 GERMAN.4 Japanese.2\n  0x00000000,  // UTF-16LE\n  0x00000000,  // UTF-32BE\n  0x00000000,  // UTF-32LE\n  0x00000000,  // X-BINARYENC\n  0x06001142,  // HZ-GB-2312   Chinese.12 GERMAN.1\n  0x461109c2,  // X-UTF8UTF8   Japanese.9 Chinese.5 ChineseT.3\n  0x00000000,  // X-TAM-ELANGO\n  0x00000000,  // X-TAM-LTTMBARANI\n  0x00000000,  // X-TAM-SHREE\n  0x00000000,  // X-TAM-TBOOMIS\n  0x00000000,  // X-TAM-TMNEWS\n  0x00000000,  // X-TAM-WEBTAMIL\n  0x00000000,  // X-KDDI-Shift_JIS\n  0x00000000,  // X-DoCoMo-Shift_JIS\n  0x00000000,  // X-SoftBank-Shift_JIS\n  0x00000000,  // X-KDDI-ISO-2022-JP\n  0x00000000,  // X-SoftBank-ISO-2022-JP\n};\n\nCOMPILE_ASSERT(arraysize(kEncodingHintProbs) == NUM_ENCODINGS,\n               kEncodingHintProbs_has_incorrect_size);\n\n//\n// Generated by dsites 2008.07.07 from 10% of Base\n//\n\n// Three packed language probs, subscripted by (anchor) language\nstatic const uint32 kLanguageHintProbs[] = {\n  0x00000000,  // ENGLISH\n  0x00000242,  // DANISH   DANISH.12\n  0x00000342,  // DUTCH   DUTCH.12\n  0x00000442,  // FINNISH   FINNISH.12\n  0x00000542,  // FRENCH   FRENCH.12\n  0x00000642,  // GERMAN   GERMAN.12\n  0x00000742,  // HEBREW   HEBREW.12\n  0x00000842,  // ITALIAN   ITALIAN.12\n  0x00000942,  // Japanese   Japanese.12\n  0x00000a42,  // Korean   Korean.12\n  0x51000b43,  // NORWEGIAN   NORWEGIAN.12 NORWEGIAN_N.2\n  0x00000c42,  // POLISH   POLISH.12\n  0x00000d42,  // PORTUGUESE   PORTUGUESE.12\n  0x00000000,  // RUSSIAN\n  0x00000f42,  // SPANISH   SPANISH.12\n  0x00001042,  // SWEDISH   SWEDISH.12\n  0x00001142,  // Chinese   Chinese.12\n  0x00001242,  // CZECH   CZECH.12\n  0x00000000,  // GREEK\n  0x47001442,  // ICELANDIC   ICELANDIC.12 FAROESE.1\n  0x00001542,  // LATVIAN   LATVIAN.12\n  0x00001642,  // LITHUANIAN   LITHUANIAN.12\n  0x00001742,  // ROMANIAN   ROMANIAN.12\n  0x00001842,  // HUNGARIAN   HUNGARIAN.12\n  0x00001942,  // ESTONIAN   ESTONIAN.12\n  0x00000000,  // TG_UNKNOWN_LANGUAGE\n  0x00000000,  // Unknown\n  0x00001c42,  // BULGARIAN   BULGARIAN.12\n  0x00001d42,  // CROATIAN   CROATIAN.12\n  0x1e001d46,  // SERBIAN   CROATIAN.12 SERBIAN.5\n  0x00000000,  // IRISH\n  0x0f00203d,  // GALICIAN   GALICIAN.11 SPANISH.7\n  0x5e00213a,  // TAGALOG   TAGALOG.11 SOMALI.4\n  0x00002242,  // TURKISH   TURKISH.12\n  0x00002342,  // UKRAINIAN   UKRAINIAN.12\n  0x00000000,  // HINDI\n  0x1c1e25d4,  // MACEDONIAN   MACEDONIAN.11 SERBIAN.4 BULGARIAN.2\n  0x00002642,  // BENGALI   BENGALI.12\n  0x00002742,  // INDONESIAN   INDONESIAN.12\n  0x00000000,  // LATIN\n  0x2700293c,  // MALAY   MALAY.11 INDONESIAN.6\n  0x00000000,  // MALAYALAM\n  0x00000000,  // WELSH\n  0x00000000,  // NEPALI\n  0x00000000,  // TELUGU\n  0x00002e42,  // ALBANIAN   ALBANIAN.12\n  0x00000000,  // TAMIL\n  0x00003042,  // BELARUSIAN   BELARUSIAN.12\n  0x00000000,  // JAVANESE\n  0x00000000,  // OCCITAN\n  0x375f3330,  // URDU   URDU.10 UIGHUR.7 ARABIC.4\n  0x41003436,  // BIHARI   BIHARI.10 MARATHI.10\n  0x00000000,  // GUJARATI\n  0x0a4636b2,  // THAI   THAI.7 ChineseT.3 Korean.2\n  0x00003742,  // ARABIC   ARABIC.12\n  0x00003842,  // CATALAN   CATALAN.12\n  0x00003942,  // ESPERANTO   ESPERANTO.12\n  0x00003a42,  // BASQUE   BASQUE.12\n  0x00000000,  // INTERLINGUA\n  0x00000000,  // KANNADA\n  0x05060cca,  // PUNJABI   POLISH.10 GERMAN.4 FRENCH.2\n  0x00000000,  // SCOTS_GAELIC\n  0x00003f42,  // SWAHILI   SWAHILI.12\n  0x00004042,  // SLOVENIAN   SLOVENIAN.12\n  0x00004142,  // MARATHI   MARATHI.12\n  0x00004242,  // MALTESE   MALTESE.12\n  0x00004342,  // VIETNAMESE   VIETNAMESE.12\n  0x00000000,  // FRISIAN\n  0x12004543,  // SLOVAK   SLOVAK.12 CZECH.2\n  0x00004642,  // ChineseT   ChineseT.12\n  0x00000000,  // FAROESE\n  0x00000000,  // SUNDANESE\n  0x79004944,  // UZBEK   UZBEK.12 TAJIK.3\n  0x4d004a46,  // AMHARIC   AMHARIC.12 TIGRINYA.5\n  0x00004b42,  // AZERBAIJANI   AZERBAIJANI.12\n  0x00000000,  // GEORGIAN\n  0x00000000,  // TIGRINYA\n  0x00004e42,  // PERSIAN   PERSIAN.12\n  0x00000000,  // BOSNIAN\n  0x00000000,  // SINHALESE\n  0x00000000,  // NORWEGIAN_N\n  0x00000000,  // PORTUGUESE_P\n  0x00000000,  // PORTUGUESE_B\n  0x00000000,  // XHOSA\n  0x00000000,  // ZULU\n  0x00000000,  // GUARANI\n  0x00000000,  // SESOTHO\n  0x00000000,  // TURKMEN\n  0x7a005933,  // KYRGYZ   KYRGYZ.10 TATAR.7\n  0x00000000,  // BRETON\n  0x00000000,  // TWI\n  0x00000000,  // YIDDISH\n  0x00000000,  // SERBO_CROATIAN\n  0x00000000,  // SOMALI\n  0x00005f42,  // UIGHUR   UIGHUR.12\n  0x00006042,  // KURDISH   KURDISH.12\n  0x00006142,  // MONGOLIAN   MONGOLIAN.12\n  0x051130c9,  // ARMENIAN   BELARUSIAN.10 Chinese.3 FRENCH.1\n  0x020f0521,  // LAOTHIAN   FRENCH.8 SPANISH.7 DANISH.6\n  0x64004e35,  // SINDHI   PERSIAN.10 SINDHI.9\n  0x00000000,  // RHAETO_ROMANCE\n  0x00006642,  // AFRIKAANS   AFRIKAANS.12\n  0x00000000,  // LUXEMBOURGISH\n  0x00006842,  // BURMESE   BURMESE.12\n  0x00002242,  // KHMER   TURKISH.12\n  0x88006a3c,  // TIBETAN   TIBETAN.11 DZONGKHA.6\n  0x00000000,  // DHIVEHI\n  0x00000000,  // CHEROKEE\n  0x00000000,  // SYRIAC\n  0x00000000,  // LIMBU\n  0x00000000,  // ORIYA\n  0x00000000,  // ASSAMESE\n  0x00000000,  // CORSICAN\n  0x00000000,  // INTERLINGUE\n  0x00007342,  // KAZAKH   KAZAKH.12\n  0x00000000,  // LINGALA\n  0x00000000,  // MOLDAVIAN\n  0x5f007645,  // PASHTO   PASHTO.12 UIGHUR.4\n  0x00000000,  // QUECHUA\n  0x00000000,  // SHONA\n  0x00007942,  // TAJIK   TAJIK.12\n  0x00000000,  // TATAR\n  0x00000000,  // TONGA\n  0x00000000,  // YORUBA\n  0x00000000,  // CREOLES_AND_PIDGINS_ENGLISH_BASED\n  0x00000000,  // CREOLES_AND_PIDGINS_FRENCH_BASED\n  0x00000000,  // CREOLES_AND_PIDGINS_PORTUGUESE_BASED\n  0x00000000,  // CREOLES_AND_PIDGINS_OTHER\n  0x00000000,  // MAORI\n  0x00000000,  // WOLOF\n  0x00000000,  // ABKHAZIAN\n  0x00000000,  // AFAR\n  0x00000000,  // AYMARA\n  0x00000000,  // BASHKIR\n  0x00000000,  // BISLAMA\n  0x00000000,  // DZONGKHA\n  0x00000000,  // FIJIAN\n  0x00000000,  // GREENLANDIC\n  0x00000000,  // HAUSA\n  0x00000000,  // HAITIAN_CREOLE\n  0x00000000,  // INUPIAK\n  0x00000542,  // INUKTITUT   FRENCH.12\n  0x00000000,  // KASHMIRI\n  0x00000000,  // KINYARWANDA\n  0x00000000,  // MALAGASY\n  0x00000000,  // NAURU\n  0x00000000,  // OROMO\n  0x00000000,  // RUNDI\n  0x00000000,  // SAMOAN\n  0x00000000,  // SANGO\n  0x344197d3,  // SANSKRIT   SANSKRIT.11 MARATHI.4 BIHARI.1\n  0x00000000,  // SISWANT\n  0x00000000,  // TSONGA\n  0x00000000,  // TSWANA\n  0x00000000,  // VOLAPUK\n  0x00000000,  // ZHUANG\n  0x00000000,  // KHASI\n  0x00000000,  // SCOTS\n  0x00000000,  // GANDA\n  0x00000000,  // MANX\n  0x00000000,  // MONTENEGRIN\n  // Add new language hints just before here (just use 0x00000000)\n};\n\nCOMPILE_ASSERT(arraysize(kLanguageHintProbs) == NUM_LANGUAGES,\n               kLanguageHintProbs_has_incorrect_size);\n\n//\n// Generated by dsites 2008.07.07 from 10% of Base\n//\n\ntypedef struct {\n  char key[4];\n  uint32 probs;\n} HintEntry;\n\n\n// Massaged TLD, followed by three packed language probs\n// Hand-removed 4 items dsites 2008.07.15\nstatic const int kTLDHintProbsSize = 201;\nstatic const HintEntry kTLDHintProbs[kTLDHintProbsSize] = {   // MaxRange 12\n  {{0x61,0x63,0x5f,0x5f}, 0x0a000945},   // ac__ Japanese.12 Korean.4\n  {{0x61,0x64,0x5f,0x5f}, 0x00003842},   // ad__ CATALAN.12\n  {{0x61,0x65,0x5f,0x5f}, 0x00003742},   // ae__ ARABIC.12\n  {{0x61,0x66,0x5f,0x5f}, 0x4e00763d},   // af__ PASHTO.11 PERSIAN.7\n  {{0x61,0x67,0x5f,0x5f}, 0x09000643},   // ag__ GERMAN.12 Japanese.2\n  {{0x61,0x69,0x5f,0x5f}, 0x0c180938},   // ai__ Japanese.11 HUNGARIAN.7 POLISH.2\n  {{0x61,0x6c,0x5f,0x5f}, 0x00002e42},   // al__ ALBANIAN.12\n  {{0x61,0x6e,0x5f,0x5f}, 0x6e00033d},   // an__ DUTCH.11 LIMBU.7\n  {{0x61,0x6f,0x5f,0x5f}, 0x05000d42},   // ao__ PORTUGUESE.12 FRENCH.1\n  {{0x61,0x71,0x5f,0x5f}, 0x05000f29},   // aq__ SPANISH.9 FRENCH.6\n  {{0x61,0x72,0x5f,0x5f}, 0x00000f42},   // ar__ SPANISH.12\n  {{0x61,0x73,0x5f,0x5f}, 0x0f120bcd},   // as__ NORWEGIAN.10 CZECH.6 SPANISH.5\n  {{0x61,0x74,0x5f,0x5f}, 0x00000642},   // at__ GERMAN.12\n  {{0x61,0x77,0x5f,0x5f}, 0x0f000345},   // aw__ DUTCH.12 SPANISH.4\n  {{0x61,0x78,0x5f,0x5f}, 0x00001042},   // ax__ SWEDISH.12\n  {{0x61,0x7a,0x5f,0x5f}, 0x00004b42},   // az__ AZERBAIJANI.12\n  {{0x62,0x61,0x5f,0x5f}, 0x00001d42},   // ba__ CROATIAN.12\n  {{0x62,0x62,0x5f,0x5f}, 0x00002842},   // bb__ LATIN.12\n  {{0x62,0x64,0x5f,0x5f}, 0x00002642},   // bd__ BENGALI.12\n  {{0x62,0x65,0x5f,0x5f}, 0x05000335},   // be__ DUTCH.10 FRENCH.9\n  {{0x62,0x66,0x5f,0x5f}, 0x00000542},   // bf__ FRENCH.12\n  {{0x62,0x67,0x5f,0x5f}, 0x00001c42},   // bg__ BULGARIAN.12\n  {{0x62,0x68,0x5f,0x5f}, 0x00003742},   // bh__ ARABIC.12\n  {{0x62,0x69,0x5f,0x5f}, 0x0f00053f},   // bi__ FRENCH.11 SPANISH.9\n  {{0x62,0x6a,0x5f,0x5f}, 0x00000542},   // bj__ FRENCH.12\n  {{0x62,0x6d,0x5f,0x5f}, 0x98043929},   // bm__ ESPERANTO.9 FINNISH.8 SISWANT.6\n  {{0x62,0x6e,0x5f,0x5f}, 0x00002942},   // bn__ MALAY.12\n  {{0x62,0x6f,0x5f,0x5f}, 0x00000f42},   // bo__ SPANISH.12\n  {{0x62,0x72,0x5f,0x5f}, 0x00000d42},   // br__ PORTUGUESE.12\n  {{0x62,0x74,0x5f,0x5f}, 0x00008842},   // bt__ DZONGKHA.12\n  {{0x62,0x77,0x5f,0x5f}, 0x06059ac4},   // bw__ TSWANA.9 FRENCH.6 GERMAN.5\n  {{0x62,0x79,0x5f,0x5f}, 0x00003024},   // by__ BELARUSIAN.9\n  {{0x62,0x7a,0x5f,0x5f}, 0x0f0a0924},   // bz__ Japanese.9 Korean.5 SPANISH.1\n  {{0x63,0x61,0x5f,0x5f}, 0x00000542},   // ca__ FRENCH.12\n  {{0x63,0x61,0x74,0x5f}, 0x00003842},   // cat_ CATALAN.12\n  {{0x63,0x64,0x5f,0x5f}, 0x06051224},   // cd__ CZECH.9 FRENCH.5 GERMAN.1\n  {{0x63,0x66,0x5f,0x5f}, 0x00000542},   // cf__ FRENCH.12\n  {{0x63,0x67,0x5f,0x5f}, 0x00000542},   // cg__ FRENCH.12\n  {{0x63,0x68,0x5f,0x5f}, 0x08050638},   // ch__ GERMAN.11 FRENCH.7 ITALIAN.2\n  {{0x63,0x69,0x5f,0x5f}, 0x00000542},   // ci__ FRENCH.12\n  {{0x63,0x6c,0x5f,0x5f}, 0x00000f42},   // cl__ SPANISH.12\n  {{0x63,0x6d,0x5f,0x5f}, 0x00000542},   // cm__ FRENCH.12\n  {{0x63,0x6e,0x5f,0x5f}, 0x00001142},   // cn__ Chinese.12\n  {{0x63,0x6f,0x5f,0x5f}, 0x00000f42},   // co__ SPANISH.12\n// {{0x63,0x6f,0x6f,0x70}, 0x0f0509cd},   // coop Japanese.10 FRENCH.6 SPANISH.5\n  {{0x63,0x72,0x5f,0x5f}, 0x00000f42},   // cr__ SPANISH.12\n  {{0x63,0x75,0x5f,0x5f}, 0x00000f42},   // cu__ SPANISH.12\n  {{0x63,0x76,0x5f,0x5f}, 0x00000d42},   // cv__ PORTUGUESE.12\n  {{0x63,0x78,0x5f,0x5f}, 0x223a091f},   // cx__ Japanese.8 BASQUE.6 TURKISH.4\n  {{0x63,0x79,0x5f,0x5f}, 0x150622ba},   // cy__ TURKISH.8 GERMAN.4 LATVIAN.3\n  {{0x63,0x7a,0x5f,0x5f}, 0x00001242},   // cz__ CZECH.12\n  {{0x64,0x65,0x5f,0x5f}, 0x00000642},   // de__ GERMAN.12\n  {{0x64,0x6b,0x5f,0x5f}, 0x00000242},   // dk__ DANISH.12\n  {{0x64,0x6f,0x5f,0x5f}, 0x21000f42},   // do__ SPANISH.12 TAGALOG.1\n  {{0x64,0x7a,0x5f,0x5f}, 0x37000535},   // dz__ FRENCH.10 ARABIC.9\n  {{0x65,0x63,0x5f,0x5f}, 0x00000f42},   // ec__ SPANISH.12\n// {{0x65,0x64,0x75,0x5f}, 0x2e0f3873},   // edu_ CATALAN.9 SPANISH.7 ALBANIAN.2\n  {{0x65,0x65,0x5f,0x5f}, 0x00001942},   // ee__ ESTONIAN.12\n  {{0x65,0x67,0x5f,0x5f}, 0x05003742},   // eg__ ARABIC.12 FRENCH.1\n  {{0x65,0x72,0x5f,0x5f}, 0x00000b42},   // er__ NORWEGIAN.12\n  {{0x65,0x73,0x5f,0x5f}, 0x38200fd4},   // es__ SPANISH.11 GALICIAN.4 CATALAN.2\n  {{0x65,0x74,0x5f,0x5f}, 0x39004a39},   // et__ AMHARIC.11 ESPERANTO.3\n  {{0x66,0x69,0x5f,0x5f}, 0x10000444},   // fi__ FINNISH.12 SWEDISH.3\n  {{0x66,0x6a,0x5f,0x5f}, 0x050489e0},   // fj__ FIJIAN.12 FINNISH.5 FRENCH.3\n  {{0x66,0x6f,0x5f,0x5f}, 0x00004742},   // fo__ FAROESE.12\n  {{0x66,0x72,0x5f,0x5f}, 0x00000542},   // fr__ FRENCH.12\n  {{0x67,0x61,0x5f,0x5f}, 0x00000542},   // ga__ FRENCH.12\n  {{0x67,0x64,0x5f,0x5f}, 0x061d05d5},   // gd__ FRENCH.11 CROATIAN.5 GERMAN.3\n  {{0x67,0x65,0x5f,0x5f}, 0x00004c2d},   // ge__ GEORGIAN.10\n  {{0x67,0x66,0x5f,0x5f}, 0x00000542},   // gf__ FRENCH.12\n  {{0x67,0x67,0x5f,0x5f}, 0x06002244},   // gg__ TURKISH.12 GERMAN.3\n  {{0x67,0x68,0x5f,0x5f}, 0x05000436},   // gh__ FINNISH.10 FRENCH.10\n  {{0x67,0x69,0x5f,0x5f}, 0x0f0538ce},   // gi__ CATALAN.10 FRENCH.7 SPANISH.6\n  {{0x67,0x6c,0x5f,0x5f}, 0x398a0238},   // gl__ DANISH.11 GREENLANDIC.7 ESPERANTO.2\n  {{0x67,0x6d,0x5f,0x5f}, 0x0600043e},   // gm__ FINNISH.11 GERMAN.8\n  {{0x67,0x6e,0x5f,0x5f}, 0x00000542},   // gn__ FRENCH.12\n// {{0x67,0x6f,0x76,0x5f}, 0x05000f25},   // gov_ SPANISH.9 FRENCH.2\n  {{0x67,0x70,0x5f,0x5f}, 0x00000542},   // gp__ FRENCH.12\n  {{0x67,0x71,0x5f,0x5f}, 0x0f000547},   // gq__ FRENCH.12 SPANISH.6\n  {{0x67,0x73,0x5f,0x5f}, 0x00000942},   // gs__ Japanese.12\n  {{0x67,0x74,0x5f,0x5f}, 0x00000f42},   // gt__ SPANISH.12\n  {{0x68,0x6b,0x5f,0x5f}, 0x11004643},   // hk__ ChineseT.12 Chinese.2\n  {{0x68,0x6d,0x5f,0x5f}, 0x4606092e},   // hm__ Japanese.10 GERMAN.6 ChineseT.2\n  {{0x68,0x6e,0x5f,0x5f}, 0x00000f42},   // hn__ SPANISH.12\n  {{0x68,0x72,0x5f,0x5f}, 0x00001d42},   // hr__ CROATIAN.12\n  {{0x68,0x74,0x5f,0x5f}, 0x0f000542},   // ht__ FRENCH.12 SPANISH.1\n  {{0x68,0x75,0x5f,0x5f}, 0x00001842},   // hu__ HUNGARIAN.12\n  {{0x69,0x64,0x5f,0x5f}, 0x00002742},   // id__ INDONESIAN.12\n  {{0x69,0x65,0x5f,0x5f}, 0x050c1f24},   // ie__ IRISH.9 POLISH.5 FRENCH.1\n  {{0x69,0x6c,0x5f,0x5f}, 0x00000742},   // il__ HEBREW.12\n  {{0x69,0x6e,0x74,0x5f}, 0x0f060574},   // int_ FRENCH.9 GERMAN.8 SPANISH.3\n  {{0x69,0x6f,0x5f,0x5f}, 0x11090fd5},   // io__ SPANISH.11 Japanese.5 Chinese.3\n  {{0x69,0x71,0x5f,0x5f}, 0x60003744},   // iq__ ARABIC.12 KURDISH.3\n  {{0x69,0x72,0x5f,0x5f}, 0x00004e42},   // ir__ PERSIAN.12\n  {{0x69,0x73,0x5f,0x5f}, 0x00001442},   // is__ ICELANDIC.12\n  {{0x69,0x74,0x5f,0x5f}, 0x00000842},   // it__ ITALIAN.12\n  {{0x6a,0x65,0x5f,0x5f}, 0x29050328},   // je__ DUTCH.9 FRENCH.7 MALAY.5\n  {{0x6a,0x6d,0x5f,0x5f}, 0x040f0576},   // jm__ FRENCH.9 SPANISH.8 FINNISH.5\n  {{0x6a,0x6f,0x5f,0x5f}, 0x00003742},   // jo__ ARABIC.12\n// {{0x6a,0x6f,0x62,0x73}, 0x0f060329},   // jobs DUTCH.9 GERMAN.8 SPANISH.6\n  {{0x6a,0x70,0x5f,0x5f}, 0x00000942},   // jp__ Japanese.12\n  {{0x6b,0x65,0x5f,0x5f}, 0x040f3fc3},   // ke__ SWAHILI.9 SPANISH.5 FINNISH.4\n  {{0x6b,0x69,0x5f,0x5f}, 0x04000643},   // ki__ GERMAN.12 FINNISH.2\n  {{0x6b,0x6d,0x5f,0x5f}, 0x00000542},   // km__ FRENCH.12\n  {{0x6b,0x70,0x5f,0x5f}, 0x00000a42},   // kp__ Korean.12\n  {{0x6b,0x72,0x5f,0x5f}, 0x00000a42},   // kr__ Korean.12\n  {{0x6b,0x77,0x5f,0x5f}, 0x00003742},   // kw__ ARABIC.12\n  {{0x6b,0x79,0x5f,0x5f}, 0x0500083f},   // ky__ ITALIAN.11 FRENCH.9\n  {{0x6b,0x7a,0x5f,0x5f}, 0x0000732d},   // kz__ KAZAKH.10\n  {{0x6c,0x62,0x5f,0x5f}, 0x05003747},   // lb__ ARABIC.12 FRENCH.6\n  {{0x6c,0x63,0x5f,0x5f}, 0x09000645},   // lc__ GERMAN.12 Japanese.4\n  {{0x6c,0x69,0x5f,0x5f}, 0x1600063d},   // li__ GERMAN.11 LITHUANIAN.7\n  {{0x6c,0x73,0x5f,0x5f}, 0x00005742},   // ls__ SESOTHO.12\n  {{0x6c,0x74,0x5f,0x5f}, 0x00001642},   // lt__ LITHUANIAN.12\n  {{0x6c,0x75,0x5f,0x5f}, 0x0600053d},   // lu__ FRENCH.11 GERMAN.7\n  {{0x6c,0x76,0x5f,0x5f}, 0x00001542},   // lv__ LATVIAN.12\n  {{0x6c,0x79,0x5f,0x5f}, 0x05003744},   // ly__ ARABIC.12 FRENCH.3\n  {{0x6d,0x61,0x5f,0x5f}, 0x3700053d},   // ma__ FRENCH.11 ARABIC.7\n  {{0x6d,0x63,0x5f,0x5f}, 0x00000542},   // mc__ FRENCH.12\n  {{0x6d,0x64,0x5f,0x5f}, 0x00001724},   // md__ ROMANIAN.9\n  {{0x6d,0x65,0x5f,0x5f}, 0x00001d42},   // me__ CROATIAN.12\n  {{0x6d,0x67,0x5f,0x5f}, 0x00000542},   // mg__ FRENCH.12\n  {{0x6d,0x6b,0x5f,0x5f}, 0x1c002543},   // mk__ MACEDONIAN.12 BULGARIAN.2\n  {{0x6d,0x6c,0x5f,0x5f}, 0x00000542},   // ml__ FRENCH.12\n  {{0x6d,0x6e,0x5f,0x5f}, 0x00006142},   // mn__ MONGOLIAN.12\n  {{0x6d,0x6f,0x5f,0x5f}, 0x110d4631},   // mo__ ChineseT.10 PORTUGUESE.8 Chinese.5\n  {{0x6d,0x71,0x5f,0x5f}, 0x00000542},   // mq__ FRENCH.12\n  {{0x6d,0x72,0x5f,0x5f}, 0x37000535},   // mr__ FRENCH.10 ARABIC.9\n  {{0x6d,0x73,0x5f,0x5f}, 0x090f06d5},   // ms__ GERMAN.11 SPANISH.5 Japanese.3\n  {{0x6d,0x74,0x5f,0x5f}, 0x00004242},   // mt__ MALTESE.12\n  {{0x6d,0x75,0x5f,0x5f}, 0x05000934},   // mu__ Japanese.10 FRENCH.8\n  {{0x6d,0x76,0x5f,0x5f}, 0x28000436},   // mv__ FINNISH.10 LATIN.10\n  {{0x6d,0x77,0x5f,0x5f}, 0x0611092a},   // mw__ Japanese.9 Chinese.8 GERMAN.7\n  {{0x6d,0x78,0x5f,0x5f}, 0x00000f42},   // mx__ SPANISH.12\n  {{0x6d,0x79,0x5f,0x5f}, 0x00002942},   // my__ MALAY.12\n  {{0x6d,0x7a,0x5f,0x5f}, 0x00000d42},   // mz__ PORTUGUESE.12\n  {{0x6e,0x61,0x5f,0x5f}, 0x06006644},   // na__ AFRIKAANS.12 GERMAN.3\n  {{0x6e,0x63,0x5f,0x5f}, 0x00000542},   // nc__ FRENCH.12\n  {{0x6e,0x65,0x5f,0x5f}, 0x8b000542},   // ne__ FRENCH.12 HAUSA.1\n  {{0x6e,0x66,0x5f,0x5f}, 0x00000542},   // nf__ FRENCH.12\n  {{0x6e,0x69,0x5f,0x5f}, 0x00000f42},   // ni__ SPANISH.12\n  {{0x6e,0x6c,0x5f,0x5f}, 0x00000342},   // nl__ DUTCH.12\n  {{0x6e,0x6f,0x5f,0x5f}, 0x51000b43},   // no__ NORWEGIAN.12 NORWEGIAN_N.2\n  {{0x6e,0x75,0x5f,0x5f}, 0x0300103b},   // nu__ SWEDISH.11 DUTCH.5\n  {{0x6f,0x6d,0x5f,0x5f}, 0x00003742},   // om__ ARABIC.12\n  {{0x70,0x61,0x5f,0x5f}, 0x00000f42},   // pa__ SPANISH.12\n  {{0x70,0x65,0x5f,0x5f}, 0x00000f42},   // pe__ SPANISH.12\n  {{0x70,0x66,0x5f,0x5f}, 0x00000542},   // pf__ FRENCH.12\n  {{0x70,0x67,0x5f,0x5f}, 0x00000f24},   // pg__ SPANISH.9\n  {{0x70,0x68,0x5f,0x5f}, 0x00002142},   // ph__ TAGALOG.12\n  {{0x70,0x6b,0x5f,0x5f}, 0x00003342},   // pk__ URDU.12\n  {{0x70,0x6c,0x5f,0x5f}, 0x30000c42},   // pl__ POLISH.12 BELARUSIAN.1\n  {{0x70,0x6e,0x5f,0x5f}, 0x04000644},   // pn__ GERMAN.12 FINNISH.3\n  {{0x70,0x72,0x5f,0x5f}, 0x00000f42},   // pr__ SPANISH.12\n  {{0x70,0x72,0x6f,0x5f}, 0x46050fd5},   // pro_ SPANISH.11 FRENCH.5 ChineseT.3\n  {{0x70,0x73,0x5f,0x5f}, 0x00003742},   // ps__ ARABIC.12\n  {{0x70,0x74,0x5f,0x5f}, 0x00000d42},   // pt__ PORTUGUESE.12\n  {{0x70,0x79,0x5f,0x5f}, 0x00000f42},   // py__ SPANISH.12\n  {{0x71,0x61,0x5f,0x5f}, 0x00003742},   // qa__ ARABIC.12\n  {{0x72,0x65,0x5f,0x5f}, 0x00000542},   // re__ FRENCH.12\n  {{0x72,0x6f,0x5f,0x5f}, 0x00001742},   // ro__ ROMANIAN.12\n  {{0x72,0x73,0x5f,0x5f}, 0x00001d42},   // rs__ CROATIAN.12\n  {{0x72,0x77,0x5f,0x5f}, 0x9000053e},   // rw__ FRENCH.11 KINYARWANDA.8\n  {{0x73,0x61,0x5f,0x5f}, 0x00003742},   // sa__ ARABIC.12\n  {{0x73,0x62,0x5f,0x5f}, 0x00000442},   // sb__ FINNISH.12\n  {{0x73,0x63,0x5f,0x5f}, 0x060f092f},   // sc__ Japanese.10 SPANISH.7 GERMAN.3\n  {{0x73,0x64,0x5f,0x5f}, 0x00003742},   // sd__ ARABIC.12\n  {{0x73,0x65,0x5f,0x5f}, 0x00001042},   // se__ SWEDISH.12\n  {{0x73,0x69,0x5f,0x5f}, 0x00004042},   // si__ SLOVENIAN.12\n  {{0x73,0x6b,0x5f,0x5f}, 0x12004543},   // sk__ SLOVAK.12 CZECH.2\n  {{0x73,0x6d,0x5f,0x5f}, 0x00000842},   // sm__ ITALIAN.12\n  {{0x73,0x6e,0x5f,0x5f}, 0x00000542},   // sn__ FRENCH.12\n  {{0x73,0x72,0x5f,0x5f}, 0x03001e44},   // sr__ SERBIAN.12 DUTCH.3\n  {{0x73,0x76,0x5f,0x5f}, 0x00000f42},   // sv__ SPANISH.12\n  {{0x73,0x79,0x5f,0x5f}, 0x00003742},   // sy__ ARABIC.12\n  {{0x74,0x63,0x5f,0x5f}, 0x0a2206cd},   // tc__ GERMAN.10 TURKISH.6 Korean.5\n  {{0x74,0x66,0x5f,0x5f}, 0x00000642},   // tf__ GERMAN.12\n  {{0x74,0x67,0x5f,0x5f}, 0x00000542},   // tg__ FRENCH.12\n  {{0x74,0x68,0x5f,0x5f}, 0x9e0936c9},   // th__ THAI.10 Japanese.3 SCOTS.1\n  {{0x74,0x6a,0x5f,0x5f}, 0x00007924},   // tj__ TAJIK.9\n  {{0x74,0x6c,0x5f,0x5f}, 0x060f0dcd},   // tl__ PORTUGUESE.10 SPANISH.6 GERMAN.5\n  {{0x74,0x6e,0x5f,0x5f}, 0x3700053e},   // tn__ FRENCH.11 ARABIC.8\n  {{0x74,0x6f,0x5f,0x5f}, 0x064609c5},   // to__ Japanese.9 ChineseT.7 GERMAN.6\n  {{0x74,0x70,0x5f,0x5f}, 0x06000944},   // tp__ Japanese.12 GERMAN.3\n  {{0x74,0x72,0x5f,0x5f}, 0x00002242},   // tr__ TURKISH.12\n  {{0x74,0x72,0x61,0x76}, 0x064509c3},   // trav Japanese.9 SLOVAK.5 GERMAN.4\n  {{0x74,0x74,0x5f,0x5f}, 0x0f00063e},   // tt__ GERMAN.11 SPANISH.8\n  {{0x74,0x77,0x5f,0x5f}, 0x00004642},   // tw__ ChineseT.12\n  {{0x74,0x7a,0x5f,0x5f}, 0x00003f42},   // tz__ SWAHILI.12\n  {{0x75,0x61,0x5f,0x5f}, 0x0000232d},   // ua__ UKRAINIAN.10\n  {{0x75,0x79,0x5f,0x5f}, 0x00000f42},   // uy__ SPANISH.12\n  {{0x75,0x7a,0x5f,0x5f}, 0x0000492d},   // uz__ UZBEK.10\n  {{0x76,0x61,0x5f,0x5f}, 0x060f0828},   // va__ ITALIAN.9 SPANISH.7 GERMAN.5\n  {{0x76,0x63,0x5f,0x5f}, 0x0d000939},   // vc__ Japanese.11 PORTUGUESE.3\n  {{0x76,0x65,0x5f,0x5f}, 0x00000f42},   // ve__ SPANISH.12\n  {{0x76,0x67,0x5f,0x5f}, 0x09000f43},   // vg__ SPANISH.12 Japanese.2\n  {{0x76,0x69,0x5f,0x5f}, 0x00002942},   // vi__ MALAY.12\n  {{0x76,0x6e,0x5f,0x5f}, 0x00004342},   // vn__ VIETNAMESE.12\n  {{0x76,0x75,0x5f,0x5f}, 0x00000642},   // vu__ GERMAN.12\n  {{0x77,0x73,0x5f,0x5f}, 0x4b0f0624},   // ws__ GERMAN.9 SPANISH.5 AZERBAIJANI.1\n  {{0x79,0x65,0x5f,0x5f}, 0x00003742},   // ye__ ARABIC.12\n  {{0x79,0x75,0x5f,0x5f}, 0x1e001d3d},   // yu__ CROATIAN.11 SERBIAN.7\n  {{0x7a,0x61,0x5f,0x5f}, 0x00006642},   // za__ AFRIKAANS.12\n  {{0x7a,0x6d,0x5f,0x5f}, 0x0b000435},   // zm__ FINNISH.10 NORWEGIAN.9\n  {{0x7a,0x77,0x5f,0x5f}, 0x3f00783e},   // zw__ SHONA.11 SWAHILI.8\n};\n\n\n// Statistically closest language, based on quadgram table\n// Those that are far from other languges map to UNKNOWN_LANGUAGE\n// Subscripted by Language\n//\n// From lang_correlation.txt and hand-edits\n// sed 's/^\\([^ ]*\\) \\([^ ]*\\) coef=0\\.\\(..\\).*$/\n//   (\\3 >= kMinCorrPercent) ? \\2 : UNKNOWN_LANGUAGE,\n//   \\/\\/ \\1/' lang_correlation.txt >/tmp/closest_lang_decl.txt\n//\nstatic const int kMinCorrPercent = 24;        // Pick off how close you want\n                                              // 24 catches PERSIAN <== ARABIC\n                                              // but not SPANISH <== PORTUGESE\nstatic Language Unknown = UNKNOWN_LANGUAGE;\n\n// Subscripted by Language\nstatic const Language kClosestAltLanguage[] = {\n  (28 >= kMinCorrPercent) ? SCOTS : UNKNOWN_LANGUAGE,  // ENGLISH\n  (36 >= kMinCorrPercent) ? NORWEGIAN : UNKNOWN_LANGUAGE,  // DANISH\n  (31 >= kMinCorrPercent) ? AFRIKAANS : UNKNOWN_LANGUAGE,  // DUTCH\n  (15 >= kMinCorrPercent) ? ESTONIAN : UNKNOWN_LANGUAGE,  // FINNISH\n  (11 >= kMinCorrPercent) ? OCCITAN : UNKNOWN_LANGUAGE,  // FRENCH\n  (17 >= kMinCorrPercent) ? LUXEMBOURGISH : UNKNOWN_LANGUAGE,  // GERMAN\n  (27 >= kMinCorrPercent) ? YIDDISH : UNKNOWN_LANGUAGE,  // HEBREW\n  (16 >= kMinCorrPercent) ? CORSICAN : UNKNOWN_LANGUAGE,  // ITALIAN\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // Japanese\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // Korean\n  (41 >= kMinCorrPercent) ? NORWEGIAN_N : UNKNOWN_LANGUAGE,  // NORWEGIAN\n  ( 5 >= kMinCorrPercent) ? SLOVAK : UNKNOWN_LANGUAGE,  // POLISH\n  (23 >= kMinCorrPercent) ? SPANISH : UNKNOWN_LANGUAGE,  // PORTUGUESE\n  (33 >= kMinCorrPercent) ? BULGARIAN : UNKNOWN_LANGUAGE,  // RUSSIAN\n  (28 >= kMinCorrPercent) ? GALICIAN : UNKNOWN_LANGUAGE,  // SPANISH\n  (17 >= kMinCorrPercent) ? NORWEGIAN : UNKNOWN_LANGUAGE,  // SWEDISH\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // Chinese\n  (42 >= kMinCorrPercent) ? SLOVAK : UNKNOWN_LANGUAGE,  // CZECH\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // GREEK\n  (35 >= kMinCorrPercent) ? FAROESE : UNKNOWN_LANGUAGE,  // ICELANDIC\n  ( 7 >= kMinCorrPercent) ? LITHUANIAN : UNKNOWN_LANGUAGE,  // LATVIAN\n  ( 7 >= kMinCorrPercent) ? LATVIAN : UNKNOWN_LANGUAGE,  // LITHUANIAN\n  ( 4 >= kMinCorrPercent) ? LATIN : UNKNOWN_LANGUAGE,  // ROMANIAN\n  ( 4 >= kMinCorrPercent) ? SLOVAK : UNKNOWN_LANGUAGE,  // HUNGARIAN\n  (15 >= kMinCorrPercent) ? FINNISH : UNKNOWN_LANGUAGE,  // ESTONIAN\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // Ignore\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // Unknown\n  (33 >= kMinCorrPercent) ? RUSSIAN : UNKNOWN_LANGUAGE,  // BULGARIAN\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // CROATIAN\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // SERBIAN\n  (24 >= kMinCorrPercent) ? SCOTS_GAELIC : UNKNOWN_LANGUAGE,  // IRISH\n  (28 >= kMinCorrPercent) ? SPANISH : UNKNOWN_LANGUAGE,  // GALICIAN\n  ( 8 >= kMinCorrPercent) ? INDONESIAN : UNKNOWN_LANGUAGE,  // TAGALOG\n  (29 >= kMinCorrPercent) ? AZERBAIJANI : UNKNOWN_LANGUAGE,  // TURKISH\n  (28 >= kMinCorrPercent) ? RUSSIAN : UNKNOWN_LANGUAGE,  // UKRAINIAN\n  (37 >= kMinCorrPercent) ? MARATHI : UNKNOWN_LANGUAGE,  // HINDI\n  (29 >= kMinCorrPercent) ? BULGARIAN : UNKNOWN_LANGUAGE,  // MACEDONIAN\n  (14 >= kMinCorrPercent) ? ASSAMESE : UNKNOWN_LANGUAGE,  // BENGALI\n  (46 >= kMinCorrPercent) ? MALAY : UNKNOWN_LANGUAGE,  // INDONESIAN\n  ( 9 >= kMinCorrPercent) ? INTERLINGUA : UNKNOWN_LANGUAGE,  // LATIN\n  (46 >= kMinCorrPercent) ? INDONESIAN : UNKNOWN_LANGUAGE,  // MALAY\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // MALAYALAM\n  ( 4 >= kMinCorrPercent) ? BRETON : UNKNOWN_LANGUAGE,  // WELSH\n  ( 8 >= kMinCorrPercent) ? HINDI : UNKNOWN_LANGUAGE,  // NEPALI\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // TELUGU\n  ( 3 >= kMinCorrPercent) ? ESPERANTO : UNKNOWN_LANGUAGE,  // ALBANIAN\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // TAMIL\n  (22 >= kMinCorrPercent) ? UKRAINIAN : UNKNOWN_LANGUAGE,  // BELARUSIAN\n  (15 >= kMinCorrPercent) ? SUNDANESE : UNKNOWN_LANGUAGE,  // JAVANESE\n  (19 >= kMinCorrPercent) ? CATALAN : UNKNOWN_LANGUAGE,  // OCCITAN\n  (27 >= kMinCorrPercent) ? PERSIAN : UNKNOWN_LANGUAGE,  // URDU\n  (36 >= kMinCorrPercent) ? HINDI : UNKNOWN_LANGUAGE,  // BIHARI\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // GUJARATI\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // THAI\n  (24 >= kMinCorrPercent) ? PERSIAN : UNKNOWN_LANGUAGE,  // ARABIC\n  (19 >= kMinCorrPercent) ? OCCITAN : UNKNOWN_LANGUAGE,  // CATALAN\n  ( 4 >= kMinCorrPercent) ? LATIN : UNKNOWN_LANGUAGE,  // ESPERANTO\n  ( 3 >= kMinCorrPercent) ? GERMAN : UNKNOWN_LANGUAGE,  // BASQUE\n  ( 9 >= kMinCorrPercent) ? LATIN : UNKNOWN_LANGUAGE,  // INTERLINGUA\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // KANNADA\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // PUNJABI\n  (24 >= kMinCorrPercent) ? IRISH : UNKNOWN_LANGUAGE,  // SCOTS_GAELIC\n  ( 7 >= kMinCorrPercent) ? KINYARWANDA : UNKNOWN_LANGUAGE,  // SWAHILI\n  (28 >= kMinCorrPercent) ? SERBO_CROATIAN : UNKNOWN_LANGUAGE,  // SLOVENIAN\n  (37 >= kMinCorrPercent) ? HINDI : UNKNOWN_LANGUAGE,  // MARATHI\n  ( 3 >= kMinCorrPercent) ? ITALIAN : UNKNOWN_LANGUAGE,  // MALTESE\n  ( 1 >= kMinCorrPercent) ? YORUBA : UNKNOWN_LANGUAGE,  // VIETNAMESE\n  (15 >= kMinCorrPercent) ? DUTCH : UNKNOWN_LANGUAGE,  // FRISIAN\n  (42 >= kMinCorrPercent) ? CZECH : UNKNOWN_LANGUAGE,  // SLOVAK\n  // Original ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // ChineseT\n  (24 >= kMinCorrPercent) ? CHINESE : UNKNOWN_LANGUAGE,  // ChineseT\n  (35 >= kMinCorrPercent) ? ICELANDIC : UNKNOWN_LANGUAGE,  // FAROESE\n  (15 >= kMinCorrPercent) ? JAVANESE : UNKNOWN_LANGUAGE,  // SUNDANESE\n  (17 >= kMinCorrPercent) ? TAJIK : UNKNOWN_LANGUAGE,  // UZBEK\n  ( 7 >= kMinCorrPercent) ? TIGRINYA : UNKNOWN_LANGUAGE,  // AMHARIC\n  (29 >= kMinCorrPercent) ? TURKISH : UNKNOWN_LANGUAGE,  // AZERBAIJANI\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // GEORGIAN\n  ( 7 >= kMinCorrPercent) ? AMHARIC : UNKNOWN_LANGUAGE,  // TIGRINYA\n  (27 >= kMinCorrPercent) ? URDU : UNKNOWN_LANGUAGE,  // PERSIAN\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // BOSNIAN\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // SINHALESE\n  (41 >= kMinCorrPercent) ? NORWEGIAN : UNKNOWN_LANGUAGE,  // NORWEGIAN_N\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // PORTUGUESE_P\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // PORTUGUESE_B\n  (37 >= kMinCorrPercent) ? ZULU : UNKNOWN_LANGUAGE,  // XHOSA\n  (37 >= kMinCorrPercent) ? XHOSA : UNKNOWN_LANGUAGE,  // ZULU\n  ( 2 >= kMinCorrPercent) ? SPANISH : UNKNOWN_LANGUAGE,  // GUARANI\n  (29 >= kMinCorrPercent) ? TSWANA : UNKNOWN_LANGUAGE,  // SESOTHO\n  ( 7 >= kMinCorrPercent) ? TURKISH : UNKNOWN_LANGUAGE,  // TURKMEN\n  ( 8 >= kMinCorrPercent) ? KAZAKH : UNKNOWN_LANGUAGE,  // KYRGYZ\n  ( 5 >= kMinCorrPercent) ? FRENCH : UNKNOWN_LANGUAGE,  // BRETON\n  ( 3 >= kMinCorrPercent) ? GANDA : UNKNOWN_LANGUAGE,  // TWI\n  (27 >= kMinCorrPercent) ? HEBREW : UNKNOWN_LANGUAGE,  // YIDDISH\n  (28 >= kMinCorrPercent) ? SLOVENIAN : UNKNOWN_LANGUAGE,  // SERBO_CROATIAN\n  (12 >= kMinCorrPercent) ? OROMO : UNKNOWN_LANGUAGE,  // SOMALI\n  ( 9 >= kMinCorrPercent) ? UZBEK : UNKNOWN_LANGUAGE,  // UIGHUR\n  (15 >= kMinCorrPercent) ? PERSIAN : UNKNOWN_LANGUAGE,  // KURDISH\n  ( 6 >= kMinCorrPercent) ? KYRGYZ : UNKNOWN_LANGUAGE,  // MONGOLIAN\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // ARMENIAN\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // LAOTHIAN\n  ( 8 >= kMinCorrPercent) ? URDU : UNKNOWN_LANGUAGE,  // SINDHI\n  (10 >= kMinCorrPercent) ? ITALIAN : UNKNOWN_LANGUAGE,  // RHAETO_ROMANCE\n  (31 >= kMinCorrPercent) ? DUTCH : UNKNOWN_LANGUAGE,  // AFRIKAANS\n  (17 >= kMinCorrPercent) ? GERMAN : UNKNOWN_LANGUAGE,  // LUXEMBOURGISH\n  ( 2 >= kMinCorrPercent) ? SCOTS : UNKNOWN_LANGUAGE,  // BURMESE\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // KHMER\n  (45 >= kMinCorrPercent) ? DZONGKHA : UNKNOWN_LANGUAGE,  // TIBETAN\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // DHIVEHI\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // CHEROKEE\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // SYRIAC\n  ( 8 >= kMinCorrPercent) ? DUTCH : UNKNOWN_LANGUAGE,  // LIMBU\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // ORIYA\n  (14 >= kMinCorrPercent) ? BENGALI : UNKNOWN_LANGUAGE,  // ASSAMESE\n  (16 >= kMinCorrPercent) ? ITALIAN : UNKNOWN_LANGUAGE,  // CORSICAN\n  ( 5 >= kMinCorrPercent) ? INTERLINGUA : UNKNOWN_LANGUAGE,  // INTERLINGUE\n  ( 8 >= kMinCorrPercent) ? KYRGYZ : UNKNOWN_LANGUAGE,  // KAZAKH\n  ( 4 >= kMinCorrPercent) ? SWAHILI : UNKNOWN_LANGUAGE,  // LINGALA\n  (11 >= kMinCorrPercent) ? RUSSIAN : UNKNOWN_LANGUAGE,  // MOLDAVIAN\n  (19 >= kMinCorrPercent) ? PERSIAN : UNKNOWN_LANGUAGE,  // PASHTO\n  ( 5 >= kMinCorrPercent) ? AYMARA : UNKNOWN_LANGUAGE,  // QUECHUA\n  ( 5 >= kMinCorrPercent) ? KINYARWANDA : UNKNOWN_LANGUAGE,  // SHONA\n  (17 >= kMinCorrPercent) ? UZBEK : UNKNOWN_LANGUAGE,  // TAJIK\n  (13 >= kMinCorrPercent) ? BASHKIR : UNKNOWN_LANGUAGE,  // TATAR\n  (11 >= kMinCorrPercent) ? SAMOAN : UNKNOWN_LANGUAGE,  // TONGA\n  ( 2 >= kMinCorrPercent) ? TWI : UNKNOWN_LANGUAGE,  // YORUBA\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // CREOLES_AND_PIDGINS_ENGLISH_BASED\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // CREOLES_AND_PIDGINS_FRENCH_BASED\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // CREOLES_AND_PIDGINS_PORTUGUESE_BASED\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // CREOLES_AND_PIDGINS_OTHER\n  ( 6 >= kMinCorrPercent) ? TONGA : UNKNOWN_LANGUAGE,  // MAORI\n  ( 3 >= kMinCorrPercent) ? OROMO : UNKNOWN_LANGUAGE,  // WOLOF\n  ( 1 >= kMinCorrPercent) ? MONGOLIAN : UNKNOWN_LANGUAGE,  // ABKHAZIAN\n  ( 8 >= kMinCorrPercent) ? SOMALI : UNKNOWN_LANGUAGE,  // AFAR\n  ( 5 >= kMinCorrPercent) ? QUECHUA : UNKNOWN_LANGUAGE,  // AYMARA\n  (13 >= kMinCorrPercent) ? TATAR : UNKNOWN_LANGUAGE,  // BASHKIR\n  ( 3 >= kMinCorrPercent) ? ENGLISH : UNKNOWN_LANGUAGE,  // BISLAMA\n  (45 >= kMinCorrPercent) ? TIBETAN : UNKNOWN_LANGUAGE,  // DZONGKHA\n  ( 4 >= kMinCorrPercent) ? TONGA : UNKNOWN_LANGUAGE,  // FIJIAN\n  ( 7 >= kMinCorrPercent) ? INUPIAK : UNKNOWN_LANGUAGE,  // GREENLANDIC\n  ( 3 >= kMinCorrPercent) ? AFAR : UNKNOWN_LANGUAGE,  // HAUSA\n  ( 3 >= kMinCorrPercent) ? OCCITAN : UNKNOWN_LANGUAGE,  // HAITIAN_CREOLE\n  ( 7 >= kMinCorrPercent) ? GREENLANDIC : UNKNOWN_LANGUAGE,  // INUPIAK\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // INUKTITUT\n  ( 4 >= kMinCorrPercent) ? HINDI : UNKNOWN_LANGUAGE,  // KASHMIRI\n  (30 >= kMinCorrPercent) ? RUNDI : UNKNOWN_LANGUAGE,  // KINYARWANDA\n  ( 2 >= kMinCorrPercent) ? TAGALOG : UNKNOWN_LANGUAGE,  // MALAGASY\n  (17 >= kMinCorrPercent) ? GERMAN : UNKNOWN_LANGUAGE,  // NAURU\n  (12 >= kMinCorrPercent) ? SOMALI : UNKNOWN_LANGUAGE,  // OROMO\n  (30 >= kMinCorrPercent) ? KINYARWANDA : UNKNOWN_LANGUAGE,  // RUNDI\n  (11 >= kMinCorrPercent) ? TONGA : UNKNOWN_LANGUAGE,  // SAMOAN\n  ( 1 >= kMinCorrPercent) ? LINGALA : UNKNOWN_LANGUAGE,  // SANGO\n  (32 >= kMinCorrPercent) ? MARATHI : UNKNOWN_LANGUAGE,  // SANSKRIT\n  (16 >= kMinCorrPercent) ? ZULU : UNKNOWN_LANGUAGE,  // SISWANT\n  ( 5 >= kMinCorrPercent) ? SISWANT : UNKNOWN_LANGUAGE,  // TSONGA\n  (29 >= kMinCorrPercent) ? SESOTHO : UNKNOWN_LANGUAGE,  // TSWANA\n  ( 2 >= kMinCorrPercent) ? ESTONIAN : UNKNOWN_LANGUAGE,  // VOLAPUK\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // ZHUANG\n  ( 1 >= kMinCorrPercent) ? MALAY : UNKNOWN_LANGUAGE,  // KHASI\n  (28 >= kMinCorrPercent) ? ENGLISH : UNKNOWN_LANGUAGE,  // SCOTS\n  (15 >= kMinCorrPercent) ? KINYARWANDA : UNKNOWN_LANGUAGE,  // GANDA\n  ( 7 >= kMinCorrPercent) ? ENGLISH : UNKNOWN_LANGUAGE,  // MANX\n  ( 0 >= kMinCorrPercent) ? Unknown : UNKNOWN_LANGUAGE,  // MONTENEGRIN\n};\n\nCOMPILE_ASSERT(arraysize(kClosestAltLanguage) == NUM_LANGUAGES,\n               kClosestAltLanguage_has_incorrect_size);\n\n\ninline bool FlagFinish(int flags) {return (flags & kCLDFlagFinish) != 0;}\ninline bool FlagSqueeze(int flags) {return (flags & kCLDFlagSqueeze) != 0;}\ninline bool FlagRepeats(int flags) {return (flags & kCLDFlagRepeats) != 0;}\ninline bool FlagTop40(int flags) {return (flags & kCLDFlagTop40) != 0;}\ninline bool FlagShort(int flags) {return (flags & kCLDFlagShort) != 0;}\ninline bool FlagHint(int flags) {return (flags & kCLDFlagHint) != 0;}\ninline bool FlagUseWords(int flags) {return (flags & kCLDFlagUseWords) != 0;}\n\n\n\n\n//------------------------------------------------------------------------------\n// For --cld_html debugging output. Not thread safe\n//------------------------------------------------------------------------------\nstatic Language prior_lang = UNKNOWN_LANGUAGE;\nstatic bool prior_unreliable = false;\n\n//------------------------------------------------------------------------------\n// End For --cld_html debugging output\n//------------------------------------------------------------------------------\n\n\n// Backscan to word boundary, returning how many bytes n to go back\n// so that src - n is non-space ans src - n - 1 is space.\n// If not found in kMaxSpaceScan bytes, return 0\nint BackscanToSpace(const char* src, int limit) {\n  int n = 0;\n  limit = cld::minint(limit, kMaxSpaceScan);\n  while (n < limit) {\n    if (src[-n - 1] == ' ') {return n;}    // We are at _X\n    ++n;\n  }\n  return 0;\n}\n\n// Forwardscan to word boundary, returning how many bytes n to go forward\n// so that src + n is non-space ans src + n - 1 is space.\n// If not found in kMaxSpaceScan bytes, return 0\nint ForwardscanToSpace(const char* src, int limit) {\n  int n = 0;\n  limit = cld::minint(limit, kMaxSpaceScan);\n  while (n < limit) {\n    if (src[n] == ' ') {return n + 1;}    // We are at _X\n    ++n;\n  }\n  return 0;\n}\n\n\n// This uses a cheap predictor to get a measure of compression, and\n// hence a measure of repetitiveness. It works on complete UTF-8 characters\n// instead of bytes, because three-byte UTF-8 Indic, etc. text compress highly\n// all the time when done with a byte-based count. Sigh.\n//\n// To allow running prediction across multiple chunks, caller passes in current\n// 12-bit hash value and int[4096] prediction table. Caller inits these to 0.\n//\n// Returns the number of *bytes* correctly predicted, increments by 1..4 for\n// each correctly-predicted character.\n//\n// NOTE: Overruns by up to three bytes. Not a problem with valid UTF-8 text\n//\nint CountPredictedBytes(const char* isrc, int srclen, int* hash, int* tbl) {\n  int p_count = 0;\n  const uint8* src = reinterpret_cast<const uint8*>(isrc);\n  const uint8* srclimit = src + srclen;\n  int local_hash = *hash;\n\n  while (src < srclimit) {\n    int c = src[0];\n    int incr = 1;\n\n    // Pick up one char and length\n    if (c < 0xc0) {\n      // One-byte or continuation byte: 00xxxxxx 01xxxxxx 10xxxxxx\n      // Do nothing more\n    } else if ((c & 0xe0) == 0xc0) {\n      // Two-byte\n      c = (c << 8) | src[1];\n      incr = 2;\n    } else if ((c & 0xf0) == 0xe0) {\n      // Three-byte\n      c = (c << 16) | (src[1] << 8) | src[2];\n      incr = 3;\n    } else {\n      // Four-byte\n      c = (c << 24) | (src[1] << 16) | (src[2] << 8) | src[3];\n      incr = 4;\n    }\n    src += incr;\n\n    int p = tbl[local_hash];            // Prediction\n    tbl[local_hash] = c;                // Update prediction\n    p_count += (c == p);                // Count good predictions\n\n    local_hash = ((local_hash << 4) ^ c) & 0xfff;\n  }\n\n  *hash = local_hash;\n  return p_count;\n}\n\n\n\n// Counts number of spaces; a little faster than one-at-a-time\n// Doesn't count odd bytes at end\nint CountSpaces4(const char* src, int src_len) {\n  int s_count = 0;\n  for (int i = 0; i < (src_len & ~3); i += 4) {\n    s_count += (src[i] == ' ');\n    s_count += (src[i+1] == ' ');\n    s_count += (src[i+2] == ' ');\n    s_count += (src[i+3] == ' ');\n  }\n  return s_count;\n}\n\n// Remove words of text that have more than half their letters predicted\n// correctly by our cheap predictor, moving the remaining words in-place\n// to the front of the input buffer.\n//\n// To allow running prediction across multiple chunks, caller passes in current\n// 12-bit hash value and int[4096] prediction table. Caller inits these to 0.\n//\n// Return the new, possibly-shorter length\n//\n// Result Buffer ALWAYS has leading space and trailing space space space NUL,\n// if input does\n//\nint CheapRepWordsInplace(char* isrc, int srclen, int* hash, int* tbl) {\n  const uint8* src = reinterpret_cast<const uint8*>(isrc);\n  const uint8* srclimit = src + srclen;\n  char* dst = isrc;\n  int local_hash = *hash;\n  char* word_dst = dst;           // Start of next word\n  int good_predict_bytes = 0;\n  int word_length_bytes = 0;\n\n  while (src < srclimit) {\n    int c = src[0];\n    int incr = 1;\n    *dst++ = c;\n\n    if (c == ' ') {\n      if ((good_predict_bytes * 2) > word_length_bytes) {\n        // Word is well-predicted: backup to start of this word\n        dst = word_dst;\n        if (FLAGS_cld_showme) {\n          // Mark the deletion point with period\n          // Don't repeat multiple periods\n          // Cannot mark with more bytes or may overwrite unseen input\n          if ((isrc < (dst - 2)) && (dst[-2] != '.')) {\n            *dst++ = '.';\n            *dst++ = ' ';\n          }\n        }\n      }\n      word_dst = dst;              // Start of next word\n      good_predict_bytes = 0;\n      word_length_bytes = 0;\n    }\n\n    // Pick up one char and length\n    if (c < 0xc0) {\n      // One-byte or continuation byte: 00xxxxxx 01xxxxxx 10xxxxxx\n      // Do nothing more\n    } else if ((c & 0xe0) == 0xc0) {\n      // Two-byte\n      *dst++ = src[1];\n      c = (c << 8) | src[1];\n      incr = 2;\n    } else if ((c & 0xf0) == 0xe0) {\n      // Three-byte\n      *dst++ = src[1];\n      *dst++ = src[2];\n      c = (c << 16) | (src[1] << 8) | src[2];\n      incr = 3;\n    } else {\n      // Four-byte\n      *dst++ = src[1];\n      *dst++ = src[2];\n      *dst++ = src[3];\n      c = (c << 24) | (src[1] << 16) | (src[2] << 8) | src[3];\n      incr = 4;\n    }\n    src += incr;\n    word_length_bytes += incr;\n\n    int p = tbl[local_hash];            // Prediction\n    tbl[local_hash] = c;                // Update prediction\n    if (c == p) {\n      good_predict_bytes += incr;       // Count good predictions\n    }\n\n    local_hash = ((local_hash << 4) ^ c) & 0xfff;\n  }\n\n  *hash = local_hash;\n\n  if ((dst - isrc) < (srclen - 3)) {\n    // Pad and make last char clean UTF-8 by putting following spaces\n    dst[0] = ' ';\n    dst[1] = ' ';\n    dst[2] = ' ';\n    dst[3] = '\\0';\n  } else   if ((dst - isrc) < srclen) {\n    // Make last char clean UTF-8 by putting following space off the end\n    dst[0] = ' ';\n  }\n\n  return static_cast<int>(dst - isrc);\n}\n\n\n// Remove portions of text that have a high density of spaces, or that are\n// overly repetitive, squeezing the remaining text in-place to the front of the\n// input buffer.\n//\n// Squeezing looks at density of space/prediced chars in fixed-size chunks,\n// specified by chunksize. A chunksize <= 0 uses the default size of 48 bytes.\n//\n// Return the new, possibly-shorter length\n//\n// Result Buffer ALWAYS has leading space and trailing space space space NUL,\n// if input does\n//\nint CompactLangDetImpl::CheapSqueezeInplace(char* isrc,\n                                            int srclen,\n                                            int ichunksize) {\n  char* src = isrc;\n  char* dst = src;\n  char* srclimit = src + srclen;\n  bool skipping = false;\n\n  int hash = 0;\n  // Allocate local prediction table.\n  int* predict_tbl = new int[kPredictionTableSize];\n  memset(predict_tbl, 0, kPredictionTableSize * sizeof(predict_tbl[0]));\n\n  int chunksize = ichunksize;\n  if (chunksize == 0) {chunksize = kChunksizeDefault;}\n  int space_thresh = (chunksize * kSpacesThreshPercent) / 100;\n  int predict_thresh = (chunksize * kPredictThreshPercent) / 100;\n\n  while (src < srclimit) {\n    int remaining_bytes = srclimit - src;\n    int len = cld::minint(chunksize, remaining_bytes);\n    int space_n = CountSpaces4(src, len);\n    int predb_n = CountPredictedBytes(src, len, &hash, predict_tbl);\n    if ((space_n >= space_thresh) || (predb_n >= predict_thresh)) {\n      // Skip the text\n      if (!skipping) {\n        // Keeping-to-skipping transition; do it at a space\n        int n = BackscanToSpace(dst, static_cast<int>(dst - isrc));\n        dst -= n;\n        skipping = true;\n        if (FLAGS_cld_showme) {\n          // Mark the deletion point with black square U+25A0\n          *dst++ = 0xe2;\n          *dst++ = 0x96;\n          *dst++ = 0xa0;\n          *dst++ = ' ';\n        }\n        if (dst == isrc) {\n          // Force a leading space if the first chunk is deleted\n          *dst++ = ' ';\n        }\n      }\n    } else {\n      // Keep the text\n      if (skipping) {\n        // Skipping-to-keeping transition; do it at a space\n        int n = ForwardscanToSpace(src, len);\n        src += n;\n        remaining_bytes -= n;   // Shrink remaining length\n        len -= n;\n        skipping = false;\n      }\n      // \"len\" can be negative in some cases\n      if (len > 0) {\n        memcpy(dst, src, len);\n        dst += len;\n      }\n    }\n    src += len;\n  }\n\n  if ((dst - isrc) < (srclen - 3)) {\n    // Pad and make last char clean UTF-8 by putting following spaces\n    dst[0] = ' ';\n    dst[1] = ' ';\n    dst[2] = ' ';\n    dst[3] = '\\0';\n  } else   if ((dst - isrc) < srclen) {\n    // Make last char clean UTF-8 by putting following space off the end\n    dst[0] = ' ';\n  }\n\n  // Deallocate local prediction table\n  delete[] predict_tbl;\n  return static_cast<int>(dst - isrc);\n}\n\n// Timing 2.8GHz P4 (dsites 2008.03.20) with 170KB input\n//  About 90 MB/sec, with or without memcpy, chunksize 48 or 4096\n//  Just CountSpaces is about 340 MB/sec\n//  Byte-only CountPredictedBytes is about 150 MB/sec\n//  Byte-only CountPredictedBytes, conditional tbl[] = is about 85! MB/sec\n//  Byte-only CountPredictedBytes is about 180 MB/sec, byte tbl, byte/int c\n//  Unjammed byte-only both = 170 MB/sec\n//  Jammed byte-only both = 120 MB/sec\n//  Back to original w/slight updates, 110 MB/sec\n//\nbool CheapSqueezeTriggerTest(const char* src, int srclen, int testsize) {\n  // Don't trigger at all on short text\n  if (srclen < testsize) {return false;}\n  int space_thresh = (testsize * kSpacesTriggerPercent) / 100;\n  int predict_thresh = (testsize * kPredictTriggerPercent) / 100;\n  int hash = 0;\n  // Allocate local prediction table.\n  int* predict_tbl = new int[kPredictionTableSize];\n  memset(predict_tbl, 0, kPredictionTableSize * sizeof(predict_tbl[0]));\n\n  bool retval = false;\n  if ((CountSpaces4(src, testsize) >= space_thresh) ||\n      (CountPredictedBytes(src, testsize, &hash, predict_tbl) >=\n       predict_thresh)) {\n    retval = true;\n  }\n  // Deallocate local prediction table\n  delete[] predict_tbl;\n  return retval;\n}\n\n\n\n// Close pairs (correlation) language_enum/language_enum\n//  id/ms (0.47)    38/40    [1]\n//  bo/dz (0.46)    105/135  [2]\n//  cz/sk (0.43)    17/68    [3]\n//  no/nn (0.42)    10/80    [4]\n//  hi/mr (0.38)    35/64    [5]\n//  xh/zu (0.37)    83/84    [6]\n// Subscripted by packed language, gives 0 or a subscript in closepair\n// scoring array inside doc_tote\nstatic const uint8 kClosePair[EXT_NUM_LANGUAGES + 1] = {\n  0,\n  0,0,0,0,0,0,0,0, 0,0,4,0,0,0,0,0, 0,3,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  0,0,0,5,0,0,1,0, 1,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  5,0,0,0,3,0,0,0, 0,0,0,0,0,0,0,0, 4,0,0,6,6,0,0,0, 0,0,0,0,0,0,0,0,\n  0,0,0,0,0,0,0,0, 0,2,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  0,0,0,0,0,0,0,2, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  // Add new language close-pair number just before here (just use 0)\n};\n\n\n// Delete any extended languages from doc_tote\nvoid RemoveExtendedLanguages(ToteWithReliability* doc_tote) {\n  for (int sub = 0; sub < doc_tote->MaxSize(); ++sub) {\n    if (cld::UnpackLanguage(doc_tote->Key(sub)) >= NUM_LANGUAGES) {\n      // Effectively remove the extended language by setting key&score to zero\n      if (FLAGS_dbgscore) {\n        fprintf(stderr, \"{-%s} \",\n                ExtLanguageCode(cld::UnpackLanguage(doc_tote->Key(sub))));\n      }\n\n      // Delete entry\n      doc_tote->SetKey(sub, 0);\n      doc_tote->SetValue(sub, 0);\n      doc_tote->SetReliability(sub, 0);\n    }\n  }\n}\n\nstatic const int kMinReliableKeepPercent = 41;  // Remove lang if reli < this\n\n// For Tier3 languages, require a minimum number of bytes to be first-place lang\nstatic const int kGoodFirstT3MinBytes = 24;         // <this => no first\n\n// Move bytes for unreliable langs to another lang or UNKNOWN\n// doc_tote is sorted, so cannot Add\n//\n// If both CHINESE and CHINESET are present and unreliable, do not delete both;\n// merge both into CHINESE.\n//\n//dsites 2009.03.19\n// we also want to remove Tier3 languages as the first lang if there is very\n// little text like ej1 ej2 ej3 ej4\n// maybe fold this back in earlier\n//\nvoid RemoveUnreliableLanguages(ToteWithReliability* doc_tote, bool do_remove_weak_matches) {\n  // Prepass to merge some low-reliablility languages\n  int total_bytes = 0;\n  for (int sub = 0; sub < doc_tote->MaxSize(); ++sub) {\n    int plang = doc_tote->Key(sub);\n    if (plang == 0) {continue;}                     // Empty slot\n\n    Language lang = cld::UnpackLanguage(plang);\n    int bytes = doc_tote->Value(sub);\n    int reli = doc_tote->Reliability(sub);\n    if (bytes == 0) {continue;}                     // Zero bytes\n    total_bytes += bytes;\n\n    // Reliable percent is stored reliable score over stored bytecount\n    int reliable_percent = reli / bytes;\n    if (reliable_percent >= kMinReliableKeepPercent) {continue;}   // Keeper\n\n    // This language is too unreliable to keep, but we might merge it.\n    Language altlang = UNKNOWN_LANGUAGE;\n    if (lang < NUM_LANGUAGES) {altlang = kClosestAltLanguage[lang];}\n    if (altlang == UNKNOWN_LANGUAGE) {continue;}    // No alternative\n\n    // Look for alternative in doc_tote\n    int altsub = doc_tote->Find(cld::PackLanguage(altlang));\n    if (altsub < 0) {continue;}                     // No alternative text\n\n    int bytes2 = doc_tote->Value(altsub);\n    int reli2 = doc_tote->Reliability(altsub);\n    if (bytes2 == 0) {continue;}                    // Zero bytes\n\n    // Reliable percent is stored reliable score over stored bytecount\n    int reliable_percent2 = reli2 / bytes2;\n\n    // Merge one language into the other. Break ties toward lower lang #\n    int tosub = altsub;\n    int fromsub = sub;\n    bool into_lang = false;\n    if ((reliable_percent2 < reliable_percent) ||\n        ((reliable_percent2 == reliable_percent) && (lang < altlang))) {\n      tosub = sub;\n      fromsub = altsub;\n      into_lang = true;\n    }\n\n    // Make sure reliability doesn't drop and is enough to avoid delete\n    int newpercent = cld::maxint(reliable_percent, reliable_percent2);\n    newpercent = cld::maxint(newpercent, kMinReliableKeepPercent);\n    int newbytes = bytes + bytes2;\n    int newreli = newpercent * newbytes;\n\n    doc_tote->SetKey(fromsub, 0);\n    doc_tote->SetValue(fromsub, 0);\n    doc_tote->SetReliability(fromsub, 0);\n    doc_tote->SetValue(tosub, newbytes);\n    doc_tote->SetReliability(tosub, newreli);\n\n    // Show fate of unreliable languages if at least 10 bytes\n    if (FLAGS_cld_html /*&& (newpercent >= 10)*/ && (newbytes >= 10)) {\n      if (into_lang) {\n        fprintf(stderr, \"{Unreli %s.%d(%dB) => %s} \",\n                ExtLanguageCode(altlang), reliable_percent2, bytes2,\n                ExtLanguageCode(lang));\n      } else {\n        fprintf(stderr, \"{Unreli %s.%d(%dB) => %s} \",\n                ExtLanguageCode(lang), reliable_percent, bytes,\n                ExtLanguageCode(altlang));\n      }\n    }\n  }\n\n\n  if (do_remove_weak_matches) {\n    // Pass to delete any remaining unreliable languages\n    for (int sub = 0; sub < doc_tote->MaxSize(); ++sub) {\n      int plang = doc_tote->Key(sub);\n      if (plang == 0) {continue;}                     // Empty slot\n\n      Language lang = cld::UnpackLanguage(plang);\n      int bytes = doc_tote->Value(sub);\n      int reli = doc_tote->Reliability(sub);\n      if (bytes == 0) {continue;}                     // Zero bytes\n\n      bool is_tier3 = (cld::kIsPackedTop40[plang] == 0);\n      if (is_tier3 &&\n          (bytes < kGoodFirstT3MinBytes) &&\n          (bytes < total_bytes)) {\n        reli = 0;                                     // Too-short tier3\n      }\n\n      // Reliable percent is stored as reliable score over stored bytecount\n      int reliable_percent = reli / bytes;\n      if (reliable_percent >= kMinReliableKeepPercent) {continue;}  // Keeper\n\n      // Delete unreliable entry\n      doc_tote->SetKey(sub, 0);\n      doc_tote->SetValue(sub, 0);\n      doc_tote->SetReliability(sub, 0);\n\n      // Show fate of unreliable languages if at least 10 bytes\n      if (FLAGS_cld_html /*&& (reliable_percent >= 10)*/ && (bytes >= 10)) {\n        fprintf(stderr, \"{Unreli %s.%d(%dB)} \",\n                ExtLanguageCode(lang), reliable_percent, bytes);\n      }\n    }\n  }\n\n  if (FLAGS_cld_html) {fprintf(stderr, \"<br>\\n\");}\n}\n\n\n// Move less likely byte count to more likely for close pairs of languages\nvoid RefineScoredClosePairs(ToteWithReliability* doc_tote) {\n  for (int sub = 0; sub < doc_tote->MaxSize(); ++sub) {\n    int close_packedlang = doc_tote->Key(sub);\n    int subscr = kClosePair[close_packedlang];\n    if (subscr == 0) {continue;}\n\n    // We have a close pair language -- if the other one is also scored and the\n    // longword score differs enough, put all our eggs into one basket\n\n    // Nonzero longword score: Go look for the other of this pair\n    for (int sub2 = sub + 1; sub2 < doc_tote->MaxSize(); ++sub2) {\n      if (kClosePair[doc_tote->Key(sub2)] == subscr) {\n        // We have a matching pair\n        int close_packedlang2 = doc_tote->Key(sub2);\n\n        // Move all the text bytes from lower byte-count to higher one\n        int from_sub, to_sub;\n        Language from_lang, to_lang;\n        if (doc_tote->Value(sub) < doc_tote->Value(sub2)) {\n          from_sub = sub;\n          to_sub = sub2;\n          from_lang = cld::UnpackLanguage(close_packedlang);\n          to_lang = cld::UnpackLanguage(close_packedlang2);\n        } else {\n          from_sub = sub2;\n          to_sub = sub;\n          from_lang = cld::UnpackLanguage(close_packedlang2);\n          to_lang = cld::UnpackLanguage(close_packedlang);\n        }\n\n        // Move all the bytes smaller => larger of the pair\n        if (FLAGS_cld_html || FLAGS_dbgscore) {\n          // Show fate of closepair language\n          int val = doc_tote->Value(from_sub);\n          int reli = doc_tote->Reliability(from_sub);\n          int reliable_percent = reli / (val ? val : 1);  // avoid zdiv\n          fprintf(stderr, \"{CloseLangPair: %s.%d%%(%dB) => %s} \",\n                  ExtLanguageCode(from_lang),\n                  reliable_percent,\n                  doc_tote->Value(from_sub),\n                  ExtLanguageCode(to_lang));\n        }\n        int sum = doc_tote->Value(to_sub) + doc_tote->Value(from_sub);\n        doc_tote->SetValue(to_sub, sum);\n        doc_tote->SetReliability(to_sub, 100 * sum);\n\n        // Delete old entry\n        doc_tote->SetKey(from_sub, 0);\n        doc_tote->SetValue(from_sub, 0);\n        doc_tote->SetReliability(from_sub, 0);\n\n        break;    // Exit inner for sub2 loop\n      }\n    }     // End for sub2\n  }   // End for sub\n}\n\n\nvoid ApplyLanguageHints(Tote* chunk_tote, int tote_grams,\n                        uint8* lang_hint_boost) {\n  // Need 8 quad/unigrams to give full hint boost, else derate linearly\n  if (tote_grams > 8) {\n    tote_grams = 8;\n  }\n  for (int sub = 0; sub < chunk_tote->MaxSize(); ++sub) {\n    // Hint boosts are per packed subscript\n    int lang_sub = chunk_tote->Key(sub);\n    int new_value = chunk_tote->Value(sub) +\n      ((lang_hint_boost[lang_sub] * tote_grams) >> 3);\n    chunk_tote->SetValue(sub, new_value);\n    if (FLAGS_dbgscore && (lang_hint_boost[lang_sub] > 0)) {\n      fprintf(stderr, \"[%s+=%d*%d/8] \",\n              ExtLanguageCode(cld::UnpackLanguage(lang_sub)),\n              lang_hint_boost[lang_sub], tote_grams);\n    }\n  }\n}\n\n\nvoid PrintHtmlEscapedText(FILE* f, const char* txt, int len) {\n  for (int i = 0; i < len; ++i) {\n    char c = txt[i];\n    if (c == '<') {\n      fprintf(f, \"&lt;\");\n    } else if (c == '>') {\n      fprintf(f, \"&gt;\");\n    } else if (c == '&') {\n      fprintf(f, \"&amp;\");\n    } else if (c == '\\'') {\n      fprintf(f, \"&apos;\");\n    } else if (c == '\"') {\n      fprintf(f, \"&quot;\");\n    } else {\n      fprintf(f, \"%c\", c);\n    }\n  }\n  fprintf(f, \"<br>\\n\");\n}\n\n\n// Add one chunk's score to running document score\n// If the top language is UNKNOWN_LANGUAGE, score nothing. This is used to\n// positively identify text to be ignored, such as link farms.\n// Sort before scoring and reinit afterward\n//\n// src and srclen are just for debug output\nvoid ScoreChunkIntoDoc(const char* src, int srclen, int advance_by,\n                       UnicodeLScript lscript,\n                       Tote* chunk_tote,\n                       ToteWithReliability* doc_tote,\n                       int tote_grams,\n                       uint8* lang_hint_boost) {\n  // Apply hints before sorting\n  if (lang_hint_boost) {\n    ApplyLanguageHints(chunk_tote, tote_grams, lang_hint_boost);\n  }\n\n  // Sort to get top two languages\n  chunk_tote->Sort(2);\n  Language cur_lang = cld::UnpackLanguage(chunk_tote->Key(0));\n\n  // Return if empty\n  if (cur_lang < 0) {\n    chunk_tote->Reinit();\n    return;\n  }\n\n  bool cur_unreliable = false;\n\n  // Reliability is a function of mean script score per KB of text\n  int len = chunk_tote->GetByteCount();\n  int reliability = cld::GetReliability((len * 2) / advance_by,\n                                        lscript,\n                                        chunk_tote);\n  cur_unreliable = (reliability < cld::kMinReliable);\n\n  // If tote_grams=0, always reliable\n  // If tote_grams=1, always unreliable\n  if (tote_grams == 0) {\n    reliability = 100;\n    cur_unreliable = false;\n  } else if (tote_grams == 1) {\n    reliability = 0;\n    cur_unreliable = true;\n  }\n\n#if 0\n  // TEMP\n  if (FLAGS_cld_html) {\n    if (reliability >= kMinReliableKeepPercent) {\n      fprintf(stderr, \"R%d%% \", reliability);\n    } else {\n      fprintf(stderr, \"--R%d%% \", reliability);\n    }\n  }\n#endif\n\n  // Track the sequence of language fragments [result currently unused]\n  ////if (reliability >= kMinReliableSeq) {\n  ////  doc_tote->AddSeq(chunk_tote->Key(0));\n  ////}\n\n  if (cur_unreliable && (chunk_tote->Key(1) != 0)) {\n    // Unreliable and two top contenders, split byte count 5/8 - 3/8\n    int top_len = ((len * 5) + 4) >> 3;\n    int second_len = len - top_len;\n\n    doc_tote->Add(chunk_tote->Key(0),\n                  top_len, chunk_tote->Value(0), reliability);\n    doc_tote->Add(chunk_tote->Key(1),\n                  second_len, chunk_tote->Value(1), reliability);\n    if (FLAGS_dbgscore) {\n      fprintf(stderr, \"{+%s.%d.%dR(%dB) +%s.%d.%dR(%dB)} \",\n              ExtLanguageCode(cld::UnpackLanguage(chunk_tote->Key(0))),\n              chunk_tote->Value(0),\n              reliability,\n              top_len,\n              ExtLanguageCode(cld::UnpackLanguage(chunk_tote->Key(1))),\n              chunk_tote->Value(1),\n              reliability,\n              second_len);\n    }\n  } else {\n    // Reliable or single contender\n    doc_tote->Add(chunk_tote->Key(0),\n                  len, chunk_tote->Value(0), reliability);\n    if (FLAGS_dbgscore) {\n      fprintf(stderr, \"{+%s.%d.%dR(%dB)} \",\n              ExtLanguageCode(cld::UnpackLanguage(chunk_tote->Key(0))),\n              chunk_tote->Value(0),\n              reliability,\n              len);\n    }\n  }\n\n  if (FLAGS_cld_html) {\n    if (cur_lang < 0) {cur_lang = UNKNOWN_LANGUAGE;}\n    cld::PrintLang(stderr, chunk_tote,\n              cur_lang, cur_unreliable,\n              prior_lang, prior_unreliable);\n    prior_lang = cur_lang;\n    prior_unreliable = cur_unreliable;\n\n    string temp(src, srclen);\n    if (temp[0] == '=') {\n      // Rewrite =ScriptX= or =SwitchX= as =Xxxx= for script code Xxxx\n      temp = \"=Buffered_\";\n      temp.append(UnicodeLScriptCode(lscript));\n      temp.append(\"=\");\n    }\n    cld::PrintText(stderr, cur_lang, temp);\n  }\n\n  chunk_tote->Reinit();\n}\n\n\nvoid PrintTopLang(Language top_lang) {\n  if ((top_lang == prior_lang) && (top_lang != UNKNOWN_LANGUAGE)) {\n    fprintf(stderr, \"[] \");\n  } else {\n    fprintf(stderr, \"[%s] \", ExtLanguageName(top_lang));\n    prior_lang = top_lang;\n  }\n}\n\nvoid PrintTopLangSpeculative(Language top_lang) {\n  fprintf(stderr, \"<span style=\\\"color:#%06X;\\\">\", 0xa0a0a0);\n  if ((top_lang == prior_lang) && (top_lang != UNKNOWN_LANGUAGE)) {\n    fprintf(stderr, \"[] \");\n  } else {\n    fprintf(stderr, \"[%s] \", ExtLanguageName(top_lang));\n    prior_lang = top_lang;\n  }\n  fprintf(stderr, \"</span>\\n\");\n}\n\n\n// Add one chunk's score to running document score\n// Convenience function with constant src text\nvoid ScoreChunkIntoDoc2(const char* src, int advance_by,\n                       UnicodeLScript lscript,\n                       Tote* chunk_tote,\n                       ToteWithReliability* doc_tote,\n                       int tote_grams,\n                       uint8* lang_hint_boost) {\n  int srclen = static_cast<int>(strlen(src));\n  ScoreChunkIntoDoc(src, srclen, advance_by, lscript, chunk_tote,\n                    doc_tote, tote_grams, lang_hint_boost);\n}\n\n\n// Score one scriptspan using the only language for that script\nvoid ScoreNilgrams(getone::LangSpan* scriptspan, int lang,\n                  ToteWithReliability* doc_tote,\n                  uint8* lang_hint_boost,\n                  int flags, Language plus_one) {\n  // For debugging only. Not thread-safe\n  prior_lang = UNKNOWN_LANGUAGE;\n  prior_unreliable = false;\n\n  const char* src = scriptspan->text;\n  int len = scriptspan->text_bytes;\n\n  Tote chunk_tote;\n  // Score 1000 for 1000 bytes\n  chunk_tote.AddGram();\n  chunk_tote.Add(lang, scriptspan->text_bytes);\n  chunk_tote.AddBytes(scriptspan->text_bytes);\n  int advance_by = 2;\n  int tote_grams = 0;   // Indicates fully reliable\n  ScoreChunkIntoDoc(src, len, advance_by,\n                    scriptspan->script, &chunk_tote,\n                    doc_tote, tote_grams, lang_hint_boost);\n}\n\n// Score one scriptspan using unigrams\n// Updates tote_grams\nstatic void ScoreUnigrams(const UTF8PropObj* unigram_obj,\n                      getone::LangSpan* scriptspan,\n                      int* tote_grams, int gram_limit,\n                      Tote* chunk_tote,\n                      ToteWithReliability* doc_tote,\n                      uint8* lang_hint_boost,\n                      int advance_by, int flags,\n                   int* initial_word_span, Language plus_one) {\n  // chunk_tote may have partial sum coming in\n  const char* src = scriptspan->text;\n  const char* srclimit = src + scriptspan->text_bytes;\n\n  // For debugging only. Not thread-safe\n  prior_lang = UNKNOWN_LANGUAGE;\n  prior_unreliable = false;\n\n  // Break text up into multiple chunks and score each\n  while (src < srclimit) {\n    // Updates tote_grams\n    int len = cld::DoUniScoreV3(unigram_obj,\n                                 src, srclimit - src, advance_by,\n                                 tote_grams, gram_limit, chunk_tote);\n    if (FlagUseWords(flags) || (*initial_word_span > 0)) {\n      // Use bigram scoring in addition to quadgrams\n      cld::DoBigramScoreV3(&kCjkBiTable_obj,\n                           src, len, chunk_tote);\n    }\n    chunk_tote->AddBytes(len);\n    *initial_word_span -= len;\n\n    if (*tote_grams >= gram_limit) {\n      // Add this chunk to doc totals\n      // Remove all but top40 if asked\n      if (FlagTop40(flags)) {\n        cld::DemoteNotTop40(chunk_tote, cld::PackLanguage(plus_one));\n      }\n\n      // Sort, accumulate into doc total, reinit\n      ScoreChunkIntoDoc(src, len, advance_by,\n                        scriptspan->script, chunk_tote,\n                        doc_tote, *tote_grams, lang_hint_boost);\n      *tote_grams = 0;\n    } else {\n      if (FLAGS_cld_html) {\n        string temp(src, len);\n        Language top_lang = cld::UnpackLanguage(chunk_tote->CurrentTopKey());\n        PrintTopLangSpeculative(top_lang);\n        cld::PrintText(stderr, top_lang, temp);\n      }\n    }\n    src += len;\n  }\n  // chunk_tote may have partial sum going out\n}\n\n// Back up one UTF-8 character\nconst uint8* BackOneUTF8(const uint8* p) {\n  const uint8* retval = p - 1;\n  if ((*retval & 0xc0) == 0x80) {--retval;}\n  if ((*retval & 0xc0) == 0x80) {--retval;}\n  if ((*retval & 0xc0) == 0x80) {--retval;}\n  return retval;\n}\n\n\n// Score one scriptspan using quadgrams\n// Incoming chunk_tote may have partial accumulation\nstatic void ScoreQuadgrams(const cld::CLDTableSummary* quadgram_obj,\n                       getone::LangSpan* scriptspan,\n                       int* tote_grams, int gram_limit,\n                       Tote* chunk_tote,\n                       ToteWithReliability* doc_tote,\n                       uint8* lang_hint_boost,\n                       int advance_by, int flags,\n                       int* initial_word_span, Language plus_one) {\n  // chunk_tote may have partial sum coming in\n  const char* src = scriptspan->text;\n  const char* srclimit = src + scriptspan->text_bytes;\n  const char* lastscored_src = src;\n\n  // For debugging only. Not thread-safe\n  prior_lang = UNKNOWN_LANGUAGE;\n  prior_unreliable = false;\n\n  // Break text up into multiple chunks and score each\n  while (src < srclimit) {\n    // Updates tote_grams\n    int len = cld::DoQuadScoreV3(quadgram_obj,\n                                 src, srclimit - src, advance_by,\n                                 tote_grams, gram_limit, chunk_tote);\n    if (FlagUseWords(flags) || (*initial_word_span > 0)) {\n      // Use word scoring in addition to quadgrams\n      cld::DoOctaScoreV3(&kLongWord8Table_obj,\n                         src, len, chunk_tote);\n    }\n    chunk_tote->AddBytes(len);\n    *initial_word_span -= len;\n\n    if (*tote_grams >= gram_limit) {\n      // Remove all but top40 if asked\n      if (FlagTop40(flags)) {\n        cld::DemoteNotTop40(chunk_tote, cld::PackLanguage(plus_one));\n      }\n\n      // Sort, accumulate into doc total, reinit\n      ScoreChunkIntoDoc(src, len, advance_by,\n                        scriptspan->script, chunk_tote,\n                        doc_tote, *tote_grams, lang_hint_boost);\n      lastscored_src = src + len;\n      *tote_grams = 0;\n    } else {\n      if (FLAGS_cld_html) {\n        string temp(src, len);\n        Language top_lang = cld::UnpackLanguage(chunk_tote->CurrentTopKey());\n        PrintTopLangSpeculative(top_lang);\n        cld::PrintText(stderr, top_lang, temp);\n      }\n    }\n    src += len;\n  }\n}\n\n\n\nvoid PrintLangs(FILE* f, const Language* language3, const int* percent3,\n                const int* text_bytes, const bool* is_reliable) {\n  fprintf(f, \"<br>&nbsp;&nbsp;Initial_Languages \");\n  if (language3[0] != UNKNOWN_LANGUAGE) {\n    fprintf(f, \"%s%s(%d%%)  \",\n            ExtLanguageName(language3[0]),\n            *is_reliable ? \"\" : \"*\",\n            percent3[0]);\n  }\n  if (language3[1] != UNKNOWN_LANGUAGE) {\n    fprintf(f, \"%s(%d%%)  \", ExtLanguageName(language3[1]), percent3[1]);\n  }\n  if (language3[2] != UNKNOWN_LANGUAGE) {\n    fprintf(f, \"%s(%d%%)  \", ExtLanguageName(language3[2]), percent3[2]);\n  }\n  fprintf(f, \"%d bytes \\n\", *text_bytes);\n\n  fprintf(f, \"<br>\\n\");\n}\n\n\n// Start the tote with a count of one for the default language for script\nvoid InitScriptToteLang(Tote* script_tote, UnicodeLScript lscript) {\n  Language defaultlang = cld::kDefaultLanguagePerLScript[lscript];\n  script_tote->Add(cld::PackLanguage(defaultlang), 1);\n  script_tote->AddBytes(1);\n#if 0\n  if (FLAGS_cld_html) {\n    cld::PrintLang(stderr, script_tote,\n              defaultlang, false,\n              UNKNOWN_LANGUAGE, false);\n    prior_lang = cur_lang;\n    string temp(\"+1\");\n    cld::PrintText(stderr, defaultlang, temp);\n  }\n#endif\n}\n\nstatic const char* const kToteName[4] =\n  {\"=Latn=\", \"=Hani=\", \"=Script2=\", \"=Script3=\"};\nstatic const char* const kToteSwitch[4] =\n  {\"=Latn=\", \"=Hani=\", \"=Switch2=\", \"=Switch3=\"};\n\n\n\n// Upper to lower, keep digits, everything else to minus '-' (2d)\nstatic const char kCharsetToLowerTbl[256] = {\n  0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d, 0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,\n  0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d, 0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,\n  0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d, 0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,\n  0x30,0x31,0x32,0x33,0x34,0x35,0x36,0x37, 0x38,0x39,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,\n\n  0x2d,0x61,0x62,0x63,0x64,0x65,0x66,0x67, 0x68,0x69,0x6a,0x6b,0x6c,0x6d,0x6e,0x6f,\n  0x70,0x71,0x72,0x73,0x74,0x75,0x76,0x77, 0x78,0x79,0x7a,0x2d,0x2d,0x2d,0x2d,0x2d,\n  0x2d,0x61,0x62,0x63,0x64,0x65,0x66,0x67, 0x68,0x69,0x6a,0x6b,0x6c,0x6d,0x6e,0x6f,\n  0x70,0x71,0x72,0x73,0x74,0x75,0x76,0x77, 0x78,0x79,0x7a,0x2d,0x2d,0x2d,0x2d,0x2d,\n\n  0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d, 0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,\n  0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d, 0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,\n  0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d, 0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,\n  0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d, 0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,\n\n  0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d, 0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,\n  0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d, 0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,\n  0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d, 0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,\n  0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d, 0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,\n};\n\n\nstatic const char kIsAlpha[256] = {\n  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  0,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,0,0,0,0,0,\n  0,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,0,0,0,0,0,\n\n  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n};\n\nstatic const char kIsDigit[256] = {\n  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 1,1,1,1,1,1,1,1, 1,1,0,0,0,0,0,0,\n  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n\n  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n};\n\n// Normalize ASCII string to first 4 alphabetic/digit chars\n// Letters are forced to lowercase ASCII\n// Used to normalize TLD values\nvoid MakeChar4(const char* str, char* norm) {\n  memcpy(norm, \"____\", 4);     // four underscores\n  int l_ptr = 0;\n  for (int i = 0; i < strlen(str); ++i) {\n    uint8 uc = static_cast<uint8>(str[i]);\n    if (kIsAlpha[uc] | kIsDigit[uc]) {\n      if (l_ptr < 4) {                  // Else ignore\n        norm[l_ptr] = kCharsetToLowerTbl[uc];\n        l_ptr++;\n      }\n    }\n  }\n}\n\n// Find subscript of matching key in first 4 bytes of sorted hint array, or -1\nstatic int HintBinaryLookup4(const HintEntry* hintprobs, int hintprobssize,\n                     const char* norm_key) {\n  // Key is always in range [lo..hi)\n  int lo = 0;\n  int hi = hintprobssize;\n  while (lo < hi) {\n    int mid = (lo + hi) >> 1;\n    int comp = memcmp(&hintprobs[mid].key[0], norm_key, 4);\n    if (comp < 0) {\n      lo = mid + 1;\n    } else if (comp > 0) {\n      hi = mid;\n    } else {\n      return mid;\n    }\n  }\n  return -1;\n}\n\n\n// Increment the initial probabilities based on a per-TLD probs entry\nvoid ApplyTLDHint(uint8* lang_hint_boost, const char* tld_hint) {\n  if (FLAGS_dbgscore) {\n    fprintf(stderr, \"TLD hint %s\\n\", tld_hint);\n  }\n  char normalized_tld[8];\n  MakeChar4(tld_hint, normalized_tld);\n  int n = HintBinaryLookup4(kTLDHintProbs, kTLDHintProbsSize,\n                           normalized_tld);\n  // TLD is four bytes, probability entry is 4 bytes\n  if (n >= 0) {\n    uint32 probs = kTLDHintProbs[n].probs;\n\n    uint8 prob123 = (probs >> 0) & 0xff;\n    const uint8* prob123_entry = cld::LgProb2TblEntry(prob123);\n    uint8 top1 = (probs >> 8) & 0xff;\n    if (top1 > 0) {lang_hint_boost[top1] += cld::LgProb3(prob123_entry, 0);}\n    uint8 top2 = (probs >> 16) & 0xff;\n    if (top2 > 0) {lang_hint_boost[top2] += cld::LgProb3(prob123_entry, 1);}\n    uint8 top3 = (probs >> 24) & 0xff;\n    if (top3 > 0) {lang_hint_boost[top3] += cld::LgProb3(prob123_entry, 2);}\n  }\n}\n\n\n// Increment the initial probabilities based on a per-encoding probs entry\nvoid ApplyEncodingHint(uint8* lang_hint_boost, int encoding_hint) {\n  if (FLAGS_dbgscore) {\n    Encoding tempenc = static_cast<Encoding>(encoding_hint);\n    fprintf(stderr, \"ENC hint %s\\n\", EncodingName(tempenc));\n  }\n  if (encoding_hint < ISO_8859_1) {return;}\n  if (encoding_hint >= NUM_ENCODINGS) {return;}\n  uint32 probs = kEncodingHintProbs[encoding_hint];\n\n  uint8 prob123 = (probs >> 0) & 0xff;\n  const uint8* prob123_entry = cld::LgProb2TblEntry(prob123);\n  uint8 top1 = (probs >> 8) & 0xff;\n  if (top1 > 0) {lang_hint_boost[top1] += cld::LgProb3(prob123_entry, 0);}\n  uint8 top2 = (probs >> 16) & 0xff;\n  if (top2 > 0) {lang_hint_boost[top2] += cld::LgProb3(prob123_entry, 1);}\n  uint8 top3 = (probs >> 24) & 0xff;\n  if (top3 > 0) {lang_hint_boost[top3] += cld::LgProb3(prob123_entry, 2);}\n}\n\n\n// Increment the initial probability for given language by fixed amount\n// Does not recognize extended languages as hints\nvoid ApplyLanguageHint(uint8* lang_hint_boost, Language language_hint) {\n  if (FLAGS_dbgscore) {\n    fprintf(stderr, \"LANG hint %s\\n\", ExtLanguageName(language_hint));\n  }\n  if (language_hint < ENGLISH) {return;}\n  if (language_hint >= NUM_LANGUAGES) {return;}\n  uint32 probs = kLanguageHintProbs[language_hint];\n\n  uint8 prob123 = (probs >> 0) & 0xff;\n  const uint8* prob123_entry = cld::LgProb2TblEntry(prob123);\n  uint8 top1 = (probs >> 8) & 0xff;\n  if (top1 > 0) {lang_hint_boost[top1] += cld::LgProb3(prob123_entry, 0);}\n  uint8 top2 = (probs >> 16) & 0xff;\n  if (top2 > 0) {lang_hint_boost[top2] += cld::LgProb3(prob123_entry, 1);}\n  uint8 top3 = (probs >> 24) & 0xff;\n  if (top3 > 0) {lang_hint_boost[top3] += cld::LgProb3(prob123_entry, 2);}\n}\n\n// Extract return values before fixups\nvoid ExtractLangEtc(ToteWithReliability* doc_tote, int total_text_bytes,\n                    int* reliable_percent3, Language* language3, int* percent3,\n                    double*  normalized_score3,\n                    int* text_bytes, bool* is_reliable) {\n  reliable_percent3[0] = 0;\n  reliable_percent3[1] = 0;\n  reliable_percent3[2] = 0;\n  language3[0] = UNKNOWN_LANGUAGE;\n  language3[1] = UNKNOWN_LANGUAGE;\n  language3[2] = UNKNOWN_LANGUAGE;\n  percent3[0] = 100;\n  percent3[1] = 0;\n  percent3[2] = 0;\n  normalized_score3[0] = 0.0;\n  normalized_score3[1] = 0.0;\n  normalized_score3[2] = 0.0;\n\n  *text_bytes = total_text_bytes;\n  *is_reliable = false;\n\n  int bytecount1 = total_text_bytes;\n  int bytecount2 = 0;\n  int bytecount3 = 0;\n\n  int lang1 = doc_tote->Key(0);\n  if (lang1 != 0) {\n    // We have a top language\n    language3[0] = cld::UnpackLanguage(lang1);\n    bytecount1 = doc_tote->Value(0);\n    int reli1 = doc_tote->Reliability(0);\n    reliable_percent3[0] = reli1 / (bytecount1 ? bytecount1 : 1);  // avoid zdiv\n    normalized_score3[0] = cld::GetNormalizedScore(language3[0],\n                                                  ULScript_Common,\n                                                  bytecount1,\n                                                  doc_tote->Score(0));\n  }\n\n  int lang2 = doc_tote->Key(1);\n  if (lang2 != 0) {\n    language3[1] = cld::UnpackLanguage(lang2);\n    bytecount2 = doc_tote->Value(1);\n    int reli2 = doc_tote->Reliability(1);\n    reliable_percent3[1] = reli2 / (bytecount2 ? bytecount2 : 1);  // avoid zdiv\n    normalized_score3[1] = cld::GetNormalizedScore(language3[1],\n                                                  ULScript_Common,\n                                                  bytecount2,\n                                                  doc_tote->Score(1));\n  }\n\n  int lang3 = doc_tote->Key(2);\n  if (lang3 != 0) {\n    language3[2] = cld::UnpackLanguage(lang3);\n    bytecount3 = doc_tote->Value(2);\n    int reli3 = doc_tote->Reliability(2);\n    reliable_percent3[2] = reli3 / (bytecount3 ? bytecount3 : 1);  // avoid zdiv\n    normalized_score3[2] = cld::GetNormalizedScore(language3[2],\n                                                  ULScript_Common,\n                                                  bytecount3,\n                                                  doc_tote->Score(2));\n  }\n\n  // Increase total bytes to sum (top 3) if low for some reason\n  int total_bytecount12 = bytecount1 + bytecount2;\n  int total_bytecount123 = total_bytecount12 + bytecount3;\n  if (total_text_bytes < total_bytecount123) {\n    total_text_bytes = total_bytecount123;\n    *text_bytes = total_text_bytes;\n  }\n\n  // Sum minus previous % gives better roundoff behavior than bytecount/total\n  int total_text_bytes_div = cld::maxint(1, total_text_bytes);    // Avoid zdiv\n  percent3[0] = (bytecount1 * 100) / total_text_bytes_div;\n  percent3[1] = (total_bytecount12 * 100) / total_text_bytes_div;\n  percent3[2] = (total_bytecount123 * 100) / total_text_bytes_div;\n  percent3[2] -= percent3[1];\n  percent3[1] -= percent3[0];\n\n  // Roundoff, say 96% 1.6% 1.4%, will produce non-obvious 96% 1% 2%\n  // Fix this explicitly\n  if (percent3[1] < percent3[2]) {\n    ++percent3[1];\n    --percent3[2];\n  }\n  if (percent3[0] < percent3[1]) {\n    ++percent3[0];\n    --percent3[1];\n  }\n\n  *text_bytes = total_text_bytes;\n\n  if (lang1 != 0) {\n    // We have a top language\n    // Its reliability is overal result reliability\n    int bytecount = doc_tote->Value(0);\n    int reli = doc_tote->Reliability(0);\n    int reliable_percent = reli / (bytecount ? bytecount : 1);  // avoid zdiv\n    *is_reliable = reliable_percent >= cld::kMinReliable;\n  } else {\n    // No top language at all. This can happen with zero text or 100% Klingon\n    // if extended=false. Just return all UNKNOWN_LANGUAGE, reliable.\n    *is_reliable = true;\n  }\n}\n\nbool IsFIGS(Language lang) {\n  if (lang == FRENCH) {return true;}\n  if (lang == ITALIAN) {return true;}\n  if (lang == GERMAN) {return true;}\n  if (lang == SPANISH) {return true;}\n  return false;\n}\n\nbool IsEFIGS(Language lang) {\n  if (lang == ENGLISH) {return true;}\n  if (lang == FRENCH) {return true;}\n  if (lang == ITALIAN) {return true;}\n  if (lang == GERMAN) {return true;}\n  if (lang == SPANISH) {return true;}\n  return false;\n}\n\nstatic const int kNonEnBoilerplateMinPercent = 17;    // <this => no second\nstatic const int kNonFIGSBoilerplateMinPercent = 20;  // <this => no second\nstatic const int kGoodFirstMinPercent = 26;           // <this => UNK\nstatic const int kGoodFirstReliableMinPercent = 51;   // <this => unreli\nstatic const int kIgnoreMaxPercent = 95;              // >this => unreli\nstatic const int kKeepMinPercent = 2;                 // <this => unreli\n\n// For Tier3 languages, require more bytes of text to override\n// the first-place language\nstatic const int kGoodSecondT1T2MinBytes = 15;        // <this => no second\nstatic const int kGoodSecondT3MinBytes = 128;         // <this => no second\n                                                      //\n\n// Calculate a single summary language for the document, and its reliability.\n// Returns language3[0] or language3[1] or ENGLISH or UNKNOWN_LANGUAGE\n// This is the heart of matching human-rater perception.\n// reliable_percent3[] is currently unused\n//\n// Do not return Tier3 second language unless there are at least 128 bytes\nvoid CalcSummaryLang(ToteWithReliability* doc_tote, int total_text_bytes,\n                     const int* reliable_percent3,\n                     const Language* language3,\n                     const int* percent3,\n                     Language* summary_lang, bool* is_reliable) {\n  // Vector of active languages; changes if we delete some\n  int slot_count = 3;\n  int active_slot[3] = {0, 1, 2};\n\n  int ignore_percent = 0;\n  int return_percent = percent3[0];   // Default to top lang\n  *summary_lang = language3[0];\n  *is_reliable = true;\n  if (percent3[0] < kKeepMinPercent) {*is_reliable = false;}\n\n  // If any of top 3 is IGNORE, remove it and increment ignore_percent\n  for (int i = 0; i < 3; ++i) {\n    if (language3[i] == TG_UNKNOWN_LANGUAGE) {\n      ignore_percent += percent3[i];\n      // Move the rest up, levaing input vectors unchanged\n      for (int j=i+1; j < 3; ++j) {\n        active_slot[j - 1] = active_slot[j];\n      }\n      -- slot_count;\n      // Logically remove Ignore from percentage-text calculation\n      // (extra 1 in 101 avoids zdiv, biases slightly small)\n      return_percent = (percent3[0] * 100) / (101 - ignore_percent);\n      *summary_lang = language3[active_slot[0]];\n      if (percent3[active_slot[0]] < kKeepMinPercent) {*is_reliable = false;}\n    }\n  }\n\n\n  // If English and X, where X (not UNK) is big enough,\n  // assume the English is boilerplate and return X.\n  // Logically remove English from percentage-text calculation\n  int second_bytes = (total_text_bytes * percent3[active_slot[1]]) / 100;\n  // Require more bytes of text for Tier3 languages\n  int minbytesneeded = kGoodSecondT1T2MinBytes;\n  int plang_second =  cld::PackLanguage(language3[active_slot[1]]);\n  bool is_tier3 = (cld::kIsPackedTop40[plang_second] == 0);\n  if (is_tier3) {\n    minbytesneeded = kGoodSecondT3MinBytes;\n  }\n\n  if ((language3[active_slot[0]] == ENGLISH) &&\n      (language3[active_slot[1]] != ENGLISH) &&\n      (language3[active_slot[1]] != UNKNOWN_LANGUAGE) &&\n      (percent3[active_slot[1]] >= kNonEnBoilerplateMinPercent) &&\n      (second_bytes >= minbytesneeded)) {\n    ignore_percent += percent3[active_slot[0]];\n    return_percent = (percent3[active_slot[1]] * 100) / (101 - ignore_percent);\n    *summary_lang = language3[active_slot[1]];\n    if (percent3[active_slot[1]] < kKeepMinPercent) {*is_reliable = false;}\n\n  // Else If FIGS and X, where X (not UNK, EFIGS) is big enough,\n  // assume the FIGS is boilerplate and return X.\n  // Logically remove FIGS from percentage-text calculation\n  } else if (IsFIGS(language3[active_slot[0]]) &&\n             !IsEFIGS(language3[active_slot[1]]) &&\n             (language3[active_slot[1]] != UNKNOWN_LANGUAGE) &&\n             (percent3[active_slot[1]] >= kNonFIGSBoilerplateMinPercent) &&\n             (second_bytes >= minbytesneeded)) {\n    ignore_percent += percent3[active_slot[0]];\n    return_percent = (percent3[active_slot[1]] * 100) / (101 - ignore_percent);\n    *summary_lang = language3[active_slot[1]];\n    if (percent3[active_slot[1]] < kKeepMinPercent) {*is_reliable = false;}\n\n  // Else we are returning the first language, but want to improve its\n  // return_percent if the second language should be ignored\n  } else  if ((language3[active_slot[1]] == ENGLISH) &&\n              (language3[active_slot[0]] != ENGLISH)) {\n    ignore_percent += percent3[active_slot[1]];\n    return_percent = (percent3[active_slot[0]] * 100) / (101 - ignore_percent);\n  } else  if (IsFIGS(language3[active_slot[1]]) &&\n              !IsEFIGS(language3[active_slot[0]])) {\n    ignore_percent += percent3[active_slot[1]];\n    return_percent = (percent3[active_slot[0]] * 100) / (101 - ignore_percent);\n  }\n\n  // If return percent is too small (too many languages), return UNKNOWN\n  if ((return_percent < kGoodFirstMinPercent)) {\n    *summary_lang = UNKNOWN_LANGUAGE;\n    *is_reliable = false;\n  }\n\n  // If return percent is small, return language but set unreliable.\n  if ((return_percent < kGoodFirstReliableMinPercent)) {\n    *is_reliable = false;\n  }\n\n  // If ignore percent is too large, set unreliable.\n  if ((ignore_percent > kIgnoreMaxPercent)) {\n    *is_reliable = false;\n  }\n\n  // If we removed all the active languages, return UNKNOWN\n  if (slot_count == 0) {\n    *summary_lang = UNKNOWN_LANGUAGE;\n    *is_reliable = false;\n  }\n}\n\n\n\n// Result vector must be exactly three items\nLanguage CompactLangDetImpl::DetectLanguageSummaryV25(\n                        const CompactLangDet::DetectionTables* tables,\n                        const char* buffer,\n                        int buffer_length,\n                        bool is_plain_text,\n                        bool do_pick_summary_language,\n                        bool do_remove_weak_matches,\n                        const char* tld_hint,       // \"id\" boosts Indonesian\n                        int encoding_hint,          // SJS boosts Japanese\n                        Language language_hint,     // ITALIAN boosts it\n                        bool allow_extended_lang,\n                        int flags,\n                        Language plus_one,\n                        Language* language3,\n                        int* percent3,\n                        double* normalized_score3,\n                        int* text_bytes,\n                        bool* is_reliable) {\n  if (!tables) {\n    static const CompactLangDet::DetectionTables default_cld_tables = {\n      &kQuadTable_obj,\n      &compact_lang_det_generated_ctjkvz_b1_obj\n    };\n    tables = &default_cld_tables;\n  }\n  language3[0] = UNKNOWN_LANGUAGE;\n  language3[1] = UNKNOWN_LANGUAGE;\n  language3[2] = UNKNOWN_LANGUAGE;\n  percent3[0] = 100;\n  percent3[1] = 0;\n  percent3[2] = 0;\n  normalized_score3[0] = 0.0;\n  normalized_score3[1] = 0.0;\n  normalized_score3[2] = 0.0;\n  *text_bytes = 0;\n  *is_reliable = false;\n\n  // Document totals\n  ToteWithReliability doc_tote;   // Reliability = 0..100\n\n  // Vector of packed per-language boosts (just one filled in from hints)\n  uint8 lang_hint_boost[EXT_NUM_LANGUAGES + 1];\n  memset(lang_hint_boost, 0, sizeof(lang_hint_boost));\n\n  // Apply hints,if any\n  if ((tld_hint != NULL) && (tld_hint[0] != '\\0')) {\n    ApplyTLDHint(lang_hint_boost, tld_hint);\n  }\n  if (encoding_hint != UNKNOWN_ENCODING) {\n    ApplyEncodingHint(lang_hint_boost, encoding_hint);\n  }\n  if (language_hint != UNKNOWN_LANGUAGE) {\n    ApplyLanguageHint(lang_hint_boost, language_hint);\n  }\n\n\n  // Four individual script totals, Latin, Han, other2, other3\n  int next_other_tote = 2;\n\n  // Four totes for up to four different scripts pending at once\n  Tote totes[4];                  // [0] Latn  [1] Hani  [2] other  [3] other\n  bool tote_seen[4] = {false, false, false, false};\n  int tote_grams[4] = {0, 0, 0, 0};     // Number in partial chunk\n  UnicodeLScript tote_script[4] =\n    {ULScript_Latin, ULScript_HanCJK, ULScript_Common, ULScript_Common};\n\n  // Loop through text spans in a single script\n  ScriptScanner ss(buffer, buffer_length, is_plain_text);\n  getone::LangSpan scriptspan;\n\n  scriptspan.text = NULL;\n  scriptspan.text_bytes = 0;\n  scriptspan.offset = 0;\n  scriptspan.script = ULScript_Common;\n  scriptspan.lang = UNKNOWN_LANGUAGE;\n\n  int total_text_bytes = 0;\n  int textlimit = FLAGS_cld_textlimit << 10;    // in KB\n  if (textlimit == 0) {textlimit = 0x7fffffff;}\n\n  int advance_by = 2;                   // Advance 2 bytes\n  int advance_limit = textlimit >> 3;   // For first 1/8 of max document\n\n  int initial_word_span = kDefaultWordSpan;\n  if (FLAGS_cld_forcewords) {\n    initial_word_span = kReallyBigWordSpan;\n  }\n\n  // Pick up chunk sizes\n  // Smoothwidth is units of quadgrams, about 2.5 chars (unigrams) each\n  // Sanity check -- force into a reasonable range\n  int chunksizequads = FLAGS_cld_smoothwidth;\n  chunksizequads = cld::minint(cld::maxint(chunksizequads, kMinChunkSizeQuads),\n                               kMaxChunkSizeQuads);\n  int chunksizeunis = (chunksizequads * 5) >> 1;\n\n  // Varying short-span limit doesn't work well -- skips too much beyond 20KB\n  // int spantooshortlimit = advance_by * FLAGS_cld_smoothwidth;\n  int spantooshortlimit = kShortSpanThresh;\n\n  // For debugging only. Not thread-safe\n  prior_lang = UNKNOWN_LANGUAGE;\n  prior_unreliable = false;\n\n  // Allocate full-document prediction table for finding repeating words\n  int hash = 0;\n  int* predict_tbl = new int[kPredictionTableSize];\n  if (FlagRepeats(flags)) {\n    memset(predict_tbl, 0, kPredictionTableSize * sizeof(predict_tbl[0]));\n  }\n\n  // Loop through scriptspans accumulating number of text bytes in each language\n  while (ss.GetOneScriptSpanLower(&scriptspan)) {\n    UnicodeLScript lscript = scriptspan.script;\n\n    // Echo text if asked to\n    if (FLAGS_cld_echotext) {\n      PrintHtmlEscapedText(stderr, scriptspan.text, scriptspan.text_bytes);\n    }\n\n    // Squeeze out big chunks of text span if asked to\n    if (FlagSqueeze(flags)) {\n      // Remove repetitive or mostly-spaces chunks\n      int newlen;\n      int chunksize = 0;    // Use the default\n      newlen = CheapSqueezeInplace(scriptspan.text, scriptspan.text_bytes,\n                                   chunksize);\n      scriptspan.text_bytes = newlen;\n    } else {\n      // Check now and then to see if we should be squeezing\n      if ((total_text_bytes >= kCheapSqueezeTestThresh) &&\n          !FlagFinish(flags) &&\n          ((getone::kMaxScriptBuffer >> 1) < scriptspan.text_bytes) &&\n          CheapSqueezeTriggerTest(scriptspan.text,\n                                    scriptspan.text_bytes,\n                                    kCheapSqueezeTestLen)) {\n        // Recursive call with big-chunk squeezing set\n        if (FLAGS_cld_html || FLAGS_dbgscore) {\n          fprintf(stderr,\n                  \"<br>---text_bytes[%d] Recursive(Squeeze)---<br><br>\\n\",\n                  total_text_bytes);\n        }\n        // Deallocate full-document prediction table\n        delete[] predict_tbl;\n\n        return DetectLanguageSummaryV25(\n                          tables,\n                          buffer,\n                          buffer_length,\n                          is_plain_text,\n                          do_pick_summary_language,\n                          do_remove_weak_matches,\n                          tld_hint,               // \"id\" boosts Indonesian\n                          encoding_hint,          // SJS boosts Japanese\n                          language_hint,          // ITALIAN boosts it\n                          allow_extended_lang,\n                          flags | kCLDFlagSqueeze,\n                          plus_one,\n                          language3,\n                          percent3,\n                          normalized_score3,\n                          text_bytes,\n                          is_reliable);\n      }\n    }\n\n    // Remove repetitive words if asked to\n    if (FlagRepeats(flags)) {\n      // Remove repetitive words\n      int newlen;\n      newlen = CheapRepWordsInplace(scriptspan.text, scriptspan.text_bytes,\n                                    &hash, predict_tbl);\n      scriptspan.text_bytes = newlen;\n    }\n\n    // The real scoring\n    // Accumulate directly into the document total, or accmulate in one of four\n    // chunk totals. The purpose of the multiple chunk totals is to piece\n    // together short choppy pieces of text in alternating scripts. One total is\n    // dedicated to Latin text, one to Han text, and the other two are dynamicly\n    // assigned.\n    Language onlylang = cld::kOnlyLanguagePerLScript[lscript];\n\n    if (onlylang != UNKNOWN_LANGUAGE) {\n      // This entire script run is in a single language.\n      ScoreNilgrams(&scriptspan, cld::PackLanguage(onlylang), &doc_tote,\n                   lang_hint_boost, flags, plus_one);\n    } else if (cld::kScoreUniPerLScript[lscript] != 0) {\n      // This entire script run's languages can be distinguished by uni-grams\n      // Accumulate in hani_tote\n      int tote_num = 1;\n      if (!tote_seen[tote_num]) {\n        tote_seen[tote_num] = true;\n        // Default language gets 1 byte\n        total_text_bytes += 1;\n        InitScriptToteLang(&totes[tote_num], lscript);\n      }\n      ScoreUnigrams(tables->unigram_obj,\n                       &scriptspan, &tote_grams[tote_num], chunksizeunis,\n                       &totes[tote_num],\n                       &doc_tote, lang_hint_boost,\n                       advance_by, flags, &initial_word_span, plus_one);\n    } else {\n      // This entire script-run's languages can be distinguished by quad-grams\n      // Accumulate in latn_tote or script0/1_tote\n      int tote_num = -1;\n      for (int t = 0; t < 4; ++t) {\n        if (lscript == tote_script[t]) {\n          tote_num = t;\n          break;\n        }\n      }\n      if (tote_num < 0) {\n        // Need to allocate other0/1\n        tote_num = next_other_tote;\n        next_other_tote ^= 1;     // Round-robin\n        if (tote_seen[tote_num]) {\n          // Flush previous\n          ScoreChunkIntoDoc2(kToteSwitch[tote_num], advance_by,\n                             tote_script[tote_num], &totes[tote_num],\n                             &doc_tote, tote_grams[tote_num], lang_hint_boost);\n          totes[tote_num].Reinit();\n        }\n        tote_script[tote_num] = lscript;\n      }\n\n      if (!tote_seen[tote_num]) {\n        tote_seen[tote_num] = true;\n        // Default language gets 1 byte\n        total_text_bytes += 1;\n        InitScriptToteLang(&totes[tote_num], lscript);\n      }\n\n      // The actual accumulation, possibly with word scoring also\n      ScoreQuadgrams(tables->quadgram_obj, &scriptspan, &tote_grams[tote_num],\n                        chunksizequads,\n                        &totes[tote_num],\n                        &doc_tote, lang_hint_boost,\n                        advance_by, flags, &initial_word_span, plus_one);\n    }\n\n    total_text_bytes += scriptspan.text_bytes;\n\n    // For long documents, do less-dense samples the further along we go.\n    // This is to keep speed sublinear in document size.\n    if (total_text_bytes > advance_limit) {\n      if (total_text_bytes > textlimit) {\n        // Don't look at rest of doc\n        if (FLAGS_cld_html || FLAGS_dbgscore) {\n          fprintf(stderr, \"<br>---text_bytes[%d] textlimit %d reached---<br>\",\n                  total_text_bytes, textlimit);\n        }\n        break;\n      }\n      advance_by <<= 1;         // Double advance bytes\n      advance_limit <<= 1;      // Double limit until next change\n      spantooshortlimit <<= 1;  // Double short-span size\n      if (FLAGS_cld_html || FLAGS_dbgscore) {\n        fprintf(stderr, \"<br>---text_bytes[%d] advance_by doubled to %d---<br>\",\n                total_text_bytes, advance_by);\n      }\n    }\n  }     // End while (ss.GetOneScriptSpanLower())\n\n  // Deallocate full-document prediction table\n  delete[] predict_tbl;\n\n  // Flush pending totals\n  for (int tote_num = 0; tote_num < 4; ++tote_num) {\n    if (tote_seen[tote_num]) {\n      ScoreChunkIntoDoc2(kToteName[tote_num], advance_by,\n                         tote_script[tote_num], &totes[tote_num], &doc_tote,\n                         tote_grams[tote_num], lang_hint_boost);\n    }\n  }\n\n  // If extended languages are disallowed, remove them here\n  if (!allow_extended_lang) {\n    RemoveExtendedLanguages(&doc_tote);\n  }\n\n  // Force close pairs to one or the other\n  RefineScoredClosePairs(&doc_tote);\n\n\n  // Calculate return results\n  // Find top three byte counts in tote heap\n  int reliable_percent3[3];\n\n\n  // Cannot use Add, etc. after sorting\n  doc_tote.Sort(3);\n\n  ExtractLangEtc(&doc_tote, total_text_bytes,\n                 reliable_percent3, language3, percent3, normalized_score3,\n                 text_bytes, is_reliable);\n\n  bool have_good_answer = false;\n  if (FlagFinish(flags)) {\n    // Force a result\n    have_good_answer = true;\n  } else if (total_text_bytes <= kShortTextThresh) {\n    // Don't recurse on short text -- we already did word scores\n    have_good_answer = true;\n  } else if (*is_reliable &&\n             (percent3[0] >= kGoodLang1Percent)) {\n    have_good_answer = true;\n  } else if (*is_reliable &&\n             ((percent3[0] + percent3[1]) >= kGoodLang1and2Percent)) {\n    have_good_answer = true;\n  }\n\n\n  if (have_good_answer) {\n    // This is the real, non-recursive return\n\n    // Move bytes for unreliable langs to another lang or\n    // UNKNOWN\n    RemoveUnreliableLanguages(&doc_tote, do_remove_weak_matches);\n\n    // Redo the result extraction after the removal above\n    doc_tote.Sort(3);\n\n    ExtractLangEtc(&doc_tote, total_text_bytes,\n                   reliable_percent3, language3, percent3, normalized_score3,\n                   text_bytes, is_reliable);\n\n#if 0\n    // OLD code, replaced by CalcSummaryLang\n    //\n    // Suppress ignore-me text, TG_UNKNOWN_LANGUAGE if 2nd or 3rd language\n    // Force it to English if first language\n    if (language3[2] == TG_UNKNOWN_LANGUAGE) {\n      reliable_percent3[2] = 0;\n      language3[2] = UNKNOWN_LANGUAGE;\n      percent3[2] = 0;\n    } else if (language3[1] == TG_UNKNOWN_LANGUAGE) {\n      // Move up lower language\n      reliable_percent3[1] = reliable_percent3[2];\n      language3[1] = language3[2];\n      percent3[1] = percent3[2];\n      reliable_percent3[2] = 0;\n      language3[2] = UNKNOWN_LANGUAGE;\n      percent3[2] = 0;\n    } else if (language3[0] == TG_UNKNOWN_LANGUAGE) {\n      language3[0] = ENGLISH;\n    }\n\n    if (language3[0] == UNKNOWN_LANGUAGE) {\n      // Last-ditch test for some result, but it is UNKNOWN_LANGUAGE\n      // Force it to English (should not happen)\n      language3[0] = ENGLISH;\n      percent3[0] = 100;\n      *is_reliable = true;\n    }\n#endif\n\n\n#if 0\n    // Scaffolding to reveal subset sequence lang distribution across doc text\n    // Track the sequence of language fragments [result currently unused]\n    if (FLAGS_cld_html) {\n      static const int kMaxSubsetSeq = 12;\n      uint8 subseq[kMaxSubsetSeq];\n      doc_tote.ExtractSeq(kMaxSubsetSeq, subseq);\n\n      fprintf(stderr, \"<br>\\nSubset Sequence[%d]: \", kMaxSubsetSeq);\n      for (int i = 0; i < kMaxSubsetSeq; ++i) {\n        fprintf(stderr, \"%s \", ExtLanguageCode(cld::UnpackLanguage(subseq[i])));\n        if ((i % 4) == 3) {fprintf(stderr, \"&nbsp; \");}\n      }\n      fprintf(stderr, \"&nbsp;&nbsp; \");\n\n      for (int i = 0; i < 3; ++i) {\n        if (language3[i] != UNKNOWN_LANGUAGE) {\n          fprintf(stderr, \"%s.%d(%d%%) \",\n                  ExtLanguageCode(language3[i]),\n                  reliable_percent3[i],\n                  percent3[i]);\n        }\n      }\n\n      fprintf(stderr, \"%d B \", total_text_bytes);\n      fprintf(stderr, \"<br>\\n\");\n    }\n    // End Scaffolding to reveal subset sequence lang distribution\n#endif\n\n    Language summary_lang;\n    if (do_pick_summary_language) {\n      CalcSummaryLang(&doc_tote, total_text_bytes,\n                      reliable_percent3, language3, percent3,\n                      &summary_lang, is_reliable);\n    } else {\n      summary_lang = language3[0];\n    }\n\n    if (FLAGS_cld_html) {\n      for (int i = 0; i < 3; ++i) {\n        if (language3[i] != UNKNOWN_LANGUAGE) {\n          fprintf(stderr, \"%s.%d(%d%%) \",\n                  ExtLanguageCode(language3[i]),\n                  reliable_percent3[i],\n                  percent3[i]);\n        }\n      }\n\n      fprintf(stderr, \"%d B \", total_text_bytes);\n      fprintf(stderr, \"= %s%c \",\n              ExtLanguageName(summary_lang), is_reliable ? ' ' : '*');\n      fprintf(stderr, \"<br>\\n\");\n    }\n\n    return summary_lang;\n  }\n\n  // Not a good answer -- do recursive call to refine\n  if (FLAGS_cld_html || FLAGS_dbgscore) {\n    // This is what we hope to improve on in the recursive call, if any\n    PrintLangs(stderr, language3, percent3, text_bytes, is_reliable);\n  }\n\n  // For restriction to Top40 + one, the one is 1st/2nd lang that is not Top40\n  // For this purpose, we treate \"Ignore\" as top40\n  Language new_plus_one = UNKNOWN_LANGUAGE;\n  if (cld::kIsPackedTop40[cld::PackLanguage(language3[0])] == 0) {\n    new_plus_one = language3[0];\n  } else if (cld::kIsPackedTop40[cld::PackLanguage(language3[1])] == 0) {\n    new_plus_one = language3[1];\n  }\n\n  if (total_text_bytes < kShortTextThresh) {\n      // Short text: Recursive call with top40 and short set\n      if (FLAGS_cld_html || FLAGS_dbgscore) {\n        fprintf(stderr, \"&nbsp;&nbsp;---text_bytes[%d] \"\n                \"Recursive(Top40/Rep/Short/Words)---<br><br>\\n\",\n                total_text_bytes);\n      }\n      return DetectLanguageSummaryV25(\n                        tables,\n                        buffer,\n                        buffer_length,\n                        is_plain_text,\n                        do_pick_summary_language,\n                        do_remove_weak_matches,\n                        tld_hint,               // \"id\" boosts Indonesian\n                        encoding_hint,          // SJS boosts Japanese\n                        language_hint,          // ITALIAN boosts it\n                        allow_extended_lang,\n                        flags | kCLDFlagTop40 | kCLDFlagRepeats |\n                          kCLDFlagShort | kCLDFlagUseWords | kCLDFlagFinish,\n                        new_plus_one,\n                        language3,\n                        percent3,\n                        normalized_score3,\n                        text_bytes,\n                        is_reliable);\n  }\n\n  // Longer text: Recursive call with top40 set\n  if (FLAGS_cld_html || FLAGS_dbgscore) {\n    fprintf(stderr,\n            \"&nbsp;&nbsp;---text_bytes[%d] Recursive(Top40/Rep)---<br><br>\\n\",\n            total_text_bytes);\n  }\n  return DetectLanguageSummaryV25(\n                        tables,\n                        buffer,\n                        buffer_length,\n                        is_plain_text,\n                        do_pick_summary_language,\n                        do_remove_weak_matches,\n                        tld_hint,               // \"id\" boosts Indonesian\n                        encoding_hint,          // SJS boosts Japanese\n                        language_hint,          // ITALIAN boosts it\n                        allow_extended_lang,\n                        flags | kCLDFlagTop40 | kCLDFlagRepeats |\n                          kCLDFlagFinish,\n                        new_plus_one,\n                        language3,\n                        percent3,\n                        normalized_score3,\n                        text_bytes,\n                        is_reliable);\n}   // End CompactLangDetImpl::DetectLanguageSummaryV25\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/compact_lang_det_impl.h",
    "content": "// Copyright (c) 2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef ENCODINGS_COMPACT_LANG_DET_COMPACT_LANG_DET_IMPL_H_\n#define ENCODINGS_COMPACT_LANG_DET_COMPACT_LANG_DET_IMPL_H_\n\n#include \"encodings/lang_enc.h\"\n#include \"encodings/compact_lang_det/win/cld_basictypes.h\"\n\n\nstatic const int kCLDFlagFinish = 1;\nstatic const int kCLDFlagSqueeze = 2;\nstatic const int kCLDFlagRepeats = 4;\nstatic const int kCLDFlagTop40 = 8;\nstatic const int kCLDFlagShort = 16;\nstatic const int kCLDFlagHint = 32;   // Experimental, undebugged\nstatic const int kCLDFlagUseWords = 64;\n\n/***\n\nFlag meanings:\n\nFlags are used in the context of a recursive call from Detect to itself,\ntrying to deal in a more restrictive way with input that was not reliably\nidentified in the top-level call.\n\nFinish -- Do not further recurse; return whatever result ensues, even if it is\n          unreliable. Typically set in any recursive call to take a second try\n          on unreliable text.\n\nSqueeze -- For each text run, do an inplace cheapsqueeze to remove chunks of\n          highly repetitive text and chunks of text with too many 1- and\n          2-letter words. This avoids scoring repetitive or useless non-text\n          crap in large files such bogus JPEGs within an HTML file.\n\nRepeats -- When scoring a text run, do a cheap prediction of each character\n          and do not score a unigram/quadgram if the last character of same is\n          correctly predicted. This is a slower, finer-grained form of\n          cheapsqueeze, typically used when the first pass got unreliable\n          results.\n\nTop40 -- Restrict the set of scored languages to the Google \"Top 40*\", which is\n          actually 38 languages. This gets rid of about 110 language that\n          represent about 0.7% of the web. Typically used when the first pass\n          got unreliable results.\n\nShort -- Use trigram (three letter) scoring instad of quadgrams. Restricted to\n          the top 40* languages, Latin and Cyrillic scripts only.\n          Not as precise as quadgrams, but it gives some plausible result on\n          1- or 2-word text in major languages.\n\nHint -- EXPERIMENTAL flag for compact_lang_det_test.cc to indicate a language\n          hint supplied in parameter plus_one.\n\nUseWords -- In additon to scoring quad/uni/nil-grams, score complete words\n\n\nTentative decision logic:\n\nIn the middle of first pass -- After 4KB of text, look at the front 256 bytes\n          of every full 4KB buffer. If it compresses very well (say 3:1) or has\n          lots of spaces (say 1 of every 4 bytes), assume that the input is\n          large and contains lots of bogus non-text. Recurse, passing the\n          Squeeze flag to strip out chunks of this non-text.\n\nAt the end of the first pass --\n          If the top language is reliable and >= 70% of the document, return.\n          Else if the top language is reliable and top+2nd >= say 94%, return.\n          Else, either the top language is not reliable or there is a lot of\n          other crap.\n***/\n\n\nnamespace CompactLangDet {\n  struct DetectionTables;\n}  // namespace CompactLangDet\n\n\nnamespace CompactLangDetImpl {\n  // Scan interchange-valid UTF-8 bytes and detect most likely language,\n  // or set of languages.\n  //\n  // Design goals:\n  //   Skip over big stretches of HTML tags\n  //   Able to return ranges of different languages\n  //   Relatively small tables and relatively fast processing\n  //   Thread safe\n  //\n\n  typedef struct {\n    int perscript_count;\n    const Language* perscript_lang;\n  } PerScriptPair;\n\n  typedef struct {\n    // Constants for hashing 4-7 byte quadgram to 32 bits\n    const int kQuadHashB4Shift;\n    const int kQuadHashB4bShift;\n    const int kQuadHashB5Shift;\n    const int kQuadHashB5bShift;\n    // Constants for hashing 32 bits to kQuadKeyTable subscript/key\n    const int kHashvalToSubShift;\n    const uint32 kHashvalToSubMask;\n    const int kHashvalToKeyShift;\n    const uint32 kHashvalToKeyMask;\n    const int kHashvalAssociativity;\n    // Pointers to the actual tables\n    const PerScriptPair* kPerScriptPair;\n    const uint16* kQuadKeyTable;\n    const uint32* kQuadValueTable;\n  } LangDetObj;\n\n  // For HTML documents, tags are skipped, along with <script> ... </script>\n  // and <style> ... </style> sequences, and entities are expanded.\n  //\n  // We distinguish between bytes of the raw input buffer and bytes of non-tag\n  // text letters. Since tags can be over 50% of the bytes of an HTML Page,\n  // and are nearly all seven-bit ASCII English, we prefer to distinguish\n  // language mixture fractions based on just the non-tag text.\n  //\n  // Inputs: text and text_length\n  //  is_plain_text if true says to NOT parse/skip HTML tags nor entities\n  // Outputs:\n  //  language3 is an array of the top 3 languages or UNKNOWN_LANGUAGE\n  //  percent3 is an array of the text percentages 0..100 of the top 3 languages\n  //  normalized_score3 is an array of internal scores, normalized to the\n  //    average score for each language over a body of training text. A\n  //    normalized score significantly away from 1.0 indicates very skewed text\n  //    or gibberish.\n  //\n  //  text_bytes is the amount of non-tag/letters-only text found\n  //  is_reliable set true if the returned Language is at least 2**30 times more\n  //  probable then the second-best Language\n  //\n  // Return value: the most likely Language for the majority of the input text\n  //  Length 0 input and text with no reliable letter sequences returns\n  //  UNKNOWN_LANGUAGE\n  //\n  // Subsetting: For fast detection over large documents, these routines will\n  // scan non-tag text of the initial part of a document, then will\n  // skip 4-16 bytes and subsample text in the rest of the document, up to a\n  // fixed limit (currently 160KB of non-tag letters).\n  //\n\n  Language DetectLanguageSummaryV25(\n                        const CompactLangDet::DetectionTables* tables,\n                        const char* buffer,\n                        int buffer_length,\n                        bool is_plain_text,\n                        bool do_pick_summary_language,\n                        bool do_remove_weak_matches,\n                        const char* tld_hint,       // \"id\" boosts Indonesian\n                        int encoding_hint,          // SJS boosts Japanese\n                        Language language_hint,     // ITALIAN boosts it\n                        bool allow_extended_lang,\n                        int flags,\n                        Language plus_one,\n                        Language* language3,\n                        int* percent3,\n                        double* normalized_score3,\n                        int* text_bytes,\n                        bool* is_reliable);\n\n  // For unit testing:\n  // Remove portions of text that have a high density of spaces, or that are\n  // overly repetitive, squeezing the remaining text in-place to the front\n  // of the input buffer.\n  // Return the new, possibly-shorter length\n  int CheapSqueezeInplace(char* isrc, int srclen, int ichunksize);\n};      // End namespace CompactLangDetImpl\n\n#endif  // ENCODINGS_COMPACT_LANG_DET_COMPACT_LANG_DET_IMPL_H_\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/compact_lang_det_unittest_small.cc",
    "content": "// Copyright (c) 2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n//\n// Unit test compact language detector\n//\n// Small version, covering these languages only:\n// Arabic Bulgarian Catalan Chinese ChineseT Croatian Czech Danish Dutch\n// English Estonian Finnish French German Greek Hebrew Hindi Hungarian\n// Icelandic Indonesian Italian Japanese Korean Latvian Lithuanian Norwegian\n// Polish Portuguese Romanian Russian Serbian Slovak Slovenian Spanish\n// Swedish Tagalog Thai Turkish Ukrainian Vietnamese\n\n// Additional single-language scripts recognized for free:\n// Armenian Cherokee Dhivehi Georgian Gujarati Inuktitut Kannada Khmer\n// Laothian Malayalam Oriya Punjabi Sinhalese Syriac Telugu Tamil\n//\n\n#include <string>\n#include \"testing/gtest/include/gtest/gtest.h\"\n#include \"encodings/compact_lang_det/compact_lang_det.h\"\n#include \"encodings/compact_lang_det/ext_lang_enc.h\"\n#include \"encodings/compact_lang_det/unittest_data.h\"\n\n#include \"encodings/compact_lang_det/win/cld_commandlineflags.h\"\n#include \"encodings/compact_lang_det/win/cld_google.h\"\n\nDEFINE_bool(html, false, \"Print language spans in HTML on stderr\");\nDEFINE_bool(detail, false, \"Print incoming text to stderr\");\nDEFINE_bool(skipbig, false, \"Skip BigInputTests\");\n\n// Test strings.\n// These are all included here to make the unit test self-contained.\nconst char* kTeststr_en =\n  \"confiscation of goods is assigned as the penalty part most of the courts \"\n  \"consist of members and when it is necessary to bring public cases before a \"\n  \"jury of members two courts combine for the purpose the most important cases \"\n  \"of all are brought jurors or\";\n\n\n// UTF8 constants. Use a UTF-8 aware editor for this file\nconst char* kTeststr_ks =\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// const char* kTeststr_ks =\n//  \\u0928\\u0947\\u092A\\u093E\\u0932\\u0020\\u090F\\u0938\\u093F\\u092F\\u093E\\u0020\n//  \\u092E\\u0902\\u091C\\u0020\\u0905\\u0916\\u0020\\u092E\\u0941\\u0932\\u0941\\u0915\n//  \\u0020\\u0930\\u093E\\u091C\\u0927\\u093E\\u0928\\u0940\\u0020\\u0915\\u093E\\u0920\n//  \\u092E\\u093E\\u0921\\u094C\\u0902\\u0020\\u0928\\u0947\\u092A\\u093E\\u0932\\u0020\n//  \\u0905\\u0927\\u093F\\u0930\\u093E\\u091C\\u094D\\u092F\\u0020\\u092A\\u0947\\u0930\n//  \\u0947\\u0917\\u094D\\u0935\\u093E\\u092F\\u0020\n//  \\u0926\\u0915\\u094D\\u0937\\u093F\\u0923\\u0020\\u0905\\u092E\\u0947\\u0930\\u093F\n//  \\u0915\\u093E\\u0020\\u092E\\u0939\\u093E\\u0926\\u094D\\u0935\\u0940\\u092A\\u0947\n//  \\u0020\\u092E\\u0927\\u094D\\u0020\\u092F\\u0915\\u094D\\u0937\\u0947\\u0924\\u094D\n//  \\u0930\\u0947\\u0020\\u090F\\u0915\\u0020\\u0926\\u0947\\u0936\\u0020\\u0905\\u0938\n//  \\u094D\\u0020\\u0924\\u093F\\u0020\\u092B\\u0923\\u0940\\u0936\\u094D\\u0935\\u0930\n//  \\u0020\\u0928\\u093E\\u0925\\u0020\\u0930\\u0947\\u0923\\u0941\\u0020\n//  \\u092B\\u093F\\u091C\\u0940\\u0020\\u091B\\u0941\\u0020\\u0926\\u0915\\u094D\\u0937\n//  \\u093F\\u0923\\u0020\\u092A\\u094D\\u0930\\u0936\\u093E\\u0928\\u094D\\u0020\\u0924\n//  \\u0020\\u092E\\u0939\\u093E\\u0938\\u093E\\u0917\\u0930\\u0020\\u092E\\u0902\\u091C\n//  \\u0020\\u0905\\u0916\\u0020\\u0926\\u0947\\u0936\\u0020\\u092C\\u0939\\u093E\\u092E\n//  \\u093E\\u0938\\u0020\\u091B\\u0941\\u0020\\u0915\\u0947\\u0930\\u0947\\u092C\\u093F\n//  \\u092F\\u0928\\u0020\\u092E\\u0902\\u091C\\u0020\n//  \\u0905\\u0916\\u0020\\u092E\\u0941\\u0932\\u0941\\u0916\\u0020\\u0930\\u093E\\u091C\n//  \\u0927\\u093E\\u0928\\u0940\\u0020\\u0928\\u0938\\u094C\\u0020\\u0938\\u092E\\u094D\n//  \\u0020\\u092C\\u0926\\u094D\\u0918\\u0020\\u0935\\u093F\\u0937\\u092F\\u0020\\u092C\n//  \\u0941\\u0930\\u0941\\u0902\\u0921\\u0940\\u0020\\u0905\\u092B\\u094D\\u0930\\u0940\n//  \\u0915\\u093E\\u0020\\u092E\\u0939\\u093E\\u0926\\u094D\\u0935\\u0940\\u092A\\u0947\n//  \\u0020\\u092E\\u0927\\u094D\\u0020\n//  \\u092F\\u0915\\u094D\\u0937\\u0947\\u0924\\u094D\\u0930\\u0947\\u0020\\u0926\\u0947\n//  \\u0936\\u0020\\u0905\\u0938\\u094D\\u0020\\u0924\\u093F\\u0020\\u0938\\u092E\\u094D\n//  \\u0020\\u092C\\u0926\\u094D\\u0918\\u0020\\u0935\\u093F\\u0937\\u092F\n\n\n\n\nnamespace {\n\nclass CompactLangDetTest : public testing::Test {\n protected:\n  // Objects declared here can be used by all tests in the test case for Foo.\n\n  // Detect language of plaintext src\n  Language TestCompactLangDetPlain(const char* src) {\n    bool is_plain_text = true;\n    bool is_reliable;\n\n    Language lang = CompactLangDet::DetectLanguage(NULL, src, strlen(src),\n                                                   is_plain_text,\n                                                   &is_reliable);\n    return lang;\n  }\n\n\n  // Detect extended language of plaintext src\n  Language TestExtCompactLangDetPlain(const char* src) {\n    bool is_plain_text = true;\n    Language language3[3];\n    int percent3[3];\n    int text_bytes;\n    bool is_reliable;\n\n    Language lang =  CompactLangDet::ExtDetectLanguageSummary(NULL,\n                            src, strlen(src),\n                            is_plain_text,\n                            language3,\n                            percent3,\n                            &text_bytes,\n                            &is_reliable);\n    return lang;\n  }\n};    // end class CompactLangDetTest\n\n\nTEST_F(CompactLangDetTest, EasyTests) {\n  EXPECT_EQ(ENGLISH, TestCompactLangDetPlain(kTeststr_en));\n  EXPECT_EQ(HINDI, TestCompactLangDetPlain(kTeststr_hi_Deva));\n}\n\n\nTEST_F(CompactLangDetTest, FullTests) {\n  // Only the tests reflecting the currently used detection tables are enabled.\n\n  // Do all the languages in all their scripts\n  //// EXPECT_EQ(AFAR, TestCompactLangDetPlain(kTeststr_aa_Latn));\n  //// EXPECT_EQ(ABKHAZIAN, TestCompactLangDetPlain(kTeststr_ab_Cyrl));\n  EXPECT_EQ(AFRIKAANS, TestCompactLangDetPlain(kTeststr_af_Latn));\n  //// EXPECT_EQ(AMHARIC, TestCompactLangDetPlain(kTeststr_am_Ethi));\n  EXPECT_EQ(ARABIC, TestCompactLangDetPlain(kTeststr_ar_Arab));\n  //// EXPECT_EQ(ASSAMESE, TestCompactLangDetPlain(kTeststr_as_Beng));\n  //// EXPECT_EQ(AYMARA, TestCompactLangDetPlain(kTeststr_ay_Latn));\n  // AZERBAIJANI Arab & Cyrl removed 2008.05.27. Just AZERBAIJANI Latn left\n  //  EXPECT_EQ(AZERBAIJANI, TestCompactLangDetPlain(kTeststr_az_Arab));\n  //  Missing data: az-Cyrl\n  //// EXPECT_EQ(AZERBAIJANI, TestCompactLangDetPlain(kTeststr_az_Latn));\n\n  //// EXPECT_EQ(BASHKIR, TestCompactLangDetPlain(kTeststr_ba_Cyrl));\n  EXPECT_EQ(BELARUSIAN, TestCompactLangDetPlain(kTeststr_be_Cyrl));\n  EXPECT_EQ(BULGARIAN, TestCompactLangDetPlain(kTeststr_bg_Cyrl));\n  //// EXPECT_EQ(BIHARI, TestCompactLangDetPlain(kTeststr_bh_Deva));\n  //// EXPECT_EQ(BISLAMA, TestCompactLangDetPlain(kTeststr_bi_Latn));\n  //// EXPECT_EQ(BENGALI, TestCompactLangDetPlain(kTeststr_bn_Beng));\n  \n  //// EXPECT_EQ(TIBETAN, TestCompactLangDetPlain(kTeststr_bo_Tibt));\n  //// EXPECT_EQ(BRETON, TestCompactLangDetPlain(kTeststr_br_Latn));\n  EXPECT_EQ(SERBIAN, TestCompactLangDetPlain(kTeststr_bs_Cyrl));    // NOTE: Not BOSNIAN\n  //// EXPECT_EQ(CROATIAN, TestCompactLangDetPlain(kTeststr_bs_Latn));   // NOTE: Not BOSNIAN\n\n  EXPECT_EQ(CATALAN, TestCompactLangDetPlain(kTeststr_ca_Latn));\n  EXPECT_EQ(CHEROKEE, TestCompactLangDetPlain(kTeststr_chr_Cher));\n  //// EXPECT_EQ(CORSICAN, TestCompactLangDetPlain(kTeststr_co_Latn));\n    // No CREOLES_AND_PIDGINS_ENGLISH_BASED\n    // No CREOLES_AND_PIDGINS_FRENCH_BASED\n    // No CREOLES_AND_PIDGINS_OTHER\n    // No CREOLES_AND_PIDGINS_PORTUGUESE_BASED\n  EXPECT_EQ(CZECH, TestCompactLangDetPlain(kTeststr_cs_Latn));\n  EXPECT_EQ(WELSH, TestCompactLangDetPlain(kTeststr_cy_Latn));\n\n  EXPECT_EQ(DANISH, TestCompactLangDetPlain(kTeststr_da_Latn));\n  EXPECT_EQ(GERMAN, TestCompactLangDetPlain(kTeststr_de_Latn));\n  EXPECT_EQ(DHIVEHI, TestCompactLangDetPlain(kTeststr_dv_Thaa));\n  //// EXPECT_EQ(DZONGKHA, TestCompactLangDetPlain(kTeststr_dz_Tibt));\n\n  EXPECT_EQ(GREEK, TestCompactLangDetPlain(kTeststr_el_Grek));\n  EXPECT_EQ(ENGLISH, TestCompactLangDetPlain(kTeststr_en_Latn));\n  //// EXPECT_EQ(ESPERANTO, TestCompactLangDetPlain(kTeststr_eo_Latn));\n  EXPECT_EQ(SPANISH, TestCompactLangDetPlain(kTeststr_es_Latn));\n  EXPECT_EQ(ESTONIAN, TestCompactLangDetPlain(kTeststr_et_Latn));\n  //// EXPECT_EQ(BASQUE, TestCompactLangDetPlain(kTeststr_eu_Latn));\n\n  EXPECT_EQ(PERSIAN, TestCompactLangDetPlain(kTeststr_fa_Arab));\n  EXPECT_EQ(FINNISH, TestCompactLangDetPlain(kTeststr_fi_Latn));\n  //// EXPECT_EQ(FIJIAN, TestCompactLangDetPlain(kTeststr_fj_Latn));\n  //// EXPECT_EQ(FAROESE, TestCompactLangDetPlain(kTeststr_fo_Latn));\n  EXPECT_EQ(FRENCH, TestCompactLangDetPlain(kTeststr_fr_Latn));\n  //// EXPECT_EQ(FRISIAN, TestCompactLangDetPlain(kTeststr_fy_Latn));\n\n  EXPECT_EQ(IRISH, TestCompactLangDetPlain(kTeststr_ga_Latn));\n  //// EXPECT_EQ(SCOTS_GAELIC, TestCompactLangDetPlain(kTeststr_gd_Latn));\n  //// EXPECT_EQ(GALICIAN, TestCompactLangDetPlain(kTeststr_gl_Latn));\n  //// EXPECT_EQ(GUARANI, TestCompactLangDetPlain(kTeststr_gn_Latn));\n  EXPECT_EQ(GUJARATI, TestCompactLangDetPlain(kTeststr_gu_Gujr));\n  //// EXPECT_EQ(MANX, TestCompactLangDetPlain(kTeststr_gv_Latn));\n\n ////  EXPECT_EQ(HAUSA, TestCompactLangDetPlain(kTeststr_ha_Latn));\n  EXPECT_EQ(HINDI, TestCompactLangDetPlain(kTeststr_hi_Deva));\n  EXPECT_EQ(CROATIAN, TestCompactLangDetPlain(kTeststr_hr_Latn));     // NOTE: now CROATIAN\n  //// EXPECT_EQ(HAITIAN_CREOLE, TestCompactLangDetPlain(kTeststr_ht_Latn));\n  EXPECT_EQ(HUNGARIAN, TestCompactLangDetPlain(kTeststr_hu_Latn));\n  EXPECT_EQ(ARMENIAN, TestCompactLangDetPlain(kTeststr_hy_Armn));\n\n  //// EXPECT_EQ(INTERLINGUA, TestCompactLangDetPlain(kTeststr_ia_Latn));\n  EXPECT_EQ(MALAY, TestCompactLangDetPlain(kTeststr_id_Latn));\n  //// EXPECT_EQ(INTERLINGUE, TestCompactLangDetPlain(kTeststr_ie_Latn));\n  //// EXPECT_EQ(INUPIAK, TestCompactLangDetPlain(kTeststr_ik_Latn));\n  EXPECT_EQ(ICELANDIC, TestCompactLangDetPlain(kTeststr_is_Latn));\n  EXPECT_EQ(ITALIAN, TestCompactLangDetPlain(kTeststr_it_Latn));\n  EXPECT_EQ(INUKTITUT, TestCompactLangDetPlain(kTeststr_iu_Cans));\n  EXPECT_EQ(HEBREW, TestCompactLangDetPlain(kTeststr_iw_Hebr));\n\n  EXPECT_EQ(JAPANESE, TestCompactLangDetPlain(kTeststr_ja_Hani));\n  //// EXPECT_EQ(JAVANESE, TestCompactLangDetPlain(kTeststr_jw_Latn));\n\n  EXPECT_EQ(GEORGIAN, TestCompactLangDetPlain(kTeststr_ka_Geor));\n  //// EXPECT_EQ(KHASI, TestCompactLangDetPlain(kTeststr_kha_Latn));\n  //// EXPECT_EQ(KAZAKH, TestCompactLangDetPlain(kTeststr_kk_Arab));\n  //// EXPECT_EQ(KAZAKH, TestCompactLangDetPlain(kTeststr_kk_Cyrl));\n  //// EXPECT_EQ(KAZAKH, TestCompactLangDetPlain(kTeststr_kk_Latn));\n  //// EXPECT_EQ(GREENLANDIC, TestCompactLangDetPlain(kTeststr_kl_Latn));\n  EXPECT_EQ(KHMER, TestCompactLangDetPlain(kTeststr_km_Khmr));\n  EXPECT_EQ(KANNADA, TestCompactLangDetPlain(kTeststr_kn_Knda));\n  EXPECT_EQ(KOREAN, TestCompactLangDetPlain(kTeststr_ko_Hani));\n  //// EXPECT_EQ(KASHMIRI, TestCompactLangDetPlain(kTeststr_ks_Deva));\n  // KURDISH Latn removed 2008.05.27. Just KURDISH Arab left\n ////  EXPECT_EQ(KURDISH, TestCompactLangDetPlain(kTeststr_ku_Arab));\n  //  EXPECT_EQ(KURDISH, TestCompactLangDetPlain(kTeststr_ku_Latn));\n  //// EXPECT_EQ(KYRGYZ, TestCompactLangDetPlain(kTeststr_ky_Arab));\n  //// EXPECT_EQ(KYRGYZ, TestCompactLangDetPlain(kTeststr_ky_Cyrl));\n\n  //// EXPECT_EQ(LATIN, TestCompactLangDetPlain(kTeststr_la_Latn));\n  //// EXPECT_EQ(LUXEMBOURGISH, TestCompactLangDetPlain(kTeststr_lb_Latn));\n  //// EXPECT_EQ(GANDA, TestCompactLangDetPlain(kTeststr_lg_Latn));\n  //// EXPECT_EQ(LINGALA, TestCompactLangDetPlain(kTeststr_ln_Latn));\n  EXPECT_EQ(LAOTHIAN, TestCompactLangDetPlain(kTeststr_lo_Laoo));\n  EXPECT_EQ(LITHUANIAN, TestCompactLangDetPlain(kTeststr_lt_Latn));\n  EXPECT_EQ(LATVIAN, TestCompactLangDetPlain(kTeststr_lv_Latn));\n\n  //// EXPECT_EQ(MALAGASY, TestCompactLangDetPlain(kTeststr_mg_Latn));\n  //// EXPECT_EQ(MAORI, TestCompactLangDetPlain(kTeststr_mi_Latn));\n  EXPECT_EQ(MACEDONIAN, TestCompactLangDetPlain(kTeststr_mk_Cyrl));\n  EXPECT_EQ(MALAYALAM, TestCompactLangDetPlain(kTeststr_ml_Mlym));\n  //// EXPECT_EQ(MONGOLIAN, TestCompactLangDetPlain(kTeststr_mn_Cyrl));\n  //// EXPECT_EQ(MOLDAVIAN, TestCompactLangDetPlain(kTeststr_mo_Cyrl));\n  //// EXPECT_EQ(MARATHI, TestCompactLangDetPlain(kTeststr_mr_Deva));\n  EXPECT_EQ(MALAY, TestCompactLangDetPlain(kTeststr_ms_Latn));\n  // EXPECT_EQ(MALAY, TestCompactLangDetPlain(kTeststr_ms_Latn2));\n  EXPECT_EQ(MALAY, TestCompactLangDetPlain(kTeststr_ms_Latn3));\n  //// EXPECT_EQ(MALTESE, TestCompactLangDetPlain(kTeststr_mt_Latn));\n  //// EXPECT_EQ(BURMESE, TestCompactLangDetPlain(kTeststr_my_Latn));\n  //// EXPECT_EQ(BURMESE, TestCompactLangDetPlain(kTeststr_my_Mymr));\n\n  //// EXPECT_EQ(NAURU, TestCompactLangDetPlain(kTeststr_na_Latn));\n  //// EXPECT_EQ(NEPALI, TestCompactLangDetPlain(kTeststr_ne_Deva));\n  EXPECT_EQ(DUTCH, TestCompactLangDetPlain(kTeststr_nl_Latn));\n  //// EXPECT_EQ(NORWEGIAN_N, TestCompactLangDetPlain(kTeststr_nn_Latn));\n  EXPECT_EQ(NORWEGIAN, TestCompactLangDetPlain(kTeststr_no_Latn));\n\n  //// EXPECT_EQ(OCCITAN, TestCompactLangDetPlain(kTeststr_oc_Latn));\n  //// EXPECT_EQ(OROMO, TestCompactLangDetPlain(kTeststr_om_Latn));\n  EXPECT_EQ(ORIYA, TestCompactLangDetPlain(kTeststr_or_Orya));\n\n  EXPECT_EQ(PUNJABI, TestCompactLangDetPlain(kTeststr_pa_Guru));\n  EXPECT_EQ(POLISH, TestCompactLangDetPlain(kTeststr_pl_Latn));\n  //// EXPECT_EQ(PASHTO, TestCompactLangDetPlain(kTeststr_ps_Arab));\n  EXPECT_EQ(PORTUGUESE, TestCompactLangDetPlain(kTeststr_pt_BR));     // NOTE: not PORTUGUESE_B\n                                                                      // nor PORTUGUESE_P\n\n  //// EXPECT_EQ(QUECHUA, TestCompactLangDetPlain(kTeststr_qu_Latn));\n\n  //// EXPECT_EQ(RHAETO_ROMANCE, TestCompactLangDetPlain(kTeststr_rm_Latn));\n  //// EXPECT_EQ(RUNDI, TestCompactLangDetPlain(kTeststr_rn_Latn));\n  EXPECT_EQ(ROMANIAN, TestCompactLangDetPlain(kTeststr_ro_Latn));\n  EXPECT_EQ(RUSSIAN, TestCompactLangDetPlain(kTeststr_ru_Cyrl));\n  //// EXPECT_EQ(KINYARWANDA, TestCompactLangDetPlain(kTeststr_rw_Latn));\n\n  //// EXPECT_EQ(SANSKRIT, TestCompactLangDetPlain(kTeststr_sa_Deva));\n  //// EXPECT_EQ(SANSKRIT, TestCompactLangDetPlain(kTeststr_sa_Latn));\n  //// EXPECT_EQ(SCOTS, TestCompactLangDetPlain(kTeststr_sco_Latn));\n  //// EXPECT_EQ(SINDHI, TestCompactLangDetPlain(kTeststr_sd_Arab));\n ////  EXPECT_EQ(SANGO, TestCompactLangDetPlain(kTeststr_sg_Latn));\n    // No SERBO_CROATIAN (sh)\n  EXPECT_EQ(SINHALESE, TestCompactLangDetPlain(kTeststr_si_Sinh));\n  //// EXPECT_EQ(LIMBU, TestCompactLangDetPlain(kTeststr_sit_NP));\n  EXPECT_EQ(SLOVAK, TestCompactLangDetPlain(kTeststr_sk_Latn));\n  EXPECT_EQ(SLOVENIAN, TestCompactLangDetPlain(kTeststr_sl_Latn));\n  //// EXPECT_EQ(SAMOAN, TestCompactLangDetPlain(kTeststr_sm_Latn));\n  //// EXPECT_EQ(SHONA, TestCompactLangDetPlain(kTeststr_sn_Latn));\n  //// EXPECT_EQ(SOMALI, TestCompactLangDetPlain(kTeststr_so_Latn));\n  //// EXPECT_EQ(ALBANIAN, TestCompactLangDetPlain(kTeststr_sq_Latn));\n  EXPECT_EQ(SERBIAN, TestCompactLangDetPlain(kTeststr_sr_Cyrl));    // NOTE: now SERBIAN\n  EXPECT_EQ(CROATIAN, TestCompactLangDetPlain(kTeststr_sr_Latn));   // NOTE: Not SERBIAN\n  EXPECT_EQ(CROATIAN, TestCompactLangDetPlain(kTeststr_sr_ME_Latn));   // NOTE: not SERBIAN nor MONTENEGRIN\n  //// EXPECT_EQ(SISWANT, TestCompactLangDetPlain(kTeststr_ss_Latn));\n  //// EXPECT_EQ(SESOTHO, TestCompactLangDetPlain(kTeststr_st_Latn));\n  //// EXPECT_EQ(SUNDANESE, TestCompactLangDetPlain(kTeststr_su_Latn));\n  EXPECT_EQ(SWEDISH, TestCompactLangDetPlain(kTeststr_sv_Latn));\n  EXPECT_EQ(SWAHILI, TestCompactLangDetPlain(kTeststr_sw_Latn));\n  EXPECT_EQ(SYRIAC, TestCompactLangDetPlain(kTeststr_syr_Syrc));\n\n  EXPECT_EQ(TAMIL, TestCompactLangDetPlain(kTeststr_ta_Taml));\n  EXPECT_EQ(TELUGU, TestCompactLangDetPlain(kTeststr_te_Telu));\n  // Tajik Arab removed 2008.05.27. Just Tajik Cyrl left\n  //  EXPECT_EQ(TAJIK, TestCompactLangDetPlain(kTeststr_tg_Arab));\n  //// EXPECT_EQ(TAJIK, TestCompactLangDetPlain(kTeststr_tg_Cyrl));\n  EXPECT_EQ(THAI, TestCompactLangDetPlain(kTeststr_th_Thai));\n  //// EXPECT_EQ(TIGRINYA, TestCompactLangDetPlain(kTeststr_ti_Ethi));\n  //// EXPECT_EQ(TURKMEN, TestCompactLangDetPlain(kTeststr_tk_Cyrl));\n  //// EXPECT_EQ(TURKMEN, TestCompactLangDetPlain(kTeststr_tk_Latn));\n  EXPECT_EQ(TAGALOG, TestCompactLangDetPlain(kTeststr_tl_Latn));\n  //// EXPECT_EQ(TSWANA, TestCompactLangDetPlain(kTeststr_tn_Latn));\n  //// EXPECT_EQ(TONGA, TestCompactLangDetPlain(kTeststr_to_Latn));\n  EXPECT_EQ(TURKISH, TestCompactLangDetPlain(kTeststr_tr_Latn));\n  //// EXPECT_EQ(TSONGA, TestCompactLangDetPlain(kTeststr_ts_Latn));\n  //// EXPECT_EQ(TATAR, TestCompactLangDetPlain(kTeststr_tt_Cyrl));\n  //// EXPECT_EQ(TATAR, TestCompactLangDetPlain(kTeststr_tt_Latn));\n  //// EXPECT_EQ(TWI, TestCompactLangDetPlain(kTeststr_tw_Latn));\n\n  //// EXPECT_EQ(UIGHUR, TestCompactLangDetPlain(kTeststr_ug_Arab));\n  //// EXPECT_EQ(UIGHUR, TestCompactLangDetPlain(kTeststr_ug_Cyrl));\n  //// EXPECT_EQ(UIGHUR, TestCompactLangDetPlain(kTeststr_ug_Latn));\n  EXPECT_EQ(UKRAINIAN, TestCompactLangDetPlain(kTeststr_uk_Cyrl));\n  //// EXPECT_EQ(URDU, TestCompactLangDetPlain(kTeststr_ur_Arab));\n  //// EXPECT_EQ(UZBEK, TestCompactLangDetPlain(kTeststr_uz_Arab));\n  //// EXPECT_EQ(UZBEK, TestCompactLangDetPlain(kTeststr_uz_Cyrl));\n  //// EXPECT_EQ(UZBEK, TestCompactLangDetPlain(kTeststr_uz_Latn));\n\n  EXPECT_EQ(VIETNAMESE, TestCompactLangDetPlain(kTeststr_vi_Latn));\n  //// EXPECT_EQ(VOLAPUK, TestCompactLangDetPlain(kTeststr_vo_Latn));\n\n  //// EXPECT_EQ(WOLOF, TestCompactLangDetPlain(kTeststr_wo_Latn));\n\n  //// EXPECT_EQ(XHOSA, TestCompactLangDetPlain(kTeststr_xh_Latn));\n\n  EXPECT_EQ(YIDDISH, TestCompactLangDetPlain(kTeststr_yi_Hebr));\n  //// EXPECT_EQ(YORUBA, TestCompactLangDetPlain(kTeststr_yo_Latn));\n\n  // Zhuang Hani removed 2008.05.13. Just Zhuang Latn left\n  //  EXPECT_EQ(ZHUANG, TestCompactLangDetPlain(kTeststr_za_Hani));\n  //// EXPECT_EQ(ZHUANG, TestCompactLangDetPlain(kTeststr_za_Latn));\n  EXPECT_EQ(CHINESE, TestCompactLangDetPlain(kTeststr_zh_Hani));\n  EXPECT_EQ(CHINESE_T, TestCompactLangDetPlain(kTeststr_zh_TW));\n  //// EXPECT_EQ(ZULU, TestCompactLangDetPlain(kTeststr_zu_Latn));\n  // No TG_UNKNOWN_LANGUAGE\n  // No UNKNOWN_LANGUAGE\n}\n\n\nTEST_F(CompactLangDetTest, ExtendedTests) {\n  // Do the extended languages, with them not-allowed then allowed\n  // These turn out to be extraordinarily sensitive forms of garbage bytes\n  //// EXPECT_EQ(ENGLISH, TestCompactLangDetPlain(kTeststr_tlh_Latn));\n  //// EXPECT_EQ(X_KLINGON, TestExtCompactLangDetPlain(kTeststr_tlh_Latn));\n\n  //// EXPECT_EQ(ENGLISH, TestCompactLangDetPlain(kTeststr_zzp_Latn));\n  //// EXPECT_EQ(X_PIG_LATIN, TestExtCompactLangDetPlain(kTeststr_zzp_Latn));\n\n  //// EXPECT_EQ(ENGLISH, TestCompactLangDetPlain(kTeststr_xx_Bugi));\n  //// EXPECT_EQ(X_BUGINESE, TestExtCompactLangDetPlain(kTeststr_xx_Bugi));\n\n  //// EXPECT_EQ(ENGLISH, TestCompactLangDetPlain(kTeststr_xx_Goth));\n  //// EXPECT_EQ(X_GOTHIC, TestExtCompactLangDetPlain(kTeststr_xx_Goth));\n\n  // Next three now removed permanently from probability tables (May 2008)\n  //  (used to be X_BORK_BORK_BORK, X_ELMER_FUDD, X_HACKER).\n  //\n  // Small changes in probability tables may cause these non-texts to\n  // change detection result. If that happens, cross-check that\n  // the new result is not because of a bug, then change the expected values.\n  EXPECT_EQ(ENGLISH, TestCompactLangDetPlain(kTeststr_zzb_Latn));\n  EXPECT_EQ(ENGLISH, TestExtCompactLangDetPlain(kTeststr_zzb_Latn));\n\n  EXPECT_EQ(ENGLISH, TestCompactLangDetPlain(kTeststr_zze_Latn));\n  EXPECT_EQ(ENGLISH, TestExtCompactLangDetPlain(kTeststr_zze_Latn));\n\n  //// EXPECT_EQ(ENGLISH, TestCompactLangDetPlain(kTeststr_zzh_Latn));\n  //// EXPECT_EQ(ENGLISH, TestExtCompactLangDetPlain(kTeststr_zzh_Latn));\n}\n\n\n}  // End namespace\n\n#if !defined(CLD_WINDOWS)\nint main(int argc, char** argv) {\n  FLAGS_logtostderr = true;\n  InitGoogle(\"Unit test for CLD small\", &argc, &argv, false);\n  return RUN_ALL_TESTS();\n}\n#endif\n\n\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/compile.cmd",
    "content": "gcc -DCOMPILER_GCC -I../.. *.cc\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/ext_lang_enc.cc",
    "content": "// Copyright (c) 2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n// This file extends lang_enc.cc with additional languages and extended routines\n// It is current with Unicode 5.1 (beta Jan 2008)\n//\n\n#include <stdlib.h>\n#include <stdio.h>\n#include <string.h>\n\n#include \"encodings/compact_lang_det/ext_lang_enc.h\"\n#include \"encodings/compact_lang_det/win/cld_macros.h\"\n#include \"encodings/compact_lang_det/win/cld_strtoint.h\"\n\n// Language names above NUM_LANGUAGES\n// These are also the C enum declared names\nstatic const char* const kExtLanguageName[] = {\n\"X_BORK_BORK_BORK\", \"X_PIG_LATIN\", \"X_HACKER\", \"X_KLINGON\", \"X_ELMER_FUDD\",\n\n// Pseudo-languages for Unicode scripts that express a single language\n\"X_OGHAM\", \"X_RUNIC\", \"X_YI\", \"X_OLD_ITALIC\", \"X_GOTHIC\",\n\"X_DESERET\", \"X_HANUNOO\", \"X_BUHID\", \"X_TAGBANWA\", \"X_TAI_LE\",\n\"X_LINEAR_B\", \"X_UGARITIC\", \"X_SHAVIAN\", \"X_OSMANYA\", \"X_CYPRIOT\",\n\"X_BUGINESE\", \"X_COPTIC\", \"X_NEW_TAI_LUE\", \"X_GLAGOLITIC\", \"X_TIFINAGH\",\n\"X_SYLOTI_NAGRI\", \"X_OLD_PERSIAN\", \"X_KHAROSHTHI\", \"X_BALINESE\", \"X_CUNEIFORM\",\n\"X_PHOENICIAN\", \"X_PHAGS_PA\", \"X_NKO\",\n\n// Unicode 5.1\n\"X_SUDANESE\", \"X_LEPCHA\", \"X_OL_CHIKI\", \"X_VAI\", \"X_SAURASHTRA\",\n\"X_KAYAH_LI\", \"X_REJANG\", \"X_LYCIAN\", \"X_CARIAN\", \"X_LYDIAN\",\n\"X_CHAM\",\n};\n\n\n// These are the C enum declared names, for programs creating C code\nstatic const char* const kExtLangDeclaredName[] = {\n  \"ENGLISH\",      /* 0 */\n  \"DANISH\",       /* 1 */\n  \"DUTCH\",        /* 2 */\n  \"FINNISH\",      /* 3 */\n  \"FRENCH\",       /* 4 */\n  \"GERMAN\",       /* 5 */\n  \"HEBREW\",       /* 6 */\n  \"ITALIAN\",      /* 7 */\n  \"JAPANESE\",     /* 8 */\n  \"KOREAN\",       /* 9 */\n  \"NORWEGIAN\",    /* 10 */\n  \"POLISH\",       /* 11 */\n  \"PORTUGUESE\",   /* 12 */\n  \"RUSSIAN\",      /* 13 */\n  \"SPANISH\",      /* 14 */\n  \"SWEDISH\",      /* 15 */\n  \"CHINESE\",      /* 16 */\n  \"CZECH\",        /* 17 */\n  \"GREEK\",        /* 18 */\n  \"ICELANDIC\",    /* 19 */\n  \"LATVIAN\",      /* 20 */\n  \"LITHUANIAN\",   /* 21 */\n  \"ROMANIAN\",     /* 22 */\n  \"HUNGARIAN\",    /* 23 */\n  \"ESTONIAN\",     /* 24 */\n  \"TG_UNKNOWN_LANGUAGE\",  /* 25 */\n  \"UNKNOWN_LANGUAGE\",     /* 26 */\n  \"BULGARIAN\",    /* 27 */\n  \"CROATIAN\",     /* 28 */\n  \"SERBIAN\",      /* 29 */\n  \"IRISH\",        /* 30 */\n  \"GALICIAN\",     /* 31 */\n  \"TAGALOG\",      /* 32 */\n  \"TURKISH\",      /* 33 */\n  \"UKRAINIAN\",    /* 34 */\n  \"HINDI\",        /* 35 */\n  \"MACEDONIAN\",   /* 36 */\n  \"BENGALI\",      /* 37 */\n  \"INDONESIAN\",   /* 38 */\n  \"LATIN\",        /* 39 */\n  \"MALAY\",        /* 40 */\n  \"MALAYALAM\",    /* 41 */\n  \"WELSH\",        /* 42 */\n  \"NEPALI\",       /* 43 */\n  \"TELUGU\",       /* 44 */\n  \"ALBANIAN\",     /* 45 */\n  \"TAMIL\",        /* 46 */\n  \"BELARUSIAN\",   /* 47 */\n  \"JAVANESE\",     /* 48 */\n  \"OCCITAN\",      /* 49 */\n  \"URDU\",         /* 50 */\n  \"BIHARI\",       /* 51 */\n  \"GUJARATI\",     /* 52 */\n  \"THAI\",         /* 53 */\n  \"ARABIC\",       /* 54 */\n  \"CATALAN\",      /* 55 */\n  \"ESPERANTO\",    /* 56 */\n  \"BASQUE\",       /* 57 */\n  \"INTERLINGUA\",  /* 58 */\n  \"KANNADA\",      /* 59 */\n  \"PUNJABI\",      /* 60 */\n  \"SCOTS_GAELIC\", /* 61 */\n  \"SWAHILI\",      /* 62 */\n  \"SLOVENIAN\",    /* 63 */\n  \"MARATHI\",      /* 64 */\n  \"MALTESE\",      /* 65 */\n  \"VIETNAMESE\",   /* 66 */\n  \"FRISIAN\",      /* 67 */\n  \"SLOVAK\",       /* 68 */\n  \"CHINESE_T\",    /* 69 */\n  \"FAROESE\",      /* 70 */\n  \"SUNDANESE\",    /* 71 */\n  \"UZBEK\",        /* 72 */\n  \"AMHARIC\",      /* 73 */\n  \"AZERBAIJANI\",  /* 74 */\n  \"GEORGIAN\",     /* 75 */\n  \"TIGRINYA\",     /* 76 */\n  \"PERSIAN\",      /* 77 */\n  \"BOSNIAN\",      /* 78 */\n  \"SINHALESE\",    /* 79 */\n  \"NORWEGIAN_N\",  /* 80 */\n  \"PORTUGUESE_P\", /* 81 */\n  \"PORTUGUESE_B\", /* 82 */\n  \"XHOSA\",        /* 83 */\n  \"ZULU\",         /* 84 */\n  \"GUARANI\",      /* 85 */\n  \"SESOTHO\",      /* 86 */\n  \"TURKMEN\",      /* 87 */\n  \"KYRGYZ\",       /* 88 */\n  \"BRETON\",       /* 89 */\n  \"TWI\",          /* 90 */\n  \"YIDDISH\",      /* 91 */\n  \"SERBO_CROATIAN\",       /* 92 */\n  \"SOMALI\",       /* 93 */\n  \"UIGHUR\",       /* 94 */\n  \"KURDISH\",      /* 95 */\n  \"MONGOLIAN\",    /* 96 */\n  \"ARMENIAN\",     /* 97 */\n  \"LAOTHIAN\",     /* 98 */\n  \"SINDHI\",       /* 99 */\n  \"RHAETO_ROMANCE\",  /* 100 */\n  \"AFRIKAANS\",    /* 101 */\n  \"LUXEMBOURGISH\", /* 102 */\n  \"BURMESE\",      /* 103 */\n  \"KHMER\",        /* 104 */\n  \"TIBETAN\",      /* 105 */\n  \"DHIVEHI\",      /* 106 */       // sometimes spelled Divehi; lang of Maldives\n  \"CHEROKEE\",     /* 107 */\n  \"SYRIAC\",       /* 108 */\n  \"LIMBU\",        /* 109 */\n  \"ORIYA\",        /* 110 */\n  \"ASSAMESE\",     /* 111 */\n  \"CORSICAN\",     /* 112 */\n  \"INTERLINGUE\",  /* 113 */\n  \"KAZAKH\",       /* 114 */\n  \"LINGALA\",      /* 115 */\n  \"MOLDAVIAN\",    /* 116 */\n  \"PASHTO\",       /* 117 */\n  \"QUECHUA\",      /* 118 */\n  \"SHONA\",        /* 119 */\n  \"TAJIK\",        /* 120 */\n  \"TATAR\",        /* 121 */\n  \"TONGA\",        /* 122 */\n  \"YORUBA\",       /* 123 */\n  \"CREOLES_AND_PIDGINS_ENGLISH_BASED\",      /* 124 */\n  \"CREOLES_AND_PIDGINS_FRENCH_BASED\",       /* 125 */\n  \"CREOLES_AND_PIDGINS_PORTUGUESE_BASED\",   /* 126 */\n  \"CREOLES_AND_PIDGINS_OTHER\",              /* 127 */\n  \"MAORI\",        /* 128 */\n  \"WOLOF\",        /* 129 */\n  \"ABKHAZIAN\",    /* 130 */\n  \"AFAR\",         /* 131 */\n  \"AYMARA\",       /* 132 */\n  \"BASHKIR\",      /* 133 */\n  \"BISLAMA\",      /* 134 */\n  \"DZONGKHA\",     /* 135 */\n  \"FIJIAN\",       /* 136 */\n  \"GREENLANDIC\",  /* 137 */\n  \"HAUSA\",        /* 138 */\n  \"HAITIAN_CREOLE\",  /* 139 */\n  \"INUPIAK\",      /* 140 */\n  \"INUKTITUT\",    /* 141 */\n  \"KASHMIRI\",     /* 142 */\n  \"KINYARWANDA\",  /* 143 */\n  \"MALAGASY\",     /* 144 */\n  \"NAURU\",        /* 145 */\n  \"OROMO\",        /* 146 */\n  \"RUNDI\",        /* 147 */\n  \"SAMOAN\",       /* 148 */\n  \"SANGO\",        /* 149 */\n  \"SANSKRIT\",     /* 150 */\n  \"SISWANT\",      /* 151 */\n  \"TSONGA\",       /* 152 */\n  \"TSWANA\",       /* 153 */\n  \"VOLAPUK\",      /* 154 */\n  \"ZHUANG\",       /* 155 */\n  \"KHASI\",        /* 156 */\n  \"SCOTS\",        /* 157 */\n  \"GANDA\",        /* 158 */\n  \"MANX\",         /* 159 */\n  \"MONTENEGRIN\",  /* 160 */\n  // Add new language declared names just before here\n};\n\nCOMPILE_ASSERT(arraysize(kExtLangDeclaredName) == NUM_LANGUAGES,\n       kExtLangDeclaredName_has_incorrect_length);\n\n\n// Language codes above NUM_LANGUAGES\n// I made all these up, except Klingon from ISO-639-2 (dsites)\n// NOTE: zza is a standard name\nstatic const char* const kExtLanguageCode[] = {\n  // \"X_BORK_BORK_BORK\", \"X_PIG_LATIN\", \"X_HACKER\", \"X_KLINGON\", \"X_ELMER_FUDD\",\n  // All Latin script\n  \"zzb\", \"zzp\", \"zzh\", \"tlh\", \"zze\",\n\n  // Pseudo-languages for Unicode scripts that express a single language\n  \"xx-Ogam\", \"xx-Runr\", \"xx-Yiii\", \"xx-Ital\", \"xx-Goth\",\n  \"xx-Dsrt\", \"xx-Hano\", \"xx-Buhd\", \"xx-Tagb\", \"xx-Tale\",\n  \"xx-Linb\", \"xx-Ugar\", \"xx-Shaw\", \"xx-Osma\", \"xx-Cprt\",\n  \"xx-Bugi\", \"xx-Copt\", \"xx-Talu\", \"xx-Glag\", \"xx-Tfng\",\n  \"xx-Sylo\", \"xx-Xpeo\", \"xx-Khar\", \"xx-Bali\", \"xx-Xsux\",\n  \"xx-Phnx\", \"xx-Phag\", \"xx-Nkoo\",\n\n  // Unicode 5.1\n  \"xx-Sund\", \"xx-Lepc\", \"xx-Olck\", \"xx-Vaii\", \"xx-Saur\",\n  \"xx-Kali\", \"xx-Rjng\", \"xx-Lyci\", \"xx-Cari\", \"xx-Lydi\",\n  \"xx-Cham\",\n};\n\n\n// Given the Language, returns its string name used as the output by\n// the lang/enc identifier, e.g. \"Korean\"\n// \"invalid_language\" if the input is invalid.\n// TG_UNKNOWN_LANGUAGE is used as a placeholder for the \"ignore me\" language,\n// used to subtract out HTML, link farms, DNA strings, and alittle English porn\nconst char* ExtLanguageName(const Language lang) {\n  if (lang < 0) {\n    // No-text-at-all result from a Tote\n    return \"\";\n  }\n  // CompactLanguageDetect extension\n  if (lang == TG_UNKNOWN_LANGUAGE) {\n    return \"Ignore\";\n  }\n  if ((0 <= lang) && (lang < NUM_LANGUAGES)) {\n    return LanguageName(lang);\n  }\n  if ((EXT_LANGUAGE_BASE <= lang) && (lang < EXT_NUM_LANGUAGES)) {\n    return kExtLanguageName[lang - EXT_LANGUAGE_BASE];\n  }\n  return invalid_language_name();\n}\n\n\n// Given the Language, returns its Language enum spelling, for use by\n// programs that create C declarations, e.g. \"KOREAN\"\n// \"UNKNOWN_LANGUAGE\" if the input is invalid.\nconst char* ExtLanguageDeclaredName(const Language lang) {\n  if ((0 <= lang) && (lang < NUM_LANGUAGES)) {\n    return kExtLangDeclaredName[lang];\n  }\n  if ((EXT_LANGUAGE_BASE <= lang) && (lang < EXT_NUM_LANGUAGES)) {\n    return kExtLanguageName[lang - EXT_LANGUAGE_BASE];\n  }\n  return \"UNKNOWN_LANGUAGE\";\n}\n\n// Given the Language, return the language code, e.g. \"ko\"\nconst char* ExtLanguageCode(const Language lang) {\n  // Hack for ignore/porn pseudo-language\n  if (lang == TG_UNKNOWN_LANGUAGE) {\n    return \"xxx\";\n  }\n  if ((0 <= lang) && (lang < NUM_LANGUAGES)) {\n    return LanguageCode(lang);\n  }\n  if ((EXT_LANGUAGE_BASE <= lang) && (lang < EXT_NUM_LANGUAGES)) {\n    return kExtLanguageCode[lang - EXT_LANGUAGE_BASE];\n  }\n  return \"??\";\n}\n\n\n// Convert \"en-Latn-GB\" to ENGLISH\n// Normalize to PORTUGUESE, not PORTUGUESE_B nor PORTUGUESE_P\n// Consider for later: NORWEGIAN, NORWEGIAN_N\n// Consider for later: SCOTS, SCOTS_GAELIC\n// Consider for later: SERBO_CROATIAN, SERBIAN, CROATIAN, BOSNIAN\n//\nLanguage GetLanguageFromNumberOrName(const char* src) {\n  if (strspn(src, \"0123456789\") == strlen(src)) {\n    // All digits\n    return static_cast<Language>(strto32(src, NULL, 10));\n  }\n\n  Language retlang = UNKNOWN_LANGUAGE;\n  size_t len = strlen(src);\n\n  if (true /*FLAGS_mergepairs*/) {\n    // Merge sets of langauges pt-xx en-xx fr-xx, NOT bs/hr/sr\n    if (memcmp(src, \"pt-\", 3) == 0) {return PORTUGUESE;}\n    if (memcmp(src, \"en-\", 3) == 0) {return ENGLISH;}\n    if (memcmp(src, \"fr-\", 3) == 0) {return FRENCH;}\n    // Use NormalizeLanguage instead\n    if (memcmp(src, \"bs-\", 3) == 0) {return CROATIAN;}\n    if (memcmp(src, \"hr-\", 3) == 0) {return CROATIAN;}\n    if (memcmp(src, \"sr-Latn\", 7) == 0) {return CROATIAN;}\n    if (memcmp(src, \"sh-Latn\", 7) == 0) {return CROATIAN;}\n    if (memcmp(src, \"sr-Cyrl\", 7) == 0) {return SERBIAN;}\n    if (memcmp(src, \"sh-Cyrl\", 7) == 0) {return SERBIAN;}\n  }\n\n  // Extensions\n  if (len >= 3) {\n    // Standin for ignore/porn \"language\"\n    if (memcmp(src, \"xxx\", 3) == 0) {return TG_UNKNOWN_LANGUAGE;}\n\n    if (memcmp(src, \"zzb\", 3) == 0) {return X_BORK_BORK_BORK;}\n    if (memcmp(src, \"zzp\", 3) == 0) {return X_PIG_LATIN;}\n    if (memcmp(src, \"zzh\", 3) == 0) {return X_HACKER;}\n    if (memcmp(src, \"tlh\", 3) == 0) {return X_KLINGON;}\n    if (memcmp(src, \"zze\", 3) == 0) {return X_ELMER_FUDD;}\n  }\n\n  // We have a name like en-Latn-GB or pt-BR\n  // First, get rid of some special cases\n  if (len <= 3) {\n    LanguageFromCode(src, &retlang);\n  } else if (len == 7) {\n    // More Extensions\n    if (memcmp(src, \"xx-\", 3) == 0) {\n      if (memcmp(src, \"xx-Ogam\", 7) == 0) {return X_OGHAM;}\n      if (memcmp(src, \"xx-Runr\", 7) == 0) {return X_RUNIC;}\n      if (memcmp(src, \"xx-Yiii\", 7) == 0) {return X_YI;}\n      if (memcmp(src, \"xx-Ital\", 7) == 0) {return X_OLD_ITALIC;}\n      if (memcmp(src, \"xx-Goth\", 7) == 0) {return X_GOTHIC;}\n      if (memcmp(src, \"xx-Dsrt\", 7) == 0) {return X_DESERET;}\n      if (memcmp(src, \"xx-Hano\", 7) == 0) {return X_HANUNOO;}\n      if (memcmp(src, \"xx-Buhd\", 7) == 0) {return X_BUHID;}\n      if (memcmp(src, \"xx-Tagb\", 7) == 0) {return X_TAGBANWA;}\n      if (memcmp(src, \"xx-Tale\", 7) == 0) {return X_TAI_LE;}\n      if (memcmp(src, \"xx-Linb\", 7) == 0) {return X_LINEAR_B;}\n      if (memcmp(src, \"xx-Ugar\", 7) == 0) {return X_UGARITIC;}\n      if (memcmp(src, \"xx-Shaw\", 7) == 0) {return X_SHAVIAN;}\n      if (memcmp(src, \"xx-Osma\", 7) == 0) {return X_OSMANYA;}\n      if (memcmp(src, \"xx-Cprt\", 7) == 0) {return X_CYPRIOT;}\n      if (memcmp(src, \"xx-Bugi\", 7) == 0) {return X_BUGINESE;}\n      if (memcmp(src, \"xx-Copt\", 7) == 0) {return X_COPTIC;}\n      if (memcmp(src, \"xx-Talu\", 7) == 0) {return X_NEW_TAI_LUE;}\n      if (memcmp(src, \"xx-Glag\", 7) == 0) {return X_GLAGOLITIC;}\n      if (memcmp(src, \"xx-Tfng\", 7) == 0) {return X_TIFINAGH;}\n      if (memcmp(src, \"xx-Sylo\", 7) == 0) {return X_SYLOTI_NAGRI;}\n      if (memcmp(src, \"xx-Xpeo\", 7) == 0) {return X_OLD_PERSIAN;}\n      if (memcmp(src, \"xx-Khar\", 7) == 0) {return X_KHAROSHTHI;}\n      if (memcmp(src, \"xx-Bali\", 7) == 0) {return X_BALINESE;}\n      if (memcmp(src, \"xx-Xsux\", 7) == 0) {return X_CUNEIFORM;}\n      if (memcmp(src, \"xx-Phnx\", 7) == 0) {return X_PHOENICIAN;}\n      if (memcmp(src, \"xx-Phag\", 7) == 0) {return X_PHAGS_PA;}\n      if (memcmp(src, \"xx-Nkoo\", 7) == 0) {return X_NKO;}\n\n      // Unicode 5.1\n      if (memcmp(src, \"xx-Sund\", 7) == 0) {return X_SUDANESE;}\n      if (memcmp(src, \"xx-Lepc\", 7) == 0) {return X_LEPCHA;}\n      if (memcmp(src, \"xx-Olck\", 7) == 0) {return X_OL_CHIKI;}\n      if (memcmp(src, \"xx-Vaii\", 7) == 0) {return X_VAI;}\n      if (memcmp(src, \"xx-Saur\", 7) == 0) {return X_SAURASHTRA;}\n      if (memcmp(src, \"xx-Kali\", 7) == 0) {return X_KAYAH_LI;}\n      if (memcmp(src, \"xx-Rjng\", 7) == 0) {return X_REJANG;}\n      if (memcmp(src, \"xx-Lyci\", 7) == 0) {return X_LYCIAN;}\n      if (memcmp(src, \"xx-Cari\", 7) == 0) {return X_CARIAN;}\n      if (memcmp(src, \"xx-Lydi\", 7) == 0) {return X_LYDIAN;}\n      if (memcmp(src, \"xx-Cham\", 7) == 0) {return X_CHAM;}\n    }\n  }\n  // Some other weird ones\n  // Could be Latn or Limb; all our current training data is Latn\n  if (strcmp(src, \"sit-NP\") == 0) {return LIMBU;}\n  if (strcmp(src, \"un-Latn\") == 0) {return UNKNOWN_LANGUAGE;}\n\n  // Multi-country langauges\n  if (memcmp(src, \"zh\", 2) == 0) {\n    if (memcmp(&src[len - 2], \"TW\", 2) == 0) {return CHINESE_T;}\n    if (memcmp(&src[len - 2], \"HK\", 2) == 0) {return CHINESE_T;}\n    return CHINESE;\n  }\n  if (memcmp(src, \"pt\", 2) == 0) {\n    if (memcmp(&src[len - 2], \"BR\", 2) == 0) {return PORTUGUESE;}\n    return PORTUGUESE;\n  }\n  if (memcmp(src, \"fr\", 2) == 0) {\n    if (memcmp(&src[len -2], \"CA\", 2) == 0) {return FRENCH;}\n    return FRENCH;\n  }\n\n  // None of the special cases matched\n  if (src[2] == '-') {\n    char temp[4];\n    memcpy(temp, src, 4);\n    temp[2] = '\\0';\n    LanguageFromCode(temp, &retlang);\n  }\n  if (src[3] == '-') {\n    char temp[4];\n    memcpy(temp, src, 4);\n    temp[3] = '\\0';\n    LanguageFromCode(temp, &retlang);\n  }\n  if (retlang != UNKNOWN_LANGUAGE) {\n    return retlang;\n  }\n\n  return retlang;\n}\n\ntypedef struct {\n  const char* name;\n  UnicodeLScript lscript;\n} NameScriptPair;\n\n// In alphabetic order for binary search\nstatic const NameScriptPair kNameScriptPair[] = {\n  // Unicode 5.1 additional scripts\n  {\"Arab\", ULScript_Arabic},\n  {\"Armn\", ULScript_Armenian},\n  {\"Bali\", ULScript_Balinese},\n  {\"Beng\", ULScript_Bengali},\n  {\"Bugi\", ULScript_Buginese},\n  {\"Buhd\", ULScript_Buhid},\n  {\"Cans\", ULScript_Canadian_Aboriginal},\n  {\"Cari\", ULScript_Carian},      // Unicode 5.1\n  {\"Cham\", ULScript_Cham},        // Unicode 5.1\n  {\"Cher\", ULScript_Cherokee},\n  {\"Copt\", ULScript_Coptic},\n  {\"Cprt\", ULScript_Cypriot},\n  {\"Cyrl\", ULScript_Cyrillic},\n  {\"Deva\", ULScript_Devanagari},\n  {\"Dsrt\", ULScript_Deseret},\n  {\"Ethi\", ULScript_Ethiopic},\n  {\"Geor\", ULScript_Georgian},\n  {\"Glag\", ULScript_Glagolitic},\n  {\"Goth\", ULScript_Gothic},\n  {\"Grek\", ULScript_Greek},\n  {\"Gujr\", ULScript_Gujarati},\n  {\"Guru\", ULScript_Gurmukhi},\n  {\"Hani\", ULScript_HanCJK},\n  {\"Hano\", ULScript_Hanunoo},\n  {\"Hebr\", ULScript_Hebrew},\n  {\"Ital\", ULScript_Old_Italic},\n  {\"Kali\", ULScript_Kayah_Li},    // Unicode 5.1\n  {\"Khar\", ULScript_Kharoshthi},\n  {\"Khmr\", ULScript_Khmer},\n  {\"Knda\", ULScript_Kannada},\n  {\"Laoo\", ULScript_Lao},\n  {\"Latn\", ULScript_Latin},\n  {\"Lepc\", ULScript_Lepcha},      // Unicode 5.1\n  {\"Limb\", ULScript_Limbu},\n  {\"Linb\", ULScript_Linear_B},\n  {\"Lyci\", ULScript_Lycian},      // Unicode 5.1\n  {\"Lydi\", ULScript_Lydian},      // Unicode 5.1\n  {\"Mlym\", ULScript_Malayalam},\n  {\"Mong\", ULScript_Mongolian},\n  {\"Mymr\", ULScript_Myanmar},\n  {\"Nkoo\", ULScript_Nko},\n  {\"Ogam\", ULScript_Ogham},\n  {\"Olck\", ULScript_Ol_Chiki},    // Unicode 5.1\n  {\"Orya\", ULScript_Oriya},\n  {\"Osma\", ULScript_Osmanya},\n  {\"Phag\", ULScript_Phags_Pa},\n  {\"Phnx\", ULScript_Phoenician},\n  {\"Rjng\", ULScript_Rejang},      // Unicode 5.1\n  {\"Runr\", ULScript_Runic},\n  {\"Saur\", ULScript_Saurashtra},  // Unicode 5.1\n  {\"Shaw\", ULScript_Shavian},\n  {\"Sinh\", ULScript_Sinhala},\n  {\"Sund\", ULScript_Sundanese},   // Unicode 5.1\n  {\"Sylo\", ULScript_Syloti_Nagri},\n  {\"Syrc\", ULScript_Syriac},\n  {\"Tagb\", ULScript_Tagbanwa},\n  {\"Tale\", ULScript_Tai_Le},\n  {\"Talu\", ULScript_New_Tai_Lue},\n  {\"Taml\", ULScript_Tamil},\n  {\"Telu\", ULScript_Telugu},\n  {\"Tfng\", ULScript_Tifinagh},\n  {\"Tglg\", ULScript_Tagalog},\n  {\"Thaa\", ULScript_Thaana},\n  {\"Thai\", ULScript_Thai},\n  {\"Tibt\", ULScript_Tibetan},\n  {\"Ugar\", ULScript_Ugaritic},\n  {\"Vaii\", ULScript_Vai},         // Unicode 5.1 // NOTE: apparently 'Vai '\n  {\"Xpeo\", ULScript_Old_Persian},\n  {\"Xsux\", ULScript_Cuneiform},\n  {\"Yiii\", ULScript_Yi},\n  {\"Zyyy\", ULScript_Common},\n  {\"Zzzz\", ULScript_Inherited},\n};\n\n// Convert \"en-Latn-GB\" to ULScript_Latin\nUnicodeLScript GetLScriptFromNumberOrName(const char* src) {\n  if (strspn(src, \"0123456789\") == strlen(src)) {\n    // All digits\n    return static_cast<UnicodeLScript>(strto32(src, NULL, 10));\n  }\n\n  if (strcmp(src, \"zh-TW\") == 0) {return ULScript_HanCJK;}\n  if (strcmp(src, \"zh-CN\") == 0) {return ULScript_HanCJK;}\n  if (strcmp(src, \"pt-BR\") == 0) {return ULScript_Latin;}\n  if (strcmp(src, \"pt-PT\") == 0) {return ULScript_Latin;}\n  // Could be Latn or Limb; all our current training data is Latn\n  if (strcmp(src, \"sit-NP\") == 0) {return ULScript_Latin;}\n\n  // Isolate just the script field\n  char temp[5];\n  const char* src2 = strchr(src, '-');\n  if (src2 == NULL) {return ULScript_Latin;}\n  src2 += 1;      // over the -\n  memcpy(temp, src2, 4);\n  temp[4] = '\\0';\n\n  int lo = 0;\n  int hi = ULScript_NUM_SCRIPTS;\n  while (lo < hi) {\n    int mid = (lo + hi) >> 1;\n    if (strcmp(temp, kNameScriptPair[mid].name) < 0) {\n      hi = mid;\n    } else if (strcmp(temp, kNameScriptPair[mid].name) > 0) {\n      lo = mid + 1;\n    } else {\n      return kNameScriptPair[mid].lscript;\n    }\n  }\n  return ULScript_Latin;\n}\n\n\n// Merge together some languages, such as bo/hr/sr\n// Croatian Latin and Serbian Cyrillic now.\nLanguage NormalizeLanguage(Language lang) {\n  if (lang == BOSNIAN) {return CROATIAN;}\n  if (lang == SERBO_CROATIAN) {return SERBIAN;}\n\n  if (lang == PORTUGUESE_P) {return PORTUGUESE;}\n  if (lang == PORTUGUESE_B) {return PORTUGUESE;}\n\n  return lang;\n}\n\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/ext_lang_enc.h",
    "content": "// Copyright (c) 2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n//\n// This file extends lang_enc.h with additional languages and extended routines.\n// It is current with Unicode 5.1 (March 2008)\n//\n\n#ifndef ENCODINGS_COMPACT_LANG_DET_EXT_LANG_ENC_H__\n#define ENCODINGS_COMPACT_LANG_DET_EXT_LANG_ENC_H__\n\n#include \"languages/public/languages.h\"\n#include \"encodings/compact_lang_det/letterscript_enum.h\"\n\n\n// Leave a small gap after the base languages, so adding one or two is easy.\n// Just reduce the gap here (currently 5 entries)\n\n// Montengrin added, so reducing this from 5 to 4. dsites 2008.10.06\n#define EXT_LANGUAGE_BASE (NUM_LANGUAGES + 4)\n\n// Google UI languages\n#define X_BORK_BORK_BORK (Language)(EXT_LANGUAGE_BASE+0)\n#define X_PIG_LATIN (Language)(EXT_LANGUAGE_BASE+1)\n#define X_HACKER (Language)(EXT_LANGUAGE_BASE+2)\n#define X_KLINGON (Language)(EXT_LANGUAGE_BASE+3)\n#define X_ELMER_FUDD (Language)(EXT_LANGUAGE_BASE+4)\n\n// Pseudo-languages for Unicode scripts that express a single language\n#define X_OGHAM (Language)(EXT_LANGUAGE_BASE+5)\n#define X_RUNIC (Language)(EXT_LANGUAGE_BASE+6)\n#define X_YI (Language)(EXT_LANGUAGE_BASE+7)\n#define X_OLD_ITALIC (Language)(EXT_LANGUAGE_BASE+8)\n#define X_GOTHIC (Language)(EXT_LANGUAGE_BASE+9)\n#define X_DESERET (Language)(EXT_LANGUAGE_BASE+10)\n#define X_HANUNOO (Language)(EXT_LANGUAGE_BASE+11)\n#define X_BUHID (Language)(EXT_LANGUAGE_BASE+12)\n#define X_TAGBANWA (Language)(EXT_LANGUAGE_BASE+13)\n#define X_TAI_LE (Language)(EXT_LANGUAGE_BASE+14)\n#define X_LINEAR_B (Language)(EXT_LANGUAGE_BASE+15)\n#define X_UGARITIC (Language)(EXT_LANGUAGE_BASE+16)\n#define X_SHAVIAN (Language)(EXT_LANGUAGE_BASE+17)\n#define X_OSMANYA (Language)(EXT_LANGUAGE_BASE+18)\n#define X_CYPRIOT (Language)(EXT_LANGUAGE_BASE+19)\n#define X_BUGINESE (Language)(EXT_LANGUAGE_BASE+20)\n#define X_COPTIC (Language)(EXT_LANGUAGE_BASE+21)\n#define X_NEW_TAI_LUE (Language)(EXT_LANGUAGE_BASE+22)\n#define X_GLAGOLITIC (Language)(EXT_LANGUAGE_BASE+23)\n#define X_TIFINAGH (Language)(EXT_LANGUAGE_BASE+24)\n#define X_SYLOTI_NAGRI (Language)(EXT_LANGUAGE_BASE+25)\n#define X_OLD_PERSIAN (Language)(EXT_LANGUAGE_BASE+26)\n#define X_KHAROSHTHI (Language)(EXT_LANGUAGE_BASE+27)\n#define X_BALINESE (Language)(EXT_LANGUAGE_BASE+28)\n#define X_CUNEIFORM (Language)(EXT_LANGUAGE_BASE+29)\n#define X_PHOENICIAN (Language)(EXT_LANGUAGE_BASE+30)\n#define X_PHAGS_PA (Language)(EXT_LANGUAGE_BASE+31)\n#define X_NKO (Language)(EXT_LANGUAGE_BASE+32)\n\n// Unicode 5.1\n#define X_SUDANESE (Language)(EXT_LANGUAGE_BASE+33)\n#define X_LEPCHA (Language)(EXT_LANGUAGE_BASE+34)\n#define X_OL_CHIKI (Language)(EXT_LANGUAGE_BASE+35)\n#define X_VAI (Language)(EXT_LANGUAGE_BASE+36)\n#define X_SAURASHTRA (Language)(EXT_LANGUAGE_BASE+37)\n#define X_KAYAH_LI (Language)(EXT_LANGUAGE_BASE+38)\n#define X_REJANG (Language)(EXT_LANGUAGE_BASE+39)\n#define X_LYCIAN (Language)(EXT_LANGUAGE_BASE+40)\n#define X_CARIAN (Language)(EXT_LANGUAGE_BASE+41)\n#define X_LYDIAN (Language)(EXT_LANGUAGE_BASE+42)\n#define X_CHAM (Language)(EXT_LANGUAGE_BASE+43)\n\n#define EXT_NUM_LANGUAGES (Language)(EXT_LANGUAGE_BASE+44)\n\n\n\n// ExtLanguageName\n// ------------\n// Given the Language, returns its string name used as the output by\n// the lang/enc identifier, e.g. \"Korean\"\n// \"invalid_language\" if the input is invalid.\nextern const char* ExtLanguageName(const Language lang);\n\n// ExtLanguageDeclaredName\n// ------------\n// Given the Language, returns its Language enum spelling, for use by\n// programs that create C declarations, e.g. \"KOREAN\"\n// \"UNKNOWN_LANGUAGE\" if the input is invalid.\nextern const char* ExtLanguageDeclaredName(const Language lang);\n\n// ExtLanguageCode\n// ------------\n// Given the Language, return the language code, e.g. \"ko\"\n// This is determined by\n// the following (in order of preference):\n// - ISO-639-1 two-letter language code\n//   (all except those mentioned below)\n// - ISO-639-2 three-letter bibliographic language code\n//   (Tibetan, Dhivehi, Cherokee, Syriac)\n// - Google-specific language code\n//   (ChineseT (\"zh-TW\"), Teragram Unknown, Unknown,\n//   Portuguese-Portugal, Portuguese-Brazil, Limbu)\nextern const char * ExtLanguageCode(const Language lang);\n\n\n// Convert \"en-Latn-GB\" to ENGLISH\n// Normalize to PORTUGUESE, not PORTUGUESE_B nor PORTUGUESE_P\n// Consider for later: NORWEGIAN, NORWEGIAN_N\n// Consider for later: SCOTS, SCOTS_GAELIC\n// Consider for later: SERBO_CROATIAN, SERBIAN, CROATIAN, BOSNIAN\n//\nLanguage GetLanguageFromNumberOrName(const char* src);\n\n// Convert \"en-Latn-GB\" to ULScript_Latin\nUnicodeLScript GetLScriptFromNumberOrName(const char* src);\n\n// Merge together some languages, such as bo/hr/sr\nLanguage NormalizeLanguage(Language lang);\n\n#endif  // ENCODINGS_COMPACT_LANG_DET_EXT_LANG_ENC_H__\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/generated/cld_generated_score_deltaoctachrome_0406.cc",
    "content": "// Copyright (c) 2011 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#include \"encodings/compact_lang_det/ext_lang_enc.h\"\n\n// score_me text [  8] ja not found in tables\n// score_me text [  9] ko not found in tables\n// score_me text [ 16] zh not found in tables\n// score_me text [ 18] el not found in tables\n// score_me text [ 26] un not found in tables\n// score_me text [ 39] la not found in tables\n// score_me text [ 41] ml not found in tables\n// score_me text [ 43] ne not found in tables\n// score_me text [ 44] te not found in tables\n// score_me text [ 46] ta not found in tables\n// score_me text [ 48] jw not found in tables\n// score_me text [ 49] oc not found in tables\n// score_me text [ 51] bh not found in tables\n// score_me text [ 52] gu not found in tables\n// score_me text [ 53] th not found in tables\n// score_me text [ 56] eo not found in tables\n// score_me text [ 58] ia not found in tables\n// score_me text [ 59] kn not found in tables\n// score_me text [ 60] pa not found in tables\n// score_me text [ 61] gd not found in tables\n// score_me text [ 64] mr not found in tables\n// score_me text [ 67] fy not found in tables\n// score_me text [ 69] zhT not found in tables\n// score_me text [ 70] fo not found in tables\n// score_me text [ 71] su not found in tables\n// score_me text [ 72] uz not found in tables\n// score_me text [ 73] am not found in tables\n// score_me text [ 75] ka not found in tables\n// score_me text [ 76] ti not found in tables\n// score_me text [ 78] bs not found in tables\n// score_me text [ 79] si not found in tables\n// score_me text [ 80] nn not found in tables\n// score_me text [ 83] xh not found in tables\n// score_me text [ 84] zu not found in tables\n// score_me text [ 85] gn not found in tables\n// score_me text [ 86] st not found in tables\n// score_me text [ 87] tk not found in tables\n// score_me text [ 88] ky not found in tables\n// score_me text [ 89] br not found in tables\n// score_me text [ 90] tw not found in tables\n// score_me text [ 93] so not found in tables\n// score_me text [ 94] ug not found in tables\n// score_me text [ 95] ku not found in tables\n// score_me text [ 96] mn not found in tables\n// score_me text [ 97] hy not found in tables\n// score_me text [ 98] lo not found in tables\n// score_me text [ 99] sd not found in tables\n// score_me text [100] rm not found in tables\n// score_me text [102] lb not found in tables\n// score_me text [103] my not found in tables\n// score_me text [104] km not found in tables\n// score_me text [105] bo not found in tables\n// score_me text [107] chr not found in tables\n// score_me text [109] sit-NP not found in tables\n// score_me text [110] or not found in tables\n// score_me text [111] as not found in tables\n// score_me text [112] co not found in tables\n// score_me text [113] ie not found in tables\n// score_me text [114] kk not found in tables\n// score_me text [115] ln not found in tables\n// score_me text [116] mo not found in tables\n// score_me text [117] ps not found in tables\n// score_me text [118] qu not found in tables\n// score_me text [119] sn not found in tables\n// score_me text [120] tg not found in tables\n// score_me text [121] tt not found in tables\n// score_me text [122] to not found in tables\n// score_me text [123] yo not found in tables\n// score_me text [128] mi not found in tables\n// score_me text [129] wo not found in tables\n// score_me text [130] ab not found in tables\n// score_me text [131] aa not found in tables\n// score_me text [132] ay not found in tables\n// score_me text [133] ba not found in tables\n// score_me text [134] bi not found in tables\n// score_me text [135] dz not found in tables\n// score_me text [136] fj not found in tables\n// score_me text [137] kl not found in tables\n// score_me text [138] ha not found in tables\n// score_me text [140] ik not found in tables\n// score_me text [141] iu not found in tables\n// score_me text [142] ks not found in tables\n// score_me text [143] rw not found in tables\n// score_me text [144] mg not found in tables\n// score_me text [145] na not found in tables\n// score_me text [146] om not found in tables\n// score_me text [147] rn not found in tables\n// score_me text [148] sm not found in tables\n// score_me text [149] sg not found in tables\n// score_me text [150] sa not found in tables\n// score_me text [151] ss not found in tables\n// score_me text [152] ts not found in tables\n// score_me text [153] tn not found in tables\n// score_me text [154] vo not found in tables\n// score_me text [155] za not found in tables\n// score_me text [156] kha not found in tables\n// score_me text [157] sco not found in tables\n// score_me text [158] lg not found in tables\n// score_me text [159] gv not found in tables\n// score_me text [160] srM not found in tables\n// score_me text [161] ak not found in tables\n// score_me text [162] ig not found in tables\n// score_me text [163] mfe not found in tables\n// score_me text [164] haw not found in tables\n// score_me text [165] nso not found in tables\n// score_me text [166] nr not found in tables\n// score_me text [167] ve not found in tables\n// score_me text [168] ny not found in tables\n// score_me text [169] crs not found in tables\n// score_me text [185] zzb not found in tables\n// score_me text [186] zzp not found in tables\n// score_me text [187] zzh not found in tables\n// score_me text [188] tlh not found in tables\n// score_me text [189] zze not found in tables\n\n// No score_me text for [ 25] xxx\n\n// Average score per 1024 bytes\nextern const short kAvgDeltaOctaScore[244 * 4] = {\n// Latn  Cyrl  Arab  Other script\n  1266,    0,    0,    0,   // [  0] ENGLISH en\n   744,    0,    0,    0,   // [  1] DANISH da\n  1069,    0,    0,    0,   // [  2] DUTCH nl\n  1356,    0,    0,    0,   // [  3] FINNISH fi\n  1013,    0,    0,    0,   // [  4] FRENCH fr\n  1243,    0,    0,    0,   // [  5] GERMAN de\n     0,    0,    0,  729,   // [  6] HEBREW iw\n   914,    0,    0,    0,   // [  7] ITALIAN it\n     0,    0,    0,    0,   // [  8] Japanese ja  ==Zero==\n     0,    0,    0,    0,   // [  9] Korean ko  ==Zero==\n   865,    0,    0,    0,   // [ 10] NORWEGIAN no\n  1300,    0,    0,    0,   // [ 11] POLISH pl\n   764,    0,    0,    0,   // [ 12] PORTUGUESE pt\n     0,  784,    0,    0,   // [ 13] RUSSIAN ru\n   687,    0,    0,    0,   // [ 14] SPANISH es\n   861,    0,    0,    0,   // [ 15] SWEDISH sv\n     0,    0,    0,    0,   // [ 16] Chinese zh  ==Zero==\n  1001,    0,    0,    0,   // [ 17] CZECH cs\n     0,    0,    0,    0,   // [ 18] GREEK el  ==Zero==\n  1233,    0,    0,    0,   // [ 19] ICELANDIC is\n  1222,    0,    0,    0,   // [ 20] LATVIAN lv\n  1246,    0,    0,    0,   // [ 21] LITHUANIAN lt\n   974,    0,    0,    0,   // [ 22] ROMANIAN ro\n  1345,    0,    0,    0,   // [ 23] HUNGARIAN hu\n  1187,    0,    0,    0,   // [ 24] ESTONIAN et\n     0,    0,    0,    0,   // [ 25] Ignore xxx  ==Zero==\n     0,    0,    0,    0,   // [ 26] Unknown un  ==Zero==\n     0,  697,    0,    0,   // [ 27] BULGARIAN bg\n   794,    0,    0,    0,   // [ 28] CROATIAN hr\n  1079,  696,    0,    0,   // [ 29] SERBIAN sr\n  1530,    0,    0,    0,   // [ 30] IRISH ga\n   480,    0,    0,    0,   // [ 31] GALICIAN gl\n\n  1586,    0,    0,    0,   // [ 32] TAGALOG tl\n  1414,    0,    0,    0,   // [ 33] TURKISH tr\n     0,  691,    0,    0,   // [ 34] UKRAINIAN uk\n     0,    0,    0,  602,   // [ 35] HINDI hi\n     0,  703,    0,    0,   // [ 36] MACEDONIAN mk\n     0,    0,    0,  567,   // [ 37] BENGALI bn\n  1354,    0,    0,    0,   // [ 38] INDONESIAN id\n     0,    0,    0,    0,   // [ 39] LATIN la  ==Zero==\n  1445,    0,    0,    0,   // [ 40] MALAY ms\n     0,    0,    0,    0,   // [ 41] MALAYALAM ml  ==Zero==\n  1581,    0,    0,    0,   // [ 42] WELSH cy\n     0,    0,    0,    0,   // [ 43] NEPALI ne  ==Zero==\n     0,    0,    0,    0,   // [ 44] TELUGU te  ==Zero==\n  1163,    0,    0,    0,   // [ 45] ALBANIAN sq\n     0,    0,    0,    0,   // [ 46] TAMIL ta  ==Zero==\n     0,  846,    0,    0,   // [ 47] BELARUSIAN be\n     0,    0,    0,    0,   // [ 48] JAVANESE jw  ==Zero==\n     0,    0,    0,    0,   // [ 49] OCCITAN oc  ==Zero==\n     0,    0,  966,    0,   // [ 50] URDU ur\n     0,    0,    0,    0,   // [ 51] BIHARI bh  ==Zero==\n     0,    0,    0,    0,   // [ 52] GUJARATI gu  ==Zero==\n     0,    0,    0,    0,   // [ 53] THAI th  ==Zero==\n     0,    0,  737,    0,   // [ 54] ARABIC ar\n   682,    0,    0,    0,   // [ 55] CATALAN ca\n     0,    0,    0,    0,   // [ 56] ESPERANTO eo  ==Zero==\n  1474,    0,    0,    0,   // [ 57] BASQUE eu\n     0,    0,    0,    0,   // [ 58] INTERLINGUA ia  ==Zero==\n     0,    0,    0,    0,   // [ 59] KANNADA kn  ==Zero==\n     0,    0,    0,    0,   // [ 60] PUNJABI pa  ==Zero==\n     0,    0,    0,    0,   // [ 61] SCOTS_GAELIC gd  ==Zero==\n  1472,    0,    0,    0,   // [ 62] SWAHILI sw\n   917,    0,    0,    0,   // [ 63] SLOVENIAN sl\n\n     0,    0,    0,    0,   // [ 64] MARATHI mr  ==Zero==\n  1043,    0,    0,    0,   // [ 65] MALTESE mt\n  1102,    0,    0,    0,   // [ 66] VIETNAMESE vi\n     0,    0,    0,    0,   // [ 67] FRISIAN fy  ==Zero==\n  1039,    0,    0,    0,   // [ 68] SLOVAK sk\n     0,    0,    0,    0,   // [ 69] ChineseT zhT  ==Zero==\n     0,    0,    0,    0,   // [ 70] FAROESE fo  ==Zero==\n     0,    0,    0,    0,   // [ 71] SUNDANESE su  ==Zero==\n     0,    0,    0,    0,   // [ 72] UZBEK uz  ==Zero==\n     0,    0,    0,    0,   // [ 73] AMHARIC am  ==Zero==\n  1384,    0,    0,    0,   // [ 74] AZERBAIJANI az\n     0,    0,    0,    0,   // [ 75] GEORGIAN ka  ==Zero==\n     0,    0,    0,    0,   // [ 76] TIGRINYA ti  ==Zero==\n     0,    0,  861,    0,   // [ 77] PERSIAN fa\n     0,    0,    0,    0,   // [ 78] BOSNIAN bs  ==Zero==\n     0,    0,    0,    0,   // [ 79] SINHALESE si  ==Zero==\n     0,    0,    0,    0,   // [ 80] NORWEGIAN_N nn  ==Zero==\n     0,    0,    0,    0,   // [ 81] PORTUGUESE_P pt-PT  ==Zero==\n     0,    0,    0,    0,   // [ 82] PORTUGUESE_B pt-BR  ==Zero==\n     0,    0,    0,    0,   // [ 83] XHOSA xh  ==Zero==\n     0,    0,    0,    0,   // [ 84] ZULU zu  ==Zero==\n     0,    0,    0,    0,   // [ 85] GUARANI gn  ==Zero==\n     0,    0,    0,    0,   // [ 86] SESOTHO st  ==Zero==\n     0,    0,    0,    0,   // [ 87] TURKMEN tk  ==Zero==\n     0,    0,    0,    0,   // [ 88] KYRGYZ ky  ==Zero==\n     0,    0,    0,    0,   // [ 89] BRETON br  ==Zero==\n     0,    0,    0,    0,   // [ 90] TWI tw  ==Zero==\n     0,    0,    0,  814,   // [ 91] YIDDISH yi\n     0,    0,    0,    0,   // [ 92] SERBO_CROATIAN sh  ==Zero==\n     0,    0,    0,    0,   // [ 93] SOMALI so  ==Zero==\n     0,    0,    0,    0,   // [ 94] UIGHUR ug  ==Zero==\n     0,    0,    0,    0,   // [ 95] KURDISH ku  ==Zero==\n\n     0,    0,    0,    0,   // [ 96] MONGOLIAN mn  ==Zero==\n     0,    0,    0,    0,   // [ 97] ARMENIAN hy  ==Zero==\n     0,    0,    0,    0,   // [ 98] LAOTHIAN lo  ==Zero==\n     0,    0,    0,    0,   // [ 99] SINDHI sd  ==Zero==\n     0,    0,    0,    0,   // [100] RHAETO_ROMANCE rm  ==Zero==\n   908,    0,    0,    0,   // [101] AFRIKAANS af\n     0,    0,    0,    0,   // [102] LUXEMBOURGISH lb  ==Zero==\n     0,    0,    0,    0,   // [103] BURMESE my  ==Zero==\n     0,    0,    0,    0,   // [104] KHMER km  ==Zero==\n     0,    0,    0,    0,   // [105] TIBETAN bo  ==Zero==\n     0,    0,    0,    0,   // [106] DHIVEHI dv  ==Zero==\n     0,    0,    0,    0,   // [107] CHEROKEE chr  ==Zero==\n     0,    0,    0,    0,   // [108] SYRIAC syr  ==Zero==\n     0,    0,    0,    0,   // [109] LIMBU sit-NP  ==Zero==\n     0,    0,    0,    0,   // [110] ORIYA or  ==Zero==\n     0,    0,    0,    0,   // [111] ASSAMESE as  ==Zero==\n     0,    0,    0,    0,   // [112] CORSICAN co  ==Zero==\n     0,    0,    0,    0,   // [113] INTERLINGUE ie  ==Zero==\n     0,    0,    0,    0,   // [114] KAZAKH kk  ==Zero==\n     0,    0,    0,    0,   // [115] LINGALA ln  ==Zero==\n     0,    0,    0,    0,   // [116] MOLDAVIAN mo  ==Zero==\n     0,    0,    0,    0,   // [117] PASHTO ps  ==Zero==\n     0,    0,    0,    0,   // [118] QUECHUA qu  ==Zero==\n     0,    0,    0,    0,   // [119] SHONA sn  ==Zero==\n     0,    0,    0,    0,   // [120] TAJIK tg  ==Zero==\n     0,    0,    0,    0,   // [121] TATAR tt  ==Zero==\n     0,    0,    0,    0,   // [122] TONGA to  ==Zero==\n     0,    0,    0,    0,   // [123] YORUBA yo  ==Zero==\n     0,    0,    0,    0,   // [124] CREOLES_AND_PIDGINS_ENGLISH_BASED cpe  ==Zero==\n     0,    0,    0,    0,   // [125] CREOLES_AND_PIDGINS_FRENCH_BASED cpf  ==Zero==\n     0,    0,    0,    0,   // [126] CREOLES_AND_PIDGINS_PORTUGUESE_BASED cpp  ==Zero==\n     0,    0,    0,    0,   // [127] CREOLES_AND_PIDGINS_OTHER crp  ==Zero==\n\n     0,    0,    0,    0,   // [128] MAORI mi  ==Zero==\n     0,    0,    0,    0,   // [129] WOLOF wo  ==Zero==\n     0,    0,    0,    0,   // [130] ABKHAZIAN ab  ==Zero==\n     0,    0,    0,    0,   // [131] AFAR aa  ==Zero==\n     0,    0,    0,    0,   // [132] AYMARA ay  ==Zero==\n     0,    0,    0,    0,   // [133] BASHKIR ba  ==Zero==\n     0,    0,    0,    0,   // [134] BISLAMA bi  ==Zero==\n     0,    0,    0,    0,   // [135] DZONGKHA dz  ==Zero==\n     0,    0,    0,    0,   // [136] FIJIAN fj  ==Zero==\n     0,    0,    0,    0,   // [137] GREENLANDIC kl  ==Zero==\n     0,    0,    0,    0,   // [138] HAUSA ha  ==Zero==\n  1216,    0,    0,    0,   // [139] HAITIAN_CREOLE ht\n     0,    0,    0,    0,   // [140] INUPIAK ik  ==Zero==\n     0,    0,    0,    0,   // [141] INUKTITUT iu  ==Zero==\n     0,    0,    0,    0,   // [142] KASHMIRI ks  ==Zero==\n     0,    0,    0,    0,   // [143] KINYARWANDA rw  ==Zero==\n     0,    0,    0,    0,   // [144] MALAGASY mg  ==Zero==\n     0,    0,    0,    0,   // [145] NAURU na  ==Zero==\n     0,    0,    0,    0,   // [146] OROMO om  ==Zero==\n     0,    0,    0,    0,   // [147] RUNDI rn  ==Zero==\n     0,    0,    0,    0,   // [148] SAMOAN sm  ==Zero==\n     0,    0,    0,    0,   // [149] SANGO sg  ==Zero==\n     0,    0,    0,    0,   // [150] SANSKRIT sa  ==Zero==\n     0,    0,    0,    0,   // [151] SISWANT ss  ==Zero==\n     0,    0,    0,    0,   // [152] TSONGA ts  ==Zero==\n     0,    0,    0,    0,   // [153] TSWANA tn  ==Zero==\n     0,    0,    0,    0,   // [154] VOLAPUK vo  ==Zero==\n     0,    0,    0,    0,   // [155] ZHUANG za  ==Zero==\n     0,    0,    0,    0,   // [156] KHASI kha  ==Zero==\n     0,    0,    0,    0,   // [157] SCOTS sco  ==Zero==\n     0,    0,    0,    0,   // [158] GANDA lg  ==Zero==\n     0,    0,    0,    0,   // [159] MANX gv  ==Zero==\n\n     0,    0,    0,    0,   // [160] MONTENEGRIN srM  ==Zero==\n     0,    0,    0,    0,   // [161] AKAN ak  ==Zero==\n     0,    0,    0,    0,   // [162] IGBO ig  ==Zero==\n     0,    0,    0,    0,   // [163] MAURITIAN_CREOLE mfe  ==Zero==\n     0,    0,    0,    0,   // [164] HAWAIIAN haw  ==Zero==\n     0,    0,    0,    0,   // [165] PEDI nso  ==Zero==\n     0,    0,    0,    0,   // [166] NDEBELE nr  ==Zero==\n     0,    0,    0,    0,   // [167] VENDA ve  ==Zero==\n     0,    0,    0,    0,   // [168] CHICHEWA ny  ==Zero==\n     0,    0,    0,    0,   // [169] SESELWA crs  ==Zero==\n     0,    0,    0,    0,   // [170] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [171] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [172] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [173] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [174] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [175] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [176] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [177] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [178] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [179] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [180] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [181] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [182] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [183] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [184] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [185] X_BORK_BORK_BORK zzb  ==Zero==\n     0,    0,    0,    0,   // [186] X_PIG_LATIN zzp  ==Zero==\n     0,    0,    0,    0,   // [187] X_HACKER zzh  ==Zero==\n     0,    0,    0,    0,   // [188] X_KLINGON tlh  ==Zero==\n     0,    0,    0,    0,   // [189] X_ELMER_FUDD zze  ==Zero==\n     0,    0,    0,    0,   // [190] X_OGHAM xx-Ogam  ==Zero==\n     0,    0,    0,    0,   // [191] X_RUNIC xx-Runr  ==Zero==\n\n     0,    0,    0,    0,   // [192] X_YI xx-Yiii  ==Zero==\n     0,    0,    0,    0,   // [193] X_OLD_ITALIC xx-Ital  ==Zero==\n     0,    0,    0,    0,   // [194] X_GOTHIC xx-Goth  ==Zero==\n     0,    0,    0,    0,   // [195] X_DESERET xx-Dsrt  ==Zero==\n     0,    0,    0,    0,   // [196] X_HANUNOO xx-Hano  ==Zero==\n     0,    0,    0,    0,   // [197] X_BUHID xx-Buhd  ==Zero==\n     0,    0,    0,    0,   // [198] X_TAGBANWA xx-Tagb  ==Zero==\n     0,    0,    0,    0,   // [199] X_TAI_LE xx-Tale  ==Zero==\n     0,    0,    0,    0,   // [200] X_LINEAR_B xx-Linb  ==Zero==\n     0,    0,    0,    0,   // [201] X_UGARITIC xx-Ugar  ==Zero==\n     0,    0,    0,    0,   // [202] X_SHAVIAN xx-Shaw  ==Zero==\n     0,    0,    0,    0,   // [203] X_OSMANYA xx-Osma  ==Zero==\n     0,    0,    0,    0,   // [204] X_CYPRIOT xx-Cprt  ==Zero==\n     0,    0,    0,    0,   // [205] X_BUGINESE xx-Bugi  ==Zero==\n     0,    0,    0,    0,   // [206] X_COPTIC xx-Copt  ==Zero==\n     0,    0,    0,    0,   // [207] X_NEW_TAI_LUE xx-Talu  ==Zero==\n     0,    0,    0,    0,   // [208] X_GLAGOLITIC xx-Glag  ==Zero==\n     0,    0,    0,    0,   // [209] X_TIFINAGH xx-Tfng  ==Zero==\n     0,    0,    0,    0,   // [210] X_SYLOTI_NAGRI xx-Sylo  ==Zero==\n     0,    0,    0,    0,   // [211] X_OLD_PERSIAN xx-Xpeo  ==Zero==\n     0,    0,    0,    0,   // [212] X_KHAROSHTHI xx-Khar  ==Zero==\n     0,    0,    0,    0,   // [213] X_BALINESE xx-Bali  ==Zero==\n     0,    0,    0,    0,   // [214] X_CUNEIFORM xx-Xsux  ==Zero==\n     0,    0,    0,    0,   // [215] X_PHOENICIAN xx-Phnx  ==Zero==\n     0,    0,    0,    0,   // [216] X_PHAGS_PA xx-Phag  ==Zero==\n     0,    0,    0,    0,   // [217] X_NKO xx-Nkoo  ==Zero==\n     0,    0,    0,    0,   // [218] X_SUDANESE xx-Sund  ==Zero==\n     0,    0,    0,    0,   // [219] X_LEPCHA xx-Lepc  ==Zero==\n     0,    0,    0,    0,   // [220] X_OL_CHIKI xx-Olck  ==Zero==\n     0,    0,    0,    0,   // [221] X_VAI xx-Vaii  ==Zero==\n     0,    0,    0,    0,   // [222] X_SAURASHTRA xx-Saur  ==Zero==\n     0,    0,    0,    0,   // [223] X_KAYAH_LI xx-Kali  ==Zero==\n\n     0,    0,    0,    0,   // [224] X_REJANG xx-Rjng  ==Zero==\n     0,    0,    0,    0,   // [225] X_LYCIAN xx-Lyci  ==Zero==\n     0,    0,    0,    0,   // [226] X_CARIAN xx-Cari  ==Zero==\n     0,    0,    0,    0,   // [227] X_LYDIAN xx-Lydi  ==Zero==\n     0,    0,    0,    0,   // [228] X_CHAM xx-Cham  ==Zero==\n     0,    0,    0,    0,   // [229] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [230] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [231] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [232] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [233] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [234] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [235] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [236] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [237] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [238] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [239] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [240] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [241] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [242] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [243] invalid_language ??  ==Zero==\n  };\n\nCOMPILE_ASSERT(EXT_NUM_LANGUAGES >= 209, k_ext_num_languages_changed);\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/generated/cld_generated_score_quadchrome_0406.cc",
    "content": "// Copyright (c) 2011 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#include \"base/basictypes.h\"\n#include \"encodings/compact_lang_det/ext_lang_enc.h\"\n\n// score_me text [  8] ja not found in tables\n// score_me text [  9] ko not found in tables\n// score_me text [ 16] zh not found in tables\n// score_me text [ 18] el not found in tables\n// score_me text [ 26] un not found in tables\n// score_me text [ 39] la not found in tables\n// score_me text [ 41] ml not found in tables\n// score_me text [ 43] ne not found in tables\n// score_me text [ 44] te not found in tables\n// score_me text [ 46] ta not found in tables\n// score_me text [ 48] jw not found in tables\n// score_me text [ 49] oc not found in tables\n// score_me text [ 51] bh not found in tables\n// score_me text [ 52] gu not found in tables\n// score_me text [ 53] th not found in tables\n// score_me text [ 56] eo not found in tables\n// score_me text [ 58] ia not found in tables\n// score_me text [ 59] kn not found in tables\n// score_me text [ 60] pa not found in tables\n// score_me text [ 61] gd not found in tables\n// score_me text [ 64] mr not found in tables\n// score_me text [ 67] fy not found in tables\n// score_me text [ 69] zhT not found in tables\n// score_me text [ 70] fo not found in tables\n// score_me text [ 71] su not found in tables\n// score_me text [ 72] uz not found in tables\n// score_me text [ 73] am not found in tables\n// score_me text [ 75] ka not found in tables\n// score_me text [ 76] ti not found in tables\n// score_me text [ 78] bs not found in tables\n// score_me text [ 79] si not found in tables\n// score_me text [ 80] nn not found in tables\n// score_me text [ 83] xh not found in tables\n// score_me text [ 84] zu not found in tables\n// score_me text [ 85] gn not found in tables\n// score_me text [ 86] st not found in tables\n// score_me text [ 87] tk not found in tables\n// score_me text [ 88] ky not found in tables\n// score_me text [ 89] br not found in tables\n// score_me text [ 90] tw not found in tables\n// score_me text [ 93] so not found in tables\n// score_me text [ 94] ug not found in tables\n// score_me text [ 95] ku not found in tables\n// score_me text [ 96] mn not found in tables\n// score_me text [ 97] hy not found in tables\n// score_me text [ 98] lo not found in tables\n// score_me text [ 99] sd not found in tables\n// score_me text [100] rm not found in tables\n// score_me text [102] lb not found in tables\n// score_me text [103] my not found in tables\n// score_me text [104] km not found in tables\n// score_me text [105] bo not found in tables\n// score_me text [107] chr not found in tables\n// score_me text [109] sit-NP not found in tables\n// score_me text [110] or not found in tables\n// score_me text [111] as not found in tables\n// score_me text [112] co not found in tables\n// score_me text [113] ie not found in tables\n// score_me text [114] kk not found in tables\n// score_me text [115] ln not found in tables\n// score_me text [116] mo not found in tables\n// score_me text [117] ps not found in tables\n// score_me text [118] qu not found in tables\n// score_me text [119] sn not found in tables\n// score_me text [120] tg not found in tables\n// score_me text [121] tt not found in tables\n// score_me text [122] to not found in tables\n// score_me text [123] yo not found in tables\n// score_me text [128] mi not found in tables\n// score_me text [129] wo not found in tables\n// score_me text [130] ab not found in tables\n// score_me text [131] aa not found in tables\n// score_me text [132] ay not found in tables\n// score_me text [133] ba not found in tables\n// score_me text [134] bi not found in tables\n// score_me text [135] dz not found in tables\n// score_me text [136] fj not found in tables\n// score_me text [137] kl not found in tables\n// score_me text [138] ha not found in tables\n// score_me text [140] ik not found in tables\n// score_me text [141] iu not found in tables\n// score_me text [142] ks not found in tables\n// score_me text [143] rw not found in tables\n// score_me text [144] mg not found in tables\n// score_me text [145] na not found in tables\n// score_me text [146] om not found in tables\n// score_me text [147] rn not found in tables\n// score_me text [148] sm not found in tables\n// score_me text [149] sg not found in tables\n// score_me text [150] sa not found in tables\n// score_me text [151] ss not found in tables\n// score_me text [152] ts not found in tables\n// score_me text [153] tn not found in tables\n// score_me text [154] vo not found in tables\n// score_me text [155] za not found in tables\n// score_me text [156] kha not found in tables\n// score_me text [157] sco not found in tables\n// score_me text [158] lg not found in tables\n// score_me text [159] gv not found in tables\n// score_me text [160] srM not found in tables\n// score_me text [161] ak not found in tables\n// score_me text [162] ig not found in tables\n// score_me text [163] mfe not found in tables\n// score_me text [164] haw not found in tables\n// score_me text [165] nso not found in tables\n// score_me text [166] nr not found in tables\n// score_me text [167] ve not found in tables\n// score_me text [168] ny not found in tables\n// score_me text [169] crs not found in tables\n// score_me text [185] zzb not found in tables\n// score_me text [186] zzp not found in tables\n// score_me text [187] zzh not found in tables\n// score_me text [188] tlh not found in tables\n// score_me text [189] zze not found in tables\n\n// No score_me text for [ 25] xxx\n\n// Average score per 1024 bytes\n// Renamed kAvgQuadScore -> kMeanScore to match older CLD code.\nextern const short kMeanScore[244 * 4] = {\n// Latn  Cyrl  Arab  Other script\n  1234,    0,    0,    0,   // [  0] ENGLISH en\n   721,    0,    0,    0,   // [  1] DANISH da\n  1037,    0,    0,    0,   // [  2] DUTCH nl\n  1337,    0,    0,    0,   // [  3] FINNISH fi\n   973,    0,    0,    0,   // [  4] FRENCH fr\n  1211,    0,    0,    0,   // [  5] GERMAN de\n     0,    0,    0,  727,   // [  6] HEBREW iw\n   866,    0,    0,    0,   // [  7] ITALIAN it\n     0,    0,    0,    0,   // [  8] Japanese ja  ==Zero==\n     0,    0,    0,    0,   // [  9] Korean ko  ==Zero==\n   833,    0,    0,    0,   // [ 10] NORWEGIAN no\n  1280,    0,    0,    0,   // [ 11] POLISH pl\n   718,    0,    0,    0,   // [ 12] PORTUGUESE pt\n     0,  767,    0,    0,   // [ 13] RUSSIAN ru\n   642,    0,    0,    0,   // [ 14] SPANISH es\n   826,    0,    0,    0,   // [ 15] SWEDISH sv\n     0,    0,    0,    0,   // [ 16] Chinese zh  ==Zero==\n   982,    0,    0,    0,   // [ 17] CZECH cs\n     0,    0,    0,    0,   // [ 18] GREEK el  ==Zero==\n  1214,    0,    0,    0,   // [ 19] ICELANDIC is\n  1194,    0,    0,    0,   // [ 20] LATVIAN lv\n  1220,    0,    0,    0,   // [ 21] LITHUANIAN lt\n   951,    0,    0,    0,   // [ 22] ROMANIAN ro\n  1335,    0,    0,    0,   // [ 23] HUNGARIAN hu\n  1145,    0,    0,    0,   // [ 24] ESTONIAN et\n     0,    0,    0,    0,   // [ 25] Ignore xxx  ==Zero==\n     0,    0,    0,    0,   // [ 26] Unknown un  ==Zero==\n     0,  691,    0,    0,   // [ 27] BULGARIAN bg\n   774,    0,    0,    0,   // [ 28] CROATIAN hr\n  1048,  686,    0,    0,   // [ 29] SERBIAN sr\n  1503,    0,    0,    0,   // [ 30] IRISH ga\n   464,    0,    0,    0,   // [ 31] GALICIAN gl\n\n  1570,    0,    0,    0,   // [ 32] TAGALOG tl\n  1390,    0,    0,    0,   // [ 33] TURKISH tr\n     0,  677,    0,    0,   // [ 34] UKRAINIAN uk\n     0,    0,    0,  601,   // [ 35] HINDI hi\n     0,  695,    0,    0,   // [ 36] MACEDONIAN mk\n     0,    0,    0,  563,   // [ 37] BENGALI bn\n  1307,    0,    0,    0,   // [ 38] INDONESIAN id\n     0,    0,    0,    0,   // [ 39] LATIN la  ==Zero==\n  1402,    0,    0,    0,   // [ 40] MALAY ms\n     0,    0,    0,    0,   // [ 41] MALAYALAM ml  ==Zero==\n  1536,    0,    0,    0,   // [ 42] WELSH cy\n     0,    0,    0,    0,   // [ 43] NEPALI ne  ==Zero==\n     0,    0,    0,    0,   // [ 44] TELUGU te  ==Zero==\n  1146,    0,    0,    0,   // [ 45] ALBANIAN sq\n     0,    0,    0,    0,   // [ 46] TAMIL ta  ==Zero==\n     0,  834,    0,    0,   // [ 47] BELARUSIAN be\n     0,    0,    0,    0,   // [ 48] JAVANESE jw  ==Zero==\n     0,    0,    0,    0,   // [ 49] OCCITAN oc  ==Zero==\n     0,    0,  964,    0,   // [ 50] URDU ur\n     0,    0,    0,    0,   // [ 51] BIHARI bh  ==Zero==\n     0,    0,    0,    0,   // [ 52] GUJARATI gu  ==Zero==\n     0,    0,    0,    0,   // [ 53] THAI th  ==Zero==\n     0,    0,  735,    0,   // [ 54] ARABIC ar\n   667,    0,    0,    0,   // [ 55] CATALAN ca\n     0,    0,    0,    0,   // [ 56] ESPERANTO eo  ==Zero==\n  1442,    0,    0,    0,   // [ 57] BASQUE eu\n     0,    0,    0,    0,   // [ 58] INTERLINGUA ia  ==Zero==\n     0,    0,    0,    0,   // [ 59] KANNADA kn  ==Zero==\n     0,    0,    0,    0,   // [ 60] PUNJABI pa  ==Zero==\n     0,    0,    0,    0,   // [ 61] SCOTS_GAELIC gd  ==Zero==\n  1448,    0,    0,    0,   // [ 62] SWAHILI sw\n   907,    0,    0,    0,   // [ 63] SLOVENIAN sl\n\n     0,    0,    0,    0,   // [ 64] MARATHI mr  ==Zero==\n  1027,    0,    0,    0,   // [ 65] MALTESE mt\n  1097,    0,    0,    0,   // [ 66] VIETNAMESE vi\n     0,    0,    0,    0,   // [ 67] FRISIAN fy  ==Zero==\n  1007,    0,    0,    0,   // [ 68] SLOVAK sk\n     0,    0,    0,    0,   // [ 69] ChineseT zhT  ==Zero==\n     0,    0,    0,    0,   // [ 70] FAROESE fo  ==Zero==\n     0,    0,    0,    0,   // [ 71] SUNDANESE su  ==Zero==\n     0,    0,    0,    0,   // [ 72] UZBEK uz  ==Zero==\n     0,    0,    0,    0,   // [ 73] AMHARIC am  ==Zero==\n  1371,    0,    0,    0,   // [ 74] AZERBAIJANI az\n     0,    0,    0,    0,   // [ 75] GEORGIAN ka  ==Zero==\n     0,    0,    0,    0,   // [ 76] TIGRINYA ti  ==Zero==\n     0,    0,  855,    0,   // [ 77] PERSIAN fa\n     0,    0,    0,    0,   // [ 78] BOSNIAN bs  ==Zero==\n     0,    0,    0,    0,   // [ 79] SINHALESE si  ==Zero==\n     0,    0,    0,    0,   // [ 80] NORWEGIAN_N nn  ==Zero==\n     0,    0,    0,    0,   // [ 81] PORTUGUESE_P pt-PT  ==Zero==\n     0,    0,    0,    0,   // [ 82] PORTUGUESE_B pt-BR  ==Zero==\n     0,    0,    0,    0,   // [ 83] XHOSA xh  ==Zero==\n     0,    0,    0,    0,   // [ 84] ZULU zu  ==Zero==\n     0,    0,    0,    0,   // [ 85] GUARANI gn  ==Zero==\n     0,    0,    0,    0,   // [ 86] SESOTHO st  ==Zero==\n     0,    0,    0,    0,   // [ 87] TURKMEN tk  ==Zero==\n     0,    0,    0,    0,   // [ 88] KYRGYZ ky  ==Zero==\n     0,    0,    0,    0,   // [ 89] BRETON br  ==Zero==\n     0,    0,    0,    0,   // [ 90] TWI tw  ==Zero==\n     0,    0,    0,  807,   // [ 91] YIDDISH yi\n     0,    0,    0,    0,   // [ 92] SERBO_CROATIAN sh  ==Zero==\n     0,    0,    0,    0,   // [ 93] SOMALI so  ==Zero==\n     0,    0,    0,    0,   // [ 94] UIGHUR ug  ==Zero==\n     0,    0,    0,    0,   // [ 95] KURDISH ku  ==Zero==\n\n     0,    0,    0,    0,   // [ 96] MONGOLIAN mn  ==Zero==\n     0,    0,    0,    0,   // [ 97] ARMENIAN hy  ==Zero==\n     0,    0,    0,    0,   // [ 98] LAOTHIAN lo  ==Zero==\n     0,    0,    0,    0,   // [ 99] SINDHI sd  ==Zero==\n     0,    0,    0,    0,   // [100] RHAETO_ROMANCE rm  ==Zero==\n   885,    0,    0,    0,   // [101] AFRIKAANS af\n     0,    0,    0,    0,   // [102] LUXEMBOURGISH lb  ==Zero==\n     0,    0,    0,    0,   // [103] BURMESE my  ==Zero==\n     0,    0,    0,    0,   // [104] KHMER km  ==Zero==\n     0,    0,    0,    0,   // [105] TIBETAN bo  ==Zero==\n     0,    0,    0,    0,   // [106] DHIVEHI dv  ==Zero==\n     0,    0,    0,    0,   // [107] CHEROKEE chr  ==Zero==\n     0,    0,    0,    0,   // [108] SYRIAC syr  ==Zero==\n     0,    0,    0,    0,   // [109] LIMBU sit-NP  ==Zero==\n     0,    0,    0,    0,   // [110] ORIYA or  ==Zero==\n     0,    0,    0,    0,   // [111] ASSAMESE as  ==Zero==\n     0,    0,    0,    0,   // [112] CORSICAN co  ==Zero==\n     0,    0,    0,    0,   // [113] INTERLINGUE ie  ==Zero==\n     0,    0,    0,    0,   // [114] KAZAKH kk  ==Zero==\n     0,    0,    0,    0,   // [115] LINGALA ln  ==Zero==\n     0,    0,    0,    0,   // [116] MOLDAVIAN mo  ==Zero==\n     0,    0,    0,    0,   // [117] PASHTO ps  ==Zero==\n     0,    0,    0,    0,   // [118] QUECHUA qu  ==Zero==\n     0,    0,    0,    0,   // [119] SHONA sn  ==Zero==\n     0,    0,    0,    0,   // [120] TAJIK tg  ==Zero==\n     0,    0,    0,    0,   // [121] TATAR tt  ==Zero==\n     0,    0,    0,    0,   // [122] TONGA to  ==Zero==\n     0,    0,    0,    0,   // [123] YORUBA yo  ==Zero==\n     0,    0,    0,    0,   // [124] CREOLES_AND_PIDGINS_ENGLISH_BASED cpe  ==Zero==\n     0,    0,    0,    0,   // [125] CREOLES_AND_PIDGINS_FRENCH_BASED cpf  ==Zero==\n     0,    0,    0,    0,   // [126] CREOLES_AND_PIDGINS_PORTUGUESE_BASED cpp  ==Zero==\n     0,    0,    0,    0,   // [127] CREOLES_AND_PIDGINS_OTHER crp  ==Zero==\n\n     0,    0,    0,    0,   // [128] MAORI mi  ==Zero==\n     0,    0,    0,    0,   // [129] WOLOF wo  ==Zero==\n     0,    0,    0,    0,   // [130] ABKHAZIAN ab  ==Zero==\n     0,    0,    0,    0,   // [131] AFAR aa  ==Zero==\n     0,    0,    0,    0,   // [132] AYMARA ay  ==Zero==\n     0,    0,    0,    0,   // [133] BASHKIR ba  ==Zero==\n     0,    0,    0,    0,   // [134] BISLAMA bi  ==Zero==\n     0,    0,    0,    0,   // [135] DZONGKHA dz  ==Zero==\n     0,    0,    0,    0,   // [136] FIJIAN fj  ==Zero==\n     0,    0,    0,    0,   // [137] GREENLANDIC kl  ==Zero==\n     0,    0,    0,    0,   // [138] HAUSA ha  ==Zero==\n  1151,    0,    0,    0,   // [139] HAITIAN_CREOLE ht\n     0,    0,    0,    0,   // [140] INUPIAK ik  ==Zero==\n     0,    0,    0,    0,   // [141] INUKTITUT iu  ==Zero==\n     0,    0,    0,    0,   // [142] KASHMIRI ks  ==Zero==\n     0,    0,    0,    0,   // [143] KINYARWANDA rw  ==Zero==\n     0,    0,    0,    0,   // [144] MALAGASY mg  ==Zero==\n     0,    0,    0,    0,   // [145] NAURU na  ==Zero==\n     0,    0,    0,    0,   // [146] OROMO om  ==Zero==\n     0,    0,    0,    0,   // [147] RUNDI rn  ==Zero==\n     0,    0,    0,    0,   // [148] SAMOAN sm  ==Zero==\n     0,    0,    0,    0,   // [149] SANGO sg  ==Zero==\n     0,    0,    0,    0,   // [150] SANSKRIT sa  ==Zero==\n     0,    0,    0,    0,   // [151] SISWANT ss  ==Zero==\n     0,    0,    0,    0,   // [152] TSONGA ts  ==Zero==\n     0,    0,    0,    0,   // [153] TSWANA tn  ==Zero==\n     0,    0,    0,    0,   // [154] VOLAPUK vo  ==Zero==\n     0,    0,    0,    0,   // [155] ZHUANG za  ==Zero==\n     0,    0,    0,    0,   // [156] KHASI kha  ==Zero==\n     0,    0,    0,    0,   // [157] SCOTS sco  ==Zero==\n     0,    0,    0,    0,   // [158] GANDA lg  ==Zero==\n     0,    0,    0,    0,   // [159] MANX gv  ==Zero==\n\n     0,    0,    0,    0,   // [160] MONTENEGRIN srM  ==Zero==\n     0,    0,    0,    0,   // [161] AKAN ak  ==Zero==\n     0,    0,    0,    0,   // [162] IGBO ig  ==Zero==\n     0,    0,    0,    0,   // [163] MAURITIAN_CREOLE mfe  ==Zero==\n     0,    0,    0,    0,   // [164] HAWAIIAN haw  ==Zero==\n     0,    0,    0,    0,   // [165] PEDI nso  ==Zero==\n     0,    0,    0,    0,   // [166] NDEBELE nr  ==Zero==\n     0,    0,    0,    0,   // [167] VENDA ve  ==Zero==\n     0,    0,    0,    0,   // [168] CHICHEWA ny  ==Zero==\n     0,    0,    0,    0,   // [169] SESELWA crs  ==Zero==\n     0,    0,    0,    0,   // [170] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [171] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [172] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [173] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [174] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [175] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [176] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [177] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [178] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [179] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [180] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [181] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [182] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [183] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [184] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [185] X_BORK_BORK_BORK zzb  ==Zero==\n     0,    0,    0,    0,   // [186] X_PIG_LATIN zzp  ==Zero==\n     0,    0,    0,    0,   // [187] X_HACKER zzh  ==Zero==\n     0,    0,    0,    0,   // [188] X_KLINGON tlh  ==Zero==\n     0,    0,    0,    0,   // [189] X_ELMER_FUDD zze  ==Zero==\n     0,    0,    0,    0,   // [190] X_OGHAM xx-Ogam  ==Zero==\n     0,    0,    0,    0,   // [191] X_RUNIC xx-Runr  ==Zero==\n\n     0,    0,    0,    0,   // [192] X_YI xx-Yiii  ==Zero==\n     0,    0,    0,    0,   // [193] X_OLD_ITALIC xx-Ital  ==Zero==\n     0,    0,    0,    0,   // [194] X_GOTHIC xx-Goth  ==Zero==\n     0,    0,    0,    0,   // [195] X_DESERET xx-Dsrt  ==Zero==\n     0,    0,    0,    0,   // [196] X_HANUNOO xx-Hano  ==Zero==\n     0,    0,    0,    0,   // [197] X_BUHID xx-Buhd  ==Zero==\n     0,    0,    0,    0,   // [198] X_TAGBANWA xx-Tagb  ==Zero==\n     0,    0,    0,    0,   // [199] X_TAI_LE xx-Tale  ==Zero==\n     0,    0,    0,    0,   // [200] X_LINEAR_B xx-Linb  ==Zero==\n     0,    0,    0,    0,   // [201] X_UGARITIC xx-Ugar  ==Zero==\n     0,    0,    0,    0,   // [202] X_SHAVIAN xx-Shaw  ==Zero==\n     0,    0,    0,    0,   // [203] X_OSMANYA xx-Osma  ==Zero==\n     0,    0,    0,    0,   // [204] X_CYPRIOT xx-Cprt  ==Zero==\n     0,    0,    0,    0,   // [205] X_BUGINESE xx-Bugi  ==Zero==\n     0,    0,    0,    0,   // [206] X_COPTIC xx-Copt  ==Zero==\n     0,    0,    0,    0,   // [207] X_NEW_TAI_LUE xx-Talu  ==Zero==\n     0,    0,    0,    0,   // [208] X_GLAGOLITIC xx-Glag  ==Zero==\n     0,    0,    0,    0,   // [209] X_TIFINAGH xx-Tfng  ==Zero==\n     0,    0,    0,    0,   // [210] X_SYLOTI_NAGRI xx-Sylo  ==Zero==\n     0,    0,    0,    0,   // [211] X_OLD_PERSIAN xx-Xpeo  ==Zero==\n     0,    0,    0,    0,   // [212] X_KHAROSHTHI xx-Khar  ==Zero==\n     0,    0,    0,    0,   // [213] X_BALINESE xx-Bali  ==Zero==\n     0,    0,    0,    0,   // [214] X_CUNEIFORM xx-Xsux  ==Zero==\n     0,    0,    0,    0,   // [215] X_PHOENICIAN xx-Phnx  ==Zero==\n     0,    0,    0,    0,   // [216] X_PHAGS_PA xx-Phag  ==Zero==\n     0,    0,    0,    0,   // [217] X_NKO xx-Nkoo  ==Zero==\n     0,    0,    0,    0,   // [218] X_SUDANESE xx-Sund  ==Zero==\n     0,    0,    0,    0,   // [219] X_LEPCHA xx-Lepc  ==Zero==\n     0,    0,    0,    0,   // [220] X_OL_CHIKI xx-Olck  ==Zero==\n     0,    0,    0,    0,   // [221] X_VAI xx-Vaii  ==Zero==\n     0,    0,    0,    0,   // [222] X_SAURASHTRA xx-Saur  ==Zero==\n     0,    0,    0,    0,   // [223] X_KAYAH_LI xx-Kali  ==Zero==\n\n     0,    0,    0,    0,   // [224] X_REJANG xx-Rjng  ==Zero==\n     0,    0,    0,    0,   // [225] X_LYCIAN xx-Lyci  ==Zero==\n     0,    0,    0,    0,   // [226] X_CARIAN xx-Cari  ==Zero==\n     0,    0,    0,    0,   // [227] X_LYDIAN xx-Lydi  ==Zero==\n     0,    0,    0,    0,   // [228] X_CHAM xx-Cham  ==Zero==\n     0,    0,    0,    0,   // [229] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [230] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [231] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [232] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [233] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [234] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [235] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [236] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [237] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [238] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [239] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [240] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [241] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [242] invalid_language ??  ==Zero==\n     0,    0,    0,    0,   // [243] invalid_language ??  ==Zero==\n  };\n\nCOMPILE_ASSERT(EXT_NUM_LANGUAGES >= 209, k_ext_num_languages_changed);\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/generated/compact_lang_det_generated_cjkbis_0.cc",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n//\n// Created by postproc-shortwords 1.7 on 2009-01-29 16:13:04\n// From input file /tmp/langdet_v25_12cjk_sort.utf8\n// See compact_lang_det.cc for usage\n//\n#include \"encodings/compact_lang_det/cldutil.h\"\n\n// Suppressed:\n//      az-Arab az-Cyrl ku-Latn tg-Arab za-Hani zzb-Latn zze-Latn zzh-Latn ru-Latn\n\n// Remapped:\n//      xxx-Latn=>ut-Latn sh-Latn=>hr-Latn sh-Cyrl=>sr-Cyrl\n\n\nstatic const int kCjkBiTableBuildDate = 20090129;    // yyyymmdd\nstatic const int kCjkBiTableSize = 1;    // Bucket count\nstatic const int kCjkBiTableKeyMask = 0xffffffff;    // Mask hash key\n\nCOMPILE_ASSERT(MONTENEGRIN == 160, k_montenegrin_changed);\nCOMPILE_ASSERT(EXT_NUM_LANGUAGES == 209, k_ext_num_languages_changed);\n\n// Empty table\nstatic const cld::IndirectProbBucket4 kCjkBiTable[kCjkBiTableSize] = {\n  // key[4], words[4] in UTF-8\n  // value[4]\n  { {0x00000000,0x00000000,0x00000000,0x00000000}},  // [000] c\n};\n\nstatic const uint32 kCjkBiTableInd[1] = {\n  // [0000]\n  0x00000000, };\n\nCOMPILE_ASSERT(1 < (1 << 16), k_indirectbits_too_small);\n\n\nextern const cld::CLDTableSummary kCjkBiTable_obj = {\n  kCjkBiTable,\n  kCjkBiTableInd,\n  kCjkBiTableSize,\n  arraysize(kCjkBiTableInd),\n  kCjkBiTableKeyMask,\n  kCjkBiTableBuildDate,\n};\n\n// End of generated tables\n\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/generated/compact_lang_det_generated_ctjkvz.cc",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n//\n// Created by utf8tablebuilder version 2.8\n// See util/utf8/utf8statetable.h for usage\n//\n//  Maps properties of all codes from file:\n//    compact_lang_det_generated_ctjkvz.txt\n//  Accepts all other UTF-8 codes 0000..10FFFF\n//  Space optimized\n//\n// ** ASSUMES INPUT IS STRUCTURALLY VALID UTF-8 **\n//\n//  Table offsets for byte 2-of-3 and byte 3-of-4 are\n//  multiplied by 16; offsets for 3-of-3 and 4-of-4 are\n//  relative +/-127 from previous state.\n\n#include \"encodings/compact_lang_det/win/cld_utf8statetable.h\"\n\n#define X__ (kExitIllegalStructure)\n#define RJ_ (kExitReject)\n#define S1_ (kExitReplace1)\n#define S2_ (kExitReplace2)\n#define S3_ (kExitReplace3)\n#define S21 (kExitReplace21)\n#define S31 (kExitReplace31)\n#define S32 (kExitReplace32)\n#define T1_ (kExitReplaceOffset1)\n#define T2_ (kExitReplaceOffset2)\n#define S11 (kExitReplace1S0)\n#define SP_ (kExitSpecial)\n#define D__ (kExitDoAgain)\n#define RJA (kExitRejectAlt)\n\n//  Entire table has 1172 state blocks of 64 entries each\n\nstatic const unsigned int compact_lang_det_generated_ctjkvz_b1_STATE0 = 0;\t\t// state[0]\nstatic const unsigned int compact_lang_det_generated_ctjkvz_b1_STATE0_SIZE = 64;\t// =[1]\nstatic const unsigned int compact_lang_det_generated_ctjkvz_b1_TOTAL_SIZE = 75008;\nstatic const unsigned int compact_lang_det_generated_ctjkvz_b1_MAX_EXPAND_X4 = 0;\nstatic const unsigned int compact_lang_det_generated_ctjkvz_b1_SHIFT = 6;\nstatic const unsigned int compact_lang_det_generated_ctjkvz_b1_BYTES = 1;\nstatic const unsigned int compact_lang_det_generated_ctjkvz_b1_LOSUB = 0x80808080;\nstatic const unsigned int compact_lang_det_generated_ctjkvz_b1_HIADD = 0x00000000;\n\nstatic const uint8 compact_lang_det_generated_ctjkvz_b1[] = {\n// state[0] 0x000000 Byte 1 (row Ex offsets 16x small)\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\n\nX__,X__,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  1,  3,  2,  4,  5,  9, 13, 17,  21, 25, 29, 30, 30, 31,  2, 32,\n  5,  3,  3,  3,  4,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\n\n// state[2 + 2] 0x000080 Byte 2 of 2 (property)\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[3 + 2] 0x040000 Byte 2 of 4 (offsets 16x small)\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n\n// state[4 + 2] 0x100000 Byte 2 of 4 (offsets 16x small)\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\n\n// state[5 + 2] 0x000000 Byte 2 of 4 (offsets 16x small)\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n 33, 35, 39, 43, 47, 51, 55, 59,  63, 67, 71,  2,  2,  2,  2, 73,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n\n// state[6 + 2] 0x001100 Byte 3 of 3 (property)\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[7 + 2] 0x001140 Byte 3 of 3 (property)\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  0,  0,  0,  0,  0,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[8 + 2] 0x001180 Byte 3 of 3 (property)\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  0,  0,  0,  0,  0,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[9 + 2] 0x0011c0 Byte 3 of 3 (property)\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  0,  0,  0,  0,  0,  0,\n\n// state[10 + 2] 0x003000 Byte 3 of 3 (property)\n  0,  0,  0,  0,  0, 44,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,231,  0,  0,  0,  0,\n\n// state[11 + 2] 0x003040 Byte 3 of 3 (property)\n  0,  4,  4,  4,  4,  4,  4,  4,   4,  4,  4,  4,  4,  4,  4,  4,\n  4,  4,  4,  4,  4,  4,  4,  4,   4,  4,  4,  4,  4,  4,  4,  4,\n  4,  4,  4,  4,  4,  4,  4,  4,   4,  4,  4,  4,  4,  4,  4,  4,\n  4,  4,  4,  4,  4,  4,  4,  4,   4,  4,  4,  4,  4,  4,  4,  4,\n\n// state[12 + 2] 0x003080 Byte 3 of 3 (property)\n  4,  4,  4,  4,  4,  4,  4,  4,   4,  4,  4,  4,  4,  4,  4,  4,\n  4,  4,  4,  4,  4,  4,  4,  0,   0,  0,  0,  0,  0,  4,  4,  4,\n  0,  4,  4,  4,  4,  4,  4,  4,   4,  4,  4,  4,  4,  4,  4,  4,\n  4,  4,  4,  4,  4,  4,  4,  4,   4,  4,  4,  4,  4,  4,  4,  4,\n\n// state[13 + 2] 0x0030c0 Byte 3 of 3 (property)\n  4,  4,  4,  4,  4,  4,  4,  4,   4,  4,  4,  4,  4,  4,  4,  4,\n  4,  4,  4,  4,  4,  4,  4,  4,   4,  4,  4,  4,  4,  4,  4,  4,\n  4,  4,  4,  4,  4,  4,  4,  4,   4,  4,  4,  4,  4,  4,  4,  4,\n  4,  4,  4,  4,  4,  4,  4,  4,   4,  4,  4,  0,  0,  4,  4,  4,\n\n// state[14 + 2] 0x003100 Byte 3 of 3 (property)\n  0,  0,  0,  0,  0,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  0,  0,\n  0,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[15 + 2] 0x003180 Byte 3 of 3 (property)\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[16 + 2] 0x000000 Byte 2 of 3 (relative offsets)\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\n-14,-14,-14,-14,-14,-14,-14,-14, -14,-14,-14,-14,-14,-14,-14,-14,\n-14,-14,-14,-14,-14,-14,-14,-14, -14,-14,-14,-14,-14,-14,-14,-14,\n\n// state[17 + 2] 0x0031c0 Byte 3 of 3 (property)\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  4,  4,  4,  4,  4,  4,  4,  4,   4,  4,  4,  4,  4,  4,  4,  4,\n\n// state[18 + 2] 0x003400 Byte 3 of 3 (property)\n  0,229,231,  3,233,233,233,  3,   3,  3,  3,  3,  0,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,208,  3,   3,  3,  3,  3,229,  3,  3,  3,\n  3,208,  3,  3,208,  0,  3,  4, 208,208,  4,208,233,228,233,172,\n233,  0,229,  0,  0,208,  0,  6, 208,208,  0,227,229,  6,208,  3,\n\n// state[19 + 2] 0x003440 Byte 3 of 3 (property)\n217,228,233,  0,229,228,  6,  0,   6,208,229,229,229,227,208,227,\n  0,  0,  4,194,  6,  6,  3,  0, 233,229,  0,229,229,229,233,229,\n  6,  3,  6,229,233,  0,228,228,   4,  0,  4,218,  3,  3,208,208,\n208,229,  3,  0,229,229,229,229, 172,238,208,229,208,208,229,229,\n\n// state[20 + 2] 0x003480 Byte 3 of 3 (property)\n229,229,208,229,229,229,208,229, 208,208,  0,208,208,229,208,  3,\n  3,229,228,229,229,229,208,  5,   6,  0,229,229,229,229,208,229,\n229,208,  3,  3,229,208,229,229, 208,229,208,233,208,208,  6,217,\n208,  3,229,229,233,233,233,227, 208,229,  5,208,228,208,208,229,\n\n// state[21 + 2] 0x0034c0 Byte 3 of 3 (property)\n  3,194,208,228,208,208,  6,194, 208,229,208,208,208,  6,208,229,\n208,229,  3,208,208,  5,229,233, 208,  3,229,194,233,233,208,227,\n  0,  0,229,208,  0,  6,  6,208, 229,208,226,  6,233,227,208,208,\n  3,208,228,208,208,229,  0,208, 229,208,229,229,229,208,208,  3,\n\n// state[22 + 2] 0x003500 Byte 3 of 3 (property)\n229,233,208,208,229,208,229,208,   6,  6,208,229,229,208,229,229,\n229,208,229,233,  3,233,  3,233,   5,208,233,  3,233,229,208,  0,\n229,208,208,208,208,  0,233,  0, 208,229,208,  4,233,208,208,229,\n  0,233,  5,233,233,233,229,208, 229,  0,  0,208,233,208,228,229,\n\n// state[23 + 2] 0x003540 Byte 3 of 3 (property)\n217,229,208,233,208,208,208,229, 208,208,  0,208,229,208,229,229,\n229,229,229,238,217,208,208,229, 231,  0,228,228,233,  4,233,  0,\n208,208,229,231,208,208,228,228,   6,208,229,208,  0,  0,228,233,\n227,229,208,229,  6,  0,208,208, 227,228,208,229,229,172,  3,  3,\n\n// state[24 + 2] 0x003580 Byte 3 of 3 (property)\n208,229,208,229,229,227,208,227, 217,  6,  6,  3,  3,  3,  3,208,\n208,227,208,208,227,208,233,227, 208,  3,  3,  3,  3,  3,231,229,\n227,  0,233,227,208,208,233,  0, 233,229,  0,  0,  6,208,219,  3,\n  3,  3,  3,  3,  5,208,233,208, 227,  0,  0,  0,227,227,208,  0,\n\n// state[25 + 2] 0x0035c0 Byte 3 of 3 (property)\n  0,  0,227,229,208,  0,233,233, 227,229,208,229,229,208,208,  6,\n  5,218,208,208,233,227,  0,229, 229,227,  0,  0,  0,208,218,  3,\n  3,  3,  0,208,228,229,  0,229, 208,  0,208,228,229,  0,  3,  3,\n208,  0,229,227,  0,208,  0,  6,   3,  3,  6,229,208,208,208,229,\n\n// state[26 + 2] 0x003600 Byte 3 of 3 (property)\n208,208,208,218,219,228,208,227,   0,  0,229,227,208,208,  0,  3,\n208,229,  3,  0,229,208,  0,219, 217,  0,  0,208,233,229,229,  5,\n229,208,228,208,229,208,208,208, 227,208,229,233,208,  0,  6,  0,\n208,  0,233,208,228,  0,208,  0, 208,208,  0,208,  6,219,217,229,\n\n// state[27 + 2] 0x003640 Byte 3 of 3 (property)\n208,227,208,208,228,208,  3,229, 208,229,228,208,  0,208,208,229,\n229,208,229,208,  0,208,  3,219, 218,208,208,208,208,229,208,208,\n229,229,229,  0,  0,208,  6,229, 208,229,229,229,208,217,  0,208,\n208,  0,208,208,227,208,208,  0, 208,208,229,233,208,  3,229,  3,\n\n// state[28 + 2] 0x003680 Byte 3 of 3 (property)\n229,  0,229,208,  5,208,172,229,   4,233,208,208,208,208,  5,208,\n208,  4,208,229,208,228,233,208, 229,172,208,  6,208,208,208,208,\n228,208,208,208,229,208,208,229, 208,229,208,208,208,208,208,  6,\n229,229,229,229,208,208,208,229, 229,208,208,228,208,208,229,208,\n\n// state[29 + 2] 0x0036c0 Byte 3 of 3 (property)\n  6,208,229,208,229,229,219,208, 208,208,208,  3,  3,208,227,233,\n229,229,233,208,208,208,  0,208, 229,208,208,208,208,208,208,  6,\n  6,217,208,  6,  6,208,208,208, 208,208,  0,208,208,208,229,229,\n229,208,208,208,229,208,229,233, 208,229,229,208,208,208,208,  6,\n\n// state[30 + 2] 0x003700 Byte 3 of 3 (property)\n  6,208,208,208,208,208,208,208, 229,208,208,208,208,208,229,229,\n208,229,208,208,  6,208,229,229,   0,208,208,208,208,229,229,  6,\n208,208,208,229,208,  0,208,208, 208,208,229,208,208,217,  0,229,\n  0,208,  0,  0,208,229,  0,229,   0,  0,  0,208,208,208,233,208,\n\n// state[31 + 2] 0x003740 Byte 3 of 3 (property)\n208,229,229,  0,208,229,  3,233, 229,  0,208,172,208,217,229,229,\n229,233,208,229,229,  0,208,229, 233,233,219,229,229,208,208,233,\n148,226,228,208,229,208,208,208, 219,208,229,228,233,233,208,229,\n229,229,229,  3,208,  0,229,  5, 233,  0,229,229,229,208,229,229,\n\n// state[32 + 2] 0x002000 Byte 2 of 3 (relative offsets)\n-30,-30,-30,-30,-30,-30,-30,-30, -30,-30,-30,-30,-30,-30,-30,-30,\n-30,-30,-30,-30,-30,-30,-30,-30, -30,-30,-30,-30,-30,-30,-30,-30,\n-30,-30,-30,-30,-30,-30,-30,-30, -30,-30,-30,-30,-30,-30,-30,-30,\n-30,-30,-30,-30,-30,-30,-30,-30, -30,-30,-30,-30,-30,-30,-30,-30,\n\n// state[33 + 2] 0x003780 Byte 3 of 3 (property)\n229,208,229,229,208,229,229,229, 208,208,208,208,208,  4,  6,208,\n229,208,208,208,208,229,208,229, 208,208,208,208,229,  3,  6,229,\n208,208,208,229,208,208,208,208, 208,208,233,208,233,208,  4,217,\n208,229,208,229,233,208,208,233, 219,229,233,233,233,208,208,233,\n\n// state[34 + 2] 0x0037c0 Byte 3 of 3 (property)\n208,233,  6,217,208,229,  6,208, 208,208,208,208,208,208,208,208,\n208,208,233,229,208,  3,208,208, 208,208,208,233,233,208,208,233,\n208,  4,233,  3,  6,  5,208,233, 233,208,229,208,229,208,219,208,\n229,229,  0,229,  0,233,208,  0, 208,229,  0,228,229,  0,208,208,\n\n// state[35 + 2] 0x003800 Byte 3 of 3 (property)\n  0,229,  0,  3,208,208,229,208, 208,228,229,229,  0,229,228,208,\n  0,229,208,208,208,233,228,233,   5,229,208,  0,208,233,  3,219,\n208,208,  0,  6,  6,208,208,229, 229,208,233,  3,  3,208,208,228,\n  3,229,229,  3,208,208,233,  0,   0,229,  0,208,233,208,229,208,\n\n// state[36 + 2] 0x003840 Byte 3 of 3 (property)\n  0,229,229,229,229,208,208,229, 229,208,229,  0,228,  6,  5,229,\n  0,208,208,229,  0,229,208,208, 229,229,229,229,228,229,228,229,\n229,  0,233,233,  3,  0,229,229, 229,208,208,233,  0,208,208,208,\n208,229,229,233,227,208,208,208, 229,208,208,208,208,233,208,229,\n\n// state[37 + 2] 0x003880 Byte 3 of 3 (property)\n208,229,208,208,229,208,229,  3, 228,208,208,228,  5,229,208,229,\n  5,233,229,208,208,233,229,208, 208,229,208,208,233,229,229,208,\n208,233,  4,233,  3,229,229,233, 208,208,208,  6,208,  6,229,208,\n229,  3,208,208,233,229,208,  6, 229,  3,208,229,229,208,208,  3,\n\n// state[38 + 2] 0x0038c0 Byte 3 of 3 (property)\n233,229,208,233,208,229,208,208, 208,233,  3,208,229,208,208,208,\n208,229,208,208,229,  3,  3,  3, 233,208,229,208,208,208,233,208,\n  0,  3,228,229,229,228,208,219,   3,  3,226,229,208,229,  3,229,\n229,233,228,  3,  3,208,208,229,   3,  3,194,229,228,208,229,229,\n\n// state[39 + 2] 0x003900 Byte 3 of 3 (property)\n  3,208,208,229,208,233,229,208, 227,229,229,208,208,229,208,229,\n229,208,229,  0,229,  0,229,194,   0,  0,233,229,229,  0,229,208,\n233,  0,233,229,208,  0,208,229, 208,  0,229,172,208,  6,229,233,\n208,208,229,227,229,233,208,208, 229,208,  0,229,  3,  6,229,229,\n\n// state[40 + 2] 0x003940 Byte 3 of 3 (property)\n233,228,208,229,229,  0,208,208, 208,208,229,227,233,229,208,229,\n233,208,208,208,208,208,229,  6,   3,  3,229,229,  0,229,208,229,\n228,208,229,233,233,  0,228,229, 208,228,  6,  5,  0,229,  0,228,\n229,228,228,228,208,229,208,229, 208,208,208,  6,229,229,229,229,\n\n// state[41 + 2] 0x003980 Byte 3 of 3 (property)\n229,229,208,  0,227,229,  0,208,   6,227,229,208,208,208,  0,229,\n208,208,229,  0,208,229,227,  0, 233,208,229,228,229,229,228,229,\n208,227,229,228,228,233,208,229,   0,229,229,229,229,229,238,229,\n229,172,228,  3,229,229,233,208, 229,229,208,229,208,229,228,229,\n\n// state[42 + 2] 0x0039c0 Byte 3 of 3 (property)\n229,229,208,229,229,227,229,208, 233,229,229,208,208,227,229,  0,\n  6,  6,229,229,208,208,229,229, 229,229,208,  6,208,  6,238,  0,\n  3,  0,229,229,208,229,229,229, 233,229,229,208,229,208,208,227,\n  6,208,208,208,208,  0,  0,208, 208,229,  0,229,  0,233,  0,229,\n\n// state[43 + 2] 0x003a00 Byte 3 of 3 (property)\n  0,229,227,227,  0,208,229,208,   5,229,229,  0,208,229,229,208,\n  0,229,229,208,  0,227,229,228, 227,229,229,229,229,208,229,208,\n229,229,227,229,208,229,229,208, 208,208,208,  6,  6,229,208,233,\n208,208,227,  0,227,229,  0,229, 208,229,208,228,208,229,217,228,\n\n// state[44 + 2] 0x003a40 Byte 3 of 3 (property)\n  5,  3,  3,  0,229,229,  0,  0, 208,  0,229,  0,229,228,  0,  6,\n229,  6,  0,208,  0,229,229,  0, 208,208,229,208,  0,229,227,219,\n229,  0,  0,229,229,229,  0,  0, 208,  0,208,227,229,229,  0,229,\n  0,  0,  0,231,229,229,  0,208, 219,  0,208,229,229,228,208,229,\n\n// state[45 + 2] 0x003a80 Byte 3 of 3 (property)\n208,229,229,  6,229,228,  6,208, 229,233,  6,229,229,229,229,229,\n219,229,229,229,219,229,229,208,   4,  6,208,219,229,229,229,233,\n229,229,208,208,229,229,229,219, 229,229,  6,208,229,229,208,229,\n233,229,  3,  3,208,229,229,229, 208,229,229,229,208,233,229,233,\n\n// state[46 + 2] 0x003ac0 Byte 3 of 3 (property)\n233,229,229,208,228,229,  3,  3,   3,  3,229,229,  3,208,229,229,\n233,228,229,229,208,233,  4,233, 208,208,229,228,229,229,228,229,\n233,229,219,  6,  0,208,233,208, 172,229,238,229,208,  3,  5,233,\n  0,229,  0,228,233,227,233,233, 229,208,208,227,  0,229,213,  3,\n\n// state[47 + 2] 0x003b00 Byte 3 of 3 (property)\n  3,233,229,208,208,229,208,208, 229,229,228,208,208,229,  0,229,\n208,  6,229,229,229,208,  3,229, 229,  0,228,229,233,233,229,  6,\n229,229,228,229,219,228,228,194,   3,208,208,208,208,208,208,229,\n228,229,229,229,229,233,233,  6, 208,229,  3,229,233,  6,  6,  0,\n\n// state[48 + 2] 0x001000 Byte 2 of 3 (relative offsets)\n-46,-46,-46,-46,-42,-41,-40,-39, -46,-46,-46,-46,-46,-46,-46,-46,\n-46,-46,-46,-46,-46,-46,-46,-46, -46,-46,-46,-46,-46,-46,-46,-46,\n-46,-46,-46,-46,-46,-46,-46,-46, -46,-46,-46,-46,-46,-46,-46,-46,\n-46,-46,-46,-46,-46,-46,-46,-46, -46,-46,-46,-46,-46,-46,-46,-46,\n\n// state[49 + 2] 0x003b40 Byte 3 of 3 (property)\n  6,227,208,233,208,  3,  3,208, 208,229,  0,229,233,219,  0,  6,\n  3,229,208,229,208,228,  6,  3, 229,228,208,208,208,233,229,229,\n  0,229,229,  6,  6,  6,  3,219,   0,229,229,229,  0,228,229,229,\n229,229,  0,218,  4,  6,  6,172, 228,208,229,233,227,227,229,229,\n\n// state[50 + 2] 0x003b80 Byte 3 of 3 (property)\n  0,229,229,229,229,208,208,233, 223,  6,  4,228,208,233,229,229,\n229,229,208,208,227,229,208,229, 229,208,229,  0,229,229,229,208,\n218,208,  6,208,228,229,229,  0, 229,227,229,229,208,229,231,229,\n229,229,  0,208,229,233,233,229, 208,229,208,172,208,  3,  0,227,\n\n// state[51 + 2] 0x003bc0 Byte 3 of 3 (property)\n229,229,208,228,  0,229,229,208, 208,229,  0,229,208,228,208,208,\n208,  3,  3,229,229,229,  0,229, 229,229,229,229,208,  0,229,208,\n208,229,233,208,208,208,208,  6,   6,  6,208,229,233,229,229,229,\n233,229,  0,228,208,  5,208,  0, 228,208,229,229,  6,  3,208,  0,\n\n// state[52 + 2] 0x003c00 Byte 3 of 3 (property)\n  0,  0,208,208,208,208,208,208, 208,208,208,229,  0,229,208,233,\n229,208,  0,  4,229,229,229,229,   0,227,229,208,  0,229,233,229,\n229,229,229,229,229,229,228,229, 229,229,229,229,229,228,228,  0,\n229,228,229,229,229,229,229,229,   4,229,229,229,  0,229,229,229,\n\n// state[53 + 2] 0x003c40 Byte 3 of 3 (property)\n229,208,229,229,229,233,229,229, 208,208,229,233,229,229,229,228,\n  3,  3,208,  3,208,231,229,229, 208,229,229,229,208,  4,229,229,\n229,229,208,229,208,208,  0,229, 208,  6,229,229,229,  0,  6,229,\n229,208,229,229,229,229,208,  3, 229,208,208,229,229,229,  0,229,\n\n// state[54 + 2] 0x003c80 Byte 3 of 3 (property)\n229,229,208,229,208,229,229,208, 229,229,233,229,229,229,208,229,\n  6,208,229,229,229,229,229,229, 208,229,229,228,208,228,  0,208,\n208,229,229,208,229,229,229,229, 229,  3,229,229,229,208,  3,229,\n229,229,229,229,229,208,208,208,   0,208,229,229,233,229,208,  6,\n\n// state[55 + 2] 0x003cc0 Byte 3 of 3 (property)\n208,229,229,228,  0,229,208,208, 229,218,208,208,  0,208,229,208,\n229,233,233,217,  6,  6,233,229, 229,233,228,229,228,227,208,238,\n  0,  6,  6,  3,229,227,208,229, 229,208,227,208,229,208,  0,  0,\n  6,  6,  3,  5,208,233,  0,229, 208,  0,228,  0,229,229,208,229,\n\n// state[56 + 2] 0x003d00 Byte 3 of 3 (property)\n233,229,208,229,229,208,208,208, 229,229,208,  6,  3,  3,208,229,\n  0,228,229,229,229,208,208,229, 229,229,208,208,227,208,228,  6,\n  0,208,  3,  3,  3,  0,208,229, 229,208,208,208,228,229,208,208,\n  0,  0,229,208,208,233,229,  0, 229,  3,  3,  5,229,208,229,229,\n\n// state[57 + 2] 0x003d40 Byte 3 of 3 (property)\n208,  0,208,  0,208,229,229,  6,   3,  3,  0,208,229,229,233,208,\n208,208,  0,233,229,229,229,229, 208,208,  6,  3,  3,228,229,229,\n229,229,227,  0,228,229,229,  0, 229,229,  0,229,208,229,233,229,\n  0,229,208,  0,229,  0,  0,229, 229,208,208,208,  4,229,229,229,\n\n// state[58 + 2] 0x003d80 Byte 3 of 3 (property)\n229,229,  3,  3,229,229,229,229, 229,  6,217,  3,229,208,208,229,\n  3,208,229,228,229,208,229,208, 208,  3,194,229,208,  3,229,229,\n208,229,  3,229,227,227,228,229, 208,227,  5,  0,229,229,208,208,\n208,  3,208,229,229,233,  6,  3,   3,208,229,208,229,  6,208,229,\n\n// state[59 + 2] 0x003dc0 Byte 3 of 3 (property)\n228,217,229,229,208,229,208,229, 229,228,229,229,229,208,229,229,\n208,229,229,229,228,229,233,229, 208,227,227,208,  3,213,  3,229,\n229,229,229,229,229,229,208,208, 208,  3,  6,  0,229,229,229,229,\n229,  4,  3,208,208,208,229,229, 208,229,  6,208,  5,217,229,229,\n\n// state[60 + 2] 0x003e00 Byte 3 of 3 (property)\n208,229,229,  5,208,228,208,219, 229,208,229,229,208,229,229,233,\n208,229,229,208,217,208,208,229, 208,229,229,229,229,229,208,229,\n208,229,229,229,229,229,  0,208, 229,229,229,229,229,229,229,208,\n229,208,229,233,  3,229,229,229, 229,229,229,229,  0,229,  0,  4,\n\n// state[61 + 2] 0x003e40 Byte 3 of 3 (property)\n233,229,229,229,208,228,229,229, 208,229,229,229,229,229,229,229,\n229,229,229,229,229,229,229,229, 229,229,229,229,228,208,229,  0,\n  0,229,229,233,  0,  0,  0,208, 226,  6,219,  0,208,  0,229,  0,\n  3,229,228,208,208,229,  0,233, 229,233,229,229,208,229,229,  0,\n\n// state[62 + 2] 0x003e80 Byte 3 of 3 (property)\n229,208,229,  0,229,229,  6,208, 229,208,228,229,229,  6,208,229,\n229,229,  0,  5,  0,229,229,  0, 208,  6,229,208,229,  0,  0,208,\n229,208,  6,208,208,229,229,  0, 229,229,229,208,208,208,229,  3,\n208,229,233,208,208,208,  3,208,   5,229,208,  6,  6,217,  3,229,\n\n// state[63 + 2] 0x003ec0 Byte 3 of 3 (property)\n229,229,229,208,208,  6,  3,  0,   5,229,208,  0,229,229,208,  6,\n217,208,229,229,208,208,208,208,   6,208,194,217,  3,208,229,208,\n229,233,229,217,  3,  3,  3,208, 194,217,  6,229,229,208,208,208,\n229,208,208,208,217,208,229,229, 229,229,208,217,208,229,229,229,\n\n// state[64 + 2] 0x003000 Byte 2 of 3 (relative offsets)\n-54,-53,-52,-51,-50,-58,-49,-47, -62,-62,-62,-62,-62,-62,-62,-62,\n-46,-45,-44,-43,-42,-41,-40,-39, -38,-37,-36,-35,-34,-33,-31,-30,\n-29,-28,-27,-26,-25,-24,-23,-22, -21,-20,-19,-18,-17,-15,-14,-13,\n-12,-11,-10, -9, -8, -7, -6, -5,  -4, -3, -2, -1,  1,  2,  3,  4,\n\n// state[65 + 2] 0x003f00 Byte 3 of 3 (property)\n217,217,208,  3,208,217,208,208,   6,229,208,228,229,229,208,229,\n229,  0,229,229,208,229,229,229, 233,208,229,229,229,229,229,229,\n229,229,229,229,208,229,208,229, 229,229,229,229,229,229,229,208,\n229,229,229,229,208,  0,229,208, 229,208,229,229,233,229,  0,229,\n\n// state[66 + 2] 0x003f40 Byte 3 of 3 (property)\n208,208,229,208,229,219,229,229, 208,229,229,229,208,208,229,  6,\n229,229,208,208,  3,229,233,194, 229,208,208,229,208,229,217,229,\n229,229,208,208,208,229,229,208, 229,229,228,229,208,229,208,229,\n208,229,228,224,229,228,  3,228, 208,229,229,229,208,229,229,  0,\n\n// state[67 + 2] 0x003f80 Byte 3 of 3 (property)\n229,229,208,229,227,208,208,208, 229,229,208,208,229,229,229,229,\n229,  0,208,229,208,229,229,228, 208,229,229,229,229,208,  0,229,\n229,208,229,229,229,229,229,229, 229,229,229,229,229,229,228,  0,\n229,  3,  6,  3,219,  6,208,208, 208,208,229,  0,229,229,  0,  0,\n\n// state[68 + 2] 0x003fc0 Byte 3 of 3 (property)\n208,208,  0,229,229,229,229,229, 229,228,  0,233,229,  0,229,229,\n  3,  0,229,229,219,229,  0,228, 208,229,208,229,208,208,208,233,\n  3,208,208,229,233,229,229,229,   0,229,229,  0,229,229,229,229,\n  0,229,229,229,229,208,229,229,   0,229,229,229,229,229,229,208,\n\n// state[69 + 2] 0x004000 Byte 3 of 3 (property)\n229,229,229,208,229,229,229,229, 229,229,229,208,  3,229,208,229,\n229,208,229,229,229,229,229,229, 229,229,229,229,229,  0,208,208,\n229,  0,229,229,229,  6,  6,  0,   0,  0,208,229,229,229,229,229,\n229,208,  0,208,228,228,229,229, 229,228,229,229,229,229,229,229,\n\n// state[70 + 2] 0x004040 Byte 3 of 3 (property)\n  0,229,  0,229,229,  0,229,229, 228,229,229,229,208,229,229,229,\n  0,228,229,229,229,229,  0,229,   0,229,229,227,229,229,208,233,\n227,  3,229,229,229,229,229,229, 229,  0,229,229,229,229,229,229,\n229,228,  0,229,229,229,229,229,   0,208,229,229,229,229,  0,208,\n\n// state[71 + 2] 0x004080 Byte 3 of 3 (property)\n  0,229,208,229,229,229,208,229, 208,208,233,  6,229,229,229,229,\n208,229,229,228,229,229,228,229, 229,208,229,208,229,208,229,208,\n229,208,228,229,229,208,229,229, 208,229,229,229,229,208,229,208,\n208,229,233,229,208,  6,208,229, 229,229,229,229,208,208,229,229,\n\n// state[72 + 2] 0x0040c0 Byte 3 of 3 (property)\n208,229,229,  3,218,  6,  3,208, 229,229,229,208,229,228,229,229,\n  3,229,229,229,229,229,229,208, 229,229,229,229,229,228,229,  0,\n229,229,  0,  0,229,229,229,229,   3,208,229,229,229,229,208,  4,\n208,229,208,229,229,229,229,229, 229,227,229,208,  0,229,228,  0,\n\n// state[73 + 2] 0x004100 Byte 3 of 3 (property)\n228,208,233,228,229,233,229,  0, 229,229,  6,229,229,229,229,208,\n229,208,233,229,208,208,219,  3, 229,  0,229,208,208,229,  3,229,\n229,208,208,  3,229,208,228,229, 229,229,228,228,208,208,229,229,\n229,229,208,208,  6,  3,229,229, 228,  6,229,229,208,208,229,229,\n\n// state[74 + 2] 0x004140 Byte 3 of 3 (property)\n229,229,229,229,229,  0,228,208, 233,  6,208,233,229,229,229,233,\n208,208,229,208,229,229,229,208,   0,229,229,229,229,229,228,  0,\n208,208,228,228,229,228,229,229, 229,229,  6,  3,208,229,229,229,\n208,229,  0,208,  0,229,208,229, 229,229,229,229,208,231,229,208,\n\n// state[75 + 2] 0x004180 Byte 3 of 3 (property)\n229,233,208,229,229,229,  3,  3, 208,229,229,217,  6,229,229,229,\n208,229,233,229,229,229,229,229, 229,229,229,229,208,229,229,229,\n229,229,229,208,229,208,229,229, 229,229,229,229,229,229,219,208,\n  0,229,229,229,215,229,229,229, 229,229,229,208,229,208,229,228,\n\n// state[76 + 2] 0x0041c0 Byte 3 of 3 (property)\n229,229,208,208,227,229,208,208, 208,208,194,233,229,229,229,229,\n229,229,233,229,229,229,229,229, 229,208,229,227,229,208,229,229,\n  0,228,229,229,208,208,233,208, 229,229,227,229,229,229,  0,229,\n229,233,208,  4,219,208,229,229, 229,229,229,  0,229,229,229,  4,\n\n// state[77 + 2] 0x004200 Byte 3 of 3 (property)\n208,229,229,208,208,229,208,228, 208,229,227,208,208,208,233,229,\n229,208,  0,208,229,228,229,229, 229,208,229,229,  0,208,233,208,\n229,208,208,229,208,208,229,  0,   6,  6,208,  0,208,229,208,229,\n229,229,229,229,228,  0,229,208, 229,  0,229,229,229,229,229,208,\n\n// state[78 + 2] 0x004240 Byte 3 of 3 (property)\n208,229,229,229,208,208,233,  6, 208,229,208,208,208,208,229,208,\n208,229,  0,208,  0,229,228,229, 208,208,208,229,228,208,208,229,\n208,229,208,208,215,208,208,208, 208,229,229,208,229,227,208,229,\n229,208,208,229,229,208,229,229, 208,229,228,208,208,228,229,229,\n\n// state[79 + 2] 0x004280 Byte 3 of 3 (property)\n233,229,229,229,229,228,229,229, 229,229,208,208,208,208,229,208,\n208,233,208,228,229,208,229,228, 229,229,229,229,229,208,229,  0,\n208,229,194,233,208,208,229,229, 229,208,229,229,208,229,208,233,\n229,208,229,229,208,229,233,  0, 208,208,229,208,227,229,229,229,\n\n// state[80 + 2] 0x004000 Byte 2 of 3 (relative offsets)\n-11,-10, -9, -8, -7, -6, -5, -4,  -3, -2, -1,  1,  2,  3,  4,  5,\n  6,  7,  8,  9, 10, 11, 12, 13,  14, 15, 16, 17, 18, 19, 20, 21,\n 22, 23, 24, 25, 26, 27, 28, 29,  30, 31, 32, 33, 34, 35, 36, 37,\n 38, 39, 40, 41, 42, 43, 44,-78,  45, 46, 47, 48, 49, 50, 51, 52,\n\n// state[81 + 2] 0x0042c0 Byte 3 of 3 (property)\n229,  0,229,229,229,  3,  4,  4, 229,229,229,229,208,229,  0,208,\n228,208,229,208,208,208,  0,208, 227,229,208,228,229,  4,  5,208,\n208,229,229,229,208,  0,  0,208, 228,229,229,229,208,229,208,208,\n229,229,229,229,229,208,229,229, 229,229,229,229,229,229,229,229,\n\n// state[82 + 2] 0x004300 Byte 3 of 3 (property)\n229,229,228,208,229,229,233,233, 229,208,208,219,  0,229,229,208,\n229,  0,229,228,208,229,  0,208, 229,229,208,208,229,229,228,229,\n229,229,229,229,229,  0,229,208, 229,208,208,228,233,229,229,208,\n229,  0,208,229,229,229,  6,231,   6,  6,  6,  6,  6,  6,  6,  6,\n\n// state[83 + 2] 0x004340 Byte 3 of 3 (property)\n  6,  6,  0,228,229,208,229,229, 208,208,229,208,229,229,229,194,\n  0,208,208,229,229,208,229,229, 229,229,  0,229,229,208,  5,208,\n  6,229,229,229,229,229,229,229,   0,208,228,208,229,229,229,  0,\n208,208,229,229,229,229,229,229, 229,229,229,229,229,229,229,229,\n\n// state[84 + 2] 0x004380 Byte 3 of 3 (property)\n229,229,229,229,229,208,208,229, 229,229,229,208,229,229,208,229,\n229,229,229,208,229,229,229,229, 229,229,229,  3,208,229,  3,229,\n208,229,229,  0,229,  6,229,229, 229,228,229,229,  0,208,229,229,\n229,  0,229,229,208,208,229,229, 229,229,229,229,229,229,208,229,\n\n// state[85 + 2] 0x0043c0 Byte 3 of 3 (property)\n208,229,229,229,229,208,229,  0, 208,229,233,233,229,229,229,208,\n208,229,229,229,229,228,229,208, 208,229,229,208,208,231,233,  0,\n229,208,208,229,229,208,229,  0, 208,229,229,229,233,217,  4,228,\n228,229,208,208,  0,229,229,228, 233,208,208,208,229,229,  0,229,\n\n// state[86 + 2] 0x004400 Byte 3 of 3 (property)\n229,229,229,229,208,208,219,229, 228,229,229,229,233,229,208,  0,\n229,229,229,208,229,229,229,  0, 229,229,208,208,228,208,229,229,\n  0,208,228,208,228,  0,229,229, 229,229,  6,229,229,  0,229,229,\n229,208,229,229,229,229,  0,229, 229,229,229,208,208,229,229,229,\n\n// state[87 + 2] 0x004440 Byte 3 of 3 (property)\n229,229,208,  0,229,227,229,229,   0,229,229,229,229,229,208,229,\n  0,233,  0,228,229,229,  6,  0, 229,229,208,228,229,208,208,229,\n229,229,229,229,229,229,229,228, 233,  0,229,  0,229,233,  6,229,\n229,208,229,229,208,208,228,  6, 219,229,228,229,229,229,  6,229,\n\n// state[88 + 2] 0x004480 Byte 3 of 3 (property)\n229,229,208,208,229,229,208,  6, 208,229,229,229,229,208,208,229,\n229,194,229,208,233,229,208,208, 208,  6,208,208,  0,208,229,208,\n208,229,228,208,229,229,229,229, 208,233,208,233,208,229,  6,  6,\n229,228,208,233,208,229,233,229, 229,  0,208,229,229,208,172,  6,\n\n// state[89 + 2] 0x0044c0 Byte 3 of 3 (property)\n217,194,208,229,229,208,229,229, 229,208,227,229,228,229,208,229,\n233,229,208,194,172,  6,231,229, 229,229,229,  0,229,229,229,208,\n229,  0,208,208,208,208,233,208,   6,208,208,208,  0,208,208,208,\n208,229,  0,208,229,233,233,208, 229,208,233,  6,229,208,229,229,\n\n// state[90 + 2] 0x004500 Byte 3 of 3 (property)\n208,208,229,229,  0,227,233,229, 228,229,233,229,208,233,208,229,\n229,229,229,229,208,229,229,208, 208,208,208,229,208,208,229,208,\n229,229,208,208,228,  0,208,208, 208,  5,229,  5,208,229,229,229,\n229,208,  0,229,208,233,229,229, 208,208,229,233,228,229,208,229,\n\n// state[91 + 2] 0x004540 Byte 3 of 3 (property)\n229,208,  6,194,229,208,229,  0, 229,229,229,229,228,208,208,208,\n  6,208,  0,229,208,208,208,208, 208,208,229,208,208,  0,233,208,\n208,  0,208,219,208,229,  0,229, 229,229,  0,233,  0,229,  0,  0,\n229,227,229,208,  0,229,  0,  0, 229,208,  0,208,  0,229,228,208,\n\n// state[92 + 2] 0x004580 Byte 3 of 3 (property)\n208,208,229,229,208,208,229,233, 208,208,229,208,229,194,233,229,\n229,229,229,228,229,208,208,229, 229,229,229,233,229,  0,208,229,\n208,  0,229,233,  0,229,229,228, 229,229,229,229,  6,208,208,208,\n208,229,208,  0,  0,229,229,  0, 228,  0,208,229,208,208,  6,229,\n\n// state[93 + 2] 0x0045c0 Byte 3 of 3 (property)\n227,229,229,229,208,  0,229,208, 229,208,  0,208,208,229,208,229,\n229,208,229,229,227,208,  6,229, 229,228,229,208,208,228,208,233,\n208,229,208,229,229,228,208,229, 229,229,228,229,229,  6,208,208,\n229,229,  0,  4,208,229,  0,229, 229,208,229,  6,208,229,208,229,\n\n// state[94 + 2] 0x004600 Byte 3 of 3 (property)\n228,208,208,  0,229,229,  0,208, 208,229,229,208,231,228,208,228,\n228,  0,229,229,229,229,238,208, 228,208,229,  6,227,229,  6,229,\n229,228,208,208,229,208,208,208, 229,229,229,229,208,208,  0,229,\n  0,233,  6,229,229,229,229,229, 229,  0,228,229,229,229,229,229,\n\n// state[95 + 2] 0x004640 Byte 3 of 3 (property)\n229,228,  0,229,229,229,229,229, 229,208,  6,  6,231,  3,208,229,\n229,229,229,  6,229,229,208,229, 229,208,229,208,229,217,228,229,\n229,  0,208,208,229,228,208,229, 208,208,229,  6,229,229,208,  0,\n208,229,228,208,228,229,  6,208,   0,228,233,  6,229,233,229,208,\n\n// state[96 + 2] 0x004680 Byte 3 of 3 (property)\n208,208,229,229,229,229,229,229, 228,229,229,208,208,229,208,208,\n229,208,208,229,229,219,229,229, 229,229,208,229,229,229,229,229,\n229,228,229,229,  3,229,229,229, 208,229,229,229,172,229,228,233,\n208,228,208,229,229,229,229,229, 228,229,208,229,229,229,229,208,\n\n// state[97 + 2] 0x0046c0 Byte 3 of 3 (property)\n229,148,229,229,229,229,229,229, 229,229,229,229,229,229,229,229,\n208,233,208,  6,208,228,229,229, 229,229,229,208,208,229,229,229,\n229,208,229,229,229,  0,233,208, 208,229,229,229,229,228,228,229,\n229,228,229,229,229,229,229,229, 208,229,229,229,229,208,229,229,\n\n// state[98 + 2] 0x004700 Byte 3 of 3 (property)\n208,208,208,229,208,229,229,229, 229,208,229,228,228,229,229,228,\n229,229,229,229,229,229,208,229, 229,229,229,229,229,229,229,228,\n229,229,228,231,  6,  6,  6,  6,   6,  0,229,229,228,229,229,208,\n229,208,  0,  3,208,208,229,229, 229,208,229,229,229,229,208,  5,\n\n// state[99 + 2] 0x004740 Byte 3 of 3 (property)\n229,229,208,208,229,229,208,229, 229,  0,208,229,208,229,229,229,\n229,229,229,229,229,208,229,229, 208,  6,229,  6,229,229,208,229,\n229,229,229,208,228,208,229,229, 228,228,229,229,208,229,229,228,\n229,208,  5,229,229,229,229,233, 229,229,233,229,  0,229,208,228,\n\n// state[100 + 2] 0x004780 Byte 3 of 3 (property)\n229,229,229,229,229,229,208,217, 208,208,  5,229,  6,  0,  6,  6,\n  6,229,229,229,229,229,229,229, 229,229,229,208,208,229,229,229,\n229,229,229,208,229,229,229,229, 208,229,229,229,229,229,229,228,\n208,229,  6,229,229,229,229,208, 229,229,229,229,208,229,229,229,\n\n// state[101 + 2] 0x0047c0 Byte 3 of 3 (property)\n229,229,229,  0,229,229,229,208, 208,229,229,229,208,229,208,229,\n229,229,229,229,229,229,208,229,   0,229,208,229,229,229,208,229,\n229,229,227,229,229,229,228,229, 229,229,229,229,  0,208,  0,229,\n229,208,  6,  5,229,229,229,208, 229,229,229,  0,229,228,229,229,\n\n// state[102 + 2] 0x004800 Byte 3 of 3 (property)\n229,233,208,229,229,229,208,208,   0,229,229,229,  6,229,229,  0,\n229,229,229,229,208,229,172,208, 208,229,229,229,229,208,229,229,\n229,208,229,  0,229,229,229,229, 229,229,229,229,229,208,229,229,\n229,229,208,229,228,229,229,229, 229,208,  6,229,229,229,208,208,\n\n// state[103 + 2] 0x004840 Byte 3 of 3 (property)\n229,229,229,229,238,229,229,229, 229,229,229,208,229,229,228,229,\n229,208,229,229,229,208,229,  0, 229,229,  0,208,229,229,229,208,\n229,229,229,229,229,229,229,229, 229,208,229,229,229,208,229,229,\n229,233,229,229,229,208,229,229, 208,229,208,  6,229,208,229,208,\n\n// state[104 + 2] 0x004880 Byte 3 of 3 (property)\n  6,  6,  6,229,208,229,208,229, 208,233,208,229,229,229,229,  3,\n229,208,208,208,229,208,  0,172,   3,229,229,208,229,229,233,233,\n208,229,229,172,208,208,  0,229, 229,208,208,208,208,208,229,229,\n208,229,229,208,208,228,208,  5, 208,208,  6,208,208,229,208,208,\n\n// state[105 + 2] 0x0048c0 Byte 3 of 3 (property)\n208,208,208,229,208,208,208,208, 208,  3,229,208,208,229,208,208,\n233,208,  6,208,208,208,208,208, 208,229,208,228,229,208,208,208,\n208,229,208,208,229,208,172,229, 208,228,229,229,233,  5,208,229,\n208,229,208,233,228,229,229,  0,   0,229,229,229,229,229,229,229,\n\n// state[106 + 2] 0x004900 Byte 3 of 3 (property)\n  6,229,229,229,229,229,229,229, 229,229,229,229,208,229,228,229,\n229,229,229,229,229,229,229,229, 229,229,208,233,208,228,233,208,\n227,229,233,172,233,229,208,208, 229,  0,208,233,229,208,229,229,\n228,233,218,229,229,  0,229,228, 208,229,229,229,208,229,208,229,\n\n// state[107 + 2] 0x004940 Byte 3 of 3 (property)\n229,229,229,228,229,208,208,  0, 229,229,208,229,208,233,233,228,\n229,  0,208,229,208,229,  0,  0, 208,229,208,208,  3,229,208,208,\n229,208,233,229,229,  5,  0,208, 229,229,229,229,228,208,233,229,\n208,229,208,208,  5,229,228,  0, 229,  3,  0,  6,  6,  0,  6,  6,\n\n// state[108 + 2] 0x004980 Byte 3 of 3 (property)\n  6,  6,  6,  0,  6,  0,  0,233, 208,208,229,229,229,229,208,229,\n229,229,229,228,229,229,229,208, 229,229,228,  6,233,229,233,208,\n208,229,229,229,208,208,208,229, 229,  6,229,229,229,228,229,229,\n  4,229,229,229,228,229,  0,  0,   6,229,208,208,  0,233,172,  6,\n\n// state[109 + 2] 0x0049c0 Byte 3 of 3 (property)\n  6,229,229,208,233,229,229,229,   6,233,229,229,208,208,208,  0,\n208,208,229,229,228,229,229,229, 229,208,208,229,229,208,228,229,\n208,208,228,208,208,208,229,233, 229,  6,229,219,208,  6,208,208,\n229,229,229,208,229,229,228,208, 229,227,228,229,229,208,208,208,\n\n// state[110 + 2] 0x004a00 Byte 3 of 3 (property)\n208,229,229,  5,228,208,208,229, 229,208,229,208,208,229,208,229,\n229,229,229,229,227,229,233,229, 229,  0,  6,229,229,208,229,208,\n208,208,229,208,229,229,229,208, 229,233,229,208,233,208,208,208,\n229,229,229,229,  0,229,  5,229, 229,229,229,231,229,229,229,229,\n\n// state[111 + 2] 0x004a40 Byte 3 of 3 (property)\n208,208,208,229,  6,208,229,229, 208,229,229,229,229,228,  0,229,\n229,208,229,229,229,229,229,233, 229,229,229,229,229,208,229,229,\n229,208,229,208,  0,229,208,208,   0,208,229,233,229,229,208,229,\n229,229,229,229,229,229,229,229, 229,  0,229,208,229,208,229,229,\n\n// state[112 + 2] 0x004a80 Byte 3 of 3 (property)\n229,229,229,229,233,229,229,229, 229,229,229,208,229,208,229,229,\n229,229,  0,229,229,229,229,229, 208,229,229,229,229,229,208,  3,\n229,229,208,  5,229,229,229,208, 208,228,  3,229,229,208,229,229,\n229,208,229,229,229,233,229,228, 228,229,229,229,228,229,229,229,\n\n// state[113 + 2] 0x004ac0 Byte 3 of 3 (property)\n229,229,229,229,229,229,229,208, 229,229,229,229,229,229,229,229,\n229,208,229,233,229,229,229,208, 229,229,229,229,229,233,229,229,\n229,229,229,229,229,229,229,208, 229,229,229,228,229,229,229,229,\n229,229,229,229,229,208,229,229, 229,229,229,229,229,229,229,229,\n\n// state[114 + 2] 0x004b00 Byte 3 of 3 (property)\n  0,229,229,208,  0,229,229,229, 229,229,229,229,229,229,229,229,\n229,229,229,229,229,229,229,229, 229,  0,208,229,208,229,229,  0,\n229,208,228,229,229,208,229,229, 229,208,229,229,229,229,208,229,\n  0,229,229,  0,229,229,208,  0, 229,229,208,228,229,229,229,208,\n\n// state[115 + 2] 0x004b40 Byte 3 of 3 (property)\n229,229,229,229,208,229,229,229, 229,229,  0,208,208,229,208,  3,\n229,229,229,229,229,228,229,  0, 229,229,229,208,  3,229,229,208,\n229,229,229,208,229,  0,229,229, 229,229,  6,208,208,229,229,229,\n228,229,229,208,229,228,229,208, 229,229,208,229,208,208,208,228,\n\n// state[116 + 2] 0x004b80 Byte 3 of 3 (property)\n208,208,229,208,229,208,208,208, 208,229,208,208,229,217,229,208,\n208,208,208,229,229,229,229,229, 229,229,229,208,229,229,228,229,\n229,229,229,229,229,208,208,229, 229,229,229,229,208,229,229,208,\n229,229,228,229,  0,229,208,229, 229,229,229,229,229,229,229,229,\n\n// state[117 + 2] 0x004bc0 Byte 3 of 3 (property)\n  0,208,228,  6,  6,  6,229,229, 229,229,228,229,229,229,208,229,\n208,229,228,229,229,229,229,229, 229,229,229,228,229,208,229,229,\n229,229,229,229,229,229,229,229, 228,  3,229,233,233,229,229,229,\n229,229,229,208,229,229,208,229, 229,229,208,  3,208,229,229,229,\n\n// state[118 + 2] 0x004c00 Byte 3 of 3 (property)\n229,229,229,229,229,208,  0,233, 229,229,229,229,228,229,229,229,\n229,208,229,229,229,229,208,233, 229,208,208,208,208,229,229,  0,\n233,229,229,208,229,229,229,229, 208,229,208,229,229,229,  3,229,\n208,208,229,  3,229,233,  3,229,   0,208,233,229,  0,229,208,229,\n\n// state[119 + 2] 0x004c40 Byte 3 of 3 (property)\n229,  0,229,208,208,229,208,229, 208,229,  0,229,229,  0,229,229,\n229,  0,  0,229,208,  0,208,229, 229,229,227,  0,  0,229,208,229,\n208,229,229,  0,229,  0,208,208,   5,229,  3,208,229,229,229,208,\n228,229,208,208,219,229,233,229, 227,229,229,229,229,208,  0,208,\n\n// state[120 + 2] 0x004c80 Byte 3 of 3 (property)\n229,208,208,229,229,229,208,  3, 217,229,229,229,229,229,208,208,\n229,229,229,229,229,229,229,208,   6,229,229,  0,229,  6,  6,  6,\n  0,231,  0,  0,208,208,229,229, 229,229,208,208,228,229,208,208,\n  0,229,229,228,229,229,  3,  5, 229,229,229,229,227,228,228,208,\n\n// state[121 + 2] 0x004cc0 Byte 3 of 3 (property)\n229,229,  0,208,228,229,229,229, 208,229,229,229,229,229,229,229,\n229,228,229,208,229,229,229,208, 229,229,229,229,229,229,229,  0,\n229,  0,208,229,208,208,229,  0, 229,229,208,229,208,229,229,229,\n229,  0,229,229,229,229,208,229, 229,219,229,229,229,229,229,229,\n\n// state[122 + 2] 0x004d00 Byte 3 of 3 (property)\n229,229,229,229,208,229,229,228, 227,229,229,229,227,229,228,229,\n208,229,229,  6,  0,  0,  0,  0,   0,  0,229,229,229,229,229,228,\n229,228,  0,208,229,  0,229,229,   3,208,229,229,229,229,229,229,\n208,229,229,208,229,  0,229,229,   0,229,229,208,229,208,229,229,\n\n// state[123 + 2] 0x004d40 Byte 3 of 3 (property)\n229,229,229,229,229,229,208,229, 229,208,229,229,229,  0,229,229,\n229,  0,229,229,208,229,229,229, 229,229,229,208,229,229,229,229,\n229,229,  0,  0,229,229,229,  0, 208,229,229,229,229,229,229,  0,\n  0,229,  0,229,229,229,229,228, 208,229,229,208,229,229,229,229,\n\n// state[124 + 2] 0x004d80 Byte 3 of 3 (property)\n229,208,229,229,208,229,229,208, 208,229,229,229,208,229,229,229,\n229,228,229,229,229,229,229,229, 229,229,229,229,229,229,  0,229,\n229,229,229,229,229,229,229,208, 229,229,229,229,233,  6,  0,233,\n228,208,  6,208,229,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[125 + 2] 0x004e00 Byte 3 of 3 (property)\n140, 88,231,138,190,190,231,145, 103,136,136,140,231,138,114,232,\n130,134,231, 28,118, 68,136,190, 137, 68, 26, 72, 11, 16, 68, 25,\n231,117, 72,  0, 28, 28,143, 72,  72,231, 10,118,231, 68,231,  0,\n 10,231,138,231, 28,  0, 47,231,  53,140, 28,134,116,128, 28, 47,\n\n// state[126 + 2] 0x004e40 Byte 3 of 3 (property)\n237,237,194,136,220, 88,231,231,  72, 28,  0,111,133,115, 85,140,\n 16,231,118,120, 72,203,138, 15,  85,136,231,231,233,138, 68,126,\n 16, 28,231,231,  0,231, 16,231,   0,204,  0,231,231,231,231,231,\n 28, 65,231,136,231,231,231,  0, 231,231,231,231,  0,231, 97,231,\n\n// state[127 + 2] 0x004e80 Byte 3 of 3 (property)\n 44,231, 75,231,231,231,134,  0, 103, 65,203,137,138,233,128, 98,\n  0, 99,140,191,140, 53,191,191,  53,111, 10,118, 92, 72, 78,115,\n231,140, 68,207,138, 68,130, 28,  68,133,191,126, 35,137,126,231,\n191,191, 16, 72,233,207,191,229, 191,191,140,233,191,191, 72, 26,\n\n// state[128 + 2] 0x004ec0 Byte 3 of 3 (property)\n118, 68,231,230,201, 28,120, 68, 220,  0,137,137,231,144, 16,116,\n231, 63,220, 72,138,106,136,126,  88, 88,191,191,191,189,199,121,\n231,191,191,137,140,138,191,191, 207,191, 16,233, 10,172, 15,191,\n136,191, 88,221,191,220,140, 28, 191,  0,191,140,191,144,191,118,\n\n// state[129 + 2] 0x004f00 Byte 3 of 3 (property)\n233,135,232,206,233,191,212,207, 230,206,137,231,220,115, 53,137,\n 68, 88,  0,  0,  0,204,  0, 26,  28,141,145,  0,231,117, 72, 16,\n 28,231,220,231, 16,  0, 63,  0, 231,  0, 98,191,  0,221,  0, 68,\n144,207,231,  0,137,  0,111,  0,  88,231, 97,  0,137, 68,231,  0,\n\n// state[130 + 2] 0x004f40 Byte 3 of 3 (property)\n231,  0,231, 88,  0,  0,126, 87,  27,232,  0,  0,211,140,137, 88,\n105, 68,  0, 65, 25,136,231,201, 209, 35,120,126,135,199,197, 72,\n118,  0,204,118,199,220,  0,  0, 231, 85,232,  0,130,  0,211,121,\n118,231,191,111,221, 87,164,207, 133,128, 72,233,111, 72,204,136,\n\n// state[131 + 2] 0x004f80 Byte 3 of 3 (property)\n128,  0,233,115,199,  0,121,207, 115,  0,233,136,  0, 88,220,209,\n221, 87,231,231,232,231,121,118, 198,  0,231,140,  0,134,  0,  0,\n108, 15,  0, 72,  0, 72, 98, 16, 133,235,  0,231,191,203,135, 68,\n  0,  0,  0,  0,  0,140, 87,127,   0,231,  0,  0,  0,231,231,136,\n\n// state[132 + 2] 0x004fc0 Byte 3 of 3 (property)\n231,232,146,134,115,233,231,204, 231,231, 68,204,  0,231,189,118,\n118,201,  0,232,231,  0,  0,136, 115,232,201,232,232,140,118,111,\n 75,140,232, 44,232,232,231,231, 191, 72, 72,231,210,128,136,138,\n  0,144,231,116,204, 47,197,  0,  68,231, 92,231,231,231,121,231,\n\n// state[133 + 2] 0x005000 Byte 3 of 3 (property)\n232,  0,232,  0,  0,198,121,  0,   0,146,  0,143,206,137,231,199,\n191, 27,136,230,199,207, 88,207, 130,138,126,206,233,191,191,137,\n231,124,204, 47, 15,197,138,233, 232, 85,118, 87,206, 47,233,220,\n204,204,231,  0,231,191,101,128, 133,172,133,167,125,220, 16,212,\n\n// state[134 + 2] 0x005040 Byte 3 of 3 (property)\n233,199,191,201,172, 72,191,118, 119,143,191,191,208,190,206,134,\n172,172,191, 72,231, 97,231,233, 191,231,125, 72,136,231, 72,172,\n191,172,233,191,191,136,231,235, 172,191,190,231,231,198,231,231,\n198,198,105,231,146, 91,138,144, 231,231,198,191,198,146,  0, 16,\n\n// state[135 + 2] 0x005080 Byte 3 of 3 (property)\n 51,231,233,231,231, 68,231,231, 191,231,231,231,221, 88,231,231,\n231,143,231,231,231,190,204,191,  87, 87, 72, 72, 72,172, 72,231,\n231,231, 25, 72,207,235,207,231,  16,191,198,203,100,143,  0,221,\n  0,  0,126, 75,232,107,231, 87,   0,  0,  0,118,  0,231,146,231,\n\n// state[136 + 2] 0x0050c0 Byte 3 of 3 (property)\n231,  0,204,231,231,131,231,231, 231,232,198,231,231, 15,231,136,\n231, 76,231,231,231,116,170,232, 231,231, 88,  0,231,231,238,231,\n231,  0,231,231,  0,129,231, 68, 232,231,231,231,  0,197,206,231,\n233,127,231,191,231,118,231,231, 231, 23,231, 68,231,231,232,  0,\n\n// state[137 + 2] 0x005100 Byte 3 of 3 (property)\n 87,198,119,231,146,231,206,231, 232, 50,233,199,233,191,233,191,\n199,191, 68,191,206,121,231,191, 129,231,101,220,220,  0,231, 87,\n  0, 51,231,  0,207,233,231,  0,   0,  0,107,233,  0,  0,191,212,\n207,128,119, 72,207,199,231,121, 174,232,189,199, 50,  0,231, 72,\n\n// state[138 + 2] 0x005140 Byte 3 of 3 (property)\n201, 68,231,138,137,140,136,119, 137,136,231,134, 78,138,116,  0,\n 15, 98,127,231,118,232,128,204, 207,  0,114,233,136,  0,  0,231,\n235,  0,118,  0,231,137,  0, 21, 140, 75,215,136,138,138,126,220,\n 16,140,220, 28, 16,136,118,140,  88, 63,  0, 28,140, 98,212,  0,\n\n// state[139 + 2] 0x005180 Byte 3 of 3 (property)\n 67,  0,231,231,231,145, 15,206,  72, 67,143,  0, 16,136,231,204,\n231,109,136,231,  0,130,231, 88, 231,145,231, 10, 26,231,221,  0,\n134,231,199,212,138,136,235,212,  92, 72,118,198,137,207, 72, 98,\n118,231, 72, 28, 44, 28, 74,136,   0,  0,  0, 16,207,201,199,220,\n\n// state[140 + 2] 0x0051c0 Byte 3 of 3 (property)\n133,  0,  0,211,101,232, 99,207, 211, 72,230,111,140,146,  0, 28,\n231, 72,  0,  0,  0,  0,231,231,   0,  0,  0,100,194,138,231,  0,\n 72,134,231,  0, 16,231, 15,116,   0,231,116,179,231, 72,231, 16,\n134, 76,  0,120,  0,198,140,231, 137, 88,137, 10,191, 97,203, 72,\n\n// state[141 + 2] 0x005200 Byte 3 of 3 (property)\n136,118,235, 53,231,231,137,137, 105,  0, 88,204,  0,191,197,  0,\n  0,140, 10,211,231,231,231,138,  16, 10, 16, 28,  0,103,  0,  0,\n 16,  0,  0,  0,103,146,  0,231,  67,136, 75, 28,  0,231,118,  0,\n115,  0,211,190,  0,  0,139,136,  88, 53, 88,137,  0,220,231,  0,\n\n// state[142 + 2] 0x005240 Byte 3 of 3 (property)\n  0,118, 16, 88,198,  0,  0,143,   0,211,100,119,111,136,121,231,\n235, 16,211,  0,126,  0,138,231,   0,133,207, 68,206,130,231,207,\n231,233,  0,117, 15,145,191,128, 207,132,126,  0,220,  0,233,134,\n101,172,100,233,204,143,  0,211,   0,220,  0,220,  0,201,  0,120,\n\n// state[143 + 2] 0x005280 Byte 3 of 3 (property)\n220,  0,231, 27,204,191,  0, 87, 111, 76,206,191, 72, 77,212,212,\n  0,122,233,221,198,191,191,191, 191,191,191,135,191, 72, 26,138,\n140, 26,231,135,212,220,199,212,  28,134,140,134,232,206,  0,235,\n  0,142, 98, 28,117,206,212,212, 220, 15,  0,231,199,231,111, 28,\n\n// state[144 + 2] 0x005000 Byte 2 of 3 (relative offsets)\n-11,-10, -9, -8, -7, -6, -5, -4,  -3, -2, -1,  1,  2,  3,  4,  5,\n  6,  7,  8,  9, 10, 11, 12, 13,  14, 15, 16, 17, 18, 19, 20, 21,\n 22, 23, 24, 25, 26, 27, 28, 29,  30, 31, 32, 33, 34, 35, 36, 37,\n 38, 39, 40, 41, 42, 43, 44, 45,  46, 47, 48, 49, 50, 51, 52, 53,\n\n// state[145 + 2] 0x0052c0 Byte 3 of 3 (property)\n232,119,  0,140,  0,116,  0,140,   0,103,  0, 72,  0,231,220,  0,\n 72,207,138,  0,  0, 87,233,204, 137, 87,  0,129,  0,109,122,106,\n231,  0, 87,161,137,  0,232, 15, 212,191,207,128,128,133,207,128,\n206,221, 44, 76,  0, 20,220,221,  75,231,201,127,  0,  0, 68, 97,\n\n// state[146 + 2] 0x005300 Byte 3 of 3 (property)\n 72,203,117,  0,148,138,118,231,  67,  0,  0,204,  0,201,  0,204,\n201,231,  0,  0,  0,189,140,136,   0,126,231,  0,  0,111,  0,  0,\n103,137,  0,111,231,  0,231,231,   0,  0,126,  0,  0,204, 72, 25,\n  0,129,  0,231,  0,231,231,  0, 231, 35, 71, 65,  0,231,118,103,\n\n// state[147 + 2] 0x005340 Byte 3 of 3 (property)\n 21,138,231,137,221, 78,231,118,  97,118,137,  0,231, 87, 28, 26,\n231, 51,105,136,107, 16, 16,140,  15,  0,140,  0, 67,  0,167,235,\n135,144, 98,231, 63,  0,126, 16, 148,231,231, 26,231,  0,233, 68,\n140,137,232,126, 65, 88,  0,144,  88,129,235, 21,211,232,  0, 68,\n\n// state[148 + 2] 0x005380 Byte 3 of 3 (property)\n  0,  0, 16,231, 68, 28, 10,  0,   0, 16,  0, 16, 72,235,  0,  0,\n220,220,204,191,  0, 63,190,231, 115,210,137,220,207,121,  0,137,\n197,207, 72,  0,231, 68, 72,207,  65,103,191,220,220,119,191,220,\n232,191,119, 15,207,191,198,220, 212,233,220,138,212,133,212, 28,\n\n// state[149 + 2] 0x0053c0 Byte 3 of 3 (property)\n212,124,145,122,191,207,191,  0, 140,134,138,140, 65,137, 15, 72,\n  0, 28,  0,191, 68,207,137,137,  28, 65,231, 68,  0,231,  0,201,\n 72, 87,143,140, 68, 68,144,207, 209,103,126,134,115,130,118,140,\n138,103,136,136,  0,233,142,145, 115, 63,231,233,207,191,  0,  0,\n\n// state[150 + 2] 0x005400 Byte 3 of 3 (property)\n191,120,207,118,140,220,199,220, 137,136,138,121,136, 88, 67, 68,\n140,137,170, 72,210, 16,199, 72,   0,  0,  0, 88,  0,111, 85, 88,\n103,199,  0,231,220,220,126,144,  16,209,  0, 88,128,199,209, 16,\n  0,132,207, 75, 63,118,119,  0, 136,103,  0,134,138,202, 88,231,\n\n// state[151 + 2] 0x005440 Byte 3 of 3 (property)\n118,  0,146,206,  0,207,136,221, 138, 44,138,199,  0,231,121,  0,\n 72,117,231,233,231, 72,  0,207,  26,  0,  0,191,191,  0,  0,117,\n  0,  0,144,221,207,  0,122,  0, 137,  0,101,233,207,128,128, 72,\n191,130,233, 88,128,118,231,121, 210,  0,  0,201,137,137,221,204,\n\n// state[152 + 2] 0x005480 Byte 3 of 3 (property)\n115,199,233,207,201,  0,103,  0, 231,  0,231, 53,139,  0, 88, 72,\n209,231,130,  0,207,130,132,231,   0,191,130,191,231,220,231,231,\n  0,232,231,235,172,116,206,130, 128,119,130,201,126,232,  0,120,\n  0,118, 44,136,  0,  0,  0,231,  67,  0,231,206,231,137,204,199,\n\n// state[153 + 2] 0x0054c0 Byte 3 of 3 (property)\n 68,136,233,231,115,  0,130,130, 144, 88,  0,  0,191, 28,118,221,\n220, 72,207,235,235,  0,211,128, 231,235,207,  0,  0,220,210, 72,\n  0,107,231,  0,  0,118,144,207,  68,121,118,  0,  0,126,115,  0,\n  0,221, 68,  0,  0,  0,  0,  0,   0,231,138,  0,118,206,231,232,\n\n// state[154 + 2] 0x005500 Byte 3 of 3 (property)\n231,208,231,  0,109,  0, 35,136,   0,118,  0,  0,  0,  0,204,199,\n 68, 72,  0,  0,130,  0,116,  0,   0,  0,  0,191,  0,  0,  0,  0,\n212,  0,207,  0, 72,  0,  0,206, 220,  0,  0,231,121,211,144,136,\n207,136,220,121,212,199,207, 25, 131,233,220,220,  0,231, 88,231,\n\n// state[155 + 2] 0x005540 Byte 3 of 3 (property)\n231,210,  0,130, 88,191,137,233,   0,191,118,233,231,231,207,107,\n232,231,  0, 44,  0,210,202,204, 220,  0,  0,  0,201,231, 96, 27,\n220,132,  0,129,118,118,132,207, 220,220,130,207,191,  0,179,212,\n191,  0,207,220,212,206,199,206,  72,  0,220,206,111,  0,121,207,\n\n// state[156 + 2] 0x005580 Byte 3 of 3 (property)\n115,232,120,115,140,231,167,121,   0,136,118,105,207,  0,199,233,\n212,221,207,207, 20,191,133,128, 138,206, 87,212,136,126,231,206,\n  0,  0,  0,  0,  0,  0,221,103, 204,116, 87,116, 91,  0, 27,  0,\n117,199,129,208,  0,121, 15, 16,   0,191,  0,118,  0,199,148,231,\n\n// state[157 + 2] 0x0055c0 Byte 3 of 3 (property)\n  0,  0,  0,  0,194, 88,129,204,   0,199,221,  0,232,  0, 27,207,\n207,208,199,130,206,207,207,128, 128, 72, 97, 72, 68,208,  0,201,\n  0,121,231, 51,189,210,209,  0, 130,209,207,220,233,207,  0,121,\n  0,  0,199,207,  0,  0,127,199,   0,232,  0,  0,  0,126,231,  0,\n\n// state[158 + 2] 0x005600 Byte 3 of 3 (property)\n199,  0,  0,  0,  0,220, 87,231, 206,126,  0,  0,199,129,118,232,\n  0,231,  0,221,107,  0,204, 76,  92,  0,220,144,211,  0,233,118,\n  0,  0,  0,220,233,  0,  0,199,   0,146,  0,  0,  0,220,204,119,\n204,145,137,231,118,231,209,  0, 129,206,  0,118,231,  0,  0,118,\n\n// state[159 + 2] 0x005640 Byte 3 of 3 (property)\n231,121,117,  0,  0,  0,  0,231,   0,232,  0,  0,105,  0,206,  0,\n231,  0,231,129,220,231,  0,121, 221,230,  0, 44, 72,  0,  0,  0,\n221,  0,130,207,206,210,232,220,  97,209,126,206,130,  0,207,199,\n207,206,232,  0, 87,  0,130,  0, 121,121, 92,207,191,207,220,  0,\n\n// state[160 + 2] 0x005680 Byte 3 of 3 (property)\n121,  0,220,220,207,230,198,119, 220,  0,231,212,220,207,209,209,\n127,220,220,207,231,130,  0,210,   0,121,204,  0,210,231,  0,207,\n231,  0,101,128,220,143,206,221, 129,  0,  0,  0,220,233,121,220,\n  0,  0,  0,238, 75,  0,204,209,   0,  0,  0,  0, 68,  0,  0,  0,\n\n// state[161 + 2] 0x0056c0 Byte 3 of 3 (property)\n194,105,121,101,  0,  0,231,  0, 204, 19,118,  0,221,121,231,231,\n  0,121,  0,194,233,  0,231,206, 198,  0,137,140,  0,204,136,233,\n134,199, 26,117,120,191,212,120, 128,133,208,230,128, 26,198,232,\n135,128, 15, 24, 28,220,207,207,   0,189,136,231,  0, 71, 16,201,\n\n// state[162 + 2] 0x005700 Byte 3 of 3 (property)\n203,  0,  0,140,206,  0, 16,211, 118,197,231, 75,220,122,  0, 24,\n  0,231,107,129,  0,231, 19,  0, 127,  0,  0,  0,206,  0,  0,137,\n  0,231,  0,128,  0,  0,231, 15, 138, 72,207,231,231, 68,210,232,\n137,  0,  0,141,232,  0,  0,231, 231,199, 16,206,  0,  0,144,  0,\n\n// state[163 + 2] 0x005740 Byte 3 of 3 (property)\n144,211, 44,  0,  0,  0,  0,140,   0,  0,136,211,204,141,118, 72,\n126,111,221,  0,221,  0,  0, 16,   0,231, 28,133,  0, 98, 72, 72,\n 72, 85,  0,  0,126,231,134,231, 124,189,136,232,  0,207,231,120,\n174,  0,  0,207,221,204,  0,209,   0,  0,231,199,232,211,  0,231,\n\n// state[164 + 2] 0x005780 Byte 3 of 3 (property)\n210,  0,140,144, 72,212,  0,231, 237,231,  0,140,207,  0,212,  0,\n231,231, 72,233,233,231,  0,231, 231,231,199, 72,231,191,231,207,\n206,212, 88, 53,232,  0,133,220,   0,191,235, 98,231,212,118,212,\n191,212,  0,191,220,208,128,231, 207,128,207,207,191,191,191,207,\n\n// state[165 + 2] 0x0057c0 Byte 3 of 3 (property)\n 98,  0,199,126,207,220,232,191, 233,  0,235, 88,233,  0,135,204,\n  0,  0,197,231, 89,121,191,191,   0,179,212,212,105,191,207,137,\n115,207,191,191,127,212,  0,210, 231,231,  0,  0,231,199,231,  0,\n  0,  0,231,231,105,204,232,143, 206,115,137,232, 24,221,231,231,\n\n// state[166 + 2] 0x005800 Byte 3 of 3 (property)\n109,221,136,206,231,143,140,121, 231,204,204,231,  0,233,206,231,\n231,207,  0,  0,  0, 65,  0,  0, 231,232,207,191,191, 72,229, 72,\n220,118,191,220,140,128,231,231,   0,  0,136,207,230,231,  0, 51,\n 74,146,  0,231,146,134,  0,231, 231,231,117,  0,  0,231,231,204,\n\n// state[167 + 2] 0x005840 Byte 3 of 3 (property)\n116,117,  0,231,231,231,  0,231, 221,231,143,232,118,207,  0,221,\n  0,115,231,  0,140,231,  0,109, 115,116,116,  0,  0,  0,138,  0,\n  0,231,121,231,232,  0,  0,  0, 231,117,  0,126,212,129,231,211,\n231,204,198,  0,  0,143,  0,  0, 231,129,  0,  0,231,232,105,  0,\n\n// state[168 + 2] 0x005880 Byte 3 of 3 (property)\n206,231,231,140,  0,118,  0,231, 231,206, 19,  0,231,235,207,  0,\n231,  0, 98,137,  0,212,220,117, 129, 63,  0,191, 87,233,125, 68,\n220,  0,233,204,  0,  0,220,  0, 138,118,220,232,122,231, 96,191,\n207,233,191,109,191,212,231,231, 231,231,198,206,  0,128,129,199,\n\n// state[169 + 2] 0x0058c0 Byte 3 of 3 (property)\n231, 88,231,  0,  0,121,191, 91, 207,  0,101,191,117,  0,174,231,\n231,209,199,127,231, 35,231,231, 130,197,232,231,203,233, 25,121,\n232,  0, 19,  0, 85,231,  0,231, 231,121,  0,136, 68,231, 65, 78,\n145, 44, 15, 63,231,  0, 72,116,   0,121,143,231,129, 51,  0,231,\n\n// state[170 + 2] 0x005900 Byte 3 of 3 (property)\n234,231,231,  0, 28,231,199, 28, 212, 15, 72, 72,207, 28,207,137,\n 72,231,  0,  0,170,103,136,  0, 191,103,136,172, 88,231,231, 16,\n 27,  0,146,  0,232, 25,231,136, 231,138,136, 88,232, 68,140,141,\n231,140,232,  0, 16,231,  0, 68, 120, 16, 16,  0,233,  0, 17,  0,\n\n// state[171 + 2] 0x005940 Byte 3 of 3 (property)\n206,231,191,  0,103,231,231,138, 106, 68,231, 16,231,231, 67, 88,\n204, 88,231,231,134, 68, 26,118, 111,  0,167,231,231,231,  0,  0,\n118,  0,134,231,  0, 71,  0, 78,  15,232,146,  0,204,161,146,  0,\n  0,  0,  0,137, 53,  0,125,  0, 115,125,231,210,232,138,  0,231,\n\n// state[172 + 2] 0x005980 Byte 3 of 3 (property)\n204,232,126, 68, 68,  0, 16, 16,  72,  0,100,231,  0,118,231,129,\n  0,  0,130,138,  0,  0,137,199, 204,136,231,231,  0, 23,118,231,\n  0,232,  0,232,118,138,221,207, 136,207,220, 63,116,231,144, 72,\n  0,231, 99,122,207,191,191,212, 212,136,233,103,207,191, 68,212,\n\n// state[173 + 2] 0x0059c0 Byte 3 of 3 (property)\n191,231,212,232,  0,231,118,207, 199, 44,144,136,233,122,207,220,\n126, 68,199,126,139,220,221,128,  72,233, 67,220, 68,130,233,212,\n  0,231,212,199,128, 88, 87,235, 126,191,106, 44, 85,207,204,  0,\n191,232,  0,191, 72,141,101, 72, 220,207,233,134,231,  0,220,103,\n\n// state[174 + 2] 0x005a00 Byte 3 of 3 (property)\n207, 68,  0,118, 72,128,128, 72, 128, 72,191,231,207,231,231,  0,\n  0, 67,233,118,231,231,  0,231, 137,231,231, 25,118,  0,231,144,\n100,231,220,120,231,118,  0,191, 231,137,231,231,  0,231,  0,117,\n231, 16, 63,221,128,231,126,231, 232,  0,231,  0, 35,  0,191,191,\n\n// state[175 + 2] 0x005a40 Byte 3 of 3 (property)\n199, 51,128, 72, 72,191,134, 72,   0,126, 72,  0,232,232,199,207,\n232,231,  0,204,  0,130,221,  0,   0,231,136,  0,231,  0,221,  0,\n  0,231, 67,231,  0,232,107,199,   0,  0,209,231,204,204,  0,231,\n231,231,231,231, 98, 98,191,144,   0,  0, 72,  0,  0,  0,  0, 88,\n\n// state[176 + 2] 0x005a80 Byte 3 of 3 (property)\n  0,  0,  0,  0,204,231,231,  0,   0,231,  0,  0,  0,231,  0,231,\n  0,231,134,  0,  0,  0,221,232,   0,  0,140,103,211,  0,204,  0,\n  0,  0,  0,231,231,231,231,204, 231,231,235,231,232,220,232,232,\n233,  0,130,118,191,231,231,  0,   0,  0,204,  0,199, 25,206,231,\n\n// state[177 + 2] 0x005ac0 Byte 3 of 3 (property)\n231,137,118,231,232,212,232,  0, 210, 88,231,232, 88,  0,  0,220,\n231,  0,220,  0,207,  0,120,204, 208,231,208,  0,231,  0,231,231,\n  0,164,211,209,231,232, 99,220, 233,118,233,  0,191,207,191,220,\n 72,  0,231,233,231,204,231,191, 231,191,204,121,191,233,  0,  0,\n\n// state[178 + 2] 0x005b00 Byte 3 of 3 (property)\n231,231,  0,231,231,208,  0,  0, 204,106,231,204,131,231,  0,  0,\n  0,231,231,  0,  0,  0,231,207,   0,232,231,204,  0,204,  0,  0,\n  0,211, 44,  0,129,231,  0,191, 191,191, 67, 72, 65,191,128,231,\n 76,  0,190,  0,206,207,233,233, 204,231,  0,231,  0,  0,231,210,\n\n// state[179 + 2] 0x005b40 Byte 3 of 3 (property)\n199,231,  0,175,  0,204,  0,  0, 231,  0,  0,221,204,  0,231,  0,\n136,199,  0,206,138,126,233,140, 136, 16, 67,206, 67, 68,  0, 68,\n  0,  0,141,140, 68,232,145,  0,   0,144,191, 51,210,  0,  0,231,\n130,233,232,130,231,134,  0,231, 127,  0,171,  0,231,130,  0,211,\n\n// state[180 + 2] 0x005b80 Byte 3 of 3 (property)\n 72, 11,231,125,207, 88,231, 88, 137,140,  0, 68,140,116,221,140,\n231,231,211,199,231,139,231, 68, 140, 88,137, 88,138, 65, 28, 15,\n 16, 26,137,134,140,137,201,  0,   0,  0, 16, 67,232,  0,146,231,\n135,231,231,137, 88,140,140,  0, 115,136,  0,  0,231, 16, 16, 88,\n\n// state[181 + 2] 0x005bc0 Byte 3 of 3 (property)\n232,231,136,231, 87, 68,138, 68, 231,231,  0,  0,137,221,231,  0,\n209,231,136,115,231,  0,233,231, 231,231,  0,116,  0,101,126,140,\n233,138, 19,231,199,115, 76, 51, 115, 87,231, 75, 75,231, 97,232,\n118,231,207,197,  0, 76, 76,  0, 136, 28, 88, 16, 28,231, 15,145,\n\n// state[182 + 2] 0x005c00 Byte 3 of 3 (property)\n  0,138,117,  0,136,231,142,127,  27, 68,140,129,  0,127,143,136,\n220,136,231,162,128,191,126,231,  16,167,138,233,  0, 72,231,231,\n231,231,232,  0,126,  0,235, 72, 233,231,208,231,118,172,231,191,\n191,126,231,  0, 72,191,  0,129,  67, 68,111,116,126, 65,137,136,\n\n// state[183 + 2] 0x005c40 Byte 3 of 3 (property)\n134,138, 28,  0,232,137, 20,231, 103,191,145, 88,121, 51,111,118,\n206,136,  0,117,231,139,  0,231, 204,220,  0,220,127,  0,145,  0,\n115, 72, 50,232,107,137,  0,  0, 204,  0,  0,  0, 21,231,198, 68,\n  0,137,231,  0,  0,  0,231,  0, 207,115,230,191,191, 72,128, 81,\n\n// state[184 + 2] 0x005c80 Byte 3 of 3 (property)\n124, 63, 72,207, 72,231,211,231, 210,  0,207,207,206,221,231,  0,\n105, 67,231,231,118,  0,212, 26, 212,207, 72, 81,220,231,231,231,\n232,109,191,  0,231,231,232,  0, 198, 88,231,209, 47,128,  0,  0,\n  0,115,231,137,  0,232,231,209, 136,231,231,231,203,234,231,207,\n\n// state[185 + 2] 0x005cc0 Byte 3 of 3 (property)\n231,220,  0,235,191,203,  0,121, 204,231,  0,207,231,  0,221,231,\n  0,231,209,  0,221,  0,  0,  0, 231, 68,  0,231,231,231,231,  0,\n117, 53,  0,231,191,212,191,231, 136,235, 99,231,  0,130,  0,106,\n140,  0,  0,  0,161,231,109,  0, 231,  0,231,134,231, 75,231,  0,\n\n// state[186 + 2] 0x005d00 Byte 3 of 3 (property)\n233,129, 72,133,235,231,199,140,   0,220,  0,198,191,232,105,  0,\n 72,115,128,231, 68, 98,140, 68,  72, 76,199,118,212,128,  0,199,\n210,207,209,207,191,207,231,121, 128,103,220,212,191, 72,207,212,\n 98,191,207,207,130,207, 72,207, 207,133,207,231,128,207,220,231,\n\n// state[187 + 2] 0x005d40 Byte 3 of 3 (property)\n  0,207,233,231,  0,231,191,207,   0,  0, 72,206,126,231,232,231,\n 47,  0,231,231,  0,231,  0,231, 191,204,  0,220,203,  0,  0,231,\n231,  0,231,  0,231,  0,  0,  0, 231,137,231,  0,233,231,220, 47,\n  0,231,  0,231,  0,231,231,231,   0,231,231,  0,231,231,231,  0,\n\n// state[188 + 2] 0x005d80 Byte 3 of 3 (property)\n  0,  0,199,191,121,128,207,209, 191,128,  0,117,116,231,207,220,\n231,231,231,  0,211,231,  0,232,   0,207,  0,  0,  0,233,  0,  0,\n204,  0,238,231,  0,231,231,232, 231,  0,  0,  0,231,  0,198,  0,\n231,221,232,231,231,  0,231,233, 204,231, 51,231, 76, 51,  0,  0,\n\n// state[189 + 2] 0x005dc0 Byte 3 of 3 (property)\n  0,231,231,211,231,207,231,231, 231,232,231,231,116,115,231,  0,\n231,231,129,231,122,231, 51,231, 231,231,231,198,231, 53,135,231,\n232,136,118, 15,231,139,136,138, 140, 98,  0, 68,  0,231,136,191,\n231,140,118, 53,126,231,  0,111,   0,232,  0, 15,  0,103,136,122,\n\n// state[190 + 2] 0x005e00 Byte 3 of 3 (property)\n231, 72,140,134,231, 16,136,  0,  28,231,191,231,136,231,  0,220,\n 16,204, 98,231,221,144, 99,207,  72,194,201, 68,128, 51,207,220,\n231,207,204,231,231,119, 16, 72, 220,233,231, 91,  0,135, 10, 15,\n 15,  0,  0,143,231,231, 75,115, 140,231,231,  0,133,136,220,231,\n\n// state[191 + 2] 0x005e40 Byte 3 of 3 (property)\n119,191,235, 72,199,137,191,108, 191,212,212,128,105,191,191,207,\n191,207,191,207,206,138, 98,199,  72,233,231,233,231,  0,233,119,\n  0,105,115,129,231,  0,  0,  0, 231,231,  0, 20,231,231,231,231,\n231,231, 99,137,136,231,128,161,  88, 87,167,136,136, 68, 91, 11,\n\n// state[192 + 2] 0x005e80 Byte 3 of 3 (property)\n  0, 15,231, 15,135,  0, 28,138, 210,231,136,221,231,231,  0,134,\n 98,220,232, 28, 28,140,201, 88, 191, 16, 68,233,139,191, 72, 16,\n199, 72, 72, 72,199,210,140,137, 128,  0,  0,109,231,140,207,191,\n231,231,  0,  0,231, 53, 53,136,  68,206,  0,231,231,231,170,  0,\n\n// state[193 + 2] 0x005ec0 Byte 3 of 3 (property)\n  0,127,121,117,211,  0,161,231,  91,115,138,204,210,204,  0,231,\n231,231,  0,126,204,221,130,231,   0,231, 17,233,  0,204,  0, 76,\n 17,204, 75, 76,231,  0,  0,231, 204,204,220,231, 68,  0,231,  0,\n204,231,  0, 77,231,  0,136, 68, 198,  0,134, 44,198,231,231, 68,\n\n// state[194 + 2] 0x005f00 Byte 3 of 3 (property)\n 28, 44, 16, 16,138,232,  0,204, 118,203,103,171,198,231,231,136,\n116,191,204, 68, 51,137,203, 68,  68,  0,  0, 88,231,211,  0,136,\n 10,231,220,231,  0, 92, 88, 68, 191, 68,  0, 98,212,206,191,108,\n233,137,212,207, 98, 87, 72, 87, 191, 72, 11, 98, 68,191, 44,191,\n\n// state[195 + 2] 0x005f40 Byte 3 of 3 (property)\n232,191,191,207,220,161,206,235, 127,220,162,  0, 51,233,121,  0,\n231,231, 16,145,231, 26,204, 88, 232,129,221,233,231, 99,220,  0,\n  0, 44,140,211,118,121, 53,206,   0,140,115,109, 68, 85,231,231,\n138,138,220,231,220,  0,210, 87, 232, 88,231, 26, 53,231,220, 87,\n\n// state[196 + 2] 0x005f80 Byte 3 of 3 (property)\n134, 67,197,191, 71,137,231, 72, 144,206,137,139, 87,231,  0,231,\n 68, 25, 88, 15,231,207,  0,138, 137, 96,231,  0,208,  0,122,  0,\n194,100,  0,  0,231,  0,  0,232, 103, 87,140,231,204,233,136,231,\n231,  0,  0, 44, 13, 21,  0, 82,   0,146,231,231,233,120,231,231,\n\n// state[197 + 2] 0x005fc0 Byte 3 of 3 (property)\n  0,231,  0,140,233, 88, 16,  0,   0,232,212,191,136, 88,220,191,\n206,206,206,128, 72,128,206,140, 103,136,212,128, 15,204,232,  0,\n 68,209,231,191,199,191,231, 16,   0,231,210,134,231,  0,221,231,\n231,118,231,232,231,137,  0,231, 233,  0,231,120,231, 68,220,164,\n\n// state[198 + 2] 0x006000 Byte 3 of 3 (property)\n128, 10,191,220,  0,207,212,  0,   0,  0,  0,  0,  0,221,118,233,\n231,231, 88,232,209,144, 88,231, 231,204,  0,204, 35,103,231,  0,\n 88,130,204,231,231,137,199,136,  68,232,136,231,231,  0,232, 88,\n231,231,  0,231,231,207,  0,231,   0,221,231, 28,  0,231,  0,220,\n\n// state[199 + 2] 0x006040 Byte 3 of 3 (property)\n231,202,197,201,231,204, 76,231,   0,  0,231, 53,  0,111,231,231,\n136,231,135,221,  0,121,231,  0,   0,201,204,  0,  0,231,  0,231,\n231,  0, 85,111, 68,109,  0,  0, 138, 68, 99,197,130, 68,  0,115,\n126,  0,231, 72,  0, 44,128,231, 220,220,191,207, 72,220,231,206,\n\n// state[200 + 2] 0x006080 Byte 3 of 3 (property)\n  0,233,191,231,118, 75,  0,231, 231,115,191,231,202,126,191,  0,\n  0,191,232,231,136,232,209, 72, 191,133,130,204,207,204,191, 88,\n136,133,191,137,235,212,145, 72, 144,101, 15,234, 98,  0,220,207,\n199,233, 88,190,201,206,136,207,  88,207,207,206,137,209,191,207,\n\n// state[201 + 2] 0x0060c0 Byte 3 of 3 (property)\n191,233,233,212,191,103,206,103, 191,235, 72,206,207,231,231,231,\n  0,137,  0,231,191,118,  0,231, 206,  0,105,231,140,  0,191, 68,\n 85, 76,231,117,231,231,209, 65, 145, 98,231,191,207,191,191, 72,\n137,129,204,140,199,231,130,231,   0, 88,164,204,  0,  0,  0,  0,\n\n// state[202 + 2] 0x006100 Byte 3 of 3 (property)\n232, 68,  0,231,  0,231,204,231, 130,136,  0,231,231,170,233,136,\n231,231,231,232,232,103,231,231,   0,231, 68, 87,129,231,  0, 88,\n235,231,231,209, 72,231,  0,115, 199,191,212,206, 72, 72,191,191,\n 72,231,  0,231,109,128,199,129,   0,  0,  0,231,215,231,232,124,\n\n// state[203 + 2] 0x006140 Byte 3 of 3 (property)\n231,  0,231,  0, 91,  0,  0,198,  68,  0,232, 87,140,204,140,  0,\n231,128,  0,231,  0, 68,231,  0,  25,231,204,231,231,231,  0, 91,\n231,231,136,107,148,198,  0,111, 140,  0,221,204,232,  0, 91,231,\n140,231,  0,204,231,206, 91,130,   0,  0,231,231,204,  0,129,231,\n\n// state[204 + 2] 0x006180 Byte 3 of 3 (property)\n  0,231, 87,231,  0,231,  0,231, 231,  0,131,209,211,204,103,  0,\n146,131,211,204,201,  0,231,231, 233,231,194,230,  0,  0,231,204,\n231, 72,231,  0, 87,  0,  0,100, 130, 87,232,131,201,204,198,221,\n233,231, 51,207,207,221,143,  0, 199,231,198,231,233,231,134,210,\n\n// state[205 + 2] 0x0061c0 Byte 3 of 3 (property)\n  0,231,118,189,235,191,233, 87, 115,129,201,130,199,228,212,191,\n101,220, 72, 72,  0,235,191,212, 191,235,235,  0,191,191,191,210,\n191,191,231,197,221,  0,206,  0, 230,  0,  0,  0,  0,  0,232,231,\n  0,231, 88,191,231,209,126, 75, 146,221, 91,  0, 78,231,204, 51,\n\n// state[206 + 2] 0x006200 Byte 3 of 3 (property)\n 91,  0,231,231,231,231,  0,232,  85,231, 68,  0, 68,171, 88, 11,\n140,115,138,231,189,206,144,220,  10,199,140,199,191, 72, 72,201,\n128,206,233, 72,  0,231,101,  0, 231,238,118,  0,220,191, 88, 44,\n 77,161, 27,121,138,  0, 21, 16,  44,  0,  0, 15,  0,210,210,134,\n\n// state[207 + 2] 0x006240 Byte 3 of 3 (property)\n140, 68,210,232,  0,231,232,136, 201, 53,  0,137,231,115,124,  0,\n231, 72,118,139,120, 15,  0,231, 141,  0,  0,118,  0,  0,204,231,\n232,  0,211,125,231,204,209, 26, 231, 16,191, 98,133,144,126,118,\n 16, 15,211,118,  0,231, 68,231,   0, 99,161,  0,115,221,144,140,\n\n// state[208 + 2] 0x006000 Byte 2 of 3 (relative offsets)\n-10, -9, -8, -7, -6, -5, -4, -3,  -2, -1,  1,  2,  3,  4,  5,  6,\n  7,  8,  9, 10, 11, 12, 13, 14,  15, 16, 17, 18, 19, 20, 21, 22,\n 23, 24, 25, 26, 27, 28, 29, 30,  31, 32, 33, 34, 35, 36, 37, 38,\n 39, 40, 41, 42, 43, 44, 45, 46,  47, 48, 49, 50, 51, 52, 53, 54,\n\n// state[209 + 2] 0x006280 Byte 3 of 3 (property)\n139,231,231,231,135,  0,210,  0,   0,111,134,231,  0,231,221,231,\n231,137,126,124,231,137,118,136, 136,  0, 16, 67, 15,231, 15,235,\n191,212, 16,231, 28, 28,231,231, 130,  0,231,137,118,232,231,231,\n  0,136,231,231,  0,138,231,  0, 221,136,211,233,103,140,231,207,\n\n// state[210 + 2] 0x0062c0 Byte 3 of 3 (property)\n  0,  0,115,220,199,145,125,115, 206,118,232,121,126,111,209,194,\n135,191,138,135, 85,231,118,103, 136, 88,121,115,144, 44,231, 16,\n101, 15, 72,128,  0, 16, 72,191,  16, 28,  0,231,134, 88,103,118,\n230,118,231,136,199,198, 15,115, 232,230,199,207,144,199,136,118,\n\n// state[211 + 2] 0x006300 Byte 3 of 3 (property)\n231,137,128,220,  0,  0,220,137, 206,118,207,231,121,231,128,  0,\n231,136,  0,  0,231,231,118,  0, 231, 15,128,191,231,191,191, 92,\n 72, 72,231, 72, 98, 26,  0,235, 100,  0,118,140,231,231,  0,103,\n231,  0,210,191,220,231,233,233, 207, 50,126,191,231,140,111, 15,\n\n// state[212 + 2] 0x006340 Byte 3 of 3 (property)\n231,233,207,231,199,209,118,128, 231,136,  0,206, 88,130,207,138,\n118,231,  0,231,  0,137,  0,101, 231,  0,  0,231, 13,  0, 72, 16,\n231, 72, 28, 72,231,231,  0,140, 146,194,  0,170,  0,220, 72,  0,\n  0,206,119,  0,  0,  0,209,130,   0,  0,103, 53,  0,231,231,  0,\n\n// state[213 + 2] 0x006380 Byte 3 of 3 (property)\n118,231,199,107,204,231,191,199, 140,144,  0,235,126,191,231,118,\n209,128,126, 72,207,191, 72,128, 137,129,231,107,231,207,220,116,\n115,107, 88,206,221,140,  0,134, 134,118,139,231,201,231,210,  0,\n130,231, 15,191,101,231,  0,191, 229,  0, 72,116,  0,  0,197,  0,\n\n// state[214 + 2] 0x0063c0 Byte 3 of 3 (property)\n204,  0,  0, 24,197,  0, 93,  0,   0,136,  0,231,  0,206,  0, 88,\n138,232,144,  0,231,  0,103,  0, 231,231, 87,107,  0,  0,  0,231,\n221,140,  0,130,232,231,231,231,   0,199,120,  0,231,118, 87,  0,\n231,231,  0,231, 88,231,197,231,   0,129, 44,231,  0, 72,231,  0,\n\n// state[215 + 2] 0x006400 Byte 3 of 3 (property)\n207, 98,191,  0,  0, 72,204,  0,   0,231,231,231,  0,107,231,118,\n209,231,231,118,121,  0, 25,131,   0,231,231,231,144,231,125,231,\n  0,233,232,  0,  0,211,197,199, 232,207,209,128,140, 88,  0,231,\n231,  0,  0,231, 72,232, 23,231,   0,191, 92,  0,  0,199,109,  0,\n\n// state[216 + 2] 0x006440 Byte 3 of 3 (property)\n211,207,101,210, 16,  0, 63, 16, 212,231, 98,  0,  0,231,232,231,\n  0,204,208,231,118,212,  0,231, 140,  0,  0,232,207,231,207,129,\n199,231,231,  0,231,231,231,118, 204,138,231,191,  0,221,211, 91,\n211,231,  0,129,231,233,206,  0, 118,130,143,127,231,204,  0,231,\n\n// state[217 + 2] 0x006480 Byte 3 of 3 (property)\n233,220,207,117,  0,208,231,130,  76,231,  0,  0,211,231,  0,231,\n127, 16,138, 91,231,118,211,199, 204,204,109,  0,  0,231,126,211,\n211,  0,204,127,140,131,  0,231, 231,130,231, 91,199, 68,105,191,\n 68,206, 51,128,128,212, 98,207, 220, 92,231, 99,126,221,210, 19,\n\n// state[218 + 2] 0x0064c0 Byte 3 of 3 (property)\n191,143,115,207,121,118,  0, 25,   0,231, 21,127,  0,136,144,231,\n211,  0,118,  0, 25,231,231,211, 121,  0, 77,221,231,231,212,231,\n127,232,103,232,210,231,136,161,   0,231,  0,  0,131,198,231,204,\n204,129,119,211, 25,  0,231, 19,   0,  0, 25,204,  0,198, 76,231,\n\n// state[219 + 2] 0x006500 Byte 3 of 3 (property)\n115,  0,  0,  0,  0,231,221,231, 231,231,  0,231,231,  0,  0,118,\n231,231,128,  0,121,231,232,  0,  68,204,  0,231, 25, 75,  0,  0,\n  0,  0,204,146,127,207,233,231,   0,  0,143,201,127,  0,231,140,\n212,191,  0,220,231,231,125,175, 111,140,  0,137,  0,128,140,115,\n\n// state[220 + 2] 0x006540 Byte 3 of 3 (property)\n231,  0,212, 72,212,140,207,212, 125,  0,207,191, 16,199, 50,136,\n133,134,231,207,232,206,115, 87,  25,140,  0,128,231,121,126,  0,\n  0,231,140,136,191,  0, 68,231, 231,231,233,231, 68,  0,207,231,\n145,212,134,231,140,109,211,105,  21,210,211,207,220,231,212,231,\n\n// state[221 + 2] 0x006580 Byte 3 of 3 (property)\n207,199,111,119,  0,233,  0, 68, 231, 44,  0, 72, 67,  0, 44,  0,\n 88,140,231,207,  0,204,  0,134,   0, 88,  0,209,137,231,  0,111,\n204,103,231,231, 85,134,231,137,   0, 72,231,233, 51,145,  0, 85,\n136,  0,204,  0,  0,231,231, 75, 231,137,191,207,121,140,220, 72,\n\n// state[222 + 2] 0x0065c0 Byte 3 of 3 (property)\n 72,144,120,206,233,140,232,207,  72,  0,  0,138,209,  0,199,140,\n231,  0,232,191,  0,231,209,134, 231,231,  0,116,  0,  0,  0,  0,\n 16,204,137,221,231,136,136,145, 136, 88,  0,  0,103, 88,207,207,\n  0,115,231,210,  0,  0, 28, 72, 212,  0,134,111,204,  0,  0,237,\n\n// state[223 + 2] 0x006600 Byte 3 of 3 (property)\n121,231,134,231,  0,  0,139,146,   0,199, 67,  0, 68,221,136,138,\n  0,  0,  0,138, 53, 67,  0,231, 231,191,  0,  0,204,207,237,136,\n103,232,210,  0,231,137,231, 88, 137,231,231,232,231, 53,231,126,\n204, 96,  0,198, 47, 72,111,  0, 231,232,232,237,101,231, 10,231,\n\n// state[224 + 2] 0x006640 Byte 3 of 3 (property)\n  0,189,107, 88,198,231,  0,231, 231, 50,221, 53,206,231,  0, 68,\n231,211,135, 16,212, 72, 72,191,   0,233,144,191,191,111,199, 68,\n212,211,189,212,126,233,103,198, 118, 44,207,191,207,  0,140,138,\n118,233,191,226,103,  0, 97,206, 207,231, 68,  0,231,231,118,  0,\n\n// state[225 + 2] 0x006680 Byte 3 of 3 (property)\n220, 44, 16,231,206,231,167,103, 111, 51,231,231,211,  0,198,  0,\n121, 88,231,231,231,220,140, 88,  78,191,  0,211,207,206,212,191,\n226,220,129,191,220,235, 53,191, 132,207,221,143,191,233,105,235,\n220, 25,231,  0,140,231,231,231, 121,201,211,161,231,221,232,231,\n\n// state[226 + 2] 0x0066c0 Byte 3 of 3 (property)\n  0,204,  0,  0, 50,231,129,109, 204, 76,231,231,204,  0,231,  0,\n231,231,  0,  0,  0,231,146,212, 191,140,191,221, 13,134, 72,128,\n126,207,133,231,  0,231,118,  0, 128,204,207,  0,127,  0,231,  0,\n 68,  0, 88, 88,136,231,  0,161, 146, 68,148,231,126, 44,126, 88,\n\n// state[227 + 2] 0x006700 Byte 3 of 3 (property)\n136,231,  0,127,231,231,  0,  0, 137,134,230,126,  0,115,231,231,\n191,231,221,232, 68,201,231,137,   0,231,231,137,  0, 53,231,136,\n  0,  0,  0,  0,  0,231,201,109, 103,  0,136,137,136,109,119, 16,\n231, 68,231,231, 51,130,198,231, 232,231, 72,231,  0,137,231,232,\n\n// state[228 + 2] 0x006740 Byte 3 of 3 (property)\n 16,203, 16, 28,  0,211,120,  0, 128, 88,231,  0,232,  0, 68,136,\n136,135,231, 47,231,  0,137,  0,   0,232,231,  0, 68,  0,115,138,\n 72,142,117,203,231, 65,231,  0, 128,191,232,  0,231, 99,231,136,\n 67,146,206,206,  0,103,221,137, 199,220,233,204,197,220, 88,136,\n\n// state[229 + 2] 0x006780 Byte 3 of 3 (property)\n  0, 10,233,191, 16,233,  0,137, 220,118,231,121,233,191,207,231,\n138,207,221,206,207, 88,207,140, 231,207,100,191,137,137,212,207,\n117,101, 65, 98,207,220,190,212,   0,231, 63, 72,231,207,231,137,\n206,232,  0,189,204,221,126,201, 115,231,231,191,220,  0,231,231,\n\n// state[230 + 2] 0x0067c0 Byte 3 of 3 (property)\n231,231,  0,221,105,207,191,191, 230,231,100,233,231, 72,231,136,\n134,140, 96,140,136,133,231,231,  35,221, 68,128, 72,204,189,128,\n 72, 72,204,128,191,125,207,191, 133,201,  0,231,118,  0,231, 85,\n233,137,231, 68,137, 51,231,  0, 232,231,204, 15,  0,220,198,137,\n\n// state[231 + 2] 0x006800 Byte 3 of 3 (property)\n226,198,116, 24,117, 72,  0, 26, 128,212,  0, 72,220,  0,212, 28,\n  0, 26,  0, 88,  0,  0, 35, 88, 232,231,231,231,  0,206,116,  0,\n232,140,197,231,235,  0,220,191, 128,111,105,191,235, 72,  0,  0,\n231,204,233,221,198,230,231,128, 126,137,231,232,137,137, 72,231,\n\n// state[232 + 2] 0x006840 Byte 3 of 3 (property)\n206,105,139, 97,232,199,118,231, 138,199,  0,  0,132,231,199,  0,\n140,137,231, 68,134,207,232,  0,   0,231,  0,  0, 44,116,231,116,\n212,220,191,  9,220,133,128,145, 191, 72,231,208,  0,231,  0,204,\n  0,  0,211,231,206,  0,138,191, 221,  0,  0,  0,204,211,231,119,\n\n// state[233 + 2] 0x006880 Byte 3 of 3 (property)\n231, 68,  0,197,  0,137,206,231, 231,231,231,  0,  0,231,  0,199,\n  0,221,221,136,194,231,  0,136, 221,  0,  0,198,  0,119,231, 91,\n194,231,137,221,  0,  0, 16, 68, 103,231,  0,231,231,118,231,126,\n137, 13,231,115,231, 68,117,  0, 231,191, 72, 98,190,220,220,220,\n\n// state[234 + 2] 0x0068c0 Byte 3 of 3 (property)\n 28,212,179, 98, 68,220,231,  0, 231,118,231,136,191,126,233,231,\n231,230, 88,221,233,118,232,126, 137,191, 35,207,191,191,207,146,\n126,233,  0,120,233,  0,235,121, 204,191,232,231,191,191,103,191,\n191, 67,143,231,220,118,  0,233,   0,197,137,204,232,221,  0,207,\n\n// state[235 + 2] 0x006900 Byte 3 of 3 (property)\n116,233,233,231,232, 97,204,  0,  72,231,231, 35,231,140, 88,194,\n220,  0,139,  0,231,233,  0,231, 234,203,203,203, 15,  0,  0,220,\n  0,231,231,231, 98,198,231,  0, 231,  0,209,231,  0,191,  0,  0,\n138,  0,  0,231,172,  0,231,  0,   0,201,231,191,233, 67,207, 53,\n\n// state[236 + 2] 0x006940 Byte 3 of 3 (property)\n128,128,120, 72,207, 72,  0,  0,   0,231, 76,230,231,231,231,231,\n  0,231,231,143,111,116,  0,233,   0,204,126,231,231,206,118,  0,\n138, 44,116,118,231,221,208,  0,  76,  0,231,197,232,146,197,105,\n  0,  0,231,190,231, 87,  0,134, 189,130,231,  0, 98, 15,231,  0,\n\n// state[237 + 2] 0x006980 Byte 3 of 3 (property)\n231,231,137,  0, 72,  0,120,  0,  72,191,101,231,  0,  0,116,  0,\n232,198,  0,231,111,118,129,  0, 233,  0,  0,103,118,  0,  0,  0,\n231,  0,  0,221,221,221,221,189, 118,  0,  0,206,  0,118, 76,  0,\n  0,231,231,  0, 68,  0,  0,209,   0,  0,231,130,231,  0,231,232,\n\n// state[238 + 2] 0x0069c0 Byte 3 of 3 (property)\n231,206,231, 88,231,191,231,101, 207,231,232, 87, 88, 91,189,231,\n 99,233,  0,129,  0,220,  0,235,  15,116,  0, 98,231,231,231,191,\n  0,  0,231,  0,211,  0,220,231, 232,  0,  0,231,191,202,207,231,\n220,220,233,129,221,  0,220,220, 212,191,220,101,207, 88,220,164,\n\n// state[239 + 2] 0x006a00 Byte 3 of 3 (property)\n207,121, 75,  0,  0,198,  0,232, 220,  0,115, 44,231,  0,  0,233,\n  0, 77,198,127,231,  0,  0,197, 233,143,231,231,220,  0,121,138,\n220,138,231, 25,  0,  0,  0,  0, 207, 15, 92,116,  0,  0,231,220,\n231, 72,  0,  0,232,111,231,191, 121, 87, 97,128,128,106,206,207,\n\n// state[240 + 2] 0x006a40 Byte 3 of 3 (property)\n128,  0,  0,  0,118,231, 72,189, 189,  0,  0,146,  0,  0,  0,  0,\n232,  0,  0,  0,  0,  0,231,  0, 136,140,  0,229,  0,  0,  0, 87,\n  0,118,129,  0,  0,  0,231,  0,   0,  0,231, 75,  0,  0,  0,  0,\n  0, 72,231,231,  0,  0,  0,  0, 231,226,  0,231,220,  0,232,116,\n\n// state[241 + 2] 0x006a80 Byte 3 of 3 (property)\n 51,221,  0,  0,197,  0,  0,  0,   0,204,  0,  0,  0,232,105,  0,\n120,  0,231,  0, 27,  0,  0,189,   0,  0,  0,  0, 91,  0,232,  0,\n232,127, 23,232,  0,  0,  0,220, 210,179,231,220,126,  0,189, 25,\n  0,  0,  0, 76,  0,  0,  0,220, 119,  0,220,143,231,231,  0,  0,\n\n// state[242 + 2] 0x006ac0 Byte 3 of 3 (property)\n  0,231,198, 17,231,207,191,207,   0,  0,212,  0,220,207,  0,220,\n  0,231,220,100,220,207,  0,  0, 220,220,111,106,233,228,232,194,\n207,  0,233,207,235,121,  0,230, 190,  0,204,211,221,  0,  0,  0,\n  0,  0,  0,230,  0,  0,231,  0, 211,  0,204, 87,  0,231,  0,  0,\n\n// state[243 + 2] 0x006b00 Byte 3 of 3 (property)\n  0,  0,  0,231,143,203,  0,  0, 231,211, 21,  0,220,235,220,124,\n207, 72, 68,128,  0,231,121,  0, 207,233,  0,231,  0,203,231,231,\n103,136, 10,126,220,  0,  0, 65,   0,  0,  0,  0,232,  0,  0,  0,\n  0,  0, 88,  0,221,  0,231,232, 204,232,136,  0,  0, 91,126,  0,\n\n// state[244 + 2] 0x006b40 Byte 3 of 3 (property)\n  0,  0,  0,231,  0,  0, 78,118,   0,130,231,  0, 88,231,119,  0,\n122,  0,  0, 15,232,  0,  0,  0,   0, 72,  0,204,  0,  0,231,194,\n  0, 25,136,137,118,141, 68,118,   0, 24, 88,  0,231,  0,  0, 15,\n  0,  0, 21, 15, 15,  0,  0,129,  76,130,  0, 88,128,  0,  0,194,\n\n// state[245 + 2] 0x006b80 Byte 3 of 3 (property)\n231,220,231,130,232,  0,103,207,   0, 88,138, 92,220,231,231,221,\n  0,207,179,220,212,191,140,220,  75,  0,191,232,212,220,204,  0,\n  0, 72,  0,231,170,221,  0,  0, 212,  0,231,206,220,121,194,119,\n233,231,106,233, 92,136,212, 68, 220,  0,146, 44, 25,191,212, 88,\n\n// state[246 + 2] 0x006bc0 Byte 3 of 3 (property)\n129, 63,207,  0,207,136,121,220, 233,  0,  0, 96,226,136, 24,144,\n206,  0,134, 85,140, 16,191, 67,  51,199,  0,136,  0,  0,210,203,\n  0,191,  0,  0,  0,  0,231,  0,   0,  0,231,118,143,220,  0,134,\n  0,  0,  0,231,  0,  0,  0,  0,   0,  0,  0,  0,  0,207,  0,  0,\n\n// state[247 + 2] 0x006c00 Byte 3 of 3 (property)\n231,  0,231,  0,  0,231,  0,  0, 129,  0,  0,  0,  0,  0,  0, 53,\n167,134,  0,118, 10,  0,233, 15, 220,206,230,144,  0,  0,  0,118,\n  0,207, 72,121,206,233,209,144, 118,191,210, 20,124,128,118,144,\n118,133,233,199,140,233,128, 44,  68,232,  0,  0,207,235, 87,231,\n\n// state[248 + 2] 0x006c40 Byte 3 of 3 (property)\n 68, 88,140,  0,  0,  0,206, 26,   0, 16,191,231,231,  0,109,  0,\n 87,  0,221,  0,210, 72,  0, 88,   0,121, 24,120,206, 68,118,139,\n136,141,231,  0, 16,  0,231,  0, 199,207,115,  0,  0,220,  0,232,\n137,  0,137,231,130,  0, 85,  0,   0,191,107,  0,  0,118, 67,  0,\n\n// state[249 + 2] 0x006c80 Byte 3 of 3 (property)\n  0,115,120, 68,210,118,233,  0, 135,118,  0,  0, 88,231,  0,207,\n111,  0, 25,100,233,  0,146,  0, 161, 68,233, 68,  0,  0,  0, 16,\n  0, 72,117,226,191, 72, 72, 98,   0,179, 98,134,211, 72, 50,  0,\n  0,120,  0,139,231,231,  0,  0,  68,140,232,140, 53, 99, 85,137,\n\n// state[250 + 2] 0x006cc0 Byte 3 of 3 (property)\n  0,107,  0,  0, 74,233,  0,  0,   0, 88,100,  0,136,  0,  0,  0,\n230,  0,  0,130,207,140,233, 67,   0,198,231,141,231,232,207,220,\n206,138,140,103,  0, 68,220,  0,  35,  0,108,221,221,221,206,206,\n 68,199,231, 88,  0,120,  0,191, 128,  0,212, 63, 72, 16, 98,220,\n\n// state[251 + 2] 0x006d00 Byte 3 of 3 (property)\n  0,128,  0,220,206,  0,221,220,   0,231,231, 88,197,207,221,207,\n  0,220, 53,  0,  0,  0,133,136, 124, 47,  0, 68,212,207, 68,172,\n220,  0,207,212,207, 35,133,204, 207, 87, 68,231,  0,207, 72,220,\n191,118,138,204,207,201,121,221, 189,199,210,136, 72,132,136,233,\n\n// state[252 + 2] 0x006d40 Byte 3 of 3 (property)\n231,140,220,212, 22,145, 16, 72, 191,207, 72, 16,  0,220, 26, 26,\n191, 72, 72, 16, 98,231,220,212,   0, 72, 68,  0,101,  0,231,  0,\n 72,  0,  0, 74,204,210, 35,  0, 220,137, 68,  0,194,  0,136,121,\n  0,  0,231,  0, 88,231,207,137,  88,175,  0,  0, 72,  0,  0,161,\n\n// state[253 + 2] 0x006d80 Byte 3 of 3 (property)\n  0,  0,141,  0,  0, 97,  0,175, 140, 82,  0,  0, 99,  0, 88,  0,\n  0,233,191, 67,199,130,191,207, 128, 53,128, 98,172,133,191, 98,\n220, 72,128,207, 72,  0, 16, 72,  16, 72, 72,  0,231,  0,130, 88,\n  0,128,136,230,211,118,  0,221, 103,  0,  0,  0, 91,  0,  0, 63,\n\n// state[254 + 2] 0x006dc0 Byte 3 of 3 (property)\n 65,  0,211,  0, 72,199,111,118,   0,210,231,138,209,  0,  0,232,\n231, 68,129,  0,  0,204, 72,  0, 115,206, 75,221,  0,199,201,  0,\n207,136,  0,  0,118,232,206,  0, 127,121,121,135,209,231,120,204,\n  0,139,231, 68,  0, 51,232,137, 161,126,119,137,209,  0,  0,  0,\n\n// state[255 + 2] 0x006e00 Byte 3 of 3 (property)\n  0,  0,  0,  0,  0,138,  0,116,  15,117, 72, 44,191, 72,128,  0,\n 16,212,  0,116, 16,117,  0, 72,   0,204, 35, 87,  0,120,  0,198,\n 67, 88,231,115, 67, 88, 87,231,   0,145,  0,194,143,115,231,140,\n221,  0,132,  0,118,  0,231,  0, 120,231,111,207,204,  0, 51,  0,\n\n// state[256 + 2] 0x006e40 Byte 3 of 3 (property)\n220,207,  0,209,118,  0,  0,220,   0,233, 51,  0,231,171,233,  0,\n  0,  0,  0,  0,204,  0,140,231,  35,231,  0,134,228,  0,232,167,\n  0,220,  0,231,  0,  0,  0,146, 231,  0,220,189,  0,  0,206,146,\n207,207,204,122,207,  0,231,  0,   0,220,  0,  0,  0,220, 65, 65,\n\n// state[257 + 2] 0x006e80 Byte 3 of 3 (property)\n117,  0,231, 72,  0,207,212,  0, 221,118,  0,  0,203,  0,221,199,\n134,  0,231,220,231,  0,107,  0, 197,  0,  0,  0, 88,143,  0,164,\n231,  0,136,  0,  0,164,  0,128,   0,  0, 85, 75,  0,  0,231,118,\n  0,208,232,  0,120,  0,137,198,   0,  0,136,  0, 19,231,220,233,\n\n// state[258 + 2] 0x006ec0 Byte 3 of 3 (property)\n207, 72,189,128, 68, 68,207, 67, 128,198,231,136,129,  0,199,207,\n230,136,  0,189,115,120,  0,231, 207,204, 16,  0,  0, 44,145,212,\n  0, 10,191,  0, 16, 98, 72,  0, 133, 98,  0,  0,121,  0,  0,127,\n  0,  0,143,  0,140,  0,231,129, 143,220,  0,231,  0,  0,121, 75,\n\n// state[259 + 2] 0x006f00 Byte 3 of 3 (property)\n  0, 91,140,  0,  0,  0,136,  0, 220,100,231,  0,  0,  0,  0,136,\n  0,116,  0, 67,136, 53,  0,  0,   0,231,204,  0,  0,  0,  0,  0,\n137,231, 51,143,  0,211,  0,232,   0,209,130,138,109,  0,  0,120,\n  0, 68,121, 67,  0,232,232,220,  76,  0,  0,  0,231,  0,118,119,\n\n// state[260 + 2] 0x006f40 Byte 3 of 3 (property)\n  0,204,  0,  0,  0,117,220, 72, 220,  0,220,220,  0,133,  0,191,\n212, 25,  0,233,131,  0,207,220,  85,191,  0, 75,145,  0, 72,116,\n206,207,144,  0, 87,  0,206,128, 207,207,191,  0,  0, 85,140,161,\n146,220,233,  0,172,220,  0,  0, 206,  0,130,207,120,232,169,  0,\n\n// state[261 + 2] 0x006f80 Byte 3 of 3 (property)\n121,101,206,  0,136,  0, 76,211, 118,  0,  0,  0,231,206, 25,  0,\n211,235,  0,  0,210,  0,231,164, 212,  0,  0,233,128,231,  0,  0,\n232,118,  0,232, 51,233,231, 72, 231,232,105,  0,  0,231,161,  0,\n  0,143,  0, 85,  0,231, 72,  0,   0, 99,  0,  0,231,  0,  0,  0,\n\n// state[262 + 2] 0x006fc0 Byte 3 of 3 (property)\n137, 91,209, 87,207,220, 63,128, 128, 72,167,128,  0,  0,  0,231,\n207,191, 72,221,231,127,  0,  0, 194,  0,231,121,  0,  0, 72, 49,\n 99, 35,  0,  0, 51,  0,  0,  0, 231,231,  0,143, 50,  0, 63,105,\n204, 87,  0,231,  0,198,198,  0, 220,231,129,  0,221,  0,131,  0,\n\n// state[263 + 2] 0x007000 Byte 3 of 3 (property)\n  0,204,  0,231,  0,204, 50,231,   0,119,  0, 51,  0,231,  0, 23,\n  0,111,  0,231,221,143,  0,  0, 204,  0,126, 85,  0,111,109, 93,\n221,  0,  0,128,  0,  0,232, 47,  78,  0,  0,  0,117,212,  0,207,\n121,231,204,221,  0,128,233,220,   0,128,233,207,  0,220, 93,  0,\n\n// state[264 + 2] 0x007040 Byte 3 of 3 (property)\n  0,207,  0,199,233,  0,220,  0, 207,220,191,233, 67,220,  0,128,\n220,121,220,212,  0,211,211,  0,  87,212,207,  0,  0,209, 72,220,\n122,220,  0, 21,161,191,207,  0,   0,207,191,137,191, 16,212, 65,\n 68,207,212,220,207, 63,118,  0, 136,  0,  0,212,137, 87, 26, 72,\n\n// state[265 + 2] 0x007080 Byte 3 of 3 (property)\n191,210,  0,  0,  0,199,206,231,   0, 65,103,  0,  0,212,140,  0,\n  0,  0,140,  0,209,199, 72,  0, 204, 88,  0,231, 72,220,  0,  0,\n  0,231,  0,  0, 50,  0,231,  0,   0,191,212, 82, 99,137,118, 68,\n199,  0, 72, 68,128,124,207,206, 134, 71,119,231, 16,191,  0,  0,\n\n// state[266 + 2] 0x0070c0 Byte 3 of 3 (property)\n  0, 72, 16,191,  0,  0,207,207,  68,  0,121,231,  0,  0,  0, 51,\n  0,  0,  0,  0,232,  0,  0,  0, 144,111,  0, 72,204,204,  0, 16,\n  0,  0,  0,  0,144,  0, 72, 16, 191,207,  0, 72,191, 28,  0,118,\n  0,232,  0,  0,204,  0,231,118,   0, 97,232,  0,  0, 67,  0,  0,\n\n// state[267 + 2] 0x007100 Byte 3 of 3 (property)\n  0,  0,231,  0,204,  0,  0,231,   0,136,118,  0,221,  0,  0,231,\n  0,  0,  0,233,116, 72,191,121, 207, 97, 97,  0,121,231,  0,  0,\n204,107,211,  0,  0,  0,134,  0,   0,  0,  0,  0,231,  0,  0,199,\n118,199,  0,  0,  0,212,140,  0, 207,220,207,220,117,212,207,230,\n\n// state[268 + 2] 0x007140 Byte 3 of 3 (property)\n212,220,220,191,207,207,232,204, 212,119,199,220,134,  0,140,212,\n199,207,129,220,  0,142,204,  0, 207, 51,  0,133, 68,220,130,128,\n207,207,233,220,120, 51, 96,134, 199, 91,231,212,170,  0, 88,  0,\n  0,  0,124,  0,  0,  0,220,  0, 207,  0,  0,  0,212,137,  0,  0,\n\n// state[269 + 2] 0x007180 Byte 3 of 3 (property)\n231,  0,  0,  0,118,  0,207,  0, 198,  0, 88,  0,  0,  0,  0,120,\n  0,  0,204,  0,126,231,  0,  0, 220, 68,  0,  0,231,  0,  0,140,\n209,  0,231,  0,  0,231,  0,  0, 111,  0,231,  0,118,  0,  0,231,\n  0,143,207,  0,191,207,212,128, 128, 68, 72,207,128,  0, 91,  0,\n\n// state[270 + 2] 0x0071c0 Byte 3 of 3 (property)\n  0, 50,207,137, 75,  0,  0,  0, 129, 76,208,  0,  0,  0,201,231,\n105,231, 75,231,232, 68,  0,117,   0, 19,233,  0,204,  0,  0, 20,\n204,  0,  0,  0,221, 88, 91,162,   0,  0,  0,  0,129,143, 50,  0,\n  0,  0,  0,  0,121,203,  0,  0,   0,204,  0,143,194,  0,175,131,\n\n// state[271 + 2] 0x007200 Byte 3 of 3 (property)\n237,  0,  0,  0,  0,  0,137,  0,   0,  0,  0,  0,204,121,  0,  0,\n 25,  0,  0,  0,231,231,  0,  0,   0,  0,  0, 91,  0,  0,231,  0,\n  0,231,  0,220,  0,  0,  0,  0, 233,  0, 88,231,138, 75,231,  0,\n119, 16, 51,  0,  0, 68,136, 72, 144,118, 87,201,191,136, 78,233,\n\n// state[272 + 2] 0x007000 Byte 2 of 3 (relative offsets)\n -9, -8, -7, -6, -5, -4, -3, -2,  -1,  1,  2,  3,  4,  5,  6,  7,\n  8,  9, 10, 11, 12, 13, 14, 15,  16, 17, 18, 19, 20, 21, 22, 23,\n 24, 25, 26, 27, 28, 29, 30, 31,  32, 33, 34, 35, 36, 37, 38, 39,\n 40, 41, 42, 43, 44, 45, 46, 47,  48, 49, 50, 51, 52, 53, 54, 55,\n\n// state[273 + 2] 0x007240 Byte 3 of 3 (property)\n198,  0,231,220,220,  0,121,134, 136,  0,207,199,118,212,220,207,\n220,231,201,199,221,191,204,212, 206, 68,  0,136,191, 47,207, 68,\n 20,137,139,231,  0,231,207,140, 231,136,  0,  0,  0,231,  0,208,\n  0,  0,137,233,121, 98,  0,231, 191,136, 72,  0,  0,143,231,231,\n\n// state[274 + 2] 0x007280 Byte 3 of 3 (property)\n 88,118,198,  0,230,  0,  0,204,   0,  0,128,  0,  0,199,  0,  0,\n231,231,206,  0,  0,  0,206,  0,   0,212,  0,204,  0,  0,  0,212,\n 24,  0,204,  0,  0,  0,  0,121, 231,  0,  0,191,103,231,207,137,\n221,191, 72,128,232,128, 92,207, 220, 72,212,133,231,221,231,  0,\n\n// state[275 + 2] 0x0072c0 Byte 3 of 3 (property)\n 27,231,136,231, 68,207,198,  0, 207,  0,  0,  0,  0,220,170,  0,\n139,  0,206,  0,  0,  0,231, 68,   0,105,  0,116,  0,221,212,211,\n141,111,198,  0,  0,221,  0,  0,   0,105,  0,  0,145, 92, 72,  0,\n212, 28,  0,  0,231,  0,221,204,  68, 76,221,233,136,194,  0,  0,\n\n// state[276 + 2] 0x007300 Byte 3 of 3 (property)\n  0,210,221,  0,  0,  0,  0,191,   0,  0,197,221,  0,231, 72,  0,\n  0,  0,  0,  0,  0,179,130,199,   0,204,  0,140,118,209,  0,116,\n  0,231,221,  0,231, 88,  0,  0,   0,111,142, 92,191,211,142,231,\n  0,231,  0,  0,118,221, 93,111,   0,  0,  0,221,  0,  0,201, 53,\n\n// state[277 + 2] 0x007340 Byte 3 of 3 (property)\n232,  0,  0,221, 87,143,  0,  0,   0,231,  0,231,  0,221, 27,198,\n199,  0,199,220,231,231,  0,209, 231,233,  0,  0,235,231,231,231,\n206,  0,210, 15,231,191,231,  0,  76,231,198,  0,231,191, 63,  0,\n194,  0,143,  0,  0, 76,  0,204,  77,  0,194, 75,204,  0,206,  0,\n\n// state[278 + 2] 0x007380 Byte 3 of 3 (property)\n211,  0,211,  0, 68,  0,204,136,   0,137,  0, 68,  0,  0,206,  0,\n  0,191,232,221,  0,232, 88,221, 233,231,  0, 16,231,  0,  0,121,\n206,211,206,  0,  0,121,204,  0, 204,111,  0,144,211,232,128, 28,\n 28,  0,138,199,231,231,221,199,   0,204,191,118,  0,231,  0,232,\n\n// state[279 + 2] 0x0073c0 Byte 3 of 3 (property)\n138,  0, 88,  0,  0,207,221,211,  68,167,126,221,  0,136,203,199,\n207,207,231,  0,207,220,233,  0, 220,199,233,210,230,220,201,  0,\n134,  0,  0,170,  0,206,  0,221, 210,206, 47,  0,  0,126,121,220,\n220,231,212,  0,  0,232,207,220, 231,  0,206,  0,  0,204,107,  0,\n\n// state[280 + 2] 0x007400 Byte 3 of 3 (property)\n221,204,  0,136,211, 67,140,121,   0, 68,199,  0,211,210,  0,207,\n 72,  0,  0,  0,  0,  0,  0,  0,   0,  0,199,118,  0,  0,  0,  0,\n  0,211,137,221,204, 88, 85,  0, 209,204,144,161,121,232,121,210,\n206,231,109, 68, 68, 68, 68,  0, 237,221,131,  0, 63,  0,  0,175,\n\n// state[281 + 2] 0x007440 Byte 3 of 3 (property)\n121,199,  0,  0, 96,  0,221,231, 232,  0,232,127,  0,  0,  0,  0,\n231,  0,232,  0,  0,111,  0,199,   0,115,136, 68,126,231,126, 85,\n 47,  0,170, 76, 93,212,191,191, 169,121,121,232,  0,206,221,119,\n118,206,233,190,  0,  0,108,233,   0,207,  0,  0,211,221, 67,  0,\n\n// state[282 + 2] 0x007480 Byte 3 of 3 (property)\n118,208,  0, 68,231,211,204,118, 204, 76,211, 68,  0,  0,230,  0,\n118,  0,  0,  0,231,  0,  0,231, 206,  0,  0,  0,118,231,130, 50,\n206,231,231,175,  0,221,204, 35,  96,206,231,232,  0,  0,  0,  0,\n107,231,231,  0,  0,232,211,231, 232,231, 72,  0,  0,119,  0,129,\n\n// state[283 + 2] 0x0074c0 Byte 3 of 3 (property)\n  0,  0,  0,  0,  0,221,  0,  0, 232,237,129,  0,231,221,231,129,\n  0,231,207,  0,201,220,  0,231, 233,235,161,231,115,  0,221,204,\n199,  0, 88,118,191,207,138,231, 207,204,  0,231,  0,220,199, 98,\n231,231,231,  0,207,  0,138,118, 231,  0,  0,  0,  0,  0,  0,233,\n\n// state[284 + 2] 0x007500 Byte 3 of 3 (property)\n  0,161,  0,231, 77,231,  0,211, 221,  0,229,  0,175,190,231,  0,\n  0,197,231,231,  0, 91,  0,  0, 135,191,115,  0,126,231,231,137,\n  0,211, 27, 24,  0,103, 93,211, 136,118,233, 68, 72,199,221,118,\n 53,140,136,140,  0, 28,211,136, 118,  0, 44, 92,231,  0,199,231,\n\n// state[285 + 2] 0x007540 Byte 3 of 3 (property)\n232,  0,231,231,231, 16,231,221, 207,231,233,232,136,232,221, 68,\n232, 44,231,231,136,  0,  0,  0,   0,138,204,204,140, 68,220,231,\n101,220,127,  0,231,140, 35,237, 191,231,105, 25,210,231,  0,232,\n146,191,199,117, 72,219,121,142, 115,233,191,220,220,  0,207,105,\n\n// state[286 + 2] 0x007580 Byte 3 of 3 (property)\n207,220,231,207,207,220, 67, 97,   0,231, 49,105,  0,  0,117, 85,\n  0,136,231,  0,232,231,220, 10,   0,208,209,  0,  0,111,  0,212,\n  0,128,  0, 99,118,201,  0,  0,   0,  0,211,115,  0,221, 72, 16,\n  0, 35, 88,197,220,111,  0,  0,  88,137,  0,  0,126, 99,140,  0,\n\n// state[287 + 2] 0x0075c0 Byte 3 of 3 (property)\n232,  0,201,231,221,136,  0,136, 179, 72,130,  0,221,197,  0,  0,\n211,  0, 65,  0,137,138,  0,  0, 126,146,231, 88,221,  0,121,  0,\n129,  0,137,111,199,  0,207,206, 220,117, 72,212,231,  0,231,  0,\n138,207,194,232,137,  0,  0,232, 231,124,107,  0,199,  0,204,209,\n\n// state[288 + 2] 0x007600 Byte 3 of 3 (property)\n130,199,211,  0,  0,  0,  0,  0, 207,233,  0,121,  0,146,220,  0,\n221,207,  0,121,230,232,211,  0, 179,199,211,232,208,211,204,118,\n209,143,189,204,134,221,118,129, 210,209,229, 72,  0,  0,  0,220,\n232,  0,  0,  0,197,  0,  0,  0, 199,  0,221,198,232,220,128,212,\n\n// state[289 + 2] 0x007640 Byte 3 of 3 (property)\n233,  0,107,231,  0,231,204,131, 204,232,231,231,136,  0,234,  0,\n  0,  0,109,  0,220,231,100,  0, 204,  0,  0,  0,199,  0,191,210,\n231, 96,129,128,232,204,  0,231, 231,194,198,212,143,204,121,  0,\n204,129,129,  0,  0,  0,198,  0, 111,211, 15,137, 25,136, 68,  0,\n\n// state[290 + 2] 0x007680 Byte 3 of 3 (property)\n231,232,130,231,134,  0, 87, 68, 121,  0,  0, 67,  0,  0,206,  0,\n116,199,231,138,  0,  0, 72,  0, 211,130,204,232,204,204,204,  0,\n  0,  0,  0,  0,231,231,231,231,   0,231,231,  0,220,231,136,191,\n121, 72,220,231,206,233,231,235, 232,231,119,  0,  0,  0,  0,103,\n\n// state[291 + 2] 0x0076c0 Byte 3 of 3 (property)\n  0,  0,201,119,221,206,140,231,  85,231,140,  0,231,232,118, 72,\n133, 26,132,221,118,  0, 16,145,  28,  0,221,137, 75,  0,129,138,\n  0, 76,221, 87,146,111,232, 51,   0,  0, 76,  0,232,  0,140,118,\n  0,199,140,  0,140,  0,  0,  0, 138,199,  0,231,144,221,139,  0,\n\n// state[292 + 2] 0x007700 Byte 3 of 3 (property)\n231, 74,  0,  0,231,204,  0,232, 201,134,232,134,117,235,  0,  0,\n  0,  0,221,  0,231,211,  0,  0,   0,199,231,232,  0,  0, 47,137,\n137,  0,232,  0,204,204,233,  0, 209, 88,  0,231,212,206,231,199,\n191,  0,221,210,  0,221,209,111, 115,207,106,210,136,220, 27,  0,\n\n// state[293 + 2] 0x007740 Byte 3 of 3 (property)\n 65, 72,  0,  0,233,  0,231,199,   0,  0,  0,231,  0,233,  0,206,\n128,191,231,  0,  0,221,  0,  0, 220,220,231,118,129,  0,129,231,\n  0,138, 72, 74,231,204,137,  0, 105,  0,129,126,207,211,  0,221,\n  0,  0,221,  0,231,231,  0,231,   0,118,231,  0,231,206, 65, 68,\n\n// state[294 + 2] 0x007780 Byte 3 of 3 (property)\n231,  0,  0,  0,118,207,  0,127,   0,211,  0,119,122,211,118,211,\n  0,106, 72,  0,  0,231,  0,  0,   0,  0,  0,  0,231,  0,119,206,\n189,  0,231,  0,  0,201,  0,118,   0, 72,130,  0, 88,111,  0,  0,\n 88,  0,  0, 53,221,  0,204,221,   0,231,231, 85, 88,197,231,209,\n\n// state[295 + 2] 0x0077c0 Byte 3 of 3 (property)\n231,220,207,  0,  0,  0, 98,204, 212,207,212,220,230,233,  0,  0,\n  0,231,191,168,  0,231,231,130,   0,207,121,139,201,220,232,231,\n  0,  0, 53,126,  0,137,231,198,   0,134,221, 72,  0,140,126,146,\n  0,  0,  0,137,  0,  0, 72,  0,  72,  0,231,221,231,121,167, 26,\n\n// state[296 + 2] 0x007800 Byte 3 of 3 (property)\n212, 16,103,221,  0,  0,  0,  0,   0,232,  0,  0,115,118,  0,  0,\n221,210,197,  0,137,117, 98,  0,   0,  0, 72,  0,212,207,211,  0,\n231,204,231,207,  0,103,100,115,   0,210,  0,  0,191,206,231,  0,\n208,  0, 87,  0,140,221,  0,118, 118,  0, 92,212,212,  0,191,203,\n\n// state[297 + 2] 0x007840 Byte 3 of 3 (property)\n 26,  0,  0,121,  0, 99,  0,  0, 221,221,232,  0,221,  0,231,161,\n199,  0,120,  0,  0, 16,212,  0,   0,  0,133,  0,231,140,231,  0,\n231,  0,  0,  0,232,231,221,  0, 204,  0,  0,135,138,  0, 28,143,\n  0,231,198,  0,231,  0,212,179,   0,231,231,  0,115,  0,207,221,\n\n// state[298 + 2] 0x007880 Byte 3 of 3 (property)\n  0, 88,  0,  0,  0,  0,231, 87,   0,130,  0,  0,126, 72,118,  0,\n  0, 68,  0, 87,  0,198,  0,138, 118,231, 72,212,220,  0,  0, 20,\n  0,  0,  0,199,231,221,  0, 68,   0,127,231,221,  0,204,  0,231,\n144, 63,233,144,208,231,128,  0,   0,231,146,237, 27,  0,115,  0,\n\n// state[299 + 2] 0x0078c0 Byte 3 of 3 (property)\n  0,136,  0,  0,  0,118,231,  0, 231,221,115,115,231,  0,231,  0,\n103,232,  0,  0,197,199,  0,  0, 221,220,127,  0,  0,  0,221,  0,\n  0,233,  0,  0,231,231,231,204, 136,  0,  0,  0,201,207,  0,146,\n  0,231,204,220,199,233,  0,141, 235, 72,118, 72,128,191,232,207,\n\n// state[300 + 2] 0x007900 Byte 3 of 3 (property)\n191,138,191,212,233,221,220,231, 212,207,212,212,220,  0,146,  0,\n221,204,198,  0,  0,  0,  0,  0,   0, 19,221,  0,  0,  0,  0,231,\n  0,211,  0,  0,220,  0, 25,  0,   0,  0,194,143,194,  0,232,  0,\n231,211,  0,  0,191,  0,  0,  0,   0,  0,137,  0,145,210,137,  0,\n\n// state[301 + 2] 0x007940 Byte 3 of 3 (property)\n 68, 67,121,231,  0,232,204, 51,  88,105,231,231,  0,  0,207,231,\n106,  0,211,116,221,127, 68, 51, 232,221, 50,120,199,137, 88,103,\n 68,221,105,  0,221,136,191,221, 138,233,  0,207,  0, 88,220,191,\n207,  0,  0,  0,207,231,  0, 92,  72,191,111,220,230,  0,231, 50,\n\n// state[302 + 2] 0x007980 Byte 3 of 3 (property)\n191,137,  0,  0, 53,145,  0,  0,   0,231,197,233,  0, 68, 51,136,\n231,  0,207,  0,232,204,231,  0, 204,  0,  0,206,  0,231,  0,  0,\n  0,  0,  0,  0,230,  0,119, 68, 231,  0, 50,  0,  0,  0, 76,  0,\n109,121,  0,232,  0,  0,  0,  0, 231, 68, 72, 10,  0,115, 68, 91,\n\n// state[303 + 2] 0x0079c0 Byte 3 of 3 (property)\n136, 88,  0, 72,  0,  0,128,  0, 204, 85,117,137,  0, 10,  0,211,\n  0,140, 88,  0,231,191,221,  0, 136,  0,  0,  0,231,221,232,118,\n  0,231,231,189,138,231, 68,118, 211, 74,221,233,233, 72,191, 26,\n 65,231,  0,  0,212,212,207,207,  72,212,191,137,231,128,231,235,\n\n// state[304 + 2] 0x007a00 Byte 3 of 3 (property)\n140,191,  0,232,  0, 27,  0,220, 197,207,220,138,  0,118,145,212,\n220,128,207,212,103,  0,220,189, 232,161, 88,211, 87,  0,207,119,\n115,  0,  0,207,  0,  0,  0,231,   0,231,  0,  0,  0,  0,146,  0,\n231,127, 44, 26,  0,231,  0,171,   0,233,231, 67,100,138,231,103,\n\n// state[305 + 2] 0x007a40 Byte 3 of 3 (property)\n 51,  0, 44,231,  0,  0, 68,  0,   0,231,  0,  0, 76,146, 76, 24,\n203,220,  0,  0,  0,  0,  0, 68,   0,  0,232,  0,  0,204,  0,  0,\n204,204, 51,116,  0,  0,211,  0, 211,122,231, 87,  0,  0,  0,  0,\n161,207,  0,  0, 88,231,140, 72, 221,111, 88,  0,231,198,  0,115,\n\n// state[306 + 2] 0x007a80 Byte 3 of 3 (property)\n  0,135,  0, 74,134,  0,  0,  0, 111,  0,  0,231,  0,128,  0,  0,\n221, 72,103, 15,207,121,120,125, 130,  0,231,191, 72, 72,207, 88,\n206,  0,  0,221,  0, 72, 72,231, 207, 91,109,  0,  0,  0, 91,146,\n231,  0,  0,211,  0,  0,198,  0, 221,  0, 91,231,  0,  0,  0,199,\n\n// state[307 + 2] 0x007ac0 Byte 3 of 3 (property)\n  0,  0,  0,203, 91,129,  0, 76, 116,221,129,136,  0,231,  0,231,\n  0,206,232,231,  0,231, 63,  0, 232,125,232,  0, 44,161, 26, 85,\n134,232,231,139,231, 97,197,231,   0,  0, 44,232,  0,144,  0,136,\n231,  0,  0,  0,233,231, 87,220, 231, 68,137,231,231,210,  0, 97,\n\n// state[308 + 2] 0x007b00 Byte 3 of 3 (property)\n231,231,235,191,194,220,206,  0, 111,207,190, 63,233,231,204,105,\n  0, 88,199,220, 16,212,  0,  0, 190,111,191, 88,  0,  0,233,133,\n 47,212,210,210,220,105,115,220, 118,220,233,206,140,211,233,231,\n  0,210,221,206,  0,232,231,  0,   0,117,191,  0, 72,  0,  0,  0,\n\n// state[309 + 2] 0x007b40 Byte 3 of 3 (property)\n  0,  0,  0,  0,  0,198,143,220, 116,140,204,103,194,143,231, 88,\n 88, 74, 88,  0,136,  0,140,  0,   0,  0,  0, 72,  0,108,  0,  0,\n130,  0,  0,  0,  0,198,  0,194,   0,231,  0,  0,203,231,206,231,\n198,118,  0,221,232,201,  0,118,   0,133,203,  0,  0,  0, 10,211,\n\n// state[310 + 2] 0x007b80 Byte 3 of 3 (property)\n 63,  0,  0,  0,204,220,203, 13,   0,231,  0,146,  0,209,232,143,\n199,207,172, 98,136, 47,128,136, 191,231,191,128,232,204,191,191,\n199,134,  0,212,231,212,  0,  0, 231,212,101,191,207,126,207,191,\n212,138,207,212,111,207,  0,  0, 106,207,191,212,  0,231,207,231,\n\n// state[311 + 2] 0x007bc0 Byte 3 of 3 (property)\n143,189,231,221, 87,  0, 68,115, 211,146,  0,194,232,  0,  0,231,\n  0,220,  0,191,221,221,231,  0,   0,210,231,231,  0,189,  0,  0,\n116,118,  0,  0,109,198,233,  0,   0, 17,199,  0,  0,116, 98,  0,\n  0,191,  0,194,  0,  0,231,118,   0,  0,  0,  0,  0,  0,199,  0,\n\n// state[312 + 2] 0x007c00 Byte 3 of 3 (property)\n198,  0,  0,  0,  0,  0,  0,118,   0,  0,  0,233,206,204,  0,  0,\n  0,194,237,231,231,  0,  0,198,   0,  0,  0,231,231,  0,204,232,\n231,143,  0,204,  0,230,  0,118, 207,  0,201,204,233,  0,220,231,\n231,191,220,231,231,220,220,121, 201,  0,220,207,207, 25, 87, 97,\n\n// state[313 + 2] 0x007c40 Byte 3 of 3 (property)\n199,191,210,121,  0,  0,  0,  0,   0,  0,  0,  0, 75, 88,  0,203,\n143,  0,  0,210,194,  0,231,  0, 231,204,  0,  0,211,  0,  0,129,\n107,  0,  0,221, 17,232,  0,  0,   0,232,  0,  0, 76,  0,129,  0,\n  0,  0,127,137,  0,204,  0,  0,   0,  0,  0, 28,133,118,109,  0,\n\n// state[314 + 2] 0x007c80 Byte 3 of 3 (property)\n  0,231,194,231,211,  0,  0,  0,  72,136,220,101,207,199,212,220,\n235,199,136,207,207,135,  0,140, 135, 72,220,101,  0,  0,  0, 68,\n220,235,232,207, 98,140,  0,109, 233,220,128,231,235,191, 26,128,\n231,118,206, 72,  0, 50,212,231,   0,118,220,128,206,111,134,122,\n\n// state[315 + 2] 0x007cc0 Byte 3 of 3 (property)\n116,220,231,  0,  0,233,  0,  0,   0,  0, 68,  0,220,207,198,  0,\n  0,  0,231,231,231,144,140,206, 231,118,  0,  0,201,231,146,138,\n 35,  0,204,231,231,231,  0,143,   0,  0,  0,231,127,  0,  0,115,\n127,  0,232,  0,232,  0,232,221, 116,231,203,134,  0,  0,119,  0,\n\n// state[316 + 2] 0x007d00 Byte 3 of 3 (property)\n143,231,164,  0,146,143,194,204, 204,129, 99,107,  0, 87,  0,  0,\n 91,207, 72,118,107,199,207, 87,  51,146, 91,143,204,199,207,  0,\n137, 87,137,233,  0,  0,212, 28, 231,220,231,140,101,  0,119,134,\n146,233,199, 87,  0,233,207,  0, 220,109,116,231,231,  0,  0,232,\n\n// state[317 + 2] 0x007d40 Byte 3 of 3 (property)\n127,231,146, 91, 87,198,146,231, 231,  0,  0,198, 15,  0,231,232,\n107,  0,  0,231,231, 27,231,  0,   0,  0,  0,204,204,231,116,  0,\n  0,143, 51,190,  0,  0,107,  0, 131,  0,211,231,221,  0,130,  0,\n  0,131,121,164,  0, 13, 44,  0,   0, 87,233,207,220,172,191,199,\n\n// state[318 + 2] 0x007d80 Byte 3 of 3 (property)\n207,121,  0,232,231,191,191,191, 233,206, 98,191,231,207,199, 78,\n  0,206,  0,127,207,  0,191,220,   0, 44, 15,231,131,231,221,231,\n 21,  0,129,204,231,  0, 72,231,   0,  0,231,206,164,143,232,198,\n175, 51, 17,231,146, 76,  0,232, 119,232,109,107,  0,119,109,146,\n\n// state[319 + 2] 0x007dc0 Byte 3 of 3 (property)\n  0,  0,  0,231,232,231,  0,204,   0,  0,143,146,231,232,  0,117,\n  0, 44,146,  0,  0,231,161,232, 194,232,107,231,231,127,111,  0,\n109,199,  0,122,191,191,221,  0,  87, 87,  0,231,119,  0,  0, 87,\n  0,206,199,  0,107,220,  0,231, 231,121,  0,131,231,231,  0,  0,\n\n// state[320 + 2] 0x007e00 Byte 3 of 3 (property)\n  0, 15,  0,  0, 15,231,  0,  0, 129,204,194,198,  0,  0,  0,  0,\n211,204,198,  0,  0,221,  0,  0,   0,  0,  0,109,  0,204,109,232,\n232,231,232, 75,  0,  0, 15,  0,   0,  0,  0,107,  0,232,146,231,\n  0, 25,198,234,204,204,231,131,   0,194,116,232,232,121, 87,233,\n\n// state[321 + 2] 0x007e40 Byte 3 of 3 (property)\n  0,140, 72,130,191,221,130,206, 191,  0, 15,117,  0, 92,  0,  0,\n207,207,171,  0, 87,107,206,207, 207,232,201,133,  0,145,121,231,\n231, 75,  0,231,  0,  0,231,116,   0, 68, 76,122,  0, 87,231,  0,\n 24,235,191, 20,128,220,191,  0, 230,111,220, 72,122,121,210, 98,\n\n// state[322 + 2] 0x007e80 Byte 3 of 3 (property)\n128,233, 68,191,220,  0,220,206, 108,233, 72,128, 25,124,231, 87,\n203,  0,198,204,204,  0, 25,  0, 204,  0,  0,233,127,231,  0,  0,\n133,  0, 16,207, 63,220, 28, 28, 220,  0, 16,128, 72,207,  0, 16,\n212, 72, 98, 28,231, 16, 72, 16,  16, 72,133,231,  0, 16,128, 28,\n\n// state[323 + 2] 0x007ec0 Byte 3 of 3 (property)\n 72,191,207, 16, 28, 72, 10, 26,  28, 72,207,128,207, 10, 72, 28,\n207, 72, 72, 10,207, 16,  0,191,  16, 16, 72, 72, 10,128, 72, 28,\n128,207,128, 63,  0, 72,226, 28, 207, 16, 98,191,  0, 28,128, 72,\n207,179,207, 72, 16, 98, 72,167,  72,231,207,128, 28, 72,133, 10,\n\n// state[324 + 2] 0x007f00 Byte 3 of 3 (property)\n 72, 98,128,207,191, 72, 72,207, 207, 72,  0,  0,  0,128,207,231,\n  0,220,  0, 16, 98,128, 28,  0,  72, 98, 63,220,207, 16,  0,  0,\n 72,  0,212,  0,133,207,220,  0, 191, 16,128,191,220,207, 72,220,\n179,235,  0,220,133,  0, 44,221, 144,  0,144,  0,  0,129,232,  0,\n\n// state[325 + 2] 0x007f40 Byte 3 of 3 (property)\n231,  0,207,231,206,233,  0,231, 204,  0,  0,  0,204,232,231,  0,\n126, 28,231,231,206,118,  0, 63,  72,  0, 26,231,233,211,  0,204,\n116,199, 72,206,  0,  0,  0,233, 231,144,140,101,  0,  0,140,  0,\n143,  0,138,  0,221,143,233, 93, 233, 97,  0,221,  0,231,233,  0,\n\n// state[326 + 2] 0x007f80 Byte 3 of 3 (property)\n231,128,233,129,  0, 51,189,233, 119,207,134,231, 99,191,136,220,\n  0,232,220,  0,120,220,231,220,   0,220,111,221,  0,231, 88,191,\n  0, 72,221,204,140,211,  0,199,  87, 87,  0,212,  0,231,231,111,\n233,  0, 50,  0,231,231,206,  0, 206, 88,  0,  0,  0,103,  0,121,\n\n// state[327 + 2] 0x007fc0 Byte 3 of 3 (property)\n233, 68,231,232,  0,126,198,231,   0,  0, 50,204,106,231,130,  0,\n  0,221,107,  0,140,206,  0,  0,  72,  0,  0,  0,  0,  0,  0,120,\n134,138,  0,  0,  0,233,121,  0, 231,130,  0,198,204,220,232,220,\n 68,209,  0,189,210,  0,  0,  0,   0,119,231,140, 68,233,207,220,\n\n// state[328 + 2] 0x008000 Byte 3 of 3 (property)\n 68,138,231,137,233,137, 51,231,   0,  0,  0,206,118,118,  0,231,\n 88,206, 72,  0,  0,139,  0,134, 115,209,  0,  0,233,  0,  0,220,\n  0,191,  0,  0,220,  0,130,191, 197,  0,  0,  0,  0,  0,  0,  0,\n231,212,  0,136,  0,  0, 68,233, 128,  0,  0, 72,231, 68,231, 68,\n\n// state[329 + 2] 0x008040 Byte 3 of 3 (property)\n220,220, 72,233,220,211,118,  0,   0,  0,144,128, 26,  0,  0,  0,\n  0,  0,206,  0, 28,  0, 51,  0, 118,  0,118,231,231,  0,107,231,\n  0,117,231,  0,231,  0,  0,  0, 231,220, 72,231,  0,  0,  0,121,\n 91,  0, 75,131, 15,232,121,107,   0,231,  0,  0,  0,121, 87, 78,\n\n// state[330 + 2] 0x008080 Byte 3 of 3 (property)\n  0,  0,  0,133,121, 49,111,138, 232,136,  0,137,136,231,  0,221,\n  0,220,  0,206,  0,  0, 68,  0,  88,  0,118,136,232,136,231,191,\n 98,126,136,  0, 72,139,  0,220,   0,137,136,230,231,232,199,115,\n  0,164,137,  0, 35,  0,  0,  0, 231,231,140,  0,191,141, 72, 16,\n\n// state[331 + 2] 0x0080c0 Byte 3 of 3 (property)\n 98, 98,233,137,199,  0, 65,  0, 231,  0,  0,  0,136,207,138,  0,\n  0,207,  0,  0,  0,  0,118,221,   0,231,136,197,124,202,136,  0,\n231,134,231,231, 53,201,  0,167,   0,  0,220,207,  0,209,  0,209,\n144, 88,  0,207,103,  0, 16,  0, 136,  0,118,  0,204,140,  0,  0,\n\n// state[332 + 2] 0x008100 Byte 3 of 3 (property)\n  0,  0,136,  0,  0, 87,136,117,  87, 72,136,  0,212,191,231, 98,\n 72, 16,207,128,  0,199,118,191, 206,207,145,164,212,207,  0,220,\n212,207,208,170,210,207,212,191, 212,164,212, 75,  0,207,212,209,\n199,145,199,117,220,231,  0,235,  72, 87,  0,220,  0,220,134,220,\n\n// state[333 + 2] 0x008140 Byte 3 of 3 (property)\n220,231,  0,  0,  0,231,206,  0, 199,  0,118, 88, 72,  0,107,  0,\n135, 88,  0,201,140, 88,231,  0,   0,231,235,  0,  0,231,  0,198,\n232,231,221,231,  0,118, 23,232,   0,207,  0,146,  0,207,130,231,\n137, 88,  0, 27,206,212,  0,207,  87,103,136, 72,207,  0, 98,134,\n\n// state[334 + 2] 0x008180 Byte 3 of 3 (property)\n140,  0,231,232,  0,231,  0,  0, 206,  0,199,  0,  0,  0,  0,138,\n  0,220,  0,231,  0,232,  0,  0, 207,  0, 87,209,136, 88,  0,  0,\n119,  0,  0,116,231,231,199,  0, 137,127,  0,231,  0,  0,  0,  0,\n232,232,232, 88,231,117,231,231, 231,231, 96,199,232, 76,194,146,\n\n// state[335 + 2] 0x0081c0 Byte 3 of 3 (property)\n126,  0,126,207,231,  0,164,231, 203, 25,233,  0,220,143,  0,204,\n  0,231,  0, 15,232,  0,  0,191,  78,190,204,231,  0,231,  0,127,\n232,  0,221, 51,  0, 68,233,171,  87,220,140,207,210, 88,220,  0,\n212,212,  0,126,140,220,220,  0,   0,  0,127,118,106,  0,199,  0,\n\n// state[336 + 2] 0x008000 Byte 2 of 3 (relative offsets)\n -8, -7, -6, -5, -4, -3, -2, -1,   1,  2,  3,  4,  5,  6,  7,  8,\n  9, 10, 11, 12, 13, 14, 15, 16,  17, 18, 19, 20, 21, 22, 23, 24,\n 25, 26, 27, 28, 29, 30, 31, 32,  33, 34, 35, 36, 37, 38, 39, 40,\n 41, 42, 43, 44, 45, 46, 47, 48,  49, 50, 51, 52, 53, 54, 55, 56,\n\n// state[337 + 2] 0x008200 Byte 3 of 3 (property)\n206,190,206,220,  0,115, 16,122, 143, 27, 75,210,136, 82, 22,231,\n105,231, 85,  0,132,  0, 19, 15, 103,220,212,105, 68,  0,136,140,\n220,231,210,  0,  0,  0,210,  0, 204,203,137,201, 88,  0,231,  0,\n 72, 72,221,198,  0,137,135,103, 191,137,122,  0,  0,  0,233,  0,\n\n// state[338 + 2] 0x008240 Byte 3 of 3 (property)\n231,231,231,  0,  0,  0,  0,136,   0,232,  0,122,220,  0,231,221,\n  0,231,231,231,231,231,  0,231, 115, 75,231,232,  0,231,231,231,\n  0,  0,231,  0,198,231, 87,231, 231,  0,203,198,  0,  0,171,103,\n 98,119,140, 63,231,  0, 24, 25, 109,231, 10,231,  0,230,118,207,\n\n// state[339 + 2] 0x008280 Byte 3 of 3 (property)\n231,  0, 26,206,231,  0,  0,  0,   0,  0,132,136,  0,201,121,231,\n  0,  0,138,  0,  0,  0,221, 98, 233,134,231,211, 98,137,210,231,\n210,206,211,210,  0,135, 71,232, 233,206,207,206,130, 97, 96,140,\n232,136,  0,136,232,  0,221,130, 106,140,  0,194,231,137,199,231,\n\n// state[340 + 2] 0x0082c0 Byte 3 of 3 (property)\n221,212,  0,231,207,117,  0,133,   0,  0,231,212,220, 98,179, 11,\n  0,140,199,111, 88,199,232,134, 235,232,  0, 88,209,  0,111,118,\n  0,206,  0,130,210, 97,137,162,   0,  0,  0,100,  0,231,  0,118,\n  0,136,  0,129,199,  0,  0,209,   0, 63,109,233,231,231,210,  0,\n\n// state[341 + 2] 0x008300 Byte 3 of 3 (property)\n232,130, 68,124,115,137,199,  0, 220, 68,  0,  0,191,211,145,191,\n  0,  0,231,  0,220,  0,231,138, 231,231,  0,204,136,231,232,  0,\n204,  0,  0,231,231,231,  0, 72, 100,221,221, 68, 72,208,  0,201,\n231,111,119,  0,130,118,136,231, 137,136,  0,  0,208,  0,  0,231,\n\n// state[342 + 2] 0x008340 Byte 3 of 3 (property)\n201,  0,211,130,  0,204, 98,232, 231,140,119,  0,211,  0,211,100,\n 10,232,137,  0,118,  0,129,  0,  24,  0, 98,  0,  0,  0,212, 72,\n212, 16,231, 28, 98,191,  0, 72,  72,  0,191, 72,191,  0,  0, 28,\n  0,  0,  0,119,  0,231,  0, 88, 207,  0,221,106, 88,199,  0,231,\n\n// state[343 + 2] 0x008380 Byte 3 of 3 (property)\n  0,  0,231,  0,  0, 72, 67,231,   0,111, 75,  0,  0,  0,118,  0,\n  0,  0,130,144,  0,221, 50,  0, 118,232,231,232,207,  0, 99,231,\n201,  0,131,  0,221,  0,  0,204, 197,231,199, 68,231,  0,  0,  0,\n  0,108, 63,220,133,203,231, 28, 231, 72,191,231,226,171,  0,129,\n\n// state[344 + 2] 0x0083c0 Byte 3 of 3 (property)\n206,130,  0,  0,  0,105,  0, 82, 211,232, 88,  0,140,231,231, 72,\n212,221,  0, 13,232,231,103,  0, 206,  0,  0,  0,140,204,  0, 47,\n118,206,  0,231,  0,  0,231,  0,   0, 68,233,194,231,  0,  0,143,\n105, 88,118,231,164,  0,231,231,  19,231,  0,232,231,206,231,  0,\n\n// state[345 + 2] 0x008400 Byte 3 of 3 (property)\n  0,204,231,126,134,  0,221,204,   0,  0, 75,206,103,118,140,232,\n  0,231,  0,232,  0,  0,  0,  0, 199,  0,  0,  0,233, 98,  0,  0,\n198,221,231,129,167, 26,212, 98,  16, 47,231,231, 76,  0,  0,  0,\n  0, 68,  0,  0,  0,204,  0,  0, 201,  0,  0,  0,111,137,  0,  0,\n\n// state[346 + 2] 0x008440 Byte 3 of 3 (property)\n231,  0,  0,  0,  0,  0,118,221, 231,146,  0,  0,231,231,198,231,\n  0,199,221,231,231,231,211, 88,   0,221,233, 88,  0,231,231,231,\n231,134,237,115,  0,231, 91,231, 231,209,  0,118,137,162,231,194,\n  0, 65,  0,121,  0, 88,210,129,   0,231,100,231,  0,  0,  0,  0,\n\n// state[347 + 2] 0x008480 Byte 3 of 3 (property)\n231,231,144,  0,231,231,  0,231, 231,  0,  0, 72,212,  0,  0,  0,\n 17,  0,  0,231, 47,  0,  0,191,   0, 68,  0,231,134,221, 19,119,\n  0,201,231,  0,  0,  0,231,  0, 121,  0,231,  0,  0,231,  0,206,\n  0,231, 68,  0,206,  0,  0,  0, 137,233,210,119,146,233,231, 99,\n\n// state[348 + 2] 0x0084c0 Byte 3 of 3 (property)\n129,121,231,  0,137,  0,129,232,   0,126,204, 51,  0,232,  0,  0,\n231,100,148,130,  0,  0,199,  0,   0,231,231,231,231, 16,  0,128,\n  0,  0,  0,235,  0,133,191,231, 231,231,232,  0,115,231,131,204,\n  0,191,  0,204,204,231,231,231,   0,  0,  0,  0,103,211,231,209,\n\n// state[349 + 2] 0x008500 Byte 3 of 3 (property)\n198,  0,  0,  0,  0,231,232,  0,   0,  0,  0,  0,231,  0,  0,  0,\n  0,103,  0,134,121,231,  0,118,  76,  0, 68,231,  0,231,211,233,\n  0, 85,  0, 75,  0,127, 91,  0,   0,  0,  0,207,141, 87,  0,231,\n231,231,  0,  0,211, 44,  0,207, 212,  0,212,132,199,140,231,231,\n\n// state[350 + 2] 0x008540 Byte 3 of 3 (property)\n232,194,  0, 68,  0,204,  0,  0, 206,140,126,231,  0,  0, 13,  0,\n  0,  0,  0,204,  0,232,221,198, 232,111,231,  0,  0,  0,232,  0,\n  0,231,221,231,206,221,  0,231,  88, 93,143,231,  0, 76,  0,231,\n  0,  0,191,  0, 63,  0,  0,204,   0,199,199,233,  0,  0,138,  0,\n\n// state[351 + 2] 0x008580 Byte 3 of 3 (property)\n198,  0,  0,  0,136,233,  0,136, 129,  0,164,  0,175,  0,  0,121,\n231,121,  0,  0,146,  0,  0,116, 127,109,  0, 85,206,  0,  0,  0,\n231,221,  0,  0,232,  0,131,  0, 162, 91,126, 44, 15,231,101,115,\n 77,  0,  0,  0,  0,  0,231,232,   0,189,164,231,  0,  0,232,  0,\n\n// state[352 + 2] 0x0085c0 Byte 3 of 3 (property)\n  0, 53,  0,  0,  0,  0,  0,  0,   0,130,  0,  0,  0, 91,221,144,\n201,  0,  0,191,  0,120,231,  0,   0,  0,  0,  0,206,121,  0,233,\n220,  0,231,  0,105,122,211,  0, 232, 53, 53,  0,  0,  0,  0,  0,\n  0,  0,  0,231,  0,  0,221,111,   0,194,129, 88,231,  0,231,206,\n\n// state[353 + 2] 0x008600 Byte 3 of 3 (property)\n  0,  0,198,  0,204,206, 76, 51,   0,  0,119, 25,231,  0,  0,  0,\n231,120,231,231,  0,  0, 63,204, 221,  0,194,  0,  0,  0,221,231,\n  0,  0,238,  0,231,  0,  0,232,   0,232,  0,  0,  0,129,  0,231,\n231,  0,231,  0,  0,  0,221,  0, 199,  0,232,  0,221,  0,  0,129,\n\n// state[354 + 2] 0x008640 Byte 3 of 3 (property)\n231,231,231,231,  0,  0,  0,  0, 231,  0,231,231,232,231,134,191,\n 88, 16,232,231, 68, 25,231,231, 231,231,142, 75, 47,231, 68,127,\n231,  0,199,  0,  0,  0,  0,127,   0,  0,  0, 35,191,  0,  0,204,\n231,115,  0,221,211,231,  0,221,   0,140,232,105,  0, 16, 98,  0,\n\n// state[355 + 2] 0x008680 Byte 3 of 3 (property)\n 72,128,128,  0,231,  0,  0,  0,   0,  0, 97,204,120,  0,  0,  0,\n221,  0,  0,209,211,142,231,  0, 221,  0,210,  0,124,191,  0,  0,\n  0,231,  0,206,111,221,  0,207, 231,199,206,231,212,  0,  0,209,\n231,207,  0,204,220,121,199,  0, 221,  0,221,  0,  0,231,211,  0,\n\n// state[356 + 2] 0x0086c0 Byte 3 of 3 (property)\n132,211,221,  0,199,231,201,136,   0,202,191,115,221, 44,172,212,\n207,  0,  0,231,199,  0,  0,  0,   0,126,  0,136,  0,  0,204, 99,\n231,231,  0,231,111,  0,  0,  0,   0,232,  0,  0,231,100, 65,116,\n207,  0,231,212,212,  0,  0,  0, 105, 88,211,129,  0,231,138,  0,\n\n// state[357 + 2] 0x008700 Byte 3 of 3 (property)\n 68,  0,136, 53,  0,  0,129,199, 201,194,201,231,  0,201,  0,  0,\n  0,232,130,130,  0,207,  0, 72, 136,  0,199,  0,138,231,206,231,\n  0, 63,206,  0,  0,111,221,  0,   0,190,  0,  0,  0,  0,  0,  0,\n  0,199,  0,  0,201,  0,  0,100,   0,  0,231, 88,  0,  0,  0,111,\n\n// state[358 + 2] 0x008740 Byte 3 of 3 (property)\n231,  0,  0,  0,  0,228,  0, 98, 212,142,  0,117,206,  0, 72,  0,\n232,221,221,194,211,131,221,201, 211,111,211,211,211,204,211,204,\n111,211,211,194,  0,233,131,221,  76,  0,204,  0,211,221,202,211,\n  0,  0,  0,211,130,  0, 97,211, 131,  0,211,  0,191,207,212,117,\n\n// state[359 + 2] 0x008780 Byte 3 of 3 (property)\n  0,  0,111,132,221,230,  0,  0, 210,  0,221,  0,  0,140,  0,  0,\n  0,  0,231,231,  0,  0,207,231,   0,  0,  0,  0,  0,  0,121, 99,\n  0,  0, 17,199,  0,  0,  0,  0, 124,  0,  0,204,207,206,  0,209,\n  0,  0,  0,201,  0,232,  0,  0,   0,  0,138,194,  0,204,  0,232,\n\n// state[360 + 2] 0x0087c0 Byte 3 of 3 (property)\n130,  0,  0,  0,194,  0,201,198, 232,  0,220,121,211,  0,211,  0,\n231,130,209,  0,  0,  0,  0,  0,   0,  0,  0,221,231,  0,  0,  0,\n201,211,  0,232,  0,220,  0,  0,   0,  0,  0,  0, 50,  0,220,194,\n  0,  0,129,210,221,  0,198,198,   0,138,  0, 87,231,  0,111,  0,\n\n// state[361 + 2] 0x008800 Byte 3 of 3 (property)\n  0,  0,221,231,231,119,232,231, 221,231,233,204,  0,119,203,231,\n  0,204,231,221,204,115,189,  0,   0,  0,  0,231,  0,  0,  0,127,\n  0,209,115,146,  0,  0,  0,231,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,194,232,  0,  0,127, 51,  0,   0,199,  0, 75,  0,  0,  0,  0,\n\n// state[362 + 2] 0x008840 Byte 3 of 3 (property)\n136,  0,231,  0,206,191, 44,  0,   0,  0,204,  0,137, 68,231,  0,\n  0,231,198, 87, 98,231,211,140,   0, 68,231,143,231, 87,194,  0,\n  0,134, 72,136,231, 28,  0,  0, 140,233,211,144, 72,211,191,  0,\n136,221,206,  0,231,231,  0,134,   0,211,  0,  0,231,233,197, 47,\n\n// state[363 + 2] 0x008880 Byte 3 of 3 (property)\n231, 67,201,  0,191,179,  0,  0, 105,  0,  0, 88,  0,126,231,  0,\n  0,  0,209,211,  0,  0, 88,232, 220,233,233,232, 72,220,204,  0,\n  0,  0,101,  0,199,  0,  0,  0,   0,  0,204,138,  0, 98,231,  0,\n231, 99,231,  0,116,231,  0,190,   0,  0,  0,  0,  0,  0,  0,231,\n\n// state[364 + 2] 0x0088c0 Byte 3 of 3 (property)\n  0,137,137,203,203, 65,207,  0,   0,  0,204,  0,  0,  0,221,109,\n  0,  0,231,  0, 68,137,231,  0, 118,144,  0,  0,107, 27,  0,106,\n  0,121,231,  0, 72,231,  0,  0, 206,  0,  0,  0,  0,  0,  0,  0,\n  0,130,231, 88,115,161,  0,  0, 137,118,  0,  0,231,107,105,  0,\n\n// state[365 + 2] 0x008900 Byte 3 of 3 (property)\n  0,231,199,  0,203,  0,  0,143,   0,220,232,231,197,191,207,191,\n140,233, 88,121,132,  0,  0,231, 232,211,209,235,191,231,231,232,\n  0,233,231,  0,  0,103,231,231, 231,  0, 88,204,  0,  0,  0,  0,\n128,231, 19,  0,220,221,111,  0, 204,231,  0,143,  0,  0,231,  0,\n\n// state[366 + 2] 0x008940 Byte 3 of 3 (property)\n  0,233,  0,231, 68,  0,  0,  0,   0,221,  0,  0,232,231,  0,  0,\n  0,  0,  0,  0,  0,  0,109,  0,   0,  0,231,231,221,221,197, 88,\n204,  0,  0,  0,204,  0,197,  0,   0,  0,127,  0,174,231,  0, 19,\n  0,  0,146,  0,198,231,  0,203,   0,  0,  0,  0,231,  0,231,140,\n\n// state[367 + 2] 0x008980 Byte 3 of 3 (property)\n231,140,221,120,  0,  0,111, 44, 129,  0,231,109,  0,231,  0,107,\n  0,231,231,121,234,  0,143,117, 198,  0, 15,  0,221,  0,  0,  0,\n  0,232,  0,  0,  0,  0,204, 15,   0,231,107,  0,204,  0,  0,198,\n  0,  0,204, 24,  0,  0,  0,204,   0,  0,127,  0,  0, 23,  0,198,\n\n// state[368 + 2] 0x0089c0 Byte 3 of 3 (property)\n 75, 28, 10,  0, 26, 72, 28,212,  10,128,191,231,  0,  0,212,  0,\n207,207, 68,231,204,  0,231,  0,   0,  0,232,  0,162,231,220,  0,\n  0,  0,  0,140,  0,233, 92,231,   0,  0,  0,  0,  0,231,  0,  0,\n  0,  0,  0,221,175,  0,  0,  0, 127,  0,  0,  0,  0,231,  0,  0,\n\n// state[369 + 2] 0x008a00 Byte 3 of 3 (property)\n 88,  0,131,109,231,  0,  0,233, 107,  0, 17,  0,232,  0,143,231,\n204,  0,231,143,  0,204, 76,146, 146,  0,  0, 47,  0,131,231, 87,\n  0,  0,170,143,  0,161,  0,206,   0,  0,107,220,  0,107,  0,  0,\n221,143,  0,117,143,231,143,231,   0,  0,107, 75, 13,231,228,  0,\n\n// state[370 + 2] 0x008a40 Byte 3 of 3 (property)\n221,204,  0,  0,231,  0,204,  0, 197,  0,  0,  0,  0,  0,204,  0,\n143,231,204,  0, 51,107,  0,  0,   0,  0,  0,131,  0,231, 87,  0,\n 87,175, 25, 47,  0,  0,107,231, 211, 87,  0, 13,204,119,143,  0,\n 13,107,143,146,231,232,231,  0,   0,130,231,  0,204,231,  0,231,\n\n// state[371 + 2] 0x008a80 Byte 3 of 3 (property)\n  0,  0,198,  0,232,202,204,109,   0,142,235,  0,146,146,  0,221,\n  0,194,221,137,211,146,  0,  0, 146,  0,204,  0,  0,  0, 91,  0,\n 87, 76,  0,170, 91,204, 51,204, 129,  0, 27,  0, 15, 15,  0,  0,\n146,  0,107,  0,  0,  0,221,  0,   0,146,  0,  0, 76,  0,232, 87,\n\n// state[372 + 2] 0x008ac0 Byte 3 of 3 (property)\n  0,231,204,  0,194,231,  0,146,   0,204,  0,143,203,194,  0, 44,\n  0,  0, 91,  0,  0,  0,143,232,   0,  0,231,204, 51,231,232,231,\n194,161,232,  0,238,  0,107, 91,   0,  0,  0,106,231,146, 17,  0,\n231, 51,231, 76,211,  0,175, 91, 146,  0, 91,  0,211,  0, 87,  0,\n\n// state[373 + 2] 0x008b00 Byte 3 of 3 (property)\n 87,164, 93,  0,143,211,221,199,   0,  0,121,221,203,211,146,221,\n109,211,211,221,194,127,194,107, 211,146,194,146,204,143,221,  0,\n 76, 44,211,  0,  0,221,232,231,  51,  0,  0,204, 51,231,  0,  0,\n  0,231,  0,109,  0,  0,  0,231,   0, 91,221,231,231,  0,129,  0,\n\n// state[374 + 2] 0x008b40 Byte 3 of 3 (property)\n  0,194,  0,  0,  0,231,231,211,   0, 75,  0,  0,198,  0,194,175,\n  0,  0,  0,204,221,  0,232,  0, 107,175, 51,203, 91,  0,  0,232,\n211,  0,  0,  0,  0,  0,138,  0,   0,231,  0,194,111,211,  0, 75,\n 87,231, 15,  0,129,  0,  0,107,   0,  0,  0,  0,  0,121,  0,231,\n\n// state[375 + 2] 0x008b80 Byte 3 of 3 (property)\n127,231,  0,117,  0,  0,  0,  0, 231,231,127,221,232,  0,204,  0,\n116,  0,194,127,231,236,194,  0,   0,231, 76,  0,232,  0,204,  0,\n231, 26, 26,191, 28,191,  0,233,  16, 16,207,207,  0, 28, 28, 28,\n 28,  0, 28, 72,212,  0, 72,179,  10,207, 28,  0, 98, 72, 26, 28,\n\n// state[376 + 2] 0x008bc0 Byte 3 of 3 (property)\n124, 28,235,207, 26,207, 28,231, 128, 28, 16,207,220,128,231, 72,\n  0, 72,191,233,  0, 16,  0, 16, 191,191, 16,128,231, 10, 98,191,\n 72, 72, 28,207,191, 10, 28,207, 235,191,  0, 72,191, 63,231, 16,\n191, 16, 72,220, 16, 72,191, 16,  16,  0, 16, 28,231, 72, 28, 72,\n\n// state[377 + 2] 0x008c00 Byte 3 of 3 (property)\n220, 16,231, 10,235, 72,191,  0,  28,  0, 98,133,207, 72, 72, 72,\n133,207,191, 16,235,212,231,212, 233,207,212,191, 72,  0,  0,191,\n  0,220, 72, 63,128,212, 72,191,  98,191,235,237,207, 72,231,191,\n233, 16,235,231, 72,  0,220, 53,   0,  0,231,  0,  0,  0,  0,164,\n\n// state[378 + 2] 0x008c40 Byte 3 of 3 (property)\n  0,126,221,  0,  0,  0,137,207, 119,199, 44,127, 99,  0,121,  0,\n127,221,  0,  0, 75,197,  0,  0,   0,  0,103,  0,221,  0,  0,  0,\n  0,137,202,  0,  0,  0,  0,  0, 232,  0,136, 85, 25,231,  0,211,\n232,211,211,232,  0,  0,  0,  0, 233, 68,206,  0,231,231,  0,  0,\n\n// state[379 + 2] 0x008c80 Byte 3 of 3 (property)\n  0,  0,111,  0,  0,206,  0,231,   0,209,161,  0,134,194,232,  0,\n231,231,  0, 25,121,232,  0,  0, 204,231,231,231,  0,143, 51,  0,\n 87,143,146,  0,  0,  0,  0, 87, 143,109,129,146, 87,231,232,109,\n 44,  0,204, 76, 87,  0,119,146, 146,  0,232,143,143,129,  0,119,\n\n// state[380 + 2] 0x008cc0 Byte 3 of 3 (property)\n146,204,119,109,143,211,  0,131,  51,  0, 51,231,  0,231,203,  0,\n  0,109,211, 91,  0,231,231,  0,   0,221,232, 15, 87,221,146,  0,\n143,129, 51,127, 51,  0, 91,  0, 231,  0,146,  0,121,143,231,231,\n231,  0,  0,  0, 75,231,231,231, 129,204, 19,232,143,121,238,  0,\n\n// state[381 + 2] 0x008d00 Byte 3 of 3 (property)\n231,235,191,  0,116,109,  0,232, 143,  0, 76,116,220,204,  0, 25,\n231,  0,231,129,116,231, 51,211,   0,231,  0,170,  0, 63, 72, 28,\n207,133, 26, 26, 16, 16, 16, 16,  28, 72, 16, 16, 72, 26, 98, 26,\n 98, 72,207,  0, 28, 16,  0,133,  28, 28, 63,128, 72,220, 98, 98,\n\n// state[382 + 2] 0x008d40 Byte 3 of 3 (property)\n  0,133, 98, 63, 28,207,  0,  0, 133,212,212, 98, 98,234, 72, 16,\n 72,231,  0,191,133,  0, 16,  0, 191,  0,133, 16,  0,226, 63,212,\n 16, 98, 98, 98,100,  0, 68,204,   0,231,  0, 68,221, 72,  0,211,\n140,231,  0,189,134, 16, 72,140,   0,  0,  0,210,  0,211,  0,  0,\n\n// state[383 + 2] 0x008d80 Byte 3 of 3 (property)\n  0,118,  0,231,220,136,  0,  0,   0,  0,137,133,  0,  0,  0,  0,\n231,231,  0,  0,  0, 25,211,  0,   0, 51,  0,  0,  0,  0,231,118,\n  0,231,  0, 88,  0,  0,  0,  0,  76,  0,  0,  0,  0,  0,  0,231,\n  0,231,204,137,121,199,  0,  0, 212,231,204,  0,221,  0, 97,231,\n\n// state[384 + 2] 0x008dc0 Byte 3 of 3 (property)\n  0,231,231, 98,235,  0,130,  0,   0,231,  0, 68,118,  0,206,197,\n  0,144,  0,  0,  0,231,206,233,   0,  0,199,201,  0,140,  0,144,\n  0,146,  0,231,209,  0,  0,  0, 118,211,115,232,  0,  0,  0,138,\n  0,231,  0,138,  0, 71,  0,207, 220,220,124,128,231,  0,  0,231,\n\n// state[385 + 2] 0x008e00 Byte 3 of 3 (property)\n  0,  0,  0,  0,  0,221,  0,  0, 231,206, 92,231,212,  0,  0,136,\n 75,  0,  0,  0,  0,  0,231,  0,   0,  0,  0,  0,  0,111,201,232,\n231,231,126,  0,  0,  0,  0,  0, 221,118,108,211,  0,  0,230,  0,\n170,207,  0,  0, 19,103,231,  0,   0,206,  0,  0,221,210,  0,  0,\n\n// state[386 + 2] 0x008e40 Byte 3 of 3 (property)\n  0,  0,201,  0,134,  0,  0, 72, 118,202,103,206,204,232,211,  0,\n232,220,212,211,231,232,231,  0, 231,197,231,  0,  0,  0,  0, 76,\n194,231,  0,129, 23,  0,118,221,   0,230,  0,  0,209,199,  0,  0,\n231,  0,115,  0,100,  0,199,  0,   0,231,129,232,206,  0,  0,191,\n\n// state[387 + 2] 0x008e80 Byte 3 of 3 (property)\n  0,138,211,  0,231,197,  0,100,   0,211,105,204,  0,107,  0,207,\n221,198,231,194,231,232,  0,  0,   0,203,231,  0,  0,  0,  0,  0,\n  0,204,  0,  0,  0,221,  0,  0,   0,  0,204,136, 68,  0,  0,142,\n198,231,118,231,  0,  0,  0,  0,   0,  0,118,  0,  0,  0,117,  0,\n\n// state[388 + 2] 0x008ec0 Byte 3 of 3 (property)\n129,  0,  0,  0,  0,231,233,  0, 231,231,107, 91, 87, 51,  0,231,\n  0,  0,146,  0,210,  0,  0,  0, 220,  0,  0,204,  0,231,221,131,\n  0,  0, 15,231,  0,  0,220,  0,   0,  0,  0,161,220,  0,  0,  0,\n231,  0,  0,220,  0,  0,220,220, 146,233,221,164,204,117, 76,  0,\n\n// state[389 + 2] 0x008f00 Byte 3 of 3 (property)\n  0,220,207,143,207,199,  0,  0,   0,146,204,  0,101,  0,  0,  0,\n  0,  0, 50,204,143, 75,  0,  0,   0,231,204,121,197, 87,232,121,\n  0,  0,  0,220,  0,199,189,  0, 220,146,107,231,235,231,231,121,\n231,  0,231,198,231,235,231,231, 143,191,  0,143,  0,  0,129, 87,\n\n// state[390 + 2] 0x008f40 Byte 3 of 3 (property)\n220,220,199,  0,143, 76,194,  0,   0,122,  0,  0,231, 51,121,231,\n  0,  0,  0,231,231,  0,  0,231, 220,  0,  0,  0,231,  0,  0, 87,\n231,194,116,231,197,  0, 16, 72,  98, 72,  0,220, 28,220, 16, 10,\n 72,220,207,  0, 16,220,191,  0, 220,  0,  0, 16,191, 28,  0, 72,\n\n// state[391 + 2] 0x008f80 Byte 3 of 3 (property)\n  0,  0,  0, 28,191, 16,133,220,  72, 16, 72,235,  0, 72,220,  0,\n 98, 28,  0, 28,231,133,133,207, 191,191,  0,136,126,  0, 92, 67,\n  0,  0,  0,115,  0,  0, 27,231,  67, 16,  0,191,  0, 75,204, 76,\n 51,135,107,  0,  0,231,231,198,   0, 16, 15,116, 15,133, 28,116,\n\n// state[392 + 2] 0x008fc0 Byte 3 of 3 (property)\n  0,133,103,  0, 88,139,231, 10,  16,  0,231,231,  0,  0,138,  0,\n 28, 88,231,204,100,  0,  0,231,  10, 16,203, 28, 10, 26,128, 98,\n231,232,111,231,170,130, 51,231, 204,172,118,137,231,115,221,231,\n140,231,  0,207, 25,221,231, 88, 201, 72,121,  0,232, 88,231,  0,\n\n// state[393 + 2] 0x009000 Byte 3 of 3 (property)\n138,103, 10,137,206,111,103,  0, 231, 28, 72,206,  0, 68,231,138,\n115,206, 16,116,137,129,204, 97,   0, 25,140,130,  0,137,137,136,\n140,197,136,146,221,231,220,231,   0,  0,  0,  0,  0,  0, 88,230,\n  0,107,143,  0,231,201,233,231,  68,194,  0, 72, 68,  0,144,  0,\n\n// state[394 + 2] 0x009040 Byte 3 of 3 (property)\n  0,111, 88,  0,204, 15,  0,140,   0,231,143,143,  0,115,143,118,\n111,206,233,137, 87,146,203, 16, 232, 91,  0,208, 51,221, 75,  0,\n 87,116,210, 53,  0, 35,  0,231, 130,107,  0,  0,231,138,136,232,\n  0,231, 76,  0,132,115,129, 91, 107,231,146,  0, 51, 87,231,140,\n\n// state[395 + 2] 0x009080 Byte 3 of 3 (property)\n118, 91,111,118,143,231,231, 91, 199,116, 76,206,  0,  0,231,129,\n204, 68,  0, 98,  0, 67,  0,128, 231,191,231, 72,  0,212,  0,  0,\n232,191, 67, 68,  0,231,136,  0, 189,  0, 68,  0,207,  0, 10, 67,\n208, 96,231, 72,233, 67,231,  0,  88, 72,133, 16,  0,231,233,  0,\n\n// state[396 + 2] 0x0090c0 Byte 3 of 3 (property)\n  0, 68,  0,204,233,199,  0,233, 204,  0,135,  0,  0,  0, 53,212,\n  0, 16,  0,212,211,232,  0,233,   0,231,  0,231,199,118,161,231,\n  0, 47,189,  0,204,  0,212,133, 140,  0,233, 72,231, 68,  0,199,\n  0,  0,231,  0, 72,143,  0,117,  72,  0,  0,  0,  0,137,191,232,\n\n// state[397 + 2] 0x009100 Byte 3 of 3 (property)\n231,  0, 72,231,191,  0,232,  0,   0, 27,  0,221,  0,  0,  0,  0,\n221,  0, 50,  0,204,161,232,231, 231, 68,  0,  0,231,  0, 72,231,\n231,  0, 72,233,231,  0,  0, 51,   0,231,231,  0,231, 50,  0,199,\n 25,199,175,  0,170,  0,231,231,   0,231,204,  0,  0,231,  0,  0,\n\n// state[398 + 2] 0x009140 Byte 3 of 3 (property)\n  0,  0,  0,220,  0,  0,206,231, 204, 68,189, 68, 97, 88, 24,  0,\n208,  0,140,  0, 15,221,231,130, 232,  0,118,231,231, 63,191,  0,\n  0,  0,105,209,231,126,  0,  0,   0,197,136,  0,140,  0,118,118,\n 72, 72,231,231,221, 88,118,140, 137,221,237,  0,  0,  0,  0, 72,\n\n// state[399 + 2] 0x009180 Byte 3 of 3 (property)\n  0,  0,198,129,  0,231,  0,115,   0, 85,  0,118,220,106,231,231,\n106,  0,126,220,220,220,220,101,   0,  0,120,118, 87,  0, 75,  0,\n  0,221,231,122,117,  0,  0,  0,   0,  0,199, 25, 75,  0,121,121,\n  0,122,  0,231,100,232,  0,  0, 117,  0,206,231,  0,  0,231,  0,\n\n// state[400 + 2] 0x009000 Byte 2 of 3 (relative offsets)\n -7, -6, -5, -4, -3, -2, -1,  1,   2,  3,  4,  5,  6,  7,  8,  9,\n 10, 11, 12, 13, 14, 15, 16, 17,  18, 19, 20, 21, 22, 23, 24, 25,\n 26, 27, 28, 29, 30, 31, 32, 33,  34, 35, 36, 37, 38, 39, 40, 41,\n 42, 43, 44, 45, 46, 47, 48, 49,  50, 51, 52, 53, 54, 55, 56, 57,\n\n// state[401 + 2] 0x0091c0 Byte 3 of 3 (property)\n 50,170,  0,231,  0,  0,194,120,  15, 88, 16,127,134,139,103,140,\n119,136,231,231,211,221,231,129, 143,221,231,231,103,107,231,231,\n  0,231,  0,109,232,231,131, 13,   0,211,  0,  0,211,204,231,  0,\n  0,221,  0,  0,  0,121,231,211,   0,210,  0,231,231,  0,  0,231,\n\n// state[402 + 2] 0x009200 Byte 3 of 3 (property)\n211,232,  0,  0,221,233,231,  0, 221,127,204,  0,  0,146,194,  0,\n204,143,  0,  0,119, 19,  0,  0,   0,  0,  0,  0,232,  0, 76,  0,\n  0,231,  0,127,  0,128,127, 72,   0,191,220,  0,231,204,211,230,\n221,  0,231,221,107,  0,191, 99, 211, 72, 85,212,235,207,210,194,\n\n// state[403 + 2] 0x009240 Byte 3 of 3 (property)\n 76,  0,  0,231, 44,127,204,  0, 194, 51,211,162,  0,211,232,231,\n231,204,  0,  0,  0,  0,  0,131,   0,231,204,107,  0,  0,204,231,\n  0,  0, 44,  0,119,  0,194,231,   0,  0,  0,  0,211,211,  0,  0,\n  0, 15,  0,  0, 16,  0,  0,231, 204,  0,221,129,  0,  0,116,232,\n\n// state[404 + 2] 0x009280 Byte 3 of 3 (property)\n107,  0,  0,109,  0, 87, 72, 72,  72, 98,128,211,  0,221,  0,133,\n  0,131,  0, 75,  0,198,129,  0, 107,231,116,198,121,129,  0,  0,\n211,  0,  0,211,  0,211,204,232, 204,  0,221,221,211,117,212,  0,\n  0,  0,129,127,  0,211,  0, 27,   0,121,  0,211,211,231,  0,  0,\n\n// state[405 + 2] 0x0092c0 Byte 3 of 3 (property)\n  0,127,221,211,  0,122,207,211,   0,211,  0,232,204,  0,  0,109,\n204,  0, 91,231,  0,204,  0,231,   0,231,  0,  0,  0,  0,  0,  0,\n231,231,  0,  0,131,  0,  0,231, 221,231,119,231,231,117,232,211,\n127,  0,116,116,  0,  0,  0,  0, 143,231,198,231, 87,  0,  0,231,\n\n// state[406 + 2] 0x009300 Byte 3 of 3 (property)\n221,  0,232,  0,127,  0,116,  0,   0,  0,231,  0,  0,231,  0,204,\n107,  0,221,  0,  0,204,  0,  0, 143,204,129,221,  0,231,204,221,\n146,121,127,231,211,231, 91,231, 131,211,221, 51, 44,  0,194,131,\n  0,  0, 15,127,  0,231, 23,  0, 127,  0,203,231,221,  0,  0,  0,\n\n// state[407 + 2] 0x009340 Byte 3 of 3 (property)\n  0,  0,  0,  0,231,  0,  0,204, 231,231,118, 88, 72,119,128, 72,\n128,207,207, 72, 99, 72,191, 72,  72,128,120,137,191,128,207, 72,\n 72,128,207,207,120,124, 72,207, 133, 72,231, 72,109,  0,116,  0,\n 25,221,  0,  0,  0,131,211,  0,   0,  0,127,  0,109,  0, 51,231,\n\n// state[408 + 2] 0x009380 Byte 3 of 3 (property)\n  0,  0,122,  0,  0,  0,  0,  0,   0,  0,122,  0,116,  0,  0,206,\n  0,  0,  0,  0, 50,  0,107,194, 129,  0,131,  0,  0,221,  0,  0,\n  0,221,127,232,231,221,221,146,   0,221,221,  0, 47,167,111,128,\n 67,207,128,144, 72,208, 72,128, 128, 98,128,207, 98,199,124,233,\n\n// state[409 + 2] 0x0093c0 Byte 3 of 3 (property)\n128, 72, 72, 72,207,133, 72, 72, 130, 72,221,128, 16,124,  0,  0,\n232,116,  0,  0,  0,  0,199,129, 129,  0,  0,  0,204,194,204,129,\n  0,143,129,  0, 76,231,  0,231, 198,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,204,  0,  0, 231,221,  0,  0,  0,127,  0,  0,\n\n// state[410 + 2] 0x009400 Byte 3 of 3 (property)\n  0,  0,  0,232,  0,  0,  0,231,   0,231,  0,  0,  0,  0,128, 72,\n 72,128,128, 72, 72,207,207, 72,  68,189,190,191,191,191,207,128,\n 72,189, 72,128,212,207,207,199, 207,191,207,199,207,128,208,  0,\n  0,231,204,129,  0, 76,204,  0, 119,  0,194,  0,  0,210,  0,211,\n\n// state[411 + 2] 0x009440 Byte 3 of 3 (property)\n  0,231,  0,  0,121,231,  0,  0, 231,  0,232,  0,221,  0,  0,  0,\n  0,107, 76,198,  0,231,  0,  0,   0,  0,194,198,  0,  0,231,  0,\n204,  0,231,204,  0,  0,  0,  0,   0,  0,232,141,  0,232,  0,  0,\n121,191,130,207,207,233,231,206, 191,191,191,207,111,119,121,119,\n\n// state[412 + 2] 0x009480 Byte 3 of 3 (property)\n220,231,  0,207,233,220,235,235,  16, 72,191,  0,220,191,226,220,\n231,204,191, 72,  0,191,  0,191, 212, 72,220, 72,207,191, 72,128,\n 72,191, 16,191,220, 72, 72, 72,  63, 63,235,  0,231,  0, 72,191,\n 72, 16,231, 72,191,179,  0,  0,   0,220,226, 98, 72,226, 72,212,\n\n// state[413 + 2] 0x0094c0 Byte 3 of 3 (property)\n191, 16, 72, 16,212, 72,191,  0, 235,212,191,191,191,191,191,207,\n191,235,235,  0,  0,233,212,235,   0,220,  0,191, 16, 16,  0,191,\n191,212,212, 63,191,231,204,212, 212,220,235,  0, 72, 72,191,220,\n191,233, 63,220,  0, 98, 11,220,  63,231, 98,212,233,231, 28,207,\n\n// state[414 + 2] 0x009500 Byte 3 of 3 (property)\n 26, 72, 72,220,207, 98,191,  0,  67,191,  0,133, 72,  0,  0,212,\n 98,191,220,  0, 98,128,  0,191,   0, 16,128, 72,220, 72,231,124,\n  0, 16,207,128, 63, 72, 16,  0, 226,  0,  0,  0,  0, 72,133, 72,\n 72,  0,212,  0,212,191,191,212,   0,191,220, 98,  0,  0,  0,  0,\n\n// state[415 + 2] 0x009540 Byte 3 of 3 (property)\n 72, 72,207,  0,  0,231,  0, 28,   0,191,191,  0,179, 72,231,235,\n191, 72,220,191,  0,212,207,212,   0,  0,  0,212, 16,235,220,231,\n  0,  0,234,191,  0,231,220,235, 235,  0,  0,  0,235,191,  0,207,\n199,191,231,191,  0,  0, 63,107, 231,220,  0,  0,211,  0,  0, 28,\n\n// state[416 + 2] 0x009580 Byte 3 of 3 (property)\n 87,  0,204, 91,  0,  0,232,231, 231,146,231,107,  0,  0,204,164,\n  0, 51, 19,146, 51,  0,203,  0, 119,232,  0,  0,  0,  0,221,231,\n231,211, 15,146, 91, 87,231,231,  76, 75,  0,199,209,171,206,  0,\n207, 23,105,128,231,128,232,  0,  98, 72, 98, 99, 67,199,189, 72,\n\n// state[417 + 2] 0x0095c0 Byte 3 of 3 (property)\n207, 98,133,199,191,233,121,105,  72,210,111,204,194,194,  0,  0,\n204,  0,  0,204,129,119,129,221, 117,  0,221,  0,122,  0,204,  0,\n  0,119,121,  0,  0,238,  0,  0,  26,235, 16, 72,  0, 26, 28, 72,\n207,191,128,220, 10, 72,231, 72,  98, 16,207, 26,  0, 63,212,  0,\n\n// state[418 + 2] 0x009600 Byte 3 of 3 (property)\n 72, 98,191,  0,220, 26,133,  0, 191,191,212,  0,  0,  0, 72,  0,\n 72,191,  0,  0, 98,235,207,212,   0,191,212,  0, 53,231,231, 28,\n  0,206,  0,  0,  0,  0,  0,  0, 204,  0,116,  0,  0,231, 50,232,\n  0,118,140, 26, 16, 72, 16,  0,   0,221,  0,138,231,  0,  0, 68,\n\n// state[419 + 2] 0x009640 Byte 3 of 3 (property)\n 68,231, 67,  0,126, 26,128, 72,  28,212,  0,115,118,140,221,231,\n138,210,  0,210,206,133,  0,  0, 232,  0,231,103, 91,164,119,167,\n  0,118,138, 87,136,117,203,  0, 212, 26,115,  0,204,  0,  0,  0,\n 87,  0,209, 76,221, 68,136, 85,  87,  0, 15,231,  0, 51,231,  0,\n\n// state[420 + 2] 0x009680 Byte 3 of 3 (property)\n  0,  0,231,231,204, 53, 68,  0, 105,221, 87, 68,  0,130,107,142,\n128,  0,  0,  0, 97,109,  0,197, 115, 88,  0,107,140,231,211,231,\n116,211,221, 44,204,231,  0,126, 121,  0, 75,  0,  0,  0,  0,231,\n233, 25,203,  0,164,  0, 63, 44, 121,204,  0,131,103,191, 10,  0,\n\n// state[421 + 2] 0x0096c0 Byte 3 of 3 (property)\n136,140,  0,221, 97,138,137, 88,   0,111,  0, 76,136, 68,233, 98,\n  0, 15,199,127,231,144, 25,  0,   0,121,231,109,127,231, 25,  0,\n  0,  0, 87, 87,  0,  0,  0,221, 137,206,137,109,  0,  0,231, 89,\n 13,  0, 91,207,  0,  0,126,140, 231, 99,  0,143,  0,  0, 98,211,\n\n// state[422 + 2] 0x009700 Byte 3 of 3 (property)\n115,207,  0,  0,126,174,115,137, 121,141, 44,  0,  0,118,201,130,\n  0,197,  0,115,  0,  0, 68,  0, 231,194,  0,  0,138,  0,140,  0,\n  0,  0,  0,231,231,  0,  0,143,   0,  0,232,  0,  0,191,  0,  0,\n197,  0, 97,231,  0,  0,  0,  0, 144,111,  0,231,  0,204,209,  0,\n\n// state[423 + 2] 0x009740 Byte 3 of 3 (property)\n  0,  0,119,231,194,  0,232,  0,  75,232,231,  0,  0,231,231,231,\n  0,161,137, 72,  0,231, 68,  0, 232, 53,121,120,127,  0,136,  0,\n118,137,140,  0,231,233,175,  0, 204,140,  0,203,  0,116,  0,  0,\n  0,116,  0,120,103,  0,118,231,   0,231,161,  0,197,211,  0,  0,\n\n// state[424 + 2] 0x009780 Byte 3 of 3 (property)\n  0,231,  0,  0,116,206,203,231, 127,  0,211,130,231, 74,211, 50,\n231,235,  0,  0,  0,231,  0,  0,  88,  0,231,  0,231,  0,232,  0,\n 68,  0,  0,189,  0,231,204,  0, 161,  0,  0,231,231,140,231,220,\n  0,231,  0,231,231,  0,  0,  0,   0,  0,  0,  0,  0,  0,231,  0,\n\n// state[425 + 2] 0x0097c0 Byte 3 of 3 (property)\n  0,204,  0,194,  0,  0,204,  0, 231,  0,  0, 76,127,  0,  0,221,\n  0,  0,231, 91,  0,  0,  0,231,   0,232,  0,  0,194,  0,211,231,\n  0,204,  0,  0,  0,  0, 72, 72, 231, 16,210,207,191,118,101,  0,\n  0,  0,231, 88,  0, 72,118,  0,   0,  0,231, 51,  0,231,221,143,\n\n// state[426 + 2] 0x009800 Byte 3 of 3 (property)\n231,119,146,109,  0, 87,146,221, 143,  0,161,  0, 91,231,161,232,\n131,109,119, 91,  0,  0,  0,119,  87,  0,117,211,211,204,232,  0,\n211,121,  0,231,119,231,127,  0, 221,211,  0,206,116,107,  0,  0,\n121,  0,221,231,198,231,  0,109,  87,121,231,143, 44,198,  0,231,\n\n// state[427 + 2] 0x009840 Byte 3 of 3 (property)\n231,  0,  0,  0,  0,231,131,  0,   0,  0,  0,231,143,146, 88,121,\n 72,128, 72, 67, 53, 92, 98,204, 146,232,237,119,  0,221,143,  0,\n  0,221,128,191,220,120,128,143, 128,207,207,115,199,128,  0,127,\n194,121,  0,204,204, 26, 16, 98,   0, 26, 28, 10,226, 72, 16, 16,\n\n// state[428 + 2] 0x009880 Byte 3 of 3 (property)\n220,133, 72,  0, 26,128, 28, 72,  16,207,207,  0,207, 98,  0,235,\n 72, 28,  0,179,220,  0, 72, 16,  28,231,207,179,128, 26,220,  0,\n 72,212,212,  0, 72,  0,220,207,  87,  0,203,  0,  0,231,221,109,\n  0,121,211,211,  0,  0,204,  0,   0,  0,174,221,204,  0,  0,  0,\n\n// state[429 + 2] 0x0098c0 Byte 3 of 3 (property)\n  0,  0,  0,231, 76,  0, 19,231, 231,  0,231,  0,  0,  0, 10,  0,\n  0,  0,212,212,  0,220,  0,  0,  98,128,207, 87,198,  0, 16,137,\n231,231, 51,  0,231,232,  0,221, 207,194,129,198,  0,194,231,107,\n  0,  0,107,  0,109,232,232,  0, 231,221,221,  0,146,146,143,  0,\n\n// state[430 + 2] 0x009900 Byte 3 of 3 (property)\n231,  0,  0,146,  0,143,  0,  0, 211,194,143,  0,109,  0,  0,  0,\n118,221,204, 87,232,231,  0,  0,  76,  0,121,204,  0,231,119,  0,\n161,143,  0,  0,231,  0,  0,231, 143,  0,  0,  0,232,  0,199,  0,\n  0,  0,  0,  0,  0,129,  0,  0,   0,  0,  0,231,232,129,129,204,\n\n// state[431 + 2] 0x009940 Byte 3 of 3 (property)\n  0,231,203,204,  0,146,  0,  0, 211,198,  0, 25,129,231,  0,  0,\n231, 76, 93,  0,  0,121,231,131, 231,231,231,231,204,231,204,231,\n231,  0,231,231,231, 63,  0,  0, 191,  0, 98,231,207, 16, 16,191,\n 16, 72,133,  0,220,128, 98,191,   0,  0, 72,  0, 98,212,  0, 72,\n\n// state[432 + 2] 0x009980 Byte 3 of 3 (property)\n226,191,  0,  0,191, 98, 16,  0, 133,  0,220,191,  0,179,  0,191,\n235,  0, 72,  0,220,235,126,201, 232,136,231,  0,  0,  0,231,  0,\n  0,  0,  0,  0,  0, 68,  0,  0,  68,  0,  0,  0, 87,129, 51,  0,\n  0,206,  0, 87,109,231,  0,  0,   0,  0,  0,  0,191,  0,  0,  0,\n\n// state[433 + 2] 0x0099c0 Byte 3 of 3 (property)\n  0, 76,  0,  0,117, 44, 15,  0, 203,231,  0,  0,  0,  0,  0,  0,\n146,232,109,  0,232, 76,  0,  0, 232,204,231, 25,  0,119,  0,161,\n  0,221,175,  0,  0,231,231,231,   0,  0,  0,  0,  0, 78,231,  0,\n231,119,231,  0,  0,  0,  0,  0, 198,231,  0,231,  0,  0,  0, 91,\n\n// state[434 + 2] 0x009a00 Byte 3 of 3 (property)\n  0,204,221,231,  0,232,  0,  0,   0,  0,  0,231,  0,  0, 87,204,\n  0,231, 44, 15,  0,  0,204,  0,   0,143,  0,  0,  0,  0,  0,  0,\n231,  0,  0,231,  0,  0,  0,  0, 116,  0,  0,204,  0,232,232,  0,\n 87,  0,  0,231,  0,221,161,127, 231,  0,  0,231,  0,  0,194,  0,\n\n// state[435 + 2] 0x009a40 Byte 3 of 3 (property)\n194,238,232,204,204, 75,  0,  0,   0,  0,129,231,221,194,232,  0,\n  0,  0,204,  0,  0, 91,  0, 25,   0,  0, 87, 51,  0,  0,  0, 17,\n  0,  0,129,  0,194,129,  0,  0,   0,232, 47,231, 10,128,212, 72,\n 98, 63,  0, 72, 72,  0,133,212, 212,207,  0,133, 98,220, 16, 72,\n\n// state[436 + 2] 0x009a80 Byte 3 of 3 (property)\n231,191, 63,  0, 72,133, 72,191, 235,  0,212,207, 16,  0,  0, 72,\n212, 72,  0,  0,  0,  0,  0, 16,   0,  0, 72,212,220,220, 63,231,\n212,191,220,  0, 98,191,  0,212, 137,  0,228,  0,  0,231,  0,211,\n206,231,  0,  0,  0,  0,191,130, 137,  0,220,  0,118,  0,  0,  0,\n\n// state[437 + 2] 0x009ac0 Byte 3 of 3 (property)\n232,230,230,231, 44,212,231,  0,   0,  0,  0,207,220,  0,231,143,\n  0,198,127,130,122,204,129,  0, 140,116,  0,  0,231,  0,231,231,\n231,206,203,198,  0,  0,111,  0,   0,231, 44,197,  0, 47,127,189,\n  0,231,  0,  0,198,  0,  0,198,   0,204,  0,201,  0,  0,  0,  0,\n\n// state[438 + 2] 0x009b00 Byte 3 of 3 (property)\n  0,  0,231,206,  0,  0,129,  0, 221,  0,  0,  0,  0,129,  0,  0,\n237,  0,  0,207,  0,  0,231,  0, 194,231,131,  0,  0,  0,  0,199,\n  0,  0,194,197,231, 25,231, 25, 194,198,204,  0,  0,231,194,190,\n  0, 91,233,  0,  0,  0,  0,231, 231,  0,  0,206,136,  0,  0,  0,\n\n// state[439 + 2] 0x009b40 Byte 3 of 3 (property)\n  0,136, 88,197,126,103,  0,212, 221,235,  0,231,  0,197,194, 68,\n  0,197,  0,  0, 88,  0,  0,  0, 204,  0,107,221,  0,231,231,211,\n211,  0,  0,  0,  0,  0,  0,  0, 211,221,  0,  0,  0,  0,231, 76,\n  0,  0,231,231,232,231,  0,129,   0,231,  0,  0,  0,221,  0,  0,\n\n// state[440 + 2] 0x009b80 Byte 3 of 3 (property)\n231,  0,  0,231,  0,  0,231,  0,   0,  0,  0,221,  0,  0,116,231,\n232,119,198,198,221,  0,231,231,   0,231,  0,  0,  0,231,  0,198,\n231,  0,  0,  0,231,  0,231,231, 116,231,143,109,  0,146, 91,  0,\n191,231,  0,  0,231,  0,  0,  0, 232,231,  0,231,  0,231,  0,  0,\n\n// state[441 + 2] 0x009bc0 Byte 3 of 3 (property)\n232,232,  0,  0,231,  0,231,232, 231, 87,121,  0,  0,  0,231,231,\n231,231,231,211,232,  0, 13,232,   0,221,  0,146,231,221,  0,  0,\n  0,232,232,231, 76,  0,  0,211,  87,  0,221,231,231,  0,  0,  0,\n162,198,231,  0,  0,203,  0,204, 231,  0,  0,  0,  0,204,  0,  0,\n\n// state[442 + 2] 0x009c00 Byte 3 of 3 (property)\n231,  0,231,  0,231,  0,198,  0, 194,231,203,231,203,194,  0,  0,\n116,231,231,194,231,204,  0,  0,   0,  0,  0,231,  0,  0,  0,  0,\n  0,232,  0,  0,198,232,  0,231, 221,232,  0,  0,231,143,232,203,\n231,204,129,  0,  0,  0,231,  0,   0,109,194,143,  0,  0,204,  0,\n\n// state[443 + 2] 0x009c40 Byte 3 of 3 (property)\n  0,  0,211,  0,  0,  0,231,198, 109,204,231,  0,  0,  0,231,231,\n  0,  0,109,231,204,  0,221, 51, 204,  0,198,  0,  0,  0,  0,211,\n232,  0,  0,231,  0,  0,  0,194, 231,231,  0,231,  0,  0,  0,  0,\n  0,231,232,  0,231,  0,231,121, 129,231,211,204,128,  0,  0,207,\n\n// state[444 + 2] 0x009c80 Byte 3 of 3 (property)\n235,128,212,220,  0,212,212,226, 191,  0,  0,  0,  0, 72,220,  0,\n231,212,  0,  0,  0,  0,  0,  0,   0,  0,220,220, 16,  0,179,212,\n231,220,133,  0, 72,235,  0,  0,  72,220,  0, 72,  0,220,220,  0,\n  0,235,207,207,231,191,207,212, 128,  0,  0,231,231,220,  0,  0,\n\n// state[445 + 2] 0x009cc0 Byte 3 of 3 (property)\n  0,231,  0,191, 63,207,  0,  0,   0,  0,220,  0, 63,207,235,220,\n220,  0,  0,  0,220,191,207, 72,   0,212,  0,  0,212,133,128,191,\n  0,231,220,  0,  0,146,  0,204,   0,109,221,231,231,  0,  0,211,\n231,  0,  0, 51,146,  0,143,  0,   0,  0,221,  0,231,  0,  0,  0,\n\n// state[446 + 2] 0x009d00 Byte 3 of 3 (property)\n  0,  0,  0,232,  0,  0,238,194, 198, 91,  0,231,  0,  0, 44,  0,\n  0,  0,194,  0,  0,206,  0,231,   0,  0,  0,119,231,211,211,204,\n  0,  0,231,206,231,  0,119,231,  51,231,231,203,203,  0,  0,232,\n  0,  0,  0,  0,211,  0,  0,  0,   0,  0,  0, 91,  0,231,231,121,\n\n// state[447 + 2] 0x009d40 Byte 3 of 3 (property)\n  0,231,232,  0,203,  0,231,  0, 231,231,  0,  0,  0,  0,  0,  0,\n231,111,221,  0,  0,  0,231,  0,   0,231,  0,  0,109, 25,198,204,\n106,131,  0,  0,231,  0,  0,  0,   0,  0,204,231, 91,  0,  0,194,\n121,  0, 76,  0,  0,  0,231,232, 231,  0,203,  0,231,  0,231,  0,\n\n// state[448 + 2] 0x009d80 Byte 3 of 3 (property)\n231,231,231,231,231,  0,  0,204,   0,194,231,231,231,231,  0, 15,\n231,231,231,232,231,231,211,231, 232,  0,204,  0,231,231,  0,  0,\n  0,232,231,  0,231,  0,  0,  0,   0,204,  0,231,  0,  0,  0, 91,\n  0,231,204,  0,109,  0,  0,  0, 231,221,204,204,211,  0,  0,204,\n\n// state[449 + 2] 0x009dc0 Byte 3 of 3 (property)\n221,231,204,  0,161,  0,231,  0,   0,231,  0,  0,  0,  0,  0,231,\n  0,  0,  0,204,  0,  0,232, 76,   0,232,211,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,204,204,  0,   0,  0,  0,  0,231,231,  0,232,\n  0,231,146,221,211,  0,  0,  0, 129, 87,107,  0,  0,231,  0,211,\n\n// state[450 + 2] 0x009e00 Byte 3 of 3 (property)\n  0,  0,  0,  0,  0,  0,231,  0,   0,  0,  0,231,  0,  0,231,  0,\n  0,  0,  0,  0,  0,204,231,  0,   0,231,129,204,  0,204, 51, 72,\n191,133,207, 98,  0,191, 72,231, 235,220,212,  0,220, 98,  0,191,\n220,  0,  0,191,  0,212,  0,  0, 220,  0,  0,  0,  0, 72,191, 16,\n\n// state[451 + 2] 0x009e40 Byte 3 of 3 (property)\n  0,  0,212, 72,191, 63,231,234,   0,207,207,220,191,  0,  0, 98,\n  0,207,  0,231,  0,  0,231,235, 220,  0,179,  0,212,  0,220,  0,\n  0,  0,  0,  0, 98,  0,207,212,   0,  0,  0,191,220, 72,220,  0,\n 72,  0,  0,207,  0, 76,  0,  0, 117,121,  0,  0, 76, 75,  0, 88,\n\n// state[452 + 2] 0x009e80 Byte 3 of 3 (property)\n231,203,121,231,231,  0,  0,232, 204,  0,  0,206,231,  0,  0,  0,\n  0,231,138,137,  0,  0,231, 51, 231,  0,  0,231,  0,111,  0, 68,\n  0,  0,  0,  0,232, 75, 71,221, 231,109,231,231,231,231,  0,  0,\n  0,  0,  0,  0,121,127,  0,  0,  98,117,117,137, 25, 96,189,116,\n\n// state[453 + 2] 0x009ec0 Byte 3 of 3 (property)\n  0,  0,  0, 75, 65,  0,  0,  0,   0,220,  0,  0,198,201,126, 89,\n231, 82,117,  0, 72,  0,  0,  0,  85,117,  0,111,206,206, 27, 72,\n206,  0,  0,  0,  0,204,  0,  0,  77,  0,  0,  0,  0,  0,  0,130,\n  0,  0,  0,  0,129,  0,231,204, 231,231,221,232,232,238,220,232,\n\n// state[454 + 2] 0x009f00 Byte 3 of 3 (property)\n  0,  0,231,231,  0,  0,  0,232, 198,232,  0,220,  0,  0, 68,221,\n206,  0,  0,134,  0,232,231,231,   0,231,  0,  0,231,  0,  0,  0,\n126,231,231,  0,  0,231,231,  0,   0,221,  0,232,189,  0,  0,204,\n  0,  0,  0,  0,211,  0,  0,232,   0,220,  0, 88,  0,  0,206,  0,\n\n// state[455 + 2] 0x009f40 Byte 3 of 3 (property)\n  0,211,  0,  0,  0,  0,  0,  0,   0,  0, 76, 51,  0,  0,198,231,\n133,  0, 75,  0,231,232,  0,  0,   0,  0,  0,  0,221,  0,  0,194,\n231,122, 15,121,  0,  0,129,198,   0,  0,204,  0,194,  0,231,  0,\n  0,  0,204,  0,  0,  0,232,232,   0,  0,  0,  0,  0,  0,  0, 72,\n\n// state[456 + 2] 0x009f80 Byte 3 of 3 (property)\n  0,  0,  0,  0, 16,233,  0,220, 207,  0,212,207,212, 51,  0,  0,\n 75,232,231,  0,121,204,231,231, 231, 11, 72,212, 50,231,231,120,\n237,  0,204,  0,  0,  0,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  6,  6,  6,  6,   6,  6,  6,  6,  0,  0,  0,  0,\n\n// state[457 + 2] 0x009fc0 Byte 3 of 3 (property)\n  0,  0,  0,229,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[458 + 2] 0x000080 Byte 2 of 2 (property)\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[459 + 2] 0x001100 Byte 3 of 3 (property)\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[460 + 2] 0x001100 Byte 3 of 3 (property)\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[461 + 2] 0x001100 Byte 3 of 3 (property)\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[462 + 2] 0x00d780 Byte 3 of 3 (property)\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[463 + 2] 0x000080 Byte 2 of 2 (property)\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[464 + 2] 0x00a000 Byte 2 of 3 (relative offsets)\n -6, -6, -6, -6, -6, -6, -6, -6,  -6, -6, -6, -6, -6, -6, -6, -6,\n -6, -6, -6, -6, -6, -6, -6, -6,  -6, -6, -6, -6, -6, -6, -6, -6,\n -6, -6, -6, -6, -6, -6, -6, -6,  -6, -6, -6, -6, -6, -6, -6, -6,\n -5, -5, -5, -5, -5, -5, -5, -5,  -5, -5, -5, -5, -5, -5, -5, -5,\n\n// state[465 + 2] 0x000080 Byte 2 of 2 (property)\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[466 + 2] 0x00f900 Byte 3 of 3 (property)\n  3,  3,  3,  3,  3,  3,  3,217,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,215,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3, 215,215,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,215,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[467 + 2] 0x00f940 Byte 3 of 3 (property)\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n215,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[468 + 2] 0x001100 Byte 3 of 3 (property)\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[469 + 2] 0x00f9c0 Byte 3 of 3 (property)\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n215,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,215,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[470 + 2] 0x00fa00 Byte 3 of 3 (property)\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,238,194,231,231,\n215,116,215,231,231,215,215,215, 215,215,215,215,215,215,215,231,\n  4,231,215,231,231,215,215,231, 231,231,215,215,215,215,  0,  0,\n  4,  4,  4,  4,  4,  4,  4,  4,   4,  4,  4,  4,  4,  4,  4,  4,\n\n// state[471 + 2] 0x00fa40 Byte 3 of 3 (property)\n  4,  4,  4,  4,  4,  4,  4,  4,   4,  4,  4,  4,  4,  4,  4,  4,\n  4,  4,  4,  4,  4,  4,  4,  4,   4,  4,  4,  4,  4,  4,  4,  4,\n  4,  4,  4,  4,  4,  4,  4,  4,   4,  4,  4,  0,  0,  0,  0,  0,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[472 + 2] 0x00fac0 Byte 3 of 3 (property)\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  0,  3,  3,  3,   3,  3,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[473 + 2] 0x00ff40 Byte 3 of 3 (property)\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  4,  4,   4,  4,  4,  4,  4,  4,  4,  4,\n  0,  4,  4,  4,  4,  4,  4,  4,   4,  4,  4,  4,  4,  4,  4,  4,\n\n// state[474 + 2] 0x00ff80 Byte 3 of 3 (property)\n  4,  4,  4,  4,  4,  4,  4,  4,   4,  4,  4,  4,  4,  4,  4,  4,\n  4,  4,  4,  4,  4,  4,  4,  4,   4,  4,  4,  4,  4,  4,  0,  0,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  0,\n\n// state[475 + 2] 0x00ffc0 Byte 3 of 3 (property)\n  0,  0,  3,  3,  3,  3,  3,  3,   0,  0,  3,  3,  3,  3,  3,  3,\n  0,  0,  3,  3,  3,  3,  3,  3,   0,  0,  3,  3,  3,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[476 + 2] 0x020000 Byte 4 of 4 (property)\n208,  6,  5,208,  5,208,  3,208, 208,217,  6,228,  6,  6,  6,  5,\n  5,  6,208,  6,208,  6,  2,  2, 208,208,208,  6,  6,  6,  6,  6,\n208,208,208,  5,  6,208,  6,  2,   2,208,  2,  2,208,208,208,  6,\n  6,  6,  2,  2,  2,  5,  5,  6,   6,  6,  6,208,  6,  6,  5,  2,\n\n// state[477 + 2] 0x020040 Byte 4 of 4 (property)\n  2,229,  2,208,  2,  6,  5,  5, 208,  6,  6,  5,  5,  5,  5,  6,\n  6,  2,  5,  5,  2,229,  5,208,   6,  2,  2,  5,  6,  2,  6,  2,\n  6,208,  5,  6,208,217,208,208,   5,208,  2,  5,  6,229,208,  5,\n208,208,208,  6,208,  2,  5,208,   2,  2,  2,  2,  6,208,208,208,\n\n// state[478 + 2] 0x020080 Byte 4 of 4 (property)\n  6,  6,208,  5,208,  5,208,208, 208,172,217,  6,  5,208,  2,208,\n  6,  6,  5,  5,208,208,  6,  5,   5,  5,  5,  5,208,  6,208,  6,\n208,  6,228,229,228,208,  6,  6, 208,208,  2,  2,208,  6,  5,229,\n  5,208,208,208,  5,208,208,208,   6,229,208,  6,208,208,208,208,\n\n// state[479 + 2] 0x0200c0 Byte 4 of 4 (property)\n  6,  6,208,  5,208,  2,  5,  6,   6,229,208,208,208,217,  3,208,\n208,  5,  5,  6,  5,208,208,  3,   5,  5,  6,  6,  6,  2,208,208,\n208,208,  6,  2,208,229,  5,208,   6,  2,  5,  6,  6,208,  5,  2,\n208,208,208,208,  5,  6,208,  2,   0,  6,  6,  5,208,208,208,  6,\n\n// state[480 + 2] 0x00b000 Byte 2 of 3 (relative offsets)\n-20,-20,-20,-20,-20,-20,-20,-20, -20,-20,-20,-20,-20,-20,-20,-20,\n-20,-20,-20,-20,-20,-20,-20,-20, -20,-20,-20,-20,-20,-20,-20,-20,\n-20,-20,-20,-20,-20,-20,-20,-20, -20,-20,-20,-20,-20,-20,-20,-20,\n-20,-20,-20,-20,-20,-20,-20,-20, -20,-20,-20,-20,-20,-20,-20,-20,\n\n// state[481 + 2] 0x020100 Byte 4 of 4 (property)\n  2,  6,  5,  6,  5,229,  5,208, 208,208,208,208,208,208,208,229,\n  3,208,208,208,208,208,208,208,   5,208,208,208,  2,208,208,208,\n  5,208,208,208,208,  6,  2,  2, 208,  2,  5,  3,217,  5,208,  2,\n208,208,  5,  2,208,208,  2,  5,   5,208,  2,  2,  2,  2,  6,  6,\n\n// state[482 + 2] 0x020140 Byte 4 of 4 (property)\n  5,  6,  6,208,  5,  5,  6,  5, 208,  5,  5,  5,208,  2,  2,  5,\n  2,  5,  2,208,208,  5,208,208, 229,229,  6,  6,  2,  5,208,208,\n208,208,  5,  5,  5,  5,  6,  5,   6,208,208,208,208,  5,  5,  5,\n208,  6,  6,  2,  5,  5,  5,  6,   6,  6,  6,  2,  2,  6,  5,  6,\n\n// state[483 + 2] 0x020180 Byte 4 of 4 (property)\n  5,208,208,  5,  5,  5,208,208,   6,208,208,  6,208,  2,208,  5,\n  6,  6,208,  6,  6,  6,  6,  6,   6,  6,  6,  6,208,208,  6,  6,\n  6,  6,  4,208,208,  5,208,  5, 208,229,  6,  5,  5,208,  6,208,\n208,  6,208,  2,208,208,229,208, 208,208,208,208,208,  6,  6,  6,\n\n// state[484 + 2] 0x0201c0 Byte 4 of 4 (property)\n  6,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,208,  6,218,  6,208,\n208,  6,  6,  6,  5,  2,  2,219, 229,208,208,208,208,208,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  6,  6,  6,  6,\n  6,229,208,  6,208,  6,  6,208,   6,  6,  6,  3,  2,  2,208,208,\n\n// state[485 + 2] 0x020200 Byte 4 of 4 (property)\n208,229,  3,229,208,208,208,208, 208,229,229,227,208,208,208,208,\n208,208,  6,  4,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,208,  6,  6,  6,  6,208, 208,208,208,  6,229,229,229,208,\n229,229,208,208,208,229,229,229, 208,208,229,208,208,208,208,208,\n\n// state[486 + 2] 0x020240 Byte 4 of 4 (property)\n  6,  6,  6,  6,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,208,  6,208,229,208,  6, 208,  6,  6,  0,  2,  2,  2,  2,\n  2,208,208,229,229,229,208,229, 208,229,229,208,229,208,208,  6,\n  6,216,  5,208,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[487 + 2] 0x020280 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  6,208,208,208,  6,  6,  6,\n  6,208,208,  6,208,  6,208,  6,   6,216,  2,  2,  2,  2,  5,  2,\n  5,  2,208,208,208,229,229,229, 208,229,229,  0,229,229,208,  6,\n208,208,229,229,208,229,229,208, 208,208,208,208,  6,  6,208,  5,\n\n// state[488 + 2] 0x0202c0 Byte 4 of 4 (property)\n  5,  5,217,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,208,208,208,208,208,208,  6,   6,  6,  6,208,  6,208,  6,  6,\n  6,208,229,208,  6,216,  2,208, 229,229,208,208,208,208,208,208,\n208,208,229,229,208,208,229,229, 229,208,  0,229,208,208,208,208,\n\n// state[489 + 2] 0x020300 Byte 4 of 4 (property)\n208,  6,  6,  6,  6,  6,  6,  5, 208,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  6,  6,208, 208,  6,  6,  6,208,  6,  6,  6,\n208,208,  6,  6,  6,  5,  2,  2,   2,208,229,233,208,208,229,208,\n229,208,229,208,208,208,208,208, 219,208,208,208,229,  6,208,208,\n\n// state[490 + 2] 0x020340 Byte 4 of 4 (property)\n208,  5,  6,  6,208,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  6, 229,  6,  6,  6,  6,  6,208,208,\n  6,  6,208,  2,  2,  2,  2,208, 208,229,208,208,208,  2,208,208,\n208,233,208,208,229,  0,208,208, 208,208,208,208,  6,  6,  5,  5,\n\n// state[491 + 2] 0x020380 Byte 4 of 4 (property)\n  5,  4,  5,  5,  5,  5,  5,  5,   5,  5,216,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5, 208,208,208,208,  6,219,208,  6,\n208,208,208,208,  6,  6,  6,  5,   2,  2,  2,  2,216,  6,229,208,\n208,229,208,208,  2,  5,208,229, 229,208,208,208,208,208,229,229,\n\n// state[492 + 2] 0x0203c0 Byte 4 of 4 (property)\n229,208,208,208,208,  6,  6,208, 208,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  6,208,  6,208,208,   6,  6,208,  6,  6,  3,  6,  2,\n  2,229,208,208,208,  2,  2,208, 229,208,229,208,208,227,229,208,\n229,  6,  2,  2,  5,  5,  5,  5,   5,  4,  5,  5,  5,  6,  6,  6,\n\n// state[493 + 2] 0x020400 Byte 4 of 4 (property)\n208,  6,  6,  6,  6,  2,208,  6, 229,208,229,229,229,229,208,  6,\n  6,  6,  5,  5,  5,  5,  5,  5,   5,  6,229,208,  6,  6,  2,  5,\n  6,208,208,208,229,208,208,229, 208,  6,  5,  5,  2,  3,  5,  5,\n  5,208,208,208,  6,208,208,  6,   2,  6,208,229,208,208,208,208,\n\n// state[494 + 2] 0x020440 Byte 4 of 4 (property)\n  5,  5,208,  6,229,208,  6,  6,   2,  2,  4,  2,  5,208,208,  5,\n  6,208,208,208,  6,  2,  2,208, 229,208,208,208,  5,  5,  6,229,\n  6,  6,  2,  6,208,  5,  5,  5,   5,229,229,208,  2,  5,  5,208,\n  6,  6,229,208,  6,  6,208,208,   6,229,208,208,  6,208,208,208,\n\n// state[495 + 2] 0x020480 Byte 4 of 4 (property)\n208,208,  6,208,208,208,208,  5,   5,  6,208,208,208,208,208,  6,\n  5,  5,  5,  5,  5,  5,208,  5,   5,  5,  5,  5,  6,  6,  5,  5,\n  5,  5,208,  5,  5,  2,  2,  6, 208,  5,  5,  5,  2,  5,  6,  2,\n208,208,  5,  5,  5,208,208,  2, 229,  5,  5,  5,  5,  5,  6,208,\n\n// state[496 + 2] 0x00d000 Byte 2 of 3 (relative offsets)\n-35,-35,-35,-35,-35,-35,-35,-35, -35,-35,-35,-35,-35,-35,-35,-35,\n-35,-35,-35,-35,-35,-35,-35,-35, -35,-35,-35,-35,-35,-35,-34,-33,\n-33,-33,-33,-33,-33,-33,-33,-33, -33,-33,-33,-33,-33,-33,-33,-33,\n-33,-33,-33,-33,-33,-33,-33,-33, -33,-33,-33,-33,-33,-33,-33,-33,\n\n// state[497 + 2] 0x0204c0 Byte 4 of 4 (property)\n  2,  2,  5,  5,  5,  2,208,  2,   5,  5,  6,208,208,  5,  5,  5,\n  2,  2,  5,  5,  2,  5,  6,208,   5,  6,  6,208,208,208,  6,208,\n208,208,  6,  6,208,208,  6,208,   2,  2,229,208,  2,208,208,  5,\n  5,208,  6,  5,208,  6,208,208, 208,  2,  2,  2,  5,208,  5,  6,\n\n// state[498 + 2] 0x020500 Byte 4 of 4 (property)\n208,208,208,208,  5,  6,  5,208, 208,194,208,208,208,  6,208,208,\n208,  6,208,208,  6,208,208,208, 208,208,208,208,208,  5,  6,208,\n208,  5,  5,  6,  6,229,  2,208, 208,  5,  5,  5,  6,  2,  2,208,\n  6,208,  6,  5,  5,  5,208,  5, 208,229,  6,231,208,208,208,  6,\n\n// state[499 + 2] 0x020540 Byte 4 of 4 (property)\n  6,208,229,208,208,  6,  5,  5,   5,  6,208,229,  6,208,208,  6,\n208,208,208,  5,208,  6,208,  6, 208,  6,  5,208,  6,208,208,208,\n208,  6,  5,208,208,208,208,208, 208,  5,  6,  6,  5,208,208,  5,\n208,  5,208,208,  6,208,  5,  5,   6,208,208,208,  6,  5,  6,  6,\n\n// state[500 + 2] 0x020580 Byte 4 of 4 (property)\n  5,  5,  6,  6,208,  5,  6,  6,   2,  6,208,  6,208,  5,  5,  5,\n  5,  5,  5,208,208,  5,  5,208,   2,  5,208,  6,208,  2,  5,208,\n208,  5,  5,208,  2,  5,208,208,   2,208,  6,208,  6,  2,  5,  2,\n  2,208,  5,  5,  5,  6,208,208, 208,208,  5,  5,  5,  5,  2,  2,\n\n// state[501 + 2] 0x0205c0 Byte 4 of 4 (property)\n  5,  5,229,208,208,208,208,  5, 229,229,208,208,208,208,208,  6,\n  5,  5,  5,  5,  5,  5,  4,208, 208,208,208,208,208,208,  5,  5,\n  5,  5,208,  2,  2,208,208,208, 229,  6,  5,  5,  5,  5,  5,  5,\n  2,208,229,229,208,208,229,  5,   2,  2,208,208,208,229,208,208,\n\n// state[502 + 2] 0x020600 Byte 4 of 4 (property)\n208,  6,  6,  2,208,208,208,208,   5,  5,208,208,208,208,  5,  6,\n  6,  5,208,  5,  5,208,208,229, 208,  5,  5,  5,  5,208,208,208,\n  5,208,208,208,208,208,  6,208,   4,208,  6,  5,  5,  5,  5,208,\n  5,229,208,208,  6,208,208,208, 208,  6,208,  6,208,208,208,  5,\n\n// state[503 + 2] 0x020640 Byte 4 of 4 (property)\n  5,  6,  6,  6,  6,  2,229,208, 208,208,229,208,  5,  5,  6,208,\n208,208,208,  5,  6,  6,208,208, 208,208,208,  5,  5,  5,  6,208,\n208,  5,208,  2,  6,  6,  6,  5,   5,  5,  5,  5,  6,208,  5,  5,\n  5,  5,  5,  5,  6,208,208,208, 208,208,208,208,  6,208,208,208,\n\n// state[504 + 2] 0x020680 Byte 4 of 4 (property)\n208,208,  5,  6,  6,  6,208,208,   5,  6,  6,  5,  6,208,208,229,\n  2,208,208,  6,  6,  6,208,208, 229,208,  5,208,  6,208,  5,208,\n  6,  5,  2,  5,  6,208,208,208, 208,208,208,  5,208,208,208,  0,\n208,229,208,208,208,  6,  6,208, 208,229,208,208,208,208,208,208,\n\n// state[505 + 2] 0x0206c0 Byte 4 of 4 (property)\n208,208,208,208,208,  6,  6,  5,   5,208,  6,  6,  2,208,208,208,\n208,208,208,208,208,208,208,208, 208,208,208,208,  6,  6,  6,  6,\n208,  6,  6,  2,  2,208,208,208, 208,208,208,208,229,208,208,208,\n208,208,208,  6,208,208,208,208, 208,208,  6,  5,  5,  5,  5,  5,\n\n// state[506 + 2] 0x020700 Byte 4 of 4 (property)\n  6,  6,208,  6,  6,  6,208,208,   6,208,  6,  6,208,  6,  5,  2,\n208,208,208,208,208,208,208,208, 208,229,208,208,208,208,  6,208,\n208,  5,  5,  5,  6,208,208,  6,   0,  6,  6,  6,  2,  2,  2,  2,\n  5,229,208,208,229,208,229,208, 208,208,  0,208,208,208,229,208,\n\n// state[507 + 2] 0x020740 Byte 4 of 4 (property)\n208,208,208,208,208,208,  6,  2,   5,  5,  5,  5,  5,  5,  6,  4,\n  6,208,208,  2,  2,  2,  2,  2, 208,208,208,208,  6,208,208,208,\n208,229,208,229,208,208,  6,208, 208,208,208,  2,  6,  5,  5,  5,\n  6,208,  6,  6,  6,  6,  6,  6,   6,  5,  2,  2,  2,208,  5,208,\n\n// state[508 + 2] 0x020780 Byte 4 of 4 (property)\n208,208,208,208,208,208,208,208, 208,208,208,208,208,208,208,208,\n  5,  5,  5,  5,  5,  6,  6,  6, 208,  6,  6,218,208,208,  6,  2,\n  2,  2,  2,  6,208,208,229,208, 208,208,208,208,208,208,229,208,\n229,208,  5,  5,  6,  6,  6,208,   2,  2,  2,208,208,208,208,208,\n\n// state[509 + 2] 0x0207c0 Byte 4 of 4 (property)\n  2,  5,208,229,208,229,208,208, 208,208,208,208,208,208,208,208,\n208,208,208,208,208,208,208,208, 208,  5,  5,  5,208,  6,  6,208,\n  6,  6,  6,  6,  2,  2,208,208, 208,208,229,208,208,208,208,208,\n208,208,  2,208,  6,208,  6,  6,   2,  2,229,208,208,208,208,208,\n\n// state[510 + 2] 0x020800 Byte 4 of 4 (property)\n208,208,208,208,208,208,208,233,   5,  2,  2,  5,  6,227,208,208,\n208,  2,  5,  5,  6,  6,  6,208,   6,  2,  2,208,229,208,208,  5,\n208,208,208,208,  6,  6,208,208,   6,  2,208,208,  5,  2,208,208,\n208,208,208,208,208,  6,208,208,   5,208,  4,  5,  5,  5,  5,  5,\n\n// state[511 + 2] 0x020840 Byte 4 of 4 (property)\n  6,  5,208,208,208,  6,  5,  5,   5,  6,  6,  6,208,229,  2,  2,\n  3,208,208,208,208,  5,  5,  5,   5,  5,  2,  2,  6,  6,208,208,\n208,208,  5,  6,  6,  6,208,  2,   5,  5,  5,208,208,208,208,208,\n208,208,  5,  5,  5,  5,  6,  6, 208,208,  2,208,208,208,208,208,\n\n// state[512 + 2] 0x00f000 Byte 2 of 3 (relative offsets)\n-47,-47,-47,-47,-47,-47,-47,-47, -47,-47,-47,-47,-47,-47,-47,-47,\n-47,-47,-47,-47,-47,-47,-47,-47, -47,-47,-47,-47,-47,-47,-47,-47,\n-47,-47,-47,-47,-46,-45,-44,-43, -42,-41,-44,-40,-47,-47,-47,-47,\n-47,-47,-47,-47,-47,-47,-47,-47, -47,-47,-47,-47,-47,-39,-38,-37,\n\n// state[513 + 2] 0x020880 Byte 4 of 4 (property)\n  5,  5,  5,  6,208,208,208,208, 208,208,  5,  5,  6,  6,208,208,\n  6,  2,208,208,208,229,208,229,   5,208,  6,  6,  6,  2,  2,  2,\n208,208,208,208,208,208,208,208,   5,  6,  6,  6,  2,208,  6,208,\n208,208,208,208,208,  6,208,208,   5,233,208,208,208,  6,  6,208,\n\n// state[514 + 2] 0x0208c0 Byte 4 of 4 (property)\n208,208,  2,208,208,  5,208,208, 208,208,208,208,  5,208,208,208,\n  6,208,208,  5,208,208,208,208, 208,208,208,  2,  5,  5,208,208,\n208,208,  5,208,208,208,208,208, 208,208,208,208,  6,  6,229,208,\n229,208,  6,208,208,208,  2,  5, 208,208,208,  5,  5,208,208,208,\n\n// state[515 + 2] 0x020900 Byte 4 of 4 (property)\n208,  5,  6,  5,208,208,  2,208, 208,208,208,208,  2,  6,229,208,\n208,208,208,208,  5,208,  5,208, 208,208,208,  5,  5,  6,208,208,\n  5,  5,208,208,  5,  5,  6,  2,   5,  2,208,208,208,  5,208,208,\n208,208,  6,208,208,208,  5,219, 208,208,208,  6,208,  6,208,208,\n\n// state[516 + 2] 0x020940 Byte 4 of 4 (property)\n208,208,208,208,  5,  5,  6,  6,   2,208,208,208,208,  6,208,  5,\n208,208,208,208,  5,  6,208,  0,   6,208,208,208,229,208,208,  6,\n  3,  5,208,208,  2,  5,208,  6,   6,208,208,208,208,  5,208,208,\n208,208,  5,  5,208,  5,208,  5, 229,  5,208,208,  4,208,208,  6,\n\n// state[517 + 2] 0x020980 Byte 4 of 4 (property)\n208,  6,208,229,219,208,208,208, 208,  6,  6,  6,229,208,  6,  6,\n  6,208,208,208,  5,  5,  5,  6, 208,208,208,208,208,194,  5,  5,\n  5,  5,  5,208,  5,  5,  5,  6,   6,  2,208,208,208,  5,  6,  2,\n  5,  5,  6,  2,208,208,208,208,   6,  2,  2,  2,  5,  5,  5,  2,\n\n// state[518 + 2] 0x0209c0 Byte 4 of 4 (property)\n208,  5,  5,  6,208,  6,  2,  6,   5,  6,  5,231,  2,  2,208,208,\n  5,208,  6,208,208,  6,  6,208, 208,229,208,208,208,  6,208,208,\n208,208,208,208,208,208,  5,229, 208,208,229,208,  5,  5,  5,  5,\n  6,  6,208,208,208,208,208,208, 208,  5,208,208,208,208,  6,  6,\n\n// state[519 + 2] 0x020a00 Byte 4 of 4 (property)\n208,208,208,208,  6,208,208,208, 208,  5,  6,208,  6,208,208,  5,\n  5,  5,208,208,208,  6,  5,  6, 208,208,229,208,  0,  5,  5,208,\n208,  2,229,208,  6,208,  6,208,   6,  6,  2,  6,208,208,208,208,\n208,208,208,  6,208,208,208,208, 208,208,208,208,  6,  5,  6,  6,\n\n// state[520 + 2] 0x020a40 Byte 4 of 4 (property)\n208,208,229,208,  5,219,  6,  5,   6,  6,208,208,208,208,208,208,\n  5,  5,  5,  6,  6,  2,208,208, 208,208,208,208,208,208,208,208,\n208,  6,  5,  5,208,  6,208,208, 208,208,208,208,208,208,208,208,\n208,208,  5,  5,  5,  6,  6,  6, 208,208,208,208,208,208,  5,208,\n\n// state[521 + 2] 0x020a80 Byte 4 of 4 (property)\n  6,  6,  6,  6,208,  6,208,208, 208,208,208,208,208,208,  5,208,\n  6,208,208,208,208,  5,  5,  6, 208,208,208,208,208,208,208,208,\n  5,  6,  5,  6,208,208,208,  6,   6,  6,208,208,  6,208,208,208,\n208,  6,  6,  5,  5,  5,  6,  6,   2,208,208,208,208,  5,  5,208,\n\n// state[522 + 2] 0x020ac0 Byte 4 of 4 (property)\n  5,  5,  5,  6,  6,  2,  2,  5, 208,208,  6,  6,208,208,208,  2,\n208,  6,  5,233,208,208,  6,208,   6,208,  5,  6,  6,219,208,208,\n208,  3,  5,  6,208,208,208,  5, 208,208,208,208,208,  6,  6,  6,\n208,208,  6,208,  5,  6,  6,  6,   6,208,208,208,208,  6,  2,208,\n\n// state[523 + 2] 0x020b00 Byte 4 of 4 (property)\n208,208,208,  2,  5,  5,208,208, 208,  2,  5,  6,  3,208,208,  5,\n208,208,  2,208,  6,  2,  2,  5, 208,  6,208,208,208,233,208,208,\n  2,208,208,208,  6,208,208,208, 208,208,208,208,208,208,208,  5,\n  6,208,208,208,  5,  5,  5,  5, 208,208,208,208,208,  5,  6,208,\n\n// state[524 + 2] 0x020b40 Byte 4 of 4 (property)\n208,208,208,  5,  5,  5,  6,208,   6,208,208,208,208,208,208,208,\n  5,  5,  5,  5,208,208,208,208, 208,208,208,208,208,208,  5,  5,\n  5,208,  6,208,  2,208,208,208, 208,  5,  5,  5,  5,  5,  5,208,\n208,208,208,208,208,208,208,  6, 208,  6,  6,208,  5,  6,208,208,\n\n// state[525 + 2] 0x020b80 Byte 4 of 4 (property)\n  6,  5,  5,208,208,  5,208,208,   5,208,208,208,  6,208,208,  5,\n229,208,  5,217,  5,208,208,208, 208,208,208,208,208,  5,208,233,\n208,208,208,208,208,  5,208,208, 208,216,208,208,208,229,208,208,\n208,208,208,229,229,229,  6,  5,   5,  5,  5,  5,  6,  6,218,227,\n\n// state[526 + 2] 0x020bc0 Byte 4 of 4 (property)\n  6,208,208,  6,  6,  2,  5,  2, 208,208,208,227,208,208,208,208,\n208,208,208,208,208,208,208,229, 208,208,208,208,208,208,208,  6,\n  6,  5,  5,  5,  5,  5,216,  5,   5,  6,218,208,208,  6,233,  6,\n  6,  6,  6,208,  6,208,208,  6,   6,218,  6,216,  2,  2,  2,216,\n\n// state[527 + 2] 0x020c00 Byte 4 of 4 (property)\n  2,  2,  2,  2,208,208,  6,  6, 208,227,208,208,227,227,208,227,\n208,208,208,229,208,208,208,208, 208,227,208,208,208,208,208,  6,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,216,  5,  5,\n  5,  6,208,218,208,208,208,218, 208,  6,227,229,  6,  6,  6,208,\n\n// state[528 + 2] 0x020000 Byte 3 of 4 (relative offsets)\n-52,-51,-50,-49,-47,-46,-45,-44, -43,-42,-41,-40,-39,-38,-37,-36,\n-35,-34,-33,-31,-30,-29,-28,-27, -26,-25,-24,-23,-22,-21,-20,-19,\n-18,-17,-15,-14,-13,-12,-11,-10,  -9, -8, -7, -6, -5, -4, -3, -2,\n -1,  1,  2,  3,  4,  5,  6,  7,   8,  9, 10, 11, 12, 13, 14, 15,\n\n// state[529 + 2] 0x020c40 Byte 4 of 4 (property)\n227,  5,  5,  5,  2,  2,  2,  2, 213,  2,  2,  2,  2,  2,208,  6,\n208,208,208,208,229,208,208,208, 208,208,208,208,227,208,208,208,\n208,208,208,208,  0,208,208,208, 208,208,  6,208,208,208,208,208,\n208,208,208,208,  6,  5,  2,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[530 + 2] 0x020c80 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  6,208,208,208,  0,227,\n208,  6,  6,227,218,  6,227,208,   6,  6,  6,  6,227,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,208,208,  5,  6,208,227,208,\n208,208,208,208,208,227,208,208, 208,227,227,208,208,208,208,227,\n\n// state[531 + 2] 0x020cc0 Byte 4 of 4 (property)\n208,208,208,208,208,208,208,208, 208,208,208,208,208,208,208,  5,\n218,  2,  2,  5,  5,  5,  5,  2,   2,  2,  2,  5,  5,216,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5, 216,  5,  5,208,  6,208,208,208,\n208,208,  6,  6,208,  6,  6,208, 208,227,227,208,  6,  6,  6,227,\n\n// state[532 + 2] 0x020d00 Byte 4 of 4 (property)\n  6,  6,  6,208,  6,  6,  6,  6,   6,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,216,  2,  2,   2,  2,  2,  2,  2,  2,  2,  6,\n  2,208,208,208,  2,  2,208,208, 229,208,208,227,208,208,208,208,\n208,208,229,208,208,208,208,208, 229,208,208,208,227,208,208,208,\n\n// state[533 + 2] 0x020d40 Byte 4 of 4 (property)\n208,208,208,208,  6,  4,  5,231,   5,  5,208,  2,  5,  5,  5,  2,\n  2,  5,  5,  5,  5,  5,  5,  5, 216,  5,216,  5,  5,  5,  5,  5,\n208,208,208,  6,  6,208,  6,  6, 218,218,208,  6,  6,  6,  6,208,\n208,227,208,  6,208,208,  6,208,   6,208,  6,  6,208,213,  5,  5,\n\n// state[534 + 2] 0x020d80 Byte 4 of 4 (property)\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,216,  2,   2,  2,  2,  2,216,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,208, 208,208,208,208,208,208,  5,  2,\n208,208,208,208,208,208,  6,208, 229,  6,229,208,208,208,208,208,\n\n// state[535 + 2] 0x020dc0 Byte 4 of 4 (property)\n229,208,208,208,208,208,208,227, 208,208,229,208,208,208,208,208,\n  6,208,208,208,229,208,208,208, 208,208,208,208,208,208,208,208,\n  6,  4,  6,  6,  2,  2,  2,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5, 208,  6,  6,208,208,208,208,  6,\n\n// state[536 + 2] 0x020e00 Byte 4 of 4 (property)\n208,  6,218,  6,227,  6,  6,  6,   3,  5,  5,  3,217,216,  5,  5,\n  5,  5,  2,  2,  2,  2,  5,  2,   2,  2,  2,  2,  2,  5,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,208,208,  6,\n208,208,208,208,  6,  5,208,208, 208,208,227,208,  2,  2,  2,208,\n\n// state[537 + 2] 0x020e40 Byte 4 of 4 (property)\n229,208,208,208,208,208,208,208, 208,229,208,208,208,208,208,208,\n208,208,208,208,229,208,208,  0, 229,208,208,  0,208,  6,208,208,\n208,208,208,208,233,208,208,208, 208,208,208,  5,  6,194,  5,  2,\n  2,  2,  2,216,  2,  5,  5,  5,   5,  5,  5,  5,  2,  2,  2,  5,\n\n// state[538 + 2] 0x020e80 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,208,208,\n  6,  6,  6,208,  6,225,208,  6, 208,218,218,  6,  6,208,  6,218,\n218,  6,208,  6,208,  2,  2,  2,   2,  2,  0,  5,  5,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,216,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n\n// state[539 + 2] 0x020ec0 Byte 4 of 4 (property)\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,208,208,208,208,\n208,  5,  2,  2,229,208,208,208, 208,208,208,208,229,208,229,208,\n208,208,208,208,  0,227,208,208, 208,229,  0,208,208,208,208,208,\n208,208,  6,  6,  6,  2,208,  2,   5,  5,  5,  5,  2,  2,  5,  5,\n\n// state[540 + 2] 0x020f00 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,227,227,  6, 208,  6,208,  6,208,208,208,  6,\n  6,  6,208,208,  6,  6,227,  6,   6,208,218,  6,  6,  5,  5,  2,\n  5,  5,  2,  2,  2,  2,  2,  2,   2,  2,  2,  5,  2,  2,  2,  2,\n\n// state[541 + 2] 0x020f40 Byte 4 of 4 (property)\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,216,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,208,208,  2,  4,\n  5,  6,208,208,208,208,208,208, 208,208,229,208,208,208,227,208,\n208,208,229,208,208,229,208,  6, 208,208,208,208,229,208,208,208,\n\n// state[542 + 2] 0x020f80 Byte 4 of 4 (property)\n227,208,229,208,208,208,208,  6, 208,208,208,208,208,  5,  6,  6,\n208,  6,  2,  2,  2,  2,217,  5,   5,  5,  5,216,  5,  5,  5,  5,\n  5,  5,  6,218,  6,208,227,208,   6,  6,208,  6,  6,  5,  6,208,\n208,  6,  6,  6,  5,  5,  5,  2,   2,  2,  2,  2,216,  2,  2,  2,\n\n// state[543 + 2] 0x020fc0 Byte 4 of 4 (property)\n  2,  2,  2,  2,  2,208,208,229,   0,208,208,208,208,208,208,229,\n208,208,227,208,208,229,208,208, 208,208,227,208,208,208,208,208,\n208,208,208,208,208,208,208,208,   6,  6,  5,  5,  5,  5,216,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  5,  5,  5,  5,  5,216,\n\n// state[544 + 2] 0x021000 Byte 4 of 4 (property)\n  5,  5,216,  5,  5,  5,  5,216,   5,  5,  5,  5,  5,  5,  5,  5,\n208,  6,208,208,227,  6,  6,  6,   6,  6,  6,  6,  6,  5,  5,  3,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   6,208,208,  5,  5,208,  6,227,\n\n// state[545 + 2] 0x021040 Byte 4 of 4 (property)\n  6,208,208,208,208,208,208,208, 208,208,  6,208,208,208,227,208,\n208,208,208,208,  6,229,208,  5,   6,  2,  2,  2,216,  2,  2,  5,\n  5,  5,  5,  5,216,  5,  6,  6, 208,208,  6,208,208,208,  6,  5,\n  6,  6,  6,  6,  6,  5,  0,  5,   5,  2,  2,  5,  2,  2,  2,  2,\n\n// state[546 + 2] 0x021080 Byte 4 of 4 (property)\n  2,  2,  2,  2,  2,  2,  2,  2, 216,  2,208,208,  2,  2,  2,229,\n208,227,227,227,208,208,208,208, 208,227,208,208,208,208,208,229,\n208,208,208,208,208,208,208,208, 208,208,  6,  6,  5,  6,  2,  2,\n  2,  2,  2,  2,  5,  2,  5,216,   5,216,  5,  5,  5,  5,  5,208,\n\n// state[547 + 2] 0x0210c0 Byte 4 of 4 (property)\n  5,  5,  6,  6,  6,  6,  6,  5,   5,  5,  2,  2,  2,  2,  2,216,\n  2,  2,  2,216,  2,  2,  2,  2,   2,  2,  2,  2,  2,208,  6,  5,\n208,208,208,208,208,208,208,208, 208,208,208,208,208,208,208,208,\n  6,  6,  5,  6,  5,  5,  5,208,   6,  2,  2,  2,  2,  2,  2,  2,\n\n// state[548 + 2] 0x021100 Byte 4 of 4 (property)\n  2,  2,  5,  5,  5,  5,  5,  6, 208,208,208,  6,  6,  2,  2,  2,\n  2,208,229,208,208,208,208,208, 208,208,208,208,  5,  5,  5,  6,\n208,218,  6,208,  6,218,  2,  2,   2,  2,  2,  2,  2,  2,  2,216,\n  2,208,208,208,229,229,229,208, 208,208,208,208,  6,  5,  2,  5,\n\n// state[549 + 2] 0x021140 Byte 4 of 4 (property)\n  5,  5,  6,  6,  6,208,  6,  6,   5,  2,  2,  2,  2,  2,  2,216,\n  2,  2,  2,  6,  5,  6,  6,208, 208,208,208,  6,208,208,208,208,\n  2,208,  2,  5,  6,  6,  6,  2,   2,  2,  2,  2,  2,208,208,  2,\n208,208,  5,  2,  6,  6,208,  2,   5,208,208,208,208,208,208,208,\n\n// state[550 + 2] 0x021180 Byte 4 of 4 (property)\n  5,  2,  2,  5,  2,208,208,  5,   2,  5,  5,  5,  2,  2,208,208,\n208,227,208,208,  6,  6,  2,  2,   2,  2,  2,  5,  5,  6,  2,  6,\n208,208,  5,208,  6,  6,  6,208, 208,208,  6,  6,  3,  5,  6,  6,\n208,  6,208,208,208,208,208,208, 208,  5,  5,208,208,  6,208,208,\n\n// state[551 + 2] 0x0211c0 Byte 4 of 4 (property)\n  6,208,  6,208,208,  6,208,208, 229,208,229,208,208,208,208,  6,\n  5,208,208,208,208,208,208,208, 208,  5,  6,208,  6,  6,  6,  6,\n208,208,208,208,208,  6,  6,  6,   6,  6,208,  6,  6,  6,  6,  6,\n208,229,208,208,208,208,208,208, 218,208,  6,  2,229,208,208,208,\n\n// state[552 + 2] 0x021200 Byte 4 of 4 (property)\n208,  4,  5,  5,  5,  6,  6,208,   2,208,208,208,208,208,208,208,\n  6,208,  6,  6,  5,208,208,208, 208,208,208,  5,  5,  5,  6,208,\n  6,  2,208,208,208,  5,  6,  6,   6,  2,208,  6,  5,229,208,  6,\n  6,  5,  6,208,  6,  6,  6,  5, 208,208,  2,  6,208,  4,208,208,\n\n// state[553 + 2] 0x021240 Byte 4 of 4 (property)\n  6,  5,  5,  6,208,  6,  6,  6,   6,  6,208,  6,  5,  5,218,  5,\n  6,  6,208,  6,  6,214,  2,  6, 208,208,208,208,  6,208,  6,217,\n  5,  5,  5,  5,  5,  5,216,  5,   6,  6,  6,  6,208,  6,  6,  6,\n  6,208,208,208,172,208,208,208,   6,  6,  6,  4,  5,  2,  2,  2,\n\n// state[554 + 2] 0x021280 Byte 4 of 4 (property)\n208,208,208,208,229,208,208,208, 208,208,208,208,208,208,208,208,\n  6,  6,  6,  5,  5,  5,  5,  5,   5,  5,  5,208,229,  6,208,  6,\n227,208,  6,208,208,208,208,208, 208,  5,  6,  6,208,  6,  6,  6,\n216,  2,  2,  2,208,208,208,208, 227,208,208,208,208,208,208,  6,\n\n// state[555 + 2] 0x0212c0 Byte 4 of 4 (property)\n  2,  2,  2,  2,217,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  4, 208,  6,  6,208,208,208,208,  6,\n208,  6,  6,  5,  4,  2,  2,208, 208,208,208,208,208,208,208,229,\n208,208,208,208,208,208,208,208, 208,  6,  6,  6,  6,  4,  0,  2,\n\n// state[556 + 2] 0x021300 Byte 4 of 4 (property)\n  2,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  6,208,208,  6,208,208,208, 208,208,208,  4,208,  6,  6,208,\n  2,  2,  2,  2,208,208,208,208,   6,208,208,208,208,208,208,208,\n208,208,208,229,208,  6,194,  5,   5,  5,  5,  5,  5,216,  5,216,\n\n// state[557 + 2] 0x021340 Byte 4 of 4 (property)\n  5,  5,  5,  5,194,  5,  5,  5,   5,  5,208,  6,  6,  6,  6,208,\n  6,208,  6,208,208,208,  6,  6,   2,  2,  2,  2,  2,  2,  2,  2,\n208,208,  2,  2,208,208,208,208, 208,229,  0,208,208,208,208,208,\n208,208,208,208,208,208,208,208,   6,  6,  5,208,  5,  5,  5,  5,\n\n// state[558 + 2] 0x021380 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   6,  6,  6,  6,  6,  6,208,  6,\n208,  6,  6,  6,  6,208,208,208, 208,  6,208,  2,216,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,208, 208,208,208,208,208,  2,229,208,\n208,208,  6,208,229,208,208,208, 208,208,208,208,208,208,208,208,\n\n// state[559 + 2] 0x0213c0 Byte 4 of 4 (property)\n208,208,208,208,  4,  5,  5,208,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  6,208, 218,  6,  6,218,  6,  6,  6,218,\n  2,  2,  2,  2,  2,  2,  2,  2,   3,208,208,208,  6,208,208,227,\n208,208,208,208,208,208,208,208, 208,  6,  6,  6,  6,  2,  5,  5,\n\n// state[560 + 2] 0x021000 Byte 3 of 4 (relative offsets)\n-16,-15,-14,-13,-12,-11,-10, -9,  -8, -7, -6, -5, -4, -3, -2, -1,\n  1,  2,  3,  4,  5,  6,  7,  8,   9, 10, 11, 12, 13, 14, 15, 16,\n 17, 18, 19, 20, 21, 22, 23, 24,  25, 26, 27, 28, 29, 30, 31, 32,\n 33, 34, 35, 36, 37, 38, 39, 40,  41, 42, 43, 44, 45, 46, 47, 48,\n\n// state[561 + 2] 0x021400 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,208,208,  6,  6,  6,208,  6,\n208,208,  6,208,208,208,208,  2,   2,  2,  2,229,  6,208,208,208,\n208,208,208,229,208,208,229,  6, 208,208,208,208,  6,  5,  2,  2,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  6,208,208,\n\n// state[562 + 2] 0x021440 Byte 4 of 4 (property)\n  6,  6,208,  6,  6,  6,  6,208, 208,208,208,  6,  6,  6,  6,208,\n  6,208,  0,  2,  5,  5,  2,  2, 208,208,208,208,208,  2,229,208,\n208,229,208,208,208,  6,208,  6,   5,  2,  2,  5,  5,223,  4,  6,\n  2,  2,  2,  2,  2,  2,208,208, 208,208,208,  6,  6,  6,  6,  6,\n\n// state[563 + 2] 0x021480 Byte 4 of 4 (property)\n  6,  6,208,  6,  6,  6,208,  5,   5,208,208,208,208,208,208,  6,\n208,  6,208,208,  6,  6,208,  5,   2,  5,  5,  5,  5,  5,  5,  5,\n  5,208,  6,208,208,  6,  6,  6, 208,  6,  2,  2,  2,  2,  2,227,\n208,208,208,208,  5,  5,  0,  5,   5,  5,  5,216,208,208,  6,  6,\n\n// state[564 + 2] 0x0214c0 Byte 4 of 4 (property)\n  6,  2,  2,  2,  2,  2,  2,  2,   2,208,208,  2,  5,208,  2,  2,\n208,208,208,208,227,  5,  6,  5,   6,208,208,208,  6,  6,  2,  2,\n  2,  2,  2,208,208,  2,208,  5,   5,  5,  5,  5,208,  6,  2,  2,\n208,208,229,208,208,208,208,  6,   5,  5,  5,  5,208,  5,  2,208,\n\n// state[565 + 2] 0x021500 Byte 4 of 4 (property)\n  6,208,208,  2,  5,  6,  6,208, 208,208,208,208,  6,  2,  6,229,\n  6,  2,  2,  6,  2,208,  2,208,   5,208,208,208,  6,208,208,  5,\n  5,  5,  5,219,208,208,208,  5, 208,  6,  6,  6,208,  5,  6,208,\n208,  6,  6,  6,  6,208,208,208,   6,  5,  5,208,208,  5,208,  2,\n\n// state[566 + 2] 0x021540 Byte 4 of 4 (property)\n  6,  6,  6,  6,  6,208,208,  6,   6,  6,  5,208,208,208,208,  6,\n  6,208,208,208,  6,229,208,  6, 208,  5,208,208,208,208,208,208,\n208,208,208,208,  5,  6,  5,208, 208,208,208,208,208,  6,208,208,\n  6,  5,208,  5,208,  2,229,  5,   5,208,208,208,208,208,208,208,\n\n// state[567 + 2] 0x021580 Byte 4 of 4 (property)\n  5,  5,229,  6,208,  6,208,219, 208,  6,208,208,  6,208,  6,  5,\n  6,208,208,208,208,208,  5,  5,   5,  5,208,  6,208,208,208,208,\n  6,  2,208,208,208,  5,  6,  6,   6,208,208,208,208,208,  5,208,\n208,  2,208,208,208,  2,208,208,   5,208,  6,  6,  2,208,208,208,\n\n// state[568 + 2] 0x0215c0 Byte 4 of 4 (property)\n  0,208,  2,  5,  2,  2,208,  6, 208,  2,  2,  2,208,  6,  2,  6,\n  2,  6,208,208,  5,208,  6,172,   5,  5,  6,  6,208,208,208,208,\n208,208,208,  5,  6,208,208,  6, 208,  5,  5,  5,  5,  5,  5,  5,\n208,  6,  6,  6,208,  6,  2,208, 208,208,208,208,208,208,208,208,\n\n// state[569 + 2] 0x021600 Byte 4 of 4 (property)\n  5,  5,208,  6,208,208,208,  6,   6,208,  5,  5,208,208,208,208,\n208,  6,  5,  5,  5,  5,  5,  5,   5,208,208,  6,  6,208,  6,208,\n208,  6,  5,  5,  5,  5,  5,  6,   6,208,  6,208,  6,  6,  2,  2,\n208,  6,208,  5,208,208,208,208, 208,208,208,208,208,  5,  5,  5,\n\n// state[570 + 2] 0x021640 Byte 4 of 4 (property)\n  6,208,  6,  6,208,  6,  6,233, 208,208,208,  6,  5,  5,208,208,\n208,  6,  6,  6,  6,208,208,208, 208,  6,208,  6,208,208,  6,  6,\n  5,  5,  5,  6,  6,  6,  2,  2, 208,208,208,  5,208,208,208,  5,\n  5,  5,208,  6,  2,  2,208,208, 208,208,208,208,  5,  5,  5,  5,\n\n// state[571 + 2] 0x021680 Byte 4 of 4 (property)\n208,208,  6,  2,  2,208,208,208, 208,208,208,  5,208,  6,  2,208,\n208,208,  5,  6,  6,  6,229,208,   5,  6,  2,208,208,  2,  5,  6,\n208,  2,  2,  5,208,  5,  2,219, 208,  6,  5,  5,  6,  6,  6,208,\n217,217,  5,  5,194,  5,  6,  6, 208,208,208,208,208,229,208,  5,\n\n// state[572 + 2] 0x0216c0 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  6,208,208,  6,\n208,  6,208,  5,  2,  5,208,208, 208,208,208,208,208,229,229,208,\n208,208,208,  6,  2,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  6,  6,208,   6,208,  5,  5,  5,208,208,  6,\n\n// state[573 + 2] 0x021700 Byte 4 of 4 (property)\n208,208,208,208,208,208,233,208, 208,208,208,208,208,208,208,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  6,208,208,208,  6,208,\n208,208,  6,208,  2,208,208,208, 208,208,208,208,208,208,208,208,\n208,208,208,208,208,208,208,  6, 208,  6,  5,  5,  5,  5,  5,  5,\n\n// state[574 + 2] 0x021740 Byte 4 of 4 (property)\n  5,  5,194,216,  5,  5,  5,  5,   6,  6,208,  6,229,208,  6,208,\n  6,208,  6,  6,  2,  2,  2,  0,   5,208,208,208,208,208,208,208,\n208,208,208,208,208,208,227,208, 208,229,208,229,  5,  5,  5,  5,\n  5,  5,208,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[575 + 2] 0x021780 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  6,  5,  6,\n208,208,  6,208,208,  2,  2,  2, 208,208,208,208,208,208,208,208,\n208,208,208,208,208,  6,229,208, 208,208,208,208,208,208,208,208,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[576 + 2] 0x0217c0 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  6,  6,  6,208,  6,\n  6,208,  6,  6,208,208,208,  6,   6,  5,  5,  5,  5,208,208,208,\n208,208,208,208,208,208,208,  5, 208,208,229,208,208,208,229,208,\n208,208,208,208,208,  0,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[577 + 2] 0x021800 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  6,  6, 208,  6,  6,229,  6,  6,208,  6,\n208,208,208,208,208,  5,  6,208,   6,208,208,208,208,208,208,208,\n208,  6,208,  2,208,208,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,229, 208,208,  0,  5,  6,208,  6,  6,\n\n// state[578 + 2] 0x021840 Byte 4 of 4 (property)\n208,  6,227,208,  6,  0,  2,  2, 208,208,208,208,208,208,  6,208,\n208,208,208,208,208,208,208,208,   6,229,208,208,208,  5,  0,208,\n  5,  5,  5,  5,  5,208,  2,  2,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   6,208,  6,  5,208,208,208,208,\n\n// state[579 + 2] 0x021880 Byte 4 of 4 (property)\n  6,  6,  5,  5,  5,  5,208,208, 208,208,208,208,  6,  5,  6,  6,\n  2,208,208,208,229,208,208,208, 229,208,208,208,208,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  6,\n  6,208,208,  6,208,208,  6,208, 208,  6,  3,  2,  2,214,  5,  5,\n\n// state[580 + 2] 0x0218c0 Byte 4 of 4 (property)\n208,208,208,208,  2,208,229,208, 208,208,  6,208,208,208,208,208,\n208,208,208,  6,208,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  6,208,  6,  6,208,  6,  6,  2,   2,208,229,208,219,229,208,208,\n208,208,  5,  5,  5,  5,  6,208, 208,  6,  5,  2,208,208,208,208,\n\n// state[581 + 2] 0x021900 Byte 4 of 4 (property)\n208,208,  5,  5,  5,  5,  5,  5, 229,  6,  2,208,208,  5,  6,208,\n  5,  5,  5,  2,  2,  5,208,208, 208,208,208,208,  5,  5,  6,  2,\n  2,208,208,229,208,208,  5,  5, 208,  5,  5,208,229,  6,208,208,\n  5,208,208,  6,  5,  6,208,  5,   6,208,208,  5,  5,  6,208,208,\n\n// state[582 + 2] 0x021940 Byte 4 of 4 (property)\n208,208,  5,208,  5,  5,208,208, 208,208,  5,  6,  2,208,208,208,\n208,208,  5,  5,  5,  5,  5,208, 208,  2,  2,208,208,208,208,  6,\n  6,  5,  5,  5,  2,  2,208,  6, 208,208,208,  5,  5,208,  5,  5,\n  5,  5,  5,  6,  2,  2,208,208, 219,208,208,  5,  5,208,208,  6,\n\n// state[583 + 2] 0x021980 Byte 4 of 4 (property)\n208,  6,  2,208,208,227,208,  5,   5,  5,  6,208,208,  6,208,208,\n  6,208,  5,  5,  6,208,  5,208, 208,  6,  5,  6,  6,208,208,208,\n208,208,208,208,  5,  5,  6,  2,   6,208,  6,  2,  6,  5,  2,  5,\n  5,  6,  6,  6,  6,  5,  2,  6,   5,  5,  6,  6,208,208,208,208,\n\n// state[584 + 2] 0x0219c0 Byte 4 of 4 (property)\n  6,  6,  5,194,  5,  5,  5,  5, 208,  6,  6,208,208,208,208,208,\n  6,  5,  6,  6,  6,  6,208,208, 208,208,208,  5,  5,  5,  5,  5,\n  5,  6,208,208,  6,  6,  6,  6,   6,208,208,208,208,208,208,229,\n208,208,  2,  5,  5,  5,  5,  5,   5,  6,208,208,  6,  6,  6,  6,\n\n// state[585 + 2] 0x021a00 Byte 4 of 4 (property)\n208,208,208,208,208,208,208,208, 208,208,208,  6,  2,  5,  5,  5,\n  5,  5,  6,208,208,  6,  6,  6,   6,  6,  6,  6,208,  6,208,208,\n208,  6,229,208,208,229,208,227, 208,208,  5,  5,  5,  5,  5,  5,\n  5,  5,  6,  6,229,  6,208,  6,   2,  2,  2,208,208,208,208,208,\n\n// state[586 + 2] 0x021a40 Byte 4 of 4 (property)\n208,208,208,208,208,208,208,208, 208,208,  6,229,  6,  6,  5,  5,\n  5,  5,  5,  5,  5,  5,219,  6,   6,208,  6,208,  6,  6,  5,229,\n208,208,208,208,208,208,208,208, 208,208,208,  6,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  6,  6,  6,   6,  6,208,208,208,229,208,208,\n\n// state[587 + 2] 0x021a80 Byte 4 of 4 (property)\n208,208,208,208,229,208,208,  2,   5,  5,  5,  5,  6,  6,208,208,\n208,  6,  6,208,208,  6,208,208, 208,  6,208,208,  2,  6,  6,208,\n208,208,208,208,208,208,  2,  5,   5,  5,  5,  5,  5,  5,  5,  6,\n  6,  6,  6,  6,208,  6,208,208, 208,  6,208,  2,208,208,208,208,\n\n// state[588 + 2] 0x021ac0 Byte 4 of 4 (property)\n208,208,208,208,208,208,  5,  5,   5,  5,  5,  5,  5,  5,  5,  6,\n  2,  6,208,  5,  5,  5,  5,  5,   5,  6,208,208,208,208,208,208,\n  5,  2,  5,  5,  6,  6,  6,  6,   2,208,  5,  2,208,208,208,208,\n208,208,  5,208,  6,  6,  2,208,   6,  6,  6,  5,208,229,208,  5,\n\n// state[589 + 2] 0x021b00 Byte 4 of 4 (property)\n  5,  6,  6,208,229,229,208,208,   2,  6,208,  6,208,208,  6,  5,\n  6,208,208,208,  5,  6,208,  6, 208,208,208,208,  6,208,  6,208,\n208,  6,  5,  5,  6,  6,  6,208, 208,  5,208,  6,208,  6,208,208,\n208,208,  6,208,208,  6,219,  2,   6,208,208,208,  2,208,229,  5,\n\n// state[590 + 2] 0x021b40 Byte 4 of 4 (property)\n  6,208,208,  6,  5,  5,208,  6, 208,  2,208,208,208,208,208,  6,\n208,208,208,208,  6,227,  5,  6,   6,208,  0,  6,  2,208,208,229,\n208,  5,  6,  6,  6,208,  2,  2,   5,208,208,208,  2,  6,  6,208,\n  2,  2,  2,208,229,  5,  6,  6,   6,208,  2,  2,  6,229,208,208,\n\n// state[591 + 2] 0x021b80 Byte 4 of 4 (property)\n208,208,  5,  5,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,208,  5,\n208,  6,  2,  2,  2,208,  6,  2,   2,208,  6,  2,  2,  5,  0,208,\n  2,208,  6,  2,  2,  2,208,208,   2,  2,  2,  2,  2,  2,  2,  2,\n208,208,  2,  2,  5,  2,  2,  2,   2,  2,  2,208,  6,  2,  2,208,\n\n// state[592 + 2] 0x021bc0 Byte 4 of 4 (property)\n  2,208,208,  5,208,  5,  5,  6,   6,208,208,  6,  6,208,  5,208,\n208,  6,208,  6,  5,  6,208,  6, 208,208,  6,208,208,208,  5,  5,\n208,  5,208,208,  6,208,208,208, 208,208,208,  6,  5,  5,  5,  5,\n  6,  6,  5,208,208,208,208,208,   5,  6,208,208,  5,  6,  6,  6,\n\n// state[593 + 2] 0x021c00 Byte 4 of 4 (property)\n  6,  6,  5,208,208,  6,  6,229,   6,208,  5,208,208,  5,208,  2,\n208,208,208,  6,208,  5,208,208, 208,  5,  6,  6,  5,229,  6,219,\n208,  6,208,  5,208,229,208,  6,   6,208,208,208,208,208,208,208,\n  5,  6,  6,  6,  6,  6,208,  5, 208,  6,208,  6,208,208,208,208,\n\n// state[594 + 2] 0x021c40 Byte 4 of 4 (property)\n208,229,208,208,  5,  6,  6,  6,   6,  6,  6,208,208,208,208,208,\n208,208,208,208,208,208,  4,  5,   5,  5,  5,  5,  6,208,  6,  6,\n208,208,208,208,208,208,208,208, 208,  2,  5,  5,  5,  5,  5,  6,\n208,208,208,  6,208,  6,  2,208,   2,  5,229,208,208,208,208,208,\n\n// state[595 + 2] 0x021c80 Byte 4 of 4 (property)\n208,208,208,208,  5,  5,  5,  5, 216,  5,  5,  5,208,  6,208,  6,\n  6,208,208,  5,208,229,208,229, 208,208,208,208,208,208,208,208,\n208,208,  5,208,  2,  5,  5,  5,   5,208,208,  2,208,208,208,208,\n229,208,208,208,208,208,208,  6,   5,  5,  5,208,  6,  6,208,  6,\n\n// state[596 + 2] 0x021cc0 Byte 4 of 4 (property)\n  2,  2,208,  2,208,208,208,208, 208,208,  5,  6,  6,208,  2,208,\n229,208,  2,  5,  5,  5,  5,  5, 208,  6,  6,  2,  2,  2,208,208,\n208,208,  2,  2,  2,  2,  5,208, 208,  2,  2,208,208,208,  6,  6,\n  2,  5,  5,  2,208,  2,  2,  5, 208,  2,  2,  6,  6,  2,208,  5,\n\n// state[597 + 2] 0x021d00 Byte 4 of 4 (property)\n208,208,208,  6,208,208,208,  6, 208,  2,  6,208,208,208,208,208,\n  6,208,  5,208,  6,208,208,208, 208,  5,  6,208,208,208,208,208,\n  6,208,  2,  5,208,208,208,208, 208,208,  6,208,208,233,  6,227,\n208,208,208,208,  6,  5,  5,  5, 208,  6,  6,208,208,  6,  6,208,\n\n// state[598 + 2] 0x021d40 Byte 4 of 4 (property)\n208,208,  6,  6,  6,  4,  5,  5,   5,218,208,208,  6,  6,208,208,\n  6,208,  6,229,208,208,208,208, 208,208,208,208,208,208,208,  6,\n  6,  6,  4,  5,  5,  6,  5,  5,   5,  5,  5,217,  6,  6,208,  6,\n208,208,  6,208,  6,  6,  6,  6,   4,208,227,  6,208,  6,208,  6,\n\n// state[599 + 2] 0x021d80 Byte 4 of 4 (property)\n  2,  2,208,208,208,208,208,208, 208,208,208,208,208,208,208,208,\n208,208,233,208,  5,  5,  5,  5,   5,  5,  5,  5,  4,  5,  5,  5,\n  5,  4,208,  6,208,  6,  6,  6,   2,208,208,229,208,208,208,208,\n208,208,  6,208,  6,  6,208,  4, 208,  5,  5,  5,  5,  5,  5,  5,\n\n// state[600 + 2] 0x021dc0 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,208,208,208,   6,208,  5,  0,208,  6,  6,208,\n208,  5,208,208,  5,208,208,208, 229,208,208,208,208,208,229,208,\n233,208,208,229,208,208,208,208, 208,208,208,229,  6,208,208,  5,\n  5,  5,  5,  5,  5,  5,  5,  5, 208,  5,  6,  6,  6,  6,  6,208,\n\n// state[601 + 2] 0x021e00 Byte 4 of 4 (property)\n  6,  6,208,  6,  6,  6,  6,  2, 208,208,208,  6,208,  6,208,  2,\n  5,208,208,208,208,208,208,208, 208,208,208,208,208,  6,  0,208,\n208,208,208,208,208,208,208,208, 208,208,208,  6,208,  6,  6,  6,\n  6,  6,  6,  4,  4,229,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[602 + 2] 0x021e40 Byte 4 of 4 (property)\n  5,  5,  5,229,  6,  6,208,  6,   6,  6,208,208,  6,  5,  6,208,\n  6,  6,208,  6,229,  6,  6,  6,   6,  6,  6,  6,  6,  6,  2,  2,\n  2,  2,208,208,208,208,  6,208, 208,208,208,208,208,208,229,208,\n208,  6,208,208,219,208,208,208, 208,208,208,208,208,208,208,  6,\n\n// state[603 + 2] 0x021e80 Byte 4 of 4 (property)\n  6,  6,  6,  6,  6,  6,208,  6,   5,  5,  5,  5,  5,  5,  5,  5,\n  6,  6,208,  6,208,  6,  6,  6,   6,208,229,  6,  6,208,  6,  6,\n  6,208,  6,  6,  5,  2,  2,  6,   5,  6,  6,208,208,229,208,208,\n208,208,208,208,208,208,208,208,   6,208,208,208,229,208,208,208,\n\n// state[604 + 2] 0x021ec0 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5, 208,  6,  6,208,  6,208,  6,  6,\n  6,208,  6,  2,  2,  5,  2,227, 208,208,208,208,208,229,208,208,\n208,208,208,208,208,208,208,208, 208,208,229,  6,208,208,229,229,\n208,208,208,  6,208,  5,  5,  5,   5,  5,  6,  6,  6,  6,208,  6,\n\n// state[605 + 2] 0x021f00 Byte 4 of 4 (property)\n  6,  6,  6,  6,  6,  6,  6,  2,   2,  6,208,208,208,208,208,229,\n208,229,208,208,208,229,208,208, 208,208,208,208,208,208,  4,  6,\n  6,  6,  6,  6,  6,217,  5,  5,   5,  5,  5,  6,  6,  6,  6,208,\n208,  6,  6,  6,  6,  6,208,  6,   2,  2,208,  6,208,208,208,229,\n\n// state[606 + 2] 0x021f40 Byte 4 of 4 (property)\n208,208,208,208,208,208,208,208, 208,208,208,  6,  5,  5,  5,  6,\n208,  6,  6,208,208,208,  6,  6, 208,  6,208,208,208,208,208,208,\n208,229,  6,208,208,208,208,208,   6,  6,  5,  2,229,  5,  5,  5,\n  5,  6,  6,  6,  6,208,172,  6, 229,  6,229,  6,  6,208,  2,  6,\n\n// state[607 + 2] 0x021f80 Byte 4 of 4 (property)\n208,  6,208,  6,  6,208,208,208, 208,208,229,229,208,208,  5,  6,\n208,208,  6,  6,208,208,  6,  6, 208,208,208,208,229,208,208,229,\n  6,  5,  5,  5,  5,  6,229,208,   6,208,  6,  2,  2,  2,229,229,\n229,208,208,  6,  6,  2,  5,208,   6,  6,  6,208,208,208,208,  6,\n\n// state[608 + 2] 0x021fc0 Byte 4 of 4 (property)\n  6,208,  6,  6,  6,  2,208,208, 208,208,208,208,208,  6,  6,208,\n  6,208,  6,  6,208,229,229,  6, 208,  6,  6,208,208,229,  6,  5,\n208,229,208,208,  6,229,  6,208, 208,208,208,  5,  5,208,208,208,\n208,208,  5,  5,  6,  6,  6,208, 208,208,  4,208,  6,208,208,208,\n\n// state[609 + 2] 0x022000 Byte 4 of 4 (property)\n208,208,208,208,208,  5,  5,208, 208,208,208,  6,  6,  6,208,  6,\n208,208,208,  5,  5,  6,  6,  6, 208,208,  6,  6,208,208,  6,  5,\n208,208,  5,208,  5,  2,  2,  2,   2,208,  6,  2,  2,  2,  2,208,\n  6,  2,  2,  3,208,  6,208,208,   6,208,  6,  5,  6,  6,  6,208,\n\n// state[610 + 2] 0x022040 Byte 4 of 4 (property)\n208,229,229,208,  5,208,  5,  5,   5,  5,  2,  2,208,  2,  6,  6,\n208,  2,208,208,208,229,208,208, 229,208,229,208,  5,  6,  6,208,\n  6,  6,208,208,208,208,208,229, 208,208,208,  6,208,208,208,208,\n208,208,  5,208,208,208,  6,  6,   2,229,229,208,229,208,208,229,\n\n// state[611 + 2] 0x022080 Byte 4 of 4 (property)\n208,229,208,208,  6,  6,208,208,   5,  6,208,208,  2,208,  2,208,\n229,208,208,208,208,208,208,208, 208,  6,208,  6,  2,208,  5,  5,\n  5,  5,  5,  5,  6,229,208,  6,   6,208,208,208,208,  6,208,208,\n218,208,208,  6,208,208,208,208, 229,208,208,208,208,229,208,208,\n\n// state[612 + 2] 0x0220c0 Byte 4 of 4 (property)\n208,208,208,  5,229,  6,229,  5,   2,  2,  2,208,  5,208,229,208,\n229,229,208,208,208,208,208,208, 229,208,208,208,208,  5,  5,  5,\n  5,  5,  6,229,229,  6,  6,208, 208,  6,208,208,208,208,208,208,\n208,227,208,208,208,208,208,208, 229,208,208,  5,  5,  5,  5,  6,\n\n// state[613 + 2] 0x022100 Byte 4 of 4 (property)\n  6,208,  2,  2,208,208,208,208,   5,  6,229,208,208,208,229,208,\n229,  6,  6,229,208,208,208,208, 208,  6,  5,  5,208,  2,208,208,\n229,208,208,229,208,208,208,208,   6,  2,  5,  5,  6,  6,  6,  2,\n208,208,208,208,208,208,229,208, 208,  0,208,219,  0,208,208,208,\n\n// state[614 + 2] 0x022140 Byte 4 of 4 (property)\n  6,  6,208,  6,  2,  2,  2,  6,   6,208,208,208,  3,208,229,229,\n208,208,208,229,208,229,  5,208,   6,208,208,208,  6,  6,208,208,\n208,229,208,  5,  6,172,208,  2, 229,208,208,208,  2,208,208,229,\n208,208,  5,  5,  6,208,  5,  6, 208,208,208,228,208,208,208,  5,\n\n// state[615 + 2] 0x022180 Byte 4 of 4 (property)\n  6,  2,  6,208,208,208,  6,208,   5,229,229,208,  6,208,208,  5,\n  5,208,  5,  5,  6,  2,  6,  6,   2,  5,  5,208,229,  6,219,208,\n  2,  5,  5,  6,  5,  2,  6,  2,   2,  6,  2,  2,208,  2,  5,208,\n  6,208,229,208,208,  5,208,229, 208,  5,  6,229,208,208,208,208,\n\n// state[616 + 2] 0x0221c0 Byte 4 of 4 (property)\n208,  5,  6,  5,  6,  6,  5,229,   6,  2,  5,  5,208,208,  5,208,\n  5,208,208,  6,208,  6,208,208, 208,208,208,208,208,208,208,  6,\n208,  2,  2,208,208,229,208,208, 208,208,208,208,  0,  5,  6,208,\n208,  2,208,208,229,229,208,229, 208,208,208,208,208,  5,  5,  5,\n\n// state[617 + 2] 0x022200 Byte 4 of 4 (property)\n  5,  5,208,  6,208,208,  6,229, 229,208,208,208,208,  5,  5,  5,\n  5,  5,208,  6,  6,  6,  2,208,   4,208,208,208,208,208,208,208,\n229,208,208,208,208,208,  6,  6,   5,  6,  6,  6,208,208,  6,  6,\n  6,  2,208,208,229,208,208,229, 208,229,229,208,208,229,208,208,\n\n// state[618 + 2] 0x022240 Byte 4 of 4 (property)\n208,208,208,229,208,208,208,  6, 229,  6,  5,  5,  5,  5,  5,  5,\n  5,  6,  6,  6,  6,208,208,  6, 208,208,208,208,208,208,208,208,\n208,208,208,208,229,208,208,208, 229,229,208,208,208,208,  5,  5,\n  5,  5,  5,  6,208,  6,208,  6,   6,  6,  6,  6,217,  2,  2,208,\n\n// state[619 + 2] 0x022280 Byte 4 of 4 (property)\n208,229,208,229,208,229,208,208,   6,  5,  5,  5,  5,172,208,  6,\n208,  2,208,208,208,208,229,208, 208,208,  6,208,229,208,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  6, 208,  6,208,  2,  5,208,208,208,\n208,208,208,208,208,229,  5,  5,   5,  5,229,208,208,  6,  6,  6,\n\n// state[620 + 2] 0x0222c0 Byte 4 of 4 (property)\n  6,  5,208,208,208,  0,208,208,   6,  6,  6,  3,  5,  5,  5,  5,\n  5,208,208,208,208,  5,  5,  5,   5,219,208,  6,208,208,  6,  6,\n  2,208,229,208,  5,  5,208,208, 219,  6,208,208,  2,208,219,208,\n208,208,208,  3,  2,  5,  5,  5, 208,  6,  6,208,208,208,208,229,\n\n// state[621 + 2] 0x022300 Byte 4 of 4 (property)\n208,  6,208,208,229,  6,  5,208, 208,208,  2,208,  2,208,  2,  5,\n  6,208,208,208,208,208,  5,  5,   5,  5,  6,229,217,208,228,  6,\n  5,  5,  5,  5,  3,  5,208,  5, 208,  5,  5,208,  5,208,  6,208,\n  6,208,  6,208,208,208,  5,  6, 208,  6,208,229,229,  5,208,208,\n\n// state[622 + 2] 0x022340 Byte 4 of 4 (property)\n  6,229,  5,208,208,208,208,  6,   6,  6,208,  6,  6,208,208,229,\n208,  6,208,  6,208,208,208,208, 208,208,208,208,208,208,208,  5,\n208,  6,208,208,  5,  6,208,208, 208,  6,  6,208,208,  6,208,208,\n229,229,208,208,  6,  6,229,208, 208,208,208,208,  6,  6,  5,229,\n\n// state[623 + 2] 0x022380 Byte 4 of 4 (property)\n208,208,  6,208,229,  6,208,208,   6,  6,208,  6,208,208,208,  6,\n208,208,229,208,  6,  6,  6,  6, 208,208,208,  6,208,208,  6,208,\n208,  6,208,208,208,229,208,208, 208,208,208,208,  6,233,  6,  6,\n  5,  5,  5,  6,  6,  6,  5,208, 208,229,208,208,  5,  5,  5,  5,\n\n// state[624 + 2] 0x022000 Byte 3 of 4 (relative offsets)\n-15,-14,-13,-12,-11,-10, -9, -8,  -7, -6, -5, -4, -3, -2, -1,  1,\n  2,  3,  4,  5,  6,  7,  8,  9,  10, 11, 12, 13, 14, 15, 16, 17,\n 18, 19, 20, 21, 22, 23, 24, 25,  26, 27, 28, 29, 30, 31, 32, 33,\n 34, 35, 36, 37, 38, 39, 40, 41,  42, 43, 44, 45, 46, 47, 48, 49,\n\n// state[625 + 2] 0x0223c0 Byte 4 of 4 (property)\n  5,208,  6,  6,  6,208,229,208, 208,208,  6,  6,  6,  6,  6,  6,\n  5,  2,208,208,208,208,208,208, 208,229,208,  6,  6,  6,  6,  6,\n  2,  2,  2,  2,208,  6,208,208, 208,208,208,  5,208,  6,229,208,\n208,208,208,208,208,208,208,208, 208,  5,  5,  5,208,208,208,  2,\n\n// state[626 + 2] 0x022400 Byte 4 of 4 (property)\n208,208,208,229,229,208,208,208, 208,  6,229,208,208,  5,218,208,\n  6,  6,208,208,208,208,208,  6,   5,208,  6,  6,  6,208,229,229,\n208,208,  5,  5,208,208,208,229, 208,208,  6,  6,208,208,  6,  5,\n  5,  6,208,208,  5,  5,  6,208, 208,208,208,208,208,  6,208,208,\n\n// state[627 + 2] 0x022440 Byte 4 of 4 (property)\n208,229,  5,208,208,  6,208,208, 208,208,208,208,208,  5,  6,  6,\n  5,208,208,208,208,208,208,208, 208,208,208,  5,208,  6,208,  6,\n  6,  5,208,208,208,  5,208,  6, 208,  5,208,208,  6,208,  6,208,\n208,  5,  5,208,  6,208,208,208, 208,208,  6,  6,  6,208,208,208,\n\n// state[628 + 2] 0x022480 Byte 4 of 4 (property)\n229,229,  5,208,  5,  6,  6,  5, 208,208,208,  5,208,  6,  2,208,\n208,229,  6,  6,229,208,208,208,   5,  5,  5,208,208,208,227,208,\n208,208,  5,  6,208,208,208,208,   5,208,208,208,229,208,208,208,\n208,  6,208,208,208,208,  5,208, 208,208,  3,  5,  6,208,208,208,\n\n// state[629 + 2] 0x0224c0 Byte 4 of 4 (property)\n208,  6,208,208,208,208,229,208, 229,208,208,208,  6,  6,  6,208,\n208,  6,208,208,208,208,229,208, 208,  6,  6,  3,229,208,208,208,\n208,219,208,208,  6,  5,  6,  6,   6,208,208,208,208,229,208,208,\n208,208,229,208,208,229,208,208, 208,  5,  5,  6,208,208,208,  6,\n\n// state[630 + 2] 0x022500 Byte 4 of 4 (property)\n208,208,208,208,208,  6,229,208, 229,208,208,208,229,208,208,208,\n208,208,  6,  5,  6,  6,  6,  6, 208,  6,208,217,208,208,  5,208,\n208,229,208,208,208,208,208,208, 208,208,229,  5,  6,208,  6,  6,\n  5,208,  6,208,208,208,208,208, 208,  6,  6,  5,  5,  5,  5,  5,\n\n// state[631 + 2] 0x022540 Byte 4 of 4 (property)\n  5,  6,  6,208,  6,  6,  6,208, 208,  6,  6,  6,  6,229,208,208,\n208,208,208,208,208,208,208,208, 208,208,208,208,208,208,208,208,\n  5,  5,  5,  5,  5,  6,  6,208,   6,  6,208,229,208,208,208,208,\n208,208,  6,  5,  5,  6,208,208,   2,208,229,208,208,  6,208,  6,\n\n// state[632 + 2] 0x022580 Byte 4 of 4 (property)\n  2,  5,  5,208,208,  6,  6,  6, 208,208,208,  6,  6,229,208,229,\n208,229,208,  5,  6,  2,  2,208, 208,208,208,208,208,208,208,208,\n  5,  6,208,208,208,208,208,208,   6,  5,208,208,208,208,  2,  5,\n  5,  2,208,208,208,208,208,229, 208,208,227,208,  6,  5,  5,  6,\n\n// state[633 + 2] 0x0225c0 Byte 4 of 4 (property)\n  6,208,  6,208,  6,  6,  2,208, 208,227,229,208,208,208,229,  6,\n208,229,208,208,208,208,224,229, 229,  6,  2,  5,  5,  5,  5,  5,\n216,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,208,208,  6,208,  6,\n  6,208,208,  6,  6,208,  6,  2,   2,208,208,  5,  2,  2,  2,208,\n\n// state[634 + 2] 0x022600 Byte 4 of 4 (property)\n208,208,208,208,229,208,208,229, 208,229,208,208,208,208,208,208,\n208,208,229,208,208,208,208,  6,   6,  6,  5,  5,  5,216,  5,  6,\n208,  6,  6,208,  6,  6,208,208, 208,  6,208,  5,  2,  2,  2,  5,\n  5,  5,  5,  5,208,208,208,208, 208,  6,208,208,208,208,208,229,\n\n// state[635 + 2] 0x022640 Byte 4 of 4 (property)\n208,208,208,229,229,229,229,208, 208,208,229,208,208,208,208,  6,\n  6,  6,  6,  6,  2,  2,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,229,229,  6,  6,  5,  6,   5,  2,  2,  2,  2,  2,208,  6,\n208,229,227,208,208,  0,208,208, 208,208,208,208,208,227,208,208,\n\n// state[636 + 2] 0x022680 Byte 4 of 4 (property)\n208,208,208,208,208,208,208,208, 208,208,208,208,208,208,208,208,\n208,208,  6,  6,  6,  6,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,208,  6,   6,  6,  6,  6,  6,  6,  6,208,\n229,  6,  2,  2,  2,  2,  2,  2,   2,  2,208,208,  2,  2,  6,  6,\n\n// state[637 + 2] 0x0226c0 Byte 4 of 4 (property)\n  6,229,229,208,208,208,208,208, 208,208,208,208,229,208,208,229,\n208,208,208,208,208,208,229,208, 208,208,229,208,208,208,208,208,\n208,208,208,208,208,208,208,229, 208,208,208,208,208,208,208,  6,\n  5,  6,  6,  4,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[638 + 2] 0x022700 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,216,\n  5,  5,  5,  5,208,  6,208,227,   6,  6,208,  5,  2,  2,  2,  5,\n  2,  2,  2,208,208,208,  6,  5, 208,208,208,208,229,208,229,208,\n229,208,208,208,208,208,208,208, 208,208,229,208,208,208,208,208,\n\n// state[639 + 2] 0x022740 Byte 4 of 4 (property)\n208,229,208,208,208,208,208,229, 208,208,229,208,208,208,208,208,\n208,208,208,208,229,208,  6,208,   2,  2,  2,  2,  2,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  6,  6,208,208,  6,\n  6,  6,229,218,  6,  5,  6,  6, 218,  6,  6,  6,  6,208,  6,  3,\n\n// state[640 + 2] 0x022780 Byte 4 of 4 (property)\n  3,  5,  2,  2,  2,  2,  2,208,   6,208,208,  6,  5,  5,229,208,\n208,208,208,229,229,208,229,208, 208,208,229,  6,208,208,208,208,\n229,229,208,208,208,208,208,208, 208,208,208,208,208,208,208,208,\n208,229,208,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[641 + 2] 0x0227c0 Byte 4 of 4 (property)\n  5,  5,  5,208,208,  6,  6,  6,   6,  6,208,208,  6,217,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,208,229,  2,  2,\n208,208,208,208,229,  6,208,208, 208,208,229,208,229,  6,229,229,\n208,208,208,208,208,208,208,208, 208,227,229,208,208,208,208,208,\n\n// state[642 + 2] 0x022800 Byte 4 of 4 (property)\n208,  6,  6,  5,  2,  2,  2,  2,   2,  2,  5,  5,  5,  5,  5,  5,\n216,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  6,208,  6,208,208,\n208,208,  6,  2,  2,  2,  2,  2,   2,  2,  2,  6,208,  6,208,  2,\n  6,229,208,229,229,229,208,208, 229,229,208,208,229,208,229,208,\n\n// state[643 + 2] 0x022840 Byte 4 of 4 (property)\n208,208,208,208,229,208,229,208, 208,208,229,208,219,  6,208,208,\n208,208,208,208,208,208,229,208, 208,208,219,  4,  6,  6,  5,  5,\n  5,  5,208,  6,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  6,229,  6,208,208,  6,  6,  6, 208,  6,  6,219,  6,208,208,  0,\n\n// state[644 + 2] 0x022880 Byte 4 of 4 (property)\n  6,218,218,  6,  2,  2,  2,  2,   2,  2,  2,  2,208,208,  6,  5,\n  6,  5,208,208,229,208,208,208, 208,208,208,208,229,208,229,208,\n208,208,229,229,208,229,208,208,   6,  6,  6,  4,  2,  5,  5,  2,\n  5,  5,216,  5,  5,  5,  5,  5,   6,  6,  6,  6,  6,218,  6,  6,\n\n// state[645 + 2] 0x0228c0 Byte 4 of 4 (property)\n  2,  5,  2,  2,  2,  2,  2,  2,   2,208,208,  5,  5,208,208,208,\n229,229,208,208,208,229,208,  6, 208,208,208,208,208,208,208,229,\n208,208,208,  6,  6,  6,  6,  2,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  6,208,  6,  6,  6,208,  5,   2,  2,  6,229,208,208,208,229,\n\n// state[646 + 2] 0x022900 Byte 4 of 4 (property)\n208,229,208,208,229,208,208,208, 208,208,208,208,208,  6,208,208,\n229,208,208,208,  6,  5,  5,  5, 208,208,  6,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,208,  5,229,229, 208,229,208,208,208,208,208,208,\n208,229,208,208,229,208,208,  6,   6,  5,  5,  5,  5,  5,  5,  6,\n\n// state[647 + 2] 0x022940 Byte 4 of 4 (property)\n  6,208,  6,208,208,  2,  2,  2,   2,  2,  5,208,208,208,208,208,\n208,229,208,229,  5,  6,  2,208, 208,  6,229,208,208,208,229,208,\n219,208,  2,  2,  5,208,208,229, 229,229,  2,  5,  5,  5,  5,208,\n229,208,208,  6,  6,  6,  2,  2,   5,  5,  5,229,229,208,208,  5,\n\n// state[648 + 2] 0x022980 Byte 4 of 4 (property)\n  5,  5,  2,  6,  2,229,  5,  5, 229,208,  6,  5,  6,  6,208,233,\n208,  6,  6,208,  5,208,208,  6,   6,208,208,208,208,208,208,208,\n208,208,208,  5,208,  6,208,229, 208,208,229,229,208,  6,  5,  5,\n  6,  6,  6,  6,  6,  6,208,208, 208,208,208,  5,  6,  6,  6,208,\n\n// state[649 + 2] 0x0229c0 Byte 4 of 4 (property)\n229,208,  5,  5,  6,  6,208,208, 208,229,229,208,208,  5,  5,  6,\n  6,208,208,  5,208,  0,208,  6, 208,  6,  2,  5,208,  6,  6,208,\n208,  6,208,  6,208,208,208,208, 208,  5,  5,  5,208,  6,  6,  6,\n  6,  6,  2,229,208,229,208,208, 208,208,  5,  6,  6,208,208,208,\n\n// state[650 + 2] 0x022a00 Byte 4 of 4 (property)\n  6,  6,  6,  2,  5,  5,  5,208, 208,229,208,208,208,208,208,  6,\n208,208,208,208,208,  5,  6,  6,   6,  5,208,229,  6,  6,208,208,\n  5,208,  6,208,  5,208,229,  6,   6,208,229,  6,  5,  5,  6,229,\n  6,  6,208,  6,208,  2,  6,208, 208,208,208,  5,  5,  5,208,  6,\n\n// state[651 + 2] 0x022a40 Byte 4 of 4 (property)\n  6,208,  6,  6,208,229,208,208, 208,  2,  2,  5,  6,208,  5,  6,\n  6,208,208,208,  6,208,208,  6, 229,208,  6,  2,  2,208,  6,  6,\n229,  6,229,  2,  2,208,208,  2, 208,208,  2,208,208,227,227,  6,\n208,208,208,  5,  5,  5,  5,  6,   6,  6,  6,  6,  6,  2,  2,  2,\n\n// state[652 + 2] 0x022a80 Byte 4 of 4 (property)\n  2,  6,208,208,229,208,208,208, 208,208,208,208,208,208,229,208,\n208,208,208,208,208,208,208,227,   6,  6,  6,  6,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,218,  6,208,   6,  5,  6,  6,  6,213,  2,  2,\n  2,  2,  2,  2,208,208,208,227, 228,  6,208,208,208,208,208,208,\n\n// state[653 + 2] 0x022ac0 Byte 4 of 4 (property)\n208,  6,  5,  2,  2,  2,216,  5, 216,  5,  5,  5,216,  5,  5,  5,\n  6,218,  6,  6,208,216,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,208,  2,208,208,233,229, 229,229,208,208,208,208,229,208,\n229,208,208,208,208,229,208,208, 208,208,208,208,208,208,208,208,\n\n// state[654 + 2] 0x022b00 Byte 4 of 4 (property)\n208,  6,  6,208,  2,  2,  5,216,   5,  5,  5,  5,  5,  5,  5,  5,\n216,  5,  5,  5,  5,  5,  5,216,   5,  5,  5,  5,  6,  6,208,  6,\n  6,  6,216,  2,  2,  2,  2,  2,   2,  2,208,208,229,  2,  2,208,\n208,  0,208,208,229,229,208,229, 208,227,208,208,208,229,208,227,\n\n// state[655 + 2] 0x022b40 Byte 4 of 4 (property)\n208,208,208,208,208,208,228,229, 208,208,208,208,208,208,208,  4,\n  4,  2,  5,  5,  5,  5,  5,216,   5,  5,  5,  5,216,216,  5,  5,\n  5,  5,  5,  5,208,  6,208,  6, 208,  6,  5,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n\n// state[656 + 2] 0x022b80 Byte 4 of 4 (property)\n  2,208,208,208,208,  6,208,208, 208,208,208,229,208,208,208,208,\n208,227,208,229,208,208,208,208, 229,208,208,  6,208,208,208,208,\n208,208,208,208,208,  6,  4,  5,   5,  2,  2,  2,  2,  2,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,216,\n\n// state[657 + 2] 0x022bc0 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  6,208,  6, 208,  6,208,  6,208,  6,  5,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  5,  2,  2,  2,  2,   2,208,208,208,229,208,227,208,\n229,229,208,208,208,208,208,227, 208,229,208,229,229,208,208,208,\n\n// state[658 + 2] 0x022c00 Byte 4 of 4 (property)\n208,208,208,208,208,208,208,208, 208,208,208,208,208,208,208,208,\n208,208,208,208,208,208,208,208, 208,208,208,208,208,  4,  6,  6,\n  6,  6,  6,  6,  4,  2,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,216,  5,  5,  5,  5,   5,  5,216,  5,  5,216,  5,  6,\n\n// state[659 + 2] 0x022c40 Byte 4 of 4 (property)\n208,  6,208,208,  6,208,  6,208,   6,  6,  6,  6,208,217,  2,  2,\n  2,  5,  2,  2,  2,  5,  2,  2,   2,  2,  2,  2,  2,  2,  2,208,\n208,208,229,208,208,208,208,  0, 227,208,208,229,208,  6,208,208,\n208,208,208,208,208,  6,208,208, 208,208,208,208,208,  6,208,208,\n\n// state[660 + 2] 0x022c80 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  6,218,208,208,  6, 208,  6,  6,216,  6,  2,  6,  2,\n  2,  5,  2,  2,  2,  2,  2,  2,   2,216,  2,  2,  2,  2,  2,  2,\n208,  2,216,208,229,  0,208,208, 208,208,208,229,208,208,208,  6,\n\n// state[661 + 2] 0x022cc0 Byte 4 of 4 (property)\n229,  0,208,208,229,208,227,208, 208,208,  6,208,  6,229,208,208,\n208,208,208,208,208,208,208,  6, 208,208,229,  6,  6,  6,  2,  6,\n  2,  5,  5,  5,  5,216,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,216,  5,  5,  5,  5,   5,  5,  5,  5,  5,  6,208,  6,\n\n// state[662 + 2] 0x022d00 Byte 4 of 4 (property)\n208,208,  6,  6,  6,  6,  6,216,   5,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,216,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  6,\n229,229,208,208,229,208,229,208, 208,208,208,208,208,208,208,  6,\n208,208,229,229,208,208,208,208, 208,208,229,208,229,208,208,208,\n\n// state[663 + 2] 0x022d40 Byte 4 of 4 (property)\n208,208,  6,208,208,  6,  6,  6, 208,  2,  5,  2,216,  5,  5,  5,\n  5,  5,  5,  5,216,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  6,  6,208,  6,  6,  6,216,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  6,208,\n\n// state[664 + 2] 0x022d80 Byte 4 of 4 (property)\n208,208,227,229,208,229,229,208, 208,208,229,208,208,229,208,229,\n  0,227,  0,208,208,229,208,208, 208,208,208,208,229,208,  6,  2,\n  5,  6,  2,  5,  5,  2,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  6,  6,  6,208,218,  0,   2,  2,  2,  2,  2,  2,  2,  2,\n\n// state[665 + 2] 0x022dc0 Byte 4 of 4 (property)\n  2,  2,  2,  2,  2,  2,  2,208,   5,  5,  6,208,208,229,229,229,\n208,208,208,208,208,208,208,208, 208,208,208,208,208,208,  6,  6,\n  6,  4,  6,  2,  5,  5,  5,  5,   5,  5,  5,  5,  6,208,216,  2,\n  2,  2,  2,  2,  2,  2,208,208, 208,227,208,208,208,208,208,208,\n\n// state[666 + 2] 0x022e00 Byte 4 of 4 (property)\n208,208,208,208,208,229,208,229, 208,208,  6,  6,  6,231,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  6, 208,208,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,208,208,208,208,208, 208,208,208,208,208,229,229,208,\n208,208,208,208,229,  2,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[667 + 2] 0x022e40 Byte 4 of 4 (property)\n  5,  5,  5,  6,208,  2,  2,  2,   2,  2,  2,  5,  2,229,  6,208,\n229,208,  6,208,208,208,208,208, 208,229,229,  6,  6,  6,  6,  5,\n  5,  5,  5,  2,  2,  2,  2,  2,   2,  2,  2,  2,229,229,229,229,\n208,208,208,208,208,208,  6,  5,   5,  5,  5,  5,  6,  2,  2,  2,\n\n// state[668 + 2] 0x022e80 Byte 4 of 4 (property)\n  2,  2,208,208,229,229,208,208, 229,208,208,229,  5,  2,  2,  5,\n  5,208,  2,  2,  2,208,229,  6,   5,  5,  5,  2,  2,  2,229,208,\n208,229,229,  6,  2,  5,  5,  5,   5,  5,  5,  6,  5,  5,  5,  6,\n208,208,  5,227,208,208,208,208,   5,216,216,  6,  6,  6,208,  6,\n\n// state[669 + 2] 0x022ec0 Byte 4 of 4 (property)\n  6,208,208,229,208,  6,  6,  6, 208,  6,208,  6,  6,208,208,208,\n  5,  5,  6,  6,229,208,  5,208,   6,  6,208,208,  6,208,208,  6,\n208,  5,  6,  6,  6,208,208,208,   6,208,229,  6,208,208,208,208,\n  6,  5,208,208,208,  6,208,208,   6,229,208,208,  6,208,208,  6,\n\n// state[670 + 2] 0x022f00 Byte 4 of 4 (property)\n  6,  6,  6,  6,  6,208,  5,  5,   5,208,208,208,208,208,208,208,\n208,229,  6,  6,  5,  5,  6,  6, 208,  6,  6,219,208,208,208,208,\n208,208,208,208,219,208,  6,208, 208,  6,208,  6,  5,  5,  5,  5,\n  6,  6,  6,  6,  6,  6,208,  6,   6,219,208,208,  6,208,  6,208,\n\n// state[671 + 2] 0x022f40 Byte 4 of 4 (property)\n208,208,208,208,208,208,208,208, 208,208,  5,  5,  6,  6,  6,  5,\n  5,  5,  5,  5,  5,208,  6,208, 208,  2,  6,208,  6,208,208,229,\n208,208,  6,219,208,208,208,208, 208,208,208,  6,208,208,208,208,\n208,  6,  5,  5,  5,  5,  5,  5,   6,  6,208,  6,  2,  6,  6,208,\n\n// state[672 + 2] 0x022f80 Byte 4 of 4 (property)\n208,  6,208,208,208,229,208,208, 208,208,219,208,229,208,  6,208,\n208,  6,208,208,208,  6,  6,  6,   6,217,  5,  5,  5,  5,  5,  5,\n208,  6,  6,  5,  5,208,  6,208, 208,229,208,208,229,208,229,208,\n  6,229,  6,208,208,208,208,208, 208,208,208,  6,  5,  5,  5,  6,\n\n// state[673 + 2] 0x022fc0 Byte 4 of 4 (property)\n  6,  6,  6,  6,  3,  6,229,229, 208,229,208,229,208,208,208,  6,\n208,208,208,208,208,  5,  5,  5, 229,  5,  6,229,  6,  0,208,208,\n208,208,219,208,208,208,  6,  6, 208,208,208,229,208,208,208,  6,\n  6,219,  5,  5,  5,  5,  5,208, 208,208,  6,  6,  2,  5,208,208,\n\n// state[674 + 2] 0x023000 Byte 4 of 4 (property)\n229,229,208,219,  6,  6,  5,  6,   6,  5,  5,  5,  5,  6,208,208,\n208,208,229,  6,229,208,208,  6, 229,  6,208,219,  6,208,208,  2,\n  5,  5,  5,208,208,208,208,208, 208,  6,208,208,208,208,229,208,\n  6,  5,  6,229,  5,208,208,208,   6,  6,  5,  6,  5,  5,  6,  6,\n\n// state[675 + 2] 0x023040 Byte 4 of 4 (property)\n  6,  5,  5,  5,208,  3,  5,  5,   5,  6,208,208,  5,  6,229,208,\n  5,  5,208,  6,  2,  5,  6,208,   5,208,  5,  6,208,208,208,229,\n  5,  5,208,208,  5,  5,208,  5,   6,  5,  6,208,208,  6,  5,  6,\n  6,208,  2,229,208,208,208,208,   5,  6,208,208,229,  5,  5,208,\n\n// state[676 + 2] 0x023080 Byte 4 of 4 (property)\n208,229,208,  2,208,  5,229,  6,   6,229,229,  2,229,  6,  5,208,\n  6,208,  6,  5,208,208,  6,  6,   6,208,  6,  5,  6,  6,208,208,\n208,208,208,208,208,208,229,229, 208,  6,229,208,  6,208,208,208,\n  6,208,208,  6,  6,208,208,  0,   5,  5,229,208,  0,208,  6,208,\n\n// state[677 + 2] 0x0230c0 Byte 4 of 4 (property)\n208,229,229,208,  6,  6,208,  6, 208,  6,208,208,208,208,  6,208,\n208,208,  6,  5,229,  6,208,  6, 208,229,208,  5,  5,208,208,229,\n219,  5,208,  2,  2,  3,208,208, 208,208,208,  5,  5,  5,  5,208,\n  6,  2,  2,208,  6,208,  6,  5,   5,  5,  2,208,229,229,208,208,\n\n// state[678 + 2] 0x023100 Byte 4 of 4 (property)\n229,208,  5,  5,  5,  6,  6,  2, 208,208,208,  5,  5,  6,208,229,\n229,208,  2,  6,208,  6,  2,  5, 208,229,229,  6,  6,208,229,208,\n229,229,229,  6,208,  2,208,208, 208,  6,208,  5,  2,  6,208,  6,\n208,208,208,  6,208,208,208,208, 208,  5,  6,208,229,  5,229,208,\n\n// state[679 + 2] 0x023140 Byte 4 of 4 (property)\n229,  5,  5,  6,208,  2,229,229, 229,208,208,229,208,  6,208,  6,\n  5,  5,  5,  5,  6,  6,208,  2,   2,  2,229,208,229,208,208,208,\n229,229,229,229,208,208,208,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  6,208,208,  0,208,  2,  2,208, 229,229,208,208,208,229,208,  6,\n\n// state[680 + 2] 0x023180 Byte 4 of 4 (property)\n  6,  5,  5,  5,  5,  5,  5,  6,   6,208,208,208,  6,  6,  6,  2,\n  2,219,208,208,208,208,208,208, 208,229,208,229,208,208,208,  6,\n208,  6,  6,  5,  5,  5,  5,208, 208,208,  6,208,  6,  6,  2,  2,\n  2,  2,229,229,208,208,228,208, 208,229,208,208,208,208,208,208,\n\n// state[681 + 2] 0x0231c0 Byte 4 of 4 (property)\n  5,  6,  6,  4,  4,  6,  5,  6,   5,  5,  2,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  6,  6,   6,  6,208,  3,  2,  2,  2,  2,\n  2,  2,208,208,208,208,208,208, 208,208,208,227,229,  6,208,208,\n208,208,229,208,  6,  4,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[682 + 2] 0x023200 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  6,  0,208,   5,  6,  6,  6,  6,208,  6,208,\n  6,  3,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,208,\n208,208,  2,  6,208,208,208,208, 208,208,208,  6,  6,  6,  5,  0,\n  2,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  6,\n\n// state[683 + 2] 0x023240 Byte 4 of 4 (property)\n  5,  5,  5,  5,208,  6,  6,  6, 208,  6,229,  6,  6,  2,  2,  2,\n  2,208,229,208,229,208,208,208, 229,208,208,208,208,  6,  6,  6,\n  6,  6,  5,  5,  5,  5,  5,  5,   5,208,229,208,208,208,  6,  6,\n229,  6,  2,  2,  2,  2,  2,  2,   2,  2,208,229,229,208,229,229,\n\n// state[684 + 2] 0x023280 Byte 4 of 4 (property)\n  6,229,208,208,208,  6,  5,  6,   6,  5,  5,  2,  2,  2,  2,  5,\n  5,  5,  6,219,208,208,208,  3,   2,229,208,208,  6,208,208,229,\n208,208,  6,208,208,208,208,208, 208,  6,  6,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,208,  6,208,  6, 208,  6,208,  6,  6,208,  2,  2,\n\n// state[685 + 2] 0x0232c0 Byte 4 of 4 (property)\n  2,  2,  2,  2,208,208,  2,  2,   5,229,229,229,208,208,  6,208,\n208,  2,  5,  5,  5,  5,  5,208, 208,  6,  2,  2,  2,  2,229,208,\n  5,  5,  6,208,  6,208,  6,  6,   2,  2,  5,  5,  5,  5,  5,208,\n  2,  2,229,208,208,208,208,208, 208,  6,  5,  2,  2,  2,  2,229,\n\n// state[686 + 2] 0x023300 Byte 4 of 4 (property)\n  5,  2,  2,  5,  5,208,  2,208, 229,  2,  5,  2,  2,229,  5,208,\n  6,  6,  2,208,  2,  6,208,229, 208,  5,  6,  2,229,  2,  6,229,\n  6,  6,  5,208,  5,  5,208,208, 208,  5,  5,  5,208,208,  6,  5,\n  5,  5,  5,  5,  2,  2,  2,  5,   5,  2,  2,  5,208,208,229,  6,\n\n// state[687 + 2] 0x023340 Byte 4 of 4 (property)\n  2,  2,  2,229,208,  2,229,208, 208,  6,  2,  2,  5,  2,  6,208,\n  6,208,  5,  5,  5,  2,229,  2, 208,208,  6,208,208,208,208,229,\n208,208,208,208,208,208,208,208,   6,  6,  6,  5,208,  6,229,  6,\n  6,  6,  4,  5,208,208,208,208, 208,208,229,  6,  5,  6,  6,  6,\n\n// state[688 + 2] 0x023000 Byte 3 of 4 (relative offsets)\n-14,-13,-12,-11,-10, -9, -8, -7,  -6, -5, -4, -3, -2, -1,  1,  2,\n  3,  4,  5,  6,  7,  8,  9, 10,  11, 12, 13, 14, 15, 16, 17, 18,\n 19, 20, 21, 22, 23, 24, 25, 26,  27, 28, 29, 30, 31, 32, 33, 34,\n 35, 36, 37, 38, 39, 40, 41, 42,  43, 44, 45, 46, 47, 48, 49, 50,\n\n// state[689 + 2] 0x023380 Byte 4 of 4 (property)\n  2,  5,  5,  2,229,229,  6,  6,   6,  5,216,  5,208,208,219,  2,\n  5,  6,229,229,229,  6,  2,  5,   5,  5,208,229,229,  6,  2,  5,\n  5,  5,  2,227,208,  5,  2,  6,   6,208,  6,  6,  5,208,229,  6,\n  6,208,229,229,229,229,  5,  2, 229,208,  5,  5,217,  5,219,208,\n\n// state[690 + 2] 0x0233c0 Byte 4 of 4 (property)\n208,208,229,208,  6,  5,  5,  5,   5,  5,  5,  5,208,  6,  6,  3,\n233,208,  0,  4,229,228,229,208, 208,229,228,208,229,229,208,233,\n229,208,  6,  6,  4,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,208,208,  5,  5,208,  6, 208,208,208,208,  6,208,223,  2,\n\n// state[691 + 2] 0x023400 Byte 4 of 4 (property)\n  5,208,219,208,  2,  2,  2,  5, 208,208,208,208,208,229,208,208,\n208,229,208,208,  6,  6,  6,  5,   5,  5,  5,  5,  5,216,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  6,  6,  6,  6,  6,\n208,  6,  2,  2,  2,208,208,208, 208,229,208,208,208,208,208,229,\n\n// state[692 + 2] 0x023440 Byte 4 of 4 (property)\n208,208,208,229,208,  6,  6,  6,   6,  6,  4,  4,  2,  6,  2,  5,\n  5,194,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,228,  6,  6, 208,  6,208,208,  6,208,208,208,\n  6,229,  5,  2,  2,  2,  2,  2, 229,208,  2,  2,  6,  5,  5,229,\n\n// state[693 + 2] 0x023480 Byte 4 of 4 (property)\n229,208,208,208,208,208,229,229, 208,208,  6,  6,  6,  6,  3,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n216,  5,  5,216,  5,  5,  5,  5, 208,208,208,229,208,208,  6,208,\n  6,  2,  2,  2,  2,  2,208,208, 208,208,208,208,229,  6,  2,  5,\n\n// state[694 + 2] 0x0234c0 Byte 4 of 4 (property)\n208,208,229,229,208,208,  0,208, 229,229,208,  0,229,208,208,229,\n208,208,229,208,208,208,208,208, 208,229,208,208,208,208,208,208,\n208,208,  6,  6,  4,  5,  2,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,216,\n\n// state[695 + 2] 0x023500 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,208,208,\n  6,208,208,227,208,208,208,  6,   6,208,  6,  6,  6,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  6,208,229,229,208,208,\n  5,229,227,229,208,208,208,208, 208,229,229,229,208,208,208,229,\n\n// state[696 + 2] 0x023540 Byte 4 of 4 (property)\n208,208,229,229,208,229,208,229, 208,208,229,229,229,208,208,  6,\n208,208,229,208,  6,  6,  6,  6,   2,  5,194,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,216,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  6,  6,208,\n\n// state[697 + 2] 0x023580 Byte 4 of 4 (property)\n229,208,208,208,  6,  6,  6,208,   6,  6,208,  6,  6,  6,  6,  6,\n208,  6,  6,  5,215,  5,  2,  2,   2,216,  2,  2,216,  2,  2,  2,\n  2,  2,  2,208,208,208,  5,  2, 208,  5,208,229,208,229,208,208,\n208,229,208,  6,208,208,208,229, 229,208,229,229,208,208,208,229,\n\n// state[698 + 2] 0x0235c0 Byte 4 of 4 (property)\n  6,208,208,208,  4,  6,  6,  6,   6,  6,  6,  6,  2,  5,  5,  5,\n229,  2,  2,  2,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,216,  5,  5,  5,  5,  5,\n  5,  2,  6,229,208,208,  6,208, 208,  6,208,208,218,  6,  2,  2,\n\n// state[699 + 2] 0x023600 Byte 4 of 4 (property)\n  5,  2,  2,  2,  2,  5,  2,  5,   2,  2,  2,  5,  2,  5,  5,  5,\n208,208,208,  2,  5,208,208,229, 229,208,208,229,208,229,208,208,\n208,208,229,208,229,208,229,229, 229,208,208,208,229,208,208,208,\n208,208,229,229,  6,  6,  6,  6,   4,  4,  4,229,  5,  2,  2,  5,\n\n// state[700 + 2] 0x023640 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,194,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  0,   6,227,  6,208,  6,  6,  6,208,\n  6,  6,  6,  6,229,  3,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n229,208,208,208,229,208,208,227,   2,  2,  2,229,208,208,208,208,\n\n// state[701 + 2] 0x023680 Byte 4 of 4 (property)\n208,208,208,229,229,208,208,229, 208,208,208,229,208,208,229,208,\n229,208,208,  6,229,229,208,208, 229,229,229,208,229,229,208,229,\n229,208,208,229,208,208,208,  6, 208,229,208,  6,  6,  5,  2,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[702 + 2] 0x0236c0 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  6,  6,  6,  6,208,  6, 208,  6,208,219,  6,  6,  3,216,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,208,  5,  2,  5,  2,\n  5,227,208,208,229,229,208,208, 208,208,208,229,208,208,  6,208,\n\n// state[703 + 2] 0x023700 Byte 4 of 4 (property)\n208,208,208,208,208,208,208,208, 208,  6,  6,  2,  4,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,194,  5,  5,  5,\n  5,  6,  6,208,208,208,208,208, 208,  6,  6,  6,208,208,  3,  5,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,208,208,  2,  5,  6,  2,223,\n\n// state[704 + 2] 0x023740 Byte 4 of 4 (property)\n  2,229,208,208,208,  0,208,208, 229,  0,229,208,229,229,208,229,\n208,229,208,229,229,229,208,208, 208,208,229,208,229,208,208,  6,\n  6,  6,  6,  4,  4,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,208,   6,208,  6,208,208,  6,208,  6,\n\n// state[705 + 2] 0x023780 Byte 4 of 4 (property)\n  6,  5,  2,  2,  2,  2,208,208,   6,  5,  2,217,  5,  2,  2,  6,\n208,229,208,208,208,208,208,229, 208,229,208,208,208,208,208,208,\n  6,  6,  5,  5,  5,  5,  5,  5,   5,  5,216,  5,  5,  5,  5,  5,\n208,219,208,  6,  6,208,227,208,   6,  6,  6,227,  5,  2,  2,  5,\n\n// state[706 + 2] 0x0237c0 Byte 4 of 4 (property)\n219,  6,216,  2,229,208,208,208, 208,229,229,208,229,208,208,208,\n208,208,208,  6,  6,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  6,  6,  6,172, 208,  2,  2,  2,238,  2,  2,208,\n229,172,208,229,229,229,229,  6, 208,208,208,208,208,229,208,  4,\n\n// state[707 + 2] 0x023800 Byte 4 of 4 (property)\n  6,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,208,  6,208,208,\n208,  2,  2,  2,208,  2,  2,  2,   2,208,208,229,229,229,208,229,\n229,208,  6,  6,  4,  5,  5,  5,   5,216,  5,  5,  5,208,208,  6,\n  2,  2,  2,  2,  6,  5,  2,229, 229,229,  0,208,208,233,208,208,\n\n// state[708 + 2] 0x023840 Byte 4 of 4 (property)\n208,  6,  6,  5,  5,  5,208,  6,   6,208,208,  6,208,208,208,  5,\n  5,  5,  5,216,  5,  6,  6,  6, 208,  2,  2,229,  5,  2,208,219,\n208,  6,  5,208,  2,208,  6,208,   5,229,208,208,  6,  5,  5,  2,\n  6,  5,  5,208,208,  6,229,208, 208,  2,208,  5,208,  6,  6,  6,\n\n// state[709 + 2] 0x023880 Byte 4 of 4 (property)\n208,229,208,208,208,229,208,229,   6,208,229,229,208,229,208,208,\n229,229,229,208,  5,  6,  6,229, 229,208,208,229,229,229,229,229,\n229,208,208,  5,  6,  6,208,208, 208,208,229,219,229,208,208,229,\n229,229,229,208,208,  5,  6,  6,   6,  2,229,208,  6,208,  6,  5,\n\n// state[710 + 2] 0x0238c0 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  6, 229,229,229,208,229,229,229,229,\n208,229,229,208,  6,208,  5,  5,   5,208,  6,  6,  6,208,229,229,\n208,208,208,208,208,208,208,208, 229,208,  6,  5,208,  6,  6,208,\n208,  5,229,229,208,208,208,229, 208,229,208,208,208,208,208,208,\n\n// state[711 + 2] 0x023900 Byte 4 of 4 (property)\n208,229,208,208,  5,  5,  6,208, 229,208,229,229,229,208,208,208,\n208,208,208,  6,  5,  5,  6,208, 229,208,208,  6,208,  5,  5,  6,\n208,208,229,208,  5,208,  6,  6, 219,208,  6,  6,208,  5,  5,  6,\n  6,229,208,  6,208,229,208,208,   6,229,208,208,208,  6,  5,208,\n\n// state[712 + 2] 0x023940 Byte 4 of 4 (property)\n208,208,208,229,208,208,  6,229, 208,229,229,208,208,208,208,208,\n208,208,208,208,208,208,208,208, 208,208,  6,  5,  5,  5,  6,  6,\n208,  6,208,208,  6,208,229,229, 208,208,208,208,  6,208,  6,  6,\n  6,  2,208,229,208,  5,  6,  6, 208,229,229,208,229,208,229,208,\n\n// state[713 + 2] 0x023980 Byte 4 of 4 (property)\n  6,208,208,229,208,208,  2,229, 208,208,  5,208,  6,  2,  2,  6,\n  6,  6,  6,  2,208,208,208,229,   5,  5,  5,  2,208,208,208,208,\n  6,208,229,  6,  5,  5,229,208, 208,  6,  6,  6,  6,  6,  2,208,\n  2,208,  5,  6,  6,229,229,229, 208,229,208,208,208,208,  6,208,\n\n// state[714 + 2] 0x0239c0 Byte 4 of 4 (property)\n208,208,229,208,229,208,208,208,   6,208,208,229,208,229,208,208,\n208,229,208,208,208,208,208,  6,   6,  6,  6,  6,  6,229,229,229,\n229,229,208,229,229,208,229,208, 208,229,208,208,208,208,208,  5,\n208,  5,229,229,208,208,208,217, 229,229,  6,229,208,229,229,208,\n\n// state[715 + 2] 0x023a00 Byte 4 of 4 (property)\n229,208,  6,208,  6,229,208,208, 208,208,229,208,208,229,208,208,\n208,208,  5,  6,  6,  2,208,208, 229,229,208,229,208,208,208,229,\n229,229,208,208,229,208,208,  2,   5,  5,  6,  6,  6,  2,  2,  5,\n  2,208,208,229,208,208,229,208, 208,208,  6,208,  6,  5,  6,  6,\n\n// state[716 + 2] 0x023a40 Byte 4 of 4 (property)\n  6,  2,  2,  5,208,229,229,208, 229,208,  6,208,  5,229,208,208,\n208,208,208,208,208,229,208,208,   5,208,  6,  6,  6,208,208,208,\n208,229,208,208,  5,  5,218,  6, 208,208,229,208,208,229,  6,208,\n229,229,208,208,229,  6,208,229,   2,  6,208,229,229,  6,208,229,\n\n// state[717 + 2] 0x023a80 Byte 4 of 4 (property)\n229,  6,229,  5,  6,208,208,  6, 208,  6,  6,208,208,208,229,208,\n208,  5,  5,  5,  5,208,208,208, 172,208,  6,217,  5,  6,  6,  5,\n229,208,  6,208,208,  5,  5,  5,   6,208,208,  6,229,208,229,229,\n208,208,208,208,  6,  5,229,229, 208,208,  6,208,208,208,208,208,\n\n// state[718 + 2] 0x023ac0 Byte 4 of 4 (property)\n208,208,  6,  6,  6,  5,  5,  5,   6,  6,  6,  6,208,  5,  6,  6,\n208,208,229,208,  6,  2,208,  6, 208,208,208,  5,  6,  6,229,208,\n  6,208,229,208,208,208,208,229, 229,208,  6,208,208,208,  5,208,\n208,  6,  2,  6,208,  6,  6,  2,   5,208,208,  6,  5,  5,  5,  5,\n\n// state[719 + 2] 0x023b00 Byte 4 of 4 (property)\n  5,  5,208,208,208,208,208,  6, 208,208,208,208,208,208,208,208,\n208,208,  5,208,208,208,208,  5,   6,  6,208,208,208,  6,  5,  5,\n  6,208,208,208,  5,  5,  5,  5,   5,229,229,229,208,229,208,  5,\n  5,  5,  5,  5,  6,208,  6,  6, 229,229,229,229,229,229,208,229,\n\n// state[720 + 2] 0x023b40 Byte 4 of 4 (property)\n208,229,208,  2,208,208,  6,208,   6,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  6,  6,   6,  6,  5,  2,229,229,208,208,\n229,229,208,208,  6,  5,  5,  5,   5,  5,  5,  5,  5,208,208,  2,\n  2,229,208,208,229,208,229,  0, 208,229,208,227,208,  5,  5,  5,\n\n// state[721 + 2] 0x023b80 Byte 4 of 4 (property)\n  5,  5,  5,  6,  6,  6,  6,  2, 208,229,229,208,208,208,208,208,\n229,208,208,208,229,208,  6,208,   5,  5,  5,  5,  5,  5,  5,  5,\n  6,  6,  6,208,208,  6,  6,229, 208,208,229,208,229,208,208,208,\n208,208,208,208,208,  6,  6,  6,   6,  5,  5,  5,  5,  5,  6,  6,\n\n// state[722 + 2] 0x023bc0 Byte 4 of 4 (property)\n  6,  6,208,  6,  6,229,229,229, 229,208,208,229,229,229,208,208,\n219,208,208,208,  6,208,  5,  5,   5,  5,219,208,229,208,  6,208,\n  6,  2,208,  6,208,208,208,208, 229,229,229,208,208,229,208,208,\n208,208,208,  6,  6,  6,  6,  5, 208,208,208,229,208,208,208,  5,\n\n// state[723 + 2] 0x023c00 Byte 4 of 4 (property)\n  5,  5,  5,  6,  6,  6,229,  6,   6,217,208,229,229,208,208,  2,\n208,  5,  5,  5,208,  6,208,  6,   6,  2,208,229,229,  6,208,208,\n229,208,  5,  5,  5,  6,  6,  6, 229,  6,  5,229,208,208,208,  6,\n  6,  5,208,  2,  2,  2,229,229, 208,  5,  6,208,229,  6,  5,208,\n\n// state[724 + 2] 0x023c40 Byte 4 of 4 (property)\n208,  6,  6,  6,208,229,  2,208, 229,208,208,208,  5,  6,208,208,\n229,208,208,229,  5,208,229,  6,   5,229,208,208,208,  6,  5,  5,\n  5,208,  6,  5,  5,  5,208,  6,   3,  6,208,208,  2,  2,208,208,\n  2,  6,  5,  6,208,229,227,208, 217,  5,  6,  6,218,218,  2,214,\n\n// state[725 + 2] 0x023c80 Byte 4 of 4 (property)\n229,208,229,208,229,  6,208,  5,   5,  5,  6,208,  6,  2,208,208,\n208,229,229,208,208,229,  6,  6,   6,  5,  5,  5,  6,208,208,208,\n227,208,  6,  6,  6,208,  2,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  6,208,229,208,208,208,229, 208,227,208,208,229,208,208,208,\n\n// state[726 + 2] 0x023cc0 Byte 4 of 4 (property)\n208,208,208,  6,208,208,  6,  0,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,216,  5,  5,  5, 208,229,229,208,  6,208,  6,  6,\n  6,  2,  2,208,208,208,208,208, 208,208,227,208,229,229,227,208,\n208,208,229,208,208,208,208,208,   6,  6,  6,  6,  5,  5,194,  5,\n\n// state[727 + 2] 0x023d00 Byte 4 of 4 (property)\n  4,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,194,  5,\n  5,229,208,218,208,208,208,  6,   3,  2,  2,  2,  2,  5,229,208,\n208,208,208,229,229,208,208,208, 208,208,208,208,208,208,208,208,\n208,208,208,208,208,208,208,229, 208,208,229,208,229,  6,208,  6,\n\n// state[728 + 2] 0x023d40 Byte 4 of 4 (property)\n238,  6,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,208,  6,\n219,  6,208,  6,208,  6,208,  6, 208,208,  6,  6,208,  6,  2,  2,\n  2,208,  2,  5,  2,  2,  2,229, 208,208,229,229,208,229,208,208,\n\n// state[729 + 2] 0x023d80 Byte 4 of 4 (property)\n208,208,229,208,208,208,229,229, 227,229,229,208,208,208,208,229,\n229,208,208,229,208,208,208,  6, 229,208,208,208,208,208,229,208,\n  6,208,229,208,208,229,229,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n  6,  6,  6,  6,  6,208,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[730 + 2] 0x023dc0 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,194,  5,  5,  5,  5,   5,  5,  5,208,  6,229,  6,208,\n218,208,208,208,208,  6,208,208,   6,208,  6,  6,  6,  2,  2,  2,\n  2,  2,  2,  2,  2,208,208,  2,   5,  4,  4,  5,208,229,229,208,\n\n// state[731 + 2] 0x023e00 Byte 4 of 4 (property)\n229,208,208,208,229,229,208,229, 229,229,208,229,229,229,208,208,\n229,208,208,208,229,208,208,229, 208,208,208,208,208,208,208,208,\n229,208,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[732 + 2] 0x023e40 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  6,208,229,   6,208,208,  6,208,208,208,  6,\n  6,  6,  6,  2,  2,  2,  2,  2,   2,  2,208,  5,  6,208,229,227,\n208,229,229,208,208,208,229,229, 208,229,208,208,208,208,229,208,\n  6,208,229,208,208,208,229,208, 229,208,208,208,208,208,208,208,\n\n// state[733 + 2] 0x023e80 Byte 4 of 4 (property)\n208,208,  6,  6,  6,  6,  6,  6,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  6,208,  6,  6,229,\n229,208,208,  6,208,  6,208,  6,   6,208,  2,  2,  2,  2,  2,  5,\n\n// state[734 + 2] 0x023ec0 Byte 4 of 4 (property)\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  5,  6,217,208,  6,229,\n208,229,208,208,208,227,208,227, 229,208,208,229,229,208,229,208,\n208,208,229,208,208,208,208,208, 208,208,208,208,208,208,208,208,\n208,208,208,  6,  6,  6,  6,  5,   5,  5,  5,  5,  5,  2,  2,  5,\n\n// state[735 + 2] 0x023f00 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,216,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,208,208,229,  6,208,  6,208,\n208,229,208,208,  6,  6,  6,  6,   6,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  5,  2,  2,   2,  2,  2,208,  2,  2,  2,  5,\n\n// state[736 + 2] 0x023f40 Byte 4 of 4 (property)\n  2,  5,  6,229,208,208,  0,208, 229,229,227,208,229,  6,229,208,\n208,208,229,229,208,229,208,208, 208,208,208,229,208,229,208,229,\n208,208,208,208,229,208,208,229, 208,208,208,208,208,208,208,208,\n208,  6,  6,208,229,208,208,  6,   6,  6,  6,  6,  6,208,  4,  5,\n\n// state[737 + 2] 0x023f80 Byte 4 of 4 (property)\n  5,  5,  5,  2,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,208,  6,  6,  6,  6, 229,208,208,208,208,208,208,  6,\n208,  6,  6,  6,217,  2,  2,  5,   2,  2,  2,  2,  2,  2,  2,  2,\n\n// state[738 + 2] 0x023fc0 Byte 4 of 4 (property)\n  5,  5,  6,  2,  6,  0,208,227, 229,229,208,208,227,229,208,208,\n229,208,229,208,229,229,208,208, 208,208,208,208,208,208,208,208,\n208,208,208,208,208,  6,  6,  6,   6,  6,  6,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[739 + 2] 0x024000 Byte 4 of 4 (property)\n  5,  5,  6,  6,208,208,208,208, 208,  6,  6,229,  6,  6,208,  2,\n  2,  5,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  6,  2,  5,\n  5,  5,208,229,229,208,229,208, 208,229,229,229,208,208,208,208,\n  0,208,229,208,208,208,208,208,   6,  5,  5,  5,  5,  5,  5,  5,\n\n// state[740 + 2] 0x024040 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,208,208,  6,208,208,  6,  6,\n208,  3,  3,  2,  2,  2,  2,  5,   2,  2,  5,  2,  5,  5,  5,208,\n  2,229,229,208,208,208,229,229, 208,227,229,229,229,229,229,229,\n229,208,229,229,208,229,208,229, 208,208,208,208,208,229,229,208,\n\n// state[741 + 2] 0x024080 Byte 4 of 4 (property)\n229,208,208,208,208,208,208,208,   6,  6,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,194,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  6,208,229,229,  6,208,229,  2,   2,  2,  2,  2,  2,  2,  3,  5,\n  5,216,208,208,208,208,208,  0, 208,208,208,229,  6,208,208,208,\n\n// state[742 + 2] 0x0240c0 Byte 4 of 4 (property)\n208,208,208,  6,208,  6,  6,  6,   6,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,208,  6,208, 208,208,208,  2,  2,  2,  2,  2,\n  2,216,  2,208,  2,  2,  6,  2, 219,229,208,229,208,208,  6,208,\n208,208,208,219,208,208,229,229, 208,208,  6,208,208,208,208,  6,\n\n// state[743 + 2] 0x024100 Byte 4 of 4 (property)\n  6,  6,  6,  4,  5,  5,  5,  5,   6,208,  6,  2,  2,  2,229,229,\n229,208,  6,208,208,208,229,229, 208,208,208,208,208,208,  5,  5,\n  5,  5,  5,  5,  5,  6,208,  6, 208,208,208,208,208,  2,  2,  2,\n  2,  2,  2,  5,  5,208,229,229,   5,208,208,208,  6,208,  0,  5,\n\n// state[744 + 2] 0x024140 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,208,208,208,   6,  2,208,208,208,208,208,  6,\n  6,208,208,  6,  6,  5,  5,  5,   5,  5,  5,208,216,208,  6,  5,\n208,208,208,208,208,  6,208,  2,   5,229,208,208,  6,  5,  5,  6,\n208,208,229,208,208,  6,  2,208, 208,208,  5,  5,208,208,  5,208,\n\n// state[745 + 2] 0x024180 Byte 4 of 4 (property)\n229,  6,208,208,208,208,208,  6, 216,  5,  5,208,  6,208,208,229,\n208,229,208,  6,  5,  5,  5,  5,   5,  6,208,  3,  6,229,229,229,\n  6,  6,  6,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  6,208,\n208,208,208,  6,208,208,  6,  2,   2,  2,  2,  2,229,229,229,208,\n\n// state[746 + 2] 0x0241c0 Byte 4 of 4 (property)\n208,208,  6,  6,  6,  6,  4,  5,   5,  5,216,  5,216,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,208,208,208,  6,208,  6,208,\n208,208,216,  2,  2,  2,  2,  2,   2,  2,  2,208,  6,  6,  2,229,\n208,208,  0,227,208,208,229,208,   6,  6,  6,  6,  5,  5,233,  5,\n\n// state[747 + 2] 0x024200 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,208,208,  6,  6,208,208,  6, 208,  6,  6,  5,  2,  2,  2,  2,\n  2,  2,208,229,  2,208,229,229, 229,208,227,208,208,208,208,208,\n208,208,208,  6,  6,  6,  6,  6,   6,  5,  5,  5,  5,  5,  5,  5,\n\n// state[748 + 2] 0x024240 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,208,  5,  6,  6,  6,  6,\n  6,208,  2,  2,  2,  2,216,  2,   2,  5,  2,  2,  2,208,  6,208,\n  2,208,208,208,208,208,208,208,   6,208,229,208,229,208,208,208,\n  6,  6,  6,  6,  6,219,  5,  5,   5,217,  5,  5,  5,  5,  5,  5,\n\n// state[749 + 2] 0x024280 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,216,  5,  5,  5,  5,208, 208,208,  6,208,208,  6,  6,  6,\n  2,  2,  2,  2,  2,216,  2,  2,   2,  2,  2,  2,  2,  2,  6,208,\n  2,  6,208,  6,229,208,208,208, 229,229,208,229,229,229,229,229,\n\n// state[750 + 2] 0x0242c0 Byte 4 of 4 (property)\n208,208,229,208,208,  6,208,208,   6,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5, 208,208,208,  6,208,  6,208,208,\n208,229,  6,208,  6,  2,  2,  2,   2,  2,  5,  2,  2,  2,  2,  2,\n\n// state[751 + 2] 0x024300 Byte 4 of 4 (property)\n  2,208,  6,208,  2,  2,  6,208, 208,208,229,  0,208,229,208,229,\n229,208,208,208,208,208,208,  6,   6,  6,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,216,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  6, 208,208,208,208,208,208,  6,  6,\n\n// state[752 + 2] 0x024000 Byte 3 of 4 (relative offsets)\n-13,-12,-11,-10, -9, -8, -7, -6,  -5, -4, -3, -2, -1,  1,  2,  3,\n  4,  5,  6,  7,  8,  9, 10, 11,  12, 13, 14, 15, 16, 17, 18, 19,\n 20, 21, 22, 23, 24, 25, 26, 27,  28, 29, 30, 31, 32, 33, 34, 35,\n 36, 37, 38, 39, 40, 41, 42, 43,  44, 45, 46, 47, 48, 49, 50, 51,\n\n// state[753 + 2] 0x024340 Byte 4 of 4 (property)\n  6,  6,  6,  2,  2,  2,  2,  2,   5,  2,  2,  2,  2,208,  5,  5,\n229,  2,219,229,208,208,229,229, 208,229,208,208,229,229,  6,  6,\n219,  6,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,216,  5,   5,  5,  5,  5,  5,  6,208,208,\n\n// state[754 + 2] 0x024380 Byte 4 of 4 (property)\n  6,  6,208,  6,208,208,  6,  6,   6,  6,  6,  6,  5,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  5,208, 208,  6,  5,  2,216,208,208,208,\n208,229,208,229,208,229,208,208, 208,229,208,208,208,208,208,208,\n208,208,208,208,208,208,  6,208, 208,  6,  6,  6,  4,  5,  5,  5,\n\n// state[755 + 2] 0x0243c0 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  6,208, 208,208,208,208,  6,208,208,208,\n208,  6,  2,  2,  2,  2,  2,  2,   2,  5,216,  2,  2,208,208,208,\n  5,  6,  5,  6,208,208,229,208,   0,208,208,208,208,208,208,208,\n\n// state[756 + 2] 0x024400 Byte 4 of 4 (property)\n229,  6,  6,  6,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,208,  2,  6,208,  6,208,   6,  6,  2,  2,  2,  2,229,208,\n  2,  2,  5,  6,  6,  6,208,229, 208,208,208,229,208,208,  6,208,\n229,229,208,208,  6,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[757 + 2] 0x024440 Byte 4 of 4 (property)\n  5,  5,208,208,  6,208,208,  6,   2,  2,208,  5,  6,  2,  5,  5,\n  5,  6,208,208,217,  6,208,208,   6,  6,  5,  5,  5,  5,  5,216,\n  5,  6,208,  6,  6,  6,  6,208, 208,  6,  6,  2,  2,  2,  2,  2,\n  5,208,  5,229,208,208,229,229, 229,229,229,  6,208,208,229,229,\n\n// state[758 + 2] 0x024480 Byte 4 of 4 (property)\n208,208,208,  6,  6,  6,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  6,  6,208,  6,  6,  6,208,   2,  2,  2,  2,208,  6,208,  2,\n  2,208,227,208,208,  6,  0,208,   6,  6,  6,  5,208,  6,208,  6,\n  6,  6,  2,  5,  2,  5,  5,  5,   5,  5,229,208,208,208,208,  6,\n\n// state[759 + 2] 0x0244c0 Byte 4 of 4 (property)\n  5,  5,  5,  5,208,208,  2,  2, 208,229,208,  6,  6,  6,  5,208,\n208,  6,208,  5,208,208,  5,208,   6,  5,208,  2,208,208,  5,208,\n208,208,  2,  6,  6,208,229,  5,   5,  2,208,208,208,229,208,208,\n  6,208,208,208,208,  6,208,208, 208,  6,  2,  5,  5,208,208,  6,\n\n// state[760 + 2] 0x024500 Byte 4 of 4 (property)\n208,208,  5,  5,  5,  5,  5,208,   6,  6,208,  6,208,  6,  5,  5,\n208,208,208,  5,229,208,  6,208, 208,  6,  6,  2,208,  6,  6,  6,\n208,  5,208,208,208,208,208,208, 229,208,208,  6,208,  6,208,  2,\n208,208,208,  5,  5,  5,  6,  2,   5,208,  6,  2,  6,  2,  2,  6,\n\n// state[761 + 2] 0x024540 Byte 4 of 4 (property)\n208,  6,  5,  5,  6,208,  6,  6,   5,208,  6,208,  6,208,  5,  5,\n208,208,  6,229,  2,208,  5,  5, 208,  5,208,208,  5,208,229,229,\n229,  5,208,229,229,208,208,208, 229,208,208,  5,  6,208,208,208,\n208,208,208,208,208,208,208,229,   0,  5,208,208,208,208,208,  6,\n\n// state[762 + 2] 0x024580 Byte 4 of 4 (property)\n  6,  5,  5,  5,  6,208,229,208, 208,208,  5,208,208,208,  5,208,\n208,  5,  6,208,  5,208,229,229, 208,208,208,208,208,208,229,  6,\n229,  2,229,208,208,  5,208,208,   5,208,208,208,208,229,208,208,\n208,229,208,229,208,  6,  2,208,   2,  2,208,208,229,208,208,  6,\n\n// state[763 + 2] 0x0245c0 Byte 4 of 4 (property)\n208,208,208,  6,229,208,  2,208, 208,229,208,208,208,229,229,208,\n  3,  5,  6,  6,  6,  6,  2,208, 229,208,208,229,208,  6,  6,  6,\n208,  5,208,208,  2,208,208,  5, 208,208,229,208,229,208,208,229,\n  6,208,  2,208,229,229,229,229, 208,  2,208,229,  5,  5,  6,229,\n\n// state[764 + 2] 0x024600 Byte 4 of 4 (property)\n229,  2,  2,229,  5,229,  6,  6, 208,208,  6,  2,229,  5,  5,  5,\n229,229,  6,  2,208,  5,208,  5, 208,  5,208,208,229,208,229,208,\n229,229,229,229,229,208,229,229,   6,  4,  5,  5,  5,  5,  5,  5,\n  5,  6,208,208,208,  6,  6,  6, 229,229,208,229,208,229,229,208,\n\n// state[765 + 2] 0x024640 Byte 4 of 4 (property)\n208,  6,  5,  5,  5,  6,  6,  6,   6,208,208,  6,208,208,  6,229,\n  5,229,229,208,208,208,  6,208, 208,  6,  6,229,229,208,229,208,\n208,229,229,  6,229,  5,  5,  5, 208,  6,208,208,  6,  0,  2,  6,\n229,229,229,229,229,208,  6,  5,   5,  5,  5,  5,  6,  6,  6,  6,\n\n// state[766 + 2] 0x024680 Byte 4 of 4 (property)\n  6,  6,208,208,208,  6,  2,  2, 208,208,208,  5,  5,229,229,229,\n229,229,208,208,229,208,208,  0,   5,  5,  6,  6,  6,  6,208,  6,\n208,  6,  6,  6,  6,172,  2,  2, 208,229,208,208,208,208,208,229,\n229,208,229,229,208,208,208,  6,   5,  5,  5,  5,208,208,208,208,\n\n// state[767 + 2] 0x0246c0 Byte 4 of 4 (property)\n  6,  6,208,  6,  6,  6,  6,  2,   5,208,229,208,229,229,229,229,\n229,229,  6,  6,  5,  5,  6,  6, 219,  6,  6,208,  6,  6,  2,229,\n  2,229,208,229,229,208,208,208,   6,  5,  6,208,  6,  6,  6,208,\n208,208,208,208,208,  6,208,  6,   6,229,  5,229,  6,208,208,208,\n\n// state[768 + 2] 0x024700 Byte 4 of 4 (property)\n  5,  6,229,208,229,229,  5,229, 208,208,  6,208,229,229,  6,208,\n229,208,208,  6,208,  6,229,  5,   6,208,  5,208,229,208,  6,  6,\n  2,208,229,229,229,  5,  5,  6, 208,  6,  6,208,  2,  2,  6,  0,\n208,208,229,229,208,229,208,208, 208,208,208,229,208,208,208,  5,\n\n// state[769 + 2] 0x024740 Byte 4 of 4 (property)\n  5,  5,208,208,  6,  6,229,  6,   6,  6,  6,  2,208,208,  6,229,\n229,227,208,208,208,229,229,229, 229,208,229,208,208,  6,  0,229,\n208,208,  6,  5,  5,  5,208,  6, 208,  6,  6,  2,208,  6,208,208,\n208,208,208,208,208,208,208,229, 208,227,208,208,208,208,208,208,\n\n// state[770 + 2] 0x024780 Byte 4 of 4 (property)\n229,208,208,  6,  5,  5,  5,  6, 208,  6,  6,  6,  6,  6,  6,  5,\n  2,  2,  2,  2,  2,  2,  2,208,   2,208,229,229,229,208,229,229,\n208,208,229,208,  6,208,  2,  2,   2,  2,  2,  2,  5,  5,  6,208,\n208,  6,229,  6,  6,  6,  6,  6, 208,208,  2,  2,  2,  2,208,208,\n\n// state[771 + 2] 0x0247c0 Byte 4 of 4 (property)\n208,  5,  2,229,208,229,208,208, 208,208,208,229,208,229,229,208,\n208,208,  5,  6,208,208,  6,208,   6,208,208,  2,208,208,229,229,\n208,208,208,208,  0,208,208,229, 208,208,208,229,208,229,  6,  6,\n  6,  4,  5,  5,208,208,208,  6, 208,  6,208,208,  6,208,  6,  6,\n\n// state[772 + 2] 0x024800 Byte 4 of 4 (property)\n  6,  6,  2,  2,  2,  2,  2,208,   6,  6,  5,  2,  6,229,229,208,\n229,229,229,208,229,208,208,208, 208,208,227,  6,208,229,229,229,\n208,208,  6,  5,222,  5,  5,  5,   5,  5,  6,208,208,  6,  6,  6,\n  2,  2,  2,  2,  2,208,218,  2,   6,  0,208,208,208,208,229,208,\n\n// state[773 + 2] 0x024840 Byte 4 of 4 (property)\n208,227,229,208,208,229,229,229,   6,  6,  6,  6,  2,  5,208,  6,\n208,208,  6,  6,  6,  6,  6,208, 208,208,  2,  2,208,208,208,208,\n208,208,208,208,229,229,229,208, 208,208,229,208,229,229,  0,  6,\n208,229,208,208,208,208,208,  6,   6,  5,  5,  5,  5,  5,  6,208,\n\n// state[774 + 2] 0x024880 Byte 4 of 4 (property)\n  6,  6,208,208,  6,208,  6,  2,   2,  5,208,208,208,208,208,208,\n229,208,229,208,227,229,233,227, 208,208,208,  6,229,208,208,  6,\n208,208,208,208,  2,  2,208,229, 208,229,208,  2,  2,  6,  6,208,\n  5,  5,  5,  5,229,229,229,208, 208,229,208,  5,  6,  2,  2,  2,\n\n// state[775 + 2] 0x0248c0 Byte 4 of 4 (property)\n  5,  5,  6,208,  2,208,  0,  6,   5,  5,208,208,  6,229,229,  6,\n  5,208,208,208,219,  6,  6,  5, 229,208,  2,208,208,208,  6,208,\n229,  2,  5,208,229,  6,  5,208, 208,  5,208,208,  6,  6,208,208,\n229,208,208,  5,  5,208,  6,  5, 208,208,208,229,208,  6,  6,  5,\n\n// state[776 + 2] 0x024900 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  6, 208,  6,  6,208,  5,208,  5,229,\n208,208,208,208,  6,  6,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  6,  6, 208,  6,208,208,208,  6,  6,217,\n  2,208,208,  5,208,208,208,229, 208,208,229,208,229,  6,  5,  0,\n\n// state[777 + 2] 0x024940 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  6,  2,  6,  6,229,208,208,229, 208,208,208,208,208,  6,  6,  6,\n  6,  6,  5,208,  5,  5,  5,  5,   5,  5,  5,  5,  5,227,  6,  6,\n  6,208,  6,  3,  5,  5,  5,208, 208,  5,  6,  5,208,208,208,208,\n\n// state[778 + 2] 0x024980 Byte 4 of 4 (property)\n208,229,208,208,  6,  5,  6,  6,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n208,208,208,  6,208,208,208,  5, 208,208,  6,  5,  5,  5,229,208,\n208,208,229,208,208,  6,  6,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[779 + 2] 0x0249c0 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  6,229,208,   6,208,208,  6,  6,  6,  5,  5,\n208,  6,208,208,  5,  5,  5,208, 219,  6,229,229,208,229,208,208,\n208,  6,208,  6,  6,  6,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[780 + 2] 0x024a00 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,208,208,229,\n208,  6,217,208,229,229,208,208, 229,208,208,208,208,208,  6,  6,\n  6,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  6,  6, 208,208,208,208,  5,  5,  5,219,\n\n// state[781 + 2] 0x024a40 Byte 4 of 4 (property)\n208,208,208,208,229,229,208,208, 208,208,208,208,  6,  4,  0,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,208,\n  6,  6,  6,208,208,  5,  5,  5, 229,208,208,208,208,229,208,208,\n208,229,208,  6,208,208,  6,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[782 + 2] 0x024a80 Byte 4 of 4 (property)\n  5,  5,  5,208,208,208,208,208,   6,  6,  2,208,229,208,208,229,\n208,  6,  6,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  6,208,208,  5,  5,  5,  5,   5,208,208,229,208,208,208,  6,\n  6,  5,  5,  5,  5,  5,  5,  5,   5,208,  5,  5,  5,  5,208,208,\n\n// state[783 + 2] 0x024ac0 Byte 4 of 4 (property)\n208,  5,  5,  5,  5,208,208,  5,   5,229,229,  6,208,208,  6,  6,\n  5,  5,  6,  6,229,208,  5,  5, 208,  6,  5,  5,  5,  6,  6,  5,\n  6,  6,221,208,208,229,  5,  6, 229,229,208,208,229,208,  5,208,\n229,229,229,208,229,229,229,208,   5,  6,208,208,208,  5,208,  2,\n\n// state[784 + 2] 0x024b00 Byte 4 of 4 (property)\n  2,229,208,208,  5,  6,  6,208, 227,208,  6,  5,208,208,208,229,\n229,  5,208,  6,  6,  6,208,208, 208,  5,208,229,229,208,  6,  6,\n208,208,208,208,208,  6,229,  6, 229,208,  0,  6,229,229,208,229,\n208,  6,  2,  6,208,208,229,229,   2,  5,208,208,208,  6,217,229,\n\n// state[785 + 2] 0x024b40 Byte 4 of 4 (property)\n208,229,208,208,  5,  5,  5,  6,   6,  6,  6,  6,208,229,208,229,\n229,208,229,208,208,208,  4,208, 208,  6,  2,229,229,208,229,229,\n208,208,229,208,  6,  5,208,229, 208,229,208,  6,229,  6,  5,  4,\n  5,  6,  6,208,208,  2,  2,  2,   2,229,208,229,229,208,  5,  5,\n\n// state[786 + 2] 0x024b80 Byte 4 of 4 (property)\n208,  6,  6,  2,  2,208,208,208, 229,208,229,208,  6,208,208,229,\n229,  2,  2,208,208,  6,208,  2, 227,208,229,208,229,208,  2,  2,\n  2,  5,229,  6,  6,  2,208,229, 229,208,208,  5,  6,229,208,208,\n229,208,208,208,  6,208,  6,219, 229,208,208,208,208,208,  2,  2,\n\n// state[787 + 2] 0x024bc0 Byte 4 of 4 (property)\n  5,208,  6,  5,  6,  6,  2,229, 208,208,  2,208,229,208,208,  6,\n229,  2,  6,208,208,229,208,208,   5,  5,208,208,  6,208,208,208,\n208,229,208,208,  5,  6,208,208,   2,  2,  5,  5,208,  2,  5,229,\n  2,  2,208,229,  5,  5,  2,208,   6,  5,  2,  6,  5,208,  5,  2,\n\n// state[788 + 2] 0x024c00 Byte 4 of 4 (property)\n208,  2,  6,  5,  5,208,208,229, 229,  5,  5,  6,  6,  5,208,  6,\n  5,208,  6,  6,  6,229,  4,  5,   6,208,  6,208,  6,229,229,208,\n208,208,208,208,  5,  5,  6,  6, 208,208,208,208,208,208,208,208,\n208,229,208,208,208,208,208,  6,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[789 + 2] 0x024c40 Byte 4 of 4 (property)\n  5,  6,  6,  6,  6,  6,  6,  6,   0,  6,  6,208,208,229,229,229,\n208,  6,208,  6,  6,  5,  5,  5,   5,  5,  5,  6,  6,  6,208,208,\n  6,  6,  3,208,208,208,208,217, 208,229,208,208,208,208,  5,  5,\n  5,208,  6,229,  6,  6,208,  6,   6,  6,  6,  6,208,208,229,  6,\n\n// state[790 + 2] 0x024c80 Byte 4 of 4 (property)\n  6,  6,  2,  5,  5,  5,  5,  5,   5,  6,  6,208,  2,208,  5,  5,\n  5,229,229,229,229,208,229,208, 208,208,208,208,208,208,  5,  5,\n  5,  5,219,208,  6,  6,  6,208,   6,  6,  3,229,229,208,208,208,\n208,  5,208,  6,  6,229,208,208, 208,208,229,208,  2,208,  5,  5,\n\n// state[791 + 2] 0x024cc0 Byte 4 of 4 (property)\n  5,  6,  6,  6,  2,208,  2,  2, 229,229,208,208,208,  5,  6,208,\n  6,  6,229,208,229,229,229,229, 229,  5,  5,208,  6,  6,  6,229,\n208,  5,  2,  6,208,  6,  6,  2,   2,208,208,208,208,208,208,229,\n  2,  2,  5,208,  6,  6,208,  2,   2,208,  5,208,208,  2,  5,208,\n\n// state[792 + 2] 0x024d00 Byte 4 of 4 (property)\n229,208,  5,  5,208,208,  5,208, 208,  6,  6,208,208,  6,208,  2,\n208,208,208,229,  4,208,  5,208, 208,229,  6,  6,  5,208,208,208,\n229,229,  6,  6,208,  0,229,208, 229,208,227,208,  2,  2,208,229,\n208,229,  5,208,208,  2,  2,208, 208,208,208,208,208,208,229,229,\n\n// state[793 + 2] 0x024d40 Byte 4 of 4 (property)\n229,229,229,229,  6,  6,  6,  5,   5,  6,218,208,208,208,  6,  6,\n  6,208,  6,  6,208,  2,  2,208, 229,208,208,229,229,208,229,208,\n208,208,208,208,208,208,208,  5,   5,  5,222,208,  6,208,  6,  6,\n  6,  6,  6,  2,  2,  6,  2,208, 229,208,227,208,229,208,229,208,\n\n// state[794 + 2] 0x024d80 Byte 4 of 4 (property)\n208,229,  5,  5,216,208,208,  6, 218,208,208,208,229,  6,  2,  2,\n  2,  2,  2,229,208,229,229,208, 229,208,208,229,  0,208,208,208,\n208,208,208,229,208,208,  6,  6,   5,  5,  5,  5,  5,  5,  6,  6,\n  6,  6,  6,  6,  6,  6,208,208,   5,  2,  2,  2,  2,  2,  2,  2,\n\n// state[795 + 2] 0x024dc0 Byte 4 of 4 (property)\n208,208,227,229,  0,229,208,229, 229,229,208,208,229,208,208,229,\n208,208,218,208,229,208,229,229, 208,208,208,229,208,  5,  5,  6,\n208,  6,  6,  6,  6,208,  6,  6,   6,  6,  5,  5,  3,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,208, 229,208,  6,229,208,208,208,229,\n\n// state[796 + 2] 0x024e00 Byte 4 of 4 (property)\n208,208,208,229,208,229,229,229, 229,229,208,208,229,208,228,208,\n  6,229,  0,229,229,208,208,208, 208,208,  6,  6,  6,  5,208,208,\n208,  6,208,  6,208,  6,  6,  2,   2,208,229,229,229,227,208,229,\n208,229,229,229,229,229,208,228, 208,229,229,208,208,208,208,208,\n\n// state[797 + 2] 0x024e40 Byte 4 of 4 (property)\n  6,  6,  5,  5,  5,  5,  5,  6,   6,208,  6,  6,  6,208,  6,208,\n  5,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,229,208,229,208,208,\n208,229,229,208,229,229,229,208, 208,208,233,208,208,  6,  6,  5,\n  5,208,  6,208,208,  6,208,  6,   6,208,  6,208,  2,  2,  2,  2,\n\n// state[798 + 2] 0x024e80 Byte 4 of 4 (property)\n208,208,  6,219,229,208,208,208, 208,229,229,233,208,208,229,229,\n208,229,208,229,229,229,208,229, 208,208,208,229,208,208,  6,  6,\n  6,  5,  6,  6,  6,208,208,208, 208,208,  6,  6,  6,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,208, 208,208,229,229,208,208,208,208,\n\n// state[799 + 2] 0x024ec0 Byte 4 of 4 (property)\n208,208,229,229,229,208,229,208, 208,208,  6,  6,  6,208,  2,  2,\n  2,  2,  2,  2,  2,229,229,208, 229,229,229,208,229,208,229,  6,\n  6,  5,208,208,  6,208,  6,  6, 208,  6,  2,  2,  2,  2,208,208,\n  6,208,229,227,229,208,229,229, 208,  5,208,  2,  2,  2,  2,  6,\n\n// state[800 + 2] 0x024f00 Byte 4 of 4 (property)\n229,208,208,208,208,208,208,  5,   6,  6,  6,208,208,208,  5,  6,\n229,229,229,  2,  2,  2,  5,208, 229,229,208,  6,208,208,  2,208,\n229,208,208,208,208,208,  6,208,   5,208,208,  5,208,  5,  6,208,\n208,208,208,  6,  6,  6,  6,208,   2,208,208,  6,  5,208,208,  6,\n\n// state[801 + 2] 0x024f40 Byte 4 of 4 (property)\n  2,208,229,229,  6,  6,208,229, 208,229,229,  6,229,208,208,  6,\n  5,  5,  5,  6,208,  6,208,  2, 208,208,208,208,  5,  5,  5,  5,\n  5,  5,  6,  6,  5,208,229,208,   5,  5,  5,  6,208,  6,  6,  5,\n208,  6,  6,  6,  2,  2,  2,  5,   2,229,208,208,229,208,  6,229,\n\n// state[802 + 2] 0x024f80 Byte 4 of 4 (property)\n  6,  6,  5,  5,  6,  6,208,  6, 229,208,208,  5,  5,  5,  5,  5,\n  6,  6,  6,  2,  2,229,  6,  5,   5,208,  5,229,208,229,208,  2,\n208,229,229,229,208,229,208,229, 208,  5,208,229,229,229,  6,  2,\n  2,  2,208,208,229,  6,208,  2, 229,  0,  6,208,208,  5,208,  6,\n\n// state[803 + 2] 0x024fc0 Byte 4 of 4 (property)\n208,  6,  5,208,  6,229,229,229, 229,208,208,208,  6,  2,229,229,\n229,229,208,  6,  6,229,208,208, 208,229,229,208,208,208,  6,229,\n  0,229,  5,  6,218,208,  2,229, 208,208,229,229,  5,218,208,  6,\n  2,  2,  5,229,229,229,229,229,   6,  5,  5,  6,  6,  6,  6,208,\n\n// state[804 + 2] 0x025000 Byte 4 of 4 (property)\n  6,229,229,229,229,  6,  5,208, 229,208,208,208,  2,208,229,229,\n229,  5,  6,  6,229,229,229,229, 208,229,  5,208,208,  6,208,208,\n  6,208,229,208,208,208,208,  6, 208,  6,  2,229,229,208,  6,208,\n229,229,229,  2,208,229,208,  6,   6,229,208,  6,208,208,  6,208,\n\n// state[805 + 2] 0x025040 Byte 4 of 4 (property)\n  5,229,208,229,208,208,229,229, 229,208,  4,  5,  5,  6,229,208,\n229,229,229,208,208,228,208,  6,   5,  5,208,208,208,  6,229,208,\n229,208,  6,  5,  5,  5,  5,  5,   5,208,208,208,229,208,229,229,\n208,229,  6,  5,  5,  6,208,227, 208,208,208,208,208,  6,  6,  5,\n\n// state[806 + 2] 0x025080 Byte 4 of 4 (property)\n217,219,  6,208,208,  5,  5,208, 229,  2,208,  6,  5,  5,  5,  5,\n  5,  5,  6,208,208,208,229,208, 208,208,  5,  5,  5,  5,  5,  5,\n229,208,  6,  6,208,208,229,229, 208,229,  6,  6,  5,  5,  5,  6,\n  6,208,208,208,  6,208,  5,208, 208,229,208,  6,  5,  6,229,  5,\n\n// state[807 + 2] 0x0250c0 Byte 4 of 4 (property)\n229,208,229,208,  5,  5,  6,229, 208,208,  5,  5,  6,208,208,  6,\n  6,  2,  5,208,208,208,208,  5, 208,208,  2,  2,  5,  6,  2,  6,\n  6,208,  6,  6,229,  5,208,229,   0,229,208,229,  5,  6,  6,  6,\n  6,  2,208,229,229,229,229,208, 208,229,229,208,208,229,  6,  6,\n\n// state[808 + 2] 0x025100 Byte 4 of 4 (property)\n208,  6,  5,208,208,208,208,229, 229,229,208,208,229,229,229,208,\n208,229,229,208,229,229,229,229, 208,208,  6,208,208,229,208,  6,\n  6,  6,  4,  5,  5,208,  6,208,   6,208,  6,216,  2,  2,  2,  2,\n  2,229,229,208,229,229,208,229, 229,229,208,229,208,208,208,208,\n\n// state[809 + 2] 0x025140 Byte 4 of 4 (property)\n208,208,  6,  2,229,  6,  6,  6,   5,  5,  5,  5,  5,  5,  5,  6,\n  6,  6,  6,208,  6,  6,  6,208, 227,208,208,208,208,208,  0,229,\n229,229,208,208,  6,208,  0,229, 229,208,229,208,208,208,208,  6,\n208,  5,216,208,  6,  6,208,  6,   6,208,  6,  6,208,  5,  5,  2,\n\n// state[810 + 2] 0x025180 Byte 4 of 4 (property)\n  2,  2,  2,  2,  2,208,208,208, 208,208,  6,229,229,208,208,208,\n208,229,208,208,229,208,229,229, 229,229,229,229,229,229,229,  0,\n208,  0,208,208,208,229,229,  6,   6,  4,  5,  5,  5,  6,  6,  6,\n208,  6,  6,208,  6,208,208,  6,   6,  2,  2,  2,  2,  2,  2,  2,\n\n// state[811 + 2] 0x0251c0 Byte 4 of 4 (property)\n  2,  2,  2,208,229,208,208,229,   2,208,208,208,229,228,208,229,\n208,208,208,229,229,229,229,  6, 208,229,229,229,208,208,229,208,\n208,208,  6,  5,  5,  4,  5,  5,   5,  5,  5,208,  6,  6,208,  6,\n  6,  6,  6,  6,208,208,  2,  2,   2,  2,  2,  2,  2,  2,208,208,\n\n// state[812 + 2] 0x025200 Byte 4 of 4 (property)\n229,  2,229,208,  6,229,229,229, 208,208,229,229,208,208,208,208,\n208,208,208,208,229,229,208,208, 208,229,208,229,208,  6,  4,219,\n  5,  0,216,  5,  5,  5,  5,  5,   5,208,208,  6,  6,218,  6,  2,\n  2,  2,  2,  2,  2,  2,  2,208, 208,  2,  2,208,229,229,229,227,\n\n// state[813 + 2] 0x025240 Byte 4 of 4 (property)\n208,229,229,229,208,229,229,229, 229,229,229,229,228,208,229,208,\n229,229,208,229,208,208,229,208, 208,208,208,208,229,208,229,229,\n  6,  6,  5,  5,  5,  5,208,  6,   6,  2,  2,  2,  2,  2,  2,  2,\n227,  6,  2,  6,229,229,229,229,   0,208,229,  0,229,208,208,229,\n\n// state[814 + 2] 0x025280 Byte 4 of 4 (property)\n227,208,208,  6,208,208,208,208, 208,229,208,  6,  6,  6,  5,  6,\n208,  6,  6,  6,  6,208,  2,  2,   2,216,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,208, 208,  6,229,229,229,229,229,229,\n208,208,  0,208,  0,229,229,208, 229,229,229,208,229,208,208,208,\n\n// state[815 + 2] 0x0252c0 Byte 4 of 4 (property)\n208,208,208,208,208,  6,  6,  5,   5,  5,  5,  6,  6,208,  6,  6,\n208,  6,  2,  2,  2,  2,  6,  6,   5,229,229,208,208,229,208,227,\n208,208,229,229,208,208,  6,  6,   5,  5,  5,208,208,208,  6,  5,\n229,  6,  2,  2,  2,  2,  2,  2,   2,  2,  2,  5,  2,  2,  6,229,\n\n// state[816 + 2] 0x025000 Byte 3 of 4 (relative offsets)\n-12,-11,-10, -9, -8, -7, -6, -5,  -4, -3, -2, -1,  1,  2,  3,  4,\n  5,  6,  7,  8,  9, 10, 11, 12,  13, 14, 15, 16, 17, 18, 19, 20,\n 21, 22, 23, 24, 25, 26, 27, 28,  29, 30, 31, 32, 33, 34, 35, 36,\n 37, 38, 39, 40, 41, 42, 43, 44,  45, 46, 47, 48, 49, 50, 51, 52,\n\n// state[817 + 2] 0x025300 Byte 4 of 4 (property)\n  0,229,208,208,229,229,229,208,   0,208,229,208,208,208,227,229,\n229,  5,  6,  5,  5,208,208,208,   6,  2,229,229,208,208,229,208,\n  6,  5,  5,208,  6,  2,  2,  2, 208,208,208,  2,  2,208,229,229,\n229,229,208,  6,  6,  5,208,  2,   2,  2,208,229,229,229,208,208,\n\n// state[818 + 2] 0x025340 Byte 4 of 4 (property)\n229,208,208,208,208,  6,208,  6,   6,229,208,208,208,  2,  2,229,\n  6,  2,  2,208,208,208,  2,208,   2,  5,208,  2,  6,  6,208,  0,\n229,229,229,208,208,208,  6,208, 229,  5,208,229,208,208,208,229,\n208,208,208,208,  6,208,208,208, 208,208,229,229,229,229,208,208,\n\n// state[819 + 2] 0x025380 Byte 4 of 4 (property)\n208,  2,208,229,229,208,208,208,   6,208,229,208,208,208,208,208,\n208,  6,208,208,208,208,208,208, 229,208,208,  6,208,  6,219,  6,\n  6,208,  6,  6,208,208,208,208, 208,208,208,208,208,  6,  6,  6,\n229,208,208,  5,  5,208,208,  6, 208,229,229,229,208,208,208,208,\n\n// state[820 + 2] 0x0253c0 Byte 4 of 4 (property)\n208,208,208,  6,  6,  6,  6,  6,   6,208,  6,  2,  2,  2,208,208,\n  6,  5,  6,  6,208,  6,  6,  5, 208,229,208,  6,229,229,208,229,\n229,  5,208,  6,  6,  6,  6,  6,   6,  6,208,229,208,  6,  6,208,\n208,  5,208,208,208,208,  5,208,   6,  6,  6,229,208,  5,208,  2,\n\n// state[821 + 2] 0x025400 Byte 4 of 4 (property)\n208,229,  6,208,208,  6,  2,  2,   2,  2,  6,  2,  6,  2,  6,  2,\n  2,229,  2,229,  2,229,  5,229, 208,229,208,  5,  5,229,229,  6,\n  5,  5,  5,  5,208,  5,  2,  2,   2,208,229,208,229,  6,  4,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  6,208,  6,208,208,  6,  6,\n\n// state[822 + 2] 0x025440 Byte 4 of 4 (property)\n208,208,  2,  2,208,208,208,229, 229,208,208,208,208,229,229,208,\n229,208,229,208,208,  6,  6,  5,   5,  5,  5,  5,  5,  5,  5,  6,\n218,  6,208,208,  6,218,  6,  6,   6,208,  6,  6,  5,  2,  5,208,\n229,  6,227,208,  0,208,227,  6, 208,229,208,229,208,208,208,208,\n\n// state[823 + 2] 0x025480 Byte 4 of 4 (property)\n208,229,229,  2,  5,  2,  5,  5,   5,  5,  5,  5,  5,  5,  4,  5,\n  6,  6,208,  6,208,  6,208,  6,   6,  6,208,  6,229,  6,208,  6,\n  6,  6,  6,  6,208,  2,  2,229, 229,229,229,229,229,208,227,208,\n229,208,229,208,229,208,208,  6,   6,  5,  5,  5,  5,208,  6,  6,\n\n// state[824 + 2] 0x0254c0 Byte 4 of 4 (property)\n208,208,  6,  6,  2,  2,208,208,   6,  2,  5,208,229,229,208,229,\n229,208,229,229,208,208,208,208,   6,  4,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   6,  6,  6,  6,  6,208,  6,  6,\n  6,208,  3,  2,  2,  2,  2,  2,   2,  2,229,208,208,208,208,229,\n\n// state[825 + 2] 0x025500 Byte 4 of 4 (property)\n229,229,229,208,229,208,208,208, 208,229,208,  6,  6,  6,  4,  6,\n208,  6,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  6,208,208,  3,  3,  2,  2, 208,208,208,208,  5,229,208,208,\n208,229,208,208,  5,238,  5,  5,   5,  5,  5,  6,  6,  6,  6,208,\n\n// state[826 + 2] 0x025540 Byte 4 of 4 (property)\n  6,  6,219,208,  2,229,208,229, 208,208,  2,208,227,208,229,229,\n229,208,  6,208,208,229,229,229, 229,219,208,  5,  5,  5,  5,  5,\n  5,229,208,  6,  6,216,  0,  5,   5,  5,  5,  5,  5,  5,  6,  6,\n208,208,229,229,208,208,229,208, 229,229,208,208,208,208,208,208,\n\n// state[827 + 2] 0x025580 Byte 4 of 4 (property)\n  6,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,208,208,  6,  6,  5,\n  2,  2,  2,  2,  2,  2,  2,208, 229,208,208,208,208,229,208,208,\n208,208,  5,  5,  5,  5,  5,  4,   6,  2,208,229,208,  6,  5,  5,\n  5,  5,  6,208,208,  6,  6,208,   2,  5,  2,229,208,229,208,208,\n\n// state[828 + 2] 0x0255c0 Byte 4 of 4 (property)\n208,208,208,  5,  5,  5,  5,  6,   6,208,  6,  6,  2,  2,  2,  2,\n  2,  6,229,208,  6,  5,  5,  6, 208,229,  6,  5,  2,208,208,229,\n  5,  5,  5,208,  6,  6,  6,  6,   2,  2,208,208,208,229,208,  5,\n  6,208,208,  2,208,  6,  6,208,   5,  2,208,  5,  6,  2,229,208,\n\n// state[829 + 2] 0x025600 Byte 4 of 4 (property)\n  2,208,  2,208,208,208,208,  6,   5,  5,  6,  6,  6,  5,  5,  6,\n  6,218,  6,  6,  6,208,208,  6,   6,  5,  5,  5,  5,  5,  5,  6,\n  6,  6,  6,  6,208,  6,208,  6,   6,  6,  2,208,208,208,208,  6,\n208,208,  6,  6,  6,  0,  2,  2,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[830 + 2] 0x025640 Byte 4 of 4 (property)\n  6,  6,208,  6,208,  6,  6,  6,   6,208,229,208,  5,208,208,208,\n  6,  5,  2,  2,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  6,  6,\n  6,  6,  6,  6,208,  6,  6,  2, 208,  2,  2,229,208,208,229,208,\n229,208,208,  6,  6,  6,  6,  5,   5,  5,  5,  5,  5,  6,  6,  6,\n\n// state[831 + 2] 0x025680 Byte 4 of 4 (property)\n  6,219,  6,  5,  2,  2,  2,  2, 208,229,208,229,208,208,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,208,  6,208,  6,  6,  6,\n  6,  6,  6,  6,  2,  2,229,208, 208,208,229,208,  6,  6,  6,  2,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  6,  6,  6,  6,  6,  6,\n\n// state[832 + 2] 0x0256c0 Byte 4 of 4 (property)\n208,208,208,208,  6,208,208,208, 208,  2,  5,  5,  5,  5,  5,  5,\n  6,  6,  6,  6,208,  6,  3,  2, 229,208,229,208,229,229,208,229,\n229,208,  5,  5,  5,  6,  6,  6,   6,  6,  6,  6,  6,  2,229,229,\n229,208,229,208,208,  5,  5,  5,   5,  5,  5,208,208,208,  6,208,\n\n// state[833 + 2] 0x025700 Byte 4 of 4 (property)\n  2,  5,  5,229,208,208,  5,  5,   5,  5,  5,  5,  5,  6,  6,208,\n  6,208,229,208,208,  5,  6,208,   6,  6,208,208,  6,  5,  5,208,\n208,  2,  6,208,  2,208,208,208,   6,208,  5,  5,208,  6,  6,208,\n229,208,208,  5,208,  6,  6,208, 208,208,  5,  5,208,208,  5,  0,\n\n// state[834 + 2] 0x025740 Byte 4 of 4 (property)\n  6,229,  6,229,208,208,  6,  5, 229,  6,208,208,229,208,  2,  5,\n208,  6,208,208,229,229,229,  6, 229,  6,  5,  5,  5,  5,  5,  6,\n  6,  6,208,208,208,227,229,229, 229,229,208,229,208,229,229,208,\n  6,231,  5,  5,  5,  5,  5,  6,   6,208,208,208,208,  2,229,229,\n\n// state[835 + 2] 0x025780 Byte 4 of 4 (property)\n208,229,208,229,208,208,208,  6,   5,  5,  6,  6,  6,  6,  6,  6,\n  6,  6,208,  6,  6,  6,  2,208, 229,229,229,217,229,208,208,  5,\n  5,  5,  5,  6,  6,  6,  6,  6,   6,228,  6,  6,  6,  6,  6,208,\n  6,208,229,229,228,227,229,208, 208,229,208,208,208,  5,  5,  5,\n\n// state[836 + 2] 0x0257c0 Byte 4 of 4 (property)\n  6,  6,  6,  6,  6,208,  6,  5,   2,  2,  2,  6,  2,229,208,208,\n208,229,208,229,229,229,208,208, 208,229,208,208,208,  6,  5,208,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  6,  6,  6,  6,  6,  6,\n  6,  6,  6,  6,  6,  6,  6,208, 208,  2,208,208,  2,229,208,208,\n\n// state[837 + 2] 0x025800 Byte 4 of 4 (property)\n229,208,208,208,229,208,208,208, 229,229,208,208,208,229,208,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  6,  6,  6,  6,  6,  6,  6,\n  6,229,208,  6,  6,  6,  6,  6,   6,  6,  6,  6,  2,  2,  2,  2,\n  6,229,229,229,208,229,208,229, 219,229,208,  6,208,208,208,208,\n\n// state[838 + 2] 0x025840 Byte 4 of 4 (property)\n208,208,  6,208,  6,  5,217,  5,   5,  5,  5,  5,  5,  6,  6,219,\n  6,  6,  6,  6,208,  6,  6,216,   2,  6,208,229,229,208,  6,229,\n208,208,208,208,229,229,229,229, 208,208,208,208,208,229,208,208,\n208,  6,  0,  5,  5,  5,  5,  6,   6,208,  6,  6,  6,  6,  6,  6,\n\n// state[839 + 2] 0x025880 Byte 4 of 4 (property)\n208,208,  2,  2,  2,  2,  2,229, 208,  2,229,229,208,208,208,208,\n218,208,229,231,208,229,208,  6,   5,  5,  5,  5,  5,  5,208,  6,\n  6,  6,  6,  6,  6,  6,  6,208,   6,  6,  3,  2,  2,229,208,  6,\n208,  5,  6,  2,229,229,229,208, 229,208,208,208,208,208,  6,  5,\n\n// state[840 + 2] 0x0258c0 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  6,  6, 208,  6,  6,  6,  6,  6,  6,  6,\n  2,  2,  2,208,  6,  6,208,229, 229,229,208,  6,208,  6,208,208,\n208,  5,  6,  6,  6,208,208,208, 208,208,229,208,208,208,229,229,\n229,229,208,  5,  5,  5,  6,208,   6,  6,  6,  6,  6,  2,  5,  6,\n\n// state[841 + 2] 0x025900 Byte 4 of 4 (property)\n208,208,208,208,  6,208,229,208,   6,  6,229,208,208,  6,208,  6,\n  6,208,208,229,208,  5,  5,208, 229,  5,208,  6,208,  6,229,208,\n  6,  6,208,229,208,  6,  6,229, 208,229,208,208,  6,208,208,  6,\n  5,208,  6,  6,208,208,208,208, 229,208,229,208,208,208,208,229,\n\n// state[842 + 2] 0x025940 Byte 4 of 4 (property)\n  6,  5,  5,  5,  6,  6,208,208, 229,208,229,208,229,229,208,208,\n208,208,208,208,208,  6,  5,  5,   5,  5,  5,208,  6,  6,208,  6,\n208,229,208,208,208,208,208,208, 208,208,  5,  5,  5,  5,  5,  6,\n  6,  6,  6,  6,  6,  6,229,229, 208,208,229,229,208,229,229,229,\n\n// state[843 + 2] 0x025980 Byte 4 of 4 (property)\n208,208,208,208,208,208,208,208, 208,  6,208,208,229,229,208,208,\n208,208,  6,  5,  6,  6,  6,  0,   6,  6,  6,229,229,227,208,229,\n208,208,208,  6,208,208,208,208, 208,208,208,  6,  5,  5,  5,  5,\n  5,  5,208,  6,  6,208,208,  6, 229,208,208,208,208,208,208,208,\n\n// state[844 + 2] 0x0259c0 Byte 4 of 4 (property)\n  6,  6,  6,  6,  4,  5,208,208,   6,  6,208,  6,208,  6,  2,  5,\n208,219,229,208,228,208,208,208, 208,208,208,229,208,208,208,208,\n208,  6,208,  6,  6,208,  6,  6,   6,  2,  2,  6,208,229,229,229,\n208,229,229,208,208,229,208,208, 229,229,208,208,208,208,  6,  5,\n\n// state[845 + 2] 0x025a00 Byte 4 of 4 (property)\n  5,  5,  5,  5,  6,  6,  6,  6,   6,  6,229,  2,  6,  0,229,208,\n208,208,229,208,208,229,229,208, 208,  6,  5,  6,  6,  6,  6,  6,\n  6,208,208,  5,  6,  6,  6,  2,   2,  6,229,208,208,208,208,  3,\n208,229,208,208,208,208,208,208,   5,  6,  6,229,208,208,  6,208,\n\n// state[846 + 2] 0x025a40 Byte 4 of 4 (property)\n208,208,208,  5,  6,  6,  6,  2,   5,  2,208,208,229,  2,208,  5,\n208,  6,229,208,208,208,208,208, 208,229,  6,  5,  5,  6,  6,  6,\n208,229,208,229,208,208,208,  5,   5,  5,  5,  5,  5,208,208,  2,\n  2,208,208,229,208,229,208,  6,   5,  5,  6,208,208,  6,229,229,\n\n// state[847 + 2] 0x025a80 Byte 4 of 4 (property)\n229,229,229,208,208,  2,  5,  5,   5,  5,229,229,208,229,229,208,\n208,208,  5,  5,  5,208,  6,  6, 229,229,229,208,  0,  2,  2,  5,\n  5,  5,  6,  6,  5,208,208,208,   5,  5,  5,  6,208,  5,  5,229,\n229,229,  5,208,  6,208,208,  6,   2,  6,219,208,229,208,  5,208,\n\n// state[848 + 2] 0x025ac0 Byte 4 of 4 (property)\n  6,  6,  6,229,  6,  6,  6,  6, 208,208,  5,  6,  2,208,229,  5,\n208,  5,  5,  6,  6,  6,208,  6,   5,229,208,208,208,229,229,  0,\n208,229,208,  4,  4,  5,  5,  5,   5,  5,  6,  6,  6,216,  5,208,\n208,228,  6,229,229,229,208,208, 208,208,208,208,208,229,  5,  5,\n\n// state[849 + 2] 0x025b00 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  6,208,   6,218,  2,  2,208,208,229,208,\n208,208,229,229,229,229,208,208,   6,208,208,208,  6,229,208,  5,\n  6,  5,  5,  5,  5,  5,  5,  2,   2,  2,229,229,208,229,  0,229,\n229,208,208,208,208,229,208,208, 208,208,  6,208,208,208,208,  5,\n\n// state[850 + 2] 0x025b40 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,208,208,218,  2,  2,  2,\n229,229,208,208,229,208,229,229, 208,229,208,229,229,208,208,229,\n208,208,229,208,208,208,208,208, 208,  6,208,208,208,208,208,208,\n208,208,  6,  6,  5,  2,  2,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[851 + 2] 0x025b80 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,229,  3,  2,   2,216,  2,  2,  5,208,229,229,\n208,229,229,208,208,229,208,229, 229,208,208,229,229,229,208,  6,\n229,  6,208,208,208,208,208,208, 208,208,208,208,  6,208,208,208,\n  6,  6,  4,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[852 + 2] 0x025bc0 Byte 4 of 4 (property)\n  5,  5,  5,  6,  6,  3,  5,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  5,229,227,227,208,229,208,229, 208,208,208,208,208,227,208,229,\n229,208,208,208,208,229,208,208, 229,229,  0,208,208,208,229,229,\n208,208,208,208,229,208,208,208, 208,208,208,  6,208,208,208,208,\n\n// state[853 + 2] 0x025c00 Byte 4 of 4 (property)\n  6,  5,208,  3,  2,  5,216,  2,   2,  5,  2,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5, 208,208,229,229,229,229,208,229,\n229,229,229,208,208,208,208,208, 229,208,208,208,208,229,208,208,\n208,229,229,208,208,208,208,208, 208,208,208,208,229,208,208,208,\n\n// state[854 + 2] 0x025c40 Byte 4 of 4 (property)\n229,208,208,  6,208,208,208,208,   6,  6,  0,  4,217,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,217,  5,  5,194,  5,  5,  6, 218,208,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  5,  2,208,208,208, 208,208,208,229,229,208,208,208,\n\n// state[855 + 2] 0x025c80 Byte 4 of 4 (property)\n229,229,  6,  6,229,229,229,208, 229,208,229,208,208,208,208,208,\n208,208,208,  6,  6,208,229,208, 229,208,229,208,208,208,208,229,\n208,208,208,208,208,208,208,208, 208,208,208,208,208,  6,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,208,229,208,  6,  3,\n\n// state[856 + 2] 0x025cc0 Byte 4 of 4 (property)\n  5,  5,  2,  2,  2,  2,208,229, 208,227,208,208,208,229,229,208,\n  0,229,208,227,229,208,208,208, 229,208,208,208,208,229,229,208,\n208,208,208,208,229,208,208,208, 208,208,208,208,208,208,208,208,\n208,208,208,208,208,229,208,208, 208,208,229,  6,  6,  6,  5,  5,\n\n// state[857 + 2] 0x025d00 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  6,  6,  6,208,208,  6,  6,  2,   2,  2,  2,  2,  2,  5,  5,  5,\n  5,229,227,208,208,229,208,229, 229,229,208,208,208,229,229,208,\n208,208,229,  6,208,208,208,208, 208,208,208,208,  6,208,208,208,\n\n// state[858 + 2] 0x025d40 Byte 4 of 4 (property)\n  6,  6,  6,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  6,\n208,  6,  6,208,  3,  2,  2,  2,   2,  2,  2,  2,229,208,208,208,\n208,229,208,229,208,208,229,229, 208,208,208,229,208,208,208,208,\n208,208,208,229,208,208,208,  6,   5,  5,  5,  5,  6,208,  2,  2,\n\n// state[859 + 2] 0x025d80 Byte 4 of 4 (property)\n  2,  2,  2,  2,  2,  6,208,227, 208,  6,208,208,229,208,208,208,\n208,208,208,208,208,208,208,208, 208,208,208,208,208,208,208,208,\n  6,  4,  6,  5,  5,  5,  5,  5,   5,  5,208,208,  6,  6,  2,  2,\n  2,  2,  2,  2,208,208,229,208, 208,208,208,229,208,229,208,208,\n\n// state[860 + 2] 0x025dc0 Byte 4 of 4 (property)\n208,208,208,208,208,208,208,208, 208,208,  6,  6,  5,  5,  5,  5,\n208,217,  2,  2,208,229,208,229, 208,208,229,208,208,208,208,208,\n  5,  5,208,208,208,  6,  6,  2, 208,208,208,229,229,208,208,208,\n208,208,208,  6,  5,  5,  5,  5, 208,  6,  2,  2,208,208,208,208,\n\n// state[861 + 2] 0x025e00 Byte 4 of 4 (property)\n208,  2,  6,208,  2,  5,  2,  5, 208,229,208,208,  6,  2,  5,  5,\n208,208,  2,  2,  5,  6,  5,208, 208,  5,  6,  6,208,  2,  6,  6,\n  2,208,208,208,  6,229,  5,229, 208,  5,  6,208,229,208,  4,  5,\n  5,  5,  6,208,229,208,208,227, 208,  5,  5,  5,  5,208,208,  2,\n\n// state[862 + 2] 0x025e40 Byte 4 of 4 (property)\n  2,229,208,229,219,208,229,229, 208,208,229,  0,208,208,208,208,\n  5,  5,  5,  6,  6,208,233,  6,   2,  2,229,  6,229,208,227,208,\n208,208,233,  6,217,  4,  5,  5,   5,  6,  6,208,  6,208,  3,  2,\n  2,  6,229,208,208,208,229,208,   0,208,208,208,208,208,208,208,\n\n// state[863 + 2] 0x025e80 Byte 4 of 4 (property)\n  6,  5,  5,  5,  5,  5,216,  5, 208,208,218,208,  6,  6,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  5, 229,208,229,229,208,229,208,208,\n208,208,229,208,208,  6,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,208,208,  6,208,  6, 208,  2,  2,  2,  5,  2,  2,  2,\n\n// state[864 + 2] 0x025ec0 Byte 4 of 4 (property)\n  6,208,228,229,208,229,208,229, 208,208,208,208,208,229,208,208,\n229,208,208,229,208,208,208,  5, 233,216,  5,  5,  5,  6,  6,  6,\n  2,  2,  2,  2,229,229,229,  0, 228,229,208,208,208,208,  0,208,\n208,  5,  5,208,  6,  6,  6,  6,   2,  2,  2,  2,  2,  2,  6,229,\n\n// state[865 + 2] 0x025f00 Byte 4 of 4 (property)\n208,208,229,229,208,208,208,208, 208,208,219,  6,  5,  5,  5,  5,\n  5,  5,  5,208,  6,  2,  2,  6, 208,208,229,208,208,229,208,208,\n208,217,  5,  4,217,  5,  5,  5,   5,  6,  6,  6,  6,  6,  6,  6,\n  3,  2,  2,  2,  6,  5,229,229, 208,229,229,208,208,208,208,208,\n\n// state[866 + 2] 0x025f40 Byte 4 of 4 (property)\n208,229,208,208,  2,  5,  5,227,   6,208,208,  5,  2,  2,  2,229,\n208,208,  6,  6,  2,  5,  5,208, 229,208,208,208,  4,  5,  5,  6,\n  6,  2,  2,208,  2,208,229,208,   6,  2,  2,  3,208,208,208,  5,\n229,208,208,208,208,  2,229,229, 208,229,  5,208,208,229,  5,208,\n\n// state[867 + 2] 0x025f80 Byte 4 of 4 (property)\n208,208,208,  2,229,208,208,229,   5,  5,208,218,229,208,208,208,\n208,208,208,208,  5,  6,208,  2,   2,208,  0,227,208,229,208,  6,\n208,208,208,229,208,208,208,208, 208,208,208,208,208,208,208,208,\n208,  6,  5,  5,  5,216,  5,  5,   5,  6,208,208,  6,  2,  2,  2,\n\n// state[868 + 2] 0x025fc0 Byte 4 of 4 (property)\n  2,  2,  2,229,229,208,229,229, 229,229,208,229,208,208,208,208,\n208,208,208,208,  4,  5,  5,216,   5,  5,  6,  6,208,  6,  6,208,\n214,216,  5,  2,  2,  2,229,229, 229,229,208,208,208,208,208,229,\n229,208,208,208,208,208,208,208, 208,208,227,  4,  5,  5,  5,  5,\n\n// state[869 + 2] 0x026000 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,216,  5,208,   6,208,  2,  2,214,  2,  2,  2,\n  2,  2,229,208,208,208,227,  0, 208,229,  0,208,229,208,208,229,\n229,208,208,208,208,208,208,208, 218,  5,  2,  2,  5,  5,  5,  5,\n  5,  5,  5,  5,216,216,  5,  5,   6,  2,  2,  2,  2,  2,  2,  2,\n\n// state[870 + 2] 0x026040 Byte 4 of 4 (property)\n  2,  2,  2,208,208,  2,208,  6, 208,229,208,208,208,229,208,229,\n229,208,208,208,208,208,208,208, 208,208,229,208,208,208,208,  6,\n  4,  5,  2,  2,217,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n208,208,  6,  6,208,  6,  6,  6,   2,  2,  2,  2,  2,  2,  2,  2,\n\n// state[871 + 2] 0x026080 Byte 4 of 4 (property)\n208,227,229,208,229,208,229,208, 227,229,  6,229,208,208,208,208,\n208,208,229,208,229,208,  6,208, 208,208,208,227,208,208,208,208,\n229,208,  5,  6,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,217,\n  5,  5,  6,  6,208,229,  6,208,   3,  3,  2,  2,  2,  2,  2,  2,\n\n// state[872 + 2] 0x0260c0 Byte 4 of 4 (property)\n  2,  5,  6,208,229,208,208,229, 229,208,208,229,208,208,208,208,\n227,208,229,208,229,208,229,208, 229,208,  6,208,208,208,208,208,\n208,  6,208,208,208,208,208,208, 208,  6,  6,  6,  6,  4,  2,  2,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  6,  6,  6,  2,  2,\n\n// state[873 + 2] 0x026100 Byte 4 of 4 (property)\n  2,  2,216,  2,  2,  2,  2,  2,   2,229,208,208,227,229,208,208,\n208,229,208,227,229,208,208,208, 208,208,208,208,208,  6,  2,  3,\n  2,  5,  5,216,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  6,\n  6,229,208,  6,  2,  2,  2,  2,   2,  2,  2,  2,229,208,227,208,\n\n// state[874 + 2] 0x026140 Byte 4 of 4 (property)\n229,208,208,229,229,208,229,229, 208,229,208,208,229,208,208,208,\n208,208,208,208,208,229,  6,  6,   6,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  6,208, 208,219,208,  6,208,  2,  2,  2,\n  2,  2,  2,  5,  2,229,208,229, 229,208,229,208,229,208,229,229,\n\n// state[875 + 2] 0x026180 Byte 4 of 4 (property)\n208,208,208,229,208,229,208,  6, 229,208,208,208,208,208,208,  5,\n  5,  5,  5,  5,  5,208,208,208,   6,  2,  2,  5,208,208,229,  0,\n229,208,208,208,208,208,208,208,   6,208,208,208,208,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,208,  6,   6,  2,  2,229,208,208,208,208,\n\n// state[876 + 2] 0x0261c0 Byte 4 of 4 (property)\n208,208,229,208,208,208,  6,  2,   5,  5,  5,  5,  5,  6,229,208,\n  6,208,  2,208,208,229,229,208, 208,208,208,229,208,  5,  5,  5,\n  5,  5,208,208,  6,208,  3,229, 208,208,208,208,229,  6,  2,  3,\n208,229,208,  5,  5,  6,208,208, 208,208,208,208,208,208,208,  5,\n\n// state[877 + 2] 0x026200 Byte 4 of 4 (property)\n208,208,  2,208,  6,208,  5,208,   6,  6,  6,  6,  6,  6,  6,  6,\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n  6,  6,229,229,  6,  5,208,208, 208,229,  6,229,208,208,208,208,\n208,229,208,  5,229,229,229,  6, 208,208,208,229,208,  2,  5,  5,\n\n// state[878 + 2] 0x026240 Byte 4 of 4 (property)\n  5,208,229,  6,  5,  5,  6,208, 208,208,  6,  5,  5,  6,208,208,\n208,  5,  5,  5,  6,229,208,  5,   5,208,208,  5,  6,229,229,229,\n208,  5,229,208,  5,229,  5,229,   6,208,217,  5,208,208,208,208,\n  4,  2,  5,  5,  5,  5,  6,208, 208,229,  6,208,208,  6,208,208,\n\n// state[879 + 2] 0x026280 Byte 4 of 4 (property)\n  5,229,229,208,  6,  6,  4,  5,   5,  5,  6,208,  6,  5,208,208,\n229,208,208,208,208,208,208,208, 208,  5,  2,  2,  5,  5,  5,  5,\n  5,  5,  5,208,208,  6,  6,208,   5,  5,208,229,  6,208,208,208,\n  6,  6,  6,  5,  5,  5,  5,  6,   6,  6,  3,  6,229,208,208,229,\n\n// state[880 + 2] 0x026000 Byte 3 of 4 (relative offsets)\n-11,-10, -9, -8, -7, -6, -5, -4,  -3, -2, -1,  1,  2,  3,  4,  5,\n  6,  7,  8,  9, 10, 11, 12, 13,  14, 15, 16, 17, 18, 19, 20, 21,\n 22, 23, 24, 25, 26, 27, 28, 29,  30, 31, 32, 33, 34, 35, 36, 37,\n 38, 39, 40, 41, 42, 43, 44, 45,  46, 47, 48, 49, 50, 51, 52, 53,\n\n// state[881 + 2] 0x0262c0 Byte 4 of 4 (property)\n  6,  6,  5,  6,  5,208,208,208, 229,208,208,208,208,208,  6,  6,\n  5,  5,  5,  6,  6,  2,  5,  5,   5,  5,  5,  5,  5,208,208,208,\n208,208,208,208,208,  6,  2,  5,   5,  6,  6,  5,  5,  5,  5,229,\n229,208,208,208,229,208,  6,  5,   5,208,  6,  5,  5,208,208,208,\n\n// state[882 + 2] 0x026300 Byte 4 of 4 (property)\n208,208,208,208,  6,208,208,  6,   6,208,229,  6,  6,  5,  5,  5,\n  5,  5,229,208,229,229,208,208,   6,  5,  6,  5,  5,  5,  5,208,\n229,229,229,208,208,  6,  6,  6,   5,208,229,208,208,208,208,  6,\n  6,  5,  5,  5,  5,229,208,208, 229,  6,208,208,208,  6,229,229,\n\n// state[883 + 2] 0x026340 Byte 4 of 4 (property)\n208,208,  5,  5,  6,  6,208,208, 208,  2,  5,208,233,  5,208,208,\n208,208,208,  6,208,208,  5,208, 208,  6,208,227,208,208,208,208,\n  6,  5,  5,  6,  6,208,208,208, 208,229,229,  6,208,208,  5,  5,\n  5,  6,208,  6,  6,  6,  6,  6,   6,229,229,229,229,208,229,208,\n\n// state[884 + 2] 0x026380 Byte 4 of 4 (property)\n208,  6,  6,208,  6,208,208,208, 208,208,208,208,  6,227,  6,  6,\n  6,  6,  6,  6,  5,  5,  5,229, 229,208,208,  2,  6,208,  6,  6,\n  6,  2,208,229,208,208,229,208,   6,208,  6,  5,218,  6,  6,229,\n208,229,  6,  5,208,  6,  6,208, 229,229,208,208,208,  6,  5,  5,\n\n// state[885 + 2] 0x0263c0 Byte 4 of 4 (property)\n  6,229,  6,208,  2,208,229,208, 208,208,229,208,208,208,  5,  5,\n  5,208,  2,  2,  6,229,208,229, 208,208,  5,  6,208,208,  5,208,\n208,  5,229,208,  6,  6,  6,208, 229,229,229,208,  6,208,  6,208,\n229,  6,  5,  6,208,208,208,208, 229,229,229,229,208,  5,  5,  6,\n\n// state[886 + 2] 0x026400 Byte 4 of 4 (property)\n208,  6,233,229,229,208,229,229, 229,208,229,229,208,229,208,  6,\n  5,  5,  5,  5,  5,208,229,208, 208,208,208,208,208,  6,229,  6,\n  6,  6,208,229,229,208,229,208, 208,208,208,  6,208,208,208,208,\n208,208,208,208,  6,  5,  5,208, 208,208,229,208,208,208,208,  6,\n\n// state[887 + 2] 0x026440 Byte 4 of 4 (property)\n208,  6,  6,  2,  5,  2,  5,229, 208,208,208,229,208,229,229,208,\n208,208,  5,  5,  5,  5,  6,  2, 208,208,208,229,229,229,208,208,\n208,229,208,208,208,208,208,208, 208,208,208,  5,  5,  6,  6,  6,\n208,208,229,208,208,208,  0,  6, 229,229,229,208,208,208,208,  5,\n\n// state[888 + 2] 0x026480 Byte 4 of 4 (property)\n  6,  6,  6,229,208,229,208,208, 229,  5,  5,  5,  5,229,229,208,\n208,229,208,208,208,208,208,  6,   5,  5,  5,  5,208,208,  6,208,\n  5,  6,208,208,  5,208,229,  6, 208,208,208,  6,208,208,227,  5,\n  6,208,208,208,  6,  2,229,233, 208,  2,229,229,  5,  5,229,  6,\n\n// state[889 + 2] 0x0264c0 Byte 4 of 4 (property)\n208,  5,  6,208,208,  2,  6,  2,   6,  2,  2,  6,  5,  6,208,208,\n208,  5,229,229,208,  6,229,229, 208,208,208,  6,  2,229,229,  6,\n208,  2,  6,  6,208,208,  5,  6, 208,  5,208,  5,229,  5,208,229,\n208,208,  6,  6,229,208,  6,208, 229,208,229,208,229,208,229,  2,\n\n// state[890 + 2] 0x026500 Byte 4 of 4 (property)\n  5,208,229,229,229,229,229,  6,   6,208,  3,229,229,229,208,208,\n229,208,  5,208,229,208,  6,208, 208,  2,  5,229,208,208,208,208,\n208,  5,208,  5,  5,208,208,  6, 208,229,208,208,229,208,  6,208,\n229,208,  5,  5,  6,208,  6,229, 208,208,  6,  6,208,208,229,208,\n\n// state[891 + 2] 0x026540 Byte 4 of 4 (property)\n208,208,  5,  5,  5,  5,  6,208, 208,  6,208,208,208,208,217,208,\n208,208,229,229,208,208,  5,208, 208,  6,  5,  5,  5,  5,  5,  2,\n229,208,208,  6,  6,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  6,208,  5,  2,  6,208,208,229, 208,229,208,229,229,229,208,208,\n\n// state[892 + 2] 0x026580 Byte 4 of 4 (property)\n208,  6,  5,  5,  5,208,  6,  2, 229,229,229,229,208,208,208,  6,\n208,216,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,208,  6,  6,  6,\n208,  2,229,208,229,208,208,208, 208,208,208,208,208,  5,  3,  5,\n  5,  5,  5,  5,  5,  5,  5,  6,   6,208,  6,  2,229,208,208,229,\n\n// state[893 + 2] 0x0265c0 Byte 4 of 4 (property)\n229,208,208,208,  5,  5,  5,  5,   5,  5,208,  6,  3,208,  6,  2,\n229,229,229,229,229,229,229,229,   5,208,208,  6,  6,  2,  2,208,\n208,229,229,229,208,229,208,208, 208,208,  5,  5,  5,  6,  6,229,\n  6,  5,  5,229,229,229,208,208,   5,  5,  6,  6,  6,  2,208,  6,\n\n// state[894 + 2] 0x026600 Byte 4 of 4 (property)\n  5,  5,  5,208,208,229,  5,  5, 208,208,229,  5,  6,229,  5,  5,\n  5,  5,208,208,208,229,  6,  6, 208,  6,  6,  5,  6,208,208,208,\n208,  6,  5,208,  6,  6,  5,  2, 208,229,208,208,208,208,  5,  5,\n  6,  2,229,208,208,208,229,208, 208,218,208,208,  6,208,208,208,\n\n// state[895 + 2] 0x026640 Byte 4 of 4 (property)\n  0,208,208,208,208,208,229,229, 208,208,208,229,  6,208,  6,  2,\n  5,  5,  5,  5,  5,  5,208,208, 208,  6,  6,208,227,  6,  6,229,\n208,208,208,  2,  2,  2,  2,208, 208,208,208,  0,208,208,208,208,\n208,208,229,208,208,208,229,229, 208,208,208,208,208,219,  4,  5,\n\n// state[896 + 2] 0x026680 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5, 208,208,  6,  6,208,208,208,  6,\n  6,208,208,208,216,  2,  2,  2, 208,208,208,  5,  5,229,229,229,\n208,229,208,208,229,208,229,229, 208,  5,208,208,208,227,208,  5,\n  4,  5,  5,  5,  5,  5,  5,  5, 208,208,208,208,  6,208,  6,  6,\n\n// state[897 + 2] 0x0266c0 Byte 4 of 4 (property)\n  6,208,208,208,208,208,  6,  6,   3,  2,  2,  2,  2,  2,208,208,\n208,  6,208,208,208,208,208,229, 208,229,208,229,  0,208,229,229,\n229,208,  6,208,208,208,208,208,   5,  5,  5,  5,  5,  5,  5,  6,\n  6,  6,  6,208,208,  6,208,208,   6,208,  2,  2,216,  2,  2,  2,\n\n// state[898 + 2] 0x026700 Byte 4 of 4 (property)\n  2,  6,208,208,208,  6,229,  0, 208,219,208,208,208,208,208,208,\n208,208,208,208,208,208,208,208, 227,208,208,229,229,  4,  2,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,208,  6,208,  6,  6,  6,\n  6,  6,  6,208,  6,208,208,  6,   6,208,208,208,  6,208,208,208,\n\n// state[899 + 2] 0x026740 Byte 4 of 4 (property)\n  6,  5,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,208,\n208,208,229,208,208,208,208,208, 208,  5,208,229,208,229,229,208,\n208,208,229,208,208,227,229,208, 229,229,208,208,227,229,208,208,\n208,208,208,208,208,208,208,229, 208,  2,216,  5,  5,  5,  5,  5,\n\n// state[900 + 2] 0x026780 Byte 4 of 4 (property)\n  5,227,  6,  6,208,208,  6,208, 219,208,  6,208,  6,  2,  2,  2,\n  2,  2,  2,  2,  2,208,208,208,   6,208,208,208,229,208,229,208,\n208,208,227,208,208,208,229,208, 229,208,208,208,208,208,  6,208,\n208,208,208,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,208,  6,  6,\n\n// state[901 + 2] 0x0267c0 Byte 4 of 4 (property)\n208,208,218,  6,  6,  6,  6,  6,   6,  2,  2,  2,  5,  2,  2,  2,\n  2,  2,  2,  6,208,208,  2,  2, 229,208,  6,229,  0,208,219,208,\n208,208,208,208,208,208,208,229,   6,  5,216,  5,  5,  5,  6,208,\n229,  6,  6,208,208,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n\n// state[902 + 2] 0x026800 Byte 4 of 4 (property)\n208,208,  5,208,229,229,  0,208, 208,208,208,208,208,208,229,229,\n208,208,208,208,208,208,208,208,   2,  5,  5,  6,208,  6,208,208,\n208,  6,  6,  6,208,208,  6,  6, 208,208,  6,208,208,  6,  6,  2,\n  2,  2,  2,  2,  2,  2,  2,208, 208,208,229,208,  5,  2,208,208,\n\n// state[903 + 2] 0x026840 Byte 4 of 4 (property)\n229,229,208,208,  6,208,208,208, 229,  6,  6,  2,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,208,  6,208, 208,  6,  6,208,208,  6,216,  2,\n  2,  2,  2,  2,  2,  2,  2,  6, 208,208,229,208,227,208,216,  2,\n208,208,  0,  6,229,208,  0,208, 208,208,208,208,  0,208,  5,  5,\n\n// state[904 + 2] 0x026880 Byte 4 of 4 (property)\n  5,  5,  5,  5,218,208,  6,  6,   5,  2,229,219,229,229,229,208,\n208,208,  6,  5,  5,  5,  5,  5,   5,208,208,208,208,208,  2,  2,\n  2,  2,  2,  6,  5,208,208,208, 229,  0,208,208,  5,208,  6,208,\n  6,  6,  3,  2,  2,  2,  2,  2, 229,208,208,208,208,208,  2,208,\n\n// state[905 + 2] 0x0268c0 Byte 4 of 4 (property)\n229,208,  6,  6,  6,  5,208,229, 208,208,208,208,  5,208,  2,208,\n208,208,208,208,  6,  2,208,  2, 218,  2,  5,208,208,233,208,208,\n208,  5,  6,  6,208,  6,  6,  6,   6,208,  4,  5,  5,  5,208,  6,\n  2,  5,208,  5,208,  5,  5,208, 208,208,208,208,208,208,208,208,\n\n// state[906 + 2] 0x026900 Byte 4 of 4 (property)\n  5,  6,208,208,  5,  5,208,  6,   6,  6,208,  6,208,208,  5,  5,\n208,  5,208,  6,208,208,  5,  6, 208,208,208,  5,  6,208,208,229,\n  2,208,208,208,  5,  5,229,208, 208,  5,208,229,208,  2,  2,  2,\n  2,  2,208,208,208,208,208,217,   6,229,  5,208,208,  6,  2,208,\n\n// state[907 + 2] 0x026940 Byte 4 of 4 (property)\n  6,208,208,  2,  5,229,208,  5, 208,208,208,208,  5,  6,208,208,\n208,233,208,  5,208,  5,  6,  5, 208,  5,  6,208,  6,208,208,208,\n208,208,  5,  6,  6,208,229,208, 208,208,  6,  5,  6,208,208,  4,\n  6,  6,208,208,208,208,229,208, 208,  5,  5,229,208,  5,  5,208,\n\n// state[908 + 2] 0x026980 Byte 4 of 4 (property)\n208,208,208,208,208,229,208,208, 208,208,  5,  6,208,  6,  5,208,\n208,208,  6,  5,  6,208,208,208, 208,233,208,208,208,  5,  5,  5,\n  5,208,208,229,208,208,  6,208, 208,208,208,208,208,  5,  5,208,\n208,208,208,  5,  5,  5,208,  6,   5,208,208,208,208,208,208,208,\n\n// state[909 + 2] 0x0269c0 Byte 4 of 4 (property)\n  5,208,208,  2,208,208,  5,229, 229,229,229,  6,208,  6,208,229,\n229,  5,  6,208,208,208,208,208, 218,  6,208,  6,  2,228,  6,229,\n229,229,208,  5,208,229,208,208,   5,  6,208,208,  6,208,229,  6,\n208,208,  5,  5,229,208,208,  2, 208,229,  5,208,208,  2,  5,208,\n\n// state[910 + 2] 0x026a00 Byte 4 of 4 (property)\n  5,208,  2,  5,208,  5,208,229, 229,229,208,208,208,208,208,208,\n208,  2,208,208,208,208,229,208, 208,208,208,  6,227,208,172,208,\n208,229,  0,229,229,  6,208,229, 208,  6,  5,  6,208,208,  5,208,\n208,208,208,  6,229,229,208,208,   6,  6,208,  2,  5,208,229,208,\n\n// state[911 + 2] 0x026a40 Byte 4 of 4 (property)\n  6,  6,  5,  5,208,  6,  6,208, 208,208,208,229,229,229,208,208,\n  6,  5,  5,  5,  5,  6,  6,  6, 233,208,  2,  2,208,229,208,208,\n208,229,208,208,229,208,208,208, 208,208,208,208,208,  6,  6,  6,\n  2,208,208,  2,208,208,208,229, 208,208,208,208,208,208,  5,  6,\n\n// state[912 + 2] 0x026a80 Byte 4 of 4 (property)\n  6,  6,  2,  2,208,208,208,229, 208,208,208,208,  4,208,208,  2,\n  2,229,208,208,229,229,229,208, 208,208,229,208,208,208,  6,  6,\n  6,  6,  6,  6,208,208,  2,229,   2,208,208,208,208,229,208,  5,\n208,208,  5,  6,  6,  2,208,228, 208,  6,  6,  2,  2,229,208,208,\n\n// state[913 + 2] 0x026ac0 Byte 4 of 4 (property)\n208,  5,  5,229,208,208,208,208, 229,  6,229,208,  5,  6,229,  5,\n  5,  5,208,  6,208,208,  6,208,   2,229,  5,229,208,208,208,  6,\n  5,  6,208,208,208,208,208,  5,   5,  5,229,229,208,208,  6,229,\n208,208,  5,208,208,  6,208,208, 208,208,208,208,208,  5,  5,233,\n\n// state[914 + 2] 0x026b00 Byte 4 of 4 (property)\n208,208,208,229,208,208,229,208, 208,208,  5,  5,  5,  5,  5,  5,\n  5,  2,  6,208,208,208,208,208, 208,208,208,208,208,208,208,208,\n208,208,208,208,208,208,208,208,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,208,  2,208, 229,208,229,208,208,208,208,208,\n\n// state[915 + 2] 0x026b40 Byte 4 of 4 (property)\n208,208,208,208,208,208,208,208, 208,208,  6,208,  6,  6,  6,  6,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,208,208,  6,  6,\n  6,  6,208,  6,  6,  6,  2,  2,   5,  5,  2,  5,  5,229,208,229,\n208,229,229,208,208,208,208,208, 208,208,208,208,229,208,208,208,\n\n// state[916 + 2] 0x026b80 Byte 4 of 4 (property)\n208,208,208,208,208,208,208,208, 208,208,208,208,208,208,208,208,\n208,208,208,208,  6,  6,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,208,208,\n  6,  3,  2,  5,  2,  5,  6,229, 208,208,229,208,229,208,208,208,\n\n// state[917 + 2] 0x026bc0 Byte 4 of 4 (property)\n229,208,208,208,208,208,229,229, 208,229,208,208,208,229,208,208,\n  6,208,229,208,229,208,208,  6, 208,208,208,208,208,208,208,208,\n208,208,208,208,208,208,208,  6, 208,208,208,208,227,208,208,208,\n208,208,208,208,208,  6,  6,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[918 + 2] 0x026c00 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,229,208, 208,208,  6,208,  6,208,208,  2,\n  2,  5,  2,  2,  2,  6,  2,  5,   6,  4,208,229,229,208,208,208,\n208,208,229,208,208,208,208,208, 229,208,208,208,208,208,229,208,\n\n// state[919 + 2] 0x026c40 Byte 4 of 4 (property)\n208,208,229,208,229,208,208,208, 208,208,208,208,229,208,229,208,\n208,208,208,208,229,208,208,208, 208,208,208,208,208,  6,208,208,\n208,208,208,208,208,208,229,208, 208,208,208,208,208,208,208,208,\n208,219,208,233,208,208,208,208, 208,208,208,208,208,  6,  5,  5,\n\n// state[920 + 2] 0x026c80 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,216,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  6,208,  6,  6,208,\n208,  6,  6,  6,  6,218,208,  5,   5,  2,  2,  2,  2,  5,  2,  2,\n\n// state[921 + 2] 0x026cc0 Byte 4 of 4 (property)\n  5,229,208,208,208,208,208,208, 208,208,229,208,208,229,208,208,\n208,208,208,208,208,208,208,208, 208,227,208,208,208,228,229,208,\n229,208,208,208,208,229,208,208, 208,208,208,229,208,208,208,  6,\n208,208,208,208,208,208,208,208, 208,208,208,208,208,208,208,229,\n\n// state[922 + 2] 0x026d00 Byte 4 of 4 (property)\n208,208,208,  6,  6,208,  6,208, 208,208,208,227,208,208,208,208,\n208,208,208,208,208,208,208,208, 208,208,208,208,208,208,208,  5,\n  5,  6,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[923 + 2] 0x026d40 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,219,\n208,208,208,219,  6,  6,  3,  2,   2,  2,  2,  2,  2,  5,  5,208,\n  2,208,208,208,208,208,229,229, 208,229,229,208,208,208,208,208,\n208,208,208,208,208,208,208,208, 229,208,208,208,208,208,208,208,\n\n// state[924 + 2] 0x026d80 Byte 4 of 4 (property)\n229,208,208,  6,208,208,208,229, 208,208,208,208,208,229,208,208,\n208,208,208,208,208,208,208,208, 208,208,208,208,  6,  6,  6,  6,\n  5,  5,  0,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[925 + 2] 0x026dc0 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,208,208,208,  6,208, 208,208,208,208,  5,208,208,208,\n208,208,  6,208,  6,  6,  6,  3,   2,  2,  5,216,  2,  2,  2,  2,\n  5,208,208,208,208,208,208,208, 208,208,208,208,  5,208,  2,208,\n\n// state[926 + 2] 0x026e00 Byte 4 of 4 (property)\n208,229,229,229,208,208,208,208, 229,208,229,208,208,208,208,208,\n229,229,208,208,208,208,208,208, 208,208,208,208,208,208,208,208,\n208,208,208,229,229,  6,208,208, 208,208,208,208,208,208,229,208,\n229,208,208,208,208,208,208,208, 208,208,208,  6,  6,  6,  6,  6,\n\n// state[927 + 2] 0x026e40 Byte 4 of 4 (property)\n  4,  6,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  6,208,208,208,208,  4,  6,  6, 208,  6,208,  6,  6,  6,  5,  2,\n  2,  2,  5,  2,  2,  2,  2,216,   2,  2,  2,  2,  6,208,208,208,\n\n// state[928 + 2] 0x026e80 Byte 4 of 4 (property)\n208,208,208,  6,  5,  6,208,229, 208,229,208,229,208,208,208,208,\n208,208,208,227,229,208,229,208, 208,208,208,208,208,208,208,208,\n208,208,208,208,208,208,208,208, 208,229,208,208,208,208,208,208,\n208,208,208,208,208,208,208,229, 208,208,208,208,229,229,229,208,\n\n// state[929 + 2] 0x026ec0 Byte 4 of 4 (property)\n208,208,208,208,208,208,208,208, 208,208,208,208,208,208,  6,  6,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[930 + 2] 0x026f00 Byte 4 of 4 (property)\n  5,  5,  5,216,  5,  5,208,227,   6,  6,208,208,208,208,208,208,\n208,208,208,  6,218,208,  6,  6,   6,208,  2,  2,  2,  2,  2,  2,\n  2,208,208,  6,208,  2,  5,  6,   2,208,208,  0,208,208,229,208,\n208,208,208,229,208,208,208,208, 229,229,229,208,208,208,208,208,\n\n// state[931 + 2] 0x026f40 Byte 4 of 4 (property)\n229,208,208,208,229,229,208,229, 208,208,229,208,208,  6,208,208,\n208,208,229,229,227,208,208,229, 208,208,208,208,208,208,208,208,\n208,208,208,208,208,208,208,208, 208,208,208,208,208,  6,208,  6,\n  2,208,  6,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[932 + 2] 0x026f80 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,208,\n208,  6,208,  6,233,  6,  6,208,   6,  6,  6,208,  6,  6,  6,  5,\n  2,  5,  2,  2,  2,  2,  6,  5,   6,  6,  5,  6,208,208,229,208,\n229,208,208,229,208,229,229,208, 208,208,208,208,208,208,208,229,\n\n// state[933 + 2] 0x026fc0 Byte 4 of 4 (property)\n208,208,208,229,229,229,229,  6, 208,229,208,208,229,229,208,208,\n208,208,208,208,208,208,208,208, 208,208,219,  6,  6,  6,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  4,  4,   4,  5,  5,  5,  5,  5,  5,  5,\n\n// state[934 + 2] 0x027000 Byte 4 of 4 (property)\n  5,  5,  5,  6,208,208,208,208,   6,  6,  6,  6,  6,208,217,  2,\n  2,  2,  2,  2,  0,208,208,208, 208,208,208,208,  2,208,  2,  2,\n208,208,208,229,208,208,229,229,   0,208,208,208,  0,229,208,208,\n229,229,229,208,229,229,  6,208, 208,208,229,208,208,208,208,208,\n\n// state[935 + 2] 0x027040 Byte 4 of 4 (property)\n208,208,208,208,208,208,208,208, 208,208,208,208,208,229,  6,217,\n  6,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n229,  6,  6,  6,  2,  2,  2,  2,   2,  2,  2,  5,208,208,229,229,\n\n// state[936 + 2] 0x027080 Byte 4 of 4 (property)\n229,227,208,208,  0,229,208,219, 208,229,208,208,208,208,208,229,\n208,208,229,208,208,208,208,208, 208,208,208,208,208,208,208,208,\n  6,208,  6,208,208,208,  6,208, 208,208,  6,  6,  6,208,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[937 + 2] 0x0270c0 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5, 208,208,  6,  2,  2,  5,  5,208,\n229,208,229,208,208,208,208,208, 208,208,208,208,208,229,208,208,\n208,208,208,208,208,208,208,208, 208,229,208,208,229,  6,208,208,\n208,  6,  6,  6,  4,  2,  2,  2,   5,  5,  5,  5,  5,216,  5,  5,\n\n// state[938 + 2] 0x027100 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   2,  5,  2,  5,  5,228,208,208,\n208,208,229,229,229,208,208,208, 208,208,208,208,208,208,208,208,\n208,208,208,208,  6,  6,  5,  5,   5,  5,  5,  5,  5,  5,  5,  6,\n  6,  3,  2,  2,  2,  2,208,208, 208,228,229,208,229,229,208,208,\n\n// state[939 + 2] 0x027140 Byte 4 of 4 (property)\n208,208,208,208,208,208,208,208, 208,208,208,208,208,208,  5,  5,\n  5,  5,  5,208,  5,  2,229,208, 208,208,208,208,208,208,208,208,\n208,208,208,  6,  5,  5,  5,  5,   5,208,208,  2,  2,  2,208,208,\n208,208,208,208,  5,  5,  5,  5, 208,  6,208,208,208,208,208,  6,\n\n// state[940 + 2] 0x027180 Byte 4 of 4 (property)\n  6,  5,  6,208,  2,  5,208,229, 208,208,208,  5,219,  5,  5,208,\n229,208,208,229,208,208,208,208, 208,208,  5,  5,229,208,208,  6,\n  5,  6,  6,208,208,229,229,208, 208,208,208,208,208,  6,  6,  6,\n  6,208,  5,  5,  5,  5,  5,  6,   6,  6,208,208,229,208,208,208,\n\n// state[941 + 2] 0x0271c0 Byte 4 of 4 (property)\n  6,208,208,208,208,208,208,208, 208,  5,  5,  5,  6,208,  6,  6,\n208,208,208,229,208,  5,  6,  5, 208,  6,  6,  6,229,229,208,229,\n229,208,208,208,208,229,208,208,   5,  5,  5,  5,  5,  0,  6,  6,\n  6,208,208,  5,  5,  5,  6,  6,   6,  6,  6,208,229,208,229,208,\n\n// state[942 + 2] 0x027200 Byte 4 of 4 (property)\n208,208,  6,  5,  6,  6,208,208, 229,208,  6,208,  6,208,208,  6,\n208,229,208,208,  6,208,208,208, 208,  6,208,  5,208,229,208,229,\n208,  6,  6,216,  5,  5,  6,208, 229,208,229,229,229,208,208,208,\n208,219,  6,  6,  5,  5,  5,  5,   5,208,208,208,208,208,229,208,\n\n// state[943 + 2] 0x027240 Byte 4 of 4 (property)\n208,208,208,229,208,229,208,229, 229,208,229,208,208,208,208,208,\n208,208,  6,  6,  6,  5,  5,208, 208,  2,  2,208,208,  2,208,229,\n208,208,229,208,208,229,208,229, 208,208,208,229,208,208,208,208,\n208,  6,  6,208,208,208,208,208,   6,  6,  6,216,  5,  5,  5,  5,\n\n// state[944 + 2] 0x027000 Byte 3 of 4 (relative offsets)\n-10, -9, -8, -7, -6, -5, -4, -3,  -2, -1,  1,  2,  3,  4,  5,  6,\n  7,  8,  9, 10, 11, 12, 13, 14,  15, 16, 17, 18, 19, 20, 21, 22,\n 23, 24, 25, 26, 27, 28, 29, 30,  31, 32, 33, 34, 35, 36, 37, 38,\n 39, 40, 41, 42, 43, 44, 45, 46,  47, 48, 49, 50, 51, 52, 53, 54,\n\n// state[945 + 2] 0x027280 Byte 4 of 4 (property)\n  5,  5,  5,  5,  6,208,208,208, 208,  2,  2,216,  2,208,216,208,\n227,208,208,229,208,227,208,208, 208,208,208,208,208,208,208,208,\n208,208,208,208,208,208,208,208, 208,208,  6,208,229,208,208,208,\n208,208,208,  6,  6,  6,  5,  5,   5,  5,  5,  5,  5,  6,  6,208,\n\n// state[946 + 2] 0x0272c0 Byte 4 of 4 (property)\n  2,  2,  2,  2,  2,  2,  2,  2, 208,229,208,208,208,227,208,208,\n208,208,208,208,208,208,229,208,   0,208,  6,208,208,208,208,227,\n229,208,  6,  6,  6,  6,  0,  5,   5,  5,  5,  5,  5,  5,  5,208,\n  5,  6,  6,208,  6,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n\n// state[947 + 2] 0x027300 Byte 4 of 4 (property)\n  2,229,  2,229,229,208,229,208, 229,229,208,208,208,229,227,229,\n208,229,208,229,229,229,229,208, 208,208,208,208,208,208,  6,208,\n208,208,208,208,208,  6,208,208, 208,208,208,208,208,208,  6,  6,\n  6,  6,  6,  6,217,  5,  5,  5,   5,  5,  5,208,  6,208,  6,208,\n\n// state[948 + 2] 0x027340 Byte 4 of 4 (property)\n  6,  6,  6,  6,  6,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  5,229,208,208,208,208,208, 229,229,208,208,208,208,208,208,\n208,208,208,208,208,208,208,229, 208,208,229,208,208,229,208,208,\n208,208,208,208,227,208,208,208, 208,208,208,208,208,208,208,208,\n\n// state[949 + 2] 0x027380 Byte 4 of 4 (property)\n208,208,208,208,208,  6,  6,  6,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,208,  6,  6,208, 208,  6,  5,  2,  2,  2,208,  5,\n  2,229,229,208,229,208,229,  6, 229,229,208,208,208,208,208,208,\n208,208,208,208,227,208,208,227, 208,208,208,229,229,208,208,208,\n\n// state[950 + 2] 0x0273c0 Byte 4 of 4 (property)\n208,208,208,208,229,208,208,208, 208,208,208,208,208,208,208,208,\n208,208,208,208,208,208,  6,  6,   6,  6,  4,  4,  5,  5,  5,  5,\n  5,  5,  5,  5,208,  6,208,  6, 208,208,208,  6,208,  3,  3,  2,\n  2,  2,  2,  2,  2,  2,  2,  2, 208,229,208,208,208,208,233,229,\n\n// state[951 + 2] 0x027400 Byte 4 of 4 (property)\n208,208,208,  6,229,208,208,229, 208,208,208,229,208,208,208,208,\n228,229,208,208,229,208,  0,208, 208,229,208,208,208,208,208,208,\n  6,  6,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  6,208,208,208,\n  6,208,  6,208,208,208,208,  6,   2,  2,  2,  2,  2,  2,  2,  2,\n\n// state[952 + 2] 0x027440 Byte 4 of 4 (property)\n208,  2,  2,  2,229,  0,  0,229, 208,233,208,208,208,229,208,229,\n227,229,  0,229,208,208,208,229, 208,229,208,  6,208,208,208,208,\n208,208,208,208,208,208,208,208, 208,208,208,208,208,208,208,208,\n208,208,208,208,208,  6,  6,  6,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[953 + 2] 0x027480 Byte 4 of 4 (property)\n  6,208,229,208,  5,  2,  5,  2, 208,  2,  2,  2,  2,  2,208,208,\n208,208,208,229,208,208,229,208, 208,  6,208,208,208,208,208,208,\n  6,208,208,208,208,208,208,208, 208,208,208,  5,  6,  6,  6,  6,\n  6,  6,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,208,208,208,229,\n\n// state[954 + 2] 0x0274c0 Byte 4 of 4 (property)\n  6,  6,  6,  6,  6,  2,  2,  2,   0,208,208,208,208,  6,208,227,\n208,208,208,208,208,208,208,208, 208,208,208,208,208,208,208,208,\n  6,  5,  5,  5,  5,  5,  5,  5,   6,  6,  6,208,208,  2,  2,  2,\n  2,208,208,208,229,208,208,208, 208,229,208,229,208,208,208,208,\n\n// state[955 + 2] 0x027500 Byte 4 of 4 (property)\n208,208,208,208,208,  6,208,208, 208,  6,  6,  6,  6,  6,  5,  5,\n  5,  5,  5,  5,  5,  5,  6,  6, 208,  2,  2,  2,  2,229,229,208,\n208,208,208,208,208,208,208,208, 208,  6,208,208,208,  6,208,208,\n208,208,208,208,208,208,208,208,   6,  6,  5,  6,  6,208,  2,  2,\n\n// state[956 + 2] 0x027540 Byte 4 of 4 (property)\n  2,  5,  5,229,229,229,208,229, 229,229,208,229,208,229,208,208,\n208,208,208,  6,208,208,  5,  5,   5,  6,  2,208,208,208,229,208,\n208,208,208,208,208,208,208,208, 208,  6,  6,  6,  2,  2,208,229,\n208,208,229,208,208,208,208,208, 208,208,208,  6,208,208,208,208,\n\n// state[957 + 2] 0x027580 Byte 4 of 4 (property)\n208,  6,208,  2,208,208,208,208, 208,  6,208,208,208,208,208,  5,\n  2,208,208,208,208,208,208,208, 208,208,208,208,208,208,208,  5,\n  6,  6,  6,208,208,  6,  2,208, 208,208,208,208,208,208,  6,208,\n  2,  2,  5,208,208,229,208,208, 208,208,229,229,208,208,208,  6,\n\n// state[958 + 2] 0x0275c0 Byte 4 of 4 (property)\n208,208,208,208,208,  2,208,229, 208,208,208,208,229,  5,229,208,\n208,208,208,  6,208,229,208,228, 208,208,208,208,208,208,208,208,\n  5,208,208,208,  5,  5,208,208, 208,208,208,229,229,208,  5,  5,\n  6,229,208,229,208,208,208,194, 208,208,208,208,  6,  5,  5,229,\n\n// state[959 + 2] 0x027600 Byte 4 of 4 (property)\n208,  5,229,208,208,208,208,216, 229,208,208,229,  5,229,208,229,\n229,229,208,208,  4,  4,  5,  6,   6,208,208,  6,208,208,229,208,\n208,229,229,208,208,229,208,208, 208,208,208,208,208,208,208,208,\n208,  4,  5,  5,  5,208,208,208,   2,  5,  5,  5,  5,229,208,  6,\n\n// state[960 + 2] 0x027640 Byte 4 of 4 (property)\n208,229,208,229,208,208,208,208, 208,208,229,208,208,208,208,208,\n208,208,208,  6,  6,  5,  5,  5,   5,  5,  5,208,208,208,208,208,\n208,208,208,229,208,229,  6,208, 208,208,208,208,208,208,208,208,\n  6,  6,  5,  5,  6,208,  6,208,   6,208,  6,  2,  2,  2,229,  5,\n\n// state[961 + 2] 0x027680 Byte 4 of 4 (property)\n229,229,208,208,228,229,229,229, 208,229,208,208,208,208,208,208,\n208,229,208,  4,  5,  5,  5,  5,   5,  5,  5,208,229,208,208,  2,\n  2,208,  2,  5,229,208,208,208, 229,208,208,229,208,227,208,208,\n208,208,208,208,229,208,208,208, 208,208,208,219,208,  5,  5,  5,\n\n// state[962 + 2] 0x0276c0 Byte 4 of 4 (property)\n  5,  6,  6,208,  6,  6,  2,  2,   2,  2,  2,  2,  2,  5,  5,229,\n208,208,208,208,229,229,208,229, 208,208,229,229,229,208,  0,208,\n208,208,208,208,208,208,208,208, 208,229,208,208,208,  6,  6,  6,\n  5,  5,208,208,  6,  6,  2,  2, 229,208,208,229,208,208,229,208,\n\n// state[963 + 2] 0x027700 Byte 4 of 4 (property)\n229,229,208,208,208,208,208,229, 229,  6,208,208,  6,208,  4,  5,\n  2,  5,  5,  6,  6,229,  2,  2,   2,  2,  6,  6,  6,208,208,208,\n229,229,208,228,229,208,229,229,   6,208,  6,208,208,229,208,208,\n208,208,208,  6,  6,216,  5,  5,   5,  2,  2,  2,  6,208,  5,  5,\n\n// state[964 + 2] 0x027740 Byte 4 of 4 (property)\n  5,  5,229,208,208,208,208,208, 208,208,208,229,208,208,219,208,\n229,229,228,208,229,208,208,229, 229,229,208,208,  6,  6,208,  6,\n  6,  6,  5,208,  6,  6,  2,  2,   2,  2,229,208,208,208,208,208,\n  5,208,208,229,229,208,208,208, 208,229,208,208,208,208,208,208,\n\n// state[965 + 2] 0x027780 Byte 4 of 4 (property)\n208,208,208,  6,  5,  5,  5,  5,   5,  6,  2,  2,  5,208,208,229,\n208,  6,208,208,229,229,208,229,   6,208,219,229,208,229,208,208,\n  6,  5,208,218,218,  2,208,208, 208,229,208,208,229,208,208,208,\n208,208,208,  5,  2,  5,229,208, 229,208,208,208,208,208,  2,  2,\n\n// state[966 + 2] 0x0277c0 Byte 4 of 4 (property)\n  2,  2,208,229,  6,  6,  6,  5, 208,208,229,  6,229,208,208,208,\n208,208,208,  3,208,208,208,208, 208,229,208,208,  6,  2,208,208,\n  6,  5,  6,208,  6,  6,  5,208, 208,208,208,  5,  6,  5,  5,208,\n  6,208,208,208,208,  6,  6,  5,   5,208,  5,  5,229,208,  5,208,\n\n// state[967 + 2] 0x027800 Byte 4 of 4 (property)\n  5,  5,208,  5,208,  2,208,208,   6,208,219,208,  5,  6,229,208,\n208,208,208,208,  6,  5,  5,  5, 208,208,208,208,208,208,229,229,\n208,208,208,208,  6,  6,  6,  6, 208,208,229,229,  6,208,208,  6,\n  5,  5,  5,  5,  6,208,  6,  6,   6,  6,  6,208,229,229,208,229,\n\n// state[968 + 2] 0x027840 Byte 4 of 4 (property)\n208,  6,  6,  5,  5,208,208,  6, 208,  6,  2,229,208,208,229,229,\n208,229,208,208,  6,  5,  5,  5, 208,  6,  6,208,  6,208,  6,  6,\n208,229,208,229,229,208,229,208, 229,208,229,208,208,208,208,208,\n  5,  5,  5,  5,  6,  6,  6,208, 229,229,229,208,  6,208,208,208,\n\n// state[969 + 2] 0x027880 Byte 4 of 4 (property)\n  5,  5,229,229,229,208,208,  6,   5,  5,  5,  6,219,229,208,208,\n  6,  2,208,208,208,  5,208,  6,   5,  5,208,  6,229,229,229,  2,\n  5,  5,229,208,  5,208,229,208, 208,  6,  6,208,  6,208,208,  5,\n  6,208,229,208,208,229,  6,208, 229,229,208,229,229,208,208,208,\n\n// state[970 + 2] 0x0278c0 Byte 4 of 4 (property)\n208,229,208,229,208,  5,  5,  5, 208,208,  6,  6,  6,208,208,208,\n208,208,229,208,208,208,208,208, 208,208,229,208,208,  6,  5,  6,\n  2,208,208,229,  6,208,  6,  2, 208,229,229,208,229,208,208,208,\n208,208,  2,  2,208,229,208,229, 229,208,208,229,229,208,208,  6,\n\n// state[971 + 2] 0x027900 Byte 4 of 4 (property)\n  6,  2,  2,229,208,208,208,208, 208,208,  6,208,208,229,229,229,\n208,229,208,208,208,208,229,229, 208,  6,  6,229,208,208,208,208,\n208,208,208,208,  5,  2,208,208,   6,208,208,208,208,  2,208,208,\n  6,208,208,  6,  6,  6,208,208,   2,  2,208,208,229,229,229,208,\n\n// state[972 + 2] 0x027940 Byte 4 of 4 (property)\n208,208,208,  2,208,  6,  6,  2, 208,  6,208,  6,229,229,  6,  6,\n  3,208,  6,208,  2,208,208,208, 208,  5,208,208,208,208,  6,  6,\n  6,208,229,229,229,229,229,  5, 208,208,208,208,  6,208,229,208,\n229,229,  6,229,208,208,219,208, 208,208,229,208,229,208,229,208,\n\n// state[973 + 2] 0x027980 Byte 4 of 4 (property)\n208,208,208,  6,  6,  4,  5,  5,   5,  5,  5,  5,  5,  5,  6,208,\n  6,  6,208,  6,  2,  2,  2,208,   6,208,208,208,208,229,229,229,\n229,208,208,208,229,229,208,229, 208,208,208,208,229,229,229,208,\n  5,  5,  5,  5,  5,  5,  5,  5,   6,  6,208,208,  6,  6,208,  2,\n\n// state[974 + 2] 0x0279c0 Byte 4 of 4 (property)\n  2,208,208,  6,208,208,208,219, 208,229,208,208,229,208,208,208,\n208,208,229,229,229,229,229,229, 208,208,208,208,208,208,208,208,\n208,208,  6,  6,  5,  5,  5,208,   5,  6,208,208,  6,  6,  6,  2,\n208,208,208,208,208,229,229,229, 229,208,229,229,229,208,229,208,\n\n// state[975 + 2] 0x027a00 Byte 4 of 4 (property)\n229,208,208,229,208,208,208,208, 208,208,208,208,  6,219,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  6,   6,208,208,208,208,208,208,  6,\n208,  6,  6,208,208,  6,229,229, 208,229,229,208,229,208,208,229,\n229,229,208,208,208,229,208,208, 208,229,229,208,229,208,229,208,\n\n// state[976 + 2] 0x027a40 Byte 4 of 4 (property)\n208,  6,208,208,208,208,208,208,   6,  5,  5,  5,  5,  5,  5,  5,\n208,208,  6,208,  6,  6,208,  6, 208,  5,229,208,208,208,208,208,\n229,208,208,229,208,208,229,229, 208,208,229,208,208,208,229,229,\n  6,208,208,208,208,229,229,208, 229,229,208,229,208,229,208,208,\n\n// state[977 + 2] 0x027a80 Byte 4 of 4 (property)\n208,208,229,208,228,229,208,208,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  6,208,  6,208,208, 229,208,229,208,229,229,229,229,\n229,229,229,229,229,208,229,208, 229,208,208,229,229,208,229,208,\n208,208,208,208,208,208,208,208,   6,208,208,  6,  6,  5,  5,  5,\n\n// state[978 + 2] 0x027ac0 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  6,  6,208,  6,  6,  3,208,\n208,  6,229,229,208,229,208,229, 208,229,229,208,229,208,229,208,\n229,229,229,229,229,229,229,229, 208,208,208,208,208,208,208,208,\n208,  6,208,  6,  0,  5,  5,  6, 208,  6,208,  6,  2,208,208,229,\n\n// state[979 + 2] 0x027b00 Byte 4 of 4 (property)\n208,219,229,229,229,208,208,229, 229,229,229,229,229,208,208,229,\n208,229,208,208,  6,229,208,  5,   5,  5,  5,  5,229,208,  6,208,\n208,208,208,208,208,  5,  6,208, 229,229,229,208,208,208,229,229,\n229,208,208,229,208,208,208,  6,   5,  5,  5,  5,  5,  5,  5,208,\n\n// state[980 + 2] 0x027b40 Byte 4 of 4 (property)\n208,208,229,208,208,229,208,  6, 229,229,208,208,208,229,229,229,\n208,208,208,229,208,208,208,  6,   5,217,208,208,229,229,229,208,\n229,208,208,229,208,229,  6,208, 208,208,208,208,208,208,217,  5,\n  5,  5,  5,  6,208,  6,  6,208, 208,229,229,229,229,208,208,208,\n\n// state[981 + 2] 0x027b80 Byte 4 of 4 (property)\n  5,  5,  5,208,208,208,229,208, 229,208,208,  5,  5,  6,208,208,\n208,208,229,229,208,  5,  5,  6, 208,208,208,229,  6,208,229,208,\n  6,  6,229,208,  6,208,  6,  6, 208,208,  6,229,208,208,208,229,\n229,208,208,228,  6,229,208,208, 208,  6,208,208,208,229,  4,  6,\n\n// state[982 + 2] 0x027bc0 Byte 4 of 4 (property)\n208,208,208,  6,  2,  2,229,  4,   6,229,229,208,229,229,229,208,\n208,  6,  6,208,208,229,  6,  6, 229,208,208,208,208,  6,  6,  5,\n229,229,208,  5,  6,208,208,208,   6,229,208,229,  6,208,208,208,\n208,208,  6,208,  5,  2,  2,229, 229,208,208,208,208,208,229,229,\n\n// state[983 + 2] 0x027c00 Byte 4 of 4 (property)\n208,208,  6,208,208,208,229,208,   6,229,229,208,208,208,  6,  3,\n208,208,229,208,  5,208,  5,  2, 208,229,  6,  6,  2,  5,  5,  6,\n208,229,  6,229,  6,208,  2,233, 208,229,229,229,208,208,208,208,\n208,  6,208,  6,229,229,208,229, 208,208,208,229,229,208,  5,229,\n\n// state[984 + 2] 0x027c40 Byte 4 of 4 (property)\n208,229,229,208,208,229,208,208, 208,229,208,  6,  6,208,208,229,\n229,208,229,229,208,208,208,208, 229,208,208,208,229,229,208,208,\n208,208,208,208,  5,  5,  6,  6, 229,229,229,208,229,229,208,208,\n208,208,229,229,229,208,208,  5,   5,  6,  2,229,208,  6,229,208,\n\n// state[985 + 2] 0x027c80 Byte 4 of 4 (property)\n208,  5,229,208,208,229,229,229, 229,208,  5,208,229,229,208,208,\n229,208,208,208,208,208,  6,229, 208,  6,208,208,208,208,208,208,\n  5,208,229,  5,229,208,229,229, 229,208,208,  2,208,208,208,208,\n208,229,229,208,229,208,208,208,   4,  5,  6,  6,  2,  6,229,208,\n\n// state[986 + 2] 0x027cc0 Byte 4 of 4 (property)\n229,208,208,208,208,229,229,227,   5,208,208,208,208,208,208,229,\n208,208,208,  5,208,  6,229,  5,   2,229,208,208,229,229,208,229,\n229,208,  5,  6,  6,208,229,208, 229,208,229,229,208,208,208,229,\n  6,  5,208,208,  6,229,208,208, 208,208,229,208,208,  6,  5,  6,\n\n// state[987 + 2] 0x027d00 Byte 4 of 4 (property)\n  6,229,208,208,229,208,208,208,   6,  6,  6,  2,208,208,229,208,\n208,  6,  6,  6,208,208,208,229, 208,208,208,  6,  6,208,208,208,\n208,229,  6,208,  0,208,208,  6,   5,  6,229,208,229,208,  6,  5,\n  5,216,229,208,  6,208,208,208, 208,208,229,  5,  5,  5,  5,  5,\n\n// state[988 + 2] 0x027d40 Byte 4 of 4 (property)\n  5,  5,  5,  6,208,208,  2,208, 208,208,229,229,229,208,208,208,\n208,208,  6,  5,  5,  5,  5,  5,   5,  5,  5,  6,208,208,  6,  2,\n208,  6,  6,208,208,208,229,229, 208,208,208,229,208,229,208,208,\n208,208,208,  5,  5,  5,  5,  5,   5,  5,  5,  6,  6,208,208,208,\n\n// state[989 + 2] 0x027d80 Byte 4 of 4 (property)\n  6,  3,208,  5,227,229,229,208, 208,208,229,208,208,229,208,  5,\n  5,  5,  5,  5,  6,  6,  6,208, 217,208,208,229,229,229,229,208,\n228,208,208,208,208,  5,  5,  5,   5,  6,208,  2,  2,  2,  2,  2,\n  5,208,229,208,229,229,208,208, 229,208,229,208,  5,  5,  5,  5,\n\n// state[990 + 2] 0x027dc0 Byte 4 of 4 (property)\n  5,  5,  5,  5,208,  6,  6,208,   6,229,208,208,208,208,208,208,\n208,208,208,208,208,208,208,208,   6,  5,  5,  6,  5,  2,208,229,\n208,229,229,208,208,208,208,208, 208,208,  6,  5,  5,  5,  5,  5,\n  5,  6,208,  6,  6,208,  6,  6,   2,  2,  2,208,208,208,229,229,\n\n// state[991 + 2] 0x027e00 Byte 4 of 4 (property)\n229,229,229,229,208,208,208,208, 208,208,208,208,  5,  5,  5,  5,\n172,208,  2,  2,208,208,229,229, 229,229,208,  6,  6,  2,  5,  6,\n  5,  5,  5,  5,  5,208,229,208, 208,  6,219,208,  6,  5,  5,208,\n  2,229,229,  5,  5,  5,  5,208, 208,208,  2,  2,  5,229,208,229,\n\n// state[992 + 2] 0x027e40 Byte 4 of 4 (property)\n208,  6,  6,  5,  6,  2,208,208, 208,  5,  6,  2,  6,  5,208,  5,\n  6,  6,  6,  6,  6,  6,  6,  6, 208,208,208,229,  5,208,  0,  2,\n208,  5,  6,229,  5,  2,  2,208,   6,  6,  2,  2,229,229,  5,208,\n  2,  2,229,229,208,  5,229,208, 208,208,  6,  2,  2,208,  6,  2,\n\n// state[993 + 2] 0x027e80 Byte 4 of 4 (property)\n  2,  2,  2,  2,208,  6,229,208, 208,  5,  5,  5,  5,  5,229,229,\n208,  6,229,229,  5,  2,  5,  5,   5,  5,  5,  5,  6,229,208,208,\n229,229,229,229,208,208,208,208, 208,  5,  5,  5,  5,  5,  5,  5,\n  6,  6,208,229,  6,  5,229,208, 208,229,229,229,208,208,229,208,\n\n// state[994 + 2] 0x027ec0 Byte 4 of 4 (property)\n229,229,208,208,  5,  5,  5,  5,   5,  5,  5,  5,  5,  6,208,208,\n  2,208,208,229,208,208,229,229, 208,229,227,208,208,208,219,  5,\n  5,  5,  5,  5,  5,  5,  5,208,   6,  2,  2,208,208,  2,  5,208,\n208,229,229,208,208,229,229,219, 208,208,229,208,208,208,  6,229,\n\n// state[995 + 2] 0x027f00 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   6,208,  6,  2,  2,  2,229,229,\n208,229,229,208,229,208,208,208, 208,229,208,208,208,208,208,208,\n208,208,  5,  5,  6,208,208,  5, 229,208,229,208,208,229,208,  0,\n229,229,208,229,208,208,208,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[996 + 2] 0x027f40 Byte 4 of 4 (property)\n  6,208,208,  6,208,208,208,  2,   2,229,208,229,208,229,229,229,\n229,229,208,208,208,208,229,  5,   5,  5,  5,  5,  5,208,229,229,\n208,208,229,229,229,208,229,229, 229,208,208,208,  5,208,  6,208,\n  6,  6,  6,208,208,  6,229,229, 229,208,208,229,  0,229,208,208,\n\n// state[997 + 2] 0x027f80 Byte 4 of 4 (property)\n208,229,208,  5,  5,  5,  6,  6, 208,  6,  6,208,  2,229,229,229,\n229,208,208,208,229,208,  5,  5,   5,208,229,229,229,208,208,208,\n208,208,208,229,208,229,  5,  6, 208,208,  5,208,208,208,229,208,\n208,229,  6,  6,208,229,208,  4, 208,208,208,229,  5,  6,  6,  2,\n\n// state[998 + 2] 0x027fc0 Byte 4 of 4 (property)\n208,208,229,208,208,229,208,  6,   6,208,  6,  6,  6,208,  6,  6,\n  2,  2,229,229,229,208,208,208, 229,229,208,229,208,229,208,208,\n208,  6,  5,208,208,  6,208,  6, 218,  6,  6,218,213,  2,208,229,\n  6,  5,208,229,229,229,208,229, 208,229,  0,208,229,208,208,208,\n\n// state[999 + 2] 0x028000 Byte 4 of 4 (property)\n208,  6,  5,  5,  6,  6,208,  6,   2,  5,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,208,208,227,229,208, 229,229,229,208,229,229,208,208,\n229,208,229,208,  0,208,208,208, 229,208,208,208,208,208,229,  6,\n  2,  5,  6,  6,  6,  6,208,208,   6,  2,  2,  2,  2,  2,  2,  2,\n\n// state[1000 + 2] 0x028040 Byte 4 of 4 (property)\n208,229,208,229,229,208,229,229, 229,208,208,  0,229,  0,227,229,\n229,208,208,229,208,208,  6,  6,   2,  5,  5,  5,208,218,208,  6,\n208,218,208,208,  6,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,229,  6,208,229,229,   0,229,229,208,227,208,208,208,\n\n// state[1001 + 2] 0x028080 Byte 4 of 4 (property)\n229,208,229,229,208,208,208,208, 208,  6,  4,  5,  5,  5,  5,208,\n208,208,  6,208,  2,  2,  2,  2,   2,  2,  2,208,208,229,229,208,\n208,229,229,229,229,208,208,208, 208,208,208,208,208,229,208,229,\n229,208,229,208,229,229,208,208, 208,  6,  6,  4,  2,  5,  5,  5,\n\n// state[1002 + 2] 0x0280c0 Byte 4 of 4 (property)\n  5,  5,  6,  6,  6,  6,  6,  6,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  5,208,208,  0,208,229, 229,208,208,208,208,208,229,229,\n229,208,208,208,208,208,208,208, 208,  5,  6,  2,  5,  6,208,  6,\n218,  6,  6,208,216,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,208,\n\n// state[1003 + 2] 0x028100 Byte 4 of 4 (property)\n208,  2,  2,229,  6,229,208,229, 229,  0,227,208,208,208,208,229,\n229,227,208,229,208,229,208,208, 208,229,229,208,  6,  6,  2,  2,\n  2,  5,  5,  5,  5,  5,  5,208, 208,208,208,208,208,208,208,  6,\n  6,  6,  6,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n\n// state[1004 + 2] 0x028140 Byte 4 of 4 (property)\n  2,  2,  2,  2,  2,208,208,  2, 208,  2,229,229,208,224,208,229,\n227,208,208,208,229,208,208,229, 208,229,208,208,208,208,227,208,\n208,208,208,208,229,227,208,208, 208,208,208,  6,  6,  6,  2,  5,\n  2,208,208,  6,208,208,208,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n\n// state[1005 + 2] 0x028180 Byte 4 of 4 (property)\n  5,229,227,229,229,229,208,208, 208,208,208,208,229,229,229,227,\n208,208,  2,  2,  5,  5,  5,  5,   5,  6,208,208,208,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,208,208, 208,  6,229,208,229,229,208,229,\n229,208,208,208,208,208,  2,  2,   2,  2,  2,  5,  5,  6,218,  2,\n\n// state[1006 + 2] 0x0281c0 Byte 4 of 4 (property)\n  2,229,208,208,208,229,229,208, 229,  2,  5,  5,  5,218,  6,208,\n  6,  2,  2,  2,208,  6,229,  0, 229,208,208,  2,  2,208,  5,  6,\n  6,  6,  6,  2,229,208,208,208, 229,229,208,208,  2,208,208,229,\n208,229,208,208,208,  2,  2,  2,   2,  2,  5,208,208,208,  6,  6,\n\n// state[1007 + 2] 0x028200 Byte 4 of 4 (property)\n  6,  6,  6,208,208,208,  6,  5, 229,  6,208,208,  6,  5,  6,208,\n208,208,  2,229,208,208,  6,  6, 229,208,229,208,208,208,208,208,\n208,208,208,  6,  5,  6,  6,  6,   6,229,208,229,229,208,208,  5,\n  5,  5,  5,  6,208,208,  6,  6, 208,229,208,208,208,  5,  5,  5,\n\n// state[1008 + 2] 0x028000 Byte 3 of 4 (relative offsets)\n -9, -8, -7, -6, -5, -4, -3, -2,  -1,  1,  2,  3,  4,  5,  6,  7,\n  8,  9, 10, 11, 12, 13, 14, 15,  16, 17, 18, 19, 20, 21, 22, 23,\n 24, 25, 26, 27, 28, 29, 30, 31,  32, 33, 34, 35, 36, 37, 38, 39,\n 40, 41, 42, 43, 44, 45, 46, 47,  48, 49, 50, 51, 52, 53, 54, 55,\n\n// state[1009 + 2] 0x028240 Byte 4 of 4 (property)\n208,  6,208,208,  6,  6,  6,  6, 229,208,208,208,208,208,  5,  5,\n  5,218,  6,  2,208,208,208,208,   5,  5,  6,208,  6,  6,  2,  2,\n  2,  6,229,229,208,208,208,  5,   5,  6,  6,  6,  6,  6,229,208,\n208,208,  5,  5,  6,  6,  6,172,   6,229,208,  5,  5,  6,  6,208,\n\n// state[1010 + 2] 0x028280 Byte 4 of 4 (property)\n208,208,  4,  5,  5,  6,208,  6,   6,  6,208,  2,  2,208,208,  5,\n  5,  6,208,208,229,208,208,208, 208,  5,  6,229,  6,229,  6,  6,\n229,229,229,  5,  5,  6,  6,229,   6,  5,  5,  5,  5,  6,  6,208,\n  6,208,  5,229,208,229,208,208, 208,229,208,229,229,208,208,208,\n\n// state[1011 + 2] 0x0282c0 Byte 4 of 4 (property)\n229,  6,  6,  6,  5,  6,208,208,   6,  6,  6,  6,229,  5,229,229,\n229,229,208,208,208,229,229,229, 229,208,208,229,  5,  6,  6,  6,\n  6,  6,  0,  2,  2,  6,208,208, 208,229,208,208,229,229,208,229,\n229,208,229,  4,  5,  5,  5,  6,   6,208,  6,  6,208,  6,  6,  6,\n\n// state[1012 + 2] 0x028300 Byte 4 of 4 (property)\n  2,208,208,208,229,208,208,208, 229,208,208,208,  6,208,229,208,\n  6,  6,  6,  6,  6,  6,208,  6, 208,  5,  5,  5,  5,208,  6,208,\n208,229,229,208,229,229,208,208, 208,229,208,229,229,208,208,208,\n208,208,229,229,229,208,208,208, 208,  6,  5,  5,  5,  5,  5,  6,\n\n// state[1013 + 2] 0x028340 Byte 4 of 4 (property)\n208,208,208,208,  2,208,208,229, 229,229,229,229,229,229,208,229,\n229,208,208,208,208,  6,  5,  5,   5,  5,  5,  6,  6,  6,  6,208,\n208,  6,  6,208,  6,  5,  2,208, 208,208,208,229,208,208,208,208,\n208,208,208,229,229,  6,229,208, 229,229,  6,208,  6,  5,  6,  5,\n\n// state[1014 + 2] 0x028380 Byte 4 of 4 (property)\n  5,  5,  5,  5,208,208,  2,229, 208,229,229,229,229,208,  6,  6,\n  5,  5,  5,  5,  6,208,208,  6, 208,208,  6,  6,208,  6,  2,  2,\n  2,208,208,  6,229,208,208,229, 208,229,208,229,208,208,229,208,\n208,208,208,229,208,208,229,229, 208,229,  6,  6,  5,  6,208,219,\n\n// state[1015 + 2] 0x0283c0 Byte 4 of 4 (property)\n  6,208,  6,  3,  2,208,208,  5, 229,229,229,208,  6,  4,208,208,\n  3,208,229,208,208,208,208,  6, 208,208,  6,  6,  6,208,208,229,\n229,208,208,208,208,219,208,  2, 208,208,229,229,229,  6,  6,208,\n208,229,208,229,208,208,208,  6, 208,229,208,  6,  6,  5,208,  6,\n\n// state[1016 + 2] 0x028400 Byte 4 of 4 (property)\n  6,229,208,  6,  6,  6,  6,  6,   6,  6,  6,208,233,208,  6,208,\n208,208,  5,  6,208,208,  6,  5, 217,  5,  5,208,229,208,208,208,\n208,229,208,  6,  5,  6,  6,  6, 208,208,  5,  5,  5,  5,  2,208,\n229,229,208,  6,  6,208,208,  2,   2,208,  2,  5,208,  5,208,  2,\n\n// state[1017 + 2] 0x028440 Byte 4 of 4 (property)\n208,208,208,208,208,208,208,208,   5,208,208,208,  6,208,  6,208,\n208,229,208,229,208,172,  6,  2,   5,  5,  5,208,218,  6,208,  6,\n208,208,208,208,229,229,208,208, 208,229,208,229,208,208,  2,  5,\n  5,  5,  5,  5,  5,208,  6,208,   6,  6,  6,  2,208,208,208,208,\n\n// state[1018 + 2] 0x028480 Byte 4 of 4 (property)\n208,208,208,229,208,208,208,208, 208,208,208,208,208,208,208,208,\n  6,  6,  2,  5,  5,  5,  5,  5,   6,  6,208,229,  6,208,  6,218,\n208,  6,208,208,208,208,208,208, 208,208,208,229,208,208,208,208,\n208,  6,208,208,  6,  6,  6,  3,   2,  2,  2,  2,208,208,208,208,\n\n// state[1019 + 2] 0x0284c0 Byte 4 of 4 (property)\n208,208,208,208,208,208,  6,208, 208,208,229,208,  6,229,208,  6,\n  2,  2,  5,  5,  5,  5,208,208, 208,208,  6,208,219,208,  6,  6,\n  6,  2,  2,  6,  5,208,229,208, 208,208,  5,208,229,229,208,208,\n229,229,208,208,229,208,208,208, 208,229,208,208,  6,208,208,208,\n\n// state[1020 + 2] 0x028500 Byte 4 of 4 (property)\n208,208,  6,208,  6,208,  6,  6,   2,  2,  2,  5,  2,  2,  5,  5,\n  5,  5,  5,  5,  5,  5,208,208,   6,208,208,208,208,229,208,229,\n  6,208,229,229,208,  6,208,229, 208,208,208,208,208,208,208,208,\n208,208,208,  6,  6,219,  6,  6,   6,  6,  6,219,  5,  5,  2,  2,\n\n// state[1021 + 2] 0x028540 Byte 4 of 4 (property)\n  2,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  6,208,  6,208,\n208,208,  6,208,208,  6,229,  6,   6,  6,208,  5,208,208,208,208,\n208,208,229,208,208,208,208,208, 208,208,208,  4,  5,  2,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  6, 208,  6,  6,  6,208,208,  6,  6,\n\n// state[1022 + 2] 0x028580 Byte 4 of 4 (property)\n  6,208,  6,208,  6,  2,208,208, 229,208,229,229,208,229,208,208,\n208,  6,  6,  5,  5,  5,  5,  5,   5,  5,  6,  6,  6,208,208,208,\n208,208,  6,208,208,208,  6,  2,   2,  2,208,208,208,208,208,208,\n208,208,  2,208,208,229,229,229, 208,208,208,229,227,  6,229,208,\n\n// state[1023 + 2] 0x0285c0 Byte 4 of 4 (property)\n208,208,208,208,208,  6,  6,  6,   4,  4,  2,  5,  5,  5,  5,  5,\n208,  6,208,208,208,208,  6,208, 208,208,  3,  2,  2,  6,208,208,\n  6,208,208,208,  6,229,229,229, 208,229,229,208,208,208,227,208,\n208,  5,  6,  6,  5,  2,  5,  5,   5,  5,208,208,208,208,  6,  6,\n\n// state[1024 + 2] 0x028600 Byte 4 of 4 (property)\n  5,208,229,208,208,  5,  6,208, 208,208,208,  5,208,  5,  5,  5,\n  5,208,  6,208,  6,  6,  6,  2,   2,208,208,208,208,208,208,208,\n  5,208,208,208,  6,  5,  5,  5,   5,  5,208,208,208,208,208,  6,\n208,  2,208,  6,  6,208,  5,229, 229,208,  6,  5,208,  5,  6,208,\n\n// state[1025 + 2] 0x028640 Byte 4 of 4 (property)\n208,208,229,208,208,229,208,  5,   5,  5,  5,  6,  2,  2,208,208,\n208,208,229,229,229,208,  2,208, 208,229,208,  2,208,  2,208,208,\n208,  6,  6,208,208,  2,208,208, 208,208,  6,208,  6,208,208,208,\n208,208,229,  6,  6,208,208,208, 229,208,208,229,208,208,208,  6,\n\n// state[1026 + 2] 0x028680 Byte 4 of 4 (property)\n  6,  6,  5,  5,  5,  5,  5,  5,   6,208,208,208,  6,208,  6,208,\n  6,208,208,229,229,208,208,208, 208,208,208,  5,  5,  5,  5,  5,\n208,  6,208,  6,  6,208,  6,  6, 208,  6,  5,  5,208,208,208,208,\n208,208,229,208,208,208,208,  6,   6,  5,  5,208,208,208,  6,208,\n\n// state[1027 + 2] 0x0286c0 Byte 4 of 4 (property)\n  6,208,  6,208,208,  6,208,208, 208,208,208,208,208,229,208,208,\n208,208,208,208,229,208,208,  4,   5,  5,208,208,208,  6,208,208,\n208,208,  6,208,208,208,227,208,   5,  5,  5,208,208,208,208,208,\n208,208,  6,208,208,208,208,208, 208,  6,  4,  5,  5,  5,  5,208,\n\n// state[1028 + 2] 0x028700 Byte 4 of 4 (property)\n208,208,208,208,  6,208,208,  6, 208,  6,  5,208,208,208,208,208,\n208,208,229,208,208,208,208,208, 208,208,208,229,208,  6,  6,  5,\n  5,  5,  5,208,208,208,208,208, 208,  6,208,  6,  6,  5,  5,208,\n208,  6,  5,208,208,208,229,208, 208,208,208,208,208,208,208,208,\n\n// state[1029 + 2] 0x028740 Byte 4 of 4 (property)\n229,208,  6,  5,  5,  6,  6,208,   6,208,208,208,229,208,208,208,\n208,208,  6,208,208,208,219,208, 208,  6,  6,208,  6,208,208,208,\n208,208,208,229,  6,208,208,208, 208,  6,208,208,208,208,208,208,\n229,208,  6,208,208,208,208,208, 229,  6,  6,  6,  6,  5,  5,  5,\n\n// state[1030 + 2] 0x028780 Byte 4 of 4 (property)\n208,208,208,208,208,208,  6,208,   6,208,  6,  6,208,208,208,208,\n  6,229,208,208,208,208,208,208, 208,208,208,208,208,  6,  5,  5,\n208,208,  6,  6,  6,  6,208,208, 208,208,208,208,  6,  6,208,208,\n208,208,  6,208,  6,208,208,208, 208,208,208,208,208,208,208,208,\n\n// state[1031 + 2] 0x0287c0 Byte 4 of 4 (property)\n208,208,208,208,208,208,  6,  6,   5,  6,  6,  6,  6,208,208,208,\n208,208,  6,  6,208,208,229,208, 208,208,208,208,208,  6,208,208,\n208,  5,208,208,208,  6,208,  5, 208,  6,  6,208,208,  6,208,208,\n208,  5,229,  6,229,208,229,229, 208,208,208,208,229,229,208,208,\n\n// state[1032 + 2] 0x028800 Byte 4 of 4 (property)\n208,208,208,  6,  5,  5,208,208, 208,  2,208,208,229,208,208,208,\n229,229,229,208,208,208,229,229, 208,  6,  6,  5,  5,  5,  5,  6,\n  6,  6,208,  2,208,229,229,208,   6,  6,  6,  5,  6,  6,229,  6,\n  6,  6,  2,  2,  2,  2,229,208, 229,229,  5,  5,  5,  5,208,  6,\n\n// state[1033 + 2] 0x028840 Byte 4 of 4 (property)\n  6,208,208,  6,  6,208,  6,  6,   2,  2,  2,  5,208,208,229,229,\n229,229,  6,208,208,208,208,208, 208,  6,  5,  5,  5,208,  6,  6,\n208,  6,208,208,  6,  6,  6,  2,   2,208,208,229,208,229,208,208,\n208,229,229,208,229,208,208,208, 229,  6,  6,219,  2,  5,  5,  6,\n\n// state[1034 + 2] 0x028880 Byte 4 of 4 (property)\n208,208,  6,208,  5,208,229,227, 208,229,229,229,208,229,229,208,\n229,208,229,  6,  5,  5,  5,  6,   6,208,208,208,  6,  6,  6,  2,\n229,208,229,229,208,  0,229,208, 208,229,208,208,208,208,  6,208,\n208,  5,  5,  5,  6,208,208,  6,   6,208,208,  2,  2,208,208,229,\n\n// state[1035 + 2] 0x0288c0 Byte 4 of 4 (property)\n229,229,229,229,208,208,208,208,   6,  6,  6,  5,  6,  6,208,  6,\n208,208,  6,208,208,208,229,229, 229,229,229,229,208,229,  6,  5,\n208,208,  6,208,  2,  2,229,229, 229,208,208,  5,  6,229,229,229,\n208,229,208,208,  5,  6,208,229, 229,208,229,229,208,  5,229,208,\n\n// state[1036 + 2] 0x028900 Byte 4 of 4 (property)\n  5,208,229,  6,  6,208,  6,208,   5,208,208,  6,208,229,208,208,\n208,208,208,208,  2,208,208,208, 208,  5,208,  5,  6,208,  5,  6,\n  5,229,208,208,  6,208,208,  2, 208,208,  5,  6,  5,208,  2,  2,\n  2,  6,  6,  5,208,  2,  5,208,   5,229,208,  2,  2,  6,208,  5,\n\n// state[1037 + 2] 0x028940 Byte 4 of 4 (property)\n  5,  3,229,208,208,  6,  4,  6,   0,194,208,208,208,208,208,208,\n208,208,208,  5,  5,  5,  5,  5,   5,208,  6,  6,  6,  6,  6,  6,\n  6,  6,208,  6,208,208,208,229, 229,208,208,  4,  5,  5,  5,  5,\n  5,  5,208,208,  6,208,208,  6,   6,208,  6,208,  6,  3,  5,  2,\n\n// state[1038 + 2] 0x028980 Byte 4 of 4 (property)\n  2,  2,229,219,229,208,229,  4,   4,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  6,208,  6,   6,227,  6,  6,208,208,208,208,\n208,  6,  6,208,  3,  2,  2,  2,   5,  2,  5,  5,208,  0,208,208,\n208,208,208,208,229,219,  6,208, 208,  6,  4,  4,  5,  2,  5,  5,\n\n// state[1039 + 2] 0x0289c0 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,216,  5,   5,  5,  5,  5,  5,  5,208,208,\n  6,  6,  6,208,  6,208,208,  6,   6,208,  6,208,  5,  2,  5,  2,\n  2,  5,  2,216,  5,208,208,229, 229,229,229,208,208,208,208,208,\n208,229,208,229,208,229,208,  6,   6,  5,  5,  5,  5,  5,  5,  5,\n\n// state[1040 + 2] 0x028a00 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,216,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,208,208,   6,  6,  6,  6,  6,208,172,  6,\n218,  6,  6,  3,  2,  5,  2,  2,   2,194,  2,  2,208,  6,208,229,\n229,208,229,208,208,208,208,208, 208,208,229,208,208,208,208,  6,\n\n// state[1041 + 2] 0x028a40 Byte 4 of 4 (property)\n  6,  6,  6,  4,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,216,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n216,  5,  5,  5,  5,  6,  6,  6,   6,208,  6,  6,208,  6,  6,  6,\n  6,172,  6,  6,  6,208,  6,  6,   6,208,208,  6,208,  6,  3,  3,\n\n// state[1042 + 2] 0x028a80 Byte 4 of 4 (property)\n  2,  5,  5,  5,208,208,  5,229, 229,208,229,229,229,208,208,229,\n229,208,208,208,208,  6,208,208,   6,  4,  5,  5,  5,  2,  2,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  6,  6,  6,  6,  6,208,208,   6,  6,  6,  6,208,208,  6,  6,\n\n// state[1043 + 2] 0x028ac0 Byte 4 of 4 (property)\n208,  6,  6,  3,  2,  2,  5,  2,   2,  2,  2,216,  5,  4,  5,208,\n229,208,229,208,208,208,208,  6, 208,208,  6,  6,  6,  4,  5,  5,\n  5,  0,  5,  5,  4,  5,  5,  5,   5,  5,216,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,216,  5,  5,   5,208,  6,208,229,208,  6,  6,\n\n// state[1044 + 2] 0x028b00 Byte 4 of 4 (property)\n  6,  6,  6,208,208,208,  6,  6,   2,  2,  2,  2,  5,229,208,208,\n229,208,229,208,208,  6,208,229, 208,208,208,208,  6,229,  6,229,\n  3,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  6,\n\n// state[1045 + 2] 0x028b40 Byte 4 of 4 (property)\n  6,  6,  6,  6,208,  6,208,208,   6,208,  6,  6,  5,  2,  5,  2,\n  5,  2,  2,229,  3,229,229,229, 208,208,229,208,208,208,229,208,\n  6,  2,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  0,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   6,  6,218,  6,208,  6,208,  6,\n\n// state[1046 + 2] 0x028b80 Byte 4 of 4 (property)\n208,  6,  6,208,208,  6,  6,  2,   2,  2,  2,  2,  2,  2,  2,  5,\n  2,  2,  0,208,208,208,  6,208,   6,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  6,  6,208,  6,  6,  6,208,\n  6,  6,  6,  6,  6,  2,  2,208, 208,  0,  6,227,208,208,208,208,\n\n// state[1047 + 2] 0x028bc0 Byte 4 of 4 (property)\n  6,  4,  5,  2,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,208,  6,208,  6,  6,  5,   2,  5,  5,  2,  6,  6,229,208,\n229,208,208,208,  6,  6,  5,  5,   5,  5,  5,  5,  5,  5,  5,194,\n  5,  6,  6,  6,  6,208,  3,  2,   2,  2,208,208,208,  6,  5,  5,\n\n// state[1048 + 2] 0x028c00 Byte 4 of 4 (property)\n  5,  5,  6,208,  6,208,  6,  2,   2,229,229,208,208,208,208,229,\n208,208,208,  6,  5,  5,  5,  5,   5,  5,  5,  6,208,217,208,208,\n229,  6,  5,  5,208,  6,208,  2,   5,208,  2,  5,  5,  6,208,208,\n  5,  5,227,208,  2,  6,  5,  6, 208,  0,  2,208,  5,  5,  6,  6,\n\n// state[1049 + 2] 0x028c40 Byte 4 of 4 (property)\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n  6,  6,  6,  6,  6,  6,  6,208,   5,229,229,208,208,229,208,  5,\n  6,  6,208,  6,229,229,229,229, 208,208,  2,208,  6,  6,  6,  6,\n  6,  6,  6,229,208,229,208,208,   6,  5,208,  6,  6,  2,  2,229,\n\n// state[1050 + 2] 0x028c80 Byte 4 of 4 (property)\n229,229,208,208,  6,  2,229,229, 208,229,229,229,229,  5,  6,  6,\n  6,  6,  6,229,208,208,  2,208, 208,  6,208,208,  6,208,229,229,\n229,208,208,  6,  6,208,208,229, 208,208,  6,  6,  6,229,229,229,\n  6,  6,208,229,  5,  6,208,  2, 229,  6,208,208,208,  6,208,  6,\n\n// state[1051 + 2] 0x028cc0 Byte 4 of 4 (property)\n229,208,229,208,208,208,  6,  6,   3,229,208,208,208,  5,  5,208,\n229,229,216,  5,  6,208,208,229, 229,229,229,208,208,229,229,208,\n208,208,208,208,  6,  5,  2,  5,   5,  5,  5,  5,  5,  5,  6,  6,\n208,  2,229,229,229,229,208,229, 208,229,208,229,208,208,208,229,\n\n// state[1052 + 2] 0x028d00 Byte 4 of 4 (property)\n229,208,208,  6,  5,  5,  6,  6,   6,  6,  6,  6,  6,229,229,208,\n228,229,229,229,208,229,208,229, 208,208,  6,  6,  6,208,  6,208,\n208,  6,  6,  6,  6,208,  2,  6, 208,208,229,208,229,229,208,208,\n208,229,  6,  5,  5,  5,  5,  5, 208,  6,  6,  6,  6,  6,  6,208,\n\n// state[1053 + 2] 0x028d40 Byte 4 of 4 (property)\n208,208,  6,  6,208,229,208,  5, 208,229,229,229,229,208,219,229,\n229,208,208,208,  5,  5,  5,208,   6,  6,  6,  6,208,  6,  6,  6,\n  6,  6,217,  2,  5,229,229,229, 208,229,229,229,229,229,229,229,\n229,  4,  5,  5,  6,208,  6,208,   6,208,  6,  6,  6,  6,  6,  6,\n\n// state[1054 + 2] 0x028d80 Byte 4 of 4 (property)\n208,208,229,208,208,229,229,229, 229,229,208,208,  5,  5,  5,208,\n  6,  6,208,  6,  6,  6,208,  6,   6,208,208,  2,208,229,208,208,\n208,208,208,  5,  5,  5,  5,  5,   6,  6,  6,  6,229,208,229,229,\n229,229,229,208,208,  6,208,  5,   5,  5,  6,  6,  6,  6,208,  6,\n\n// state[1055 + 2] 0x028dc0 Byte 4 of 4 (property)\n  6,208,208,229,229,229,229,229,   2,  5,  5,  5,  5,  5,  6,  6,\n  6,  2,208,208,229,208,  6,  5,   6,208,  6,  5,  5,  5,  5,  5,\n  6,  5,  5,  5,208,  6,229,  5,   5,  6,208,208,  6,  6,  6,  2,\n229,208,229,208,  6,  6,  2,208,   5,  6,  6,228,  5,  6,  6,  6,\n\n// state[1056 + 2] 0x028e00 Byte 4 of 4 (property)\n  6,  6,  6,  6,  6,  6,  6,  6,   2,  6,  6,  6,  6,  2,  6,208,\n208,208,208,229,208,  5,208,208, 208,  6,229,208,208,229,229,  4,\n  5,  5,  5,  5,  5,  6,  6,  6,   6,208,219,229,208,229,208,208,\n229,208,208,208,  6,  5,194,  6,   5,208,  6,  6,  6,  6,  2,  6,\n\n// state[1057 + 2] 0x028e40 Byte 4 of 4 (property)\n  6,229,229,229,229,208,208,208, 229,229,208,208,208,  6,  5,  5,\n  5,  5,  6,208,  6,208,  6,  6, 208,229,208,208,229,229,208,229,\n229,208,208,208,  6,  5,  5,229,   6,  6,  6,  6,  2,  5,  5,  5,\n  5,  5,  5,  5,  6,208,208,208, 229,208,229,229,208,208,229,208,\n\n// state[1058 + 2] 0x028e80 Byte 4 of 4 (property)\n208,208,208,208,208,229,208,  6,   6,  4,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,217,  6,  6,  6,208,   6,  6,  6,  6,  6,  6,  6,208,\n229,208,208,208,208,229,229,208, 229,208,229,208,229,229,208,208,\n  6,  5,  5,  5,  5,208,  6,  6,   6,  6,  6,  6,  6,  6,  6,208,\n\n// state[1059 + 2] 0x028ec0 Byte 4 of 4 (property)\n208,208,208,208,208,208,208,208, 208,208,208,229,208,229,208,208,\n208,208,208,208,208,208,208,  6, 208,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  6,  6,  6,  6,208,208, 208,  6,208,214,  2,  6,  2,  5,\n208,208,208,229,208,229,228,208, 208,208,229,229,229,208,208,208,\n\n// state[1060 + 2] 0x028f00 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,208,  6, 208,  6,208,227,208,229,208,208,\n208,208,208,208,229,208,229,229, 208,208,  2,  5,  5,  5,  5,  5,\n  5,  6,  6,  6,  6,  6,208,  6,   6,  6,229,229,229,208,229,208,\n208,208,  4,  5,  5,  5,  5,  6,   6,  6,  6,  6,  2,208,208,208,\n\n// state[1061 + 2] 0x028f40 Byte 4 of 4 (property)\n229,208,208,208,208,  5,  5,  5,   6,  6,  6,  6,208,229,208,208,\n208,208,  5,  5,  5,  5,229,208, 208,208,  6,  6,  5,208,  6,208,\n208,208,  5,  5,  6,208,229,208, 208,  6,208,208,208,  6,208,  6,\n  6,  5,208,  5,208,208,208,  6, 229,208,  5,208,208,208,  6,229,\n\n// state[1062 + 2] 0x028f80 Byte 4 of 4 (property)\n229,208,208,208,  6,208,208,208, 229,208,229,229,  6,208,  6,229,\n  6,  5,229,208,229,229,208,208, 208,229,229,208,208,208,  6,  6,\n208,208,208,208,229,229,229,208, 208,208,208,208,  6,  6,208,208,\n  6,  6,208,208,208,229,229,208, 229,208,208,229,208,208,229,229,\n\n// state[1063 + 2] 0x028fc0 Byte 4 of 4 (property)\n208,229,208,  5,  5,  5,229,  6, 208,208,  6,229,229,229,229,208,\n229,208,208,229,229,229,208,208, 208,208,208,  6,  6,  6,208,  6,\n208,229,208,208,208,229,208,229, 208,208,229,208,208,208,208,208,\n208,229,208,208,229,229,229,  6,   4,  5,  5,  6,  6,229,  5,229,\n\n// state[1064 + 2] 0x029000 Byte 4 of 4 (property)\n208,208,208,208,208,208,208,208, 208,208,208,208,208,208,208,208,\n208,  5,  5,  5,208,208,  6,208, 208,208,208,208,229,208,208,229,\n208,229,  6,  6,208,208,208,208, 208,208,208,229,208,208,208,208,\n208,229,  6,  2,208,208,208,208, 208,208,208,208,229,208,208,208,\n\n// state[1065 + 2] 0x029040 Byte 4 of 4 (property)\n208,  5,208,  6,  6,208,208,208, 208,208,208,208,208,208,208,208,\n208,  5,208,208,208,208,208,208,   5,  5,  6,208,208,208,208,229,\n208,208,208,208,208,  6,  2,208, 208,208,  6,208,208,  5,  6,  6,\n208,  2,208,  6,  6,208,216,208,   5,208,229,208,208,  5,  5,  6,\n\n// state[1066 + 2] 0x029080 Byte 4 of 4 (property)\n  2,  2,229,229,  0,229,229,208, 229,229,  5,  5,  5,208,  6,  2,\n  2,  2,229,229,229,  0,229,229, 208,  6,  5,  5,  5,  6,  6,  2,\n  2,208,229,229,229,229,229,229, 229,208,208,  6,208,  5,  5,  5,\n  0,  5,  5,233,  6,208,  2,208, 229,229,229,229,229,229,229,208,\n\n// state[1067 + 2] 0x0290c0 Byte 4 of 4 (property)\n229,229,208,229,  6,  5,  5,  5,   5,  5,  5,  6,208,  6,  6,  6,\n208,208,229,208,229,229,229,229, 229,208,229,229,229,208,208,  6,\n229,208,  6,  5,  5,  5,  5,  5,   5,  5,  5,  5,208,208,  6,208,\n  6,  6,  6,  2,208,229,229,229, 208,229,208,  6,229,208,208,208,\n\n// state[1068 + 2] 0x029100 Byte 4 of 4 (property)\n208,217,  6,  5,208,  6,  6,  6,   6,208,  6,  6,  6,  5,  2,  2,\n216,  2,  2,  2,  2,219,208,208, 208,229,208,208,208,229,229,229,\n229,229,229,208,208,208,208,208,   2,  5,  6,208,  6,208,208,  6,\n  2,  2,  2,  2,  2,  2,  2,208, 229,  5,208,229,229,229,229,229,\n\n// state[1069 + 2] 0x029140 Byte 4 of 4 (property)\n229,229,229,208,229,229,208,208,   6,208,  5,  5,  6,208,208,208,\n208,  6,208,208,  6,  6,  6,  6,   2,  2,  2,216,  2,208,229,208,\n229,229,229,208,208,208,208,229, 229,208,208,  5,  5,  5,  6,  6,\n229,208,208,  6,  6,  6,208,208, 219,  2,  2,  2,229,229,229,229,\n\n// state[1070 + 2] 0x029180 Byte 4 of 4 (property)\n208,229,229,208,229,229,208,208, 208,208,  6,  2,  6,218,  6,  2,\n  2,229,208,229,208,208,208,208, 208,  6,208,  5,  5,  6,  6,208,\n  2,  2,  2,  6,229,208,208,  6,   5,208,  2,229,  2,229,208,208,\n208,208,208,  5,  2,229,229,  0, 208,  6,229,  6,  6,208,  2,229,\n\n// state[1071 + 2] 0x0291c0 Byte 4 of 4 (property)\n208,229,  5,  5,208,  2,  2,208, 208,  5,208,229,208,  2,208,  6,\n  6,208,208,208,208,229,  6,208,   5,  5,  5,208,229,229,208,208,\n208,  5,  2,229,  5,  6,  5,208, 208,208,208,229,  5,208,229,208,\n208,208,  5,  5,  6,208,208,  5, 208,208,208,  6,208,  6,208,208,\n\n// state[1072 + 2] 0x029000 Byte 3 of 4 (relative offsets)\n -8, -7, -6, -5, -4, -3, -2, -1,   1,  2,  3,  4,  5,  6,  7,  8,\n  9, 10, 11, 12, 13, 14, 15, 16,  17, 18, 19, 20, 21, 22, 23, 24,\n 25, 26, 27, 28, 29, 30, 31, 32,  33, 34, 35, 36, 37, 38, 39, 40,\n 41, 42, 43, 44, 45, 46, 47, 48,  49, 50, 51, 52, 53, 54, 55, 56,\n\n// state[1073 + 2] 0x029200 Byte 4 of 4 (property)\n  6,  6,  2,208,208,229,229,229, 229,229,208,  6,208,208,229,229,\n  6,208,  5,  5,  6,  6,208,  6,   2,229,229,229,229,208,  6,208,\n  5,229,229,229,208,229,229,  5, 208,  2,  2,208,229,229,208,229,\n  5,208,229,208,229,229,229,  6, 229,229,  6,229,229,208,  5,  6,\n\n// state[1074 + 2] 0x029240 Byte 4 of 4 (property)\n208,229,229,229,229,  5,  6,229, 208,208,229,208,208,208,  5,  6,\n  6,208,  6,  6,208,  6,208,  6,   6,229,229,  5,  6,208,229,208,\n  6,229,229,208,208,208,229,229, 208,208,208,229,229,  6,  5,  6,\n  6,  6,  6,  6,  6,  6,  6,  6, 229,229,229,229,208,229,229,229,\n\n// state[1075 + 2] 0x029280 Byte 4 of 4 (property)\n208,208,208,208,229,208,  6,  6, 208,208,  6,208,  6,  6,  6,  6,\n208,229,229,229,208,229,229,208, 208,229,229,229,229,229,208,208,\n  4,  6,  6,  6,  6,208,208,  6,   6,229,229,208,229,229,229,208,\n208,  4,208,208,  6,  6,  6,208, 208,208,  6,  6,208,  2,  2,208,\n\n// state[1076 + 2] 0x0292c0 Byte 4 of 4 (property)\n208,229,229,229,208,208,208,208, 229,229,229,229,229,229,208,208,\n208,208,229,208,  5,  5,  6,  6,   6,  6,  6,208,  6,208,229,229,\n229,229,229,208,229,229,208,229, 208,229,229,229,229,208,229,229,\n229,208,208,  5,  5,208,208,  6, 229,208,208,  6,208,208,208,208,\n\n// state[1077 + 2] 0x029300 Byte 4 of 4 (property)\n208,  6,  2,229,229,229,229,229, 229,208,229,229,229,229,229,229,\n208,229,208,  5,  5,  5,  5,  5,   6,  6,208,208,  6,208,  6,  6,\n208,208,208,  6,  6,  6,  0,229, 229,229,208,208,229,208,208,208,\n229,208,208,208,  6,  6,  5,  5,   6,208,208,208,  6,  6,208,208,\n\n// state[1078 + 2] 0x029340 Byte 4 of 4 (property)\n208,229,208,229,208,229,208,208,   6,208,208,208,  6,  6,208,208,\n  6,229,  5,  0,208,229,229,208, 208,229,208,208,229,208,  5,208,\n  6,  6,  2,  2,208,  0,229,229, 208,229,208,208,  6,  6,208,208,\n  6,208,229,208,208,208,  6,208, 208,208,  6,  6,  6,  6,208,229,\n\n// state[1079 + 2] 0x029380 Byte 4 of 4 (property)\n229,208,208,  6,208,208,  6,208, 208,229,208,208,208,208,208,208,\n  3,208,208,229,229,229,  6,208, 229,229,229,229,208,208,  5,  6,\n  6,208,  6,  6,208,208,229,229, 208,  5,208,208,208,208,208,208,\n208,208,208,208,  6,208,208,208, 208,208,208,229,208,229,208,  5,\n\n// state[1080 + 2] 0x0293c0 Byte 4 of 4 (property)\n  5,208,  6,208,  6,208,229,229, 208,208,208,208,  6,  6,208,208,\n208,208,229,208,208,208,208,208, 208,208,229,  5,  6,  6,208,208,\n229,229,208,229,229,208,208,  6, 208,229,229,208,208,208,208,208,\n208,208,229,  2,229,208,229,208, 208,208,229,208,  6,  6,  6,  6,\n\n// state[1081 + 2] 0x029400 Byte 4 of 4 (property)\n  6,208,208,208,208,208,  6,208,   6,208,208,208,229,208,219,229,\n  6,  6,  6,  5,208,208,208,  5, 229,208,229,208,229,  5,229,208,\n229,229,208,208,208,208,208,229, 208,  6,  5,208,208,229,208,  6,\n208,229,  5,  5,208,229,229,208,   6,208,208,208,208,  6,208,208,\n\n// state[1082 + 2] 0x029440 Byte 4 of 4 (property)\n208,208,208,208,  6,208,  5,208, 208,208,229,208,208,208,  6,  6,\n229,229,229,229,229,229,208,229, 208,208,229,208,229,208,229,229,\n208,208,229,229,229,208,229,229, 208,208,208,  5,208,  6,208,  6,\n  0,208,229,208,229,229,229,229, 229,229,229,229,229,208,229,  6,\n\n// state[1083 + 2] 0x029480 Byte 4 of 4 (property)\n208,208,208,229,208,  5,208,208, 208,208,208,  5,208,  6,  6,229,\n228,208,229,229,208,229,229,208, 208,208,208,208,208,208,208,  5,\n  5,  5,208,  6,229,  6,208,208,   6,  6,208,208,  3,208,229,208,\n229,229,208,208,229,208,208,229, 229,208,229,229,229,229,229,229,\n\n// state[1084 + 2] 0x0294c0 Byte 4 of 4 (property)\n229,208,229,208,208,208,208,  0,   5,  5,  5,  5,  5,  5,  5,  6,\n208,208,  6,208,208,208,208,  6, 208,  5,  5,  2,  2,229,229,229,\n229,208,229,208,229,229,229,229, 229,208,229,229,208,208,229,208,\n  5,  5,  5,  5,  5,  5,  5,  5, 208,  6,208,208,208,208,208,  6,\n\n// state[1085 + 2] 0x029500 Byte 4 of 4 (property)\n229,229,229,229,229,229,229,229, 229,229,208,229,208,  5,  5,  5,\n  5,  6,  6,208,208,  6,219,  6,   6,229,229,208,208,229,229,208,\n208,229,229,208,208,208,208,208, 208,208,  6,  6,  5,  5,  6,208,\n229,  6,  6,229,229,229,229,208, 229,229,208,229,208,208,  5,  5,\n\n// state[1086 + 2] 0x029540 Byte 4 of 4 (property)\n229,  6,208,  6,  6,208,227,  6,   5,229,229,229,229,229,208,229,\n229,208,208,208,208,208,208,229,   5,  5,  5,  5,  6,208,229,208,\n208,229,208,208,208,  5,208,  6,   6,208,  6,208,208,208,208,229,\n  6,229,229,229,208,229,208,  5, 208,  6,208,  6,208,  6,208,208,\n\n// state[1087 + 2] 0x029580 Byte 4 of 4 (property)\n208,208,  6,  5,208,  2,229,229,   6,  6,229,208,208,229,208,208,\n208,  6,  6,208,  6,  6,  6,  6,   6,208,229,229,208,208,  5,  5,\n  6,208,229,208,208,229,208,208, 208,229,  6,  2,229,  6,208,  6,\n208,  6,208,208,229,229,229,208, 229,229,229,208,229,208,208,  6,\n\n// state[1088 + 2] 0x0295c0 Byte 4 of 4 (property)\n  6,208,  2,  2,229,229,229,229, 208,208,229,208,  5,  5,  6,172,\n  6,  6,  6,229,229,229,229,208, 208,229,229,208,  6,208,208,  5,\n  5,  5,229,229,  6,  6,  6,  6, 208,208,229,208,229,229,208,229,\n229,229,208,229,229,229,208,229, 208,  6,  5,  5,  6,  6,  6,  6,\n\n// state[1089 + 2] 0x029600 Byte 4 of 4 (property)\n  6,229,  6,208,  2,229,208,229, 229,208,229,229,229,229,229,229,\n208,229,208,208,  5,208,208,208,   6,208,229,  6,229,229,229,229,\n208,208,  5,216,208,208,208,208,   2,  2,  2,  2,  2,229,229,208,\n229,229,208,208,  5,208,208,229, 208,208,229,229,229,229,208,208,\n\n// state[1090 + 2] 0x029640 Byte 4 of 4 (property)\n  5,208,208,208,208,208,229,  6, 229,  5,208,  2,  2,  2,208,  6,\n  6,229,229,208,208,  2,229,208,   6,208,229,229,208,208,208,  5,\n  6,208,  6,  6,208,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n  6,208,208,  2,208,  6,208,208,   6,  2,208,  2,208,229,  6,  4,\n\n// state[1091 + 2] 0x029680 Byte 4 of 4 (property)\n208,208,208,208,229,208,  5,229, 229,229,208,208,217,208,208,208,\n  6,  6,229,208,  2,208,229,208, 229,208,229,229,208,229,208,  6,\n  5,  6,  6,208,229,  6,  2,  2, 208,  0,229,229,229,229,229,229,\n208,208,229,229,229,229,208,208, 208,208,208,208,  6,  5,  6,208,\n\n// state[1092 + 2] 0x0296c0 Byte 4 of 4 (property)\n208,208,  2,  2,  2,208,208,  6,   5,208,208,229,229,208,208,208,\n208,208,208,229,  6,  6,  5,  5,   6,  6,  6,208,  2,229,208,229,\n208,229,208,208,208,208,229,208, 229,208,208,208,208,208,208,208,\n  4,  5,  6,208,  6,  6,  6,  2,   2,208,229,208,229,229,208,208,\n\n// state[1093 + 2] 0x029700 Byte 4 of 4 (property)\n229,229,229,229,208,208,229,229, 208,208,208,229,208,208,229,229,\n208,  6,208,208,208,208,208,208,   6,  4,  5,  5,  5,  5,  5,208,\n208,  6,208,  6,  6,  6,  6,  6,   6,  6,  2,  2,208,229,  6,229,\n229,229,229,208,208,229,229,229, 208,208,208,208,208,227,229,208,\n\n// state[1094 + 2] 0x029740 Byte 4 of 4 (property)\n208,208,208,219,  6,  5,  5,218,   6,208,  6,  6,  6,  6,  6,  6,\n172,  6,  6,  6,  6,  6,  6,208, 208,229,229,229,219,229,208,229,\n229,229,229,229,208,229,208,208, 229,208,  6,229,208,  6,  5,  6,\n  5,  5,  5,  6,208,208,  6,  6, 208,208,  2,  2,229,229,208,229,\n\n// state[1095 + 2] 0x029780 Byte 4 of 4 (property)\n229,229,208,229,229,208,229,208, 229,229,229,229,208,208,208,208,\n208,208,  6,  6,  6,  6,  5,  5,   6,208,208,  6,  6,  2,208,  5,\n  5,208,208,229,229,208,229,229, 208,229,208,208,229,208,208,  6,\n  6,  6,229,  6,  6,208,  6,229,   6,  6,208,  6,208,208,229,229,\n\n// state[1096 + 2] 0x0297c0 Byte 4 of 4 (property)\n229,229,227,229,229,229,208,229, 229,229,229,208,229,229,  6,  5,\n  6,  6,  6,229,229,229,208,208, 208,208,  6,208,  6,  5,  6,  6,\n  6,  2,  2,208,229,208,208,208, 229,  6,229,  6,  2,229,229,229,\n208,208,  6,  6,229,  2,229,208, 208,  6,  6,  2,  2,  6,  6,  6,\n\n// state[1097 + 2] 0x029800 Byte 4 of 4 (property)\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n229,208,  6,  2,  2,208,208,208,   2,208,208,208,229,  6,  6,  6,\n  2,  6,208,208,208,208,208,  2,   6,  2,208,208,208,  2,  6,  6,\n208,  2,229,  2,  2,  2,  6,229,   2,208,  5,229,208,  6,208,208,\n\n// state[1098 + 2] 0x029840 Byte 4 of 4 (property)\n208,  5,  5,  6,208,208,  5,  5, 208,  5,208,  2,208,208,229,  6,\n208,208,208,229,229,229,  6,  5, 208,  6,208,  5,  2,229,  5,  6,\n  6,208,  6,  6,229,208,  6,229, 208,229,208,  6,  6,  5,  5,  6,\n229,208,208,229,  6,208,  3,229, 208,208,229,229,229,208,229,208,\n\n// state[1099 + 2] 0x029880 Byte 4 of 4 (property)\n  6,  5,  5,  5,208,  6,208,  6, 208,229,  6,  3,229,229,229,208,\n208,208,208,208,229,208,229,208, 229,229,208,208,229,208,208,208,\n208,208,  6,  5,  5,  5,216,208,   6,  6,  6,  6,  2,208,229,229,\n  0,208,229,229,229,208,229,229, 229,229,229,229,229,229,229,229,\n\n// state[1100 + 2] 0x0298c0 Byte 4 of 4 (property)\n208,208,208,208,208,208,  4,  5,   5,  5,229,  6,208,208,208,  6,\n208,208,208,  6,  3,208,229,208, 229,229,208,208,208,229,208,208,\n208,208,208,229,208,  6,  6,  5,   5,  6,  5,  6,  6,229,229,229,\n229,229,229,208,229,208,229,229, 229,229,229,229,229,208,208,208,\n\n// state[1101 + 2] 0x029900 Byte 4 of 4 (property)\n208,208,  6,  0,  5,  5,  5,  5,   6,208,  6,  6,  6,  6,  6,208,\n208,  6,208,208,  3,  2,208,208, 229,229,229,229,229,208,229,229,\n229,229,229,229,208,229,229,208, 208,229,208,208,229,208,  5,  5,\n  5,  5,  6,208,  6,  6,  6,  5,   6,  6,  6,208,  6,229,208,229,\n\n// state[1102 + 2] 0x029940 Byte 4 of 4 (property)\n229,229,208,229,229,229,229,229, 229,208,229,208,229,208,229,229,\n229,229,229,208,229,  6,208,208, 208,  6,  5,  5,  5,  5,208,  6,\n  6,  6,208,  6,208,  6,  6,  6,   6,  3,  5,229,229,229,229,229,\n208,229,208,208,208,  6,  6,  6,   6,  6,  5,  5,  6,  6,  6,  6,\n\n// state[1103 + 2] 0x029980 Byte 4 of 4 (property)\n208,229,229,229,229,229,208,229, 208,208,229,208,229,208,229,229,\n208,208,  6,  2,  5,  5,  5,  5,   6,208,  6,208,208,  5,208,208,\n208,229,  0,208,229,229,208,208, 208,  6,  6,  6,  5,  5,  6,  6,\n  6,  6,  6,208,  6,  6,208,208, 229,229,229,229,208,208,208,  5,\n\n// state[1104 + 2] 0x0299c0 Byte 4 of 4 (property)\n229,  6,229,208,229,229,229,208, 208,229,229,208,  6,  2,208,229,\n229,  6,  6,  6,208,208,208,  6, 229,208,208,208,  6,  6,  6,  6,\n  5,208,208,208,208,208,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n\n// state[1105 + 2] 0x029a00 Byte 4 of 4 (property)\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n  6,229,208,  6,219,208,208,208,   0,  6,  6,208,  0,208,208,208,\n229,229,208,208,208,  6,  5,  5, 208,  6,  6,  6,229,229,208,208,\n229,208,208,229,229,208,208,208, 208,  6,208,  6,  2,229,229,208,\n\n// state[1106 + 2] 0x029a40 Byte 4 of 4 (property)\n208,208,208,208,  6,  6,208,  2,   6,229,208,229,229,229,208,208,\n  6,  6,  6,208,  6,208,  2,208, 208,208,229,229,208,229,229,229,\n229,229,229,229,  6,  6,208,  6,   6,  2,  2,  2,  2,208,229,229,\n208,208,228,229,229,229,208,  6, 208,208,  6,  6,  6,229,208,  2,\n\n// state[1107 + 2] 0x029a80 Byte 4 of 4 (property)\n229,229,229,208,208,229,208,  6,   6,229,229,229,229,229,229,208,\n229,208,208,  5,  5,208,  6,229, 229,208,208,229,229,  6,  2,  6,\n229,208,229,229,229,229,229,229, 208,208,208,  5,  6,229,229,  6,\n  6,  6,229,208,  6,  2,  5,229, 229,208,  6,208,229,  2,229,208,\n\n// state[1108 + 2] 0x029ac0 Byte 4 of 4 (property)\n208,229,229,208,  5,  5,  5,  6,   6,208,208,  5,  5,  6,208,208,\n  5,  5,  6,  6,  6,229,  6,  5,   5,  5,208,  2,  5,  5,208,  5,\n229,  5,  5,  5,  5,229,227,208, 208,208,  5,208,  5,208,  5,208,\n208,208,  6,208,208,  6,  6,208,   6,208,229,  6,217,208,  6,229,\n\n// state[1109 + 2] 0x029b00 Byte 4 of 4 (property)\n229,208,  6,208,  5,  5,218,  6,   6,208,208,208,  6,  6,  5,229,\n229,  0,208,208,229,208,229,229, 208,229,229,229,208,229,208,229,\n229,208,208,  6,  6,  6,  5,  5,   5,  5,  2,  6,  6,  6,  6,  6,\n229,229,208,229,208,229,208,229, 229,229,229,217,208,229,  6,  5,\n\n// state[1110 + 2] 0x029b40 Byte 4 of 4 (property)\n  5,  5,  5,208,  6,  6,  2,229, 208,208,229,229,229,208,229,229,\n229,229,229,208,  6,  5,  5,  5, 208,  6,208,  6,  2,208,208,208,\n229,208,208,208,229,229,208,229, 208,229,208,208,  6,  5,  5,  6,\n  6,  6,  6,  6,  6,  2,  2,208,   5,  5,229,208,208,229,229,229,\n\n// state[1111 + 2] 0x029b80 Byte 4 of 4 (property)\n229,208,208,208,229,229,208,208, 229,208,  6,  5,  5,  5,  6,  6,\n  6,  6,  6,  6,  2,  2,229,208, 229,229,229,229,229,229,229,208,\n229,208,208,208,  6,  6,  5,  5,   5,  5,  6,  6,  6,  2,208,229,\n229,229,208,229,229,229,229,229, 229,229,208,  6,  5,208,208,  2,\n\n// state[1112 + 2] 0x029bc0 Byte 4 of 4 (property)\n  2,  2,  2,229,229,208,229,229, 229,229,229,229,229,229,208,229,\n208,229,  6,  6,  5,  5,  5,  6,   6,  6,  6,229,229,208,208,208,\n208,  6,  6,  6,208,  5,229,208, 229,208,  6,  6,  6,  5,  2,  2,\n208,208,229,229,  5,  5,  6,  6, 208,  2,229,208,  6,  6,  6,208,\n\n// state[1113 + 2] 0x029c00 Byte 4 of 4 (property)\n  6,229,229,229,  5,208,208,208,   2,  5,208,208,  5,229,229,208,\n208,208,208,229,229,208,229,229,   6,208,  6,  6,208,229,229,229,\n208,229,229,208,229,229,  5,208, 208,  5,229,229,208,208,208,208,\n  6,229,229,229,208,208,229,208,   6,229,  6,  6,208,  6,229,208,\n\n// state[1114 + 2] 0x029c40 Byte 4 of 4 (property)\n208,208,  6,208,208,208,  6,229, 208,208,208,208,208,229,208,229,\n208,  5,  5,208,208,  6,208,208, 229,208,229,208,229,208,  6,208,\n208,208,208,208,208,208,208,229, 208,208,  6,208,208,208,  6,208,\n208,208,229,208,208,208,  6,208, 208,208,  5,218,  6,208,229,208,\n\n// state[1115 + 2] 0x029c80 Byte 4 of 4 (property)\n208,208,208,229,208,208,  5,  5, 208,  6,208,208,208,208,208,229,\n208,208,  6,  6,208,  5,  5,  5, 208,208,208,208,208,208,208,  6,\n  6,227,229,229,  6,227,229,208, 208,229,229,229,229,  5,  5,  5,\n  5,  6,  6,208,  6,  6,208,  6,   6,208,  6,208,208,208,208,208,\n\n// state[1116 + 2] 0x029cc0 Byte 4 of 4 (property)\n208,229,208,  6,  5,208,208,208, 208,208,  2,208,229,208,229,229,\n229,208,229,229,229,229,208,  6,   5,  5,  5,  5,  5,208,  6,208,\n208,208,229,229,229,208,208,208, 208,208,208,  6,  5,208,208,208,\n208,208,208,  2,  2,229,229,208, 208,208,208,  6,  5,  5,  5,  5,\n\n// state[1117 + 2] 0x029d00 Byte 4 of 4 (property)\n208,  6,  6,229,  6,  2,208,208, 208,208,208,208,  6,208,208,  5,\n229,229,229,229,208,208,  5,  6, 208,208,  2,208,208,229,229,229,\n208,208,208,229,229,  6,  5,  6, 208,208,208,  5,  2,208,229,  5,\n  5,229,208,229,208,  6,208,208, 208,  6,229,229,  6,  5,  5,208,\n\n// state[1118 + 2] 0x029d40 Byte 4 of 4 (property)\n229,229,229,  2,229,208,  6,208, 208,219,  5,233,208,208,229,208,\n208,208,  6,208,208,208,229,208,   5,  5,208,208,  2,  2,  2,  3,\n229,208,229,229,208,208,208,208, 229,229,208,229,229,229,229,208,\n208,229,  6,  5,  5,  5,229,208, 208,208,  6,  6,  5,  2,  2,  2,\n\n// state[1119 + 2] 0x029d80 Byte 4 of 4 (property)\n208,229,208,208,229,229,229,229, 208,208,208,208,208,208,229,  6,\n  6,  5,  5,  5,  5,  5,208,  6, 208,  6,208,208,  6,  2,208,  2,\n  5,  6,208,229,208,229,208,208, 208,208,227,208,229,229,208,229,\n208,229,  6,  6,  6,  6,  5,  5,   5,  5,  5,  5,  5,208,  6,208,\n\n// state[1120 + 2] 0x029dc0 Byte 4 of 4 (property)\n  6,  6,208,208,  6,  6,  2,  2,   2,  2,  2,208,208,229,229,208,\n208,229,229,208,208,  0,208,229, 229,208,208,214,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,219,   6,  6,  6,  6,229,  6,208,  6,\n  6,  6,  3,  2,208,208,227,208, 208,229,229,208,208,208,208,208,\n\n// state[1121 + 2] 0x029e00 Byte 4 of 4 (property)\n229,229,229,208,  0,229,229,208, 208,208,208,229,208,208,208,208,\n208,  6,  5,  6,  6,  4,219,  5, 216,  5,  5,  5,  5,  6,  6,208,\n208,  6,208,  6,  6,208,  6,208, 208,  6,  6,  6,  6,  5,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,208,  5,  6,  5,  4,229,229,\n\n// state[1122 + 2] 0x029e40 Byte 4 of 4 (property)\n208,208,229,208,208,208,208,208, 208,228,208,208,229,208,208,208,\n229,208,208,  6,  6,  6,  5,  5,   5,  5,  5,  5,  5,  6,208,  6,\n  6,  6,208,  6,224,  6,  6,  6,   5,  2,  2,  2,  2,  2,  2,  2,\n  2,229,229,208,208,229,229,229, 208,227,208,229,208,208,229,229,\n\n// state[1123 + 2] 0x029e80 Byte 4 of 4 (property)\n229,208,208,208,208,208,208,  6,   6,  6,  4,  2,  2,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  6,   6,208,208,208,208,  6,  6,  6,\n  6,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,208,  5,229,208,227,\n229,  0,229,208,208,229,208,229, 208,208,227,208,208,208,208,  6,\n\n// state[1124 + 2] 0x029ec0 Byte 4 of 4 (property)\n  6,  6,  6,  5,  4,  5,  5,  5,   5,208,208,208,  6,208,  6,  3,\n  2,  2,  2,  2,  2,  2,208,  6, 208,208,208,  0,229,229,208,227,\n229,208,208,229,229,229,208,229, 208,  4,  5,  5,  6,  6,  6,  6,\n  6,  6,208,  6,208,208,208,  6, 208,  2,  2,  2,  6,  6,  6,  6,\n\n// state[1125 + 2] 0x029f00 Byte 4 of 4 (property)\n  2,  2,208,208,208,229,208,208,   0,208,208,208,208,208,208,  6,\n208,208,208,  6,  6,  6,  5,  5, 208,  6,  6,  6,208,229,208,208,\n229,208,  2,  5,  2,208,229,229, 227,208,208,208,208,208,208,  6,\n  5,  5,  5,  5,208,208,  6,  2,   2,  6,  6,208,208,208,208,208,\n\n// state[1126 + 2] 0x029f40 Byte 4 of 4 (property)\n208,208,  5,  5,  5,  6,  6,  6, 208,  2,  2,  2,208,208,208,208,\n229,  5,  6,208,  6,208,  2,  2, 208,  6,208,208,208,208,208,208,\n208,208,  6,208,  2,  2,  5,208, 208,208,208,208,208,  5,  5,  6,\n208,208,  6,229,  6,229,208,229,   2,  6,  6,  6,  6,  6,  6,  6,\n\n// state[1127 + 2] 0x029f80 Byte 4 of 4 (property)\n  5,  6,  6,  6,  6,  6,  6,  6,   6,  5,  6,  6,  6,  5,  6,208,\n  5,208,229,208,208,229,208,229, 229,208,  6,208,208,208,229,229,\n208,208,208,208,208,229,208,208,   6,  5,  5,  5,208,  6,  6,  6,\n227,208,208,229,208,208,208,227, 208,208,208,208,229,229,208,208,\n\n// state[1128 + 2] 0x029fc0 Byte 4 of 4 (property)\n229,208,229,208,229,229,208,229, 229,208,208,208,208,  6,  4,  5,\n208,208,208,208,208,208,208,208,   2,  2,  2,208,208,208,208,208,\n227,208,229,229,229,208,208,208, 227,208,229,208,229,208,208,  6,\n  6,  5,  5,  5,  5,  5,  5,208, 208,  6,  6,  6,208,  6,  6,  6,\n\n// state[1129 + 2] 0x02a000 Byte 4 of 4 (property)\n208,208,  6,  6,  2,  2,  2,208, 229,229,208,208,229,208,  2,208,\n218,  5,228,229,208,229,208,229, 208,208,  0,229,  6,229,229,229,\n229,208,229,208,208,229,229,229, 208,208,208,208,208,208,  6,  4,\n  5,  5,  5,  5,  5,  5,  5,  5, 208,  6,208,  6,208,208,  6,208,\n\n// state[1130 + 2] 0x02a040 Byte 4 of 4 (property)\n208,  6,  2,  2,  2,  2,  2,  2, 208,229,229,208,208,208,227,229,\n229,229,229,208,229,229,208,229, 229,208,229,208,229,208,229,229,\n208,208,208,229,208,208,208,229, 208,208,229,  5,  5,208,208,  6,\n208,  6,208,  2,  2,  2,  2,229, 208,208,  6,229,208,229,208,229,\n\n// state[1131 + 2] 0x02a080 Byte 4 of 4 (property)\n208,208,233,208,208,229,229,208, 229,208,208,229,208,229,229,208,\n208,208,  6,208,208,229,  6,  5,   5,  5,208,208,  6,208,208,208,\n218,208,  6,208,  6,208,  6,  6,   6,  6,208,  6,  6,208,  2,  2,\n  2,  2,  2,  2,229,208,208,208, 208,208,208,208,208,208,229,208,\n\n// state[1132 + 2] 0x02a0c0 Byte 4 of 4 (property)\n208,229,229,229,208,208,208,208, 229,229,229,229,208,229,208,  0,\n229,229,208,229,208,208,208,208, 208,218,208,208,208,208,  6,  6,\n  5,  5,  5,  6,229,  6,208,208,   6,208,208,  6,  6,208,  6,208,\n  6,  2,  2,  5,  2,  2,229,  6,   5,233,229,208,229,208,229,208,\n\n// state[1133 + 2] 0x02a100 Byte 4 of 4 (property)\n229,229,208,229,208,  0,208,208,   6,229,229,229,  0,208,208,208,\n208,208,  5,  5,  5,  6,  6,208, 208,  6,  6,208,208,  6,227,  6,\n208,  6,  6,  5,  2,  2,  2,  2,   2,208,208,208,  5,229,208,208,\n208,229,229,229,229,208,229,229,   0,208,  0,229,229,208,208,229,\n\n// state[1134 + 2] 0x02a140 Byte 4 of 4 (property)\n208,208,229,229,229,208,208,208, 229,208,208,208,208,208,208,  6,\n  5,  5,  5,  5,  5,  5,229,  6,   6,  6,229,  6,208,  6,  6,229,\n  6,229,  6,  3,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,229,208,\n229,208,229,229,  0,229,229,208, 208,208,229,208,229,208,229,229,\n\n// state[1135 + 2] 0x02a180 Byte 4 of 4 (property)\n229,229,  0,229,208,208,229,208, 208,229,208,208,208,208,  6,  6,\n  4,  5,  5,  5,  5,  5,208,229,   6,  6,208,  6,  6,208,  6,  6,\n  6,208,  6,  2,  2,  2,  2,  2, 208,229,208,208,  5,208,208,229,\n229,229,229,229,208,208,208,229, 208,208,208,229,  0,229,208,208,\n\n// state[1136 + 2] 0x02a000 Byte 3 of 4 (relative offsets)\n -7, -6, -5, -4, -3, -2, -1,  1,   2,  3,  4,  5,  6,  7,  8,  9,\n 10, 11, 12, 13, 14, 15, 16, 17,  18, 19, 20, 21, 22, 22, 22, 22,\n 22, 22, 22, 22, 22, 22, 22, 22,  22, 22, 22, 22, 22, 22, 22, 22,\n 22, 22, 22, 22, 22, 22, 22, 22,  22, 22, 22, 22, 22, 22, 22, 22,\n\n// state[1137 + 2] 0x02a1c0 Byte 4 of 4 (property)\n  6,208,208,  5,208,  6,229,  6,   6,208,229,  2,  2,  2,  2,  2,\n  2,208,208,229,229,229,229,208, 229,  6,208,  6,208,208,  6,  5,\n208,229,  6,  6,  6,  6,  6,  6,   2,  2,  2,  2,229,229,208,229,\n229,229,229,229,  0,229,208,208, 208,229,208,  5,208,  6,  6,208,\n\n// state[1138 + 2] 0x02a200 Byte 4 of 4 (property)\n  6,208,  6,208,208,208,208,208,   6,208,208,208,208,208,  5,  6,\n208,  6,208,208,  6,  6,  6,  6, 208,208,208,208,208,208,208,208,\n  5,  6,208,  6,208,208,208,208, 208,208,208,208,  6,219,208,208,\n208,229,  5,208,208,208,  6,208, 208,208,208,208,208,  5,  2,229,\n\n// state[1139 + 2] 0x02a240 Byte 4 of 4 (property)\n208,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n  6,  6,  6,  6,  6,  6,208,208, 229,208,208,208,229,208,208,208,\n  5,208,  6,229,208,  2,229,229, 229,228,  6,  6,  6,208,229,229,\n208,208,208,208,  2,229,229,208, 208,219,208,  6,208,  2,  2,229,\n\n// state[1140 + 2] 0x02a280 Byte 4 of 4 (property)\n208,208,208,208,229,  2,229,229, 208,208,  6,208,  5,229,  5,208,\n208,229,  6,208,229,229,208,229, 208,208,  6,208,229,  6,  5,  5,\n  5,  5,  6,  6,  6,229,229,229, 229,  6,208,208,208,208,  6,208,\n  6,208,  5,208,229,208,229,208, 229,208,229,208,  5,  5,  5,  5,\n\n// state[1141 + 2] 0x02a2c0 Byte 4 of 4 (property)\n  6,  6,  6,208,229,208,229,229, 229,229,  6,208,  6,208,208,229,\n208,208,  5,  6,229,208,208,229, 229,208,208,  5,229,229,217,  5,\n  6,229,208,208,  6,208,  6,208,   6,  6,229,208,208,  5,229,  0,\n229,  6,208,208,  5,  6,  6,208, 208,219,208,208,208,208,208,  5,\n\n// state[1142 + 2] 0x02a300 Byte 4 of 4 (property)\n  6,229,229,208,  6,208,208,229, 229,229,229,208,208,208,208,  6,\n229,208,208,  6,208,208,208,208, 208,  6,208,208,  5,  5,  6,  6,\n208,  6,208,229,208,208,  5,  6, 208,  6,  6,  6,208,229,229,208,\n229,229,208,229,  5,  6,  6,  6, 208,  6,  6,208,208,208,208,208,\n\n// state[1143 + 2] 0x02a340 Byte 4 of 4 (property)\n208,229,208,208,229,229,208,208,   6,208,  3,208,229,208,208,229,\n208,208,208,208,208,  5,  5,  6, 208,  6,208,229,208,229,208,208,\n208,208,  5,229,229,208,229,208, 208,208,208,229,208,208,208,208,\n208,  6,229,229,229,208,229,  6, 229,229,208,229,208,208,208,229,\n\n// state[1144 + 2] 0x02a380 Byte 4 of 4 (property)\n208,208,208,229,208,  6,208,208,   6,  6,  6,  6,  4,  5,  5,  5,\n  5,  6,208,229,208,229,208,208,   6,  6,208,229,208,229,208,  5,\n208,229,  5,208,208,208,208,208, 208,  5,208,208,208,229,208,208,\n208,  6,208,  5,208,229,229,  6,   6,208,208,208,  6,229,229,  6,\n\n// state[1145 + 2] 0x02a3c0 Byte 4 of 4 (property)\n  6,208,208,  5,  5,  6,229,229, 229,229,208,208,208,208,  5,  6,\n  6,208,  6,229,229,208,208,  6, 208,229,229,208,208,208,208,  6,\n  6,208,  6,  6,229,208,229,208, 208,  6,  6,  6,208,  5,229,208,\n208,208,229,229,229,  6,208,208, 229,208,229,229,208,  5,  5,229,\n\n// state[1146 + 2] 0x02a400 Byte 4 of 4 (property)\n229,  6,208,229,229,  6,  6,229, 208,229,  5,229,208,229,229,229,\n  6,208,208,208,229,  5,229,208, 229,208,  6,208,208,229,229,229,\n208,208,  2,  6,229,229,229,229, 229,  6,208,208,  6,  6,  6,  6,\n  6,  6,229,208,229,  6,  6,  4,   5,208,  6,  6,  6,  6,  2,229,\n\n// state[1147 + 2] 0x02a440 Byte 4 of 4 (property)\n229,208,229,208,229,  6,  6,  6, 229,229,229,229,229,208,208,  6,\n  6,  2,229,229,208,229,229,229, 208,229,229,208,229,229,208,  6,\n  6,  5,  6,208,  6,208,229,229, 229,229,229,208,229,229,229,208,\n229,229,229,229,208,  6,  6,208,   6,  6,  6,  6,  6,  6,208,229,\n\n// state[1148 + 2] 0x02a480 Byte 4 of 4 (property)\n229,208,208,208,229,208,  6,  6, 208,  6,  6,208,208,  6,  6,229,\n208,229,229,229,229,208,208,  2, 229,229,208,229,229,229,208,229,\n229,229,229,229,  6,  6,  6,208,   6,229,229,229,229,229,229,229,\n208,  6,  6,  2,229,208,  6,  2,   5,229,208,229,  6,  2,208,229,\n\n// state[1149 + 2] 0x02a4c0 Byte 4 of 4 (property)\n229,208,  6,229,229,  6,208,  2,   2,208,229,229,229,  6,229,  5,\n229,208,208,208,229,208,208,  5, 208,  6,208,229,229,208,208,  0,\n  3,208,208,  6,208,208,  6,208, 208,208,  2,  2,229,208,229,208,\n229,208,208,  5,208,208,208,208, 208,229,  6,208,208,208,208,208,\n\n// state[1150 + 2] 0x02a500 Byte 4 of 4 (property)\n208,208,208,219,229,208,229,  6, 208,  6,208,229,219,229,208,208,\n208,208,  5,  6,229,208,229,208, 208,  6,  2,208,229,208,  6,  6,\n  2,  2,208,229,208,208,208,208, 208,208,208,208,208,  6,208,208,\n208,208,  6,229,  6,208,208,229, 208,  6,208,208,229,208,208,208,\n\n// state[1151 + 2] 0x02a540 Byte 4 of 4 (property)\n208,208,208,208,208,  6,208,  6, 208,208,208,229,229,229,208,208,\n  6,208,208,208,208,  6,  6,208, 208,208,229,229,229,208,229,208,\n  6,208,  6,  6,208,  6,  6,208, 208,208,208,229,208,229,229,229,\n  6,208,  6,  6,  6,208,229,229, 229,208,208,  5,  6,208,208,208,\n\n// state[1152 + 2] 0x02a580 Byte 4 of 4 (property)\n229,208,229,208,  6,208,208,229, 229,  6,  6,229,208,208,229,208,\n229,208,208,208,208,229,208,229, 208,  6,229,229,  6,  6,  6,  6,\n  2,229,229,229,208,208,208,208, 208,208,229,  2,  2,  2,208,208,\n208,  6,  6,229,  5,208,229,229,   6,  6,  2,208,229,208,208,  6,\n\n// state[1153 + 2] 0x02a5c0 Byte 4 of 4 (property)\n  2,229,229,  6,  5,208,229,208,   6,229,208,229,208,208,  5,229,\n208,208,208,  6,229,208,  6,  6, 208,229,  5,229,229,208,208,208,\n208,208,208,208,208,208,229,229, 229,208,229,229,229,229,  6,208,\n  6,  4,  5,  6,  6,208,229,229, 208,208,208,229,208,208,229,208,\n\n// state[1154 + 2] 0x02a600 Byte 4 of 4 (property)\n229,208,  4,  6,208,208,  6,  6,   6,  6,208,208,  2,229,208,208,\n229,229,229,229,208,229,208,229, 208,  6,  4,208,208,  6,  6,208,\n208,208,208,  6,208,229,208,208, 229,229,229,  6,229,208,208,  6,\n208,  6,229,  6,208,  2,208,208, 208,229,208,229,229,208,229,208,\n\n// state[1155 + 2] 0x02a640 Byte 4 of 4 (property)\n229,208,208,208,  6,  6,208,208, 208,208,229,208,229,229,229,229,\n208,208,208,208,  6,  6,208,208, 208,208,208,229,208,229,229,229,\n  6,  6,  6,229,229,208,229,229, 219,208,208,  6,208,  6,208,  6,\n229,  6,208,229,208,208,208,229, 208,208,  6,208,208,229,  6,208,\n\n// state[1156 + 2] 0x02a680 Byte 4 of 4 (property)\n  5,208,208,208,208,  6,208,  6, 208,208,  6,208,208,208,208,  6,\n  6,208,208,208,  6,208,208,208, 208,208,  2,  5,208,229,208,208,\n208,  6,  6,  6,  2,231,208,208, 208,  5,  6,208,208,208,229,208,\n229,229,  4,  5,  5,208,229,229, 208,208,208,229,208,208,208,208,\n\n// state[1157 + 2] 0x02a6c0 Byte 4 of 4 (property)\n229,208,208,229,208,  2,  5,  2, 208,  5,229,208,  6,208,229,208,\n208,208,229,208,208,208,208,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[1158 + 2] 0x000080 Byte 2 of 2 (property)\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[1159 + 2] 0x000080 Byte 2 of 2 (property)\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[1160 + 2] 0x02f800 Byte 4 of 4 (property)\n  5,  5,  5,  5,217,217,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,217,  5,217,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[1161 + 2] 0x02f840 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,217,  5,  5,217,\n  5,  5,217,  5,  5,217,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[1162 + 2] 0x02f880 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,217,   5,  5,  5,217,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,217,  5,  5,  5,  5,  5,  5,\n217,  5,  5,  5,  5,  5,217,217,   5,  5,  5,  5,  5,217,  5,  5,\n  5,217,  5,  5,217,  5,  5,217,   5,  5,217,  5,  5,  5,  5,  5,\n\n// state[1163 + 2] 0x02f8c0 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n217,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n217,217,217,  5,  5,217,217,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,217,  5,\n\n// state[1164 + 2] 0x02f900 Byte 4 of 4 (property)\n217,217,  5,  5,  5,  5,  5,217,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,217,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,217,  5,  5,  5,217,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,217,  5, 217,  5,  5,  5,  5,  5,  5,  5,\n\n// state[1165 + 2] 0x02f940 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,217,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,217,  5,  5,  5,  5,  5,217,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,217,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[1166 + 2] 0x02f980 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,217,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5, 217,  5,217,  5,  5,  5,  5,  5,\n\n// state[1167 + 2] 0x02f9c0 Byte 4 of 4 (property)\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,217,  5,  5,  5,  5,   5,  5,  5,217,217,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5, 217,  5,217,  5,  5,  5,217,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n\n// state[1168 + 2] 0x02f000 Byte 3 of 4 (relative offsets)\n -9, -9, -9, -9, -9, -9, -9, -9,  -9, -9, -9, -9, -9, -9, -9, -9,\n -9, -9, -9, -9, -9, -9, -9, -9,  -9, -9, -9, -9, -9, -9, -9, -9,\n -8, -7, -6, -5, -4, -3, -2, -1,   1, -9, -9, -9, -9, -9, -9, -9,\n -9, -9, -9, -9, -9, -9, -9, -9,  -9, -9, -9, -9, -9, -9, -9, -9,\n\n// state[1169 + 2] 0x02fa00 Byte 4 of 4 (property)\n217,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,217,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,217,  5,  5,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n};\n\n// Remap base[0] = (del, add, string_offset)\nstatic const RemapEntry compact_lang_det_generated_ctjkvz_b1_remap_base[] = {\n{0,0,0} };\n\n// Remap string[0]\nstatic const unsigned char compact_lang_det_generated_ctjkvz_b1_remap_string[] = {\n0 };\n\nextern const UTF8PropObj compact_lang_det_generated_ctjkvz_b1_obj = {\n  compact_lang_det_generated_ctjkvz_b1_STATE0,\n  compact_lang_det_generated_ctjkvz_b1_STATE0_SIZE,\n  compact_lang_det_generated_ctjkvz_b1_TOTAL_SIZE,\n  compact_lang_det_generated_ctjkvz_b1_MAX_EXPAND_X4,\n  compact_lang_det_generated_ctjkvz_b1_SHIFT,\n  compact_lang_det_generated_ctjkvz_b1_BYTES,\n  compact_lang_det_generated_ctjkvz_b1_LOSUB,\n  compact_lang_det_generated_ctjkvz_b1_HIADD,\n  compact_lang_det_generated_ctjkvz_b1,\n  compact_lang_det_generated_ctjkvz_b1_remap_base,\n  compact_lang_det_generated_ctjkvz_b1_remap_string,\n  NULL\n};\n\n\n#undef X__\n#undef RJ_\n#undef S1_\n#undef S2_\n#undef S3_\n#undef S21\n#undef S31\n#undef S32\n#undef T1_\n#undef T2_\n#undef S11\n#undef SP_\n#undef D__\n#undef RJA\n\n// Table has 75008 bytes, Hash = E40D-2DFE\n\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/generated/compact_lang_det_generated_ctjkvz_0.cc",
    "content": "// Copyright 2009 Google Inc.\n//\n// Created by utf8tablebuilder version 2.8\n// See util/utf8/utf8statetable.h for usage\n//\n//  Maps properties of all codes from file:\n//    compact_lang_det_generated_ctjkvz.txt\n//  Accepts all other UTF-8 codes 0000..10FFFF\n//  Space optimized\n//\n// ** ASSUMES INPUT IS STRUCTURALLY VALID UTF-8 **\n//\n//  Table offsets for byte 2-of-3 and byte 3-of-4 are\n//  multiplied by 16; offsets for 3-of-3 and 4-of-4 are\n//  relative +/-127 from previous state.\n\n#include \"encodings/compact_lang_det/win/cld_utf8statetable.h\"\n\n\n//  Entire table has 1 state block of 64 entries\n\nstatic const unsigned int compact_lang_det_generated_ctjkvz_b1_STATE0 = 0;\t\t// state[0]\nstatic const unsigned int compact_lang_det_generated_ctjkvz_b1_STATE0_SIZE = 64;\t// =[1]\nstatic const unsigned int compact_lang_det_generated_ctjkvz_b1_TOTAL_SIZE = 64;\nstatic const unsigned int compact_lang_det_generated_ctjkvz_b1_MAX_EXPAND_X4 = 0;\nstatic const unsigned int compact_lang_det_generated_ctjkvz_b1_SHIFT = 6;\nstatic const unsigned int compact_lang_det_generated_ctjkvz_b1_BYTES = 1;\nstatic const unsigned int compact_lang_det_generated_ctjkvz_b1_LOSUB = 0x80808080;\nstatic const unsigned int compact_lang_det_generated_ctjkvz_b1_HIADD = 0x00000000;\n\nstatic const uint8 compact_lang_det_generated_ctjkvz_b1[] = {\n// state[0] 0x000000 Byte 1 (row Ex offsets 16x small)\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n};\n\n// Remap base[0] = (del, add, string_offset)\nstatic const RemapEntry compact_lang_det_generated_ctjkvz_b1_remap_base[] = {\n{0,0,0} };\n\n// Remap string[0]\nstatic const unsigned char compact_lang_det_generated_ctjkvz_b1_remap_string[] = {\n0 };\n\nextern const UTF8PropObj compact_lang_det_generated_ctjkvz_b1_obj = {\n  compact_lang_det_generated_ctjkvz_b1_STATE0,\n  compact_lang_det_generated_ctjkvz_b1_STATE0_SIZE,\n  compact_lang_det_generated_ctjkvz_b1_TOTAL_SIZE,\n  compact_lang_det_generated_ctjkvz_b1_MAX_EXPAND_X4,\n  compact_lang_det_generated_ctjkvz_b1_SHIFT,\n  compact_lang_det_generated_ctjkvz_b1_BYTES,\n  compact_lang_det_generated_ctjkvz_b1_LOSUB,\n  compact_lang_det_generated_ctjkvz_b1_HIADD,\n  compact_lang_det_generated_ctjkvz_b1,\n  compact_lang_det_generated_ctjkvz_b1_remap_base,\n  compact_lang_det_generated_ctjkvz_b1_remap_string,\n  NULL\n};\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/generated/compact_lang_det_generated_deltaoctachrome.cc",
    "content": "// Copyright (c) 2011 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n//\n// Created by postproc-shortwords 1.9 on 2011-04-06 14:00:13\n// From command line:\n//  --delta_octa --wrt=cld_generated_quadchrome.bin --standard --minchars=5\n//  --mincount=2 --max_items_per_langscript=200 --boostcloseweakerpercent=10\n//  --flatmap --rr_alloc --freq_alloc --indirectbits=12 --thresh=210 --v25\n//  --kentries=4 --tablename=DeltaOctaChrome --34_full\n//  --remap=xxx-Latn=>ut-Latn sh-Latn=>hr-Latn sh-Cyrl=>sr-Cyrl\n//  nn-Latn=>no-Latn bh-Deva=>ut-Deva mr-Deva=>ut-Deva ne-Deva=>ut-Deva\n//  lg-Latn=>ut-Latn rw-Latn=>ut-Latn gd-Latn=>ut-Latn  --include=af-Latn\n//  ar-Arab be-Cyrl bg-Cyrl ca-Latn cs-Latn cy-Latn da-Latn de-Latn el-Grek\n//  en-Latn es-Latn et-Latn fa-Arab fi-Latn fr-Latn ga-Latn gd-Latn hi-Deva\n//  hr-Latn hu-Latn id-Latn is-Latn is-Latn it-Latn iw-Hebr ja-Hani ko-Hani\n//  lg-Latn lt-Latn lv-Latn mk-Cyrl ms-Latn nl-Latn no-Latn pl-Latn pt-Latn\n//  ro-Latn ru-Cyrl rw-Latn sh-Cyrl sh-Latn sk-Latn sl-Latn sr-Cyrl sv-Latn\n//  sw-Latn th-Thai tl-Latn tr-Latn uk-Cyrl vi-Latn yi-Hebr zh-Hani zh-TW\n//  sq-Latn az-Latn eu-Latn bn-Beng gl-Latn ht-Latn mt-Latn sr-Latn ur-Arab\n//  ut-Latn ut-Deva  --force_to_lang_soft --soft_cram2 --nomsidlevel\n//  --shapeflatprob --langpriorpercent=10 --skipnuc --shapeforcetop\n//  --shapeeventop --shapesteep2 --langcounts --writebin --list_items=120\n//  /export/hda3/cld/all_text_octa_0120_sort.utf8\n//\n//\n// See compact_lang_det.cc for usage\n//\n#include \"encodings/compact_lang_det/cldutil.h\"\n\nstatic const int kDeltaOctaChromeBuildDate = 20110406;    // yyyymmdd\n\nCOMPILE_ASSERT(MONTENEGRIN == 160, k_montenegrin_changed);\nCOMPILE_ASSERT(EXT_NUM_LANGUAGES >= 209, k_ext_num_languages_changed);\n\n// Nil-grams: 20 languages\n//     GREEK BENGALI MALAYALAM TELUGU TAMIL GUJARATI THAI KANNADA\n//     PUNJABI GEORGIAN SINHALESE ARMENIAN LAOTHIAN KHMER DHIVEHI\n//     CHEROKEE SYRIAC LIMBU ORIYA INUKTITUT\n\n// Uni-grams: 6 languages\n//     Japanese Korean Chinese VIETNAMESE ChineseT ZHUANG\n\n// Words/Quads/Gibberish: 52 languages in range ENGLISH..HAITIAN_CREOLE:\n//     ENGLISH DANISH DUTCH FINNISH FRENCH GERMAN HEBREW ITALIAN\n//     NORWEGIAN POLISH PORTUGUESE RUSSIAN SPANISH SWEDISH CZECH\n//     ICELANDIC LATVIAN LITHUANIAN ROMANIAN HUNGARIAN ESTONIAN\n//     Ignore BULGARIAN CROATIAN SERBIAN IRISH GALICIAN TAGALOG\n//     TURKISH UKRAINIAN HINDI MACEDONIAN INDONESIAN MALAY WELSH\n//     ALBANIAN BELARUSIAN URDU ARABIC CATALAN BASQUE SWAHILI\n//     SLOVENIAN MALTESE VIETNAMESE SLOVAK AZERBAIJANI PERSIAN\n//     YIDDISH AFRIKAANS HAITIAN_CREOLE\n\n//  ENGLISH 50\n//  DANISH 61\n//  DUTCH 56\n//  FINNISH 55\n//  FRENCH 63\n//  GERMAN 54\n//  HEBREW 56\n//  ITALIAN 63\n//  NORWEGIAN 60\n//  POLISH 56\n//  PORTUGUESE 51\n//  RUSSIAN 63\n//  SPANISH 49\n//  SWEDISH 60\n//  CZECH 55\n//  ICELANDIC 52\n//  LATVIAN 55\n//  LITHUANIAN 60\n//  ROMANIAN 48\n//  HUNGARIAN 59\n//  ESTONIAN 54\n//  Ignore 128\n//  BULGARIAN 56\n//  CROATIAN 57\n//  SERBIAN 115\n//  IRISH 62\n//  GALICIAN 60\n//  TAGALOG 50\n//  TURKISH 53\n//  UKRAINIAN 58\n//  HINDI 53\n//  MACEDONIAN 61\n//  BENGALI 58\n//  INDONESIAN 56\n//  MALAY 57\n//  WELSH 55\n//  ALBANIAN 58\n//  BELARUSIAN 60\n//  URDU 59\n//  ARABIC 57\n//  CATALAN 59\n//  BASQUE 55\n//  SWAHILI 59\n//  SLOVENIAN 59\n//  MALTESE 52\n//  VIETNAMESE 56\n//  SLOVAK 60\n//  AZERBAIJANI 58\n//  PERSIAN 46\n//  YIDDISH 59\n//  AFRIKAANS 58\n//  HAITIAN_CREOLE 58\n\n\nstatic const int kDeltaOctaChromeSize = 1024;    // Bucket count\nstatic const int kDeltaOctaChromeKeyMask = 0xfffff000;    // Mask hash key\n\n// Of 906355 offered items (into 4096 table entries):\n// 3069 filled (0%), 3 merged (0%), 7728 dropped (0%)\n// 895555 items ignored: over --max_items_per_langscript\nstatic const cld::IndirectProbBucket4 kDeltaOctaChrome[kDeltaOctaChromeSize] = {\n  // key[4], words[4] in UTF-8\n  // value[4]\n  { {0xe200c001,0x02fe7002,0xd83dc003,0x00000000}},\t// [000] _galite_, _cargar_, _مشابہ_,\n  { {0x67c95004,0x23866005,0x62647006,0x00000000}},\t//   _zastosow, _soort_, _zaslal_,\n  { {0xe25a6007,0x1097e008,0x242bc009,0x00000000}},\t//   _poolt_, _времени_, _مساجد_,\n  { {0x72bb900a,0x23f8500b,0x2200c00c,0x00000000}},\t//   _referee_, _palun_, _kalite_,\n  { {0x99da400d,0x9b7dd00e,0x52d8d00f,0x00000000}},\t//   _galleria_, _prenumer, _order_,\n  { {0xd25b6010,0xa1452011,0x125a600f,0x00000000}},\t//   _ingles_, _materjal, _tools_,\n  { {0xc27e6012,0x22240013,0x13954014,0x00000000}},\t//   _huong_, _usiku_, _pjesma_,\n  { {0x6291e015,0x96b11016,0xbc1bf017,0x00000000}},\t//   _antal_, _sigurish, _undanfar,\n  { {0xf3ea900f,0xfcddf018,0x8a3e5019,0x00000000}},\t//   _state_, _колектив, _haritası_,\n  { {0x234aa009,0x7c69f01a,0x03c87007,0x00000000}},\t//   _خریدار_, _burundi_, _tervis_,\n  { {0xf291901b,0x299fd009,0x027e6012,0x00000000}},\t//   _insan_, _صحابہ_, _luong_,\n  { {0x62ca301c,0x227f401d,0x3291f01e,0x00000000}},\t//   _üldse_, _tienen_, _hutan_,\n  { {0x9afd601b,0x6c5a501f,0x64225020,0x00000000}},\t//   _investis, _menteri_, _indirizz,\n  { {0xf3f83007,0x12cb8015,0x6b6d0021,0x00000000}},\t//   _samuti_, _borde_, _exporter,\n  { {0x742a6022,0x79eb2009,0xd3ebe020,0x00000000}},\t//   _правильн, _طاہرالقا, _detto_,\n  { {0xc3f82023,0xe3a7e003,0x41ce5024,0x00000000}},\t//   _sikur_, _مجموعی_, _положенн,\n  { {0xf27ed025,0x23954026,0xc2909027,0x00000000}},\t// [010] _ocena_, _viesti_, _izjave_,\n  { {0xe394d028,0xac0ae021,0x23730029,0x00000000}},\t//   _viesu_, _stoppen_, _איזראעלי_,\n  { {0xd3eb9002,0xfc7d902a,0x92fce02b,0x00000000}},\t//   _desta_, _consejo_, _mangel_,\n  { {0xa200c02c,0x92d8c02d,0x2c62101b,0x00000000}},\t//   _undir_, _under_, _forumun_,\n  { {0x52c59012,0xae38f02e,0x4469502f,0x00000000}},\t//   _beeline_, _veransta, _пристигн,\n  { {0x03ea6030,0x627f001a,0x0ad20031,0x00000000}},\t//   _multe_, _abandi_, _gratuite,\n  { {0x96dcb032,0x72d17009,0x99643033,0x00000000}},\t//   _फिलिम_, _لوکلائزی, _favorile,\n  { {0xa2a6a010,0x93a92034,0x65af3035,0x00000000}},\t//   _gabby_, _private_, _споразум,\n  { {0x92d98036,0xefe3a037,0xb2fc0001,0x00000000}},\t//   _diren_, _розныя_, _taigi_,\n  { {0x62feb038,0x92cae021,0xa25b9039,0x00000000}},\t//   _activar_, _landen_, _jesli_,\n  { {0xf231103a,0x585c903b,0x0394203c,0x00000000}},\t//   _stammen_, _maalisku, _maksa_,\n  { {0x62d9f03d,0x32b5203e,0x87aa703f,0x00000000}},\t//   _zuten_, _conduce_, _instelli,\n  { {0xb25a6040,0x8ae64041,0x2ec5c035,0x00000000}},\t//   _julle_, _সংলাপে, _главни_,\n  { {0x9486c042,0xf64c9009,0x384c902f,0x00000000}},\t//   _भंडारा, _متشابہہ_, _поставув,\n  { {0x553c0043,0xa2d81036,0xc004c044,0x00000000}},\t//   _तब्बल_, _lehen_, _elektrik_,\n  { {0x6201c045,0xa401900c,0x4d978039,0x00000000}},\t//   _invia_, _ameriken_, _motoryza,\n  { {0xe0082029,0xa3866046,0x2ba4f015,0x00000000}},\t// [020] _געגנטן_, _stori_, _diskuter,\n  { {0x53eb9025,0xc66f6047,0xb2d8400f,0x00000000}},\t//   _cesti_, _pozdrawi, _times_,\n  { {0xfb25d048,0x32b1d049,0x92afc04a,0x00000000}},\t//   _гледам_, _bendera_, _خصائص_,\n  { {0x827e6012,0xeebc104b,0x10485047,0x00000000}},\t//   _tuong_, _aktuelle_, _naturaln,\n  { {0xa2d82036,0x32cb704c,0xc83b801c,0x00000000}},\t//   _azken_, _stadig_, _väljende,\n  { {0x02b4004d,0x92cae04e,0x03eaf002,0x00000000}},\t//   _which_, _findes_, _manter_,\n  { {0x525a504f,0xd2b40012,0x7237e050,0x00000000}},\t//   _colli_, _thich_, _primera_,\n  { {0xa2d99051,0x3b0c3020,0x83c86052,0x00000000}},\t//   _eisen_, _rapprese, _kurven_,\n  { {0x757b1053,0xf2006054,0x2ee9d055,0x00000000}},\t//   _santiago_, _avoir_, _funksion,\n  { {0x22919033,0xc6e80056,0xf27e0057,0x00000000}},\t//   _nisan_, _контроль_, _brine_,\n  { {0x8202604c,0x1e55e036,0x19ba3050,0x00000000}},\t//   _ferien_, _espainia, _privacid,\n  { {0x23ebe058,0x12001036,0x725a9044,0x00000000}},\t//   _cette_, _behin_, _itali_,\n  { {0x97293048,0xe248d059,0x2201c05a,0x00000000}},\t//   _добри_, _umeme_, _envia_,\n  { {0xfc113015,0xb2909059,0xcb57e05b,0x00000000}},\t//   _helsingb, _kijana_, _пасаду_,\n  { {0x9d29d009,0x225ae058,0xdb0f3053,0x00000000}},\t//   _ڈیموکریٹ, _taille_, _disparat,\n  { {0x8394705c,0x5249905d,0x03967021,0x00000000}},\t//   _mense_, _mismo_, _lessen_,\n  { {0xa2d8404e,0xd2918033,0x9202105e,0x00000000}},\t// [030] _timer_, _murat_, _kopiju_,\n  { {0x4cec105f,0x5c52a060,0xf201e061,0x00000000}},\t//   _компаниј, _auktion_, _akció_,\n  { {0x02fc6059,0x4290a062,0x0d2d9063,0x00000000}},\t//   _ndogo_, _laban_, _napište_,\n  { {0x8d3c3064,0xb2a7c065,0x8224d063,0x00000000}},\t//   _velikost_, _района_, _funkce_,\n  { {0x32489066,0x32cad040,0xfb14c035,0x00000000}},\t//   _chama_, _reeds_, _извор_,\n  { {0x2156b029,0xc27f702d,0xf630b04a,0x00000000}},\t//   _ליובאַוו, _change_, _الأبيض_,\n  { {0x82ca7052,0xa2009054,0x33ebe067,0x00000000}},\t//   _hunde_, _avait_, _tette_,\n  { {0xd27e703a,0xf2d9905a,0xb296c068,0x00000000}},\t//   _kunne_, _museu_, _strateji_,\n  { {0x5c55b03f,0x62787060,0xc3227069,0x00000000}},\t//   _bestand_, _barnet_, _fesyen_,\n  { {0xd236006a,0x4c51d06b,0x03ce006c,0x00000000}},\t//   _prije_, _चालेल_, _prive_,\n  { {0xbdc5e06c,0x37253029,0x307af06d,0x00000000}},\t//   _elektora, _אנטשולדי, _besplatn,\n  { {0x7225803b,0xb290202e,0x0d56006e,0x00000000}},\t//   _turku_, _jemand_, _ליצירת_,\n  { {0x6303f033,0x0ba7a06f,0x10a47029,0x00000000}},\t//   _teknoloj, _पूछताछ, _לאַגער_,\n  { {0xa386d070,0xf2902035,0xe2907010,0x00000000}},\t//   _alert_, _kakav_, _banal_,\n  { {0x72257071,0x9200501b,0x2f23105a,0x00000000}},\t//   _praksa_, _bilir_, _explicar_,\n  { {0xe343b04a,0x9408f072,0x426c9073,0x00000000}},\t//   _بتوقيت_, _франківс, _nikoli_,\n  { {0xe2c40029,0x2c54f074,0x8337c065,0x00000000}},\t// [040] _פאסירן_, _ellenőrz, _николай_,\n  { {0x72026069,0x23ebe075,0xfc496072,0x00000000}},\t//   _terima_, _sette_, _банківсь,\n  { {0xf5d9d072,0xaf212076,0xa3869014,0x00000000}},\t//   _аналіз_, _esperien, _igara_,\n  { {0x6c5d7012,0x93869077,0xb2fcd078,0x00000000}},\t//   _viettel_, _muare_, _svega_,\n  { {0xe27e9012,0xb3f40079,0x33ea9076,0x00000000}},\t//   _quang_, _costas_, _stati_,\n  { {0x13eb907a,0x6200707b,0x4290707c,0x00000000}},\t//   _cestu_, _minis_, _minas_,\n  { {0x52915033,0xe17bf009,0x42ca002d,0x00000000}},\t//   _sigara_, _پھانسی_, _guide_,\n  { {0x0712206f,0x6e46d04f,0x2582001a,0x00000000}},\t//   _अन्दर_, _stratega, _amategek,\n  { {0x5f4e0054,0x72908059,0xf2d80012,0x00000000}},\t//   _personne_, _bahati_, _phien_,\n  { {0xd6882056,0xc2d9606b,0x23ea0040,0x00000000}},\t//   _контролю_, _kugeza_, _buite_,\n  { {0xf3a3f047,0x03eae007,0x12d8707d,0x00000000}},\t//   _grupy_, _kontot_, _ihned_,\n  { {0xf5fbe07e,0x626ce027,0x1290307f,0x00000000}},\t//   _акрамя_, _osnovi_, _cumann_,\n  { {0x83e25080,0x905e6081,0x69fe6036,0x00000000}},\t//   _természe, _ekonomik_, _ekonomia_,\n  { {0x42004082,0xb2907049,0x02d86005,0x00000000}},\t//   _jamii_, _dinas_, _groep_,\n  { {0x73eb804e,0x2588d054,0xedc5d04a,0x00000000}},\t//   _marts_, _activité, _طبعاً_,\n  { {0x03eb900a,0xc2d99015,0x6847c02f,0x00000000}},\t//   _bosta_, _anser_, _напади_,\n  { {0x3387e020,0x743c0041,0xfcf8106e,0x00000000}},\t// [050] _altre_, _সাকিব_, _התביעה_,\n  { {0x13ead083,0xc395406a,0x23eb9083,0x00000000}},\t//   _protiv_, _mjesto_, _dosta_,\n  { {0x325a504f,0x0867a061,0x9e9e302e,0x00000000}},\t//   _felly_, _április_, _erstellt_,\n  { {0x89722084,0xe2d9001a,0x92d99060,0x00000000}},\t//   _arhitekt, _imbere_, _huset_,\n  { {0xe6a22085,0xf386c04f,0x23967086,0x00000000}},\t//   _институц, _agored_, _passen_,\n  { {0x93f47087,0xf991c088,0x4290f01d,0x00000000}},\t//   _sistem_, _здравств, _lugar_,\n  { {0x9394700c,0x805e605c,0x5f46300c,0x00000000}},\t//   _panse_, _moontlik_, _aristide_,\n  { {0x1394602d,0xe1e5b089,0xd290f08a,0x00000000}},\t//   _those_, _politikë_, _tugas_,\n  { {0x41ec106e,0x72d5608b,0x2c6fc036,0x00000000}},\t//   _להכניס_, _vitoria_, _loturak_,\n  { {0x37803008,0xf2927055,0xe3a5b027,0x00000000}},\t//   _управлен, _mesazh_, _garancij,\n  { {0x667c4072,0xc200208c,0x6942c08d,0x00000000}},\t//   _комуналь, _ilkin_, _знакаміт,\n  { {0x4294008e,0x8a69f08f,0x2b8ac090,0x00000000}},\t//   _आंदोलन, _финансов, _новом_,\n  { {0xe2925091,0xb2b9a092,0xc3eb9028,0x00000000}},\t//   _totali_, _oíche_, _pastu_,\n  { {0x0c5cf032,0xdd47b064,0x498b0093,0x00000000}},\t//   _मिळेल_, _dispozic, _znači_,\n  { {0xe2d84051,0xd2fd5094,0xa301e047,0x00000000}},\t//   _nemen_, _kopiert_, _ostatni_,\n  { {0x82902019,0x372a7009,0x4049a029,0x00000000}},\t//   _fakat_, _سرِورق_, _אַהײם_,\n  { {0x5b6cc05a,0x93030010,0xac6f7043,0x00000000}},\t// [060] _estadíst, _salamat_, _afurika_,\n  { {0x058fa06e,0x352a006e,0x79c89061,0x00000000}},\t//   _אמצעי_, _בכתבות_, _automata_,\n  { {0xc3f46079,0xc342705c,0xa2b47061,0x00000000}},\t//   _curtha_, _beteken_, _sincs_,\n  { {0xb290c01f,0xe5731095,0xdf839096,0x00000000}},\t//   _badan_, _amatersk, _помощь_,\n  { {0x12902097,0xafc2d009,0x1e54e008,0x00000000}},\t//   _rekao_, _باجوڑ_, _экономич,\n  { {0xb2011098,0x72002044,0x92d8a002,0x00000000}},\t//   _bizim_, _jakim_, _babel_,\n  { {0x49cc1099,0x612d208d,0xcbf5409a,0x00000000}},\t//   _rendelke, _часта_, _espectac,\n  { {0xf2e8d05e,0x6ac80029,0x0436309b,0x00000000}},\t//   _tehniku_, _בערלין_, _praktick,\n  { {0xe3ebe015,0x02908035,0x9fd63010,0x00000000}},\t//   _detta_, _nekako_, _limitado,\n  { {0x7544807e,0x5c77e091,0xe26c300b,0x00000000}},\t//   _статысты, _estremi_, _remont_,\n  { {0x2395909c,0x643e1035,0xadc47001,0x00000000}},\t//   _sisse_, _јасно_, _konkursa,\n  { {0xbb34309d,0x1715b06e,0xd249500b,0x00000000}},\t//   _интересн, _רוחני_, _olemas_,\n  { {0x93f9001a,0xa7b3600c,0x8d7bf06b,0x00000000}},\t//   _kibuye_, _konstiti, _आराखडा,\n  { {0x1d03209e,0x525c6045,0xc3ea708b,0x00000000}},\t//   _خدمات_, _località_, _kontu_,\n  { {0x6387709f,0xc75410a0,0x4387e0a1,0x00000000}},\t//   _zdarma_, _независи, _betri_,\n  { {0xa2595020,0x1c5620a2,0x044a106e,0x00000000}},\t//   _particol, _काहें_, _בדצמבר_,\n  { {0xfc124059,0x484ed050,0xd5ab0009,0x00000000}},\t// [070] _kampuni_, _publicid, _گھنٹوں_,\n  { {0x15c02041,0x4ae6e060,0x9c06e04e,0x00000000}},\t//   _নাগরিক, _auktione, _auktions,\n  { {0x6000d028,0x6c2d50a3,0x4201f0a4,0x00000000}},\t//   _informāc, _espiritu_, _poziom_,\n  { {0xf6b95051,0xb248002c,0x6301806d,0x00000000}},\t//   _belangri, _heima_, _trebate_,\n  { {0xd7c2d0a5,0x69f9b0a6,0x2291e06c,0x00000000}},\t//   _বাইরে_, _професио, _mitan_,\n  { {0x329040a7,0xe6cca092,0x42b60091,0x00000000}},\t//   _teman_, _polainni, _muscat_,\n  { {0xc2a6c04d,0x33795033,0x7201f069,0x00000000}},\t//   _member_, _antalya_, _putih_,\n  { {0xa3ea0026,0x0da110a8,0x89c9f0a9,0x00000000}},\t//   _muita_, _پایگاه_, _germania_,\n  { {0x72d850aa,0xaa1ec0ab,0x73c22067,0x00000000}},\t//   _gelen_, _видим_, _rövid_,\n  { {0x53fa7071,0x022810ac,0x93b6c035,0x00000000}},\t//   _forumi_, _наступны, _забрани_,\n  { {0xc2486097,0x1dabc0ad,0xf2ca0076,0x00000000}},\t//   _veoma_, _kehidupa, _guida_,\n  { {0x6200c061,0xefa720ae,0x0a1ed0ab,0x00000000}},\t//   _pedig_, _komentar_, _видиш_,\n  { {0x4290c021,0xcc61803a,0x22cae0af,0x00000000}},\t//   _omdat_, _sverige_, _mvideo_,\n  { {0x52bb104e,0xd2d8a030,0x65c7e041,0x00000000}},\t//   _seneste_, _liber_, _রেকর্ড,\n  { {0x4d111038,0x62d8405c,0xb98d1096,0x00000000}},\t//   _arquitec, _hemel_, _написать_,\n  { {0xb38750a1,0xa2d9808b,0xb926c088,0x00000000}},\t//   _áfram_, _arren_, _причини_,\n  { {0xdb9b502e,0xa635206b,0x8ec1807f,0x00000000}},\t// [080] _technisc, _पदाधिक, _bronntan,\n  { {0x920040b0,0x64c8708d,0x53eaf017,0x00000000}},\t//   _damit_, _вызвален, _vantar_,\n  { {0x13eb80b1,0xd468206e,0x92905036,0x00000000}},\t//   _norte_, _בתהליך_, _zelan_,\n  { {0x727e603a,0x1a5ca001,0x53f45015,0x00000000}},\t//   _trong_, _galerija_, _mitten_,\n  { {0x2c21404d,0x6fa720b2,0x0915e0b0,0x00000000}},\t//   _company_, _comentar_, _verbindu,\n  { {0x8200300a,0x52900030,0xeeb45002,0x00000000}},\t//   _simili_, _chiar_, _recentes_,\n  { {0xe37950b3,0x2868600b,0xa2a75091,0x00000000}},\t//   _dudalen_, _ekspress_, _liebes_,\n  { {0x6248d04b,0x897860b4,0x4386603a,0x00000000}},\t//   _thema_, _amminist, _gjort_,\n  { {0x92132063,0x4f4a4031,0x72d8f0b5,0x00000000}},\t//   _archiv_, _personna, _lagen_,\n  { {0x0335a06b,0xcefd206f,0x073c708f,0x00000000}},\t//   _पंतप्र, _पेशकश_, _комуника,\n  { {0xc487706b,0xf387804f,0x91e7306b,0x00000000}},\t//   _मिपावर, _parry_, _चेहर्_,\n  { {0x825a5007,0x94d1506f,0xbc6f50b6,0x00000000}},\t//   _mille_, _मेडिकल, _ostrava_,\n  { {0x916c204a,0xa2f4c025,0x6947e02f,0x00000000}},\t//   _النكت_, _napisal_, _предлог_,\n  { {0x3e56c08d,0x02d10057,0x7ece1029,0x00000000}},\t//   _проста_, _povodom_, _צוטריט_,\n  { {0x720b10b7,0x726ca080,0x8b75506b,0x00000000}},\t//   _اردبیل_, _tibor_, _कॉर्पो,\n  { {0xf740406f,0x8bdf2015,0xe29260b8,0x00000000}},\t//   _गाजिया, _semester, _darauf_,\n  { {0x946ee096,0xea051072,0xc2fc7066,0x00000000}},\t// [090] _время_, _служби_, _rangi_,\n  { {0x1f2e3050,0x13ebf064,0x2eed20b7,0x00000000}},\t//   _comunida, _historii_, _المثل_,\n  { {0x6e95906e,0xc57e404f,0x4aea702e,0x00000000}},\t//   _עוררו_, _benderfy, _erstelle,\n  { {0x72ca70b9,0xf926c024,0x8e0dd022,0x00000000}},\t//   _mundo_, _причин_, _поблагод,\n  { {0x425ba012,0x02b4e012,0xe291a00a,0x00000000}},\t//   _amply_, _vincom_, _hipaa_,\n  { {0x233d109e,0xa25ad075,0x522ac0ac,0x00000000}},\t//   _دیدار_, _heller_, _побач_,\n  { {0xf239f00a,0xe3805044,0x0200c066,0x00000000}},\t//   _termini_, _petrol_, _halisi_,\n  { {0xc580207c,0x5ec3a0ba,0x9b99f09d,0x00000000}},\t//   _informaç, _christus_, _практиче,\n  { {0x03f4702e,0xe27ee00c,0x7290301b,0x00000000}},\t//   _ersten_, _mennen_, _olmasa_,\n  { {0x3290504f,0xd20180bb,0x92d9e00d,0x00000000}},\t//   _allan_, _emrin_, _siten_,\n  { {0x12d8402e,0xa85230bc,0x02b49012,0x00000000}},\t//   _immer_, _recursos_, _khach_,\n  { {0xd1192065,0x47b710bd,0x425ad038,0x00000000}},\t//   _техника_, _нашите_, _taller_,\n  { {0xe9a7c072,0x02904019,0x62027055,0x00000000}},\t//   _завжди_, _tamam_, _arriti_,\n  { {0xd422208f,0x42cad0be,0x20ec1092,0x00000000}},\t//   _единстве, _bildes_, _speisial,\n  { {0xe2d9e0b9,0x7289e009,0xa388f0bf,0x00000000}},\t//   _antes_, _کرینگے_, _unutrašn,\n  { {0xdb48f07e,0x48c530b1,0x8200d04b,0x00000000}},\t//   _версія_, _reservad, _preis_,\n  { {0xd0d0904a,0x14242048,0x229070c0,0x00000000}},\t// [0a0] _للنساء_, _случай_, _manau_,\n  { {0x33085010,0xeaf7b0a9,0xb7b9a06e,0x00000000}},\t//   _breakup_, _consumat, _עקיבא_,\n  { {0xb201e0c1,0xa57e404f,0x75f32041,0x00000000}},\t//   _sitio_, _penderfy, _শেয়ার_,\n  { {0x7d136016,0xe2fc7066,0xccf18032,0x00000000}},\t//   _konsider, _lengo_, _ibiteker,\n  { {0x23eae026,0xc9c7d0bd,0x9ecb9059,0x00000000}},\t//   _tuntuu_, _прилеп_, _kulingan,\n  { {0x2290905c,0x02cae060,0x73401053,0x00000000}},\t//   _schatz_, _fundet_, _licenza_,\n  { {0xa2486089,0x938710ae,0xa3ebe0c2,0x00000000}},\t//   _akoma_, _rubrik_, _jotta_,\n  { {0x4d379048,0x1eb9b037,0xba2270a9,0x00000000}},\t//   _бизнес_, _спачатку_, _practica_,\n  { {0x525b10c3,0xa907b0ba,0x63948044,0x00000000}},\t//   _publik_, _redakteu, _maksud_,\n  { {0x4200d010,0xc291601a,0xf3e720c4,0x00000000}},\t//   _iloilo_, _hagati_, _hätte_,\n  { {0x93fa6095,0xd9a3f07e,0x23e7201c,0x00000000}},\t//   _poruka_, _мерапрые, _kätte_,\n  { {0xf7ac0002,0x9f98e035,0xa77d304a,0x00000000}},\t//   _colectiv, _политику_, _الحزب_,\n  { {0xe2d8f04b,0xd291f079,0xd290f0a1,0x00000000}},\t//   _sagen_, _anuas_, _sagan_,\n  { {0x02fc60b5,0x511120c5,0x99f66080,0x00000000}},\t//   _blogg_, _białysto, _virág_,\n  { {0xd27ef0c6,0x2ddc7005,0x02fcf0c7,0x00000000}},\t//   _meiner_, _marktpla, _legge_,\n  { {0xec5ce06b,0x12907098,0xa2caf02e,0x00000000}},\t//   _योगेश_, _manat_, _leider_,\n  { {0x425a0055,0x5c56c06f,0x12fc7094,0x00000000}},\t// [0b0] _prill_, _छापें_, _langt_,\n  { {0xe2d850c5,0x52dc20c8,0x423690c9,0x00000000}},\t//   _dalej_, _партнера_, _kraje_,\n  { {0xe88060ca,0xa3f46040,0x4a4bb043,0x00000000}},\t//   _artikulu, _vertel_, _perezida_,\n  { {0xcc521038,0x34b60001,0xea9bd061,0x00000000}},\t//   _lectura_, _kompanij, _közleked,\n  { {0x9d2f4025,0xae99204a,0x46dcf06b,0x00000000}},\t//   _gospodar, _وبعدين_, _मंसिर_,\n  { {0xd36fb0c0,0x0394e0cb,0x726cc015,0x00000000}},\t//   _daugiau_, _zaista_, _sidor_,\n  { {0xe27e9012,0xd2a690cc,0x4291e01b,0x00000000}},\t//   _giang_, _grabe_, _kitab_,\n  { {0x97d0c0cd,0xdf26b095,0x83947020,0x00000000}},\t//   _многу_, _gađajte_, _senso_,\n  { {0xf2ca70ba,0xae96b050,0x80b6106f,0x00000000}},\t//   _einde_, _bastante_, _मुटुमा,\n  { {0x02ca704e,0xacf0a06f,0x0d5ac0a6,0x00000000}},\t//   _finde_, _पाठकों, _модел_,\n  { {0x8d8e401d,0xa2fc7066,0x0290e04f,0x00000000}},\t//   _encontra, _tangu_, _ionawr_,\n  { {0xebe360ae,0x1c53702a,0x63c7f096,0x00000000}},\t//   _komentar, _portada_, _группы_,\n  { {0x02d8e05a,0x62fc701d,0x9face09e,0x00000000}},\t//   _manera_, _tengo_, _تجاوز_,\n  { {0xc35520b3,0x42026010,0xe27e905c,0x00000000}},\t//   _calendr_, _korina_, _trane_,\n  { {0xd7a4605f,0x421340aa,0x62b6705a,0x00000000}},\t//   _независн, _şehir_, _tercer_,\n  { {0xb0e6406f,0x739040ce,0xca8300cf,0x00000000}},\t//   _आईपीएल, _الخليج_, _familjen_,\n  { {0xb2026020,0x2408b0d0,0xa350600a,0x00000000}},\t// [0c0] _aprile_, _kuhinjsk, _photolum,\n  { {0xe2240028,0x62d98066,0xe431f041,0x00000000}},\t//   _laiks_, _gazeti_, _জড়িত_,\n  { {0x327f70b1,0x6ec4d05b,0x8486906b,0x00000000}},\t//   _quando_, _дзеля_, _दिलासा,\n  { {0x4263a06f,0x1e18e028,0xb200c025,0x00000000}},\t//   _सक्षम_, _galerija, _veliko_,\n  { {0x6be360d1,0x02d81080,0xf3949051,0x00000000}},\t//   _comentar, _lehet_, _naast_,\n  { {0x2291804f,0x4b28b08d,0x80492065,0x00000000}},\t//   _adran_, _транспар, _периода_,\n  { {0xa2d51080,0xc6d1103f,0xba08e026,0x00000000}},\t//   _mellett_, _probleem_, _salasana_,\n  { {0x4a14c04a,0x862740a9,0x27b92096,0x00000000}},\t//   _أبريل_, _aplicati, _предыдущ,\n  { {0x12484054,0x4c00001d,0x12da600a,0x00000000}},\t//   _comme_, _música_, _unread_,\n  { {0x67a7b041,0xa2d98064,0xc4e1b041,0x00000000}},\t//   _জানলে_, _firem_, _জাপান_,\n  { {0xe394e07f,0xc991904f,0x6b2b7068,0x00000000}},\t//   _chiste_, _technole, _komandas,\n  { {0xb482f07e,0x33eb7046,0x92d9900f,0x00000000}},\t//   _форумы_, _ymateb_, _based_,\n  { {0x32d8904f,0x6da3e0d2,0xb290e0b0,0x00000000}},\t//   _flaen_, _досить_, _danach_,\n  { {0xe6975060,0x2dffe0d3,0xa29180be,0x00000000}},\t//   _offentli, _perempua, _kuras_,\n  { {0xb2018084,0x4da2006c,0xe9ec806f,0x00000000}},\t//   _juris_, _prensipa, _बल्लेब,\n  { {0xd046406f,0x62e3000d,0x02927092,0x00000000}},\t//   _डेवलपर, _valitse_, _spraoi_,\n  { {0x5f71a072,0x92d800d4,0x99d59009,0x00000000}},\t// [0d0] _основі_, _chieu_, _منشیات_,\n  { {0x7c480029,0x5df80029,0x2beec096,0x00000000}},\t//   _העלפֿן_, _העלפֿט_, _самое_,\n  { {0x72a64066,0xf85cb05c,0x5f453098,0x00000000}},\t//   _simba_, _verander_, _formalaş,\n  { {0x3afcb02e,0x63e390d5,0xbbbd0041,0x00000000}},\t//   _gesundhe, _פרנסה_, _নরাধম_,\n  { {0x82d51061,0xd2027059,0x329260b4,0x00000000}},\t//   _kellett_, _aprili_, _strada_,\n  { {0xbceb906e,0x92d460d1,0xee8f606a,0x00000000}},\t//   _להניח_, _perdre_, _promijen,\n  { {0x170e1029,0x5b5520d6,0x82d8c073,0x00000000}},\t//   _אוודאי_, _kontakta_, _leden_,\n  { {0xf0ef20ce,0xab66403e,0x1641c090,0x00000000}},\t//   _فساتين_, _realizar, _стари_,\n  { {0x7101c08d,0xee29d017,0xb7aa704d,0x00000000}},\t//   _свету_, _bygginga, _australi,\n  { {0xb27e9031,0xe280b073,0x32f33057,0x00000000}},\t//   _quand_, _diskuse_, _nedovolj,\n  { {0x6386c03a,0x9e923024,0x18c53092,0x00000000}},\t//   _gjorde_, _потреби_, _spreagad,\n  { {0x2386a004,0x4e38f07f,0xa0d7a0d7,0x00000000}},\t//   _dobry_, _carachta, _הגהות_,\n  { {0xf8ea6044,0x157ed002,0xd700f092,0x00000000}},\t//   _mengandu, _inclusió, _struchtú,\n  { {0x82924044,0x768e60b2,0x8290201e,0x00000000}},\t//   _datang_, _profissi, _dekat_,\n  { {0x95bd90c8,0x12484075,0xe2245081,0x00000000}},\t//   _министра_, _somme_, _belki_,\n  { {0x53417038,0x284640b1,0x73fe5099,0x00000000}},\t//   _reserva_, _qualidad, _amerikai_,\n  { {0xa2d8c0aa,0xa18800be,0x3221b055,0x00000000}},\t// [0e0] _neden_, _festivāl, _diskutim,\n  { {0xc4c4206e,0x43eb5084,0x43875026,0x00000000}},\t//   _אנגלית_, _vietas_, _vieras_,\n  { {0x664e206e,0xc25a9076,0x827ec0d8,0x00000000}},\t//   _אוהדים_, _quale_, _fronte_,\n  { {0xc236d080,0x22fcd09c,0xc2e08032,0x00000000}},\t//   _tudja_, _seega_, _कालीन_,\n  { {0x454e20c8,0xa386d01d,0x7290d0d9,0x00000000}},\t//   _лична_, _enero_, _halafu_,\n  { {0xe290a04f,0x6032f0da,0x68dc5092,0x00000000}},\t//   _alban_, _nastaven, _tarraing,\n  { {0x33947094,0x2aa7a033,0xf320c062,0x00000000}},\t//   _dansk_, _programı_, _medyo_,\n  { {0x23f85054,0x791b70af,0xa3f8f030,0x00000000}},\t//   _celui_, _toán_, _sigur_,\n  { {0xbd9dc083,0xf956a002,0x37158029,0x00000000}},\t//   _jednosta, _escribir_, _שושנת_,\n  { {0xb25a5055,0x9843402f,0x13ebf06c,0x00000000}},\t//   _tilla_, _централн, _moute_,\n  { {0x92d80077,0x3ceed008,0xd061d096,0x00000000}},\t//   _thiet_, _среди_, _стать_,\n  { {0xd287309e,0x927e703a,0x323fd05c,0x00000000}},\t//   _رفتار_, _kunna_, _vermaak_,\n  { {0xdb136010,0xf20110c5,0xf2d8200f,0x00000000}},\t//   _pampanga_, _razie_, _makes_,\n  { {0xc2ba50d3,0xb2e850cb,0x1290c012,0x00000000}},\t//   _sendiri_, _poslednj, _vedan_,\n  { {0xa5eb00db,0xff6f906e,0x797ac012,0x00000000}},\t//   _سرمایه_, _במשרד_, _thanhnie,\n  { {0xc358901d,0x0dd950b7,0xc2caf0dc,0x00000000}},\t//   _página_, _وبسایت_, _bandar_,\n  { {0x63ea00dd,0xf3a38076,0xf27f700c,0x00000000}},\t// [0f0] _uniti_, _corpo_, _chanje_,\n  { {0x3951200d,0x0200c00b,0x4d392012,0x00000000}},\t//   _automaat, _valige_, _mobifone_,\n  { {0x432070de,0xb3eb80da,0x79a3707c,0x00000000}},\t//   _kenya_, _karty_, _ministér,\n  { {0x138b8092,0x18465038,0x7f2430ac,0x00000000}},\t//   _márta_, _lectures_, _меркаван,\n  { {0x6dee3009,0x7c27b029,0x73eb70df,0x00000000}},\t//   _کمزور_, _נאַציאָנ, _esaten_,\n  { {0xb2b49039,0x0d439029,0xb147d02f,0x00000000}},\t//   _pracy_, _סטעיט_, _капитал_,\n  { {0x4200904f,0x80d4204a,0x3ba6b06f,0x00000000}},\t//   _plaid_, _يوفقك_, _हड़ताल,\n  { {0xafacc0e0,0xa404b088,0xe3a3f0e1,0x00000000}},\t//   _مجروح_, _авганист, _koupe_,\n  { {0x73a35001,0xe27eb05c,0x32cae027,0x00000000}},\t//   _liepos_, _moenie_, _vendar_,\n  { {0x22fc7033,0xe2d8c03f,0xd290c0d6,0x00000000}},\t//   _hangi_, _reden_, _redan_,\n  { {0xd2c2e075,0xa9995022,0x6dd6e026,0x00000000}},\t//   _tallinn_, _професси, _perjanta,\n  { {0xd3435041,0xd2902057,0x08c73052,0x00000000}},\t//   _ইমেইল_, _makar_, _indehold,\n  { {0x49aa304a,0x42e8601d,0xd86c6002,0x00000000}},\t//   _تأكيد_, _perfil_, _sociedad,\n  { {0xc26c40e2,0x98f420c8,0xb2d83031,0x00000000}},\t//   _pomoc_, _академиј, _samedi_,\n  { {0xd290c05c,0x927a20b8,0x1c76d06f,0x00000000}},\t//   _nadat_, _persönli, _मिश्रा,\n  { {0xc1b1e0a5,0x0a868047,0xe3f8e005,0x00000000}},\t//   _জানেন_, _europejs, _vanuit_,\n  { {0xcc77f042,0x926e7058,0x92d8a09c,0x00000000}},\t// [100] _शेट्टी, _besoin_, _umbes_,\n  { {0xfd2c900c,0xb2908026,0x302b905b,0x00000000}},\t//   _aktivite_, _kukaan_, _школах_,\n  { {0x08a1e041,0xd643a029,0xf22470d9,0x00000000}},\t//   _আনুষঙ্, _יאפאן_, _benki_,\n  { {0xa1f8c04a,0x0294506a,0x8a17c00e,0x00000000}},\t//   _متصفح_, _linkovi_, _psichiat,\n  { {0xb2907047,0xcc610059,0x8b8a205f,0x00000000}},\t//   _ponad_, _masuala_, _мојот_,\n  { {0x9351903e,0x584d2001,0x13ead0e3,0x00000000}},\t//   _conform_, _sistemos_, _trete_,\n  { {0xc295500b,0xf517704a,0x83f40094,0x00000000}},\t//   _probleem, _والطفل_, _kostet_,\n  { {0xc3ea6073,0x42b490e4,0x4f67a029,0x00000000}},\t//   _proto_, _place_, _בעלזא_,\n  { {0xb200d0ba,0xa9159041,0x8334c0b7,0x00000000}},\t//   _klein_, _আহ্বান, _آذربایجا,\n  { {0xcae820cf,0xcf8df08e,0xd3f470d1,0x00000000}},\t//   _expresse, _बल्कि_, _mostra_,\n  { {0x6ad7300b,0x92cbf093,0xde329041,0x00000000}},\t//   _postitat, _ljude_, _কাজটা_,\n  { {0x71772088,0xe27e702c,0xc354a002,0x00000000}},\t//   _место_, _vinna_, _modelos_,\n  { {0x63f43031,0x63eb80df,0xf2fc907f,0x00000000}},\t//   _posté_, _sortu_, _beaga_,\n  { {0xd27ed012,0x306790bd,0xe2b5d064,0x00000000}},\t//   _tieng_, _развој_, _najdete_,\n  { {0xb7c6106b,0x31079029,0x23869069,0x00000000}},\t//   _हळूहळू, _מעיאר_, _juara_,\n  { {0x32926010,0x8c75807f,0x93737012,0x00000000}},\t//   _parang_, _bearish_, _rongbay_,\n  { {0xe2e0901c,0x427ef047,0x10d7709b,0x00000000}},\t// [110] _profiili_, _opinii_, _motocykl,\n  { {0x02247099,0x499bd060,0x55bd60c2,0x00000000}},\t//   _senki_, _velkomme, _myöhemmi,\n  { {0x22d90067,0xa2873009,0xc3869066,0x00000000}},\t//   _videó_, _تہران_, _ziara_,\n  { {0x62902001,0x7dc4503f,0x4682d06f,0x00000000}},\t//   _vakar_, _maximale_, _सहवाग_,\n  { {0xd3958033,0x82002095,0x653680e3,0x00000000}},\t//   _varsa_, _nekih_, _wikipedy,\n  { {0x60b3b0ae,0x4f3a5060,0xdd6ff00a,0x00000000}},\t//   _kriminal, _brancher_, _tramunta,\n  { {0x5f1160c0,0x47a73054,0xa04160e5,0x00000000}},\t//   _kontakta, _partenai, _kontaktn,\n  { {0xbc1a70d2,0x4df0c0db,0x027ef00a,0x00000000}},\t//   _практичн, _کنکور_, _ezines_,\n  { {0x753a901b,0xd273b02c,0xe2fca015,0x00000000}},\t//   _agentliy, _mínum_, _skrivet_,\n  { {0x13ea701a,0x429180b0,0x9636406f,0x00000000}},\t//   _muntu_, _daran_, _सुनहरे,\n  { {0x6d50706b,0x0fe03092,0x667a50ac,0x00000000}},\t//   _मुंगेर, _sadistic_, _дагаворн,\n  { {0x33eb909b,0x63872080,0xf3806007,0x00000000}},\t//   _postu_, _egyre_, _korral_,\n  { {0xbf65e09d,0x05b76077,0x63eb909b,0x00000000}},\t//   _автомоби, _finalsty, _testy_,\n  { {0x527f70df,0x3c6160e6,0x329270e7,0x00000000}},\t//   _emango_, _bestuur_, _pasang_,\n  { {0x625a6017,0xf24890d9,0xaf6f500a,0x00000000}},\t//   _fullt_, _vyama_, _aquatics_,\n  { {0x52fce03f,0x2c2cf099,0x6c34f030,0x00000000}},\t//   _dingen_, _bruttó_, _descoper,\n  { {0x82ca9020,0x8d96a03a,0x0378101a,0x00000000}},\t// [120] _grado_, _milliona, _kubanga_,\n  { {0x92b6500c,0xf2c1c00b,0xfc53906b,0x00000000}},\t//   _touche_, _sellega_, _ध्येय_,\n  { {0xb291601a,0xac5bf033,0x85418041,0x00000000}},\t//   _kigali_, _listesi_, _সাংস্ক,\n  { {0x125a5075,0x82d8b020,0xc667909d,0x00000000}},\t//   _ville_, _vedere_, _наверх_,\n  { {0x7f20a051,0xb201907c,0xa2cae0b0,0x00000000}},\t//   _adverten, _assim_, _findet_,\n  { {0xf25a5055,0x620250b4,0xe9849084,0x00000000}},\t//   _tille_, _motivo_, _komisija_,\n  { {0x60e4a06f,0x6290f034,0x02fcc0e8,0x00000000}},\t//   _उड़ीसा, _legal_, _blogue_,\n  { {0x52e59028,0xf27f4012,0xd26c5010,0x00000000}},\t//   _tehnika_, _cienco_, _halos_,\n  { {0xb3f45026,0x1201f044,0xec76606f,0x00000000}},\t//   _sitten_, _artis_, _मुम्बई,\n  { {0x9200200c,0x62918015,0xbde6c0d8,0x00000000}},\t//   _komite_, _varan_, _nájdete_,\n  { {0x43eb80b5,0x82d980b0,0xd00e60cd,0x00000000}},\t//   _sorts_, _waren_, _договоро,\n  { {0xf61f4038,0x92c5305c,0x73eae00f,0x00000000}},\t//   _exposici, _heilige_, _center_,\n  { {0xe3051009,0x42d9f0aa,0xbb03b01d,0x00000000}},\t//   _دوچار_, _gazete_, _herramie,\n  { {0x81ae10e9,0x9e42c0b1,0x82d84033,0x00000000}},\t//   _קולנוע_, _localiza, _ahmet_,\n  { {0xd201a00d,0x787b20c8,0xd6e7b07e,0x00000000}},\t//   _lapin_, _страха_, _вытворча,\n  { {0x125a904f,0x9320d055,0x04d9a009,0x00000000}},\t//   _arall_, _menyre_, _سرینگر_,\n  { {0xec09b006,0xc291e01e,0x429050ea,0x00000000}},\t// [130] _podpora_, _hitam_, _balas_,\n  { {0x478020d2,0x739470e3,0x72e5900a,0x00000000}},\t//   _управлін, _konsa_, _teknika_,\n  { {0x329160eb,0x1268b048,0xd6179001,0x00000000}},\t//   _regalo_, _контакти_, _eurovizi,\n  { {0x13b0e0b1,0x531f000f,0x36d71038,0x00000000}},\t//   _clique_, _special_, _descobri,\n  { {0x8200504f,0x73946032,0x6200401b,0x00000000}},\t//   _talis_, _byose_, _samir_,\n  { {0x4058b072,0x9738304a,0xc72cc06f,0x00000000}},\t//   _електрон, _سيرفر_, _गाज़िय,\n  { {0x8394f03a,0x030990b3,0xd2da5015,0x00000000}},\t//   _priser_, _broblem_, _citera_,\n  { {0x1c6d8096,0x9150a047,0x926c20ec,0x00000000}},\t//   _постоянн, _podstawo, _tokom_,\n  { {0x43575019,0x63eaf031,0x026da061,0x00000000}},\t//   _gerekir_, _faites_, _napon_,\n  { {0x526df00d,0x8638c09d,0xef4af044,0x00000000}},\t//   _autot_, _направле, _perpusta,\n  { {0xc32090ed,0xf03fa00c,0x097ad02e,0x00000000}},\t//   _upaya_, _domestik_, _enthalte,\n  { {0x43f98086,0x950120b2,0x53f8f038,0x00000000}},\t//   _terug_, _especial_, _algun_,\n  { {0xc3860031,0x437b1078,0x0dd4006e,0x00000000}},\t//   _faire_, _naravno_, _האשכול_,\n  { {0xd3f4603a,0x22cae0b0,0xc26d809b,0x00000000}},\t//   _sitter_, _senden_, _karol_,\n  { {0xd29260ee,0x43a2400b,0xbce2705f,0x00000000}},\t//   _strana_, _limpa_, _информир,\n  { {0x4255906b,0x74ef4024,0x72d9b0ef,0x00000000}},\t//   _संमेलन, _спортивн, _beveik_,\n  { {0x1320c019,0x027ee07c,0x73eae052,0x00000000}},\t// [140] _medya_, _quinta_, _renter_,\n  { {0xef40c038,0x4f02c07e,0x7b51c056,0x00000000}},\t//   _subscrip, _школы_, _територі,\n  { {0xf2916020,0xf284609d,0x4e428001,0x00000000}},\t//   _magari_, _безопасн, _kataloge_,\n  { {0x0d2c3008,0x77a61012,0x5200901b,0x00000000}},\t//   _список_, _vietgiai, _sakini_,\n  { {0x717730ac,0x5be5b001,0x62fcf04c,0x00000000}},\t//   _белта_, _kalendor, _begge_,\n  { {0x29851041,0xb38690b5,0x73e7d0a1,0x00000000}},\t//   _জেবতিক, _snart_, _mætti_,\n  { {0x129270f0,0x62484058,0xedad802c,0x00000000}},\t//   _strani_, _homme_, _bandarík,\n  { {0x5ddc2009,0xf25d600a,0xa9dff067,0x00000000}},\t//   _حلقوں_, _divertim, _augusztu,\n  { {0xa3940092,0x1290c059,0xa387f01a,0x00000000}},\t//   _ceist_, _madai_, _ukuri_,\n  { {0xe27f8068,0xa26c50b1,0xcd7d209e,0x00000000}},\t//   _biznes_, _valor_, _مجلات_,\n  { {0x820190f1,0xbbe53001,0x8a8860f2,0x00000000}},\t//   _hasil_, _aksesuar, _moderáto,\n  { {0x926c70d6,0x64a190d5,0xa584a051,0x00000000}},\t//   _genom_, _אדרבה_, _gelegenh,\n  { {0x0290c055,0x42ee604f,0xd97ad009,0x00000000}},\t//   _islame_, _economi_, _خریدنے_,\n  { {0x13959075,0x29e230c0,0xef720001,0x00000000}},\t//   _desse_, _istorija_, _dienoraš,\n  { {0x22ab10f3,0x5e62d01d,0x03eb9031,0x00000000}},\t//   _bandung_, _descarga, _juste_,\n  { {0x6394e062,0xd75aa0f4,0x8290a092,0x00000000}},\t//   _trisha_, _правител, _tobac_,\n  { {0x3af3609a,0x9097c06e,0x212d3024,0x00000000}},\t// [150] _consulte, _האלקטרונ, _сайті_,\n  { {0x027f505e,0xf1c8106e,0x2ef8106e,0x00000000}},\t//   _dienas_, _העיצוב_, _העיסוק_,\n  { {0x93f400d6,0x062b0028,0x2682301d,0x00000000}},\t//   _postat_, _teritori, _accesori,\n  { {0xad47b002,0x327ef02e,0x12fdf032,0x00000000}},\t//   _disposic, _seiner_, _avuga_,\n  { {0xaa76106f,0xe8c6301a,0xf27ec052,0x00000000}},\t//   _नवीनतम, _abaturag, _endnu_,\n  { {0xa2005098,0x401d100c,0x72d9202d,0x00000000}},\t//   _illik_, _kondisyo, _recent_,\n  { {0x01241029,0x1c52c06b,0x125a608b,0x00000000}},\t//   _הרבנים_, _तिथेच_, _urola_,\n  { {0xc25ad0ca,0x06d1c06b,0xc85c106e,0x00000000}},\t//   _duela_, _विडिओ_, _ההזמנה_,\n  { {0xf27f7066,0xbabba073,0x0b2b8096,0x00000000}},\t//   _upande_, _potvrdit, _исследов,\n  { {0x2e0cf009,0x62d81016,0x82fcd01a,0x00000000}},\t//   _بارشکریہ_, _behet_, _rwego_,\n  { {0x69c860f5,0xd3ea006c,0x1b55103f,0x00000000}},\t//   _primaria_, _edite_, _kinderen_,\n  { {0x22026019,0x0291a0f6,0x61ceb0cf,0x00000000}},\t//   _turizm_, _empat_, _välkomme,\n  { {0x8d42d072,0xbc76d063,0x023740bb,0x00000000}},\t//   _інформац, _energii_, _drejte_,\n  { {0xa387804f,0x125a500a,0x727ee03a,0x00000000}},\t//   _torri_, _billi_, _hennar_,\n  { {0xc3cff06c,0x90bab06f,0x72b58031,0x00000000}},\t//   _nouvo_, _गठबंधन, _parce_,\n  { {0x229030b1,0xa2fdf027,0x9b55105a,0x00000000}},\t//   _semana_, _drugi_, _contacta_,\n  { {0x0477a0d2,0x3b0c20db,0xd290b071,0x00000000}},\t// [160] _проекти_, _تاپیک_, _izdaje_,\n  { {0x326c20f7,0xf2d850c9,0xd25a9010,0x00000000}},\t//   _pokok_, _kolem_, _ugali_,\n  { {0xc3946092,0x8d198022,0xf2ada06e,0x00000000}},\t//   _phost_, _различны, _אבטחה_,\n  { {0xf26c1026,0xaaf85031,0x72b57059,0x00000000}},\t//   _johon_, _actuelle, _kuacha_,\n  { {0x1c26c0c8,0xd2fd104d,0x62cad020,0x00000000}},\t//   _природу_, _similar_, _credo_,\n  { {0xb3ead00e,0x33782055,0xe321f088,0x00000000}},\t//   _vieta_, _albania_, _едностав,\n  { {0x446390f8,0xe2018066,0x7301c067,0x00000000}},\t//   _আলাদা_, _muziki_, _apróhird,\n  { {0xc1773056,0xc14750e8,0x9b65b03e,0x00000000}},\t//   _центр_, _desenvol, _utilizar,\n  { {0xb0747052,0x139500ec,0x02fce0cc,0x00000000}},\t//   _redaktio, _vlasti_, _langit_,\n  { {0x9964106f,0x22ca901b,0x0b5ed05f,0x00000000}},\t//   _खतरनाक, _orada_, _храна_,\n  { {0x5640101a,0xa2ca9093,0x58bf300b,0x00000000}},\t//   _abanyarw, _grada_, _nimetatu,\n  { {0xb2005078,0x1840d0f9,0xae327041,0x00000000}},\t//   _volim_, _بخصوص_, _বিষয়ে_,\n  { {0x9225900c,0xb8832037,0x32a690aa,0x00000000}},\t//   _paske_, _фестывал, _araba_,\n  { {0xe2004033,0x1c013064,0x1eb13071,0x00000000}},\t//   _komik_, _prostor_, _prostore_,\n  { {0xa3455062,0xd641c0fa,0x53f1400a,0x00000000}},\t//   _depende_, _втора_, _esportaz,\n  { {0x32ca502c,0x1d7a7060,0xe3a2c0fb,0x00000000}},\t//   _vildi_, _kommende_, _campos_,\n  { {0x23ea7026,0xe2ca700b,0x9290b066,0x00000000}},\t// [170] _hinta_, _hinda_, _badala_,\n  { {0xc68e106e,0x2b56106e,0xc39540d8,0x00000000}},\t//   _שוקולד_, _בשיתוף_, _miesto_,\n  { {0x99b1403f,0xc0114050,0x4f1c1029,0x00000000}},\t//   _producte, _producto, _שפיטאל_,\n  { {0xf291905e,0x73ead09b,0x43f990c0,0x00000000}},\t//   _visas_, _preto_, _visus_,\n  { {0x4273701b,0x62d91047,0x323670dd,0x00000000}},\t//   _güney_, _razem_, _linja_,\n  { {0xc2ca3090,0x2311406b,0xdeab9015,0x00000000}},\t//   _hajde_, _जागृत_, _rekommen,\n  { {0xe2d9e03f,0x722e00ee,0x02ca7054,0x00000000}},\t//   _laten_, _pravidel, _lundi_,\n  { {0x329010df,0xb27f402c,0x8e3270a7,0x00000000}},\t//   _behar_, _prenta_, _kualitas_,\n  { {0xf2919013,0xc9f66067,0xf7cba035,0x00000000}},\t//   _tayari_, _során_, _skupštin,\n  { {0xc951504d,0x4201f095,0x07b79041,0x00000000}},\t//   _associat, _istim_, _ডোমেইন,\n  { {0xc386c040,0xcdf150c0,0xd0cbe035,0x00000000}},\t//   _storie_, _produkta, _отворен_,\n  { {0xd2caf079,0xd14a70b0,0x96956002,0x00000000}},\t//   _maidir_, _kostenlo, _especiai,\n  { {0x92fc7059,0x305810c5,0x92cae016,0x00000000}},\t//   _mengi_, _mieszkan, _vendin_,\n  { {0x83ce9097,0x73ea90b5,0x82fc70a1,0x00000000}},\t//   _prava_, _prata_, _lengi_,\n  { {0x6393c09e,0x9e41e00a,0x13227029,0x00000000}},\t//   _رابطه_, _garantit_, _רעזולטאַ,\n  { {0x92efc00a,0x143100fc,0xf386d076,0x00000000}},\t//   _familja_, _العاده_, _avere_,\n  { {0x52cad0a4,0xdad510f5,0xce36c0ec,0x00000000}},\t// [180] _wtedy_, _restruct, _obrazova,\n  { {0x126df0af,0x139480c2,0x0332f02a,0x00000000}},\t//   _thuoc_, _maksaa_, _caixas_,\n  { {0xa3f98059,0x3e46c001,0x98bed05c,0x00000000}},\t//   _barua_, _kataloga, _ingestuu,\n  { {0x73f9806b,0x2cf610fd,0x626de0e3,0x00000000}},\t//   _suzuki_, _адрес_, _baton_,\n  { {0x83ac1061,0xf26c70d6,0x0386b0fe,0x00000000}},\t//   _éppen_, _honom_, _podria_,\n  { {0x36967054,0x7849e0d2,0x52014028,0x00000000}},\t//   _accessoi, _призначе, _audits_,\n  { {0xb291a055,0x018dd068,0x0262c04a,0x00000000}},\t//   _sipas_, _probleml, _عاشقة_,\n  { {0xc387e0a9,0xa386d076,0x7ad0e009,0x00000000}},\t//   _intre_, _storia_, _کرفیو_,\n  { {0x1f1f3036,0xcc5c5041,0xceb0a053,0x00000000}},\t//   _komunita, _তীব্র_, _diversas_,\n  { {0xb21a504a,0x8c56a012,0x2394d051,0x00000000}},\t//   _مراقبة_, _vietsub_, _meest_,\n  { {0xe17d80d5,0x4485906f,0xc3ea60ca,0x00000000}},\t//   _תירוץ_, _हंगामा, _edota_,\n  { {0xc20ce009,0xf3f4700e,0x9340e051,0x00000000}},\t//   _زیراہتما, _turtas_, _gelegen_,\n  { {0x62c3e085,0x83eae076,0x6ae4304d,0x00000000}},\t//   _корист_, _contro_, _septembe,\n  { {0xee472002,0xa5f39035,0x4290001e,0x00000000}},\t//   _localida, _болести_, _ujian_,\n  { {0x0d868020,0x42d8d046,0x41422037,0x00000000}},\t//   _novembre_, _teledu_, _штраф_,\n  { {0x52da7076,0xe831104a,0x928f101a,0x00000000}},\t//   _essere_, _الظروف_, _urukiko_,\n  { {0xb2dac04b,0x62d82040,0x526c1010,0x00000000}},\t// [190] _können_, _seker_, _bohol_,\n  { {0x127ed001,0x226d8010,0x169bd046,0x00000000}},\t//   _pieno_, _meron_, _gobeithi,\n  { {0x129040e3,0x0249004f,0xeab89085,0x00000000}},\t//   _moman_, _dramor_, _црногорс,\n  { {0x929040c5,0x346520dd,0xff3a20aa,0x00000000}},\t//   _temat_, _referenz, _profilin,\n  { {0xa25a5076,0x122b30a9,0xa84cb084,0x00000000}},\t//   _dalle_, _animale_, _sadarbīb,\n  { {0x8d42d096,0x52fd704b,0x12909040,0x00000000}},\t//   _информац, _fragen_, _plaas_,\n  { {0xc3940092,0xc3bb2002,0x7ffc204a,0x00000000}},\t//   _poist_, _través_, _القيم_,\n  { {0x3c5c105c,0xe2d98049,0xa5879080,0x00000000}},\t//   _bestaan_, _keren_, _horoszkó,\n  { {0x120040a1,0x02d84070,0xfc26d038,0x00000000}},\t//   _komin_, _komen_, _avançada_,\n  { {0x01b64091,0xf3eae06c,0x73c5f009,0x00000000}},\t//   _permessi_, _kontan_, _کالونی_,\n  { {0xf2fc00c6,0x5e563088,0xc39420be,0x00000000}},\t//   _enige_, _настани_, _plkst_,\n  { {0xa101208d,0xb2fd6075,0x23eae061,0x00000000}},\t//   _свята_, _ligger_, _mentes_,\n  { {0xd200c068,0x3249701a,0x42cad0de,0x00000000}},\t//   _nadir_, _ijambo_, _bildet_,\n  { {0xf291c028,0x30d6206e,0x41c4d0ff,0x00000000}},\t//   _divas_, _מבזקים_, _məcəlləs,\n  { {0xadca3024,0x30e3c09d,0x9c0880c8,0x00000000}},\t//   _начальни, _рекоменд, _традициј,\n  { {0x52d98073,0xd9d740e8,0x2cf740a9,0x00000000}},\t//   _beren_, _instalad, _instalar,\n  { {0xf2d99044,0xdaf7b0f5,0xe290d092,0x00000000}},\t// [1a0] _lesen_, _consulat, _plean_,\n  { {0xc2d950ea,0x9111b009,0xb27e004d,0x00000000}},\t//   _deposit_, _سینیٹر_, _being_,\n  { {0xb26c4100,0xb2d87036,0xe27f701b,0x00000000}},\t//   _temos_, _honek_, _fransa_,\n  { {0x3851a0c5,0xd668f0bd,0xa5f1204a,0x00000000}},\t//   _samochod, _присуств, _الشؤون_,\n  { {0xa37fc053,0x4efb2065,0x727ea026,0x00000000}},\t//   _palabra_, _страни_, _mennä_,\n  { {0x92a66101,0x8557d085,0x027f700c,0x00000000}},\t//   _osoba_, _приказ_, _franse_,\n  { {0x02499102,0x6d3790cd,0x82b66103,0x00000000}},\t//   _rasmi_, _бизнис_, _faucet_,\n  { {0x30580029,0x22d10057,0x1b6a9065,0x00000000}},\t//   _דערביי_, _govorim_, _статия_,\n  { {0x9413803e,0xeda810df,0x92cae04e,0x00000000}},\t//   _cristian_, _donostia, _hendes_,\n  { {0x72e97028,0xb1417032,0xe65c50fa,0x00000000}},\t//   _perioda_, _बाबूजी, _елементи_,\n  { {0x127e0036,0xe859f09d,0x128c304a,0x00000000}},\t//   _baino_, _предложе, _الصمت_,\n  { {0xb295c00a,0x029270c0,0xc76fd096,0x00000000}},\t//   _dipartim, _visada_, _изображе,\n  { {0x92cbf049,0x7c17d056,0xa98960af,0x00000000}},\t//   _studi_, _правил_, _chính_,\n  { {0x02d8f03a,0xe2ee90d8,0x72d98031,0x00000000}},\t//   _meget_, _graft_, _prendre_,\n  { {0x67d0c048,0xc3ead0e2,0x0349800a,0x00000000}},\t//   _много_, _siete_, _esperti_,\n  { {0x3c23b0e9,0xf3f4700d,0x9fc0d0be,0x00000000}},\t//   _תרגום_, _lasten_, _literatū,\n  { {0xb7d8c027,0x0d6f3054,0x32ca700c,0x00000000}},\t// [1b0] _današnji_, _commenta, _mande_,\n  { {0x427e00b0,0x22ca7052,0x7200500d,0x00000000}},\t//   _meine_, _lande_, _pelit_,\n  { {0x45d6f092,0x022bb054,0x4e1bb104,0x00000000}},\t//   _forbarth, _chambre_, _chambres_,\n  { {0x53f4606b,0x365ec035,0x7af3c105,0x00000000}},\t//   _portal_, _филма_, _napravit,\n  { {0xc22ac035,0x87e5306f,0x22dc1057,0x00000000}},\t//   _добар_, _आसाराम, _promocij,\n  { {0x5291a087,0x0a15e04c,0xd16c304a,0x00000000}},\t//   _depan_, _forbinde, _الركن_,\n  { {0xce2cc035,0x863f9057,0xff47109a,0x00000000}},\t//   _млади_, _socijali, _comprova,\n  { {0xf634c067,0x5291e0c0,0x2d5ac048,0x00000000}},\t//   _tevékeny, _kitas_, _можем_,\n  { {0xb407c06f,0x3e45d01a,0xf2e62076,0x00000000}},\t//   _योगदान, _bagaraga, _tecnica_,\n  { {0xc3ce90ec,0x038180f5,0x5a93c0bd,0x00000000}},\t//   _pravu_, _prezent_, _можеби_,\n  { {0xb2489106,0xd3958020,0x69db7038,0x00000000}},\t//   _utama_, _verso_, _hipoteca_,\n  { {0xff0a604f,0xd1e2b022,0x8290c107,0x00000000}},\t//   _ddiwedda, _техничес, _ibland_,\n  { {0xffd6c035,0x0f49409a,0x43860108,0x00000000}},\t//   _сигурно_, _propieta, _imirt_,\n  { {0xe2ca7040,0x43eb80c0,0xdc63e058,0x00000000}},\t//   _hande_, _turto_, _entrée_,\n  { {0xf1b5e085,0xeaae601b,0xcaf24071,0x00000000}},\t//   _стандард, _elektron_, _pokrovit,\n  { {0x227e00b0,0x1394f035,0xe291e098,0x00000000}},\t//   _keine_, _smislu_, _sitat_,\n  { {0xd291e0be,0x926c50a9,0x42e8007e,0x00000000}},\t// [1c0] _citas_, _celor_, _праводзі,\n  { {0xbc07304f,0xf201c038,0x42d87028,0x00000000}},\t//   _perthnas, _havia_, _nenes_,\n  { {0x6c6f60d1,0xc3eae0d4,0xd2d8503a,0x00000000}},\t//   _entrada_, _toitim_, _elles_,\n  { {0xc3f8502c,0x4291900c,0xac06f092,0x00000000}},\t//   _telur_, _resan_, _córais_,\n  { {0xc290f099,0x13f8f00a,0x025af028,0x00000000}},\t//   _magas_, _magus_, _bailes_,\n  { {0x1e73c032,0xc25a0092,0x0200c109,0x00000000}},\t//   _फॉन्ट_, _gaile_, _miliwn_,\n  { {0x526c701d,0x541d705c,0x41772085,0x00000000}},\t//   _menos_, _verstaan_, _теста_,\n  { {0x84be00e9,0x1c242027,0xf291f09a,0x00000000}},\t//   _נושאים_, _financir, _estan_,\n  { {0x7c7e0060,0xeeb4e09a,0x23f9e055,0x00000000}},\t//   _carsten_, _diverses_, _ditur_,\n  { {0x227e9012,0x77960027,0xc27ed03d,0x00000000}},\t//   _khang_, _predstav, _trena_,\n  { {0x62d9f05c,0x0010e07f,0x42d9f061,0x00000000}},\t//   _dienste_, _margaíoc, _isten_,\n  { {0x526e6073,0x5369607f,0xb200b014,0x00000000}},\t//   _evropa_, _praghas_, _jedini_,\n  { {0xd9f32071,0xed332025,0xd2d4702b,0x00000000}},\t//   _agencija_, _agencije_, _onsdag_,\n  { {0xba83b005,0x62c0e057,0xaed400be,0x00000000}},\t//   _beginnen_, _poštovan, _salidzin,\n  { {0x23f9e0a7,0xec617007,0xc2fd805c,0x00000000}},\t//   _situs_, _virumaa_, _berge_,\n  { {0xf257209c,0xd2d9e044,0x42d9610a,0x00000000}},\t//   _välja_, _citer_, _segera_,\n  { {0x147a8093,0x108cc096,0xd291407f,0x00000000}},\t// [1d0] _postavlj, _слова_, _cheart_,\n  { {0x222580ba,0x235650c0,0x9bed707c,0x00000000}},\t//   _werke_, _adresas_, _fevereir,\n  { {0x63f8f0e7,0x92259035,0x77185022,0x00000000}},\t//   _bagus_, _tesko_, _контакты_,\n  { {0xe3f02045,0xfb7e6016,0xe712506f,0x00000000}},\t//   _informaz, _profilin_, _आवेदन_,\n  { {0x34652091,0xe20270b4,0xa3a3a05c,0x00000000}},\t//   _internaz, _musica_, _lippe_,\n  { {0x920050a1,0x727ed05e,0x729050a1,0x00000000}},\t//   _allir_, _diena_, _allar_,\n  { {0x72935067,0xc9c84021,0x5201a00d,0x00000000}},\t//   _millió_, _verdiene, _napit_,\n  { {0xad9ac048,0xd2786013,0xe2d840be,0x00000000}},\t//   _статии_, _mbunge_, _domes_,\n  { {0x6fe3d009,0x03ea90a7,0x5459c0b2,0x00000000}},\t//   _لاپتہ_, _suatu_, _objetivo_,\n  { {0x1331b001,0xc2d85075,0x8478708d,0x00000000}},\t//   _diskusij, _eller_, _наступна,\n  { {0x6fc11001,0x315da038,0xf2fcd0d9,0x00000000}},\t//   _apdovano, _actuacio, _mbegu_,\n  { {0xf255406f,0xd3ff2027,0x23067056,0x00000000}},\t//   _विधेयक, _planinsk, _експерим,\n  { {0x2291e033,0xfbf38038,0x407a3067,0x00000000}},\t//   _kitap_, _celebrac, _csütörtö,\n  { {0xcf2dc01e,0xfaf15029,0xb2efb07f,0x00000000}},\t//   _kepentin, _לעבאוויט, _cúirte_,\n  { {0x927b40b1,0xa201f0c0,0xd27f702c,0x00000000}},\t//   _comentár, _muzika_, _standa_,\n  { {0xd6a3007f,0xf3f46030,0x34001008,0x00000000}},\t//   _aistrith, _martie_, _песня_,\n  { {0x0290c039,0xc3940066,0xbc67e09e,0x00000000}},\t// [1e0] _dodaj_, _ofisi_, _سرطان_,\n  { {0x63ea6064,0x28a9210b,0xd2a6610c,0x00000000}},\t//   _proti_, _stratégi, _osobe_,\n  { {0xfae30007,0x15f9104a,0xd897104a,0x00000000}},\t//   _postimee, _التلفزيو, _قريبا_,\n  { {0xf25a90bf,0xda749024,0xa358a06b,0x00000000}},\t//   _hvala_, _департам, _umugore_,\n  { {0xc27ee031,0x421b9009,0xd7def06b,0x00000000}},\t//   _donner_, _سکریپشن_, _गायकवा,\n  { {0x127ee00c,0x170ba06e,0x6cf7506b,0x00000000}},\t//   _konnen_, _ההבדל_, _वादग्र,\n  { {0xe212b00c,0x02d98007,0x1201800b,0x00000000}},\t//   _mache_, _parem_, _parim_,\n  { {0x0248b064,0x6fc3500b,0x92d87050,0x00000000}},\t//   _chemie_, _horoskoo, _tener_,\n  { {0xc2645094,0x37b4d0df,0xa6679042,0x00000000}},\t//   _skulle_, _leheneng, _त्रस्त,\n  { {0xedd2d05b,0x06bbb009,0xd762d0a6,0x00000000}},\t//   _стала_, _مفاہمت_, _става_,\n  { {0xd368a0e6,0x628390a4,0xc2cad046,0x00000000}},\t//   _vergeet_, _poznań_, _credu_,\n  { {0xf8879029,0xac93d009,0x09e820b0,0x00000000}},\t//   _בעסטע_, _جاپان_, _impressu,\n  { {0xd3446073,0x597e2018,0xbe2bf02c,0x00000000}},\t//   _licence_, _групи_, _laugarda,\n  { {0x3c891090,0x2f2450af,0xd4f4b0b1,0x00000000}},\t//   _различит, _ngách_, _acompanh,\n  { {0x8365b06f,0x427f40d9,0x7739c038,0x00000000}},\t//   _मुरैना, _huenda_, _esportiv,\n  { {0x27b260b1,0x9f24d080,0xf27ed00a,0x00000000}},\t//   _consegui, _legalább_, _tieni_,\n  { {0x31ab7020,0x1292705c,0x3c694073,0x00000000}},\t// [1f0] _commenti_, _marais_, _kultury_,\n  { {0xd3eb7038,0xe2d85077,0xe2d9a0b2,0x00000000}},\t//   _quatre_, _telex_, _papel_,\n  { {0x22918033,0xcfc23009,0x62ed4050,0x00000000}},\t//   _biraz_, _مایوس_, _posible_,\n  { {0x53a240b2,0x926c110d,0x927e0059,0x00000000}},\t//   _campo_, _mohou_, _haina_,\n  { {0xb7552042,0xedc21010,0x9290a059,0x00000000}},\t//   _कनिष्ठ, _panitika, _majaji_,\n  { {0x5a26d009,0xd79b20d2,0xc26c9006,0x00000000}},\t//   _شاہراہ_, _автором_, _škoda_,\n  { {0x9394900a,0xf7131088,0x4291101a,0x00000000}},\t//   _blast_, _републик, _gacaca_,\n  { {0x227ed026,0xe17d906e,0xc5a79041,0x00000000}},\t//   _vuonna_, _בישול_, _ভৌগলিক,\n  { {0xd3949057,0xf2d9c02d,0xc29050a7,0x00000000}},\t//   _vlast_, _level_, _dolar_,\n  { {0x3316f036,0x034a20c8,0xc1c31056,0x00000000}},\t//   _baizik_, _сиромашн, _доходи_,\n  { {0xbb82210e,0x309c1041,0x72014062,0x00000000}},\t//   _تخریب_, _মাসুদ_, _undies_,\n  { {0x925a50b0,0xf2cb808c,0x2a77a032,0x00000000}},\t//   _hallo_, _burda_, _मूलभूत,\n  { {0xf236c0bb,0x7387704f,0x83ebf0c2,0x00000000}},\t//   _madje_, _siarad_, _uutta_,\n  { {0x824980e5,0x929250b3,0xdb458058,0x00000000}},\t//   _firmy_, _neuadd_, _propriét,\n  { {0xc2905092,0xa248c0e6,0x5387f093,0x00000000}},\t//   _solas_, _jammer_, _sutra_,\n  { {0xb2005070,0xbc5e304f,0x81d9a0ae,0x00000000}},\t//   _polis_, _castell_, _republik_,\n  { {0x95fc910f,0x243e207e,0x55872009,0x00000000}},\t// [200] _प्रथम_, _даўно_, _قارئین_,\n  { {0xc27e901a,0xb27ed05e,0x49a960d2,0x00000000}},\t//   _imana_, _dienu_, _професій,\n  { {0x226c102e,0xe0e2b0d0,0x58b53009,0x00000000}},\t//   _schon_, _poznaval, _گوجرانوا,\n  { {0x635490cc,0x2ef51053,0xa5b780b7,0x00000000}},\t//   _rodents_, _telefóni, _لینوکس_,\n  { {0x7f2dc0e4,0x7032103e,0xf3ac701d,0x00000000}},\t//   _differen, _tratamen, _grupos_,\n  { {0xa27ff04c,0xd6d2309d,0x03ce9071,0x00000000}},\t//   _grund_, _инструкц, _pravi_,\n  { {0xd52eb02a,0x8512006e,0xf4a900df,0x00000000}},\t//   _respecto_, _תחבורה_, _pasahitz,\n  { {0x42918001,0xcdf4305f,0x12d9b109,0x00000000}},\t//   _gerai_, _регионал, _ddweud_,\n  { {0xc349200a,0x2316001b,0x76c5c009,0x00000000}},\t//   _diversi_, _faizi_, _نوٹسز_,\n  { {0x3136d04a,0xe3436020,0x4db32092,0x00000000}},\t//   _مراقب_, _livello_, _leanúnac,\n  { {0xb386602c,0x998e00c8,0x9f116002,0x00000000}},\t//   _hvort_, _нашим_, _contrata,\n  { {0xf3a72096,0x56186095,0x9236c007,0x00000000}},\t//   _другой_, _naslovni, _hiljem_,\n  { {0xe2d98035,0x55c8307e,0x02fcc110,0x00000000}},\t//   _pored_, _значна_, _blogga_,\n  { {0x1fd630ce,0xa2d9e016,0x92ca710b,0x00000000}},\t//   _تفعيل_, _veten_, _wanda_,\n  { {0x826d10fe,0xad879096,0x93eb901d,0x00000000}},\t//   _escola_, _размер_, _gusta_,\n  { {0xa27ff012,0x9394d016,0x807440be,0x00000000}},\t//   _trung_, _pjese_, _kalendār,\n  { {0xa27ed051,0x1a74807f,0x529180cc,0x00000000}},\t// [210] _dient_, _ranganna_, _sarap_,\n  { {0x00a61029,0xb394d087,0x0d9900aa,0x00000000}},\t//   _עסקנים_, _proses_, _reklamla,\n  { {0x3106d032,0xd3959015,0x8874108b,0x00000000}},\t//   _चौकशी_, _dessa_, _baliabid,\n  { {0xa2ca000b,0xbfb2c04a,0xf4e2f041,0x00000000}},\t//   _saidi_, _ندعوك_, _আলবাব_,\n  { {0x28d6d036,0x52df10a1,0xe2d8c111,0x00000000}},\t//   _estrateg, _menning_, _moden_,\n  { {0x6f1e10aa,0x82926094,0xb706008d,0x00000000}},\t//   _kendisin, _harald_, _украінск,\n  { {0xb37b00cc,0x4f6d4028,0x4a4ec112,0x00000000}},\t//   _paraiso_, _pasaules_, _директно_,\n  { {0x74fa5008,0x60fe5024,0x49d5906e,0x00000000}},\t//   _программ, _програми_, _מושלם_,\n  { {0xad9880df,0xb22ac037,0x42732113,0x00000000}},\t//   _publikoa, _годам_, _tänne_,\n  { {0xb201b01d,0x9c07a08d,0xf3eb70d4,0x00000000}},\t//   _enviar_, _навошта_, _beatvn_,\n  { {0xdd6fc094,0x923e9067,0xa394e001,0x00000000}},\t//   _elementa, _termék_, _maisto_,\n  { {0x13da60b7,0x1749e0ab,0xc2cae094,0x00000000}},\t//   _فعالیت_, _размишља, _landet_,\n  { {0x42fd801b,0x1f81f05f,0x427eb052,0x00000000}},\t//   _vergi_, _германиј, _odense_,\n  { {0x53eab0a2,0x827f00e4,0x3608600d,0x00000000}},\t//   _ndetse_, _thanks_, _normaali,\n  { {0x76e8b018,0x1d9e3027,0xf3eb9015,0x00000000}},\t//   _характер, _baterije_, _sista_,\n  { {0x89e86063,0x187a702f,0x1e6220a9,0x00000000}},\t//   _samozřej, _затворен, _imobilia,\n  { {0xcf7aa09e,0x652900e3,0xbe466002,0x00000000}},\t// [220] _افتتاح_, _definisy, _finalida,\n  { {0x92d9110b,0xa200c114,0x227e6104,0x00000000}},\t//   _reklamy_, _hodin_, _avons_,\n  { {0xbdb4a0d2,0x257740b2,0x49ebd02b,0x00000000}},\t//   _необхідн, _distrito_, _undersøg,\n  { {0x8fe00041,0x329260ff,0x72572007,0x00000000}},\t//   _প্রমাণ, _israil_, _jälle_,\n  { {0x2f20e00a,0xb3bbc009,0x5fe8b06b,0x00000000}},\t//   _attenden, _اسٹاک_, _साहाय्,\n  { {0x8394e060,0xd200f03f,0x425b0059,0x00000000}},\t//   _hansen_, _manier_, _maalum_,\n  { {0x02cf8101,0x92ca50df,0xc3c08009,0x00000000}},\t//   _podobne_, _talde_, _رینجرز_,\n  { {0xceb33115,0x9378d0aa,0x0202600a,0x00000000}},\t//   _autohton, _tamamen_, _ferita_,\n  { {0x1aaa70c8,0xb378e10a,0x32eb20c5,0x00000000}},\t//   _председн, _halaman_, _dopiero_,\n  { {0xe7899048,0xf29e0092,0xb290c010,0x00000000}},\t//   _неделя_, _téacs_, _malaki_,\n  { {0x31772037,0xc3478036,0x11972116,0x00000000}},\t//   _нехта_, _inkesta_, _koncerty_,\n  { {0x5fe7e008,0x2c45b0ac,0x72d8001d,0x00000000}},\t//   _пароль_, _рублёў_, _quien_,\n  { {0xea58a10b,0x525ad00b,0x23ea2055,0x00000000}},\t//   _licencia_, _selles_, _fakti_,\n  { {0x5ceed090,0xe2b49117,0x5201e0aa,0x00000000}},\t//   _града_, _inace_, _tatil_,\n  { {0x625a2093,0xd2eee060,0xa28710e0,0x00000000}},\t//   _rekla_, _kaffe_, _شہداء_,\n  { {0xb5ef300d,0xe93f300d,0xcf8f300d,0x00000000}},\t//   _kommenti, _kommentt, _kommento,\n  { {0xf57f304a,0x9397404e,0xb200705c,0x00000000}},\t// [230] _أصبحت_, _samarbej, _junie_,\n  { {0x127e0046,0x146f409e,0xa25a5031,0x00000000}},\t//   _maint_, _استعداد_, _salle_,\n  { {0x22494026,0xfc537071,0xb290c118,0x00000000}},\t//   _hieman_, _dostava_, _modal_,\n  { {0x7273c027,0x85ee3002,0x08cc106e,0x00000000}},\t//   _nepravil, _fundació, _באוקטובר_,\n  { {0xc2c6b10c,0x235f3059,0x827d0006,0x00000000}},\t//   _mislite_, _mengine_, _materiál,\n  { {0xd236d061,0xd98b6027,0x4ecda055,0x00000000}},\t//   _ideje_, _prehrana_, _komision,\n  { {0x4224f00e,0x22ca708b,0x0a0f6014,0x00000000}},\t//   _vaikus_, _jende_, _stranica_,\n  { {0xec56b027,0xe27e70c6,0xe305c0f9,0x00000000}},\t//   _kartice_, _denne_, _دورات_,\n  { {0x427ef020,0x63eb9027,0x3ed4e0c0,0x00000000}},\t//   _quindi_, _listo_, _socialin,\n  { {0xb2b4000f,0x127e4059,0xa9dcc0c5,0x00000000}},\t//   _price_, _namna_, _zabezpie,\n  { {0x2af0b119,0x0c5ec035,0x3ea5b036,0x00000000}},\t//   _الحديث_, _smatram_, _bestalde_,\n  { {0x8387e030,0x3d6fc0b7,0x7098006e,0x00000000}},\t//   _intra_, _احداث_, _התרבות_,\n  { {0x62fe7049,0x156dd072,0x02ca7052,0x00000000}},\t//   _target_, _норматив, _hende_,\n  { {0xe27e6012,0x8afd80bb,0xf236911a,0x00000000}},\t//   _phong_, _intervis, _imaju_,\n  { {0x143ec08f,0x6b17c09d,0x12d94005,0x00000000}},\t//   _разни_, _раздел_, _tweede_,\n  { {0x02d8f04f,0xd394d0d6,0xf201e04e,0x00000000}},\t//   _neges_, _kanske_, _altid_,\n  { {0xb267c009,0xa7b870c5,0x0ebca047,0x00000000}},\t// [240] _ایسوسی_, _regulami, _publiczn,\n  { {0x925a40d6,0xada8d038,0x76bc204a,0x00000000}},\t//   _gamla_, _activita, _لتحميل_,\n  { {0x452a006e,0xbf17311b,0xcc22f09b,0x00000000}},\t//   _הכתבות_, _perdagan, _skupiny_,\n  { {0xc224911c,0x8e1c9043,0xe3ead0d8,0x00000000}},\t//   _lekker_, _interaha, _sveta_,\n  { {0x0200f04f,0x522470c5,0x654ce037,0x00000000}},\t//   _megis_, _rynku_, _дагэтуль_,\n  { {0x93aab02d,0xcf9ab00f,0xe375f017,0x00000000}},\t//   _service_, _services_, _starfsem,\n  { {0xdbf5a06e,0x42b0e06f,0xf2ca7086,0x00000000}},\t//   _דוגמא_, _ग्रुप_, _vindt_,\n  { {0x22d8d05c,0x6291805c,0xc4999035,0x00000000}},\t//   _speel_, _veral_, _приближа,\n  { {0x52a700d1,0x7394e0b5,0x55b680d2,0x00000000}},\t//   _acabar_, _ganska_, _партії_,\n  { {0xdcec006e,0x427e9044,0x76bc006e,0x00000000}},\t//   _להשקיע_, _klang_, _להשאיר_,\n  { {0x02da6010,0xa2ca706c,0xc34c706b,0x00000000}},\t//   _karera_, _tande_, _निघून_,\n  { {0x90578067,0xf87cc090,0x124890ed,0x00000000}},\t//   _sziaszto, _поставље, _agama_,\n  { {0xb25a0007,0xc2cb8108,0x81486116,0x00000000}},\t//   _teile_, _airde_, _dostupno,\n  { {0x82ca502c,0x8291811d,0xfa2db022,0x00000000}},\t//   _halda_, _barat_, _посетите,\n  { {0x90499029,0x1124106e,0xe25a503a,0x00000000}},\t//   _אַלײן_, _הטלפון_, _kalla_,\n  { {0x13f4700f,0x32fe602c,0xe2018015,0x00000000}},\t//   _system_, _morgun_, _varit_,\n  { {0x5dc5b0d8,0x5469109e,0x13f96062,0x00000000}},\t// [250] _politike_, _مبارزه_, _siguro_,\n  { {0xd71da0e8,0x48b9a048,0x0d73d05f,0x00000000}},\t//   _normativ, _последни_, _територи,\n  { {0xe290c098,0x31c8106e,0x6ab3211e,0x00000000}},\t//   _allaha_, _לעיצוב_, _مدنظر_,\n  { {0xb337c05f,0x829500ff,0x2651b01d,0x00000000}},\t//   _никола_, _müavini_, _educació,\n  { {0x7394e013,0x7207906e,0x3200510b,0x00000000}},\t//   _maisha_, _רעננה_, _helix_,\n  { {0xd3ea700c,0xeaea70aa,0xfc54905c,0x00000000}},\t//   _sante_, _sistemle, _gauteng_,\n  { {0x9a3e20db,0x57829035,0x9dbe00ba,0x00000000}},\t//   _مستقیم_, _интелект, _verstand_,\n  { {0x73eb9047,0xd27f4055,0xa27e002e,0x00000000}},\t//   _posty_, _brenda_, _seine_,\n  { {0x3e479029,0xbc9800a1,0x1b675053,0x00000000}},\t//   _טעיפס_, _spurning_, _implicar,\n  { {0x7a39c09d,0x22497017,0xd719707c,0x00000000}},\t//   _недели_, _framan_, _conferên,\n  { {0xe1dcc035,0xf395406a,0x198d4035,0x00000000}},\t//   _хлеба_, _mjestu_, _комуналн,\n  { {0xd12d2008,0xf3a37040,0x3d73a035,0x00000000}},\t//   _часто_, _grappe_, _позната_,\n  { {0x6202708b,0x22919028,0x2291e010,0x00000000}},\t//   _musika_, _masas_, _tatak_,\n  { {0xc2461090,0x0d0c5012,0xd94f4057,0x00000000}},\t//   _здрав_, _starspor, _razlicit,\n  { {0x6945a054,0x72acf018,0x120da08f,0x00000000}},\t//   _utilisat, _характер_, _проверка_,\n  { {0x7aeb6035,0xd168206e,0x311da0c8,0x00000000}},\t//   _neprijat, _התוצאה_, _проблеме_,\n  { {0xedcb3003,0xb3fa70cc,0x417da06e,0x00000000}},\t// [260] _مثلاً_, _basura_, _ריקוד_,\n  { {0x3ccdb008,0xec7520b1,0x1394d066,0x00000000}},\t//   _последне, _celular_, _agosti_,\n  { {0x12d820c3,0x53f990a7,0xf468206e,0x00000000}},\t//   _printed_, _kasus_, _התהליך_,\n  { {0x9290c01d,0xf1cc20cc,0x429260c0,0x00000000}},\t//   _todas_, _primetim, _metais_,\n  { {0x8200b0b0,0x52019055,0x1dd930db,0x00000000}},\t//   _medien_, _besim_, _حتماً_,\n  { {0xfc7c8002,0x72365017,0x9b7f2020,0x00000000}},\t//   _existen_, _selja_, _francesc,\n  { {0x0facd012,0x9206104a,0xf5a390bd,0x00000000}},\t//   _truongto, _ناروتو_, _помеѓу_,\n  { {0x102c602f,0x22025068,0xd290f0ba,0x00000000}},\t//   _користењ, _imtina_, _nogal_,\n  { {0xb3ddb036,0x23ced012,0xd2eb1010,0x00000000}},\t//   _normaliz, _raovat_, _soriano_,\n  { {0x03ebf00d,0x92919055,0xc25a504f,0x00000000}},\t//   _mutta_, _kesaj_, _wella_,\n  { {0xdb5bf052,0x56154029,0x8236502c,0x00000000}},\t//   _pedersen_, _סטאטיסטי, _telja_,\n  { {0xfd45e038,0x829190b9,0x1eb16002,0x00000000}},\t//   _competic, _casas_, _externas_,\n  { {0x9369211f,0x52bf10b7,0x52918070,0x00000000}},\t//   _bloggar_, _املاک_, _paras_,\n  { {0x73ea007f,0x32ea308f,0x34724027,0x00000000}},\t//   _maith_, _употреба_, _navedeno_,\n  { {0xc2b1d020,0x824a7038,0x2f5d3120,0x00000000}},\t//   _vendita_, _normes_, _opravdan,\n  { {0x8143b0b0,0xe3cef099,0x62d8c0e8,0x00000000}},\t//   _innerhal, _privit_, _podes_,\n  { {0x82d8b03f,0x7c51c064,0x1c02b012,0x00000000}},\t// [270] _andere_, _kultura_, _jetstar_,\n  { {0x7f761121,0x326d90bb,0xd3121054,0x00000000}},\t//   _שייכות_, _besoj_, _membres_,\n  { {0x520190aa,0x7f3ac027,0x39803041,0x00000000}},\t//   _resim_, _pregledn, _পারতাম,\n  { {0x927f7122,0x92b5804f,0xd2d46054,0x00000000}},\t//   _uganda_, _merch_, _jardin_,\n  { {0x12918036,0x83ea30d8,0x9b0bf022,0x00000000}},\t//   _berak_, _tejto_, _страны_,\n  { {0x61dc10ac,0x72a7c08d,0x7720106e,0x00000000}},\t//   _альбо_, _такога_, _במגוון_,\n  { {0x1386011f,0xd2fce106,0xc8f45056,0x00000000}},\t//   _meira_, _tangan_, _телефонн,\n  { {0x82ca70a3,0x3e2cc05f,0x3278601b,0x00000000}},\t//   _ganda_, _влада_, _olunan_,\n  { {0xa292000c,0x62b5203f,0x9eb6c08f,0x00000000}},\t//   _separe_, _succes_, _профила_,\n  { {0x3be7400a,0x2b07c0c8,0x1487c035,0x00000000}},\t//   _direttor, _видели_, _видела_,\n  { {0x73463040,0xe49b20c5,0xbbefb123,0x00000000}},\t//   _kinders_, _ogranicz, _pardubic,\n  { {0x727f8124,0xf26c50a3,0x1061c0b7,0x00000000}},\t//   _mirna_, _bilog_, _کنسرت_,\n  { {0xe25a500d,0x8d1e201a,0x8ec330b2,0x00000000}},\t//   _kello_, _jenoside_, _anuncian,\n  { {0x426c90e5,0xd1776032,0x12e3d00c,0x00000000}},\t//   _škola_, _जर्सी_, _avantaj_,\n  { {0x0d62c009,0xa27e3055,0x7682806f,0x00000000}},\t//   _ردعمل_, _bejne_, _दिमाग_,\n  { {0x9387401b,0xab0f4002,0x4528706c,0x00000000}},\t//   _enerji_, _resposta_, _aplikasy,\n  { {0xa386007c,0x5a8e206e,0x72895039,0x00000000}},\t// [280] _feira_, _בוואלה_, _kliknij_,\n  { {0x7249810b,0x46c28027,0xb543f01b,0x00000000}},\t//   _forme_, _organizi, _komissiy,\n  { {0x427f0079,0xe7b59011,0x927c604e,0x00000000}},\t//   _leanas_, _moisturi, _forskell,\n  { {0x1a5ca00e,0x8200b071,0xbf980029,0x00000000}},\t//   _kolegija_, _medije_, _צענזור_,\n  { {0xa2b58031,0x4394e031,0x926cc0a4,0x00000000}},\t//   _merci_, _maison_, _pomocy_,\n  { {0x5386d02c,0xc27e00ba,0xdc4930d2,0x00000000}},\t//   _hvers_, _klink_, _харківсь,\n  { {0x153c3054,0x83a24076,0xa2b5700c,0x00000000}},\t//   _recherch, _tempo_, _chache_,\n  { {0xa2d98125,0xac05f00d,0x00000000,0x00000000}},\t//   _okres_, _torstai_,   ,\n  { {0x82d8e058,0xd34450c9,0x82bc7027,0x00000000}},\t//   _effet_, _recenze_, _gledano_,\n  { {0x72ca702c,0x63ea9083,0x6f960029,0x00000000}},\t//   _senda_, _imati_, _מיטלען_,\n  { {0x8224001a,0xc27e50f9,0x040ae0d2,0x00000000}},\t//   _ariko_, _مستقلة_, _квітня_,\n  { {0xfacde048,0x72f2206f,0x53f9d109,0x00000000}},\t//   _посещени, _कबीरा_, _rywun_,\n  { {0xff61f098,0xffc56036,0xc2d8b097,0x00000000}},\t//   _çünki_, _autonomo, _budemo_,\n  { {0x318110ce,0xbb78603a,0x7c19f008,0x00000000}},\t//   _العظيم_, _applianc, _предоста,\n  { {0x7ecdd048,0xa598101a,0x93f47055,0x00000000}},\t//   _продажба_, _starbuck, _rastin_,\n  { {0x22e76012,0x0290704f,0x83959126,0x00000000}},\t//   _diendan_, _hunan_, _fosse_,\n  { {0x7291c0aa,0x1ed05009,0x5981f09b,0x00000000}},\t// [290] _devam_, _مشاورت_, _politike,\n  { {0x4cfde008,0x8246d09d,0x826e60bf,0x00000000}},\t//   _последни, _интернет_, _naroda_,\n  { {0xd3dc904f,0x03160084,0x62fc6020,0x00000000}},\t//   _prawf_, _reizi_, _luogo_,\n  { {0x744a30db,0x4f7d607e,0x627ee0c6,0x00000000}},\t//   _نتایج_, _ажыццяўл, _meinte_,\n  { {0x090e80c8,0x00000000,0x00000000,0x00000000}},\t//   _смислу_,   ,   ,\n  { {0x5063d127,0x026ca006,0x12f1e0a4,0x00000000}},\t//   _договор_, _školy_, _pomocą_,\n  { {0xd3eae128,0xf2ca000b,0x62fe705c,0x00000000}},\t//   _kontak_, _veidi_, _kruger_,\n  { {0x825ac040,0x69fd30b1,0xc2916001,0x00000000}},\t//   _willem_, _pagament, _negali_,\n  { {0xf394e051,0xb8dc40a1,0x73998092,0x00000000}},\t//   _mensen_, _spurning, _sásta_,\n  { {0xaef870d5,0xbd31b06f,0xb3b5e0d0,0x00000000}},\t//   _קערפער_, _स्टॉक_, _plovila_,\n  { {0x8484106f,0x6a95c06b,0x8c6a201b,0x00000000}},\t//   _आँखामा, _स्वीका, _sonuncu_,\n  { {0x72480020,0xdb48f096,0x1ae45041,0x00000000}},\t//   _primo_, _версия_, _চেহারা,\n  { {0xf4a4a0c5,0xf5a83036,0xd343006b,0x00000000}},\t//   _najbardz, _klaserak, _तरतूद_,\n  { {0xb2fcf04f,0xe2d91117,0x72caa059,0x00000000}},\t//   _bangor_, _mozes_, _labda_,\n  { {0xf2cae0de,0x23ea0043,0xe4da102f,0x00000000}},\t//   _hunden_, _ifite_, _босна_,\n  { {0xc394e052,0x6291501a,0x22cae0b0,0x00000000}},\t//   _jensen_, _kagame_, _kunden_,\n  { {0x7133d0fd,0x4224e021,0x1239e091,0x00000000}},\t// [2a0] _регистра, _denken_, _formati_,\n  { {0xecd7309e,0xed06e038,0x3e6ae076,0x00000000}},\t//   _اعلام_, _carreter, _cancella,\n  { {0xa25a5054,0xf2d9c038,0x525ad028,0x00000000}},\t//   _belle_, _haver_, _skolas_,\n  { {0xecd7309e,0xba885026,0x8c0d0031,0x00000000}},\t//   _اعمال_, _kokonais, _propose_,\n  { {0xdc74a015,0xb7b78092,0xffbe1055,0x00000000}},\t//   _forumet_, _tairisci, _evolucio,\n  { {0x36ccc01a,0x2c69206a,0xc3f90001,0x00000000}},\t//   _panasoni, _zapravo_, _nebuvo_,\n  { {0xed8c7027,0x52a6d00e,0x4d9d600d,0x00000000}},\t//   _točke_, _globos_, _sunnunta,\n  { {0x9679f07e,0x62fd205a,0x8290f0b0,0x00000000}},\t//   _правасла, _aplicar_, _sogar_,\n  { {0x67cc6060,0xf9845041,0x429180b2,0x00000000}},\t//   _personli, _কদমতলী, _obras_,\n  { {0xd5d53090,0xb24a602e,0xd0b0909b,0x00000000}},\t//   _туризма_, _firmen_, _digitáln,\n  { {0x2ed6805a,0x90438029,0xb5168027,0x00000000}},\t//   _opinions_, _קאַװע_, _frizersk,\n  { {0x82c94002,0xce394050,0xb2e310aa,0x00000000}},\t//   _deporte_, _deportes_, _halinde_,\n  { {0x1255a099,0xfc66c0be,0x0c6e1013,0x00000000}},\t//   _problémá, _protams_, _gharama_,\n  { {0xe2fc902e,0xf2925089,0xcf25b020,0x00000000}},\t//   _frage_, _fetare_, _selezion,\n  { {0x43eae05e,0x690490ac,0x125b6017,0x00000000}},\t//   _lifts_, _сувязі_, _reglur_,\n  { {0x63f40062,0x2181406b,0x62b47129,0x00000000}},\t//   _gastos_, _रहुवे_, _mince_,\n  { {0xe969e037,0xc36c40cb,0xd36aa037,0x00000000}},\t// [2b0] _разгляда, _blogeri_, _канкрэтн,\n  { {0xc25a500b,0xe928805f,0x691a00fa,0x00000000}},\t//   _selle_, _центар_, _последно_,\n  { {0x8200c059,0x7af9900a,0xf94cf090,0x00000000}},\t//   _kuliko_, _shenzhen_, _принципу_,\n  { {0xa291c028,0xbfe00041,0x038d1091,0x00000000}},\t//   _savas_, _প্রমান, _proposti_,\n  { {0x693d304a,0xa37ca0b9,0x63ea00a1,0x00000000}},\t//   _الآخر_, _durante_, _neitt_,\n  { {0x13fa5045,0x2b11b04a,0x325be04d,0x00000000}},\t//   _futuro_, _أمريكا_, _title_,\n  { {0x831640a7,0x78879029,0x225e2036,0x00000000}},\t//   _kembali_, _קעסטל_, _kontseil,\n  { {0xaf294007,0xe2fc705c,0xfc51b044,0x00000000}},\t//   _reporter_, _dinge_, _showbiz_,\n  { {0x1201f013,0x83878016,0x5c670086,0x00000000}},\t//   _lazima_, _marre_, _storing_,\n  { {0x2dc45065,0x5163e033,0x39f3e0d8,0x00000000}},\t//   _европейс, _programl, _programe,\n  { {0xd26de01d,0xb43ec008,0x32a6a017,0x00000000}},\t//   _datos_, _давно_, _pabbi_,\n  { {0xd26e60be,0xa9827073,0xc93c2052,0x00000000}},\t//   _autors_, _možnost_, _sommerfe,\n  { {0x92d9e016,0x92a6201d,0xa3ea712a,0x00000000}},\t//   _vetem_, _nombre_, _tento_,\n  { {0x326e10c6,0xd7271056,0x02f20067,0x00000000}},\t//   _napoli_, _публікац, _mégis_,\n  { {0x8324c01a,0xc9da8020,0x5c34502d,0x00000000}},\t//   _habyarim, _preferit, _standard_,\n  { {0x22fc7059,0x72fea051,0xc201e055,0x00000000}},\t//   _bunge_, _methode_, _ketij_,\n  { {0x53fba0e9,0x9c143009,0x5200c059,0x00000000}},\t// [2c0] _קפיצה_, _سوچنے_, _malipo_,\n  { {0x7394004f,0xc395811f,0x6394e0a9,0x00000000}},\t//   _prism_, _fyrst_, _exista_,\n  { {0x22d9e0ba,0xd8e2f0fd,0x5001e03c,0x00000000}},\t//   _later_, _репутаци, _fotogrāf,\n  { {0x33ea70b9,0x65d9907e,0x62c01055,0x00000000}},\t//   _gente_, _распаўсю, _mëdha_,\n  { {0x73f470b0,0xb651502c,0xe4172041,0x00000000}},\t//   _besten_, _skrifað_, _হারহান,\n  { {0x70743028,0xd29030a7,0xd3730054,0x00000000}},\t//   _komentār, _malang_, _domaine_,\n  { {0xbaea703f,0x92ca70aa,0x75c1404a,0x00000000}},\t//   _bestelle, _bende_, _الربيع_,\n  { {0x89472048,0x76e580c1,0x627e0079,0x00000000}},\t//   _трудно_, _asociaci, _baint_,\n  { {0x3d05109a,0x52267055,0xbace1008,0x00000000}},\t//   _instrucc, _perket_, _поведени,\n  { {0xf248000d,0x3903f029,0xc26de0b5,0x00000000}},\t//   _viime_, _פאָלק_, _dator_,\n  { {0x6c8020bd,0xe4155041,0x8c29301b,0x00000000}},\t//   _вечер_, _উদাহরণ, _versiyas,\n  { {0x762770a8,0x0200f104,0x2290b117,0x00000000}},\t//   _رایانه_, _panier_, _dodaje_,\n  { {0xf3eae012,0x49d22051,0xdb0c1029,0x00000000}},\t//   _dantri_, _geregist, _אלימלך_,\n  { {0x529de071,0x46b2f024,0xd5be20c8,0x00000000}},\t//   _prijava_, _редактор, _кругу_,\n  { {0x08dc50db,0x7262d09e,0x22b47083,0x00000000}},\t//   _ازدواج_, _سابقه_, _sunce_,\n  { {0x4c4e304a,0x358a108f,0x5792904f,0x00000000}},\t//   _بمعنى_, _проблеми, _manteisi,\n  { {0xe29030a3,0x617ed04a,0x7616504f,0x00000000}},\t// [2d0] _nalang_, _أماكن_, _poblogai,\n  { {0xf635806b,0xe2918001,0x12498010,0x00000000}},\t//   _सिंधुद, _geras_, _germs_,\n  { {0x73a3f047,0x130e402d,0xd2c51061,0x00000000}},\t//   _grupa_, _details_, _kellene_,\n  { {0x33f8600c,0x52caf04c,0x93eaf02e,0x00000000}},\t//   _atout_, _sagde_, _sagte_,\n  { {0x3c3e0029,0x32d98074,0x72c47029,0x00000000}},\t//   _צוקונפט_, _keres_, _באשיצן_,\n  { {0x9fab30ee,0x6248d028,0x8109a029,0x00000000}},\t//   _nemovito, _filmas_, _אינגאנצע,\n  { {0xa27f1071,0x52da5001,0x396bc088,0x00000000}},\t//   _razno_, _europos_, _своето_,\n  { {0xa2fb001a,0x4290c02c,0x2b5bc024,0x00000000}},\t//   _toshiba_, _undan_, _сказав_,\n  { {0x92003010,0x986f2025,0xe200401b,0x00000000}},\t//   _galing_, _shoppers_, _kimin_,\n  { {0x43d090b7,0x62b4009a,0xaac45054,0x00000000}},\t//   _علیرضا_, _inici_, _gouverne,\n  { {0x4e73e08e,0xcf246077,0xd2d9e02d,0x00000000}},\t//   _मुफ्त_, _quách_, _water_,\n  { {0xc3eae005,0xa868c04a,0xca1b906b,0x00000000}},\t//   _aantal_, _ليبيا_, _कांबळे,\n  { {0x53ebe0d6,0x52d9901d,0x42919002,0x00000000}},\t//   _hitta_, _meses_, _mesas_,\n  { {0x72d9801b,0xb103a06e,0x82910020,0x00000000}},\t//   _aprel_, _לטיול_, _sabato_,\n  { {0x5394d0a9,0xefae108d,0xf25a5033,0x00000000}},\t//   _acest_, _ласка_, _belli_,\n  { {0xa3f9e055,0xe3959020,0x72925093,0x00000000}},\t//   _patur_, _possa_, _ostaje_,\n  { {0xf2ee5084,0x725be02c,0x5394e032,0x00000000}},\t// [2e0] _delfi_, _litla_, _benshi_,\n  { {0xa37f3033,0xc248901a,0x3ba6506b,0x00000000}},\t//   _zamanda_, _inama_, _कलाकार,\n  { {0x42bca0a9,0xe2d980b0,0xe291f012,0x00000000}},\t//   _mondial_, _foren_, _thuat_,\n  { {0x22003087,0x0c140094,0x207d308f,0x00000000}},\t//   _paling_, _gruppen_, _такси_,\n  { {0x5248d095,0x20ea20b7,0x0b23a121,0x00000000}},\t//   _njemu_, _فراوان_, _האדמו_,\n  { {0x327ee040,0xd0d33088,0xcbda6037,0x00000000}},\t//   _kennis_, _власт_, _конкурсе_,\n  { {0x727e90d6,0x526c80a2,0xfc5a700a,0x00000000}},\t//   _bland_, _gukora_, _mentali_,\n  { {0xfc00b001,0x9aeda054,0x49eda002,0x00000000}},\t//   _miestas_, _actualit, _actualid,\n  { {0x0291e093,0x39e4e00b,0xb3fa60c3,0x00000000}},\t//   _petak_, _dokumend, _berupa_,\n  { {0x1249f043,0xe53240d2,0xb2d460cc,0x00000000}},\t//   _nyuma_, _централь, _hardin_,\n  { {0xee47a029,0x2386d01a,0x4f4da029,0x00000000}},\t//   _העלפט_, _mbere_, _היברו_,\n  { {0xd278600c,0x28a4f022,0x8a11800f,0x00000000}},\t//   _tounen_, _отсутств, _departme,\n  { {0x21c9208f,0x23f820e7,0x32d99075,0x00000000}},\t//   _гости_, _hukum_, _leser_,\n  { {0x51b2c0f8,0x03f7e0ac,0x42153009,0x00000000}},\t//   _সাবেক_, _травень_, _کوائف_,\n  { {0x83ea0092,0x72c3712b,0xc3806015,0x00000000}},\t//   _leith_, _poslova_, _corren_,\n  { {0x322b0060,0xfa43b090,0xa3805051,0x00000000}},\t//   _kommune_, _интелиге, _entree_,\n  { {0x22e7600c,0x5f9ac06b,0xeeed70c2,0x00000000}},\t// [2f0] _trennen_, _बहुतां, _toivotta,\n  { {0xe43c5041,0xd291f079,0x33f98067,0x00000000}},\t//   _প্লিজ_, _thuas_, _szórakoz,\n  { {0x72e2506b,0xe9ddc024,0x0b57f0e2,0x00000000}},\t//   _जाणीव_, _оплата_, _kultúra_,\n  { {0xe2fc712c,0xf34880a1,0x3eab1038,0x00000000}},\t//   _bunga_, _netfang_, _galeries_,\n  { {0x197a111e,0xeff21121,0x53454027,0x00000000}},\t//   _تقسیم_, _וחדשות_, _naselje_,\n  { {0x120070f3,0xe201801b,0xa2d6c020,0x00000000}},\t//   _dunia_, _verir_, _secondo_,\n  { {0xa4b39029,0xfc394038,0x32d85064,0x00000000}},\t//   _ברסלב_, _inscripc, _inlet_,\n  { {0xf6397002,0xb386d0d6,0xcc537027,0x00000000}},\t//   _aplicaci, _flera_, _kartica_,\n  { {0x4950b094,0x2abca065,0x2630b049,0x00000000}},\t//   _personer_, _министър_, _personel_,\n  { {0x120fc09e,0x62c6b0ba,0x22ca7036,0x00000000}},\t//   _محترم_, _verlede_, _handi_,\n  { {0x52ca712d,0x9c645059,0x527ed04e,0x00000000}},\t//   _kandi_, _wabunge_, _kroner_,\n  { {0x8f06c09e,0x9386d12e,0x425af079,0x00000000}},\t//   _معروف_, _utorak_, _eagla_,\n  { {0xa27e7015,0x8efba06e,0xe2d8b12f,0x00000000}},\t//   _denna_, _בהכרח_, _budete_,\n  { {0x2201804c,0xce72606f,0x5290703a,0x00000000}},\t//   _skriv_, _जेम्स_, _annan_,\n  { {0x294e1095,0x2224d016,0x84178130,0x00000000}},\t//   _prolazit, _greke_, _presiden_,\n  { {0x83cf10e3,0x2342a02d,0x334360b1,0x00000000}},\t//   _travay_, _general_, _governo_,\n  { {0x3adfb064,0x0760c09e,0x397d1009,0x00000000}},\t// [300] _postavit, _منافع_, _ایگزیکٹو_,\n  { {0x7c5b8057,0x425db001,0x32d8a055,0x00000000}},\t//   _postoji_, _sprendim, _sidomos_,\n  { {0x6d0a4027,0x2bae2048,0xf405208e,0x00000000}},\t//   _odgovore_, _различни_, _एकादशी,\n  { {0x6359e01a,0x73ea0131,0xf25a6007,0x00000000}},\t//   _firefox_, _ayiti_, _poole_,\n  { {0xa24a7070,0xf075d0be,0x1e3cc003,0x00000000}},\t//   _permit_, _materiāl, _مشروط_,\n  { {0x127e7031,0x92d98049,0x2c1d1061,0x00000000}},\t//   _bonne_, _corel_, _csoport_,\n  { {0xc2e3d096,0x6b6f3053,0xf20270a9,0x00000000}},\t//   _оценка_, _natureza_, _masina_,\n  { {0x531710e2,0x78b2a132,0xf3f0b057,0x00000000}},\t//   _fuzzy_, _nejnověj, _bezobraz,\n  { {0x43f8700d,0xec1e109b,0xed246027,0x00000000}},\t//   _minun_, _redaktor, _avanture_,\n  { {0x81e2c08e,0xb4a9600f,0x78a8e07e,0x00000000}},\t//   _विवरण_, _national_, _жніўня_,\n  { {0xa2890031,0x39b73041,0x03f820aa,0x00000000}},\t//   _appartem, _সাবধান, _hukuk_,\n  { {0x62007092,0xa2d9a089,0xcd9d700b,0x00000000}},\t//   _inniu_, _teper_, _tunnista,\n  { {0x35be2065,0x3212b00c,0x129260b0,0x00000000}},\t//   _други_, _peche_, _gerade_,\n  { {0xb25b7007,0x525a5015,0xb1222027,0x00000000}},\t//   _avalda_, _kolla_, _prijavil,\n  { {0x126cd10b,0x9237e0c5,0xa917e08f,0x00000000}},\t//   _ludom_, _chomika_, _градина_,\n  { {0xff155041,0x827ef043,0x2973b06e,0x00000000}},\t//   _মুখোমু, _ibintu_, _ברוטב_,\n  { {0xf34150b0,0xebd1f042,0x8f352041,0x00000000}},\t// [310] _anderen_, _अर्पण_, _গল্পের,\n  { {0x827f70e7,0x8237803b,0xe71f1024,0x00000000}},\t//   _adanya_, _sarja_, _спортсме,\n  { {0x42918050,0x927ed09c,0x53a2d007,0x00000000}},\t//   _horas_, _vaenu_, _hoopis_,\n  { {0xa2d46064,0xd2b21027,0xcb7d309f,0x00000000}},\t//   _studia_, _gradnja_, _finanční_,\n  { {0x22ca7055,0x86cef060,0xff45b041,0x00000000}},\t//   _vendi_, _behandli, _ইদানিং,\n  { {0x73eac061,0xd27f811b,0xb394d0c5,0x00000000}},\t//   _voltak_, _warna_, _prostu_,\n  { {0x7567e029,0x1396601a,0x8c5ed0f0,0x00000000}},\t//   _באַציִונ, _airson_, _kratkim_,\n  { {0x23e00067,0x2bf6a06b,0x426db040,0x00000000}},\t//   _péter_, _प्रथमच, _geword_,\n  { {0xc3cef03a,0x43f8e0ca,0xec36a10b,0x00000000}},\t//   _driver_, _minutu_, _kategóri,\n  { {0xd2fc7013,0x83ea100c,0xa3eb9092,0x00000000}},\t//   _mungu_, _achte_, _casta_,\n  { {0xad292047,0x53949066,0x327f4051,0x00000000}},\t//   _komputer, _siasa_, _dienst_,\n  { {0xe3ea9115,0x38654067,0xa365801a,0x00000000}},\t//   _toate_, _tetejére_, _tangazo_,\n  { {0x02cae051,0x0397c060,0xa2018038,0x00000000}},\t//   _minder_, _medarbej, _morir_,\n  { {0x12a66047,0x025a903a,0x2487606f,0x00000000}},\t//   _osoby_, _skall_, _बिपाशा,\n  { {0x12ed406b,0x52d8f061,0x627f4013,0x00000000}},\t//   _नोटीस_, _engem_, _upendo_,\n  { {0x23a9d027,0x2533106b,0x0202700c,0x00000000}},\t//   _pohvale_, _आजोबा_, _deside_,\n  { {0xc2006079,0x6291c0be,0x426d1012,0x00000000}},\t// [320] _anois_, _nevar_, _socola_,\n  { {0x72cae04b,0x9ecd20a9,0x12ca1091,0x00000000}},\t//   _finden_, _cotidian, _reklami_,\n  { {0x4317802a,0x12afc04a,0xa2006133,0x00000000}},\t//   _marzo_, _نصائح_, _kulit_,\n  { {0xbc76502d,0xb29070d6,0x7200d00e,0x00000000}},\t//   _results_, _annat_, _toliau_,\n  { {0xa2926111,0x528b6064,0x6200c00d,0x00000000}},\t//   _berada_, _pomocí_, _tulisi_,\n  { {0xc030c134,0xac23807c,0x6c76306f,0x00000000}},\t//   _prethodn, _entrevis, _मेट्रो,\n  { {0x18c68041,0x1200e036,0x12c4b02a,0x00000000}},\t//   _উদ্যোগ, _benito_, _premios_,\n  { {0xa3ea9115,0x9b5c40ec,0xb2d900d6,0x00000000}},\t//   _poate_, _političk, _arbete_,\n  { {0xc27f001a,0x7101305f,0x42fc001d,0x00000000}},\t//   _abantu_, _двете_, _amigo_,\n  { {0x53ebe0b0,0x427ff04f,0x9c678043,0x00000000}},\t//   _hatte_, _ymuno_, _gahunda_,\n  { {0xe2cae02e,0xf7a2800c,0x3486e06f,0x00000000}},\t//   _kinder_, _kontribi, _हिरासत,\n  { {0x33940061,0x127ed135,0xf739c002,0x00000000}},\t//   _friss_, _jwenn_, _deportiv,\n  { {0x53a30001,0xfdc5b04f,0xf2b53005,0x00000000}},\t//   _etapas_, _ffrindia, _huidige_,\n  { {0xa3f8700d,0xfa50b041,0x52ca9124,0x00000000}},\t//   _sinun_, _রিজভী_, _mladi_,\n  { {0x7c66c09a,0xa2ca9136,0x5f1e9072,0x00000000}},\t//   _centres_, _ifade_, _основних_,\n  { {0x96fd7022,0x0248302e,0x83ead076,0x00000000}},\t//   _проблемы_, _kommen_, _mentre_,\n  { {0xf3e540f8,0x8f02c037,0xd86a9031,0x00000000}},\t// [330] _চমৎকার, _школе_, _politiqu,\n  { {0x001ee0b3,0x83ea710b,0x748da001,0x00000000}},\t//   _negeseuo, _konta_, _situacij,\n  { {0x93050137,0x03807104,0x82cae055,0x00000000}},\t//   _béarla_, _heures_, _vendet_,\n  { {0xd603b08e,0x72cb004c,0xf386d03a,0x00000000}},\t//   _सुंदर_, _grader_, _flere_,\n  { {0xf25ad028,0x4212b01d,0xfdbca0cc,0x00000000}},\t//   _apollo_, _fecha_, _pilipina,\n  { {0x2aeb308b,0x92ef2138,0xab6380ab,0x00000000}},\t//   _horregat, _meminta_, _rečenica_,\n  { {0x426e609a,0x82d8a00c,0x1c66a060,0x00000000}},\t//   _aprova_, _kiben_, _fortsat_,\n  { {0x95e2f053,0x7478606b,0x0a7e0043,0x00000000}},\t//   _categorí, _हेलिकॉ, _byandits,\n  { {0x13f9a014,0x92fce12c,0x938dc10e,0x00000000}},\t//   _poput_, _fungsi_, _اشخاص_,\n  { {0x87b49041,0xe25af081,0x32d8e08b,0x00000000}},\t//   _আজাইরা, _edildi_, _genero_,\n  { {0xd26e0109,0xb290201b,0x9ad2901d,0x00000000}},\t//   _eisoes_, _imkan_, _contrase,\n  { {0xf290203c,0x5c66d001,0xf40d1088,0x00000000}},\t//   _tikai_, _centras_, _опрема_,\n  { {0xbe57c0ce,0xc127c0bd,0x89b1402a,0x00000000}},\t//   _دردشة_, _работи_, _garantía_,\n  { {0xbb071088,0xfb5c4139,0x3248013a,0x00000000}},\t//   _жители_, _političa, _naime_,\n  { {0x53977009,0xa6b7d0d2,0x62d9a025,0x00000000}},\t//   _غالباً_, _категорі, _koper_,\n  { {0x039580bb,0xe86cf06f,0x8ee92027,0x00000000}},\t//   _kurse_, _गतिविध, _parkiran,\n  { {0x92d8c04e,0x72fcd095,0xf2852012,0x00000000}},\t// [340] _inden_, _bloger_, _vnphoto_,\n  { {0x8c0d700d,0xe20150f0,0x92020047,0x00000000}},\t//   _tampere_, _regije_, _lipiec_,\n  { {0xb486d035,0x029040a9,0x1c536098,0x00000000}},\t//   _имена_, _numai_, _tətbiq_,\n  { {0x93ac60de,0xab6ab0ff,0xca5b70af,0x00000000}},\t//   _gruppe_, _allahın_, _nghênh_,\n  { {0x2c6a108e,0x7305c09e,0x3dab2020,0x00000000}},\t//   _कृष्णा, _اوراق_, _assicura,\n  { {0x03eb9057,0x5224e01c,0x9b72d02f,0x00000000}},\t//   _zasto_, _punkti_, _атина_,\n  { {0xb27e6012,0xb6cf2059,0x32abc02b,0x00000000}},\t//   _joong_, _majadili, _håber_,\n  { {0xf3eb8104,0xd201a13b,0xd2cad031,0x00000000}},\t//   _carte_, _popis_, _vendre_,\n  { {0x0101313c,0xb3ac6103,0x810c006e,0x00000000}},\t//   _свети_, _gruppi_, _להרגיש_,\n  { {0xc101308f,0x12d8c04e,0xe2eb1020,0x00000000}},\t//   _света_, _anden_, _periodo_,\n  { {0x22907061,0x32915059,0x828d4020,0x00000000}},\t//   _annak_, _ingawa_, _appartam,\n  { {0xe1add024,0xa999e095,0x32a06033,0x00000000}},\t//   _користув, _reakcija_, _şubat_,\n  { {0x7ce90095,0xec5ca04d,0xaf6f3002,0x00000000}},\t//   _plastičn, _control_, _demandas_,\n  { {0xfb97f067,0xe2fc904d,0x23eb90b1,0x00000000}},\t//   _regisztr, _image_, _deste_,\n  { {0x1ca6605b,0xd147c065,0xc2257101,0x00000000}},\t//   _журналіс, _написа_, _vlakom_,\n  { {0xc2918073,0xa2d9e03f,0x62da601a,0x00000000}},\t//   _stran_, _beter_, _gereza_,\n  { {0x9e14a0c0,0x9329a088,0xf23780b5,0x00000000}},\t// [350] _telefona, _прегледа, _varje_,\n  { {0x027e901a,0x97113009,0x4c058010,0x00000000}},\t//   _cyane_, _جنازہ_, _toothpas,\n  { {0xc2cb80b2,0xb20200a4,0x825af00c,0x00000000}},\t//   _tarde_, _musisz_, _regle_,\n  { {0xa6df504a,0x36a2c037,0x07b3603c,0x00000000}},\t//   _أسابيع_, _нібыта_, _situācij,\n  { {0x89e3c0bd,0x7851713d,0xc147d096,0x00000000}},\t//   _новата_, _recomend, _написал_,\n  { {0x62007079,0xcc74300a,0x7149b061,0x00000000}},\t//   _minic_, _annulus_, _infotech_,\n  { {0x2c74008e,0xd6edb047,0xf9f670fb,0x00000000}},\t//   _आवश्यक, _finansow, _atrás_,\n  { {0xa3eae061,0x1c50106e,0xdf2ee050,0x00000000}},\t//   _fontos_, _למטייל_, _segurida,\n  { {0xb98b4020,0x902ec024,0x72b520b1,0x00000000}},\t//   _richiest, _назва_, _índice_,\n  { {0x127f0052,0x427ee0b5,0x3e3b20c0,0x00000000}},\t//   _blandt_, _kvinna_, _remontas_,\n  { {0xa96d612c,0x927f700c,0x52d8c05c,0x00000000}},\t//   _komputer_, _chante_, _namens_,\n  { {0xa248c0ba,0x42cae13e,0xca0d607c,0x00000000}},\t//   _sommer_, _bundan_, _computad,\n  { {0x39d3b046,0xa3404038,0xe2cad021,0x00000000}},\t//   _genedlae, _defensa_, _goede_,\n  { {0xd202502a,0x86a88096,0x925ac026,0x00000000}},\t//   _artigo_, _значит_, _millon_,\n  { {0x23eb9051,0xe291e00c,0x4b2ac065,0x00000000}},\t//   _vaste_, _batay_, _основнит,\n  { {0x70c30041,0xe319106b,0x73f46060,0x00000000}},\t//   _সংগীত_, _उज्ज्व, _morten_,\n  { {0x3b6ac05c,0x3b8b90ec,0xd27ad002,0x00000000}},\t// [360] _pretoria_, _ministar, _constell,\n  { {0x6395f00a,0x9349e00d,0xdc7140d9,0x00000000}},\t//   _fluss_, _hotelli_, _maarufu_,\n  { {0x5667808e,0x44b3f029,0x7fc8a02f,0x00000000}},\t//   _नुकसान, _באָבע_, _промовир,\n  { {0x7912e0af,0x32d9c01b,0x3f836006,0x00000000}},\t//   _dântrí_, _sovet_, _otázka_,\n  { {0x18e6207e,0x5f980029,0xbbabd065,0x00000000}},\t//   _частка_, _בעלזער_, _обикнове,\n  { {0xc2d9e02e,0x25abf029,0xae39a0bd,0x00000000}},\t//   _alter_, _עקאָנאָמ, _занимлив,\n  { {0xd2f6213f,0xe347c016,0x729180c0,0x00000000}},\t//   _nadimak_, _menduar_, _vyras_,\n  { {0xdd05500b,0x49f4c0e2,0x72f50012,0x00000000}},\t//   _populaar, _salón_, _vovinam_,\n  { {0x679d8088,0xf290300d,0x6201c0b1,0x00000000}},\t//   _сообраќа, _jumala_, _envie_,\n  { {0x2f9930af,0xcb8c003e,0xcae5b041,0x00000000}},\t//   _nhất_, _judiciar, _আর্থিক,\n  { {0x962a002e,0xafca0140,0xe1e12047,0x00000000}},\t//   _registri, _registro, _oprogram,\n  { {0x73087139,0xe27e901a,0x22d9001a,0x00000000}},\t//   _trebalo_, _abana_, _kubera_,\n  { {0x6e68c0fb,0x327ee092,0x6d30c01d,0x00000000}},\t//   _adiciona, _foinse_, _clasific,\n  { {0x34e34041,0x52d8c0dd,0x225ae0cc,0x00000000}},\t//   _ইকবাল_, _widen_, _drilon_,\n  { {0x12da7038,0xf97e2037,0x998170b2,0x00000000}},\t//   _escolar_, _групы_, _equipame,\n  { {0xd3ead06c,0xa2ca7054,0x72d8c060,0x00000000}},\t//   _montre_, _monde_, _andet_,\n  { {0x9db4309e,0x018930ce,0xa22a805c,0x00000000}},\t// [370] _موضوع_, _مقاطع_, _niemand_,\n  { {0x113bb0d5,0x7154106e,0x2a0c1029,0x00000000}},\t//   _אלזוז_, _בניגוד_, _בפירוש_,\n  { {0xa2d8f0d6,0x82d7d041,0xb200f118,0x00000000}},\t//   _ingen_, _দিনকাল, _ingin_,\n  { {0x02918036,0xb4a820d1,0xe2b4701e,0x00000000}},\t//   _beraz_, _opcional_, _kunci_,\n  { {0x22d87020,0x3c528036,0x7e3d3041,0x00000000}},\t//   _linea_, _kontuan_, _সাতটি_,\n  { {0x43947043,0xf248f0a9,0x72c62024,0x00000000}},\t//   _munsi_, _trimis_, _експерти,\n  { {0x63874017,0x22903059,0x325a0076,0x00000000}},\t//   _hverju_, _kamati_, _utile_,\n  { {0x22918101,0xccd1d088,0x53ead007,0x00000000}},\t//   _teraz_, _особено_, _rootsi_,\n  { {0xae37b036,0xec1f5055,0xadd7304a,0x00000000}},\t//   _bidalita, _perandor, _صفحتك_,\n  { {0xe27ee092,0x227f4051,0x73ea70b1,0x00000000}},\t//   _pointe_, _dienen_, _fonte_,\n  { {0x72ca7033,0xb08a10a6,0xd622009b,0x00000000}},\t//   _kendi_, _навигаци, _otvoreni,\n  { {0x53f4703f,0x22d8f04f,0xa04dc05f,0x00000000}},\t//   _kosten_, _angen_, _врати_,\n  { {0xe200c0aa,0xab7bf010,0xec7d701c,0x00000000}},\t//   _indir_, _pangalan_, _muusika_,\n  { {0x32b490c5,0xb3ebf030,0x43eb8055,0x00000000}},\t//   _praca_, _cauta_, _larta_,\n  { {0xf26d8073,0xe224d001,0x33ead031,0x00000000}},\t//   _strom_, _nieko_, _contre_,\n  { {0xc25ac04e,0x427bc0da,0x73097047,0x00000000}},\t//   _mellem_, _objednáv, _aplikacj,\n  { {0x563290d2,0x9197c035,0x52fab064,0x00000000}},\t// [380] _можуть_, _такође_, _učinit_,\n  { {0x22e3b032,0x028a806f,0xf9b05055,0x00000000}},\t//   _देखील_, _ग्लोबल, _menjëher,\n  { {0xfd70e141,0x57e54056,0x7fd52047,0x00000000}},\t//   _perminta, _актуальн, _materiał,\n  { {0x22b4e142,0xe27f7067,0xc28e5073,0x00000000}},\t//   _muncul_, _tegnap_, _technet_,\n  { {0x93eb000f,0x4942700d,0x5aeed03e,0x00000000}},\t//   _states_, _sellaise, _victorie,\n  { {0x52d8c0ba,0x556f406b,0xda063009,0x00000000}},\t//   _ander_, _सातत्य, _رکھيے_,\n  { {0x627e900c,0x62d8c0c5,0x6bf2b0fd,0x00000000}},\t//   _chans_, _wideo_, _индивиду,\n  { {0x03eb901d,0x22d5a0ff,0xe2a07001,0x00000000}},\t//   _hasta_, _millət_, _klubas_,\n  { {0x2cb8f0ac,0x5d1e201a,0xd369c0a1,0x00000000}},\t//   _запомніц, _genocide_, _tenglar_,\n  { {0x12cac015,0x1386d0b3,0xdf10c027,0x00000000}},\t//   _bilden_, _storio_, _predsedn,\n  { {0xa7544143,0x397f0033,0xef2ed030,0x00000000}},\t//   _política_, _makinele, _pictoria,\n  { {0xfa0ba04f,0x4394912c,0x92920144,0x00000000}},\t//   _asiantae, _biasa_, _porady_,\n  { {0x83737031,0x3476f0af,0x7ed6c06f,0x00000000}},\t//   _demande_, _textilen_, _निपटने,\n  { {0x03960094,0x7b03500d,0x92d250c5,0x00000000}},\t//   _passar_, _prosentt, _wczoraj_,\n  { {0xdd6f209e,0x526cf04f,0x151d3059,0x00000000}},\t//   _احوال_, _digon_, _kuboresh,\n  { {0xb3e550ff,0x42d8f03a,0x0ecbb11b,0x00000000}},\t//   _hətta_, _eigen_, _launchin,\n  { {0xfc90e064,0x134c709a,0x32c89054,0x00000000}},\t// [390] _telefonu_, _juvenil_, _octobre_,\n  { {0xce89c04a,0xfe00f092,0xd63be041,0x00000000}},\t//   _الأكاديم, _fhreasta, _করণীয়,\n  { {0x2236a08f,0x8197c035,0xfb84504d,0x00000000}},\t//   _благодар, _законе_, _transpor,\n  { {0x2a971041,0x08645090,0x02d980df,0x00000000}},\t//   _সপ্তাহ, _универзи, _euren_,\n  { {0x00f1104a,0x01c9208d,0xf3957012,0x00000000}},\t//   _الطعام_, _росту_, _trasua_,\n  { {0x63ea9015,0x72da4012,0x5533c08d,0x00000000}},\t//   _plats_, _fullbox_, _погляд_,\n  { {0x42249035,0x62caf016,0xc3cef0d6,0x00000000}},\t//   _ovako_, _mundur_, _blivit_,\n  { {0x13ea5076,0xfd8100bb,0x698d3001,0x00000000}},\t//   _molti_, _realizua, _įgyvendi,\n  { {0xf3954020,0x238660d6,0x02d8f015,0x00000000}},\t//   _questa_, _stora_, _inget_,\n  { {0x28c35056,0x3ee9d0b0,0xc2907021,0x00000000}},\t//   _генераль, _funktion, _vanaf_,\n  { {0xb2d9f03b,0x6202500a,0x3ea53002,0x00000000}},\t//   _ettei_, _attiva_, _unidades_,\n  { {0xa2d84047,0x13954076,0xdaf56026,0x00000000}},\t//   _numer_, _queste_, _euroopan_,\n  { {0x004dc088,0x35add065,0x92d9f064,0x00000000}},\t//   _прати_, _работата_, _muzeum_,\n  { {0xbf50c0ab,0x5498f067,0xd75d6032,0x00000000}},\t//   _знали_, _lászló_, _गुप्तच,\n  { {0x32cad094,0xc3eb9038,0x7c5c1054,0x00000000}},\t//   _bilder_, _resta_, _gestion_,\n  { {0x73ce8033,0xe386a101,0xa952005c,0x00000000}},\t//   _takvim_, _dobre_, _publisee,\n  { {0xa3eb90a7,0x72ef9027,0x62366095,0x00000000}},\t// [3a0] _pesta_, _kuhinja_, _spoji_,\n  { {0xbf492091,0x5c75506b,0x03f820ed,0x00000000}},\t//   _kompleta, _विक्री, _cukup_,\n  { {0xc3a24031,0xf20800d8,0x8cab90a1,0x00000000}},\t//   _temps_, _informác, _miðvikud,\n  { {0x52e650c6,0x094db051,0x8e6b0095,0x00000000}},\t//   _svenska_, _formulie, _počela_,\n  { {0x51778051,0x08fdd041,0xf4537009,0x00000000}},\t//   _behandel, _ফলাফল_, _مینڈیٹ_,\n  { {0x0eb620bd,0x4601104a,0x103fc01b,0x00000000}},\t//   _систем_, _بنفسك_, _sistemin,\n  { {0xc39670b1,0x23eb900e,0x43f4d09c,0x00000000}},\t//   _cursos_, _rasti_, _lõuna_,\n  { {0x027e5099,0xe25a600b,0x1ac3f041,0x00000000}},\t//   _volna_, _kooli_, _আলোয়_,\n  { {0x0807a041,0x3b8de00a,0xd0270009,0x00000000}},\t//   _বুধবার, _fornitur, _باغیوں_,\n  { {0xa3ea6059,0x82249035,0xffedd088,0x00000000}},\t//   _mtoto_, _svako_, _издание_,\n  { {0x73538047,0xb3ebf0b8,0x5be9a04a,0x00000000}},\t//   _produkcj, _leute_, _جرينتش_,\n  { {0xd290111d,0xb20180a9,0xf387e0a9,0x00000000}},\t//   _bahan_, _scris_, _catre_,\n  { {0xd2fc9060,0xac60509b,0x0286e053,0x00000000}},\t//   _fragt_, _augusta_, _paradigm,\n  { {0xc62a1088,0x2e387033,0x81ad304a,0x00000000}},\t//   _организи, _galatasa, _البطن_,\n  { {0xc33d30b7,0x174c304a,0xf4d7204a,0x00000000}},\t//   _ایشان_, _العفو_, _برمجة_,\n  { {0x72cae086,0xb2002138,0x37d0c035,0x00000000}},\t//   _vinden_, _makin_, _многи_,\n  { {0x426e605e,0xa200201b,0x7b6210b5,0x00000000}},\t// [3b0] _parole_, _lakin_, _publicer,\n  { {0x22fc7094,0x2b5bf04e,0x5224b016,0x00000000}},\t//   _lange_, _andersen_, _dicka_,\n  { {0x525bf0fb,0xb68cc06f,0x62e5e0df,0x00000000}},\t//   _paulo_, _बौछार_, _gainera_,\n  { {0x22a770e8,0x629180c5,0x8838f065,0x00000000}},\t//   _viable_, _coraz_, _проектир,\n  { {0x43019115,0x5200200d,0x6ef7e041,0x00000000}},\t//   _trebuie_, _takia_, _সাইফুর,\n  { {0xb9403009,0x0278606b,0x41b36041,0x00000000}},\t//   _اپريل_, _umuntu_, _রাখেন_,\n  { {0x7245810d,0x4fc7c09d,0x72494045,0x00000000}},\t//   _rámci_, _дизайн_, _premio_,\n  { {0x9f25b0b1,0x17a2008b,0xef32301a,0x00000000}},\t//   _qualquer_, _interesg, _amafaran,\n  { {0x286d7050,0xed9d80a4,0x49c510dd,0x00000000}},\t//   _personas_, _recenzje_, _intestat,\n  { {0xdeb780b4,0x72ad109e,0x2f6b2002,0x00000000}},\t//   _presente_, _کلمات_, _horarios_,\n  { {0xdc72c001,0xd38690e7,0x92a780e8,0x00000000}},\t//   _sportas_, _utara_, _verbo_,\n  { {0x63eb9057,0x829270a1,0x23f460e3,0x00000000}},\t//   _nesto_, _gerast_, _mouton_,\n  { {0x226e603e,0x2280b0e3,0xb2009030,0x00000000}},\t//   _parola_, _diskite_, _trait_,\n  { {0x16840029,0x6e395054,0x373e0008,0x00000000}},\t//   _אנפאנג_, _localisa, _подготов,\n  { {0x42c7b0b1,0x63877092,0x5b3a20db,0x00000000}},\t//   _vídeo_, _bearta_, _برخلاف_,\n  { {0x317e0008,0x73877092,0x5fd860ff,0x00000000}},\t//   _положени, _cearta_, _keçən_,\n  { {0x0b04f00d,0x74102041,0x67cf1015,0x00000000}},\t// [3c0] _viestist, _ফারহান, _dessutom_,\n  { {0x520160a2,0xc2ee006e,0xa33a1088,0x00000000}},\t//   _kugira_, _נונסנס_, _провинци,\n  { {0xac290072,0xf3ea707c,0xd380601a,0x00000000}},\t//   _пропозиц, _conta_, _uburyo_,\n  { {0xe987006b,0xd25b9071,0x4c61b01a,0x00000000}},\t//   _देशमुख, _geslo_, _akarere_,\n  { {0x2248c075,0xd9bf402c,0xe07a405f,0x00000000}},\t//   _kommer_, _fundarge, _временск,\n  { {0x7248d06a,0x84929029,0xf2bd606f,0x00000000}},\t//   _prema_, _אינגאנצן_, _पुरुष_,\n  { {0x6312104d,0x43ea6017,0x0493e0d2,0x00000000}},\t//   _members_, _flott_, _стратегі,\n  { {0xb4e80029,0xe2026007,0x28dc401a,0x00000000}},\t//   _טערמין_, _aprill_, _umuryang,\n  { {0x52027068,0x628cd04a,0xa3f8a0d3,0x00000000}},\t//   _sosial_, _كلامك_, _gedung_,\n  { {0xb290c054,0x430f3083,0x62b55015,0x00000000}},\t//   _jamais_, _roditelj, _precis_,\n  { {0x3386d028,0xb909207e,0x0386c00b,0x00000000}},\t//   _sporta_, _вечара_, _noored_,\n  { {0x94be106e,0xc2cb1097,0x362770c5,0x00000000}},\t//   _רופאים_, _mozda_, _autorski,\n  { {0xf1772088,0xf2c87058,0xf65bf009,0x00000000}},\t//   _вести_, _animaux_, _تنخواہ_,\n  { {0x82910010,0x33959094,0x3267e035,0x00000000}},\t//   _sabado_, _disse_, _мислиш_,\n  { {0x1071801b,0xa2b66031,0xe8c35037,0x00000000}},\t//   _ibrahimo, _marche_, _нелегаль,\n  { {0xd7fcc0d2,0xe38ce037,0xd00b3041,0x00000000}},\t//   _блоги_, _музея_, _চাঁপাই,\n  { {0x531780c9,0xe795607c,0x43eb8094,0x00000000}},\t// [3d0] _verze_, _históric, _verte_,\n  { {0x52da5107,0x4ea2f0ae,0xd27e9012,0x00000000}},\t//   _hotell_, _parlemen, _ebank_,\n  { {0x327f7076,0xb2565042,0x32c38014,0x00000000}},\t//   _quanto_, _निवेदन, _ukoliko_,\n  { {0x23940092,0x70f3a06b,0x80a0704a,0x00000000}},\t//   _naisc_, _भागवत_, _القيام_,\n  { {0x71a72003,0x12002010,0x92904044,0x00000000}},\t//   _ہڑتال_, _sakin_, _laman_,\n  { {0x87a05029,0xd6015034,0xe2015007,0x00000000}},\t//   _התעוררות_, _commerci, _logima_,\n  { {0x72904083,0x32cb8081,0x26953092,0x00000000}},\t//   _odmah_, _yerde_, _fhreagai,\n  { {0x23d05076,0xe473c036,0xd2da602d,0x00000000}},\t//   _perchè_, _lehendak, _reports_,\n  { {0x63869079,0x67a820a9,0x32b4c126,0x00000000}},\t//   _ceart_, _februari, _calcio_,\n  { {0x42ca7020,0x93fac048,0x43960094,0x00000000}},\t//   _mondo_, _вторник_, _passer_,\n  { {0x7cd23041,0x658ed01b,0x8c74806b,0x00000000}},\t//   _ভাইকে_, _akademiy, _एवढ्या,\n  { {0xfff3e027,0xaea7a065,0xeae0504c,0x00000000}},\t//   _nepremič, _интереси_, _sundheds,\n  { {0x03eb90de,0x0387f070,0x927f40b2,0x00000000}},\t//   _beste_, _astro_, _evento_,\n  { {0x3a524003,0x13ebe033,0x0394701b,0x00000000}},\t//   _مصنوعات_, _hatta_, _minsk_,\n  { {0xd2004010,0xc2d8402e,0xdc75206b,0x00000000}},\t//   _namin_, _namen_, _सिग्नल,\n  { {0x63ea710b,0x0208007c,0xf2a69066,0x00000000}},\t//   _konto_, _informát, _klabu_,\n  { {0x2ce6506b,0x027eb125,0x43eb70b9,0x00000000}},\t// [3e0] _फोटोगॅ, _jednom_, _cuatro_,\n  { {0xd29180b9,0x06e8b08f,0x62d80015,0x00000000}},\t//   _otras_, _гарантир, _asien_,\n  { {0x4404b0af,0x1a5b70af,0x11983035,0x00000000}},\t//   _nhuộm_, _nghành_, _потребна_,\n  { {0x03420033,0x6c2be0ab,0xf200a0ad,0x00000000}},\t//   _gereken_, _ставили_, _ambil_,\n  { {0xf201f0bf,0x00c9504a,0x6386602d,0x00000000}},\t//   _jezika_, _وبعدها_, _store_,\n  { {0x402e102d,0xaa3c706b,0x85a0c041,0x00000000}},\t//   _conditio, _बहुजन_, _পাবলিক,\n  { {0x22da70b5,0xf224e145,0x1f5d10ff,0x00000000}},\t//   _adress_, _bankas_, _kitabxan,\n  { {0x51e7306f,0xe2d8c027,0x321c906b,0x00000000}},\t//   _आखिरी_, _izleti_, _सोहळा_,\n  { {0x1e47a146,0xc3e44025,0x7fc43048,0x00000000}},\t//   _העלפן_, _diplomsk, _клетки_,\n  { {0x73869079,0x419580be,0x8200d08b,0x00000000}},\t//   _fearr_, _rezultāt, _ideia_,\n  { {0x03eb9031,0x4236d083,0x852d613d,0x00000000}},\t//   _reste_, _svojoj_, _completo_,\n  { {0x0f783085,0xcff7906e,0x630ed01d,0x00000000}},\t//   _текста_, _בעתיד_, _tambien_,\n  { {0x33a3f02c,0xe3eb9030,0xf2fcd036,0x00000000}},\t//   _kaupa_, _peste_, _blogak_,\n  { {0xc1b1c041,0x32005055,0x69c32002,0x00000000}},\t//   _আপডেট_, _dalin_, _desempre,\n  { {0xb27f502d,0x238690cf,0xf151906e,0x00000000}},\t//   _events_, _klart_, _בכפוף_,\n  { {0x02fd7092,0x825a004d,0x72d57038,0x00000000}},\t//   _leagan_, _still_, _europea_,\n  { {0x5e10c003,0x72904102,0x0b765002,0x00000000}},\t// [3f0] _مضمون_, _zaman_, _publicac,\n  { {0x13875047,0x956db002,0x28b6d0b7,0x00000000}},\t//   _oferty_, _formació, _شرايط_,\n  { {0x1855d061,0xceace035,0xa754f02a,0x00000000}},\t//   _március_, _користит, _orgánica_,\n  { {0xa6dea0ff,0x32fcd0c0,0xfcacc088,0x00000000}},\t//   _məsuliyy, _blogas_, _оглед_,\n  { {0x326c510a,0x16e6001b,0xc3a2c0e7,0x00000000}},\t//   _calon_, _kampaniy, _kampus_,\n  { {0x665e1048,0x27b6105c,0xec5be091,0x00000000}},\t//   _фирма_, _aparthei, _partiti_,\n  { {0x11cc3055,0xd4026015,0x827e9075,0x00000000}},\t//   _policisë_, _rubriken_, _blant_,\n  { {0xc2240028,0xf29040a9,0x423f906e,0x00000000}},\t//   _laika_, _raman_, _במשקל_,\n  { {0xf2d940c2,0x02904094,0x72c66016,0x00000000}},\t//   _videot_, _saman_, _publike_,\n  { {0xde392061,0x8a04c00a,0x43b9a147,0x00000000}},\t//   _tapaszta, _dibattit, _serveru_,\n  { {0xd097e0c8,0xd343606b,0xa2926062,0x00000000}},\t//   _времена_, _हेमंत_, _paraan_,\n  { {0xb2fc700b,0x49f22096,0x82d96015,0x00000000}},\t//   _mingi_, _форума_, _dagens_,\n  { {0xc182e06b,0xc2002044,0x227ef01a,0x00000000}},\t//   _अव्वल_, _fikir_, _ibindi_,\n  { {0xe27f7032,0xf30a5083,0x8f891088,0x00000000}},\t//   _rwanda_, _najnovij, _детали_,\n  { {0x191f307f,0x0212006b,0x52480013,0x00000000}},\t//   _aistriúc, _igihe_, _daima_,\n  { {0x69bce0fa,0xbe35f104,0x92d9e09a,0x00000000}},\t//   _коментир, _quelques_, _actes_,\n\n  };\n  // table_hash = eb4c-72a5, unused_entries = 1027 (25.07%)\n\nstatic const uint32 kDeltaOctaChromeInd[328] = {\n  // [0000]\n  0x00000000, 0x00001642, 0x00002042, 0x00003342,   //  lt......_C00 gl......_C00 ur......_C00\n  0x00000c0f, 0x00000306, 0x12004508, 0x0000192d,   // pl......_600 nl......_400 sk.cs..._430 et......_A00\n  0x00000e42, 0x0000331c, 0x00004242, 0x00001942,   // ru......_C00 ur......_800 mt......_C00 et......_C00\n  0x00008c42, 0x00000442, 0x0000161c, 0x0000012d,   // ht......_C00 fi......_C00 lt......_800 en......_A00\n  // [0010]\n  0x00002142, 0x00004206, 0x00004342, 0x00003f1c,   // tl......_C00 mt......_400 vi......_C00 sw......_800\n  0x1e001d23, 0x00001042, 0x00002e2d, 0x0000141c,   // hr.sr..._880 sv......_C00 sq......_A00 is......_800\n  0x0000230f, 0x0000221c, 0x00001a42, 0x00004b42,   // uk......_600 tr......_800 xxx......_C00 az......_C00\n  0x0000191c, 0x00000f42, 0x27002908, 0x27002934,   // et......_800 es......_C00 ms.id..._430 ms.id..._A80\n  // [0020]\n  0x00000842, 0x0000031c, 0x00000e2d, 0x00002e0f,   // it......_C00 nl......_800 ru......_A00 sq......_600\n  0x00002342, 0x0000402d, 0x0000042d, 0x00004042,   // uk......_C00 sl......_A00 fi......_A00 sl......_C00\n  0x00001542, 0x00005c1c, 0x00002006, 0x00000206,   // lv......_C00 yi......_800 gl......_400 da......_400\n  0x0000142d, 0x0000011c, 0x0000062d, 0x0000251c,   // is......_A00 en......_800 de......_A00 mk......_800\n  // [0030]\n  0x0000172d, 0x0000052d, 0x00001a06, 0x00002242,   // ro......_A00 fr......_A00 xxx......_400 tr......_C00\n  0x0000010f, 0x00001e42, 0x00003a42, 0x0000301c,   // en......_600 sr......_C00 eu......_C00 be......_800\n  0x00003842, 0x00000c1c, 0x00000b42, 0x0000041c,   // ca......_C00 pl......_800 no......_C00 fi......_800\n  0x00001506, 0x00003a0f, 0x0000171c, 0x0000032d,   // lv......_400 eu......_600 ro......_800 nl......_A00\n  // [0040]\n  0x0000662d, 0x0000261c, 0x00001a01, 0x00001a2d,   // af......_A00 bn......_800 xxx......_200 xxx......_A00\n  0x00002942, 0x0000081c, 0x00002b2d, 0x00000c2d,   // ms......_C00 it......_800 cy......_A00 pl......_A00\n  0x00001c06, 0x0000272d, 0x0000371c, 0x0000061c,   // bg......_400 id......_A00 ar......_800 de......_800\n  0x0000020f, 0x00000142, 0x0000022d, 0x00002b42,   // da......_600 en......_C00 da......_A00 cy......_C00\n  // [0050]\n  0x00000f2d, 0x00000342, 0x0000021c, 0x0000202d,   // es......_A00 nl......_C00 da......_800 gl......_A00\n  0x00000542, 0x00002e42, 0x0000231c, 0x1d001e4d,   // fr......_C00 sq......_C00 uk......_800 sr.hr..._CC0\n  0x00000506, 0x00003f42, 0x0000381c, 0x0000300f,   // fr......_400 sw......_C00 ca......_800 be......_600\n  0x00006642, 0x00000f06, 0x0000150f, 0x0000252d,   // af......_C00 es......_400 lv......_600 mk......_A00\n  // [0060]\n  0x00000242, 0x00001842, 0x0000212d, 0x00001206,   // da......_C00 hu......_C00 tl......_A00 cs......_400\n  0x0000121c, 0x00001c1c, 0x00003f2d, 0x00001806,   // cs......_800 bg......_800 sw......_A00 hu......_400\n  0x00004b1c, 0x27002935, 0x1e001d35, 0x00001a1c,   // az......_800 ms.id..._A90 hr.sr..._A90 xxx......_800\n  0x00008c2d, 0x1e001d34, 0x0000071c, 0x0000241c,   // ht......_A00 hr.sr..._A80 iw......_800 hi......_800\n  // [0070]\n  0x0000291c, 0x0000401c, 0x00002306, 0x00001242,   // ms......_800 sl......_800 uk......_400 cs......_C00\n  0x0000180f, 0x00000b2d, 0x0000082d, 0x0000431c,   // hu......_600 no......_A00 it......_A00 vi......_800\n  0x1e001d08, 0x00001f2d, 0x1200454b, 0x21008c4d,   // hr.sr..._430 ga......_A00 sk.cs..._CA0 ht.tl..._CC0\n  0x00000d2d, 0x45001236, 0x00003006, 0x00001f1c,   // pt......_A00 cs.sk..._AA0 be......_400 ga......_800\n  // [0080]\n  0x0000181c, 0x00002206, 0x00003f0f, 0x1e001d4d,   // hu......_800 tr......_400 sw......_600 hr.sr..._CC0\n  0x0000151c, 0x00001e0f, 0x0000030f, 0x29002734,   // lv......_800 sr......_600 nl......_600 id.ms..._A80\n  0x00002542, 0x00002e06, 0x29002712, 0x00003a2d,   // mk......_C00 sq......_400 id.ms..._640 eu......_A00\n  0x00004b0f, 0x00003042, 0x00002406, 0x00001c42,   // az......_600 be......_C00 hi......_400 bg......_C00\n  // [0090]\n  0x00001e2d, 0x0000421c, 0x00001f42, 0x1e001d22,   // sr......_A00 mt......_800 ga......_C00 hr.sr..._870\n  0x00000b1c, 0x00001d42, 0x00000e06, 0x1d001e08,   // no......_800 hr......_C00 ru......_400 sr.hr..._430\n  0x00004b2d, 0x0000182d, 0x0000382d, 0x00004542,   // az......_A00 hu......_A00 ca......_A00 sk......_C00\n  0x00001906, 0x00000e1c, 0x00004e42, 0x45001208,   // et......_400 ru......_800 fa......_C00 cs.sk..._430\n  // [00a0]\n  0x0e001c10, 0x00001442, 0x00001a0f, 0x0000210f,   // bg.ru..._620 is......_C00 xxx......_600 tl......_600\n  0x00000c06, 0x0000262d, 0x00001c2d, 0x00002742,   // pl......_400 bn......_A00 bg......_A00 id......_C00\n  0x00004e2d, 0x00001742, 0x0000222d, 0x00001e06,   // fa......_A00 ro......_C00 tr......_A00 sr......_400\n  0x0000302d, 0x27002933, 0x0000271c, 0x0000430f,   // be......_A00 ms.id..._A70 id......_800 vi......_600\n  // [00b0]\n  0x00000642, 0x00000d42, 0x00000d1c, 0x00002b1c,   // de......_C00 pt......_C00 pt......_800 cy......_800\n  0x0000080f, 0x0000101c, 0x45001210, 0x00004e1c,   // it......_600 sv......_800 cs.sk..._620 fa......_800\n  0x00000606, 0x00000f1c, 0x0000661c, 0x00002e1c,   // de......_400 es......_800 af......_800 sq......_800\n  0x0f000d10, 0x00002506, 0x0000152d, 0x1d001e13,   // pt.es..._620 mk......_400 lv......_A00 sr.hr..._650\n  // [00c0]\n  0x0000162d, 0x0000200f, 0x00000406, 0x00002706,   // lt......_A00 gl......_600 fi......_400 id......_400\n  0x0000060f, 0x00000c42, 0x00000b06, 0x00000b01,   // de......_600 pl......_C00 no......_400 no......_200\n  0x00001e1c, 0x0000122d, 0x00003a06, 0x1d001e4b,   // sr......_800 cs......_A00 eu......_400 sr.hr..._CA0\n  0x0000211c, 0x0000250f, 0x00003706, 0x0000100f,   // tl......_800 mk......_600 ar......_400 sv......_600\n  // [00d0]\n  0x0000400f, 0x0000380f, 0x0000232d, 0x29002713,   // sl......_600 ca......_600 uk......_A00 id.ms..._650\n  0x0000432d, 0x00005c06, 0x0000102d, 0x00005c0f,   // vi......_A00 yi......_400 sv......_A00 yi......_600\n  0x0000452d, 0x00003f06, 0x1200454d, 0x00004e06,   // sk......_A00 sw......_400 sk.cs..._CC0 fa......_400\n  0x27002910, 0x0000422d, 0x00000b0f, 0x00003a1c,   // ms.id..._620 mt......_A00 no......_600 eu......_800\n  // [00e0]\n  0x0000332d, 0x00008c01, 0x00004506, 0x00008c1c,   // ur......_A00 ht......_200 sk......_400 ht......_800\n  0x00000106, 0x12004513, 0x00006606, 0x29002735,   // en......_400 sk.cs..._650 af......_400 id.ms..._A90\n  0x0000201c, 0x00000706, 0x0000292d, 0x00002106,   // gl......_800 iw......_400 ms......_A00 tl......_400\n  0x1d001e35, 0x29002707, 0x4500124c, 0x00001606,   // sr.hr..._A90 id.ms..._420 cs.sk..._CB0 lt......_400\n  // [00f0]\n  0x00004006, 0x29002708, 0x45001222, 0x2900274c,   // sl......_400 id.ms..._430 cs.sk..._870 id.ms..._CB0\n  0x00000e01, 0x0000170f, 0x00002906, 0x2700294a,   // ru......_200 ro......_600 ms......_400 ms.id..._C90\n  0x00002606, 0x00003742, 0x00001c0f, 0x00000d06,   // bn......_400 ar......_C00 bg......_600 pt......_400\n  0x00004e0f, 0x00000e0f, 0x00003806, 0x00004b06,   // fa......_600 ru......_600 ca......_400 az......_400\n  // [0100]\n  0x0000160f, 0x0000450f, 0x0000290f, 0x0000420f,   // lt......_600 sk......_600 ms......_600 mt......_600\n  0x0000051c, 0x1e001d20, 0x27002907, 0x00001006,   // fr......_800 hr.sr..._850 ms.id..._420 sv......_400\n  0x00001f06, 0x00002b06, 0x29002722, 0x0000451c,   // ga......_400 cy......_400 id.ms..._870 sk......_800\n  0x1e001d13, 0x45001207, 0x00004e01, 0x0000242d,   // hr.sr..._650 cs.sk..._420 fa......_200 hi......_A00\n  // [0110]\n  0x0000140f, 0x27002921, 0x1e001c10, 0x0000040f,   // is......_600 ms.id..._860 bg.sr..._620 fi......_600\n  0x45001211, 0x00001706, 0x12004522, 0x1d001e4c,   // cs.sk..._630 ro......_400 sk.cs..._870 sr.hr..._CB0\n  0x27002922, 0x0000370f, 0x1e001d12, 0x2900274d,   // ms.id..._870 ar......_600 hr.sr..._640 id.ms..._CC0\n  0x0000660f, 0x29002720, 0x00003306, 0x00001406,   // af......_600 id.ms..._850 ur......_400 is......_400\n  // [0120]\n  0x1d001e02, 0x00005c01, 0x1a003f07, 0x45001235,   // sr.hr..._220 yi......_200 sw.xxx..._420 cs.sk..._A90\n  0x00001d1c, 0x45001232, 0x00000806, 0x1c002510,   // hr......_800 cs.sk..._A60 it......_400 mk.bg..._620\n  0x0000270f, 0x1200454c, 0x12004534, 0x1d001e49,   // id......_600 sk.cs..._CB0 sk.cs..._A80 sr.hr..._C80\n  0x27002913, 0x29001a49, 0x1e001d14, 0x45001234,   // ms.id..._650 xxx.ms..._C80 hr.sr..._660 cs.sk..._A80\n  // [0130]\n  0x29002733, 0x00008c06, 0x0000120f, 0x2700294b,   // id.ms..._A70 ht......_400 cs......_600 ms.id..._CA0\n  0x1d001e4a, 0x00008c0f, 0x0000220f, 0x00001f01,   // sr.hr..._C90 ht......_600 tr......_600 ga......_200\n  0x2700294d, 0x1d001e22, 0x1e001d36, 0x12004523,   // ms.id..._CC0 sr.hr..._870 hr.sr..._AA0 sk.cs..._880\n  0x25001e10, 0x00000f0f, 0x22004b11, 0x1e001d4a,   // sr.mk..._620 es......_600 az.tr..._630 hr.sr..._C90\n  // [0140]\n  0x12004535, 0x29002732, 0x27002923, 0x0f003810,   // sk.cs..._A90 id.ms..._A60 ms.id..._880 ca.es..._620\n  0x22000c4d, 0x00001501, 0x00005c2d, 0x45001220,   // pl.tr..._CC0 lv......_200 yi......_A00 cs.sk..._850\n                                                    //\n  };\n\nCOMPILE_ASSERT(328 < (1 << 12), k_indirectbits_too_small);\n\nextern const cld::CLDTableSummary kLongWord8Table_obj = {\n  kDeltaOctaChrome,\n  kDeltaOctaChromeInd,\n  kDeltaOctaChromeSize,\n  arraysize(kDeltaOctaChromeInd),\n  kDeltaOctaChromeKeyMask,\n  kDeltaOctaChromeBuildDate,\n};\n\n// End of generated tables\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/generated/compact_lang_det_generated_longwords8_0.cc",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n//\n// Created by postproc-shortwords 1.6 on 2008-10-07 16:15:48\n// From input file /tmp/input_10p_l8_sort.utf8\n// See compact_lang_det.cc for usage\n//\n#include \"encodings/compact_lang_det/cldutil.h\"\n\n// Suppressed:\n//      az-Arab az-Cyrl ku-Latn tg-Arab za-Hani zzb-Latn zze-Latn zzh-Latn ru-Latn\n\n// Remapped:\n//      xxx-Latn=>ut-Latn sh-Latn=>hr-Latn sh-Cyrl=>sr-Cyrl\n\n// ms/id probabilities leveled\n\nstatic const int kLongWord8TableBuildDate = 20081007;    // yyyymmdd\n\nCOMPILE_ASSERT(MONTENEGRIN == 160, k_montenegrin_changed);\nCOMPILE_ASSERT(EXT_NUM_LANGUAGES == 209, k_ext_num_languages_changed);\n\nstatic const int kLongWord8TableSize = 1;    // Bucket count\nstatic const int kLongWord8TableKeyMask = 0xffffffff;    // Mask hash key\n\nCOMPILE_ASSERT(MONTENEGRIN == 160, k_montenegrin_changed);\nCOMPILE_ASSERT(EXT_NUM_LANGUAGES == 209, k_ext_num_languages_changed);\n\n// Empty table\nstatic const cld::IndirectProbBucket4 kLongWord8Table[kLongWord8TableSize] = {\n  // key[4], words[4] in UTF-8\n  // value[4]\n  { {0x00000000,0x00000000,0x00000000,0x00000000}},\t// [000] c\n};\n\nstatic const uint32 kLongWord8TableInd[1] = {\n  // [0000]\n  0x00000000, };\n\nCOMPILE_ASSERT(1 < (1 << 16), k_indirectbits_too_small);\n\n\nextern const cld::CLDTableSummary kLongWord8Table_obj = {\n  kLongWord8Table,\n  kLongWord8TableInd,\n  kLongWord8TableSize,\n  arraysize(kLongWord8TableInd),\n  kLongWord8TableKeyMask,\n  kLongWord8TableBuildDate,\n};\n\n// End of generated tables\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/generated/compact_lang_det_generated_meanscore.h",
    "content": "// Copyright (c) 2011 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef ENCODINGS_COMPACT_LANG_DET_COMPACT_LANG_DET_GENERATED_MEANSCORE_H__\n#define ENCODINGS_COMPACT_LANG_DET_COMPACT_LANG_DET_GENERATED_MEANSCORE_H__\n\nextern const short kMeanScore[];\n\n#endif  // ENCODINGS_COMPACT_LANG_DET_COMPACT_LANG_DET_GENERATED_MEANSCORE_H__\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/generated/compact_lang_det_generated_quads_0.cc",
    "content": "// Copyright (c) 2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n//\n// Created by postproc-shortwords 1.8 on 2009-03-22 11:11:34\n// From input file /tmp/good_quad_input4567_sort.utf8\n// See compact_lang_det.cc for usage\n//\n#include \"encodings/compact_lang_det/cldutil.h\"\n\n// Suppressed:\n//      ms-Latn gl-Latn mt-Latn af-Latn eu-Latn mk-Cyrl fa-Arab\n\n// Remapped:\n//      xxx-Latn=>ut-Latn sh-Latn=>hr-Latn sh-Cyrl=>sr-Cyrl\n\n// ms/id probabilities leveled\n\nstatic const int kQuadTableBuildDate = 20090322;    // yyyymmdd\n\nCOMPILE_ASSERT(MONTENEGRIN == 160, k_montenegrin_changed);\nCOMPILE_ASSERT(EXT_NUM_LANGUAGES == 209, k_ext_num_languages_changed);\n\n\nstatic const int kQuadTableSize = 1;    // Bucket count\nstatic const int kQuadTableKeyMask = 0xffffffff;    // Mask hash key\n\n\n// Empty table\nstatic const cld::IndirectProbBucket4 kQuadTable[kQuadTableSize] = {\n  // key[4], words[4] in UTF-8\n  // value[4]\n  { {0x00000000,0x00000000,0x00000000,0x00000000}},  // [000] c\n};\n\nstatic const uint32 kQuadTableInd[1] = {\n  // [0000]\n  0x00000000, };\n\n\nextern const cld::CLDTableSummary kQuadTable_obj = {\n  kQuadTable,\n  kQuadTableInd,\n  kQuadTableSize,\n  arraysize(kQuadTableInd),\n  kQuadTableKeyMask,\n  kQuadTableBuildDate,\n};\n\n// End of generated tables\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/generated/compact_lang_det_generated_quadschrome.cc",
    "content": "// Copyright (c) 2011 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n//\n// Created by postproc-shortwords 1.9 on 2011-04-06 13:52:48\n// From command line:\n//  --quad --standard --minchars=2 --mincount=2\n//  --max_items_per_langscript=6000 --flatmap --rr_alloc --freq_alloc\n//  --boostcloseweakerpercent=10 --indirectbits=16 --thresh=210 --v25\n//  --kentries=256 --34_full\n//  --remap=xxx-Latn=>ut-Latn sh-Latn=>hr-Latn sh-Cyrl=>sr-Cyrl\n//  nn-Latn=>no-Latn bh-Deva=>ut-Deva mr-Deva=>ut-Deva ne-Deva=>ut-Deva\n//  lg-Latn=>ut-Latn rw-Latn=>ut-Latn gd-Latn=>ut-Latn  --include=af-Latn\n//  ar-Arab be-Cyrl bg-Cyrl ca-Latn cs-Latn cy-Latn da-Latn de-Latn el-Grek\n//  en-Latn es-Latn et-Latn fa-Arab fi-Latn fr-Latn ga-Latn gd-Latn hi-Deva\n//  hr-Latn hu-Latn id-Latn is-Latn is-Latn it-Latn iw-Hebr ja-Hani ko-Hani\n//  lg-Latn lt-Latn lv-Latn mk-Cyrl ms-Latn nl-Latn no-Latn pl-Latn pt-Latn\n//  ro-Latn ru-Cyrl rw-Latn sh-Cyrl sh-Latn sk-Latn sl-Latn sr-Cyrl sv-Latn\n//  sw-Latn th-Thai tl-Latn tr-Latn uk-Cyrl vi-Latn yi-Hebr zh-Hani zh-TW\n//  sq-Latn az-Latn eu-Latn bn-Beng gl-Latn ht-Latn mt-Latn sr-Latn ur-Arab\n//  ut-Latn ut-Deva  --force_to_lang_soft --soft_cram2 --nomsidlevel\n//  --shapeflatprob --langpriorpercent=10 --skipnuc --shapeforcetop\n//  --shapeeventop --shapesteep2 --langcounts --writebin --list_items=120\n//  /export/hda3/cld/all_text_quad_0120_sort.utf8\n//\n//\n// See compact_lang_det.cc for usage\n//\n#include \"encodings/compact_lang_det/cldutil.h\"\n\nstatic const int kQuadChromeBuildDate = 20110406;    // yyyymmdd\n\nCOMPILE_ASSERT(MONTENEGRIN == 160, k_montenegrin_changed);\nCOMPILE_ASSERT(EXT_NUM_LANGUAGES >= 209, k_ext_num_languages_changed);\n\n// Nil-grams: 20 languages\n//     GREEK BENGALI MALAYALAM TELUGU TAMIL GUJARATI THAI KANNADA\n//     PUNJABI GEORGIAN SINHALESE ARMENIAN LAOTHIAN KHMER DHIVEHI\n//     CHEROKEE SYRIAC LIMBU ORIYA INUKTITUT\n\n// Uni-grams: 6 languages\n//     Japanese Korean Chinese VIETNAMESE ChineseT ZHUANG\n\n// Words/Quads/Gibberish: 52 languages in range ENGLISH..HAITIAN_CREOLE:\n//     ENGLISH DANISH DUTCH FINNISH FRENCH GERMAN HEBREW ITALIAN\n//     NORWEGIAN POLISH PORTUGUESE RUSSIAN SPANISH SWEDISH CZECH\n//     ICELANDIC LATVIAN LITHUANIAN ROMANIAN HUNGARIAN ESTONIAN\n//     Ignore BULGARIAN CROATIAN SERBIAN IRISH GALICIAN TAGALOG\n//     TURKISH UKRAINIAN HINDI MACEDONIAN INDONESIAN MALAY WELSH\n//     ALBANIAN BELARUSIAN URDU ARABIC CATALAN BASQUE SWAHILI\n//     SLOVENIAN MALTESE VIETNAMESE SLOVAK AZERBAIJANI PERSIAN\n//     YIDDISH AFRIKAANS HAITIAN_CREOLE\n\n//  ENGLISH 3456\n//  DANISH 3484\n//  DUTCH 3417\n//  FINNISH 3487\n//  FRENCH 3448\n//  GERMAN 3397\n//  HEBREW 3443\n//  ITALIAN 3063\n//  NORWEGIAN 3400\n//  POLISH 3433\n//  PORTUGUESE 3437\n//  RUSSIAN 3467\n//  SPANISH 3529\n//  SWEDISH 3546\n//  CZECH 3497\n//  ICELANDIC 3422\n//  LATVIAN 3497\n//  LITHUANIAN 3458\n//  ROMANIAN 3465\n//  HUNGARIAN 3520\n//  ESTONIAN 3430\n//  Ignore 6663\n//  BULGARIAN 3486\n//  CROATIAN 3470\n//  SERBIAN 6873\n//  IRISH 3469\n//  GALICIAN 616\n//  TAGALOG 3262\n//  TURKISH 3453\n//  UKRAINIAN 3465\n//  HINDI 3426\n//  MACEDONIAN 3437\n//  BENGALI 3498\n//  INDONESIAN 3328\n//  MALAY 3405\n//  WELSH 3438\n//  ALBANIAN 3500\n//  BELARUSIAN 3431\n//  URDU 3457\n//  ARABIC 3463\n//  CATALAN 3422\n//  BASQUE 3475\n//  SWAHILI 3425\n//  SLOVENIAN 3475\n//  MALTESE 3432\n//  VIETNAMESE 3483\n//  SLOVAK 3396\n//  AZERBAIJANI 3502\n//  PERSIAN 3460\n//  YIDDISH 3436\n//  AFRIKAANS 3455\n//  HAITIAN_CREOLE 3417\n\n\nstatic const int kQuadChromeSize = 65536;    // Bucket count\nstatic const int kQuadChromeKeyMask = 0xffff0000;    // Mask hash key\n\n// Of 1187812 offered items (into 262144 table entries):\n// 182469 filled (15%), 345 merged (0%), 131090 dropped (11%)\n// 873908 items ignored: over --max_items_per_langscript\nstatic const cld::IndirectProbBucket4 kQuadChrome[kQuadChromeSize] = {\n  // key[4], words[4] in UTF-8\n  // value[4]\n  { {0xe9da0001, 0x7c2e0002, 0x394a0003, 0x00000000}},  // [000] вка_, ssbr, _pcbs_,\n  { {0x20070004, 0xbddb0005, 0x7bc40006, 0x00000000}},  //   _kuni_, stèr, sniu,\n  { {0x65630007, 0xddc40008, 0x7c2e0009, 0x00000000}},  //   denh, _križ, qsbr,\n  { {0x27ed000a, 0x63bb000b, 0x2007000c, 0x00000000}},  //   _chen_, jiun, _muni_,\n  { {0x2007000d, 0x63a9000e, 0x27ed000f, 0x00000000}},  //   _luni_, dhen, _dhen_,\n  { {0xef1f0010, 0x24510011, 0x64430012, 0x00000000}},  //   tjük_, _bơm_, funi,\n  { {0x64430013, 0x24510011, 0x28160014, 0x00000000}},  //   guni, _cơm_, _خوزس,\n  { {0x63bb0015, 0x63a90016, 0xef1f0010, 0x00000000}},  //   giun, ghen, rjük_,\n  { {0x36670017, 0x65630018, 0x443c0019, 0x00000000}},  //   _като_, benh, srv_,\n  { {0x6443001a, 0x2007001a, 0x6f04001b, 0x00000000}},  //   buni, _buni_, _agic,\n  { {0x6f0f001c, 0x2b9c001d, 0x7528001e, 0x00000000}},  //   tccc, _tích_, _iedz,\n  { {0x63a9001f, 0x63bb001a, 0x20070020, 0x00000000}},  //   chen, ciun, _duni_,\n  { {0x69dc0021, 0x20000022, 0x6d470023, 0x00000000}},  //   _okre, _diii_, tgja,\n  { {0x75280024, 0x71730025, 0x20070026, 0x00000000}},  //   _jedz, _وهنا, _funi_,\n  { {0x75280027, 0x6d470028, 0x212c0029, 0x00000000}},  //   _medz, rgja, madh_,\n  { {0x212c002a, 0x69c5002b, 0x6d41000c, 0x00000000}},  //   ladh_, wnhe, ólab,\n  { {0xafb8002c, 0x6443002d, 0x6b8d002e, 0x00000000}},  // [010] _خطوط_, zuni, rjag,\n  { {0x212c002a, 0x63bb001a, 0x63a9002f, 0x00000000}},  //   nadh_, ziun, zhen,\n  { {0x65630030, 0x27ed0031, 0x69d70032, 0x00000000}},  //   venh, _phen_, roxe,\n  { {0x212c0033, 0x64430034, 0x63bb0035, 0x00000000}},  //   hadh_, vuni, xiun,\n  { {0x75280036, 0xd6ab0025, 0x672b0037, 0x00000000}},  //   _bedz, خدام_, ragj,\n  { {0x27ed0038, 0x26df0020, 0x672b0023, 0x00000000}},  //   _when_, _vyuo_, sagj,\n  { {0x27ed0038, 0x65630039, 0x63bb000d, 0x00000000}},  //   _then_, renh, tiun,\n  { {0x6563003a, 0xb385003b, 0x7e6d003c, 0x00000000}},  //   senh, слил, _osap,\n  { {0x6563003d, 0x6443003e, 0x63a9003f, 0x00000000}},  //   penh, suni, rhen,\n  { {0x212c002a, 0x63bb0040, 0x63a90041, 0x00000000}},  //   gadh_, siun, shen,\n  { {0xddc40042, 0x7e6d0032, 0x2a690043, 0x00000000}},  //   _priž, _asap, hwab_,\n  { {0x6601002d, 0x06ae0044, 0x44250045, 0x00000000}},  //   _hilk, _ছুটি, _iwl_,\n  { {0x66010046, 0x7e6d0047, 0x212c0048, 0x00000000}},  //   _kilk, _csap, badh_,\n  { {0x212c002a, 0xb2760049, 0x2000004a, 0x00000000}},  //   cadh_, _לענג_, _wiii_,\n  { {0x1015004b, 0xfce6004c, 0xdca3004d, 0x00000000}},  //   _ابتد, сово, пари,\n  { {0x69dc004e, 0xee3f004f, 0x6e240050, 0x00000000}},  //   _skre, brý_, _twib,\n  { {0x6d410051, 0xddc4002b, 0x00000000, 0x00000000}},  // [020] ólac, _kriż,   ,\n  { {0x66010052, 0x44250053, 0x00000000, 0x00000000}},  //   _nilk, _owl_,   ,\n  { {0x7528001e, 0x4d7b0049, 0x00000000, 0x00000000}},  //   _redz, _ערטע,   ,\n  { {0xbb860054, 0x06d10055, 0x66090056, 0x00000000}},  //   _الحي, ়েছি, _buek,\n  { {0x65940057, 0x212c0058, 0x6601002d, 0x00000000}},  //   жалу, yadh_, _bilk,\n  { {0xdb16000c, 0x69dc0059, 0xdb0d000c, 0x00000000}},  //   ábær, _ukre, lnað,\n  { {0xe644005a, 0xb8960025, 0x4425005b, 0x00000000}},  //   ğlığ, _الزع, _cwl_,\n  { {0x5214005c, 0xe644005d, 0x5398005e, 0x00000000}},  //   одит, şlığ, рвия_,\n  { {0x6fc8005f, 0x212c0060, 0x00000000, 0x00000000}},  //   rıcl, tadh_,   ,\n  { {0x26f60061, 0x44250048, 0xddcd0062, 0x00000000}},  //   ेशीर_, _fwl_, _krať,\n  { {0x212c002a, 0xdb0d000c, 0x74130063, 0x00000000}},  //   radh_, knað, _فولا,\n  { {0x212c0051, 0x66010064, 0x7f9f0065, 0x00000000}},  //   sadh_, _zilk, _këqi,\n  { {0x212c0051, 0xddc40066, 0x00000000, 0x00000000}},  //   padh_, _friż,   ,\n  { {0xa2c50067, 0xddc40066, 0x9f490068, 0x00000000}},  //   ापर्, _griż, _thaï_,\n  { {0x79950046, 0x5ba70069, 0x63b90016, 0x00000000}},  //   _rozw, браз, _ymwn,\n  { {0x2d8c0002, 0xdb0d000c, 0x00000000, 0x00000000}},  //   öder_, gnað,   ,\n  { {0x79950046, 0x7e6d006a, 0x6815006b, 0x00000000}},  // [030] _pozw, _usap, _işdə,\n  { {0x5a34004c, 0x6729006c, 0x00000000, 0x00000000}},  //   янут, _seej,   ,\n  { {0xe719006d, 0x00000000, 0x00000000, 0x00000000}},  //   ليات_,   ,   ,\n  { {0x66010030, 0xe00b006e, 0x00000000, 0x00000000}},  //   _silk, _संसद_,   ,\n  { {0x6601006f, 0xd2460070, 0x44250071, 0x00000000}},  //   _pilk, _تن_, _swl_,\n  { {0xcfcf0044, 0x44150072, 0x00000000, 0x00000000}},  //   রতিন, офит,   ,\n  { {0x66010073, 0xddc40066, 0x67290074, 0x00000000}},  //   _vilk, _rriż, _teej,\n  { {0x66010075, 0xe3b10076, 0x13090077, 0x00000000}},  //   _wilk, برت_, шний_,\n  { {0x66010078, 0xb5fd0079, 0x6609006c, 0x00000000}},  //   _tilk, _apše, _uuek,\n  { {0x11d60025, 0x00000000, 0x00000000, 0x00000000}},  //   يوية_,   ,   ,\n  { {0xe2a8007a, 0x98b8005d, 0x00000000, 0x00000000}},  //   لاین_, _yarı_,   ,\n  { {0x14d6007b, 0x2259007c, 0x31650045, 0x00000000}},  //   _וועל_, _виды_, selz_,\n  { {0xc8e6007d, 0x00000000, 0x00000000, 0x00000000}},  //   _कर्म_,   ,   ,\n  { {0xa0a5007e, 0x853c007f, 0x00000000, 0x00000000}},  //   _малд, _alėj,   ,\n  { {0x09c40055, 0x3b960080, 0x8b960081, 0x00000000}},  //   ্তমা, ојат, орач,\n  { {0xe8e00082, 0x00000000, 0x00000000, 0x00000000}},  //   liệu_,   ,   ,\n  { {0xdb0d000c, 0x891a0025, 0x00000000, 0x00000000}},  // [040] rnað, لغاز_,   ,\n  { {0x2b580014, 0x98b8005a, 0xbc660083, 0x00000000}},  //   _گیرد_, _sarı_, _двок,\n  { {0xc8ca0084, 0xd90d0014, 0x00000000, 0x00000000}},  //   جوان_, ایف_,   ,\n  { {0x81c10044, 0x00000000, 0x00000000, 0x00000000}},  //   ূতি_,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x2a620085, 0x00000000, 0x00000000, 0x00000000}},  //   _ipkb_,   ,   ,\n  { {0x07a60086, 0x6d5e0087, 0x00000000, 0x00000000}},  //   _давн, _mbpa,   ,\n  { {0x81e70044, 0xd3260088, 0x00000000, 0x00000000}},  //   _মূল_, цьки,   ,\n  { {0xdcfe0089, 0x6722008a, 0x9f400048, 0x00000000}},  //   _kopē, mboj, _fhiú_,\n  { {0xd257008b, 0x27e6008c, 0xdb230051, 0x00000000}},  //   іцы_, llon_, árúc,\n  { {0x2018008d, 0xdb060010, 0x26100011, 0x00000000}},  //   ëri_, _elké, _hào_,\n  { {0x75ed008e, 0x45220044, 0x00000000, 0x00000000}},  //   púzc, _নাটক_,   ,\n  { {0xd2500025, 0xa2d60014, 0x2018008f, 0x00000000}},  //   _أنت_, _بيشت, ūri_,\n  { {0x27e60090, 0x99890087, 0x26100082, 0x00000000}},  //   hlon_, ksaš_, _mào_,\n  { {0x26100011, 0x27e60091, 0x2ca50092, 0x00000000}},  //   _lào_, klon_, áld_,\n  { {0x2a620093, 0xdb1f0023, 0x76420094, 0x00000000}},  //   _bpkb_, miqë, kroy,\n  { {0x2610001d, 0x291c006b, 0x27e60016, 0x00000000}},  // [050] _nào_, ıvan_, dlon_,\n  { {0xceb20049, 0x76420095, 0x00000000, 0x00000000}},  //   _ניי_, droy,   ,\n  { {0x27e60096, 0x00000000, 0x00000000, 0x00000000}},  //   flon_,   ,   ,\n  { {0x26100011, 0x27e60016, 0xf0930097, 0x00000000}},  //   _bào_, glon_, ונע_,\n  { {0xff7c0049, 0x79a70098, 0x26100082, 0x00000000}},  //   יטאמ, _дрве, _cào_,\n  { {0x5a340099, 0x9964009a, 0xbafa009b, 0x00000000}},  //   _інст, _отсл, _להרש,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xd90e009c, 0x00000000, 0x00000000, 0x00000000}},  //   _لیے_,   ,   ,\n  { {0x7642009d, 0x26100082, 0xe1f2009e, 0x00000000}},  //   croy, _gào_, کسٹ_,\n  { {0xd6c60014, 0x14190025, 0x661b008a, 0x00000000}},  //   _عملی, _هيئة_, _ituk,\n  { {0x3cdb006e, 0x00000000, 0x00000000, 0x00000000}},  //   _खुले_,   ,   ,\n  { {0x6d41009f, 0xc4d200a0, 0xe3b30084, 0x00000000}},  //   ólan, _אגב_, _غرض_,\n  { {0x26100011, 0x64df0061, 0xb2c700a1, 0x00000000}},  //   _xào_, _पुतळ, _بغاو,\n  { {0xdd9200a2, 0x427a00a3, 0x661b0020, 0x00000000}},  //   روز_, _לאנג, _mtuk,\n  { {0x27e600a4, 0xa0a5005e, 0x0c7900a5, 0x00000000}},  //   ylon_, _хайд, осты_,\n  { {0xbebb0023, 0x5f7600a6, 0x673b0026, 0x00000000}},  //   mbën, _رابر, _nduj,\n  { {0x661b00a7, 0xeb9700a8, 0x4a46007e, 0x00000000}},  // [060] _ntuk, чит_, янав,\n  { {0x26100011, 0xfa490025, 0x7e640058, 0x00000000}},  //   _rào_, تشفى_, _ipip,\n  { {0x661b00a9, 0x26100082, 0xfce600aa, 0x00000000}},  //   _atuk, _sào_, _хоно,\n  { {0x2d9a00ab, 0x6d5c00ac, 0xe737004d, 0x00000000}},  //   _hope_, lfra, зец_,\n  { {0x67220089, 0xd90d00a1, 0xf99100a1, 0x00000000}},  //   rboj, ایہ_, ربے_,\n  { {0x261000ad, 0x6d4e00ae, 0x6d5c005f, 0x00000000}},  //   _vào_, ngba, nfra,\n  { {0x27e600af, 0x7e640009, 0x661b00b0, 0x00000000}},  //   plon_, _lpip, _etuk,\n  { {0x69de00b1, 0x764200b2, 0xa85700b3, 0x00000000}},  //   lope, proy, _מילה_,\n  { {0x41e6007e, 0x644300b4, 0x04fe0044, 0x00000000}},  //   зіна, arni, ুরের_,\n  { {0x69de00b0, 0x6d4e00b5, 0x56370049, 0x00000000}},  //   nope, jgba, _מאמע_,\n  { {0xf99300b6, 0x6d5c00b7, 0xe8df0011, 0x00000000}},  //   תרת_, dfra, _trục_,\n  { {0xd36f00b8, 0x69de00b9, 0x6d4e00ba, 0x00000000}},  //   _مهم_, hope, egba,\n  { {0xe3b3007b, 0x69de00bb, 0x6d5c00bc, 0x00000000}},  //   _אױף_, kope, ffra,\n  { {0x72eb00bd, 0x6d5c00be, 0x00000000, 0x00000000}},  //   _פֿאַ, gfra,   ,\n  { {0xd5c800ad, 0x645800bf, 0x5ba700c0, 0x00000000}},  //   yền_, ntvi, праз,\n  { {0x6d4e00c1, 0xc1780006, 0x6d5c0048, 0x00000000}},  //   agba, ldė_, afra,\n  { {0xb99900c2, 0xdcfd00c3, 0xdb0d00c4, 0x00000000}},  // [070] овах_, ızıs, nhaé,\n  { {0x5c0700c5, 0x69de007f, 0x644300c6, 0x00000000}},  //   _няма, gope, yrni,\n  { {0x3ea6001e, 0x661b00c7, 0xa3be0061, 0x00000000}},  //   _ļoti_, _stuk, ुचा_,\n  { {0x64430059, 0x2d9a0032, 0xdc360049, 0x00000000}},  //   vrni, _zope_, _קארט_,\n  { {0x69de0035, 0x7bdf004a, 0xb5fd00c8, 0x00000000}},  //   bope, moqu, _apša,\n  { {0x7bdf00c9, 0x644300ca, 0x645800cb, 0x00000000}},  //   loqu, trni, ftvi,\n  { {0x64580039, 0xbddb0068, 0x644300cc, 0x00000000}},  //   gtvi, yrèn, urni,\n  { {0x7bcd00cd, 0x644300ce, 0x22150069, 0x00000000}},  //   nnau, rrni, мфор,\n  { {0x6d5c0016, 0x661b0020, 0xd11e0061, 0x00000000}},  //   yfra, _utuk, _म्हण_,\n  { {0x7bcd00cf, 0x644300d0, 0x10a500d1, 0x00000000}},  //   hnau, prni, дион,\n  { {0x54550001, 0x7e640026, 0x645800d2, 0x00000000}},  //   _цвет, _spip, ctvi,\n  { {0xd24e00d3, 0x201800d4, 0xe29100a2, 0x00000000}},  //   دنی_, íria_, _لذت_,\n  { {0x6d5c00d5, 0x69de0020, 0x7bdf00d6, 0x00000000}},  //   tfra, yope, doqu,\n  { {0x90c500d7, 0x7ae600d8, 0x69de00d9, 0x00000000}},  //   _обле, _rykt, xope,\n  { {0xfce300da, 0x6d5c00db, 0x7bdf00dc, 0x00000000}},  //   воро, rfra, foqu,\n  { {0x6d5c00dd, 0x8ffa0014, 0x69de00de, 0x00000000}},  //   sfra, _برتر_, wope,\n  { {0x69de0056, 0x2d9a008e, 0x6d5c00df, 0x00000000}},  // [080] tope, _tope_, pfra,\n  { {0x7bcd00d9, 0x764b00e0, 0x200e0022, 0x00000000}},  //   anau, dugy, _yufi_,\n  { {0x8b2600e1, 0xeb9a00e2, 0x7bdf00c4, 0x00000000}},  //   _одне, _дин_, boqu,\n  { {0x46ea00e3, 0x69de00b0, 0x7bdf009d, 0x00000000}},  //   оден_, sope, coqu,\n  { {0x69de00e4, 0xe67700e5, 0x00000000, 0x00000000}},  //   pope, _aţâţ,   ,\n  { {0x645800e6, 0x644a00e7, 0x28d900e8, 0x00000000}},  //   ttvi, tufi, _बुकि,\n  { {0xd90d00e9, 0x799c005b, 0x645800ea, 0x00000000}},  //   _ایم_, _iorw, utvi,\n  { {0x645800eb, 0xc27400ec, 0x02a600ed, 0x00000000}},  //   rtvi, елиј, дром,\n  { {0x645800ee, 0x200e00ef, 0x6aa400f0, 0x00000000}},  //   stvi, _sufi_, nyif,\n  { {0xb5aa0025, 0x2fc000f1, 0xc178007f, 0x00000000}},  //   _بارك_, _amig_, udė_,\n  { {0x799c005b, 0x7bcd0068, 0xc1780006, 0x00000000}},  //   _morw, ynau, rdė_,\n  { {0x2d9e00f2, 0x733600f3, 0xdce50027, 0x00000000}},  //   öten_, _آرائ, _pohľ,\n  { {0x799c0007, 0x7bdf00f4, 0x69cb0010, 0x00000000}},  //   _oorw, voqu, égek,\n  { {0x29070006, 0x200e00f5, 0x320700f6, 0x00000000}},  //   žnai_, _tufi_, _giny_,\n  { {0x7bdf00f7, 0x00000000, 0x00000000, 0x00000000}},  //   toqu,   ,   ,\n  { {0x62820004, 0x26ee007d, 0x660800f8, 0x00000000}},  //   _kroo, _जरूर_, _lidk,\n  { {0x7bcd00f4, 0x7bdf009d, 0xdee7006d, 0x00000000}},  // [090] rnau, roqu, _تأثي,\n  { {0xf99300f9, 0x6e2d0009, 0xdb0d009d, 0x00000000}},  //   خبر_, _iwab, chaî,\n  { {0x20090093, 0x7bdf00fa, 0x00000000, 0x00000000}},  //   _kiai_, poqu,   ,\n  { {0x6e2d00fb, 0x6aa40045, 0x764b00e0, 0x00000000}},  //   _kwab, byif, tugy,\n  { {0x799c00ab, 0x68e70036, 0x00000000, 0x00000000}},  //   _forw, _wyjd,   ,\n  { {0xba430006, 0x442c0022, 0x799c0016, 0x00000000}},  //   žįst, _bwd_, _gorw,\n  { {0x76590016, 0x645c006c, 0x69c50052, 0x00000000}},  //   stwy, _äril, mihe,\n  { {0x6f0d00fc, 0x7c3a00fd, 0x628200fe, 0x00000000}},  //   _ngac, átri, _broo,\n  { {0x020500d7, 0x09c40044, 0x6b9d00ff, 0x00000000}},  //   нзин, ্তরা, _mosg,\n  { {0x62820100, 0x6f0d0101, 0xe5c40102, 0x00000000}},  //   _droo, _agac, _исхо,\n  { {0x62820103, 0xf9920104, 0x444500a1, 0x00000000}},  //   _eroo, ארי_, _سراہ,\n  { {0x6e2d0009, 0x69c50105, 0x62820056, 0x00000000}},  //   _bwab, hihe, _froo,\n  { {0xee370106, 0x62820100, 0x614500d7, 0x00000000}},  //   ння_, _groo, _зела,\n  { {0x7c220107, 0x4cc10044, 0x6f0d00f6, 0x00000000}},  //   _čorb, _শুধু, _egac,\n  { {0x61e10108, 0x6b9d002d, 0x69c500e0, 0x00000000}},  //   moll, _bosg, dihe,\n  { {0x63a90109, 0xddcd010a, 0x20090011, 0x00000000}},  //   nken, _graž, _giai_,\n  { {0x799c010b, 0x6e2d0045, 0x63a9010c, 0x00000000}},  // [0a0] _porw, _gwab, iken,\n  { {0x61e1010d, 0x63a9010e, 0x00000000, 0x00000000}},  //   noll, hken,   ,\n  { {0x799c010f, 0x5746004d, 0x6aa40022, 0x00000000}},  //   _vorw, енеб, syif,\n  { {0x61e100b0, 0x1bba0076, 0x63a900b5, 0x00000000}},  //   holl, _راجع_, jken,\n  { {0x61e10110, 0x63a90030, 0x99800006, 0x00000000}},  //   koll, dken, usių_,\n  { {0x442c0111, 0x63a90112, 0x224d0032, 0x00000000}},  //   _pwd_, eken, duek_,\n  { {0x18670113, 0x61e100b0, 0x63a900d9, 0x00000000}},  //   _пари_, doll, fken,\n  { {0x62820114, 0x645c006c, 0x00000000, 0x00000000}},  //   _proo, _ärim,   ,\n  { {0x61e1001c, 0x6d41000c, 0x660800ea, 0x00000000}},  //   foll, ólak, _tidk,\n  { {0xbddb0115, 0x62820116, 0x6e2d0117, 0x00000000}},  //   trèm, _vroo, _rwab,\n  { {0x6e2d002b, 0xddcd00b9, 0x316c0089, 0x00000000}},  //   _swab, _praž, redz_,\n  { {0x645a005f, 0x63a9010f, 0xd4690054, 0x00000000}},  //   _iqti, cken, _تحكم_,\n  { {0x71a6008b, 0x657a010f, 0x61e1006c, 0x00000000}},  //   _падз, _kath, boll,\n  { {0x61e10118, 0xd12f007a, 0x40940025, 0x00000000}},  //   coll, _همه_, _للتر,\n  { {0xddcd0119, 0x6b9d011a, 0x6280011b, 0x00000000}},  //   _traž, _posg, lvmo,\n  { {0x657a011c, 0x6e2d011d, 0x69c50045, 0x00000000}},  //   _lath, _twab, wihe,\n  { {0x245a008d, 0x3df5011e, 0xef64005e, 0x00000000}},  // [0b0] hëm_, _изис, _също,\n  { {0xdb0d002a, 0x3eb3011f, 0x63a9002d, 0x00000000}},  //   mhaí, ıntı_, zken,\n  { {0x69c50065, 0x63a90120, 0x00000000, 0x00000000}},  //   rihe, yken,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x8b9a009b, 0x657a00ab, 0x8a180121, 0x00000000}},  //   _חברת, _bath, _пояс_,\n  { {0x657a0122, 0x65940088, 0x1a680123, 0x00000000}},  //   _cath, лачу, _سیمی_,\n  { {0x657a0124, 0x61e10125, 0x63a900b0, 0x00000000}},  //   _dath, voll, tken,\n  { {0xc178010a, 0x68e3010f, 0x657a0126, 0x00000000}},  //   klės_, ündu, _eath,\n  { {0x63a90127, 0x61e100b0, 0x657a00ab, 0x00000000}},  //   rken, toll, _fath,\n  { {0x63a90128, 0x92640025, 0x777b002d, 0x00000000}},  //   sken, اديم, _haux,\n  { {0x63a90023, 0x224d0032, 0x00000000, 0x00000000}},  //   pken, suek_,   ,\n  { {0x61e100b0, 0x00000000, 0x00000000, 0x00000000}},  //   soll,   ,   ,\n  { {0x61e10129, 0xddcd002b, 0x657a012a, 0x00000000}},  //   poll, _fraż, _yath,\n  { {0x6145012b, 0x777b0082, 0x00000000, 0x00000000}},  //   _река, _laux,   ,\n  { {0xb02400ad, 0xfce6012c, 0x00000000, 0x00000000}},  //   _trườ, тово,   ,\n  { {0xf4130055, 0x8e4a0025, 0x69d5012d, 0x00000000}},  //   _সবার_, _قلبك_, _ajze,\n  { {0xc332012e, 0x7f77012f, 0x245a0065, 0x00000000}},  // [0c0] יון_, _יעקב_, zëm_,\n  { {0xe9d70130, 0x2d950131, 0x9f4000f6, 0x00000000}},  //   вку_, _брюс, _thió_,\n  { {0x657a0132, 0x777b0082, 0xdd050035, 0x00000000}},  //   _rath, _baux, ăsăt,\n  { {0x657a0051, 0x7bda009d, 0xb09a0049, 0x00000000}},  //   _sath, étud, ויער,\n  { {0x657a0133, 0x4991009e, 0x00000000, 0x00000000}},  //   _path, _گیلر,   ,\n  { {0x245a008d, 0x645c006c, 0x7c3a0134, 0x00000000}},  //   tëm_, _ärik, štru,\n  { {0x629d00f8, 0xd467003b, 0x657a0135, 0x00000000}},  //   äson, вије_, _vath,\n  { {0x07a30136, 0x657a00e7, 0x245a0023, 0x00000000}},  //   _касн, _wath, rëm_,\n  { {0xa6650137, 0x657a0138, 0x245a0065, 0x00000000}},  //   _مطلو, _tath, sëm_,\n  { {0x657a002a, 0x601e001e, 0x909800e2, 0x00000000}},  //   _uath, _līme, евот_,\n  { {0x8f350139, 0x9f35013a, 0x00000000, 0x00000000}},  //   ленц, лені,   ,\n  { {0xdb0d0051, 0x1fa7013b, 0xddcd0036, 0x00000000}},  //   thaí, трог, _wraż,\n  { {0x7c22013c, 0xecdb013d, 0xddcd0066, 0x00000000}},  //   _čora, _मुजफ, _traż,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xa3d6007d, 0xc1f70049, 0x3ead013e, 0x00000000}},  //   _सदा_, _שמוץ_, šet_,\n  { {0x644a0051, 0x7d080010, 0x443e013f, 0x00000000}},  //   irfi, _sérü, _mvt_,\n  { {0x62840006, 0x00000000, 0x00000000, 0x00000000}},  // [0d0] _šioj,   ,   ,\n  { {0x4c950140, 0x443e0141, 0x23b10142, 0x00000000}},  //   _биос, _ovt_, _mája_,\n  { {0x29070039, 0x98140025, 0x4cc10044, 0x00000000}},  //   äna_, لبنا, _শুরু,\n  { {0x2cac0056, 0xc8640143, 0x00000000, 0x00000000}},  //   ødde_, ртфи,   ,\n  { {0x499300a1, 0x443e0144, 0x7bda009d, 0x00000000}},  //   _پیار, _avt_, étue,\n  { {0x6d5500b5, 0x601e0089, 0xf4830014, 0x00000000}},  //   ngza, _zīme, لاعی,\n  { {0x69d80061, 0xe894007c, 0x00000000, 0x00000000}},  //   _मदती, _карь,   ,\n  { {0x29070006, 0x58d40131, 0x2a790145, 0x00000000}},  //   žnas_, _тост, _kssb_,\n  { {0x443e0030, 0x644a0066, 0xdb060146, 0x00000000}},  //   _evt_, arfi, _elkæ,\n  { {0xdb040051, 0x443e0056, 0x00000000, 0x00000000}},  //   thiú, _fvt_,   ,\n  { {0xcea9007b, 0x8fa6005e, 0x443e00c4, 0x00000000}},  //   _צי_, гане, _gvt_,\n  { {0x26190082, 0x01c800a1, 0xdb0f0068, 0x00000000}},  //   _kèo_, _یونٹ_, _ulcè,\n  { {0xe1ee0147, 0x2bc6006e, 0x00000000, 0x00000000}},  //   _гг_, रोफा,   ,\n  { {0x26190011, 0x00000000, 0x00000000, 0x00000000}},  //   _mèo_,   ,   ,\n  { {0x225f0148, 0xbb460140, 0x26190082, 0x00000000}},  //   ltuk_, левк, _lèo_,\n  { {0xc05200b6, 0x39430009, 0x3a220022, 0x00000000}},  //   _הזה_, _adjs_, _ptkp_,\n  { {0x225f0149, 0x26190082, 0x00000000, 0x00000000}},  // [0e0] ntuk_, _nèo_,   ,\n  { {0x6e24014a, 0x8d56003b, 0x44270022, 0x00000000}},  //   _itib, _стич, kpn_,\n  { {0xdca600d7, 0x395800fa, 0x31360049, 0x00000000}},  //   _сани, _vcrs_, רנעם_,\n  { {0x26190082, 0x225f014b, 0xfaff0023, 0x00000000}},  //   _bèo_, ktuk_, _ibën_,\n  { {0x443e0039, 0xe5c6014c, 0xe5a6014d, 0x00000000}},  //   _svt_, лско, лиди,\n  { {0x443e014e, 0x2816007a, 0x6e2400e7, 0x00000000}},  //   _pvt_, _موسس, _mtib,\n  { {0xdd32006b, 0x644a014f, 0x00000000, 0x00000000}},  //   zəşt, urfi,   ,\n  { {0x7f440065, 0x644a0150, 0x722a007c, 0x00000000}},  //   _ndiq, rrfi, нцов_,\n  { {0x27e60007, 0x6e240061, 0x8556004b, 0x00000000}},  //   moon_, _ntib, _مخاط,\n  { {0x27e600b0, 0xd6cf0151, 0x104a0152, 0x00000000}},  //   loon_, _عقل_, нями_,\n  { {0xe7b80061, 0x94260153, 0x6e240154, 0x00000000}},  //   _आताप, _смее, _atib,\n  { {0x27e60155, 0x2a600156, 0x00000000, 0x00000000}},  //   noon_, ktib_,   ,\n  { {0x44ce006b, 0x00000000, 0x00000000, 0x00000000}},  //   _hə_,   ,   ,\n  { {0x63a2006c, 0x27e60157, 0x3cb5007e, 0x00000000}},  //   _hoon, hoon_, айгр,\n  { {0x63a2006c, 0x27e60158, 0x6e24006b, 0x00000000}},  //   _koon, koon_, _etib,\n  { {0x764b0159, 0x63a2015a, 0x44ce006b, 0x00000000}},  //   yrgy, _joon, _mə_,\n  { {0x38c900a1, 0x27e60058, 0x44ce006b, 0x00000000}},  // [0f0] ھائی_, doon_, _lə_,\n  { {0x63a2015b, 0x2bc6013d, 0x60d30089, 0x00000000}},  //   _loon, रोबा, ņemš,\n  { {0x44ce005f, 0x27e6015c, 0x6d45015d, 0x00000000}},  //   _nə_, foon_, _idha,\n  { {0x63a2006a, 0xbddb00f4, 0x205700a0, 0x00000000}},  //   _noon, ssèd, ריאל_,\n  { {0x69cb0010, 0x6e2400fa, 0xbb3a00a0, 0x00000000}},  //   éges, _xtib, _בערי,\n  { {0xce38009b, 0x7e6d015e, 0x9f42015f, 0x00000000}},  //   נאות_, _mpap, roké_,\n  { {0x63a20160, 0x9f420161, 0x6d450162, 0x00000000}},  //   _boon, soké_, _mdha,\n  { {0x44ce0163, 0xc245003b, 0x225f0010, 0x00000000}},  //   _də_, аник, ttuk_,\n  { {0xa3d60164, 0x6d450165, 0x63a2010e, 0x00000000}},  //   _सदर_, _odha, _doon,\n  { {0xb5fd0166, 0xf4850167, 0x7dc9012d, 0x00000000}},  //   _opši, _پائی, džso,\n  { {0x225f0168, 0x7e6d0169, 0xf07600a1, 0x00000000}},  //   stuk_, _apap, لیوں_,\n  { {0x6d45016a, 0x63a2016b, 0x9989016c, 0x00000000}},  //   _adha, _goon, jsaž_,\n  { {0x7c25016d, 0x69c7016e, 0x7f440023, 0x00000000}},  //   _athr, _omje, _vdiq,\n  { {0x63a200bb, 0x44ce006b, 0x27e6016f, 0x00000000}},  //   _zoon, _yə_, zoon_,\n  { {0x7e6d0170, 0x417400a2, 0x30790049, 0x00000000}},  //   _epap, _دانس, _יאַנ,\n  { {0x44250171, 0x4b26007e, 0x63a20082, 0x00000000}},  //   _mtl_, рмав, _xoon,\n  { {0x44250172, 0x3f920058, 0x98b10173, 0x00000000}},  // [100] _ltl_, _inyu_, _dezč_,\n  { {0x27e6015c, 0x644100b9, 0xd946005c, 0x00000000}},  //   woon_, _ovli, режи,\n  { {0x27e600b0, 0xe73a0174, 0xb6070089, 0x00000000}},  //   toon_, вее_, _mašī,\n  { {0xb6cb00a1, 0xd62a0175, 0xbebb0065, 0x00000000}},  //   ھانے_, воде_, rbëv,\n  { {0x27e6006a, 0x64410039, 0x63a20082, 0x00000000}},  //   roon_, _avli, _roon,\n  { {0xbebb008d, 0x27e60176, 0x44250177, 0x00000000}},  //   mbët, soon_, _btl_,\n  { {0x44250061, 0x27e600b0, 0x63a20178, 0x00000000}},  //   _ctl_, poon_, _poon,\n  { {0x44ce0163, 0x44250179, 0x3266017a, 0x00000000}},  //   _və_, _dtl_, атов,\n  { {0x6441014a, 0xe57a003b, 0x4425017b, 0x00000000}},  //   _evli, _иза_, _etl_,\n  { {0x63a2017c, 0x44ce006b, 0xdce700b4, 0x00000000}},  //   _woon, _tə_, leją,\n  { {0x63a2017d, 0x00000000, 0x00000000, 0x00000000}},  //   _toon,   ,   ,\n  { {0x224d017e, 0xc477009b, 0x232a017f, 0x00000000}},  //   brek_, _כתבו_, _роди_,\n  { {0x539b0104, 0x44250026, 0xef1f0180, 0x00000000}},  //   _שידו, _ztl_, rcü_,\n  { {0xdb0d0181, 0x4425014a, 0x00000000, 0x00000000}},  //   lhaç, _ytl_,   ,\n  { {0xab95003b, 0xd1380036, 0x00000000, 0x00000000}},  //   бављ, ając_,   ,\n  { {0x69c70182, 0x5b15003b, 0xdb0d00c4, 0x00000000}},  //   _smje, смат, nhaç,\n  { {0x2bc60183, 0x2fc90096, 0x6d41000c, 0x00000000}},  // [110] रोधा, _imag_, ólas,\n  { {0x6d450020, 0x2887003b, 0x61e800f8, 0x00000000}},  //   _udha, ићев, nodl,\n  { {0x2fc90087, 0xcd76009b, 0x4dda009b, 0x00000000}},  //   _kmag_, _העתק_, _תחתו,\n  { {0x61e80161, 0x9a870184, 0x2d830185, 0x00000000}},  //   hodl, _кугл, ldje_,\n  { {0x7bcd010a, 0x44250186, 0x2d81006c, 0x00000000}},  //   miau, _stl_, _kahe_,\n  { {0x69c70182, 0x2d830187, 0x7bcd010a, 0x00000000}},  //   _umje, ndje_, liau,\n  { {0xf7730188, 0x58d4013b, 0x77690066, 0x00000000}},  //   _وار_, _дорт, _tbex,\n  { {0x224d0007, 0x7bcd0006, 0x2d81006c, 0x00000000}},  //   trek_, niau, _lahe_,\n  { {0x6aad00d4, 0x27ed0189, 0x3f800022, 0x00000000}},  //   nyaf, _iken_, _raiu_,\n  { {0x224d018a, 0xddc4018b, 0x4425018c, 0x00000000}},  //   rrek_, _opiš, _ttl_,\n  { {0x600a0175, 0x7bcd0006, 0x27ed018d, 0x00000000}},  //   лном_, kiau, _kken_,\n  { {0x25a5018e, 0xdb0d00c4, 0x224d018f, 0x00000000}},  //   _holl_, chaç, prek_,\n  { {0x2169005e, 0x25a50039, 0x4ac7013d, 0x00000000}},  //   _били_, _koll_, _रेलव,\n  { {0x2d830182, 0x412600e3, 0x63bb0190, 0x00000000}},  //   gdje_, _лошо_, lhun,\n  { {0x25a50191, 0x27ed0192, 0x705500a1, 0x00000000}},  //   _moll_, _oken_, _انعا,\n  { {0x7bcd0006, 0x25a5006c, 0x6d41000c, 0x00000000}},  //   giau, _loll_, ólar,\n  { {0x3946007e, 0xdb1d0030, 0xdb0f00c4, 0x00000000}},  // [120] йнаг, _omsæ, _alcâ,\n  { {0x645c0193, 0x0d830194, 0x25a500f8, 0x00000000}},  //   _årig, _ельн, _noll_,\n  { {0x6c860054, 0x7bcd0006, 0x27ff0051, 0x00000000}},  //   _الجم, biau, _bhun_,\n  { {0x27ff0195, 0x7bcd0196, 0x628b0197, 0x00000000}},  //   _chun_, ciau, _orgo,\n  { {0x25a50150, 0x95ca00ed, 0x6b8400f6, 0x00000000}},  //   _boll_, лука_, mdig,\n  { {0x6b840073, 0x25a50129, 0x27ff002d, 0x00000000}},  //   ldig, _coll_, _ehun_,\n  { {0x628b0198, 0x31cd0055, 0x61e80142, 0x00000000}},  //   _argo, রকাশ, vodl,\n  { {0x63bb0199, 0x2915019a, 0x78a100d4, 0x00000000}},  //   ghun, ğdaş_, _àlva,\n  { {0x1a9a007b, 0xd1300025, 0x6b84010f, 0x00000000}},  //   ריִע, ومة_, idig,\n  { {0x361b019b, 0x154300c0, 0x2fc9019c, 0x00000000}},  //   _עובד, _неум, _smag_,\n  { {0x9f99019d, 0x63bb0048, 0x00000000, 0x00000000}},  //   авну_, bhun,   ,\n  { {0x63bb019e, 0xf8b300b6, 0x753a00b5, 0x00000000}},  //   chun, פשר_, _hetz,\n  { {0x6b84019f, 0x7bcd0006, 0xddc40142, 0x00000000}},  //   ddig, viau, _spiš,\n  { {0x753a001f, 0x6b8401a0, 0x0dc800d7, 0x00000000}},  //   _jetz, edig, буси_,\n  { {0x2d8301a1, 0x753a01a2, 0x7bcd01a3, 0x00000000}},  //   rdje_, _metz, tiau,\n  { {0x753a001f, 0xddc40059, 0x5c0701a4, 0x00000000}},  //   _letz, _vpiš, сяга,\n  { {0x7bcd010a, 0x6e36018e, 0x00000000, 0x00000000}},  // [130] riau, _gwyb,   ,\n  { {0x753a001f, 0x6b8401a5, 0x7bcd0006, 0x00000000}},  //   _netz, adig, siau,\n  { {0x27ff0011, 0x8af0006b, 0x25a501a6, 0x00000000}},  //   _phun_, lgəl, _roll_,\n  { {0x25a5001f, 0x64c3001c, 0x63bb01a7, 0x00000000}},  //   _soll_, _वेगळ, xhun,\n  { {0x95990088, 0xb5fd01a8, 0xe738007e, 0x00000000}},  //   итку_, _opšt, сеі_,\n  { {0x7afd01a9, 0x3c1801aa, 0x00000000, 0x00000000}},  //   _izst, _sčvi_,   ,\n  { {0x25a5010f, 0x7995010f, 0x27ff0011, 0x00000000}},  //   _voll_, _inzw, _thun_,\n  { {0x42250131, 0x27ed00ea, 0xb22501ab, 0x00000000}},  //   одив, _uken_, омил,\n  { {0x25a501ac, 0x248c004a, 0x00000000, 0x00000000}},  //   _toll_, _erdm_,   ,\n  { {0x63bb01ad, 0x628b016e, 0xdb1d000c, 0x00000000}},  //   shun, _vrgo, _umsæ,\n  { {0xc952019b, 0x00e2008b, 0x6b840007, 0x00000000}},  //   ומי_, джэн, ydig,\n  { {0x628b01ae, 0xe3b301af, 0x661b01b0, 0x00000000}},  //   _trgo, _عرض_, _kuuk,\n  { {0x61450057, 0x333f00f4, 0x64430039, 0x00000000}},  //   _дела, maux_, lsni,\n  { {0x661b01b1, 0x116701b2, 0x00000000, 0x00000000}},  //   _muuk, _طلبی_,   ,\n  { {0x8fa601b3, 0x64430056, 0x661b01b4, 0x00000000}},  //   _маке, nsni, _luuk,\n  { {0x333f00f4, 0x6b8401b5, 0xbebb0065, 0x00000000}},  //   naux_, udig, rbër,\n  { {0x6b8401b6, 0x37cf0044, 0xba2901b7, 0x00000000}},  // [140] rdig, িকার, مسلم_,\n  { {0x64430006, 0x6b8401b8, 0x00000000, 0x00000000}},  //   ksni, sdig,   ,\n  { {0x2d95008b, 0xdb060065, 0x64430190, 0x00000000}},  //   _хрыс, _kokë, jsni,\n  { {0x6d5c01b9, 0x753a010f, 0xbddb01aa, 0x00000000}},  //   lgra, _setz, nsèn,\n  { {0x3e6401ba, 0x7c2e01bb, 0x64430089, 0x00000000}},  //   nöt_, lpbr, esni,\n  { {0x6d5c01bc, 0x2738001d, 0xc7b90010, 0x00000000}},  //   ngra, ẩn_, _elő_,\n  { {0xe73a01bd, 0x26360046, 0x29180059, 0x00000000}},  //   _веб_, sło_, _igra_,\n  { {0x66e601be, 0x938a0072, 0x2b400051, 0x00000000}},  //   _доба, рска_, naic_,\n  { {0x6d5c00ea, 0xbddb00f6, 0x00000000, 0x00000000}},  //   kgra, krèp,   ,\n  { {0x23b800f4, 0x00000000, 0x00000000, 0x00000000}},  //   _déja_,   ,   ,\n  { {0x6d5c00ee, 0x213e00cf, 0xdfd10025, 0x00000000}},  //   dgra, rath_, فيد_,\n  { {0xa2cb001c, 0x333f00f4, 0x442e010f, 0x00000000}},  //   _तेव्, caux_, mpf_,\n  { {0x645800b0, 0x2294005e, 0x213e0133, 0x00000000}},  //   luvi, _хиля, path_,\n  { {0x6d5c01bf, 0xe2a900a6, 0xb5fd012d, 0x00000000}},  //   ggra, _دامن_, _upšt,\n  { {0x5ba701c0, 0xe0d40049, 0x60210089, 0x00000000}},  //   ораз, _מײַ_, _tēma,\n  { {0x6d5c002a, 0x291801c1, 0xc05300b3, 0x00000000}},  //   agra, _agra_, _חזק_,\n  { {0x201c006c, 0x645801c2, 0x7c2e01c3, 0x00000000}},  // [150] _huvi_, huvi, apbr,\n  { {0x644301c4, 0x645800b0, 0x673b0022, 0x00000000}},  //   ysni, kuvi, _seuj,\n  { {0xe7190025, 0x333f009d, 0xf8b100a6, 0x00000000}},  //   ميات_, yaux_, رکس_,\n  { {0x7e7d0061, 0x6c7a0049, 0x5c7a0049, 0x00000000}},  //   owsp, _פארפ, _פארה,\n  { {0x333f00f4, 0x7afd001e, 0xcb9a009b, 0x00000000}},  //   vaux_, _uzst, _הסרט,\n  { {0x64430039, 0x201c00c4, 0xf783002b, 0x00000000}},  //   tsni, _ouvi_, _seħħ_,\n  { {0x333f00f4, 0x2246000a, 0x645801c5, 0x00000000}},  //   taux_, _avok_, guvi,\n  { {0x64430089, 0x394101c6, 0x6d5c0091, 0x00000000}},  //   rsni, lahs_, zgra,\n  { {0x64430039, 0x333f00f4, 0xe43000a1, 0x00000000}},  //   ssni, raux_, _یہود,\n  { {0x6443010a, 0x6578014a, 0x2b4001c7, 0x00000000}},  //   psni, cevh, zaic_,\n  { {0x645c006c, 0x333f00f4, 0xc9520049, 0x00000000}},  //   _ärip, paux_, עמט_,\n  { {0xbebb0065, 0xb4fa009b, 0x6d5c005b, 0x00000000}},  //   rcën, _הפעי, wgra,\n  { {0x3fc90014, 0x00000000, 0x00000000, 0x00000000}},  //   تگوی_,   ,   ,\n  { {0x6d5c0129, 0xda1f013d, 0x00000000, 0x00000000}},  //   ugra, _बढ़त_,   ,\n  { {0x9f9201c8, 0x6d5c0056, 0xdb060065, 0x00000000}},  //   lší_, rgra, _tokë,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6e460054, 0x6d5c01c9, 0x9f9201ca, 0x00000000}},  // [160] _عندم, pgra, nší_,\n  { {0x2b4001cb, 0x00000000, 0x00000000, 0x00000000}},  //   saic_,   ,   ,\n  { {0x9d1b00a3, 0x2b400048, 0x00000000, 0x00000000}},  //   _לויט, paic_,   ,\n  { {0xdc9b0097, 0x00000000, 0x00000000, 0x00000000}},  //   _היטל,   ,   ,\n  { {0x9f92004f, 0x9b17009b, 0x7f8d0049, 0x00000000}},  //   jší_, _מחכה_, ינאַ,\n  { {0x6458010a, 0x8afb009b, 0x9f9201ca, 0x00000000}},  //   tuvi, _להכי, dší_,\n  { {0x69ce011c, 0x80d00055, 0xdd570049, 0x00000000}},  //   _imbe, _সুন্, לבסט_,\n  { {0x645800f8, 0xdb060026, 0x7d0701cc, 0x00000000}},  //   ruvi, _pokè, léré,\n  { {0x201c01c2, 0xd046006b, 0x00000000, 0x00000000}},  //   _suvi_, əmək,   ,\n  { {0x7d0700f4, 0x00000000, 0x00000000, 0x00000000}},  //   néré,   ,   ,\n  { {0xf993009b, 0x69ce0145, 0x00000000, 0x00000000}},  //   גרת_, _mmbe,   ,\n  { {0x442c01cd, 0x602800b9, 0x78fb01ce, 0x00000000}},  //   _itd_, _něme, מפיו,\n  { {0x442c01cf, 0x9f4b004a, 0x9f590048, 0x00000000}},  //   _htd_, nocé_, omsú_,\n  { {0x2b4b01d0, 0x442c01d1, 0x127b01ce, 0x00000000}},  //   _sdcc_, _ktd_, _לאדע,\n  { {0x6b8601d2, 0x7d0700f4, 0x9f420161, 0x00000000}},  //   _bakg, déré, soká_,\n  { {0x442c01d3, 0x69ce01d4, 0x3a2b0026, 0x00000000}},  //   _mtd_, _ambe, _ptcp_,\n  { {0x442c01d5, 0xdcf20089, 0x394101d6, 0x00000000}},  // [170] _ltd_, īgāk, tahs_,\n  { {0xceb2007b, 0x6e2d01d7, 0x291c016c, 0x00000000}},  //   _סיי_, _itab, žvan_,\n  { {0x39410146, 0xf1b30049, 0xa3be013d, 0x00000000}},  //   rahs_, עסע_, ीफा_,\n  { {0x69ce0047, 0x256f005a, 0x00000000, 0x00000000}},  //   _embe, zılı_,   ,\n  { {0xd24601d8, 0x442c01ca, 0x644801d9, 0x00000000}},  //   _جن_, _atd_, _avdi,\n  { {0xcb1200b6, 0x79e700a1, 0x93b50082, 0x00000000}},  //   _שלך_, _روزہ_, _cũn,\n  { {0x62820007, 0x442c01da, 0x2409007c, 0x00000000}},  //   _asoo, _ctd_, онки_,\n  { {0x442c01db, 0x9f9201dc, 0xc2e60044, 0x00000000}},  //   _dtd_, tší_, খেছি_,\n  { {0x6e2d01dd, 0x442c0022, 0x2a690058, 0x00000000}},  //   _ntab, _etd_, ntab_,\n  { {0x9f9201ca, 0xab5b010f, 0x442c01de, 0x00000000}},  //   rší_, _flüg, _ftd_,\n  { {0xd3710054, 0x6e2d0095, 0x256f01df, 0x00000000}},  //   _لها_, _atab, rılı_,\n  { {0x9f92004f, 0x2a6901a3, 0x79870173, 0x00000000}},  //   pší_, ktab_, _lajw,\n  { {0xee3701e0, 0xa29401e1, 0xc61f0044, 0x00000000}},  //   мня_, _паці, নীরা_,\n  { {0x79870046, 0x6e2d0051, 0x63ab01e2, 0x00000000}},  //   _najw, _dtab, _hogn,\n  { {0x6e2d01e3, 0x2c8700b9, 0x6b8601c3, 0x00000000}},  //   _etab, vídá_, _pakg,\n  { {0xeb9701e4, 0x6e2d0022, 0x00000000, 0x00000000}},  //   мис_, _ftab,   ,\n  { {0x63a60039, 0x63ab00f8, 0xeafa0061, 0x00000000}},  // [180] ökni, _mogn, ्धेत_,\n  { {0x63ab01e5, 0x00000000, 0x00000000, 0x00000000}},  //   _logn,   ,   ,\n  { {0x7649009d, 0x1d0a00ed, 0x2d9a00fa, 0x00000000}},  //   _avey, _фени_, _inpe_,\n  { {0xb7be0044, 0x442c00e7, 0x7d0701e6, 0x00000000}},  //   েক্ট, _rtd_, séré,\n  { {0x4cd30055, 0x442c01e7, 0x47330088, 0x00000000}},  //   _দুপু, _std_, тніс,\n  { {0x69ce006c, 0x442c0145, 0x00000000, 0x00000000}},  //   _umbe, _ptd_,   ,\n  { {0x63ab0190, 0xb8f30044, 0x644d0089, 0x00000000}},  //   _bogn, _হু_, ņain,\n  { {0x63ab01e8, 0x00000000, 0x00000000, 0x00000000}},  //   _cogn,   ,   ,\n  { {0x9f55000c, 0x056601e9, 0x63ab01ea, 0x00000000}},  //   ófíl_, _ован, _dogn,\n  { {0x442c0093, 0x602800b9, 0x26c6004a, 0x00000000}},  //   _ttd_, _němc, mzoo_,\n  { {0x6e2d01eb, 0x395700b6, 0x63ab01ec, 0x00000000}},  //   _stab, ושים_, _fogn,\n  { {0xe29a008b, 0x69de0026, 0x63ab0026, 0x00000000}},  //   _мае_, hnpe, _gogn,\n  { {0x26c60146, 0xdde201ed, 0x31c601ee, 0x00000000}},  //   nzoo_, _šušk, _оскв,\n  { {0xe0cf01ef, 0x25ac012d, 0x63ab0026, 0x00000000}},  //   ازی_, _jodl_, _zogn,\n  { {0xdb060047, 0x7987000a, 0x00000000, 0x00000000}},  //   _elkü, _rajw,   ,\n  { {0x6e2d0022, 0x2d9a01aa, 0x3eae0065, 0x00000000}},  //   _ttab, _enpe_, ëjtë_,\n  { {0x6e2d0020, 0x27ef0030, 0xdb1601aa, 0x00000000}},  // [190] _utab, vogn_, nkyè,\n  { {0x2a6901f0, 0x00000000, 0x00000000, 0x00000000}},  //   rtab_,   ,   ,\n  { {0x2a690004, 0x22510036, 0x917b0082, 0x00000000}},  //   stab_, ązki_, _hệ_,\n  { {0x2a6900de, 0x25ac00f6, 0x00000000, 0x00000000}},  //   ptab_, _aodl_,   ,\n  { {0xcb36019b, 0x7987002b, 0x1fc10044, 0x00000000}},  //   _ראשי_, _tajw, _উদাস,\n  { {0x63ab01f1, 0x659401f2, 0x00000000, 0x00000000}},  //   _sogn, качу,   ,\n  { {0x63ab01ed, 0xd914007e, 0x672901f3, 0x00000000}},  //   _pogn, _адры, _tfej,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x645c0039, 0x63ab0030, 0xd24e006d, 0x00000000}},  //   _årin, _vogn, مني_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x63ab01f4, 0x67240161, 0x00000000, 0x00000000}},  //   _togn, žije,   ,\n  { {0xd9cc01f5, 0x8fa600e2, 0x00000000, 0x00000000}},  //   _ाष्ट, хаме,   ,\n  { {0xf1a80014, 0x00000000, 0x00000000, 0x00000000}},  //   سایه_,   ,   ,\n  { {0x92c101f6, 0xdd9201f7, 0x7bdf00f6, 0x00000000}},  //   ığın, دوس_, enqu,\n  { {0xfce30088, 0xddcd001a, 0x61e60010, 0x00000000}},  //   горо, _spaţ, ékle,\n  { {0x24850026, 0x7a160173, 0x00000000, 0x00000000}},  //   _mslm_, _pņto,   ,\n  { {0xc33201f8, 0xf412007b, 0x395600ed, 0x00000000}},  // [1a0] טון_, רפן_, ењет,\n  { {0xac8601f9, 0x4c860088, 0xdcfe0035, 0x00000000}},  //   _згол, _злов, _capă,\n  { {0xa81a01fa, 0xc172009b, 0xbb4600d7, 0x00000000}},  //   ستار_, רחב_, _пенк,\n  { {0xfaa601fb, 0xe66601fc, 0x26c601fd, 0x00000000}},  //   _замо, етко, tzoo_,\n  { {0x98ac005f, 0x24850022, 0xcb15007e, 0x00000000}},  //   ğlıq_, _aslm_, _афры,\n  { {0xe5a301fe, 0x98ac005f, 0xa4d401ff, 0x00000000}},  //   личи, şlıq_, колі,\n  { {0x6c7a0049, 0x00000000, 0x00000000, 0x00000000}},  //   לאַפ,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x66e301ab, 0x00000000, 0x00000000, 0x00000000}},  //   _бота,   ,   ,\n  { {0xb5ca00a1, 0x64a60200, 0xbbad0201, 0x00000000}},  //   _عوام_, _паза, _टक्क,\n  { {0xdb12000c, 0x6f040202, 0x3f8900f6, 0x00000000}},  //   _ágæt, _azic, _paau_,\n  { {0x644a0203, 0x09dd0204, 0x00000000, 0x00000000}},  //   msfi, _मद्य,   ,\n  { {0x661a0205, 0x644a00f8, 0x443e0146, 0x00000000}},  //   _kitk, lsfi, _hwt_,\n  { {0x9f4b01dc, 0x661a0206, 0x2fc00146, 0x00000000}},  //   mocí_, _jitk, _elig_,\n  { {0x661a00b0, 0x2fc00146, 0x00000000, 0x00000000}},  //   _mitk, _flig_,   ,\n  { {0x7bdf0207, 0xd1380006, 0x317e0208, 0x00000000}},  //   unqu, lbą_, letz_,\n  { {0x66d30047, 0x9f4b008e, 0x443e0022, 0x00000000}},  // [1b0] _műkö, nocí_, _lwt_,\n  { {0x661a0209, 0xd8e70088, 0x317e010f, 0x00000000}},  //   _nitk, нцеп, netz_,\n  { {0x2009020a, 0x6d470004, 0x443e020b, 0x00000000}},  //   _khai_, maja, _nwt_,\n  { {0x6d47020c, 0x7bc4001a, 0x644a00eb, 0x00000000}},  //   laja, chiu, dsfi,\n  { {0x661a020d, 0x6b9d010f, 0x46a40088, 0x00000000}},  //   _bitk, _insg, лаїв,\n  { {0xb9070055, 0x443e020e, 0xab5b01a2, 0x00000000}},  //   _পর_, _bwt_, _flüc,\n  { {0x69d7020f, 0xab5b010f, 0x644a0210, 0x00000000}},  //   mixe, _glüc, gsfi,\n  { {0x6d470059, 0x443e01d6, 0xe65d014a, 0x00000000}},  //   haja, _dwt_, ştığ,\n  { {0xdb0f00d4, 0x64580052, 0x74120014, 0x00000000}},  //   _alcú, arvi, جويا,\n  { {0x6d470211, 0x27fd0016, 0x443e0022, 0x00000000}},  //   jaja, llwn_, _fwt_,\n  { {0x6d4701d9, 0xf99200b3, 0x76590016, 0x00000000}},  //   daja, ברי_, lrwy,\n  { {0x20090212, 0x69c500e0, 0x6b8d00bb, 0x00000000}},  //   _chai_, hhhe, jdag,\n  { {0x63a90182, 0x93b600b6, 0x6b8d01bf, 0x00000000}},  //   mjen, _שלנו_, ddag,\n  { {0x63a90213, 0x6d470214, 0x63bb0215, 0x00000000}},  //   ljen, gaja, lkun,\n  { {0x22510036, 0x6da30216, 0x63a90217, 0x00000000}},  //   ązku_, шира, ojen,\n  { {0x63a90213, 0x63bb0218, 0x6b8d006a, 0x00000000}},  //   njen, nkun, gdag,\n  { {0x6d470219, 0x4b2301fb, 0x6f040107, 0x00000000}},  // [1c0] baja, рмув, _uzic,\n  { {0x63a901c2, 0x6d470091, 0x76590016, 0x00000000}},  //   hjen, caja, drwy,\n  { {0x661a0010, 0x63a9021a, 0x6e24021b, 0x00000000}},  //   _ritk, kjen, _huib,\n  { {0x63bb021c, 0x6e240020, 0x2a790022, 0x00000000}},  //   jkun, _kuib, _fpsb_,\n  { {0x63a9021d, 0x661a021e, 0x7659018e, 0x00000000}},  //   djen, _pitk, grwy,\n  { {0x986600a1, 0xd49a0088, 0x69c5010f, 0x00000000}},  //   _لیئے_, дри_, chhe,\n  { {0x63bb021f, 0x18a3005c, 0x6e240051, 0x00000000}},  //   fkun, _карм, _luib,\n  { {0x63a90220, 0x61e10221, 0x63bb0222, 0x00000000}},  //   gjen, enll, gkun,\n  { {0xfbd300b6, 0x2009018e, 0x661a0223, 0x00000000}},  //   יתה_, _rhai_, _titk,\n  { {0xa3f50224, 0x661a00c7, 0x20090225, 0x00000000}},  //   ější_, _uitk, _shai_,\n  { {0x6d4701d9, 0x63a90226, 0xd138010a, 0x00000000}},  //   vaja, bjen, rbą_,\n  { {0x63bb010f, 0x317e010f, 0x6d4700f0, 0x00000000}},  //   ckun, setz_, waja,\n  { {0x6d470004, 0x6e240227, 0xa1580228, 0x00000000}},  //   taja, _cuib, _залу_,\n  { {0x6e240048, 0xbf9b01c3, 0x00000000, 0x00000000}},  //   _duib, dlêe,   ,\n  { {0x6d470127, 0x80a300d3, 0x6b8d00c7, 0x00000000}},  //   raja, _نمون, tdag,\n  { {0x5f770084, 0x6d47003c, 0x20090020, 0x00000000}},  //   _شاعر, saja, _uhai_,\n  { {0x6d470229, 0xf96b022a, 0xfaff0023, 0x00000000}},  // [1d0] paja, дрей_, _ecën_,\n  { {0x63bb022b, 0x6b8d0039, 0x68fc022c, 0x00000000}},  //   zkun, sdag, _byrd,\n  { {0x3eb9022d, 0x6b8d0056, 0xf795007e, 0x00000000}},  //   lyst_, pdag, лажэ,\n  { {0x7659018e, 0x69c50023, 0x00000000, 0x00000000}},  //   trwy, shhe,   ,\n  { {0x63a9022e, 0x6d45022f, 0x69d70011, 0x00000000}},  //   vjen, _keha, pixe,\n  { {0xa9340230, 0xa509017f, 0xe6180088, 0x00000000}},  //   _верш, нела_, вді_,\n  { {0x7afd0016, 0x63a90231, 0x63bb000c, 0x00000000}},  //   _hyst, tjen, tkun,\n  { {0x7afd01e3, 0x93bc001a, 0x6d450232, 0x00000000}},  //   _kyst, _stăr, _leha,\n  { {0x63a90233, 0x63bb001f, 0x59b70067, 0x00000000}},  //   rjen, rkun, _आकार,\n  { {0x63bb0234, 0x6d450235, 0x004700a1, 0x00000000}},  //   skun, _neha, نیتي_,\n  { {0x0467012b, 0x63a90236, 0x7afd0030, 0x00000000}},  //   _штам, pjen, _lyst,\n  { {0xdb0f0181, 0x4425001a, 0xc43a00b3, 0x00000000}},  //   _você, _iul_, _נתני,\n  { {0x44250237, 0x6d450238, 0x7afd0239, 0x00000000}},  //   _hul_, _beha, _nyst,\n  { {0x44250039, 0x614500ed, 0x4ed50088, 0x00000000}},  //   _kul_, _сека, рюют,\n  { {0x44250018, 0x224d023a, 0x30790049, 0x00000000}},  //   _jul_, lsek_, _טאַנ,\n  { {0x44250004, 0x7afd0027, 0x7dd4005f, 0x00000000}},  //   _mul_, _byst, _müsə,\n  { {0x7afd0016, 0x4425023b, 0xa95a023c, 0x00000000}},  // [1e0] _cyst, _lul_, فجار_,\n  { {0x6d45023d, 0x7afd010b, 0x3f82023e, 0x00000000}},  //   _geha, _dyst, leku_,\n  { {0x31ba0049, 0x4425023f, 0xdb060161, 0x00000000}},  //   עזענ, _nul_, _doká,\n  { {0x6d45022b, 0x224d011f, 0x3f82006c, 0x00000000}},  //   _zeha, ksek_, neku_,\n  { {0x7f3b007b, 0x7afd0016, 0x68fc0016, 0x00000000}},  //   גענו, _gyst, _wyrd,\n  { {0x4425011f, 0xd5b10011, 0x38610240, 0x00000000}},  //   _bul_, _có_, buhr_,\n  { {0x442500f4, 0xd467003b, 0x88840241, 0x00000000}},  //   _cul_, гије_, _خیان,\n  { {0x4425002a, 0x53980242, 0x3f820243, 0x00000000}},  //   _dul_, твия_, jeku_,\n  { {0x6441002b, 0xbebb0065, 0x798e0244, 0x00000000}},  //   _ewli, ncët, _kabw,\n  { {0x44250087, 0x6021001e, 0xc05a0245, 0x00000000}},  //   _ful_, _lēmu, нім_,\n  { {0x44250193, 0x798e0246, 0x09f7009b, 0x00000000}},  //   _gul_, _mabw, רמים_,\n  { {0x6d450149, 0x7c2501a2, 0x98b80006, 0x00000000}},  //   _seha, _ruhr, _gerą_,\n  { {0x442500b5, 0x6d450247, 0x00000000, 0x00000000}},  //   _zul_, _peha,   ,\n  { {0xbb1b00f4, 0x7afd0030, 0x798e0248, 0x00000000}},  //   _maît, _ryst, _nabw,\n  { {0x48bf0044, 0x3f820032, 0x44250249, 0x00000000}},  //   _আশ্র, beku_, _xul_,\n  { {0xc4c4024a, 0x7afd021e, 0x246e006b, 0x00000000}},  //   _ہے_, _pyst, _cəmi_,\n  { {0x6d45006c, 0x2d85009d, 0x79d50088, 0x00000000}},  // [1f0] _teha, ôles_, ажає,\n  { {0x7afd024b, 0xdcf50089, 0x00000000, 0x00000000}},  //   _vyst, udzē,   ,\n  { {0x7afd0046, 0x2d830061, 0xd7c80014, 0x00000000}},  //   _wyst, meje_, گونه_,\n  { {0x2d830030, 0x31e1024c, 0x7afd024d, 0x00000000}},  //   leje_, _पद्ध, _tyst,\n  { {0x4425024e, 0x98aa0089, 0x64410009, 0x00000000}},  //   _sul_, ējām_, _swli,\n  { {0x4425006b, 0x2d83024f, 0xf4830167, 0x00000000}},  //   _pul_, neje_, ماعی,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x44250250, 0xdb1d000c, 0xddc40251, 0x00000000}},  //   _vul_, _umsó, _spiż,\n  { {0x290c0051, 0x798e0009, 0xa235007e, 0x00000000}},  //   _údar_, _yabw, шэйш,\n  { {0x2d830252, 0x4425002b, 0x41b5005e, 0x00000000}},  //   jeje_, _tul_, рсит,\n  { {0x2d8301ca, 0x66ca0010, 0x224d0232, 0x00000000}},  //   deje_, _töké, ssek_,\n  { {0xe0d6005e, 0x52d9007c, 0x224d0022, 0x00000000}},  //   рвю_, _имею_, psek_,\n  { {0x2d830253, 0x00000000, 0x00000000, 0x00000000}},  //   feje_,   ,   ,\n  { {0x2d830254, 0x62990066, 0x3f820255, 0x00000000}},  //   geje_, _irwo, seku_,\n  { {0xdd0e014a, 0x8c4600e2, 0x798e000a, 0x00000000}},  //   _dışa, ребе, _rabw,\n  { {0xc05200b6, 0xb7b00044, 0x798e00e0, 0x00000000}},  //   _וזה_, _কষ্ট, _sabw,\n  { {0x09c10044, 0xeab70256, 0x00000000, 0x00000000}},  // [200] োচনা, айт_,   ,\n  { {0xfb8200a1, 0xc8960184, 0x00000000, 0x00000000}},  //   _ڈگری, ирењ,   ,\n  { {0xc8ca0257, 0x00000000, 0x00000000, 0x00000000}},  //   خوان_,   ,   ,\n  { {0x628b0016, 0x6e9301b2, 0x798e0258, 0x00000000}},  //   _osgo, _الیا, _wabw,\n  { {0xb8fd0183, 0x6b84000c, 0xe5340259, 0x00000000}},  //   _ते_, meig, бель,\n  { {0x6b84000c, 0xb866025a, 0x00000000, 0x00000000}},  //   leig, _پاسو,   ,\n  { {0x92e20055, 0x26c0025b, 0x628b00f6, 0x00000000}},  //   _ধরে_, šio_, _asgo,\n  { {0x6b84025c, 0x0fc10044, 0x290a025d, 0x00000000}},  //   neig, _উদ্ধ, _izba_,\n  { {0x27e6025e, 0xc1a6025f, 0xe61a017f, 0x00000000}},  //   mnon_, ајни, _ада_,\n  { {0x6b840260, 0xda16006e, 0x00000000, 0x00000000}},  //   heig, थगित_,   ,\n  { {0x628b0261, 0x2d830262, 0xc95300b3, 0x00000000}},  //   _esgo, veje_, חמת_,\n  { {0x27e6021e, 0x78a1000c, 0x248c0022, 0x00000000}},  //   nnon_, _álve, _isdm_,\n  { {0x2d830263, 0x91e60264, 0x5f940265, 0x00000000}},  //   teje_, _коде, цият,\n  { {0x7bc6021e, 0xa3d2006e, 0x20020266, 0x00000000}},  //   _alku, होर_, alki_,\n  { {0xf2e80044, 0x70540070, 0x2d910267, 0x00000000}},  //   _পরিণ, _انبا, rdze_,\n  { {0x628b018e, 0xe457007b, 0x2ba400ed, 0x00000000}},  //   _ysgo, יילט_, ојув,\n  { {0x29050268, 0xac180269, 0x290a000a, 0x00000000}},  // [210] _šla_, роту_, _azba_,\n  { {0x2d830023, 0x780f006e, 0x00000000, 0x00000000}},  //   qeje_, िष्क_,   ,\n  { {0x63a20116, 0x6b840089, 0x6d57006b, 0x00000000}},  //   _onon, beig, _idxa,\n  { {0x27e600f4, 0x20140129, 0xdc9a0049, 0x00000000}},  //   gnon_, _èxit_, _עירל,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x63a2026a, 0x7c940123, 0xdcfe00b9, 0x00000000}},  //   _anon, _اشیا, _napě,\n  { {0x97a7026b, 0x05740014, 0x798500e0, 0x00000000}},  //   _крал, تاند, mehw,\n  { {0xab5b006c, 0xc2450088, 0xdcfc0089, 0x00000000}},  //   _olüm, бник, nerā,\n  { {0xe730026c, 0xdd2c0006, 0xe1f900d7, 0x00000000}},  //   _آصف_, vėži, лги_,\n  { {0x6b84001f, 0x63a20052, 0xbec4007f, 0x00000000}},  //   zeig, _enon, šūki,\n  { {0xf07600a1, 0x69c7016e, 0xab5b026d, 0x00000000}},  //   میوں_, _mlje, _alüm,\n  { {0x7dc20027, 0x6299026e, 0x00000000, 0x00000000}},  //   _pôso, _trwo,   ,\n  { {0x69c7026f, 0x6fc60051, 0x6b8401e5, 0x00000000}},  //   _olje, _cóca, veig,\n  { {0x6b840270, 0xb6da0049, 0xa069003b, 0x00000000}},  //   weig, אַלט, _бака_,\n  { {0x6b84010f, 0x27e60271, 0x7d0900b9, 0x00000000}},  //   teig, ynon_, řesn,\n  { {0x69c70272, 0x6fc60048, 0x00000000, 0x00000000}},  //   _alje, _fóca,   ,\n  { {0x6b840273, 0x7f3b0049, 0x69c70166, 0x00000000}},  // [220] reig, _געפו, _blje,\n  { {0x6b8400f4, 0x5d860025, 0xdb0f0051, 0x00000000}},  //   seig, _الدل, _alcó,\n  { {0x6d4e006a, 0x3f920169, 0x291c0274, 0x00000000}},  //   maba, _kayu_, äva_,\n  { {0x6d4e006a, 0x7ae90087, 0xd62a0140, 0x00000000}},  //   laba, _žete, годе_,\n  { {0x27e60275, 0xdd070276, 0x7e6600e0, 0x00000000}},  //   rnon_, _köşk, nukp,\n  { {0x6d4e006a, 0x225f0277, 0x27e60278, 0x00000000}},  //   naba, druk_, snon_,\n  { {0xef1f0279, 0x69de027a, 0x00000000, 0x00000000}},  //   ndür_, mipe,   ,\n  { {0x69de027b, 0x6d4e027c, 0xa857009b, 0x00000000}},  //   lipe, haba, _לילה_,\n  { {0x6d4e006a, 0x7dcb027d, 0xaade0061, 0x00000000}},  //   kaba, _hüse, _नेमक,\n  { {0x8c000055, 0x6d4e027e, 0x69de0020, 0x00000000}},  //   ্দিন_, jaba, nipe,\n  { {0x3f92008a, 0x6fc600c4, 0x63a20058, 0x00000000}},  //   _bayu_, _sóca, _tnon,\n  { {0x69de001a, 0x225f01c9, 0x63a2027f, 0x00000000}},  //   hipe, bruk_, _unon,\n  { {0x06bc0044, 0x394a0280, 0x3f920281, 0x00000000}},  //   _আইডি, _oebs_, _dayu_,\n  { {0x30a60088, 0x3fc900a2, 0xea010011, 0x00000000}},  //   _грив, ادگی_, _đắp_,\n  { {0x69de0282, 0x2a60006c, 0x61fa00f6, 0x00000000}},  //   dipe, erib_, motl,\n  { {0x69c70182, 0x22460283, 0x61fa0284, 0x00000000}},  //   _slje, _kwok_, lotl,\n  { {0x6d4e006a, 0x59d9007e, 0x69c70091, 0x00000000}},  // [230] baba, адаў_, _plje,\n  { {0x6d4e0285, 0x7f4f0197, 0x24890036, 0x00000000}},  //   caba, lacq, łami_,\n  { {0x2fc90286, 0x6d410276, 0x61e80287, 0x00000000}},  //   _klag_, ılad, indl,\n  { {0x61fa0270, 0x7f4f0026, 0x2d930288, 0x00000000}},  //   hotl, nacq, _haxe_,\n  { {0x7bdf0289, 0x00000000, 0x00000000, 0x00000000}},  //   miqu,   ,   ,\n  { {0x7bdf00f4, 0x69de028a, 0x69c7028b, 0x00000000}},  //   liqu, cipe, _ulje,\n  { {0xddcc010a, 0x9965013e, 0x22460085, 0x00000000}},  //   _žiūr, _kůži_, _awok_,\n  { {0x7bdf028c, 0x6d4e028d, 0x7bcd010f, 0x00000000}},  //   niqu, zaba, nhau,\n  { {0x6d4e028e, 0x27ff01d5, 0x7dcb006b, 0x00000000}},  //   yaba, _ikun_, _müsb,\n  { {0x7bdf00f4, 0x6d4e028f, 0x225f01c3, 0x00000000}},  //   hiqu, xaba, rruk_,\n  { {0x2fc9002a, 0x6d4e0290, 0x3a3900f6, 0x00000000}},  //   _blag_, vaba, _ltsp_,\n  { {0x27ff01d5, 0x6d4e0291, 0x69de002d, 0x00000000}},  //   _jkun_, waba, zipe,\n  { {0x6d4e0292, 0x7bdf028c, 0xf8a60061, 0x00000000}},  //   taba, diqu, _गप्प,\n  { {0x2b4b00f6, 0x112b0088, 0x00000000, 0x00000000}},  //   _aecc_, _сюди_,   ,\n  { {0x7bdf0068, 0xcfaa025a, 0x2fc900ab, 0x00000000}},  //   fiqu, _ناظم_, _flag_,\n  { {0x7bdf0293, 0x6d4e0294, 0x27ed0295, 0x00000000}},  //   giqu, saba, _njen_,\n  { {0xe9da012b, 0x6d4e011c, 0x2d930296, 0x00000000}},  // [240] ака_, paba, _faxe_,\n  { {0x27ff0297, 0x2a600066, 0xdcf501df, 0x00000000}},  //   _akun_, rrib_, _çağr,\n  { {0x32050298, 0x7bdf0299, 0x881a007e, 0x00000000}},  //   illy_, biqu, аўду_,\n  { {0x394a029a, 0xeb9a029b, 0x7bcd029c, 0x00000000}},  //   _webs_, _тим_, chau,\n  { {0xacf60014, 0x00000000, 0x00000000, 0x00000000}},  //   _دسکت,   ,   ,\n  { {0x69de008d, 0xfc4b00b9, 0xfe9b00a3, 0x00000000}},  //   qipe, říž_, יינמ,\n  { {0x69dc0051, 0x602800b9, 0xa7860025, 0x00000000}},  //   _imre, _těmi, _وشرو,\n  { {0x78a1029d, 0xa3ba0025, 0x27ed0065, 0x00000000}},  //   _álva, شاعر_, _gjen_,\n  { {0x69dc0022, 0x6f040022, 0x61fa029e, 0x00000000}},  //   _kmre, _nyic, totl,\n  { {0x61e8010f, 0x7bcd029f, 0x2000004a, 0x00000000}},  //   undl, zhau, _akii_,\n  { {0xdb0f02a0, 0x6f0d0036, 0x399b0049, 0x00000000}},  //   _rocí, _szac, בייד,\n  { {0x9325007a, 0x32050038, 0x7bdf00f4, 0x00000000}},  //   _فرهن, ally_, xiqu,\n  { {0x6b96018e, 0x69dc02a1, 0x2fc90116, 0x00000000}},  //   ddyg, _omre, _vlag_,\n  { {0x72e90049, 0x442c00ca, 0x7f4f0026, 0x00000000}},  //   _פֿײַ, _kud_, sacq,\n  { {0x7bdf02a2, 0x442c001a, 0x7bcd010f, 0x00000000}},  //   tiqu, _jud_, thau,\n  { {0x5a350072, 0x69dc0016, 0x7bcd02a3, 0x00000000}},  //   знат, _amre, uhau,\n  { {0x7bdf028c, 0x7bcd010f, 0x2d9302a4, 0x00000000}},  // [250] riqu, rhau, _taxe_,\n  { {0x7bdf0293, 0x7bcd02a5, 0x442c01b5, 0x00000000}},  //   siqu, shau, _oud_,\n  { {0x7bdf00f4, 0x442c02a6, 0x48ab02a7, 0x00000000}},  //   piqu, _nud_, штам_,\n  { {0x201901aa, 0x6e2d00e7, 0x69dc0095, 0x00000000}},  //   nmsi_, _kuab, _emre,\n  { {0xd6db02a8, 0x27ed008d, 0xf77000f9, 0x00000000}},  //   јте_, _vjen_, ضان_,\n  { {0x442c02a9, 0x6e2d0011, 0xdcf50089, 0x00000000}},  //   _bud_, _muab, jdzī,\n  { {0x27ff01d5, 0xddcd02aa, 0xc44700a1, 0x00000000}},  //   _tkun_, _opaž, زیشن_,\n  { {0x442c0066, 0x69c502ab, 0x00000000, 0x00000000}},  //   _dud_, lkhe,   ,\n  { {0x644802ac, 0x442c0146, 0xa2ab0061, 0x00000000}},  //   _ewdi, _eud_, जमध्,\n  { {0x442c002a, 0x69c5010f, 0x00000000, 0x00000000}},  //   _fud_, nkhe,   ,\n  { {0x442c0239, 0x7bc40006, 0x00000000, 0x00000000}},  //   _gud_, ykiu,   ,\n  { {0x60330035, 0x76490258, 0x00000000, 0x00000000}},  //   _căma, _kwey,   ,\n  { {0x6e2d02ad, 0x00000000, 0x00000000, 0x00000000}},  //   _cuab,   ,   ,\n  { {0x79950046, 0x69c502ae, 0x6e2d0022, 0x00000000}},  //   _nazw, jkhe, _duab,\n  { {0x61e102af, 0xdca302b0, 0xc18300a1, 0x00000000}},  //   mill, нари, _فیکٹ,\n  { {0x61e102b1, 0x67290093, 0x69dc02b2, 0x00000000}},  //   lill, _ngej, _smre,\n  { {0x3c19008b, 0x27fd00ab, 0x6e2d00fa, 0x00000000}},  // [260] іўся_, down_, _guab,\n  { {0x6d410279, 0x63b901f3, 0x3ea00093, 0x00000000}},  //   ılac, _lown, _irit_,\n  { {0x799501a2, 0x778602b3, 0x00000000, 0x00000000}},  //   _dazw, злез,   ,\n  { {0x442c002a, 0x2d980030, 0x5faf0061, 0x00000000}},  //   _rud_, ldre_, टायल,\n  { {0x61e102b4, 0xc6150055, 0x3f8002b5, 0x00000000}},  //   kill, াদনা_, _mbiu_,\n  { {0x2d9802b6, 0x61e102b7, 0x8e570097, 0x00000000}},  //   ndre_, jill, לינג_,\n  { {0x62820168, 0x61e10211, 0xf74602b8, 0x00000000}},  //   _spoo, dill, _нево,\n  { {0x7dcb02b9, 0x9f5900f4, 0x3ea0000a, 0x00000000}},  //   _müsa, posé_, _orit_,\n  { {0x63b90038, 0x61e102ba, 0x6033001a, 0x00000000}},  //   _down, fill, _răma,\n  { {0x442c02bb, 0x61e10197, 0xdcf50089, 0x00000000}},  //   _tud_, gill, udzī,\n  { {0xdcf5001e, 0x442c023a, 0x03260131, 0x00000000}},  //   rdzī, _uud_, _еден,\n  { {0x3ea00010, 0x61e102bc, 0x00000000, 0x00000000}},  //   _brit_, aill,   ,\n  { {0x61e102bd, 0x71a602be, 0x3ea000d4, 0x00000000}},  //   bill, _надз, _crit_,\n  { {0x61e1027b, 0x57b90204, 0x442602bf, 0x00000000}},  //   cill, _आव्ह, _hio_,\n  { {0x48dc0061, 0x7c2602c0, 0x442602c1, 0x00000000}},  //   _गेलो_, _bikr, _kio_,\n  { {0xcf270054, 0x2d980207, 0x3ea00030, 0x00000000}},  //   _عربي, adre_, _frit_,\n  { {0x44260198, 0x2d8a01aa, 0x3ea002c2, 0x00000000}},  // [270] _mio_, bebe_, _grit_,\n  { {0x2d8a0181, 0x3f8b02c3, 0x442602c4, 0x00000000}},  //   cebe_, lecu_, _lio_,\n  { {0x7c2602c5, 0x69c50145, 0x27fd00ab, 0x00000000}},  //   _fikr, rkhe, town_,\n  { {0x61e10051, 0x442602c6, 0xc794007e, 0x00000000}},  //   zill, _nio_, ершы,\n  { {0x63b9010b, 0x61e102c7, 0xcb9a009b, 0x00000000}},  //   _rown, yill, _וסרט,\n  { {0xd1260025, 0x61e10275, 0x442602c8, 0x00000000}},  //   _لم_, xill, _aio_,\n  { {0x61e1008d, 0xdb0601aa, 0x6fc60051, 0x00000000}},  //   vill, _ankè, _sócm,\n  { {0x442602c9, 0x291100ca, 0x61e102ca, 0x00000000}},  //   _cio_, _izza_, will,\n  { {0x442602cb, 0x61e102cc, 0x3f8b0107, 0x00000000}},  //   _dio_, till, decu_,\n  { {0x61e100f4, 0x3ea00065, 0x629b0006, 0x00000000}},  //   uill, _rrit_, rvuo,\n  { {0x61e1021e, 0x7dd0021e, 0x44260181, 0x00000000}},  //   rill, _jäse, _fio_,\n  { {0x61e1021e, 0x442602cd, 0xdee601fb, 0x00000000}},  //   sill, _gio_, доми,\n  { {0x61e10030, 0x7dd00039, 0x2d8a02ce, 0x00000000}},  //   pill, _läse, tebe_,\n  { {0x7c2602cc, 0x442602cf, 0x3e760030, 0x00000000}},  //   _sikr, _zio_, ræt_,\n  { {0x2d9802d0, 0x3b9601f9, 0x2d8a02d1, 0x00000000}},  //   rdre_, мјат, rebe_,\n  { {0x6ff60054, 0xea010011, 0x2d8a014a, 0x00000000}},  //   _تستط, _đạp_, sebe_,\n  { {0x7c2601aa, 0x3b070265, 0x2bdf01f5, 0x00000000}},  // [280] _vikr, дето_, _नगरा,\n  { {0xc9860025, 0x6028013e, 0x00000000, 0x00000000}},  //   بشري, _těmt,   ,\n  { {0x8cb502d2, 0x7c26010a, 0x19b902d3, 0x00000000}},  //   _उपयो, _tikr, чуть_,\n  { {0xb0b60049, 0xf0b60049, 0x7c3e02d4, 0x00000000}},  //   ופעס_, ולער_, _itpr,\n  { {0x442602d5, 0xdb0f004a, 0x12e80044, 0x00000000}},  //   _rio_, _tocá, _পর্দ,\n  { {0x4426000b, 0x3f8b016c, 0x645e00fa, 0x00000000}},  //   _sio_, zecu_, ápio,\n  { {0xd4970147, 0x69ce02d6, 0x442602d7, 0x00000000}},  //   дры_, _ilbe, _pio_,\n  { {0x29180036, 0xc178007f, 0x00000000, 0x00000000}},  //   ągać_, ynės_,   ,\n  { {0x8cb5013d, 0x44260211, 0xd166005e, 0x00000000}},  //   _उपभो, _vio_, мъни,\n  { {0xe29f000c, 0x7c3e0091, 0x00000000, 0x00000000}},  //   æða_, _otpr,   ,\n  { {0x44260039, 0xf993009b, 0xd36f00e2, 0x00000000}},  //   _tio_, דרת_, _ич_,\n  { {0x443e0047, 0x72c60072, 0xdb0d000c, 0x00000000}},  //   _itt_, _обез, kkað,\n  { {0x441b007b, 0x645802d8, 0xff0402d9, 0x00000000}},  //   _וואס, lsvi, вярн,\n  { {0x7ae90209, 0x443e02da, 0x3f8b02db, 0x00000000}},  //   _žeto, _ktt_, secu_,\n  { {0x6458004e, 0xc1780006, 0xac190088, 0x00000000}},  //   nsvi, snės_, зову_,\n  { {0x5bc90204, 0x443e0052, 0x5f9502dc, 0x00000000}},  //   रसेव, _mtt_, _чиит,\n  { {0x6feb0046, 0x9f420065, 0xda7802dd, 0x00000000}},  // [290] jęci, zikë_, дях_,\n  { {0x443e0047, 0x627700b3, 0xc5f30044, 0x00000000}},  //   _ott_, וגמא_, _চীনা_,\n  { {0x6d5502de, 0x443e02da, 0x6d4702df, 0x00000000}},  //   maza, _ntt_, mbja,\n  { {0x6d5502e0, 0x64580056, 0x69ce014a, 0x00000000}},  //   laza, dsvi, _elbe,\n  { {0x443e02e1, 0x6fc60051, 0xbb3a0104, 0x00000000}},  //   _att_, _dóch, _מערי,\n  { {0x443e0129, 0x9f420065, 0x6d5502e2, 0x00000000}},  //   _btt_, tikë_, naza,\n  { {0x26c90119, 0x645802e3, 0x443e00c4, 0x00000000}},  //   šao_, gsvi, _ctt_,\n  { {0x6d55002b, 0x443e02e4, 0x9f420065, 0x00000000}},  //   haza, _dtt_, rikë_,\n  { {0x443e02e1, 0x644e01d5, 0x601601ca, 0x00000000}},  //   _ett_, _ħbie, náme,\n  { {0xf1b10054, 0x443e02e5, 0x6b8d0048, 0x00000000}},  //   اءة_, _ftt_, heag,\n  { {0x443e0022, 0x672400b9, 0x6b8d02e6, 0x00000000}},  //   _gtt_, žijt, keag,\n  { {0x649a00b6, 0x644302e7, 0x14d80061, 0x00000000}},  //   _מסעד, mpni, _भेटण,\n  { {0xe1ee0265, 0x712400a1, 0x6d41005d, 0x00000000}},  //   _бг_, ٹریل, ılan,\n  { {0x7bcf0198, 0x683301f3, 0x443e02e8, 0x00000000}},  //   _alcu, _aħdm, _ytt_,\n  { {0xafe602e9, 0xb042001d, 0xbddb0173, 0x00000000}},  //   _покл, _trưở, nsèy,\n  { {0x6b8d0146, 0x8b2602ea, 0x00000000, 0x00000000}},  //   geag, едбе,   ,\n  { {0xada60265, 0x6d550161, 0x200202eb, 0x00000000}},  // [2a0] _запл, baza, moki_,\n  { {0xdb0d009f, 0x6d5502ec, 0x20020032, 0x00000000}},  //   rkað, caza, loki_,\n  { {0x7dcb014a, 0x6b8d002d, 0x7c3e02e1, 0x00000000}},  //   _müsl, beag, _utpr,\n  { {0x48c30055, 0x2ca50030, 0x6016008e, 0x00000000}},  //   ্পূর, ælde_, lámb,\n  { {0x2d9a011c, 0x69d10089, 0x645802ed, 0x00000000}},  //   _kape_, _ūdeņ, wsvi,\n  { {0xab5b010f, 0x245a0089, 0x443e0095, 0x00000000}},  //   _flüs, tīm_, _ptt_,\n  { {0xc7b000a1, 0x2002002d, 0x2d9a0027, 0x00000000}},  //   _پڑا_, koki_, _mape_,\n  { {0x64580239, 0x443e00f4, 0x9f59008e, 0x00000000}},  //   rsvi, _vtt_, tosí_,\n  { {0x6458000c, 0x443e02ee, 0x245a01c5, 0x00000000}},  //   ssvi, _wtt_, sīm_,\n  { {0x27e602ef, 0x443e01c5, 0x2d9a01a3, 0x00000000}},  //   lion_, _ttt_, _nape_,\n  { {0xc05702f0, 0x6d550010, 0x443e0089, 0x00000000}},  //   нія_, vaza, _utt_,\n  { {0x27e602f1, 0x6b8d0032, 0x6d5502f2, 0x00000000}},  //   nion_, xeag, waza,\n  { {0x6d550020, 0xf8ad0061, 0x2d9a02f3, 0x00000000}},  //   taza, _टप्प, _bape_,\n  { {0xbbc902f4, 0x7d0302cc, 0x27e60016, 0x00000000}},  //   रस्क, _ønsk, hion_,\n  { {0x6d5502f5, 0x5ff50265, 0x27e602f6, 0x00000000}},  //   raza, _изку, kion_,\n  { {0x6d5a02f7, 0xfc300025, 0x6d5502f8, 0x00000000}},  //   ótar, صحف_, saza,\n  { {0x27e6018e, 0x6b8d002a, 0x49750264, 0x00000000}},  // [2b0] dion_, reag, клас,\n  { {0x601602f9, 0xab5b02fa, 0x6b8d010e, 0x00000000}},  //   ráme, _plüs, seag,\n  { {0x4ddc009b, 0x6fc60181, 0x27e60016, 0x00000000}},  //   _מחזו, _sóci, fion_,\n  { {0x27e602f1, 0x76590016, 0x2d9a016c, 0x00000000}},  //   gion_, tswy, _zape_,\n  { {0xa3b402fb, 0x7e7d001e, 0x9f4b008e, 0x00000000}},  //   ञान_, ntsp, locó_,\n  { {0x7e7d01a2, 0xeabf0082, 0x200202fc, 0x00000000}},  //   itsp, _ngùi_, zoki_,\n  { {0x27e6018e, 0xd90f02fd, 0xa8020276, 0x00000000}},  //   bion_, _ایا_, ğıra,\n  { {0x27e602fe, 0x644302ff, 0x25ac0300, 0x00000000}},  //   cion_, rpni, _endl_,\n  { {0x7dd00039, 0x765b0045, 0x00000000, 0x00000000}},  //   _läsa, _uvuy,   ,\n  { {0x64430301, 0x7e7d0302, 0x00000000, 0x00000000}},  //   ppni, dtsp,   ,\n  { {0x66030051, 0x20020303, 0xf07600a1, 0x00000000}},  //   monk, toki_, نیوں_,\n  { {0x6441000a, 0x7e7d0304, 0xb4bf01f5, 0x00000000}},  //   _itli, ftsp, ुनी_,\n  { {0x20020305, 0x7e7d0306, 0x00000000, 0x00000000}},  //   roki_, gtsp,   ,\n  { {0x27e60307, 0x212e00d9, 0xd656009b, 0x00000000}},  //   zion_, _ggfh_, כישת_,\n  { {0x2d9a0066, 0x7e7d021f, 0x1d07005e, 0x00000000}},  //   _vape_, atsp, вери_,\n  { {0x27e6028c, 0x66030308, 0x2d9a00e7, 0x00000000}},  //   xion_, honk, _wape_,\n  { {0x27e60052, 0xf1b50309, 0x3ae80014, 0x00000000}},  // [2c0] vion_, _अचान, ربری_,\n  { {0xdcfc0089, 0x249200b4, 0x64410087, 0x00000000}},  //   ndrī, łymi_, _otli,\n  { {0x27e6030a, 0x66030052, 0xdb060036, 0x00000000}},  //   tion_, donk, _pokó,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x27e6018e, 0x6441030b, 0xa3ab013d, 0x00000000}},  //   rion_, _atli, खाई_,\n  { {0x27e6030a, 0xd943013b, 0xd64500a1, 0x00000000}},  //   sion_, _вери, ائنٹ,\n  { {0x27e600b0, 0xe7f40061, 0x65610026, 0x00000000}},  //   pion_, ेकदा_, _ddlh,\n  { {0x799c030c, 0xc27400ed, 0x329800e2, 0x00000000}},  //   _harw, глиј, евиќ_,\n  { {0x877b0049, 0x762600e2, 0x3134030d, 0x00000000}},  //   _קאמי, _амаз, лепр,\n  { {0xf1a6005e, 0x65610022, 0x799c0022, 0x00000000}},  //   трин, _gdlh, _jarw,\n  { {0x799c0016, 0x2fc000d4, 0x32070253, 0x00000000}},  //   _marw, _boig_, _dkny_,\n  { {0x7e7d030e, 0x9f4b008e, 0x6d41005a, 0x00000000}},  //   ttsp, vocó_, ılam,\n  { {0xdbdc000c, 0x00000000, 0x00000000, 0x00000000}},  //   _ráðn,   ,   ,\n  { {0x7e7d0089, 0xdd110161, 0x00000000, 0x00000000}},  //   rtsp, _výži,   ,\n  { {0xf4140049, 0x61e8030f, 0x2fd20039, 0x00000000}},  //   ָפּ_, midl, _flyg_,\n  { {0x3ec7008b, 0xef67005e, 0x2a6900c4, 0x00000000}},  //   _асоб, _ръко, trab_,\n  { {0x5b1501e0, 0x799c0036, 0x00000000, 0x00000000}},  // [2d0] умат, _barw,   ,\n  { {0x2a690310, 0x799c005b, 0x98c7005c, 0x00000000}},  //   rrab_, _carw, ксел,\n  { {0x2d910311, 0x48c30044, 0xd24600a6, 0x00000000}},  //   meze_, ্প্র, _گن_,\n  { {0x2d9101d1, 0x4cdc0044, 0x61e80312, 0x00000000}},  //   leze_, _মুকু, hidl,\n  { {0xd24600a1, 0x66030313, 0x799c0016, 0x00000000}},  //   _دن_, tonk, _farw,\n  { {0x2d910314, 0x09ad0044, 0x6f0d0019, 0x00000000}},  //   neze_, _গতকা, _myac,\n  { {0x66030315, 0xb4bf0316, 0x6b9d00d9, 0x00000000}},  //   ronk, ुने_, _kasg,\n  { {0x7bcd010f, 0x2d910317, 0x7d08010e, 0x00000000}},  //   nkau, heze_, üdsi,\n  { {0x2fc00129, 0x66030059, 0x2d9100e7, 0x00000000}},  //   _roig_, ponk, keze_,\n  { {0xe5730318, 0x2d9100e5, 0x61e80319, 0x00000000}},  //   _خطر_, jeze_, gidl,\n  { {0x7bcd021e, 0x43750076, 0x2d91031a, 0x00000000}},  //   kkau, _مهار, deze_,\n  { {0x5275031b, 0x6f0d0009, 0xeb9f0030, 0x00000000}},  //   _буку, _byac, _skøn_,\n  { {0x6f0d0009, 0x61e8031c, 0xee37005e, 0x00000000}},  //   _cyac, bidl, лня_,\n  { {0x409501f9, 0x63bb0313, 0x2d910061, 0x00000000}},  //   _брит, ljun, geze_,\n  { {0x6c36031d, 0x32050010, 0x6f0d008e, 0x00000000}},  //   افرا, moly_, _eyac,\n  { {0x63bb0149, 0x6b9d018e, 0xdb0f0181, 0x00000000}},  //   njun, _casg, _incê,\n  { {0xc332019b, 0x6016008e, 0x6b9d005b, 0x00000000}},  // [2e0] מון_, cáma, _dasg,\n  { {0x7bd60061, 0xfd4a0088, 0x6299000a, 0x00000000}},  //   shyu, _язок_, _mswo,\n  { {0x63bb000c, 0x6b9d005b, 0x00000000, 0x00000000}},  //   kjun, _fasg,   ,\n  { {0x6b9d0016, 0x3205031e, 0x61e8031f, 0x00000000}},  //   _gasg, holy_, zidl,\n  { {0x63bb0320, 0x799c00bb, 0x00000000, 0x00000000}},  //   djun, _tarw,   ,\n  { {0x6b840321, 0x6e36004a, 0x00000000, 0x00000000}},  //   lfig, _muyb,   ,\n  { {0x61e8004f, 0x395a0056, 0x6aa40026, 0x00000000}},  //   vidl, maps_, lvif,\n  { {0x6b840322, 0x2d910323, 0x395a006c, 0x00000000}},  //   nfig, zeze_, laps_,\n  { {0xd1300054, 0x46a30147, 0xdb1d00f4, 0x00000000}},  //   يمة_, _латв, _posé,\n  { {0x7a7b0049, 0xda7b0049, 0x00000000, 0x00000000}},  //   עריס, עניר,   ,\n  { {0x63bb0066, 0xe475007e, 0x2d910091, 0x00000000}},  //   bjun, _вучэ, veze_,\n  { {0x09c10204, 0x2d910020, 0x8f47007e, 0x00000000}},  //   _शक्य, weze_, ыход,\n  { {0x61e80324, 0x2d91001a, 0x6b9d0325, 0x00000000}},  //   pidl, teze_, _rasg,\n  { {0x7dcb0004, 0x23270326, 0x60160327, 0x00000000}},  //   _küsi, _сочи_, ráma,\n  { {0x2d91001a, 0x62800190, 0x6b840197, 0x00000000}},  //   reze_, ltmo, ffig,\n  { {0x2d91001a, 0x6b840010, 0x62800328, 0x00000000}},  //   seze_, gfig, otmo,\n  { {0x99550001, 0x7bcd001f, 0x6b9d0007, 0x00000000}},  // [2f0] икац, rkau, _vasg,\n  { {0x7bcd0329, 0x6b9d032a, 0x62800270, 0x00000000}},  //   skau, _wasg, itmo,\n  { {0x6b9d032b, 0x63bb01e5, 0x00000000, 0x00000000}},  //   _tasg, yjun,   ,\n  { {0x3ea90235, 0x6b9d0051, 0x6d57032c, 0x00000000}},  //   _krat_, _uasg, _hexa,\n  { {0x6d570032, 0x395a00f6, 0x00000000, 0x00000000}},  //   _kexa, baps_,   ,\n  { {0xb5fd00b9, 0x5e580049, 0x4ade007d, 0x00000000}},  //   _ovše, ריגע_, _नेटव,\n  { {0x23d5003b, 0xdb060047, 0x6d57006b, 0x00000000}},  //   ицир, _inká, _mexa,\n  { {0xea01001d, 0x6265032d, 0x6280032e, 0x00000000}},  //   _đẹp_, авиа, ftmo,\n  { {0x63bb00b0, 0xd7f8007e, 0x3205032f, 0x00000000}},  //   rjun, _сур_, toly_,\n  { {0xbbd201f5, 0x98a10180, 0x7c2f0249, 0x00000000}},  //   _सत्क, lahı_, _licr,\n  { {0x7dd00039, 0xf992009b, 0x6ff20089, 0x00000000}},  //   _säso, חרי_, lāci,\n  { {0x3ea90142, 0xf1d901f5, 0x543a0049, 0x00000000}},  //   _brat_, योजन, _סענא,\n  { {0x32050142, 0x6ff20089, 0x62800330, 0x00000000}},  //   poly_, nāci, ctmo,\n  { {0xc5f20049, 0x10a50331, 0x00000000, 0x00000000}},  //   ַדן_, _викн,   ,\n  { {0x442f0030, 0xed57007c, 0x6b840232, 0x00000000}},  //   _kig_, рос_, tfig,\n  { {0x6016027b, 0x6ff2001e, 0x2d9e01ca, 0x00000000}},  //   mámo, kāci, žte_,\n  { {0x442f0332, 0x3ea90313, 0x6b840333, 0x00000000}},  // [300] _mig_, _grat_, rfig,\n  { {0x442f0334, 0xe9d7025f, 0x6b840232, 0x00000000}},  //   _lig_, аку_, sfig,\n  { {0xd9100167, 0x6fcd009d, 0x395a0335, 0x00000000}},  //   سیر_, _bûch, raps_,\n  { {0x7afd01f3, 0x442f0336, 0x657a0009, 0x00000000}},  //   _fxst, _nig_, _scth,\n  { {0x7c240337, 0xeb97005e, 0x2b400338, 0x00000000}},  //   mmir, _тия_, mcic_,\n  { {0x6d5c0127, 0x7c24005f, 0x442f0061, 0x00000000}},  //   nara, lmir, _aig_,\n  { {0x442f0339, 0x601d00f4, 0x6d5c033a, 0x00000000}},  //   _big_, léme, iara,\n  { {0x6d5c033b, 0x938a033c, 0x442f0016, 0x00000000}},  //   hara, тска_, _cig_,\n  { {0x442f033d, 0x6d5c033e, 0x05160044, 0x00000000}},  //   _dig_, kara, াশের_,\n  { {0x6d5c0149, 0x442f0109, 0x91b800e2, 0x00000000}},  //   jara, _eig_, угот_,\n  { {0x442f00ab, 0x3958001a, 0x6d57033f, 0x00000000}},  //   _fig_, _mers_, _rexa,\n  { {0x442f0016, 0x3ea90129, 0x6d570190, 0x00000000}},  //   _gig_, _prat_, _sexa,\n  { {0x6d5c0073, 0x7c2f0197, 0xdb1d0026, 0x00000000}},  //   fara, _ricr, _così,\n  { {0x6d5c0149, 0x7c2f018e, 0x3ea90340, 0x00000000}},  //   gara, _sicr, _vrat_,\n  { {0x6ff2001e, 0x61ef009d, 0x6d5700fa, 0x00000000}},  //   zāci, ècle, _vexa,\n  { {0x44240341, 0x3ea90342, 0x6d5c012d, 0x00000000}},  //   nmm_, _trat_, aara,\n  { {0x6d5c0127, 0x69d50224, 0x6d5700ab, 0x00000000}},  // [310] bara, _plze, _texa,\n  { {0xe29f009f, 0xc178010a, 0x442400e0, 0x00000000}},  //   æði_, ngė_, hmm_,\n  { {0x3958014a, 0x7c2f00f6, 0x00000000, 0x00000000}},  //   _ders_, _ticr,   ,\n  { {0x39580343, 0x6ff20089, 0x224602db, 0x00000000}},  //   _eers_, tāci, _otok_,\n  { {0x60160344, 0x442f0345, 0x4424012d, 0x00000000}},  //   zámo, _rig_, dmm_,\n  { {0x442f0346, 0x6ff2001e, 0x3958009d, 0x00000000}},  //   _sig_, rāci, _gers_,\n  { {0xe3b10054, 0x442f0133, 0x98aa0066, 0x00000000}},  //   كرة_, _pig_, _rebħ_,\n  { {0x6d5c0347, 0xb7bd0035, 0x317c00d9, 0x00000000}},  //   zara, _piţu, _acvz_,\n  { {0x442f0348, 0x36d40088, 0xdcfe0089, 0x00000000}},  //   _vig_, _дотр, _papī,\n  { {0x7c24001e, 0x6d5c0349, 0x442f00b4, 0x00000000}},  //   zmir, xara, _wig_,\n  { {0x6d5c0119, 0x442f034a, 0x8fa6034b, 0x00000000}},  //   vara, _tig_, бане,\n  { {0xcdc900b6, 0x6d5c034c, 0xdb0f02d0, 0x00000000}},  //   _אך_, wara, _encé,\n  { {0x6d5c034d, 0x539a034e, 0xdb24005d, 0x00000000}},  //   tara, _תינו, üsün,\n  { {0x32b80025, 0x7dd000b0, 0x61390049, 0x00000000}},  //   _خدمة_, _täsm, _גײַס,\n  { {0x6d5c034f, 0xc885006b, 0x7c240350, 0x00000000}},  //   rara, naşı_, tmir,\n  { {0x6d5c020c, 0x2b5900d4, 0x9f82000c, 0x00000000}},  //   sara, _cesc_, _góð_,\n  { {0x39580351, 0x2b590061, 0x2b40016c, 0x00000000}},  // [320] _pers_, _desc_, rcic_,\n  { {0x2a600352, 0x601d0353, 0x7c240232, 0x00000000}},  //   rsib_, réme, smir,\n  { {0x39580354, 0xfbd20355, 0x2a60002b, 0x00000000}},  //   _vers_, _فتح_, ssib_,\n  { {0xc8850279, 0x9f4b0023, 0x3958005b, 0x00000000}},  //   daşı_, vicë_, _wers_,\n  { {0xe5c60356, 0xe775006b, 0x3958014a, 0x00000000}},  //   йско, zıçı, _ters_,\n  { {0x7e6400ca, 0x00000000, 0x00000000, 0x00000000}},  //   _mvip,   ,   ,\n  { {0x2246033b, 0x7bc60357, 0xe9d70088, 0x00000000}},  //   _stok_, _koku, _укр_,\n  { {0x7e6400ea, 0x644a0026, 0x7bc60358, 0x00000000}},  //   _ovip, rpfi, _joku,\n  { {0x7ae90359, 0x60290036, 0x7dcb035a, 0x00000000}},  //   _þett, _uśmi, _küst,\n  { {0x7bc6000c, 0x104a0077, 0x6d5a000c, 0x00000000}},  //   _loku, лями_, ðtal,\n  { {0xe452035b, 0x7dcb035c, 0x7e640022, 0x00000000}},  //   _رضا_, _xüsu, _avip,\n  { {0x7bc60145, 0x9426007c, 0x00000000, 0x00000000}},  //   _noku, _умее,   ,\n  { {0xdb1d035d, 0x00000000, 0x00000000, 0x00000000}},  //   _posí,   ,   ,\n  { {0x270700ad, 0x63a2035e, 0x2b5900c4, 0x00000000}},  //   ống_, _haon, _sesc_,\n  { {0x7bc6035f, 0x7a290006, 0x7f5d0026, 0x00000000}},  //   _boku, _užti, pasq,\n  { {0x1b020044, 0xdb1d00fa, 0x4a55007e, 0x00000000}},  //   লেছে_, _rosâ, жкас,\n  { {0x7bc60292, 0x63a2000b, 0x200b01ca, 0x00000000}},  // [330] _doku, _maon, moci_,\n  { {0x200b0207, 0x63a2017b, 0x00000000, 0x00000000}},  //   loci_, _laon,   ,\n  { {0x394101a2, 0x7dcb0360, 0x00000000, 0x00000000}},  //   rchs_, _düst,   ,\n  { {0x61c502f4, 0x63a20020, 0x7bc60288, 0x00000000}},  //   _लक्ष, _naon, _goku,\n  { {0x25ed001c, 0x4ae4008b, 0x249e0035, 0x00000000}},  //   _अगदी_, _еўра, _astm_,\n  { {0xdcfc0089, 0x3e5c0049, 0x96280025, 0x00000000}},  //   cerē, נדוס, مكنك_,\n  { {0xdb0600f8, 0x63a20361, 0x7bc60362, 0x00000000}},  //   _enkä, _baon, _yoku,\n  { {0xc2450081, 0x7dcb01a2, 0x00000000, 0x00000000}},  //   оник, _küss,   ,\n  { {0x69c70363, 0x6448005f, 0x85b90364, 0x00000000}},  //   _koje, _etdi, _клас_,\n  { {0x27ef0365, 0x7dcb001f, 0x7dd00039, 0x00000000}},  //   lign_, _müss, _väsk,\n  { {0x69c70366, 0x7e64000c, 0xcea900b3, 0x00000000}},  //   _moje, _svip, _שי_,\n  { {0x6d450367, 0x200b0129, 0xd00a003b, 0x00000000}},  //   _afha, goci_, реме_,\n  { {0xa2940106, 0xd9fb0061, 0x24650089, 0x00000000}},  //   _наці, ्वात_, lēm_,\n  { {0x7dd00368, 0x41290369, 0x224d008a, 0x00000000}},  //   _käsi, _коло_, mpek_,\n  { {0x7bc6036a, 0x63a2036b, 0x7dcb036c, 0x00000000}},  //   _poku, _yaon, _rüst,\n  { {0xb068036d, 0x7dcb006c, 0x200b036e, 0x00000000}},  //   _اصول_, _süst, coci_,\n  { {0x69c700ee, 0x7dcb006c, 0x19c60088, 0x00000000}},  // [340] _boje, _püst, обам,\n  { {0x3ea001aa, 0x7dcb010f, 0x69c702f9, 0x00000000}},  //   _isit_, _düss, _coje,\n  { {0x2d980198, 0x69c701d9, 0x5faf0061, 0x00000000}},  //   mere_, _doje, _जोडल,\n  { {0x2d98011f, 0x510c007b, 0x7dcb01a2, 0x00000000}},  //   lere_, נהאַ, _wüst,\n  { {0xd5ba0057, 0x63a20129, 0x601d00f4, 0x00000000}},  //   иск_, _raon, néma,\n  { {0x69c7036f, 0xe4520025, 0x63a20370, 0x00000000}},  //   _goje, وضع_, _saon,\n  { {0x601d0371, 0x2caa0009, 0x63a20026, 0x00000000}},  //   héma, nvbd_, _paon,\n  { {0x2d980372, 0x32660373, 0x9faf00b9, 0x00000000}},  //   here_, отов, tří_,\n  { {0x2d980374, 0xdb1d0010, 0x200b0375, 0x00000000}},  //   kere_, _kosá, voci_,\n  { {0x2d980030, 0x63a20020, 0x3f800006, 0x00000000}},  //   jere_, _waon, _aciu_,\n  { {0x2d980376, 0x63a2006a, 0x24650089, 0x00000000}},  //   dere_, _taon, cēm_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x200b0059, 0x2d980377, 0x00000000, 0x00000000}},  //   roci_, fere_,   ,\n  { {0x2d980378, 0xddcf001a, 0x61ea001a, 0x00000000}},  //   gere_, ducţ, _umfl,\n  { {0xa17700b6, 0xfbd30379, 0x69c7037a, 0x00000000}},  //   _ועוד_, وتر_, _roje,\n  { {0x69c700ca, 0xdb1d00f6, 0x6446012d, 0x00000000}},  //   _soje, _posà, _čkil,\n  { {0x69c7037b, 0x24650089, 0x00000000, 0x00000000}},  // [350] _poje, zēm_,   ,\n  { {0x2d98037c, 0x3f990059, 0xdb1d0048, 0x00000000}},  //   cere_, lesu_, _cosá,\n  { {0x7649037d, 0xdb1d00b9, 0x69c70161, 0x00000000}},  //   _stey, _dosá, _voje,\n  { {0x3f99037e, 0x69c70046, 0x4c9a00b3, 0x00000000}},  //   nesu_, _woje, _פברו,\n  { {0x320c00b4, 0x00000000, 0x00000000, 0x00000000}},  //   kody_,   ,   ,\n  { {0x2465001e, 0x69de037f, 0x85e80088, 0x00000000}},  //   tēm_, chpe, одів_,\n  { {0xd5ae0380, 0x00000000, 0x00000000, 0x00000000}},  //   طفي_,   ,   ,\n  { {0x3cfc00a3, 0x61fa0186, 0x7dd0006c, 0x00000000}},  //   ילונ, entl, _väsi,\n  { {0x27ed0381, 0x37da0049, 0x2d980056, 0x00000000}},  //   _imen_, _פֿלע, yere_,\n  { {0x320c0036, 0x2d980382, 0x6d480276, 0x00000000}},  //   gody_, xere_, ıdak,\n  { {0x2d980383, 0x224d0384, 0x60160385, 0x00000000}},  //   vere_, spek_, lámi,\n  { {0x2d980007, 0x2d810386, 0xd8d6009b, 0x00000000}},  //   were_, _ache_, פורט_,\n  { {0x2d98001f, 0x60160387, 0x320c0388, 0x00000000}},  //   tere_, námi, body_,\n  { {0x7bcb000c, 0x7dd000f8, 0xd1bb0389, 0x00000000}},  //   ögun, _läsv, _خاصا_,\n  { {0x27ed002d, 0xdb1d00c4, 0x3f99038a, 0x00000000}},  //   _omen_, _rosá, besu_,\n  { {0x2d98038b, 0x9e66025f, 0x7bdf0066, 0x00000000}},  //   sere_, _евид, ghqu,\n  { {0x6d41038c, 0x2d98038d, 0xe9da0264, 0x00000000}},  // [360] ılar, pere_, бка_,\n  { {0xdb04038e, 0x8af0006b, 0x27ff0022, 0x00000000}},  //   ndié, vbəd, _ajun_,\n  { {0x6d5e001e, 0x6d3b009b, 0x6376019a, 0x00000000}},  //   _iepa, _לתינ, nünü,\n  { {0xf1ba0011, 0x69de0023, 0x25a5005b, 0x00000000}},  //   _nhơn_, shpe, _aall_,\n  { {0x6d5e020c, 0x25a5038f, 0x27ff0066, 0x00000000}},  //   _kepa, _ball_, _djun_,\n  { {0x6d5e0390, 0x25a50038, 0x7c3e0391, 0x00000000}},  //   _jepa, _call_, _kupr,\n  { {0x25a50198, 0x320c01ca, 0x7ae40035, 0x00000000}},  //   _dall_, vody_, lzit,\n  { {0x6d5e0127, 0x320c0036, 0x25a5006c, 0x00000000}},  //   _lepa, wody_, _eall_,\n  { {0x320c0392, 0x25a50393, 0xdb04009d, 0x00000000}},  //   tody_, _fall_, udiè,\n  { {0x6d5e0394, 0x64a60057, 0x20030091, 0x00000000}},  //   _nepa, _наза, čkim_,\n  { {0x931600a1, 0x320c0395, 0xef1f0396, 0x00000000}},  //   _کوشش, rody_, rfüm_,\n  { {0x443e009d, 0x2ca10022, 0x27ed02d4, 0x00000000}},  //   _iut_, _rshd_, _xmen_,\n  { {0x6d5e015c, 0x3f990161, 0x7c3e00f4, 0x00000000}},  //   _bepa, resu_, _aupr,\n  { {0x6d5e020c, 0x443e0397, 0x3f990016, 0x00000000}},  //   _cepa, _kut_, sesu_,\n  { {0x7c3e001a, 0x443e0010, 0x9f4b00b9, 0x00000000}},  //   _cupr, _jut_, licí_,\n  { {0x443e00b0, 0x69dc0398, 0xd11701ce, 0x00000000}},  //   _mut_, _alre, _מקוה_,\n  { {0x5a350113, 0x443e0036, 0x9f4b0399, 0x00000000}},  // [370] днат, _lut_, nicí_,\n  { {0x443e0038, 0x6d5e0168, 0x2019039a, 0x00000000}},  //   _out_, _gepa, llsi_,\n  { {0x443e02c2, 0x25a501c3, 0x7c670257, 0x00000000}},  //   _nut_, _rall_, _عادل,\n  { {0x69dc0010, 0x80bd0061, 0x00000000, 0x00000000}},  //   _elre, षमते,   ,\n  { {0xf7700137, 0x443e039b, 0x81bc0089, 0x00000000}},  //   طان_, _aut_, rmēj,\n  { {0x443e0038, 0x6016039c, 0xf650039d, 0x00000000}},  //   _but_, rámi, ائن_,\n  { {0x25a50129, 0x443e00ab, 0x64a2005e, 0x00000000}},  //   _vall_, _cut_, ваща,\n  { {0x443e022b, 0x7dd0039e, 0x25a500ab, 0x00000000}},  //   _dut_, _häst, _wall_,\n  { {0x443e009d, 0x25a5039f, 0x644902db, 0x00000000}},  //   _eut_, _tall_, _žlič,\n  { {0x443e00f4, 0xdb0401a2, 0x8af0006b, 0x00000000}},  //   _fut_, heiß, lbəc,\n  { {0x656303a0, 0x7bdd01f6, 0x443e03a1, 0x00000000}},  //   manh, _olsu, _gut_,\n  { {0x6d5e020c, 0x5ec60055, 0x7dd003a2, 0x00000000}},  //   _sepa, _লেগে, _läst,\n  { {0x6d5e008a, 0x8af0006b, 0x443e0068, 0x00000000}},  //   _pepa, naət, _zut_,\n  { {0x7dd00073, 0x63a902cc, 0x656303a3, 0x00000000}},  //   _näst, lden, nanh,\n  { {0x62890048, 0x6b8d03a4, 0x443e00d4, 0x00000000}},  //   lteo, ffag, _xut_,\n  { {0x7ae4002d, 0x656303a5, 0x673b0023, 0x00000000}},  //   tzit, hanh, _nguj,\n  { {0x7dd00073, 0x6d5e0169, 0x6289002a, 0x00000000}},  // [380] _bäst, _tepa, nteo,\n  { {0x673b0211, 0x7ae40161, 0x62890051, 0x00000000}},  //   _aguj, rzit, iteo,\n  { {0xdb0f00d4, 0xab670089, 0x65630082, 0x00000000}},  //   _encà, _beļģ, danh,\n  { {0x63a903a6, 0x443e01e5, 0x628903a7, 0x00000000}},  //   jden, _rut_, kteo,\n  { {0x443e018e, 0x7dd00039, 0xd76500a2, 0x00000000}},  //   _sut_, _fäst, رنوی,\n  { {0x63a903a8, 0x7dd003a9, 0x443e00ab, 0x00000000}},  //   eden, _gäst, _put_,\n  { {0x7dd003aa, 0x78450006, 0xf77203ab, 0x00000000}},  //   _häss, _tėva, _لاء_,\n  { {0x63a900ea, 0x6008005d, 0x7a29007f, 0x00000000}},  //   gden, nımd, _užtr,\n  { {0xa802005d, 0x291803ac, 0x656303ad, 0x00000000}},  //   ğıda, _hyra_, banh,\n  { {0x443e03ae, 0x7dd003af, 0x63a90142, 0x00000000}},  //   _tut_, _mäss, aden,\n  { {0x7dd0010f, 0x443e006c, 0xc05701e1, 0x00000000}},  //   _läss, _uut_, мія_,\n  { {0x291803b0, 0x601d009d, 0x3eb203b1, 0x00000000}},  //   _myra_, rémo, _bryt_,\n  { {0x03d700a0, 0xa30800a1, 0x7dd000f8, 0x00000000}},  //   _קודם_, _عرصے_, _näss,\n  { {0xdb0401a2, 0x00000000, 0x00000000, 0x00000000}},  //   weiß,   ,   ,\n  { {0x4426001d, 0x2ba700ed, 0x6d4703b2, 0x00000000}},  //   _kho_, мјав, rcja,\n  { {0x44260145, 0x3eb20023, 0x00000000, 0x00000000}},  //   _jho_, _fryt_,   ,\n  { {0x160e007d, 0x442603b3, 0x6b8d03b4, 0x00000000}},  // [390] ाकार_, _mho_, rfag,\n  { {0x4426023a, 0x63a903b5, 0x7e7d03b6, 0x00000000}},  //   _lho_, zden, musp,\n  { {0x7dd00073, 0x63a903b7, 0x44260089, 0x00000000}},  //   _väst, yden, _oho_,\n  { {0x44260011, 0x291803b8, 0x764000e0, 0x00000000}},  //   _nho_, _dyra_, _bumy,\n  { {0x7c2d02e1, 0x20030091, 0x7dd0021e, 0x00000000}},  //   mmar, čkih_, _täst,\n  { {0x442603b9, 0x29180039, 0x00000000, 0x00000000}},  //   _aho_, _fyra_,   ,\n  { {0x65630181, 0x44260061, 0x63a903ba, 0x00000000}},  //   ranh, _bho_, tden,\n  { {0x442600ad, 0x7c2d0018, 0x7e7d002d, 0x00000000}},  //   _cho_, nmar, kusp,\n  { {0x63a9004e, 0x66f30164, 0x2a6903bb, 0x00000000}},  //   rden, _अधिक_, nsab_,\n  { {0x600802b9, 0x7c2d010f, 0x628903bc, 0x00000000}},  //   zımd, hmar, rteo,\n  { {0x62890051, 0x7c2d00ab, 0xdb060065, 0x00000000}},  //   steo, kmar, _pakë,\n  { {0x6441000d, 0x656103bd, 0x2a69006c, 0x00000000}},  //   _iuli, _helh, ksab_,\n  { {0x442d03be, 0x6441006a, 0x81d50242, 0x00000000}},  //   mme_, _huli, _подх,\n  { {0x644103bf, 0x7c26008d, 0x270e0011, 0x00000000}},  //   _kuli, _shkr, ộng_,\n  { {0x656102d5, 0xfce603c0, 0x644103c1, 0x00000000}},  //   _melh, хово, _juli,\n  { {0x442d011f, 0x644102cc, 0x7c2d03c2, 0x00000000}},  //   nme_, _muli, gmar,\n  { {0x291e01cd, 0x160f02fb, 0xe9da00d7, 0x00000000}},  // [3a0] _šta_, िवार_, пка_,\n  { {0x442d03c3, 0x7c2d0207, 0xdb0600b9, 0x00000000}},  //   hme_, amar, _jaké,\n  { {0x7c2d0181, 0x2b4b0061, 0x64410006, 0x00000000}},  //   bmar, _ffcc_, _nuli,\n  { {0x442d03c4, 0x7dd0021e, 0xe853007a, 0x00000000}},  //   jme_, _täss, انند,\n  { {0x442603c5, 0x00000000, 0x00000000, 0x00000000}},  //   _rho_,   ,   ,\n  { {0x64410010, 0x442601c5, 0x442d03c6, 0x00000000}},  //   _buli, _sho_, eme_,\n  { {0x644103c7, 0xd49703c8, 0xdcfc0089, 0x00000000}},  //   _culi, еры_, derī,\n  { {0x69ce022b, 0xdb0601aa, 0x442d0213, 0x00000000}},  //   _hobe, _pakè, gme_,\n  { {0x65610047, 0x69ce01ca, 0x64410032, 0x00000000}},  //   _felh, _kobe, _euli,\n  { {0x44260038, 0x442d03c9, 0xf1ba0011, 0x00000000}},  //   _who_, ame_, _thơm_,\n  { {0x33d601fb, 0xdfd10076, 0x442603ca, 0x00000000}},  //   _підт, ليد_, _tho_,\n  { {0xa2e600da, 0x7e7d03b6, 0x04db009b, 0x00000000}},  //   _поед, tusp, _מקבל,\n  { {0x644103cb, 0x9f4b0129, 0x7c2d03cc, 0x00000000}},  //   _zuli, ricà_, vmar,\n  { {0x69ce01d9, 0x64410093, 0x7c2d03cd, 0x00000000}},  //   _nobe, _yuli, wmar,\n  { {0xac1901e1, 0x7c2d03ce, 0x7e7d03cf, 0x00000000}},  //   дову_, tmar, susp,\n  { {0x7c2d03d0, 0x00000000, 0x00000000, 0x00000000}},  //   umar,   ,   ,\n  { {0x7f49004a, 0x9f4b010e, 0x00000000, 0x00000000}},  // [3b0] ñequ, öjõu_,   ,\n  { {0x69ce03d1, 0x9f590048, 0x7e6d0032, 0x00000000}},  //   _cobe, insí_, _ivap,\n  { {0x69ce0059, 0x7c2d0061, 0x442d0023, 0x00000000}},  //   _dobe, pmar, yme_,\n  { {0x6561013e, 0x442d0288, 0x64410133, 0x00000000}},  //   _selh, xme_, _ruli,\n  { {0x6441023a, 0x656100b9, 0xe7e200e8, 0x00000000}},  //   _suli, _pelh, _खतरा_,\n  { {0x644103d2, 0x69ce03d3, 0x888200a1, 0x00000000}},  //   _puli, _gobe, _چیلن,\n  { {0x442d03d4, 0x65610181, 0x6441006b, 0x00000000}},  //   tme_, _velh, _quli,\n  { {0x7bcf000d, 0x6b9f001c, 0x442d00f4, 0x00000000}},  //   _jocu, neqg, ume_,\n  { {0x130901fb, 0x9f420065, 0x69d80010, 0x00000000}},  //   ьний_, shkë_, öveg,\n  { {0x442d03d5, 0x7bcf000d, 0xb63503d6, 0x00000000}},  //   sme_, _locu, _شفاع,\n  { {0xf8e103d7, 0xdb1d002a, 0x644103d8, 0x00000000}},  //   पनिय, _cosú, _uuli,\n  { {0x13a70063, 0x00000000, 0x00000000, 0x00000000}},  //   _سنتی_,   ,   ,\n  { {0x69c4007d, 0x3f8c0036, 0xdb060142, 0x00000000}},  //   रामी, ędu_, _také,\n  { {0x82760049, 0x63ab000c, 0xd24e03d9, 0x00000000}},  //   _יענע_, _hagn, _بنو_,\n  { {0xa0a50088, 0x4094007e, 0xa3d5013d, 0x00000000}},  //   _райд, _брыт, _सका_,\n  { {0x69ce0325, 0x63ab0107, 0xd00f0379, 0x00000000}},  //   _sobe, _jagn, _ولو_,\n  { {0x63ab03da, 0x7bcf03db, 0x69ce012b, 0x00000000}},  // [3c0] _magn, _docu, _pobe,\n  { {0xdb0d000c, 0x00000000, 0x00000000, 0x00000000}},  //   rjað,   ,   ,\n  { {0x1d0a03dc, 0x7bcf00ab, 0xddc400e5, 0x00000000}},  //   _цени_, _focu, _eviţ,\n  { {0x63ab03dd, 0x69ce03de, 0x27e003df, 0x00000000}},  //   _nagn, _wobe, óin_,\n  { {0xe73703e0, 0x69ce03e1, 0xe7f3013d, 0x00000000}},  //   вец_, _tobe, _आगरा_,\n  { {0xa613007e, 0x6aa40045, 0x00000000, 0x00000000}},  //   аміч, mwif,   ,\n  { {0x63ab0207, 0x629901aa, 0x44a30025, 0x00000000}},  //   _bagn, _apwo, لموق,\n  { {0x63ab03e2, 0x7dd90026, 0x00000000, 0x00000000}},  //   _cagn, _pìsk,   ,\n  { {0x41e6007e, 0x63ab03e3, 0x8c1b0104, 0x00000000}},  //   віна, _dagn, ווקי,\n  { {0xf1ba0011, 0x63ab0048, 0x27e60052, 0x00000000}},  //   _khơi_, _eagn, lhon_,\n  { {0x25be0061, 0x601d038e, 0xb97b009b, 0x00000000}},  //   _intl_, lémi, וניי,\n  { {0x63ab03e4, 0x7ec9008d, 0x27e603e5, 0x00000000}},  //   _gagn, _nëpë, nhon_,\n  { {0xd2500054, 0xd336008b, 0x6b840146, 0x00000000}},  //   _انت_, _рэжы, dgig,\n  { {0x63ab00ca, 0x628001c5, 0x7bcf0035, 0x00000000}},  //   _zagn, mumo, _socu,\n  { {0x27e60066, 0xa3d60309, 0x62800006, 0x00000000}},  //   khon_, _हवा_, lumo,\n  { {0x313700a0, 0x6008014a, 0x3ed503e6, 0x00000000}},  //   _ברוך_, rımc, _مقبر,\n  { {0x27e603e7, 0x00000000, 0x00000000, 0x00000000}},  // [3d0] dhon_,   ,   ,\n  { {0x3ea90058, 0x9f4000d4, 0x6008014a, 0x00000000}},  //   _isat_, _aliè_, pımc,\n  { {0xf1ba001d, 0xf77503e8, 0x7bcf0035, 0x00000000}},  //   _chơi_, гулю, _tocu,\n  { {0xf093007b, 0x1a65026c, 0x63a003e9, 0x00000000}},  //   ינע_, _میری_, jemn,\n  { {0x63ab000c, 0x62800089, 0x6008005d, 0x00000000}},  //   _ragn, jumo, nıma,\n  { {0x63ab000c, 0x2e24000c, 0x27e600e0, 0x00000000}},  //   _sagn, höfn_, ahon_,\n  { {0x63ab03ea, 0x20020036, 0xcd980104, 0x00000000}},  //   _pagn, ynki_, דדות_,\n  { {0x27e603eb, 0x249603ec, 0x3d3c00a0, 0x00000000}},  //   chon_, انيد_, וגוס,\n  { {0x63ab03ed, 0x628003ee, 0x7c3d03ef, 0x00000000}},  //   _vagn, gumo, _misr,\n  { {0x10a50081, 0x63ab02a3, 0xdb0403f0, 0x00000000}},  //   гион, _wagn, ndiá,\n  { {0x54550216, 0x69c4001c, 0x63ab03f1, 0x00000000}},  //   _свет, राती, _tagn,\n  { {0x628003b5, 0x92b50355, 0x7c3d0066, 0x00000000}},  //   bumo, _محتا, _nisr,\n  { {0x94100061, 0x3ea90035, 0x62c70025, 0x00000000}},  //   ावरच_, _csat_, _جزاك,\n  { {0xc332009b, 0xdb1e0068, 0x3ea90146, 0x00000000}},  //   _הוד_, _éxéc, _dsat_,\n  { {0xfce30264, 0xd1b800a1, 0x3ea90089, 0x00000000}},  //   боро, _جانا_, _esat_,\n  { {0xfaa602ea, 0x81bc0089, 0xd0120025, 0x00000000}},  //   лабо, smēt, _دلع_,\n  { {0xfe72035b, 0x6b8403f2, 0x7c3d0133, 0x00000000}},  // [3e0] _ادب_, rgig, _disr,\n  { {0xf1ba0011, 0x443d0016, 0xd6c40014, 0x00000000}},  //   _phơi_, _liw_, یمای,\n  { {0x27e60010, 0x6d5c00d6, 0x81bc001e, 0x00000000}},  //   thon_, mbra, slēg,\n  { {0x6d5c0240, 0x4b55005e, 0xdb1d000a, 0x00000000}},  //   lbra, _върт, _onsè,\n  { {0xcc3b0049, 0x6d5c0340, 0xddc400ca, 0x00000000}},  //   _רעכט, obra, _zviš,\n  { {0xe9df0051, 0x27e60065, 0x8675007e, 0x00000000}},  //   _dtús_, shon_, рыцц,\n  { {0xe0c70014, 0x63a00190, 0xdb1d01aa, 0x00000000}},  //   _از_, temn, _ansè,\n  { {0xc27403f3, 0xb27403f4, 0x752400b9, 0x00000000}},  //   алиј, алиш, řizo,\n  { {0x443d01aa, 0x7d1e03f5, 0x370603f6, 0x00000000}},  //   _diw_, _lyps, _спаг,\n  { {0x628003f7, 0x63a003f8, 0xe617007e, 0x00000000}},  //   rumo, semn, _бду_,\n  { {0x43860123, 0x6280002d, 0xb97b0049, 0x00000000}},  //   _ملاق, sumo, ענטי,\n  { {0x273a038c, 0x9f590065, 0x75280089, 0x00000000}},  //   _günü_, misë_, _izdz,\n  { {0x9f590065, 0x98b8002b, 0x244a0082, 0x00000000}},  //   lisë_, _ferħ_, _hùm_,\n  { {0x2fc003f9, 0x2e24000c, 0x6d5c03fa, 0x00000000}},  //   _enig_, söfn_, gbra,\n  { {0x9f59008d, 0xfaff0065, 0xdb1d00f4, 0x00000000}},  //   nisë_, _ndër_, _insé,\n  { {0x81bc0089, 0x3b5500ed, 0x61fa03fb, 0x00000000}},  //   slēd, ркар, litl,\n  { {0x6d5c0198, 0x3ea900d4, 0x9f49014a, 0x00000000}},  // [3f0] bbra, _usat_, _amaç_,\n  { {0xdcfc0089, 0x9f590065, 0x61fa03fc, 0x00000000}},  //   sgrā, kisë_, nitl,\n  { {0x9f590065, 0xf9880025, 0xdb0403fd, 0x00000000}},  //   jisë_, انمي_, rdiá,\n  { {0x7e7d01d6, 0x9f590065, 0x61fa014a, 0x00000000}},  //   orsp, disë_, hitl,\n  { {0xd90f026c, 0x61fa03fe, 0x22460173, 0x00000000}},  //   _کیا_, kitl, _nuok_,\n  { {0x443d01aa, 0xaaa8005e, 0x9f590065, 0x00000000}},  //   _siw_, _съюз_, fisë_,\n  { {0x7aed0207, 0x61fa006b, 0x7e7d01a2, 0x00000000}},  //   lzat, ditl, hrsp,\n  { {0x7bcd03ff, 0x244a0011, 0x6d5c0089, 0x00000000}},  //   njau, _dùm_, zbra,\n  { {0x7aed0400, 0x11e501e0, 0x64580061, 0x00000000}},  //   nzat, ижим, apvi,\n  { {0x4375007a, 0x84670265, 0x20b5007e, 0x00000000}},  //   _چهار, _бъде, аёмс,\n  { {0x9f590065, 0x55ba00a0, 0x23c5013d, 0x00000000}},  //   cisë_, _שמעו, वादद,\n  { {0x22950401, 0x9f590173, 0xdb1d004a, 0x00000000}},  //   _видя, nisè_, _ensé,\n  { {0x6d5c0007, 0x61fa0402, 0xceb4006b, 0x00000000}},  //   tbra, bitl, _azər_,\n  { {0x91640054, 0x61fa0403, 0xdb0400c4, 0x00000000}},  //   _هههه, citl, ldiç,\n  { {0x6d5c010f, 0x8f760245, 0x7f7601ee, 0x00000000}},  //   rbra, _купі, _купц,\n  { {0xdb0402d5, 0x2fc0018e, 0x35c7013d, 0x00000000}},  //   ndiç, _unig_, लाड़,\n\n  { {0x896602a8, 0x31670173, 0x9f590065, 0x00000000}},  // [400] икаж, _kenz_, zisë_,\n  { {0x48b6005e, 0x7d1e00f8, 0x00000000, 0x00000000}},  //   ищет, _typs,   ,\n  { {0x320500ab, 0xac0a0404, 0xeb9f00ea, 0x00000000}},  //   inly_, _анна_, _kjøl_,\n  { {0x7bdf0061, 0x9f590065, 0x244a0405, 0x00000000}},  //   ckqu, visë_, _rùm_,\n  { {0x61fa01df, 0x7aed0036, 0x00000000, 0x00000000}},  //   yitl, czat,   ,\n  { {0xd49a0200, 0x5d7a007b, 0x67290089, 0x00000000}},  //   ври_, דאַק, _dzej,\n  { {0x53e601e0, 0x83f80364, 0x399b0097, 0x00000000}},  //   ициа, лекс_, _שילד,\n  { {0x9f59008d, 0x32050022, 0x69c40204, 0x00000000}},  //   risë_, enly_, रावी,\n  { {0x9f59008d, 0x61fa0406, 0x66e30407, 0x00000000}},  //   sisë_, titl, _дота,\n  { {0x9f590408, 0x645802e1, 0x244a0082, 0x00000000}},  //   pisë_, ppvi, _tùm_,\n  { {0x7aed0409, 0x9f59040a, 0x66180142, 0x00000000}},  //   zzat, lisé_, movk,\n  { {0x61fa040b, 0x6568040c, 0x6618040d, 0x00000000}},  //   sitl, _hedh, lovk,\n  { {0x6448040e, 0x9f5900f4, 0x7e7d040f, 0x00000000}},  //   _hudi, nisé_, ursp,\n  { {0x64480006, 0x752d00b9, 0x66180410, 0x00000000}},  //   _kudi, řaze, novk,\n  { {0x65680065, 0x3157009b, 0x7b67007c, 0x00000000}},  //   _medh, _דיון_, итае,\n  { {0x81e80055, 0x7aed0411, 0x80ab0061, 0x00000000}},  //   _যদি_, tzat, _जनते,\n  { {0x6e950054, 0x5e950054, 0x7bcd021e, 0x00000000}},  // [410] _الخا, _الخط, rjau,\n  { {0x20190412, 0x7bcd0413, 0x64480007, 0x00000000}},  //   losi_, sjau, _oudi,\n  { {0x6008014a, 0x66180161, 0xa3d60061, 0x00000000}},  //   kıml, dovk, _हवं_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xef1f0279, 0x60080414, 0x656800d9, 0x00000000}},  //   zgün_, dıml, _bedh,\n  { {0x64480415, 0xa509003b, 0xbb3a009b, 0x00000000}},  //   _budi, лела_, _תעשי,\n  { {0x20190416, 0x64480417, 0x6d450418, 0x00000000}},  //   kosi_, _cudi, _mgha,\n  { {0xd774035b, 0x31670197, 0x69d5012d, 0x00000000}},  //   _واقع, _senz_, _hoze,\n  { {0x6568000b, 0x20190419, 0xdb0400c4, 0x00000000}},  //   _fedh, dosi_, rdiç,\n  { {0x6d45018e, 0xbbd40164, 0x27fd0016, 0x00000000}},  //   _ngha, _धक्क, liwn_,\n  { {0x273300ad, 0x69d5041a, 0xa8790049, 0x00000000}},  //   _ảnh_, _moze, װאָר,\n  { {0x6d45041b, 0xdb06041c, 0xfaff0007, 0x00000000}},  //   _agha, _laká, _reën_,\n  { {0x69d5041d, 0xfaff0007, 0x6d4501f3, 0x00000000}},  //   _ooze, _seën_, _bgha,\n  { {0xc5f2007b, 0x9f59021e, 0x69d5041e, 0x00000000}},  //   ִדן_, ensä_, _noze,\n  { {0xdcf7005f, 0xe0550025, 0xfce3041f, 0x00000000}},  //   _baxı, _اختب, поро,\n  { {0x20190420, 0x66180421, 0x77690422, 0x00000000}},  //   cosi_, zovk, _neex,\n  { {0x69d5002d, 0x4a430423, 0xef1f0424, 0x00000000}},  // [420] _boze, знув, ngül_,\n  { {0xe9d70425, 0x9f59009d, 0xa96a0426, 0x00000000}},  //   бку_, visé_, امام_,\n  { {0xdb1d027b, 0x65680427, 0xb86501b7, 0x00000000}},  //   _bosó, _redh, قانو,\n  { {0x64480020, 0x6d45002b, 0x9f59009d, 0x00000000}},  //   _rudi, _zgha, tisé_,\n  { {0x6448037e, 0x7641011c, 0xa6fa0025, 0x00000000}},  //   _sudi, _bily, دعاء_,\n  { {0x7c240129, 0x9f5900f4, 0x64480211, 0x00000000}},  //   llir, risé_, _pudi,\n  { {0xd467012b, 0xdcf7005f, 0x7641018e, 0x00000000}},  //   бије_, _yaxı, _dily,\n  { {0x325400ed, 0xdb060428, 0x938a004d, 0x00000000}},  //   овир, _zaká, уска_,\n  { {0x20190429, 0x600801df, 0x7641042a, 0x00000000}},  //   vosi_, rıml, _fily,\n  { {0x64480093, 0x7641018e, 0x909800ed, 0x00000000}},  //   _tudi, _gily, авот_,\n  { {0x6448042b, 0x7c24016c, 0x2019042c, 0x00000000}},  //   _uudi, klir, tosi_,\n  { {0x7c29002b, 0x2019007f, 0x00000000, 0x00000000}},  //   ċerk, uosi_,   ,\n  { {0x2019042d, 0x2d9800f4, 0x8af0006b, 0x00000000}},  //   rosi_, ffre_, ncəd,\n  { {0xddcd0036, 0x44240093, 0x10f900a1, 0x00000000}},  //   _stał, llm_, ابیں_,\n  { {0x69d5042e, 0x7c240066, 0xd12f0245, 0x00000000}},  //   _roze, flir, _хх_,\n  { {0x68e1006c, 0xdb0f008e, 0x7c240026, 0x00000000}},  //   _üldi, _hacé, glir,\n  { {0x69d50062, 0xdd910054, 0x4424006c, 0x00000000}},  // [430] _poze, _قوة_, ilm_,\n  { {0x44240039, 0x6d4500e7, 0xceb40049, 0x00000000}},  //   hlm_, _ugha, _זיץ_,\n  { {0x7c2400d4, 0xdb1d042f, 0xdcf7006b, 0x00000000}},  //   blir, _insí, _taxı,\n  { {0x76410430, 0x7649004a, 0xe76b0431, 0x00000000}},  //   _sily, _puey, احان_,\n  { {0xdb2300a2, 0x76410432, 0xdce500ca, 0x00000000}},  //   _روسی, _pily, _mehč,\n  { {0x27fd018e, 0x442f0433, 0x4efc00b3, 0x00000000}},  //   siwn_, _shg_, נהגו,\n  { {0x362300a1, 0x62800434, 0x64420133, 0x00000000}},  //   _ہورہ, ermo, _bioi,\n  { {0x76410435, 0xd79402dc, 0x84360025, 0x00000000}},  //   _wily, _нисъ, يكور_,\n  { {0x644202d0, 0x00000000, 0x00000000, 0x00000000}},  //   _dioi,   ,   ,\n  { {0xfaff0007, 0xe1f9030d, 0xef1f026d, 0x00000000}},  //   _reël_, рго_, rgül_,\n  { {0x3ea00436, 0x600a0437, 0xa069003b, 0x00000000}},  //   _spit_, ином_, јама_,\n  { {0x64420438, 0xd9a6007d, 0xdb1d004a, 0x00000000}},  //   _gioi, _ऑस्ट, _ansí,\n  { {0x11d501e1, 0x8db60088, 0x51f50439, 0x00000000}},  //   _мікр, осві, _وستر,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7a30043a, 0x00000000, 0x00000000, 0x00000000}},  //   näte,   ,   ,\n  { {0xdb0d0051, 0xf09200a0, 0xec160014, 0x00000000}},  //   adaí, _חנה_, آورد,\n  { {0x5336007b, 0x44ef0044, 0x2d98004a, 0x00000000}},  // [440] ַנען_, টপিক_, pfre_,\n  { {0x7a30043b, 0x998a007f, 0x00000000, 0x00000000}},  //   käte, _ribų_,   ,\n  { {0x7c24043c, 0xa17a0049, 0xb17a0049, 0x00000000}},  //   plir, שטעט, שטער,\n  { {0xb09a0049, 0xdb040051, 0x6abd0009, 0x00000000}},  //   ייער, idiú, _frsf,\n  { {0x7bc6043d, 0xdce70089, 0x00000000, 0x00000000}},  //   _inku, majā,   ,\n  { {0x78af00b0, 0xdce70089, 0x00000000, 0x00000000}},  //   äivä, lajā,   ,\n  { {0x37e60088, 0xa6d80044, 0x00000000, 0x00000000}},  //   _довг, _দেশট,   ,\n  { {0x68e3043e, 0x7dd000b0, 0xdce70089, 0x00000000}},  //   ønde, _väsy, najā,\n  { {0xc1a601fc, 0xdceb00d0, 0x7762043f, 0x00000000}},  //   ојни, _čiče, mbox,\n  { {0x776200f8, 0x68e900b9, 0x2be1013d, 0x00000000}},  //   lbox, _ředi, _नवभा,\n  { {0xc95300b6, 0x3d1a0061, 0xa0540088, 0x00000000}},  //   ומת_, _मुले_, явні,\n  { {0x645a005f, 0x6831032e, 0x00000000, 0x00000000}},  //   _itti, rådg,   ,\n  { {0xf77300b6, 0x2ef4007e, 0xf1a90014, 0x00000000}},  //   וקר_, дзяр, _گانه_,\n  { {0x77620009, 0x7bc60440, 0x00000000, 0x00000000}},  //   hbox, _anku,   ,\n  { {0xdb6b0441, 0xf1a9023c, 0x9b6b00ed, 0x00000000}},  //   ирал_, _دانه_, ишаа_,\n  { {0x3d1a0061, 0x3eb000b0, 0x80b80061, 0x00000000}},  //   _मुळे_, ältä_, ेमीं,\n  { {0x161a03d7, 0x2aab0098, 0x7762004a, 0x00000000}},  // [450] धवार_, штво_, dbox,\n  { {0x645a0282, 0x657a0082, 0x99980087, 0x00000000}},  //   _otti, _ndth, _pirš_,\n  { {0x6d550036, 0x00000000, 0x00000000, 0x00000000}},  //   mcza,   ,   ,\n  { {0x27e90010, 0x99980006, 0x80380049, 0x00000000}},  //   óan_, _virš_, ַנגע_,\n  { {0x645a0442, 0x68e30030, 0xf1bc0164, 0x00000000}},  //   _atti, øndb, ्ञान,\n  { {0x7a30010f, 0x6b8d0443, 0x00000000, 0x00000000}},  //   täte, lgag,   ,\n  { {0x69cd0061, 0x7d180056, 0x00000000, 0x00000000}},  //   साठी, _øvst,   ,\n  { {0x7a300444, 0xf7730445, 0x6aad00e7, 0x00000000}},  //   räte, _زار_, owaf,\n  { {0x645a011f, 0x35f5025f, 0xdb0f0446, 0x00000000}},  //   _etti, _епар, _incó,\n  { {0x200b0036, 0x95c8004d, 0x00000000, 0x00000000}},  //   enci_, _муха_,   ,\n  { {0x6d550046, 0xc6170309, 0x69c701ee, 0x00000000}},  //   dcza, दकीय_, _mnje,\n  { {0xdb040051, 0x6d5500b4, 0x00000000, 0x00000000}},  //   rdiú, ecza,   ,\n  { {0x63a90100, 0x33f40447, 0x24770035, 0x00000000}},  //   meen, _تسلس, lăm_,\n  { {0x63a90343, 0xed570242, 0x225f008a, 0x00000000}},  //   leen, зор_, mpuk_,\n  { {0x8af0006b, 0xdce70089, 0x800b00a1, 0x00000000}},  //   hbət, tajā, _گروہ_,\n  { {0x60dc0039, 0x24510428, 0x63a90448, 0x00000000}},  //   ärme, _mám_, neen,\n  { {0xfaa300ed, 0x20020036, 0x765b00e7, 0x00000000}},  // [460] нато, miki_, _ntuy,\n  { {0x20020149, 0x63a900b0, 0xe9d7007c, 0x00000000}},  //   liki_, heen, пку_,\n  { {0x24510428, 0x63a90449, 0x02a80316, 0x00000000}},  //   _nám_, keen, _कन्न,\n  { {0x6b8d001c, 0x200203e9, 0x63a900b5, 0x00000000}},  //   cgag, niki_, jeen,\n  { {0x63a9044a, 0xdb060039, 0x5694044b, 0x00000000}},  //   deen, _bakå, фалт,\n  { {0xf1d00011, 0x24510011, 0x200200e7, 0x00000000}},  //   _mạch_, _bám_, hiki_,\n  { {0x3958044c, 0x2451001d, 0x2477001a, 0x00000000}},  //   _ifrs_, _cám_, găm_,\n  { {0x2451044d, 0x63a9044e, 0xa6d30044, 0x00000000}},  //   _dám_, geen, _দেওয়,\n  { {0x366701f9, 0x2002006b, 0x6d550036, 0x00000000}},  //   _нато_, diki_, ycza,\n  { {0x6831044f, 0x00000000, 0x00000000, 0x00000000}},  //   råde,   ,   ,\n  { {0x80df0055, 0x2002000b, 0x92cc0044, 0x00000000}},  //   _ফেব্, fiki_, রনে_,\n  { {0xf1d00011, 0x20020450, 0x27e60010, 0x00000000}},  //   _bạch_, giki_, nkon_,\n  { {0xf194007c, 0x41e60451, 0x00000000, 0x00000000}},  //   _жиль, _ніка,   ,\n  { {0xc27b0452, 0x7a2b014a, 0xdb0f00f6, 0x00000000}},  //   _פרוי, gütl, _oncò,\n  { {0x20020453, 0x24510011, 0x6d550036, 0x00000000}},  //   biki_, _xám_, rcza,\n  { {0x1bd40454, 0x69c70166, 0x394a01a2, 0x00000000}},  //   нося, _snje, _agbs_,\n  { {0xf1d00011, 0x24770035, 0x59d9007e, 0x00000000}},  // [470] _gạch_, zăm_, одаў_,\n  { {0x8af0005f, 0xceb400b3, 0x63a90032, 0x00000000}},  //   vbət, _טיפ_, zeen,\n  { {0x63a90455, 0x765b0456, 0x67d50457, 0x00000000}},  //   yeen, _stuy, можу,\n  { {0xdb0f0211, 0x24510458, 0xeabf0082, 0x00000000}},  //   _hací, _rám_, _trù_,\n  { {0x24510161, 0x9f4b008e, 0x63a9010e, 0x00000000}},  //   _sám_, licó_, veen,\n  { {0x20020459, 0x2477001a, 0x8af0013f, 0x00000000}},  //   ziki_, tăm_, rbət,\n  { {0x5884045a, 0x63a90368, 0xdb0f027b, 0x00000000}},  //   _пыта, teen, _mací,\n  { {0x245101ca, 0xf8b2009b, 0x2477001a, 0x00000000}},  //   _vám_, _בשל_, răm_,\n  { {0x765b0009, 0x27ff0145, 0x24770035, 0x00000000}},  //   _utuy, _imun_, săm_,\n  { {0x13060057, 0x81bc001e, 0x63a901e2, 0x00000000}},  //   ьный_, blēm, seen,\n  { {0x660300b9, 0x20020059, 0xf1d00011, 0x00000000}},  //   mink, tiki_, _sạch_,\n  { {0x6603010a, 0x9f4b0211, 0x351a0049, 0x00000000}},  //   link, dicó_, _ווענ,\n  { {0x2002000b, 0x8af0005f, 0x6289045b, 0x00000000}},  //   riki_, hbər, queo,\n  { {0x6603010a, 0xc33200b6, 0x9f4b008e, 0x00000000}},  //   nink, _סוג_, ficó_,\n  { {0x27ed0368, 0x81bc001e, 0x20020020, 0x00000000}},  //   _olen_, klēj, piki_,\n  { {0x660300b0, 0x2d84014a, 0xbf9b00fa, 0x00000000}},  //   hink, şme_, liên,\n  { {0x66030169, 0x2247010e, 0x78a90166, 0x00000000}},  // [480] kink, _kink_, _ćeva,\n  { {0xceb4005f, 0x6603045c, 0xbf9b00c4, 0x00000000}},  //   _isə_, jink, niên,\n  { {0x2247045d, 0x66030161, 0x2fc90022, 0x00000000}},  //   _mink_, dink, _ynag_,\n  { {0x2247045e, 0xbf9b0011, 0xfbdf0082, 0x00000000}},  //   _link_, hiên, _hiên_,\n  { {0x27e6045f, 0xfbdf0011, 0x8af0006b, 0x00000000}},  //   rkon_, _kiên_, rbəs,\n  { {0x27e60460, 0x66030461, 0x27ed0462, 0x00000000}},  //   skon_, gink, _elen_,\n  { {0xbf9b0181, 0xdcfe014a, 0x64a3003b, 0x00000000}},  //   diên, _kapı, ваја,\n  { {0xfbdf00ad, 0x69dc0463, 0x24800213, 0x00000000}},  //   _liên_, _hore, čim_,\n  { {0x51860088, 0x12be0044, 0x2327003b, 0x00000000}},  //   муна, েন্দ, моћи_,\n  { {0xfbdf001d, 0x66030036, 0xdce70036, 0x00000000}},  //   _niên_, cink, lają,\n  { {0x69dc01d9, 0x22470343, 0x9f4b0026, 0x00000000}},  //   _more, _dink_, dicò_,\n  { {0xe36302a8, 0xd0110464, 0xdce70036, 0x00000000}},  //   _акци, الح_, nają,\n  { {0x3f8501f6, 0xfbdf001d, 0x63a20058, 0x00000000}},  //   ğlu_, _biên_, _ibon,\n  { {0x69dc0292, 0xbf9b0181, 0x9f4b008e, 0x00000000}},  //   _nore, ciên, ticó_,\n  { {0xdb0f0211, 0x62860465, 0xdce70036, 0x00000000}},  //   _vací, škod, kają,\n  { {0xdb0d0181, 0x22470240, 0x66030466, 0x00000000}},  //   ndaç, _zink_, zink,\n  { {0x5a350467, 0xdce70046, 0xa3cf001c, 0x00000000}},  // [490] енат, dają, शात_,\n  { {0x69dc0468, 0x7e6d0020, 0x27ff0093, 0x00000000}},  //   _core, _iwap, _smun_,\n  { {0x69dc000d, 0x66030469, 0x27ed01aa, 0x00000000}},  //   _dore, vink, _plen_,\n  { {0x6603046a, 0xdd0d0036, 0x7e6d046b, 0x00000000}},  //   wink, półp, _kwap,\n  { {0x69dc02cc, 0xf77001fa, 0x3669046c, 0x00000000}},  //   _fore, شان_, чало_,\n  { {0x69dc0059, 0x7e6d00e7, 0xfbdf0082, 0x00000000}},  //   _gore, _mwap, _xiên_,\n  { {0xdcfe011f, 0x7648046d, 0x6603046e, 0x00000000}},  //   _yapı, _didy, rink,\n  { {0x6603046f, 0x69dc0470, 0x7bdd0032, 0x00000000}},  //   sink, _zore, _josu,\n  { {0xc245004c, 0x69dc008e, 0x66030471, 0x00000000}},  //   нник, _yore, pink,\n  { {0xdb1d0039, 0x63a20472, 0x7bdd0473, 0x00000000}},  //   _insä, _ebon, _losu,\n  { {0xbf9b0181, 0x059600a6, 0x91d00044, 0x00000000}},  //   riên, _سالگ, িসংখ,\n  { {0x34bd013d, 0x6e250127, 0x7e6d0173, 0x00000000}},  //   ्मीद, _akhb, _bwap,\n  { {0x224700f6, 0x62640088, 0x63b90016, 0x00000000}},  //   _tink_, _авіа, _iawn,\n  { {0x63bb0474, 0xf1d0001d, 0x63b9002b, 0x00000000}},  //   ldun, _hạnh_, _hawn,\n  { {0xfbdf00ad, 0x32050038, 0xa3e30061, 0x00000000}},  //   _viên_, mily_, _नका_,\n  { {0x63bb0475, 0xc4d20476, 0x69dc0207, 0x00000000}},  //   ndun, נגן_, _sore,\n  { {0x69dc01cd, 0xfbdf001d, 0xf1d0001d, 0x00000000}},  // [4a0] _pore, _tiên_, _mạnh_,\n  { {0xf1d0001d, 0x81e10055, 0x7ae40009, 0x00000000}},  //   _lạnh_, নোর_, ryit,\n  { {0x69dc0018, 0xdcfe0477, 0x229901aa, 0x00000000}},  //   _vore, _tapı, hèk_,\n  { {0xf7720379, 0x629b0006, 0xe73a0478, 0x00000000}},  //   ااا_, ktuo, пее_,\n  { {0x69dc01d9, 0xdce70036, 0x7c260066, 0x00000000}},  //   _tore, rają, _ikkr,\n  { {0xb9060055, 0x629b00e0, 0x68310479, 0x00000000}},  //   _বই_, dtuo, råda,\n  { {0x06d80044, 0xf7720025, 0x76480095, 0x00000000}},  //   _দেখি, _ماء_, _vidy,\n  { {0xf1d0001d, 0x32660088, 0xd3700025, 0x00000000}},  //   _cạnh_, нтов, جهة_,\n  { {0x63b9047a, 0x7648000a, 0x75280036, 0x00000000}},  //   _dawn, _tidy, _wydz,\n  { {0x75280036, 0x26c40032, 0x51f701ab, 0x00000000}},  //   _tydz, _irmo_, енью_,\n  { {0x7e6d001c, 0x68150036, 0x63b90066, 0x00000000}},  //   _swap, ląda, _fawn,\n  { {0x63a2047b, 0x20d50006, 0x26c40087, 0x00000000}},  //   _ubon, džią_, _krmo_,\n  { {0x91e60216, 0x629b00f6, 0x2d85029d, 0x00000000}},  //   _поде, ctuo, óleo_,\n  { {0x92f2005d, 0x7bdd0035, 0x00000000, 0x00000000}},  //   ığım, _sosu,   ,\n  { {0x7bdd047c, 0xe5710049, 0x442601c5, 0x00000000}},  //   _posu, יַן_, _kko_,\n  { {0x7e6d0418, 0x44260087, 0x00000000, 0x00000000}},  //   _twap, _jko_,   ,\n  { {0x442600e7, 0xe987003b, 0xafdb0190, 0x00000000}},  // [4b0] _mko_, ећен, rmød,\n  { {0xafdb0030, 0x99990006, 0x3ea90022, 0x00000000}},  //   smød, _rusų_, _ipat_,\n  { {0xa775047d, 0x78ba0027, 0x26c40023, 0x00000000}},  //   влеч, _štvr, _armo_,\n  { {0x4426047e, 0xfbdf0011, 0x6b67009d, 0x00000000}},  //   _nko_, _kiêm_, _dégâ,\n  { {0x7c2d047f, 0x63b9002b, 0x212b0011, 0x00000000}},  //   mlar, _rawn, ́ch_,\n  { {0x44260480, 0x7c2d0481, 0x66e2007c, 0x00000000}},  //   _ako_, llar, роша,\n  { {0x32050482, 0xfbdf0011, 0x66e70089, 0x00000000}},  //   vily_, _liêm_, _sīkā,\n  { {0x7c2d01f6, 0xd6d80055, 0xe795026c, 0x00000000}},  //   nlar, _দেওয, _جاسک,\n  { {0x63bb022b, 0x7c2d002d, 0xfbdf0011, 0x00000000}},  //   rdun, ilar, _niêm_,\n  { {0x3d1a03d7, 0x629b0006, 0x4426022b, 0x00000000}},  //   _मुझे_, rtuo, _eko_,\n  { {0x7c2d0483, 0x629b0484, 0x23e701fb, 0x00000000}},  //   klar, stuo, _підв,\n  { {0x7c2d011f, 0x320500ab, 0x629b007f, 0x00000000}},  //   jlar, sily_, ptuo,\n  { {0x443f0485, 0x442d0486, 0x7c2d01f6, 0x00000000}},  //   mmu_, mle_, dlar,\n  { {0x644b006a, 0x7c2d006c, 0x3ea90487, 0x00000000}},  //   _higi, elar, _dpat_,\n  { {0x442d0488, 0x68380489, 0xed57003b, 0x00000000}},  //   ole_, líde, тос_,\n  { {0x2d81048a, 0xb7bc0055, 0x442d048b, 0x00000000}},  //   _edhe_, _অক্ট, nle_,\n  { {0x442d048c, 0xdb0f0051, 0x2019048d, 0x00000000}},  // [4c0] ile_, _pacá, érie_,\n  { {0x442d048e, 0x644b048f, 0x7c2d0032, 0x00000000}},  //   hle_, _ligi, alar,\n  { {0x7c2d006b, 0x7db5008b, 0x442d0490, 0x00000000}},  //   blar, _ёсьц, kle_,\n  { {0x443f01ca, 0x442d0030, 0x7c2d0491, 0x00000000}},  //   jmu_, jle_, clar,\n  { {0x442d0224, 0x443f0066, 0x9696005e, 0x00000000}},  //   dle_, dmu_, треш,\n  { {0x442d001f, 0x44260492, 0x628900f8, 0x00000000}},  //   ele_, _sko_, dreo,\n  { {0x69ce0493, 0x644b0494, 0x442d02f1, 0x00000000}},  //   _inbe, _bigi, fle_,\n  { {0x442d0018, 0x68e30495, 0xe4e301fb, 0x00000000}},  //   gle_, ände, рішн,\n  { {0x62890496, 0x26c4010e, 0x00000000, 0x00000000}},  //   greo, _urmo_,   ,\n  { {0x442d0198, 0x644b009f, 0x7c2d0497, 0x00000000}},  //   ale_, _eigi, zlar,\n  { {0x442d0498, 0x44260209, 0xf99300b6, 0x00000000}},  //   ble_, _tko_, ברת_,\n  { {0x442d028a, 0x44260499, 0x62890051, 0x00000000}},  //   cle_, _uko_, breo,\n  { {0x7c24049a, 0x69ce049b, 0x4424049c, 0x00000000}},  //   doir, _onbe, mom_,\n  { {0x8277007b, 0x24580011, 0xfbdf0011, 0x00000000}},  //   _יעדע_, _kém_, _viêm_,\n  { {0x7c2d038c, 0x2d5802d3, 0x7c240051, 0x00000000}},  //   tlar, тись_, foir,\n  { {0x69ce02cc, 0x0a6b01fc, 0x6c6a00a1, 0x00000000}},  //   _anbe, држи_, علقہ_,\n  { {0x7c2d049d, 0x6d5c0026, 0x644000b0, 0x00000000}},  // [4d0] rlar, bcra, immi,\n  { {0x4424049e, 0x7c2d049f, 0x442d04a0, 0x00000000}},  //   hom_, slar, zle_,\n  { {0x442d04a1, 0x7c2d047f, 0x443f04a2, 0x00000000}},  //   yle_, plar, ymu_,\n  { {0x442404a3, 0x7c2d005f, 0xb8db0204, 0x00000000}},  //   jom_, qlar, _अन_,\n  { {0x442d04a4, 0x7e7d01d6, 0xc1780006, 0x00000000}},  //   vle_, nssp, nkės_,\n  { {0x69d80010, 0xdb0600b9, 0x1a680014, 0x00000000}},  //   övet, _jaký, _شیمی_,\n  { {0x442d0365, 0x18b80057, 0x644b04a5, 0x00000000}},  //   tle_, _игры_, _pigi,\n  { {0x44240119, 0x442d00f4, 0x7e7d0109, 0x00000000}},  //   gom_, ule_, kssp,\n  { {0x442d04a6, 0x11d90025, 0x6d5c0093, 0x00000000}},  //   rle_, فوظة_, ycra,\n  { {0x442d04a7, 0xe0d900ed, 0x628904a8, 0x00000000}},  //   sle_, ево_, rreo,\n  { {0x442d0038, 0x4424049c, 0x339500f3, 0x00000000}},  //   ple_, bom_, _ملاز,\n  { {0x442404a9, 0x7f5d0009, 0x644b00e7, 0x00000000}},  //   com_, gcsq, _uigi,\n  { {0x7c2400f4, 0x3f9e0036, 0x00000000, 0x00000000}},  //   voir, ętu_,   ,\n  { {0x7bcf04aa, 0xdb0404ab, 0x645c00c4, 0x00000000}},  //   _ancu, leiç, _éric,\n  { {0x7c24028c, 0x6d5c00ab, 0x2019009d, 0x00000000}},  //   toir, rcra, éric_,\n  { {0xf092009b, 0x6d5c0051, 0xabf504ac, 0x00000000}},  //   _הנה_, scra, ачущ,\n  { {0xed5a00c0, 0x7c2404ad, 0x00000000, 0x00000000}},  // [4e0] _поп_, roir,   ,\n  { {0x7bcf0219, 0x7c24009d, 0x7a2b006c, 0x00000000}},  //   _encu, soir, kütu,\n  { {0xdb0404ae, 0x2fd7007a, 0x6fd80204, 0x00000000}},  //   rdiñ, _شوید_, यापू,\n  { {0x61e00201, 0x27e0009f, 0x78800428, 0x00000000}},  //   _पक्ष, ðin_, _návš,\n  { {0x442404a3, 0x4a7504af, 0x2bd10061, 0x00000000}},  //   vom_, _выст, हारा,\n  { {0x69ce010f, 0x00000000, 0x00000000, 0x00000000}},  //   _unbe,   ,   ,\n  { {0x44240027, 0xdb040181, 0x657800ea, 0x00000000}},  //   tom_, feiç, ravh,\n  { {0xd90d007a, 0x7e6404b0, 0x3a2a0093, 0x00000000}},  //   _تیم_, _otip, _hkbp_,\n  { {0x81bc001e, 0x659604b1, 0x00000000, 0x00000000}},  //   klēt, _مجار,   ,\n  { {0x683800b9, 0x00000000, 0x00000000, 0x00000000}},  //   bídc,   ,   ,\n  { {0xf99300b6, 0x7e640058, 0xf48700a6, 0x00000000}},  //   זרת_, _atip, _مانی,\n  { {0xde59008b, 0x7e7d04b2, 0x1e1d013d, 0x00000000}},  //   камі_, tssp, पक्ष_,\n  { {0x81e30044, 0xbb1b0035, 0x00000000, 0x00000000}},  //   _নগর_, _adîn,   ,\n  { {0xdb070047, 0x7e7d04b3, 0xdb060010, 0x00000000}},  //   ámít, rssp, _lakó,\n  { {0x7e6400d9, 0x9f52000a, 0x00000000, 0x00000000}},  //   _etip, _olyè_,   ,\n  { {0xdb06005a, 0x3a2a0093, 0x7a2b010f, 0x00000000}},  //   _fakü, _akbp_, hütt,\n  { {0x200b04b4, 0x497504b5, 0x7b6404b6, 0x00000000}},  // [4f0] mici_, илас, стсе,\n  { {0xdd910014, 0x200b0207, 0xd91b007c, 0x00000000}},  //   _بود_, lici_, нье_,\n  { {0xd7e701ff, 0x00000000, 0x00000000, 0x00000000}},  //   лідо,   ,   ,\n  { {0x200b0119, 0x69d80039, 0xf3f10082, 0x00000000}},  //   nici_, över, _mục_,\n  { {0x3a2a04b7, 0x7c3a00f4, 0xdae600a1, 0x00000000}},  //   _fkbp_, ître, _پہلو_,\n  { {0x48770137, 0x7bd70006, 0xdb0e000c, 0x00000000}},  //   _مدرس, šbuč, _þjál,\n  { {0xdb1d0030, 0x200b014a, 0x25b60025, 0x00000000}},  //   _ansø, kici_, شهيد_,\n  { {0x69c901f5, 0x73e50242, 0x200b036a, 0x00000000}},  //   _होती, роиз, jici_,\n  { {0x200b04b8, 0x2215025f, 0x00000000, 0x00000000}},  //   dici_, ифор,   ,\n  { {0xe12500ed, 0x7a3000b0, 0x9f590026, 0x00000000}},  //   импи, vätk, misù_,\n  { {0x200b04b9, 0xdb0601aa, 0x7e6404ba, 0x00000000}},  //   fici_, _jakò, _stip,\n  { {0x200b0207, 0x76430093, 0xdb060173, 0x00000000}},  //   gici_, lmny, _makò,\n  { {0x3263026c, 0xdb0601aa, 0x32670098, 0x00000000}},  //   _انتہ, _lakò, _стев,\n  { {0x3f8c006b, 0x7e6404bb, 0x00000000, 0x00000000}},  //   şdu_, _vtip,   ,\n  { {0x76430022, 0x61e304bc, 0x00000000, 0x00000000}},  //   imny, _ionl,   ,\n  { {0x61e30047, 0x78450006, 0x6ab601d6, 0x00000000}},  //   _honl, _tėvy, twyf,\n  { {0x395601f9, 0x7a2b0010, 0xda650025, 0x00000000}},  // [500] ањет, yütt, مالي,\n  { {0x2fc000d4, 0xdb06000a, 0xdb1d000a, 0x00000000}},  //   _haig_, _bakò, _masè,\n  { {0x61e300fa, 0xd826005e, 0xdb1d000a, 0x00000000}},  //   _monl, аджи, _lasè,\n  { {0x443d018e, 0xe666008b, 0xb8ce03d7, 0x00000000}},  //   _nhw_, атко, _कह_,\n  { {0x2fc004bd, 0x660a04be, 0xb86600a1, 0x00000000}},  //   _maig_, tifk, _چارو,\n  { {0x200b013e, 0x2d9802e1, 0x645e0181, 0x00000000}},  //   zici_, ngre_, ípio,\n  { {0x200b014a, 0x443d0145, 0x7a3000b0, 0x00000000}},  //   yici_, _bhw_, jäti,\n  { {0x443d04bf, 0xe8d7009b, 0x25a000b9, 0x00000000}},  //   _chw_, _דולר_, řil_,\n  { {0x9f49014a, 0x443d04c0, 0x61e304c1, 0x00000000}},  //   _ilaç_, _dhw_, _bonl,\n  { {0xc05a008b, 0x61e3008e, 0x443d0022, 0x00000000}},  //   кім_, _conl, _ehw_,\n  { {0x200b04c2, 0x61e304c3, 0x3a3700b3, 0x00000000}},  //   tici_, _donl, שרים_,\n  { {0x61e304c4, 0x00000000, 0x00000000, 0x00000000}},  //   _eonl,   ,   ,\n  { {0x200b005f, 0x2fc00058, 0x00000000, 0x00000000}},  //   rici_, _daig_,   ,\n  { {0x200b001a, 0x628204c5, 0x628000f8, 0x00000000}},  //   sici_, _ivoo, msmo,\n  { {0x52b602d2, 0x200b04c6, 0x2fc00129, 0x00000000}},  //   _अनुस, pici_, _faig_,\n  { {0xd0f7009b, 0x3b55007e, 0x2fc000f6, 0x00000000}},  //   _כמות_, скар, _gaig_,\n  { {0xa3a80201, 0x62800056, 0x69de00ea, 0x00000000}},  // [510] ख्य_, nsmo, fjpe,\n  { {0xf9930464, 0x683801dc, 0x9967005c, 0x00000000}},  //   تبر_, vída, ртал,\n  { {0xb9c40025, 0x00000000, 0x00000000, 0x00000000}},  //   تقلي,   ,   ,\n  { {0x3f9904c7, 0x2a69010e, 0x27ed0066, 0x00000000}},  //   ngsu_, ppab_, _ċens_,\n  { {0x6fd8001c, 0xf9930025, 0x27e40035, 0x00000000}},  //   यातू, _وبس_, _domn_,\n  { {0x6280005b, 0x7aed0093, 0x443d013e, 0x00000000}},  //   dsmo, myat, _shw_,\n  { {0xfc3f001d, 0x628604c8, 0x7aed04c9, 0x00000000}},  //   _khí_, škol, lyat,\n  { {0x81c30055, 0x1d18009b, 0x61e3005d, 0x00000000}},  //   _একই_, יקור_, _sonl,\n  { {0xfc3f002a, 0x7aed020c, 0xf1d20061, 0x00000000}},  //   _mhí_, nyat, तांन,\n  { {0x61fa00ab, 0x673b016c, 0x7a3004ca, 0x00000000}},  //   ghtl, _izuj, täti,\n  { {0x628001d6, 0x20090022, 0x7aed0022, 0x00000000}},  //   asmo, _bmai_, hyat,\n  { {0xfc3f0011, 0xfbdf0082, 0x7aed04cb, 0x00000000}},  //   _nhí_, _kiêu_, kyat,\n  { {0x2fc004bd, 0x62800066, 0x7a3000b0, 0x00000000}},  //   _vaig_, csmo, säti,\n  { {0x61fa04cc, 0xfc3f0211, 0x7aed04cd, 0x00000000}},  //   chtl, _ahí_, dyat,\n  { {0x40950025, 0xfc3f0195, 0xfbdf0011, 0x00000000}},  //   _العر, _bhí_, _liêu_,\n  { {0xfc3f001d, 0x3ce50039, 0x7ff60167, 0x00000000}},  //   _chí_, älva_, _دستا,\n  { {0x68e304ce, 0x44c70082, 0x7aed0010, 0x00000000}},  // [520] ändn, _lđ_, gyat,\n  { {0xc33200b6, 0x27e4001a, 0xdb04009d, 0x00000000}},  //   לון_, _somn_, nfié,\n  { {0xe93a00ed, 0x44c70011, 0xb17a0049, 0x00000000}},  //   учај_, _nđ_, רטער,\n  { {0x62800016, 0x8b960088, 0x7aed0045, 0x00000000}},  //   ysmo, _уроч, byat,\n  { {0x673b0036, 0x683800b9, 0x661a0093, 0x00000000}},  //   _czuj, bídn, _pjtk,\n  { {0x99d60151, 0x44c70082, 0x8af0006b, 0x00000000}},  //   _اتحا, _bđ_, dbəx,\n  { {0x6aa40161, 0x44c70011, 0x75890088, 0x00000000}},  //   ltif, _cđ_, рсів_,\n  { {0xc7a304cf, 0x7bc404d0, 0x628000f8, 0x00000000}},  //   _ниск, ndiu, tsmo,\n  { {0x320c013e, 0x20090145, 0x00000000, 0x00000000}},  //   tidy_, _rmai_,   ,\n  { {0x628004d1, 0x776204d2, 0x00000000, 0x00000000}},  //   rsmo, lcox,   ,\n  { {0x201902d5, 0x628004d3, 0x546a00ed, 0x00000000}},  //   ério_, ssmo, _саем_,\n  { {0x7aed005f, 0x6aa404d4, 0xf537009b, 0x00000000}},  //   yyat, ktif, _פנאי_,\n  { {0x7336007a, 0x833603d6, 0x657a0023, 0x00000000}},  //   _ارائ, _اراض, _keth,\n  { {0x329b019b, 0x645a04d5, 0x9f4000f6, 0x00000000}},  //   _עבוד, _kuti, _alió_,\n  { {0xfc3f001d, 0x657a0038, 0xf1a9007a, 0x00000000}},  //   _phí_, _meth, _خانه_,\n  { {0x645a002d, 0x317e010f, 0xddcd0161, 0x00000000}},  //   _muti, latz_, _uvaž,\n  { {0x1a5b0025, 0xed4e00a1, 0x3f890145, 0x00000000}},  // [530] اشرة_, ٹھی_, _idau_,\n  { {0x645a028c, 0x7aed04be, 0x657a00ab, 0x00000000}},  //   _outi, ryat, _neth,\n  { {0xe8e000ad, 0x2bc4024c, 0xfbdf0011, 0x00000000}},  //   ười_, _लोका, _siêu_,\n  { {0x317e04d6, 0x473500ed, 0x657a0016, 0x00000000}},  //   hatz_, онес, _aeth,\n  { {0x657a0016, 0x6aa400f4, 0x3f890020, 0x00000000}},  //   _beth, ctif, _mdau_,\n  { {0x645a04d7, 0x25a90166, 0x1958007e, 0x00000000}},  //   _buti, đalo_, _гары_,\n  { {0x69d50428, 0x645a001a, 0x6d570061, 0x00000000}},  //   _inze, _cuti, _mgxa,\n  { {0xfbdf001d, 0x69c504d8, 0x645a04d9, 0x00000000}},  //   _tiêu_, ldhe, _duti,\n  { {0x6fdd04da, 0xdb1d00dc, 0x657a04db, 0x00000000}},  //   यानं, _insó, _feth,\n  { {0x645a0052, 0x657a04dc, 0x80a904dd, 0x00000000}},  //   _futi, _geth, авов_,\n  { {0xf99201f8, 0x645a04de, 0x69c504df, 0x00000000}},  //   ורי_, _guti, idhe,\n  { {0x7a3004e0, 0x777b00f4, 0x81bc0089, 0x00000000}},  //   lätt, _jeux, slēp,\n  { {0xeef5008b, 0x3f89018e, 0x645a0032, 0x00000000}},  //   пярэ, _ddau_, _zuti,\n  { {0x317e0061, 0x20190093, 0x63a901a2, 0x00000000}},  //   catz_, ansi_, lfen,\n  { {0xb1470014, 0x68e301a2, 0x442f0022, 0x00000000}},  //   _دیدم_, ändl, _kkg_,\n  { {0x69d5001f, 0x26cd00e0, 0x6aa40197, 0x00000000}},  //   _anze, _oreo_, ttif,\n  { {0x6aa400ab, 0x7bc4006c, 0xb4b6007d, 0x00000000}},  // [540] utif, rdiu, _छन्_,\n  { {0x8eb3026c, 0xe9d701e1, 0x69c50250, 0x00000000}},  //   _کمیش, оку_, gdhe,\n  { {0xd91004e1, 0x02b60309, 0x9dd701ce, 0x00000000}},  //   ریر_, _अन्न, _וויק_,\n  { {0x645a001a, 0x5fdd0061, 0x657a04e2, 0x00000000}},  //   _ruti, यायल, _seth,\n  { {0x26cd0219, 0x645a010a, 0x777b00f4, 0x00000000}},  //   _creo_, _suti, _deux,\n  { {0x645a04e3, 0x7c36000c, 0x63a904e4, 0x00000000}},  //   _puti, llyr, efen,\n  { {0x63a904e5, 0x6fca0164, 0x442f04e6, 0x00000000}},  //   ffen, ियां, _bkg_,\n  { {0x657a00bb, 0x63a90016, 0x044300ed, 0x00000000}},  //   _weth, gfen, мејн,\n  { {0x442f04e7, 0x657a0322, 0x00000000, 0x00000000}},  //   _dkg_, _teth,   ,\n  { {0x645a0232, 0x238c0006, 0x51f803e8, 0x00000000}},  //   _tuti, dėjų_, сною_,\n  { {0x645a021e, 0x4254007a, 0x69db0061, 0x00000000}},  //   _uuti, _کنتر, नाती,\n  { {0x317e010f, 0x442f01e5, 0x00000000, 0x00000000}},  //   satz_, _gkg_,   ,\n  { {0x41e6007e, 0x53160014, 0x00000000, 0x00000000}},  //   _міка, _بذار,   ,\n  { {0x81f804e8, 0x386a00fa, 0x3f8401e5, 0x00000000}},  //   _دفتر_, _otbr_, ómur_,\n  { {0x271c001d, 0x644204e9, 0x71260025, 0x00000000}},  //   ỉnh_, _khoi, _برشل,\n  { {0x3eb20045, 0xdfd10025, 0x929d00b4, 0x00000000}},  //   _fpyt_, _أية_, szłe,\n  { {0x8af0006b, 0x64420051, 0x69c50023, 0x00000000}},  // [550] dcəs, _mhoi, tdhe,\n  { {0x78a5009f, 0x00000000, 0x00000000, 0x00000000}},  //   tthv,   ,   ,\n  { {0x69c504ea, 0x9f40000c, 0x26cd04eb, 0x00000000}},  //   rdhe, _hlið_, _sreo_,\n  { {0x78a500ea, 0x76410023, 0x69c50023, 0x00000000}},  //   rthv, _shly, sdhe,\n  { {0x7c2d002d, 0x7bda009b, 0x7a3004ec, 0x00000000}},  //   moar, _הקרו, tätt,\n  { {0x7c2d000d, 0x26cd001a, 0x290704ed, 0x00000000}},  //   loar, _vreo_, únas_,\n  { {0x7a3004ee, 0x6ab9006b, 0x442f01a3, 0x00000000}},  //   rätt, şafı, _pkg_,\n  { {0x7a3004ee, 0x57b404ef, 0x644204f0, 0x00000000}},  //   sätt, _обст, _choi,\n  { {0xd5bb04f1, 0x63a904f2, 0x64420051, 0x00000000}},  //   _все_, rfen, _dhoi,\n  { {0xdb0d04f3, 0x7c2d04f4, 0x00000000, 0x00000000}},  //   ndañ, hoar,   ,\n  { {0xf99200bd, 0x6442002a, 0x7c2d022b, 0x00000000}},  //   ערט_, _fhoi, koar,\n  { {0xa3bb0070, 0xb4d7007d, 0x7f8500a1, 0x00000000}},  //   _خاطر_, ामी_, ولپن,\n  { {0x7c2d04f5, 0x644900f4, 0xdb1d04f6, 0x00000000}},  //   doar, mmei, _basí,\n  { {0x64490181, 0x238c007f, 0x8b0800b4, 0x00000000}},  //   lmei, rėjų_, nięż,\n  { {0x7c2d04f7, 0xe6b8013d, 0x7c3a009d, 0x00000000}},  //   foar, _इन्ज, îtro,\n  { {0x442d0253, 0x7c2d04f8, 0x1e8604f9, 0x00000000}},  //   noe_, goar, _елим,\n  { {0x3f8201a3, 0x00000000, 0x00000000, 0x00000000}},  // [560] maku_,   ,   ,\n  { {0x3f8204fa, 0x644904fb, 0xdcfc04fc, 0x00000000}},  //   laku_, hmei, larč,\n  { {0x53bd0164, 0x442d04fd, 0x23bd0309, 0x00000000}},  //   ्याश, koe_, ्याद,\n  { {0x442d0066, 0x7a30010f, 0xdb1d00b9, 0x00000000}},  //   joe_, täts, _zasí,\n  { {0x5fdd001c, 0x442d0112, 0x644904fe, 0x00000000}},  //   यातल, doe_, dmei,\n  { {0x7bc604ff, 0xe5340500, 0x3f8200b0, 0x00000000}},  //   _haku, мель, haku_,\n  { {0x6442002a, 0x7bc6011c, 0x64490501, 0x00000000}},  //   _phoi, _kaku, fmei,\n  { {0x2937007b, 0x7bc60502, 0x442d0035, 0x00000000}},  //   _זאלן_, _jaku, goe_,\n  { {0x7bc60503, 0x31650061, 0x3f8201a3, 0x00000000}},  //   _maku, fclz_, daku_,\n  { {0x7bc604cb, 0x7c2d04f8, 0x6e2e00f8, 0x00000000}},  //   _laku, zoar, jobb,\n  { {0x6442002a, 0x442d046a, 0x6e2e0197, 0x00000000}},  //   _thoi, boe_, dobb,\n  { {0x7bc601d9, 0x7c2d002d, 0xdcfc0107, 0x00000000}},  //   _naku, xoar, garč,\n  { {0x63a20472, 0x7c2d001a, 0xdb0d00c4, 0x00000000}},  //   _icon, voar, meaç,\n  { {0x91e30216, 0x611402a8, 0x7bc60058, 0x00000000}},  //   _поче, _одлу, _aaku,\n  { {0x7c2d000d, 0x7bc60504, 0xdcfc0505, 0x00000000}},  //   toar, _baku, barč,\n  { {0x7bc60093, 0x2c0d0061, 0x61ea0506, 0x00000000}},  //   _caku, _सगळं_, _hofl,\n  { {0x7c2d002d, 0x4a55007e, 0x7bc60142, 0x00000000}},  // [570] roar, дкас, _daku,\n  { {0x68380224, 0x7c2d0507, 0x7e6d0508, 0x00000000}},  //   bídk, soar, _itap,\n  { {0x2d830509, 0x7c2d001a, 0x41ae0309, 0x00000000}},  //   maje_, poar, ज्यस,\n  { {0x27e9009f, 0x2d9c0073, 0x2d83050a, 0x00000000}},  //   ðan_, _över_, laje_,\n  { {0x6fa503d7, 0x442d016c, 0x7e69001a, 0x00000000}},  //   _कानू, voe_, _împă,\n  { {0x63a2050b, 0x7bc60046, 0x2d830211, 0x00000000}},  //   _acon, _zaku, naje_,\n  { {0x442d050c, 0x7bc60453, 0x6449050d, 0x00000000}},  //   toe_, _yaku, tmei,\n  { {0x69c70190, 0x2d83000a, 0x63a20009, 0x00000000}},  //   _haje, haje_, _ccon,\n  { {0x69c7050e, 0x6449010f, 0xdcfc050f, 0x00000000}},  //   _kaje, rmei, varč,\n  { {0xa8790049, 0x3f8201a3, 0x78a10510, 0x00000000}},  //   ֿאָר, waku_, _älvs,\n  { {0x69c70161, 0x9327025a, 0x3f8201a3, 0x00000000}},  //   _maje, _کران, taku_,\n  { {0x63a20051, 0x69c70511, 0x683801dc, 0x00000000}},  //   _gcon, _laje, vídk,\n  { {0x7bc60512, 0x3f820513, 0x63bb00e7, 0x00000000}},  //   _raku, raku_, meun,\n  { {0x7bc60209, 0x69c70514, 0x2d8301aa, 0x00000000}},  //   _saku, _naje, gaje_,\n  { {0x7bc60515, 0x6e2e0516, 0xed570517, 0x00000000}},  //   _paku, robb, дор_,\n  { {0x8c4300e2, 0x6e2e0026, 0xf3f80089, 0x00000000}},  //   весе, sobb, _kuģa_,\n  { {0x7bc600b0, 0x69c70518, 0xc22200a1, 0x00000000}},  // [580] _vaku, _baje, _سکیو,\n  { {0x7bc6000b, 0x68380181, 0x7c290091, 0x00000000}},  //   _waku, mídi, čera,\n  { {0x7bc60127, 0x69c70213, 0x1c46003b, 0x00000000}},  //   _taku, _daje, _оном,\n  { {0x63bb00f4, 0x00000000, 0x00000000, 0x00000000}},  //   jeun,   ,   ,\n  { {0xa3e10164, 0x69c70519, 0x6b840048, 0x00000000}},  //   दान_, _faje, maig,\n  { {0x6b84002a, 0x69c7051a, 0x63a2051b, 0x00000000}},  //   laig, _gaje, _scon,\n  { {0x63a20009, 0x628f00fa, 0x61ea0095, 0x00000000}},  //   _pcon, ácon, _rofl,\n  { {0x69c70119, 0x6b84002a, 0x2d830211, 0x00000000}},  //   _zaje, naig, zaje_,\n  { {0x2d8301aa, 0x752d005a, 0xdb0d00fa, 0x00000000}},  //   yaje_, ğaza, reaç,\n  { {0x27e6021e, 0x6b84051c, 0x24f6007c, 0x00000000}},  //   ljon_, haig, _очер,\n  { {0x2d830470, 0xd4c60439, 0x6b8400e0, 0x00000000}},  //   vaje_, _تغذي, kaig,\n  { {0x68e3051d, 0x2d83051e, 0x6e95051f, 0x00000000}},  //   ändi, waje_, ниму,\n  { {0x6b840051, 0x2d830213, 0xfe6e025a, 0x00000000}},  //   daig, taje_, یگی_,\n  { {0x61ac0044, 0x00000000, 0x00000000, 0x00000000}},  //   _কোরআ,   ,   ,\n  { {0x2d830520, 0x6b840051, 0x69c70253, 0x00000000}},  //   raje_, faig, _raje,\n  { {0x2d83000d, 0xa0080054, 0x20020521, 0x00000000}},  //   saje_, _يقول_, chki_,\n  { {0x2d830522, 0x7e6d0523, 0x68380181, 0x00000000}},  // [590] paje_, _utap, cídi,\n  { {0x2fc900b5, 0xdb1d0524, 0x00000000, 0x00000000}},  //   _haag_, _casá,   ,\n  { {0x6b84010a, 0x61e70039, 0x26c4002d, 0x00000000}},  //   baig, öjli, _asmo_,\n  { {0x2d810525, 0x69c70526, 0x2fc90007, 0x00000000}},  //   _hehe_, _waje, _jaag_,\n  { {0xdb1d0527, 0x2fc90168, 0x69c70528, 0x00000000}},  //   _ansö, _maag_, _taje,\n  { {0x7a2b010f, 0x2fc901b5, 0xa594005e, 0x00000000}},  //   hütz, _laag_, връщ,\n  { {0x63bb015c, 0x6fa50061, 0x2d81006c, 0x00000000}},  //   teun, _काढू, _mehe_,\n  { {0x321e013e, 0x2d81006c, 0x75fd0173, 0x00000000}},  //   enty_, _lehe_, _dèza,\n  { {0xc6a40081, 0x63bb010f, 0xb06500b0, 0x00000000}},  //   _архи, reun, kyää,\n  { {0xddc40091, 0x63bb0529, 0xdb0400c4, 0x00000000}},  //   _otiš, seun, nfiá,\n  { {0x27ed00bb, 0x83fc0091, 0x932400a2, 0x00000000}},  //   _koen_, _suđe, فرین,\n  { {0x6838052a, 0x321e0022, 0x00000000, 0x00000000}},  //   tídi, anty_,   ,\n  { {0x2d81002d, 0x2fc9052b, 0x6b84052c, 0x00000000}},  //   _behe_, _daag_, vaig,\n  { {0x6838052d, 0x27ff018e, 0x11d90025, 0x00000000}},  //   rídi, _llun_, _روعة_,\n  { {0x6b84052e, 0xc5f2052f, 0x62860530, 0x00000000}},  //   taig, נדל_, škot,\n  { {0x27ed0292, 0x64590009, 0x683800fa, 0x00000000}},  //   _noen_, _jiwi, pídi,\n  { {0x64590020, 0x6b840531, 0x62890056, 0x00000000}},  // [5a0] _miwi, raig, nseo,\n  { {0x6b84002a, 0x2d81010f, 0x27ff0532, 0x00000000}},  //   saig, _gehe_, _alun_,\n  { {0xdb1d0010, 0x7d7b009b, 0x6b840533, 0x00000000}},  //   _vasá, _מניו, paig,\n  { {0x27ed00bb, 0xc6a60534, 0x25a5005b, 0x00000000}},  //   _coen_, ерки, _acll_,\n  { {0x27ed0100, 0x79850009, 0x27e60232, 0x00000000}},  //   _doen_, bahw, rjon_,\n  { {0x27e60535, 0x25a500f6, 0x3e660082, 0x00000000}},  //   sjon_, _ccll_, _môt_,\n  { {0x69dc0536, 0x20000026, 0x8cd3013d, 0x00000000}},  //   _inre, _olii_, डियो,\n  { {0xb5fd049c, 0x3447007e, 0xafdb00ea, 0x00000000}},  //   _ruše, нчын_, nmøt,\n  { {0xb5fd040d, 0xf1db0061, 0x64590537, 0x00000000}},  //   _suše, बांन, _diwi,\n  { {0x44ce0036, 0x171b0049, 0x22580538, 0x00000000}},  //   _tę_, _זומע, örk_,\n  { {0x7a2b010f, 0x5a17009b, 0x00000000, 0x00000000}},  //   tütz, תקין_,   ,\n  { {0x2d81010f, 0x00000000, 0x00000000, 0x00000000}},  //   _sehe_,   ,   ,\n  { {0x69dc00c7, 0xee3f0062, 0x2fc90539, 0x00000000}},  //   _onre, stým_, _vaag_,\n  { {0xb5fd00ca, 0x6286053a, 0x2fc90007, 0x00000000}},  //   _tuše, škos, _waag_,\n  { {0x9c470147, 0x765a0006, 0x11e90025, 0x00000000}},  //   ехал, _mity, _تعني_,\n  { {0x69dc053b, 0x765a0173, 0xc1780006, 0x00000000}},  //   _anre, _lity, lbė_,\n  { {0x5a35053c, 0xa3e101f5, 0x2d8100e7, 0x00000000}},  // [5b0] внат, दात_, _tehe_,\n  { {0x27ed0007, 0x61fa053d, 0x00000000, 0x00000000}},  //   _soen_, nktl,   ,\n  { {0xe611025a, 0x27ed0016, 0xdcfc0089, 0x00000000}},  //   یشت_, _poen_, parā,\n  { {0x69dc053e, 0x87e4053f, 0xe7190025, 0x00000000}},  //   _enre, люче, ويات_,\n  { {0xf7700188, 0x7bdd00ab, 0x765a0540, 0x00000000}},  //   صان_, _insu, _bity,\n  { {0x765a0541, 0x0c74007a, 0xceb400a0, 0x00000000}},  //   _city, _جدید, ריס_,\n  { {0x27ed02ae, 0xdb04009f, 0x6aad01e5, 0x00000000}},  //   _toen_, leið, ltaf,\n  { {0xc447026c, 0x7bcd0542, 0x19580147, 0x00000000}},  //   ریشن_, ndau, _часы_,\n  { {0x62890061, 0x24800091, 0x7c3a00f4, 0x00000000}},  //   useo, ćima_, îtri,\n  { {0x929d0036, 0x64590093, 0x6289008a, 0x00000000}},  //   szło, _wiwi, rseo,\n  { {0x7bdd0543, 0x628900ea, 0xdb04000c, 0x00000000}},  //   _onsu, sseo, heið,\n  { {0xdb04000c, 0x6289010e, 0x00000000, 0x00000000}},  //   keið, pseo,   ,\n  { {0x764800b0, 0x6d450145, 0x7bcd0544, 0x00000000}},  //   _yhdy, _azha, ddau,\n  { {0x51870545, 0x7bdd01a3, 0x7af600b0, 0x00000000}},  //   _чуда, _ansu, vyyt,\n  { {0x15f4013d, 0x6aad0546, 0xc223009e, 0x00000000}},  //   _अवसर_, etaf, _لکھو,\n  { {0x7ae4002d, 0x3e660547, 0x7bcd0548, 0x00000000}},  //   txit, _tôt_, gdau,\n  { {0xdfd2026c, 0x00000000, 0x00000000, 0x00000000}},  // [5c0] _ميں_,   ,   ,\n  { {0xfe9b00b3, 0x7bdd0549, 0xafdb00ea, 0x00000000}},  //   _קיימ, _ensu, smøt,\n  { {0x7e6400b0, 0x7af600b0, 0xeb9f0030, 0x00000000}},  //   _huip, syyt, _blød_,\n  { {0x7e640020, 0x6601006c, 0x765a01aa, 0x00000000}},  //   _kuip, _allk, _sity,\n  { {0x765a054a, 0x77910167, 0xc7a3017f, 0x00000000}},  //   _pity, صیلا, ричк,\n  { {0x6838054b, 0x69dc01ac, 0x9633007e, 0x00000000}},  //   vídu, _unre, аніц,\n  { {0x7e64054c, 0x32050022, 0xeb9f0190, 0x00000000}},  //   _luip, dhly_, _flød_,\n  { {0x59e00061, 0x2cba0085, 0xeb9f0146, 0x00000000}},  //   नावर, _mppd_, _glød_,\n  { {0x2a660048, 0x2cba0093, 0xd403054d, 0x00000000}},  //   íobh_, _lppd_, рящи,\n  { {0x320500ab, 0x7bcd007f, 0x00000000, 0x00000000}},  //   ghly_, zdau,   ,\n  { {0xa99b0049, 0x68380181, 0x61fa054e, 0x00000000}},  //   וביר, sídu, rktl,\n  { {0xc058008b, 0x66180062, 0x2d87012d, 0x00000000}},  //   кія_, livk, _žne_,\n  { {0xa294007e, 0x44260093, 0x672901f3, 0x00000000}},  //   _салі, _ijo_, _xxej,\n  { {0x2731001d, 0xdb04000c, 0x32050142, 0x00000000}},  //   ỡng_, veið, chly_,\n  { {0x4426008d, 0xab950088, 0xd042006b, 0x00000000}},  //   _kjo_, ливі, hvlə,\n  { {0x6aad054f, 0xb5fd0550, 0xa4b7009b, 0x00000000}},  //   ttaf, _muša, כללה_,\n  { {0xab840551, 0x20190552, 0x7e640553, 0x00000000}},  // [5d0] руск, misi_, _guip,\n  { {0x20190554, 0x6aad0555, 0xdb04000c, 0x00000000}},  //   lisi_, rtaf, reið,\n  { {0x6aad014a, 0x44260556, 0x67d500ed, 0x00000000}},  //   staf, _ojo_, ложу,\n  { {0x7bdd033b, 0xc794008b, 0x20190557, 0x00000000}},  //   _unsu, аршы, nisi_,\n  { {0x4b7a019b, 0x3a8400a5, 0xa3e10309, 0x00000000}},  //   _ראשו, _высв, दास_,\n  { {0xd1260558, 0x4426008d, 0x2019000b, 0x00000000}},  //   _هم_, _ajo_, hisi_,\n  { {0x2019014a, 0x44260559, 0x64b50426, 0x00000000}},  //   kisi_, _bjo_, احتر,\n  { {0xb5fd055a, 0x2019055b, 0x6e35055c, 0x00000000}},  //   _duša, jisi_, hozb,\n  { {0xe3b60147, 0x55a500a1, 0x4426055d, 0x00000000}},  //   убы_, _مجاہ, _djo_,\n  { {0x4426055e, 0x00000000, 0x00000000, 0x00000000}},  //   _ejo_,   ,   ,\n  { {0x201904cd, 0x7c2901ae, 0x7e64055f, 0x00000000}},  //   fisi_, čerj, _suip,\n  { {0xc50c0049, 0xbb1b0035, 0x20190560, 0x00000000}},  //   _קלאָ, _reîn, gisi_,\n  { {0x443f0561, 0xd24e0063, 0x7e64009d, 0x00000000}},  //   mlu_, تنی_, _quip,\n  { {0x443f0562, 0x831a007b, 0x22920025, 0x00000000}},  //   llu_, _אונז, _الوس,\n  { {0x20190563, 0x443f006c, 0x00000000, 0x00000000}},  //   bisi_, olu_,   ,\n  { {0x66180107, 0x443f0564, 0x20190565, 0x00000000}},  //   zivk, nlu_, cisi_,\n  { {0x443f021e, 0x9e5a005e, 0x8c4300e3, 0x00000000}},  // [5e0] ilu_, _проф_, сете,\n  { {0x443f0566, 0x7a3001a2, 0xd839000a, 0x00000000}},  //   hlu_, lätz, _akō_,\n  { {0x443f0567, 0x3ea20568, 0x00000000, 0x00000000}},  //   klu_, lukt_,   ,\n  { {0x2bab01f5, 0x2d8a0569, 0xdc9b00b3, 0x00000000}},  //   _छाया, labe_, _איטל,\n  { {0x443f056a, 0x6006056b, 0x68e30039, 0x00000000}},  //   dlu_, _góme, ändr,\n  { {0x7c24001a, 0x7a30010f, 0x443f056c, 0x00000000}},  //   lnir, hätz, elu_,\n  { {0x5faa0061, 0x443f056d, 0x2955005e, 0x00000000}},  //   _काढल, flu_, _вътр,\n  { {0x69ce056e, 0x443f000c, 0x7c24056f, 0x00000000}},  //   _habe, glu_, nnir,\n  { {0x2d8a0570, 0x6b86012d, 0x629b0006, 0x00000000}},  //   kabe_, _mekg, gruo,\n  { {0x69ce002d, 0x32b70025, 0x201900e7, 0x00000000}},  //   _jabe, ادية_, wisi_,\n  { {0x443f0571, 0x69ce0572, 0x2019023a, 0x00000000}},  //   blu_, _mabe, tisi_,\n  { {0x443f02a4, 0x69ce0573, 0x9f49000c, 0x00000000}},  //   clu_, _labe, _blað_,\n  { {0xa3e102f4, 0x2019011f, 0x80ca0044, 0x00000000}},  //   दार_, risi_, িমধ্,\n  { {0x20190574, 0xd25001b7, 0x2d8a010f, 0x00000000}},  //   sisi_, _بنت_, gabe_,\n  { {0x201902db, 0x0217009b, 0xafdb0030, 0x00000000}},  //   pisi_, _תחום_, rløb,\n  { {0xfbdf001d, 0x69ce0030, 0x44240173, 0x00000000}},  //   _thêm_, _aabe, nnm_,\n  { {0x7c3f001c, 0x3f8b008a, 0x69ce0575, 0x00000000}},  // [5f0] rlqr, macu_, _babe,\n  { {0x69ce0576, 0x3b54005e, 0x443f0279, 0x00000000}},  //   _cabe, скур, zlu_,\n  { {0x69ce0577, 0x443f0578, 0xb5fd016c, 0x00000000}},  //   _dabe, ylu_, _bušn,\n  { {0x8d74007a, 0x443f006b, 0x7c240579, 0x00000000}},  //   _پایا, xlu_, cnir,\n  { {0xb5fd057a, 0x66e50478, 0x443f0095, 0x00000000}},  //   _dušn, рола, vlu_,\n  { {0x69ce002d, 0x00000000, 0x00000000, 0x00000000}},  //   _gabe,   ,   ,\n  { {0x2aaf006b, 0x3dd70044, 0x3f8b0107, 0x00000000}},  //   lüb_, _সকাল, kacu_,\n  { {0x69ce0027, 0x7bcf057b, 0x3f8b057c, 0x00000000}},  //   _zabe, _jacu, jacu_,\n  { {0x443f020c, 0x49190061, 0x020501fc, 0x00000000}},  //   rlu_, _येतो_, изин,\n  { {0x443f009f, 0xd24e057d, 0x7bcf001a, 0x00000000}},  //   slu_, وني_, _lacu,\n  { {0x443f057e, 0x6faa0061, 0x7bcf057f, 0x00000000}},  //   plu_, _कादं, _oacu,\n  { {0xdcfe0089, 0xc059007e, 0x3f8b0064, 0x00000000}},  //   _nepā, ліў_, gacu_,\n  { {0x91e5003b, 0xf38c0049, 0x2d8a0032, 0x00000000}},  //   _воле, _טראָ, tabe_,\n  { {0x44d50580, 0x7a30001f, 0xee370581, 0x00000000}},  //   _kā_, sätz, иня_,\n  { {0x2d8a01d9, 0x44d5001e, 0x3f8b0582, 0x00000000}},  //   rabe_, _jā_, bacu_,\n  { {0x7bcf00fa, 0x3f8b00fa, 0x00000000, 0x00000000}},  //   _cacu, cacu_,   ,\n  { {0x7c240583, 0xfaa60057, 0xcb0003d7, 0x00000000}},  // [600] rnir, разо, लैंड_,\n  { {0x69ce01d5, 0x7bcf0584, 0x2d96005e, 0x00000000}},  //   _qabe, _eacu, _трис,\n  { {0x7bcf0585, 0x44c70010, 0x08c601ee, 0x00000000}},  //   _facu, _nő_, рбен,\n  { {0x7bcf0020, 0xf0b60049, 0x69ce0586, 0x00000000}},  //   _gacu, ילער_, _wabe,\n  { {0x69ce049a, 0x7bc40035, 0x00000000, 0x00000000}},  //   _tabe, meiu,   ,\n  { {0xa61301fb, 0x3f8b0587, 0x96f700ed, 0x00000000}},  //   оміч, zacu_, решт_,\n  { {0x291e0039, 0x64aa006b, 0xb5fd016c, 0x00000000}},  //   _äta_, _rəis, _tušn,\n  { {0x07a30545, 0xf3f801c5, 0x00000000, 0x00000000}},  //   _масн, _kuģi_,   ,\n  { {0x3f8b0107, 0x41e6007e, 0x5214007c, 0x00000000}},  //   vacu_, аіна, йдит,\n  { {0x44c70010, 0x3f8b0045, 0x00000000, 0x00000000}},  //   _fő_, wacu_,   ,\n  { {0x7e760387, 0x3f8b01ee, 0xf993009b, 0x00000000}},  //   _atyp, tacu_, חרת_,\n  { {0xb5fc0066, 0x6aa4050c, 0x7e760045, 0x00000000}},  //   _diġe, kuif, _btyp,\n  { {0x7bcf0588, 0xc7b3009b, 0x3f8b012d, 0x00000000}},  //   _racu, חבר_, racu_,\n  { {0x7bcf0107, 0x27230011, 0x3f8b0521, 0x00000000}},  //   _sacu, ằng_, sacu_,\n  { {0x40940025, 0x7bcf04aa, 0x4c94007c, 0x00000000}},  //   _البر, _pacu, жисс,\n  { {0x95fe0044, 0x7e760009, 0x3ced0091, 0x00000000}},  //   ্চিম_, _ftyp, ćev_,\n  { {0x99670589, 0x7bcf058a, 0xddcd002b, 0x00000000}},  // [610] ател, _vacu, _kważ,\n  { {0x2aaf006b, 0x69a70061, 0x2b850082, 0x00000000}},  //   rüb_, _चाळी, ặc_,\n  { {0x7bcf058b, 0xc7c7058c, 0x00000000, 0x00000000}},  //   _tacu, исди,   ,\n  { {0xf7f40014, 0x7bc4001a, 0x5f0a0044, 0x00000000}},  //   يسند, ceiu, রপরও_,\n  { {0xa3ea0164, 0xd6d90046, 0x09cf0044, 0x00000000}},  //   मान_, _była_, রাবা,\n  { {0x6b8d006c, 0xb8cd0044, 0x00000000, 0x00000000}},  //   laag, _কন_,   ,\n  { {0x69c5006c, 0xcd98009b, 0x18a4007e, 0x00000000}},  //   mehe, בדות_, _маём,\n  { {0x69c50004, 0x6b8d011c, 0x53c9058d, 0x00000000}},  //   lehe, naag, угим_,\n  { {0x6006004a, 0xe5c7058e, 0x00000000, 0x00000000}},  //   _nóma, _всео,   ,\n  { {0xa205058f, 0x44d5001e, 0x69c50056, 0x00000000}},  //   спод, _tā_, nehe,\n  { {0x3f8900f4, 0x7e760590, 0x6b8d0058, 0x00000000}},  //   _beau_, _styp, kaag,\n  { {0x69c50591, 0xdb040592, 0x6b8d0112, 0x00000000}},  //   hehe, rfiú, jaag,\n  { {0x6b8d00c7, 0x69c5003f, 0x237f0065, 0x00000000}},  //   daag, kehe, mbuj_,\n  { {0x63a90376, 0x3f9e014a, 0x69c50065, 0x00000000}},  //   lgen, ştu_, jehe,\n  { {0x61e30593, 0xeb9a0594, 0x1d070595, 0x00000000}},  //   _innl, лив_, бери_,\n  { {0x63a90596, 0x78a50107, 0x60dc0030, 0x00000000}},  //   ngen, duhv, ærme,\n  { {0x63a9010f, 0xfe720025, 0xb5fd0087, 0x00000000}},  // [620] igen, _عدة_, _pušl,\n  { {0x69c50597, 0x443d0598, 0x20020052, 0x00000000}},  //   gehe, _lkw_, lkki_,\n  { {0xa3d703d7, 0x395c0039, 0xdcfe001a, 0x00000000}},  //   ाया_, ävs_, _depă,\n  { {0x6b8d001c, 0x2002021e, 0x07a6003b, 0x00000000}},  //   caag, nkki_, садн,\n  { {0xadec03d7, 0x69c50599, 0x6aa4059a, 0x00000000}},  //   ञापन_, behe, quif,\n  { {0x63a9059b, 0xb8660439, 0x69c5059c, 0x00000000}},  //   egen, _هارو, cehe,\n  { {0x18a3007e, 0x63a9010f, 0x7d7b0049, 0x00000000}},  //   _нарм, fgen, אנצו,\n  { {0x63a9059d, 0x68150036, 0x3a3a0039, 0x00000000}},  //   ggen, ządz, lopp_,\n  { {0x443d01d6, 0x78bb012d, 0xfbd3009b, 0x00000000}},  //   _dkw_, _ćuvi, לתה_,\n  { {0x63a9059e, 0xd9cf0044, 0x60060092, 0x00000000}},  //   agen, রাথম, _róma,\n  { {0x3f8900f4, 0x63a902c2, 0xb5fc0066, 0x00000000}},  //   _peau_, bgen, _tiġb,\n  { {0x82a601e0, 0x61e300ea, 0x3a3a00f8, 0x00000000}},  //   _гадж, _ennl, hopp_,\n  { {0x3f89009d, 0x3a3a059f, 0xddcd05a0, 0x00000000}},  //   _veau_, kopp_, _ataš,\n  { {0xddcd0036, 0x6b8d00e7, 0x00000000, 0x00000000}},  //   _uważ, waag,   ,\n  { {0x69c50010, 0x6b8d05a1, 0x00000000, 0x00000000}},  //   vehe, taag,   ,\n  { {0x321e05a2, 0x600605a3, 0x27e400e0, 0x00000000}},  //   lity_, _tóma, _nnmn_,\n  { {0x69c5010f, 0x6b8d01b5, 0xfaff0065, 0x00000000}},  // [630] tehe, raag, _afër_,\n  { {0x996705a4, 0x321e0038, 0xddab05a5, 0x00000000}},  //   стал, nity_, _стил_,\n  { {0x63a905a6, 0x094b05a7, 0x69c505a8, 0x00000000}},  //   ygen, учаи_, rehe,\n  { {0x69c5001f, 0xb8f10316, 0xad1a00b6, 0x00000000}},  //   sehe, _वन_, _כותר,\n  { {0x63a9013f, 0x8f9c0104, 0x00000000, 0x00000000}},  //   vgen, רידי,   ,\n  { {0x2009018e, 0x00000000, 0x00000000, 0x00000000}},  //   _llai_,   ,   ,\n  { {0x63a90270, 0x2002000c, 0x321e05a9, 0x00000000}},  //   tgen, ykki_, dity_,\n  { {0x6683026c, 0xdb0d0211, 0x5fd90061, 0x00000000}},  //   _فیصل, leañ, _बोलल,\n  { {0x2329019d, 0x4209003b, 0xb5fd05a0, 0x00000000}},  //   ропи_, инио_, _jušk,\n  { {0xb5fd0119, 0x63a90168, 0x3125007c, 0x00000000}},  //   _mušk, sgen, ждог,\n  { {0xd12e00a1, 0x443d0093, 0x200905aa, 0x00000000}},  //   ہمی_, _tkw_, _blai_,\n  { {0xa3ea02f4, 0xb4d5006e, 0x2009005b, 0x00000000}},  //   माण_, िटी_, _clai_,\n  { {0xe2da026c, 0x200200b0, 0xb5fd05ab, 0x00000000}},  //   _پانچ_, rkki_, _nušk,\n  { {0x2738001d, 0x321e05ac, 0x27e00089, 0x00000000}},  //   ứng_, city_, ķini_,\n  { {0xed5a0057, 0xdbc7009f, 0x20090026, 0x00000000}},  //   ров_, töðu, _flai_,\n  { {0xc4d200b3, 0x1c4601ff, 0x20040089, 0x00000000}},  //   וגל_, інам, ījis_,\n  { {0xa3ea0061, 0x3a3a05ad, 0x00000000, 0x00000000}},  // [640] मात_, topp_,   ,\n  { {0xb5fd04eb, 0x497a007e, 0xc18c0049, 0x00000000}},  //   _dušk, рсаў_, ָטאָ,\n  { {0xd6d90046, 0x6e3c001b, 0x3a3a00f8, 0x00000000}},  //   _było_, morb, ropp_,\n  { {0x2d9a05ae, 0x3a3a0145, 0x6e3c05af, 0x00000000}},  //   _hdpe_, sopp_, lorb,\n  { {0x628600b9, 0x00000000, 0x00000000, 0x00000000}},  //   škoz,   ,   ,\n  { {0xd49a00d7, 0x2ba803d7, 0x321e0133, 0x00000000}},  //   ари_, गलवा, xity_,\n  { {0x25a0011f, 0xd5ad026c, 0x321e05b0, 0x00000000}},  //   ğil_, اہم_, vity_,\n  { {0x25a0014a, 0xaa7b01dc, 0x186700e2, 0x00000000}},  //   şil_, _frýd, _фати_,\n  { {0x24890091, 0x6e3c0010, 0x6ab60036, 0x00000000}},  //   ćama_, korb, ntyf,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x321e0038, 0xb3ca026b, 0x104b007c, 0x00000000}},  //   rity_, _влез_, иями_,\n  { {0x321e00ab, 0x7d03006b, 0x320c00e7, 0x00000000}},  //   sity_, _ünsi, shdy_,\n  { {0x6e3c05b1, 0x7aed05b2, 0x185b0049, 0x00000000}},  //   forb, xxat, יכטע,\n  { {0xf287026c, 0x6e3c0032, 0x00000000, 0x00000000}},  //   _بھٹو_, gorb,   ,\n  { {0x48c50055, 0x3f820022, 0x00000000, 0x00000000}},  //   _এপ্র, bbku_,   ,\n  { {0x7aed05b3, 0x61f800ea, 0x7e7d05b4, 0x00000000}},  //   txat, _hovl, ppsp,\n  { {0x7f4d006b, 0x6e3c0232, 0x00000000, 0x00000000}},  // [650] _uzaq, borb,   ,\n  { {0x527b007b, 0x386400e5, 0xc98405b5, 0x00000000}},  //   ינמא, _aimr_, дуци,\n  { {0x2d9105b6, 0x2d830065, 0x81bc0089, 0x00000000}},  //   maze_, mbje_, tnēj,\n  { {0x2d910119, 0x61f805b7, 0x80c40044, 0x00000000}},  //   laze_, _lovl, ষিপ্,\n  { {0xeb760049, 0xb5fc0066, 0x00000000, 0x00000000}},  //   _מערץ_, _siġa,   ,\n  { {0xe6180088, 0x2d910095, 0xb5fc01f3, 0x00000000}},  //   оді_, naze_, _piġa,\n  { {0xf50505b8, 0x7e6d0093, 0x92aa0044, 0x00000000}},  //   язко, _luap, খবো_,\n  { {0xfbdf0082, 0x6d4501a2, 0x00000000, 0x00000000}},  //   _thêu_, _myha,   ,\n  { {0x69d5012b, 0x2d91041a, 0x29ff0036, 0x00000000}},  //   _kaze, kaze_, ałań_,\n  { {0x11d50025, 0xddc40091, 0x69d50142, 0x00000000}},  //   ستخد, _stiž, _jaze,\n  { {0x69d50006, 0x61f80035, 0xb5fd05b9, 0x00000000}},  //   _maze, _dovl, _nuši,\n  { {0x69d50181, 0x6e3c01a2, 0x4429004a, 0x00000000}},  //   _laze, worb, _ña_,\n  { {0x63bb05ba, 0x932704e8, 0x216905bb, 0x00000000}},  //   mfun, _بران, _лили_,\n  { {0x2d8c05bc, 0x63bb00db, 0x2d9105bd, 0x00000000}},  //   úde_, lfun, gaze_,\n  { {0xe166007a, 0x614205be, 0x6e3c040f, 0x00000000}},  //   _عضوی, _пеша, rorb,\n  { {0x6e3c0010, 0xc4d2007b, 0xbc630072, 0x00000000}},  //   sorb, עגן_, евск,\n  { {0x2fc0006a, 0x7e6d0211, 0x2d9105bf, 0x00000000}},  // [660] _ibig_, _guap, baze_,\n  { {0x4a4305c0, 0xa3e202fb, 0x25db00e8, 0x00000000}},  //   енув, _फोन_, _गोली_,\n  { {0x38b505c1, 0x63bb05c2, 0x9d460478, 0x00000000}},  //   går_, kfun, _хенд,\n  { {0xde6d001d, 0xdb1d05c3, 0x83fc0166, 0x00000000}},  //   _hươn, _obsè, _tuđi,\n  { {0x69d502d5, 0x6d40005a, 0x63bb00ea, 0x00000000}},  //   _faze, şmad, dfun,\n  { {0x63bb01a2, 0x00000000, 0x00000000, 0x00000000}},  //   efun,   ,   ,\n  { {0xdb0f028c, 0x63bb05c4, 0xdb1d00d4, 0x00000000}},  //   _accè, ffun, _absè,\n  { {0xde6d001d, 0x6b840066, 0x02a60088, 0x00000000}},  //   _lươn, nbig, пром,\n  { {0x81d50044, 0x93c800a1, 0x61f805c5, 0x00000000}},  //   হান_, ماکہ_, _povl,\n  { {0xdb0d0181, 0xde6d0011, 0x909800ed, 0x00000000}},  //   sfaç, _nươn, овот_,\n  { {0x6aa405c6, 0x733600a1, 0xd25000a1, 0x00000000}},  //   hrif, _کرائ, ٹنگ_,\n  { {0xe45a05c7, 0x6aa405c8, 0x2ee00016, 0x00000000}},  //   _уже_, krif, _brif_,\n  { {0xf2060265, 0xe2da00a1, 0x2ee003e2, 0x00000000}},  //   _няко, _دباؤ_, _crif_,\n  { {0xde6d0011, 0x6aa40056, 0xd29b0104, 0x00000000}},  //   _cươn, drif, _פשוט,\n  { {0xde6d001d, 0x69d505c9, 0xc1bb009b, 0x00000000}},  //   _dươn, _raze, _המוש,\n  { {0x6aa4018e, 0x6b84006a, 0x69d5013e, 0x00000000}},  //   frif, gbig, _saze,\n  { {0x6aa405ca, 0x69d50089, 0x8f9c009b, 0x00000000}},  // [670] grif, _paze, _היחי,\n  { {0xde6d0011, 0x38b505cb, 0xb5fd016e, 0x00000000}},  //   _gươn, tår_, _tuši,\n  { {0x6b840039, 0xe3c70006, 0x69d50471, 0x00000000}},  //   bbig, ščių_, _vaze,\n  { {0x290701d5, 0x69d50020, 0x76410006, 0x00000000}},  //   ġna_, _waze, _skly,\n  { {0x38b505cc, 0x29070340, 0x7c2d001a, 0x00000000}},  //   sår_, šna_, mnar,\n  { {0xde6d0011, 0xb9c50257, 0x7c2d013f, 0x00000000}},  //   _xươn, _تقسي, lnar,\n  { {0x7c2d049a, 0x24890091, 0x442f05cd, 0x00000000}},  //   onar, ćamo_, _pjg_,\n  { {0xdb0f03d5, 0x7c2d05ce, 0x130902d3, 0x00000000}},  //   _accé, nnar, жний_,\n  { {0x63bb008d, 0x7c2d05cf, 0x00000000, 0x00000000}},  //   rfun, inar,   ,\n  { {0x3eab05d0, 0x6442002d, 0x7c2d010f, 0x00000000}},  //   duct_, _ekoi, hnar,\n  { {0x7c2d000c, 0x63bb010f, 0x8fa602dc, 0x00000000}},  //   knar, pfun, мане,\n  { {0x2ee0018e, 0x81b50044, 0xe3b00025, 0x00000000}},  //   _prif_, _চোখ_, _مره_,\n  { {0xa3ea02fb, 0x7c2d0059, 0x644905d1, 0x00000000}},  //   मार_, dnar, mlei,\n  { {0x443f05d2, 0x7c2d0032, 0x4df5007e, 0x00000000}},  //   lou_, enar, няст,\n  { {0x442d05d3, 0xe1f005d4, 0x3eb902ae, 0x00000000}},  //   one_, _حسن_, atst_,\n  { {0x442d05d5, 0x7c2d05d6, 0x644900db, 0x00000000}},  //   nne_, gnar, nlei,\n  { {0x442d05d7, 0xde6d001d, 0xc05300b3, 0x00000000}},  // [680] ine_, _tươn, _בזה_,\n  { {0x6aa405d8, 0x443f05d9, 0x2b8c001d, 0x00000000}},  //   rrif, hou_, ếc_,\n  { {0x443f004f, 0x644905da, 0xc8ca0014, 0x00000000}},  //   kou_, klei, توان_,\n  { {0x442d05db, 0x798e05dc, 0x443f05dd, 0x00000000}},  //   jne_, _webw, jou_,\n  { {0x442d04a3, 0x443f004f, 0xb86502fd, 0x00000000}},  //   dne_, dou_, رامو,\n  { {0x64490270, 0x44ce00b9, 0x443f01c3, 0x00000000}},  //   elei, _př_, eou_,\n  { {0x443f01aa, 0x3e740039, 0x644905de, 0x00000000}},  //   fou_, _lät_, flei,\n  { {0x442d02b6, 0x443f0181, 0x68e305df, 0x00000000}},  //   gne_, gou_, ænde,\n  { {0x395100ca, 0x3e7400f8, 0x00000000, 0x00000000}},  //   _zzzs_, _nät_,   ,\n  { {0x442d000d, 0x64490052, 0x7c2405e0, 0x00000000}},  //   ane_, alei, hiir,\n  { {0x850600d3, 0x442d05e1, 0x64490129, 0x00000000}},  //   _توان, bne_, blei,\n  { {0x443f05e2, 0x442d0027, 0x64490472, 0x00000000}},  //   cou_, cne_, clei,\n  { {0x4424016c, 0x64400006, 0x25f50061, 0x00000000}},  //   mim_, momi, ्सची_,\n  { {0x44240213, 0x60320089, 0x7c2d0050, 0x00000000}},  //   lim_, rāma, wnar,\n  { {0x7c2d05e3, 0x7c2405e4, 0xb5fc0066, 0x00000000}},  //   tnar, fiir, _riġl,\n  { {0x80c40044, 0x7c2d05e5, 0x2bdf00e8, 0x00000000}},  //   ষিদ্, unar, _पोशा,\n  { {0x7c2d009f, 0xa3b6006e, 0xcd0400b9, 0x00000000}},  // [690] rnar, _जान_, vněž_,\n  { {0x443f049a, 0x7c2d002d, 0x644004eb, 0x00000000}},  //   zou_, snar, homi,\n  { {0x443f05e6, 0x442d0142, 0xb5fd016c, 0x00000000}},  //   you_, yne_, _mušt,\n  { {0x44240119, 0x27e905e7, 0x64400006, 0x00000000}},  //   jim_, ñan_, jomi,\n  { {0x442d05e8, 0x443f0428, 0x7bcd009d, 0x00000000}},  //   vne_, vou_, meau,\n  { {0x442d0046, 0x443f01aa, 0x7bcd009d, 0x00000000}},  //   wne_, wou_, leau,\n  { {0x6006002a, 0x644905e9, 0xe3b10025, 0x00000000}},  //   _fómh, tlei, هرة_,\n  { {0x442d000d, 0x644005ea, 0x61ea05eb, 0x00000000}},  //   une_, gomi, _anfl,\n  { {0x442d05ec, 0x644905ed, 0x63a605ee, 0x00000000}},  //   rne_, rlei, ókna,\n  { {0x443f05ef, 0xe1f10054, 0x645b0051, 0x00000000}},  //   sou_, اسة_, smui,\n  { {0x602600d7, 0x442d0027, 0x65940106, 0x00000000}},  //   една, pne_, _раху,\n  { {0x644005f0, 0x4424055a, 0x61ea05f1, 0x00000000}},  //   comi, cim_, _enfl,\n  { {0x7bcd05f2, 0x2ac30089, 0x7c2405e0, 0x00000000}},  //   deau, nībā_, viir,\n  { {0xdd9205f3, 0x2c750030, 0xa3d7007d, 0x00000000}},  //   طور_, _båd_, ायक_,\n  { {0x1b1d0055, 0xa3b6006e, 0x81d50044, 0x00000000}},  //   _ভুলে_, _जाम_, হাদ_,\n  { {0x3e7404ce, 0x2c750146, 0x00000000, 0x00000000}},  //   _tät_, _dåd_,   ,\n  { {0xf412007b, 0x600605f4, 0x1f660088, 0x00000000}},  // [6a0] אפן_, _nómi, _яким,\n  { {0xe9d70099, 0x7c3b016c, 0x2ac30089, 0x00000000}},  //   нку_, čura, dībā_,\n  { {0x442405f5, 0x7c24003c, 0x1bea05f6, 0x00000000}},  //   yim_, piir, _едни_,\n  { {0x442405f7, 0x6440027b, 0x7bcd0068, 0x00000000}},  //   xim_, xomi, ceau,\n  { {0x44240119, 0x6006008e, 0x644005f8, 0x00000000}},  //   vim_, _cómi, vomi,\n  { {0x6b9600e0, 0x44240145, 0x644000b4, 0x00000000}},  //   layg, wim_, womi,\n  { {0x442405f9, 0x64400036, 0x7c2f002a, 0x00000000}},  //   tim_, tomi, _áirí,\n  { {0xb5fd05fa, 0xccf301f8, 0xd467012b, 0x00000000}},  //   _sušt, רכה_, није_,\n  { {0x442405fb, 0x2ac3001e, 0xb5fd0091, 0x00000000}},  //   rim_, cībā_, _pušt,\n  { {0x644005fc, 0x00000000, 0x00000000, 0x00000000}},  //   somi,   ,   ,\n  { {0x644005fd, 0x2a6a0026, 0x64a301ee, 0x00000000}},  //   pomi, _mibb_, _баха,\n  { {0x2c7505fe, 0x929d0036, 0x442405ff, 0x00000000}},  //   _råd_, syła, qim_,\n  { {0x7bcd028c, 0xb5fd007f, 0x00000000, 0x00000000}},  //   veau, _tušt,   ,\n  { {0x61ea0600, 0xaa7b000c, 0x00000000, 0x00000000}},  //   _unfl, _brýn,   ,\n  { {0x7bcd0601, 0x71f700a1, 0x2ac301c5, 0x00000000}},  //   teau, _سروس_, zībā_,\n  { {0x7c8400ed, 0x6b960009, 0x00000000, 0x00000000}},  //   ѓусе, gayg,   ,\n  { {0x7bcd0602, 0x7b740025, 0x39a70603, 0x00000000}},  // [6b0] reau, اطفا, ешев,\n  { {0x7bcd00f4, 0x13d90044, 0x49d80604, 0x00000000}},  //   seau, থায়, ндую_,\n  { {0x48ab0605, 0x7bcd009d, 0x5d5502ea, 0x00000000}},  //   ятам_, peau, _шкот,\n  { {0xfbab0057, 0x629d0010, 0x200b00b9, 0x00000000}},  //   _этой_, ások, nkci_,\n  { {0x79a700ec, 0x6aad0197, 0xc66b007c, 0x00000000}},  //   _прве, quaf, чшее_,\n  { {0x2a6a0606, 0x2ac30089, 0x600600dc, 0x00000000}},  //   _gibb_, rībā_, _vómi,\n  { {0xda340147, 0x2ac30089, 0x2d9300c4, 0x00000000}},  //   _серы, sībā_, _mexe_,\n  { {0x2a6a00d9, 0x00000000, 0x00000000, 0x00000000}},  //   _zibb_,   ,   ,\n  { {0x961d0089, 0x00000000, 0x00000000, 0x00000000}},  //   _atņe,   ,   ,\n  { {0x85b800ed, 0x2d9300f6, 0x27ff000a, 0x00000000}},  //   _плус_, _nexe_, _houn_,\n  { {0x7643011c, 0x27ff000a, 0x00000000, 0x00000000}},  //   mony, _koun_,   ,\n  { {0x69c101f5, 0x27ff000a, 0x00000000, 0x00000000}},  //   र्ती, _joun_,   ,\n  { {0x27ff0607, 0xa3b60183, 0x441a00a0, 0x00000000}},  //   _moun_, _जात_, _קונס,\n  { {0x6b960190, 0x76430608, 0x00000000, 0x00000000}},  //   wayg, nony,   ,\n  { {0xdcfc0089, 0x629b0006, 0x27ed0609, 0x00000000}},  //   varē, lsuo, _onen_,\n  { {0x7ae90091, 0x7643060a, 0x27ff060b, 0x00000000}},  //   _šeta, hony, _noun_,\n  { {0xee3a0057, 0xe9da01a4, 0xab27005e, 0x00000000}},  // [6c0] _они_, мка_, вота_,\n  { {0x27ed0065, 0x00000000, 0x00000000, 0x00000000}},  //   _anen_,   ,   ,\n  { {0x2d98001a, 0x27ff000a, 0x940c006b, 0x00000000}},  //   mare_, _boun_, _evdə_,\n  { {0x2d98060c, 0x629b0006, 0x661d0006, 0x00000000}},  //   lare_, ksuo, _įska,\n  { {0x76430093, 0x2a6a006b, 0x27ff0288, 0x00000000}},  //   fony, _tibb_, _doun_,\n  { {0x7643060d, 0xe534060e, 0x27ed060f, 0x00000000}},  //   gony, лель, _enen_,\n  { {0xb5fc002b, 0x2d9800ea, 0x69dc0288, 0x00000000}},  //   _jiġi, iare_, _iare,\n  { {0x64590610, 0x2d980611, 0x69dc0612, 0x00000000}},  //   _chwi, hare_, _hare,\n  { {0x69dc0390, 0x2d980073, 0xf5b4026c, 0x00000000}},  //   _kare, kare_, _مشاھ,\n  { {0x69dc02ae, 0x2d980613, 0x69de0614, 0x00000000}},  //   _jare, jare_, ndpe,\n  { {0x69dc000b, 0x2d980615, 0x27ff0263, 0x00000000}},  //   _mare, dare_, _youn_,\n  { {0x69dc027b, 0x0326025f, 0x2d930616, 0x00000000}},  //   _lare, _иден, _sexe_,\n  { {0xdcf5001e, 0x2d980617, 0x63a20207, 0x00000000}},  //   pazī, fare_, _idon,\n  { {0x69dc0618, 0xc0aa00a6, 0x2d9801e2, 0x00000000}},  //   _nare, _قابل_, gare_,\n  { {0x6d40005a, 0x7ae600ea, 0x20d30464, 0x00000000}},  //   şman, _arkt, _نتيج,\n  { {0x76430619, 0xec340088, 0x69dc006c, 0x00000000}},  //   zony, ансь, _aare,\n  { {0x81d50055, 0x69dc0209, 0x5a3500e3, 0x00000000}},  // [6d0] হার_, _bare, гнат,\n  { {0x2d98061a, 0x69dc0038, 0x3f99061b, 0x00000000}},  //   care_, _care, lasu_,\n  { {0x69dc0007, 0x63a2061c, 0x27ff01aa, 0x00000000}},  //   _dare, _odon, _poun_,\n  { {0x63a2008d, 0xac190088, 0x69dc0032, 0x00000000}},  //   _ndon, _чому_, _eare,\n  { {0xf770023c, 0x7643061d, 0x501c061e, 0x00000000}},  //   زان_, tony, וואו,\n  { {0x63a20129, 0x69dc002d, 0x62720046, 0x00000000}},  //   _adon, _gare, _młod,\n  { {0x7bdd061f, 0x7643031e, 0x5e580049, 0x00000000}},  //   _kasu, rony, דיגע_,\n  { {0x69dc0620, 0x2d98000d, 0x27ed0621, 0x00000000}},  //   _zare, zare_, _unen_,\n  { {0x7bdd0149, 0x76430622, 0x6113006b, 0x00000000}},  //   _masu, pony, mələ,\n  { {0x386d0623, 0x6113005f, 0x63a2002d, 0x00000000}},  //   _hier_, lələ, _edon,\n  { {0x2d980624, 0x629b0625, 0x7f4d006b, 0x00000000}},  //   vare_, ssuo, _ayaq,\n  { {0x7bdd011c, 0x660100b9, 0x6113006b, 0x00000000}},  //   _nasu, _holk, nələ,\n  { {0x66010626, 0x7ae90091, 0x765a00b0, 0x00000000}},  //   _kolk, _šetn, _yhty,\n  { {0x6113005f, 0xddcd0627, 0x386d0628, 0x00000000}},  //   hələ, _etaž, _lier_,\n  { {0x2d980629, 0x6113005f, 0x69dc062a, 0x00000000}},  //   rare_, kələ, _rare,\n  { {0x69dc062b, 0x2d98062c, 0x44e3011f, 0x00000000}},  //   _sare, sare_, _mı_,\n  { {0x79950263, 0x2d98062d, 0x6113006b, 0x00000000}},  // [6e0] _bezw, pare_, dələ,\n  { {0x2d980023, 0xb5fc002b, 0x00000000, 0x00000000}},  //   qare_, _tiġi,   ,\n  { {0x69dc0018, 0x6113005f, 0x69de00f8, 0x00000000}},  //   _vare, fələ, rdpe,\n  { {0xe73a0057, 0x765a008d, 0xb8dc062e, 0x00000000}},  //   нее_, _shty, _आम_,\n  { {0x69dc062f, 0x386d0630, 0xc7a3004d, 0x00000000}},  //   _tare, _dier_, сичк,\n  { {0xceb300a0, 0x386d0631, 0x7ae40190, 0x00000000}},  //   מיד_, _eier_, mvit,\n  { {0x44e3005f, 0x386d0632, 0x6113005f, 0x00000000}},  //   _cı_, _fier_, bələ,\n  { {0x6113005f, 0x386d0036, 0x8d5b0049, 0x00000000}},  //   cələ, _gier_, עכקי,\n  { {0x66010374, 0x69c10061, 0x7ae40181, 0x00000000}},  //   _folk, र्वी, nvit,\n  { {0xddcd0224, 0x66010633, 0x408600ed, 0x00000000}},  //   _staž, _golk, лумб,\n  { {0x7c260634, 0x3f99006c, 0x5ff500c0, 0x00000000}},  //   _omkr, tasu_, азну,\n  { {0x63a20020, 0x7e7601d6, 0x6d400276, 0x00000000}},  //   _udon, _buyp, ğmal,\n  { {0x44260058, 0x6d40047f, 0x7bdd027e, 0x00000000}},  //   _imo_, şmal, _rasu,\n  { {0x2731001d, 0x7ae40635, 0x44e3014a, 0x00000000}},  //   ạng_, dvit, _yı_,\n  { {0x7bdd0636, 0xdb0d0051, 0x317b00a3, 0x00000000}},  //   _pasu, rgaí, _ארומ,\n  { {0x6006000c, 0xafdb0030, 0x442600e7, 0x00000000}},  //   _dóms, rløs, _jmo_,\n  { {0xafdb0637, 0x6113006b, 0x7ac7007e, 0x00000000}},  // [6f0] sløs, vələ, ысве,\n  { {0xe29f000c, 0x386d0056, 0x7bdd00e7, 0x00000000}},  //   áði_, _sier_, _wasu,\n  { {0x7bdd0004, 0x386d0638, 0x6113006b, 0x00000000}},  //   _tasu, _pier_, tələ,\n  { {0x20da0107, 0xe84b0379, 0x660100f8, 0x00000000}},  //   mšić_, رجان_, _solk,\n  { {0x386d037f, 0x6b8d0149, 0x66010639, 0x00000000}},  //   _vier_, mbag, _polk,\n  { {0x6113005f, 0x6b8d063a, 0x68e3063b, 0x00000000}},  //   sələ, lbag, ånds,\n  { {0x66010343, 0x22450007, 0x386d03a1, 0x00000000}},  //   _volk, volk_, _tier_,\n  { {0x6601063c, 0x6113005f, 0x22450250, 0x00000000}},  //   _wolk, qələ, wolk_,\n  { {0x2bc7001c, 0x6601063d, 0x21f50088, 0x00000000}},  //   ऱ्या, _tolk, аїнс,\n  { {0x0322008b, 0x20c50088, 0x69c50051, 0x00000000}},  //   ідэн, айом, nfhe,\n  { {0x2ee90016, 0x442600e5, 0x7ae40340, 0x00000000}},  //   _araf_, _fmo_, zvit,\n  { {0x6aad05ad, 0xa4fa007b, 0x2ee90016, 0x00000000}},  //   kraf, _בלעט, _braf_,\n  { {0x636b047f, 0x1f5600a5, 0xc7d6009b, 0x00000000}},  //   _dönü, ртнё, בורי_,\n  { {0x91fc001e, 0x6289029d, 0x6aad063e, 0x00000000}},  //   rmāc, mpeo, draf,\n  { {0x3b9600e1, 0x8b9600e3, 0x2ee9063f, 0x00000000}},  //   ијат, ирач, _eraf_,\n  { {0xe8e0001d, 0x636b014a, 0xafdb0637, 0x00000000}},  //   _hiệp_, _gönü, slør,\n  { {0x2ee90640, 0x6da600ed, 0xada60641, 0x00000000}},  // [700] _graf_, _кипа, _капл,\n  { {0x7ae4021e, 0x6006000c, 0xac760014, 0x00000000}},  //   rvit, _tóms, _پادش,\n  { {0x7ae40635, 0x636b005a, 0x81c80044, 0x00000000}},  //   svit, _yönü, _লোড_,\n  { {0xbc7b00b6, 0x6aad0190, 0xdb200010, 0x00000000}},  //   _שנכת, braf, ítóg,\n  { {0x2bdf0204, 0x6aad0133, 0xdcfc0006, 0x00000000}},  //   _पोटा, craf, tarė,\n  { {0x442601d9, 0x7aeb0030, 0xe4a600ed, 0x00000000}},  //   _smo_, ægte, арио,\n  { {0xd4970642, 0x44260643, 0x18a302dc, 0x00000000}},  //   ары_, _pmo_, _марм,\n  { {0xa6860072, 0x7c360016, 0xddcd0036, 0x00000000}},  //   _влад, nnyr, _staż,\n  { {0x20190023, 0x00000000, 0x00000000, 0x00000000}},  //   ërim_,   ,   ,\n  { {0x1db201f5, 0x38780065, 0x442600bb, 0x00000000}},  //   _जागत, _kurr_, _wmo_,\n  { {0xe3ba00e3, 0x80270644, 0xe8e00011, 0x00000000}},  //   _абе_, لرحم, _diệp_,\n  { {0x6f1d010f, 0x7c3b0107, 0x20da0645, 0x00000000}},  //   tzsc, čurk, všić_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6aad0026, 0x6f1d01a2, 0x9f4900fa, 0x00000000}},  //   vraf, rzsc, _unaí_,\n  { {0x6b8d0646, 0xac19003b, 0x61fc00f8, 0x00000000}},  //   tbag, гову_, örlu,\n  { {0x6aad0036, 0x2ee901a2, 0xb068007e, 0x00000000}},  //   traf, _traf_, _крыж_,\n  { {0x6b8d04fa, 0xda78007c, 0xf9930379, 0x00000000}},  // [710] rbag, аях_, قبض_,\n  { {0xd9990647, 0x6aad00d6, 0x3da701fc, 0x00000000}},  //   انات_, rraf, _триб,\n  { {0xa3b601f5, 0x2907001a, 0x69c50051, 0x00000000}},  //   जला_, âna_, rfhe,\n  { {0x6aad001a, 0x24850648, 0x00000000, 0x00000000}},  //   praf, _rtlm_,   ,\n  { {0x7c2d0649, 0x6aad006b, 0xfaff0023, 0x00000000}},  //   miar, qraf, _egër_,\n  { {0x929d0036, 0x387801f3, 0x00000000, 0x00000000}},  //   syłk, _furr_,   ,\n  { {0x610a006b, 0x00000000, 0x00000000, 0x00000000}},  //   nəld,   ,   ,\n  { {0xf77f005d, 0xa9540088, 0x2a71064a, 0x00000000}},  //   _üç_, _єкті, _hizb_,\n  { {0xa3d6013d, 0x26cd0020, 0xa715003b, 0x00000000}},  //   ाज़_, _upeo_, _удаљ,\n  { {0xe1f9064b, 0xe61301fa, 0x7c2d064c, 0x00000000}},  //   уго_, _بشر_, hiar,\n  { {0x614500ed, 0x7c2d002d, 0xd24e0014, 0x00000000}},  //   сена, kiar, رچه_,\n  { {0x6006064d, 0x9f060025, 0xc50c0049, 0x00000000}},  //   _cómp, موجو, _שלאָ,\n  { {0x91e50113, 0x7c2d064e, 0x61e1001c, 0x00000000}},  //   _голе, diar, pdll,\n  { {0x442d064f, 0x6449046a, 0x62720036, 0x00000000}},  //   lie_, loei, _włoc,\n  { {0x7c2d0032, 0x0c79007c, 0x442d0650, 0x00000000}},  //   fiar, исты_, oie_,\n  { {0x442d0620, 0x7c2d002d, 0xb5fc002b, 0x00000000}},  //   nie_, giar, _jiġr,\n  { {0x63a60651, 0x7c360006, 0x2a710009, 0x00000000}},  // [720] ókni, rnyr, _bizb_,\n  { {0x442d0207, 0x644900d9, 0xc3010044, 0x00000000}},  //   hie_, hoei, এনপি_,\n  { {0x442d0652, 0x7c2d0653, 0x3ea200f8, 0x00000000}},  //   kie_, biar, lskt_,\n  { {0x442d0654, 0x2d9a0058, 0x00000000, 0x00000000}},  //   jie_, _hepe_,   ,\n  { {0x442d0428, 0x3ea203ed, 0xdcfc0089, 0x00000000}},  //   die_, nskt_, karī,\n  { {0x27e00655, 0x6e2e01d5, 0x9e7b0049, 0x00000000}},  //   žin_, nibb, אנספ,\n  { {0xdcfc001e, 0x00000000, 0x00000000, 0x00000000}},  //   darī,   ,   ,\n  { {0x2d9a0059, 0x644900c4, 0x6e2e0145, 0x00000000}},  //   _lepe_, goei, hibb,\n  { {0x38660039, 0x610a006b, 0xe73a00ed, 0x00000000}},  //   mmor_, zəld, _сеа_,\n  { {0x7c2d0656, 0x442d0657, 0x2d9a01aa, 0x00000000}},  //   ziar, aie_, _nepe_,\n  { {0x442d0046, 0xa1580175, 0xa3b60061, 0x00000000}},  //   bie_, рану_, _जाऊ_,\n  { {0x442d0620, 0x38660658, 0x3957009b, 0x00000000}},  //   cie_, nmor_, משים_,\n  { {0x7c2d0207, 0x2d9a0022, 0x6e2e001b, 0x00000000}},  //   viar, _bepe_, fibb,\n  { {0xdb0d0181, 0x2d9a00e5, 0x7c2d0036, 0x00000000}},  //   lgaç, _cepe_, wiar,\n  { {0x7c2d0659, 0x0ba7007e, 0x6a69007f, 0x00000000}},  //   tiar, йшам, _užfi,\n  { {0x3881010a, 0xdb0d065a, 0x00000000, 0x00000000}},  //   _nėra_, ngaç,   ,\n  { {0x7c2d022b, 0x9999003b, 0xa3b60061, 0x00000000}},  // [730] riar, икат_, _जाई_,\n  { {0x442d065b, 0x6fb501ef, 0x7c2d065c, 0x00000000}},  //   zie_, _امکا, siar,\n  { {0x7c2d065d, 0x442d065e, 0x9f520173, 0x00000000}},  //   piar, yie_, _anyè_,\n  { {0x38660190, 0x442d065f, 0x81be0044, 0x00000000}},  //   gmor_, xie_, ঁজি_,\n  { {0x442d0660, 0xc987003b, 0xb6c7007c, 0x00000000}},  //   vie_, _губи, ссей,\n  { {0x442d0661, 0x2d830036, 0x853c0006, 0x00000000}},  //   wie_, ncje_, _idėj,\n  { {0x442d0662, 0x1a68009e, 0x64490663, 0x00000000}},  //   tie_, _ایلی_, toei,\n  { {0x52a900c0, 0x00000000, 0x00000000, 0x00000000}},  //   авим_,   ,   ,\n  { {0x2d830046, 0x64490664, 0x1306007c, 0x00000000}},  //   kcje_, roei, жный_,\n  { {0x442d0665, 0x69d70666, 0x7d0800ea, 0x00000000}},  //   sie_, nexe, ødsk,\n  { {0x442d0667, 0x644900c4, 0x2d9a0052, 0x00000000}},  //   pie_, poei, _repe_,\n  { {0xa2b2001c, 0xa3b602d2, 0x2d9a00ca, 0x00000000}},  //   _आमच्, _जाए_, _sepe_,\n  { {0x2d9a0020, 0x6e2e002b, 0x823400a1, 0x00000000}},  //   _pepe_, tibb, _کرنا,\n  { {0x63bb0668, 0x3ea20669, 0x00000000, 0x00000000}},  //   lgun, rskt_,   ,\n  { {0xc5f2009b, 0xfce3004c, 0x69d7066a, 0x00000000}},  //   ודם_, моро, dexe,\n  { {0x63bb020c, 0x799e00e7, 0x6b9f0045, 0x00000000}},  //   ngun, wapw, gaqg,\n  { {0x81dc0044, 0x61e3066b, 0x8d760076, 0x00000000}},  // [740] ডার_, _kanl, _وادا,\n  { {0x63bb04cb, 0x3866005b, 0x2002066c, 0x00000000}},  //   hgun, wmor_, ljki_,\n  { {0x61e3066d, 0x00000000, 0x00000000, 0x00000000}},  //   _manl,   ,   ,\n  { {0xb8f203d7, 0x6d5e066e, 0x46ea005e, 0x00000000}},  //   _वह_, _izpa, иден_,\n  { {0x386601bf, 0x4e0e006e, 0x25be0009, 0x00000000}},  //   rmor_, _हवाई_, _pctl_,\n  { {0x63bb066f, 0xb0a9007d, 0x61e3011c, 0x00000000}},  //   egun, _किंग, _nanl,\n  { {0x6aa40023, 0xf8b000a1, 0x9f4500b9, 0x00000000}},  //   lsif, _سکا_, ělé_,\n  { {0x61e30100, 0x799c0016, 0x6b840197, 0x00000000}},  //   _aanl, _herw, ncig,\n  { {0x61e30670, 0x2d830036, 0x75d6023c, 0x00000000}},  //   _banl, ycje_, _ويرا,\n  { {0x61e30671, 0x32180046, 0xd25a025f, 0x00000000}},  //   _canl, óry_, јци_,\n  { {0x63bb022b, 0x799c0007, 0xb97b00b3, 0x00000000}},  //   bgun, _merw, יניי,\n  { {0x68e30030, 0x27e60672, 0x69ca0164, 0x00000000}},  //   ændi, ndon_, स्ती,\n  { {0x733600a1, 0x69ce0197, 0x63a00673, 0x00000000}},  //   _برائ, _obbe, mamn,\n  { {0xd344007a, 0x61e3018e, 0x63a0033b, 0x00000000}},  //   _ویژه_, _ganl, lamn,\n  { {0x6b84016c, 0x2cb800ea, 0x66080190, 0x00000000}},  //   fcig, gurd_, _modk,\n  { {0x27e40674, 0xe3ac0044, 0x228001aa, 0x00000000}},  //   _namn_, ক্রব, _kòk_,\n  { {0x27e60675, 0x61e30676, 0xa3cc007d, 0x00000000}},  // [750] ddon_, _yanl, श्य_,\n  { {0x3eb90677, 0x63a000f8, 0x20090082, 0x00000000}},  //   must_, hamn, _hoai_,\n  { {0x3eb9006c, 0x799c0678, 0x68e20036, 0x00000000}},  //   lust_, _derw, łodn,\n  { {0x69ce0047, 0x6b840197, 0x661a010e, 0x00000000}},  //   _ebbe, ccig, _altk,\n  { {0x3eb9006c, 0xd6db0679, 0xf770067a, 0x00000000}},  //   nust_, рте_, ناه_,\n  { {0x62720036, 0x20090082, 0x799c005b, 0x00000000}},  //   _słon, _loai_, _gerw,\n  { {0x1c0f02d2, 0x91fc0089, 0x61e300ca, 0x00000000}},  //   _सवाल_, rmāl, _ranl,\n  { {0x3207067b, 0xd7c90558, 0x61e3067c, 0x00000000}},  //   _sony_, _دوره_, _sanl,\n  { {0x63bb067d, 0x61e3011c, 0x660802a9, 0x00000000}},  //   rgun, _panl, _fodk,\n  { {0x3eb90677, 0x6608063b, 0x6b9d00bb, 0x00000000}},  //   dust_, _godk, _lesg,\n  { {0x61e3067e, 0xd87400a1, 0x610a006b, 0x00000000}},  //   _vanl, _راہب, vəlc,\n  { {0x22800263, 0x63a00093, 0x54370167, 0x00000000}},  //   _fòk_, camn, _برطر,\n  { {0xe803007d, 0x2f5602d3, 0xdbd9000c, 0x00000000}},  //   _रचना_, ятос, væðu,\n  { {0x91e50594, 0x321e067f, 0x27380082, 0x00000000}},  //   _хоке, chty_, ẩng_,\n  { {0xed5a0680, 0xdbd9000c, 0x8d63003b, 0x00000000}},  //   сов_, tæðu, евре,\n  { {0x799c0046, 0x6b9d0681, 0x6c360025, 0x00000000}},  //   _serw, _cesg, أفرا,\n  { {0x6b9d0682, 0xdbd9009f, 0x799c0169, 0x00000000}},  // [760] _desg, ræðu, _perw,\n  { {0x6aa40169, 0xa3ab007d, 0x19b9007e, 0x00000000}},  //   rsif, कृत_, жуць_,\n  { {0x799c0683, 0x6aa40684, 0x1b040044, 0x00000000}},  //   _verw, ssif, _রেখে_,\n  { {0xdcf50036, 0x799c021f, 0x27e60685, 0x00000000}},  //   jczę, _werw, udon_,\n  { {0x799c0686, 0x66080395, 0xe3c30044, 0x00000000}},  //   _terw, _podk, ্যাব,\n  { {0xd49a00e3, 0x26c600b0, 0xd90d00a1, 0x00000000}},  //   бри_, rtoo_, دیہ_,\n  { {0x628b0016, 0x3eb90687, 0x25fe007d, 0x00000000}},  //   _atgo, zust_, लाबी_,\n  { {0xb6030089, 0xa3b6013d, 0x493b009b, 0x00000000}},  //   īšan, _जाओ_, _הגלו,\n  { {0x2bce001c, 0x27f701c8, 0x85760688, 0x00000000}},  //   ह्या, šení_, _فدائ,\n  { {0xe8e00011, 0x3eb9006c, 0x63a0000c, 0x00000000}},  //   _nhịp_, vust_, samn,\n  { {0x3eb900b5, 0x69c10164, 0x00000000, 0x00000000}},  //   wust_, र्टी,   ,\n  { {0x3eb90004, 0x8fa400ec, 0x5ed60044, 0x00000000}},  //   tust_, наџе, দিনে,\n  { {0x6b9d0181, 0x79850016, 0x00000000, 0x00000000}},  //   _resg, ychw,   ,\n  { {0x99ce0055, 0x3ead016c, 0x6b9d004a, 0x00000000}},  //   রযুক, šeto_, _sesg,\n  { {0x61f801b5, 0x3eb9006c, 0x9d180264, 0x00000000}},  //   _invl, sust_, порт_,\n  { {0x5c7403dc, 0x3eb90059, 0x99d400a1, 0x00000000}},  //   елст, pust_, ہتما,\n  { {0x3eb90689, 0x00000000, 0x00000000, 0x00000000}},  // [770] qust_,   ,   ,\n  { {0xdce7011f, 0xdcf50036, 0x601f0023, 0x00000000}},  //   sajı, zczę, _dëme,\n  { {0x7985068a, 0x20190006, 0x02d9007d, 0x00000000}},  //   rchw, ūriu_, _भन्न,\n  { {0x7985001f, 0x69c8014a, 0x00000000, 0x00000000}},  //   schw, _öden,   ,\n  { {0x601f0065, 0x7c2f0022, 0x61f800d9, 0x00000000}},  //   _këmb, _imcr, _onvl,\n  { {0x2bcb0061, 0x8afa009b, 0x00000000, 0x00000000}},  //   ाभवा, _והשי,   ,\n  { {0x20f00521, 0x7aed051b, 0xa50602dc, 0x00000000}},  //   nđić_, lvat, деща_,\n  { {0xfcaa007b, 0x3ea9021e, 0x61f80173, 0x00000000}},  //   קיפּ, _ovat_, _anvl,\n  { {0x7aed00bb, 0x00000000, 0x00000000, 0x00000000}},  //   nvat,   ,   ,\n  { {0xf0a90264, 0xbebb0023, 0x69c10061, 0x00000000}},  //   окол_, tzën, र्ची,\n  { {0x7aed068b, 0xa06a0216, 0x3494005e, 0x00000000}},  //   hvat, жана_, _захр,\n  { {0x7aed037e, 0xe4d400a1, 0x00000000, 0x00000000}},  //   kvat, _ستمب,   ,\n  { {0x442f0365, 0x6d490035, 0x628b00ea, 0x00000000}},  //   _img_, şeal, _utgo,\n  { {0x7a200047, 0x7aed068c, 0x00000000, 0x00000000}},  //   _köte, dvat,   ,\n  { {0x425200a1, 0xc0a803ec, 0x7bcd068d, 0x00000000}},  //   _جنور, _فايل_, ffau,\n  { {0x7a200039, 0xc172009b, 0x20190065, 0x00000000}},  //   _möte, _בחו_, ërit_,\n  { {0xfaa3008b, 0x442f0127, 0x6d4500ab, 0x00000000}},  // [780] като, _mmg_, _exha,\n  { {0xe9d70245, 0x601f0065, 0x00000000, 0x00000000}},  //   мку_, _vëme,   ,\n  { {0x6d400477, 0x49990088, 0xd7e60088, 0x00000000}},  //   ğmas, яття_, діло,\n  { {0x6d4001f6, 0x9f40068e, 0xafdb068f, 0x00000000}},  //   şmas, _unió_, fløy,\n  { {0xc7a300e1, 0xa3c8013d, 0xd6d0035b, 0x00000000}},  //   тичк, _लॉग_, اقت_,\n  { {0x3eaf0030, 0xe8df0082, 0x7a2000f8, 0x00000000}},  //   _ægte_, _luộc_, _böte,\n  { {0x442f0690, 0x68e30190, 0xa5c4013d, 0x00000000}},  //   _bmg_, ændt, _राठौ,\n  { {0x6b960056, 0x442f0691, 0xd467003b, 0x00000000}},  //   nbyg, _cmg_, мије_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xf8d202d2, 0x442f0093, 0xdb15009d, 0x00000000}},  //   _सहाय, _emg_, ébéc,\n  { {0xd1300054, 0x7a200073, 0xe8df0011, 0x00000000}},  //   امج_, _göte, _buộc_,\n  { {0xe8df001d, 0x7aed0161, 0x442f0692, 0x00000000}},  //   _cuộc_, yvat, _gmg_,\n  { {0xd6d90036, 0x6b960693, 0x2ef20016, 0x00000000}},  //   _były_, dbyg, _cryf_,\n  { {0x6ab60007, 0x2ef20007, 0x00000000, 0x00000000}},  //   dryf, _dryf_,   ,\n  { {0x1bd50694, 0xfe24007c, 0x645c0089, 0x00000000}},  //   новя, тьян, _īrij,\n  { {0x21b700a1, 0xec6803e8, 0x7aed0695, 0x00000000}},  //   _ٹھیک_, друк_, tvat,\n  { {0x2ef20696, 0x2019008f, 0x7e770066, 0x00000000}},  // [790] _gryf_, ūris_, _tixp,\n  { {0xe9d30025, 0xc95b007e, 0x9e6701b2, 0x00000000}},  //   ضغط_, оўе_, _تابن,\n  { {0x7aed03b6, 0x58840147, 0x5c75007c, 0x00000000}},  //   svat, выча, _плот,\n  { {0x2019023a, 0xafdb00ea, 0x39580146, 0x00000000}},  //   nksi_, tløy, _dyrs_,\n  { {0x201900b0, 0x2a780026, 0x442f00d2, 0x00000000}},  //   iksi_, _firb_, _rmg_,\n  { {0x442f0697, 0x68e30698, 0x644200b0, 0x00000000}},  //   _smg_, ænds, _ajoi,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xe7390016, 0x58d401e1, 0xc2fa0044, 0x00000000}},  //   _ddŵr_, _шост, েননি_,\n  { {0x7c3a0699, 0x9f9d000c, 0xf6b500a1, 0x00000000}},  //   étri, væði_, _سماج,\n  { {0x201900b0, 0x7a2001a2, 0x00000000, 0x00000000}},  //   eksi_, _töte,   ,\n  { {0x6e3504eb, 0x9f9d01e5, 0x442f069a, 0x00000000}},  //   dizb, tæði_, _tmg_,\n  { {0xcdc900b6, 0x80a003d7, 0x59cf0309, 0x00000000}},  //   _לך_, _खबरे, स्तर,\n  { {0xef170057, 0x9f9d009f, 0x443f069b, 0x00000000}},  //   емя_, ræði_, mnu_,\n  { {0xfce60216, 0x6145025f, 0xc69201ce, 0x00000000}},  //   ного, _пела, ראם_,\n  { {0xa3cc02d2, 0x81c80055, 0xe8df0082, 0x00000000}},  //   श्व_, _লোক_, _tuộc_,\n  { {0x443f069c, 0x645b069d, 0xfbdf01c3, 0x00000000}},  //   nnu_, nlui, _skêr_,\n  { {0x6b96037d, 0x443f069e, 0xbdfa069f, 0x00000000}},  // [7a0] rbyg, inu_, _فردا_,\n  { {0x443f06a0, 0x6b9606a1, 0x8e97009b, 0x00000000}},  //   hnu_, sbyg, _רדיו_,\n  { {0xf1c201f5, 0x69c8011f, 0x6b96000c, 0x00000000}},  //   _शासन, _ödem, pbyg,\n  { {0x443f06a2, 0x41cf0061, 0x96ea01e1, 0x00000000}},  //   jnu_, त्तस, зька_,\n  { {0xc87901df, 0x68e30030, 0x645b0168, 0x00000000}},  //   _diş_, ændr, dlui,\n  { {0x443f06a3, 0x2d980173, 0x857400a1, 0x00000000}},  //   enu_, nbre_, نگائ,\n  { {0x443f069c, 0x5fc6001c, 0x69de06a4, 0x00000000}},  //   fnu_, _वाढल, mepe,\n  { {0x443f037e, 0x66e601bd, 0x69de0010, 0x00000000}},  //   gnu_, _поба, lepe,\n  { {0xe7d5005d, 0x00000000, 0x00000000, 0x00000000}},  //   lığı,   ,   ,\n  { {0x443f001a, 0x9fd00044, 0x69de06a5, 0x00000000}},  //   anu_, িযোগ, nepe,\n  { {0x443f06a6, 0x7c2406a7, 0x3a37009b, 0x00000000}},  //   bnu_, khir, תרים_,\n  { {0x443f037e, 0x645b0489, 0x69de06a8, 0x00000000}},  //   cnu_, clui, hepe,\n  { {0x7c2406a9, 0x4ea7007e, 0x201906aa, 0x00000000}},  //   dhir, эрна, rksi_,\n  { {0x932500a1, 0x127b0049, 0xa3cc007d, 0x00000000}},  //   _جرمن, _זאגע, श्र_,\n  { {0x69de01cb, 0xc0e301fc, 0x63a2008a, 0x00000000}},  //   depe, _бојк, _keon,\n  { {0xe7d5047f, 0x61ea06ab, 0x63a20082, 0x00000000}},  //   dığı, _hafl, _jeon,\n  { {0x61ea0651, 0x63a20022, 0x610a006b, 0x00000000}},  // [7b0] _kafl, _meon, zəll,\n  { {0x443f06ac, 0x69de06ad, 0x7c240020, 0x00000000}},  //   znu_, gepe, ahir,\n  { {0x443f018e, 0x7ae600ea, 0xdb160010, 0x00000000}},  //   ynu_, _eskt, rgyá,\n  { {0x7c24001a, 0x63a206ae, 0x61ea06af, 0x00000000}},  //   chir, _neon, _lafl,\n  { {0x4424002a, 0x443f0466, 0x69de01b5, 0x00000000}},  //   dhm_, vnu_, bepe,\n  { {0x27e90091, 0xcfea0044, 0x69de001a, 0x00000000}},  //   žan_, গায়_, cepe,\n  { {0x443f0091, 0x645b0007, 0x6e200023, 0x00000000}},  //   tnu_, tlui, ëmbi,\n  { {0x7bdf00c4, 0x3eb9016c, 0x443f0205, 0x00000000}},  //   nequ, krst_, unu_,\n  { {0x443f06b0, 0x63a20051, 0x645b06b1, 0x00000000}},  //   rnu_, _deon, rlui,\n  { {0x645b06b2, 0xd24e006d, 0x443f0091, 0x00000000}},  //   slui, يني_, snu_,\n  { {0x61ea0016, 0x443f036a, 0x645b009d, 0x00000000}},  //   _dafl, pnu_, plui,\n  { {0x63a2007f, 0x69de0010, 0x9f4000f6, 0x00000000}},  //   _geon, zepe, _paià_,\n  { {0x7bdf06b3, 0x69c7016e, 0x0ef9007e, 0x00000000}},  //   dequ, _ocje, нэры_,\n  { {0xc3320452, 0xdd9206b4, 0x61ea06b5, 0x00000000}},  //   _דוד_, شور_, _gafl,\n  { {0xed5700d7, 0x7c240020, 0xada306b6, 0x00000000}},  //   вор_, thir, расл,\n  { {0x60d60104, 0x8c4300ed, 0x44f10066, 0x00000000}},  //   _יוצא_, аесе, _mġ_,\n  { {0xeab1026c, 0x69de008e, 0xc1e50309, 0x00000000}},  // [7c0] یعے_, tepe, _कसाब_,\n  { {0x7c2406b7, 0xceb90224, 0xba23007e, 0x00000000}},  //   shir, áře_, адук,\n  { {0x69de0010, 0x291c06b8, 0x7bdf06b9, 0x00000000}},  //   repe, áva_, bequ,\n  { {0x3ea001aa, 0x69de06ba, 0x7ae60058, 0x00000000}},  //   _kwit_, sepe, _tskt,\n  { {0x62720036, 0xa6fa0025, 0x69de00e7, 0x00000000}},  //   _głow, بعاء_, pepe,\n  { {0x4a750057, 0xaa4606bb, 0x7ae40020, 0x00000000}},  //   _быст, _регл, mwit,\n  { {0x7a200039, 0x7ae40007, 0x63a206bc, 0x00000000}},  //   _göta, lwit, _peon,\n  { {0x61ea018e, 0xa7850054, 0x7bc406bd, 0x00000000}},  //   _safl, _مشكو, ngiu,\n  { {0x7ae406be, 0x7c23001a, 0x3ea001aa, 0x00000000}},  //   nwit, _înre, _nwit_,\n  { {0x610a006b, 0x63a2004a, 0x7aeb0190, 0x00000000}},  //   səlm, _weon, ægti,\n  { {0x859b0104, 0x85060070, 0x3ea0011c, 0x00000000}},  //   _חשבו, _جوان, _awit_,\n  { {0xc95300b6, 0x7bdf00d4, 0x7d0300d4, 0x00000000}},  //   ימת_, xequ, _ànsi,\n  { {0x61ea06bf, 0x7bdf0068, 0x00000000, 0x00000000}},  //   _tafl, vequ,   ,\n  { {0xf77301f8, 0x6e94007c, 0x00000000, 0x00000000}},  //   יקר_, риру,   ,\n  { {0x62720046, 0x7bdf06c0, 0x7ae406c1, 0x00000000}},  //   _słow, tequ, ewit,\n  { {0x7bc40207, 0xa177009b, 0xd10f007d, 0x00000000}},  //   ggiu, _בעוד_, ाहरण_,\n  { {0x7ae4002b, 0xdb1d0173, 0x00000000, 0x00000000}},  // [7d0] gwit, _absò,   ,\n  { {0x7bdf06c2, 0xf7f4007a, 0x2ee90016, 0x00000000}},  //   sequ, یسند, _isaf_,\n  { {0x7bdf004a, 0x00000000, 0x00000000, 0x00000000}},  //   pequ,   ,   ,\n  { {0x787a00b9, 0x7ae40066, 0x00000000, 0x00000000}},  //   _důvo, bwit,   ,\n  { {0x81d20082, 0x601f0023, 0x00000000, 0x00000000}},  //   _rồng, _lëmo,   ,\n  { {0x6aad06c3, 0x6b8d0026, 0xc98700ed, 0x00000000}},  //   msaf, lcag, _шуми,\n  { {0x6aad0475, 0xd5ae0439, 0x00000000, 0x00000000}},  //   lsaf, سفي_,   ,\n  { {0xd46606c4, 0x6b8d008e, 0x69c506c5, 0x00000000}},  //   лище_, ncag, lghe,\n  { {0x2bd5001c, 0x6aad03ba, 0x65950088, 0x00000000}},  //   ड्या, nsaf, _базу,\n  { {0x2d81001d, 0x95d8007c, 0xc5fb006d, 0x00000000}},  //   _nghe_, _идут_, _تعرض_,\n  { {0xe4cb06c6, 0x2ee906c7, 0x69c50051, 0x00000000}},  //   _زبان_, _asaf_, ighe,\n  { {0x25a50019, 0xf3f00025, 0x27ed06c8, 0x00000000}},  //   _hell_, _وأن_, _jaen_,\n  { {0x25a506c9, 0x27ed06ca, 0x63a90056, 0x00000000}},  //   _kell_, _maen_, maen,\n  { {0x27ed06cb, 0x63a9006c, 0x6aad0190, 0x00000000}},  //   _laen_, laen, dsaf,\n  { {0x27ff027d, 0x61e1049a, 0x03e60055, 0x00000000}},  //   _onun_, mell, কারী_,\n  { {0x6b8d001c, 0x61e1021e, 0x63a906cc, 0x00000000}},  //   gcag, lell, naen,\n  { {0xab6606cd, 0x60c10026, 0x6aad06ce, 0x00000000}},  // [7e0] увал, lulm, gsaf,\n  { {0x25a50198, 0x787a0224, 0xdcee0279, 0x00000000}},  //   _nell_, _půvo, sabı,\n  { {0x610a005f, 0x60c106cf, 0x63a906d0, 0x00000000}},  //   vəlk, nulm, kaen,\n  { {0x61e100b0, 0x6b8d06d1, 0x27ed06d2, 0x00000000}},  //   hell, ccag, _caen_,\n  { {0x61e10018, 0x60c106d3, 0x6d5e06d4, 0x00000000}},  //   kell, hulm, _hypa,\n  { {0x7e7e01d5, 0x25a50038, 0x61e10065, 0x00000000}},  //   _jipp, _cell_, jell,\n  { {0x61e106d5, 0x25a5051b, 0x83fd0010, 0x00000000}},  //   dell, _dell_, klőd,\n  { {0x7e7e00b0, 0x3a3a0002, 0x44220047, 0x00000000}},  //   _lipp, lipp_, ók_,\n  { {0x61e106d6, 0x610a006b, 0x25a506d7, 0x00000000}},  //   fell, məli, _fell_,\n  { {0x61e1014a, 0xf1c600b9, 0x645906d8, 0x00000000}},  //   gell, _část_, _ekwi,\n  { {0x63a9011c, 0x00000000, 0x00000000, 0x00000000}},  //   baen,   ,   ,\n  { {0x0eeb007c, 0x7e7e00ea, 0x25a50440, 0x00000000}},  //   ньги_, _aipp, _zell_,\n  { {0xe29600ed, 0x7e7e01ee, 0x69c506d9, 0x00000000}},  //   _среќ, _bipp, yghe,\n  { {0x61e106da, 0x7e7e0197, 0x2fc900c4, 0x00000000}},  //   cell, _cipp, _wcag_,\n  { {0x6b8d001c, 0x7e7e0436, 0x00000000, 0x00000000}},  //   tcag, _dipp,   ,\n  { {0x60df0047, 0x6aad00eb, 0x6d5e0023, 0x00000000}},  //   őzmé, tsaf, _dypa,\n  { {0x5a35026b, 0x765a06db, 0x2ee90085, 0x00000000}},  // [7f0] анат, _okty, _usaf_,\n  { {0x6b8d0197, 0x321e0036, 0x6aad03d0, 0x00000000}},  //   scag, nkty_, rsaf,\n  { {0x69c50207, 0x6aad0197, 0x9967003b, 0x00000000}},  //   rghe, ssaf, утал,\n  { {0x765a06dc, 0x61e10284, 0x62720036, 0x00000000}},  //   _akty, zell, _złot,\n  { {0x25a50221, 0x61e102fa, 0x60c10279, 0x00000000}},  //   _pell_, yell, zulm,\n  { {0xf77006dd, 0x61e100f4, 0x60c10180, 0x00000000}},  //   سان_, xell, yulm,\n  { {0x63a906de, 0x61e1032c, 0x25a50129, 0x00000000}},  //   taen, vell, _vell_,\n  { {0x25a50038, 0x61e105af, 0xb6c900a1, 0x00000000}},  //   _well_, well, _لائے_,\n  { {0x61e103a1, 0x25a500ab, 0xcb120049, 0x00000000}},  //   tell, _tell_, ַלט_,\n  { {0x60c106df, 0x22150140, 0xdb0d004a, 0x00000000}},  //   tulm, рфир, ngañ,\n  { {0xc5fa007b, 0xb5fa0049, 0x386d000a, 0x00000000}},  //   _שפעט, _שלעכ, _kher_,\n  { {0x61e106e0, 0x437506e1, 0x60c1005d, 0x00000000}},  //   sell, _култ, rulm,\n  { {0x2055008b, 0x61e106e2, 0xeac00044, 0x00000000}},  //   стэр, pell, _উন্ম,\n  { {0x6da3026b, 0x533206e3, 0x610a006b, 0x00000000}},  //   жира, _фељт, zəli,\n  { {0xed5a0057, 0x7e7e0190, 0x62860161, 0x00000000}},  //   тов_, _vipp, íkov,\n  { {0x1e86005e, 0x200006e4, 0x6d5e01ca, 0x00000000}},  //   _клим, _unii_, _vypa,\n\n  { {0x7e7e06e5, 0x62720046, 0x6d5e0046, 0x00000000}},  // [800] _tipp, _głos, _wypa,\n  { {0x6d410051, 0x3ead002b, 0x3c3f00b0, 0x00000000}},  //   úlac, ġett_, tävä_,\n  { {0x6e3c06e6, 0x610a006b, 0x386d0146, 0x00000000}},  //   mirb, təli, _bher_,\n  { {0x386d00f4, 0xd90d00a6, 0xe8df0082, 0x00000000}},  //   _cher_, ریق_, _cuốc_,\n  { {0x66f406e7, 0xc6a302d3, 0x610a006b, 0x00000000}},  //   сплу, орщи, rəli,\n  { {0x386d010f, 0xdb060023, 0xfaa302dc, 0x00000000}},  //   _eher_, _lekë, _фаро,\n  { {0x290700f8, 0x00000000, 0x00000000, 0x00000000}},  //   änat_,   ,   ,\n  { {0x6a6b010f, 0x387f0026, 0xe8df0082, 0x00000000}},  //   rüfe, _giur_, _guốc_,\n  { {0xf5ea026b, 0xdb0d000c, 0x00000000, 0x00000000}},  //   _имал_, ngað,   ,\n  { {0xd4d6008b, 0x387f002d, 0xe8040061, 0x00000000}},  //   _відэ, _ziur_, ळावा_,\n  { {0x6e3c06e8, 0x741600a2, 0x321e06e9, 0x00000000}},  //   dirb, _پوشا, rkty_,\n  { {0x91fc01c5, 0x00000000, 0x00000000, 0x00000000}},  //   flāc,   ,   ,\n  { {0x229406ea, 0x32940025, 0xd042006b, 0x00000000}},  //   _التس, _التأ, ntlə,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x2ba702a8, 0x442606eb, 0x62720036, 0x00000000}},  //   ијав, _klo_, _włos,\n  { {0x5bb80057, 0x717b009b, 0xd042006b, 0x00000000}},  //   ился_, _בנוס, ktlə,\n  { {0xaed5003b, 0xb066006c, 0x442600e7, 0x00000000}},  // [810] _уопш, svää, _mlo_,\n  { {0x4426049a, 0x7d1c06ec, 0x7c2600f8, 0x00000000}},  //   _llo_, byrs, _elkr,\n  { {0xda780242, 0x4f5800a6, 0x442600b0, 0x00000000}},  //   рят_, _مجید_, _olo_,\n  { {0xd126009c, 0xe8df00ad, 0x442606ed, 0x00000000}},  //   _ہم_, _quốc_, _nlo_,\n  { {0x610a006b, 0x3a3800fa, 0x00000000, 0x00000000}},  //   məlu, _fmrp_,   ,\n  { {0x442606ee, 0x386d00e0, 0xe5a2007c, 0x00000000}},  //   _alo_, _wher_, пиши,\n  { {0x442606ef, 0x29070479, 0x81ac0044, 0x00000000}},  //   _blo_, ånad_, গলা_,\n  { {0x436901be, 0x44260462, 0xd4e40088, 0x00000000}},  //   лайн_, _clo_, юючи,\n  { {0x44260263, 0x00000000, 0x00000000, 0x00000000}},  //   _dlo_,   ,   ,\n  { {0x442600b0, 0x00000000, 0x00000000, 0x00000000}},  //   _elo_,   ,   ,\n  { {0x442606f0, 0x6d400279, 0x1b1b0044, 0x00000000}},  //   _flo_, şmaz, _নেমে_,\n  { {0x44260343, 0x00000000, 0x00000000, 0x00000000}},  //   _glo_,   ,   ,\n  { {0x2bcb013d, 0x00000000, 0x00000000, 0x00000000}},  //   िलना,   ,   ,\n  { {0xe29c007b, 0x44260091, 0x7d1c0065, 0x00000000}},  //   _ישׂר, _zlo_, tyrs,\n  { {0x823406f1, 0x1d1901fb, 0x6fc10061, 0x00000000}},  //   _برنا, ають_, _वाचू,\n  { {0x61b7024c, 0x6f1d06f2, 0x3b8606f3, 0x00000000}},  //   _आयुष, bysc, слаг,\n  { {0xe9da0001, 0xc053009b, 0x3b0705f6, 0x00000000}},  // [820] лка_, _מזה_, бето_,\n  { {0x7dea007c, 0xdb0d01e5, 0x00000000, 0x00000000}},  //   _смог_, rgað,   ,\n  { {0xe8040061, 0xd23a0049, 0x00000000, 0x00000000}},  //   ळाला_, נגעל,   ,\n  { {0xa967005e, 0x00000000, 0x00000000, 0x00000000}},  //   щиха_,   ,   ,\n  { {0x29070039, 0x628f06f4, 0x00000000, 0x00000000}},  //   änar_, ícol,   ,\n  { {0x442606f5, 0xd042005f, 0xe4a60081, 0x00000000}},  //   _slo_, rtlə, брио,\n  { {0x442606f6, 0xd042005f, 0xd4970642, 0x00000000}},  //   _plo_, stlə, бры_,\n  { {0x29050107, 0x786a01ca, 0x9418007c, 0x00000000}},  //   _šlag_, býva, ржит_,\n  { {0x59cf00e8, 0x6a700039, 0x69c800f8, 0x00000000}},  //   स्कर, räff, _ödes,\n  { {0x27e60061, 0x6d40005a, 0xf23800ed, 0x00000000}},  //   leon_, şmay, рпош_,\n  { {0x69dc06f7, 0x69ce000a, 0x4426016e, 0x00000000}},  //   _mbre, _mcbe, _tlo_,\n  { {0x6f1d001c, 0x43860054, 0x4426006a, 0x00000000}},  //   tysc, _الإق, _ulo_,\n  { {0x69dc04bd, 0x00000000, 0x00000000, 0x00000000}},  //   _obre,   ,   ,\n  { {0x44f80011, 0x13ad0044, 0x7d0100ea, 0x00000000}},  //   _kĩ_, _গায়, ålso,\n  { {0x2d910036, 0xb4250036, 0xceb4006b, 0x00000000}},  //   rcze_, łżeń, _evə_,\n  { {0x69dc06f8, 0x44f80082, 0x649501f3, 0x00000000}},  //   _abre, _mĩ_, _wġig,\n  { {0x7b67051f, 0x69dc01f3, 0xd24d00a1, 0x00000000}},  // [830] стве, _bbre, _سچی_,\n  { {0x6495002b, 0x00000000, 0x00000000, 0x00000000}},  //   _uġig,   ,   ,\n  { {0xdd9200a2, 0xa8cb0439, 0x00000000, 0x00000000}},  //   _توپ_, طباق_,   ,\n  { {0x7c67004b, 0x69dc06f9, 0x27e606fa, 0x00000000}},  //   _داخل, _ebre, geon_,\n  { {0x7c2d06fb, 0xdcf50279, 0x64950066, 0x00000000}},  //   mhar, mazı, _mġie,\n  { {0x601f0023, 0x00000000, 0x00000000, 0x00000000}},  //   _dëmi,   ,   ,\n  { {0x2409007c, 0xafdb0030, 0x7afd06fc, 0x00000000}},  //   инки_, rnøj, _hrst,\n  { {0x7afd041a, 0x7c2d0181, 0x601f008d, 0x00000000}},  //   _krst, nhar, _fëmi,\n  { {0xc7b90010, 0x20f7001a, 0x7afb01ed, 0x00000000}},  //   _idő_, _săi_, _šutj,\n  { {0x80cd0044, 0x20f70035, 0xdcf501df, 0x00000000}},  //   ়বস্, _păi_, hazı,\n  { {0x7bcf06fd, 0x7c2d008a, 0x629b00b0, 0x00000000}},  //   _occu, khar, spuo,\n  { {0xe8e00082, 0x00000000, 0x00000000, 0x00000000}},  //   _chộp_,   ,   ,\n  { {0x7c2d06fe, 0x442d002a, 0xc7d6009b, 0x00000000}},  //   dhar, mhe_, חורי_,\n  { {0x443f010a, 0x7bcf06ff, 0x442d0181, 0x00000000}},  //   liu_, _accu, lhe_,\n  { {0x628b0058, 0x7afd006c, 0xa06a0517, 0x00000000}},  //   _hugo, _arst, _кака_,\n  { {0x443f0700, 0x7c2d0020, 0x442d0701, 0x00000000}},  //   niu_, ghar, nhe_,\n  { {0x628b0702, 0x63ab0047, 0x64490103, 0x00000000}},  // [840] _jugo, _megn, inei,\n  { {0x63ab0703, 0x6449010f, 0x628b0202, 0x00000000}},  //   _legn, hnei, _mugo,\n  { {0x7afd0109, 0x7c2d002a, 0x443f010a, 0x00000000}},  //   _erst, bhar, kiu_,\n  { {0x7c2d032c, 0x60da0049, 0x62990036, 0x00000000}},  //   char, יקענ, _otwo,\n  { {0x442d008d, 0x443f0704, 0x44f8001d, 0x00000000}},  //   dhe_, diu_, _sĩ_,\n  { {0x6283011c, 0x7c240004, 0x27e60705, 0x00000000}},  //   _nino, lkir, seon_,\n  { {0x7a20010f, 0x628b0089, 0x291c006c, 0x00000000}},  //   _nöti, _augo, ävad_,\n  { {0x442d0375, 0x7c240706, 0x628300b0, 0x00000000}},  //   ghe_, nkir, _aino,\n  { {0x62830058, 0x63ab0197, 0x64950066, 0x00000000}},  //   _bino, _degn, _rġie,\n  { {0x386604bd, 0x628b0091, 0x644900c4, 0x00000000}},  //   llor_, _dugo, anei,\n  { {0x9354026c, 0xf993019b, 0x2fcb001c, 0x00000000}},  //   _کراچ, ורת_, tgcg_,\n  { {0x442d0707, 0x63ab0708, 0x443f0027, 0x00000000}},  //   che_, _gegn, ciu_,\n  { {0xe1ef00d3, 0xc7b300b6, 0x6440011c, 0x00000000}},  //   رسی_, ובר_, mimi,\n  { {0x62830709, 0x6440070a, 0x63ab0190, 0x00000000}},  //   _gino, limi, _zegn,\n  { {0x7c2d070b, 0xfe6e02fd, 0x7c240066, 0x00000000}},  //   thar, دگي_, fkir,\n  { {0x6440070c, 0x7afd0091, 0x62830006, 0x00000000}},  //   nimi, _prst, _zino,\n  { {0x7c2d04cb, 0xdceb005d, 0xdcf50180, 0x00000000}},  // [850] rhar, ınız, razı,\n  { {0x7c2d000b, 0x6440070d, 0x7afd01d9, 0x00000000}},  //   shar, himi, _vrst,\n  { {0x6440070e, 0x7c2d0541, 0x3866008e, 0x00000000}},  //   kimi, phar, flor_,\n  { {0xdce5001d, 0x6440070f, 0x443f04bd, 0x00000000}},  //   _nghĩ, jimi, xiu_,\n  { {0x64400710, 0x63ab068f, 0x66050265, 0x00000000}},  //   dimi, _regn, зпла,\n  { {0x63ab0198, 0x628b0065, 0x61e80166, 0x00000000}},  //   _segn, _rugo, jedl,\n  { {0x442d0711, 0x443f04bd, 0x7aed01aa, 0x00000000}},  //   the_, tiu_, lwat,\n  { {0x64400712, 0x7bcd0006, 0x628b0058, 0x00000000}},  //   gimi, ngau, _pugo,\n  { {0x443f0713, 0x6283006a, 0x63ab009f, 0x00000000}},  //   riu_, _pino, _vegn,\n  { {0x442d0714, 0x443f04a5, 0x63ab0168, 0x00000000}},  //   she_, siu_, _wegn,\n  { {0x442d00f4, 0x64400715, 0x443f0716, 0x00000000}},  //   phe_, bimi, piu_,\n  { {0x64400219, 0x628b0717, 0x3ea901aa, 0x00000000}},  //   cimi, _tugo, _bwat_,\n  { {0x62990036, 0x62830718, 0x628b00e0, 0x00000000}},  //   _utwo, _tino, _uugo,\n  { {0x7aed0719, 0x3ea90263, 0xe8e00082, 0x00000000}},  //   dwat, _dwat_, _chớp_,\n  { {0x7aed00e0, 0x32070036, 0x386600ab, 0x00000000}},  //   ewat, _inny_, ylor_,\n  { {0x5fc6001c, 0x7aed00e7, 0xdddc0161, 0x00000000}},  //   _वाटल, fwat, zorň,\n  { {0x7c24071a, 0x7aed071b, 0xd5b80089, 0x00000000}},  // [860] rkir, gwat, _klāt_,\n  { {0x64400714, 0x7c2404a5, 0x4efb071c, 0x00000000}},  //   zimi, skir, _פליג,\n  { {0x6440006b, 0xae1b01ce, 0x7aed0022, 0x00000000}},  //   yimi, _הויכ, awat,\n  { {0x644000f4, 0x00000000, 0x00000000, 0x00000000}},  //   ximi,   ,   ,\n  { {0x6440071d, 0x38660210, 0xb86600a1, 0x00000000}},  //   vimi, rlor_, _ہارو,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6440071e, 0xb86603ab, 0x61e805d2, 0x00000000}},  //   timi, _فارو, vedl,\n  { {0x329800ed, 0x443d01c3, 0x7afb0166, 0x00000000}},  //   овиќ_, _cmw_, _šuti,\n  { {0x5fc60061, 0x61e80133, 0x00000000, 0x00000000}},  //   _वाजल, tedl,   ,\n  { {0x64400710, 0x80c002fb, 0x4b3700a0, 0x00000000}},  //   simi, _विदे, פריל_,\n  { {0x64a3008b, 0x3ea90066, 0x61e8003b, 0x00000000}},  //   _заха, _swat_, redl,\n  { {0x7aed0046, 0xdcb10082, 0x6440071f, 0x00000000}},  //   ywat, ẩm_, qimi,\n  { {0x661a044e, 0x82fa00a6, 0x00000000, 0x00000000}},  //   _kotk, _دراز_,   ,\n  { {0x661a021e, 0x6e3e0009, 0xe3b00167, 0x00000000}},  //   _jotk, _cmpb, _سرچ_,\n  { {0x61db01f8, 0x601f0065, 0x5fc60061, 0x00000000}},  //   _הקוד, _sëmu, _वाचल,\n  { {0x7bcd0006, 0x00000000, 0x00000000, 0x00000000}},  //   ugau,   ,   ,\n  { {0xa3de02d2, 0x7bcd04cb, 0x601f0065, 0x00000000}},  // [870] द्य_, rgau, _dëmt,\n  { {0x2486002a, 0x91fc001e, 0x661a0720, 0x00000000}},  //   _liom_, klām, _notk,\n  { {0x7aed00bb, 0xf9880025, 0x9f52009d, 0x00000000}},  //   swat, أنمي_, _rayé_,\n  { {0xa2bd0309, 0x6608010e, 0x6b960145, 0x00000000}},  //   _शिल्, _andk, ccyg,\n  { {0xd6db012b, 0x9f52009d, 0x661a00f8, 0x00000000}},  //   сте_, _payé_, _botk,\n  { {0x443d0022, 0x95cb007c, 0x661a0087, 0x00000000}},  //   _smw_, суда_, _cotk,\n  { {0x661a0721, 0xf8ae0014, 0x443d0722, 0x00000000}},  //   _dotk, _نکن_, _pmw_,\n  { {0x3e640010, 0x00000000, 0x00000000, 0x00000000}},  //   lött_,   ,   ,\n  { {0x661a0428, 0xe1f200a1, 0x443d00d9, 0x00000000}},  //   _fotk, چسپ_, _vmw_,\n  { {0x20090723, 0x80d90088, 0x7a2001e5, 0x00000000}},  //   _anai_, оєму_, _fötu,\n  { {0x764301a3, 0x7a20000c, 0x443d0724, 0x00000000}},  //   miny, _götu, _tmw_,\n  { {0xa3ae02d2, 0x76430129, 0x3f6a003b, 0x00000000}},  //   करण_, liny, жимо_,\n  { {0xd092005f, 0x7a2003ed, 0xdb06008e, 0x00000000}},  //   _müəy, _kött, _pekí,\n  { {0xfce60088, 0x1e83007e, 0x7643033b, 0x00000000}},  //   мого, клям, niny,\n  { {0x91fc0089, 0x7a200039, 0x3e640010, 0x00000000}},  //   klāj, _mött, dött_,\n  { {0x7643027c, 0x601f0065, 0x7a200725, 0x00000000}},  //   hiny, _dëms, _lött,\n  { {0xdd8f026c, 0x764304cb, 0xcb670726, 0x00000000}},  // [880] اوہ_, kiny, дате_,\n  { {0x76430727, 0x67220020, 0x3e640010, 0x00000000}},  //   jiny, vyoj, gött_,\n  { {0x76430728, 0x6ab60203, 0x00000000, 0x00000000}},  //   diny, ssyf,   ,\n  { {0x8c460081, 0x2d9802d0, 0x661a00b0, 0x00000000}},  //   _цеме, lcre_, _sotk,\n  { {0x76430729, 0x00000000, 0x00000000, 0x00000000}},  //   finy,   ,   ,\n  { {0xd49a0200, 0x9d45026c, 0x7643072a, 0x00000000}},  //   ори_, _آئین, giny,\n  { {0xf983072b, 0x661a072c, 0x7a2000f8, 0x00000000}},  //   _агро, _votk, _dött,\n  { {0xa803005e, 0x69de00d9, 0x00000000, 0x00000000}},  //   _изсл, lfpe,   ,\n  { {0x76430056, 0x7a20072d, 0xa01b072e, 0x00000000}},  //   biny, _fött, lmög,\n  { {0x7a20072f, 0x20090026, 0x7643008a, 0x00000000}},  //   _gött, _snai_, ciny,\n  { {0x644b01e5, 0x00000000, 0x00000000, 0x00000000}},  //   ðmið,   ,   ,\n  { {0x3e640047, 0x53460730, 0x03260140, 0x00000000}},  //   zött_, _охла, _оден,\n  { {0x80c00309, 0x00000000, 0x00000000, 0x00000000}},  //   _विवे,   ,   ,\n  { {0x7412009e, 0x00000000, 0x00000000, 0x00000000}},  //   _سوڈا,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x61f80731, 0x76430173, 0x2009002d, 0x00000000}},  //   _havl, ziny, _unai_,\n  { {0x76430732, 0x3a750072, 0x61f80460, 0x00000000}},  // [890] yiny, елар, _kavl,\n  { {0x61f80091, 0x61fa05b7, 0x9987013e, 0x00000000}},  //   _javl, ndtl, ónů_,\n  { {0x7643007f, 0xa3ae0164, 0x7a2004ce, 0x00000000}},  //   viny, करा_, _rött,\n  { {0x2c2701fb, 0xfc3f01dc, 0x6d5701f3, 0x00000000}},  //   _цьог, _umí_, _ixxa,\n  { {0x76430169, 0x6b9a009b, 0x00000000, 0x00000000}},  //   tiny, _משרד,   ,\n  { {0xf77002fd, 0x61f80733, 0x321c04bb, 0x00000000}},  //   جام_, _navl, _novy_,\n  { {0x76430734, 0x9f4e00b9, 0x00000000, 0x00000000}},  //   riny, čném_,   ,\n  { {0x76430169, 0x00000000, 0x00000000, 0x00000000}},  //   siny,   ,   ,\n  { {0xa3de0164, 0x61f80161, 0xe8df0011, 0x00000000}},  //   द्ध_, _bavl, _khỏa_,\n  { {0x80c00201, 0x29030022, 0x00000000, 0x00000000}},  //   _विशे, _krja_,   ,\n  { {0xa06a005e, 0xe0460735, 0x90460014, 0x00000000}},  //   зана_, енни, فنده,\n  { {0x44f10736, 0xdb060027, 0xa3de0164, 0x00000000}},  //   _iš_, _leká, द्द_,\n  { {0xd12e00e9, 0xc2c80151, 0x932701fa, 0x00000000}},  //   لمی_, _قبول_, _تران,\n  { {0x2d8c0737, 0x32d90173, 0x44f1012d, 0x00000000}},  //   øde_, mèy_, _kš_,\n  { {0xdb040219, 0x32d90263, 0x1d070594, 0x00000000}},  //   mbié, lèy_, нери_,\n  { {0x61f80738, 0x00000000, 0x00000000, 0x00000000}},  //   _zavl,   ,   ,\n  { {0x2903002b, 0x442f0739, 0x44f101ee, 0x00000000}},  // [8a0] _arja_, _mlg_, _lš_,\n  { {0x4a4300ed, 0x44f1073a, 0x442f01c3, 0x00000000}},  //   гнув, _oš_, _llg_,\n  { {0x4c860265, 0x442f01a2, 0xd826073b, 0x00000000}},  //   _плов, _olg_, нджи,\n  { {0x6f04073c, 0x69d50382, 0xa01b073d, 0x00000000}},  //   _kric, _ecze, rmög,\n  { {0xdcfc005f, 0x44f1010a, 0x45d4031b, 0x00000000}},  //   marı, _aš_, волс,\n  { {0xdcfc01f6, 0xceb3073e, 0x6f040022, 0x00000000}},  //   ları, ניו_, _mric,\n  { {0xdb1d000a, 0x6e200023, 0x442f010e, 0x00000000}},  //   _adsè, ëmby, _blg_,\n  { {0x6f04000d, 0x61f8037e, 0xdcfc005d, 0x00000000}},  //   _oric, _savl, narı,\n  { {0x61f8003b, 0x32d90173, 0x99610089, 0x00000000}},  //   _pavl, gèy_, _cīņa_,\n  { {0x442f00ea, 0xdb0f00f6, 0x249e0082, 0x00000000}},  //   _elg_, _decè, _tttm_,\n  { {0x403500ed, 0xdcfc011f, 0x3a37009b, 0x00000000}},  //   венс, karı, גרים_,\n  { {0x6f04032c, 0x00000000, 0x00000000, 0x00000000}},  //   _bric,   ,   ,\n  { {0x61f800eb, 0x6d48073f, 0x9346007c, 0x00000000}},  //   _tavl, údan, _янде,\n  { {0x6f040039, 0xbe88007c, 0x00000000, 0x00000000}},  //   _dric, ессе_,   ,\n  { {0x6f040740, 0xf1b300b3, 0xcfb00044, 0x00000000}},  //   _eric, _עסק_, _কারন,\n  { {0x6f04001a, 0x3ea001d5, 0xac18003b, 0x00000000}},  //   _fric, _ftit_, носу_,\n  { {0x06e80055, 0xf9c70741, 0x628a0010, 0x00000000}},  // [8b0] পিডি, ещен, _kifo,\n  { {0x8b08013e, 0x9f400288, 0x00000000, 0x00000000}},  //   _spřá, _gaiñ_,   ,\n  { {0xdcfc0279, 0xa928007e, 0xbc790088, 0x00000000}},  //   barı, ніце_, _обох_,\n  { {0x69d50036, 0xdcfc006b, 0x628a005b, 0x00000000}},  //   _wcze, carı, _lifo,\n  { {0xe8df001d, 0x799c0016, 0x80380049, 0x00000000}},  //   _thỏa_, _ffrw, ענדע_,\n  { {0x69d50046, 0xb5c202f0, 0x32d901aa, 0x00000000}},  //   _ucze, айшл, vèy_,\n  { {0x442f033b, 0x224500ca, 0xaa540545, 0x00000000}},  //   _plg_, vilk_, _сврш,\n  { {0xd1380046, 0x130902d3, 0x32d901aa, 0x00000000}},  //   dzą_, дний_, tèy_,\n  { {0x628a0039, 0x5695005e, 0x95d900ed, 0x00000000}},  //   _bifo, _разт, _одат_,\n  { {0xdcfc0279, 0x32d90263, 0x6442002d, 0x00000000}},  //   zarı, rèy_, _emoi,\n  { {0xa2bd02f4, 0xf992009b, 0x628a0056, 0x00000000}},  //   _शिक्, ירי_, _difo,\n  { {0xdcfc005f, 0x3ea00742, 0x22450190, 0x00000000}},  //   xarı, _ptit_, silk_,\n  { {0x63a90743, 0xe1ee0256, 0x539a0104, 0x00000000}},  //   mben, _кг_, _חינו,\n  { {0x63a90089, 0x787800fa, 0x6fa2007d, 0x00000000}},  //   lben, míve, _क्रू,\n  { {0x61d6012f, 0xdcfc027d, 0xd1380036, 0x00000000}},  //   _יוסף_, tarı, czą_,\n  { {0x6b8f001c, 0x2188007b, 0x51840099, 0x00000000}},  //   _cgcg, _אָפּ, _суча,\n  { {0x78780181, 0x27fd018e, 0xea8a06e3, 0x00000000}},  // [8c0] níve, ddwn_, дбал_,\n  { {0xdcfc014a, 0x26cf0744, 0x00000000, 0x00000000}},  //   sarı, dugo_,   ,\n  { {0xdcfc005d, 0xd7fa0745, 0x7d010374, 0x00000000}},  //   parı, дул_, ålst,\n  { {0x26cf0020, 0xb6a600e2, 0x3ead0035, 0x00000000}},  //   fugo_, видл, ţete_,\n  { {0x63a90746, 0xfaa60098, 0x00000000, 0x00000000}},  //   dben, _јаго,   ,\n  { {0x63a9010f, 0x787800b9, 0x00000000, 0x00000000}},  //   eben, díve,   ,\n  { {0x628a01bc, 0xd94601fc, 0x499100a1, 0x00000000}},  //   _rifo, _реви, _ایمر,\n  { {0xd70600d7, 0x7c36018e, 0x628a04be, 0x00000000}},  //   _изби, nhyr, _sifo,\n  { {0x97ea005f, 0x26dd0046, 0xe0ae0044, 0x00000000}},  //   ışdı, ctwo_, _কমেন,\n  { {0x62060088, 0x00000000, 0x00000000, 0x00000000}},  //   тчиз,   ,   ,\n  { {0xc4c50464, 0x1be2006e, 0x6457004a, 0x00000000}},  //   _متنو, खभाल_, éxic,\n  { {0x23ba004b, 0x14d700b3, 0x787800c4, 0x00000000}},  //   _آداب_, _יובל_, bíve,\n  { {0xd1380046, 0x628a0747, 0x787800c4, 0x00000000}},  //   szą_, _tifo, cíve,\n  { {0xa3de02fb, 0xdb1601aa, 0x00000000, 0x00000000}},  //   द्र_, mayè,   ,\n  { {0x69c8014a, 0x00000000, 0x00000000, 0x00000000}},  //   _ödey,   ,   ,\n  { {0xdb0f0035, 0xdfd10025, 0xc61f0309, 0x00000000}},  //   _decî, _اية_, _भव्य_,\n  { {0x06d70044, 0x9f5200f6, 0x00000000, 0x00000000}},  // [8d0] _দৈনি, _gayà_,   ,\n  { {0x63a90209, 0x26cf0009, 0xbdf5025f, 0x00000000}},  //   zben, vugo_, _спој,\n  { {0x27ef01e3, 0x00000000, 0x00000000, 0x00000000}},  //   tegn_,   ,   ,\n  { {0xdb060002, 0x00000000, 0x00000000, 0x00000000}},  //   _bekä,   ,   ,\n  { {0x7c2d006b, 0x27ef0748, 0x787800c4, 0x00000000}},  //   mkar, regn_, xíve,\n  { {0xd7740054, 0x26cf0058, 0xbb3a0049, 0x00000000}},  //   جامع, rugo_, _טערי,\n  { {0xd4690175, 0x245a0089, 0x26dd0036, 0x00000000}},  //   нике_, zīme_, stwo_,\n  { {0x7c2d002d, 0x78780749, 0x63a9074a, 0x00000000}},  //   nkar, tíve, uben,\n  { {0x63a904cb, 0xc7b2034e, 0x7c2d000c, 0x00000000}},  //   rben, _לבן_, ikar,\n  { {0x63a90059, 0x96f8002c, 0x7c2d074b, 0x00000000}},  //   sben, _جعفر_, hkar,\n  { {0x7c2d00b0, 0x78780181, 0x9f4e00b9, 0x00000000}},  //   kkar, síve, čním_,\n  { {0xddd500b9, 0x7c2d00f8, 0x6d48004a, 0x00000000}},  //   mozř, jkar, údam,\n  { {0x91e50057, 0x442d074c, 0x7c2d0036, 0x00000000}},  //   _боле, mke_, dkar,\n  { {0xdd920426, 0xf7760049, 0x6449074d, 0x00000000}},  //   صور_, טערי_, liei,\n  { {0x7c36074e, 0x09b20055, 0xed570269, 0x00000000}},  //   thyr, _চালা, гор_,\n  { {0xaca9026c, 0x7c2d006a, 0x09cc0061, 0x00000000}},  //   کھیے_, gkar, ाल्य,\n  { {0x9b930054, 0x442d046a, 0xed1700a1, 0x00000000}},  // [8e0] إلكت, ike_, نہیں_,\n  { {0xe9d701f9, 0x3b830099, 0x442d006c, 0x00000000}},  //   лку_, слуг, hke_,\n  { {0x442d0374, 0x7c2d006b, 0x8c460478, 0x00000000}},  //   kke_, bkar, _бене,\n  { {0x442d02ae, 0x7c2d0039, 0xdbd701a2, 0x00000000}},  //   jke_, ckar, mäßi,\n  { {0x442d074f, 0xd707007c, 0x64490750, 0x00000000}},  //   dke_, лнце_, diei,\n  { {0x442d0100, 0x9f5b0023, 0x7af6005b, 0x00000000}},  //   eke_, _saqë_, mwyt,\n  { {0x64490016, 0x7af60016, 0x04660751, 0x00000000}},  //   fiei, lwyt, лтим,\n  { {0x25f0013d, 0x4d7b0049, 0xd467003b, 0x00000000}},  //   _इसकी_, ערקע, лије_,\n  { {0xa6ca0167, 0xd5d60752, 0x386601d6, 0x00000000}},  //   _سوال_, _متاث, moor_,\n  { {0xd6cf0647, 0xe29f009f, 0x7c2d022b, 0x00000000}},  //   _رقم_, íða_, zkar,\n  { {0xf5930054, 0x055603f6, 0xa158003b, 0x00000000}},  //   _المج, _стая, тану_,\n  { {0x442d001f, 0x764a01aa, 0x5577007b, 0x00000000}},  //   cke_, lify, _געבן_,\n  { {0x09cc0055, 0x80c0006e, 0x6d5a009d, 0x00000000}},  //   র্যা, _विके, ûtan,\n  { {0x38660007, 0x764a0753, 0xb80b013d, 0x00000000}},  //   hoor_, nify, _सोनम_,\n  { {0x16d10754, 0x7c2d0089, 0x38660755, 0x00000000}},  //   _सम्ब, tkar, koor_,\n  { {0x09cc0055, 0x386601d6, 0xd175007e, 0x00000000}},  //   র্মা, joor_, _тычы,\n  { {0x7c2d0127, 0x386600ab, 0xead50451, 0x00000000}},  // [8f0] rkar, door_, розь,\n  { {0x7c2d0756, 0x442d0757, 0xdfd100a1, 0x00000000}},  //   skar, zke_, _ايک_,\n  { {0x764a0758, 0x442d0007, 0x09cc0044, 0x00000000}},  //   dify, yke_, র্ভা,\n  { {0x386601d6, 0x00000000, 0x00000000, 0x00000000}},  //   goor_,   ,   ,\n  { {0x442d0209, 0x644900c4, 0x6f1b01a2, 0x00000000}},  //   vke_, viei, äuch,\n  { {0x80aa0055, 0x09cc0055, 0x19940088, 0x00000000}},  //   _কিন্, র্বা, _гаря,\n  { {0x442d0759, 0x8459005e, 0x6449032e, 0x00000000}},  //   tke_, крит_, tiei,\n  { {0x442d075a, 0x6a6b010f, 0x91fc0089, 0x00000000}},  //   uke_, rüfu, klās,\n  { {0xe80b013d, 0x64490145, 0x7cec075b, 0x00000000}},  //   _सोया_, riei, _körö,\n  { {0x442d0374, 0xc245004d, 0x27ff0052, 0x00000000}},  //   ske_, рнок, _haun_,\n  { {0xc3230055, 0x7878008e, 0x442d016e, 0x00000000}},  //   _বেশি_, líva, pke_,\n  { {0xdb0f0181, 0x27ff075c, 0x00000000, 0x00000000}},  //   _mecâ, _jaun_,   ,\n  { {0x92b70054, 0x02a7003b, 0x63bb075d, 0x00000000}},  //   _إحصا, _срем, maun,\n  { {0x63bb075e, 0xed5a012b, 0x27ff000c, 0x00000000}},  //   laun, вог_, _laun_,\n  { {0xdb0f0211, 0x629b06b9, 0x6142075f, 0x00000000}},  //   _decí, lquo, _меша,\n  { {0x63bb00e0, 0x229b01c3, 0x27ff0288, 0x00000000}},  //   naun, _kêk_, _naun_,\n  { {0x4a46008b, 0x386600b5, 0xa3e70164, 0x00000000}},  // [900] анав, voor_, म्य_,\n  { {0x7af60016, 0x787801dc, 0x20000145, 0x00000000}},  //   rwyt, díva, _haii_,\n  { {0x41dd007d, 0x63bb0760, 0xf1dd006e, 0x00000000}},  //   _मानस, kaun, _मानन,\n  { {0xdb0f001a, 0x63bb001e, 0x20020036, 0x00000000}},  //   _decâ, jaun, ndki_,\n  { {0x38660343, 0x764a01aa, 0x27ff04cb, 0x00000000}},  //   roor_, tify, _daun_,\n  { {0x7cec0010, 0xb8dc0044, 0x00000000, 0x00000000}},  //   _görö, _আম_,   ,\n  { {0x01bb0055, 0x764a0761, 0x38660168, 0x00000000}},  //   ংলাদ, rify, poor_,\n  { {0x27ff0762, 0x63bb0006, 0x764a0173, 0x00000000}},  //   _gaun_, gaun, sify,\n  { {0x46a30264, 0x07a3030d, 0x00000000, 0x00000000}},  //   _матв, _фаун,   ,\n  { {0x27e6000a, 0x201200e7, 0x00000000, 0x00000000}},  //   lfon_, _anyi_,   ,\n  { {0x7bc60763, 0xdb0f06f4, 0x20120145, 0x00000000}},  //   _odku, _recí, _bnyi_,\n  { {0x78a10010, 0x63bb00ea, 0x27e60016, 0x00000000}},  //   _élve, caun, nfon_,\n  { {0x200500b9, 0x629b0068, 0x44f80082, 0x00000000}},  //   ěli_, cquo, _hũ_,\n  { {0x20050046, 0x20120020, 0x290a05ae, 0x00000000}},  //   śli_, _enyi_, _orba_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x8f470764, 0x7055007a, 0x44f80011, 0x00000000}},  //   _вход, _دنبا, _mũ_,\n  { {0x290a010a, 0x207c0049, 0x27ff000c, 0x00000000}},  // [910] _arba_, _באהא, _raun_,\n  { {0x39a7007e, 0x24840058, 0x27ff010e, 0x00000000}},  //   ршав, hmmm_, _saun_,\n  { {0x69dd0061, 0x7cec0010, 0x69dc0009, 0x00000000}},  //   _पाठी, _vörö, _dcre,\n  { {0xdd1c00b9, 0x629b0068, 0x78780765, 0x00000000}},  //   _nářa, yquo, tíva,\n  { {0x290a0766, 0x8c1a00b6, 0x7cec0010, 0x00000000}},  //   _erba_, _עושי, _törö,\n  { {0x63a20767, 0x7afd0768, 0x63bb00e7, 0x00000000}},  //   _afon, _isst, waun,\n  { {0x44f8001d, 0x27ff0085, 0x63bb00e7, 0x00000000}},  //   _cũ_, _taun_, taun,\n  { {0xed58012e, 0x80c00309, 0x6d480051, 0x00000000}},  //   יבור_, _विजे, údai,\n  { {0x63bb002d, 0x386d002d, 0x86980769, 0x00000000}},  //   raun, _iker_, _вкус_,\n  { {0xe4e701fb, 0x629b028c, 0xdb0f0129, 0x00000000}},  //   _відн, rquo, _mecà,\n  { {0x92d70055, 0x63a20016, 0x63bb011c, 0x00000000}},  //   াবে_, _ffon, paun,\n  { {0x6601014a, 0x44e1076a, 0xc95200b3, 0x00000000}},  //   _halk, mó_, למי_,\n  { {0x69c70209, 0x44e10047, 0x539a009b, 0x00000000}},  //   _odje, ló_, _עיסו,\n  { {0x69c7008d, 0x6da30200, 0x660100b0, 0x00000000}},  //   _ndje, зира, _jalk,\n  { {0x44e1076b, 0x7afd00e0, 0x386d002d, 0x00000000}},  //   nó_, _asst, _oker_,\n  { {0x69dc0038, 0x69c7076c, 0xdb0a00b9, 0x00000000}},  //   _scre, _adje, šníh,\n  { {0x290a05fa, 0x63b9018e, 0x7afd0009, 0x00000000}},  // [920] _srba_, _mewn, _csst,\n  { {0xbf9b0181, 0x69dd0061, 0x386d00ea, 0x00000000}},  //   ndên, _पाणी, _aker_,\n  { {0x31ba007b, 0x93f9001c, 0x78a70061, 0x00000000}},  //   רזענ, ्याच_, _ctjv,\n  { {0x387f002a, 0x44e1076d, 0xe73a0057, 0x00000000}},  //   _chur_, dó_, лее_,\n  { {0x27e6076e, 0x00000000, 0x00000000, 0x00000000}},  //   rfon_,   ,   ,\n  { {0x63a20207, 0xceb300a3, 0x660100b4, 0x00000000}},  //   _sfon, ליד_, _calk,\n  { {0x44e1076f, 0x96c4013d, 0x7c260023, 0x00000000}},  //   gó_, _रिकॉ, _kokr,\n  { {0x44f8001d, 0x69c70770, 0x62990022, 0x00000000}},  //   _vũ_, _zdje, _buwo,\n  { {0x8c1b00b6, 0x66010039, 0x3266005e, 0x00000000}},  //   רופי, _falk, йтов,\n  { {0x41dd001c, 0x44e10771, 0x11d80025, 0x00000000}},  //   _माणस, bó_, جودة_,\n  { {0x04960054, 0x44e10211, 0xdb0f0211, 0x00000000}},  //   _الصح, có_, _mecá,\n  { {0x6e25011f, 0x7ae40772, 0x7c260773, 0x00000000}},  //   _sohb, ktit, _nokr,\n  { {0x447b007b, 0x00000000, 0x00000000, 0x00000000}},  //   _ענדע,   ,   ,\n  { {0x63b90036, 0x4426010e, 0xbc9500ed, 0x00000000}},  //   _zewn, _hoo_, жавј,\n  { {0x90a60774, 0x442600e7, 0x7c2606d4, 0x00000000}},  //   _احتم, _koo_, _bokr,\n  { {0x442600b0, 0x62990093, 0x7c260022, 0x00000000}},  //   _joo_, _yuwo, _cokr,\n  { {0x2fc90775, 0x44e10776, 0x7ae4006a, 0x00000000}},  // [930] _idag_, zó_, gtit,\n  { {0x386d0193, 0x98b8005d, 0x4426006c, 0x00000000}},  //   _sker_, _ayrı_, _loo_,\n  { {0xda7801e0, 0x7ae40026, 0xdb0f004a, 0x00000000}},  //   сят_, atit, _decá,\n  { {0x6f0d00b5, 0x4426011c, 0x44e10211, 0x00000000}},  //   _krac, _noo_, vó_,\n  { {0x66010777, 0xe610025a, 0xd3660076, 0x00000000}},  //   _palk, کشن_, _آه_,\n  { {0x44e10047, 0xd12605f3, 0x34a9003b, 0x00000000}},  //   tó_, _قم_, авко_,\n  { {0x63b90046, 0x66010778, 0xe3b10054, 0x00000000}},  //   _pewn, _valk, ورة_,\n  { {0x44e10779, 0x6601077a, 0x42c90140, 0x00000000}},  //   ró_, _walk, агин_,\n  { {0xe816001c, 0x44e1076f, 0x660100ab, 0x00000000}},  //   णारा_, só_, _talk,\n  { {0x63b90036, 0x44e1077b, 0x60e90437, 0x00000000}},  //   _wewn, pó_, амом_,\n  { {0x6f0d077c, 0x3ea9000d, 0x7a3b009d, 0x00000000}},  //   _arac, _atat_, _gîte,\n  { {0xa06a0113, 0x4426077d, 0x68e50016, 0x00000000}},  //   рама_, _goo_, ithd,\n  { {0x44c5001e, 0x644b077e, 0x7ae40009, 0x00000000}},  //   lē_, _imgi, xtit,\n  { {0x6f0d077f, 0x7ae4001c, 0x00000000, 0x00000000}},  //   _drac, vtit,   ,\n  { {0x8c010055, 0x27ed001f, 0x3ea900f4, 0x00000000}},  //   _একজন_, _oben_, _etat_,\n  { {0x6a70001f, 0xeb97007c, 0x5baa0780, 0x00000000}},  //   häft, жит_, ркам_,\n  { {0x3b07026b, 0x6f0d0781, 0x3a26005e, 0x00000000}},  // [940] оето_, _grac, омаг,\n  { {0x27ed0146, 0x32050133, 0x2b4000e5, 0x00000000}},  //   _aben_, ndly_, rzic_,\n  { {0x7ae40782, 0x6f0d0107, 0xe8160061, 0x00000000}},  //   stit, _zrac, णाला_,\n  { {0xdb2400a1, 0xb6c800a1, 0x7ae40048, 0x00000000}},  //   _فوجی, ماتے_, ptit,\n  { {0x4426008e, 0xafdb00ea, 0x290702e1, 0x00000000}},  //   _roo_, shøg, ånar_,\n  { {0x27ed010f, 0x3af90049, 0xe4a600ed, 0x00000000}},  //   _eben_, _פּרע, орио,\n  { {0xd4970783, 0x44260784, 0xd0b1006b, 0x00000000}},  //   оры_, _poo_, _təəs,\n  { {0x68e300d4, 0x00000000, 0x00000000, 0x00000000}},  //   ànde,   ,   ,\n  { {0x442600c4, 0x69da01df, 0x00000000, 0x00000000}},  //   _voo_, _ötes,   ,\n  { {0x81d20055, 0x44260785, 0x6f0d0023, 0x00000000}},  //   হ্ন_, _woo_, _rrac,\n  { {0x4a7b007b, 0x44260038, 0xd257007e, 0x00000000}},  //   שריב, _too_, ўцы_,\n  { {0x6f0d0395, 0x4034007c, 0x32050133, 0x00000000}},  //   _prac, деюс, adly_,\n  { {0x2fc901c3, 0x3d950745, 0x00000000, 0x00000000}},  //   _vdag_, зигр,   ,\n  { {0xdef8008b, 0x00000000, 0x00000000, 0x00000000}},  //   цыю_,   ,   ,\n  { {0x6ce40088, 0x6f0d0036, 0xbc4b007e, 0x00000000}},  //   міте, _wrac, ачае_,\n  { {0x2611006e, 0xafdb0737, 0x69dd0061, 0x00000000}},  //   _धोनी_, riøs, _पाही,\n  { {0x6f0d016c, 0x5a350786, 0x97ea005a, 0x00000000}},  // [950] _urac, пнат, ışlı,\n  { {0xceb20097, 0x78a30010, 0xd042013f, 0x00000000}},  //   _ריי_, ínvo, drlə,\n  { {0x6aad0026, 0x00000000, 0x00000000, 0x00000000}},  //   spaf,   ,   ,\n  { {0xdb1f0065, 0x68e50787, 0xa802014a, 0x00000000}},  //   naqë, rthd, _çılg,\n  { {0x8c1a009b, 0x00000000, 0x00000000, 0x00000000}},  //   _הורי,   ,   ,\n  { {0x3866016c, 0x59e201f5, 0x44c50089, 0x00000000}},  //   čora_, _पायर, tē_,\n  { {0x6a700788, 0xafdb00ea, 0x7af9026d, 0x00000000}},  //   räft, snøy, şatı,\n  { {0x44390789, 0x57f4025f, 0x44c50089, 0x00000000}},  //   ós_, _опст, rē_,\n  { {0xf7490054, 0x051b0044, 0x44c50089, 0x00000000}},  //   _الذي_, তনের_, sē_,\n  { {0x3637007a, 0xc2420259, 0xd5b10082, 0x00000000}},  //   _بررس, еньк, _góp_,\n  { {0x32050133, 0xdb1d0190, 0x86220167, 0x00000000}},  //   rdly_, _udsæ, _سکول,\n  { {0x29360049, 0x3e76000c, 0x00000000, 0x00000000}},  //   פארן_, mæti_,   ,\n  { {0x20040027, 0x3e76000c, 0x00000000, 0x00000000}},  //   ľmi_, læti_,   ,\n  { {0x443f001c, 0x3d080061, 0x614501ee, 0x00000000}},  //   lhu_, हिले_, _нела,\n  { {0xc692009b, 0x91ba009b, 0xed52025a, 0x00000000}},  //   תאם_, _המצי, رپر_,\n  { {0x443f078a, 0x645b078b, 0x00000000, 0x00000000}},  //   nhu_, nnui,   ,\n  { {0x6b63007e, 0x00000000, 0x00000000, 0x00000000}},  // [960] екта,   ,   ,\n  { {0x443f0066, 0xd042006b, 0x499a0783, 0x00000000}},  //   hhu_, vrlə, стая_,\n  { {0x290e000c, 0xd88a00a1, 0xa96a0025, 0x00000000}},  //   ífa_, مپئن_, حمام_,\n  { {0xfc320054, 0xdb0400b5, 0x7a32000c, 0x00000000}},  //   _أحد_, ncië, _mæti,\n  { {0xfbd300b6, 0xf3f9001a, 0x00000000, 0x00000000}},  //   _אתר_, deţ_,   ,\n  { {0xe8df001d, 0xdb0f00c4, 0x4b7b009b, 0x00000000}},  //   _giữa_, _secç, _לאכו,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x443f01d5, 0xb3c6013d, 0xe73a00ed, 0x00000000}},  //   ghu_, रृंख, _леб_,\n  { {0xdb060010, 0x00000000, 0x00000000, 0x00000000}},  //   _nekü,   ,   ,\n  { {0x443f0022, 0x69de0145, 0x7a32000c, 0x00000000}},  //   ahu_, ngpe, _bæti,\n  { {0x443f0066, 0x26190309, 0xf1dd013d, 0x00000000}},  //   bhu_, पारी_, _मारन,\n  { {0x443f078c, 0xc48603c8, 0x395700b6, 0x00000000}},  //   chu_, _элек, לשים_,\n  { {0xee87007c, 0x26c6010e, 0x00000000, 0x00000000}},  //   зыво, nsoo_,   ,\n  { {0xd2500084, 0x6ca7078d, 0x9f590023, 0x00000000}},  //   _جنت_, зраж, lesë_,\n  { {0xa157078e, 0x61fa0148, 0xe9ff0011, 0x00000000}},  //   _нашу_, metl, _ngạc_,\n  { {0x61fa06cf, 0x31c600b9, 0x415b034e, 0x00000000}},  //   letl, bízí_, _לדוג,\n  { {0xa3df0204, 0xdb0400f4, 0x8f9c00a0, 0x00000000}},  // [970] _तास_, nciè, _פיזי,\n  { {0x61fa078f, 0x443f0790, 0x7c2400e7, 0x00000000}},  //   netl, zhu_, ajir,\n  { {0x7c38004a, 0x64400022, 0x00000000, 0x00000000}},  //   ñará, khmi,   ,\n  { {0xf7700014, 0x9f590023, 0x61fa0479, 0x00000000}},  //   گام_, jesë_, hetl,\n  { {0x61fa011f, 0x64400051, 0x2619007d, 0x00000000}},  //   ketl, dhmi, पाली_,\n  { {0xf770031d, 0x61fa0182, 0xf3f90035, 0x00000000}},  //   دام_, jetl, inţe_,\n  { {0x443f0791, 0x61fa0792, 0x00000000, 0x00000000}},  //   thu_, detl,   ,\n  { {0xc952009b, 0xdb1d0065, 0x52a90793, 0x00000000}},  //   _סמן_, _nesë, овим_,\n  { {0x1306007c, 0x443f016e, 0x61fa014a, 0x00000000}},  //   дный_, rhu_, fetl,\n  { {0x443f0089, 0x645b001a, 0x10a50794, 0x00000000}},  //   shu_, snui, мион,\n  { {0x3de30055, 0x443f0082, 0xdb1d0023, 0x00000000}},  //   য়াল, phu_, _besë,\n  { {0xcdc900b6, 0x644003de, 0x78a90059, 0x00000000}},  //   _כך_, chmi, _čevl,\n  { {0xdb060263, 0x09d50044, 0x437401fc, 0x00000000}},  //   _lekò, স্যা, _пушт,\n  { {0x291100e5, 0x00000000, 0x00000000, 0x00000000}},  //   _orza_,   ,   ,\n  { {0x1d07005e, 0x6da302ea, 0x64850051, 0x00000000}},  //   мери_, тиса, róif,\n  { {0x6e21000c, 0xdb1d01c3, 0x00000000, 0x00000000}},  //   ölbr, _gesë,   ,\n  { {0x29030795, 0xfaff0089, 0x7c360796, 0x00000000}},  // [980] _asja_, šīnu_, rkyr,\n  { {0x7c360006, 0x64850051, 0xdb04009d, 0x00000000}},  //   skyr, lóid, ncié,\n  { {0x32070038, 0xd00f04e1, 0xeb9a0797, 0x00000000}},  //   _many_, _صلی_, _мин_,\n  { {0x9f5901aa, 0x61fa0798, 0x32070799, 0x00000000}},  //   fesè_, zetl, _lany_,\n  { {0x61fa079a, 0x46a3007e, 0x96fa0257, 0x00000000}},  //   yetl, вачв, تعار_,\n  { {0x6f040020, 0x443d0016, 0x7bc402a6, 0x00000000}},  //   _msic, _alw_, laiu,\n  { {0x5e57007b, 0x64400020, 0xe0c70014, 0x00000000}},  //   ויסע_, thmi, _جز_,\n  { {0x7bc4079b, 0x672d0023, 0x61fa01d6, 0x00000000}},  //   naiu, ënjë, wetl,\n  { {0x3ea000f4, 0x68e10039, 0x61fa079c, 0x00000000}},  //   _nuit_, _äldr, tetl,\n  { {0x64400065, 0x2fc000f6, 0x443d079d, 0x00000000}},  //   shmi, _aeig_, _elw_,\n  { {0x61fa079e, 0x443d00c4, 0xdb1d0023, 0x00000000}},  //   retl, _flw_, _pesë,\n  { {0x68e10039, 0xf993009b, 0x3ea0079f, 0x00000000}},  //   _ålde, כרת_, _buit_,\n  { {0x61fa07a0, 0x3ea001a3, 0xdb0d006b, 0x00000000}},  //   petl, _cuit_, çkün,\n  { {0x3ea007a1, 0x3207000a, 0x00000000, 0x00000000}},  //   _duit_, _gany_,   ,\n  { {0xd30800ad, 0x6e940077, 0x66080190, 0x00000000}},  //   _hệ_, тиру, _madk,\n  { {0xdb0601aa, 0xd3080011, 0x3ea0009d, 0x00000000}},  //   _rekò, _kệ_, _fuit_,\n  { {0x661a00c7, 0x7a32000c, 0xae0c006e, 0x00000000}},  // [990] _ontk, _lætu, िएशन_,\n  { {0x2009054c, 0xdb06000a, 0x00000000, 0x00000000}},  //   _haai_, _pekò,   ,\n  { {0xd308001d, 0xdb1d0010, 0x7a32000c, 0x00000000}},  //   _lệ_, _mesé, _nætu,\n  { {0xa2cf02fb, 0xec35007b, 0x3157007b, 0x00000000}},  //   _दिल्, _נאָר_, ויבן_,\n  { {0x660807a2, 0x200901d6, 0x00000000, 0x00000000}},  //   _badk, _maai_,   ,\n  { {0x6298016c, 0x20090007, 0xdb1d01aa, 0x00000000}},  //   _nivo, _laai_, _resè,\n  { {0x6d4701d5, 0x9f5901aa, 0x69c501c5, 0x00000000}},  //   nzja, sesè_, mahe,\n  { {0xcd98019b, 0x13050098, 0x20090007, 0x00000000}},  //   ודות_, езим, _naai_,\n  { {0x320700f6, 0x2fc000d4, 0x443d00c4, 0x00000000}},  //   _pany_, _reig_, _vlw_,\n  { {0x660807a3, 0x69c507a4, 0x2486012d, 0x00000000}},  //   _gadk, nahe, _ehom_,\n  { {0x09d50055, 0x200907a5, 0x3ea00549, 0x00000000}},  //   স্থা, _baai_, _suit_,\n  { {0x7a32009f, 0xf99200a0, 0x78780161, 0x00000000}},  //   _hætt, טרי_, tívi,\n  { {0x20090343, 0x63a907a6, 0x648507a7, 0x00000000}},  //   _daai_, mcen, róid,\n  { {0x09d50055, 0x63a900bb, 0x3ea00129, 0x00000000}},  //   স্তা, lcen, _vuit_,\n  { {0x75f30279, 0x7a3207a8, 0x69c50023, 0x00000000}},  //   mızı, _mætt, dahe,\n  { {0x6298016c, 0x98a700b9, 0x3ea007a9, 0x00000000}},  //   _zivo, šně_, _tuit_,\n  { {0x1e96013b, 0xfc3f002a, 0xab66003b, 0x00000000}},  // [9a0] _прор, _dlí_, хвал,\n  { {0x19b9008b, 0x69c5006c, 0x75f3005a, 0x00000000}},  //   дуць_, gahe, nızı,\n  { {0xa3df024c, 0x66080062, 0xba3b07aa, 0x00000000}},  //   तला_, _radk, _suïc,\n  { {0xc18c0049, 0xe78607ab, 0x63a907ac, 0x00000000}},  //   קטאָ, нуло, jcen,\n  { {0xe7370121, 0x66080007, 0x69c50023, 0x00000000}},  //   нец_, _padk, bahe,\n  { {0x63a907ad, 0x69ce0030, 0x69c50082, 0x00000000}},  //   ecen, _udbe, cahe,\n  { {0x62980207, 0x00000000, 0x00000000, 0x00000000}},  //   _rivo,   ,   ,\n  { {0x63a90190, 0x629801ed, 0x00000000, 0x00000000}},  //   gcen, _sivo,   ,\n  { {0xa01b000c, 0x20090007, 0x8857009b, 0x00000000}},  //   llög, _raai_, _נשמע_,\n  { {0xd308001d, 0x63a907ae, 0x200900c7, 0x00000000}},  //   _vệ_, acen, _saai_,\n  { {0x248607af, 0x63a90030, 0x62980555, 0x00000000}},  //   _thom_, bcen, _vivo,\n  { {0xd3080011, 0x44cc00b9, 0x63a90197, 0x00000000}},  //   _tệ_, mě_, ccen,\n  { {0x629807b0, 0x69c507b1, 0x00000000, 0x00000000}},  //   _tivo, yahe,   ,\n  { {0x614600f4, 0x20090007, 0xfc3f0051, 0x00000000}},  //   _célé, _waai_, _slí_,\n  { {0x69c50004, 0x44cc00b9, 0x225901aa, 0x00000000}},  //   vahe, ně_, èske_,\n  { {0x9f52008e, 0x657a028a, 0xb7bd0035, 0x00000000}},  //   _cayó_, _myth, _toţi,\n  { {0x69c5006c, 0x657a0016, 0x3e76000c, 0x00000000}},  // [9b0] tahe, _lyth, tætt_,\n  { {0xbbeb007a, 0xddc701a8, 0xf3f90035, 0x00000000}},  //   _کردم_, bojš, inţa_,\n  { {0xe61f001d, 0x63a9013e, 0x69c507b2, 0x00000000}},  //   _đô_, ycen, rahe,\n  { {0x7a3207b3, 0x44cc0224, 0x69c507b4, 0x00000000}},  //   _sætt, dě_, sahe,\n  { {0xd90f009c, 0xab8402dc, 0x76430022, 0x00000000}},  //   _گیا_, _бурк, thny,\n  { {0x7aed0047, 0x657a07b5, 0x649501ca, 0x00000000}},  //   mtat, _byth, _všim,\n  { {0xd90f009c, 0x657a005b, 0xf3f90035, 0x00000000}},  //   _دیا_, _cyth, enţa_,\n  { {0x6d5807b6, 0x7aed0197, 0x756800a1, 0x00000000}},  //   _žvak, otat, رینہ_,\n  { {0x7aed0198, 0x63a907b7, 0x4864005e, 0x00000000}},  //   ntat, rcen, _сърб,\n  { {0x7aed00f4, 0x25ac07b8, 0x248d013e, 0x00000000}},  //   itat, _gfdl_, smem_,\n  { {0x7aed0065, 0xe8160061, 0x63a900f8, 0x00000000}},  //   htat, णाचा_, pcen,\n  { {0x7c2f07b9, 0x6146009d, 0x321c0133, 0x00000000}},  //   _nocr, _sélé, _envy_,\n  { {0xe28e008b, 0x09cc0044, 0x00000000, 0x00000000}},  //   _ва_, র্টা,   ,\n  { {0xc0a8007a, 0x7aed07ba, 0x82d600a3, 0x00000000}},  //   بایل_, dtat, _יונג_,\n  { {0x1fb607bb, 0x442f037e, 0x7aed04f8, 0x00000000}},  //   _испр, _kog_, etat,\n  { {0x442f07bc, 0xe8df0011, 0xbc63003b, 0x00000000}},  //   _jog_, _nhựa_, авск,\n  { {0x6146028c, 0x7aed07bd, 0x442f0091, 0x00000000}},  // [9c0] _télé, gtat, _mog_,\n  { {0x4a43072b, 0xa01b0039, 0x00000000, 0x00000000}},  //   анув, smöt,   ,\n  { {0x2dd9007b, 0x442f00c7, 0x4dd90049, 0x00000000}},  //   _אַרב, _oog_, _אַרױ,\n  { {0x44cc0224, 0x76410016, 0x657a00f4, 0x00000000}},  //   vě_, _ally, _ryth,\n  { {0x7aed000d, 0xa3e80204, 0x6495012d, 0x00000000}},  //   ctat, _बाब_, _iših,\n  { {0x657a07be, 0x09cc0055, 0x44cc00b9, 0x00000000}},  //   _pyth, র্জা, tě_,\n  { {0x442f0146, 0xe9760014, 0x7f4a006b, 0x00000000}},  //   _bog_, _شهرد, _əfqa,\n  { {0x442f0719, 0x6f1600f6, 0x76410145, 0x00000000}},  //   _cog_, _oryc, _elly,\n  { {0x657a018e, 0x442f07bf, 0x65c60264, 0x00000000}},  //   _wyth, _dog_, _абза,\n  { {0x44cc00b9, 0x442f07c0, 0xb3550014, 0x00000000}},  //   pě_, _eog_, دیها_,\n  { {0x7aed07c1, 0x442f0010, 0xd3e40014, 0x00000000}},  //   ztat, _fog_, _مقای,\n  { {0x320a004f, 0x7658000b, 0xe537007b, 0x00000000}},  //   žby_, livy, _שטאט_,\n  { {0x644200b0, 0xdb0d07c2, 0xdd3b0035, 0x00000000}},  //   _iloi, mbaç, _băşt,\n  { {0x7c2f002a, 0x6f1607c3, 0x539b00a0, 0x00000000}},  //   _socr, _dryc, _חידו,\n  { {0x442f0022, 0xe29b009b, 0x2d8507c4, 0x00000000}},  //   _yog_, _קשור, åle_,\n  { {0x7aed07c5, 0x3d08001c, 0x09cb0061, 0x00000000}},  //   ttat, हिजे_, ाण्य,\n  { {0x7aed001a, 0xc4c400a1, 0x4c94007c, 0x00000000}},  // [9d0] utat, _ڈے_, ритс,\n  { {0x7aed07c6, 0x201e0089, 0x3eda0049, 0x00000000}},  //   rtat, ētie_, _אַטא,\n  { {0x7aed07c7, 0xda7801e0, 0x39a40457, 0x00000000}},  //   stat, тят_, ршув,\n  { {0x7aed07c8, 0x00000000, 0x00000000, 0x00000000}},  //   ptat,   ,   ,\n  { {0x4421001d, 0x442f001a, 0xdcfe0089, 0x00000000}},  //   _đh_, _rog_, _izpā,\n  { {0x69dd001c, 0x6442021e, 0x6d580006, 0x00000000}},  //   _पाटी, _aloi, _žvai,\n  { {0x442f0305, 0x644207c9, 0xb7bd001a, 0x00000000}},  //   _pog_, _bloi, _soţu,\n  { {0x130907ca, 0x644207cb, 0xe80b013d, 0x00000000}},  //   ений_, _cloi, _सोचा_,\n  { {0x628a002a, 0x97ea011f, 0xe5e50014, 0x00000000}},  //   _bhfo, ıştı, _مزای,\n  { {0x42250264, 0x00000000, 0x00000000, 0x00000000}},  //   удов,   ,   ,\n  { {0x442f07cc, 0xf3f50014, 0xe4e40088, 0x00000000}},  //   _tog_, _متشک, _вічн,\n  { {0x644207cd, 0x6f1607ce, 0x00000000, 0x00000000}},  //   _gloi, _pryc,   ,\n  { {0xa3e802d2, 0x63bb020c, 0x60da00bb, 0x00000000}},  //   _बात_, mbun, artm,\n  { {0xa2d802f4, 0xfce6007c, 0x63bb0039, 0x00000000}},  //   _मित्, лого, lbun,\n  { {0xdb1d00b9, 0x00000000, 0x00000000, 0x00000000}},  //   _desí,   ,   ,\n  { {0x6e3c07a0, 0x6f1607cf, 0x409507d0, 0x00000000}},  //   skrb, _tryc, _крыт,\n  { {0x63bb010f, 0xc053009b, 0x20020145, 0x00000000}},  // [9e0] ibun, _לזה_, meki_,\n  { {0x63bb04be, 0x01d50044, 0x00000000, 0x00000000}},  //   hbun, ত্রদ,   ,\n  { {0x291e07d1, 0x38cb01b2, 0x9c660014, 0x00000000}},  //   _štab_, فانی_, _مهدو,\n  { {0x46a6007e, 0x64950066, 0x200204eb, 0x00000000}},  //   гадв, _eġiz, neki_,\n  { {0xa2cf0309, 0x63bb0190, 0x601b00b0, 0x00000000}},  //   _दिग्, dbun, _hämä,\n  { {0x7bc60065, 0x64420048, 0x200207d2, 0x00000000}},  //   _heku, _sloi, heki_,\n  { {0xa3e802d2, 0x7bc6020c, 0x6442001a, 0x00000000}},  //   _बाद_, _keku, _ploi,\n  { {0x765807d3, 0x200207d4, 0x63bb07d5, 0x00000000}},  //   sivy, jeki_, gbun,\n  { {0x38550265, 0xc1ea008b, 0x2002014a, 0x00000000}},  //   _търс, ньне_, deki_,\n  { {0x7bc6022b, 0x64a60088, 0x27e606d4, 0x00000000}},  //   _leku, _бажа, lgon_,\n  { {0xdb1d0181, 0x00000000, 0x00000000, 0x00000000}},  //   _resí,   ,   ,\n  { {0x7bc6001e, 0x27e6070d, 0xa3bb0164, 0x00000000}},  //   _neku, ngon_, _अभय_,\n  { {0xa857009b, 0x63a207d6, 0x27e60082, 0x00000000}},  //   ריכה_, _igon, igon_,\n  { {0x539b00a3, 0xc6940049, 0xdb1d00c4, 0x00000000}},  //   _ניגו, יאָ_, _lesã,\n  { {0xf1b300a0, 0x7bc60023, 0x20020032, 0x00000000}},  //   _פסק_, _beku, beki_,\n  { {0x2002014a, 0x7bc607d7, 0x00000000, 0x00000000}},  //   ceki_, _ceku,   ,\n  { {0x29180047, 0xba5507d8, 0x7bc607d9, 0x00000000}},  // [9f0] _arra_, авај, _deku,\n  { {0x63bb0035, 0x2b4b0082, 0x00000000, 0x00000000}},  //   zbun, _đhcđ_,   ,\n  { {0x648507da, 0x63bb0036, 0x3eb90089, 0x00000000}},  //   dóin, ybun, lpst_,\n  { {0x63a20020, 0x64b10089, 0x7bc601d6, 0x00000000}},  //   _ngon, _jāie, _geku,\n  { {0x61f80059, 0x67d407db, 0x291801a3, 0x00000000}},  //   _obvl, сочу, _erra_,\n  { {0x7c2d07dc, 0x63a201a3, 0xd00e0044, 0x00000000}},  //   ljar, _agon, ষায়_,\n  { {0xce3800b6, 0x7bc6006b, 0x63bb0168, 0x00000000}},  //   ראות_, _yeku, tbun,\n  { {0x7c2d07dd, 0xd3f9007e, 0x00000000, 0x00000000}},  //   njar, тэкі_,   ,\n  { {0x63bb0109, 0x69c707de, 0xc2450069, 0x00000000}},  //   rbun, _keje, иник,\n  { {0xdb040010, 0x63a2022b, 0x69c707df, 0x00000000}},  //   nciá, _egon, _jeje,\n  { {0x7c2d07e0, 0x216907e1, 0xafdb0030, 0x00000000}},  //   kjar, тини_, dkøb,\n  { {0x660307e2, 0x69c70030, 0x7c2d0066, 0x00000000}},  //   lenk, _leje, jjar,\n  { {0x387e028c, 0x7c2d07e3, 0x443f0161, 0x00000000}},  //   _être_, djar, mku_,\n  { {0x442d0340, 0x443f07e4, 0x69c70224, 0x00000000}},  //   lje_, lku_, _neje,\n  { {0x7afd001e, 0x7c2d07e5, 0x442d0006, 0x00000000}},  //   _apst, fjar, oje_,\n  { {0x442d00ee, 0x644907e6, 0x443f07e7, 0x00000000}},  //   nje_, nhei, nku_,\n  { {0x69c70047, 0x207b007b, 0x443f07e8, 0x00000000}},  // [a00] _beje, _באקא, iku_,\n  { {0xba230364, 0x442d07e9, 0x601b021e, 0x00000000}},  //   одук, hje_, _tämä,\n  { {0x7bc6000c, 0x443f0004, 0x64490343, 0x00000000}},  //   _teku, kku_, khei,\n  { {0x1ae60057, 0xf0930049, 0x443f0213, 0x00000000}},  //   _комм, ַנג_, jku_,\n  { {0x442d07ea, 0x27e60039, 0x443f0395, 0x00000000}},  //   dje_, rgon_, dku_,\n  { {0x660307eb, 0x443f001e, 0x442d0036, 0x00000000}},  //   genk, eku_, eje_,\n  { {0x44f1001d, 0x7ae400b5, 0x6449002a, 0x00000000}},  //   _cơ_, luit, fhei,\n  { {0x64490100, 0x442d008d, 0x62810211, 0x00000000}},  //   ghei, gje_, ello,\n  { {0x7ae407ec, 0x2338007c, 0x32660175, 0x00000000}},  //   nuit, уппы_, итов,\n  { {0x442d07ed, 0x3866000a, 0x443f0145, 0x00000000}},  //   aje_, lnor_, aku_,\n  { {0x850600a2, 0x442d0059, 0x443f0161, 0x00000000}},  //   _خوان, bje_, bku_,\n  { {0x442d0046, 0x38660039, 0x6449001f, 0x00000000}},  //   cje_, nnor_, chei,\n  { {0x386600e0, 0xfe7f00d4, 0xd3720014, 0x00000000}},  //   inor_, juïc_, _بهش_,\n  { {0x7ae4028c, 0x30a602a8, 0x6e95044b, 0x00000000}},  //   duit, _крив, сигу,\n  { {0x0ed301f5, 0x7c2d07ee, 0x69c70652, 0x00000000}},  //   _तिकड, tjar, _reje,\n  { {0xe51703d7, 0x69c704cb, 0x660307ef, 0x00000000}},  //   थिति_, _seje, zenk,\n  { {0x7ae40198, 0xdb0f07f0, 0x66fa0089, 0x00000000}},  // [a10] guit, _recó, nākā,\n  { {0x443f07f1, 0x442d07f2, 0x7c2d07f3, 0x00000000}},  //   zku_, zje_, sjar,\n  { {0x69c707f4, 0x442d010a, 0x64490007, 0x00000000}},  //   _veje, yje_, yhei,\n  { {0x7ae404b4, 0x38660197, 0x3ea904cb, 0x00000000}},  //   buit, gnor_, _kuat_,\n  { {0x6603021e, 0x44f1001d, 0x443f0428, 0x00000000}},  //   tenk, _sơ_, vku_,\n  { {0xba4500a1, 0x3ea907f5, 0x644900d9, 0x00000000}},  //   _انسٹ, _muat_, whei,\n  { {0x442d07f6, 0x64490007, 0x3ea9000d, 0x00000000}},  //   tje_, thei, _luat_,\n  { {0x66030036, 0x442d010a, 0x443f07f7, 0x00000000}},  //   senk, uje_, uku_,\n  { {0x644907f8, 0x442d07f9, 0xa3e803d7, 0x00000000}},  //   rhei, rje_, _बार_,\n  { {0x442d07fa, 0x64490007, 0xa2d8006e, 0x00000000}},  //   sje_, shei, _मिर्,\n  { {0x2fc9002a, 0x442d00b5, 0x84670265, 0x00000000}},  //   _beag_, pje_, _къде,\n  { {0x3ea9020c, 0x644002a3, 0x442d0065, 0x00000000}},  //   _buat_, ckmi, qje_,\n  { {0x14740025, 0x9e660025, 0x6459002b, 0x00000000}},  //   _بالج, ماسن, _imwi,\n  { {0x6d4e010f, 0xed5a01ee, 0x7ae40035, 0x00000000}},  //   tzba, гог_, vuit,\n  { {0x50b504b6, 0xc212009b, 0x320507fb, 0x00000000}},  //   _услу, _זהו_, mely_,\n  { {0xb60301ca, 0x320507fc, 0x2fc901d6, 0x00000000}},  //   _hráč, lely_, _geag_,\n  { {0xab270265, 0x9ce80044, 0x7ae400fa, 0x00000000}},  // [a20] бота_, খবেন_, uuit,\n  { {0x9d4602e9, 0x27ed0016, 0x78a0006b, 0x00000000}},  //   _геод, _acen_, _simv,\n  { {0x7ae400f4, 0xa3e802d2, 0x3979007e, 0x00000000}},  //   suit, _बाल_, асцю_,\n  { {0x320507fd, 0x20120173, 0x317a0049, 0x00000000}},  //   hely_, _jayi_, ארעמ,\n  { {0x386607fe, 0x7ae400d6, 0x78bb037e, 0x00000000}},  //   rnor_, quit, _čuve,\n  { {0xdb1d0030, 0x38660146, 0x27ed0023, 0x00000000}},  //   _besæ, snor_, _ecen_,\n  { {0x78a00011, 0x320507ff, 0x64590026, 0x00000000}},  //   _timv, dely_, _bmwi,\n  { {0xe8e0001d, 0xa2b400ed, 0x66fa0089, 0x00000000}},  //   _chụp_, обич, tākā,\n  { {0x6440000c, 0x661100b0, 0x68fb016c, 0x00000000}},  //   rkmi, ökkä, _ćudi,\n  { {0x64400004, 0xc50a031d, 0x66fa0089, 0x00000000}},  //   skmi, _متصل_, rākā,\n  { {0x531601ef, 0x20120800, 0x09d50044, 0x00000000}},  //   _گذار, _bayi_, স্কা,\n  { {0xa2e6007e, 0x6f0d0801, 0xfe7f00d4, 0x00000000}},  //   _годд, _psac, duïa_,\n  { {0x32050802, 0x7e7e0022, 0x3ea902d4, 0x00000000}},  //   bely_, _bkpp, _quat_,\n  { {0x6d14007d, 0x32050133, 0x00000000, 0x00000000}},  //   डिंग_, cely_,   ,\n  { {0x403501bd, 0x463b0049, 0x00000000, 0x00000000}},  //   _мекс, נעלע,   ,\n  { {0x0ca800d7, 0x225e0803, 0x3ea90023, 0x00000000}},  //   стри_, litk_, _tuat_,\n  { {0x5a35005e, 0x6a35012b, 0x7e7e0022, 0x00000000}},  // [a30] онат, онађ, _fkpp,\n  { {0x27ed0804, 0x6aad0065, 0xfe7f00f6, 0x00000000}},  //   _scen_, rqaf, buïa_,\n  { {0xa3e8007d, 0x00000000, 0x00000000, 0x00000000}},  //   बला_,   ,   ,\n  { {0xac190805, 0xb90101f5, 0xc0b20082, 0x00000000}},  //   _тому_, _दि_, _sưởi_,\n  { {0xd6db0216, 0x1dbf0164, 0xb06600b0, 0x00000000}},  //   уте_, ्रपत, ltää,\n  { {0xf7700070, 0x1a94007e, 0x00000000, 0x00000000}},  //   ران_, _наяў,   ,\n  { {0x32050038, 0x91fc001e, 0xb06600b0, 0x00000000}},  //   vely_, rnāl, ntää,\n  { {0x3205005b, 0x00000000, 0x00000000, 0x00000000}},  //   wely_,   ,   ,\n  { {0x32050038, 0x52a60147, 0xe7330318, 0x00000000}},  //   tely_, овым_, _عصر_,\n  { {0xe4e70088, 0x2012019a, 0x00000000, 0x00000000}},  //   _гідн, _sayi_,   ,\n  { {0x69d802d5, 0x386d01d9, 0xe3b30318, 0x00000000}},  //   óvei, _kjer_, _فرش_,\n  { {0xdb1d021e, 0x64590806, 0x60dc0092, 0x00000000}},  //   _kesä, _umwi, árma,\n  { {0x6e370807, 0x2d850808, 0x32050161, 0x00000000}},  //   _boxb, ülen_, pely_,\n  { {0x76430809, 0xdca600ed, 0xdef8002b, 0x00000000}},  //   nkny, жави, ċċ_,\n  { {0xdfd2026c, 0x6da3017a, 0x2d8c080a, 0x00000000}},  //   _ہيں_, дира, åde_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xd042005f, 0xe7ff013d, 0xa09b01ce, 0x00000000}},  // [a40] xslə, ोजना_, _דיקט,\n  { {0x5e570025, 0x386d080b, 0x25fb006e, 0x00000000}},  //   _وليس_, _ajer_, ल्मी_,\n  { {0x7e7c0133, 0xe7aa0745, 0x00000000, 0x00000000}},  //   morp, авел_,   ,\n  { {0x7e7c0146, 0xdb1d04ce, 0x7786080c, 0x00000000}},  //   lorp, _besä, олез,\n  { {0x7c260066, 0x00000000, 0x00000000, 0x00000000}},  //   _inkr,   ,   ,\n  { {0x9633007e, 0x386d0030, 0xc4da003b, 0x00000000}},  //   мніц, _ejer_, ађи_,\n  { {0x8675008b, 0x344a080d, 0xdb07000c, 0x00000000}},  //   чыцц, ичин_, élög,\n  { {0x386d080e, 0x9cd7009b, 0x7e7c021b, 0x00000000}},  //   _gjer_, קופה_, horp,\n  { {0x1666005e, 0x213e0016, 0x7e7c0056, 0x00000000}},  //   _двам, wyth_, korp,\n  { {0x7af6010a, 0x76430093, 0xb06600b0, 0x00000000}},  //   ityt, ckny, ytää,\n  { {0x7e7c0168, 0x7c26080f, 0x00000000, 0x00000000}},  //   dorp, _onkr,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x09d50055, 0x289b0049, 0x7e7c0810, 0x00000000}},  //   স্টা, ייטא, forp,\n  { {0x3f85001e, 0x7c260066, 0xb06600b0, 0x00000000}},  //   ālu_, _ankr, ttää,\n  { {0x442602c2, 0x25b9006b, 0x91bb009b, 0x00000000}},  //   _kno_, _əsl_, _דמוי,\n  { {0x1bbb0025, 0x00000000, 0x00000000, 0x00000000}},  //   شارع_,   ,   ,\n  { {0xe8df0011, 0x44260020, 0xb06600b0, 0x00000000}},  // [a50] _thừa_, _mno_, stää,\n  { {0x09e30055, 0x7c2601d9, 0x387f0066, 0x00000000}},  //   ন্না, _enkr, _skur_,\n  { {0x3a3800c7, 0x999100b9, 0x00000000, 0x00000000}},  //   _dorp_, _vozů_,   ,\n  { {0x442600d2, 0x3835007e, 0xdb1d00b0, 0x00000000}},  //   _nno_, янер, _pesä,\n  { {0x2b520036, 0xab8402ea, 0x58bb00a1, 0x00000000}},  //   czyc_, _журк, _چارج_,\n  { {0x44260811, 0xd1260025, 0xdb1601aa, 0x00000000}},  //   _ano_, _كم_, payò,\n  { {0x04450812, 0x386d0023, 0x44260232, 0x00000000}},  //   зейн, _tjer_, _bno_,\n  { {0x387f0169, 0x44f300c4, 0x290300ca, 0x00000000}},  //   _ukur_, rã_, _ipja_,\n  { {0x44260466, 0x44f300fa, 0x00000000, 0x00000000}},  //   _dno_, sã_,   ,\n  { {0x442601d9, 0x00000000, 0x00000000, 0x00000000}},  //   _eno_,   ,   ,\n  { {0x44260009, 0x05190025, 0x00000000, 0x00000000}},  //   _fno_, _دياب_,   ,\n  { {0x44d7001a, 0xe8df0011, 0xbbaa006e, 0x00000000}},  //   mă_, _chứa_, _कलेक,\n  { {0x7d1e021d, 0x644b0813, 0x44d7000d, 0x00000000}},  //   _srps, _ilgi, lă_,\n  { {0x629d0224, 0x00000000, 0x00000000, 0x00000000}},  //   ůsob,   ,   ,\n  { {0x44d7000d, 0x4426018e, 0x00000000, 0x00000000}},  //   nă_, _yno_,   ,\n  { {0x09e30055, 0x7e7c00ab, 0xc7a500a1, 0x00000000}},  //   ন্মা, sorp, _لڑ_,\n  { {0xe9da0256, 0x78bb0091, 0xeb97004c, 0x00000000}},  // [a60] йка_, _čuva, зит_,\n  { {0x6f0400f6, 0x9e0a0025, 0x3af400f8, 0x00000000}},  //   _ipic, _ايدك_, räp_,\n  { {0xe8fa0057, 0x7af60814, 0x44d7001a, 0x00000000}},  //   сле_, styt, jă_,\n  { {0xafdb01e3, 0x44d7001a, 0x7c2601a2, 0x00000000}},  //   lhør, dă_, _unkr,\n  { {0xf7430423, 0x3a3804d3, 0x44260068, 0x00000000}},  //   нецо, _torp_, _rno_,\n  { {0x644b0006, 0x442600f8, 0xf3f90035, 0x00000000}},  //   _algi, _sno_, viţa_,\n  { {0x44d7001a, 0x44260815, 0x69dc00ea, 0x00000000}},  //   gă_, _pno_, _idre,\n  { {0xb603001e, 0x68e30211, 0x69ce01a2, 0x00000000}},  //   ēšan, ánde, _hebe,\n  { {0x69ce020c, 0x96b90816, 0x7ae401e5, 0x00000000}},  //   _kebe, _духу_, nrit,\n  { {0x64aa0224, 0x69ce0166, 0x644b007f, 0x00000000}},  //   _přid, _jebe, _elgi,\n  { {0x44d7000d, 0x7ae4010f, 0x69ce023a, 0x00000000}},  //   că_, hrit, _mebe,\n  { {0x44260817, 0x69ce001f, 0x00000000, 0x00000000}},  //   _uno_, _lebe,   ,\n  { {0x69dc0119, 0xa857009b, 0x00000000, 0x00000000}},  //   _odre, ליטה_,   ,\n  { {0x6266023c, 0x8cb10309, 0xbeed007d, 0x00000000}},  //   _عاشق, _आंदो, _जमीन_,\n  { {0x7ae40004, 0x6f040142, 0xd7cc001c, 0x00000000}},  //   erit, _epic, ाराच,\n  { {0x7ae401c9, 0x69ce002d, 0xdb0d04bc, 0x00000000}},  //   frit, _aebe, scaí,\n  { {0x69ce0475, 0x44d7000d, 0x6fc3006e, 0x00000000}},  // [a70] _bebe, ză_, _व्यं,\n  { {0x19ab0818, 0x69ce0095, 0x00000000, 0x00000000}},  //   стап_, _cebe,   ,\n  { {0x69ce0819, 0xdb1d081a, 0x7ae40197, 0x00000000}},  //   _debe, _jesú, arit,\n  { {0x7ae4081b, 0x44d7001a, 0x9cd6009b, 0x00000000}},  //   brit, vă_, _קורה_,\n  { {0x7ae40555, 0x69ce02e7, 0x7bdd00f6, 0x00000000}},  //   crit, _febe, _idsu,\n  { {0x69ce037f, 0x44d7000d, 0xcb1200b3, 0x00000000}},  //   _gebe, tă_, _שלם_,\n  { {0x7bcf04cb, 0x78a20161, 0x7d02016c, 0x00000000}},  //   _kecu, ňova, _ćosk,\n  { {0x44d7000d, 0x200b0166, 0xa01b0039, 0x00000000}},  //   ră_, jeci_, slöj,\n  { {0x200b037e, 0x44d7000d, 0x1dbf0061, 0x00000000}},  //   deci_, să_, ्रात,\n  { {0xe0d9081c, 0x44d7001a, 0x7bcf00e5, 0x00000000}},  //   ово_, pă_, _lecu,\n  { {0x7bdd037e, 0x7bcf00d9, 0x69c50048, 0x00000000}},  //   _odsu, _oecu, ibhe,\n  { {0x7bcf001a, 0xe3b30025, 0xdb1d00f6, 0x00000000}},  //   _necu, _أرض_, _desú,\n  { {0xdb040048, 0x9983007f, 0x6d4100ea, 0x00000000}},  //   sciú, _kojų_, ølan,\n  { {0x09e30044, 0x7ae4010e, 0xf2d2009b, 0x00000000}},  //   ন্তা, vrit, _יעד_,\n  { {0x7bcf0035, 0xbea3007e, 0x7ae400ab, 0x00000000}},  //   _becu, тарк, writ,\n  { {0x69ce020c, 0xdd8f0426, 0x7bcf0035, 0x00000000}},  //   _sebe, شوق_, _cecu,\n  { {0x78ae081d, 0x7bcf001a, 0xd91000a6, 0x00000000}},  // [a80] _subv, _decu, گیز_,\n  { {0x7ae4022b, 0xe8df001d, 0x6aa700b5, 0x00000000}},  //   rrit, _chữa_, _cijf,\n  { {0xfbc6007c, 0x2d96081e, 0x27fd0016, 0x00000000}},  //   _обно, _юрис, ffwn_,\n  { {0xab2a01f9, 0x3136007b, 0x7ae40065, 0x00000000}},  //   _дома_, ונעם_, prit,\n  { {0x09e30055, 0x69ce081f, 0xe737004d, 0x00000000}},  //   ন্ধা, _tebe, мец_,\n  { {0x69dc0820, 0x200b0821, 0x69ce010f, 0x00000000}},  //   _udre, zeci_, _uebe,\n  { {0x6935013e, 0xdb060190, 0x00000000, 0x00000000}},  //   _přeš, _afkø,   ,\n  { {0x64aa00b9, 0x09e30044, 0xd706003b, 0x00000000}},  //   _přib, ন্দা, _озби,\n  { {0x41e60822, 0x64aa013e, 0x69a20061, 0x00000000}},  //   міна, _břic, _कृती,\n  { {0xd25003ec, 0xd626006d, 0x63ab00e0, 0x00000000}},  //   اند_, _تعري, _eggn,\n  { {0xa01b00b0, 0x629a0203, 0x6935013e, 0x00000000}},  //   llöi, rmto, _třeš,\n  { {0xc32a0054, 0x6283000a, 0xd5b10082, 0x00000000}},  //   _وكان_, _ekno, _tác_,\n  { {0x200b0823, 0xa2d8006e, 0x00000000, 0x00000000}},  //   reci_, _मिट्,   ,\n  { {0x7bcf0824, 0x200b0825, 0x00000000, 0x00000000}},  //   _secu, seci_,   ,\n  { {0x38b701d5, 0x320c00ab, 0x6d550026, 0x00000000}},  //   _oħra_, medy_, uzza,\n  { {0x28d8006e, 0x320c0826, 0x00000000, 0x00000000}},  //   _डिजि, ledy_,   ,\n  { {0x7bcf001e, 0x7b6700ec, 0xfe6e025a, 0x00000000}},  // [a90] _vecu, фтве, شگی_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xa3c30164, 0x1bd50827, 0x7bcf0035, 0x00000000}},  //   ्रम_, _поня, _tecu,\n  { {0x883500a1, 0x2aad0087, 0x00000000, 0x00000000}},  //   رکزئ, _ažbe_,   ,\n  { {0x7d0205fa, 0x7c3d0051, 0x320c0027, 0x00000000}},  //   _ćosi, _iosr, kedy_,\n  { {0x245101ca, 0x7aed01a3, 0x00000000, 0x00000000}},  //   _máme_, muat,   ,\n  { {0x7aed0549, 0x7c3d0828, 0x04b800a1, 0x00000000}},  //   luat, _kosr, وپوں_,\n  { {0xdb1d02cc, 0xe8cb0061, 0x00000000, 0x00000000}},  //   _besø, ाठीच,   ,\n  { {0x64aa00b9, 0x25a90014, 0x7c3d0829, 0x00000000}},  //   _přic, _فضای_, _mosr,\n  { {0x291e0006, 0x320c0133, 0x00000000, 0x00000000}},  //   _štai_, gedy_,   ,\n  { {0x75210061, 0x7aed082a, 0x7c3d01c3, 0x00000000}},  //   _urlz, huat, _oosr,\n  { {0x7aed04cb, 0x1b060044, 0x00000000, 0x00000000}},  //   kuat, রিতে_,   ,\n  { {0xe801001c, 0x7aed008e, 0x6449010f, 0x00000000}},  //   ळ्या_, juat, mkei,\n  { {0x443d0038, 0x78a900d9, 0x644900b0, 0x00000000}},  //   _how_, _liev, lkei,\n  { {0x6281082b, 0x7c960264, 0x443d0173, 0x00000000}},  //   molo, ерац, _kow_,\n  { {0x7aed000b, 0x6281082c, 0x78a90211, 0x00000000}},  //   fuat, lolo, _niev,\n  { {0x3b07005e, 0xfe7200a1, 0x7aed0207, 0x00000000}},  // [aa0] нето_, _مدد_, guat,\n  { {0x443d0038, 0x9b930025, 0x6449082d, 0x00000000}},  //   _low_, الكت, hkei,\n  { {0x6449021e, 0x64850048, 0xef180089, 0x00000000}},  //   kkei, nóis, āļu_,\n  { {0x443d0038, 0x7aed003f, 0x38600009, 0x00000000}},  //   _now_, buat, òir_,\n  { {0x78a9082e, 0x91fc0089, 0x0c23005e, 0x00000000}},  //   _diev, onāt, _смян,\n  { {0x25fb02d2, 0x62810066, 0x7bd60487, 0x00000000}},  //   ल्ली_, jolo, layu,\n  { {0x628104f4, 0x3eb201d6, 0x443d0133, 0x00000000}},  //   dolo, _luyt_, _bow_,\n  { {0x6449001f, 0x98a3003b, 0x7bd60058, 0x00000000}},  //   gkei, _бисе, nayu,\n  { {0x6281082f, 0x443d0082, 0xa3b70025, 0x00000000}},  //   folo, _dow_, راير_,\n  { {0x62810830, 0xa68301ee, 0x7bd60831, 0x00000000}},  //   golo, _блуд, hayu,\n  { {0x7bd60058, 0x75d30025, 0x00000000, 0x00000000}},  //   kayu, _إيما,   ,\n  { {0x44fa048a, 0xd25000a6, 0x00000000, 0x00000000}},  //   më_, انگ_,   ,\n  { {0x6281012b, 0x44fa008d, 0xc43b00b6, 0x00000000}},  //   bolo, lë_, _מתאי,\n  { {0x62810365, 0x661a021e, 0x386600fa, 0x00000000}},  //   colo, _jatk, hior_,\n  { {0x44fa008d, 0x661a021e, 0x7c3d0087, 0x00000000}},  //   në_, _matk, _posr,\n  { {0x661a0832, 0x7bd60487, 0x60da00ea, 0x00000000}},  //   _latk, gayu, mstm,\n  { {0x44fa0065, 0xeab30025, 0x78a90197, 0x00000000}},  // [ab0] hë_, اعر_, _riev,\n  { {0x78a9001e, 0x44fa008d, 0xda780425, 0x00000000}},  //   _siev, kë_, нях_,\n  { {0xdd9101ef, 0x78a9001e, 0x44fa008d, 0x00000000}},  //   _خود_, _piev, jë_,\n  { {0x64850051, 0x44fa0065, 0x7aed008e, 0x00000000}},  //   hóir, dë_, puat,\n  { {0x44fa0007, 0x6281014a, 0xdb0700b0, 0x00000000}},  //   eë_, yolo, ämäs,\n  { {0xa50901f9, 0x6281006b, 0x99d4023c, 0x00000000}},  //   дека_, xolo, _متفا,\n  { {0x6485002a, 0x44fa0065, 0x443d0036, 0x00000000}},  //   dóir, gë_, _pow_,\n  { {0x38660833, 0x62810834, 0x69d70835, 0x00000000}},  //   cior_, wolo, laxe,\n  { {0x64490706, 0x661a0065, 0xf7730025, 0x00000000}},  //   rkei, _fatk, _صار_,\n  { {0x6485002a, 0x64490836, 0x443d0837, 0x00000000}},  //   góir, skei, _wow_,\n  { {0x44fa0023, 0x443d0838, 0x00000000, 0x00000000}},  //   cë_, _tow_,   ,\n  { {0x3f6a0404, 0xd5640839, 0x62810232, 0x00000000}},  //   димо_, _ступ, solo,\n  { {0x62810207, 0x6e3e01fd, 0x249f01e5, 0x00000000}},  //   polo, _popb, mmum_,\n  { {0x248d05a6, 0x63bb0207, 0xfce6004c, 0x00000000}},  //   llem_, lcun, кого,\n  { {0x7bd6011c, 0x8d6300ed, 0xfc3f00d4, 0x00000000}},  //   tayu, авре, _boí_,\n  { {0x63bb083a, 0x3ce50010, 0x2cab00d9, 0x00000000}},  //   ncun, álva_, _cicd_,\n  { {0xcb6704cf, 0x6e3e01a3, 0x44fa0065, 0x00000000}},  // [ac0] вате_, _topb, zë_,\n  { {0x7bd6083b, 0xbea601e0, 0x6fa7013d, 0x00000000}},  //   sayu, _шапк, _गणतं,\n  { {0x661a083c, 0xa3c30164, 0x7bd6083d, 0x00000000}},  //   _ratk, ्रा_, payu,\n  { {0xb90a0164, 0x44fa0065, 0x076a083e, 0x00000000}},  //   _मि_, vë_, وماً_,\n  { {0x248d083f, 0x69ca000c, 0x2ca0006c, 0x00000000}},  //   dlem_, ðfes, mmid_,\n  { {0x44fa048a, 0x2ca0006c, 0xe737003b, 0x00000000}},  //   të_, lmid_, тељ_,\n  { {0x81d70044, 0x386600f8, 0xda0201f5, 0x00000000}},  //   িলা_, pior_, र्णत_,\n  { {0x44fa048a, 0x291804d4, 0x661a0075, 0x00000000}},  //   rë_, _isra_, _watk,\n  { {0x44fa008d, 0x6d470046, 0x64850051, 0x00000000}},  //   së_, zyja, tóir,\n  { {0x91fc001e, 0xd05d006b, 0x44fa0065, 0x00000000}},  //   ciāl, əyəc, pë_,\n  { {0x67220840, 0x64850051, 0x44fa0023, 0x00000000}},  //   lvoj, róir, që_,\n  { {0xdb040841, 0x64850051, 0x60da054e, 0x00000000}},  //   nció, sóir, rstm,\n  { {0x733601f7, 0xf09f0129, 0xdb04008e, 0x00000000}},  //   _جرائ, rmà_, ició,\n  { {0x52d700b6, 0x2ca0006c, 0xc6940049, 0x00000000}},  //   _יודע_, emid_, טאָ_,\n  { {0x4fc700c0, 0xdb040010, 0x7e6700bb, 0x00000000}},  //   _испа, kció, rijp,\n  { {0x30a4007e, 0x3f85006b, 0x5c740478, 0x00000000}},  //   _крыв, ğlub_, алст,\n  { {0x2c77002b, 0x6e450379, 0x00000000, 0x00000000}},  // [ad0] għda_, _منظم,   ,\n  { {0x68e30842, 0x67220247, 0x99d501d8, 0x00000000}},  //   ándo, dvoj, اقات,\n  { {0x248d0667, 0x8af0006b, 0x69d70843, 0x00000000}},  //   ylem_, lzəl, raxe,\n  { {0x69ca009f, 0xa01b0210, 0x00000000, 0x00000000}},  //   ðfer, mlös,   ,\n  { {0x7c2f0038, 0x64aa00b9, 0xa01b0844, 0x00000000}},  //   _incr, _přin, llös,\n  { {0xe29a00ad, 0xdb040819, 0x4519004d, 0x00000000}},  //   _như_, ació, еция_,\n  { {0x91fc001e, 0x58d4007c, 0xa01b0210, 0x00000000}},  //   riāl, _вост, nlös,\n  { {0xdb040845, 0x69d50032, 0x33260846, 0x00000000}},  //   cció, _heze, _brox_,\n  { {0x63bb049a, 0x248d0847, 0x69d50047, 0x00000000}},  //   rcun, rlem_, _keze,\n  { {0xa3c30164, 0x63bb0848, 0x248d0062, 0x00000000}},  //   ्रह_, scun, slem_,\n  { {0x10a60849, 0x69d500b5, 0x321c0471, 0x00000000}},  //   лион, _meze, _davy_,\n  { {0xcea9007b, 0x69d502ae, 0xf99200b3, 0x00000000}},  //   _זי_, _leze, מרי_,\n  { {0xe28e012b, 0x442f0161, 0xa2e5041f, 0x00000000}},  //   _га_, _ing_, _солд,\n  { {0xa01b084a, 0x764101c3, 0x7c2f009d, 0x00000000}},  //   flös, _joly, _ancr,\n  { {0xed5a0175, 0x672207ac, 0x2d8c0030, 0x00000000}},  //   хов_, zvoj, æde_,\n  { {0x09cd0044, 0xfe7f00d4, 0x442f0022, 0x00000000}},  //   _লাগা, duïu_, _jng_,\n  { {0x69d5084b, 0x2ca0084c, 0x7053023c, 0x00000000}},  // [ae0] _beze, rmid_, _دنيا,\n  { {0x442f011c, 0x7c2f084d, 0x2ca00114, 0x00000000}},  //   _lng_, _encr, smid_,\n  { {0x69d50691, 0x4996007c, 0x20d1050f, 0x00000000}},  //   _deze, ушат, nši_,\n  { {0x442f00e0, 0xa967003b, 0xf3f90035, 0x00000000}},  //   _nng_, ћица_, biţi_,\n  { {0xdb040211, 0x69d500c4, 0x76410010, 0x00000000}},  //   rció, _feze, _boly,\n  { {0x442f084e, 0x69d5084f, 0x67220850, 0x00000000}},  //   _ang_, _geze, rvoj,\n  { {0xdb040219, 0x67220059, 0x20d101d9, 0x00000000}},  //   pció, svoj, jši_,\n  { {0x44de01d5, 0x69d5002d, 0x33260851, 0x00000000}},  //   rċ_, _zeze, _prox_,\n  { {0x76410047, 0x442f04be, 0x926a0594, 0x00000000}},  //   _foly, _dng_, ерна_,\n  { {0x76410852, 0xda14013d, 0x00000000, 0x00000000}},  //   _goly, ड़ित_,   ,\n  { {0xd48f0265, 0x74130014, 0x2d8c0036, 0x00000000}},  //   _гр_, _گونا, żdej_,\n  { {0x78a2008e, 0x442f0058, 0xd0e5007d, 0x00000000}},  //   nmov, _gng_, _किरण_,\n  { {0xe29a001d, 0xdd250089, 0x78a200fa, 0x00000000}},  //   _thư_, dīša, imov,\n  { {0x98bc0224, 0xa01b0210, 0x644200bb, 0x00000000}},  //   ávě_, tlös, _hooi,\n  { {0x442f018e, 0x78a20059, 0xfe7f0129, 0x00000000}},  //   _yng_, kmov, duït_,\n  { {0x78a2016e, 0xf3f9001a, 0x69d50853, 0x00000000}},  //   jmov, tiţi_, _seze,\n  { {0x90980070, 0x6442015c, 0x69d5002d, 0x00000000}},  // [af0] _حضور_, _mooi, _peze,\n  { {0xf3f9001a, 0xdb1d0129, 0xa01b0039, 0x00000000}},  //   riţi_, _besò, plös,\n  { {0x69d50854, 0x98510036, 0x57b500ed, 0x00000000}},  //   _veze, nąć_, абет,\n  { {0x64420100, 0x69d500b5, 0xdddc0035, 0x00000000}},  //   _nooi, _weze, porţ,\n  { {0x7bcd0855, 0x7bda00b3, 0x17070123, 0x00000000}},  //   mbau, _בקרו, افتی_,\n  { {0x7aed0039, 0x7bcd010f, 0x6d480856, 0x00000000}},  //   mrat, lbau, ädag,\n  { {0xe3b10054, 0x442f0857, 0x7a4100b9, 0x00000000}},  //   يرة_, _png_, _vítě,\n  { {0x20d10119, 0x130901fb, 0x7bcd010f, 0x00000000}},  //   vši_, вний_, nbau,\n  { {0x644207a5, 0x442f0858, 0x7aed0859, 0x00000000}},  //   _dooi, _vng_, nrat,\n  { {0x24800091, 0xdd250089, 0x7aed085a, 0x00000000}},  //   čima_, zīša, irat,\n  { {0x29010010, 0x442f085b, 0x27e0000c, 0x00000000}},  //   ntha_, _tng_, ðing_,\n  { {0x442f006a, 0x67290065, 0x20d10059, 0x00000000}},  //   _ung_, _krej, rši_,\n  { {0x6f0d0045, 0x999800ca, 0x00000000, 0x00000000}},  //   _cpac, _morš_,   ,\n  { {0x20d1085c, 0x8cb1013d, 0x00000000, 0x00000000}},  //   pši_, _आंखो,   ,\n  { {0xada604ef, 0xdb12009f, 0xdd25001e, 0x00000000}},  //   равл, _ágús, tīša,\n  { {0x67290553, 0x32050190, 0x7bcd0548, 0x00000000}},  //   _orej, lfly_, gbau,\n  { {0x7aed085d, 0x2d85085e, 0xfe7f0129, 0x00000000}},  // [b00] grat, üler_, tuït_,\n  { {0x09e6085f, 0x8d7600a1, 0xdd250089, 0x00000000}},  //   рожн, _ناجا, sīša,\n  { {0x2901002a, 0x7aed0207, 0xaa7b00b9, 0x00000000}},  //   gtha_, arat, _svýc,\n  { {0x67290860, 0x64aa00b9, 0x78a20861, 0x00000000}},  //   _brej, _přim, umov,\n  { {0x7aed049a, 0x64420007, 0x2bd30309, 0x00000000}},  //   crat, _rooi, तररा,\n  { {0x67290862, 0x29010051, 0x78a20387, 0x00000000}},  //   _drej, btha_, smov,\n  { {0x250804e1, 0x29010051, 0xafdb01e3, 0x00000000}},  //   ارتی_, ctha_, ljøe,\n  { {0x67290863, 0x32050133, 0x941801ab, 0x00000000}},  //   _frej, efly_, ужит_,\n  { {0x67290864, 0xd1ca007c, 0xa2b3007c, 0x00000000}},  //   _grej, кунд_, обыч,\n  { {0x16630865, 0x228b00ea, 0x3254013b, 0x00000000}},  //   _двум, døks_, свор,\n  { {0x7aed0061, 0x6f0d0866, 0x91a90082, 0x00000000}},  //   zrat, _spac, _đã_,\n  { {0x7aed007f, 0x50670867, 0x00000000, 0x00000000}},  //   yrat, ртоа,   ,\n  { {0xfe7f00d4, 0x00000000, 0x00000000, 0x00000000}},  //   duïr_,   ,   ,\n  { {0x7aed0868, 0x9f40001f, 0x69d8000c, 0x00000000}},  //   vrat, _weiß_, ðvel,\n  { {0x7aed0869, 0xdd95007e, 0x929b009b, 0x00000000}},  //   wrat, савы, _שיות,\n  { {0x7aed086a, 0x228b00ea, 0x628801ed, 0x00000000}},  //   trat, søkt_, lodo,\n  { {0x7bcd086b, 0x64aa0224, 0xdb99072b, 0x00000000}},  // [b10] rbau, _přij, увач_,\n  { {0x6288018e, 0xe9ab06c6, 0xab84086c, 0x00000000}},  //   nodo, ندان_, цуск,\n  { {0x7aed086d, 0x6729012d, 0x39470035, 0x00000000}},  //   srat, _srej, âns_,\n  { {0x6729086e, 0x7aed086f, 0x628806b8, 0x00000000}},  //   _prej, prat, hodo,\n  { {0x29010870, 0x62880871, 0xdd280089, 0x00000000}},  //   stha_, kodo, mēša,\n  { {0xb6070373, 0xdd28001e, 0x29010051, 0x00000000}},  //   рядк, lēša, ptha_,\n  { {0xd4690872, 0x628801c5, 0x00000000, 0x00000000}},  //   лике_, dodo,   ,\n  { {0x67290873, 0xdd280089, 0xb733009e, 0x00000000}},  //   _trej, nēša, _وہاب,\n  { {0x672901d9, 0x6288018e, 0x9f440279, 0x00000000}},  //   _urej, fodo, ümü_,\n  { {0x62880874, 0x8b58009b, 0x00000000, 0x00000000}},  //   godo, ייחס_,   ,\n  { {0x32050875, 0xf5950054, 0x00000000, 0x00000000}},  //   rfly_, _الاج,   ,\n  { {0x2056008b, 0x7ae20876, 0xb7bd00e5, 0x00000000}},  //   стор, šoti, _faţe,\n  { {0x62880016, 0x443f0089, 0xdd280089, 0x00000000}},  //   bodo, mju_, dēša,\n  { {0x62880082, 0xb6cc0279, 0x645b0877, 0x00000000}},  //   codo, _şükü, lhui,\n  { {0xdd9201fa, 0x443f0006, 0xc69200a3, 0x00000000}},  //   سور_, oju_, פאל_,\n  { {0x443f0213, 0x645b00b5, 0x78a30112, 0x00000000}},  //   nju_, nhui, ïnvl,\n  { {0xbbb80061, 0x8c43005e, 0x00000000, 0x00000000}},  // [b20] _अलीक, чете,   ,\n  { {0x443f006c, 0xe9d70878, 0x64aa00b9, 0x00000000}},  //   hju_, йку_, _přik,\n  { {0x08fa0879, 0x645b0112, 0x443f000c, 0x00000000}},  //   طراب_, khui, kju_,\n  { {0x443f01d5, 0xb8eb00a1, 0xdd280089, 0x00000000}},  //   jju_, ابلے_, cēša,\n  { {0x443f087a, 0xf3ff0055, 0xeb75007e, 0x00000000}},  //   dju_, ্যার_, _дырэ,\n  { {0x7c24038c, 0x89f5008b, 0x443f087b, 0x00000000}},  //   ldir, _мясц, eju_,\n  { {0x62880027, 0x69de087c, 0x645b0048, 0x00000000}},  //   vodo, mape, fhui,\n  { {0x7c240475, 0x62880046, 0x443f0028, 0x00000000}},  //   ndir, wodo, gju_,\n  { {0x35fa01f7, 0x00000000, 0x00000000, 0x00000000}},  //   _مراد_,   ,   ,\n  { {0x69de0020, 0xdd280089, 0x443f087d, 0x00000000}},  //   nape, zēša, aju_,\n  { {0x628806dc, 0x7c24087e, 0x443f087f, 0x00000000}},  //   rodo, kdir, bju_,\n  { {0x62880880, 0x69de0881, 0x645b0882, 0x00000000}},  //   sodo, hape, chui,\n  { {0x69de04d3, 0x628805fd, 0x7c24018e, 0x00000000}},  //   kape, podo, ddir,\n  { {0x3dd90055, 0x5eb80044, 0x69de0883, 0x00000000}},  //   _তাহল, _অবশে, jape,\n  { {0x69de0047, 0x64aa0224, 0xdd280089, 0x00000000}},  //   dape, _přih, tēša,\n  { {0x7c24011c, 0x60c70884, 0xa177009b, 0x00000000}},  //   gdir, íjme, _לעוד_,\n  { {0xdd28001e, 0xeabf0011, 0xf3fa0044, 0x00000000}},  // [b30] rēša, _trùm_, _আসার_,\n  { {0x443f01d5, 0x7b740025, 0x69de0885, 0x00000000}},  //   zju_, أطفا, gape,\n  { {0x7c240886, 0x984b0887, 0xdd2801c5, 0x00000000}},  //   bdir, ляда_, pēša,\n  { {0x19a80888, 0x987c00b9, 0x00000000, 0x00000000}},  //   ступ_, bíč_,   ,\n  { {0x443f0889, 0x7bdf088a, 0xe73900a8, 0x00000000}},  //   vju_, maqu, рел_,\n  { {0xdb1d0073, 0x7bdf00d6, 0x1b060044, 0x00000000}},  //   _besö, laqu, রিখে_,\n  { {0xf53201f9, 0x443f088b, 0x3eb3088c, 0x00000000}},  //   дејќ, tju_, _mixt_,\n  { {0x7bdf088d, 0x9479003b, 0x443f088e, 0x00000000}},  //   naqu, јску_, uju_,\n  { {0x443f088f, 0x645b01b5, 0xa5f9003b, 0x00000000}},  //   rju_, rhui, _везу_,\n  { {0x645b0168, 0x7c240890, 0xdd1c01ca, 0x00000000}},  //   shui, zdir, váže,\n  { {0x443f0891, 0x932700a6, 0x61450269, 0x00000000}},  //   pju_, _گران, цена,\n  { {0x69de0892, 0x1faa0893, 0x00000000, 0x00000000}},  //   zape, икни_,   ,\n  { {0x7bdf00d4, 0x93270123, 0x645901f3, 0x00000000}},  //   daqu, _دران, _ilwi,\n  { {0x6d4e007f, 0xdd1c0062, 0x69de0288, 0x00000000}},  //   tyba, ráže, xape,\n  { {0xa3bd0183, 0x69de0894, 0x7bdf0895, 0x00000000}},  //   _आला_, vape, faqu,\n  { {0x69de0896, 0x224700d9, 0xdb1d00c4, 0x00000000}},  //   wape, _honk_, _lesõ,\n  { {0x7c240897, 0x2005005f, 0xf412019b, 0x00000000}},  // [b40] rdir, əli_, ופן_,\n  { {0x22470007, 0x49960545, 0x00000000, 0x00000000}},  //   _jonk_, ошет,   ,\n  { {0x8c460898, 0x69de022b, 0xdd0f011f, 0x00000000}},  //   _дене, rape, mışt,\n  { {0xdd0f014a, 0x9f480011, 0x7af600d9, 0x00000000}},  //   lışt, _điêu_, puyt,\n  { {0xcfbc0044, 0x64aa00b9, 0xfaa602b8, 0x00000000}},  //   _অজান, _křiv, _мамо,\n  { {0x7bc40899, 0x64590066, 0x7ae40051, 0x00000000}},  //   lciu, _alwi, msit,\n  { {0xd90d00e9, 0x7ae40051, 0x81cf0044, 0x00000000}},  //   _میل_, lsit, ষণা_,\n  { {0x7bc4001a, 0x7ae405e0, 0x00000000, 0x00000000}},  //   nciu, osit,   ,\n  { {0x69dc089a, 0x224700e0, 0x7bc40006, 0x00000000}},  //   _kere, _bonk_, iciu,\n  { {0x69dc0030, 0x7ae4089b, 0x24510051, 0x00000000}},  //   _jere, isit, _lámh_,\n  { {0xd257008b, 0x69dc020c, 0x2247089c, 0x00000000}},  //   іць_, _mere, _donk_,\n  { {0xe0cf089d, 0x69dc00b5, 0x7bdf00d6, 0x00000000}},  //   کزی_, _lere, xaqu,\n  { {0x7bdf06d2, 0x76480022, 0x78bc0203, 0x00000000}},  //   vaqu, _kody, _lurv,\n  { {0x69dc012b, 0x764801aa, 0x7ae4017d, 0x00000000}},  //   _nere, _jody, dsit,\n  { {0x7bdf00f4, 0x7ae4089e, 0x76480036, 0x00000000}},  //   taqu, esit, _mody,\n  { {0x69dc0207, 0x3ced089f, 0xa06807d8, 0x00000000}},  //   _aere, čev_, _маја_,\n  { {0x69dc08a0, 0x201908a1, 0x7ae40058, 0x00000000}},  // [b50] _bere, mesi_, gsit,\n  { {0x2019014a, 0x69dc0585, 0x76480016, 0x00000000}},  //   lesi_, _cere, _nody,\n  { {0x69dc08a2, 0x7bdf008e, 0xfe700076, 0x00000000}},  //   _dere, paqu, _جدي_,\n  { {0x765a08a3, 0x2019011f, 0xb17b007b, 0x00000000}},  //   _alty, nesi_, סטאר,\n  { {0x69dc08a4, 0x2ca904cb, 0x27e0000c, 0x00000000}},  //   _fere, mmad_, ðina_,\n  { {0x69dc08a5, 0x201908a6, 0x2ca9006c, 0x00000000}},  //   _gere, hesi_, lmad_,\n  { {0x7bdd04cb, 0x201908a7, 0x6e250066, 0x00000000}},  //   _kesu, kesi_, _mahb,\n  { {0x7bdd0343, 0x69c505ca, 0x201906e6, 0x00000000}},  //   _jesu, lche, jesi_,\n  { {0x76d5006d, 0x69dc005a, 0x2019014a, 0x00000000}},  //   _رياض, _yere, desi_,\n  { {0x69c503a1, 0x7bdd0170, 0x2ca908a8, 0x00000000}},  //   nche, _lesu, hmad_,\n  { {0x69c5001f, 0x201908a9, 0x69d8000c, 0x00000000}},  //   iche, fesi_, ðvei,\n  { {0x7bdd010a, 0x245808aa, 0x7ae4007f, 0x00000000}},  //   _nesu, _téma_, ysit,\n  { {0x245108ab, 0x64aa00b9, 0x62350437, 0x00000000}},  //   _námi_, _přiv, _неду,\n  { {0x248d0116, 0x69c508ac, 0xe29801e1, 0x00000000}},  //   loem_, jche, _даі_,\n  { {0x61e1021e, 0x7bdd001f, 0xdca60517, 0x00000000}},  //   mall, _besu, зави,\n  { {0x2019014a, 0x61e100b0, 0x248d0007, 0x00000000}},  //   cesi_, lall, noem_,\n  { {0x69dc04d4, 0x7bdd0030, 0x78bc0549, 0x00000000}},  // [b60] _pere, _desu, _surv,\n  { {0x61e10038, 0x7bc40207, 0x78bc08ad, 0x00000000}},  //   nall, sciu, _purv,\n  { {0x7ae404bd, 0x7648010a, 0x7bdd0016, 0x00000000}},  //   ssit, _rody, _fesu,\n  { {0x69c508ae, 0x61e108af, 0x69dc08b0, 0x00000000}},  //   ache, hall, _were,\n  { {0x61e106d5, 0x387f0039, 0x69c501a2, 0x00000000}},  //   kall, _djur_, bche,\n  { {0x61e108b1, 0x78bc08b2, 0x69c50207, 0x00000000}},  //   jall, _turv, cche,\n  { {0x20c1001d, 0x2019014a, 0xfaa30816, 0x00000000}},  //   _nói_, yesi_, _чаро,\n  { {0x7c2608b3, 0x6d4100b0, 0x06660123, 0x00000000}},  //   _jakr, älai, _کارپ,\n  { {0x66180027, 0x61e1010f, 0x67200243, 0x00000000}},  //   pevk, fall, _usmj,\n  { {0x61e10625, 0x2019023a, 0x20c10011, 0x00000000}},  //   gall, wesi_, _bói_,\n  { {0x2019011f, 0xcfe10044, 0x69c30059, 0x00000000}},  //   tesi_, _ভাবন, žneg,\n  { {0xe3a7026c, 0x7c260142, 0x3dd90044, 0x00000000}},  //   _کشمی, _nakr, _তাইল,\n  { {0x61e108b4, 0x2019011f, 0x69c50462, 0x00000000}},  //   ball, resi_, yche,\n  { {0x4426000b, 0x61e10038, 0x7bdd020c, 0x00000000}},  //   _hao_, call, _sesu,\n  { {0x442601cd, 0x20c10011, 0x7bdd003c, 0x00000000}},  //   _kao_, _gói_, _pesu,\n  { {0x442608b5, 0x201908b6, 0x7c26008a, 0x00000000}},  //   _jao_, qesi_, _cakr,\n  { {0xd6d708b7, 0x4426011c, 0x69c50038, 0x00000000}},  // [b70] _সম্প, _mao_, tche,\n  { {0x4426001d, 0x27e0009f, 0x69c5010f, 0x00000000}},  //   _lao_, ðinn_, uche,\n  { {0x69c508b8, 0x291901fa, 0x7bdd08b9, 0x00000000}},  //   rche, تقاد_, _tesu,\n  { {0x69c508ba, 0x442608bb, 0x61e1027b, 0x00000000}},  //   sche, _nao_, zall,\n  { {0x69c508bc, 0x61e1005d, 0x79950036, 0x00000000}},  //   pche, yall, _wyzw,\n  { {0x7c260046, 0x61e100d4, 0xf1ba0082, 0x00000000}},  //   _zakr, xall, _ngơ_,\n  { {0x61e108bd, 0x4426001d, 0x7c3a0051, 0x00000000}},  //   vall, _bao_, _úcrá,\n  { {0x4426001d, 0xdb0d027b, 0x61e10016, 0x00000000}},  //   _cao_, lcañ, wall,\n  { {0x442608be, 0x20c10011, 0x3b09006b, 0x00000000}},  //   _dao_, _sói_, ntaq_,\n  { {0x81bc0089, 0x25a000b9, 0x44260288, 0x00000000}},  //   ldēj, řila_, _eao_,\n  { {0x26cd01a8, 0x61e108bf, 0x355503ab, 0x00000000}},  //   _hteo_, rall, _تناز,\n  { {0xd36e007a, 0x44260082, 0x81bc0089, 0x00000000}},  //   اهی_, _gao_, ndēj,\n  { {0x61e108c0, 0x00000000, 0x00000000, 0x00000000}},  //   pall,   ,   ,\n  { {0x7c26037e, 0x4426000b, 0x13e20044, 0x00000000}},  //   _sakr, _zao_, _যায়,\n  { {0x4426000b, 0x7c260006, 0x27ed00f8, 0x00000000}},  //   _yao_, _pakr, _oden_,\n  { {0x44260011, 0x8af0006b, 0x27ed014a, 0x00000000}},  //   _xao_, yyəd, _nden_,\n  { {0xeb97007c, 0x7c2600ea, 0xc6240044, 0x00000000}},  // [b80] дит_, _vakr, পাতা_,\n  { {0x7c2608c1, 0x63bc00b9, 0x24800059, 0x00000000}},  //   _wakr, ěrni, čimi_,\n  { {0x7c2608c2, 0xa806008b, 0xa3bd0061, 0x00000000}},  //   _takr, дзел, _आलं_,\n  { {0xd7ef0025, 0x27ed0146, 0x00000000, 0x00000000}},  //   لكم_, _cden_,   ,\n  { {0x4426001d, 0xdb1d0190, 0x47360025, 0x00000000}},  //   _rao_, _afsæ, براز,\n  { {0x442608c3, 0x27ed08c4, 0xdd1d01ca, 0x00000000}},  //   _sao_, _eden_, lášt,\n  { {0x44260091, 0x644b08c5, 0x00000000, 0x00000000}},  //   _pao_, _bogi,   ,\n  { {0x644b04bf, 0xfc3f0082, 0x7af60036, 0x00000000}},  //   _cogi, _khía_, oryt,\n  { {0x84ea013d, 0x442608c6, 0xb286007e, 0x00000000}},  //   _टिकट_, _vao_, дынк,\n  { {0x4426000b, 0x64aa00b9, 0x65790051, 0x00000000}},  //   _wao_, _přis, ábhá,\n  { {0x09f700b6, 0x4426006a, 0xd48f030d, 0x00000000}},  //   ומים_, _tao_, _ар_,\n  { {0xdbd603b6, 0x644b0016, 0x442600f6, 0x00000000}},  //   _jääd, _gogi, _uao_,\n  { {0xfe730076, 0x00000000, 0x00000000, 0x00000000}},  //   ندس_,   ,   ,\n  { {0x63a20032, 0x7af608c7, 0x00000000, 0x00000000}},  //   _izon, dryt,   ,\n  { {0xdd94008b, 0xafdb08c8, 0x425500a1, 0x00000000}},  //   вары, ljøm, _سنٹر,\n  { {0x7af60065, 0x3b09002b, 0xaa7b04bb, 0x00000000}},  //   fryt, ttaq_, _zvýh,\n  { {0x5a35005e, 0xf094009b, 0x7af608c9, 0x00000000}},  // [b90] ннат, _בנק_, gryt,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x80e00044, 0x57f5013b, 0x629a057b, 0x00000000}},  //   পূর্, епет, ilto,\n  { {0x63a20007, 0x7af601c9, 0xc19b009b, 0x00000000}},  //   _ozon, bryt, חשבי,\n  { {0x6d550010, 0x81bc0089, 0x387d0016, 0x00000000}},  //   lyza, rdēj, rnwr_,\n  { {0x644b08ca, 0xe5a5058e, 0x00000000, 0x00000000}},  //   _sogi, нили,   ,\n  { {0x63a20047, 0x644b0213, 0x00000000, 0x00000000}},  //   _azon, _pogi,   ,\n  { {0x03250072, 0x27ed0018, 0x63a2002b, 0x00000000}},  //   един, _uden_, _bzon,\n  { {0xe61000d3, 0x64aa00b9, 0x200c0010, 0x00000000}},  //   _چشم_, _přir, ődik_,\n  { {0x63a201ee, 0x64b10089, 0x24510062, 0x00000000}},  //   _dzon, _jāiz, _rámu_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xe730026c, 0x629a08cb, 0xb602002b, 0x00000000}},  //   _حصہ_, alto, _ħġie,\n  { {0xafdb0056, 0x00000000, 0x00000000, 0x00000000}},  //   nkøy,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x40960072, 0xdd9206dd, 0x00000000, 0x00000000}},  //   _прит, اوز_,   ,\n  { {0xfc3f001d, 0x7af604a5, 0x00000000, 0x00000000}},  //   _phía_, tryt,   ,\n  { {0x7bd60058, 0xc2cc0049, 0x00000000, 0x00000000}},  // [ba0] rbyu, ַמאָ,   ,\n  { {0xcfb7009b, 0xdbd600b0, 0x7af60052, 0x00000000}},  //   _אלפי_, _sääd, rryt,\n  { {0xdbd60103, 0x00000000, 0x00000000, 0x00000000}},  //   _pääd,   ,   ,\n  { {0x27e008cc, 0xe3a701f7, 0x2002003f, 0x00000000}},  //   úin_, _مر_, ngki_,\n  { {0x81d60044, 0x00000000, 0x00000000, 0x00000000}},  //   িণত_,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x245101e5, 0xfc3f0048, 0x00000000, 0x00000000}},  //   _náms_, _mhín_,   ,\n  { {0x25a000b9, 0xccf308cd, 0x629a08ce, 0x00000000}},  //   řilo_, אכה_, wlto,\n  { {0x0877007b, 0x27e60058, 0xb5fc002b, 0x00000000}},  //   _נעמט_, maon_, _alġe,\n  { {0x27e608cf, 0xaa16007e, 0x3eba00d9, 0x00000000}},  //   laon_, дзiц, _nipt_,\n  { {0x64a6013b, 0x629a08d0, 0x00000000, 0x00000000}},  //   _зажа, rlto,   ,\n  { {0x20b4007e, 0x25a101a2, 0x27e60058, 0x00000000}},  //   лёўс, ühle_, naon_,\n  { {0x3ce30061, 0x3eba00d9, 0x00000000, 0x00000000}},  //   टीने_, _bipt_,   ,\n  { {0xfc3f0011, 0x6114007e, 0x6d550036, 0x00000000}},  //   _chín_, _адку, tyza,\n  { {0x27e608d1, 0xdd95007e, 0x2d9a004a, 0x00000000}},  //   kaon_, тавы, _cype_,\n  { {0x6d550036, 0x321e08d2, 0xc5e60044, 0x00000000}},  //   ryza, lety_, নলিপ,\n  { {0x200c005f, 0x291808d3, 0x00000000, 0x00000000}},  // [bb0] ədi_, _apra_,   ,\n  { {0x321e0036, 0x06cf0044, 0x9e670025, 0x00000000}},  //   nety_, _রিলি, _ساخن,\n  { {0xa3c2007d, 0xfe7f00f6, 0xf8b108d4, 0x00000000}},  //   ्डा_, duïx_, لکر_,\n  { {0xab5b00c4, 0x9cd600a0, 0x69d8000c, 0x00000000}},  //   _agüe, _שורה_, ðver,\n  { {0x58b80025, 0x7c2d08d5, 0x38a7006c, 0x00000000}},  //   رامج_, mdar, võrd_,\n  { {0x7c2d009f, 0xafdb00ea, 0xf6d40014, 0x00000000}},  //   ldar, rkøy, ازند,\n  { {0x64aa0224, 0xc984005e, 0x60cd016c, 0x00000000}},  //   _přip, _бути, _čamo,\n  { {0x248901ae, 0x00000000, 0x00000000, 0x00000000}},  //   čamo_,   ,   ,\n  { {0x321e00ab, 0x1306007c, 0x7c2d00ea, 0x00000000}},  //   fety_, вный_, idar,\n  { {0xa77408d6, 0x68e10030, 0x7c2d005b, 0x00000000}},  //   _случ, _ælds, hdar,\n  { {0x320b0036, 0x332608d7, 0x3eba0009, 0x00000000}},  //   ęcy_, _esox_, _ript_,\n  { {0x7c2d0089, 0x2bd30061, 0x3f8c013f, 0x00000000}},  //   jdar, धुमा, şdum_,\n  { {0xf8b2007b, 0x7c2d018e, 0x442d0483, 0x00000000}},  //   ישט_, ddar, mde_,\n  { {0x7c2d08d8, 0x2d9a01d6, 0x443d08d9, 0x00000000}},  //   edar, _pype_, _hnw_,\n  { {0x442d03fd, 0x67220036, 0x2d9a01a2, 0x00000000}},  //   ode_, zwoj, _qype_,\n  { {0x61e300b7, 0x644908da, 0x7c2d011c, 0x00000000}},  //   _henl, njei, gdar,\n  { {0x442d001e, 0xc05300b6, 0x7c3d0009, 0x00000000}},  // [bc0] ide_, _כזה_, _dnsr,\n  { {0x2d9a0365, 0x442d021e, 0x628108db, 0x00000000}},  //   _type_, hde_, nnlo,\n  { {0x442d08dc, 0x61e30093, 0x27e6006a, 0x00000000}},  //   kde_, _menl, taon_,\n  { {0x442d08dd, 0x3860002a, 0x78a9028a, 0x00000000}},  //   jde_, óir_, _chev,\n  { {0xe1e700d3, 0x442d0292, 0x2ee001aa, 0x00000000}},  //   _پس_, dde_, _jwif_,\n  { {0x442d0168, 0x27e60058, 0x443d00d9, 0x00000000}},  //   ede_, saon_, _anw_,\n  { {0x442d06b2, 0x291808de, 0x60c301a2, 0x00000000}},  //   fde_, _upra_, _nunm,\n  { {0x442d08df, 0x98a60478, 0x443d0068, 0x00000000}},  //   gde_, _рибе, _cnw_,\n  { {0x68e10030, 0x799c0016, 0xd707007c, 0x00000000}},  //   _ældr, _hyrw, _инте_,\n  { {0x7c2d066e, 0x386602d5, 0x443d018e, 0x00000000}},  //   zdar, lhor_, _enw_,\n  { {0x26c40020, 0x442d08e0, 0x321e0395, 0x00000000}},  //   _humo_, bde_, rety_,\n  { {0xf993019b, 0x38660181, 0x68e308e1, 0x00000000}},  //   ירת_, nhor_, ândi,\n  { {0x321e08e2, 0x61e30173, 0x69ce000c, 0x00000000}},  //   pety_, _fenl, _ofbe,\n  { {0x4256025f, 0xdce50027, 0x61e304cd, 0x00000000}},  //   _штет, _vyhľ, _genl,\n  { {0xac19012b, 0x26c40032, 0x61e808e3, 0x00000000}},  //   нову_, _lumo_, madl,\n  { {0xfbd300d3, 0x69ce02ae, 0x7c2d008a, 0x00000000}},  //   شتر_, _afbe, udar,\n  { {0x38660065, 0x00000000, 0x00000000, 0x00000000}},  // [bd0] dhor_,   ,   ,\n  { {0x442d08e4, 0xf09f04bd, 0x78a90023, 0x00000000}},  //   zde_, llà_, _shev,\n  { {0x442d08e5, 0x9f4e0010, 0x6abc08e6, 0x00000000}},  //   yde_, önöm_, _dirf,\n  { {0x24860091, 0x7c3d0170, 0x7c2d006b, 0x00000000}},  //   _njom_, _unsr, qdar,\n  { {0x442d0018, 0xdbd1006c, 0x443d00d9, 0x00000000}},  //   vde_, _müüd, _rnw_,\n  { {0x442d08e7, 0x6a6001e5, 0x7aed08e8, 0x00000000}},  //   wde_, _höfn, msat,\n  { {0x2609001c, 0x78a908e9, 0x26c400f6, 0x00000000}},  //   _साठी_, _thev, _eumo_,\n  { {0x442d08ea, 0x2901011c, 0x26c408eb, 0x00000000}},  //   ude_, muha_, _fumo_,\n  { {0x387c009d, 0x645b0288, 0x2901011c, 0x00000000}},  //   èvre_, rkui, luha_,\n  { {0x442d08ec, 0xb7bd000d, 0x645b0007, 0x00000000}},  //   sde_, _naţi, skui,\n  { {0x61e30030, 0x442d0129, 0x2901011c, 0x00000000}},  //   _venl, pde_, nuha_,\n  { {0x44e1010a, 0xbf9b0181, 0x833501fa, 0x00000000}},  //   mų_, rgên, _مرتض,\n  { {0x44e10006, 0xa3c20316, 0x09ca0044, 0x00000000}},  //   lų_, ्डर_, ষরতা,\n  { {0x249f000c, 0x7aed0030, 0x2901006a, 0x00000000}},  //   llum_, dsat, kuha_,\n  { {0x44e1010a, 0x10f5007e, 0x7aed08ed, 0x00000000}},  //   nų_, _сяля, esat,\n  { {0x6b9d0016, 0xc00602b0, 0x7aed08ee, 0x00000000}},  //   _bysg, _спик, fsat,\n  { {0x6f0f001c, 0xfc3f0428, 0x6b9d0016, 0x00000000}},  // [be0] ctcc, _dní_, _cysg,\n  { {0xfeba035b, 0x6b9d018e, 0x44e1010a, 0x00000000}},  //   _ثابت_, _dysg, kų_,\n  { {0x44e1010a, 0x386608ef, 0x3e6600f4, 0x00000000}},  //   jų_, thor_, _côte_,\n  { {0x8c4600d7, 0x6abc068a, 0x44e10006, 0x00000000}},  //   _семе, _wirf, dų_,\n  { {0x09e80055, 0xe73703e0, 0x81bc0089, 0x00000000}},  //   _পাঠা, лец_, ldēt,\n  { {0x290108f0, 0x2ca008f1, 0xfc3f013e, 0x00000000}},  //   buha_, llid_, _zní_,\n  { {0x67290089, 0x44e10006, 0x61e808f2, 0x00000000}},  //   _esej, gų_, vadl,\n  { {0x545408f3, 0x249f000c, 0x2609006e, 0x00000000}},  //   рвит, glum_, _साथी_,\n  { {0x1867003b, 0x61e80161, 0x41e60245, 0x00000000}},  //   _сати_, tadl, ліна,\n  { {0x471b00a3, 0xdbd10004, 0x44e10006, 0x00000000}},  //   _אומג, _süüd, bų_,\n  { {0x3de208b7, 0x2ca0006c, 0xdbd1006c, 0x00000000}},  //   _বাংল, klid_, _püüd,\n  { {0xfc3f0011, 0x61e808f4, 0x442008f5, 0x00000000}},  //   _phím_, sadl, _úi_,\n  { {0x543b007b, 0x08770049, 0x61e80387, 0x00000000}},  //   _רעדא, רעכט_, padl,\n  { {0x6a60000c, 0x00000000, 0x00000000, 0x00000000}},  //   _söfn,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7aed08f6, 0x2ca0006c, 0x6b9d0016, 0x00000000}},  //   tsat, glid_, _pysg,\n  { {0x0ca8007c, 0x998c01ee, 0x7bcd08f7, 0x00000000}},  // [bf0] утри_, _ćoše_, rcau,\n  { {0x7aed08f8, 0x7ed40025, 0x29010066, 0x00000000}},  //   rsat, _ازيا, tuha_,\n  { {0x7aed08f9, 0x6675007a, 0xc9840478, 0x00000000}},  //   ssat, یدتر, буци,\n  { {0x2c2701fb, 0x7aed0039, 0x44e10006, 0x00000000}},  //   _сьог, psat, vų_,\n  { {0xd6db005e, 0x66b500ed, 0xf745007c, 0x00000000}},  //   хте_, абду, рело,\n  { {0x44e1010a, 0x09df0055, 0xa2c3007d, 0x00000000}},  //   tų_, _ঢাকা, रदस्,\n  { {0x249f08fa, 0xdb1d0190, 0x00000000, 0x00000000}},  //   tlum_, _afsø,   ,\n  { {0x99840054, 0x44e1010a, 0x60c408fb, 0x00000000}},  //   _الفو, rų_, _čimp,\n  { {0x09e80055, 0xc864072b, 0x44e10006, 0x00000000}},  //   _পাতা, _утри, sų_,\n  { {0x7c2f0375, 0x425508fc, 0x249f000c, 0x00000000}},  //   _lacr, ртит, slum_,\n  { {0xa06a08fd, 0xc4f8006d, 0x249f014a, 0x00000000}},  //   вана_, _معنا_, plum_,\n  { {0xb4c102fb, 0x54a700f3, 0xe3b000a6, 0x00000000}},  //   ंदी_, _صحاف, _کرم_,\n  { {0x442f031c, 0x324500e2, 0x00000000, 0x00000000}},  //   _iag_, _велг,   ,\n  { {0x3ebe08fe, 0x442f000c, 0x2ca008ff, 0x00000000}},  //   ött_, _hag_, wlid_,\n  { {0x442f0058, 0xfce60900, 0x94ee013f, 0x00000000}},  //   _kag_, робо, _bəə_,\n  { {0x442f0901, 0xbc630081, 0xa3ac0309, 0x00000000}},  //   _jag_, овск, _गरम_,\n\n  { {0x442f0222, 0x6b850025, 0x91fc0089, 0x00000000}},  // [c00] _mag_, مشكل, bkād,\n  { {0xe9d70902, 0x442f0292, 0x7ea00039, 0x00000000}},  //   ику_, _lag_, köpi,\n  { {0xdca6007c, 0xa9260081, 0x00000000, 0x00000000}},  //   _вани, рдел,   ,\n  { {0x442f0903, 0x6d5c0904, 0x00000000, 0x00000000}},  //   _nag_, myra,   ,\n  { {0x7c2402d5, 0x7e770009, 0x28130426, 0x00000000}},  //   meir, _ymxp, تونس,\n  { {0x7c2402d5, 0xb4c10164, 0x442f01d6, 0x00000000}},  //   leir, ंदू_, _aag_,\n  { {0x39470039, 0x442f0905, 0x6d5c0906, 0x00000000}},  //   änst_, _bag_, nyra,\n  { {0x7c240907, 0x8af0006b, 0x442f0908, 0x00000000}},  //   neir, yyəl, _cag_,\n  { {0x27e0009f, 0xd5b10011, 0x6d5c0909, 0x00000000}},  //   ðinu_, _máy_, hyra,\n  { {0x80ca0164, 0x78a2090a, 0x7c24090b, 0x00000000}},  //   _संदे, llov, heir,\n  { {0x3a3700b6, 0x442f05b7, 0xd5750088, 0x00000000}},  //   ברים_, _fag_, _луць,\n  { {0x442f0093, 0x6d5c00ea, 0x7c2400c4, 0x00000000}},  //   _gag_, dyra, jeir,\n  { {0x7c24090c, 0x236d0046, 0x6442002d, 0x00000000}},  //   deir, czej_, _inoi,\n  { {0xa2c302d2, 0x442f00b5, 0x78a20161, 0x00000000}},  //   रदर्, _zag_, hlov,\n  { {0x7c24018e, 0x442f033b, 0xd087007c, 0x00000000}},  //   feir, _yag_, _выпи,\n  { {0x4424090d, 0x78a2037e, 0x7c24090e, 0x00000000}},  //   nem_, jlov, geir,\n  { {0x44240191, 0xf9c70827, 0x78a20161, 0x00000000}},  // [c10] iem_, ащен, dlov,\n  { {0x4424090f, 0x6d5c00eb, 0x24890910, 0x00000000}},  //   hem_, byra, čami_,\n  { {0x44240911, 0x7c2405bc, 0x00000000, 0x00000000}},  //   kem_, beir,   ,\n  { {0x7c2400c4, 0x78a20213, 0x00000000, 0x00000000}},  //   ceir, glov,   ,\n  { {0x4424059c, 0x442f0912, 0x753a002d, 0x00000000}},  //   dem_, _rag_, _artz,\n  { {0x64420913, 0x442f05a6, 0x442401ee, 0x00000000}},  //   _anoi, _sag_, eem_,\n  { {0x442f0811, 0xb4c101f5, 0x78a20142, 0x00000000}},  //   _pag_, ंदे_, blov,\n  { {0x442402d5, 0x78a20914, 0xe894007e, 0x00000000}},  //   gem_, clov, _дась,\n  { {0x442f01aa, 0xdbf40055, 0xd8b600a1, 0x00000000}},  //   _vag_, ঙ্কস_, _اگلا_,\n  { {0x442f0915, 0x7c240181, 0x9f4201ca, 0x00000000}},  //   _wag_, zeir, jaká_,\n  { {0x44240916, 0x236d0046, 0x2913002d, 0x00000000}},  //   bem_, szej_, ntxa_,\n  { {0x7c240181, 0x673b0065, 0x442f004a, 0x00000000}},  //   xeir, _kruj, _uag_,\n  { {0x7c240917, 0x7e7c007f, 0x6d5c0696, 0x00000000}},  //   veir, tirp, wyra,\n  { {0x6d5c0065, 0x1d0a0918, 0xda030309, 0x00000000}},  //   tyra, леги_, _लागत_,\n  { {0x7c240181, 0x78a20062, 0x98a7013e, 0x00000000}},  //   teir, ylov, íně_,\n  { {0x3fe6025f, 0x6d5c0544, 0x673b0919, 0x00000000}},  //   _ужив, ryra, _oruj,\n  { {0x7c2402d5, 0x78a2037e, 0x387d018e, 0x00000000}},  // [c20] reir, vlov, diwr_,\n  { {0x7c2408da, 0x09e80044, 0x00000000, 0x00000000}},  //   seir, _পাহা,   ,\n  { {0x7d1e091a, 0xed5a091b, 0x1e57009b, 0x00000000}},  //   _upps, _сон_, _השיר_,\n  { {0x44240129, 0x673b0211, 0x16050061, 0x00000000}},  //   xem_, _bruj, _राउर_,\n  { {0x4424091c, 0x78a2091d, 0x673b008e, 0x00000000}},  //   vem_, rlov, _cruj,\n  { {0x78a2091e, 0x44240036, 0xd946025f, 0x00000000}},  //   slov, wem_, _леги,\n  { {0x78a20738, 0x9ac3002b, 0x2609006e, 0x00000000}},  //   plov, ċċes, _सारी_,\n  { {0x4424091f, 0xafdb0190, 0x00000000, 0x00000000}},  //   uem_, hjør,   ,\n  { {0xe7370057, 0x533401e0, 0x66e30920, 0x00000000}},  //   _лет_, цепт, _нота,\n  { {0x44240921, 0x3d1903d7, 0x6f060667, 0x00000000}},  //   sem_, _पहले_, dukc,\n  { {0x442400b9, 0x1a9b0049, 0x3a37009b, 0x00000000}},  //   pem_, רייע, זרים_,\n  { {0x5edd0044, 0x9f4b009d, 0xc953009b, 0x00000000}},  //   _বিবে, lacé_, למת_,\n  { {0xa3bc0365, 0x80ca007d, 0x987b0049, 0x00000000}},  //   _आणि_, _संवे, ראכט,\n  { {0x63a20811, 0x9f4000f6, 0x92a40036, 0x00000000}},  //   _iyon, _deià_, ółdz,\n  { {0x865b01ce, 0xdd3a001a, 0x00000000, 0x00000000}},  //   נדלי, văţa,   ,\n  { {0x629a0142, 0x63a20922, 0xd7ba0061, 0x00000000}},  //   loto, _kyon, ेशाच,\n  { {0x260901f5, 0x62880020, 0x61ea000c, 0x00000000}},  // [c30] _साली_, ondo, _kefl,\n  { {0x80db0044, 0xe9ab0014, 0x00000000, 0x00000000}},  //   _ভিত্, هدان_,   ,\n  { {0x628801d6, 0x63a20923, 0x09e80044, 0x00000000}},  //   indo, _lyon, _পাশা,\n  { {0xf77000e9, 0x629a0142, 0xbd880014, 0x00000000}},  //   کام_, hoto, _چنین_,\n  { {0x63a2036b, 0x629a0924, 0x387d0016, 0x00000000}},  //   _nyon, koto, riwr_,\n  { {0x673b0925, 0xddc500b9, 0x34b3006e, 0x00000000}},  //   _vruj, _pohř, ुद्द,\n  { {0x629a0006, 0x69c70292, 0x63a2009d, 0x00000000}},  //   doto, _igje, _ayon,\n  { {0xe459026b, 0x673b0926, 0x63a20927, 0x00000000}},  //   ржи_, _truj, _byon,\n  { {0x60ca010f, 0x63a20009, 0x673b0045, 0x00000000}},  //   _aufm, _cyon, _uruj,\n  { {0x63a20173, 0x60d800f6, 0x7d070023, 0x00000000}},  //   _dyon, _btvm, kujs,\n  { {0x6026008b, 0xdddc0006, 0x404a0069, 0x00000000}},  //   одна, sirū, апно_,\n  { {0x62880197, 0x5046012b, 0xe45f006c, 0x00000000}},  //   ando, цемб, ööd_,\n  { {0x629a0928, 0x63a20232, 0x00000000, 0x00000000}},  //   boto, _gyon,   ,\n  { {0x6f060036, 0x61ea03a9, 0x629a0299, 0x00000000}},  //   rukc, _gefl, coto,\n  { {0x8c7a005e, 0x2c67006c, 0xdd9203d6, 0x00000000}},  //   ащат_, _sõda_, ذور_,\n  { {0x69c70065, 0x69d500b5, 0xc5f30044, 0x00000000}},  //   _agje, _afze, চ্চা_,\n  { {0x2ea700a1, 0x20e70010, 0x00000000, 0x00000000}},  // [c40] _ڈپٹی_, lői_,   ,\n  { {0x89f5007e, 0xafdb08c8, 0xa01b0010, 0x00000000}},  //   зяцц, ljøp, ynök,\n  { {0x38cb0167, 0x60c40929, 0xc92a005e, 0x00000000}},  //   لانی_, _kiim, роеж_,\n  { {0x629a0020, 0x186a00ed, 0x09aa0061, 0x00000000}},  //   zoto, јади_, _करीय,\n  { {0x41c9007d, 0x629a000b, 0xc5f30044, 0x00000000}},  //   रशास, yoto, চ্ছা_,\n  { {0x473301fb, 0x63a20022, 0x60c4092a, 0x00000000}},  //   ьніс, _ryon, _liim,\n  { {0x629a0142, 0x00000000, 0x00000000, 0x00000000}},  //   voto,   ,   ,\n  { {0x69c7008d, 0x60c4006c, 0x6d4e00f6, 0x00000000}},  //   _zgje, _niim, ixba,\n  { {0x629a006a, 0x00000000, 0x00000000, 0x00000000}},  //   toto,   ,   ,\n  { {0xd25a092b, 0x628800c4, 0x60c40068, 0x00000000}},  //   рци_, undo, _aiim,\n  { {0x629a092c, 0x5bb70061, 0x7c360635, 0x00000000}},  //   roto, _अण्व, kdyr,\n  { {0x629a0052, 0x7ea00039, 0x6a60000c, 0x00000000}},  //   soto, köps, _döfi,\n  { {0x61ea092d, 0x629a0020, 0x60c404cb, 0x00000000}},  //   _tefl, poto, _diim,\n  { {0x5edd0055, 0x00000000, 0x00000000, 0x00000000}},  //   _বিদে,   ,   ,\n  { {0xa6e90082, 0x00000000, 0x00000000, 0x00000000}},  //   _giươ,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x3f8c005f, 0x27ef092e, 0x00000000, 0x00000000}},  // [c50] şdur_, vagn_,   ,\n  { {0x3cfe092f, 0x0b880088, 0xea000082, 0x00000000}},  //   štva_, істи_, _đản_,\n  { {0xeeb80930, 0xfeb8006d, 0x00000000, 0x00000000}},  //   _флэш_, _بايت_,   ,\n  { {0xfc3f0011, 0x6faf0061, 0x88c80088, 0x00000000}},  //   _chít_, _घरां, ілів_,\n  { {0xe739005e, 0x87270025, 0x4907013d, 0x00000000}},  //   сел_, تعام, _हमको_,\n  { {0xb9010044, 0x69c700ea, 0xd6290931, 0x00000000}},  //   _দি_, _ugje, соке_,\n  { {0x22490932, 0xb06600b0, 0x2fc900e0, 0x00000000}},  //   _đak_, nsää, _ogag_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x66f4003b, 0xc6a70098, 0x60c40933, 0x00000000}},  //   _опту, _држи, _riim,\n  { {0x27ed01b5, 0xcb1200b3, 0x20e70010, 0x00000000}},  //   _heen_, עלי_, tői_,\n  { {0x60c40934, 0x61450745, 0x2d84014a, 0x00000000}},  //   _piim, чена, şmez_,\n  { {0x26c5000b, 0xc4d200b6, 0x27ed00d9, 0x00000000}},  //   _hilo_, _נגד_, _jeen_,\n  { {0x60c408b2, 0x26c5014a, 0x27ed0935, 0x00000000}},  //   _viim, _kilo_, _meen_,\n  { {0x27ed0168, 0xd35600b3, 0x6459005b, 0x00000000}},  //   _leen_, _מיני_, _howi,\n  { {0x60c40103, 0x2fcd0936, 0x00000000, 0x00000000}},  //   _tiim, žega_,   ,\n  { {0x62810937, 0x26c50082, 0xd0fa0049, 0x00000000}},  //   lilo, _lilo_, _פּור,\n  { {0x64590036, 0x2d85009d, 0x00000000, 0x00000000}},  // [c60] _mowi, ûler_,   ,\n  { {0x6281000d, 0x26c500c4, 0x00000000, 0x00000000}},  //   nilo, _nilo_,   ,\n  { {0x27ed0038, 0x2f160030, 0x00000000, 0x00000000}},  //   _been_, læg_,   ,\n  { {0x62810938, 0xc18c0049, 0x64590036, 0x00000000}},  //   hilo, סטאָ, _nowi,\n  { {0x26c501d9, 0x6281009f, 0x16340242, 0x00000000}},  //   _bilo_, kilo, деля,\n  { {0x6b890359, 0x98ac0279, 0x62810939, 0x00000000}},  //   _þega, ılır_, jilo,\n  { {0x3494008b, 0x628100ca, 0x6459093a, 0x00000000}},  //   макр, dilo, _bowi,\n  { {0x27ed015c, 0xc955007e, 0x00000000, 0x00000000}},  //   _geen_, _ўтры,   ,\n  { {0x64590036, 0x26c50207, 0x62810321, 0x00000000}},  //   _dowi, _filo_, filo,\n  { {0x6281001a, 0x25a5093b, 0xa3dc007d, 0x00000000}},  //   gilo, _fyll_, _त्र_,\n  { {0x76480036, 0xfc3f0051, 0x2ee90173, 0x00000000}},  //   _indy, _mhír_, _swaf_,\n  { {0x38660010, 0xa3e6013d, 0x7af600b0, 0x00000000}},  //   nkor_, _बजट_, ksyt,\n  { {0x6a60009f, 0x62810142, 0x533400e3, 0x00000000}},  //   _höfu, bilo, _целт,\n  { {0x6281001a, 0x64470089, 0x645900bb, 0x00000000}},  //   cilo, ējie, _zowi,\n  { {0x38660010, 0x765a093c, 0x1bd5004d, 0x00000000}},  //   kkor_, _moty, добя,\n  { {0xea000011, 0x9f4b0802, 0x00000000, 0x00000000}},  //   _đạn_, lací_,   ,\n  { {0x5a35041f, 0xb06600b0, 0x27ed01d6, 0x00000000}},  // [c70] мнат, ssää, _reen_,\n  { {0x27ed00ab, 0x32d20011, 0x765a04c4, 0x00000000}},  //   _seen_, _mây_, _noty,\n  { {0x80a400d3, 0x32d20011, 0x6dc301f3, 0x00000000}},  //   _زمین, _lây_, _qċaċ,\n  { {0x76480178, 0x26c5093d, 0x6281093e, 0x00000000}},  //   _andy, _silo_, zilo,\n  { {0x9f4b093f, 0x2ca90940, 0xcc5600b3, 0x00000000}},  //   kací_, mlad_, _חברי_,\n  { {0x6459001f, 0x2ca9074e, 0x6281002d, 0x00000000}},  //   _sowi, llad_, xilo,\n  { {0x64590046, 0x765a0941, 0x62810942, 0x00000000}},  //   _powi, _doty, vilo,\n  { {0x38660073, 0x32d2001d, 0x764801aa, 0x00000000}},  //   ckor_, _bây_, _endy,\n  { {0x6281000d, 0x32d2001d, 0x2ca90016, 0x00000000}},  //   tilo, _cây_, ilad_,\n  { {0x32d2001d, 0x64590943, 0x00000000, 0x00000000}},  //   _dây_, _wowi,   ,\n  { {0x6281000d, 0x2ca90161, 0xd5670783, 0x00000000}},  //   rilo, klad_, _этап,\n  { {0x628105d2, 0x23720036, 0xd59a009b, 0x00000000}},  //   silo, _żyje_, _ובעל,\n  { {0x32d2001d, 0xd3d80025, 0x248d00ca, 0x00000000}},  //   _gây_, _ربنا_, mnem_,\n  { {0x5edd0055, 0x7cd5010a, 0x248d0059, 0x00000000}},  //   _বিশে, _sąra, lnem_,\n  { {0x6da300aa, 0x248d00d4, 0xdca60140, 0x00000000}},  //   вира, onem_, дави,\n  { {0x3cfe01ae, 0x248d0018, 0x2ca90190, 0x00000000}},  //   štvo_, nnem_, glad_,\n  { {0x32d2001d, 0xdca301bd, 0xa5a4013d, 0x00000000}},  // [c80] _xây_, тати, _चुनौ,\n  { {0x2bde006e, 0x7af60036, 0x386d00d4, 0x00000000}},  //   _फ्रा, rsyt, _aler_,\n  { {0x2ca90944, 0x248d0091, 0x249f0068, 0x00000000}},  //   blad_, knem_, koum_,\n  { {0x20d3001d, 0x31560049, 0x9f4b01dc, 0x00000000}},  //   _mãi_, ויען_, zací_,\n  { {0x248d0059, 0x20d30011, 0x386600f8, 0x00000000}},  //   dnem_, _lãi_, rkor_,\n  { {0x38660073, 0xa3c1013d, 0xd042006b, 0x00000000}},  //   skor_, ंधन_, rqlə,\n  { {0x386d0073, 0xceb3007b, 0x9f4b01c8, 0x00000000}},  //   _fler_, דיג_, vací_,\n  { {0x38b50945, 0x3a38020d, 0x248d0091, 0x00000000}},  //   gård_, _harp_, gnem_,\n  { {0x27e60946, 0xd6260054, 0x41c9006e, 0x00000000}},  //   mbon_, _يعطي, रशंस,\n  { {0x51860454, 0x20d30011, 0x27e6002d, 0x00000000}},  //   дума, _bãi_, lbon_,\n  { {0x248d0947, 0x20d30011, 0x9f4b0802, 0x00000000}},  //   bnem_, _cãi_, rací_,\n  { {0x32d2001d, 0x248d0107, 0x27e601ed, 0x00000000}},  //   _tây_, cnem_, nbon_,\n  { {0x80ca02f4, 0x44fa0089, 0x62790062, 0x00000000}},  //   _संके, lī_, vňov,\n  { {0x8d6b00ed, 0x2005005d, 0x2ca90016, 0x00000000}},  //   ојба_, şli_, wlad_,\n  { {0x2ca00022, 0x44fa0089, 0x20d30082, 0x00000000}},  //   foid_, nī_, _gãi_,\n  { {0x8af00163, 0xfc3f0082, 0x2ca008ce, 0x00000000}},  //   yyət, _chíp_, goid_,\n  { {0x7b18007c, 0x291801d5, 0x2d9e036c, 0x00000000}},  // [c90] мотр_, _aqra_, üter_,\n  { {0xd5a4009c, 0x248d0059, 0x00000000, 0x00000000}},  //   _نہ_, znem_,   ,\n  { {0x249f042a, 0x386d00f6, 0x00000000, 0x00000000}},  //   youm_, _pler_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x248d01d9, 0x7c2d002d, 0x38b50039, 0x00000000}},  //   vnem_, mear, vård_,\n  { {0x7c2d0948, 0x8cb9006e, 0xe610006b, 0x00000000}},  //   lear, ्दको, rüşə,\n  { {0x248d0059, 0xe5a20088, 0x387f002b, 0x00000000}},  //   tnem_, лиши, _tmur_,\n  { {0x7c2d0949, 0x387f0149, 0x20d30011, 0x00000000}},  //   near, _umur_, _rãi_,\n  { {0x248d0059, 0x6d43016c, 0x00000000, 0x00000000}},  //   rnem_, _šnal,   ,\n  { {0x7c2d002a, 0x248d0087, 0x00000000, 0x00000000}},  //   hear, snem_,   ,\n  { {0x0086014c, 0x7c2d002d, 0x332600e5, 0x00000000}},  //   елно, kear, _epox_,\n  { {0xcea900a0, 0x20d30082, 0x7c2d0032, 0x00000000}},  //   _הי_, _vãi_, jear,\n  { {0x644b033b, 0x7c2d094a, 0x270d0061, 0x00000000}},  //   _ingi, dear, _समोर_,\n  { {0x442d021e, 0x877a0104, 0x00000000, 0x00000000}},  //   lee_, לארי,   ,\n  { {0x8af0005f, 0x7c2d0048, 0x6fa0007d, 0x00000000}},  //   yyəs, fear, _गुरू,\n  { {0x442d021e, 0x7c2d0949, 0xdca60216, 0x00000000}},  //   nee_, gear, хаби,\n  { {0xac07008b, 0xdb1c0477, 0xab27094b, 0x00000000}},  // [ca0] энта_, _özüm, нота_,\n  { {0x27ff094c, 0x00000000, 0x00000000, 0x00000000}},  //   _adun_,   ,   ,\n  { {0x442d094d, 0x7c2d084b, 0x644b02f6, 0x00000000}},  //   kee_, bear, _ongi,\n  { {0x7c2d094e, 0x442d094f, 0x27e600bb, 0x00000000}},  //   cear, jee_, ubon_,\n  { {0x3a38010a, 0x00000000, 0x00000000, 0x00000000}},  //   _tarp_,   ,   ,\n  { {0x644b0292, 0x7ae40207, 0x442d0950, 0x00000000}},  //   _angi, mpit, eee_,\n  { {0x442d01d6, 0x2b400951, 0x7ae40207, 0x00000000}},  //   fee_, lvic_, lpit,\n  { {0x442d0343, 0x7ae40020, 0x6e2e0952, 0x00000000}},  //   gee_, opit, hebb,\n  { {0x7ae400b0, 0x96ba03ab, 0x00000000, 0x00000000}},  //   npit, _فائز_,   ,\n  { {0x644b0953, 0x7c2d002d, 0x75d60025, 0x00000000}},  //   _engi, zear, _أيضا,\n  { {0xd48f0954, 0x7c2d0955, 0x2ee0012d, 0x00000000}},  //   _бр_, year, _atif_,\n  { {0x442d0956, 0x7f440957, 0x7c2d002d, 0x00000000}},  //   cee_, _briq, xear,\n  { {0x69dc0958, 0x7c2d0190, 0x7f440068, 0x00000000}},  //   _ofre, vear, _criq,\n  { {0x7ae4012d, 0x6e2e0010, 0x78a2010e, 0x00000000}},  //   dpit, gebb, hoov,\n  { {0x7c2d022b, 0x3ced0107, 0xac190451, 0x00000000}},  //   tear, ćevo_, мову_,\n  { {0x69dc000c, 0xa01b0039, 0x2ee00022, 0x00000000}},  //   _afre, rnös, _ftif_,\n  { {0x7c2d002d, 0x9f530036, 0x5f950959, 0x00000000}},  // [cb0] rear, ędów_, _шиит,\n  { {0x7c2d0038, 0x442d0020, 0x6f0f0197, 0x00000000}},  //   sear, zee_, mucc,\n  { {0x7c2d00ab, 0x6f0f0197, 0x6f1d010f, 0x00000000}},  //   pear, lucc, ltsc,\n  { {0xdddc010a, 0x69ce00bb, 0x6f1d00bb, 0x00000000}},  //   mirš, _egbe, otsc,\n  { {0x442d095a, 0x6f1d05c6, 0x6f0f0197, 0x00000000}},  //   vee_, ntsc, nucc,\n  { {0x442d095b, 0x6d4a0051, 0x6f1d01a2, 0x00000000}},  //   wee_, _áfac, itsc,\n  { {0x442d095c, 0xc44700a1, 0x6f1d095d, 0x00000000}},  //   tee_, ٹیشن_, htsc,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x36d501fb, 0x2ba702d2, 0x442d0038, 0x00000000}},  //   _розр, _कुमा, ree_,\n  { {0x442d00b0, 0x6f0f095e, 0xcb1401ce, 0x00000000}},  //   see_, ducc, אלץ_,\n  { {0x442d095f, 0xd00a003b, 0x6e2e0010, 0x00000000}},  //   pee_, мене_, vebb,\n  { {0x6e2e0009, 0x644b01e5, 0x6f1d01a2, 0x00000000}},  //   webb, _ungi, ftsc,\n  { {0xa3a80061, 0x547a009b, 0x6f0f0026, 0x00000000}},  //   _खुप_, _קטנו, gucc,\n  { {0xdee301fc, 0x78a2012d, 0x00000000, 0x00000000}},  //   рори, zoov,   ,\n  { {0x6e2e0198, 0x6da602e9, 0xada605c7, 0x00000000}},  //   rebb, тива, тавл,\n  { {0x7f440066, 0x6e2e0010, 0x69dc0197, 0x00000000}},  //   _triq, sebb, _sfre,\n  { {0x6d45001f, 0x7d1c01d9, 0x6b63007e, 0x00000000}},  // [cc0] _erha, strs, акта,\n  { {0x2b4001f3, 0x7ae40960, 0xeef70097, 0x00000000}},  //   rvic_, rpit, _שמיר_,\n  { {0x1bea007c, 0xb05b0961, 0x00000000, 0x00000000}},  //   _одни_, smäe,   ,\n  { {0x7ae40052, 0xe7860478, 0xe3a70241, 0x00000000}},  //   ppit, куло, _نر_,\n  { {0x78a2017b, 0x3eba0082, 0x00000000, 0x00000000}},  //   roov, _khpt_,   ,\n  { {0xb7d20044, 0x20ee00b9, 0x78a2006c, 0x00000000}},  //   ারেট, yři_, soov,\n  { {0x6f0f0026, 0x91fc0089, 0xafdb00ea, 0x00000000}},  //   zucc, skāk, ldøe,\n  { {0x63ab0637, 0x62830962, 0x39470030, 0x00000000}},  //   _bygn, _amno, ænse_,\n  { {0x872505f3, 0x63ab0068, 0xa7a70264, 0x00000000}},  //   _معلم, _cygn, _акта_,\n  { {0x63ab0039, 0x6fec0044, 0x00000000, 0x00000000}},  //   _dygn, _কাগজ_,   ,\n  { {0x60f8008b, 0x7c260268, 0x26170963, 0x00000000}},  //   эння_, _obkr, _नाती_,\n  { {0x64a3007e, 0x6f0f0197, 0xdddc0964, 0x00000000}},  //   _каха, tucc, virš,\n  { {0x26cc0093, 0xd36f0379, 0x6f1d010f, 0x00000000}},  //   _kido_, _وهم_, utsc,\n  { {0x6f0f029a, 0x6f1d001f, 0x2c750018, 0x00000000}},  //   rucc, rtsc, _måde_,\n  { {0x6288029d, 0x6f1d010f, 0xeca700ed, 0x00000000}},  //   mido, stsc, вјан,\n  { {0x26cc0089, 0x6f1d01a2, 0x2005007f, 0x00000000}},  //   _lido_, ptsc, ėlis_,\n  { {0x201e005f, 0x44260965, 0x26cc008e, 0x00000000}},  // [cd0] əti_, _mbo_, _oido_,\n  { {0x62880966, 0x2ba70183, 0xadbd008b, 0x00000000}},  //   nido, _कुणा, _напi,\n  { {0x67290030, 0x49a406e3, 0x60cd033b, 0x00000000}},  //   _spej, ајца, _kiam,\n  { {0x2c75044f, 0x24580027, 0x442600bb, 0x00000000}},  //   _både_, _témy_, _nbo_,\n  { {0x60cd0967, 0x62880968, 0x160e0061, 0x00000000}},  //   _miam, kido, _साखर_,\n  { {0x98b301f6, 0xa3ac0183, 0x442600ac, 0x00000000}},  //   ıdır_, _गरज_, _abo_,\n  { {0x6288029d, 0x63ab0036, 0x7c3d0969, 0x00000000}},  //   dido, _sygn, _kasr,\n  { {0x60cd096a, 0x9f52000a, 0x67290066, 0x00000000}},  //   _niam, _feyè_, _tpej,\n  { {0x26cc0197, 0x7c3d014a, 0x5884007e, 0x00000000}},  //   _fido_, _masr, _тыра,\n  { {0x6288096b, 0x4426096c, 0x7c3d096d, 0x00000000}},  //   gido, _ebo_, _lasr,\n  { {0x60cd096e, 0x659400e2, 0x64150025, 0x00000000}},  //   _biam, _кафу, _مواط,\n  { {0x7c3d096f, 0x60cd0970, 0xdee60088, 0x00000000}},  //   _nasr, _ciam, ломи,\n  { {0x6288029d, 0x60cd0971, 0x443f0972, 0x00000000}},  //   bido, _diam, mdu_,\n  { {0x443f0756, 0x62880489, 0x62830973, 0x00000000}},  //   ldu_, cido, _umno,\n  { {0x443f010a, 0x60cd0207, 0x443d0760, 0x00000000}},  //   odu_, _fiam, _kaw_,\n  { {0x443f0974, 0x60cd0197, 0x443d0652, 0x00000000}},  //   ndu_, _giam, _jaw_,\n  { {0x4bd90373, 0x443d0016, 0x3b07026b, 0x00000000}},  // [ce0] ться_, _maw_, лето_,\n  { {0x443d0975, 0xfaaa0014, 0x443f0976, 0x00000000}},  //   _law_, رهاي_, hdu_,\n  { {0x9f520263, 0x090601a4, 0x26cc01aa, 0x00000000}},  //   _seyè_, упен, _rido_,\n  { {0x3860009f, 0x26cc0977, 0x62880978, 0x00000000}},  //   ðir_, _sido_, zido,\n  { {0x443f0979, 0x26cc097a, 0x7c240035, 0x00000000}},  //   ddu_, _pido_, mfir,\n  { {0x0f3700b6, 0x6288049a, 0x443f097b, 0x00000000}},  //   טרנט_, xido, edu_,\n  { {0x62880181, 0x26cc097c, 0x443d00be, 0x00000000}},  //   vido, _vido_, _baw_,\n  { {0xdd04010a, 0x7c240335, 0x26cc0022, 0x00000000}},  //   ūrėt, nfir, _wido_,\n  { {0x443d097d, 0x62880576, 0x60cd002a, 0x00000000}},  //   _daw_, tido, _riam,\n  { {0x60cd0198, 0x443f0016, 0x78bb097e, 0x00000000}},  //   _siam, adu_, _zhuv,\n  { {0x6288029d, 0x443f097f, 0x443d0980, 0x00000000}},  //   rido, bdu_, _faw_,\n  { {0xf53700b6, 0x62880981, 0x443d00e0, 0x00000000}},  //   _תנאי_, sido, _gaw_,\n  { {0x628800b0, 0x64400045, 0x9f590023, 0x00000000}},  //   pido, mdmi, masë_,\n  { {0x6440000c, 0x6e3e0982, 0x7c3d016c, 0x00000000}},  //   ldmi, _capb, _sasr,\n  { {0x7c240983, 0x61fa005f, 0x60cd00d4, 0x00000000}},  //   ffir, matl, _tiam,\n  { {0x61fa0984, 0x6440006c, 0xaed500ed, 0x00000000}},  //   latl, ndmi, _коиш,\n  { {0x50b80318, 0x6e950985, 0x6d4a000c, 0x00000000}},  // [cf0] _حدود_, _випу, _áfan,\n  { {0x61fa0890, 0xda780986, 0xdb240010, 0x00000000}},  //   natl, лях_, ásán,\n  { {0x628f009d, 0x443f005d, 0x7c3d0022, 0x00000000}},  //   écoi, ydu_, _tasr,\n  { {0x2617001c, 0x61fa0279, 0x443f006b, 0x00000000}},  //   _नाही_, hatl, xdu_,\n  { {0xe73905b5, 0x443f0987, 0x07a502a8, 0x00000000}},  //   тел_, vdu_, јалн,\n  { {0xa5090121, 0x443f0988, 0x61fa00ca, 0x00000000}},  //   века_, wdu_, jatl,\n  { {0x61fa0989, 0x443d0173, 0x3e74006c, 0x00000000}},  //   datl, _paw_, _jäta_,\n  { {0x443f098a, 0xc6060044, 0x3e74098b, 0x00000000}},  //   udu_, ল্লা_, _mäta_,\n  { {0xfc3f0359, 0x443f011f, 0xa3a803d7, 0x00000000}},  //   _maí_, rdu_, _खुद_,\n  { {0xc6a7098c, 0x61fa0047, 0x64400056, 0x00000000}},  //   _срби, gatl, admi,\n  { {0x443d098d, 0x7c24000c, 0x6e3e0093, 0x00000000}},  //   _taw_, yfir, _rapb,\n  { {0x44f3001a, 0x3f6a003b, 0x00000000, 0x00000000}},  //   mţ_, вимо_,   ,\n  { {0x61fa006b, 0xa3c10061, 0x00000000, 0x00000000}},  //   batl, ंधळ_,   ,\n  { {0x200c005f, 0x61fa01ee, 0x00000000, 0x00000000}},  //   şdi_, catl,   ,\n  { {0x7c24098e, 0x8d63013b, 0xa3dc0061, 0x00000000}},  //   tfir, овре, तुक_,\n  { {0xb05b0073, 0x9ce5007e, 0xfc3f098f, 0x00000000}},  //   lmän, сцёл, _caí_,\n  { {0x7c240990, 0xfc3f0181, 0x63880089, 0x00000000}},  // [d00] rfir, _daí_, cīnī,\n  { {0x7c24006c, 0xab27005e, 0x7bdf0197, 0x00000000}},  //   sfir, рофа_, acqu,\n  { {0xd00f089d, 0x19b9008b, 0x7c240991, 0x00000000}},  //   _علی_, гуць_, pfir,\n  { {0x8c46025f, 0x61fa0010, 0xa01b00b0, 0x00000000}},  //   _теме, zatl, tiöi,\n  { {0x27e90211, 0x61fa047f, 0xbb430088, 0x00000000}},  //   ñana_, yatl, _деяк,\n  { {0x3cfe0295, 0xbb4300ed, 0x248601d6, 0x00000000}},  //   štvu_, _ќерк, _smom_,\n  { {0xd49a00aa, 0x2617006e, 0x5e570049, 0x00000000}},  //   кри_, _नारी_, ייסע_,\n  { {0x98a30088, 0x00000000, 0x00000000, 0x00000000}},  //   _дисе,   ,   ,\n  { {0xc178010a, 0x61fa0992, 0x9f590023, 0x00000000}},  //   ybės_, tatl, rasë_,\n  { {0x09ca0044, 0x67220993, 0x00000000, 0x00000000}},  //   _ল্যা, mtoj,   ,\n  { {0x272001aa, 0x61fa0994, 0x6722042c, 0x00000000}},  //   lòn_, ratl, ltoj,\n  { {0x6722010a, 0x44320082, 0x61fa0994, 0x00000000}},  //   otoj, _úy_, satl,\n  { {0x67220995, 0x61fa0996, 0x3ce6016c, 0x00000000}},  //   ntoj, patl, _čova_,\n  { {0xea0000ad, 0x67220997, 0x7ae9014a, 0x00000000}},  //   _đến_, itoj, _çeti,\n  { {0xb2bb00b6, 0x67220998, 0x307b0025, 0x00000000}},  //   _שמור, htoj, _لحظة_,\n  { {0x2c750039, 0x67220065, 0x5c740999, 0x00000000}},  //   _båda_, ktoj, олст,\n  { {0x67220065, 0x27200173, 0xa9e70025, 0x00000000}},  // [d10] jtoj, jòn_, لثان,\n  { {0x4a540131, 0x00000000, 0x00000000, 0x00000000}},  //   окус,   ,   ,\n  { {0xdd910137, 0x06e60044, 0x61f8014a, 0x00000000}},  //   _روح_, _নিষি, _mevl,\n  { {0x3157007b, 0x2019099a, 0x673b099b, 0x00000000}},  //   ייבן_, ngsi_, _psuj,\n  { {0x25b2006b, 0x2720099c, 0x00000000, 0x00000000}},  //   əyli_, gòn_,   ,\n  { {0xbb3a007b, 0x61f8099d, 0x78a20428, 0x00000000}},  //   _געשי, _nevl, čova,\n  { {0x28f8041f, 0x1994004d, 0x00000000, 0x00000000}},  //   _весь_, _даря,   ,\n  { {0xcd9800a0, 0x29010020, 0x272001aa, 0x00000000}},  //   ידות_, msha_, bòn_,\n  { {0x61f80116, 0x00000000, 0x00000000, 0x00000000}},  //   _bevl,   ,   ,\n  { {0x38bc0051, 0x27fd005b, 0x290100e7, 0x00000000}},  //   ríre_, lawn_, osha_,\n  { {0x61f8099e, 0xa06a003b, 0x290104e7, 0x00000000}},  //   _devl, гана_, nsha_,\n  { {0xf992009b, 0x290100e7, 0xb05b099f, 0x00000000}},  //   לרי_, isha_, smän,\n  { {0x248d001e, 0x7641011c, 0x72050014, 0x00000000}},  //   miem_, _kaly, _هوشم,\n  { {0x248d0089, 0x61f800c7, 0x27fd0016, 0x00000000}},  //   liem_, _gevl, hawn_,\n  { {0x01c50044, 0x764105e1, 0x91680082, 0x00000000}},  //   _শ্রদ, _maly, _tức_,\n  { {0x248d09a0, 0x6722010a, 0xb05b0039, 0x00000000}},  //   niem_, ytoj, nmäl,\n  { {0xf1bf00b9, 0x290100e0, 0xd5b10082, 0x00000000}},  // [d20] řád_, esha_, _lý_,\n  { {0x6f040166, 0x248d09a1, 0x764100ea, 0x00000000}},  //   _ivic, hiem_, _naly,\n  { {0xfe3700b6, 0x248d09a2, 0xdca601ee, 0x00000000}},  //   _פרטי_, kiem_, _гани,\n  { {0x248d001e, 0x91fc001e, 0x17fa0025, 0x00000000}},  //   jiem_, nkār, اراة_,\n  { {0x501b01f8, 0x248d001e, 0x67220997, 0x00000000}},  //   רונו, diem_, utoj,\n  { {0x67220006, 0x1ae305f6, 0x7c3609a3, 0x00000000}},  //   rtoj, _хорм, leyr,\n  { {0x672206a6, 0x7641010a, 0x9f59009d, 0x00000000}},  //   stoj, _daly, rasé_,\n  { {0x248d09a4, 0x67220065, 0xb1760011, 0x00000000}},  //   giem_, ptoj, _ngượ,\n  { {0xa3a8006e, 0x61f8012d, 0x76410288, 0x00000000}},  //   _खुश_, _pevl, _faly,\n  { {0x06650014, 0x7641007f, 0xda7b0049, 0x00000000}},  //   _والپ, _galy, ָנטר,\n  { {0xd0110076, 0x909900ed, 0x248d0089, 0x00000000}},  //   ولد_, ивот_, biem_,\n  { {0x248d02ff, 0x00000000, 0x00000000, 0x00000000}},  //   ciem_,   ,   ,\n  { {0x3e970025, 0x5f94005e, 0x6e350032, 0x00000000}},  //   مؤسس, зият, tezb,\n  { {0x64420051, 0x29010058, 0x539b009b, 0x00000000}},  //   _haoi, ysha_, _גידו,\n  { {0x90e6031d, 0x7c36000c, 0x628a004a, 0x00000000}},  //   _استن, feyr, _imfo,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x5eb80055, 0x64420051, 0x20090697, 0x00000000}},  // [d30] _ইংরে, _maoi, _idai_,\n  { {0x7f4d006b, 0x290109a5, 0x248d09a6, 0x00000000}},  //   _iraq, tsha_, ziem_,\n  { {0x6f040065, 0xa01b09a7, 0xb05b00b0, 0x00000000}},  //   _zvic, rhöf, ymäl,\n  { {0x6d40001e, 0xdb0f00f4, 0x764109a8, 0x00000000}},  //   āmat, _lycé, _saly,\n  { {0x76410006, 0x248d09a9, 0x29010066, 0x00000000}},  //   _paly, viem_, ssha_,\n  { {0x7aed020c, 0xf1c802d2, 0x248d09aa, 0x00000000}},  //   mpat, रधान, wiem_,\n  { {0x248d001e, 0x9f40009f, 0x764109ab, 0x00000000}},  //   tiem_, _leið_, _valy,\n  { {0x130907ca, 0x7b08009f, 0x64420051, 0x00000000}},  //   аний_, _ástæ, _caoi,\n  { {0x6442002a, 0x7aed09ac, 0x248d09a9, 0x00000000}},  //   _daoi, npat, riem_,\n  { {0x248d001e, 0x7aed09ad, 0x20090020, 0x00000000}},  //   siem_, ipat, _adai_,\n  { {0x6442002a, 0x645d010f, 0x248d0089, 0x00000000}},  //   _faoi, ösis, piem_,\n  { {0xf48500a1, 0x437509ae, 0x9fca026b, 0x00000000}},  //   _بائی, _мулт, игна_,\n  { {0xe28e008b, 0x7f4d09af, 0x083a0049, 0x00000000}},  //   _жа_, _craq, בערל,\n  { {0x7aed00d2, 0x7f4d0026, 0xc5f90049, 0x00000000}},  //   dpat, _draq, יפֿט,\n  { {0xa01b09b0, 0x6442004a, 0x00000000, 0x00000000}},  //   giös, _yaoi,   ,\n  { {0x7d05001c, 0x7f4d09b1, 0x7aed00d9, 0x00000000}},  //   _dvhs, _fraq, fpat,\n  { {0x7c36000c, 0x7aed011c, 0x68e900ca, 0x00000000}},  // [d40] reyr, gpat, _čeda,\n  { {0x25a00095, 0x00000000, 0x00000000, 0x00000000}},  //   şili_,   ,   ,\n  { {0xed5a09b2, 0x64970089, 0x6ee500a2, 0x00000000}},  //   _тон_, rģij, _وسیل,\n  { {0x7aed09b3, 0xd7ef0025, 0xcfad0044, 0x00000000}},  //   bpat, نكم_, _গণতন,\n  { {0x8af0006b, 0x7aed06ed, 0xa01b09b4, 0x00000000}},  //   yyəy, cpat, shög,\n  { {0x6442002a, 0x6b63007e, 0x00000000, 0x00000000}},  //   _saoi, _ўкра,   ,\n  { {0x385a09b5, 0x69230478, 0xd839000a, 0x00000000}},  //   _краю_, _омра, _djōb_,\n  { {0x387d005b, 0x00000000, 0x00000000, 0x00000000}},  //   chwr_,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x026a0088, 0x3f8209b6, 0x862b009e, 0x00000000}},  //   рший_, dzku_, _نغمہ_,\n  { {0x3a37034e, 0x2ee904cb, 0x64420051, 0x00000000}},  //   חרים_, _staf_, _taoi,\n  { {0x232a0517, 0x7aed04a5, 0xb05b00b0, 0x00000000}},  //   _води_, ypat, mmäk,\n  { {0xe29a012b, 0xb05b00b0, 0x00000000, 0x00000000}},  //   _кад_, lmäk,   ,\n  { {0x29070047, 0x9f5b0023, 0x63a20288, 0x00000000}},  //   ának_, _heqë_, _ixon,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xa01b09b7, 0xe5710049, 0x69d80006, 0x00000000}},  //   riös, ײַל_, žvel,\n  { {0x629a0009, 0x9f5b0065, 0x6d480039, 0x00000000}},  // [d50] onto, _meqë_, ådar,\n  { {0x7aed09b8, 0x629a00ea, 0x00000000, 0x00000000}},  //   rpat, nnto,   ,\n  { {0xa3ca0061, 0x629a00b0, 0x387d005b, 0x00000000}},  //   ळेत_, into, thwr_,\n  { {0x7aed01bc, 0x7c590025, 0x00000000, 0x00000000}},  //   ppat, _الحر_,   ,\n  { {0xfc5a009b, 0x00000000, 0x00000000, 0x00000000}},  //   _הכרמ,   ,   ,\n  { {0x26c70618, 0x00000000, 0x00000000, 0x00000000}},  //   umno_,   ,   ,\n  { {0x2d830036, 0x63a20133, 0x00000000, 0x00000000}},  //   nzje_, _axon,   ,\n  { {0x629a0142, 0x00000000, 0x00000000, 0x00000000}},  //   ento,   ,   ,\n  { {0x383401ff, 0xf77309b9, 0xafdb00ea, 0x00000000}},  //   _інфр, _غار_, gdøm,\n  { {0x629a0146, 0xb05b04ec, 0x00000000, 0x00000000}},  //   gnto, lmäh,   ,\n  { {0x27e00087, 0x85050167, 0x91fc0089, 0x00000000}},  //   žine_, _روشن, rkāp,\n  { {0x8fa60783, 0x55ba009b, 0x61ee006b, 0x00000000}},  //   заме, _המעו, ıbla,\n  { {0xc3190055, 0xe80c0061, 0x442f09ba, 0x00000000}},  //   _তৈরি_, हणता_, _ibg_,\n  { {0x442f0203, 0x13a9009e, 0x00000000, 0x00000000}},  //   _hbg_, _پنڈی_,   ,\n  { {0xdd920137, 0x00000000, 0x00000000, 0x00000000}},  //   رور_,   ,   ,\n  { {0xda1e0061, 0x442f0091, 0xaf0609bb, 0x00000000}},  //   _पाहत_, _jbg_, _епил,\n  { {0x3aeb09bc, 0x200209bd, 0x207b01ce, 0x00000000}},  // [d60] مبلی_, maki_, _לאקא,\n  { {0x20020127, 0xdb060036, 0xa6e90082, 0x00000000}},  //   laki_, _szkó, _khươ,\n  { {0xceb300bd, 0x4ddb009b, 0xe8530014, 0x00000000}},  //   _איז_, _לחיו, کنند,\n  { {0x38cb01ef, 0x20020052, 0xdca600ed, 0x00000000}},  //   مانی_, naki_, _хами,\n  { {0x629a09be, 0x60c400e7, 0x00000000, 0x00000000}},  //   ynto, _mhim,   ,\n  { {0x442f003f, 0xd6d90088, 0x200209bf, 0x00000000}},  //   _abg_, іті_, haki_,\n  { {0xe9a309c0, 0x442f0173, 0x20020145, 0x00000000}},  //   _зарп, _bbg_, kaki_,\n  { {0x399b00b6, 0x20020059, 0x442f09c1, 0x00000000}},  //   _הילד, jaki_, _cbg_,\n  { {0x2002011f, 0x6b84010f, 0x291a0161, 0x00000000}},  //   daki_, nzig, lupa_,\n  { {0x2a6a09c2, 0xb05b021e, 0x877b00b3, 0x00000000}},  //   _jobb_, mmäi, _האמי,\n  { {0x2497007a, 0xa6e9001d, 0x2bb90309, 0x00000000}},  //   _کنند_, _chươ, _आर्थ,\n  { {0x27e6008e, 0x60c409c3, 0x2a6a0066, 0x00000000}},  //   ncon_, _chim, _lobb_,\n  { {0x6b8402ae, 0x60c40065, 0x291a0058, 0x00000000}},  //   jzig, _dhim, hupa_,\n  { {0x291a09c4, 0x60c4000a, 0x539b0097, 0x00000000}},  //   kupa_, _ehim, _פיגו,\n  { {0x200209c5, 0x68e909c6, 0x60c40066, 0x00000000}},  //   baki_, _čedo, _fhim,\n  { {0x30a4008b, 0x60c40035, 0x291a0022, 0x00000000}},  //   _прыв, _ghim, dupa_,\n  { {0x3f9e014a, 0x2a6a01ee, 0x7c2f0082, 0x00000000}},  // [d70] ştur_, _bobb_, _vbcr,\n  { {0x6d4107a8, 0x291a09c7, 0x2a6a0133, 0x00000000}},  //   ælas, fupa_, _cobb_,\n  { {0x29070884, 0x27e60087, 0x291a0058, 0x00000000}},  //   éna_, fcon_, gupa_,\n  { {0x3869009f, 0x6a7301df, 0x00000000, 0x00000000}},  //   ðar_, _sıfı,   ,\n  { {0x7c2d000c, 0x6497001a, 0xf72b007e, 0x00000000}},  //   mfar, nţie, сцей_,\n  { {0x200209c8, 0x442f01a3, 0x7c2d09c9, 0x00000000}},  //   zaki_, _sbg_, lfar,\n  { {0xa9340822, 0x20020058, 0x291a0207, 0x00000000}},  //   _перш, yaki_, cupa_,\n  { {0x7c2d000c, 0x200200c4, 0x00000000, 0x00000000}},  //   nfar, xaki_,   ,\n  { {0x200209ca, 0x7c2d09cb, 0x00000000, 0x00000000}},  //   vaki_, ifar,   ,\n  { {0xa6e9001d, 0x60c401a3, 0x200209cc, 0x00000000}},  //   _phươ, _shim, waki_,\n  { {0x660300b0, 0x20020020, 0x60c40082, 0x00000000}},  //   mank, taki_, _phim,\n  { {0x60d6005f, 0x660309cd, 0xf4b60014, 0x00000000}},  //   _qiym, lank, _قشنگ,\n  { {0x6449018e, 0x64590270, 0x7c2d0190, 0x00000000}},  //   mdei, _inwi, dfar,\n  { {0x20020089, 0x442d001f, 0xa6e9001d, 0x00000000}},  //   saki_, lfe_, _thươ,\n  { {0x2002011c, 0x7c2d02e5, 0x60c40048, 0x00000000}},  //   paki_, ffar, _thim,\n  { {0x64490004, 0x442d0129, 0x6b8409ce, 0x00000000}},  //   ndei, nfe_, tzig,\n  { {0x660309cf, 0x06e30044, 0x3e74006c, 0x00000000}},  // [d80] kank, নীতি, _läti_,\n  { {0x291a0020, 0x224701f3, 0x20000087, 0x00000000}},  //   tupa_, _jank_, _heii_,\n  { {0x660309d0, 0x2ee009d1, 0x224701aa, 0x00000000}},  //   dank, _ভবিষ, _mank_,\n  { {0x291a09d2, 0x224709d3, 0x7d1c050f, 0x00000000}},  //   rupa_, _lank_, murs,\n  { {0x442d0009, 0x073a0355, 0xc6f70245, 0x00000000}},  //   dfe_, تساب_, дніх_,\n  { {0x660300b5, 0x6e3c09d4, 0x442d01a2, 0x00000000}},  //   gank, nerb, efe_,\n  { {0x442d0109, 0x69dc0181, 0x27e60283, 0x00000000}},  //   ffe_, _igre, pcon_,\n  { {0x3ae40073, 0x6e3c05de, 0x22470022, 0x00000000}},  //   _köp_, herb, _aank_,\n  { {0x6603000c, 0x6e3c01d6, 0x224709d5, 0x00000000}},  //   bank, kerb, _bank_,\n  { {0x7d1c0110, 0x6e3c01ee, 0x6459005b, 0x00000000}},  //   kurs, jerb, _enwi,\n  { {0x6e3c0039, 0x224709d6, 0x7c2d0016, 0x00000000}},  //   derb, _dank_, yfar,\n  { {0x7d1c000c, 0x38660203, 0x1c1d007d, 0x00000000}},  //   durs, njor_, _फाइल_,\n  { {0x69dc066e, 0x6e3c010f, 0x764809d7, 0x00000000}},  //   _ogre, ferb, _kady,\n  { {0x62810161, 0x6e3c0030, 0x69dc0065, 0x00000000}},  //   chlo, gerb, _ngre,\n  { {0xf1aa007a, 0xc3480011, 0xec6b003b, 0x00000000}},  //   _باشه_, _hổ_, орак_,\n  { {0x660309d8, 0x69dc09d9, 0x6e3c0026, 0x00000000}},  //   zank, _agre, aerb,\n  { {0x3ec70373, 0x6e3c02fa, 0x6d4e0009, 0x00000000}},  // [d90] _особ, berb, avba,\n  { {0x27ff0343, 0x68fc018e, 0x7c2d0197, 0x00000000}},  //   _seun_, _bwrd, sfar,\n  { {0x7d1c00d6, 0x6603003b, 0x481509da, 0x00000000}},  //   curs, vank, емес,\n  { {0x765a09db, 0x6d450020, 0x69dc008e, 0x00000000}},  //   _anty, _isha, _egre,\n  { {0x660309dc, 0xc3480011, 0x76480058, 0x00000000}},  //   tank, _nổ_, _bady,\n  { {0x68fc0016, 0x00000000, 0x00000000, 0x00000000}},  //   _fwrd,   ,   ,\n  { {0x442d00f6, 0x27e002db, 0x224709dd, 0x00000000}},  //   tfe_, žina_, _rank_,\n  { {0x934509de, 0xc3480011, 0x6d450020, 0x00000000}},  //   ение, _bổ_, _msha,\n  { {0xc348001d, 0x64490016, 0x660300b0, 0x00000000}},  //   _cổ_, rdei, pank,\n  { {0x27290211, 0xe1f10025, 0x6f1d0210, 0x00000000}},  //   mún_, دسة_, dusc,\n  { {0x27290051, 0x6d4509df, 0x386d006c, 0x00000000}},  //   lún_, _nsha, _koer_,\n  { {0x6e3c001f, 0x7f4400d6, 0x6f1d0026, 0x00000000}},  //   werb, _psiq, fusc,\n  { {0x660109e0, 0x6d4500f0, 0xda0f0061, 0x00000000}},  //   _kelk, _asha, ाणात_,\n  { {0x249f000c, 0x660109e1, 0x386d0007, 0x00000000}},  //   lnum_, _jelk, _loer_,\n  { {0x387f01f6, 0x7afd09e2, 0x6601021e, 0x00000000}},  //   _olur_, _awst, _melk,\n  { {0x249f009f, 0x6e3c002d, 0x66010010, 0x00000000}},  //   nnum_, serb, _lelk,\n  { {0x7d1c09e3, 0x6e3c033b, 0xc3480011, 0x00000000}},  // [da0] surs, perb, _xổ_,\n  { {0x6d45008d, 0x32050062, 0x387f09e4, 0x00000000}},  //   _fsha, naly_, _alur_,\n  { {0x386d0007, 0x387f04e2, 0x764809e5, 0x00000000}},  //   _boer_, _blur_, _rady,\n  { {0x7648011c, 0x7afd0544, 0x07a609e6, 0x00000000}},  //   _sady, _fwst, наен,\n  { {0x27290958, 0x61360047, 0x6601014a, 0x00000000}},  //   gún_, _külö, _belk,\n  { {0x66010428, 0x69dc0107, 0xc3480011, 0x00000000}},  //   _celk, _ugre, _rổ_,\n  { {0x2ca009e7, 0xc348001d, 0x249f009f, 0x00000000}},  //   onid_, _sổ_, fnum_,\n  { {0x249f009f, 0x545409e8, 0x95530076, 0x00000000}},  //   gnum_, твит, اخوا,\n  { {0xc7a30331, 0x660109e9, 0xb05b0039, 0x00000000}},  //   _битк, _felk, lläg,\n  { {0x2c7c008e, 0x320505f0, 0x2ca00048, 0x00000000}},  //   _oído_, galy_, hnid_,\n  { {0xb05b0039, 0x5a170049, 0xd6cf006d, 0x00000000}},  //   nläg, עקטן_, _اقل_,\n  { {0xc348001d, 0xbebb0065, 0x6f1d0210, 0x00000000}},  //   _tổ_, ntëv, tusc,\n  { {0x44260061, 0xb05b010f, 0x32050062, 0x00000000}},  //   _ico_, hläg, baly_,\n  { {0x6f1d09ea, 0xa01b010f, 0x7c2609eb, 0x00000000}},  //   rusc, chön, _ackr,\n  { {0xac95058d, 0x2ca0012d, 0xfe6e0014, 0x00000000}},  //   вавш, fnid_, تگي_,\n  { {0xdcb80265, 0x6f1d001a, 0x9404006b, 0x00000000}},  //   ещу_, pusc, timə_,\n  { {0x6497001a, 0x00d800f3, 0x92de0044, 0x00000000}},  // [db0] nţia, _ثبوت_, _তবু_,\n  { {0xdb260014, 0x2ca0006c, 0x9404006b, 0x00000000}},  //   ئولی, anid_, rimə_,\n  { {0x6d45000b, 0x387f0870, 0x94200061, 0x00000000}},  //   _usha, _plur_, _यांच_,\n  { {0x660100b0, 0xb06600b0, 0x272909ec, 0x00000000}},  //   _selk, mpää, tún_,\n  { {0xf7450898, 0x386d00c7, 0x6601021e, 0x00000000}},  //   тело, _voer_, _pelk,\n  { {0x272909ed, 0xe9d300a2, 0xbebb0023, 0x00000000}},  //   rún_, _مغز_, atëv,\n  { {0x66010224, 0x320509ee, 0x386d0007, 0x00000000}},  //   _velk, valy_, _toer_,\n  { {0x6601015c, 0x442600f6, 0x387f09ef, 0x00000000}},  //   _welk, _cco_, _ulur_,\n  { {0x249f000c, 0x320504b8, 0xd84200b9, 0x00000000}},  //   rnum_, taly_, áčů_,\n  { {0x4426027b, 0x249f000c, 0x425500e2, 0x00000000}},  //   _eco_, snum_, ттит,\n  { {0xb05b09f0, 0x442600d6, 0x249f000c, 0x00000000}},  //   kläd, _fco_, pnum_,\n  { {0x3e740039, 0xdee6007c, 0xcea90104, 0x00000000}},  //   _lätt_, коми, _וי_,\n  { {0x443f0129, 0xab5b0010, 0x10a309f1, 0x00000000}},  //   meu_, _szün, риян,\n  { {0x443f096b, 0x644b0129, 0x6da6051f, 0x00000000}},  //   leu_, _hagi, вига,\n  { {0x6f0d0035, 0x644b011c, 0x27ed01a2, 0x00000000}},  //   _evac, _kagi, _ofen_,\n  { {0x443f0129, 0x7f860025, 0x6f960025, 0x00000000}},  //   neu_, _للبن, _للعض,\n  { {0x644b006a, 0x7c2b09f2, 0x443f00d4, 0x00000000}},  // [dc0] _magi, ògra, ieu_,\n  { {0x644b09f3, 0x443f0065, 0xaa7b000c, 0x00000000}},  //   _lagi, heu_, _stýr,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x644b006a, 0x63a4009f, 0x7f560065, 0x00000000}},  //   _nagi, _þing, _kryq,\n  { {0x443f04bd, 0x27e009f4, 0xb05b0039, 0x00000000}},  //   deu_, žino_, släg,\n  { {0x7c240006, 0x7bc601d9, 0xbebb0065, 0x00000000}},  //   lgir, _izku, stëv,\n  { {0x92de0055, 0xc5d50055, 0x644b0149, 0x00000000}},  //   _তবে_, _স্বপ, _bagi,\n  { {0x7c2409f5, 0x38c801ef, 0x443f0129, 0x00000000}},  //   ngir, _سازی_, geu_,\n  { {0x644b09f6, 0x44260093, 0xb05b00f8, 0x00000000}},  //   _dagi, _vco_, kmär,\n  { {0x78a20062, 0x7c24000a, 0x64970035, 0x00000000}},  //   lnov, hgir, rţia,\n  { {0x443f09f7, 0x6f0d09f8, 0x644b09f9, 0x00000000}},  //   beu_, _svac, _fagi,\n  { {0x0446045e, 0x443f02d5, 0x78a209fa, 0x00000000}},  //   _једн, ceu_, nnov,\n  { {0x6440014a, 0x7c24017b, 0x442406e9, 0x00000000}},  //   memi, dgir, mgm_,\n  { {0x6497001a, 0x442409fb, 0x7c240032, 0x00000000}},  //   nţin, lgm_, egir,\n  { {0x3e740073, 0x644b0061, 0xac2700ed, 0x00000000}},  //   _rätt_, _yagi, кфак,\n  { {0x78a209fc, 0x644009fd, 0x3e740073, 0x00000000}},  //   jnov, nemi, _sätt_,\n  { {0x5a350200, 0xbebb0065, 0xb05b09fe, 0x00000000}},  // [dd0] лнат, ftët, smäs,\n  { {0x644009ff, 0x443f000d, 0xdce70036, 0x00000000}},  //   hemi, zeu_, zyję,\n  { {0x7bc6002d, 0x443f0011, 0x64400a00, 0x00000000}},  //   _ezku, yeu_, kemi,\n  { {0x443f0a01, 0x78a20062, 0x64870a02, 0x00000000}},  //   xeu_, gnov, _iñig,\n  { {0x644b0a03, 0x443f09f7, 0x8c1a0104, 0x00000000}},  //   _ragi, veu_, _אורי,\n  { {0x644b0a04, 0x332d0066, 0x00000000, 0x00000000}},  //   _sagi, vtex_,   ,\n  { {0x644b0a05, 0x443f0a06, 0x6440009d, 0x00000000}},  //   _pagi, teu_, femi,\n  { {0x69c70059, 0x64400004, 0x332d01d5, 0x00000000}},  //   _izje, gemi, ttex_,\n  { {0x443f0a07, 0x91e500d7, 0x2cb90022, 0x00000000}},  //   reu_, лопе, _mksd_,\n  { {0x443f0a08, 0x644b0a09, 0x332d0133, 0x00000000}},  //   seu_, _wagi, rtex_,\n  { {0xe4e701fb, 0x644b0039, 0x443f0a0a, 0x00000000}},  //   _різн, _tagi, peu_,\n  { {0xa3550151, 0xbebb0065, 0x644b00e7, 0x00000000}},  //   _مختص, ktës, _uagi,\n  { {0xbebb008d, 0x6d57006b, 0x6d4101df, 0x00000000}},  //   jtës, _arxa, çlan,\n  { {0x78a20059, 0x539a00a3, 0xdee302dc, 0x00000000}},  //   znov, _אינו, сори,\n  { {0x6497001a, 0x7c240a0b, 0x78a20a0c, 0x00000000}},  //   nţio, tgir, ynov,\n  { {0xb05b0004, 0xdd8f0025, 0xbebb0023, 0x00000000}},  //   smär, سوق_, ftës,\n  { {0xb05b0039, 0x69c70066, 0x5f460014, 0x00000000}},  // [de0] pmär, _azje, _صندل,\n  { {0x7c2400f8, 0x64400036, 0x8af0006b, 0x00000000}},  //   sgir, zemi, vvəd,\n  { {0x64400a0d, 0x7c2400d4, 0xdce80089, 0x00000000}},  //   yemi, pgir, ēlēt,\n  { {0xe3a7007a, 0x64400288, 0x66e60816, 0x00000000}},  //   _هر_, xemi, года,\n  { {0x78a20142, 0x64400a0e, 0x2bba0025, 0x00000000}},  //   rnov, vemi, _ساحة_,\n  { {0x78a20a0f, 0x09e30256, 0x00000000, 0x00000000}},  //   snov, _горн,   ,\n  { {0x6440011f, 0xafdb05b7, 0x6497001a, 0x00000000}},  //   temi, ndør, rţin,\n  { {0x6497001a, 0x62830a10, 0xe31400e2, 0x00000000}},  //   sţin, _alno, амињ,\n  { {0x6d580a11, 0xf20607e1, 0x00000000, 0x00000000}},  //   _šval, ляно,   ,\n  { {0x7ae6008a, 0x67220006, 0x86c60025, 0x00000000}},  //   _mukt, muoj, _صيان,\n  { {0x27e90059, 0x6440023a, 0x7ae60039, 0x00000000}},  //   žane_, pemi, _lukt,\n  { {0xf993019b, 0x6497001a, 0x26de004a, 0x00000000}},  //   מרת_, nţil, _hito_,\n  { {0x6722010a, 0xf4870167, 0x26de0006, 0x00000000}},  //   nuoj, _حالی, _kito_,\n  { {0xc7b30104, 0xb05b0788, 0x0cbf0309, 0x00000000}},  //   מבר_, fläc, ्ष्म,\n  { {0x7ae600eb, 0x26de0207, 0x6ca70a12, 0x00000000}},  //   _aukt, _mito_, граж,\n  { {0x629a0a13, 0x26de025e, 0x1f750242, 0x00000000}},  //   lito, _lito_, _влия,\n  { {0x200b09c6, 0x26de0181, 0x60cd0058, 0x00000000}},  // [df0] maci_, _oito_, _iham,\n  { {0x44ea028c, 0x200b00b9, 0x26de006a, 0x00000000}},  //   _où_, laci_, _nito_,\n  { {0x81b60044, 0x60cd01a3, 0xbebb0065, 0x00000000}},  //   চের_, _kham, stës,\n  { {0x200b0a14, 0x89340054, 0xa5650014, 0x00000000}},  //   naci_, إعلا, یگان,\n  { {0x629a0020, 0x67220006, 0x26de0146, 0x00000000}},  //   kito, guoj, _bito_,\n  { {0x629a000b, 0x8704007c, 0x44ea0011, 0x00000000}},  //   jito, сяце, _bù_,\n  { {0x26de006a, 0x6f1d010f, 0x200b00b9, 0x00000000}},  //   _dito_, hrsc, kaci_,\n  { {0x200b0868, 0x44ea001d, 0x628800b0, 0x00000000}},  //   jaci_, _dù_, ehdo,\n  { {0x6b8d0a15, 0xc4820088, 0x200b05c5, 0x00000000}},  //   nzag, ільк, daci_,\n  { {0x68e70065, 0x6595007e, 0x629a01b1, 0x00000000}},  //   _kujd, _казу, gito,\n  { {0x7643010a, 0x4254007e, 0x200b0a16, 0x00000000}},  //   meny, стыт, faci_,\n  { {0x60cd0a17, 0x200b00b9, 0x76430a18, 0x00000000}},  //   _cham, gaci_, leny,\n  { {0x60cd000b, 0xe1ee0920, 0xdee6007c, 0x00000000}},  //   _dham, _мг_, роги,\n  { {0x629a0142, 0x6288059c, 0x78a90243, 0x00000000}},  //   cito, chdo, _ljev,\n  { {0x75230a19, 0x78bb0009, 0x67220006, 0x00000000}},  //   nunz, _okuv, zuoj,\n  { {0x60cd002b, 0x200b0197, 0x76430010, 0x00000000}},  //   _gham, caci_, heny,\n  { {0x76430a1a, 0x4e1a007c, 0xbebb0065, 0x00000000}},  // [e00] keny, _июня_, rtër,\n  { {0x75230a1b, 0xda790088, 0xef1f0010, 0x00000000}},  //   kunz, ляє_, zzük_,\n  { {0xfe37007b, 0x26de011c, 0x960b0044, 0x00000000}},  //   _דריי_, _rito_, রলাম_,\n  { {0x26de0198, 0x6288008d, 0x3136007b, 0x00000000}},  //   _sito_, zhdo, ינעם_,\n  { {0x78a90a1c, 0x26de0a1d, 0x87030a1e, 0x00000000}},  //   _djev, _pito_, ояще,\n  { {0x7523000b, 0x200b00b9, 0x67220006, 0x00000000}},  //   funz, zaci_, ruoj,\n  { {0x629a00b9, 0x32180036, 0x26de0197, 0x00000000}},  //   vito, órym_, _vito_,\n  { {0x26de0020, 0x6b9b003b, 0x78a90056, 0x00000000}},  //   _wito_, _žugi, _gjev,\n  { {0x629a001a, 0x26de0a1f, 0x32070a20, 0x00000000}},  //   tito, _tito_, _beny_,\n  { {0x60cd002a, 0x320708e2, 0xab5b0047, 0x00000000}},  //   _sham, _ceny_, _szük,\n  { {0x68e0005d, 0x6b8d0197, 0x60cd0082, 0x00000000}},  //   _kimd, zzag, _pham,\n  { {0x859b009b, 0x6f040009, 0x757b0049, 0x00000000}},  //   _בשבו, _bwic, _שטאפ,\n  { {0x200b00b9, 0x3eb803a1, 0x2486012d, 0x00000000}},  //   raci_, fort_, _ilom_,\n  { {0x200b041a, 0x6f1d0a21, 0x66080087, 0x00000000}},  //   saci_, rrsc, _jedk,\n  { {0xa3ea001c, 0x60cd0020, 0xbc0709f1, 0x00000000}},  //   _मला_, _tham, ичай,\n  { {0x60cd0020, 0x320c0161, 0x6b8d002d, 0x00000000}},  //   _uham, lady_, tzag,\n  { {0xa3ca0061, 0x764300e7, 0x00000000, 0x00000000}},  // [e10] ळेच_, yeny,   ,\n  { {0x78a90243, 0x78bb02c3, 0x62860065, 0x00000000}},  //   _sjev, _skuv, ëkoh,\n  { {0x78a90243, 0xbebb0065, 0x7ed40025, 0x00000000}},  //   _pjev, rrëd, _بزيا,\n  { {0x7643005b, 0x25470010, 0x66080288, 0x00000000}},  //   weny, _ről_, _aedk,\n  { {0xa01b01a2, 0x78a9016e, 0x62980116, 0x00000000}},  //   rhöh, _vjev, _omvo,\n  { {0x7bda009b, 0x75230020, 0x24860a22, 0x00000000}},  //   _תקשו, tunz, _alom_,\n  { {0x24860a23, 0x2bdb0061, 0x32070a24, 0x00000000}},  //   _blom_, _मृता, _reny_,\n  { {0x76430a25, 0x68e00006, 0x78bb0009, 0x00000000}},  //   seny, _gimd, _ukuv,\n  { {0x75230207, 0x764306fe, 0x6487004a, 0x00000000}},  //   sunz, peny, _añic,\n  { {0xf6740054, 0x75230a26, 0x25470010, 0x00000000}},  //   _والخ, punz, _től_,\n  { {0x6f040145, 0xd00a0a27, 0x3eb80a28, 0x00000000}},  //   _swic, лене_, vort_,\n  { {0x3eb8001f, 0xb7bd001a, 0x2009001a, 0x00000000}},  //   wort_, _acţi, _ceai_,\n  { {0xd12e00d3, 0x3eb80010, 0x42d50088, 0x00000000}},  //   ومی_, tort_, _ліку,\n  { {0x201e0a29, 0x24860253, 0xddde00e5, 0x00000000}},  //   şti_, _zlom_, _copş,\n  { {0x22450a2a, 0x80f50025, 0x3eb805b4, 0x00000000}},  //   melk_, _استض, rort_,\n  { {0x27e0089f, 0xb05b0a2b, 0x6f0400ab, 0x00000000}},  //   žini_, llän, _twic,\n  { {0x3eb80a2c, 0x7c360a2d, 0x00000000, 0x00000000}},  // [e20] port_, rfyr,   ,\n  { {0xb05b0210, 0x62810a2e, 0xa96a005e, 0x00000000}},  //   nlän, nklo, лиза_,\n  { {0x66080059, 0xb05b0210, 0xfeba00a1, 0x00000000}},  //   _redk, ilän, _لاگت_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x68fb073a, 0xb05b0a2f, 0x00000000, 0x00000000}},  //   _čude, klän,   ,\n  { {0xfd65001d, 0x00000000, 0x00000000, 0x00000000}},  //   _nguồ,   ,   ,\n  { {0x99860054, 0x660805b7, 0x5d7a0049, 0x00000000}},  //   _الأو, _vedk, טאַק,\n  { {0x62810168, 0x00000000, 0x00000000, 0x00000000}},  //   eklo,   ,   ,\n  { {0xc4450014, 0x7786003b, 0xf3ef0025, 0x00000000}},  //   زیون_, _улаз, رأي_,\n  { {0x32660a30, 0x2732001a, 0xe5a600d7, 0x00000000}},  //   стив, mân_, _лизи,\n  { {0x320c0a31, 0xd257008b, 0xaabb0049, 0x00000000}},  //   rady_, сцы_, רזיכ,\n  { {0x320c0a32, 0x629d009d, 0x62810168, 0x00000000}},  //   sady_, ésor, aklo,\n  { {0x320c067f, 0x937a0445, 0xdb0f00fa, 0x00000000}},  //   pady_, _حصار_, _excê,\n  { {0xacf90a33, 0xddde0173, 0x00000000, 0x00000000}},  //   ингу_, _enpō,   ,\n  { {0x403501be, 0x27320016, 0x00000000, 0x00000000}},  //   _дейс, hân_,   ,\n  { {0xa0a40080, 0xce33007a, 0xd011025a, 0x00000000}},  //   _најд, _کودک, _کلک_,\n  { {0xf09f0129, 0x3a750545, 0x00000000, 0x00000000}},  // [e30] mià_, олар,   ,\n  { {0x9e070200, 0xf09f0129, 0x00000000, 0x00000000}},  //   _учил, lià_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x50c9007d, 0x00000000, 0x00000000, 0x00000000}},  //   रतिष,   ,   ,\n  { {0xf10502fb, 0x2ca90a34, 0x628104a5, 0x00000000}},  //   _शब्द_, mnad_, yklo,\n  { {0x45190001, 0x2ca902e1, 0xf09f0026, 0x00000000}},  //   ация_, lnad_, hià_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x2ca90004, 0x833900ed, 0xf1c3013e, 0x00000000}},  //   nnad_, ачот_, _liší_,\n  { {0x6497001a, 0x2d8c004a, 0xb05b04ce, 0x00000000}},  //   nţii, údez_, tlän,\n  { {0xe299012b, 0x2ca90016, 0x7c2f01c3, 0x00000000}},  //   рао_, hnad_, _lccr,\n  { {0xc66801f9, 0xb05b0002, 0xe04604ef, 0x00000000}},  //   _уште_, rlän, онни,\n  { {0x628101d6, 0x61fc0279, 0xb05b0a35, 0x00000000}},  //   sklo, ırla, slän,\n  { {0xb05b01a2, 0x2d910026, 0x7e770203, 0x00000000}},  //   plän, ezze_, _boxp,\n  { {0x7c2f062a, 0x0eba0147, 0x2eb403d7, 0x00000000}},  //   _accr, румы_, ंकेत,\n  { {0x1d0a0545, 0x00000000, 0x00000000, 0x00000000}},  //   реби_,   ,   ,\n  { {0x90c301be, 0x9f5201aa, 0x248d00b5, 0x00000000}},  //   _обще, _deyò_, nhem_,\n  { {0x8af7005f, 0x443d01c3, 0x2d910026, 0x00000000}},  // [e40] _şəra, _mbw_, azze_,\n  { {0xa01b0a36, 0x443d01d6, 0x4a4300ed, 0x00000000}},  //   nkön, _lbw_, мнув,\n  { {0x443d0a37, 0x02b60049, 0xdb0600f8, 0x00000000}},  //   _obw_, קלעך_, _nykö,\n  { {0xd7f00025, 0xa01b0052, 0x00000000, 0x00000000}},  //   ركت_, hkön,   ,\n  { {0x05260055, 0x6497001a, 0x248d0829, 0x00000000}},  //   _মনের_, cţii, dhem_,\n  { {0x057601d8, 0x63a4010a, 0x6d5e00d0, 0x00000000}},  //   قاعد, _žino, _krpa,\n  { {0x248d002b, 0x443d0133, 0x00000000, 0x00000000}},  //   fhem_, _bbw_,   ,\n  { {0x69ce0a38, 0x248d00f8, 0x7d7b0049, 0x00000000}},  //   _izbe, ghem_, ינצו,\n  { {0x6843008b, 0xe3af00a1, 0xd7ef0025, 0x00000000}},  //   _інфа, ہری_, _شكل_,\n  { {0xa5f7012b, 0x442f0253, 0x443d01c3, 0x00000000}},  //   _међу_, _ecg_, _ebw_,\n  { {0xe3af00a6, 0xdb0f0a39, 0x21660088, 0x00000000}},  //   فری_, _excè, ітог,\n  { {0x248d0a3a, 0x442f0093, 0x27e00213, 0x00000000}},  //   chem_, _gcg_, žinu_,\n  { {0x14d70049, 0xf09f0129, 0x6722004a, 0x00000000}},  //   _וואל_, rià_, nroj,\n  { {0x6263005e, 0x69ce0a3b, 0x9f520173, 0x00000000}},  //   _овча, _ozbe, _peyò_,\n  { {0x2d85004f, 0x628a001a, 0xb05b0a3c, 0x00000000}},  //   ále_, _ilfo, lläm,\n  { {0xbca50025, 0x67220a3d, 0x6fd30309, 0x00000000}},  //   أمري, kroj, _सरपं,\n  { {0x2d850091, 0x2ca900ea, 0x6d5e0058, 0x00000000}},  // [e50] šle_, rnad_, _erpa,\n  { {0x67220a3e, 0x248d0645, 0xc5e400a1, 0x00000000}},  //   droj, zhem_, _لۓ_,\n  { {0xdcef0089, 0x5f740014, 0x6aae0146, 0x00000000}},  //   ēdēt, _فایر, _djbf,\n  { {0x63ad000c, 0x249f062a, 0x00000000, 0x00000000}},  //   _þang, xium_,   ,\n  { {0x69ce0a3f, 0xae1f013d, 0x442f012d, 0x00000000}},  //   _ezbe, _बयान_, _rcg_,\n  { {0x7bda009b, 0x442f0a40, 0x249f0a41, 0x00000000}},  //   _לקרו, _scg_, wium_,\n  { {0xa8a7007c, 0x20020036, 0x248d02f1, 0x00000000}},  //   _драк, ybki_, them_,\n  { {0x7c2d0a42, 0x628a0779, 0x67220091, 0x00000000}},  //   ngar, _alfo, broj,\n  { {0x248d0a43, 0x7c2d0032, 0xec790082, 0x00000000}},  //   rhem_, igar, _độc_,\n  { {0x248d008d, 0x7c2d018e, 0xc879014a, 0x00000000}},  //   shem_, hgar, _hoş_,\n  { {0x63ad0107, 0x6b890036, 0x78ab0082, 0x00000000}},  //   _žand, _żegl, ongv,\n  { {0x628a0047, 0x2eb60164, 0x443d0a44, 0x00000000}},  //   _elfo, ृत्त, _ubw_,\n  { {0xe28e00aa, 0x44f102d5, 0x6d5e0209, 0x00000000}},  //   _за_, _há_, _srpa,\n  { {0x7c2d0207, 0x644906c0, 0x00000000, 0x00000000}},  //   egar, leei,   ,\n  { {0x44f10a45, 0x68fe0009, 0x6722012d, 0x00000000}},  //   _já_, xppd, zroj,\n  { {0x7c2d0a46, 0xb5fc0066, 0x644900ea, 0x00000000}},  //   ggar, _anġl, neei,\n  { {0x44f10a47, 0x442d0a48, 0xfbd1026c, 0x00000000}},  // [e60] _lá_, ige_, ہتے_,\n  { {0x20d20051, 0x7c2d0a49, 0x68fe0009, 0x00000000}},  //   sáid_, agar, tppd,\n  { {0x44f10a4a, 0xc879005d, 0xd7fa01bd, 0x00000000}},  //   _ná_, _boş_, бул_,\n  { {0x67220161, 0xc8790a4b, 0x26c701ee, 0x00000000}},  //   troj, _coş_, elno_,\n  { {0x442d0038, 0x27e0021e, 0x6d5c0007, 0x00000000}},  //   dge_, äin_, lvra,\n  { {0xa96a017a, 0x67220065, 0x44f10011, 0x00000000}},  //   _лига_, rroj, _bá_,\n  { {0x44f10a4c, 0x69ce0a4d, 0x6d5c02ae, 0x00000000}},  //   _cá_, _uzbe, nvra,\n  { {0x67220089, 0x44f1002a, 0x442d0374, 0x00000000}},  //   proj, _dá_, gge_,\n  { {0x68ee0022, 0xa01b04ce, 0x00000000, 0x00000000}},  //   _hubd, khör,   ,\n  { {0x44f10a4e, 0x442d0866, 0x8af0005f, 0x00000000}},  //   _fá_, age_, vvəl,\n  { {0x44f1002a, 0x7c2d0006, 0x044602b8, 0x00000000}},  //   _gá_, ygar, _нежн,\n  { {0xc879006b, 0x84960a4f, 0x232a0216, 0x00000000}},  //   _xoş_, _عجائ, _годи_,\n  { {0x4abe007d, 0xb05b00b0, 0x7c2d02a9, 0x00000000}},  //   ्ताव, lläk, vgar,\n  { {0x68fc0089, 0x2ee501a2, 0x7c2d00d9, 0x00000000}},  //   _otrd, ölf_, wgar,\n  { {0x291c0a50, 0xd23b009b, 0xdb1d00b9, 0x00000000}},  //   ával_, _הגול, _vysí,\n  { {0x7c2d0a51, 0xd1380a52, 0xb4fb00a3, 0x00000000}},  //   ugar, mtą_, מפלי,\n  { {0x7c2d009f, 0x78a20a53, 0x64970a54, 0x00000000}},  // [e70] rgar, diov, cţiu,\n  { {0x7c2d022b, 0x6ce70088, 0xd1380a55, 0x00000000}},  //   sgar, _німе, otą_,\n  { {0xd1380006, 0x442d08c8, 0x9f590919, 0x00000000}},  //   ntą_, yge_, pasó_,\n  { {0x44f10a56, 0x78a20a57, 0xd1380006, 0x00000000}},  //   _rá_, giov, itą_,\n  { {0xb8f402d2, 0x2918003b, 0x44f1009f, 0x00000000}},  //   _सी_, _evra_, _sá_,\n  { {0x44f100b9, 0xd1380006, 0x764a00eb, 0x00000000}},  //   _pá_, ktą_, gefy,\n  { {0x442d04bd, 0x2d83010a, 0xe6100076, 0x00000000}},  //   tge_, nyje_, اشه_,\n  { {0x44f10a58, 0x442d0a59, 0x6d450146, 0x00000000}},  //   _vá_, uge_, _mpha,\n  { {0x44f10011, 0x6d450919, 0x6d5c0466, 0x00000000}},  //   _wá_, _lpha, zvra,\n  { {0x44f10195, 0x6d450a5a, 0xe2990088, 0x00000000}},  //   _tá_, _opha, іан_,\n  { {0xbebb0023, 0x442d00f8, 0x00000000, 0x00000000}},  //   trën, pge_,   ,\n  { {0xbe250055, 0xa06a003b, 0x7afd006c, 0x00000000}},  //   ম্মদ_, цама_, _otst,\n  { {0x3ea30a5b, 0x7afd01d6, 0xa01b06d3, 0x00000000}},  //   fijt_, _ntst, thör,\n  { {0x68fb0091, 0xdd9200a6, 0x6d5c0023, 0x00000000}},  //   _čudn, پور_, tvra,\n  { {0x7afd0a5c, 0xed5701bd, 0xa01b0a5d, 0x00000000}},  //   _atst, мор_, rhör,\n  { {0x69da0181, 0x6d5c0a5e, 0xa01b06d3, 0x00000000}},  //   _útei, rvra, shör,\n  { {0x7ae70a5b, 0x68fc00ca, 0x6d5c0112, 0x00000000}},  // [e80] _bijt, _strd, svra,\n  { {0x68ee0a5f, 0xab5b0010, 0x7aef0a60, 0x00000000}},  //   _pubd, _gyüm, _duct,\n  { {0xceb3007b, 0xbebb0065, 0x994a0380, 0x00000000}},  //   _ביז_, ytëz, تلال_,\n  { {0x672b0a61, 0x7aef00e5, 0xcb6a0545, 0x00000000}},  //   fugj, _fuct, _даме_,\n  { {0x78a20161, 0x7bc6014a, 0x60c400e7, 0x00000000}},  //   riov, _uyku, _mkim,\n  { {0xd1380a62, 0xa92601fc, 0x6eeb0066, 0x00000000}},  //   ytą_, _одгл, _użbe,\n  { {0x98a6017a, 0x250700a1, 0x764a0016, 0x00000000}},  //   _живе, ورٹی_, refy,\n  { {0x7afd00ea, 0x764a0016, 0x00000000, 0x00000000}},  //   _ytst, sefy,   ,\n  { {0x98a3004d, 0x6b840a63, 0xb05b00f8, 0x00000000}},  //   _рите, nyig, släk,\n  { {0x60c40a64, 0x325401ff, 0xa01b01a2, 0x00000000}},  //   _akim, хвор, rköm,\n  { {0x60f803e8, 0x403502dc, 0x6b840a65, 0x00000000}},  //   яння_, ненс, hyig,\n  { {0xd1380a66, 0x60d6018e, 0x42ce0044, 0x00000000}},  //   rtą_, _chym, রদেশ,\n  { {0xd1380a67, 0x32050a68, 0x00000000, 0x00000000}},  //   stą_, bbly_,   ,\n  { {0x60c40a69, 0x2d830006, 0x2bd5007d, 0x00000000}},  //   _ekim, tyje_, _दरबा,\n  { {0x68fb0627, 0x6d580006, 0x7ae700bb, 0x00000000}},  //   _čudo, _švar, _rijt,\n  { {0x96140044, 0x2d830006, 0xbf350088, 0x00000000}},  //   সলিম_, ryje_, _знищ,\n  { {0x3f4f01d5, 0x7ebf00b9, 0x92c20044, 0x00000000}},  // [e90] _użu_, tápě, ্দী_,\n  { {0x6f0d0117, 0x2d830006, 0x2a6a00c4, 0x00000000}},  //   _iwac, pyje_, _cnbb_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x38690841, 0xc879047f, 0x80d10044, 0x00000000}},  //   ñar_, _kişi_, _সূত্,\n  { {0x7afd01c9, 0x3669003b, 0xfc3f0010, 0x00000000}},  //   _utst, зало_, _amíg_,\n  { {0x29010061, 0xaa4500b0, 0x6f0d00e7, 0x00000000}},  //   ppha_, ävää_, _mwac,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xa3ba007d, 0xf99200b3, 0x6aa50022, 0x00000000}},  //   _आँख_, _ערן_, lihf,\n  { {0x27ed0a6a, 0x60d60a6b, 0x00000000, 0x00000000}},  //   _igen_, _rhym,   ,\n  { {0x68e90a6c, 0x60d604a5, 0x00000000, 0x00000000}},  //   _hied, _shym,   ,\n  { {0x68e90046, 0x32050007, 0x00000000, 0x00000000}},  //   _kied, rbly_,   ,\n  { {0x6f0d0a5f, 0x2280000a, 0x62880133, 0x00000000}},  //   _bwac, _bòks_, akdo,\n  { {0x68e90a6d, 0x443f0a6e, 0x00000000, 0x00000000}},  //   _mied, mfu_,   ,\n  { {0x443f088f, 0x5239007b, 0x68e901c3, 0x00000000}},  //   lfu_, _זײַנ, _lied,\n  { {0xfaff008d, 0x64590a6f, 0x7bcb010f, 0x00000000}},  //   _atë_, _kawi, ügun,\n  { {0x68e90a70, 0x60c4000b, 0x63a4010a, 0x00000000}},  //   _nied, _ukim, _žini,\n  { {0x6d41011f, 0x64590020, 0x443f0020, 0x00000000}},  // [ea0] çlar, _mawi, ifu_,\n  { {0x27ed0169, 0x64590a71, 0x00000000, 0x00000000}},  //   _agen_, _lawi,   ,\n  { {0x68e90a72, 0x20120a73, 0x9c8300ca, 0x00000000}},  //   _bied, _keyi_, ščav,\n  { {0x7e7e0073, 0x64590036, 0xb5fc002b, 0x00000000}},  //   _hopp, _nawi, _inġi,\n  { {0x7e7e0a5e, 0x1754007c, 0xe7c00044, 0x00000000}},  //   _kopp, твля, েশ্য,\n  { {0x27ed05cb, 0x443f0020, 0x7e7e0a74, 0x00000000}},  //   _egen_, efu_, _jopp,\n  { {0x80d10055, 0x443f0016, 0x7e7e0a75, 0x00000000}},  //   _সংস্, ffu_, _mopp,\n  { {0x7e7e021e, 0xd497007c, 0x68e90a76, 0x00000000}},  //   _lopp, ерь_, _gied,\n  { {0x64590a77, 0x82a60a78, 0x7e7e0052, 0x00000000}},  //   _dawi, ешне, _oopp,\n  { {0x68e9001e, 0x443f0a79, 0x07a30242, 0x00000000}},  //   _zied, afu_, _саун,\n  { {0xc5690025, 0x3ce10061, 0x00000000, 0x00000000}},  //   _يحمل_, _कळले_,   ,\n  { {0x6459006a, 0x92c20044, 0x765a0a7a, 0x00000000}},  //   _gawi, ্দে_, _haty,\n  { {0x765a000a, 0x7e7e01ee, 0x00000000, 0x00000000}},  //   _katy, _bopp,   ,\n  { {0x64590046, 0x7e7e051b, 0xa6e70082, 0x00000000}},  //   _zawi, _copp, _nhữ,\n  { {0x7e7e09fa, 0x765a0a7b, 0x20d20051, 0x00000000}},  //   _dopp, _maty, máin_,\n  { {0x6ca40a7c, 0x765a01d6, 0x20d20051, 0x00000000}},  //   груж, _laty, láin_,\n  { {0x68e9002b, 0xfaf30084, 0x5a350893, 0x00000000}},  // [eb0] _ried, اثر_, кнат,\n  { {0x765a0a7d, 0x68e90036, 0x20d20051, 0x00000000}},  //   _naty, _sied, náin_,\n  { {0x68e9001e, 0x39470129, 0x48150242, 0x00000000}},  //   _pied, ïns_, вмес,\n  { {0x20d2002a, 0xe0df0263, 0x7e7e0a7e, 0x00000000}},  //   háin_, nmò_, _zopp,\n  { {0x68e90a7f, 0x20d90051, 0xed590089, 0x00000000}},  //   _vied, méid_, āžu_,\n  { {0x68e90a80, 0x945d0036, 0x645904cb, 0x00000000}},  //   _wied, końc, _sawi,\n  { {0x68e9021e, 0x64590a81, 0x20d20051, 0x00000000}},  //   _tied, _pawi, dáin_,\n  { {0x27ed0030, 0x20d90051, 0x69d601f5, 0x00000000}},  //   _ugen_, néid_, _भरती,\n  { {0x645b0007, 0x443f0a82, 0x00000000, 0x00000000}},  //   rdui, rfu_,   ,\n  { {0x09e50055, 0x6459000b, 0x2362000c, 0x00000000}},  //   _প্যা, _wawi, ækja_,\n  { {0x20120607, 0x81c90055, 0x443f0009, 0x00000000}},  //   _peyi_, লেন_, pfu_,\n  { {0x387f028c, 0x7e7e0a83, 0x7e0a007d, 0x00000000}},  //   _jour_, _sopp, वर्ग_,\n  { {0xa4d401fb, 0x08760049, 0x0478025a, 0x00000000}},  //   _соці, דערט_, _سلوک_,\n  { {0x9f9e0181, 0xe0df0026, 0x387f000a, 0x00000000}},  //   _ação_, amò_, _lour_,\n  { {0x71640025, 0x386d0085, 0x00000000, 0x00000000}},  //   _مايك, _oner_,   ,\n  { {0x09b00055, 0x387f0a84, 0x00000000, 0x00000000}},  //   _করলা, _nour_,   ,\n  { {0xf412007b, 0x69d50197, 0xebe60a85, 0x00000000}},  // [ec0] יפן_, _azze, тоап,\n  { {0x386d0190, 0xdee60745, 0x0d860478, 0x00000000}},  //   _aner_, _шопи, _алон,\n  { {0x386d0093, 0x387f0a86, 0xceb900b9, 0x00000000}},  //   _bner_, _bour_, éře_,\n  { {0x387f00f4, 0x765a0036, 0x20d90a87, 0x00000000}},  //   _cour_, _saty, céid_,\n  { {0x765a010a, 0x69d50047, 0x387f0685, 0x00000000}},  //   _paty, _ezze, _dour_,\n  { {0x6f02011f, 0x64950051, 0xa6340088, 0x00000000}},  //   _çocu, _láid, ункі,\n  { {0x387f0a88, 0xc60b0044, 0x64b3001a, 0x00000000}},  //   _four_, _রাখা_, răin,\n  { {0xb4cc0061, 0x2cb20544, 0x00000000, 0x00000000}},  //   ळते_, nnyd_,   ,\n  { {0x20d20051, 0xd2500025, 0x765a0a89, 0x00000000}},  //   táin_, منة_, _taty,\n  { {0x7c290089, 0x00000000, 0x00000000, 0x00000000}},  //   _ķerm,   ,   ,\n  { {0x387f0a8a, 0x63ad009f, 0x20d203df, 0x00000000}},  //   _your_, _þann, ráin_,\n  { {0x20d2002a, 0x63a4010a, 0x661800ca, 0x00000000}},  //   sáin_, _žinu, lavk,\n  { {0x44f80a8b, 0xe0df0197, 0x20d20051, 0x00000000}},  //   _hé_, rmò_, máil_,\n  { {0x6fe90089, 0x768f00ea, 0x44f80082, 0x00000000}},  //   _rīcī, _løyn, _ké_,\n  { {0x3958012d, 0xac950140, 0x00000000, 0x00000000}},  //   _nsrs_, гавш,   ,\n  { {0x44f80195, 0x273b00ad, 0x80d10044, 0x00000000}},  //   _mé_, yên_, _সূর্,\n  { {0x44f80048, 0x3084006d, 0xdad9003b, 0x00000000}},  // [ed0] _lé_, _خليف, емац_,\n  { {0x20d2002a, 0x20190a8c, 0x7e5501fb, 0x00000000}},  //   háil_, lasi_, _своє,\n  { {0x387f0a8d, 0x44f80a8e, 0x20d90051, 0x00000000}},  //   _pour_, _né_, péid_,\n  { {0x20190a8f, 0xdb1d00b0, 0xb4cc0061, 0x00000000}},  //   nasi_, _pysä, ळतो_,\n  { {0xfeb80a90, 0x9cd6061e, 0x20d2002a, 0x00000000}},  //   _سایت_, _תורה_, dáil_,\n  { {0x2ca9018e, 0x44f80a91, 0x2557005f, 0x00000000}},  //   liad_, _bé_, _hələ_,\n  { {0x20190149, 0x44f8002a, 0x8883007a, 0x00000000}},  //   kasi_, _cé_, _پیشن,\n  { {0x236601cd, 0x20d2002a, 0x2ca9018e, 0x00000000}},  //   _broj_, gáil_, niad_,\n  { {0x2019023a, 0x69da00b9, 0x661804eb, 0x00000000}},  //   dasi_, _úter, bavk,\n  { {0x44f80a92, 0x2019001a, 0x2ca90016, 0x00000000}},  //   _fé_, easi_, hiad_,\n  { {0x2019000b, 0xe43500f3, 0x2366002b, 0x00000000}},  //   fasi_, _مفاد, _eroj_,\n  { {0x20190a93, 0x20d20051, 0x672b0023, 0x00000000}},  //   gasi_, cáil_, orgj,\n  { {0x2ca9018e, 0x324500ed, 0x44f80181, 0x00000000}},  //   diad_, _белг, _zé_,\n  { {0xed5a012b, 0x248d0224, 0xf2070077, 0x00000000}},  //   ног_, lkem_, _рядо,\n  { {0x2ca9018e, 0xf8b301f5, 0x20190020, 0x00000000}},  //   fiad_, ंचाय, basi_,\n  { {0x2ca9018e, 0x6abe0309, 0x1bea0a94, 0x00000000}},  //   giad_, ्त्र, едби_,\n  { {0xab66045a, 0x7c2b0a58, 0xb05b0039, 0x00000000}},  // [ee0] ывал, ógra, rlät,\n  { {0x248d0004, 0x68f5014a, 0xb86500a6, 0x00000000}},  //   hkem_, _buzd, یانو,\n  { {0xb05b010f, 0xdca601c0, 0x2ca90016, 0x00000000}},  //   plät, _бани, biad_,\n  { {0x44f80a95, 0x63b6000c, 0x2ca90016, 0x00000000}},  //   _ré_, _þyng, ciad_,\n  { {0x44f80a96, 0x248d00b9, 0xc60b0044, 0x00000000}},  //   _sé_, dkem_, _রাজা_,\n  { {0x44f80a97, 0x4ab80309, 0x248d00bb, 0x00000000}},  //   _pé_, _आदिव, ekem_,\n  { {0x20d2002a, 0x2019027d, 0x2b400a98, 0x00000000}},  //   táil_, yasi_, ltic_,\n  { {0x44f80011, 0x768f00ea, 0x6f0404eb, 0x00000000}},  //   _vé_, _høyl, _otic,\n  { {0x20d2002a, 0xe80a001c, 0x36360151, 0x00000000}},  //   ráil_, _ह्या_, _مراس,\n  { {0x44f80a99, 0x20d20051, 0x20190a9a, 0x00000000}},  //   _té_, sáil_, wasi_,\n  { {0x20190149, 0x326307d0, 0x6f04008e, 0x00000000}},  //   tasi_, стыв, _atic,\n  { {0x68e20302, 0x6f1d0a9b, 0x248d013e, 0x00000000}},  //   nmod, tssc, ckem_,\n  { {0x20190149, 0xb4c20061, 0xb4c0006e, 0x00000000}},  //   rasi_, ृती_, ंकी_,\n  { {0x20190149, 0x2563011f, 0x2ca9010b, 0x00000000}},  //   sasi_, _yıl_, wiad_,\n  { {0x6f040a9c, 0x20190169, 0x2ca90016, 0x00000000}},  //   _etic, pasi_, tiad_,\n  { {0xb05b0788, 0x2b4b00d4, 0x68e20471, 0x00000000}},  //   rläs, _ppcc_, jmod,\n  { {0x2ca9018e, 0x68e20a9d, 0x68f50166, 0x00000000}},  // [ef0] riad_, dmod, _suzd,\n  { {0x69ce0343, 0x2ca9018e, 0x8f9c0049, 0x00000000}},  //   _bybe, siad_, _ריזי,\n  { {0xb9b50a4f, 0x81e60044, 0x2ca9010e, 0x00000000}},  //   جماع, যুর_, piad_,\n  { {0x69ce0190, 0x21370049, 0x68e202fa, 0x00000000}},  //   _dybe, רטאל_, gmod,\n  { {0x65680a9e, 0x2b400899, 0xdc36007b, 0x00000000}},  //   _ardh, ctic_, _דארט_,\n  { {0x7aee010f, 0x83fd0010, 0x8af0006b, 0x00000000}},  //   _gibt, zdőd, rvət,\n  { {0xd6180379, 0x248d0a9f, 0x291c093f, 0x00000000}},  //   اتها_, tkem_, ávat_,\n  { {0x032509bb, 0x7f4d0aa0, 0x68e206ed, 0x00000000}},  //   адин, _opaq, cmod,\n  { {0x65680065, 0xc6140055, 0x248d0aa1, 0x00000000}},  //   _erdh, _সারা_, rkem_,\n  { {0x248d018b, 0x78ab0030, 0x6487008e, 0x00000000}},  //   skem_, ligv, _añit,\n  { {0xe0da0aa2, 0x39410038, 0x26c70aa3, 0x00000000}},  //   кво_, nths_, mono_,\n  { {0x6f040825, 0x6e2504df, 0x78ab0112, 0x00000000}},  //   _ptic, _adhb, nigv,\n  { {0xe28e017f, 0x7d050051, 0xa856009b, 0x00000000}},  //   _да_, _aths, בירה_,\n  { {0x91e50364, 0x539a009b, 0x1167025a, 0x00000000}},  //   _коле, _בינו, _ملتی_,\n  { {0x6283031e, 0x26c70197, 0x5fd80061, 0x00000000}},  //   _iono, iono_, _ठरवल,\n  { {0x62830aa4, 0x26c70658, 0x77690032, 0x00000000}},  //   _hono, hono_, _orex,\n  { {0x62830aa5, 0x6f0405fa, 0x26c70020, 0x00000000}},  // [f00] _kono, _utic, kono_,\n  { {0x26c70006, 0x68e200d9, 0x628300b0, 0x00000000}},  //   jono_, wmod, _jono,\n  { {0x26c70207, 0x20d90181, 0x394100e0, 0x00000000}},  //   dono_, léia_, gths_,\n  { {0x69ce0428, 0x2b400133, 0xa01b0aa6, 0x00000000}},  //   _vybe, ptic_, lkör,\n  { {0x26c70682, 0x68e20039, 0xbebb0065, 0x00000000}},  //   fono_, rmod, rrëv,\n  { {0x26c7027b, 0x62830207, 0x69ce026e, 0x00000000}},  //   gono_, _nono, _tybe,\n  { {0x68e200ea, 0xa01b0039, 0x768f00ea, 0x00000000}},  //   pmod, ljöe, _gøym,\n  { {0xd7060242, 0x69d80089, 0x77690288, 0x00000000}},  //   _взаи, ļved, _frex,\n  { {0xa2c2024c, 0x26c70066, 0x6283008e, 0x00000000}},  //   रकल्, bono_, _bono,\n  { {0x62830aa7, 0xc2c30054, 0x26c70207, 0x00000000}},  //   _cono, يييي, cono_,\n  { {0x62830aa8, 0xd48f017f, 0x7c260aa9, 0x00000000}},  //   _dono, _др_, _odkr,\n  { {0xdcee010a, 0x75d30014, 0xb97b009b, 0x00000000}},  //   mybė, _بيما, דנטי,\n  { {0x44260211, 0x6283002d, 0xe3b20151, 0x00000000}},  //   _ido_, _fono, _برا_,\n  { {0x62830010, 0xef1f0095, 0x442600d2, 0x00000000}},  //   _gono, rsü_, _hdo_,\n  { {0x44260aaa, 0xdcee0006, 0x6ca7007e, 0x00000000}},  //   _kdo_, nybė, араж,\n  { {0x80d10055, 0x1bf5007e, 0x62830006, 0x00000000}},  //   _সংক্, спаў, _zono,\n  { {0x26c7023a, 0x39410319, 0x60cd0284, 0x00000000}},  // [f10] yono_, wths_, _ikam,\n  { {0x99670001, 0x3b09006b, 0xdcee0006, 0x00000000}},  //   ител, rpaq_, kybė,\n  { {0xd366007a, 0x26c70207, 0x44260aab, 0x00000000}},  //   _که_, vono_, _odo_,\n  { {0x7769027b, 0x44260020, 0x649c0051, 0x00000000}},  //   _prex, _ndo_, _héif,\n  { {0x26c70006, 0xcc7600b3, 0x60cd00e7, 0x00000000}},  //   tono_, _הערה_, _mkam,\n  { {0x1af600a0, 0x4426009d, 0x39410133, 0x00000000}},  //   _למשל_, _ado_, pths_,\n  { {0x09e50055, 0x99850054, 0x4518008b, 0x00000000}},  //   _প্রা, _الزو, ацыя_,\n  { {0x4426008d, 0xa8a40aac, 0xe459003b, 0x00000000}},  //   _cdo_, _друк, ужи_,\n  { {0x62830119, 0x6b8d0010, 0x26c70aad, 0x00000000}},  //   _pono, nyag, pono_,\n  { {0x44260756, 0x60cd0aae, 0x80d10044, 0x00000000}},  //   _edo_, _akam, _সংগ্,\n  { {0xb5a70605, 0x62830023, 0x4426004a, 0x00000000}},  //   _трай, _vono, _fdo_,\n  { {0x656e002a, 0x160b03d7, 0x62830093, 0x00000000}},  //   _ábha, _स्तर_, _wono,\n  { {0x80d10055, 0xafdb0030, 0x443d0093, 0x00000000}},  //   _সংখ্, lføj, _icw_,\n  { {0x629a0aaf, 0x20d900c4, 0xde030ab0, 0x00000000}},  //   chto, réia_, зпри,\n  { {0x753c010f, 0x7c96007e, 0x69a7013d, 0x00000000}},  //   _ärzt, брац, _टेली,\n  { {0x20d900c4, 0xa01b0010, 0xa5c30036, 0x00000000}},  //   péia_, skör, ciół,\n  { {0xc9f60025, 0x09e50044, 0x5f4600a1, 0x00000000}},  // [f20] مساع, _প্লা, _انخل,\n  { {0xe810007d, 0x2bac0061, 0x7810006e, 0x00000000}},  //   ार्थ_, _घेणा, ार्क_,\n  { {0x81c90055, 0x443d05aa, 0x186a01ee, 0x00000000}},  //   লের_, _ocw_, лажи_,\n  { {0x6d5e0209, 0xa01b0039, 0xe81a05f3, 0x00000000}},  //   _ispa, nköp, ازات_,\n  { {0x6d5e001c, 0x20020521, 0x649c0048, 0x00000000}},  //   _hspa, icki_, _héig,\n  { {0xdcee010a, 0xa01b021e, 0x44260065, 0x00000000}},  //   tybė, hköp, _sdo_,\n  { {0x2bac0061, 0x443d0009, 0xdcfc0006, 0x00000000}},  //   _घेता, _bcw_, tyrę,\n  { {0x69dc0059, 0x44260ab1, 0x629d0023, 0x00000000}},  //   _izre, _qdo_, ëson,\n  { {0x649c002a, 0xd6d20318, 0x57fb0097, 0x00000000}},  //   _léig, _فقر_, _תלמו,\n  { {0x60cd06e8, 0x6d5e002d, 0xd25a014c, 0x00000000}},  //   _skam, _ospa, уци_,\n  { {0x67220089, 0x38cb00a1, 0x44260ab2, 0x00000000}},  //   lsoj, _شاہی_, _tdo_,\n  { {0x5577007b, 0x629a008d, 0x661a08b2, 0x00000000}},  //   _לעבן_, shto, _hetk,\n  { {0x6d5e0ab3, 0x7e2b008b, 0x32cb00ea, 0x00000000}},  //   _aspa, ліва_, røyr_,\n  { {0x0dcb0a94, 0x20020190, 0x768f00ea, 0x00000000}},  //   губи_, acki_, _røyk,\n  { {0x321e0036, 0x64950051, 0x661a016e, 0x00000000}},  //   maty_, _máin, _metk,\n  { {0x6d5e0ab4, 0x661a0052, 0x60cd0020, 0x00000000}},  //   _dspa, _letk, _ukam,\n  { {0xfbd30076, 0x6f160016, 0x3cfa00f6, 0x00000000}},  // [f30] ستر_, _gwyc, _eupv_,\n  { {0x661a0209, 0xbebb0065, 0x24860ab5, 0x00000000}},  //   _netk, rrës, _loom_,\n  { {0x6f160036, 0x29070065, 0x79590ab6, 0x00000000}},  //   _zwyc, ëna_, риер_,\n  { {0x29070089, 0xd7d50ab7, 0x00000000, 0x00000000}},  //   īna_, ожењ,   ,\n  { {0x321e0036, 0x649c0048, 0x69dc0010, 0x00000000}},  //   katy_, _méid, _ezre,\n  { {0x661a0ab8, 0xda7b007e, 0x57a90061, 0x00000000}},  //   _cetk, _сям_, _कधीह,\n  { {0x24860007, 0x78bb00d8, 0xe8100061, 0x00000000}},  //   _boom_, _tjuv, ारखा_,\n  { {0x629805b7, 0x661a0116, 0x78a90ab9, 0x00000000}},  //   _alvo, _eetk, _umev,\n  { {0x254e006b, 0x64950051, 0x24860aba, 0x00000000}},  //   _cəlb_, _fáin, _doom_,\n  { {0x52a9007c, 0x81bd0044, 0x321e00b4, 0x00000000}},  //   рвом_, _আরব_, gaty_,\n  { {0xdb06000c, 0x6f1600b4, 0x00000000, 0x00000000}},  //   _ómög, _swyc,   ,\n  { {0x649c0051, 0x6d5e0022, 0x090e0044, 0x00000000}},  //   _réig, _rspa, _হিমু_,\n  { {0x661a0676, 0x6d5e0061, 0x2d8504ce, 0x00000000}},  //   _yetk, _sspa, älen_,\n  { {0x64490abb, 0xfc3f0129, 0xa01b0abc, 0x00000000}},  //   lfei, _ací_, sköp,\n  { {0x649c0195, 0xed5a0088, 0x6724002b, 0x00000000}},  //   _féid, шов_, ġiji,\n  { {0x6d5e001c, 0x644902a3, 0x20d90051, 0x00000000}},  //   _vspa, nfei, néil_,\n  { {0x6d5e0036, 0xbb4308d6, 0x8b2601ab, 0x00000000}},  // [f40] _wspa, метк, юдае,\n  { {0x649c002a, 0x1ae3013b, 0xddde00e5, 0x00000000}},  //   _téig, доум, _copţ,\n  { {0x661a0abd, 0x6d5e0091, 0xa01b00f8, 0x00000000}},  //   _retk, _uspa, ljöa,\n  { {0x50ca03d7, 0x661a00b9, 0x672200b0, 0x00000000}},  //   रविष, _setk, tsoj,\n  { {0x661a00ee, 0x248600ab, 0x20d90051, 0x00000000}},  //   _petk, _room_, déil_,\n  { {0x6d5c0061, 0x6b8b0039, 0x248601c3, 0x00000000}},  //   owra, ägge, _soom_,\n  { {0x64490abe, 0x69dc0089, 0xd49a017a, 0x00000000}},  //   ffei, _uzre, ири_,\n  { {0xb1980011, 0x672d08ad, 0xe9d70088, 0x00000000}},  //   _ngưỡ, šaja, _єкт_,\n  { {0x661a016c, 0x61ef005f, 0x649c0051, 0x00000000}},  //   _tetk, əklə, _réid,\n  { {0x7f46001c, 0x68fc014a, 0x38660007, 0x00000000}},  //   dtkq, _kurd, ldor_,\n  { {0xe45a01fb, 0x321e05fd, 0x24860abf, 0x00000000}},  //   _вже_, raty_, _toom_,\n  { {0x38660010, 0x68fc08ce, 0x76580ac0, 0x00000000}},  //   ndor_, _murd, levy,\n  { {0x6101001e, 0x38660285, 0xdfdb02dc, 0x00000000}},  //   _vēla, idor_, рън_,\n  { {0x81c90055, 0x76580020, 0xbbb40061, 0x00000000}},  //   লেই_, nevy, ंपैक,\n  { {0x68fc0563, 0x6d5c005b, 0x20d90048, 0x00000000}},  //   _nurd, gwra, léim_,\n  { {0x90c401fc, 0x90e703ec, 0x00000000, 0x00000000}},  //   _обје, _بستن,   ,\n  { {0x1eab0025, 0x7bc10036, 0x3866024d, 0x00000000}},  // [f50] _نادي_, _ślub, ddor_,\n  { {0x1b040044, 0x768f00ea, 0x00000000, 0x00000000}},  //   _লিখে_, _høyv,   ,\n  { {0xad27007a, 0xe9f80088, 0x64490016, 0x00000000}},  //   _برخو, інці_, yfei,\n  { {0xe8f802f0, 0x321c0ac1, 0x64950051, 0x00000000}},  //   ілі_, _levy_, _cáil,\n  { {0xcb4401f9, 0x0c24007e, 0x64950051, 0x00000000}},  //   _охри, _імён, _dáil,\n  { {0x38660446, 0x8afa009b, 0x24670082, 0x00000000}},  //   ador_, _להשי, _ốm_,\n  { {0xceb4007b, 0x8557089d, 0x6495002a, 0x00000000}},  //   ויס_, تیار_, _fáil,\n  { {0x7afd0ac2, 0x7af5022b, 0x81c20044, 0x00000000}},  //   _kust, _hizt, ্ধা_,\n  { {0xe3b10054, 0x64490181, 0x68fc008e, 0x00000000}},  //   عرب_, rfei, _zurd,\n  { {0xe299012b, 0x6449003a, 0x68fc005d, 0x00000000}},  //   сао_, sfei, _yurd,\n  { {0x76b20036, 0xe8100061, 0x7af50288, 0x00000000}},  //   słyc, ारचा_, _mizt,\n  { {0x69d50023, 0x7af50288, 0x00000000, 0x00000000}},  //   _myze, _lizt,   ,\n  { {0x7afd010a, 0x3f8f01d5, 0xbf9b00c4, 0x00000000}},  //   _nust, _żgur_, scên,\n  { {0x91fc0089, 0x00000000, 0x00000000, 0x00000000}},  //   ndāl,   ,   ,\n  { {0x7c9602f0, 0x64950051, 0xfce6004c, 0x00000000}},  //   прац, _láim, зово,\n  { {0x7afd001c, 0x249f0181, 0x6d5c005b, 0x00000000}},  //   _bust, nhum_, rwra,\n  { {0x7af50ac3, 0x7afd0ac4, 0x68fc00c4, 0x00000000}},  // [f60] _bizt, _cust, _surd,\n  { {0x7afd0406, 0x290a0022, 0x64950048, 0x00000000}},  //   _dust, _ptba_, _sáil,\n  { {0x7afd002d, 0x68fc006b, 0x0d94025a, 0x00000000}},  //   _eust, _qurd, _غیرح,\n  { {0x7afd0129, 0x68fc02cc, 0x69d50ac5, 0x00000000}},  //   _fust, _vurd, _dyze,\n  { {0x7afd0ac6, 0x68fc001f, 0x38660ac7, 0x00000000}},  //   _gust, _wurd, rdor_,\n  { {0x68fc0ac8, 0xba55005e, 0x2d8700d4, 0x00000000}},  //   _turd, _отсъ, _ànec_,\n  { {0x7afd010f, 0x64950051, 0x321c07c4, 0x00000000}},  //   _zust, _táil, _revy_,\n  { {0x2ca00ac9, 0xf746007c, 0x7de70010, 0x00000000}},  //   nhid_, _небо, lésé,\n  { {0x7afd049a, 0x00000000, 0x00000000, 0x00000000}},  //   _xust,   ,   ,\n  { {0xcb13009b, 0x6d47000c, 0x7de70010, 0x00000000}},  //   עלת_, ytja, nésé,\n  { {0x20d2004a, 0xc5160014, 0x00000000, 0x00000000}},  //   jáis_, _ربات,   ,\n  { {0x249f01a2, 0x64a307d0, 0x7bc3001a, 0x00000000}},  //   chum_, _паха, şnui,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7afd00c7, 0x6d470aca, 0xfd13006d, 0x00000000}},  //   _rust, ttja, فجر_,\n  { {0x71f70076, 0x7afd0acb, 0x7de70010, 0x00000000}},  //   _عروس_, _sust, désé,\n  { {0x7afd0119, 0x6d47002b, 0x768f00ea, 0x00000000}},  //   _pust, rtja, _høyt,\n  { {0x6d470acc, 0xc6220044, 0x7af5002d, 0x00000000}},  // [f70] stja, _নানা_, _pizt,\n  { {0x6f0d0acd, 0xbd02004a, 0x00000000, 0x00000000}},  //   _itac, ñéca,   ,\n  { {0xb5fc01d5, 0x628a0ace, 0x96220044, 0x00000000}},  //   _paġn, _mofo, নলাম_,\n  { {0xddde01a8, 0x2ca0001a, 0x20d20051, 0x00000000}},  //   _uopš, chid_, láir_,\n  { {0x26ce00fa, 0x00000000, 0x00000000, 0x00000000}},  //   fofo_,   ,   ,\n  { {0x628a0acf, 0xfbd200a0, 0x20d2002a, 0x00000000}},  //   _nofo, _סתם_, náir_,\n  { {0x249f005b, 0x00000000, 0x00000000, 0x00000000}},  //   thum_,   ,   ,\n  { {0x64950051, 0x6f0d0ad0, 0x9f650142, 0x00000000}},  //   _táim, _otac, _štýl_,\n  { {0x6f0d0009, 0x249f00ef, 0x628a02e7, 0x00000000}},  //   _ntac, rhum_, _bofo,\n  { {0xd048006b, 0x64420a40, 0x628a0666, 0x00000000}},  //   əməy, _ecoi, _cofo,\n  { {0x628a0022, 0x61010089, 0x648e0009, 0x00000000}},  //   _dofo, _vēlo, _cùis,\n  { {0x6442002a, 0x7de70047, 0xf4850167, 0x00000000}},  //   _gcoi, zésé, _تائی,\n  { {0x628a00c4, 0x10a307e1, 0xe3ae007e, 0x00000000}},  //   _fofo, тиян, _рб_,\n  { {0x12fa00b6, 0x83fd0010, 0x443f0ad1, 0x00000000}},  //   _והסב, zdől, lgu_,\n  { {0x2ca00ad2, 0x443f0ad3, 0x768f00ea, 0x00000000}},  //   thid_, ogu_, _høys,\n  { {0x443f0ad4, 0x20d205f4, 0x645b0115, 0x00000000}},  //   ngu_, ráis_, neui,\n  { {0x7de70047, 0xaec6003b, 0x9f4400b0, 0x00000000}},  // [f80] tésé, _обил, ämä_,\n  { {0x2ca00518, 0x629d0023, 0x6b8b00f8, 0x00000000}},  //   shid_, ësoh, ägga,\n  { {0x610800b9, 0x443f01a3, 0x768f0056, 0x00000000}},  //   _těle, kgu_, _løys,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7c2400f4, 0x00000000, 0x00000000, 0x00000000}},  //   mair,   ,   ,\n  { {0x7c240ad5, 0x6442002a, 0x443f0004, 0x00000000}},  //   lair, _scoi, egu_,\n  { {0xa01b000c, 0xd82601fc, 0x645b0ad6, 0x00000000}},  //   fjöl, _одви, feui,\n  { {0x7c24028c, 0x628a010f, 0x443f0ad7, 0x00000000}},  //   nair, _sofo, ggu_,\n  { {0x64420011, 0x628a0232, 0x00000000, 0x00000000}},  //   _vcoi, _pofo,   ,\n  { {0x7c24002a, 0x78a200ea, 0x443f007f, 0x00000000}},  //   hair, lhov, agu_,\n  { {0x3a3701f8, 0x60cf001a, 0x6f0d0652, 0x00000000}},  //   ורים_, tocm, _stac,\n  { {0x78a200bb, 0x645b009d, 0xa19301e1, 0x00000000}},  //   nhov, ceui, таюч,\n  { {0x44240ad8, 0x7c2400f4, 0x78a2012d, 0x00000000}},  //   mam_, dair, ihov,\n  { {0x4424020c, 0x60cf0061, 0x768f0292, 0x00000000}},  //   lam_, socm, _høyr,\n  { {0x20c70ad9, 0x7c240549, 0x78a200bb, 0x00000000}},  //   _осиг, fair, khov,\n  { {0x44240ada, 0x6f0d001c, 0x7c24002a, 0x00000000}},  //   nam_, _ttac, gair,\n  { {0x44240adb, 0x6f0d00e7, 0xfbd00025, 0x00000000}},  // [f90] iam_, _utac, لتك_,\n  { {0x4424005f, 0x81c90055, 0x5a34013b, 0x00000000}},  //   ham_, লেও_, кнут,\n  { {0x443f0adc, 0x67290091, 0x7c240add, 0x00000000}},  //   ygu_, _svej, bair,\n  { {0x44240ade, 0xe8c90061, 0x7c240adf, 0x00000000}},  //   jam_, िकेच, cair,\n  { {0xfe7000a1, 0xe7080439, 0x00000000, 0x00000000}},  //   _صدی_, وتون_,   ,\n  { {0x81c90044, 0xa01b0010, 0x45190ae0, 0x00000000}},  //   লেট_, gköz, пция_,\n  { {0xddde0036, 0x645b00f4, 0x44240142, 0x00000000}},  //   _zapł, teui, fam_,\n  { {0x44240149, 0x78a2004f, 0xfdf800b6, 0x00000000}},  //   gam_, chov, וצות_,\n  { {0x254e006b, 0x61010089, 0x645b009d, 0x00000000}},  //   _həll_, _vēlm, reui,\n  { {0x443f018e, 0x236d0030, 0xf3f90035, 0x00000000}},  //   sgu_, rvej_, deţe_,\n  { {0x236d0030, 0xa06a06f3, 0x00000000, 0x00000000}},  //   svej_, пана_,   ,\n  { {0x4424020c, 0x20050036, 0x236d0190, 0x00000000}},  //   cam_, ślin_, pvej_,\n  { {0x442f0ae1, 0x7c240089, 0x9f4c005d, 0x00000000}},  //   _idg_, vair, _ölüm_,\n  { {0x78a20161, 0xa3b80025, 0xdbd9000c, 0x00000000}},  //   zhov, _تامر_, _ræði,\n  { {0x7c240ae2, 0x69c70065, 0xc6920097, 0x00000000}},  //   tair, _nxje, נאל_,\n  { {0x649c0051, 0xa01b0047, 0x7c2f00f6, 0x00000000}},  //   _léin, zköz, _cdcr,\n  { {0x7c24028c, 0x442f0ae3, 0x69cb014a, 0x00000000}},  // [fa0] rair, _mdg_, şgel,\n  { {0x442401cd, 0x7c240ae4, 0x4a430893, 0x00000000}},  //   zam_, sair, лнув,\n  { {0x44240ae5, 0x442f0059, 0x78a20142, 0x00000000}},  //   yam_, _odg_, thov,\n  { {0x44240ae6, 0xafdb01e3, 0xaca800a1, 0x00000000}},  //   xam_, mfør, _کھڑے_,\n  { {0x78a20146, 0xa01b0010, 0xafdb043e, 0x00000000}},  //   rhov, tköz, lfør,\n  { {0x44240ae7, 0xfaff0023, 0x00000000, 0x00000000}},  //   wam_, _erës_,   ,\n  { {0x442f0093, 0xb7bd001a, 0x78a20039, 0x00000000}},  //   _bdg_, _reţe, phov,\n  { {0x60c40825, 0x442f00d4, 0x2a6a01f3, 0x00000000}},  //   _njim, _cdg_, _habb_,\n  { {0x4424090b, 0x64400004, 0xe73700e3, 0x00000000}},  //   ram_, rgmi, _пет_,\n  { {0x44240673, 0x442f0ae8, 0xafdb00ea, 0x00000000}},  //   sam_, _edg_, kfør,\n  { {0xf3f90035, 0xa2a6007d, 0x00000000, 0x00000000}},  //   veţe_, टोग्,   ,\n  { {0xafdb01e3, 0x39580093, 0x44240312, 0x00000000}},  //   dfør, _mprs_, qam_,\n  { {0x610800b9, 0x60c40022, 0x2d8c09b0, 0x00000000}},  //   _děla, _djim, äden_,\n  { {0xd36f0014, 0x00000000, 0x00000000, 0x00000000}},  //   _دهه_,   ,   ,\n  { {0xafdb08e0, 0x6ee000f8, 0x62880861, 0x00000000}},  //   gfør, möbl, mjdo,\n  { {0x11db00b6, 0x60c40ae9, 0x2a6a00fa, 0x00000000}},  //   _מחוב, _gjim, _aabb_,\n  { {0x6fb90088, 0x6ad90044, 0x00000000, 0x00000000}},  // [fb0] _ігор_, _ভূগো,   ,\n  { {0x60dd0239, 0x39580022, 0x200b00fa, 0x00000000}},  //   llsm, _bprs_, lcci_,\n  { {0x649c0aea, 0xb8120044, 0x200b0026, 0x00000000}},  //   _réin, _হয়ত_, occi_,\n  { {0x893401b7, 0xb4ca007d, 0x00000000, 0x00000000}},  //   اعلا, लको_,   ,\n  { {0x3669003b, 0x649c0051, 0x00000000, 0x00000000}},  //   дало_, _péin,   ,\n  { {0x38690aeb, 0xd1380aec, 0x442f0145, 0x00000000}},  //   žar_, krą_, _sdg_,\n  { {0x39580011, 0x6abf013d, 0x64a50aed, 0x00000000}},  //   _gprs_, ्वीर, кака,\n  { {0x29110032, 0xd1380a67, 0xfaff0023, 0x00000000}},  //   _itza_, drą_, _urës_,\n  { {0x2a6a0052, 0x290300e7, 0x3a230085, 0x00000000}},  //   _yabb_, _huja_, _kejp_,\n  { {0x29030aee, 0x60d600f8, 0x2366003b, 0x00000000}},  //   _kuja_, _skym, _dsoj_,\n  { {0x10a60aef, 0x442f00d4, 0xbbde0164, 0x00000000}},  //   винн, _tdg_, _मर्क,\n  { {0x92c30055, 0x442f0af0, 0x629a0af1, 0x00000000}},  //   ্ষে_, _udg_, akto,\n  { {0x6f63008b, 0x68e90af2, 0x68fb00fa, 0x00000000}},  //   авяз, _mhed, _miud,\n  { {0x7643020c, 0xed5a019d, 0x68fb0006, 0x00000000}},  //   ngny, мог_, _liud,\n  { {0x63a901a2, 0x29030af3, 0x00000000, 0x00000000}},  //   lzen, _nuja_,   ,\n  { {0xafdb043e, 0x6fb60025, 0x27ff00e0, 0x00000000}},  //   rfør, _لمعا, _ngun_,\n  { {0x63a9010f, 0xab2702dc, 0x00000000, 0x00000000}},  // [fc0] nzen, кота_,   ,\n  { {0x63a900bb, 0xafdb0292, 0x27ff0022, 0x00000000}},  //   izen, pfør, _agun_,\n  { {0x29030181, 0x68fb0006, 0x3eb80af4, 0x00000000}},  //   _cuja_, _biud, mirt_,\n  { {0x68fb0af5, 0x68e9027b, 0x649c0af6, 0x00000000}},  //   _ciud, _ched, _céil,\n  { {0x649c0051, 0x2d980010, 0x6f040af7, 0x00000000}},  //   _déil, lyre_, _juic,\n  { {0x63a90af8, 0x27ff0756, 0x248f00ea, 0x00000000}},  //   dzen, _egun_, _aogm_,\n  { {0x649c002a, 0x6846003b, 0x2d980af9, 0x00000000}},  //   _féil, _инва, nyre_,\n  { {0x68fb0198, 0x3eb80afa, 0x68e90afb, 0x00000000}},  //   _giud, hirt_, _ghed,\n  { {0x69dc0afc, 0x7afc007f, 0x3eb80145, 0x00000000}},  //   _hyre, _kirt, kirt_,\n  { {0x6d4e05d5, 0xd1380a67, 0x6108013e, 0x00000000}},  //   ktba, trą_, _děln,\n  { {0x629a00bb, 0x6f040022, 0x2d980023, 0x00000000}},  //   rkto, _auic, jyre_,\n  { {0x6f040051, 0x69dc0190, 0x4035008b, 0x00000000}},  //   _buic, _myre, ыемс,\n  { {0x63a90046, 0x6d4e00bb, 0x6f0401f3, 0x00000000}},  //   czen, etba, _cuic,\n  { {0x6f04000a, 0x2d980afd, 0xf773009b, 0x00000000}},  //   _duic, fyre_, בקש_,\n  { {0x5c0700a5, 0x69dc032e, 0xb5fc002b, 0x00000000}},  //   вяза, _nyre, _baġi,\n  { {0x7afc002a, 0x672d0afe, 0x3eb80051, 0x00000000}},  //   _airt, šaji, airt_,\n  { {0x649c002a, 0x7afc0953, 0x68e90aff, 0x00000000}},  // [fd0] _réil, _birt, _rhed,\n  { {0x29030129, 0x69dc004e, 0x64950051, 0x00000000}},  //   _puja_, _byre, _háit,\n  { {0x69dc01d6, 0x7afc039f, 0x2d8c0030, 0x00000000}},  //   _cyre, _dirt, ødet_,\n  { {0x69dc0b00, 0xf8d10055, 0x08d40088, 0x00000000}},  //   _dyre, িষ্ঠ, ація,\n  { {0x649c0051, 0x68fb008e, 0x7afc0792, 0x00000000}},  //   _céim, _viud, _firt,\n  { {0x6495002a, 0xf7700084, 0x0dba00a1, 0x00000000}},  //   _láit, غان_, _آئیں_,\n  { {0x68e9002b, 0x20d90b01, 0xb8120044, 0x00000000}},  //   _thed, néis_, _হযরত_,\n  { {0x20050046, 0x63a9010f, 0xe89405b8, 0x00000000}},  //   ślij_, tzen, _кась,\n  { {0xe894007c, 0x69dc0023, 0x6108013e, 0x00000000}},  //   _тать, _zyre, _bělo,\n  { {0x63a90b02, 0x45450774, 0x69080010, 0x00000000}},  //   rzen, _منطق, _ördö,\n  { {0x63a90046, 0x6d4e0203, 0x6108013e, 0x00000000}},  //   szen, xtba, _dělo,\n  { {0x20d9008e, 0x23750b03, 0x71a2007e, 0x00000000}},  //   déis_, _ماتح, саюз,\n  { {0x6f040038, 0x386d0b04, 0x6e25013f, 0x00000000}},  //   _quic, _maer_, _behb,\n  { {0x2d98008d, 0x6d4e02e1, 0x66e30061, 0x00000000}},  //   tyre_, ttba, गतिक_,\n  { {0x09be0055, 0x6da30057, 0x332d0b05, 0x00000000}},  //   _অর্থ, бира, lsex_,\n  { {0x09e20044, 0x7afc08c0, 0x6f040b06, 0x00000000}},  //   _বললা, _sirt, _tuic,\n  { {0x7afc0b07, 0x0aea005e, 0x3eb80065, 0x00000000}},  // [fe0] _pirt, едай_, pirt_,\n  { {0x649c002a, 0x0e66007e, 0x20d9008e, 0x00000000}},  //   _réim, _скон, béis_,\n  { {0x20d9008e, 0xddde0089, 0x649c0048, 0x00000000}},  //   céis_, _sapņ, _séim,\n  { {0x7afc0a80, 0x386d0966, 0x20d90051, 0x00000000}},  //   _wirt, _caer_, léir_,\n  { {0x7afc0b08, 0x3ce00b09, 0x7c2601c5, 0x00000000}},  //   _tirt, mliv_, _iekr,\n  { {0x20d90051, 0x7afc0051, 0xe9440063, 0x00000000}},  //   néir_, _uirt, _پرسی,\n  { {0x2aa40047, 0x6495002a, 0x7c260b0a, 0x00000000}},  //   _több_, _náis, _kekr,\n  { {0xa01b0b0b, 0x386d005b, 0x938a00e2, 0x00000000}},  //   ljöv, _gaer_, есоа_,\n  { {0x6495002a, 0x5c370049, 0x00000000, 0x00000000}},  //   _ráit, ארפן_,   ,\n  { {0x59b8007d, 0xa5da0025, 0x64950048, 0x00000000}},  //   _आधार, _كبار_, _báis,\n  { {0x6e25011f, 0xdd120477, 0xba570049, 0x00000000}},  //   _rehb, _rüşv, נסטו_,\n  { {0x7c26016e, 0x629d0065, 0x7d05014a, 0x00000000}},  //   _nekr, ësor, _ruhs,\n  { {0xe29a008b, 0xe0df0026, 0x91fc0089, 0x00000000}},  //   _пад_, rlò_, edāt,\n  { {0x20d90b0c, 0x44260011, 0x7bdd0024, 0x00000000}},  //   téis_, _heo_, _rysu,\n  { {0x7c260292, 0x254e006b, 0x44260011, 0x00000000}},  //   _bekr, _bəli_, _keo_,\n  { {0x64950051, 0x20d90b0d, 0x3ce00190, 0x00000000}},  //   _háir, réis_, gliv_,\n  { {0x7c26002d, 0x44260082, 0x2d8c0030, 0x00000000}},  // [ff0] _dekr, _meo_, øder_,\n  { {0x44260b0e, 0x20d90b0f, 0x386d005b, 0x00000000}},  //   _leo_, péis_, _saer_,\n  { {0x64950051, 0x7c260066, 0xca48023c, 0x00000000}},  //   _máir, _fekr, المه_,\n  { {0x7c260b10, 0xddde00b9, 0x64950048, 0x00000000}},  //   _gekr, _např, _láir,\n  { {0xd366007a, 0xddd7005f, 0x2ca90051, 0x00000000}},  //   _به_, _yaxş, mhad_,\n  { {0xca490014, 0xe77800a1, 0x44260058, 0x00000000}},  //   _جلسه_, الوں_, _aeo_,\n  { {0x44260051, 0x00000000, 0x00000000, 0x00000000}},  //   _beo_,   ,   ,\n  { {0x4426003b, 0x332d0146, 0xa4230044, 0x00000000}},  //   _ceo_, tsex_, ফল্য_,\n  { {0xd05d005f, 0x44260051, 0x730506e3, 0x00000000}},  //   _üzər, _deo_, јпоз,\n  { {0x64950051, 0xe299012b, 0x00000000, 0x00000000}},  //   _páis, тао_,   ,\n  { {0x00860b11, 0x91e502be, 0x4426008e, 0x00000000}},  //   ално, роне, _feo_,\n  { {0x2c150309, 0x3ce0032e, 0x672d04eb, 0x00000000}},  //   _फ्लू_, xliv_, šaju,\n  { {0x81bd0055, 0x20d90051, 0x2ca90b12, 0x00000000}},  //   _আরও_, téir_, dhad_,\n  { {0xe29601fe, 0x64950051, 0x7bc0012d, 0x00000000}},  //   _ваш_, _gáir, _žmuo,\n  { {0x20d90051, 0x442600e0, 0x8cb60b13, 0x00000000}},  //   réir_, _yeo_, асач,\n  { {0x248d0295, 0x2ca90b14, 0x64ba01d5, 0x00000000}},  //   njem_, ghad_, nċip,\n\n  { {0x3b0703dc, 0x249f0b15, 0x20d90051, 0x00000000}},  // [1000] ието_, ikum_, péir_,\n  { {0x3ce00b16, 0x249f0180, 0x248d0190, 0x00000000}},  //   sliv_, hkum_, hjem_,\n  { {0x186a005e, 0x7c26011f, 0x249f000c, 0x00000000}},  //   кажи_, _tekr, kkum_,\n  { {0x3156007b, 0x2ca90b17, 0x248d01d5, 0x00000000}},  //   ייען_, chad_, jjem_,\n  { {0x248d0b18, 0x91fc0089, 0x44260082, 0x00000000}},  //   djem_, ndār, _reo_,\n  { {0x44260195, 0xfaa60aa2, 0x64590b19, 0x00000000}},  //   _seo_, _таго, _abwi,\n  { {0x44260b1a, 0x8af0006b, 0x00000000, 0x00000000}},  //   _peo_, ttəf,   ,\n  { {0xd766026c, 0x2ca00b1b, 0x248d0023, 0x00000000}},  //   _پارٹ, nkid_, gjem_,\n  { {0x6495002a, 0x44260211, 0xb5fc002b, 0x00000000}},  //   _páir, _veo_, _raġu,\n  { {0x6d5e055f, 0x68e20016, 0xd2570088, 0x00000000}},  //   _oppa, llod, ацю_,\n  { {0x672d0209, 0x64a60b1c, 0x69130066, 0x00000000}},  //   šajt, _кажа, _għed,\n  { {0x249f06be, 0xd83f01ca, 0xd13000a1, 0x00000000}},  //   ckum_, _účtu_, _ہمت_,\n  { {0x6495002a, 0x6d5e06e2, 0x657a0009, 0x00000000}},  //   _táir, _appa, _hrth,\n  { {0x68e20061, 0xd065006b, 0x539b009b, 0x00000000}},  //   hlod, _əsər, _בידו,\n  { {0x3cf30204, 0x6143025f, 0x61130035, 0x00000000}},  //   ंगले_, _деја, _căld,\n  { {0x76b20036, 0xbd440025, 0x00000000, 0x00000000}},  //   pływ, تنفي,   ,\n  { {0x90a7025a, 0x2ca90b1d, 0x5a35005e, 0x00000000}},  // [1010] _محکم, rhad_, йнат,\n  { {0xda78007c, 0x2ca90b1e, 0x657a0122, 0x00000000}},  //   иях_, shad_, _orth,\n  { {0xceb200bd, 0x83fd0010, 0x249f0b1f, 0x00000000}},  //   _זיי_, ndőr, ykum_,\n  { {0x2ca00009, 0x68e2005b, 0x00000000, 0x00000000}},  //   ckid_, glod,   ,\n  { {0x7c2d010e, 0x291a08a6, 0x96b9003b, 0x00000000}},  //   maar, appa_, луку_,\n  { {0x7c2d0b20, 0x5b140088, 0x7b3d00e5, 0x00000000}},  //   laar, _ємст, _căuş,\n  { {0x248d0059, 0xd5750b21, 0x6d9e002b, 0x00000000}},  //   tjem_, суль, _għaġ,\n  { {0x58d401be, 0x7c2d0343, 0x64950048, 0x00000000}},  //   _дост, naar, _cáip,\n  { {0xf77300a2, 0x248d0059, 0x657a018e, 0x00000000}},  //   _باز_, rjem_, _erth,\n  { {0x249f0b22, 0x248d089f, 0x777b0288, 0x00000000}},  //   skum_, sjem_, _irux,\n  { {0x7c2d017d, 0x6f160b23, 0xfa980049, 0x00000000}},  //   kaar, _styc, ידזש_,\n  { {0x64590061, 0x7c2d0a2a, 0x00000000, 0x00000000}},  //   _ubwi, jaar,   ,\n  { {0x442d0acd, 0xf4560879, 0x116700a1, 0x00000000}},  //   mae_, _طلوع_, _چلتی_,\n  { {0x442d0b24, 0x644903d0, 0xd839000a, 0x00000000}},  //   lae_, lgei, _blōk_,\n  { {0x6da3005e, 0x62830b25, 0xf1cf0164, 0x00000000}},  //   пира, _inno, _सुचन,\n  { {0x7c2d0030, 0x64490b26, 0xdd8f03ab, 0x00000000}},  //   gaar, ngei, روق_,\n  { {0x09b50055, 0xbebb0065, 0x7e9a0084, 0x00000000}},  // [1020] _জুলা, rsër, _منظر_,\n  { {0xe3a7026c, 0x442d0abb, 0x2ca00b27, 0x00000000}},  //   _ہر_, hae_, skid_,\n  { {0x9e7b007b, 0x7c2d01b5, 0x7bcf01cb, 0x00000000}},  //   _ענטפ, baar, _excu,\n  { {0x6c8601b7, 0x777b00f4, 0xe3a7004b, 0x00000000}},  //   _الحم, _brux, _فر_,\n  { {0x442d0b28, 0x628300c7, 0x68e20146, 0x00000000}},  //   dae_, _onno, rlod,\n  { {0xcd29089d, 0x68e20b29, 0xa01b00f8, 0x00000000}},  //   _حسین_, slod, njör,\n  { {0x2b400115, 0x64950051, 0xb99601b7, 0x00000000}},  //   lric_, _páip, _الزب,\n  { {0x62830b2a, 0x6e2e0b2b, 0x5fc80164, 0x00000000}},  //   _anno, habb, रपाल,\n  { {0xdc9b007b, 0x213e018e, 0x657a018e, 0x00000000}},  //   טיקל, wrth_, _wrth,\n  { {0x290a0b2c, 0x78a20428, 0x6e2e0b2d, 0x00000000}},  //   _kuba_, lkov, jabb,\n  { {0x290a0004, 0x442d006a, 0x867b00b6, 0x00000000}},  //   _juba_, bae_, _תרבו,\n  { {0x290a0022, 0xa49200a2, 0x2fc60b2e, 0x00000000}},  //   _muba_, _ریخت, _žoga_,\n  { {0x7c2d0168, 0x6234025f, 0xa01b000c, 0x00000000}},  //   vaar, _делу, fjör,\n  { {0x29180b2f, 0x7c2d015c, 0xa01b000c, 0x00000000}},  //   _otra_, waar, gjör,\n  { {0x8af0005f, 0x6ca701fb, 0x7c2d006c, 0x00000000}},  //   ktəb, браж, taar,\n  { {0x78a20b30, 0xfc3f000c, 0x2b400048, 0x00000000}},  //   jkov, _elín_, fric_,\n  { {0x7c2d00b5, 0x60cd0061, 0x6e2e002b, 0x00000000}},  // [1030] raar, _ijam, babb,\n  { {0x7c2d0b31, 0xff500025, 0x6f1d00d9, 0x00000000}},  //   saar, _أخي_, mpsc,\n  { {0x290a0127, 0x7c2d0168, 0x29180b32, 0x00000000}},  //   _cuba_, paar, _ctra_,\n  { {0xec6b01e0, 0xfc3f01dc, 0x2b400133, 0x00000000}},  //   _срок_, _zlín_, bric_,\n  { {0x6d55022b, 0x6d470142, 0x2b4000d4, 0x00000000}},  //   ltza, luja, cric_,\n  { {0x29070b33, 0x6d550b34, 0xb7c60089, 0x00000000}},  //   ínas_, otza, diģē,\n  { {0x6d550756, 0x64490253, 0x6d470059, 0x00000000}},  //   ntza, tgei, nuja,\n  { {0x6d55022b, 0x78a20161, 0x60cd0020, 0x00000000}},  //   itza, ckov, _njam,\n  { {0x442d0b35, 0x9868026c, 0xc64b0426, 0x00000000}},  //   rae_, _دینے_, _مجال_,\n  { {0x442d0b36, 0x27ed002d, 0x6d470b37, 0x00000000}},  //   sae_, _izen_, kuja,\n  { {0x29180b38, 0x208a0b39, 0x71b5007c, 0x00000000}},  //   _xtra_, айни_, ющих,\n  { {0x25d600bd, 0x6d470027, 0x6abe0b3a, 0x00000000}},  //   _ווען_, duja, zipf,\n  { {0x78a90b3b, 0x60cd000c, 0x6e2e002b, 0x00000000}},  //   _mlev, _djam, tabb,\n  { {0x78a90b3c, 0x62830b3d, 0x78a201ca, 0x00000000}},  //   _llev, _unno, zkov,\n  { {0xde0301fb, 0x6e2e0a19, 0x78a90b3e, 0x00000000}},  //   дпри, rabb, _olev,\n  { {0x2b400b3f, 0x6e2e0010, 0x8b26022a, 0x00000000}},  //   tric_, sabb, ждае,\n  { {0x78a20161, 0x6d55022b, 0x7eab011f, 0x00000000}},  // [1040] vkov, atza, _süpe,\n  { {0x2b400719, 0x6d47008e, 0x78a9014a, 0x00000000}},  //   rric_, buja, _alev,\n  { {0x78a20428, 0x78a90018, 0x386601aa, 0x00000000}},  //   tkov, _blev, teor_,\n  { {0x290a0009, 0x80370049, 0x78a900ab, 0x00000000}},  //   _vuba_, ַנצע_, _clev,\n  { {0x8af0006b, 0x61e30190, 0x38660b40, 0x00000000}},  //   rtəb, _lynl, reor_,\n  { {0x78a20b41, 0x649c0051, 0x290a006c, 0x00000000}},  //   skov, _léit, _tuba_,\n  { {0x27ed0b42, 0x98a6005e, 0x78a90b43, 0x00000000}},  //   _ezen_, _диве, _flev,\n  { {0xd91b00b3, 0x78a900d4, 0x00000000, 0x00000000}},  //   _כולל, _glev,   ,\n  { {0xccf301f8, 0xf3660088, 0x00000000, 0x00000000}},  //   וכה_, ітин,   ,\n  { {0x29040b44, 0x60cd0b45, 0x78a90b46, 0x00000000}},  //   _hima_, _sjam, _zlev,\n  { {0x61e3018e, 0x290400e7, 0x27e40075, 0x00000000}},  //   _cynl, _kima_, _hymn_,\n  { {0x290400ca, 0x00000000, 0x00000000, 0x00000000}},  //   _jima_,   ,   ,\n  { {0x24860b47, 0x78fb00a3, 0x649c0048, 0x00000000}},  //   _inom_, יפטו, _déit,\n  { {0x26dc01cd, 0x2904033b, 0x6d470b48, 0x00000000}},  //   novo_, _lima_, tuja,\n  { {0x621b00a0, 0x61e3018e, 0xdcbb0b49, 0x00000000}},  //   _דווק, _gynl, аща_,\n  { {0x6d55022b, 0x29040059, 0x26dc0059, 0x00000000}},  //   rtza, _nima_, hovo_,\n  { {0x26dc0b4a, 0x24860091, 0x62980b4b, 0x00000000}},  // [1050] kovo_, _mnom_, _kovo,\n  { {0x78a90224, 0x78bb0107, 0x6d470b4c, 0x00000000}},  //   _slev, _smuv, puja,\n  { {0x26dc0006, 0x89d90025, 0x24860091, 0x00000000}},  //   dovo_, حوار_, _onom_,\n  { {0xf7710379, 0x62980b4d, 0x29040b4e, 0x00000000}},  //   فات_, _lovo, _cima_,\n  { {0x7c22008e, 0x2904010e, 0x0a6b003b, 0x00000000}},  //   ñore, _dima_, _крви_,\n  { {0xd6db098c, 0x26dc0059, 0xaa6409da, 0x00000000}},  //   ште_, govo_, _отск,\n  { {0x6f0d0051, 0x170500a1, 0xa9540088, 0x00000000}},  //   _luac, _کہتی_, _окрі,\n  { {0x78bb0b4f, 0x27ed002d, 0x20090082, 0x00000000}},  //   _umuv, _tzen_, _ngai_,\n  { {0x6f0d002a, 0x649c002a, 0xf77000f3, 0x00000000}},  //   _nuac, _réit, _لال_,\n  { {0xd2a9007c, 0x62980b50, 0x649c0b51, 0x00000000}},  //   ское_, _covo, _béis,\n  { {0x216909f1, 0x60dd000a, 0x67290066, 0x00000000}},  //   щини_, fosm, _hwej,\n  { {0x92cb0044, 0x60dd0107, 0x6f0d0051, 0x00000000}},  //   লতে_, gosm, _buac,\n  { {0x7ea200f4, 0x61fe0428, 0x6f0d003f, 0x00000000}},  //   _hôpi, _úpln, _cuac,\n  { {0x62980295, 0x5239007b, 0xe3b00167, 0x00000000}},  //   _govo, _הײַנ, _جرم_,\n  { {0xf3f9001a, 0xb7bd001a, 0x91e2007c, 0x00000000}},  //   deţi_, _deţi, _поше,\n  { {0x649c002a, 0x60dd008e, 0x236d0036, 0x00000000}},  //   _héir, cosm, owej_,\n  { {0x6b630b52, 0x6f0d008e, 0x29040b53, 0x00000000}},  // [1060] нкта, _guac, _rima_,\n  { {0x6d41002a, 0x29040010, 0xf3f90035, 0x00000000}},  //   álac, _sima_, geţi_,\n  { {0xfe9b01ce, 0x5e9b009b, 0x29040258, 0x00000000}},  //   _היימ, _הביק, _pima_,\n  { {0x649c002a, 0x7b0900ca, 0x29040066, 0x00000000}},  //   _léir, _džub, _qima_,\n  { {0x7c24003f, 0x26dc0340, 0x66e60088, 0x00000000}},  //   mbir, tovo_, пода,\n  { {0x24860b54, 0xf3f9001a, 0x7c240288, 0x00000000}},  //   _snom_, ceţi_, lbir,\n  { {0x26dc09fc, 0x29040091, 0x00000000, 0x00000000}},  //   rovo_, _tima_,   ,\n  { {0x7c240051, 0x7d06002b, 0x27e903b2, 0x00000000}},  //   nbir, _jiks, żana_,\n  { {0x7d06021e, 0xf74301fc, 0x7c240a15, 0x00000000}},  //   _miks, _пето, ibir,\n  { {0x7d0600d8, 0x0bb7009b, 0x61130035, 0x00000000}},  //   _liks, פלים_, _săla,\n  { {0xb7bd001a, 0x7c240b55, 0x649c0048, 0x00000000}},  //   _reţi, kbir, _déir,\n  { {0x7d060b56, 0x75d30025, 0x24860b57, 0x00000000}},  //   _niks, _ثيما, _unom_,\n  { {0x7c240b58, 0x62980059, 0x6f0d0082, 0x00000000}},  //   dbir, _tovo, _quac,\n  { {0xd24f0b59, 0xdb23026c, 0xef1f006b, 0x00000000}},  //   _منه_, ہوری, rpü_,\n  { {0x7d060089, 0x00000000, 0x00000000, 0x00000000}},  //   _biks,   ,   ,\n  { {0x7c240b5a, 0x6f0d096a, 0x44240022, 0x00000000}},  //   gbir, _tuac, nbm_,\n  { {0x2d8c0b5b, 0x7d060b5c, 0xf3f9001a, 0x00000000}},  // [1070] äder_, _diks, teţi_,\n  { {0xed4e00a1, 0x0dcb0b5d, 0x7c240288, 0x00000000}},  //   دھی_, _гуми_, abir,\n  { {0x7c240b5e, 0xa90701f7, 0xa3de0061, 0x00000000}},  //   bbir, سبان, _दुस_,\n  { {0xe9f80088, 0x6ef20190, 0x00000000, 0x00000000}},  //   їнці_, ræbe,   ,\n  { {0x3b640265, 0x69130066, 0x00000000, 0x00000000}},  //   _първ, _għen,   ,\n  { {0x64470006, 0x45190401, 0x3ce90023, 0x00000000}},  //   ėjim, оция_, llav_,\n  { {0x7e7700f8, 0x6724001e, 0x00000000, 0x00000000}},  //   _maxp, ģija,   ,\n  { {0xc952009b, 0x8af0006b, 0x2d810087, 0x00000000}},  //   _שמן_, ntən, _mrhe_,\n  { {0x2d57011f, 0x649c0051, 0x00000000, 0x00000000}},  //   hçe_, _péir,   ,\n  { {0x2d57014a, 0x7c2f0068, 0x957c00b4, 0x00000000}},  //   kçe_, _lecr, _cząs,\n  { {0x9046007a, 0x3ce901aa, 0xf4870b5f, 0x00000000}},  //   ونده, klav_, _нудн,\n  { {0xcea9007b, 0x7c2f0129, 0x7c24006b, 0x00000000}},  //   _די_, _necr, xbir,\n  { {0x7d06093b, 0x00000000, 0x00000000, 0x00000000}},  //   _riks,   ,   ,\n  { {0x7d060b60, 0xa1c50088, 0x442f01d6, 0x00000000}},  //   _siks, _облд, _heg_,\n  { {0xfce602e9, 0x7c240095, 0x8af0006b, 0x00000000}},  //   дово, tbir, ftən,\n  { {0x442f01e3, 0x3ce90059, 0x7c2f0544, 0x00000000}},  //   _jeg_, glav_, _cecr,\n  { {0x442f0b61, 0x7c240b62, 0x7c2f0b63, 0x00000000}},  // [1080] _meg_, rbir, _decr,\n  { {0x4a4300ed, 0x7d060b64, 0x442f0b65, 0x00000000}},  //   кнув, _wiks, _leg_,\n  { {0x7d060b66, 0xa96a01f7, 0xd9100014, 0x00000000}},  //   _tiks, تمام_, ایر_,\n  { {0x442f0b67, 0x3ce90802, 0x7c2f00bb, 0x00000000}},  //   _neg_, clav_, _gecr,\n  { {0x69d501a2, 0xafdb0190, 0x00000000, 0x00000000}},  //   _exze, lgør,   ,\n  { {0x442f0004, 0xd7f90088, 0x00000000, 0x00000000}},  //   _aeg_, чує_,   ,\n  { {0x442f0145, 0xafdb0637, 0x443d0846, 0x00000000}},  //   _beg_, ngør, _bdw_,\n  { {0x442f005b, 0x9855007e, 0xb05b0052, 0x00000000}},  //   _ceg_, _птуш, nnät,\n  { {0x442f0b68, 0x443d0b69, 0xfc3f000c, 0x00000000}},  //   _deg_, _ddw_, _slík_,\n  { {0x6722007f, 0x00000000, 0x00000000, 0x00000000}},  //   mpoj,   ,   ,\n  { {0x6722001e, 0x443d008e, 0x442f0b6a, 0x00000000}},  //   lpoj, _fdw_, _feg_,\n  { {0x3cfa013d, 0x442f0b6b, 0x14170025, 0x00000000}},  //   ्दों_, _geg_, _قيمة_,\n  { {0xceeb0b6c, 0x7c2f032c, 0x26ce0197, 0x00000000}},  //   قرآن_, _recr, onfo_,\n  { {0x442f00b5, 0x2d57014a, 0x00000000, 0x00000000}},  //   _zeg_, tçe_,   ,\n  { {0x26ce006c, 0x9d18017f, 0xafdb0030, 0x00000000}},  //   info_, дост_, ggør,\n  { {0x9f550088, 0x2cb20016, 0x6aae0023, 0x00000000}},  //   _звич, ghyd_, _albf,\n  { {0x7c220b6d, 0x7c2f0089, 0x7e770133, 0x00000000}},  // [1090] ñora, _vecr, _taxp,\n  { {0x3ce904c8, 0x2a7801a3, 0x7d1e00d9, 0x00000000}},  //   slav_, _carb_, _ftps,\n  { {0x7c2f011f, 0x2a78002b, 0x6913002b, 0x00000000}},  //   _tecr, _darb_, _għel,\n  { {0x2cb2018e, 0x20190010, 0x20d900f6, 0x00000000}},  //   chyd_, ncsi_, géix_,\n  { {0x442f0b6e, 0x628a0061, 0xe76b031d, 0x00000000}},  //   _reg_, _onfo, تحان_,\n  { {0x442f0292, 0x443d01f3, 0x9967073b, 0x00000000}},  //   _seg_, _sdw_, _отбл,\n  { {0x442f0145, 0x26c904eb, 0xb05b0b6f, 0x00000000}},  //   _peg_, đao_, nnäs,\n  { {0x628a0b70, 0x2ca900f8, 0x00000000, 0x00000000}},  //   _anfo, nkad_,   ,\n  { {0x442f0b71, 0xe3b10025, 0x6e350288, 0x00000000}},  //   _veg_, طرة_, kazb,\n  { {0x442f0b72, 0x29110117, 0x00000000, 0x00000000}},  //   _weg_, _kuza_,   ,\n  { {0x442f0b73, 0x2ca9006c, 0x2f1400f8, 0x00000000}},  //   _teg_, kkad_, _säg_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xc0000055, 0x2ca90717, 0xe3ae0121, 0x00000000}},  //   ূর্ণ_, dkad_, _сб_,\n  { {0x539a0097, 0x2f140039, 0xafdb0030, 0x00000000}},  //   _מינו, _väg_, tgør,\n  { {0x98a700b9, 0xacf600ec, 0xd24e0025, 0x00000000}},  //   éně_, ечај, _انى_,\n  { {0x2ca900e0, 0x00000000, 0x00000000, 0x00000000}},  //   gkad_,   ,   ,\n  { {0xcb670140, 0x60d7009b, 0xbb430a85, 0x00000000}},  // [10a0] нате_, _רופא_, летк,\n  { {0x2911031a, 0x60c60b74, 0x69130066, 0x00000000}},  //   _buza_, likm, _iħej,\n  { {0xc87902b9, 0xc86600e3, 0x29110035, 0x00000000}},  //   _baş_, етли, _cuza_,\n  { {0x6d4e0009, 0x2ca90039, 0x60c604cb, 0x00000000}},  //   muba, ckad_, nikm,\n  { {0x6d5c0211, 0xb05b0b75, 0x7c3600e0, 0x00000000}},  //   ltra, onär, mayr,\n  { {0x26ce0b76, 0x7c36006b, 0x69130066, 0x00000000}},  //   unfo_, layr, _mħej,\n  { {0x6d4e0111, 0x672204eb, 0x2366016e, 0x00000000}},  //   nuba, spoj, _spoj_,\n  { {0x6d5c0b77, 0x09e30b5f, 0xb05b01a2, 0x00000000}},  //   itra, _сосн, hnär,\n  { {0x68e2006c, 0x6d4e011c, 0x60c60022, 0x00000000}},  //   mood, huba, dikm,\n  { {0x6d4e000b, 0x6d5c0059, 0x8af0005f, 0x00000000}},  //   kuba, ktra, xtəl,\n  { {0xe3af00d3, 0xc879047f, 0x6d5c0626, 0x00000000}},  //   لری_, _yaş_, jtra,\n  { {0xe61f001d, 0x68e20168, 0x60c6000a, 0x00000000}},  //   _đôi_, nood, gikm,\n  { {0xdefb007c, 0x6d5c010e, 0x00000000, 0x00000000}},  //   зыв_, etra,   ,\n  { {0x6d5c010f, 0x628a00ab, 0xb8160044, 0x00000000}},  //   ftra, _unfo, ারিত_,\n  { {0x6d5c011c, 0xc27b009b, 0x68e2003c, 0x00000000}},  //   gtra, _מרגי, kood,\n  { {0x8af0006b, 0x6143012b, 0xdef801d5, 0x00000000}},  //   stəl, _сећа, ċċa_,\n  { {0x29110091, 0x6d5c0b78, 0x2ca90039, 0x00000000}},  // [10b0] _suza_, atra, rkad_,\n  { {0x2ca900f8, 0x6d4e0145, 0x8af0006b, 0x00000000}},  //   skad_, buba, qtəl,\n  { {0xc984025f, 0x7c360b79, 0x6d4e00ab, 0x00000000}},  //   луци, bayr, cuba,\n  { {0x61ea00c4, 0xcd96009b, 0x7afe01d6, 0x00000000}},  //   _myfl, _סדרת_, ampt,\n  { {0x4c9a019b, 0x00000000, 0x00000000, 0x00000000}},  //   _חברו,   ,   ,\n  { {0x07a20b7a, 0x29110066, 0xc668003b, 0x00000000}},  //   рашн, _tuza_, ешће_,\n  { {0x68e20168, 0xc879014a, 0xd5750b7b, 0x00000000}},  //   bood, _taş_, туль,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6d4e0b7c, 0x6d5c0b7d, 0x77550a85, 0x00000000}},  //   zuba, ztra, _шкаф,\n  { {0x6d5c0056, 0x6d4e0b7e, 0x00000000, 0x00000000}},  //   ytra, yuba,   ,\n  { {0x61ea018e, 0x26c70b7f, 0x6d5c00f8, 0x00000000}},  //   _cyfl, mino_, xtra,\n  { {0xf485026c, 0x6d5c07f9, 0x3cf901d6, 0x00000000}},  //   _جائی, vtra, _nhsv_,\n  { {0x6d5c002b, 0x3f8401dc, 0xb05b0039, 0x00000000}},  //   wtra, ímu_, tnär,\n  { {0x6d5c002b, 0x6d4e0b80, 0x60c6023a, 0x00000000}},  //   ttra, tuba, sikm,\n  { {0x61ea018e, 0xed5700ed, 0xddc30b81, 0x00000000}},  //   _gyfl, кор_, абри,\n  { {0x6d4e020c, 0x26c70207, 0x6d5c03a1, 0x00000000}},  //   ruba, hino_, rtra,\n  { {0x26c70006, 0x387d0016, 0x6d4e011c, 0x00000000}},  // [10c0] kino_, ddwr_, suba,\n  { {0x68e20061, 0x26c70059, 0x0f370049, 0x00000000}},  //   wood, jino_, _שריט_,\n  { {0x26c70119, 0xfbd100a1, 0x68e2006c, 0x00000000}},  //   dino_, لتے_, tood,\n  { {0xd3080082, 0xdca60478, 0x2b490b82, 0x00000000}},  //   _hệt_, _рами, brac_,\n  { {0xdb0a0048, 0x68e20b83, 0x00000000, 0x00000000}},  //   únói, rood,   ,\n  { {0x26c705fc, 0xb05b010f, 0x68e20b84, 0x00000000}},  //   gino_, hnäp, sood,\n  { {0xceb300b6, 0xd3080011, 0xd5af0380, 0x00000000}},  //   שיו_, _mệt_, يفه_,\n  { {0x98a300d7, 0x60c400e0, 0x982800a1, 0x00000000}},  //   _кисе, _nmim, _سترہ_,\n  { {0x26c70059, 0x98a30140, 0xf9f40044, 0x00000000}},  //   bino_, _тите, _জলিল_,\n  { {0x26c70207, 0x00000000, 0x00000000, 0x00000000}},  //   cino_,   ,   ,\n  { {0x4035007e, 0x3a37009b, 0xaa370049, 0x00000000}},  //   ленс, כרים_, כטיק_,\n  { {0x7f5d001c, 0x60c40065, 0xd250025a, 0x00000000}},  //   ttsq, _cmim, جنگ_,\n  { {0x2d8c05cc, 0x64420032, 0x2d9e0b85, 0x00000000}},  //   åden_, _idoi, äten_,\n  { {0x41dd0309, 0x60c4013e, 0x00000000, 0x00000000}},  //   _नुकस, _emim,   ,\n  { {0xd3080011, 0x2d850051, 0x7b0901c5, 0x00000000}},  //   _dệt_, íle_, _džul,\n  { {0x2b49023a, 0x60d60023, 0x1fa70b86, 0x00000000}},  //   trac_, _gjym, _арог,\n  { {0x0bf50b87, 0x09bd0309, 0x9be70088, 0x00000000}},  // [10d0] упаю, ्प्य, тівк,\n  { {0x6d480b88, 0xdd03005d, 0x629a0023, 0x00000000}},  //   ádac, ırıc, njto,\n  { {0x26c70059, 0x81e40055, 0x6cd50879, 0x00000000}},  //   vino_, পের_, _مقدا,\n  { {0x78a0013e, 0x64420048, 0x00000000, 0x00000000}},  //   _comv, _ndoi,   ,\n  { {0x26c70207, 0x3ea10b89, 0x7b090006, 0x00000000}},  //   tino_, _koht_, _užuo,\n  { {0x644201a3, 0x00000000, 0x00000000, 0x00000000}},  //   _adoi,   ,   ,\n  { {0x26c70198, 0x00000000, 0x00000000, 0x00000000}},  //   rino_,   ,   ,\n  { {0x26c70181, 0xf773025a, 0x00000000, 0x00000000}},  //   sino_, _پار_,   ,\n  { {0x26c7006a, 0xdce5001e, 0x130902d3, 0x00000000}},  //   pino_, _arhī, нний_,\n  { {0xd7f80088, 0x6b670089, 0x3ea100ca, 0x00000000}},  //   _рус_, mīgā, _noht_,\n  { {0x24550879, 0x27fa0036, 0x68fb0022, 0x00000000}},  //   _مناس, ępne_, _khud,\n  { {0xd3080082, 0x00000000, 0x00000000, 0x00000000}},  //   _sệt_,   ,   ,\n  { {0x7ae50368, 0x68fb00e7, 0x27ed000a, 0x00000000}},  //   koht, _mhud, _jyen_,\n  { {0x7ae500b0, 0x63a90058, 0x63bb00e7, 0x00000000}},  //   joht, myen, mzun,\n  { {0x27ed0263, 0x925606e3, 0x8af0006b, 0x00000000}},  //   _lyen_, _сајт_, stək,\n  { {0x60c40058, 0x27ed004a, 0x00000000, 0x00000000}},  //   _umim, _oyen_,   ,\n  { {0x8b26008b, 0x63a904cb, 0x63bb0b8a, 0x00000000}},  // [10e0] удзе, nyen, nzun,\n  { {0xfeba007a, 0x290d0b8b, 0x7e56003b, 0x00000000}},  //   _ساخت_, _aiea_, _стиц,\n  { {0x09f6022a, 0x27ed0173, 0xa84a0025, 0x00000000}},  //   учая, _ayen_, فلام_,\n  { {0x27ed0b8c, 0x7e7e0b8d, 0x68fb0142, 0x00000000}},  //   _byen_, _happ, _chud,\n  { {0x7e7e00b0, 0x7c95007e, 0x96ea085f, 0x00000000}},  //   _kapp, _трэц, нька_,\n  { {0x7e7e01d5, 0xddc70165, 0x66e30147, 0x00000000}},  //   _japp, lejš, боча,\n  { {0x7e7e0198, 0x7b090209, 0x6b840277, 0x00000000}},  //   _mapp, _ožuj, lvig,\n  { {0x7e7e00b0, 0xddc70b8e, 0x3a3a0b8f, 0x00000000}},  //   _lapp, nejš, lapp_,\n  { {0x63a90047, 0x6b8402e1, 0xa3de007d, 0x00000000}},  //   gyen, nvig, _दुख_,\n  { {0x7e7e0b90, 0x3a3a00f8, 0xf1260b91, 0x00000000}},  //   _napp, napp_, льмо,\n  { {0x6b84010e, 0x63a901c3, 0x00000000, 0x00000000}},  //   hvig, ayen,   ,\n  { {0x657a00ea, 0x6f160b92, 0x63a90146, 0x00000000}},  //   _isth, _buyc, byen,\n  { {0x7e7e023a, 0x4fc7005e, 0x3a3a0894, 0x00000000}},  //   _bapp, усна, kapp_,\n  { {0x7e7e07c5, 0x00000000, 0x00000000, 0x00000000}},  //   _capp,   ,   ,\n  { {0x7e7e0b93, 0xccfb012b, 0x7eb0006c, 0x00000000}},  //   _dapp, ећа_, _täpn,\n  { {0x657a0009, 0x61f80295, 0x00000000, 0x00000000}},  //   _msth, _izvl,   ,\n  { {0x5a35053c, 0x7ae50b94, 0x68fb005b, 0x00000000}},  // [10f0] инат, toht, _rhud,\n  { {0x7e7e01f3, 0x68fb0b95, 0x6b670089, 0x00000000}},  //   _gapp, _shud, vīgā,\n  { {0x7ae50b96, 0xb81500ed, 0x1ed80379, 0x00000000}},  //   roht, адеј, _حبيب_,\n  { {0xf7710137, 0x3f890b97, 0x765a00d9, 0x00000000}},  //   قات_, _krau_, _acty,\n  { {0x7c2d0b98, 0x3a3a0b99, 0x7e7e0b9a, 0x00000000}},  //   mbar, bapp_, _yapp,\n  { {0x6b670089, 0xe4630180, 0x3a3a0026, 0x00000000}},  //   rīgā, şmüş, capp_,\n  { {0x7d0f0047, 0x5e580049, 0x68fb0b9b, 0x00000000}},  //   _kics, טיגע_, _thud,\n  { {0x93450797, 0x63bb0577, 0x58d50088, 0x00000000}},  //   ание, tzun, _тобт,\n  { {0x657a00f4, 0x7c2d0032, 0x63bb0b9c, 0x00000000}},  //   _esth, ibar, uzun,\n  { {0x52a90b9d, 0x387f002d, 0x63a9011c, 0x00000000}},  //   твом_, _haur_, ryen,\n  { {0x7c2d00b5, 0x7e7e0b9e, 0x3f89002d, 0x00000000}},  //   kbar, _rapp, _arau_,\n  { {0x7e7e01bc, 0x7c2d0036, 0x3f890a16, 0x00000000}},  //   _sapp, jbar, _brau_,\n  { {0x442d000b, 0x7e7e0039, 0xddc70b9f, 0x00000000}},  //   mbe_, _papp, vejš,\n  { {0x442d010f, 0x321e0009, 0x7b09016c, 0x00000000}},  //   lbe_, ccty_, _džuk,\n  { {0x3f89001a, 0x3c420010, 0x7a40000c, 0x00000000}},  //   _erau_, _lévő_, hátí,\n  { {0x0c260517, 0x442d0263, 0x3f89010f, 0x00000000}},  //   рман, nbe_, _frau_,\n  { {0x3f8906c0, 0xddc701d9, 0x2c010061, 0x00000000}},  // [1100] _grau_, rejš, लेलं_,\n  { {0x6b8400cd, 0x62810652, 0x7c2d0288, 0x00000000}},  //   rvig, ndlo, abar,\n  { {0x6e3c004e, 0x7c2d0039, 0x81e70055, 0x00000000}},  //   marb, bbar, _মৃত_,\n  { {0x6e3c0002, 0x387f0089, 0x442d016e, 0x00000000}},  //   larb, _caur_, jbe_,\n  { {0x7d040ba0, 0x442d01d9, 0xdddc0010, 0x00000000}},  //   mmis, dbe_, merő,\n  { {0x7d040368, 0x6b8b0030, 0x442d010f, 0x00000000}},  //   lmis, ægge, ebe_,\n  { {0xd943003b, 0x3856005e, 0x387f00e5, 0x00000000}},  //   _мери, _възс, _faur_,\n  { {0x387f0ba1, 0x48e303e8, 0x6e3c002d, 0x00000000}},  //   _gaur_, _досв, harb,\n  { {0x7d040ba2, 0x6e3c002d, 0x2918002d, 0x00000000}},  //   imis, karb, _hura_,\n  { {0x29180ba3, 0xc5fd0044, 0x7d040ba4, 0x00000000}},  //   _kura_, ুড়া_, hmis,\n  { {0x6e3c0ba5, 0x442d0198, 0x29180ba6, 0x00000000}},  //   darb, bbe_, _jura_,\n  { {0x29180ba7, 0xd57700b6, 0x386605ba, 0x00000000}},  //   _mura_, _כתבה_, nfor_,\n  { {0x7d040004, 0x291801d5, 0x7c2d0ba8, 0x00000000}},  //   dmis, _lura_, vbar,\n  { {0x6e3c0006, 0x2bf0013d, 0x7c2d00bb, 0x00000000}},  //   garb, _आरजू_, wbar,\n  { {0x02fb0104, 0x7d0f0232, 0x7d040190, 0x00000000}},  //   _שלומ, _pics, fmis,\n  { {0xb035025f, 0xc03501fc, 0x7c2d0ba9, 0x00000000}},  //   _униш, _униј, ubar,\n  { {0x7c2d0149, 0x29180baa, 0x5c07005e, 0x00000000}},  // [1110] rbar, _aura_, рява,\n  { {0x7c2d0bab, 0x7d040bac, 0x442d016e, 0x00000000}},  //   sbar, amis, zbe_,\n  { {0x29180bad, 0x442d0bae, 0x7d0400ab, 0x00000000}},  //   _cura_, ybe_, bmis,\n  { {0x7c950025, 0x442d0066, 0x6205006b, 0x00000000}},  //   _الحص, xbe_, ürlə,\n  { {0x7bd8011f, 0x6d550baf, 0x442d0142, 0x00000000}},  //   şvur, luza, vbe_,\n  { {0x1fd90044, 0x29180bb0, 0x442d000a, 0x00000000}},  //   _সরাস, _fura_, wbe_,\n  { {0x6a22026c, 0x291804f8, 0x20d20027, 0x00000000}},  //   _رہنم, _gura_, lšie_,\n  { {0x6f1d001c, 0x442d010f, 0x9dd8009b, 0x00000000}},  //   kqsc, ube_, יווק_,\n  { {0x7c22008e, 0x6e3c014a, 0x29180bb1, 0x00000000}},  //   ñori, yarb, _zura_,\n  { {0x7d04037e, 0x442d0880, 0x6d550bb2, 0x00000000}},  //   zmis, sbe_, kuza,\n  { {0x62810007, 0xd298008b, 0x7d04021e, 0x00000000}},  //   rdlo, ртыі_, ymis,\n  { {0xcea901f8, 0x2b4000f6, 0x6d550bb3, 0x00000000}},  //   _אי_, ysic_, duza,\n  { {0x6e3c010f, 0x20d20027, 0xd34100a1, 0x00000000}},  //   tarb, jšie_, _عہدی,\n  { {0x249f07e0, 0x6d55001a, 0x7e230143, 0x00000000}},  //   ljum_, fuza, здрж,\n  { {0x7d040004, 0x6e3c010f, 0x6d550032, 0x00000000}},  //   tmis, rarb, guza,\n  { {0x6e3c04d3, 0xceb4006b, 0x3a380bb4, 0x00000000}},  //   sarb, _atət_, _serp_,\n  { {0x7e7508e2, 0x29180020, 0x6a160a4f, 0x00000000}},  // [1120] bezp, _sura_, مبار,\n  { {0x3f8f0181, 0x6d5501f3, 0x2b400bb5, 0x00000000}},  //   _água_, buza, rsic_,\n  { {0x5d860025, 0x8fc50014, 0xd23a0049, 0x00000000}},  //   _الجل, _هزین, רגעל,\n  { {0x3a3801d6, 0x29180350, 0x00000000, 0x00000000}},  //   _werp_, _vura_,   ,\n  { {0x386602cc, 0xdd8f00a2, 0x3a380146, 0x00000000}},  //   rfor_, _قوی_, _terp_,\n  { {0xe9440bb6, 0x00000000, 0x00000000, 0x00000000}},  //   _ورزی,   ,   ,\n  { {0x249f000c, 0xceb300a0, 0x386600fa, 0x00000000}},  //   fjum_, היג_, pfor_,\n  { {0x249f000c, 0x00000000, 0x00000000, 0x00000000}},  //   gjum_,   ,   ,\n  { {0x6d550bb7, 0x00000000, 0x00000000, 0x00000000}},  //   zuza,   ,   ,\n  { {0x25610047, 0xe643003b, 0x22470288, 0x00000000}},  //   ból_, _неуп, _cdnk_,\n  { {0x7648018e, 0xf09f0129, 0x6a9b0049, 0x00000000}},  //   _iddy, tjà_, אשינ,\n  { {0x64a30bb8, 0x00000000, 0x00000000, 0x00000000}},  //   _наха,   ,   ,\n  { {0x33f6023c, 0x2ca00bb9, 0xc7b40049, 0x00000000}},  //   _اساس, djid_, קבֿ_,\n  { {0x20d20027, 0x3d950bba, 0x121a007e, 0x00000000}},  //   všie_, оигр, _сюды_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x8cf50106, 0x6d550bbb, 0x853b0049, 0x00000000}},  //   ізац, ruza, טגלי,\n  { {0xab87005e, 0x764809b6, 0x5b14004d, 0x00000000}},  // [1130] щувк, _oddy, змут,\n  { {0x70550123, 0x249f0036, 0x20d20027, 0x00000000}},  //   _انکا, zjum_, ršie_,\n  { {0xceb20104, 0x69c801ed, 0x249f01e5, 0x00000000}},  //   _חיי_, _žder, yjum_,\n  { {0x7648018e, 0x515b0097, 0x20d20027, 0x00000000}},  //   _addy, רכאו, pšie_,\n  { {0x75280089, 0x46a502dc, 0x00000000, 0x00000000}},  //   _atdz, жалв,   ,\n  { {0x25610047, 0x7f3c0049, 0xf7700380, 0x00000000}},  //   tól_, נעוו, عان_,\n  { {0x04590025, 0x249f01e5, 0x00000000, 0x00000000}},  //   للغة_, tjum_,   ,\n  { {0x25610047, 0xc32501e0, 0x0325003b, 0x00000000}},  //   ról_, омик, один,\n  { {0x249f009f, 0xd2990088, 0x7b09012d, 0x00000000}},  //   rjum_, атні_, _džuv,\n  { {0x02c501fb, 0x68eb0bbc, 0x8af0006b, 0x00000000}},  //   ійно, logd, ltər,\n  { {0xe0da0bbd, 0xd4e701fb, 0x21690364, 0x00000000}},  //   иво_, _люди, шини_,\n  { {0x60cf009d, 0x67290066, 0xc1060025, 0x00000000}},  //   gicm, _ktej, توجي,\n  { {0x443f0bbe, 0xe9ff0082, 0x6d450479, 0x00000000}},  //   mau_, _trặc_, _avha,\n  { {0x443f04be, 0x645b0129, 0x67290bbf, 0x00000000}},  //   lau_, lgui, _mtej,\n  { {0x62830bc0, 0xa0a6004d, 0x2d8c0142, 0x00000000}},  //   _iano, _макд, íde_,\n  { {0x443f0bc1, 0x62830011, 0x00000000, 0x00000000}},  //   nau_, _hano,   ,\n  { {0xeab200a1, 0x5aca0147, 0x443f0bc2, 0x00000000}},  // [1140] وٹر_, алам_, iau_,\n  { {0x443f018e, 0x386d001f, 0x62830161, 0x00000000}},  //   hau_, _aber_, _jano,\n  { {0xdca601fb, 0x443f09cf, 0x6d410010, 0x00000000}},  //   _дани, kau_, álat,\n  { {0x186a0113, 0x443f0bc3, 0x62830161, 0x00000000}},  //   ради_, jau_, _lano,\n  { {0x443f0bc4, 0x27e00bc5, 0x47330088, 0x00000000}},  //   dau_, çin_, дніс,\n  { {0x2906002d, 0x27e001d5, 0x9f610010, 0x00000000}},  //   smoa_, ħin_, ését_,\n  { {0x443f018e, 0xe1e701d8, 0x8af0006b, 0x00000000}},  //   fau_, _آس_, stəs,\n  { {0x7c240627, 0x443f018e, 0x2005005f, 0x00000000}},  //   ncir, gau_, əlif_,\n  { {0x62830065, 0x8af0006b, 0x6d480062, 0x00000000}},  //   _bano, qtəs, ádaj,\n  { {0x62830b69, 0x78a200ea, 0x645b0325, 0x00000000}},  //   _cano, ljov, agui,\n  { {0x443f0bc6, 0xe29a001d, 0x645b0bc7, 0x00000000}},  //   bau_, _chưa_, bgui,\n  { {0x443f0bc8, 0x00000000, 0x00000000, 0x00000000}},  //   cau_,   ,   ,\n  { {0x6283091d, 0x64400258, 0x34d90049, 0x00000000}},  //   _fano, mami, _פֿעב,\n  { {0x62830bc9, 0x60cf0bca, 0x7c260bcb, 0x00000000}},  //   _gano, sicm, _afkr,\n  { {0xeca701fc, 0x9c8300b9, 0x64400020, 0x00000000}},  //   ојан, íčov, oami,\n  { {0x628300ee, 0x6aaa010f, 0x4c94007c, 0x00000000}},  //   _zano, öffn, мисс,\n  { {0x60cd0059, 0x628300e0, 0xdfd10464, 0x00000000}},  // [1150] _imam, _yano, _سيد_,\n  { {0x6440000b, 0x44240011, 0x443f001a, 0x00000000}},  //   hami, hcm_, zau_,\n  { {0xceb2007b, 0xe2a6009f, 0x67290224, 0x00000000}},  //   _ניט_, _áður_, _stej,\n  { {0x5d7a0476, 0x2d810bcc, 0x44260403, 0x00000000}},  //   _פארק, _ishe_, _nfo_,\n  { {0x64400004, 0x443f010a, 0x7b64007c, 0x00000000}},  //   dami, vau_, _отре,\n  { {0x8af0005f, 0xcf58009b, 0x443f0bcd, 0x00000000}},  //   stər, קבות_, wau_,\n  { {0x6440027b, 0x443f0bce, 0x60cd006c, 0x00000000}},  //   fami, tau_, _omam,\n  { {0x64400bcf, 0x6283021e, 0x78a200f6, 0x00000000}},  //   gami, _sano, cjov,\n  { {0x443f0bc4, 0x645b0190, 0x7c3d01a3, 0x00000000}},  //   rau_, rgui, _mesr,\n  { {0x443f0bd0, 0x78a9049b, 0x60cd00d6, 0x00000000}},  //   sau_, _hoev, _amam,\n  { {0x62830007, 0x443f0016, 0x6440006c, 0x00000000}},  //   _vano, pau_, bami,\n  { {0x64400181, 0x7c3d0340, 0x44240020, 0x00000000}},  //   cami, _nesr, ccm_,\n  { {0x6283006a, 0xa29501fb, 0x78bb00b9, 0x00000000}},  //   _tano, _наді, _mluv,\n  { {0x78bb0211, 0xe29a0011, 0x60cd0288, 0x00000000}},  //   _lluv, _thưa_, _emam,\n  { {0x443d0bd1, 0x6da60bd2, 0x6b8f0bd3, 0x00000000}},  //   _kew_, чива, _arcg,\n  { {0x61fc011f, 0x8b26007c, 0x78a9012d, 0x00000000}},  //   ürle, здае, _noev,\n  { {0xeb970407, 0x7c3d00c4, 0x7c240145, 0x00000000}},  // [1160] пит_, _desr, rcir,\n  { {0x64400814, 0x09e60200, 0x7c240bd4, 0x00000000}},  //   zami, позн, scir,\n  { {0x78bb0617, 0x78a2008e, 0x78a900d9, 0x00000000}},  //   _bluv, tjov, _boev,\n  { {0x443d0038, 0x6440062c, 0x78a900bb, 0x00000000}},  //   _new_, xami, _coev,\n  { {0x8af0005f, 0x64400bd5, 0x7d1e04fd, 0x00000000}},  //   stəq, vami, _hups,\n  { {0xab270265, 0x44260190, 0xd94601fc, 0x00000000}},  //   _хора_, _sfo_, _неги,\n  { {0x78bb0129, 0x64400114, 0x78a2007f, 0x00000000}},  //   _fluv, tami, pjov,\n  { {0x78bb0107, 0x89db009b, 0x443d0093, 0x00000000}},  //   _gluv, _החלי, _cew_,\n  { {0x6440006a, 0xe7370057, 0x68e3004a, 0x00000000}},  //   rami, _нет_, énde,\n  { {0x6440006c, 0xbebb0023, 0x6e3e00d9, 0x00000000}},  //   sami, hpër, _nepb,\n  { {0x64400814, 0x443d0038, 0x705504b1, 0x00000000}},  //   pami, _few_, وندا,\n  { {0x443d0bd6, 0xdfd507d0, 0x69c1006c, 0x00000000}},  //   _gew_, домы, _ülee,\n  { {0x2d8c0030, 0xdcb10082, 0x7c3d0203, 0x00000000}},  //   æden_, ểm_, _resr,\n  { {0x7bc40bd7, 0x7c3d00f6, 0x00000000, 0x00000000}},  //   dziu, _sesr,   ,\n  { {0x629800ab, 0x443d0085, 0x7eb0006c, 0x00000000}},  //   _invo, _yew_, _näpu,\n  { {0x60cd0058, 0x62880bd8, 0x00000000, 0x00000000}},  //   _umam, lddo,   ,\n  { {0x9f54008b, 0x2bc7006e, 0xfbd301fa, 0x00000000}},  // [1170] _звыч, _रेखा, رتر_,\n  { {0x7b090bd9, 0x628803cd, 0x7c3d01c3, 0x00000000}},  //   _ažur, nddo, _wesr,\n  { {0x2d8c0bda, 0x7d1e0606, 0x78bb0bdb, 0x00000000}},  //   ådet_, _gups, _pluv,\n  { {0x315701ce, 0x60dd0bdc, 0x00000000, 0x00000000}},  //   ליבן_, nnsm,   ,\n  { {0x629801b5, 0x2cf90061, 0x60dd0146, 0x00000000}},  //   _onvo, ंतील_, insm,\n  { {0x443d002b, 0x6b8d03cc, 0x00000000, 0x00000000}},  //   _sew_, mvag,   ,\n  { {0x78a9017c, 0x443d0bdd, 0x58d50088, 0x00000000}},  //   _toev, _pew_, _жовт,\n  { {0xe3b901bd, 0xcd9800a0, 0x62880016, 0x00000000}},  //   жби_, לדות_, eddo,\n  { {0x27ff01f6, 0xf770002c, 0x628800bb, 0x00000000}},  //   _uzun_, _مال_, fddo,\n  { {0x25e8013d, 0x443d0bde, 0x04fd0044, 0x00000000}},  //   _चुकी_, _wew_, ঁদের_,\n  { {0x69c50bdf, 0x7643033b, 0x6d550036, 0x00000000}},  //   nzhe, many, jrza,\n  { {0x62980be0, 0x6d55057c, 0x644b0018, 0x00000000}},  //   _envo, drza, _udgi,\n  { {0x7d1e0107, 0x6d550036, 0x945d00b4, 0x00000000}},  //   _sups, erza, sińs,\n  { {0x76430169, 0x7d1e0be1, 0x8fa3003b, 0x00000000}},  //   nany, _pups, њаре,\n  { {0x9fa00112, 0x00000000, 0x00000000, 0x00000000}},  //   _méér_,   ,   ,\n  { {0xc1060025, 0x76430be2, 0x69c5012d, 0x00000000}},  //   _توبي, hany, dzhe,\n  { {0x09ab0044, 0xcb6700c0, 0x6d47006c, 0x00000000}},  // [1180] _গেলা, мате_, asja,\n  { {0x0f57009b, 0x76430145, 0xbebb0023, 0x00000000}},  //   _קיים_, jany, spër,\n  { {0x76430127, 0x7e7c0277, 0xa967005e, 0x00000000}},  //   dany, merp, диха_,\n  { {0x6d5c09f3, 0x395a00eb, 0x2c7800a1, 0x00000000}},  //   mura, rups_, _ڈیڑھ_,\n  { {0x76430be3, 0x6288018e, 0x6d5c0169, 0x00000000}},  //   fany, yddo, lura,\n  { {0x395a01db, 0x07a3012b, 0xfbd3009b, 0x00000000}},  //   pups_, таљн, _יתר_,\n  { {0x6d5c0be4, 0xf983007c, 0x00000000, 0x00000000}},  //   nura, _игро,   ,\n  { {0x2ebb0201, 0x7e7c0be5, 0x00000000, 0x00000000}},  //   _उत्त, herp,   ,\n  { {0x7643020c, 0x6d5c01a3, 0x20c20048, 0x00000000}},  //   bany, hura, _móid_,\n  { {0xd250007a, 0x6d5c0653, 0xeb910049, 0x00000000}},  //   دند_, kura, אָט_,\n  { {0x7e7c0af1, 0x6288018e, 0x6d5c0be6, 0x00000000}},  //   derp, rddo, jura,\n  { {0x6d5c022b, 0x67200020, 0x04930025, 0x00000000}},  //   dura, _kumj, _للمح,\n  { {0x7c360190, 0x60dd0be7, 0x2d6801a2, 0x00000000}},  //   dbyr, rnsm, eße_,\n  { {0x6d5c0020, 0x7e7c0030, 0x826800a1, 0x00000000}},  //   fura, gerp, _رشتہ_,\n  { {0x9f9901d6, 0x00000000, 0x00000000, 0x00000000}},  //   _dáár_,   ,   ,\n  { {0x6d47002b, 0x76430036, 0x20c20051, 0x00000000}},  //   rsja, zany, _cóid_,\n  { {0x2d9e010f, 0x2d8c043e, 0xfc3f0129, 0x00000000}},  // [1190] äter_, åder_, _veí_,\n  { {0x6d5c020c, 0x9af50025, 0x7e7c08d0, 0x00000000}},  //   bura, ركات, cerp,\n  { {0x6d5c0be8, 0x6b8d0039, 0x76430321, 0x00000000}},  //   cura, svag, vany,\n  { {0x76430046, 0x2bd002d2, 0xe0df0197, 0x00000000}},  //   wany, _सेवा, nnò_,\n  { {0x7643020c, 0x7d0d003c, 0xf3880011, 0x00000000}},  //   tany, mmas, _nợ_,\n  { {0x7d0d038c, 0xddde05fa, 0xbb3a00a0, 0x00000000}},  //   lmas, _hapš, _מעשי,\n  { {0x7643020c, 0x00000000, 0x00000000, 0x00000000}},  //   rany,   ,   ,\n  { {0x7d0d038c, 0x76430149, 0xb38500c0, 0x00000000}},  //   nmas, sany, елил,\n  { {0x76430be9, 0x7e7c0009, 0x7d0d010e, 0x00000000}},  //   pany, yerp, imas,\n  { {0x13060057, 0x6d5c033b, 0x7d0d0bea, 0x00000000}},  //   нный_, yura, hmas,\n  { {0xd12e00d3, 0xe1f9008b, 0x6d5c002d, 0x00000000}},  //   یمی_, яго_, xura,\n  { {0x76410047, 0xf9920476, 0x2ec803d7, 0x00000000}},  //   _hely, ארט_, रफ्त,\n  { {0x42cd0044, 0x6d5c0093, 0x76410006, 0x00000000}},  //   রকৌশ, wura, _kely,\n  { {0x91e50001, 0x7d0d01a3, 0x3ebe000c, 0x00000000}},  //   _поле, emas, ótt_,\n  { {0x76410047, 0xc5f20049, 0x7e7c0146, 0x00000000}},  //   _mely, ָדן_, rerp,\n  { {0x7d0d011c, 0x7e7c0056, 0x6d5c0beb, 0x00000000}},  //   gmas, serp, rura,\n  { {0x7e7c0bec, 0x245a011f, 0x75210023, 0x00000000}},  // [11a0] perp, lümü_, _lulz,\n  { {0x6d5c0016, 0xb05b0a35, 0xea87026b, 0x00000000}},  //   pura, nhän, нбул_,\n  { {0xcee90014, 0x245a0279, 0x8c460745, 0x00000000}},  //   _ترين_, nümü_, _пене,\n  { {0x7eb00004, 0x22450bed, 0x00000000, 0x00000000}},  //   _täps, halk_,   ,\n  { {0x68e3008e, 0x20d20059, 0x224500ea, 0x00000000}},  //   énda, jšim_, kalk_,\n  { {0x09bf0044, 0x75210026, 0x0cc30044, 0x00000000}},  //   _আশরা, _bulz, ্কৃত,\n  { {0xf3880011, 0xceb3009b, 0x76410016, 0x00000000}},  //   _sợ_, ריו_, _dely,\n  { {0x7521008e, 0xd3a6004c, 0x69c1006c, 0x00000000}},  //   _dulz, ероп, _ülea,\n  { {0x76410bee, 0x22450239, 0xb05b01a2, 0x00000000}},  //   _fely, falk_, fhän,\n  { {0xf388001d, 0x76410bef, 0x6aae0190, 0x00000000}},  //   _vợ_, _gely, _jobf,\n  { {0xba570049, 0xf48400a1, 0x752100d9, 0x00000000}},  //   עסטו_, _لاشی, _gulz,\n  { {0x7d0d006b, 0x254c00b9, 0x00000000, 0x00000000}},  //   xmas, měl_,   ,\n  { {0xb05b010f, 0xe0df0197, 0x224500bb, 0x00000000}},  //   bhän, rnò_, balk_,\n  { {0x245a014a, 0xddde012d, 0x539b00a0, 0x00000000}},  //   bümü_, _sapš, _מידו,\n  { {0x7d0d0279, 0x20240048, 0x00000000, 0x00000000}},  //   tmas, íriú_,   ,\n  { {0xccf8012b, 0x628a005b, 0x00000000, 0x00000000}},  //   ећу_, _hafo,   ,\n  { {0x7d0d0bf0, 0x628a01aa, 0x6aae00fa, 0x00000000}},  // [11b0] rmas, _kafo, _bobf,\n  { {0x2b490068, 0x64420048, 0x00000000, 0x00000000}},  //   rsac_, _leoi,   ,\n  { {0x764101aa, 0xd9990054, 0xddde0bf1, 0x00000000}},  //   _rely, بنات_, _tapš,\n  { {0x48cf0044, 0x254c00b9, 0x628a0bf2, 0x00000000}},  //   িক্র, děl_, _lafo,\n  { {0x81bc0089, 0x245a005a, 0x7eb00bf3, 0x00000000}},  //   ucēj, zümü_, _käpp,\n  { {0x69d5001c, 0xf65300a1, 0x75210096, 0x00000000}},  //   _येथी, ائش_, _pulz,\n  { {0x64420051, 0x76410006, 0xb5c20088, 0x00000000}},  //   _beoi, _vely, ийшл,\n  { {0x64420051, 0x7eb00bf4, 0x798701c3, 0x00000000}},  //   _ceoi, _läpp, _isjw,\n  { {0xe3b10025, 0x69d50061, 0x130902d3, 0x00000000}},  //   شرة_, _येती, мний_,\n  { {0x628a018e, 0x7eb00103, 0x00000000, 0x00000000}},  //   _cafo, _näpp,   ,\n  { {0x628a005b, 0xb05b09b0, 0x64420048, 0x00000000}},  //   _dafo, rhän, _feoi,\n  { {0xe3b002fd, 0xe5080025, 0x64420bf5, 0x00000000}},  //   _گرم_, _كيلو_, _geoi,\n  { {0xb05b0bf6, 0x2ca9006c, 0xe3ae013a, 0x00000000}},  //   mhäl, djad_, _тб_,\n  { {0x79820046, 0x628a0016, 0x248d00b4, 0x00000000}},  //   łowi, _gafo, ldem_,\n  { {0xbea301fc, 0x8af0006b, 0xb05b01a2, 0x00000000}},  //   шарк, frən, chäo,\n  { {0x248d0bf7, 0x1fb6030d, 0x3ce000ea, 0x00000000}},  //   ndem_, _асор, univ_,\n  { {0x248d042e, 0x00000000, 0x00000000, 0x00000000}},  // [11c0] idem_,   ,   ,\n  { {0x3ced0bf8, 0x248d0bf9, 0x63a600f8, 0x00000000}},  //   čeva_, hdem_, äkni,\n  { {0x19b9008b, 0xae57009b, 0x7d0a003b, 0x00000000}},  //   нуць_, _בסיס_, _оног_,\n  { {0x79950036, 0x38cb00a6, 0x248d0bfa, 0x00000000}},  //   _drzw, وانی_, jdem_,\n  { {0xe7d201f5, 0x6d5a0006, 0x248d098d, 0x00000000}},  //   _देशप, štad, ddem_,\n  { {0x248d01d5, 0x254c00b9, 0x64420bfb, 0x00000000}},  //   edem_, těl_, _seoi,\n  { {0xe9a30594, 0x628a01e5, 0xa01b0010, 0x00000000}},  //   _карп, _rafo, ldöt,\n  { {0x628a018e, 0xb86604e8, 0xfb8500a1, 0x00000000}},  //   _safo, _جاسو, _جگہی,\n  { {0x2c6d0010, 0xaa82000c, 0xa766007e, 0x00000000}},  //   lódó_, _þýsk, _шкад,\n  { {0x68e20bfc, 0x00000000, 0x00000000, 0x00000000}},  //   lnod,   ,   ,\n  { {0x64420bfd, 0x9f4f000c, 0xe3af0bb6, 0x00000000}},  //   _teoi, _ágú_, مری_,\n  { {0x68e20016, 0x6b840009, 0xd5d90049, 0x00000000}},  //   nnod, kwig, _אַנש,\n  { {0x35a8013d, 0x628a0016, 0xe7030082, 0x00000000}},  //   _कपड़, _tafo, _hướ,\n  { {0x6b840090, 0x7a480089, 0x68e20544, 0x00000000}},  //   dwig, nūtē, hnod,\n  { {0x2ca9006c, 0x1df80147, 0x51f30014, 0x00000000}},  //   tjad_, веры_, _پسور,\n  { {0x20d20059, 0x0217009b, 0x00000000, 0x00000000}},  //   jših_, _בחום_,   ,\n  { {0x68e20428, 0x2ca90bfe, 0x3a75007c, 0x00000000}},  // [11d0] dnod, rjad_, ллар,\n  { {0x5a340bff, 0x2ca9006c, 0x248d0528, 0x00000000}},  //   инут, sjad_, zdem_,\n  { {0x68e2018e, 0x68e30211, 0xceb20104, 0x00000000}},  //   fnod, éndo, _היי_,\n  { {0x68e20016, 0x3f890022, 0x236d013e, 0x00000000}},  //   gnod, _ksau_, ytej_,\n  { {0xe9ff0011, 0x7c2d0145, 0x2fcb0009, 0x00000000}},  //   _trắc_, mcar, nzcg_,\n  { {0x7d1d038c, 0x7c2d001a, 0xda34007e, 0x00000000}},  //   _hiss, lcar, _веры,\n  { {0x45190401, 0xb05b0c00, 0xc98404cf, 0x00000000}},  //   нция_, thäl, _кути,\n  { {0x7c2d020c, 0x7d1d01d5, 0x05760025, 0x00000000}},  //   ncar, _jiss, امية_,\n  { {0x7d1d01cb, 0x248d010f, 0xb05b010f, 0x00000000}},  //   _miss, rdem_, rhäl,\n  { {0x236d0c01, 0xf77000a1, 0x27e00051, 0x00000000}},  //   rtej_, _گاہ_, úine_,\n  { {0x291e00f4, 0xa06a013a, 0x236d05fd, 0x00000000}},  //   _état_, нана_, stej_,\n  { {0x7c2d0c02, 0xd5ba0049, 0x6b8401d6, 0x00000000}},  //   jcar, _אזעל, ywig,\n  { {0x442d00d2, 0xe28e008b, 0x7c2d05eb, 0x00000000}},  //   mce_, _ла_, dcar,\n  { {0x442d0763, 0x66f503d7, 0x64490051, 0x00000000}},  //   lce_, ेतिक_, laei,\n  { {0x62810314, 0x7d1d010f, 0x3f8900e0, 0x00000000}},  //   melo, _biss, _esau_,\n  { {0x442d0c03, 0x6281001a, 0x7d1d00c4, 0x00000000}},  //   nce_, lelo, _ciss,\n  { {0x442f010f, 0x60c40c04, 0x442d00ab, 0x00000000}},  // [11e0] _mfg_, _ilim, ice_,\n  { {0x7bc0005f, 0x628100e5, 0xc33200b6, 0x00000000}},  //   _ümum, nelo, צוב_,\n  { {0x2d96098c, 0x442d0224, 0x7d1d0207, 0x00000000}},  //   _српс, kce_, _fiss,\n  { {0xdca601f9, 0x442d00b9, 0x7c2d0207, 0x00000000}},  //   _сами, jce_, ccar,\n  { {0x442d0c05, 0x6281023a, 0x6d4e0039, 0x00000000}},  //   dce_, kelo, lsba,\n  { {0x62810209, 0x6d5c046a, 0x60c400d4, 0x00000000}},  //   jelo, orra, _llim,\n  { {0x60c4006b, 0x62810c06, 0x6d4e0039, 0x00000000}},  //   _olim, delo, nsba,\n  { {0x442f0c07, 0x6f1e0046, 0x64490048, 0x00000000}},  //   _cfg_, _lipc, gaei,\n  { {0xb4e40316, 0x62810951, 0x6d5c010f, 0x00000000}},  //   _नदी_, felo, hrra,\n  { {0x6281049b, 0x26c700b9, 0x3866018e, 0x00000000}},  //   gelo, chno_, lgor_,\n  { {0x60c40c08, 0x442d00b9, 0x7c2d0133, 0x00000000}},  //   _blim, bce_, ycar,\n  { {0x38660bbe, 0x442d0207, 0x30a70364, 0x00000000}},  //   ngor_, cce_, уров,\n  { {0x8af0006b, 0x6d4e0168, 0x2d9e01c9, 0x00000000}},  //   stəy, esba, åten_,\n  { {0x60c4000b, 0x7d1d0004, 0x62810c09, 0x00000000}},  //   _elim, _siss, celo,\n  { {0x7d1d03b4, 0x60c401d5, 0x7c2d00b5, 0x00000000}},  //   _piss, _flim, tcar,\n  { {0x60c40007, 0x3ced0c0a, 0xd7c40061, 0x00000000}},  //   _glim, čevo_, वनाच,\n  { {0x7d1d0c0b, 0x7c2d0412, 0x6d5c0add, 0x00000000}},  // [11f0] _viss, rcar, arra,\n  { {0x7d1d0c0c, 0x442d011f, 0x7c2d0781, 0x00000000}},  //   _wiss, zce_, scar,\n  { {0x7d1d0c0d, 0x442d0036, 0x60c400b0, 0x00000000}},  //   _tiss, yce_, _ylim,\n  { {0x62810c0e, 0x69c1006c, 0x6f1e0019, 0x00000000}},  //   zelo, _ülem, _zipc,\n  { {0x442d0428, 0x07a509ae, 0x499300a1, 0x00000000}},  //   vce_, ралн, _گیار,\n  { {0x442d0036, 0x0555005e, 0x442f0bf5, 0x00000000}},  //   wce_, атия, _sfg_,\n  { {0x6281030a, 0x442d0c0f, 0x442f0c10, 0x00000000}},  //   velo, tce_, _pfg_,\n  { {0x26c7012d, 0x473507e1, 0xed640161, 0x00000000}},  //   shno_, _внас, leží_,\n  { {0x442d0c11, 0x62810c12, 0xe73001fa, 0x00000000}},  //   rce_, telo, _فصل_,\n  { {0x442d0c13, 0x60c40089, 0x27ff0c14, 0x00000000}},  //   sce_, _slim, _iyun_,\n  { {0x442d091d, 0x6281001a, 0x60c4001a, 0x00000000}},  //   pce_, relo, _plim,\n  { {0x6281001a, 0x65630181, 0x272b0030, 0x00000000}},  //   selo, munh, _køn_,\n  { {0x68e90065, 0x62810716, 0x20c20048, 0x00000000}},  //   _mjed, pelo, _fóin_,\n  { {0xed5a012b, 0x6d4e00bb, 0x200900fa, 0x00000000}},  //   ког_, tsba, _dzai_,\n  { {0x272b0737, 0x68fb014a, 0x63bb0232, 0x00000000}},  //   _løn_, _okud, lyun,\n  { {0x27ff0676, 0x60c40020, 0x224700b5, 0x00000000}},  //   _oyun_, _ulim, _henk_,\n  { {0x6d4e010f, 0x63bb008a, 0x63a90c15, 0x00000000}},  // [1200] ssba, nyun, nxen,\n  { {0xc879005f, 0xed460454, 0x68fb08ff, 0x00000000}},  //   _abş_, _кноп, _akud,\n  { {0x27ff011c, 0x63bb0093, 0x212700d4, 0x00000000}},  //   _ayun_, hyun, _junh_,\n  { {0x26c50c16, 0x290d0061, 0xe73a0780, 0x00000000}},  //   _allo_, _chea_, вед_,\n  { {0x18670b86, 0x1634005e, 0x68e9016e, 0x00000000}},  //   рачи_, беля, _djed,\n  { {0x8b190256, 0x68fb00bb, 0x68e90190, 0x00000000}},  //   _бюст_, _ekud, _ejed,\n  { {0x68e90190, 0x3866005b, 0x27ed00d9, 0x00000000}},  //   _fjed, pgor_, _exen_,\n  { {0x26c50211, 0xd497007c, 0x68e900ea, 0x00000000}},  //   _ello_, арь_, _gjed,\n  { {0x2247016c, 0x63bb0010, 0x00000000, 0x00000000}},  //   _benk_, gyun,   ,\n  { {0x291f000d, 0x68e90a32, 0xb2730147, 0x00000000}},  //   _ziua_, _zjed, ольш,\n  { {0x22470c17, 0x2ef8010f, 0x21630088, 0x00000000}},  //   _denk_, dorf_, отяг,\n  { {0x64a3005e, 0xddc500b9, 0x26dc04bb, 0x00000000}},  //   _маха, _schů, livo_,\n  { {0xa2940c18, 0xdc2e006b, 0x224701aa, 0x00000000}},  //   _галі, _sığo, _fenk_,\n  { {0x76480046, 0x7b10010f, 0x24840066, 0x00000000}},  //   _jedy, läuf, lemm_,\n  { {0xe3e80055, 0x00000000, 0x00000000, 0x00000000}},  //   _পরিব,   ,   ,\n  { {0xc05b01fb, 0x6ca40c19, 0x26dc0555, 0x00000000}},  //   _рік_, оруж, hivo_,\n  { {0x75280c1a, 0x60dd0c1b, 0x290d01eb, 0x00000000}},  // [1210] _ludz, mism, _rhea_,\n  { {0x60dd0c1c, 0x68e90c1d, 0x26dc0c1e, 0x00000000}},  //   lism, _sjed, jivo_,\n  { {0xc8ab005e, 0x272b0737, 0x248401d5, 0x00000000}},  //   къде_, _søn_, kemm_,\n  { {0xf77106ea, 0x60dd0c1f, 0x00000000, 0x00000000}},  //   كات_, nism,   ,\n  { {0x2bde02fb, 0x68e90065, 0x75280089, 0x00000000}},  //   _नेपा, _vjed, _audz,\n  { {0x75280c20, 0xdc3c0066, 0x00000000, 0x00000000}},  //   _budz, _iġġo,   ,\n  { {0x68e90209, 0x785700d3, 0xa8a7005e, 0x00000000}},  //   _tjed, _نیاز_, _крак,\n  { {0x224701aa, 0x68e90091, 0x60dd008e, 0x00000000}},  //   _senk_, _ujed, jism,\n  { {0x60dd0779, 0x7648005b, 0x00000000, 0x00000000}},  //   dism, _fedy,   ,\n  { {0x26dc037e, 0x68f90066, 0x7528012d, 0x00000000}},  //   civo_, lowd, _fudz,\n  { {0x60dd030e, 0x63bb011c, 0xdcf001ee, 0x00000000}},  //   fism, syun, _šeči,\n  { {0x67210c21, 0x297a061e, 0x397a00b6, 0x00000000}},  //   _hilj, נטרא, נטרנ,\n  { {0x443f0b98, 0x22470c22, 0x2005006b, 0x00000000}},  //   mbu_, _tenk_, əlik_,\n  { {0x443f002b, 0x6d450c23, 0x7d180010, 0x00000000}},  //   lbu_, _bwha, _évsz,\n  { {0x672107dc, 0xdca60057, 0x2d95025f, 0x00000000}},  //   _milj, бави, ортс,\n  { {0x672106a1, 0x26dc055a, 0x443f0253, 0x00000000}},  //   _lilj, zivo_, nbu_,\n  { {0x1d070c24, 0x443f0c25, 0x00000000, 0x00000000}},  // [1220] сети_, ibu_,   ,\n  { {0x386d0c26, 0x9e660c27, 0x8e860025, 0x00000000}},  //   _acer_, _увод, _الده,\n  { {0x76480c28, 0x248400e0, 0x499a0641, 0x00000000}},  //   _redy, yemm_, ытая_,\n  { {0x443f0c29, 0x75280c2a, 0xa3c70067, 0x00000000}},  //   jbu_, _rudz, ईना_,\n  { {0x26dc0a15, 0x443f0142, 0x7d040c2b, 0x00000000}},  //   tivo_, dbu_, mlis,\n  { {0x7d040b3e, 0x67210295, 0x386d0c2c, 0x00000000}},  //   llis, _cilj, _ecer_,\n  { {0x26dc0207, 0x60dd0c2d, 0x6721016e, 0x00000000}},  //   rivo_, yism, _dilj,\n  { {0x7d04009f, 0x26dc0c2e, 0x60dd0c2f, 0x00000000}},  //   nlis, sivo_, xism,\n  { {0x60dd049a, 0x47c600ed, 0x26dc0c30, 0x00000000}},  //   vism, _убав, pivo_,\n  { {0x7d040052, 0x415402d3, 0x66010c31, 0x00000000}},  //   hlis, овос, _fylk,\n  { {0x7d040161, 0x8afb0049, 0x443f0c32, 0x00000000}},  //   klis, רהיי, bbu_,\n  { {0x7d040085, 0x67210c33, 0x00000000, 0x00000000}},  //   jlis, _zilj,   ,\n  { {0x68e30c34, 0xe6c4009f, 0x44260c35, 0x00000000}},  //   éndi, _þjóð, _igo_,\n  { {0x7d040c36, 0x7d160027, 0x4426004a, 0x00000000}},  //   elis, emys, _hgo_,\n  { {0x6d5a0091, 0x7d040c37, 0x60dd0036, 0x00000000}},  //   štan, flis, pism,\n  { {0xd904089d, 0x4426004a, 0x9c39030d, 0x00000000}},  //   _سی_, _jgo_, рпат_,\n  { {0x2d8c0030, 0x752200f6, 0x88bd0036, 0x00000000}},  // [1230] æder_, _mioz, _liśc,\n  { {0x443f016e, 0x2d98009d, 0x31790036, 0x00000000}},  //   zbu_, bvre_, ńsze_,\n  { {0x7d040038, 0x443f04bb, 0x27e00c38, 0x00000000}},  //   blis, ybu_, úinn_,\n  { {0x7d04006b, 0x442604e6, 0x3eb1012d, 0x00000000}},  //   clis, _ngo_, ljzt_,\n  { {0x67290211, 0xe81401f5, 0xd366023c, 0x00000000}},  //   _quej, तेला_, _ته_,\n  { {0x44260038, 0x3ce90c39, 0x91fc0089, 0x00000000}},  //   _ago_, lnav_, rgāj,\n  { {0x67210c3a, 0x443f0062, 0x44260c3b, 0x00000000}},  //   _vilj, tbu_, _bgo_,\n  { {0x3ce90009, 0x44260c3c, 0x00000000, 0x00000000}},  //   nnav_, _cgo_,   ,\n  { {0x443f0c3d, 0x7b10010f, 0xb05b010f, 0x00000000}},  //   rbu_, bäud, nhäu,\n  { {0x66010046, 0x443f0c3e, 0x7d04020d, 0x00000000}},  //   _tylk, sbu_, zlis,\n  { {0x7d0403ca, 0x0086013b, 0x44260c3f, 0x00000000}},  //   ylis, олно, _fgo_,\n  { {0xcea900a0, 0x2eb4007d, 0xe0df0026, 0x00000000}},  //   _בי_, ुस्त, giò_,\n  { {0xbebb0065, 0x7d04014a, 0xfc460142, 0x00000000}},  //   jqës, vlis, šíka_,\n  { {0x6145007c, 0x7d040c40, 0x644b0c41, 0x00000000}},  //   _дека, wlis, _hegi,\n  { {0x644b04fa, 0x7e2300ed, 0xdddc016c, 0x00000000}},  //   _kegi, ддрж, ferš,\n  { {0x0ce80044, 0xe0df0c42, 0xb05b0c43, 0x00000000}},  //   পত্ত, ciò_, lkän,\n  { {0x7d040a48, 0x644b0c44, 0xeb970c45, 0x00000000}},  // [1240] rlis, _megi, оит_,\n  { {0x7d040c46, 0xda660054, 0x7d1600b9, 0x00000000}},  //   slis, تاري, smys,\n  { {0x3ce90061, 0x64590036, 0xe9da003b, 0x00000000}},  //   bnav_, _odwi, јке_,\n  { {0x644b0c47, 0xa8a30098, 0xb17a0049, 0x00000000}},  //   _negi, дршк, יטער,\n  { {0xb05b00f8, 0x44260068, 0x00000000, 0x00000000}},  //   phäv, _rgo_,   ,\n  { {0x8f9b012f, 0xe0df0197, 0xbf9b00a3, 0x00000000}},  //   ייני, ziò_, יינש,\n  { {0xb05b0039, 0x2bde006e, 0x44260c48, 0x00000000}},  //   dkän, _नेता, _pgo_,\n  { {0x18670364, 0x644b026e, 0x64400009, 0x00000000}},  //   _маси_, _cegi, ubmi,\n  { {0x644b014a, 0xe0df0026, 0x00000000, 0x00000000}},  //   _degi, viò_,   ,\n  { {0x3ce00004, 0x64590016, 0x8af0005f, 0x00000000}},  //   hiiv_, _edwi, qsəd,\n  { {0x2730001d, 0x44260026, 0x644b01e5, 0x00000000}},  //   _hàn_, _tgo_, _fegi,\n  { {0x44260197, 0xbebb0065, 0x6ab7007d, 0x00000000}},  //   _ugo_, yqës, _आक्र,\n  { {0x6d5a0142, 0x69c1006c, 0x3ce900ca, 0x00000000}},  //   štal, _ülev, vnav_,\n  { {0x2730001d, 0x2005001e, 0xdefb0a78, 0x00000000}},  //   _màn_, āli_, рым_,\n  { {0x62880211, 0x27300011, 0x3ce90009, 0x00000000}},  //   medo, _làn_, tnav_,\n  { {0x628801d9, 0x00000000, 0x00000000, 0x00000000}},  //   ledo,   ,   ,\n  { {0x60c00c49, 0x27300082, 0x3ce90c4a, 0x00000000}},  // [1250] ömme, _nàn_, rnav_,\n  { {0x62880544, 0x3ce90c4b, 0x77620133, 0x00000000}},  //   nedo, snav_, drox,\n  { {0x3ce90061, 0xdc3f0161, 0x00000000, 0x00000000}},  //   pnav_, líčk,   ,\n  { {0xd04f005f, 0x2730001d, 0x628800ea, 0x00000000}},  //   ticə, _bàn_, hedo,\n  { {0x6d550010, 0x62880091, 0xdc3f01ca, 0x00000000}},  //   lsza, kedo, níčk,\n  { {0x644b009f, 0x62880209, 0x27300011, 0x00000000}},  //   _segi, jedo, _dàn_,\n  { {0x62880325, 0x6b8d00b5, 0x644b008a, 0x00000000}},  //   dedo, lwag, _pegi,\n  { {0x213e0009, 0x28f80088, 0x00000000, 0x00000000}},  //   dpth_, _десь_,   ,\n  { {0x644b000c, 0xf41f00b0, 0x6b8d0c4c, 0x00000000}},  //   _vegi, ää_, nwag,\n  { {0x628800c4, 0x04fd0044, 0x4255004d, 0x00000000}},  //   gedo, ুদের_, чтит,\n  { {0x644b0004, 0xb05b0c43, 0x68eb0082, 0x00000000}},  //   _tegi, rkän, ongd,\n  { {0x6b8d0168, 0x69c1010e, 0xb05b00f8, 0x00000000}},  //   kwag, _üleu, skän,\n  { {0xa3d30061, 0x62880181, 0x2004000c, 0x00000000}},  //   _हेच_, bedo, æmi_,\n  { {0x62880335, 0x6d5a04eb, 0x00000000, 0x00000000}},  //   cedo, štam,   ,\n  { {0x2d9e004f, 0x6da30794, 0x6d550010, 0x00000000}},  //   íte_, нира, gsza,\n  { {0xd7bd0061, 0xb05b0c4d, 0x8af0013f, 0x00000000}},  //   ्नाच, nkäl, hrət,\n  { {0x6b8d0058, 0xab660c4e, 0x00000000, 0x00000000}},  // [1260] gwag, явал,   ,\n  { {0x0e660057, 0x3f92011c, 0x387f0c4f, 0x00000000}},  //   _экон, _isyu_, _abur_,\n  { {0x2730001d, 0x3ebb009b, 0xdebb009b, 0x00000000}},  //   _sàn_, _הציב, _המיל,\n  { {0x77620190, 0x186a0088, 0x779400a1, 0x00000000}},  //   trox, сади_, ویزا,\n  { {0x656301a2, 0x47330c50, 0x6b8d0045, 0x00000000}},  //   ernh, еніс, cwag,\n  { {0x2b400c51, 0x628800d4, 0x996400b9, 0x00000000}},  //   mpic_, xedo, může_,\n  { {0x62880062, 0x9d000044, 0xe1e70025, 0x00000000}},  //   vedo, ্দীন_, _أس_,\n  { {0x6288018e, 0x27300011, 0x776200ab, 0x00000000}},  //   wedo, _tàn_, prox,\n  { {0x2b400061, 0x76430c52, 0x00000000, 0x00000000}},  //   npic_, bbny,   ,\n  { {0xb6c8026c, 0x7afe0c53, 0x68e20c54, 0x00000000}},  //   _بارے_, nopt, liod,\n  { {0x62880142, 0x6d5a0091, 0x69c1006c, 0x00000000}},  //   redo, štaj, _ület,\n  { {0x62880c55, 0xeafa00e8, 0x68e2010b, 0x00000000}},  //   sedo, ्तुत_, niod,\n  { {0x62880c56, 0xa4b7009b, 0x14a90061, 0x00000000}},  //   pedo, _מלאה_, कारण,\n  { {0x6288008d, 0x6d550c57, 0x3eba0035, 0x00000000}},  //   qedo, tsza, _copt_,\n  { {0x7afe0bbc, 0xf29700b3, 0x200c006b, 0x00000000}},  //   dopt, _זכור_, ədim_,\n  { {0x6d550c58, 0xfbde001c, 0xf1ba0011, 0x00000000}},  //   rsza, _नेहम, _ngơi_,\n  { {0x6d550047, 0x68e204bf, 0x60cd0996, 0x00000000}},  // [1270] ssza, diod, _ilam,\n  { {0x6b8d0007, 0x6d550c59, 0x88bd0036, 0x00000000}},  //   rwag, psza, _ciśn,\n  { {0x60cd0142, 0xc1780006, 0x673b099a, 0x00000000}},  //   _klam, ntė_, _stuj,\n  { {0xa3be02d2, 0x26cc0197, 0x2ee300b5, 0x00000000}},  //   ीना_, _aldo_, lijf_,\n  { {0x2b400061, 0x60cd015e, 0x69d80c5a, 0x00000000}},  //   cpic_, _mlam, úver,\n  { {0x60cd0219, 0x7afe001a, 0x2557001a, 0x00000000}},  //   _llam, copt, tăl_,\n  { {0xf65000b8, 0x60cd014a, 0xb05b0c4d, 0x00000000}},  //   ائه_, _olam, tkäl,\n  { {0xe894008b, 0x68e2001a, 0x2ee300b5, 0x00000000}},  //   _пась, ciod, hijf_,\n  { {0xd702007e, 0xc1780006, 0x00000000, 0x00000000}},  //   _кiра, etė_,   ,\n  { {0x60cd020c, 0x78bb0c5b, 0x69c1006c, 0x00000000}},  //   _alam, _houv, _üles,\n  { {0x78bb0c5c, 0x208a005e, 0x78a900d9, 0x00000000}},  //   _kouv, ойни_, _knev,\n  { {0xafe601fb, 0xd00a00ed, 0x5558007e, 0x00000000}},  //   домл, жеме_, _хаця_,\n  { {0x78bb03eb, 0x92b50025, 0x3eba0c5d, 0x00000000}},  //   _mouv, _يحتا, _popt_,\n  { {0x78bb0c5e, 0x60cd006c, 0x68e20032, 0x00000000}},  //   _louv, _elam, ziod,\n  { {0x78a90270, 0x60cd0c5f, 0x2b400009, 0x00000000}},  //   _onev, _flam, wpic_,\n  { {0x78bb0c60, 0x2b400c61, 0x7afe0a5f, 0x00000000}},  //   _nouv, tpic_, wopt,\n  { {0xb05b010f, 0x7afe00bb, 0xa2b40061, 0x00000000}},  // [1280] phär, topt, ेसच्,\n  { {0x273b0035, 0x78a90035, 0x2b400c62, 0x00000000}},  //   _mână_, _anev, rpic_,\n  { {0x2d9c0010, 0xfbd100a1, 0x7afe00ea, 0x00000000}},  //   _éve_, نتے_, ropt,\n  { {0x78bb00f4, 0x58830147, 0x88bd0036, 0x00000000}},  //   _couv, выша, _wiśn,\n  { {0x68e20292, 0x78a90746, 0x78bb01aa, 0x00000000}},  //   riod, _dnev, _douv,\n  { {0x68e20016, 0x78a9068f, 0xc1780006, 0x00000000}},  //   siod, _enev, ytė_,\n  { {0x68e2005b, 0x00000000, 0x00000000, 0x00000000}},  //   piod,   ,   ,\n  { {0x78bb0c63, 0x6abc009f, 0x78a907d1, 0x00000000}},  //   _gouv, _horf, _gnev,\n  { {0x66cf0c64, 0x6abc0253, 0x69c1010e, 0x00000000}},  //   _søke, _korf, _üler,\n  { {0xf743072b, 0xc17a0088, 0x6abc00f6, 0x00000000}},  //   _рефо, оїм_, _jorf,\n  { {0x6abc049a, 0x60cd016e, 0xb05b0210, 0x00000000}},  //   _morf, _plam, skäm,\n  { {0x30a70c65, 0x2249016c, 0xc1780006, 0x00000000}},  //   фров, _đake_, rtė_,\n  { {0x351b007b, 0xc1780006, 0x60cd0116, 0x00000000}},  //   _וואנ, stė_, _vlam,\n  { {0x32070016, 0x213c0011, 0x6abc046e, 0x00000000}},  //   _fyny_, _ttvh_, _norf,\n  { {0x27fa0036, 0x67280aca, 0x63a20c66, 0x00000000}},  //   ępny_, _midj, _hron,\n  { {0x63a20239, 0x629a0af1, 0x60cd04cb, 0x00000000}},  //   _kron, ldto, _ulam,\n  { {0x5b15005e, 0x62980006, 0x78bb0c67, 0x00000000}},  // [1290] емат, _kavo, _rouv,\n  { {0x78bb0c68, 0x6abc018e, 0x62980161, 0x00000000}},  //   _souv, _corf, _javo,\n  { {0x25de001c, 0x78bb0c69, 0x78a90059, 0x00000000}},  //   _केली_, _pouv, _pnev,\n  { {0x62980198, 0x7d0901d5, 0x20090093, 0x00000000}},  //   _lavo, ċess, _kyai_,\n  { {0x6abc02cc, 0x672801aa, 0x7f4d0066, 0x00000000}},  //   _forf, _bidj, _jwaq,\n  { {0x6abc018e, 0x21290022, 0x66cf0056, 0x00000000}},  //   _gorf, _liah_, _søkb,\n  { {0xd5b106dd, 0x629a0009, 0x78bb0068, 0x00000000}},  //   افع_, ddto, _touv,\n  { {0x273b000d, 0x629a09d0, 0xb9250025, 0x00000000}},  //   _până_, edto, _أفري,\n  { {0x63a20207, 0x6593005f, 0x69c50010, 0x00000000}},  //   _cron, _məhə, lyhe,\n  { {0x62980207, 0x7dee0010, 0x3f4d0089, 0x00000000}},  //   _cavo, nősé, džu_,\n  { {0x6298010f, 0x69c50039, 0x20090085, 0x00000000}},  //   _davo, nyhe, _ayai_,\n  { {0xf9da007b, 0x0ef8013d, 0x6593006b, 0x00000000}},  //   פֿיל, ंक्स_, _nəhə,\n  { {0x63a20100, 0x21290093, 0x00000000, 0x00000000}},  //   _gron, _diah_,   ,\n  { {0xe3b00123, 0x62980006, 0x248d0145, 0x00000000}},  //   _خرم_, _gavo, leem_,\n  { {0xdd920355, 0x2ee10146, 0x00000000, 0x00000000}},  //   دوز_, _dmhf_,   ,\n  { {0x248d0343, 0x6593006b, 0x91fc0089, 0x00000000}},  //   neem_, _cəhə, rgāt,\n  { {0xc4d20476, 0x6abc0211, 0x63a2013f, 0x00000000}},  // [12a0] אגן_, _porf, _xron,\n  { {0x248d0066, 0x09c40044, 0x629800f6, 0x00000000}},  //   heem_, _এইবা, _xavo,\n  { {0xa84a0025, 0x6abc010f, 0x91fc0089, 0x00000000}},  //   كلام_, _vorf, lgār,\n  { {0x67280107, 0xa2a10316, 0x212902d4, 0x00000000}},  //   _sidj, _कोस्, _xiah_,\n  { {0x66e601fb, 0x248d0c6a, 0x6abc06d6, 0x00000000}},  //   нода, deem_, _torf,\n  { {0x248d012d, 0x69c50c6b, 0x6593006b, 0x00000000}},  //   eeem_, byhe, _zəhə,\n  { {0x67280c6c, 0x69c10c6d, 0x00000000, 0x00000000}},  //   _vidj, _ülep,   ,\n  { {0x6298028c, 0x67280093, 0x62830133, 0x00000000}},  //   _savo, _widj, _abno,\n  { {0x62980c6e, 0xe3b2006d, 0xa6860c6f, 0x00000000}},  //   _pavo, ارع_, _плад,\n  { {0x21290c70, 0x00000000, 0x00000000, 0x00000000}},  //   _siah_,   ,   ,\n  { {0x63a200ab, 0x629a00ea, 0x250b00a1, 0x00000000}},  //   _wron, rdto, _کرلی_,\n  { {0x63a200ad, 0x3cfa013d, 0x00000000, 0x00000000}},  //   _tron, ंवों_,   ,\n  { {0x09dd0201, 0x62980c71, 0xbfa8007c, 0x00000000}},  //   _मध्य, _tavo, нтре_,\n  { {0x61eb0010, 0xb3e90025, 0x6593006b, 0x00000000}},  //   állá, _تعمل_, _səhə,\n  { {0xe29b007b, 0x7ae500ca, 0xe2970545, 0x00000000}},  //   _זשור, viht, _чај_,\n  { {0x7f4d002b, 0xb05b00b0, 0x2f160190, 0x00000000}},  //   _twaq, kkäi, væge_,\n  { {0x7dee0047, 0x3a750364, 0x2d9e0c72, 0x00000000}},  // [12b0] tősé, клар, åter_,\n  { {0x69110c73, 0x69c50023, 0x63bd0637, 0x00000000}},  //   gåen, tyhe, øsni,\n  { {0x1df9007c, 0x7ae5014a, 0x20c200fa, 0x00000000}},  //   _цены_, riht, _góis_,\n  { {0xf7710137, 0xa9070084, 0x69c501d6, 0x00000000}},  //   لات_, ربان, ryhe,\n  { {0x7d0d006c, 0x257a0007, 0xafdb0056, 0x00000000}},  //   mlas, eël_, dbøk,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6d5a0363, 0x1af40c74, 0x257a0065, 0x00000000}},  //   štav, _спря, gël_,\n  { {0x7d0d0c75, 0xafdb00ea, 0x00000000, 0x00000000}},  //   nlas, gbøk,   ,\n  { {0x0735081e, 0x248d0abf, 0x8af0006b, 0x00000000}},  //   _резю, reem_, ksəl,\n  { {0x7d0d06b8, 0xc3c80025, 0x257a0065, 0x00000000}},  //   hlas, عظيم_, bël_,\n  { {0x3de10055, 0x8602007a, 0x63ad0c76, 0x00000000}},  //   _মুসল, _پژوه, _šand,\n  { {0xa2a102fb, 0x349501fc, 0xf992009b, 0x00000000}},  //   _कोर्, _јадр, ברט_,\n  { {0xe28e012b, 0x7d0d0c77, 0x64490181, 0x00000000}},  //   _ка_, dlas, mbei,\n  { {0x644901e5, 0x20c20051, 0x7d0d0c78, 0x00000000}},  //   lbei, _cóir_, elas,\n  { {0x628101e5, 0x442f00e0, 0x64490c79, 0x00000000}},  //   mflo, _kgg_, obei,\n  { {0x7d0d01cd, 0x64490c7a, 0x753c0010, 0x00000000}},  //   glas, nbei, _érze,\n  { {0x69110c7b, 0x1d0700ed, 0x60dd0c7c, 0x00000000}},  // [12c0] tåen, тети_, ërme,\n  { {0x6281002b, 0x4a43072b, 0x7d0d006c, 0x00000000}},  //   nflo, инув, alas,\n  { {0x7d0d0c7d, 0x64490635, 0x00000000, 0x00000000}},  //   blas, kbei,   ,\n  { {0x6d5c0240, 0x8af0006b, 0x00000000, 0x00000000}},  //   msra, msəm,   ,\n  { {0xd7ef0054, 0x7d04089e, 0xb86500a1, 0x00000000}},  //   يكم_, mois, طانو,\n  { {0xa2a101f5, 0x7d0400b0, 0x442f0197, 0x00000000}},  //   _कोल्, lois, _agg_,\n  { {0x6d5c0039, 0x1ae3022a, 0x09e6007c, 0x00000000}},  //   nsra, _торм, _ровн,\n  { {0x7d040c7e, 0x443d0022, 0x22490107, 0x00000000}},  //   nois, _cfw_, _đaka_,\n  { {0x613e0089, 0x628100f8, 0x64a301fc, 0x00000000}},  //   _mīle, fflo, рања,\n  { {0x02a601fb, 0x7d0d014a, 0x7d040c7f, 0x00000000}},  //   трим, zlas, hois,\n  { {0x7d04021e, 0xf484007a, 0x443d0c80, 0x00000000}},  //   kois, _ماشی, _ffw_,\n  { {0x6d5c00ea, 0x044602dc, 0x7d0400b0, 0x00000000}},  //   dsra, _редн, jois,\n  { {0x7d0400b0, 0xc0e4007e, 0xfbdf01c3, 0x00000000}},  //   dois, роўк, _leêr_,\n  { {0x7658000b, 0x00000000, 0x00000000, 0x00000000}},  //   navy,   ,   ,\n  { {0x2fcd0119, 0x7d0d0c75, 0x6d5c00ea, 0x00000000}},  //   šeg_, tlas, gsra,\n  { {0x48bd0044, 0x656a0051, 0x7d040c81, 0x00000000}},  //   _আগ্র, irfh, gois,\n  { {0x7d0d010f, 0x20c20051, 0xe7bd0044, 0x00000000}},  // [12d0] rlas, _tóir_, _অধ্য,\n  { {0x7d0d006c, 0x76580c82, 0xf09f00d4, 0x00000000}},  //   slas, javy, ldà_,\n  { {0x7d0d0292, 0x6f020051, 0x7d040c83, 0x00000000}},  //   plas, _íoca, bois,\n  { {0x658a006b, 0x6d470066, 0x48e10044, 0x00000000}},  //   _məhd, mpja, যক্র,\n  { {0x973500e9, 0x62810016, 0x6d5a0c84, 0x00000000}},  //   اکرا, yflo, štat,\n  { {0xfc3f013e, 0x00000000, 0x00000000, 0x00000000}},  //   _sníh_,   ,   ,\n  { {0xceb4012f, 0x940d006b, 0x443d00d9, 0x00000000}},  //   ייס_, ənən_, _pfw_,\n  { {0x2619013d, 0x8a1801ab, 0x00000000, 0x00000000}},  //   येगी_, _росс_,   ,\n  { {0x64490c85, 0x27e0002a, 0xf794008b, 0x00000000}},  //   rbei, úint_, _катэ,\n  { {0xf09f0129, 0x64490c86, 0x7d0400e7, 0x00000000}},  //   edà_, sbei, zois,\n  { {0x6281000c, 0x7d0400e7, 0x658a006b, 0x00000000}},  //   rflo, yois, _cəhd,\n  { {0x6281000c, 0x20c20051, 0xe7b70061, 0x00000000}},  //   sflo, _cóip_, _आपाप,\n  { {0x6e29005f, 0x273901aa, 0x7d040c7e, 0x00000000}},  //   əmbə, _jèn_, vois,\n  { {0x249f0c87, 0x6d5c04b2, 0xe29600ed, 0x00000000}},  //   ldum_, tsra, _баш_,\n  { {0x7d04021e, 0x69110c88, 0xa0a60c89, 0x00000000}},  //   tois, tåel, _байд,\n  { {0x249f009f, 0x724200a1, 0x6d5c0089, 0x00000000}},  //   ndum_, _پھیل, rsra,\n  { {0x7d0400b0, 0x237f0036, 0x8fa6007e, 0x00000000}},  // [12e0] rois, ntuj_, _сапе,\n  { {0xda650054, 0x8f9b00b3, 0x63a40c8a, 0x00000000}},  //   لامي, _טיפי, _šink,\n  { {0x7d040c8b, 0xbebb0023, 0x00000000, 0x00000000}},  //   pois, yqëz,   ,\n  { {0x237f0c8c, 0x27390082, 0x00000000, 0x00000000}},  //   ktuj_, _bèn_,   ,\n  { {0x27e00009, 0x249f0c8d, 0x76580c8e, 0x00000000}},  //   àin_, ddum_, tavy,\n  { {0xb8cb0754, 0x3b0a0057, 0x2ca00004, 0x00000000}},  //   _को_, _чего_, ldid_,\n  { {0x2ca0006c, 0x00000000, 0x00000000, 0x00000000}},  //   odid_,   ,   ,\n  { {0x2ca00004, 0x765807d3, 0x8af0006b, 0x00000000}},  //   ndid_, savy, ksək,\n  { {0xc676025a, 0xe646081c, 0x66760318, 0x00000000}},  //   _مطاب, _безп, _مدار,\n  { {0x4b7b0049, 0x63ad0161, 0x5b7b0049, 0x00000000}},  //   עטיג, _šanc, עריא,\n  { {0xdb060023, 0x5ab70049, 0x00000000, 0x00000000}},  //   _arkë, אליע_,   ,\n  { {0x2ca00022, 0x00000000, 0x00000000, 0x00000000}},  //   jdid_,   ,   ,\n  { {0xf09f0129, 0x2d9a0c8f, 0x2ca00c90, 0x00000000}},  //   rdà_, _aspe_, ddid_,\n  { {0x11d6002c, 0x539b0104, 0x66cf00ea, 0x00000000}},  //   _متعد, _ניוו, _nøkl,\n  { {0x7f440919, 0x56370049, 0xfce90025, 0x00000000}},  //   _etiq, ראלע_, نفسي_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x4a550072, 0xba550098, 0x6d470c91, 0x00000000}},  // [12f0] икас, ивај, spja,\n  { {0xb05b0c92, 0x658a006b, 0x27390c93, 0x00000000}},  //   rkäu, _məhb, _rèn_,\n  { {0x6d5a09fc, 0x273901aa, 0x249f005a, 0x00000000}},  //   štar, _sèn_, ydum_,\n  { {0x6d45014a, 0x237f0036, 0x5c0702dc, 0x00000000}},  //   _itha, ytuj_, _бяга,\n  { {0x0a6b01fc, 0xb05b00b0, 0x00000000, 0x00000000}},  //   _први_, lkäs,   ,\n  { {0xe736005e, 0x00000000, 0x00000000, 0x00000000}},  //   шеш_,   ,   ,\n  { {0xa5640025, 0xb05b0c94, 0xb9250025, 0x00000000}},  //   مدين, nkäs, _نفسي,\n  { {0x38600051, 0x6d4501c3, 0xe79502fd, 0x00000000}},  //   óirt_, _mtha, _پارک,\n  { {0x249f014a, 0x00000000, 0x00000000, 0x00000000}},  //   rdum_,   ,   ,\n  { {0x6d450051, 0x237f0036, 0x68eb0c95, 0x00000000}},  //   _otha, rtuj_, ligd,\n  { {0x25b90076, 0x7f4400f6, 0x237f00b4, 0x00000000}},  //   _جهاد_, _stiq, stuj_,\n  { {0x68eb0250, 0x60260c96, 0x00000000, 0x00000000}},  //   nigd, идна,   ,\n  { {0x6d450c97, 0x443f0142, 0x60dd0065, 0x00000000}},  //   _atha, mcu_, ërma,\n  { {0x443f0c98, 0x00000000, 0x00000000, 0x00000000}},  //   lcu_,   ,   ,\n  { {0xa01b0047, 0xddc300ed, 0x1c3a007e, 0x00000000}},  //   lföl, обри, вязь_,\n  { {0x645b01a2, 0x00000000, 0x00000000, 0x00000000}},  //   naui,   ,   ,\n  { {0x2ca0006c, 0x68eb00c1, 0xef1a007c, 0x00000000}},  // [1300] rdid_, digd, _ими_,\n  { {0xc33200b3, 0x6723012d, 0xb05b010e, 0x00000000}},  //   קוב_, jmnj, skät,\n  { {0x2d9a00ca, 0x00000000, 0x00000000, 0x00000000}},  //   _uspe_,   ,   ,\n  { {0x200c005f, 0xa967017f, 0x270e02d2, 0x00000000}},  //   ədir_, рица_, ित्र_,\n  { {0x2b4901f3, 0x443f0142, 0xb05b04ce, 0x00000000}},  //   cpac_, dcu_, sjäg,\n  { {0x658a005f, 0x236d0465, 0x316b0036, 0x00000000}},  //   _rəhb, drej_, ńczy_,\n  { {0x60d60161, 0x00000000, 0x00000000, 0x00000000}},  //   _olym,   ,   ,\n  { {0x399b061e, 0xe3e70044, 0x60c40c99, 0x00000000}},  //   _בילד, _পড়ব, _noim,\n  { {0xf74301fb, 0x7581009e, 0x00000000, 0x00000000}},  //   _мето, _ہیوم,   ,\n  { {0x78a2000d, 0xdce70036, 0x00000000, 0x00000000}},  //   ldov, mują,   ,\n  { {0x3a37019b, 0x6f07037e, 0xaa370049, 0x00000000}},  //   ירים_, vojc, יטיק_,\n  { {0x60c40c9a, 0x78a20209, 0x236d0a32, 0x00000000}},  //   _coim, ndov, brej_,\n  { {0x60c40c9b, 0x77f40309, 0x6d450066, 0x00000000}},  //   _doim, _अशोक_, _stha,\n  { {0x0eeb004c, 0xb05b00b0, 0x00000000, 0x00000000}},  //   тьми_, tkäs,   ,\n  { {0xdef8008b, 0xd2f8026c, 0xeda40088, 0x00000000}},  //   рыя_, _لکھا_, ошто,\n  { {0xdce70036, 0x60d60c9c, 0x8af0006b, 0x00000000}},  //   kują, _glym, mrəy,\n  { {0x78a20197, 0x00000000, 0x00000000, 0x00000000}},  // [1310] ddov,   ,   ,\n  { {0x6e950054, 0xdce70036, 0x00000000, 0x00000000}},  //   _الدا, dują,   ,\n  { {0x6d450c9d, 0x68eb0328, 0x2b49009d, 0x00000000}},  //   _utha, tigd, spac_,\n  { {0x78a002ad, 0x00000000, 0x00000000, 0x00000000}},  //   _camv,   ,   ,\n  { {0x2d8300b5, 0x443f0466, 0x36690256, 0x00000000}},  //   ltje_, vcu_, гало_,\n  { {0x98bc0089, 0x236d012d, 0x68eb0bed, 0x00000000}},  //   īvā_, vrej_, sigd,\n  { {0x2d830c9e, 0x443f00ca, 0x645b00ea, 0x00000000}},  //   ntje_, tcu_, taui,\n  { {0xfdf80c9f, 0x66cf0030, 0x443f0ca0, 0x00000000}},  //   ימוש_, _køkk, ucu_,\n  { {0x60c4002a, 0x443f0ca1, 0x68e903c7, 0x00000000}},  //   _roim, rcu_, _imed,\n  { {0x443f000d, 0x236d0ca2, 0xa01b0ca3, 0x00000000}},  //   scu_, rrej_, rföl,\n  { {0x60d60ca4, 0x2d830ca5, 0x66cf0030, 0x00000000}},  //   _plym, jtje_, _løkk,\n  { {0x236d01d9, 0xfd1f0011, 0xa01b0039, 0x00000000}},  //   prej_, _nhì_, pföl,\n  { {0x60c4021e, 0x26c505d2, 0x2d8300bb, 0x00000000}},  //   _voim, _kolo_, etje_,\n  { {0x68fb0213, 0x78a20161, 0xc332009b, 0x00000000}},  //   _ljud, zdov, _זוג_,\n  { {0x60c40368, 0x645904be, 0x68e90039, 0x00000000}},  //   _toim, _kewi, _omed,\n  { {0x26c5011c, 0xcd2a0ca6, 0xb05b0039, 0x00000000}},  //   _lolo_, ужбе_, skär,\n  { {0x63bb049a, 0x2d8300b5, 0xfc3f00f6, 0x00000000}},  // [1320] nxun, atje_, _anís_,\n  { {0x64590675, 0x68fb0ca7, 0xd05d005f, 0x00000000}},  //   _lewi, _ajud, disə,\n  { {0x2722001d, 0x68fb0039, 0xdb040ca8, 0x00000000}},  //   _hưng_, _bjud, nvié,\n  { {0x6459018e, 0x291f0ca9, 0x63ab0caa, 0x00000000}},  //   _newi, _chua_, _orgn,\n  { {0x78a20b30, 0x96ea0cab, 0x26c50027, 0x00000000}},  //   rdov, лька_, _bolo_,\n  { {0x68e900f8, 0x26c50325, 0xdce70036, 0x00000000}},  //   _emed, _colo_, rują,\n  { {0x64590cac, 0x6b840a35, 0x98a60cad, 0x00000000}},  //   _bewi, ltig, _ливе,\n  { {0xdce70036, 0xd497007c, 0x26c50026, 0x00000000}},  //   pują, брь_, _eolo_,\n  { {0x6b84027b, 0x6459018e, 0xd2500054, 0x00000000}},  //   ntig, _dewi, ونة_,\n  { {0x6b84010f, 0x68e900ca, 0x291f00fa, 0x00000000}},  //   itig, _zmed, _zhua_,\n  { {0x6b84010f, 0x3abb0097, 0x60dd0023, 0x00000000}},  //   htig, אמינ, ërmo,\n  { {0x645909d6, 0x6b84067e, 0x2120004a, 0x00000000}},  //   _gewi, ktig, _chih_,\n  { {0xdfd8005e, 0x765a0037, 0x27220011, 0x00000000}},  //   бър_, _kety, _cưng_,\n  { {0xd9fa0164, 0x27220011, 0x8c000044, 0x00000000}},  //   ्थात_, _dưng_, ্ধান_,\n  { {0x6b840112, 0xfd1f0082, 0x765a0cae, 0x00000000}},  //   etig, _phì_, _mety,\n  { {0x2d8300b5, 0x3ea100e0, 0xed4e00a1, 0x00000000}},  //   rtje_, _waht_, کھی_,\n  { {0x6b840caf, 0x3ea1002b, 0x2d830cb0, 0x00000000}},  // [1330] gtig, _taht_, stje_,\n  { {0x68e90cb1, 0x433b0049, 0xf41a0044, 0x00000000}},  //   _smed, טעמב, _ডলার_,\n  { {0xfd1f00ad, 0x753a001f, 0x99990364, 0x00000000}},  //   _thì_, _nutz, ркет_,\n  { {0x26c50555, 0x628800ea, 0xdced007f, 0x00000000}},  //   _solo_, hfdo, _įkėl,\n  { {0x765a0cb2, 0x6c7a007b, 0x6604005d, 0x00000000}},  //   _bety, _דארפ, şikl,\n  { {0x35c90cb3, 0x765a0cb4, 0x64590133, 0x00000000}},  //   игло_, _cety, _sewi,\n  { {0x765a008d, 0x291f0cb5, 0xd05d005f, 0x00000000}},  //   _dety, _thua_, sisə,\n  { {0xf9920104, 0x68e90cb6, 0x9345009a, 0x00000000}},  //   _קרן_, _umed, оние,\n  { {0xdcfc0089, 0x03a50cb7, 0x26c5007f, 0x00000000}},  //   ntrā, ципо, _tolo_,\n  { {0xdddc0047, 0x21200cb8, 0x765a0cb9, 0x00000000}},  //   zerű, _shih_, _gety,\n  { {0x27220082, 0xb05b0cba, 0x00000000, 0x00000000}},  //   _sưng_, tkäp,   ,\n  { {0x297a0049, 0x79850016, 0x7b10010f, 0x00000000}},  //   סטרא, ithw, läut,\n  { {0xa3bb04e8, 0xbf050061, 0x94050014, 0x00000000}},  //   _حاضر_, ळवून_, _بوشه,\n  { {0x63a90cbb, 0x161d006e, 0x673b00e7, 0x00000000}},  //   mven, _फरार_, _muuj,\n  { {0x63a9001e, 0x6da30265, 0x2120012d, 0x00000000}},  //   lven, мира, _thih_,\n  { {0x27220082, 0x63a90026, 0x60dd01a2, 0x00000000}},  //   _tưng_, oven, chsm,\n  { {0xab660cbc, 0x79850016, 0x6b8401a2, 0x00000000}},  // [1340] ювал, ethw, utig,\n  { {0x6b840cbd, 0x6023007e, 0x63a90ad6, 0x00000000}},  //   rtig, _ідэа, iven,\n  { {0x765a0133, 0x00000000, 0x00000000, 0x00000000}},  //   _rety,   ,   ,\n  { {0x63a90292, 0x765a0cbe, 0x6d4e0146, 0x00000000}},  //   kven, _sety, mpba,\n  { {0x765a01aa, 0x63a900b5, 0x7cf301d5, 0x00000000}},  //   _pety, jven, għru,\n  { {0x63a90cbf, 0x7d1600b0, 0x645d000c, 0x00000000}},  //   dven, llys, ðsin,\n  { {0xd54701f9, 0xa967007c, 0x63a90cc0, 0x00000000}},  //   опје_, _мира_, even,\n  { {0x387f0051, 0x7d160190, 0x94aa01a4, 0x00000000}},  //   _gcur_, nlys, ртка_,\n  { {0x63a90cc1, 0x60ce0066, 0x00000000, 0x00000000}},  //   gven, _ċamp,   ,\n  { {0x7d160016, 0x6f020048, 0x8af0006b, 0x00000000}},  //   hlys, _íoch, msəs,\n  { {0x63a90cc2, 0x7d160cc3, 0x8af0013f, 0x00000000}},  //   aven, klys, lsəs,\n  { {0x63a9081d, 0x00000000, 0x00000000, 0x00000000}},  //   bven,   ,   ,\n  { {0x63a90cc4, 0x7d160cc5, 0x4ea70783, 0x00000000}},  //   cven, dlys, орва,\n  { {0xe297005e, 0x7d1601c3, 0x00000000, 0x00000000}},  //   _мач_, elys,   ,\n  { {0x7b10010f, 0x752201c3, 0x3ceb00e2, 0x00000000}},  //   häus, _khoz, аќам_,\n  { {0xd5a4009c, 0x69c3006c, 0xdcee0089, 0x00000000}},  //   _یہ_, änem, tubā,\n  { {0x28ab007d, 0x2d9e06ec, 0x6d4e01c3, 0x00000000}},  // [1350] _घोषि, æter_, apba,\n  { {0x7e99025a, 0x6d48013e, 0x00000000, 0x00000000}},  //   _اندر_, ídac,   ,\n  { {0xdcfc001e, 0x63a9016c, 0x39580016, 0x00000000}},  //   strā, zven, _cwrs_,\n  { {0x79850cc6, 0x23660119, 0x6ee90521, 0x00000000}},  //   rthw, _ovoj_, džbi,\n  { {0xba770379, 0x7d0d001a, 0x66dd000a, 0x00000000}},  //   _واست, moas, _lèke,\n  { {0x60dd0065, 0x7d0d0cc7, 0x63a90cc8, 0x00000000}},  //   ërmj, loas, vven,\n  { {0x39580016, 0x00000000, 0x00000000, 0x00000000}},  //   _gwrs_,   ,   ,\n  { {0x63a90a0f, 0x7d0d0cc9, 0x2ec80164, 0x00000000}},  //   tven, noas, _रक्त,\n  { {0x3a380061, 0x63a900f4, 0xf3f90035, 0x00000000}},  //   _ygrp_, uven, faţa_,\n  { {0x2b4b0082, 0x00000000, 0x00000000, 0x00000000}},  //   _mtcc_,   ,   ,\n  { {0x7d0d00b0, 0xa0a600e2, 0x00000000, 0x00000000}},  //   koas, панд,   ,\n  { {0x210602f4, 0x63a90190, 0x7d0d0035, 0x00000000}},  //   रवेश_, pven, joas,\n  { {0x0876007b, 0xe4560049, 0xdfd2006d, 0x00000000}},  //   הערט_, _זינט_, ريس_,\n  { {0x75290cca, 0x00000000, 0x00000000, 0x00000000}},  //   lmez,   ,   ,\n  { {0x412a02dc, 0x00000000, 0x00000000, 0x00000000}},  //   _локо_,   ,   ,\n  { {0x0b460364, 0x201e005f, 0x2b590066, 0x00000000}},  //   знан, ətin_, _bwsc_,\n  { {0x7d160193, 0xfc0300e2, 0x394a0022, 0x00000000}},  // [1360] rlys, епто, _stbs_,\n  { {0x7d1601e5, 0x6d4e0ccb, 0x2bf00061, 0x00000000}},  //   slys, ppba, _घेणं_,\n  { {0x7d160ccc, 0xbe3b009b, 0xf1cb0061, 0x00000000}},  //   plys, _לעית, ाहिन,\n  { {0x7d0d001a, 0xc18c0049, 0x658a006b, 0x00000000}},  //   coas, שטאָ, _dəhl,\n  { {0xdc37007b, 0x68e30ccd, 0x00000000, 0x00000000}},  //   _מאכט_, ënda,   ,\n  { {0x66e301e1, 0x7b10010f, 0xa01b000c, 0x00000000}},  //   ноча, räus, sgög,\n  { {0x8af0005f, 0x23660cce, 0xceb3009b, 0x00000000}},  //   ssəs, _svoj_, תיו_,\n  { {0x68130036, 0xd37a0478, 0x225c0095, 0x00000000}},  //   _będą, бчо_, _sevk_,\n  { {0x2005014a, 0x09c40044, 0x225c0087, 0x00000000}},  //   ğlik_, _এইটা, _pevk_,\n  { {0xe5a602dc, 0x2005026d, 0x7d0d0ccf, 0x00000000}},  //   _низи, şlik_, zoas,\n  { {0x74160123, 0x7d0d00e7, 0x00000000, 0x00000000}},  //   _کوشا, yoas,   ,\n  { {0x69370166, 0x09f7034e, 0x23660465, 0x00000000}},  //   _kćer, למים_, _tvoj_,\n  { {0xa3cd007d, 0xdfd802dc, 0x00000000, 0x00000000}},  //   रहण_, пър_,   ,\n  { {0x63a20052, 0x00000000, 0x00000000, 0x00000000}},  //   _ison,   ,   ,\n  { {0x7d0d001a, 0x629a0cd0, 0x00000000, 0x00000000}},  //   toas, meto,   ,\n  { {0x7aee00b5, 0x629a066d, 0x51fb009b, 0x00000000}},  //   _ambt, leto, _להוצ,\n  { {0x7d0d001a, 0xfc3f004a, 0x00000000, 0x00000000}},  // [1370] roas, _caía_,   ,\n  { {0x63a20cd1, 0x801805f3, 0x7f4d00c4, 0x00000000}},  //   _mson, _عزيز_, _itaq,\n  { {0x7d0d0adb, 0x2b4b00d2, 0x75290023, 0x00000000}},  //   poas, _wtcc_, ymez,\n  { {0x3ce00cd2, 0x63a20129, 0x57f507e1, 0x00000000}},  //   chiv_, _oson, мпет,\n  { {0x6d4a008d, 0x629a0209, 0xdcfc001a, 0x00000000}},  //   _çfar, keto, stră,\n  { {0x629a0cd3, 0x658a005f, 0x2ca90cd4, 0x00000000}},  //   jeto, _təhl, ldad_,\n  { {0x63a20058, 0x6592003b, 0x7f4d0066, 0x00000000}},  //   _ason, вају, _ltaq,\n  { {0x2ca90c1b, 0x7f4d006b, 0xddde000a, 0x00000000}},  //   ndad_, _otaq, _depň,\n  { {0x752901d5, 0x290f04cb, 0xb05b0039, 0x00000000}},  //   rmez, moga_, tjän,\n  { {0x290f02db, 0x658a006b, 0xe3ca004a, 0x00000000}},  //   loga_, _zəhm, _soñó_,\n  { {0x7f4d0489, 0x93ca00a1, 0x63a20197, 0x00000000}},  //   _ataq, مایہ_, _eson,\n  { {0x290f016e, 0x6aa700ca, 0x63a204a5, 0x00000000}},  //   noga_, _lajf, _fson,\n  { {0x2ca900f8, 0x629a0cd5, 0x00000000, 0x00000000}},  //   ddad_, beto,   ,\n  { {0x290f00e7, 0x2ca9004a, 0x853c0006, 0x00000000}},  //   hoga_, edad_, _grės,\n  { {0x386d08ba, 0x290f0825, 0x6f0e0428, 0x00000000}},  //   _oder_, koga_, robc,\n  { {0x386d0065, 0xb5fc0066, 0x00000000, 0x00000000}},  //   _nder_, _weġg,   ,\n  { {0x658a006b, 0x63a20026, 0x394d0059, 0x00000000}},  // [1380] _rəhm, _xson, _česa_,\n  { {0x658a006b, 0xb05b0510, 0x7d090cd6, 0x00000000}},  //   _səhm, hjäl, česa,\n  { {0x888601fc, 0x6283004a, 0x290f00f8, 0x00000000}},  //   длеж, _mcno, foga_,\n  { {0x290f016e, 0x386d0190, 0xddde000a, 0x00000000}},  //   goga_, _cder_, _repň,\n  { {0x629a0cd7, 0x872a007e, 0x60dd0023, 0x00000000}},  //   yeto, оўка_, ërmi,\n  { {0x473301fb, 0x386d0cd8, 0x00000000, 0x00000000}},  //   вніс, _eder_,   ,\n  { {0x69d80030, 0x248d005b, 0x290f0213, 0x00000000}},  //   øved, ffem_, boga_,\n  { {0x63a2004a, 0x66cf0056, 0x3eba0085, 0x00000000}},  //   _pson, _søkt, _lnpt_,\n  { {0xd90d0cd9, 0x629a0cda, 0xb6cb00a1, 0x00000000}},  //   _این_, teto, _ڈالے_,\n  { {0xb6cb026c, 0x628300f6, 0x00000000, 0x00000000}},  //   _والے_, _ccno,   ,\n  { {0x658a005f, 0x629a02d5, 0x02a3008b, 0x00000000}},  //   _məhk, reto, трым,\n  { {0x63a20058, 0x75490010, 0x629a0213, 0x00000000}},  //   _tson, őszö, seto,\n  { {0x044300e3, 0x26cc024f, 0x937703ab, 0x00000000}},  //   _речн, _kodo_, _قصور_,\n  { {0xe1ef06c6, 0x7ce30004, 0x2cb90cdb, 0x00000000}},  //   اسی_, _kõrg, _snsd_,\n  { {0x26cc0cdc, 0x9f3401fb, 0xdc3a011f, 0x00000000}},  //   _modo_, тері, _açık,\n  { {0x26cc0cdd, 0x2ca9004a, 0x00000000, 0x00000000}},  //   _lodo_, udad_,   ,\n  { {0x2ca90219, 0x68e20059, 0x290f016e, 0x00000000}},  // [1390] rdad_, dhod, voga_,\n  { {0x26cc0555, 0xcf270464, 0x60cd0082, 0x00000000}},  //   _nodo_, _تربي, _hoam,\n  { {0x290f0cde, 0x7ce3006c, 0x68e30ccd, 0x00000000}},  //   toga_, _nõrg, ëndo,\n  { {0x26de0cdf, 0x2fe4014a, 0xf8690025, 0x00000000}},  //   _alto_, _örgü_, سمتي_,\n  { {0x26cc01d9, 0x6aa70c8a, 0x60cd0ce0, 0x00000000}},  //   _bodo_, _tajf, _moam,\n  { {0x26cc008e, 0x6f020051, 0xdb060190, 0x00000000}},  //   _codo_, _íoct, _arkæ,\n  { {0x04450ce1, 0x6283000a, 0x00000000, 0x00000000}},  //   нейн, _rcno,   ,\n  { {0x68e20ce2, 0x27e6014a, 0x2f16000c, 0x00000000}},  //   chod, bzon_, lægt_,\n  { {0xe3b10426, 0x248d0466, 0x92f50451, 0x00000000}},  //   ارب_, rfem_, ечні,\n  { {0x26cc0ce3, 0x888100a1, 0x00000000, 0x00000000}},  //   _godo_, _شیڈن,   ,\n  { {0x78a9006c, 0xcb12009b, 0x78bb01c3, 0x00000000}},  //   _kaev, רלי_, _knuv,\n  { {0x26c70ce4, 0xe454008b, 0x98b8001e, 0x00000000}},  //   ljno_, _акцы, _kurā_,\n  { {0x952204e1, 0x60cd0ce5, 0xb05b00b0, 0x00000000}},  //   _حکوم, _doam, nkäy,\n  { {0x68e20428, 0x78a9006c, 0x25a50022, 0x00000000}},  //   zhod, _laev, _ksll_,\n  { {0x60cd0ce6, 0x7d090ab8, 0x3eba0011, 0x00000000}},  //   _foam, česn, _vnpt_,\n  { {0xdca3013b, 0x7693005d, 0x64490335, 0x00000000}},  //   ласи, lıyı, ncei,\n  { {0xac070264, 0x6836011f, 0x68e206b8, 0x00000000}},  // [13a0] ента_, _müdü, vhod,\n  { {0x09e6005c, 0x76930180, 0x00000000, 0x00000000}},  //   нозн, nıyı,   ,\n  { {0xd910026c, 0xae5b00b6, 0xe93a0076, 0x00000000}},  //   لیس_, _מכיר, سسات_,\n  { {0x38600ce7, 0xa01b0073, 0x68e200b9, 0x00000000}},  //   úir_, mför, uhod,\n  { {0xa01b03a2, 0xcc3b0049, 0x68e20b4a, 0x00000000}},  //   lför, _מעכט, rhod,\n  { {0x68e20107, 0x644b0030, 0x27e60032, 0x00000000}},  //   shod, _afgi, rzon_,\n  { {0x68e2037e, 0xa01b0ce8, 0x26cc0059, 0x00000000}},  //   phod, nför, _vodo_,\n  { {0x7ce3006c, 0xd37a00ed, 0x693401b2, 0x00000000}},  //   _võrg, пчо_, _شکار,\n  { {0x26cc0219, 0x60cd0253, 0x29040093, 0x00000000}},  //   _todo_, _roam, _ijma_,\n  { {0x026a007c, 0xa01b0039, 0x60cd012d, 0x00000000}},  //   чший_, kför, _soam,\n  { {0xb5fc0066, 0x00000000, 0x00000000, 0x00000000}},  //   _weġb,   ,   ,\n  { {0xa01b0039, 0x73e6007c, 0x644900d4, 0x00000000}},  //   dför, _поез, ccei,\n  { {0xddcc00b9, 0x658a013f, 0x673a00d9, 0x00000000}},  //   _čišt, _səhh, _kitj,\n  { {0x661a0ce9, 0x673a0066, 0x00000000, 0x00000000}},  //   _kytk, _jitj,   ,\n  { {0x673a04bd, 0xfcd900a1, 0x60cd001a, 0x00000000}},  //   _mitj, وارڈ_, _toam,\n  { {0x673a0ba0, 0x658a013f, 0x00000000, 0x00000000}},  //   _litj, _vəhh,   ,\n  { {0x317e00e5, 0x2f160190, 0x5b15004d, 0x00000000}},  // [13b0] lutz_, tægt_, вмат,\n  { {0xff500025, 0x00000000, 0x00000000, 0x00000000}},  //   _اخي_,   ,   ,\n  { {0x317e0cea, 0x00000000, 0x00000000, 0x00000000}},  //   nutz_,   ,   ,\n  { {0x6ee20142, 0x00000000, 0x00000000, 0x00000000}},  //   _vôbe,   ,   ,\n  { {0x9814008b, 0x07a504f9, 0x317e010f, 0x00000000}},  //   льшч, талн, hutz_,\n  { {0xcf94007b, 0x443d0270, 0xbdf800a2, 0x00000000}},  //   רטס_, _sgw_, _آریا_,\n  { {0x6b8d04d7, 0xceb40104, 0x673a023a, 0x00000000}},  //   ltag, טיס_, _ditj,\n  { {0xdb060a5d, 0xe3b90ceb, 0x673a00bb, 0x00000000}},  //   _erkä, дби_, _eitj,\n  { {0x47940070, 0x64490335, 0x62810462, 0x00000000}},  //   _مجلس, rcei, tglo,\n  { {0x24860009, 0xd90d00a1, 0x21290cec, 0x00000000}},  //   _ecom_, _ایچ_, _ahah_,\n  { {0x057400a2, 0x69c50023, 0x00000000, 0x00000000}},  //   _ماند, nxhe,   ,\n  { {0x62810ced, 0x3f6a0cee, 0xa01b0039, 0x00000000}},  //   sglo, мимо_, vför,\n  { {0x6f1c001c, 0xa85600b6, 0x660401df, 0x00000000}},  //   tlrc, כירה_, şikt,\n  { {0x658a005f, 0xe1f1007a, 0x6b8d0018, 0x00000000}},  //   _səhi, _پست_, dtag,\n  { {0x8d63098c, 0x92580025, 0x6b8d01c3, 0x00000000}},  //   ивре, _أشهر_, etag,\n  { {0xa01b03ed, 0x00000000, 0x00000000, 0x00000000}},  //   rför,   ,   ,\n  { {0xa01b03a2, 0xcb67026b, 0x6b8d011c, 0x00000000}},  // [13c0] sför, кате_, gtag,\n  { {0xa01b00f8, 0x249f0022, 0x00000000, 0x00000000}},  //   pför, heum_,   ,\n  { {0xa01b000c, 0x673a00bb, 0xef1f0010, 0x00000000}},  //   ngön, _ritj, ztük_,\n  { {0x673a0cef, 0x080a0014, 0x6b8d0c4c, 0x00000000}},  //   _sitj, وزشي_, btag,\n  { {0x2ca0006c, 0x673a0129, 0x98b800e5, 0x00000000}},  //   meid_, _pitj, _aură_,\n  { {0x2ca00cf0, 0x7c260089, 0xda65006d, 0x00000000}},  //   leid_, _izkr, _مافي,\n  { {0x44200006, 0x888402fd, 0x673a0cf1, 0x00000000}},  //   _ši_, _میان, _vitj,\n  { {0x4420001d, 0x2ca0006c, 0xef1f0010, 0x00000000}},  //   _ơi_, neid_, ttük_,\n  { {0xccf300b6, 0x2b46002a, 0x673a002b, 0x00000000}},  //   יכה_, íoch_, _titj,\n  { {0x2ca0049b, 0x21290127, 0x2d9a05b7, 0x00000000}},  //   heid_, _shah_, _oppe_,\n  { {0x60f90cf2, 0xc4860057, 0x2ca0095a, 0x00000000}},  //   ення_, _алек, keid_,\n  { {0x6b8d0cf3, 0x249f0036, 0x64a602ea, 0x00000000}},  //   ytag, ceum_, _јада,\n  { {0x2ca0006c, 0x44200011, 0x996200b9, 0x00000000}},  //   deid_, _ái_, _níže_,\n  { {0x44260061, 0x2d470cf4, 0x6b8d0cf5, 0x00000000}},  //   _izo_, _põe_, vtag,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6b8d0cf6, 0x2ca00cf7, 0x00000000, 0x00000000}},  //   ttag, geid_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  // [13d0]   ,   ,   ,\n  { {0x6b8d028c, 0xbb190054, 0x60dd021f, 0x00000000}},  //   rtag, رياض_, lksm,\n  { {0x6b8d0cf8, 0x2ca00cf9, 0x249f0022, 0x00000000}},  //   stag, beid_, yeum_,\n  { {0xf7710355, 0x60dd0006, 0x98ad0036, 0x00000000}},  //   مات_, nksm, _mieć_,\n  { {0xb05b0cfa, 0x6d4500e7, 0x36d501ab, 0x00000000}},  //   rjäh, _huha, лодр,\n  { {0x6d450cfb, 0x6f150211, 0xd6db0077, 0x00000000}},  //   _kuha, nozc, ьте_,\n  { {0x298801f9, 0x6d450cfc, 0xf3f9001a, 0x00000000}},  //   _исто_, _juha, maţi_,\n  { {0xf3f9001a, 0x60dd00bb, 0x63890023, 0x00000000}},  //   laţi_, jksm, _nënç,\n  { {0xf49500a2, 0x42d5007e, 0xe7960167, 0x00000000}},  //   نشکد, гіну, _مالک,\n  { {0xdb0402d5, 0x2fd9018e, 0x63ad0091, 0x00000000}},  //   rviç, dysg_, _šans,\n  { {0x658a006b, 0x6d450110, 0x442604e7, 0x00000000}},  //   _səhv, _nuha, _ezo_,\n  { {0xcea900b6, 0xf48701fc, 0x758200a1, 0x00000000}},  //   _מי_, _јужн, _ایٹم,\n  { {0x645b0007, 0x2ca00cfd, 0xe2a80014, 0x00000000}},  //   mbui, veid_, راین_,\n  { {0x6d45006a, 0x201e001e, 0x645b0cfe, 0x00000000}},  //   _buha, āti_, lbui,\n  { {0x2ca0084c, 0xe296005e, 0x44260cff, 0x00000000}},  //   teid_, _сащ_, _zzo_,\n  { {0x6d450d00, 0x645b00bb, 0x658a006b, 0x00000000}},  //   _duha, nbui, _təhv,\n  { {0x2ca0095c, 0x0c260b7a, 0x6d4501ed, 0x00000000}},  // [13e0] reid_, уман, _euha,\n  { {0x2ca00004, 0xf3f9001a, 0x3f8204a5, 0x00000000}},  //   seid_, gaţi_, muku_,\n  { {0x3f820d01, 0x6d450061, 0x2d9a0039, 0x00000000}},  //   luku_, _guha, _uppe_,\n  { {0x7d7b00a3, 0xa3e3013d, 0x00000000, 0x00000000}},  //   _אנטו, नना_,   ,\n  { {0x6d450668, 0x3f820d02, 0x7c260089, 0x00000000}},  //   _zuha, nuku_, _uzkr,\n  { {0xf3f9001a, 0x7d0401a2, 0x6d450085, 0x00000000}},  //   caţi_, lnis, _yuha,\n  { {0x7d040207, 0x3f820085, 0x00000000, 0x00000000}},  //   onis, huku_,   ,\n  { {0x33740d03, 0x7d040d04, 0x3f82014a, 0x00000000}},  //   агир, nnis, kuku_,\n  { {0xd70a026b, 0x7d040051, 0x3f820093, 0x00000000}},  //   _знае_, inis, juku_,\n  { {0x7d040d05, 0x92b60379, 0x00000000, 0x00000000}},  //   hnis, احظا,   ,\n  { {0x645b0026, 0xe3b20bb6, 0x00000000, 0x00000000}},  //   bbui, _گرا_,   ,\n  { {0x33860081, 0x2ba502fb, 0x6d450d06, 0x00000000}},  //   _букв, _ऑनला, _ruha,\n  { {0x7d040107, 0x6d4504cb, 0x3f820022, 0x00000000}},  //   dnis, _suha, guku_,\n  { {0x6d450d07, 0x7d04095c, 0xf1a6003b, 0x00000000}},  //   _puha, enis, _брин,\n  { {0x59a4013d, 0x7d040d08, 0xf3f90035, 0x00000000}},  //   _गैलर, fnis, vaţi_,\n  { {0x7d0405af, 0xd90400a6, 0x7d1600e0, 0x00000000}},  //   gnis, _ری_, goys,\n  { {0x78a20179, 0x6d450066, 0xf3f9001a, 0x00000000}},  // [13f0] deov, _wuha, taţi_,\n  { {0x7d0400d4, 0x6d450127, 0x00000000, 0x00000000}},  //   anis, _tuha,   ,\n  { {0x7d04001f, 0x658a005f, 0xad2700a6, 0x00000000}},  //   bnis, _məhs, _مرحو,\n  { {0x64420d09, 0x2d8305fd, 0xf3f9001a, 0x00000000}},  //   _ngoi, muje_, saţi_,\n  { {0x2d91022b, 0x47350256, 0x62980165, 0x00000000}},  //   ltze_, андс, _obvo,\n  { {0x4b7a0049, 0x64420032, 0x645b00d9, 0x00000000}},  //   _באשו, _agoi, wbui,\n  { {0x2d830395, 0x645b01d6, 0x2d91002d, 0x00000000}},  //   nuje_, tbui, ntze_,\n  { {0x09e103d7, 0x78a20d0a, 0x2d910032, 0x00000000}},  //   पनीय, ceov, itze_,\n  { {0xe78700e1, 0x2d830428, 0xe7980d0b, 0x00000000}},  //   _љубо, huje_, _مخلص_,\n  { {0x3ae40073, 0x6442002d, 0x3f820107, 0x00000000}},  //   _köpa_, _egoi, vuku_,\n  { {0x2d8306a6, 0x3ea30d0c, 0x7d04000c, 0x00000000}},  //   juje_, dejt_, ynis,\n  { {0xf5300025, 0x3f82007f, 0x00000000, 0x00000000}},  //   _فإن_, tuku_,   ,\n  { {0x7d040107, 0x8c3b01a2, 0x00000000, 0x00000000}},  //   vnis, _maßs,   ,\n  { {0x3f820119, 0xc8e2013d, 0x7d040052, 0x00000000}},  //   ruku_, _खत्म_, wnis,\n  { {0x7d040d0d, 0xacf6025f, 0x6da6058d, 0x00000000}},  //   tnis, ачај, шива,\n  { {0x7ce3006c, 0xdb0f00f6, 0x3f820d0e, 0x00000000}},  //   _põra, _arcà, puku_,\n\n  { {0x7d04032c, 0x8fa600c0, 0xac050025, 0x00000000}},  // [1400] rnis, _тапе, مذكو,\n  { {0x7d040d0f, 0x2d830b41, 0xba26007e, 0x00000000}},  //   snis, buje_, адзк,\n  { {0x78a20d10, 0x7e7b009b, 0xc8660d11, 0x00000000}},  //   teov, _באיז, атли,\n  { {0xd7fa008b, 0x00000000, 0x00000000, 0x00000000}},  //   кул_,   ,   ,\n  { {0x27e00195, 0x78a20133, 0x00000000, 0x00000000}},  //   áin_, reov,   ,\n  { {0x78a2001c, 0x64420d12, 0x6b840d13, 0x00000000}},  //   seov, _sgoi, muig,\n  { {0xafdb0030, 0x27e00340, 0x00000000, 0x00000000}},  //   ncør, šin_,   ,\n  { {0xd9430140, 0x658a006b, 0x00000000, 0x00000000}},  //   _фети, _bəhr,   ,\n  { {0x6676007a, 0xb4d60061, 0x1afb0044, 0x00000000}},  //   _ندار, _हवी_, ্তরে_,\n  { {0x4ac901f5, 0x63ab0146, 0x00000000, 0x00000000}},  //   रायव, _dsgn,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x2d830428, 0x00000000, 0x00000000, 0x00000000}},  //   vuje_,   ,   ,\n  { {0x658a005f, 0x89370049, 0x61ff006b, 0x00000000}},  //   _təhs, ירטע_, _əylə,\n  { {0xdefb0642, 0x272001aa, 0x539b00b3, 0x00000000}},  //   тым_, fòni_, _סיוו,\n  { {0x27290051, 0x3ea30065, 0x8e380025, 0x00000000}},  //   núna_, rejt_, لسفر_,\n  { {0x2d91002d, 0x3ea30d14, 0x2c780088, 0x00000000}},  //   rtze_, sejt_, ийсь_,\n  { {0x2d830036, 0x3ea30065, 0x6f950025, 0x00000000}},  // [1410] suje_, pejt_, _الخض,\n  { {0x2d830161, 0x628800ab, 0xed4e00a1, 0x00000000}},  //   puje_, ngdo, بھی_,\n  { {0xf9f901b7, 0xdb2600a1, 0x3ce90056, 0x00000000}},  //   دفاع_, حولی, phav_,\n  { {0x6d57002d, 0xb4d5006e, 0x6b8401c3, 0x00000000}},  //   _itxa, _सके_, buig,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x9a840098, 0x00000000, 0x00000000, 0x00000000}},  //   _мусл,   ,   ,\n  { {0x25ac0082, 0x00000000, 0x00000000, 0x00000000}},  //   _csdl_,   ,   ,\n  { {0xe9190088, 0x00000000, 0x00000000, 0x00000000}},  //   _собі_,   ,   ,\n  { {0x658a006b, 0x368b005e, 0xa82501b2, 0x00000000}},  //   _qəhr, _асен_, _اکان,\n  { {0x2d730107, 0x6d570032, 0xa2e500e2, 0x00000000}},  //   kće_, _otxa, соод,\n  { {0x6b8400bb, 0x00000000, 0x00000000, 0x00000000}},  //   zuig,   ,   ,\n  { {0x658a006b, 0x00000000, 0x00000000, 0x00000000}},  //   _təhr,   ,   ,\n  { {0xe2990d15, 0x6d57002d, 0x7e770009, 0x00000000}},  //   _бал_, _atxa, _bdxp,\n  { {0x63a90d16, 0x2d73012d, 0xd9f9007d, 0x00000000}},  //   mwen, fće_, ्पात_,\n  { {0xdef9007e, 0x63a90036, 0x8db50088, 0x00000000}},  //   рыў_, lwen, ості,\n  { {0x6b8400b5, 0xa5da0049, 0x00000000, 0x00000000}},  //   tuig, אַמי,   ,\n  { {0x60c40004, 0x3ce005d5, 0x6d57002d, 0x00000000}},  // [1420] _inim, rkiv_, _etxa,\n  { {0x60d6008e, 0x4bd9007c, 0x00000000, 0x00000000}},  //   _hoym, шься_,   ,\n  { {0xbed70049, 0x60d6014a, 0x63a901a2, 0x00000000}},  //   _הויז_, _koym, hwen,\n  { {0x6d5c0977, 0x63a9000b, 0xe89401fb, 0x00000000}},  //   mpra, kwen, іаль,\n  { {0x6b8400c4, 0xb796003b, 0x29060d17, 0x00000000}},  //   quig, срећ, rnoa_,\n  { {0xef1f011f, 0x6ffc0089, 0x63a90007, 0x00000000}},  //   ltür_, mācī, dwen,\n  { {0x6d5c0263, 0x60c40091, 0xc7af00a1, 0x00000000}},  //   npra, _onim, وڑے_,\n  { {0x98bc0089, 0xdbdd0027, 0x63a90d18, 0x00000000}},  //   īvē_, zšír, fwen,\n  { {0x394a0b8b, 0x9696017f, 0x63a9002b, 0x00000000}},  //   _hubs_, _греш, gwen,\n  { {0x68e20010, 0x6eeb050d, 0x6d5c01c3, 0x00000000}},  //   lkod, _kübe, kpra,\n  { {0xba9b01ce, 0x658a006b, 0x5a9b0049, 0x00000000}},  //   נסטי, _təhq, נשטא,\n  { {0x68e20006, 0x692c001a, 0x7afe014a, 0x00000000}},  //   nkod, _aşez, hipt,\n  { {0x7afe009f, 0x6eeb01a2, 0x53a30228, 0x00000000}},  //   kipt, _lübe, _нацб,\n  { {0x39580d19, 0x7afe0065, 0x60c403b6, 0x00000000}},  //   _otrs_, jipt, _enim,\n  { {0x6d5c0336, 0x68e20d1a, 0x8af0013f, 0x00000000}},  //   gpra, kkod, rpəl,\n  { {0x99860046, 0x657c068f, 0x2d730107, 0x00000000}},  //   łoś_, _århu, rće_,\n  { {0x09e10061, 0x8b580025, 0x8af902dc, 0x00000000}},  // [1430] पन्य, مجلس_, анас_,\n  { {0x2d730d1b, 0x6e99007e, 0x7afe0048, 0x00000000}},  //   pće_, _твор_, gipt,\n  { {0x69de001c, 0x7f3c007b, 0x39580009, 0x00000000}},  //   gype, _געזו, _ctrs_,\n  { {0xad2706c6, 0x3869009f, 0x0cab0441, 0x00000000}},  //   _درخو, úar_, _стои_,\n  { {0x395800f6, 0x2a6a0026, 0x00000000, 0x00000000}},  //   _etrs_, _febb_,   ,\n  { {0xab5b010f, 0xe739007c, 0x7afe04cb, 0x00000000}},  //   _prüf, шел_, cipt,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x63a9010f, 0x280401dc, 0x00000000, 0x00000000}},  //   twen, ásná_,   ,\n  { {0x6d5c0235, 0x63a900b5, 0x25a00035, 0x00000000}},  //   zpra, uwen, ăila_,\n  { {0x81d40055, 0x68e90224, 0x63a9001f, 0x00000000}},  //   _সেই_, _hled, rwen,\n  { {0x5455026b, 0x68e90d1c, 0x63a9037f, 0x00000000}},  //   _двет, _kled, swen,\n  { {0x60d6006b, 0x6d5c0059, 0x63a90173, 0x00000000}},  //   _qoym, vpra, pwen,\n  { {0xb05b0510, 0x00000000, 0x00000000, 0x00000000}},  //   tjär,   ,   ,\n  { {0x6d5c06ed, 0x68e20d1d, 0x539a00b3, 0x00000000}},  //   tpra, zkod, _כינו,\n  { {0x8237035b, 0x68e90d1e, 0xe3b90010, 0x00000000}},  //   _ارشا, _oled, lvű_,\n  { {0x60c40d1f, 0xb05b0d20, 0x6eeb01a2, 0x00000000}},  //   _unim, sjär, _rübe,\n  { {0x6d5c0d21, 0x2a780093, 0x611201c5, 0x00000000}},  // [1440] spra, _pdrb_, rāld,\n  { {0x6d5c0c08, 0x68e9008e, 0x25550089, 0x00000000}},  //   ppra, _aled, _zāle_,\n  { {0x7afe062a, 0x8c460259, 0x68e200ea, 0x00000000}},  //   ript, _мене, tkod,\n  { {0x319a0049, 0x69de01d6, 0x6f1c0197, 0x00000000}},  //   יבענ, rype, lorc,\n  { {0x7d0902db, 0x68e20232, 0x7afe00e0, 0x00000000}},  //   čest, rkod, pipt,\n  { {0x7afe048a, 0x68e20d22, 0x6f1c0129, 0x00000000}},  //   qipt, skod, norc,\n  { {0xc44804e1, 0xbb430373, 0xab5b0d23, 0x00000000}},  //   میان_, _церк, _prüg,\n  { {0x68e90340, 0x15170025, 0xd2500014, 0x00000000}},  //   _gled, يزية_, کند_,\n  { {0x39440093, 0x6b960af1, 0x00000000, 0x00000000}},  //   _iims_, ntyg,   ,\n  { {0xb5fc002b, 0x7f5d0045, 0xe5a60c96, 0x00000000}},  //   _leġi, vpsq, _мизи,\n  { {0x7ce3006c, 0xab5b0d24, 0xdcfc01c5, 0x00000000}},  //   _sõrm, _trüg, ntrē,\n  { {0x39440203, 0x00000000, 0x00000000, 0x00000000}},  //   _jims_,   ,   ,\n  { {0x6f1c00ab, 0x00000000, 0x00000000, 0x00000000}},  //   forc,   ,   ,\n  { {0x63a20d25, 0x6b960675, 0x6f1c0091, 0x00000000}},  //   _ipon, dtyg, gorc,\n  { {0x3eb3005f, 0x2b4b0197, 0xdb0d00c4, 0x00000000}},  //   _vaxt_, _succ_, lvaç,\n  { {0x9f6b012b, 0x1fa700ed, 0x8b670025, 0x00000000}},  //   _кроз_, _дрог, قائم,\n  { {0x200c005f, 0x6f1c0871, 0x00000000, 0x00000000}},  // [1450] şdir_, borc,   ,\n  { {0x6f1c0555, 0x2732001a, 0x61120089, 0x00000000}},  //   corc, nând_, rāle,\n  { {0xfc3f0d26, 0xdcf50036, 0x68e9060b, 0x00000000}},  //   _país_, erzą, _pled,\n  { {0x63a20036, 0x394400d4, 0xaac9007d, 0x00000000}},  //   _opon, _cims_, राहक,\n  { {0x995400b9, 0x39440190, 0x37ab0ab6, 0x00000000}},  //   _výše_, _dims_, ртен_,\n  { {0xb34500c4, 0x7bda009b, 0x68e90016, 0x00000000}},  //   _liçã, _הקשו, _wled,\n  { {0x63a20181, 0x3944000a, 0xfc3f00fa, 0x00000000}},  //   _apon, _fims_, _taís_,\n  { {0x68fb0d27, 0x6fcb01f5, 0x2ca90d28, 0x00000000}},  //   _umud, ामां, nead_,\n  { {0x291d0036, 0x46150123, 0x399502e7, 0x00000000}},  //   mowa_, _کوار, lås_,\n  { {0x386d0b10, 0x291d0036, 0x2ca90d29, 0x00000000}},  //   _heer_, lowa_, head_,\n  { {0x386d049b, 0x63a20d2a, 0x6f1c08d0, 0x00000000}},  //   _keer_, _epon, vorc,\n  { {0x291d0036, 0x7cf10d2b, 0x8fa60072, 0x00000000}},  //   nowa_, _hårf, паме,\n  { {0x386d049b, 0x6f1c0606, 0xb5fc01d5, 0x00000000}},  //   _meer_, torc, _reġi,\n  { {0x386d0d2c, 0x2732001a, 0x248d0d2d, 0x00000000}},  //   _leer_, când_, lgem_,\n  { {0x63bb000c, 0x291d0036, 0x2ca90051, 0x00000000}},  //   lvun, kowa_, fead_,\n  { {0x2ca90061, 0x248d0d2e, 0x386d00c7, 0x00000000}},  //   gead_, ngem_, _neer_,\n  { {0x291d0036, 0x39440d2f, 0x61e10d30, 0x00000000}},  // [1460] dowa_, _rims_, lyll,\n  { {0xe81f02d2, 0x8b23007c, 0x6b960039, 0x00000000}},  //   _बड़ा_, едуе, rtyg,\n  { {0x6edb009b, 0x6b960d31, 0x39950d32, 0x00000000}},  //   _החיפ, styg, gås_,\n  { {0x2fc00c88, 0x3eaa010f, 0x2732001a, 0x00000000}},  //   _krig_, lebt_, zând_,\n  { {0xdcfc001e, 0x4cbb00b6, 0x2d9804b9, 0x00000000}},  //   strē, _הזכו, ltre_,\n  { {0x6d46011f, 0x8f9b00a0, 0x6b840d33, 0x00000000}},  //   _hika, מיני, mrig,\n  { {0x6d460d34, 0x61e10030, 0x6b840190, 0x00000000}},  //   _kika, jyll, lrig,\n  { {0x6eeb02b9, 0x94aa007e, 0x2d980d35, 0x00000000}},  //   _müba, стка_, itre_,\n  { {0x6d460d36, 0x6b840030, 0x2732001a, 0x00000000}},  //   _mika, nrig, tând_,\n  { {0x6d460d37, 0x386d02ae, 0xdb0d0181, 0x00000000}},  //   _lika, _zeer_, rvaç,\n  { {0x64a60175, 0x6b84010f, 0x2732001a, 0x00000000}},  //   _нажа, hrig, rând_,\n  { {0x6d460119, 0x2fc0018e, 0x6b840cb2, 0x00000000}},  //   _nika, _brig_, krig,\n  { {0x613f001e, 0x3869000c, 0x2732001a, 0x00000000}},  //   _jūli, ðari_, pând_,\n  { {0x44260d38, 0x6b8406f8, 0x6d46021e, 0x00000000}},  //   _iyo_, drig, _aika,\n  { {0x6d46002d, 0x6b84010f, 0x06fd00b9, 0x00000000}},  //   _bika, erig, _říká_,\n  { {0x2d830065, 0x6d460563, 0x44260d39, 0x00000000}},  //   rrje_, _cika, _kyo_,\n  { {0x2d9c0073, 0x6d46020c, 0x66dd01aa, 0x00000000}},  // [1470] _även_, _dika, _mèkr,\n  { {0x386d0007, 0x13df0055, 0x7cea0428, 0x00000000}},  //   _seer_, _বেড়, _výra,\n  { {0x291d0036, 0x2d8a008e, 0x75220010, 0x00000000}},  //   towa_, cube_, _okoz,\n  { {0xf7710d3a, 0xddde0224, 0x39950039, 0x00000000}},  //   نات_, _nepř, rås_,\n  { {0x7d0d01bf, 0x4426006a, 0x386d0c95, 0x00000000}},  //   mnas, _nyo_, _veer_,\n  { {0x386d049b, 0xea63026c, 0xd2460025, 0x00000000}},  //   _weer_, _سپری, _لن_,\n  { {0x44260d3b, 0x67210059, 0x386d0007, 0x00000000}},  //   _ayo_, _vklj, _teer_,\n  { {0x7d0d0d3c, 0x0445005e, 0x44260061, 0x00000000}},  //   nnas, мейн, _byo_,\n  { {0x44260061, 0x61e1018e, 0x248d0d3d, 0x00000000}},  //   _cyo_, wyll, rgem_,\n  { {0x7cf101bf, 0x7d0d018e, 0x67210091, 0x00000000}},  //   _hård, hnas, _uklj,\n  { {0x7d0d0d3e, 0x44260d3f, 0x00000000, 0x00000000}},  //   knas, _eyo_,   ,\n  { {0x61e10016, 0x63a40035, 0x00000000, 0x00000000}},  //   ryll, _ţine,   ,\n  { {0x61e1018e, 0x3f8b016c, 0xdb0f008e, 0x00000000}},  //   syll, gucu_, _escé,\n  { {0x2d980d40, 0x75290555, 0x6b840193, 0x00000000}},  //   ttre_, llez, vrig,\n  { {0x6d4603b6, 0x311601e0, 0x6b840d41, 0x00000000}},  //   _pika, _офис, wrig,\n  { {0xd132004b, 0x7d0d000c, 0x2d9806f0, 0x00000000}},  //   _جمع_, gnas, rtre_,\n  { {0x2d980d42, 0x6d460d43, 0x0b460088, 0x00000000}},  // [1480] stre_, _vika, днан,\n  { {0x6b840d44, 0xa01b03ed, 0x6d46011c, 0x00000000}},  //   rrig, rgöt, _wika,\n  { {0x6d46001e, 0x644b0d45, 0x7c260036, 0x00000000}},  //   _tika, _oggi, _wykr,\n  { {0x6b840d46, 0xfd45007e, 0x395c0089, 0x00000000}},  //   prig, _пэўн, īvs_,\n  { {0x75290521, 0xa01b00f8, 0x7d0401b1, 0x00000000}},  //   dlez, lgör, miis,\n  { {0x644b0198, 0x7529000b, 0x7d0400b0, 0x00000000}},  //   _aggi, elez, liis,\n  { {0x7ae300b0, 0xa01b0d47, 0xdcf50036, 0x00000000}},  //   önte, ngör, erzę,\n  { {0x7529001a, 0x7cf105cb, 0x29020039, 0x00000000}},  //   glez, _gård, _öka_,\n  { {0x386601a3, 0xddde013e, 0x00000000, 0x00000000}},  //   mbor_, _vepř,   ,\n  { {0x65c60401, 0x6d5e0091, 0x644b01e5, 0x00000000}},  //   _обза, _otpa, _eggi,\n  { {0xe8df0011, 0x75290d48, 0x7cf103bd, 0x00000000}},  //   _hiền_, blez, _håre,\n  { {0x44260058, 0xf503005e, 0x7cf107c4, 0x00000000}},  //   _tyo_, _изхо, _kåre,\n  { {0x6d5e001e, 0x7ce30004, 0xc0e4007e, 0x00000000}},  //   _atpa, _kõrv, тоўк,\n  { {0xe8df001d, 0x3f990d49, 0x3f8b014a, 0x00000000}},  //   _miền_, rtsu_, rucu_,\n  { {0xdd94008b, 0xc348001d, 0xe8df0011, 0x00000000}},  //   кары, _nổi_, _liền_,\n  { {0x30a702a8, 0x7d040d4a, 0x201e001a, 0x00000000}},  //   _цркв, giis, ştia_,\n  { {0x7d0d0d4b, 0xfd44008b, 0x3866012d, 0x00000000}},  // [1490] rnas, тэрн, dbor_,\n  { {0x0dcb005e, 0x19eb0025, 0x4ac9006e, 0x00000000}},  //   _думи_, يراً_, राइव,\n  { {0xceb201ce, 0x212b0016, 0x00000000, 0x00000000}},  //   _גיי_, olch_,   ,\n  { {0x25a50022, 0x7cf10190, 0xe8df0082, 0x00000000}},  //   _rpll_, _båre, _biền_,\n  { {0x7cf10039, 0x78ab0d4c, 0xc7ab0d0b, 0x00000000}},  //   _vård, regv, تدال_,\n  { {0x6b8d0020, 0x6d58009d, 0x7aee00fa, 0x00000000}},  //   muag, _évac, _glbt,\n  { {0x27e90466, 0x75290d4d, 0x657a0068, 0x00000000}},  //   šan_, tlez, _cvth,\n  { {0x672a040f, 0x7cf1032e, 0x00000000, 0x00000000}},  //   alfj, _fåre,   ,\n  { {0x752900bb, 0x387f0066, 0x68e400b0, 0x00000000}},  //   rlez, _idur_, öide,\n  { {0x752900b9, 0x290f00e0, 0x00000000, 0x00000000}},  //   slez, lnga_,   ,\n  { {0x75290cc1, 0x00000000, 0x00000000, 0x00000000}},  //   plez,   ,   ,\n  { {0x644b0026, 0x6b8d0bb2, 0x387f0066, 0x00000000}},  //   _uggi, kuag, _jdur_,\n  { {0x7d0403b6, 0x13a70014, 0x290f0056, 0x00000000}},  //   viis, _آنتی_, inga_,\n  { {0x613601ca, 0x7e75002d, 0x2d5500ea, 0x00000000}},  //   dále, gazp, _båe_,\n  { {0x6da30751, 0x387f0477, 0x7d040052, 0x00000000}},  //   лира, _odur_, tiis,\n  { {0x7cea0428, 0xe05800a2, 0x387f01f3, 0x00000000}},  //   _výro, _زیست_, _ndur_,\n  { {0x7d0401c2, 0x6b8d0197, 0x61360d4e, 0x00000000}},  // [14a0] riis, guag, ráld,\n  { {0x7d04010e, 0x2cb900f6, 0x387f0d4f, 0x00000000}},  //   siis, _easd_, _adur_,\n  { {0x88860098, 0x7cf101c4, 0xf9690088, 0x00000000}},  //   ележ, _såre, дрій_,\n  { {0xdd2f00b9, 0x00000000, 0x00000000, 0x00000000}},  //   pěšn,   ,   ,\n  { {0x3c77009b, 0x387f0af2, 0x38660133, 0x00000000}},  //   _אתכם_, _ddur_, rbor_,\n  { {0x290f0051, 0x7cf1093b, 0xa8240014, 0x00000000}},  //   anga_, _våre, _یکشن,\n  { {0x212b018e, 0x6b490d50, 0x940a006b, 0x00000000}},  //   ylch_, _užga, əbə_,\n  { {0xe8df001d, 0xd9430d51, 0xf3660b81, 0x00000000}},  //   _tiền_, _беси, нтон,\n  { {0x7ce3010e, 0x29060032, 0x2ca00048, 0x00000000}},  //   _tõrv, mioa_, ifid_,\n  { {0x877b00b3, 0xdb970049, 0x2906002d, 0x00000000}},  //   _מאמי, עדיט_, lioa_,\n  { {0x27e60890, 0x26cc0d52, 0xe6d9000c, 0x00000000}},  //   lyon_, _indo_, _þráð,\n  { {0x29060d53, 0x00000000, 0x00000000, 0x00000000}},  //   nioa_,   ,   ,\n  { {0xa30b009c, 0xa2e60d54, 0xe8df0011, 0x00000000}},  //   _کرنے_, _подд, _hiển_,\n  { {0x26de0020, 0x9f350088, 0x3eba0133, 0x00000000}},  //   _joto_, тегі, _capt_,\n  { {0x7e750d55, 0x3eba0d56, 0x00000000, 0x00000000}},  //   razp, _dapt_,   ,\n  { {0x0ccf0055, 0x26de0035, 0x6b8d0d57, 0x00000000}},  //   রস্ত, _loto_, tuag,\n  { {0x60cd0b1f, 0x26cc022b, 0x27e60263, 0x00000000}},  // [14b0] _inam, _ondo_, jyon_,\n  { {0x26de0207, 0x6b8d002d, 0x2cb9000a, 0x00000000}},  //   _noto_, ruag, _wasd_,\n  { {0xab5b001f, 0x7b0b0089, 0x6b8d0032, 0x00000000}},  //   _grün, kļuv, suag,\n  { {0xa95401fb, 0x6c790049, 0xdb04000c, 0x00000000}},  //   укці, _קאָפ, svið,\n  { {0x27e60047, 0x60cd0020, 0x26de0d58, 0x00000000}},  //   gyon_, _mnam, _boto_,\n  { {0xe8df001d, 0x04ed0044, 0x8698005e, 0x00000000}},  //   _biển_, _ওদের_, етът_,\n  { {0x5b14025f, 0x27e60058, 0x26de01c5, 0x00000000}},  //   _смрт, ayon_, _doto_,\n  { {0x81c80044, 0x60cd0045, 0xe8df0082, 0x00000000}},  //   োনা_, _nnam, _diển_,\n  { {0x249f000c, 0xf699012b, 0x1fcb0061, 0x00000000}},  //   rfum_, _овај_, ामोड,\n  { {0x60cd0020, 0x26de0d59, 0x00000000, 0x00000000}},  //   _anam, _goto_,   ,\n  { {0x67230d5a, 0xe4e70088, 0x60cd00ea, 0x00000000}},  //   monj, _підн, _bnam,\n  { {0x6723002b, 0x60cd0019, 0xd00a00ed, 0x00000000}},  //   lonj, _cnam, деме_,\n  { {0x78bb00f4, 0x3ae40039, 0xe29900ed, 0x00000000}},  //   _mauv, _köpt_, _жал_,\n  { {0x2906022b, 0x60cd0004, 0x672307d7, 0x00000000}},  //   zioa_, _enam, nonj,\n  { {0x27e60d5b, 0xeab200a1, 0x60cd0009, 0x00000000}},  //   zyon_, یٹر_, _fnam,\n  { {0xfbe70011, 0x645b0d5c, 0x29060032, 0x00000000}},  //   _thể_, ncui, xioa_,\n  { {0x3eba0056, 0x672304eb, 0x00000000, 0x00000000}},  // [14c0] _tapt_, konj,   ,\n  { {0x67230066, 0x00000000, 0x00000000, 0x00000000}},  //   jonj,   ,   ,\n  { {0x67230d5d, 0x26de004a, 0x29060032, 0x00000000}},  //   donj, _roto_, tioa_,\n  { {0xe786008b, 0x27e601aa, 0xa9670d5e, 0x00000000}},  //   вуко, tyon_, тица_,\n  { {0xa2b2001c, 0x26de01aa, 0x2906022b, 0x00000000}},  //   _असल्, _poto_, rioa_,\n  { {0x27e6049a, 0x67230020, 0x7bc6002b, 0x00000000}},  //   ryon_, gonj, _irku,\n  { {0x27e60d5f, 0x26de0d60, 0x66e306e3, 0x00000000}},  //   syon_, _voto_, роја,\n  { {0x399c0129, 0x6abc014a, 0x27e60173, 0x00000000}},  //   mís_, _harf, pyon_,\n  { {0x290401d5, 0x26de0428, 0x67230d61, 0x00000000}},  //   _imma_, _toto_, bonj,\n  { {0x6723001a, 0x78bb0091, 0x60cd00ca, 0x00000000}},  //   conj, _zauv, _snam,\n  { {0x6abc001a, 0x68e007e0, 0x399c0d62, 0x00000000}},  //   _marf, _komd, nís_,\n  { {0x7bc60d63, 0x645b0026, 0xb97b00a0, 0x00000000}},  //   _orku, ccui, ונטי,\n  { {0x399c0051, 0x68e300c4, 0x6f0700d0, 0x00000000}},  //   hís_, êndi, tijc,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xdef8008b, 0x5e5801fb, 0x6f0700ca, 0x00000000}},  //   тыя_, тися_, rijc,\n  { {0x399c0d64, 0x60cd0020, 0x853c0006, 0x00000000}},  //   dís_, _unam, _spėj,\n  { {0x6d58009d, 0x7bc60087, 0x67230045, 0x00000000}},  // [14d0] _évan, _crku, yonj,\n  { {0x2904005f, 0x78bb028c, 0x6136009f, 0x00000000}},  //   _amma_, _sauv, mála,\n  { {0xce330167, 0x61360047, 0x6abc0d65, 0x00000000}},  //   _خودک, lála, _darf,\n  { {0xfc640265, 0xfc3f008e, 0x68e00048, 0x00000000}},  //   _върн, _maíz_, _comd,\n  { {0xd3660076, 0x6723002b, 0x9cd600b6, 0x00000000}},  //   _ده_, tonj, _עושה_,\n  { {0x29040039, 0x6abc005b, 0x399c0d66, 0x00000000}},  //   _emma_, _garf, bís_,\n  { {0x399c0d67, 0x61360051, 0x67230c33, 0x00000000}},  //   cís_, hála, ronj,\n  { {0x2602001c, 0xe3b90d68, 0x69c70093, 0x00000000}},  //   _वेळी_, еби_, _irje,\n  { {0x67230d69, 0xecc50044, 0x6136000c, 0x00000000}},  //   ponj, _একাড, jála,\n  { {0xe8df00ad, 0x645b001a, 0x61e8018e, 0x00000000}},  //   _diễn_, scui, fydl,\n  { {0x394d01b5, 0x04950355, 0xb1460595, 0x00000000}},  //   _kies_, _ملاح, лнол,\n  { {0xa6e2009f, 0x201e014a, 0x00000000, 0x00000000}},  //   _öðru, ştim_,   ,\n  { {0x61360d6a, 0x394d00b0, 0xdcfc0089, 0x00000000}},  //   gála, _mies_, strī,\n  { {0x69c70d6b, 0xe299012b, 0x2d910d6c, 0x00000000}},  //   _orje, _чак_, fuze_,\n  { {0x5239007b, 0x62830982, 0xd336009b, 0x00000000}},  //   _אײַנ, _idno, _גרסה_,\n  { {0x394d01d5, 0x399c0d6d, 0x6abc0095, 0x00000000}},  //   _nies_, vís_, _sarf,\n  { {0x6abc0d6e, 0x69c70d6f, 0xdc75007e, 0x00000000}},  // [14e0] _parf, _arje, рысь,\n  { {0x89f6008b, 0x80a002d2, 0x2d910c39, 0x00000000}},  //   ляец, ग्रे, buze_,\n  { {0x6abc0d70, 0x7ce30004, 0x80d80061, 0x00000000}},  //   _varf, _võrr, यापे,\n  { {0x399c0d71, 0x394d00d4, 0x7bc60521, 0x00000000}},  //   rís_, _cies_, _trku,\n  { {0x394d0d72, 0x62830119, 0x66e60878, 0x00000000}},  //   _dies_, _odno, лода,\n  { {0xd5ba0594, 0x00000000, 0x00000000, 0x00000000}},  //   еси_,   ,   ,\n  { {0x394d06f8, 0xdb230010, 0xc7b90010, 0x00000000}},  //   _fies_, _óráj, _eső_,\n  { {0x2904000b, 0x6283018e, 0xc448007a, 0x00000000}},  //   _umma_, _adno, نیان_,\n  { {0xd2500054, 0x2729027b, 0x9cd7009b, 0x00000000}},  //   ينة_, gúns_, רופה_,\n  { {0xe8df0011, 0x61e80039, 0x61360010, 0x00000000}},  //   _viễn_, tydl, vála,\n  { {0x62340ab7, 0xe61600ed, 0x546a0d73, 0x00000000}},  //   рену, _сфаќ, _заем_,\n  { {0x2d910061, 0x62830d74, 0xe8df0011, 0x00000000}},  //   vuze_, _edno, _tiễn_,\n  { {0x8cbf03d7, 0xe47b0049, 0x72d40467, 0x00000000}},  //   _लोगो, _טראכ, _волф,\n  { {0x43830d75, 0x61360d76, 0xef1f0180, 0x00000000}},  //   _الوق, rála, mrük_,\n  { {0x6d5800f4, 0x61360d77, 0xeca700ed, 0x00000000}},  //   _éval, máln, лјан,\n  { {0x69c7008d, 0x55770049, 0xf19300a1, 0x00000000}},  //   _rrje, טעלן_, _اُٹھ,\n  { {0xe8df00ad, 0x1bd4005e, 0x394d0d78, 0x00000000}},  // [14f0] _hiện_, ботя, _ries_,\n  { {0xe8df001d, 0x613608aa, 0x394d0944, 0x00000000}},  //   _kiện_, náln, _sies_,\n  { {0xc33300b6, 0x394d0a6d, 0x00000000, 0x00000000}},  //   צוע_, _pies_,   ,\n  { {0x2fc90343, 0xe8df0082, 0xd7f10025, 0x00000000}},  //   _krag_, _miện_, يكا_,\n  { {0x394d0d79, 0x61360d7a, 0xdb0f008e, 0x00000000}},  //   _vies_, káln, _escá,\n  { {0x6d4f0180, 0x6b8d0190, 0x394d01a2, 0x00000000}},  //   _hica, mrag, _wies_,\n  { {0x394d0006, 0x45190001, 0x8aa40088, 0x00000000}},  //   _ties_, кция_, _уряд,\n  { {0x7cf80d7b, 0x6d4f000a, 0x7e770d7c, 0x00000000}},  //   _vírg, _jica, _lexp,\n  { {0x28f80077, 0x6d4f0d7d, 0x00000000, 0x00000000}},  //   _сеть_, _mica,   ,\n  { {0x425502a8, 0xe8df0011, 0x6d4f0197, 0x00000000}},  //   штит, _biện_, _lica,\n  { {0x7cf80047, 0x6b8d0d7e, 0xa06a00ed, 0x00000000}},  //   _híre, hrag, кана_,\n  { {0xe8df001d, 0x2fc90190, 0x6b8d01d6, 0x00000000}},  //   _diện_, _brag_, krag,\n  { {0xf3670242, 0x61120089, 0x61360d7f, 0x00000000}},  //   _стен, nāli, báln,\n  { {0x7cf80051, 0x6d57006b, 0xdcee00b9, 0x00000000}},  //   _míre, _buxa, ědče,\n  { {0x6d4f04cb, 0x2d9e00f4, 0x442f01d6, 0x00000000}},  //   _bica, îte_, _hyg_,\n  { {0x6b8d001f, 0xb4e30061, 0xa2cd0204, 0x00000000}},  //   frag, _नको_, ताक्,\n  { {0x6d4f0d80, 0x61360010, 0x7cf10748, 0x00000000}},  // [1500] _dica, lálo, _tårn,\n  { {0xff7b007b, 0x7bc40cc7, 0x442f0190, 0x00000000}},  //   _שטימ, rviu, _myg_,\n  { {0x6d4f02d5, 0x442f0006, 0x61360d81, 0x00000000}},  //   _fica, _lyg_, nálo,\n  { {0xdbdc01ca, 0x2c5c0036, 0x3ead0091, 0x00000000}},  //   lšíc, _bądź_, đete_,\n  { {0x3869004a, 0x69c500ea, 0x6b8d009d, 0x00000000}},  //   ñara_, avhe, crag,\n  { {0x7cf8002a, 0x6d57006b, 0x613d0010, 0x00000000}},  //   _díre, _yuxa, méle,\n  { {0x6d5c0d82, 0x7cf80051, 0x6d4f0009, 0x00000000}},  //   nqra, _tírd, _yica,\n  { {0x7d1600b0, 0x442f0030, 0x7e7c009d, 0x00000000}},  //   nnys, _byg_, harp,\n  { {0x2bc9007d, 0x61360d83, 0x7e7c0d84, 0x00000000}},  //   रिया, táln, karp,\n  { {0x39580036, 0xdbdc0161, 0x6eeb0d85, 0x00000000}},  //   _kurs_, jšíc, _tübi,\n  { {0x61360d86, 0x7e7c00ea, 0x8af0006b, 0x00000000}},  //   ráln, darp, vqəl,\n  { {0xb356089d, 0xe8df001d, 0xab5b001f, 0x00000000}},  //   _پیدا_, _viện_, _früh,\n  { {0x6d4f0d87, 0x7cf101e3, 0x7e7c0016, 0x00000000}},  //   _rica, _dårl, farp,\n  { {0xe8df001d, 0x6b8d05f2, 0x395806fa, 0x00000000}},  //   _tiện_, vrag, _ours_,\n  { {0x13b602f4, 0xab5b0d88, 0x6136004a, 0x00000000}},  //   _अनुभ, _trük, cálo,\n  { {0x6b8d001f, 0x2fc90035, 0x61360010, 0x00000000}},  //   trag, _trag_, náll,\n  { {0x2a780093, 0xa0680098, 0xa2cb0061, 0x00000000}},  // [1510] _berb_, _тања_, _थोड्,\n  { {0x6b8d0d89, 0xf9c702d3, 0x6d4f0093, 0x00000000}},  //   rrag, ищен, _wica,\n  { {0x39580d8a, 0x6d4f005d, 0x6b8d01a2, 0x00000000}},  //   _curs_, _tica, srag,\n  { {0x39580d8b, 0x69c10089, 0x61120089, 0x00000000}},  //   _durs_, _šles, tāli,\n  { {0x7d0d0046, 0x00000000, 0x00000000, 0x00000000}},  //   mias,   ,   ,\n  { {0x395800f6, 0x7cf80051, 0x442f08c8, 0x00000000}},  //   _furs_, _víre, _ryg_,\n  { {0xa50900ed, 0x442f0d8c, 0x39580087, 0x00000000}},  //   лека_, _syg_, _gurs_,\n  { {0x7d0d0006, 0x61360d8d, 0x201e001a, 0x00000000}},  //   nias, gáll, ştii_,\n  { {0x57f500ed, 0xe3b10025, 0x387d005b, 0x00000000}},  //   _упат, سرة_, mawr_,\n  { {0x81e20055, 0x61360d8e, 0x6d440036, 0x00000000}},  //   _নেই_, tálo, zmia,\n  { {0x7e7c009f, 0x6d440016, 0x7d0d0d8f, 0x00000000}},  //   varp, ymia, kias,\n  { {0x387d0016, 0x3f6a003b, 0x2d5c008e, 0x00000000}},  //   nawr_, лимо_, _ríe_,\n  { {0x7e7c0d90, 0x320b0036, 0xdbdc0861, 0x00000000}},  //   tarp, ńcy_, tšíc,\n  { {0x2cab00c4, 0x613d0d91, 0x3f5d0082, 0x00000000}},  //   _abcd_, véle, _dìu_,\n  { {0x61460265, 0x7e7c00ea, 0x51950025, 0x00000000}},  //   _лека, rarp, _العذ,\n  { {0x3d080061, 0x2a780065, 0x4bda007c, 0x00000000}},  //   _सगळे_, _serb_, льзя_,\n  { {0x4aaa01f9, 0x6d440904, 0x7e7c0052, 0x00000000}},  // [1520] лкан_, rmia, parp,\n  { {0x6d4401a3, 0x7d160a67, 0x61360010, 0x00000000}},  //   smia, snys, záll,\n  { {0x7d0d0d92, 0xc8790279, 0x7cf80d93, 0x00000000}},  //   bias, _beş_, _círc,\n  { {0x7d0d0d94, 0x2732001a, 0x7c96005e, 0x00000000}},  //   cias, mâni_, _уроц,\n  { {0x3f820027, 0x09e00055, 0x02b70061, 0x00000000}},  //   nsku_, _যেখা, _असून,\n  { {0xb8ef03d7, 0xe3e8026c, 0x3ce00c1e, 0x00000000}},  //   _वो_, یکشن_, ljiv_,\n  { {0xceb300b6, 0x61360010, 0x395800bb, 0x00000000}},  //   פיה_, táll, _uurs_,\n  { {0x18a30216, 0xdb1d0039, 0x4d7b0049, 0x00000000}},  //   _насм, _ersä, ארקע,\n  { {0xe73a01f9, 0x24180147, 0x3f820091, 0x00000000}},  //   _беа_, ропы_, jsku_,\n  { {0x27f9006c, 0x39460d95, 0x3f5d0082, 0x00000000}},  //   _üsna_, lmos_, _rìu_,\n  { {0xd2500070, 0x613d0010, 0x00000000, 0x00000000}},  //   بند_, vélb,   ,\n  { {0x3a37019b, 0x463b0049, 0xca37009b, 0x00000000}},  //   מרים_, _געבע, מניה_,\n  { {0x7d0d023a, 0x394600dc, 0x00000000, 0x00000000}},  //   vias, imos_,   ,\n  { {0x61360010, 0xdb1d00c4, 0x28cf007d, 0x00000000}},  //   nálj, _essê, _सोनि,\n  { {0xc27b007b, 0x7d0d044e, 0x25be00fa, 0x00000000}},  //   _גרוי, tias, _jstl_,\n  { {0xdb060010, 0x00000000, 0x00000000, 0x00000000}},  //   _eskü,   ,   ,\n  { {0x6eeb006b, 0xa2cd0061, 0xfc330025, 0x00000000}},  // [1530] _sübu, ताच्, سحر_,\n  { {0x7d0d000b, 0xda670054, 0x629a00ab, 0x00000000}},  //   sias, صائي, ngto,\n  { {0xb9b5031d, 0x7d0d0d96, 0x99620161, 0x00000000}},  //   تماع, pias, _píše_,\n  { {0x38350594, 0x212b0d97, 0x00000000, 0x00000000}},  //   онер, noch_,   ,\n  { {0x65680065, 0x7d1d00bb, 0x00000000, 0x00000000}},  //   _atdh, _ijss,   ,\n  { {0x39460d98, 0x3cef0061, 0x212b0142, 0x00000000}},  //   amos_, _इकडे_, hoch_,\n  { {0x286b025f, 0x19940d99, 0x05790025, 0x00000000}},  //   _брзо_, _наря, جمعة_,\n  { {0x2d8300bb, 0x394600e5, 0xe9190088, 0x00000000}},  //   isje_, cmos_, _тобі_,\n  { {0x212b0d9a, 0x290f006c, 0x9f4e013e, 0x00000000}},  //   doch_, miga_, žném_,\n  { {0x290f0073, 0xf6f500d3, 0x1309007c, 0x00000000}},  //   liga_, _بزرگ, рной_,\n  { {0xf7480054, 0x75290d9b, 0x2d8300bb, 0x00000000}},  //   _اللي_, poez, jsje_,\n  { {0xa4f7007a, 0xa2a90316, 0x3f82016e, 0x00000000}},  //   _دکتر_, _जॉर्, tsku_,\n  { {0x3f84004f, 0x61360010, 0x6ef0010e, 0x00000000}},  //   ému_, lálk, _häbi,\n  { {0x290f0d9c, 0x7cea000c, 0x68f80089, 0x00000000}},  //   higa_, _nýrr, īvdi,\n  { {0xdd9204e8, 0x290f0d9d, 0x25550089, 0x00000000}},  //   ظور_, kiga_, _tālu_,\n  { {0x3f82037e, 0x290f0059, 0x61120089, 0x00000000}},  //   psku_, jiga_, tālu,\n  { {0x290f03af, 0x6ef00004, 0xeb9a00ed, 0x00000000}},  // [1540] diga_, _läbi, риз_,\n  { {0x2d910046, 0x80d80061, 0xdcfc001e, 0x00000000}},  //   brze_, यावे, turē,\n  { {0x60c40d9e, 0xfce6003b, 0x3eb80d9f, 0x00000000}},  //   _kaim, _доно, mert_,\n  { {0x60c40211, 0x3eb80056, 0x290f006c, 0x00000000}},  //   _jaim, lert_, giga_,\n  { {0x39460da0, 0x39400089, 0x2d980549, 0x00000000}},  //   rmos_, ķis_, lure_,\n  { {0x39460325, 0x60c40a5c, 0x6b84002a, 0x00000000}},  //   smos_, _laim, msig,\n  { {0x20dd0061, 0x290f0da1, 0x2d980133, 0x00000000}},  //   यामध, biga_, nure_,\n  { {0x443d001f, 0x60c40247, 0x3eb8010f, 0x00000000}},  //   _bzw_, _naim, hert_,\n  { {0xa686017f, 0x6b840198, 0x3eb8009f, 0x00000000}},  //   _млад, nsig, kert_,\n  { {0x2d9801c5, 0x61360047, 0x6b840da2, 0x00000000}},  //   kure_, lálh, isig,\n  { {0xd62a0057, 0x3eb80c7a, 0x60c40da3, 0x00000000}},  //   _тоже_, dert_, _baim,\n  { {0x613d009f, 0x61360010, 0xdb1d00d4, 0x00000000}},  //   féla, nálh, _essè,\n  { {0x60c40da4, 0x3eb80da5, 0x212b0142, 0x00000000}},  //   _daim, fert_, roch_,\n  { {0x6b840030, 0x3eb80da6, 0x69ce0032, 0x00000000}},  //   dsig, gert_, _orbe,\n  { {0x2d9800ab, 0x60c40035, 0x2d850010, 0x00000000}},  //   gure_, _faim, éle_,\n  { {0x290f0da7, 0x60c4005b, 0x2d830da8, 0x00000000}},  //   xiga_, _gaim, rsje_,\n  { {0x20020046, 0x69de0da9, 0x290f0daa, 0x00000000}},  // [1550] czki_, expe, viga_,\n  { {0x3eb800d4, 0xdb0400f4, 0xad670025, 0x00000000}},  //   cert_, ntiè, _واجه,\n  { {0xfd10026c, 0x6d3500ed, 0x7ae705d2, 0x00000000}},  //   رجہ_, _неоф, _vojt,\n  { {0x52b70164, 0x7ae70036, 0x6b84004a, 0x00000000}},  //   _अस्स, _wojt, bsig,\n  { {0x290f07dc, 0x3f99014a, 0x69ce0dab, 0x00000000}},  //   riga_, nusu_, _erbe,\n  { {0x290f0dac, 0x69ce0087, 0x00000000, 0x00000000}},  //   siga_, _frbe,   ,\n  { {0x3f99000b, 0x290f000b, 0x7cf800b9, 0x00000000}},  //   husu_, piga_, _mírn,\n  { {0xd5ae0379, 0x3f990dad, 0x7bcf01ee, 0x00000000}},  //   افي_, kusu_, _krcu,\n  { {0x48fa0049, 0x13090088, 0x3ea10051, 0x00000000}},  //   _פּלא, йний_, _ocht_,\n  { {0x60c4001e, 0x613d0dae, 0x61360daf, 0x00000000}},  //   _saim, véla, máli,\n  { {0x60c40997, 0x68e90db0, 0xe8df0082, 0x00000000}},  //   _paim, _koed, _nhịn_,\n  { {0x3ea10db1, 0x3eb8010f, 0x2d98009d, 0x00000000}},  //   _acht_, wert_, vure_,\n  { {0xe28e0db2, 0x68e90db3, 0x26c50db4, 0x00000000}},  //   _па_, _moed, _kalo_,\n  { {0x2d98030a, 0x60c400a9, 0x3eb801a2, 0x00000000}},  //   ture_, _waim, uert_,\n  { {0x6281011c, 0x26c50cce, 0x60c401c2, 0x00000000}},  //   malo, _malo_, _taim,\n  { {0x3ea10db5, 0x3eb80292, 0x3f990089, 0x00000000}},  //   _echt_, sert_, busu_,\n  { {0x2d980db6, 0x3f990279, 0x69ce0db7, 0x00000000}},  // [1560] sure_, cusu_, _srbe,\n  { {0x6b840018, 0x2d980198, 0x62810020, 0x00000000}},  //   rsig, pure_, nalo,\n  { {0x68e90db8, 0x68fb0db9, 0x14bd0309, 0x00000000}},  //   _boed, _blud, ्याण,\n  { {0x7e7e000c, 0x68fb0016, 0x68e90016, 0x00000000}},  //   _hepp, _clud, _coed,\n  { {0x62810010, 0x7e7e009f, 0x68e2002b, 0x00000000}},  //   kalo, _kepp, rjod,\n  { {0x6d5e000b, 0x26c50026, 0x7e7e0dba, 0x00000000}},  //   _kupa, _calo_, _jepp,\n  { {0x62810dbb, 0x69da0142, 0xbb430088, 0x00000000}},  //   dalo, _štef, _черк,\n  { {0x68e90dbc, 0x21200dbd, 0x7e7e03b6, 0x00000000}},  //   _goed, _njih_, _lepp,\n  { {0x6d5e0dbe, 0x62810dbf, 0x26c500c4, 0x00000000}},  //   _lupa, falo, _falo_,\n  { {0xe3af05f3, 0x6281006a, 0x26c50dc0, 0x00000000}},  //   اري_, galo, _galo_,\n  { {0xb5ca03e6, 0x6d5e00c8, 0x68e90022, 0x00000000}},  //   _دوام_, _nupa, _yoed,\n  { {0x3f99049d, 0x38660dc1, 0x63a4001a, 0x00000000}},  //   tusu_, ncor_, _ţinu,\n  { {0x6281002d, 0x6d5e0dc2, 0xe50503ec, 0x00000000}},  //   balo, _aupa, _تبلي,\n  { {0x6d5e023a, 0x628a0030, 0x26c50011, 0x00000000}},  //   _bupa, _udfo, _xalo_,\n  { {0xa2a101f5, 0x7e7e0740, 0x63ac0dc3, 0x00000000}},  //   _खात्, _depp, žinč,\n  { {0x291c0dc4, 0x5d54012c, 0xa3c00061, 0x00000000}},  //   éval_, екст, _ंना_,\n  { {0x68e9018e, 0x201e011f, 0xd008012b, 0x00000000}},  // [1570] _roed, ştir_, _неће_,\n  { {0x765a001c, 0x68fb001e, 0x7cf80047, 0x00000000}},  //   _ngty, _slud, _hírl,\n  { {0xed5800ed, 0x68fb0dc5, 0x68e90112, 0x00000000}},  //   _ноќ_, _plud, _poed,\n  { {0xf990031d, 0x6281016c, 0x61360010, 0x00000000}},  //   ابل_, zalo, táli,\n  { {0x2b93089d, 0x37ab005e, 0x68e901b5, 0x00000000}},  //   _سیاس, стен_, _voed,\n  { {0x61360010, 0x8f9c00a0, 0x68e901bb, 0x00000000}},  //   ráli, מידי, _woed,\n  { {0x62810dc6, 0x68e90116, 0x26c500b0, 0x00000000}},  //   valo, _toed, _valo_,\n  { {0x26c50058, 0x68fb014a, 0x290d0032, 0x00000000}},  //   _walo_, _ulud, _umea_,\n  { {0xa2a102d2, 0x26c50dc7, 0x7f5f002b, 0x00000000}},  //   _खाद्, _talo_, _nuqq,\n  { {0x7bcd0dc8, 0x21cc013e, 0x00000000, 0x00000000}},  //   ivau, _běh_,   ,\n  { {0x7e7e0052, 0x387f0116, 0x63a40035, 0x00000000}},  //   _repp, _keur_, _ţint,\n  { {0x6281006c, 0x7e7e0dc9, 0x6d5e01a3, 0x00000000}},  //   salo, _sepp, _rupa,\n  { {0x6d5e0127, 0x387f00d4, 0xe8df0082, 0x00000000}},  //   _supa, _meur_, _nhọn_,\n  { {0x387f028c, 0x56b50049, 0x6d5e0dca, 0x00000000}},  //   _leur_, ופֿן_, _pupa,\n  { {0x6da305a5, 0xd10a0439, 0x00000000, 0x00000000}},  //   кира, _وقته_,   ,\n  { {0x249f009f, 0x20560057, 0x63a90bb2, 0x00000000}},  //   ngum_, _отпр, oten,\n  { {0x63a90dcb, 0xe8df001d, 0x38c60006, 0x00000000}},  // [1580] nten, _chọn_, _jūrų_,\n  { {0x6d5e00b0, 0x63a90dcc, 0xc31f0044, 0x00000000}},  //   _tupa, iten, _নীতি_,\n  { {0x63a90dcd, 0xf8da0061, 0x387f0dce, 0x00000000}},  //   hten, णालय, _beur_,\n  { {0x63a90056, 0x00000000, 0x00000000, 0x00000000}},  //   kten,   ,   ,\n  { {0x387f0343, 0x386606c2, 0x69da0091, 0x00000000}},  //   _deur_, rcor_, _šted,\n  { {0x386600d4, 0x6136000c, 0xdcfc0006, 0x00000000}},  //   scor_, málu, turė,\n  { {0x9418005f, 0x63a9000d, 0xceb300b6, 0x00000000}},  //   ərə_, eten, דיו_,\n  { {0x63a90056, 0x2ca0006c, 0x387f0116, 0x00000000}},  //   ften, ngid_, _geur_,\n  { {0x63a90dcf, 0x2ca0006c, 0x69e30035, 0x00000000}},  //   gten, igid_, ăteş,\n  { {0x7cf1032e, 0x27320035, 0x00000000, 0x00000000}},  //   _hårt, râns_,   ,\n  { {0x63a9095c, 0x6128014a, 0x2b580095, 0x00000000}},  //   aten, kıld, _mirc_,\n  { {0x63a90dd0, 0x2b580943, 0x00000000, 0x00000000}},  //   bten, _lirc_,   ,\n  { {0xa29401ff, 0x63a90dd1, 0x2bd2013d, 0x00000000}},  //   _залі, cten, सिफा,\n  { {0x44260288, 0x24840145, 0x6d460dd2, 0x00000000}},  //   _ixo_, lamm_, _ahka,\n  { {0x7bcd0009, 0x929b009b, 0xfcc7003b, 0x00000000}},  //   wvau, _ויות, мљам,\n  { {0x2b580dd3, 0x2ca00dd4, 0x00000000, 0x00000000}},  //   _airc_, ggid_,   ,\n  { {0x8aa7005e, 0x00000000, 0x00000000, 0x00000000}},  // [1590] дред,   ,   ,\n  { {0x2b580dd5, 0x2d85008e, 0x7bcd0103, 0x00000000}},  //   _circ_, áles_, rvau,\n  { {0x387f00f4, 0x63a90dd6, 0x13b70044, 0x00000000}},  //   _peur_, zten, জিয়,\n  { {0x09b10055, 0x63a9000c, 0x4426098e, 0x00000000}},  //   ছিলা, yten, _oxo_,\n  { {0x36690175, 0x6d4d0052, 0x387f00d9, 0x00000000}},  //   пало_, mmaa, _veur_,\n  { {0xd246006d, 0x6d4d0128, 0x61360010, 0x00000000}},  //   _من_, lmaa, lált,\n  { {0x442600c4, 0x6d4d0dd7, 0x644200e5, 0x00000000}},  //   _axo_, omaa, _azoi,\n  { {0x6d4d0dd8, 0x61360010, 0xe3c80082, 0x00000000}},  //   nmaa, nált, _bự_,\n  { {0x63a90dd9, 0x249f000c, 0xe3c80011, 0x00000000}},  //   uten, rgum_, _cự_,\n  { {0x63a90dda, 0xe3c8001d, 0x8af0006b, 0x00000000}},  //   rten, _dự_, qqət,\n  { {0x6d4d00bb, 0x6128019a, 0x2747013e, 0x00000000}},  //   kmaa, yıld, _vůně_,\n  { {0xcea900b6, 0x00000000, 0x00000000, 0x00000000}},  //   _לי_,   ,   ,\n  { {0xc4cf026c, 0x6d4d00c7, 0xdb1d0ddb, 0x00000000}},  //   _مےں_, dmaa, _assí,\n  { {0x6d46008d, 0x6561002b, 0x6d4d0112, 0x00000000}},  //   _shka, _kulh, emaa,\n  { {0x656102d5, 0xe816013d, 0x6128005a, 0x00000000}},  //   _julh, _देना_, tıld,\n  { {0x656102d5, 0x6d4d0222, 0x6b96000c, 0x00000000}},  //   _mulh, gmaa, tryg,\n  { {0xf1c9001d, 0x2ca00ddc, 0x6128005d, 0x00000000}},  // [15a0] _hạ_, rgid_, rıld,\n  { {0x6b960190, 0x6d4d0103, 0x61280095, 0x00000000}},  //   rryg, amaa, sıld,\n  { {0x6128005a, 0x753b0161, 0x499a0147, 0x00000000}},  //   pıld, kluz, ятая_,\n  { {0xf1c90011, 0x57a6017a, 0x6d4600b0, 0x00000000}},  //   _mạ_, ешка, _uhka,\n  { {0xf1c9001d, 0xe73a0081, 0x69c30030, 0x00000000}},  //   _lạ_, пед_, æner,\n  { {0x7bc60119, 0xe5c6064b, 0x8f9b01ce, 0x00000000}},  //   _isku, есио, פיצי,\n  { {0xe3c800ad, 0xf1c90011, 0x24840d24, 0x00000000}},  //   _sự_, _nạ_, tamm_,\n  { {0x2d98008e, 0x38c800a1, 0x7d040ddd, 0x00000000}},  //   irre_, _غازی_, nhis,\n  { {0xd90d01ef, 0xe8b5005d, 0x00000000, 0x00000000}},  //   _بین_, lışı,   ,\n  { {0x7aee0bc7, 0xf1c90011, 0x78a200ca, 0x00000000}},  //   _jobt, _bạ_, lgov,\n  { {0xe8b502b9, 0x61360daf, 0x7d0402e1, 0x00000000}},  //   nışı, jáls, khis,\n  { {0xe3c8001d, 0x78a201ca, 0x7bc6006c, 0x00000000}},  //   _tự_, ngov, _osku,\n  { {0x04570054, 0x7d040020, 0x61360010, 0x00000000}},  //   _كلمة_, dhis, vált,\n  { {0x3ea50047, 0x1ee70014, 0xbe0500a1, 0x00000000}},  //   ült_, روزی_, پورٹ,\n  { {0x7bc60065, 0x6d4d01b5, 0x00000000, 0x00000000}},  //   _asku, tmaa,   ,\n  { {0x23b7007d, 0xd9040014, 0xe8b501df, 0x00000000}},  //   _अहमद, _طی_, dışı,\n  { {0x6d4d0dde, 0x61360ddf, 0x78a20de0, 0x00000000}},  // [15b0] rmaa, rált, dgov,\n  { {0xadf5008b, 0x6d4d006c, 0xab180088, 0x00000000}},  //   _апош, smaa, нієї_,\n  { {0x7bc6022b, 0xf1c90011, 0x6d4d07a5, 0x00000000}},  //   _esku, _xạ_, pmaa,\n  { {0x7d04001a, 0x38c904e1, 0x57f500e2, 0x00000000}},  //   chis, بائی_, кпет,\n  { {0xa2a10061, 0x8af0013f, 0x00000000, 0x00000000}},  //   _खाल्, rqər,   ,\n  { {0x7aee0254, 0x65610de1, 0x00000000, 0x00000000}},  //   _gobt, _pulh,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x3ce9021c, 0x69c701ed, 0x00000000, 0x00000000}},  //   njav_, _isje,   ,\n  { {0x3f8b0036, 0xd4680025, 0x753b0de2, 0x00000000}},  //   jscu_, رحيم_, rluz,\n  { {0x753b037e, 0x7790026c, 0x69d50036, 0x00000000}},  //   sluz, _ایوا, _krze,\n  { {0x3f8b0de3, 0x7d040de4, 0x00000000, 0x00000000}},  //   escu_, yhis,   ,\n  { {0x69d50de5, 0xdddc0521, 0xf1c90082, 0x00000000}},  //   _mrze, jarš, _vạ_,\n  { {0xc9520049, 0x00000000, 0x00000000, 0x00000000}},  //   ימט_,   ,   ,\n  { {0x69c70182, 0x78a20119, 0xf1c90011, 0x00000000}},  //   _osje, zgov, _tạ_,\n  { {0x386d0de6, 0xe8b5006b, 0x2d980032, 0x00000000}},  //   _ofer_, xışı, urre_,\n  { {0x62830de7, 0x7aee00d4, 0xad390088, 0x00000000}},  //   _heno, _sobt, ечує_,\n  { {0x7d040056, 0x69c700d9, 0xc0c9003b, 0x00000000}},  // [15c0] rhis, _asje, _чује_,\n  { {0x628300b9, 0x7d040de8, 0x386d0065, 0x00000000}},  //   _jeno, shis, _afer_,\n  { {0x62830de9, 0x7d0400f4, 0x1d0a0751, 0x00000000}},  //   _meno, phis, _жени_,\n  { {0x62830dea, 0xe8b5005d, 0x69d50036, 0x00000000}},  //   _leno, rışı, _drze,\n  { {0x98a30242, 0x7bc60deb, 0x69d5010f, 0x00000000}},  //   риче, _usku, _erze,\n  { {0x62830dec, 0x799e0061, 0x473301e1, 0x00000000}},  //   _neno, pupw, аніс,\n  { {0x69d50036, 0x27e0001a, 0x09e3007c, 0x00000000}},  //   _grze, ţin_, _корн,\n  { {0x62830982, 0x00000000, 0x00000000, 0x00000000}},  //   _aeno,   ,   ,\n  { {0x62830de7, 0x7d03001a, 0x7cf800fa, 0x00000000}},  //   _beno, _înse, _círi,\n  { {0x62830161, 0x7cf80051, 0xe6c50025, 0x00000000}},  //   _ceno, _díri, _متمي,\n  { {0x26de0038, 0xe816007d, 0x31c3005e, 0x00000000}},  //   _into_, _देता_, асяв,\n  { {0x29060ded, 0x7cf80051, 0x26cc0145, 0x00000000}},  //   nhoa_, _fíri, _hado_,\n  { {0x26cc0dee, 0x7cf80def, 0x9443009e, 0x00000000}},  //   _kado_, _gíri, _پھٹن,\n  { {0x62830a5e, 0x26cc021c, 0xe57100a1, 0x00000000}},  //   _geno, _jado_, _خطے_,\n  { {0x628808cb, 0x63a00149, 0x823300a6, 0x00000000}},  //   mado, lumn, _پروا,\n  { {0x26cc029d, 0x6283016c, 0x00000000, 0x00000000}},  //   _lado_, _zeno,   ,\n  { {0xac18003b, 0x26de00ab, 0x2b4a0009, 0x00000000}},  // [15d0] воту_, _onto_, _bhbc_,\n  { {0x69d50df0, 0x62880977, 0x62830df1, 0x00000000}},  //   _prze, nado, _xeno,\n  { {0xb0aa0183, 0x61280279, 0xed4e00a1, 0x00000000}},  //   _कामग, lıla, تھی_,\n  { {0xf1b3007b, 0x62880471, 0x63a0008a, 0x00000000}},  //   יסע_, hado, kumn,\n  { {0x26cc000b, 0x6128047f, 0x60cd0b48, 0x00000000}},  //   _bado_, nıla, _maam,\n  { {0x69d50046, 0x62880211, 0x6d5d0df2, 0x00000000}},  //   _trze, jado, _hisa,\n  { {0x6d5d0127, 0x62880df3, 0x26cc0489, 0x00000000}},  //   _kisa, dado, _dado_,\n  { {0x62830006, 0x23ab0018, 0x6d5d0020, 0x00000000}},  //   _seno, tøj_, _jisa,\n  { {0x6b8d02d5, 0x62830df4, 0x62880df5, 0x00000000}},  //   nsag, _peno, fado,\n  { {0x6d5d0004, 0x61280279, 0x26cc0df6, 0x00000000}},  //   _lisa, dıla, _gado_,\n  { {0x62830142, 0x60cd0011, 0x0596025a, 0x00000000}},  //   _veno, _baam, _مانگ,\n  { {0x6d5d0df7, 0x6b8d016c, 0xd5fa0049, 0x00000000}},  //   _nisa, ksag, _אפער,\n  { {0x6128014a, 0xe2990900, 0x26cc0045, 0x00000000}},  //   gıla, _зал_, _yado_,\n  { {0x62880df8, 0x33920025, 0x48160049, 0x00000000}},  //   cado, _الوز, אַלן_,\n  { {0x6d5d011c, 0x78a90107, 0xb1760011, 0x00000000}},  //   _bisa, _ocev, _trượ,\n  { {0x6d5d0690, 0x6b8d000c, 0x6128026d, 0x00000000}},  //   _cisa, fsag, bıla,\n  { {0x61280676, 0xeb97007c, 0x6b8d011c, 0x00000000}},  // [15e0] cıla, лит_, gsag,\n  { {0x4e3606b4, 0x78a9008e, 0x6d5d0ba5, 0x00000000}},  //   _معجز, _acev, _eisa,\n  { {0x6d5d00e7, 0x69c500d9, 0x26cc0a76, 0x00000000}},  //   _fisa, gwhe, _rado_,\n  { {0x62880df9, 0x613d0dfa, 0x26cc0065, 0x00000000}},  //   zado, téli, _sado_,\n  { {0x01370049, 0x62880dfb, 0x2796030d, 0x00000000}},  //   אָגט_, yado, ушер,\n  { {0x62880181, 0x613d09af, 0x6d5d0dfc, 0x00000000}},  //   xado, réli, _zisa,\n  { {0xe1e7025a, 0x6288029d, 0x612801f6, 0x00000000}},  //   _اس_, vado, zıla,\n  { {0x443d018e, 0x6128005d, 0xd37a00e3, 0x00000000}},  //   _byw_, yıla, нчо_,\n  { {0x62880977, 0x60cd0004, 0x29040dfd, 0x00000000}},  //   tado, _raam, _ilma_,\n  { {0x60cd0dfe, 0x63a00dff, 0xc8790279, 0x00000000}},  //   _saam, rumn, _inşa_,\n  { {0x628800d6, 0x63a00e00, 0xba9b0049, 0x00000000}},  //   rado, sumn, עסטי,\n  { {0x62880211, 0x6128005a, 0x443d0016, 0x00000000}},  //   sado, tıla, _fyw_,\n  { {0x6d5d0cec, 0x62880142, 0x33f605f3, 0x00000000}},  //   _risa, pado, _حساس,\n  { {0x6d5d0515, 0x6128038c, 0x60cd0020, 0x00000000}},  //   _sisa, rıla, _waam,\n  { {0x69da0626, 0xbcfb00f4, 0x6b4b010f, 0x00000000}},  //   _šten, _liée, nüge,\n  { {0x61280676, 0x6b8d0e01, 0x463b0049, 0x00000000}},  //   pıla, tsag, געלע,\n  { {0x6d5d0995, 0x5b150c4e, 0xaae00316, 0x00000000}},  // [15f0] _visa, амат, नांक,\n  { {0x6d5d023a, 0x6b8d010f, 0xa3d50309, 0x00000000}},  //   _wisa, rsag, हित_,\n  { {0x6b8d0e02, 0x64b40061, 0xba470c18, 0x00000000}},  //   ssag, ंभाळ, ухай,\n  { {0xd7d506e3, 0xc9130044, 0x69c502f1, 0x00000000}},  //   ижењ, িক্ত_, rwhe,\n  { {0xdb040211, 0x212900d9, 0x00000000, 0x00000000}},  //   stiá, _mjah_,   ,\n  { {0x6b4b010f, 0x443d0016, 0x2904014a, 0x00000000}},  //   füge, _ryw_, _elma_,\n  { {0x5a44008b, 0xba74026c, 0xf77000a1, 0x00000000}},  //   _гэта, _چاہت, _ہال_,\n  { {0x2d9e01ee, 0xe81601f5, 0xd6180025, 0x00000000}},  //   šteg_, _देवा_, دتها_,\n  { {0xf77000a2, 0xab5b006c, 0x394d002d, 0x00000000}},  //   _فال_, _psüh, _ihes_,\n  { {0x21290093, 0x57f4003b, 0x9814002c, 0x00000000}},  //   _ajah_, _упут, _طبقا,\n  { {0xf8c9007d, 0x75dc00e5, 0x00000000, 0x00000000}},  //   _रसाय, _căză,   ,\n  { {0x33d501e1, 0x24860197, 0x628e0e03, 0x00000000}},  //   _вікт, _geom_, óbor,\n  { {0x9554004b, 0xa936009b, 0x320c0036, 0x00000000}},  //   _اخلا, שטרה_, azdy_,\n  { {0x394d0181, 0xa856009b, 0x2cab0045, 0x00000000}},  //   _lhes_, יירה_, _accd_,\n  { {0xe2da00a1, 0x63b5007f, 0x00000000, 0x00000000}},  //   _جانچ_, žanč,   ,\n  { {0x25ed03d7, 0x395f00d4, 0x6f660098, 0x00000000}},  //   _अपनी_, _nius_, _квиз,\n  { {0xed5701f9, 0x6b4b036c, 0x2cb90009, 0x00000000}},  // [1600] рот_, züge, _dbsd_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6f1c0b62, 0x7e9b009b, 0x395f099a, 0x00000000}},  //   mirc, _בסיו, _bius_,\n  { {0x394d0462, 0x613d00d6, 0x00000000, 0x00000000}},  //   _ches_, bélu,   ,\n  { {0x67d4025f, 0x395f0129, 0xe8160204, 0x00000000}},  //   солу, _dius_, _देशा_,\n  { {0x7cf80e04, 0x9713013a, 0x3ce201c3, 0x00000000}},  //   _víru, оміц, _hnkv_,\n  { {0x4420001a, 0x95ca0e05, 0x394d0087, 0x00000000}},  //   _ţi_, тула_, _fhes_,\n  { {0x395f0026, 0xc4480014, 0x00000000, 0x00000000}},  //   _gius_, هیان_,   ,\n  { {0x6f1c010f, 0x248601ee, 0xdb040374, 0x00000000}},  //   kirc, _veom_, rtiæ,\n  { {0x212900d9, 0x00000000, 0x00000000, 0x00000000}},  //   _sjah_,   ,   ,\n  { {0x8ad90049, 0x98af0089, 0x0566007c, 0x00000000}},  //   אַרפ, logā_, _твен,\n  { {0x23660006, 0x25be00e7, 0xd5fb0049, 0x00000000}},  //   _tuoj_, _iptl_, _שפאר,\n  { {0x69da00d0, 0x65680e06, 0x853500a1, 0x00000000}},  //   _štel, _hudh, _اونچ,\n  { {0x65680020, 0x31670026, 0x7d060e07, 0x00000000}},  //   _kudh, _funz_, _alks,\n  { {0xe297012b, 0x31670e08, 0x3eba00e0, 0x00000000}},  //   _тај_, _gunz_, _dbpt_,\n  { {0x6568033b, 0x00000000, 0x00000000, 0x00000000}},  //   _mudh,   ,   ,\n  { {0x6738022e, 0x2d580e09, 0x395f0129, 0x00000000}},  // [1610] kovj, рить_, _rius_,\n  { {0x394d0e0a, 0x21390065, 0x6f1c0133, 0x00000000}},  //   _shes_, losh_, circ,\n  { {0x395f0e0b, 0x9c830087, 0xdb1d01e5, 0x00000000}},  //   _pius_, _ščuk, _orsö,\n  { {0x80c50044, 0x21390023, 0x00000000, 0x00000000}},  //   ষাক্, nosh_,   ,\n  { {0x395f00d4, 0x2d910036, 0x386400d9, 0x00000000}},  //   _vius_, lsze_, _dgmr_,\n  { {0x16a9005e, 0x6128006b, 0x2ca9006c, 0x00000000}},  //   увки_, yılo, lgad_,\n  { {0x21390065, 0x394d0b97, 0xa49300a1, 0x00000000}},  //   kosh_, _thes_, قیات,\n  { {0x2ca90013, 0x65680022, 0x7af50e0c, 0x00000000}},  //   ngad_, _dudh, _hozt,\n  { {0x291d000b, 0x67380e0d, 0x21390023, 0x00000000}},  //   miwa_, bovj, dosh_,\n  { {0x291d000b, 0xddde0428, 0xdb040e0e, 0x00000000}},  //   liwa_, _lepš, rtiç,\n  { {0xdb0402d5, 0x7af50347, 0x2d910036, 0x00000000}},  //   stiç, _mozt, jsze_,\n  { {0x291d0020, 0x21390023, 0x14ca0014, 0x00000000}},  //   niwa_, gosh_, _مهمی_,\n  { {0xc50c0049, 0x9fd60044, 0xb05b00b0, 0x00000000}},  //   _בלאָ, সঙ্গ, seän,\n  { {0x6568023a, 0x644b0e0f, 0x291d0020, 0x00000000}},  //   _yudh, _izgi, hiwa_,\n  { {0x291d000b, 0x6b500073, 0xf2d20049, 0x00000000}},  //   kiwa_, lägg, _מעג_,\n  { {0x3c66008b, 0x291d0e10, 0x2ca90039, 0x00000000}},  //   скаг, jiwa_, ggad_,\n  { {0x6128047f, 0x291d0020, 0x6f1c0e11, 0x00000000}},  // [1620] nılm, diwa_, pirc,\n  { {0xbcfb009d, 0x60c60010, 0x00000000, 0x00000000}},  //   _piéc, lekm,   ,\n  { {0x8db60088, 0x291d0020, 0x7c2f0835, 0x00000000}},  //   _успі, fiwa_, _excr,\n  { {0x6128014a, 0x291d0020, 0xc9850025, 0x00000000}},  //   kılm, giwa_, تشكي,\n  { {0xc7a302a8, 0x31b10010, 0x65680e12, 0x00000000}},  //   зичк, ház_, _sudh,\n  { {0x6128005f, 0x6d4402f1, 0x09e60265, 0x00000000}},  //   dılm, llia, _логн,\n  { {0x6d44018e, 0x291d0020, 0x690700c4, 0x00000000}},  //   olia, biwa_, órdã,\n  { {0x69dc049a, 0x6d440051, 0x53980ae0, 0x00000000}},  //   _irre, nlia, авия_,\n  { {0x2d850211, 0x6738016e, 0xe8df0011, 0x00000000}},  //   ález_, povj, _nhộn_,\n  { {0x6d440027, 0x91b800e2, 0x65680232, 0x00000000}},  //   hlia, агот_, _tudh,\n  { {0xe3af089d, 0x6d440e13, 0x21390065, 0x00000000}},  //   وری_, klia, tosh_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x2d910046, 0x6d440e14, 0x21390065, 0x00000000}},  //   wsze_, dlia, rosh_,\n  { {0x291d0e15, 0x69dc002d, 0x21390065, 0x00000000}},  //   ziwa_, _orre, sosh_,\n  { {0x8cda0061, 0x7af5067f, 0x2d850e16, 0x00000000}},  //   _पोहो, _rozt, èle_,\n  { {0x6d440198, 0x2d910e17, 0x91e3003b, 0x00000000}},  //   glia, rsze_, _хоће,\n  { {0x69ce002b, 0x2ca90dac, 0x7af5002d, 0x00000000}},  // [1630] _asbe, rgad_, _pozt,\n  { {0x2d910036, 0x6d440e18, 0xaa67007e, 0x00000000}},  //   psze_, alia, стак,\n  { {0x291d000b, 0x6128005d, 0x7d03001a, 0x00000000}},  //   tiwa_, zılm, _înso,\n  { {0x61280279, 0x628a0010, 0xdcfc0089, 0x00000000}},  //   yılm, _lefo, rurģ,\n  { {0x69dc0756, 0x62980027, 0x291d0e19, 0x00000000}},  //   _erre, _odvo, riwa_,\n  { {0x7d0d0047, 0x291d0e1a, 0xdb0d0051, 0x00000000}},  //   lhas, siwa_, otaí,\n  { {0x24e90265, 0x65620061, 0xceb4019b, 0x00000000}},  //   имки_, _bioh, פיק_,\n  { {0x6128005a, 0x7d0d00b0, 0x62980335, 0x00000000}},  //   tılm, nhas, _advo,\n  { {0x628a0038, 0x13090e1b, 0xd6ab0439, 0x00000000}},  //   _befo, иний_, _مدام_,\n  { {0x6128038c, 0xe299025f, 0x42250b11, 0x00000000}},  //   rılm, јан_, ждов,\n  { {0x26c70e1c, 0x90c60604, 0x6d440016, 0x00000000}},  //   meno_, обне, ylia,\n  { {0xf992019b, 0x7bcf0e1d, 0x61280676, 0x00000000}},  //   ורט_, _oscu, pılm,\n  { {0x6b500a5d, 0x7529000d, 0x60c6014a, 0x00000000}},  //   läge, mnez, rekm,\n  { {0x26c7000b, 0x6d44018e, 0x753b01aa, 0x00000000}},  //   neno_, wlia, louz,\n  { {0x62810e1e, 0x7bcf000d, 0x7529031a, 0x00000000}},  //   mblo, _ascu, onez,\n  { {0x62810007, 0x6d440e1f, 0x26c70e20, 0x00000000}},  //   lblo, ulia, heno_,\n  { {0x8c43004d, 0x26c704a5, 0x6d560048, 0x00000000}},  // [1640] дете, keno_, rmya,\n  { {0x26c7089f, 0xb0aa001c, 0x00000000, 0x00000000}},  //   jeno_, _काँग,   ,\n  { {0x26c70c76, 0x7bcf0219, 0x7d0d0e21, 0x00000000}},  //   deno_, _escu, bhas,\n  { {0x7d0d0e22, 0x31ba007b, 0xdb040051, 0x00000000}},  //   chas, יזענ, ntiú,\n  { {0x765f005f, 0x75290173, 0x628100f8, 0x00000000}},  //   əyyə, dnez, kblo,\n  { {0x6281037e, 0x26c70555, 0x7d04021e, 0x00000000}},  //   jblo, geno_, lkis,\n  { {0xb0aa03d7, 0x69dc0ab3, 0x69ce010e, 0x00000000}},  //   _कांग, _urre, _usbe,\n  { {0x7d040e23, 0x75290010, 0x62810e24, 0x00000000}},  //   nkis, gnez, eblo,\n  { {0x628a000a, 0x3946010f, 0x26c70e25, 0x00000000}},  //   _pefo, mlos_, beno_,\n  { {0x39460845, 0x26c70e26, 0x20d70082, 0x00000000}},  //   llos_, ceno_, _ủi_,\n  { {0x753b013e, 0xdb04004a, 0xb5ca0014, 0x00000000}},  //   bouz, guié, _خوام_,\n  { {0x3946001f, 0x657a0010, 0x00000000, 0x00000000}},  //   nlos_, _itth,   ,\n  { {0x3946008e, 0x628100f8, 0x00000000, 0x00000000}},  //   ilos_, bblo,   ,\n  { {0x62810e27, 0xdb040e28, 0xf1a6003b, 0x00000000}},  //   cblo, quiè, _дрин,\n  { {0x7d0d0e29, 0xf27b00b6, 0x3946010a, 0x00000000}},  //   thas, _דרוש, klos_,\n  { {0xdb04002a, 0x26c700b9, 0x7d040e2a, 0x00000000}},  //   ctiú, zeno_, gkis,\n  { {0x7d0d04fa, 0xdb0d0051, 0x00000000, 0x00000000}},  // [1650] rhas, staí,   ,\n  { {0x7d0d06d0, 0x657a0047, 0x3946008e, 0x00000000}},  //   shas, _otth, elos_,\n  { {0xceb20097, 0x7d0d00ab, 0x753b00e7, 0x00000000}},  //   _איי_, phas, youz,\n  { {0x7d040c43, 0x39460211, 0x6b500e2b, 0x00000000}},  //   ckis, glos_, väge,\n  { {0x7bdd0de1, 0x60dc007b, 0x26c70059, 0x00000000}},  //   _ursu, יקאנ, teno_,\n  { {0x62810030, 0xff7c01ce, 0x3946004a, 0x00000000}},  //   xblo, סטומ, alos_,\n  { {0x80ac001c, 0x39460211, 0x26c70091, 0x00000000}},  //   _झाले, blos_, reno_,\n  { {0x61360047, 0x39460325, 0x6b50010f, 0x00000000}},  //   bály, clos_, räge,\n  { {0x628100eb, 0x6b500210, 0x75290035, 0x00000000}},  //   tblo, säge, rnez,\n  { {0x13090783, 0x753b00b9, 0x00000000, 0x00000000}},  //   сной_, souz,   ,\n  { {0x62810039, 0x7d040193, 0x753b049c, 0x00000000}},  //   rblo, ykis, pouz,\n  { {0x62810af1, 0xbcfb02a0, 0x00000000, 0x00000000}},  //   sblo, _sién,   ,\n  { {0x4aac0061, 0xb4d7007d, 0x628106ba, 0x00000000}},  //   _चालव, ायी_, pblo,\n  { {0x3f9e0161, 0x63a900e7, 0x3ebe000c, 0x00000000}},  //   čtu_, muen, ýtt_,\n  { {0x7d040e2c, 0xdb04009d, 0xbcfb004a, 0x00000000}},  //   tkis, quié, _vién,\n  { {0x2571009f, 0x41b20025, 0xa01b000c, 0x00000000}},  //   _mál_, _أمير, mbön,\n  { {0x7d040e2d, 0xfbdf00c4, 0x63a90e2e, 0x00000000}},  // [1660] rkis, _crê_, nuen,\n  { {0x7d040263, 0xa3dc0309, 0x6ea800a1, 0x00000000}},  //   skis, डित_, _بندہ_,\n  { {0x9d4600ed, 0x60d6014a, 0x63a9004a, 0x00000000}},  //   _неод, _kaym, huen,\n  { {0x63a90e2f, 0x7ae70065, 0x61360010, 0x00000000}},  //   kuen, _enjt, tály,\n  { {0x39460977, 0xe81603d7, 0x2efa010f, 0x00000000}},  //   rlos_, _देखा_, _kopf_,\n  { {0x61360010, 0x394601a2, 0x4e7a0049, 0x00000000}},  //   rály, slos_, זאַצ,\n  { {0x39460e30, 0x00000000, 0x00000000, 0x00000000}},  //   plos_,   ,   ,\n  { {0x399b00b6, 0x257100b9, 0xd3a60088, 0x00000000}},  //   _לילד, _dál_, проп,\n  { {0x63a90198, 0x07a300ed, 0x00000000, 0x00000000}},  //   guen, _патн,   ,\n  { {0xa3ab013d, 0x877b00a3, 0x957c0036, 0x00000000}},  //   गढ़_, _לאמי, _prąd,\n  { {0x29060e31, 0xbcfb009d, 0x00000000, 0x00000000}},  //   okoa_, _biél,   ,\n  { {0x63a90e32, 0x29060e33, 0x644e006b, 0x00000000}},  //   buen, nkoa_, əbin,\n  { {0x63a90219, 0x5f940265, 0xe8df0082, 0x00000000}},  //   cuen, ният, _nhờn_,\n  { {0x7d1d00d9, 0x00000000, 0x00000000, 0x00000000}},  //   _smss,   ,   ,\n  { {0xb2bb009b, 0x290600b0, 0x2d9e0091, 0x00000000}},  //   _המור, kkoa_, šten_,\n  { {0x614406e3, 0x60d60203, 0x9d1801ee, 0x00000000}},  //   _пеја, _gaym, пост_,\n  { {0xa3d503d7, 0xe8df0082, 0x00000000, 0x00000000}},  // [1670] हिए_, _chờn_,   ,\n  { {0xc87900e5, 0x00000000, 0x00000000, 0x00000000}},  //   _inşi_,   ,   ,\n  { {0x63a9002d, 0x30a600a1, 0x5d550745, 0x00000000}},  //   zuen, _علیہ, _окот,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xdb1601aa, 0x25710e34, 0x63a90032, 0x00000000}},  //   ktyè, _sál_, xuen,\n  { {0x8579007c, 0x25710e35, 0x00000000, 0x00000000}},  //   осит_, _pál_,   ,\n  { {0x69da01d9, 0x20020036, 0xd6ce0439, 0x00000000}},  //   _štev, zyki_, شقي_,\n  { {0x63a9022b, 0xb4d700e8, 0x6b4b010f, 0x00000000}},  //   tuen, ाये_, zügl,\n  { {0x68e90412, 0x2be0006e, 0x29070e36, 0x00000000}},  //   _ined, निया, ūnas_,\n  { {0x68fb02ae, 0x63a9002d, 0x60d60279, 0x00000000}},  //   _houd, ruen, _saym,\n  { {0xa0a6008b, 0x6723016c, 0x68fb0e37, 0x00000000}},  //   манд, minj, _koud,\n  { {0x67230e38, 0x20020036, 0x68fb0b60, 0x00000000}},  //   linj, tyki_, _joud,\n  { {0x68fb013e, 0x21220127, 0xe2990069, 0x00000000}},  //   _moud, rikh_, _дал_,\n  { {0x2906022b, 0x672304be, 0x7f19007e, 0x00000000}},  //   zkoa_, ninj, пісу_,\n  { {0xa3d5007d, 0x6e4301fc, 0xdd1c0161, 0x00000000}},  //   हिक_, верз, _vážn,\n  { {0x672300ee, 0xdb0d010f, 0x68fb0158, 0x00000000}},  //   hinj, traß, _noud,\n  { {0x67230295, 0xab66007e, 0x6f1e0009, 0x00000000}},  // [1680] kinj, двал, _tmpc,\n  { {0x290d04f8, 0x68e9005b, 0x68fb01f3, 0x00000000}},  //   _alea_, _aned, _aoud,\n  { {0x672300ee, 0x68fb0e39, 0x6b960190, 0x00000000}},  //   dinj, _boud, ssyg,\n  { {0xc7c60072, 0x66030036, 0x68fb009d, 0x00000000}},  //   дски, dynk, _coud,\n  { {0x4c36008b, 0x68fb009d, 0x29060d17, 0x00000000}},  //   _цэнт, _doud, rkoa_,\n  { {0x29060e3a, 0x67230e3b, 0x68e9005b, 0x00000000}},  //   skoa_, ginj, _ened,\n  { {0x68fb009d, 0x290d0133, 0x7afc0288, 0x00000000}},  //   _foud, _flea_, _iort,\n  { {0x7afc002d, 0x25a00e3c, 0x68fb00b5, 0x00000000}},  //   _hort, čil_, _goud,\n  { {0x644e0036, 0x672304eb, 0x06bd0044, 0x00000000}},  //   ębio, binj, _আফরি,\n  { {0x6723037e, 0x68fb00b5, 0x291f012d, 0x00000000}},  //   cinj, _zoud, _zmua_,\n  { {0x36060076, 0x2d9e00b9, 0x66e30143, 0x00000000}},  //   _تواف, átel_, _јоха,\n  { {0x7afc022b, 0x849600a1, 0xd1310379, 0x00000000}},  //   _lort, _آجائ, امح_,\n  { {0x7afc0007, 0x2d9e0e3d, 0x00000000, 0x00000000}},  //   _oort, štel_,   ,\n  { {0x7afc0e3e, 0x00000000, 0x00000000, 0x00000000}},  //   _nort,   ,   ,\n  { {0xa3d6007d, 0x7bc60e3f, 0x64550036, 0x00000000}},  //   ाटक_, _apku, ęzie,\n  { {0x7afc0e40, 0x506700aa, 0x6ca40081, 0x00000000}},  //   _aort, _отпа, круж,\n  { {0xdb0d02d5, 0x3b5500e3, 0x68fb013e, 0x00000000}},  // [1690] ntaç, екар, _roud,\n  { {0x7afc08d3, 0x68fb00b9, 0x68e9032e, 0x00000000}},  //   _cort, _soud, _sned,\n  { {0x67230925, 0x68fb0e41, 0x7afc0e42, 0x00000000}},  //   vinj, _poud, _dort,\n  { {0x2d8300bb, 0x3835041f, 0x00000000, 0x00000000}},  //   mpje_, ннер,   ,\n  { {0x7afc004e, 0x67230119, 0x68fb00f4, 0x00000000}},  //   _fort, tinj, _voud,\n  { {0xe73306dd, 0x7afc0add, 0x68fb0328, 0x00000000}},  //   خصص_, _gort, _woud,\n  { {0xe81f03d7, 0x67230059, 0x23670065, 0x00000000}},  //   _मेरा_, rinj, _rinj_,\n  { {0x6723002b, 0x67d50088, 0x68e90016, 0x00000000}},  //   sinj, _побу, _uned,\n  { {0x3735007e, 0x386d0e43, 0x75d3006b, 0x00000000}},  //   _знаё, _iger_, _məzə,\n  { {0xcb12007b, 0xfbd2009b, 0x7afc002b, 0x00000000}},  //   ָלט_, נתי_, _xort,\n  { {0x76480e44, 0x0322008b, 0xe1260088, 0x00000000}},  //   _gydy, удэн, емни,\n  { {0x75d3005f, 0x70aa0061, 0xab5b01a2, 0x00000000}},  //   _nəzə, कलेल, _spül,\n  { {0x3169008e, 0x13f4005e, 0x2d8300bb, 0x00000000}},  //   _diaz_, _изця, epje_,\n  { {0x63bb0020, 0x2d9e0e45, 0x61ee0048, 0x00000000}},  //   mtun, štem_, óilí,\n  { {0x63bb001f, 0x2f140073, 0x2d8c00f4, 0x00000000}},  //   ltun, _lägg_, ède_,\n  { {0x7afc0e46, 0xc5f20049, 0x00000000, 0x00000000}},  //   _sort, נדן_,   ,\n  { {0x63bb020c, 0x60c40009, 0xe81f007d, 0x00000000}},  // [16a0] ntun, _ibim, _मेला_,\n  { {0x63bb001f, 0x7afc0226, 0x4e1c0044, 0x00000000}},  //   itun, _qort, _দুঃখ_,\n  { {0x7afc04b2, 0x63bb0e47, 0xfbdf0011, 0x00000000}},  //   _vort, htun, _uyên_,\n  { {0x7648018e, 0x63bb0e48, 0x7afc01ac, 0x00000000}},  //   _rydy, ktun, _wort,\n  { {0x6d460ab5, 0x69d50e49, 0x7afc0e4a, 0x00000000}},  //   _ikka, _esze, _tort,\n  { {0x6b840e4b, 0x63bb0e4c, 0x98c50089, 0x00000000}},  //   mpig, dtun, ītās_,\n  { {0x60c40107, 0xceb30049, 0x63bb0e4d, 0x00000000}},  //   _obim, טיג_, etun,\n  { {0x75d3005f, 0x63bb010f, 0x6721012d, 0x00000000}},  //   _xəzə, ftun, _emlj,\n  { {0xd4e30057, 0x63bb00e0, 0xdb04009d, 0x00000000}},  //   ующи, gtun, triè,\n  { {0x60c40e4e, 0xdb0d0e4f, 0x0bb7009b, 0x00000000}},  //   _abim, rtaç, עלים_,\n  { {0x6d46009f, 0xdb0400f4, 0xdb0d0181, 0x00000000}},  //   _okka, rriè, staç,\n  { {0xdb0d0181, 0x26ce000a, 0x6d460e50, 0x00000000}},  //   ptaç, lefo_, _nkka,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x545301fb, 0x6d460e51, 0x320501dc, 0x00000000}},  //   _світ, _akka, byly_,\n  { {0x720300a1, 0x7c87003b, 0xac950aed, 0x00000000}},  //   _مووم, еузе, кавш,\n  { {0x75d3006b, 0x38690e3b, 0xdb0f013f, 0x00000000}},  //   _qəzə, žari_, şdür,\n  { {0x69c70e52, 0x8aa7041f, 0xfaa70242, 0x00000000}},  // [16b0] _spje, еред, ешен,\n  { {0x60dd08e0, 0x6d46020b, 0x2fc90058, 0x00000000}},  //   ldsm, _ekka, _ipag_,\n  { {0xf9930d3a, 0x7dc40752, 0x63bb028d, 0x00000000}},  //   ابط_, _یقین, ztun,\n  { {0x60dd000c, 0x2d810051, 0x63bb0016, 0x00000000}},  //   ndsm, _ithe_, ytun,\n  { {0xb8c903d7, 0x69d50046, 0x60dd0112, 0x00000000}},  //   _गए_, _wsze, idsm,\n  { {0x6d4d021e, 0x2f1400f8, 0x00000000, 0x00000000}},  //   llaa, _vägg_,   ,\n  { {0xa3b30061, 0x6d46000c, 0x98c7003b, 0x00000000}},  //   जून_, _ykka, _псал,\n  { {0x63bb0e53, 0x386d0030, 0x60dd0030, 0x00000000}},  //   ttun, _uger_, jdsm,\n  { {0x63bb00b0, 0x7d03001a, 0x7c290e54, 0x00000000}},  //   utun, _însu, _žerj,\n  { {0x63bb03a1, 0x613d0047, 0x75220e55, 0x00000000}},  //   rtun, mély, _emoz,\n  { {0x6d4d0004, 0x3f80000d, 0x6b840032, 0x00000000}},  //   klaa, _stiu_, zpig,\n  { {0xbcfb00c4, 0xdb040068, 0x00000000, 0x00000000}},  //   _fiéi, rrié,   ,\n  { {0x889a009b, 0x2f140039, 0x6b8400ea, 0x00000000}},  //   וברי, _läge_, xpig,\n  { {0x656b0038, 0xdb0400f4, 0x4ed50147, 0x00000000}},  //   _high, prié, люст,\n  { {0x644b0387, 0x00000000, 0x00000000, 0x00000000}},  //   _hygi,   ,   ,\n  { {0x63a90197, 0x6d4d011c, 0x657c0010, 0x00000000}},  //   oren, glaa, _érhe,\n  { {0x656b0038, 0x63a90232, 0xeb9702b3, 0x00000000}},  // [16c0] _migh, nren, кит_,\n  { {0x656b0038, 0x613d0010, 0x63a90dc0, 0x00000000}},  //   _ligh, dély, iren,\n  { {0x63a9001f, 0x644b010a, 0x6d4d00c7, 0x00000000}},  //   hren, _lygi, blaa,\n  { {0x656b0038, 0x63a90091, 0xdcfc0089, 0x00000000}},  //   _nigh, kren, bprā,\n  { {0x63a90190, 0x68430e56, 0x6d440e57, 0x00000000}},  //   jren, анца, moia,\n  { {0x63a90142, 0x656b0051, 0xd09a006b, 0x00000000}},  //   dren, _aigh, rçək,\n  { {0xdb040841, 0x656b0058, 0x63a90125, 0x00000000}},  //   stió, _bigh, eren,\n  { {0x63a90bf7, 0x6d44065d, 0x00000000, 0x00000000}},  //   fren, noia,   ,\n  { {0x63a90e58, 0x656b0026, 0xdce6016c, 0x00000000}},  //   gren, _digh, _nikč,\n  { {0x86ea0025, 0x656b00ab, 0x14ae0061, 0x00000000}},  //   _تعرف_, _eigh, _टाकण,\n  { {0x63a9002d, 0x656b00ab, 0x2fc90066, 0x00000000}},  //   aren, _figh, _spag_,\n  { {0x63a9011c, 0x94260057, 0x6913014a, 0x00000000}},  //   bren, _имее, _içec,\n  { {0x60dd01c9, 0x6d440e57, 0x63a90e59, 0x00000000}},  //   rdsm, doia, cren,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7e280822, 0x6d4d0e5a, 0xb0ac006b, 0x00000000}},  //   віта_, tlaa, _şüşə,\n  { {0xe7f3001c, 0x6d440032, 0x7d160016, 0x00000000}},  //   _आपला_, goia, ghys,\n  { {0xdc5501f9, 0x6d4d00c7, 0xfbd00025, 0x00000000}},  // [16d0] увањ, rlaa, يتك_,\n  { {0x6d4d01b5, 0x200401a2, 0x00000000, 0x00000000}},  //   slaa, ämie_,   ,\n  { {0x6d4d0e5b, 0x63a90e5c, 0x6d440982, 0x00000000}},  //   plaa, zren, boia,\n  { {0x63a9060a, 0xe0df0e5d, 0x6d4400f6, 0x00000000}},  //   yren, ndò_, coia,\n  { {0x656b0866, 0x499300a1, 0xfd5601ce, 0x00000000}},  //   _righ, _چیئر, _תשרי_,\n  { {0x7d0d0dcd, 0x63a90e5e, 0x656b0e5f, 0x00000000}},  //   lkas, vren, _sigh,\n  { {0xdb040285, 0x656b0058, 0x63a9086a, 0x00000000}},  //   quiá, _pigh, wren,\n  { {0x7d0d03fb, 0x25780010, 0x00000000, 0x00000000}},  //   nkas, _dél_,   ,\n  { {0x63a90685, 0x7d0d00b0, 0x3835007c, 0x00000000}},  //   uren, ikas, _снар,\n  { {0xe1f90057, 0x63a90e60, 0x25780010, 0x00000000}},  //   его_, rren, _fél_,\n  { {0x7d0d003c, 0x656b00ab, 0x63a90e61, 0x00000000}},  //   kkas, _tigh, sren,\n  { {0x6455005f, 0x7fb6007e, 0x7d0d0340, 0x00000000}},  //   əzin, лёгі, jkas,\n  { {0x03a5013b, 0x7d0d006b, 0x6d440035, 0x00000000}},  //   _сило, dkas, voia,\n  { {0xfd650082, 0x00000000, 0x00000000, 0x00000000}},  //   _truồ,   ,   ,\n  { {0xc0e6005e, 0xdd1d00b9, 0xdb0400c4, 0x00000000}},  //   _бойк, lářs, luiç,\n  { {0x7d0d0e62, 0xd24e0025, 0x75290035, 0x00000000}},  //   gkas, _عني_, niez,\n  { {0x6eac013d, 0xdd1d00b9, 0xdb0400c4, 0x00000000}},  // [16e0] _जयपु, nářs, nuiç,\n  { {0x7d0d00b0, 0x945d0036, 0x8a3a007c, 0x00000000}},  //   akas, leńs, няет_,\n  { {0x8886005e, 0x7d160e63, 0x6d440e64, 0x00000000}},  //   глеж, phys, poia,\n  { {0x7d0d04eb, 0x7aeb0089, 0xdb040e65, 0x00000000}},  //   ckas, ēgta, rtiñ,\n  { {0xa3d20754, 0xdb04049a, 0x6ac90055, 0x00000000}},  //   _हैं_, stiñ, রয়ো,\n  { {0xdd1d00b9, 0x3ce0010e, 0x00000000, 0x00000000}},  //   dářs, ldiv_,   ,\n  { {0x645d009f, 0xceb300b6, 0xe5c602b8, 0x00000000}},  //   ýsin, ציה_, усло,\n  { {0x7529002d, 0x3ce00b1b, 0x2578000c, 0x00000000}},  //   giez, ndiv_, _vél_,\n  { {0x46b601fa, 0xdb0400c4, 0x28dd006e, 0x00000000}},  //   _محاس, guiç, _नोटि,\n  { {0x39460a2a, 0x257800f4, 0x9bbb0049, 0x00000000}},  //   loos_, _tél_, עציפ,\n  { {0xaac602f4, 0xd2500014, 0x80de0055, 0x00000000}},  //   र्यक, تند_, যান্,\n  { {0xdb040181, 0x75290e66, 0x26de004a, 0x00000000}},  //   buiç, ciez, _hato_,\n  { {0x7d0d0030, 0x26de0052, 0xa3b3013d, 0x00000000}},  //   vkas, _kato_, जूद_,\n  { {0x26de00c4, 0x1ee70014, 0x3dda01a2, 0x00000000}},  //   _jato_, دوسی_, _bspw_,\n  { {0xc27b007b, 0x26de0181, 0x7d0d0e67, 0x00000000}},  //   _ארוי, _mato_, tkas,\n  { {0xf1a903d7, 0x26de0e68, 0x629a0e69, 0x00000000}},  //   _कितन, _lato_, lato,\n  { {0x7d0d021e, 0x39460112, 0x212b0253, 0x00000000}},  // [16f0] rkas, doos_, mich_,\n  { {0x629a000d, 0x212b001f, 0x26de070c, 0x00000000}},  //   nato, lich_, _nato_,\n  { {0x987509e6, 0x00000000, 0x00000000, 0x00000000}},  //   алец,   ,   ,\n  { {0x629a0e49, 0xaa6401ee, 0x00000000, 0x00000000}},  //   hato, стук,   ,\n  { {0x26de0e6a, 0xbcfb0e6b, 0xab5b00f6, 0x00000000}},  //   _bato_, _diét, _aqüe,\n  { {0x7ceb0073, 0x945d0036, 0x16a60407, 0x00000000}},  //   _förä, zeńs, авши_,\n  { {0x212b0046, 0x629a0e6c, 0x2d9e0059, 0x00000000}},  //   kich_, dato, štev_,\n  { {0x212b004f, 0xdb0402d5, 0x81cd0044, 0x00000000}},  //   jich_, tuiç, রিম_,\n  { {0x26de0181, 0x80de0044, 0x629a00c4, 0x00000000}},  //   _fato_, যাম্, fato,\n  { {0xa1c5008b, 0x26de0325, 0x1309007c, 0x00000000}},  //   абод, _gato_, тной_,\n  { {0xcb1400b6, 0x75290211, 0x212b0e6d, 0x00000000}},  //   מלץ_, piez, fich_,\n  { {0x75ca005f, 0x95670265, 0x26de01d9, 0x00000000}},  //   _qəze, _създ, _zato_,\n  { {0x248d0181, 0x5edf0044, 0x2fdb01f3, 0x00000000}},  //   mbem_, মানে, _csqg_,\n  { {0xb05b09b0, 0x629a0e6e, 0x6d5d00e7, 0x00000000}},  //   pfän, cato, _ahsa,\n  { {0x212b0173, 0x78bb0107, 0xb05b0788, 0x00000000}},  //   bich_, _ocuv, lfäl,\n  { {0x212b0e6f, 0x4fea00e2, 0x00000000, 0x00000000}},  //   cich_, _амин_,   ,\n  { {0x998d0091, 0x8b260147, 0x3ce00e70, 0x00000000}},  // [1700] _ćeš_, адае, rdiv_,\n  { {0x6d5d0e71, 0xfaa6091b, 0xdb0400b0, 0x00000000}},  //   _ehsa, ражо, htiö,\n  { {0x26de0e72, 0xa2bd007d, 0xbcfb009d, 0x00000000}},  //   _rato_, _शान्, _piét,\n  { {0x629a0e73, 0x497305b8, 0xbcfb004a, 0x00000000}},  //   zato, іліс, _diés,\n  { {0xa81a01fa, 0x26de094f, 0x39460b1a, 0x00000000}},  //   ختار_, _pato_, roos_,\n  { {0x212b00bb, 0xc9860014, 0x38af014a, 0x00000000}},  //   zich_, _نشري, törü_,\n  { {0x629a0010, 0x80d70061, 0x26de0087, 0x00000000}},  //   vato, _बसले, _vato_,\n  { {0x629a0e74, 0xd9430e75, 0x69dc007f, 0x00000000}},  //   wato, _деси, _isre,\n  { {0x26de01c8, 0x5397008b, 0x672a0023, 0x00000000}},  //   _tato_, авыя_, pifj,\n  { {0x68e00016, 0x29040020, 0x68e20168, 0x00000000}},  //   _hamd, _homa_, ldod,\n  { {0xbcfb0e76, 0x2904009f, 0x212b0142, 0x00000000}},  //   _miér, _koma_, tich_,\n  { {0x629a001a, 0x68e20065, 0x29040089, 0x00000000}},  //   sato, ndod, _joma_,\n  { {0x629a0e77, 0x212b010f, 0x2f140073, 0x00000000}},  //   pato, rich_, _säga_,\n  { {0x69dc0059, 0x290402c8, 0x69ce0e78, 0x00000000}},  //   _osre, _loma_, _opbe,\n  { {0x2d8501b5, 0x4d2700ed, 0x7095005e, 0x00000000}},  //   ële_, аќаа, _лайф,\n  { {0x2f140004, 0x5c750a27, 0x29040e79, 0x00000000}},  //   _väga_, слат, _noma_,\n  { {0x68e2018e, 0x645c006b, 0x5ecc0044, 0x00000000}},  // [1710] ddod, əric, ায়ে,\n  { {0xf1da03d7, 0x62980e7a, 0xa3d70061, 0x00000000}},  //   _बनान, _jevo, ाबत_,\n  { {0xceb20049, 0xf8750025, 0x29040e7b, 0x00000000}},  //   _ציט_, مهاج, _boma_,\n  { {0x29040b32, 0xc879027d, 0x68e00016, 0x00000000}},  //   _coma_, _başa_, _camd,\n  { {0x27e90e7c, 0x29040b41, 0x68e0011c, 0x00000000}},  //   ían_, _doma_, _damd,\n  { {0x62980e7d, 0x7bdd0038, 0x81cd0055, 0x00000000}},  //   _nevo, _issu, রিত_,\n  { {0x63a20e7e, 0xe7f303d7, 0x2904012d, 0x00000000}},  //   _avon, _आपका_, _foma_,\n  { {0xce38019b, 0x29040e7f, 0x25a90e80, 0x00000000}},  //   יאות_, _goma_, čal_,\n  { {0x62980125, 0xa3d2006e, 0x00000000, 0x00000000}},  //   _bevo, हौल_,   ,\n  { {0xf7700054, 0xc2e9026c, 0xb05b09b0, 0x00000000}},  //   _قال_, اعظم_, rfäl,\n  { {0x7c3b009f, 0x62980e81, 0x41b40152, 0x00000000}},  //   _þurf, _devo, осят,\n  { {0x628e000c, 0x80fa00e2, 0xc879019a, 0x00000000}},  //   ðbor, ухот_, _yaşa_,\n  { {0xe28e0113, 0x43850054, 0x63850e82, 0x00000000}},  //   _на_, _التق, _угла,\n  { {0x6298049b, 0xe7fa0061, 0x00000000, 0x00000000}},  //   _gevo, ्हता_,   ,\n  { {0x63a20e83, 0x7bdd0e84, 0xa3b30309, 0x00000000}},  //   _zvon, _assu, जूर_,\n  { {0x31a301f6, 0x62810adb, 0x61430e85, 0x00000000}},  //   mız_, lclo, _неща,\n  { {0x29040198, 0xed5701f9, 0x68e0011c, 0x00000000}},  // [1720] _roma_, сот_, _ramd,\n  { {0x628100d4, 0x29040020, 0x68e00e86, 0x00000000}},  //   nclo, _soma_, _samd,\n  { {0x31a30676, 0x290400d4, 0xe0df0129, 0x00000000}},  //   nız_, _poma_, clòs_,\n  { {0x75ca005f, 0x61fc03a2, 0x68e201ee, 0x00000000}},  //   _nəza, ärli, udod,\n  { {0xe1e7089d, 0x68e20e87, 0x765a00b4, 0x00000000}},  //   _کس_, rdod, _szty,\n  { {0x29040061, 0x27e60cba, 0x612f0173, 0x00000000}},  //   _woma_, rvon_, _kòlè,\n  { {0x63a2009f, 0x6d41009f, 0x7bc406c2, 0x00000000}},  //   _svon, élag, ltiu,\n  { {0x75ca006b, 0x7d060e88, 0x7644014a, 0x00000000}},  //   _cəza, _joks, şiyo,\n  { {0x7d06010a, 0x5edf0044, 0x97bd0245, 0x00000000}},  //   _moks, মাতে, _архi,\n  { {0x62810e89, 0x7d06000c, 0x00000000, 0x00000000}},  //   gclo, _loks,   ,\n  { {0x60f90cf2, 0x14ca0057, 0x8afb0097, 0x00000000}},  //   ання_, _были_, אליז,\n  { {0x63a2023a, 0x7d060056, 0x05660e8a, 0x00000000}},  //   _tvon, _noks, _увен,\n  { {0x321e0036, 0x62980112, 0x25710091, 0x00000000}},  //   szty_, _tevo, _ušla_,\n  { {0x543b007b, 0x657a0020, 0x612f0173, 0x00000000}},  //   _געדא, _kuth, _bòlè,\n  { {0x91860318, 0x7d060292, 0x98bd00b4, 0x00000000}},  //   _اجتم, _boks, lową_,\n  { {0x657a0e8b, 0x5d5501ff, 0x212901a3, 0x00000000}},  //   _muth, ікат, _umah_,\n  { {0x2d58004c, 0x60cd00c4, 0xba990088, 0x00000000}},  // [1730] сить_, _ibam, иває_,\n  { {0x2dd50256, 0x657a0203, 0x3f8900fa, 0x00000000}},  //   _джор, _outh, _itau_,\n  { {0x5edf0044, 0x7d06006b, 0xc27b0049, 0x00000000}},  //   মাদে, _foks, ארבי,\n  { {0xfbd000a1, 0x7d060e8c, 0x7644014a, 0x00000000}},  //   بتہ_, _goks, ğiyl,\n  { {0x657a08ef, 0x7bc40d8a, 0x2b9300e9, 0x00000000}},  //   _auth, ctiu, _ریاس,\n  { {0x6b8d0e8d, 0x31a3005a, 0x657a01c3, 0x00000000}},  //   mpag, yız_, _buth,\n  { {0x6b8d0e8e, 0x451901e0, 0x7d06014a, 0x00000000}},  //   lpag, иция_, _yoks,\n  { {0x69c50016, 0x75ca006b, 0xb385012c, 0x00000000}},  //   mthe, _qəza, олил,\n  { {0x69c50e8f, 0x6b8d00b5, 0x78a90e90, 0x00000000}},  //   lthe, npag, _idev,\n  { {0x69c507eb, 0x6b8d0e91, 0x60cd0e92, 0x00000000}},  //   othe, ipag, _abam,\n  { {0x3f890149, 0x657a0e93, 0x69c50aba, 0x00000000}},  //   _atau_, _guth, nthe,\n  { {0xe56e01fb, 0x69c5002a, 0x27ed04be, 0x00000000}},  //   _із_, ithe, _kren_,\n  { {0x31a3005d, 0xb05b01a2, 0x225c00d9, 0x00000000}},  //   sız_, nfäh, _ezvk_,\n  { {0x6b8d0e94, 0x69c50065, 0x7d060010, 0x00000000}},  //   dpag, kthe, _soks,\n  { {0xec9a06e3, 0x6b8d00bb, 0x78a90142, 0x00000000}},  //   итај_, epag, _odev,\n  { {0xa01b06d3, 0x6b8d0009, 0x78a900e7, 0x00000000}},  //   rbör, fpag, _ndev,\n  { {0xdee60a27, 0x7d0601e3, 0x6b8d0e95, 0x00000000}},  // [1740] _допи, _voks, gpag,\n  { {0x7bc40e96, 0x78a9000d, 0xab5b010f, 0x00000000}},  //   rtiu, _adev, _spür,\n  { {0x27ed0e97, 0xe9da0175, 0x7bc40e98, 0x00000000}},  //   _aren_, рке_, stiu,\n  { {0x6b8d00b5, 0x27ed005b, 0x7c3b0bf8, 0x00000000}},  //   bpag, _bren_, _žure,\n  { {0x2ca0006c, 0x6b8d0050, 0xc7a302dc, 0x00000000}},  //   maid_, cpag, дичк,\n  { {0x657a0065, 0x6d560e99, 0xb86500a1, 0x00000000}},  //   _puth, llya, سانو,\n  { {0xd5b00054, 0x27ed00f6, 0x69c503b3, 0x00000000}},  //   رفة_, _eren_, cthe,\n  { {0x291d0d16, 0x2ca00ddc, 0x4ac6013d, 0x00000000}},  //   chwa_, naid_, र्रव,\n  { {0x27ed0239, 0x2be00061, 0xdddc04eb, 0x00000000}},  //   _gren_, निटा, jbrž,\n  { {0xbcfb0051, 0x657a0e9a, 0xb6cb00a1, 0x00000000}},  //   _mhéa, _tuth, _نامے_,\n  { {0x3f89001a, 0x2ca0006c, 0x660300ed, 0x00000000}},  //   _stau_, kaid_, _опфа,\n  { {0x645c0163, 0x2ca00004, 0x6b8d0e9b, 0x00000000}},  //   ərin, jaid_, ypag,\n  { {0xb4b602d2, 0xdb0400c4, 0xb4d60309, 0x00000000}},  //   जली_, criç, ाजी_,\n  { {0xf651026c, 0xa3d7006e, 0x764d006b, 0x00000000}},  //   _آئے_, ाबर_, şaye,\n  { {0x6b8d0061, 0xf1c300b9, 0xdb0d009d, 0x00000000}},  //   wpag, _vaší_, fraî,\n  { {0xbcfb0051, 0x6b8d0e9c, 0x2ca00016, 0x00000000}},  //   _bhéa, tpag, gaid_,\n  { {0xbcfb002a, 0x0ca8005e, 0x6b8d0e9d, 0x00000000}},  // [1750] _chéa, ютри_, upag,\n  { {0xbcfb0195, 0x6b8d0e8e, 0x81cd0044, 0x00000000}},  //   _dhéa, rpag, রির_,\n  { {0x13d30055, 0x693c0142, 0xa2bd0309, 0x00000000}},  //   ়িয়, rčen, _शास्,\n  { {0x2ca00e9e, 0xbcfb002a, 0xa2ca024c, 0x00000000}},  //   caid_, _fhéa, त्त्,\n  { {0x6cfa009b, 0xbcfb0051, 0x27ed00fa, 0x00000000}},  //   _הפרס, _ghéa, _qren_,\n  { {0x291d000b, 0x69c50e9f, 0x3946016c, 0x00000000}},  //   shwa_, pthe, čosa_,\n  { {0x6ecd007d, 0xb05b010f, 0xa8a701ee, 0x00000000}},  //   द्यु, sfäh, _мрак,\n  { {0xd4d901fb, 0xdb040181, 0x2e3c01ce, 0x00000000}},  //   ські_, triç, יגונ,\n  { {0x249f0ea0, 0xe3b10025, 0x27ed00b5, 0x00000000}},  //   raum_, ررة_, _uren_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xdb0d0ea1, 0x06760049, 0x00000000, 0x00000000}},  //   ntañ, _זײער_,   ,\n  { {0xdb0d0116, 0x00000000, 0x00000000, 0x00000000}},  //   kraï,   ,   ,\n  { {0x2ca00004, 0x65690190, 0x2458007e, 0x00000000}},  //   vaid_, mmeh, _даць_,\n  { {0xd34300a1, 0x656901a2, 0x2ca0005b, 0x00000000}},  //   _تفتی, lmeh, waid_,\n  { {0xdb0d00f4, 0xbcfb0051, 0x12fa009b, 0x00000000}},  //   traî, _shéa, _להסב,\n  { {0x753b0026, 0x3b86078d, 0x656901a2, 0x00000000}},  //   nnuz, злаг, nmeh,\n  { {0x1d070ea2, 0x6d5600e0, 0x25dd013d, 0x00000000}},  // [1760] чети_, rlya, _कैसी_,\n  { {0x2ca0006c, 0x7c3b0ea3, 0xdb1c0276, 0x00000000}},  //   said_, _žurc, _üzüm,\n  { {0x2ca00ea4, 0x6d5600e0, 0x49ca00c0, 0x00000000}},  //   paid_, plya, слен_,\n  { {0xbcfb0ea5, 0x203300a1, 0x00000000, 0x00000000}},  //   _théa, _آفیس,   ,\n  { {0xdb040007, 0x24c30044, 0x80ce0061, 0x00000000}},  //   nsië, ্যাহ, ध्ये,\n  { {0x65620065, 0xdbc7006c, 0x7d040c31, 0x00000000}},  //   _shoh, tööt, ljis,\n  { {0xdb040039, 0x7c24001a, 0x9f4001d6, 0x00000000}},  //   rriä, lzir, _asië_,\n  { {0x48e30216, 0xdce4037e, 0x7d040173, 0x00000000}},  //   _посв, kmič, njis,\n  { {0xd9430a94, 0x7c240ea6, 0xa2bd01f5, 0x00000000}},  //   _чети, nzir, _शाश्,\n  { {0x645c005f, 0x98bd0036, 0xdb0d000c, 0x00000000}},  //   əril, dowę_, ntað,\n  { {0x8675008b, 0x65620022, 0x00000000, 0x00000000}},  //   _жыцц, _thoh,   ,\n  { {0x2d57014a, 0x7aeb0089, 0x81cd0044, 0x00000000}},  //   rçek_, ēgti, রিং_,\n  { {0x5064012b, 0x75ca006b, 0xdb0d0032, 0x00000000}},  //   етра, _məzm, ztañ,\n  { {0x70770167, 0xdb0400fa, 0xf1a60140, 0x00000000}},  //   _کاغذ, ssiê, _ерин,\n  { {0x97570104, 0x9f44013e, 0x78a20253, 0x00000000}},  //   פילו_, ímá_, kaov,\n  { {0x7d04008d, 0x00000000, 0x00000000, 0x00000000}},  //   gjis,   ,   ,\n  { {0xdb0d00c4, 0x6f010010, 0x00000000, 0x00000000}},  // [1770] nuaç, ölcs,   ,\n  { {0x501c009b, 0x44240ea7, 0x00000000, 0x00000000}},  //   _לוחו, izm_,   ,\n  { {0xceb2007b, 0xdb0400f4, 0x99d903d9, 0x00000000}},  //   _ביי_, isiè, تواء_,\n  { {0x7c240107, 0x7d160c51, 0xa3ac0061, 0x00000000}},  //   bzir, ckys, गळा_,\n  { {0xdb0d0ea8, 0x66e50088, 0xa8780025, 0x00000000}},  //   stañ, дола, أحمر_,\n  { {0x8ae401fb, 0xdb0d0181, 0x3ea30ea9, 0x00000000}},  //   _післ, duaç, najt_,\n  { {0xdb0d0051, 0xdce40e3d, 0x2d7800ca, 0x00000000}},  //   nraí, zmič, _hčer_,\n  { {0xfdf8009b, 0x7ae70010, 0x3ce9006c, 0x00000000}},  //   לצות_, _hajt, ndav_,\n  { {0x0477026c, 0x65690eaa, 0x7ae70059, 0x00000000}},  //   _ہلاک_, rmeh, _kajt,\n  { {0x394f001e, 0x65690d2d, 0x81d60044, 0x00000000}},  //   logs_, smeh, সিন_,\n  { {0x645c005f, 0x7ae70eab, 0xf748023c, 0x00000000}},  //   ərim, _majt, _علمي_,\n  { {0xcea900b6, 0x7ae70023, 0x8fa60478, 0x00000000}},  //   _כי_, _lajt, маме,\n  { {0xbcfb00f4, 0x00000000, 0x00000000, 0x00000000}},  //   _phén,   ,   ,\n  { {0x7ae7016e, 0x69d500b5, 0x63bb0eac, 0x00000000}},  //   _najt, _opze, muun,\n  { {0xdb0d002a, 0xc1060025, 0xdce4021c, 0x00000000}},  //   graí, _يوتي, smič,\n  { {0x7c24002d, 0x2f14006c, 0x61fc00ea, 0x00000000}},  //   tzir, _mägi_, årle,\n  { {0x394f0c0d, 0x3ce60027, 0x7d040279, 0x00000000}},  // [1780] dogs_, ľov_, rjis,\n  { {0x7c240107, 0xd91000a6, 0xa2d30164, 0x00000000}},  //   rzir, گیر_, _बॉम्,\n  { {0x7ae709fc, 0x6e4602e9, 0xdb0d0051, 0x00000000}},  //   _dajt, _ценз, craí,\n  { {0xdb0d009f, 0x63bb0ead, 0xd9100167, 0x00000000}},  //   stað, kuun, دیر_,\n  { {0x98a30680, 0x87da0b6c, 0x97da06b4, 0x00000000}},  //   тиче, تباس_, تظار_,\n  { {0x66e3003b, 0x758a0152, 0x78a200fa, 0x00000000}},  //   воља, осив_, saov,\n  { {0x60c40091, 0x693c0eae, 0x7d1d0045, 0x00000000}},  //   _ocim, nček, _ylss,\n  { {0xdb0d0181, 0x38ca00a1, 0x7ae70134, 0x00000000}},  //   tuaç, _گاڑی_, _zajt,\n  { {0x693c00b9, 0x33740eaf, 0x63bb0eb0, 0x00000000}},  //   yčej, нгир, guun,\n  { {0x764d0279, 0x60c40181, 0x59d2006e, 0x00000000}},  //   şaya, _acim, _सहार,\n  { {0xe1350eb1, 0x3ea3022e, 0xdb040ea5, 0x00000000}},  //   енны, vajt_, friú,\n  { {0x26dc0207, 0x92be0044, 0xdb0400f4, 0x00000000}},  //   levo_, ঁজে_, ssiè,\n  { {0xdb0d00c4, 0xc1780006, 0x78a00093, 0x00000000}},  //   quaç, tvės_, _memv,\n  { {0xdb0d0eb2, 0x26dc0724, 0x78a00190, 0x00000000}},  //   traí, nevo_, _lemv,\n  { {0x7ae70010, 0xdb040051, 0x628a0066, 0x00000000}},  //   _rajt, briú, _iffo,\n  { {0x7ae70320, 0xa2ca0204, 0xdb0d0eb3, 0x00000000}},  //   _sajt, त्र्, rraí,\n  { {0x7ae70065, 0x60dd0116, 0x3f67007c, 0x00000000}},  // [1790] _pajt, mesm, _отоб,\n  { {0x26dc06a6, 0xbcfb0eb4, 0x60dd0181, 0x00000000}},  //   jevo_, _théo, lesm,\n  { {0x26dc0eb5, 0x7ae70065, 0x79e700a1, 0x00000000}},  //   devo_, _vajt, بوضہ_,\n  { {0x2561000c, 0x60dd0032, 0x25f4006e, 0x00000000}},  //   kóla_, nesm, ्मनी_,\n  { {0x628a0eb6, 0x06e80044, 0x394f01c5, 0x00000000}},  //   _offo, পানি, rogs_,\n  { {0x2d7800d0, 0x7c200095, 0x00000000, 0x00000000}},  //   _učer_, _ümra,   ,\n  { {0x60dd098e, 0x2d810eb7, 0x63bb0045, 0x00000000}},  //   kesm, _juhe_, wuun,\n  { {0xfba3007d, 0x3ea10eb8, 0x63bb0058, 0x00000000}},  //   _ओबाम, _leht_, tuun,\n  { {0x2d8106be, 0xf77801f3, 0xa24700a1, 0x00000000}},  //   _luhe_, _fiħ_, ڈیشل_,\n  { {0x26dc0eb9, 0x60c40eba, 0xa20502b8, 0x00000000}},  //   cevo_, _scim, епод,\n  { {0x68fb0ebb, 0x63bb0103, 0x68e901a3, 0x00000000}},  //   _knud, suun, _kaed,\n  { {0xaacf0201, 0x628a0549, 0x4acf0309, 0x00000000}},  //   स्तक, _effo, स्तव,\n  { {0x7c3b0ebc, 0x653a0049, 0xdb040068, 0x00000000}},  //   _žurn, _צענד, ssié,\n  { {0x63a9014a, 0xfd1f0026, 0x68e90240, 0x00000000}},  //   msen, _alì_, _laed,\n  { {0x63a905b7, 0x52390049, 0x60dd0ebd, 0x00000000}},  //   lsen, _מײַנ, besm,\n  { {0xfce3005c, 0x60c40ebe, 0x693c0027, 0x00000000}},  //   лосо, _ucim, rček,\n  { {0x63a90322, 0x6b4b0010, 0xab6602b8, 0x00000000}},  // [17a0] nsen, lügy, евал,\n  { {0x3ea1001f, 0x63a900b0, 0x64590ebf, 0x00000000}},  //   _geht_, isen, _mywi,\n  { {0x81cd0055, 0x26dc0197, 0x13d80044, 0x00000000}},  //   রিক_, vevo_, তিয়,\n  { {0xc7c60680, 0x63a9021e, 0x80de0044, 0x00000000}},  //   ески, ksen, যাক্,\n  { {0x26dc0ec0, 0x63a90030, 0xb05b0039, 0x00000000}},  //   tevo_, jsen, lfär,\n  { {0x63a90030, 0x290d000a, 0x81d60044, 0x00000000}},  //   dsen, _eoea_, সিত_,\n  { {0xd91006c6, 0x78a00059, 0xb05b04ce, 0x00000000}},  //   _پیش_, _temv, nfär,\n  { {0x44f40098, 0x68fb00ea, 0x68e9096d, 0x00000000}},  //   тпис, _gnud, _gaed,\n  { {0x6459047a, 0x26dc0197, 0x63a90bce, 0x00000000}},  //   _cywi, pevo_, gsen,\n  { {0x212004cb, 0x2f14010e, 0x6723012d, 0x00000000}},  //   _alih_, _kägu_, chnj,\n  { {0x22580030, 0x60dd006c, 0x75d3006d, 0x00000000}},  //   ærk_, tesm, _ميلا,\n  { {0x2d81010f, 0x3ea101a2, 0x63a904fb, 0x00000000}},  //   _ruhe_, _seht_, bsen,\n  { {0x60dd0ec1, 0x64590016, 0x2d810ec2, 0x00000000}},  //   resm, _gywi, _suhe_,\n  { {0xb05b03a2, 0x60dd010e, 0x2d810052, 0x00000000}},  //   ffär, sesm, _puhe_,\n  { {0xa01b0010, 0x1df80a78, 0x777a002d, 0x00000000}},  //   nböz, неры_, _mitx,\n  { {0x81cd0055, 0xbcfb00f4, 0x67230ec3, 0x00000000}},  //   রিখ_, _thém, zhnj,\n  { {0x80de0044, 0xfe7000a1, 0x7ff70025, 0x00000000}},  // [17b0] যাখ্, لدہ_, _أسعا,\n  { {0x68fb00ea, 0x291f0048, 0x777a0032, 0x00000000}},  //   _snud, _slua_, _nitx,\n  { {0xc33300b6, 0x68e90253, 0x290d00e0, 0x00000000}},  //   נוע_, _paed, _poea_,\n  { {0xa3e00164, 0x9f520173, 0x63a90095, 0x00000000}},  //   दबा_, _aryè_, ysen,\n  { {0x67230065, 0x777a002d, 0x25710ec4, 0x00000000}},  //   thnj, _bitx, _ušli_,\n  { {0x45d50893, 0x7bcd0ec5, 0x63a905d5, 0x00000000}},  //   вцит, mtau, vsen,\n  { {0x7d0f0010, 0xb8950025, 0x7bcd0ec6, 0x00000000}},  //   _kocs, _للأع, ltau,\n  { {0x63a90004, 0x26c50061, 0x67230ec7, 0x00000000}},  //   tsen, _wclo_, shnj,\n  { {0x777a0ec8, 0x7bcd01a3, 0x63a901a2, 0x00000000}},  //   _fitx, ntau, usen,\n  { {0x63a90ec9, 0x765a0065, 0x7d0f0eca, 0x00000000}},  //   rsen, _fyty, _locs,\n  { {0x63a903a1, 0x64590036, 0x7bcd00b0, 0x00000000}},  //   ssen, _wywi, htau,\n  { {0x63a90ecb, 0x7bcd01a2, 0x00000000, 0x00000000}},  //   psen, ktau,   ,\n  { {0x61e10016, 0xa3e50309, 0x81bc0089, 0x00000000}},  //   swll, _पनि_, nzēj,\n  { {0x7bcd08db, 0x81bc0089, 0xb4640088, 0x00000000}},  //   dtau, izēj, _скіл,\n  { {0xed5a0057, 0x2d9e0e16, 0xdca60088, 0x00000000}},  //   дов_, ète_, кави,\n  { {0xed4301fb, 0xb05b04ce, 0x7bcd01a2, 0x00000000}},  //   ансп, rfär, ftau,\n  { {0xed5701f9, 0x75ca005f, 0x7d0f01ee, 0x00000000}},  // [17c0] тот_, _vəzi, _docs,\n  { {0x81bc001e, 0x693c0ecc, 0x387f002d, 0x00000000}},  //   dzēj, nčev, _agur_,\n  { {0x18a60ecd, 0x7d0f0ece, 0xb05b04ec, 0x00000000}},  //   ваем, _focs, ngän,\n  { {0xdcfe0ecf, 0x672103e1, 0xe9950014, 0x00000000}},  //   _kupč, _allj, اهنگ,\n  { {0x765a00b0, 0xc0ad0049, 0x2ba9006e, 0x00000000}},  //   _syty, ליאָ, _चौपा,\n  { {0xcf93007b, 0x693c02aa, 0x387f0032, 0x00000000}},  //   סטו_, jčev, _egur_,\n  { {0x644e006b, 0x19b9007c, 0xe9a3003b, 0x00000000}},  //   əbiy, _путь_, _васп,\n  { {0x291c0089, 0xaa43003b, 0x00000000, 0x00000000}},  //   īvas_, _тесл,   ,\n  { {0xf36600e2, 0x765a00b4, 0x00000000, 0x00000000}},  //   ктон, _wyty,   ,\n  { {0xd7640014, 0x81d60044, 0x764d0010, 0x00000000}},  //   _صنای, সিস_, ényé,\n  { {0x6913011f, 0xaad4013d, 0x3abb0104, 0x00000000}},  //   _içer, ठ्यक, ומינ,\n  { {0x7bcd0006, 0x00000000, 0x00000000, 0x00000000}},  //   ytau,   ,   ,\n  { {0x693c050f, 0xc0580088, 0x7d0f00e5, 0x00000000}},  //   bčev, вір_, _rocs,\n  { {0x82330123, 0x81cd0044, 0xdb23014a, 0x00000000}},  //   اریا, রিজ_, örün,\n  { {0x75220095, 0xd37b08cd, 0x00000000, 0x00000000}},  //   _kloz, _קרוט,   ,\n  { {0x7bcd00b0, 0xdb21014a, 0x629a0ed0, 0x00000000}},  //   ttau, ştür, lbto,\n  { {0x2d580057, 0x8aa703f3, 0x21390048, 0x00000000}},  // [17d0] тить_, вред, mish_,\n  { {0xd5a4009c, 0xdd11001e, 0x7bcd0ed1, 0x00000000}},  //   _وہ_, _kļūd, rtau,\n  { {0x7bcd0ed2, 0x9f49014a, 0x7d0f0ed3, 0x00000000}},  //   stau, _araç_, _tocs,\n  { {0x213900ab, 0x7bcd0ed4, 0x9f4900d4, 0x00000000}},  //   nish_, ptau, _braç_,\n  { {0x2ca9006c, 0x75ca006b, 0x8c67007e, 0x00000000}},  //   maad_, _məzu, _штод,\n  { {0x3669005e, 0xd2460379, 0x21390350, 0x00000000}},  //   нало_, _هن_, hish_,\n  { {0x21390ed5, 0xa4930167, 0x44290142, 0x00000000}},  //   kish_, لیات, _ťa_,\n  { {0xdb0d00c4, 0x75220ed6, 0xa3e908f3, 0x00000000}},  //   fraç, _cloz, едиа_,\n  { {0xbcfb002a, 0xdb0d0181, 0x291d0ed7, 0x00000000}},  //   _chéi, graç, mkwa_,\n  { {0x2ca900d9, 0xbcfb0048, 0xb05b06d3, 0x00000000}},  //   haad_, _dhéi, tgän,\n  { {0xc6920476, 0x693c0ed8, 0x10a604dd, 0x00000000}},  //   _האב_, rčev, линн,\n  { {0xbcfb002a, 0xdb0d0181, 0xb05b0788, 0x00000000}},  //   _fhéi, braç, rgän,\n  { {0x693c0ed9, 0x2ca9018f, 0xbcfb0048, 0x00000000}},  //   mčet, daad_, _ghéi,\n  { {0x248d0059, 0xf5390027, 0x343a0049, 0x00000000}},  //   lcem_, liť_, _אײנע,\n  { {0x63bb0089, 0xa30a00a1, 0x2f140039, 0x00000000}},  //   lrun, _سروے_, _sägs_,\n  { {0x693c0a14, 0xf5390027, 0x2139012d, 0x00000000}},  //   nčet, niť_, cish_,\n  { {0xb7be0055, 0x2d93002d, 0x61260325, 0x00000000}},  // [17e0] _ইন্ট, _etxe_, _cóle,\n  { {0x81d60044, 0x291d01c3, 0x4f9b01ce, 0x00000000}},  //   সির_, ekwa_, _רביצ,\n  { {0x63bb001f, 0xeb75007e, 0x248d012d, 0x00000000}},  //   hrun, рытэ, kcem_,\n  { {0x248d00ca, 0xb95a0025, 0x63a40180, 0x00000000}},  //   jcem_, رجاء_, _çing,\n  { {0x6d440036, 0xf5390027, 0x645d006c, 0x00000000}},  //   mnia, diť_, üsil,\n  { {0x6d440eda, 0x7522037e, 0x63bb0edb, 0x00000000}},  //   lnia, _sloz, drun,\n  { {0x63bb001f, 0x6d44010e, 0xbcfb0048, 0x00000000}},  //   erun, onia, _shéi,\n  { {0x6d4403b6, 0xdb0d0181, 0x69dc00f8, 0x00000000}},  //   nnia, traç, _ipre,\n  { {0xd90d026c, 0x21390edc, 0x6d440904, 0x00000000}},  //   _تین_, vish_, inia,\n  { {0x7c3b01ee, 0xdb0d00c4, 0x51f80088, 0x00000000}},  //   _žurk, rraç, вною_,\n  { {0x2d9805fa, 0x21390edd, 0xf5390027, 0x00000000}},  //   jpre_, tish_, biť_,\n  { {0x63bb0039, 0x7aee01c5, 0x69dc0ede, 0x00000000}},  //   brun, _labt, _mpre,\n  { {0x6d440871, 0x29370049, 0x2139071e, 0x00000000}},  //   dnia, ראכן_, rish_,\n  { {0x69dc0edf, 0xa2940ee0, 0x6d440036, 0x00000000}},  //   _opre, _такі, enia,\n  { {0x6d440016, 0x693c01ee, 0x65600051, 0x00000000}},  //   fnia, nčes, olmh,\n  { {0x63a20ee1, 0x6d440a6d, 0x5c070ee2, 0x00000000}},  //   _kwon, gnia, ляза,\n  { {0x69dc02d5, 0x2ca90ee3, 0x81c60044, 0x00000000}},  // [17f0] _apre, raad_, _উনি_,\n  { {0x63a20020, 0x6d44006c, 0xf5390027, 0x00000000}},  //   _mwon, ania, ziť_,\n  { {0x0cd50364, 0x6d560ee4, 0x2ca900ea, 0x00000000}},  //   _коню, boya, paad_,\n  { {0x6d440024, 0x63a2000a, 0x6d56004a, 0x00000000}},  //   cnia, _owon, coya,\n  { {0xf5390027, 0x248d0340, 0x69dc0ee5, 0x00000000}},  //   viť_, vcem_, _epre,\n  { {0x7d0d0004, 0xc5f90055, 0x7bdd0ee6, 0x00000000}},  //   ljas, _অথবা_, _ipsu,\n  { {0x63a201aa, 0x80ab0044, 0xceb400a0, 0x00000000}},  //   _awon, _কান্, ציק_,\n  { {0x63bb001a, 0x7d0d0ee7, 0x63a20a5f, 0x00000000}},  //   trun, njas, _bwon,\n  { {0x7c2d000d, 0xf5760054, 0x693c016c, 0x00000000}},  //   nzar, جميع_, rčet,\n  { {0xc6a401f9, 0x63bb0668, 0x6d440006, 0x00000000}},  //   _грци, rrun, znia,\n  { {0x6d44018e, 0x6d560ee8, 0x7d0d000c, 0x00000000}},  //   ynia, yoya, kjas,\n  { {0x63bb0ee9, 0x7bdd0eea, 0x63a201aa, 0x00000000}},  //   prun, _opsu, _fwon,\n  { {0xe28e012b, 0x63a20173, 0xa6e80044, 0x00000000}},  //   _ма_, _gwon, পারট,\n  { {0x6d440eeb, 0x08760049, 0x82350014, 0x00000000}},  //   wnia, יערט_, _پرتا,\n  { {0x442d048e, 0x7bdd0c47, 0xada60eec, 0x00000000}},  //   lze_, _apsu, рабл,\n  { {0xef860265, 0x7aee0169, 0x27e60b69, 0x00000000}},  //   _клип, _sabt, ywon_,\n\n  { {0x69dc01d9, 0x2d980eed, 0xafe60726, 0x00000000}},  // [1800] _spre, spre_, _топл,\n  { {0x442d0061, 0x69dc0eee, 0x2561000c, 0x00000000}},  //   ize_, _ppre, fólk_,\n  { {0x09e60242, 0x2d8501dc, 0x7d0d016c, 0x00000000}},  //   роен, ílet_, bjas,\n  { {0xe3a70d3a, 0x27e601aa, 0x753b0020, 0x00000000}},  //   _ور_, twon_, jiuz,\n  { {0x442d00b5, 0x06af0044, 0x7aee0030, 0x00000000}},  //   jze_, চ্ছি, _tabt,\n  { {0x442d0eef, 0x69960088, 0x501b0104, 0x00000000}},  //   dze_, _врах, כונו,\n  { {0xe1e70647, 0x69dc0142, 0xdce4016c, 0x00000000}},  //   _بس_, _upre, gmić,\n  { {0x6283027b, 0x63a201aa, 0xa96a005e, 0x00000000}},  //   _agno, _pwon, _риба_,\n  { {0x39460211, 0x43060088, 0x00000000, 0x00000000}},  //   mnos_, аїна,   ,\n  { {0x7d0d016c, 0xf36600ec, 0x394605a0, 0x00000000}},  //   zjas, јтин, lnos_,\n  { {0x79800cd1, 0xd48f003b, 0x7c2d051b, 0x00000000}},  //   _kimw, _мр_, zzar,\n  { {0x7529000b, 0x63a201aa, 0x39460052, 0x00000000}},  //   chez, _twon, nnos_,\n  { {0x442d0046, 0x394600c4, 0x63a20020, 0x00000000}},  //   cze_, inos_, _uwon,\n  { {0xdced0161, 0x39460016, 0x6d48009d, 0x00000000}},  //   rmač, hnos_, édan,\n  { {0xeca700e1, 0x7d0d021a, 0x3f84000c, 0x00000000}},  //   ијан, tjas, ímur_,\n  { {0x7c2d0ef0, 0xc27b071c, 0x39460010, 0x00000000}},  //   tzar, _ברוי, jnos_,\n  { {0x29e8000d, 0x67da0089, 0x60cd0085, 0x00000000}},  // [1810] _aşa_, nājā, _icam,\n  { {0x7c2d0197, 0x3946008f, 0x6aa70065, 0x00000000}},  //   rzar, enos_, _qejf,\n  { {0x442d0ef1, 0x79800009, 0x7c2d0ef2, 0x00000000}},  //   zze_, _bimw, szar,\n  { {0x39460ef3, 0x645d006c, 0x59c90061, 0x00000000}},  //   gnos_, üsik, ांबर,\n  { {0x6126009f, 0x79800173, 0x6d5d020e, 0x00000000}},  //   _jóla, _dimw, _iksa,\n  { {0x39460489, 0x66e5007e, 0x8698005e, 0x00000000}},  //   anos_, сока, атът_,\n  { {0x60cd03fd, 0x3f890ef4, 0x7afa000c, 0x00000000}},  //   _ocam, _luau_, _ótta,\n  { {0x442d0474, 0x7ae50368, 0x39460ef5, 0x00000000}},  //   tze_, leht, cnos_,\n  { {0xc952019b, 0x442d00b5, 0xf794008b, 0x00000000}},  //   _זמן_, uze_, _матэ,\n  { {0x442d0667, 0x60cd0919, 0x79800dfc, 0x00000000}},  //   rze_, _acam, _zimw,\n  { {0x442d0ef6, 0x6d5d0ef7, 0x69c50009, 0x00000000}},  //   sze_, _oksa, nuhe,\n  { {0x2d68010f, 0x7ae50065, 0x2561000c, 0x00000000}},  //   eßen_, heht, kóli_,\n  { {0x249f0ab2, 0x78a900bb, 0x69c501a2, 0x00000000}},  //   mbum_, _meev, huhe,\n  { {0x539a00b6, 0x61260489, 0x6d5d014a, 0x00000000}},  //   _עיצו, _dóla, _aksa,\n  { {0xe1640014, 0x6d5d0022, 0x853c0006, 0x00000000}},  //   _وضعی, _bksa, _kvėp,\n  { {0x4c8606b6, 0x61360d90, 0x61fc0c31, 0x00000000}},  //   слав, kšli, ærle,\n  { {0x79800009, 0xf3880011, 0xdb0400c4, 0x00000000}},  // [1820] _rimw, _lợn_, nsiç,\n  { {0x6ac60025, 0xdb040181, 0xf1db013d, 0x00000000}},  //   إقام, isiç, _बहान,\n  { {0x1efb007b, 0x27ed0173, 0x69c50ef8, 0x00000000}},  //   _עלטע, _asen_, guhe,\n  { {0x984a0888, 0x1d0a0131, 0xdb040e65, 0x00000000}},  //   ляла_, _семи_, rriñ,\n  { {0x39460977, 0xaab80167, 0x27ed0026, 0x00000000}},  //   rnos_, _نگار_, _csen_,\n  { {0x254c00b9, 0xe9aa0014, 0x3946007f, 0x00000000}},  //   děla_, _مدرن_, snos_,\n  { {0x2d820020, 0x79800ef9, 0xa91d0089, 0x00000000}},  //   _kike_, _timw, _siže,\n  { {0x7786007c, 0x2ca00007, 0x81bf0044, 0x00000000}},  //   _глаз, nbid_, ুবা_,\n  { {0x2d8200ab, 0xccf300b3, 0xd37a0478, 0x00000000}},  //   _mike_, לכה_, лчо_,\n  { {0x2d820038, 0xaaa80309, 0x60cd0efa, 0x00000000}},  //   _like_, गरिक, _scam,\n  { {0xd5b901fb, 0x6126000c, 0x71270025, 0x00000000}},  //   _всі_, _sóla, مرحل,\n  { {0x81bc001e, 0x59c90164, 0xa15901e1, 0x00000000}},  //   dzēt, ांतर, раму_,\n  { {0xa2d3006e, 0xd8d70049, 0x2ca00146, 0x00000000}},  //   _बॉक्, זוכט_, dbid_,\n  { {0x4374007a, 0x2d6801a2, 0x2cad016c, 0x00000000}},  //   _بهتر, ußen_, _žed_,\n  { {0xd047005f, 0xe1890011, 0x9cf505b8, 0x00000000}},  //   _əməl, _hẳn_, озві,\n  { {0x61440545, 0x2d820023, 0x00000000, 0x00000000}},  //   _неја, _cike_,   ,\n  { {0x78a90951, 0x2d820065, 0xdb04000c, 0x00000000}},  // [1830] _reev, _dike_, trið,\n  { {0x333e002b, 0x2d820efb, 0xbcfb0bf2, 0x00000000}},  //   nitx_, _eike_, _chér,\n  { {0x7ae50efc, 0x78a90943, 0x13e10044, 0x00000000}},  //   reht, _peev, বিয়,\n  { {0x2ca00061, 0x69c50efd, 0xf3880082, 0x00000000}},  //   cbid_, ruhe, _rợn_,\n  { {0xf7710379, 0x78a9010e, 0x272b00ea, 0x00000000}},  //   وات_, _veev, _løne_,\n  { {0x69c500b0, 0x2d82016c, 0x25a50016, 0x00000000}},  //   puhe, _zike_, _pwll_,\n  { {0x78a9006c, 0x212904cb, 0xf59201b7, 0x00000000}},  //   _teev, _olah_, ولوج,\n  { {0x58d4007c, 0x321e0036, 0x254c00b9, 0x00000000}},  //   _ност, dyty_, těla_,\n  { {0x9817007a, 0x395f002d, 0x27ed0efe, 0x00000000}},  //   _ابزا, _ikus_, _usen_,\n  { {0xdb16021e, 0x21290145, 0x15ab02dc, 0x00000000}},  //   styö, _alah_, _бъди_,\n  { {0x21290eff, 0x9f49010f, 0x2cab0253, 0x00000000}},  //   _blah_, _spaß_, _oecd_,\n  { {0x2ca00009, 0x6f050082, 0x00000000, 0x00000000}},  //   xbid_, _anhc,   ,\n  { {0x2d820056, 0x6f170f00, 0xd24e0014, 0x00000000}},  //   _rike_, _boxc, فنی_,\n  { {0xe2990b21, 0x2d820173, 0x321e0f01, 0x00000000}},  //   _так_, _sike_, byty_,\n  { {0xad3a0088, 0x2ca00d12, 0x395f02db, 0x00000000}},  //   ачає_, tbid_, _okus_,\n  { {0x8d66007e, 0xc5f200b3, 0x4d660451, 0x00000000}},  //   івае, ודל_, ікав,\n  { {0x6f170f02, 0xcb05013d, 0x4aaa0517, 0x00000000}},  // [1840] _foxc, रांड_, икан_,\n  { {0x5ec10044, 0x2cb90009, 0x00000000, 0x00000000}},  //   শ্বে, _edsd_,   ,\n  { {0xa3a902fb, 0x2d82000a, 0x7f5c009d, 0x00000000}},  //   गीत_, _tike_, morq,\n  { {0x6d41009d, 0x7f5c0026, 0xdd0f0095, 0x00000000}},  //   élat, lorq, mışs,\n  { {0x7d060006, 0xbcfb00f4, 0x321e0036, 0x00000000}},  //   _inks, _thér, zyty_,\n  { {0xab2a012b, 0xd5ba0517, 0x394d0f03, 0x00000000}},  //   _тога_, аси_, _ejes_,\n  { {0x386d028d, 0x76a90088, 0xe1890082, 0x00000000}},  //   _ezer_, стів_, _sẳn_,\n  { {0x89d700a1, 0x00000000, 0x00000000, 0x00000000}},  //   _گوہر_,   ,   ,\n  { {0x73fa0055, 0x78a20f04, 0x25a90091, 0x00000000}},  //   েন্ট_, mbov, ćala_,\n  { {0x5edf0044, 0x1fd00044, 0xd370006d, 0x00000000}},  //   _ফোনে, িবাস, عهد_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x69c30059, 0x7bd60058, 0x254c013e, 0x00000000}},  //   šneg, ktyu, mělo_,\n  { {0xb97b00a3, 0xf8b3034e, 0x357300a1, 0x00000000}},  //   ינטי, ושר_, _تھوڑ,\n  { {0x7d06010a, 0xa91d0087, 0x25450089, 0x00000000}},  //   _anks, _miža, vēli_,\n  { {0xdef8008b, 0x00000000, 0x00000000, 0x00000000}},  //   цыя_,   ,   ,\n  { {0x21290093, 0x25450089, 0x69c100ea, 0x00000000}},  //   _ulah_, tēli_, _ålei,\n  { {0xb7c50044, 0xa91d00ca, 0x00000000, 0x00000000}},  // [1850] _এন্ট, _niža,   ,\n  { {0xdea100a1, 0x6f0500e7, 0x99d70426, 0x00000000}},  //   _سیری, _unhc, قتصا,\n  { {0x386d0c59, 0x394d0023, 0x00000000, 0x00000000}},  //   _szer_, _pjes_,   ,\n  { {0xdb0d0051, 0x00000000, 0x00000000, 0x00000000}},  //   msaí,   ,   ,\n  { {0x07a505f6, 0x3d08013d, 0x00000000, 0x00000000}},  //   чалн, हारे_,   ,\n  { {0x3707007c, 0x00000000, 0x00000000, 0x00000000}},  //   ючев,   ,   ,\n  { {0x394d0f05, 0xf6250152, 0x7af50288, 0x00000000}},  //   _tjes_, ядко, _iazt,\n  { {0x395f037e, 0x7af50f06, 0x00000000, 0x00000000}},  //   _ukus_, _hazt,   ,\n  { {0x59c90061, 0x7f5c004a, 0x3a2100e0, 0x00000000}},  //   ांवर, yorq, lyhp_,\n  { {0xfbd2019b, 0x395d00ab, 0x27ff002d, 0x00000000}},  //   עתי_, lows_, _irun_,\n  { {0x644d010a, 0x69d7002d, 0x4add0204, 0x00000000}},  //   _žaid, ntxe, न्यव,\n  { {0x70c60061, 0x395d00e0, 0x7af50032, 0x00000000}},  //   वलेल, nows_, _lazt,\n  { {0x4f96007e, 0x3eba0022, 0x7f5c0f07, 0x00000000}},  //   ярну, _pdpt_, torq,\n  { {0x2d960d54, 0x539a009b, 0x4ac70204, 0x00000000}},  //   зрас, _היסו, _लागव,\n  { {0x80ab0055, 0x78bb0091, 0x6126000c, 0x00000000}},  //   _কার্, _oduv, _hólm,\n  { {0x80da0055, 0x6d4f00f6, 0x7af50288, 0x00000000}},  //   _বোর্, _cjca, _aazt,\n  { {0x7af5002d, 0x3b180f08, 0xe8df0011, 0x00000000}},  // [1860] _bazt, _porq_, _ngựa_,\n  { {0x7bd600e0, 0xa91d0087, 0x00000000, 0x00000000}},  //   rtyu, _riža,   ,\n  { {0x273000ad, 0xe9da0f09, 0xdb0d0048, 0x00000000}},  //   _hàng_, ске_, csaí,\n  { {0x27ff0056, 0xd9100167, 0xdb040051, 0x00000000}},  //   _brun_, خیر_, nsiú,\n  { {0x78a20bca, 0xdb040051, 0x4c83005e, 0x00000000}},  //   rbov, isiú, _плюв,\n  { {0x7af5022b, 0x27300011, 0x7bc40129, 0x00000000}},  //   _gazt, _màng_, mriu,\n  { {0x09e30057, 0x2730001d, 0xa5d70025, 0x00000000}},  //   _порн, _làng_, كبير_,\n  { {0x5398005e, 0x00000000, 0x00000000, 0x00000000}},  //   овия_,   ,   ,\n  { {0x2730001d, 0xf4930439, 0x27ff01e5, 0x00000000}},  //   _nàng_, رشيد, _grun_,\n  { {0x59d003d7, 0x798e000b, 0xaacc0201, 0x00000000}},  //   _हमार, _kubw, ालिक,\n  { {0xc4860920, 0x20000089, 0x27e0002b, 0x00000000}},  //   _елек, _arii_, ħinu_,\n  { {0x27300011, 0x798e0009, 0x92ac0044, 0x00000000}},  //   _bàng_, _mubw, গলে_,\n  { {0x2730001d, 0x64a3003b, 0x63ae013e, 0x00000000}},  //   _càng_, _чача, áhně,\n  { {0x27300011, 0x7bc40006, 0x3f8501e5, 0x00000000}},  //   _dàng_, driu, ölu_,\n  { {0x7bc40004, 0x798e0009, 0x7af50059, 0x00000000}},  //   eriu, _nubw, _razt,\n  { {0x20000022, 0x8d7401fa, 0x7bc40026, 0x00000000}},  //   _frii_, فاقا, friu,\n  { {0xc15800b6, 0x31ae0044, 0x70550014, 0x00000000}},  // [1870] _משהו_, _কমিশ, _زندا,\n  { {0x60dd01a2, 0x00000000, 0x00000000, 0x00000000}},  //   lfsm,   ,   ,\n  { {0x79a4007c, 0xa2cf013d, 0x69c40316, 0x00000000}},  //   ерче, _दास्, ांगी,\n  { {0x69d70032, 0x7bc40133, 0x29d500ea, 0x00000000}},  //   rtxe, briu, råa_,\n  { {0x7bc404bd, 0x6d4d006c, 0x395d0133, 0x00000000}},  //   criu, mnaa, rows_,\n  { {0x656200e0, 0x6d4d00bb, 0x0f1b0061, 0x00000000}},  //   _akoh, lnaa, _नकोस_,\n  { {0x6d4d006c, 0x00000000, 0x00000000, 0x00000000}},  //   onaa,   ,   ,\n  { {0x6d4d00b5, 0x92ac0044, 0x62980f0a, 0x00000000}},  //   nnaa, গলো_, _afvo,\n  { {0x47d50054, 0x6ece001c, 0x23d4007e, 0x00000000}},  //   _زيار, _तालु, нцэр,\n  { {0x27300011, 0x68eb00bb, 0x20fa0082, 0x00000000}},  //   _ràng_, legd, _ỏi_,\n  { {0x69c50016, 0x27300011, 0x6d4d0f0b, 0x00000000}},  //   nrhe, _sàng_, knaa,\n  { {0xd7d103d7, 0xe7d1006e, 0x7bc40006, 0x00000000}},  //   _समाच, _समाप, yriu,\n  { {0x69c5010f, 0x316c0089, 0x00000000, 0x00000000}},  //   hrhe, ēdz_,   ,\n  { {0x2730001d, 0x6569068f, 0x6d4d0128, 0x00000000}},  //   _vàng_, lleh, enaa,\n  { {0xa3a9006e, 0xa91d0087, 0x00000000, 0x00000000}},  //   गीर_, _rižn,   ,\n  { {0x6d4d0f0c, 0x27300011, 0x65690cba, 0x00000000}},  //   gnaa, _tàng_, nleh,\n  { {0x6b8700b5, 0x799c0016, 0x8c430478, 0x00000000}},  // [1880] _bijg, _strw, вете,\n  { {0xdcfd0089, 0x2d57002b, 0x7bc40f0d, 0x00000000}},  //   _visā, eħed_, rriu,\n  { {0xfe720025, 0x0ed30061, 0x20050089, 0x00000000}},  //   _جدة_, _तातड, ālie_,\n  { {0x2d57002b, 0xeb9f0637, 0x7bc4001a, 0x00000000}},  //   għed_, _brød_, priu,\n  { {0x69c50250, 0xeb9a004d, 0x9f4900f6, 0x00000000}},  //   arhe, _фиг_, _graó_,\n  { {0x81e40044, 0x1de20061, 0xa91d00ca, 0x00000000}},  //   নিত_, _पहात, _fižo,\n  { {0xa3b0013d, 0xb05b0210, 0xdce40062, 0x00000000}},  //   टीन_, ngär, hlič,\n  { {0xdce40059, 0x6ba50039, 0x65690010, 0x00000000}},  //   klič, _åtgä, gleh,\n  { {0x7c240f0e, 0xd8d7007b, 0xa3a9001c, 0x00000000}},  //   nyir, _קומט_, गील_,\n  { {0x6126009f, 0xdce40062, 0x52140242, 0x00000000}},  //   _fólk, dlič, едот,\n  { {0x7c240009, 0x65690009, 0x75ca013f, 0x00000000}},  //   hyir, bleh, _ləzz,\n  { {0xf388001d, 0x65690f0f, 0x00000000, 0x00000000}},  //   _lợi_, cleh,   ,\n  { {0x60dd009f, 0x28d1013d, 0x61ed0107, 0x00000000}},  //   rfsm, _हासि, _ćale,\n  { {0x44240036, 0x636f05b7, 0x272b00ea, 0x00000000}},  //   mym_, lønn, _lønn_,\n  { {0x1df80147, 0x44240462, 0x200d001a, 0x00000000}},  //   меры_, lym_, ţei_,\n  { {0xdce4037e, 0xc4450014, 0x5cc402ea, 0x00000000}},  //   blič, _آیین_, ксуз,\n  { {0x44240046, 0x6d4d02ae, 0x4ea7012c, 0x00000000}},  // [1890] nym_, rnaa, _орна,\n  { {0x65600051, 0xdb1601aa, 0x6d4d0250, 0x00000000}},  //   homh, nsyè, snaa,\n  { {0x65690943, 0x637400f6, 0x69c50052, 0x00000000}},  //   yleh, càne, urhe,\n  { {0x7c240009, 0x69c50f10, 0x636f0056, 0x00000000}},  //   byir, rrhe, jønn,\n  { {0xdb1601aa, 0x7c240009, 0x6b8700bb, 0x00000000}},  //   ksyè, cyir, _tijg,\n  { {0x7d1d0047, 0x4424018e, 0x68eb01d6, 0x00000000}},  //   _hoss, dym_, segd,\n  { {0xdce400ee, 0xf3880011, 0x7d1d0f11, 0x00000000}},  //   zlič, _gợi_, _koss,\n  { {0x7d1d021e, 0x00000000, 0x00000000, 0x00000000}},  //   _joss,   ,   ,\n  { {0x7d1d0129, 0x65690eaa, 0x13e6007c, 0x00000000}},  //   _moss, rleh, емый_,\n  { {0x6569003c, 0xdce4050f, 0x7d1d0f12, 0x00000000}},  //   sleh, vlič, _loss,\n  { {0xcb12019b, 0x216a005e, 0x6569041d, 0x00000000}},  //   אלי_, зини_, pleh,\n  { {0x7d1d02d5, 0xdce40059, 0x44240036, 0x00000000}},  //   _noss, tlič, bym_,\n  { {0xb4270151, 0x44240036, 0x44270076, 0x00000000}},  //   _تعاو, cym_, _تراف,\n  { {0x79890343, 0x75290047, 0x7bcd006c, 0x00000000}},  //   _liew, lkez, duau,\n  { {0xc6920452, 0xdd920151, 0xfce60f13, 0x00000000}},  //   ראל_, اور_, ново,\n  { {0x7d1d00d4, 0x79890046, 0x5ec10044, 0x00000000}},  //   _coss, _niew, শ্লে,\n  { {0x7d1d028c, 0xf3880011, 0x7ff60025, 0x00000000}},  // [18a0] _doss, _sợi_, _أسبا,\n  { {0x80d60061, 0x00000000, 0x00000000, 0x00000000}},  //   _भाडे,   ,   ,\n  { {0x7d1d0d87, 0x3f92000b, 0x44240036, 0x00000000}},  //   _foss, _huyu_, zym_,\n  { {0x69c3008e, 0x59d20309, 0x6f1e0544, 0x00000000}},  //   ánea, दंबर, _hopc,\n  { {0x6f1e07e4, 0x798901d6, 0xa7fd0010, 0x00000000}},  //   _kopc, _diew, _szűr,\n  { {0x57f3012b, 0xa84701b7, 0x254c00b9, 0x00000000}},  //   упшт, علوم_, měli_,\n  { {0x44240046, 0x7d1d0697, 0x61260b33, 0x00000000}},  //   wym_, _yoss, _eóli,\n  { {0x89db0104, 0x44240832, 0x61260f14, 0x00000000}},  //   _מחלי, tym_, _fóli,\n  { {0x39460f15, 0x84970025, 0x00000000, 0x00000000}},  //   mios_, رئيس_,   ,\n  { {0x39460006, 0x65600378, 0x81e40044, 0x00000000}},  //   lios_, somh, নিস_,\n  { {0x041e0055, 0xa1590088, 0x53c20316, 0x00000000}},  //   _বেশী_, дану_, _शिवश,\n  { {0x39460f16, 0x63740129, 0x2a6a0095, 0x00000000}},  //   nios_, fànc, _mybb_,\n  { {0x7d1d0703, 0xe803007d, 0xc54200a1, 0x00000000}},  //   _ross, लिया_, _لڑکی,\n  { {0x7d1d003d, 0x6f1e0a16, 0xdefb007e, 0x00000000}},  //   _soss, _copc, чым_,\n  { {0x7d1d0f17, 0x3946010a, 0xdb0d000c, 0x00000000}},  //   _poss, kios_, drað,\n  { {0x9d1804f9, 0xe7f10061, 0x00000000, 0x00000000}},  //   ност_, _आईला_,   ,\n  { {0x39460977, 0xdb0d0e4f, 0x7d1d0181, 0x00000000}},  // [18b0] dios_, nsaç, _voss,\n  { {0xdb0d0211, 0x798903b2, 0x00000000, 0x00000000}},  //   trañ, _siew,   ,\n  { {0x7d1d0ba0, 0xa2d80201, 0x61260f18, 0x00000000}},  //   _toss, _मान्, _sóli,\n  { {0x39460181, 0x612605a3, 0x3f9200f6, 0x00000000}},  //   gios_, _póli, _yuyu_,\n  { {0x79890038, 0x2ca90277, 0x7c6709b9, 0x00000000}},  //   _view, mbad_, _ساحل,\n  { {0x3669003b, 0x2d8b0211, 0xdcef0089, 0x00000000}},  //   мало_, _hice_, _ticē,\n  { {0x75290047, 0x39460325, 0x56920ab7, 0x00000000}},  //   tkez, bios_, шајт,\n  { {0x39460f19, 0x2ca90e42, 0x73e50216, 0x00000000}},  //   cios_, nbad_, воиз,\n  { {0x80a202fb, 0x75290f1a, 0x2d9305f2, 0x00000000}},  //   _क्षे, rkez, _luxe_,\n  { {0x3eb30038, 0x2d8b0091, 0x69ca0181, 0x00000000}},  //   _next_, _lice_, áfeg,\n  { {0x2d8b0f1b, 0x68fb0f1c, 0x3f92005a, 0x00000000}},  //   _oice_, _kaud, _suyu_,\n  { {0x61460264, 0x2d8b0549, 0x6f1e0f1d, 0x00000000}},  //   тема, _nice_, _sopc,\n  { {0x20040f1e, 0x68fb0a64, 0x2ca90f1f, 0x00000000}},  //   ími_, _maud, dbad_,\n  { {0x2d8b0051, 0x39460914, 0x80a2006e, 0x00000000}},  //   _aice_, zios_, _क्रे,\n  { {0x63bb01e5, 0x2d8b01ee, 0x63a401d5, 0x00000000}},  //   lsun, _bice_, _ħini,\n  { {0x68fb0394, 0x291f000d, 0xf2880049, 0x00000000}},  //   _naud, _noua_, _אָפֿ,\n  { {0x6f1e003b, 0x39460211, 0x63bb0f20, 0x00000000}},  // [18c0] _topc, vios_, nsun,\n  { {0x5fb700b6, 0x81e40044, 0x63bb010f, 0x00000000}},  //   _שהיא_, নির_, isun,\n  { {0x39460211, 0x68fb0d90, 0x3eb80082, 0x00000000}},  //   tios_, _baud, mart_,\n  { {0x3eb80039, 0xc7c600a8, 0x68fb008e, 0x00000000}},  //   lart_, вски, _caud,\n  { {0x39460977, 0x68fb0f21, 0x2d800007, 0x00000000}},  //   rios_, _daud, mmie_,\n  { {0x3946010a, 0x3eb80f22, 0x2d8b001a, 0x00000000}},  //   sios_, nart_, _zice_,\n  { {0x3946029d, 0x68fb00f4, 0x7afc0f23, 0x00000000}},  //   pios_, _faud, _iart,\n  { {0x7afc022b, 0x29dc0845, 0x68fb0f24, 0x00000000}},  //   _hart, mía_, _gaud,\n  { {0x7afc010a, 0x3eb80f25, 0x29dc0f26, 0x00000000}},  //   _kart, kart_, lía_,\n  { {0x68fb0f27, 0x7afc022b, 0xa6c70a94, 0x00000000}},  //   _zaud, _jart, _алфа_,\n  { {0x29dc0f28, 0x7c3a005f, 0x69de00f4, 0x00000000}},  //   nía_, _ətra, ntpe,\n  { {0x7afc008d, 0x64a6007e, 0x68e20016, 0x00000000}},  //   _lart, _рада, nfod,\n  { {0xdb040211, 0xb4ae0309, 0x29dc0f29, 0x00000000}},  //   nsió, करी_, hía_,\n  { {0x3eb8010f, 0x63a2006a, 0x2d8b01ca, 0x00000000}},  //   gart_, _iton, _sice_,\n  { {0x29dc02a0, 0x63a2016c, 0x2ca900ea, 0x00000000}},  //   jía_, _hton, tbad_,\n  { {0x29dc0f2a, 0x7afc0f2b, 0xa3e60061, 0x00000000}},  //   día_, _aart, _पहा_,\n  { {0x3eb30472, 0x2d8b0181, 0x3eb8093b, 0x00000000}},  // [18d0] _text_, _vice_, bart_,\n  { {0x68fb0f2c, 0x29dc0211, 0xe4e2013d, 0x00000000}},  //   _saud, fía_, क्ति_,\n  { {0x29dc0219, 0x68e20016, 0x2d8b037a, 0x00000000}},  //   gía_, ffod, _tice_,\n  { {0x63a20f2d, 0x7afc00ab, 0x23c20204, 0x00000000}},  //   _oton, _eart, _शिंद,\n  { {0xb8db02f4, 0x69dc0f2e, 0x68fb009d, 0x00000000}},  //   _आज_, _eqre, _vaud,\n  { {0x29dc0219, 0x7afc05ca, 0xe70700a1, 0x00000000}},  //   bía_, _gart, کسچی,\n  { {0x29dc0219, 0x63a20f2f, 0x3a84007e, 0x00000000}},  //   cía_, _aton, _вытв,\n  { {0x63bb002d, 0x7afc0f30, 0x290d0032, 0x00000000}},  //   tsun, _zart, _unea_,\n  { {0xa8550057, 0x25be010f, 0x3eb802d0, 0x00000000}},  //   _скач, _evtl_, yart_,\n  { {0x63bb0f31, 0x3eb80f32, 0x31690173, 0x00000000}},  //   rsun, xart_, _akaz_,\n  { {0x63bb0f33, 0x3eb80d3e, 0x63a2000a, 0x00000000}},  //   ssun, vart_, _eton,\n  { {0x7fd60245, 0x34950f34, 0x6d4b01aa, 0x00000000}},  //   лігі, _садр, _ňgan,\n  { {0x67210f35, 0xf487003b, 0x00000000, 0x00000000}},  //   _kolj, _ружн,   ,\n  { {0x61260010, 0x08760049, 0x083a0049, 0x00000000}},  //   _rólu, טערט_, געשל,\n  { {0xa2d80201, 0x29dc049a, 0xf3880011, 0x00000000}},  //   _मात्, xía_, _vợt_,\n  { {0x7afc022b, 0x29dc0f2a, 0x5c160057, 0x00000000}},  //   _sart, vía_, льзу,\n  { {0x3eb80f36, 0x2d800036, 0x386d0f37, 0x00000000}},  // [18e0] part_, rmie_, _nyer_,\n  { {0x7afc0065, 0x0eaa008b, 0x29dc008e, 0x00000000}},  //   _qart, _якой_, tía_,\n  { {0x7afc0f38, 0x386d0211, 0xbf9b0181, 0x00000000}},  //   _vart, _ayer_, nvên,\n  { {0x29dc0845, 0x7afc0046, 0x386d05b7, 0x00000000}},  //   ría_, _wart, _byer_,\n  { {0x7afc0f39, 0x6d46038c, 0x67210f3a, 0x00000000}},  //   _tart, _imka, _bolj,\n  { {0xdb040819, 0xa2d802f4, 0x29dc0f3b, 0x00000000}},  //   rsió, _माध्, pía_,\n  { {0xf41f0f3c, 0xe9a3008b, 0x63a20f3d, 0x00000000}},  //   ään_, _гасп, _ston,\n  { {0xb4ae0201, 0x80d60061, 0x60c40f3e, 0x00000000}},  //   करे_, _भाषे, _ndim,\n  { {0x6721043d, 0x68e4006c, 0x00000000, 0x00000000}},  //   _folj, õidu,   ,\n  { {0x60c4002d, 0x672100ca, 0x79820036, 0x00000000}},  //   _adim, _golj, lmow,\n  { {0xe6930054, 0x41550594, 0x6d460066, 0x00000000}},  //   _المد, ивос, _omka,\n  { {0x6ed70316, 0x00000000, 0x00000000, 0x00000000}},  //   _बाहु,   ,   ,\n  { {0x63a203dd, 0x5ede0044, 0x81e40044, 0x00000000}},  //   _uton, য়নে, নিই_,\n  { {0x88bd0036, 0x2fc000ca, 0x636f00ea, 0x00000000}},  //   _kośc, _dvig_, jønh,\n  { {0x2bc70309, 0xd2b701ce, 0x2fc0032e, 0x00000000}},  //   _लिहा, _גלות_, _evig_,\n  { {0x79820036, 0x316900ca, 0xeb9f0190, 0x00000000}},  //   jmow, _ukaz_, _drøn_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  // [18f0]   ,   ,   ,\n  { {0x9b440025, 0x69c300ca, 0x2009009d, 0x00000000}},  //   منقو, šnem, _irai_,\n  { {0xdb58007c, 0xeb9f0737, 0x672100d9, 0x00000000}},  //   уют_, _grøn_, _rolj,\n  { {0x20090085, 0x00000000, 0x00000000, 0x00000000}},  //   _krai_,   ,   ,\n  { {0x67210c1e, 0xdcef00b4, 0x00000000, 0x00000000}},  //   _polj, _chcą,   ,\n  { {0x386d0f3f, 0x00000000, 0x00000000, 0x00000000}},  //   _vyer_,   ,   ,\n  { {0x67210295, 0x7bcd000c, 0x23650059, 0x00000000}},  //   _volj, lrau, volj_,\n  { {0x20090006, 0x00000000, 0x00000000, 0x00000000}},  //   _orai_,   ,   ,\n  { {0xa3b00201, 0x36d50f40, 0x752201f3, 0x00000000}},  //   टील_, _возр, _dooz,\n  { {0x6ac70044, 0x7bcd0f41, 0x27ed00fa, 0x00000000}},  //   র্রো, irau, _ipen_,\n  { {0x88bd0036, 0x7bcd010f, 0x20090f42, 0x00000000}},  //   _gośc, hrau, _arai_,\n  { {0x291d000b, 0x7bcd0006, 0x008604f9, 0x00000000}},  //   njwa_, krau, илно,\n  { {0x2365012d, 0x20090f43, 0x00000000, 0x00000000}},  //   polj_, _crai_,   ,\n  { {0x7bcd03ee, 0x82a50057, 0x56b5007b, 0x00000000}},  //   drau, _такж, יפֿן_,\n  { {0x63a9022b, 0x99d70044, 0x20090035, 0x00000000}},  //   lpen, সবুক, _erai_,\n  { {0xf388001d, 0x27ed0f44, 0x7bcd01a2, 0x00000000}},  //   _hợp_, _open_, frau,\n  { {0x63a90f45, 0x4d630088, 0x26c50f46, 0x00000000}},  // [1900] npen, ікув, _odlo_,\n  { {0x68e901d6, 0x63a9002d, 0x09e6017a, 0x00000000}},  //   _abed, ipen, иозн,\n  { {0xe9da0f47, 0xa2d80309, 0xfce6012c, 0x00000000}},  //   тке_, _मास्, _коно,\n  { {0x7bcd0f48, 0x88e6007c, 0x76000010, 0x00000000}},  //   brau, ржде, házá,\n  { {0x79820046, 0x76000f49, 0x6b8e002b, 0x00000000}},  //   rmow, kázá, _tibg,\n  { {0x63a90f4a, 0x88bd0036, 0x6d560022, 0x00000000}},  //   dpen, _pośc, lnya,\n  { {0xd5b70147, 0xdced006b, 0x27ed00d9, 0x00000000}},  //   асы_, nmağ, _epen_,\n  { {0x6d560010, 0xa91d0471, 0x00000000, 0x00000000}},  //   nnya, _bižu,   ,\n  { {0x63a90f4b, 0x27e90666, 0xa5070ab7, 0x00000000}},  //   gpen, çant_, рења_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6d560f4c, 0x7bcd0089, 0xd2570088, 0x00000000}},  //   knya, zrau, ицю_,\n  { {0x2bc70061, 0x6126000c, 0x20090145, 0x00000000}},  //   _लिला, _sólr, _prai_,\n  { {0xe53b00b6, 0x00000000, 0x00000000, 0x00000000}},  //   _בתאר,   ,   ,\n  { {0x200900f4, 0x00000000, 0x00000000, 0x00000000}},  //   _vrai_,   ,   ,\n  { {0x937b01ce, 0x00000000, 0x00000000, 0x00000000}},  //   _שטות,   ,   ,\n  { {0x7bcd010a, 0x2009001d, 0xc0cb0e82, 0x00000000}},  //   trau, _trai_, _руке_,\n  { {0x20090f4d, 0xbc790f4e, 0x2d9c0010, 0x00000000}},  // [1910] _urai_, убах_, _éven_,\n  { {0x7bcd0f4f, 0xdab90439, 0x00000000, 0x00000000}},  //   rrau, اهات_,   ,\n  { {0x81e40055, 0x63a9022b, 0xceb200a3, 0x00000000}},  //   নিক_, zpen, _מיי_,\n  { {0x637d0666, 0x2739009d, 0x63a90f50, 0x00000000}},  //   mène, _mène_, ypen,\n  { {0x9ac700a1, 0x98e40025, 0x63a90133, 0x00000000}},  //   _نگاہ_, تكنو, xpen,\n  { {0x57a4007e, 0x00000000, 0x00000000, 0x00000000}},  //   ішча,   ,   ,\n  { {0x80c20055, 0x7c2d006b, 0x80dd0044, 0x00000000}},  //   ষ্ট্, lyar, _বসন্,\n  { {0x68e9003b, 0x63a90f51, 0x1e58009b, 0x00000000}},  //   _ubed, tpen, ישור_,\n  { {0x7c2d0f52, 0x63a90f53, 0x637d009d, 0x00000000}},  //   nyar, upen, hène,\n  { {0xf5e701fb, 0x63a90f54, 0x6d4d006c, 0x00000000}},  //   _відм, rpen, hiaa,\n  { {0xa2d802f4, 0x7c2d01a3, 0x22490545, 0x00000000}},  //   _मार्, hyar, упни_,\n  { {0x63a90292, 0x04950025, 0x645e0036, 0x00000000}},  //   ppen, _الإح, _śpie,\n  { {0x6d4d0f55, 0x7c2d0009, 0x00000000, 0x00000000}},  //   diaa, jyar,   ,\n  { {0x442d0263, 0xdced006b, 0x00000000, 0x00000000}},  //   mye_, tmağ,   ,\n  { {0x442d0263, 0x443f0f56, 0x637d0f57, 0x00000000}},  //   lye_, lzu_, rènd,\n  { {0xe0da012b, 0xdced0f58, 0x6d4d01a3, 0x00000000}},  //   _сви_, rmağ, giaa,\n  { {0x442d0f59, 0xec7a0265, 0x7c2d0047, 0x00000000}},  // [1920] nye_, упа_, gyar,\n  { {0x8a3a0057, 0x2ca00276, 0x442d0f5a, 0x00000000}},  //   ляет_, scid_, iye_,\n  { {0xd910007a, 0xb4f90309, 0x442d0065, 0x00000000}},  //   ویس_, ्याय_, hye_,\n  { {0x6d4d00b5, 0x7c2d0020, 0x442d0a20, 0x00000000}},  //   ciaa, byar, kye_,\n  { {0x442d0f5b, 0x2912005a, 0x2bba0025, 0x00000000}},  //   jye_, ıya_, _حاجة_,\n  { {0x443f001e, 0x7d040ad1, 0x442d0f5c, 0x00000000}},  //   dzu_, ldis, dye_,\n  { {0x2d9a009d, 0x442d0f5d, 0xe7f4006e, 0x00000000}},  //   _jupe_, eye_, _इनका_,\n  { {0x442d0263, 0x3e83009d, 0x00000000, 0x00000000}},  //   fye_, lété_,   ,\n  { {0x442d0047, 0x7d040051, 0x2d9a0f5e, 0x00000000}},  //   gye_, idis, _lupe_,\n  { {0xdced0ecc, 0x7d04021e, 0xd6d2031d, 0x00000000}},  //   vlač, hdis, _رقص_,\n  { {0x443f00f6, 0x7d040460, 0x442d0f5f, 0x00000000}},  //   azu_, kdis, aye_,\n  { {0xd2570ee0, 0x442d0f60, 0x753b0020, 0x00000000}},  //   сць_, bye_, chuz,\n  { {0x7d0401bc, 0x506701e0, 0xa2b10061, 0x00000000}},  //   ddis, стна, _आजच्,\n  { {0x3eba01c5, 0x6d5a009d, 0xdcef0089, 0x00000000}},  //   _cept_, étan, _ticī,\n  { {0xdced037e, 0x8d77023c, 0x6d4d0f61, 0x00000000}},  //   slač, مارا, tiaa,\n  { {0xdced0059, 0x2d9a00bb, 0x7d040058, 0x00000000}},  //   plač, _dupe_, gdis,\n  { {0xac180f62, 0x6d4d021e, 0x7bd60093, 0x00000000}},  // [1930] боту_, riaa, guyu,\n  { {0x6d4d021e, 0x64400089, 0x7c2d0f63, 0x00000000}},  //   siaa, izmi, ryar,\n  { {0x7c2d0149, 0x443f0209, 0x637d0129, 0x00000000}},  //   syar, zzu_, lènc,\n  { {0x2730001d, 0x26de0211, 0xcebc006b, 0x00000000}},  //   _hành_, _acto_, _şəxs_,\n  { {0x81e40044, 0x186901fc, 0x2d9a016c, 0x00000000}},  //   নিট_, јали_, _zupe_,\n  { {0xe7360265, 0x443f005f, 0x442d09e5, 0x00000000}},  //   жеш_, vzu_, vye_,\n  { {0xf7700558, 0x27300082, 0x442d0f64, 0x00000000}},  //   راه_, _mành_, wye_,\n  { {0x442d0263, 0x443f022b, 0x27300011, 0x00000000}},  //   tye_, tzu_, _lành_,\n  { {0x442d0f65, 0xdce40107, 0x00000000, 0x00000000}},  //   uye_, slić,   ,\n  { {0x442d0f66, 0x637d0129, 0x78bb00bb, 0x00000000}},  //   rye_, dènc, _heuv,\n  { {0x442d0f67, 0x2d570f68, 0x443f0036, 0x00000000}},  //   sye_, għek_, szu_,\n  { {0x2d9a016c, 0x3eba0f69, 0x442d01aa, 0x00000000}},  //   _rupe_, _sept_, pye_,\n  { {0x637d0129, 0x2d9a0f6a, 0x41c5007d, 0x00000000}},  //   gènc, _supe_, _विकस,\n  { {0x78bb00bb, 0x27300011, 0x7d040009, 0x00000000}},  //   _leuv, _cành_, wdis,\n  { {0x2730001d, 0x78bb00f4, 0x7d0401a2, 0x00000000}},  //   _dành_, _oeuv, tdis,\n  { {0x78bb0f6b, 0x2fcd0059, 0x6cd60076, 0x00000000}},  //   _neuv, šega_, تقرا,\n  { {0x637d0129, 0x78a20f6c, 0xa3dc0061, 0x00000000}},  // [1940] cènc, vcov, तंय_,\n  { {0x7bd6005d, 0x2d9a0020, 0x63a40051, 0x00000000}},  //   ruyu, _tupe_, _éine,\n  { {0x7d040f6d, 0x6abe0c3f, 0x3e83009d, 0x00000000}},  //   pdis, rapf, rété_,\n  { {0x1d0a0364, 0x69c30f6e, 0x27ff00e5, 0x00000000}},  //   _теми_, ânea, _bsun_,\n  { {0x78a20142, 0x3860006b, 0xa81700a1, 0x00000000}},  //   rcov, çir_, قتور_,\n  { {0x78a200ab, 0x3860002b, 0x00000000, 0x00000000}},  //   scov, ħir_,   ,\n  { {0xa3dc04da, 0x78a20142, 0x00000000, 0x00000000}},  //   तून_, pcov,   ,\n  { {0x6abc0030, 0x63740129, 0x7bc40006, 0x00000000}},  //   _herf, màni, osiu,\n  { {0x54540f6f, 0x7bc404f5, 0x5397007e, 0x00000000}},  //   явит, nsiu, овыя_,\n  { {0x29040093, 0x799c0590, 0x637d0129, 0x00000000}},  //   _hama_, _kurw, vènc,\n  { {0x29040be3, 0x7bc400e0, 0x2ef801d6, 0x00000000}},  //   _kama_, hsiu, derf_,\n  { {0x09cf0055, 0x2904006c, 0x29060f70, 0x00000000}},  //   _রহমা, _jama_, ndoa_,\n  { {0x27e604cb, 0x29040727, 0x74130025, 0x00000000}},  //   nton_, _mama_, _يوما,\n  { {0x2904020c, 0x637d04bd, 0x6abc04c1, 0x00000000}},  //   _lama_, rènc, _nerf,\n  { {0xdcbb0f71, 0x637d0129, 0x313502b0, 0x00000000}},  //   ища_, sènc, _некр,\n  { {0x5c9904af, 0x29040149, 0x27e60f72, 0x00000000}},  //   ская_, _nama_, kton_,\n  { {0x7af70f73, 0xdfdb005e, 0x6abc0f74, 0x00000000}},  // [1950] text, _тъй_, _berf,\n  { {0x501c00a0, 0x6abc0f75, 0x60dd0296, 0x00000000}},  //   _כוחו, _cerf, lgsm,\n  { {0x78bb028c, 0x6abc0f76, 0x27e6008e, 0x00000000}},  //   _peuv, _derf, eton_,\n  { {0x27e60f77, 0x2904029d, 0x7af7004a, 0x00000000}},  //   fton_, _cama_, sext,\n  { {0x01e00055, 0x27e60011, 0x394f09b3, 0x00000000}},  //   ববিদ, gton_, rigs_,\n  { {0x394f00f6, 0x2739000a, 0xdb0400c4, 0x00000000}},  //   sigs_, _bèna_, rpiã,\n  { {0x6728037e, 0x27e600b0, 0x63740129, 0x00000000}},  //   _dodj, aton_, càni,\n  { {0x21290058, 0x29040f6a, 0x69c50023, 0x00000000}},  //   _noah_, _gama_, mshe,\n  { {0x69c504f2, 0x394d00ea, 0x27ff0f78, 0x00000000}},  //   lshe, _imes_, _usun_,\n  { {0x466b01e0, 0x6f050146, 0x69c50f79, 0x00000000}},  //   _крем_, _nahc, oshe,\n  { {0xe8030309, 0x2ef80f7a, 0x29040095, 0x00000000}},  //   लिका_, verf_, _yama_,\n  { {0x67230ed8, 0x2ef8040f, 0x69c50133, 0x00000000}},  //   ljnj, werf_, ishe,\n  { {0x88bd0036, 0x200f0285, 0x2ef801d6, 0x00000000}},  //   _rośl, _ágil_, terf_,\n  { {0x69c50065, 0x395f0039, 0x2d9c0010, 0x00000000}},  //   kshe, _ljus_, _évek_,\n  { {0x6b9d001f, 0x69c50f7b, 0x6b400abc, 0x00000000}},  //   _ausg, jshe, _högg,\n  { {0x69c50030, 0x6abc01d6, 0x6b950089, 0x00000000}},  //   dshe, _serf, _aizg,\n  { {0x29040f7c, 0x2cb20016, 0x69c50f7d, 0x00000000}},  // [1960] _rama_, rbyd_, eshe,\n  { {0x2904020c, 0x4a9a008b, 0x7bc4001a, 0x00000000}},  //   _sama_, стаў_, rsiu,\n  { {0x6abc0a9b, 0x6728037e, 0x4ae2001c, 0x00000000}},  //   _verf, _rodj, _पाठव,\n  { {0x27e60866, 0x6abc0125, 0x2d82010e, 0x00000000}},  //   tton_, _werf, _uhke_,\n  { {0x672801d9, 0x29040091, 0x6abc030c, 0x00000000}},  //   _podj, _vama_, _terf,\n  { {0x395f0173, 0x47330088, 0x7d06014a, 0x00000000}},  //   _ejus_, нніс, _haks,\n  { {0x7d060f7e, 0x2904006a, 0x27e60f7f, 0x00000000}},  //   _kaks, _tama_, ston_,\n  { {0x27e60065, 0x7d060f80, 0xda5b00b3, 0x00000000}},  //   pton_, _jaks, _הכלל,\n  { {0x7d060f81, 0x69c7016e, 0x00000000, 0x00000000}},  //   _maks, _zvje,   ,\n  { {0x883b00b6, 0x637d0263, 0x63ab0145, 0x00000000}},  //   _התמו, tèna, _dtgn,\n  { {0x76430046, 0x26cc018e, 0x6587000c, 0x00000000}},  //   czny, _iddo_, árhæ,\n  { {0xf48704e1, 0x7d060052, 0x867b0049, 0x00000000}},  //   _کامی, _naks, _פראו,\n  { {0x60dd00eb, 0xcfa7007c, 0xfc3f004a, 0x00000000}},  //   rgsm, яшни, _afín_,\n  { {0x3da701be, 0x69c50f82, 0x7d060f83, 0x00000000}},  //   зраб, yshe, _aaks,\n  { {0x7d060039, 0xdef8007e, 0x9e140088, 0x00000000}},  //   _baks, чыя_, ндрі,\n  { {0x69c50190, 0x6b9d0089, 0x00000000, 0x00000000}},  //   vshe, _pusg,   ,\n  { {0x69c70182, 0xfe70026c, 0xd11a0309, 0x00000000}},  // [1970] _svje, ندہ_, धारण_,\n  { {0x69c50de8, 0x394d087a, 0x69c300c4, 0x00000000}},  //   tshe, _smes_, âneo,\n  { {0x7d060f84, 0x6aa50f85, 0xf9f90380, 0x00000000}},  //   _faks, rchf, تفاع_,\n  { {0x69c5008d, 0xac19003b, 0x26cc0016, 0x00000000}},  //   rshe, _дому_, _addo_,\n  { {0x69c50efd, 0x394d0059, 0xfc64005e, 0x00000000}},  //   sshe, _vmes_, _зърн,\n  { {0xe29a0011, 0x69c50f86, 0x00000000, 0x00000000}},  //   _ngư_, pshe,   ,\n  { {0x69c70182, 0xba77089d, 0x945d0036, 0x00000000}},  //   _uvje, _راست, kańc,\n  { {0xbe3c009b, 0x60cd0f87, 0x394d01ee, 0x00000000}},  //   מעות, _ndam, _umes_,\n  { {0xb4ad03d7, 0x67d40088, 0x76430f88, 0x00000000}},  //   _कभी_, _поту, szny,\n  { {0x60cd038c, 0xd75b0014, 0x644d0006, 0x00000000}},  //   _adam, _اجرا_, _žais,\n  { {0x77640129, 0xa51d007e, 0x6ed70204, 0x00000000}},  //   éixe, _вялi, _बाजु,\n  { {0xa3b0013d, 0x00000000, 0x00000000, 0x00000000}},  //   टीङ_,   ,   ,\n  { {0x7d06001e, 0x6b400039, 0x60cd0016, 0x00000000}},  //   _raks, _höge, _ddam,\n  { {0x7d0608b2, 0x6d4f0f89, 0x60cd013f, 0x00000000}},  //   _saks, _amca, _edam,\n  { {0x7d06006a, 0x2d9e00f4, 0x1b060055, 0x00000000}},  //   _paks, ête_, রামে_,\n  { {0x6b4009b0, 0x6d4f0009, 0x00000000, 0x00000000}},  //   _möge, _cmca,   ,\n  { {0x7d060f8a, 0x5ed30044, 0xed5700ed, 0x00000000}},  // [1980] _vaks, দ্ধে, фот_,\n  { {0x7d060145, 0x4c8300e2, 0x00000000, 0x00000000}},  //   _waks, тлув,   ,\n  { {0xe0df00f6, 0xe800013d, 0x752b00d9, 0x00000000}},  //   ciòs_, लौना_, _oogz,\n  { {0x637400d4, 0x00000000, 0x00000000, 0x00000000}},  //   lànt,   ,   ,\n  { {0x07fa0f8b, 0x07a309e6, 0xf746012d, 0x00000000}},  //   تراع_, вачн, медо,\n  { {0xeb9f02cc, 0xb865035b, 0x2fcf06ec, 0x00000000}},  //   _prøv_, رانو, _ægge_,\n  { {0x8a030216, 0x00000000, 0x00000000, 0x00000000}},  //   _изре,   ,   ,\n  { {0xa926007e, 0x00000000, 0x00000000, 0x00000000}},  //   _ўдал,   ,   ,\n  { {0x671e0309, 0x14180025, 0x752b0023, 0x00000000}},  //   पादक_, سيدة_, _dogz,\n  { {0xf7720054, 0x6b4000f8, 0x00000000, 0x00000000}},  //   _شاء_, _högb,   ,\n  { {0x2fc902e7, 0x00000000, 0x00000000, 0x00000000}},  //   _svag_,   ,   ,\n  { {0x92be0055, 0x914b01e1, 0xd2570a7c, 0x00000000}},  //   ইলে_, ічна_, ьцы_,\n  { {0xe0df0026, 0xf41f00b0, 0x945d00b4, 0x00000000}},  //   rgò_, äät_, rańc,\n  { {0x6b40000c, 0x00000000, 0x00000000, 0x00000000}},  //   _lögb,   ,   ,\n  { {0xf206005e, 0x00000000, 0x00000000, 0x00000000}},  //   _цяло,   ,   ,\n  { {0x9d18005e, 0x2c0b0061, 0x00000000, 0x00000000}},  //   мост_, हटलं_,   ,\n  { {0x63ad0f8c, 0xfd1f0082, 0x37be0044, 0x00000000}},  // [1990] _çant, _chìa_, _উৎসর,\n  { {0xdb0d000c, 0x637400f6, 0x00000000, 0x00000000}},  //   gsað, cànt,   ,\n  { {0x6d4f0009, 0x00000000, 0x00000000, 0x00000000}},  //   _tmca,   ,   ,\n  { {0xa2d8001c, 0x6562008d, 0xdce4014a, 0x00000000}},  //   _माझ्, _njoh, mliğ,\n  { {0x7ac700aa, 0xdce4014a, 0x00000000, 0x00000000}},  //   _осве, lliğ,   ,\n  { {0x2d99070c, 0x6d910142, 0x80380049, 0x00000000}},  //   _hise_, _sťah, ונדע_,\n  { {0x58d501f9, 0xdce4011f, 0x2d990f8d, 0x00000000}},  //   _повт, nliğ, _kise_,\n  { {0x6b4001a2, 0xd618006d, 0x00000000, 0x00000000}},  //   _vöge, بتها_,   ,\n  { {0x2d990f8e, 0x47d50054, 0x443903f0, 0x00000000}},  //   _mise_, _سيار, ás_,\n  { {0x42250057, 0x2d99014a, 0xdce4014a, 0x00000000}},  //   едов, _lise_, kliğ,\n  { {0x4ae203d7, 0x78a40dbd, 0x2d9900f4, 0x00000000}},  //   _पासव, žive, _oise_,\n  { {0x2d990b97, 0xa06a003b, 0x00000000, 0x00000000}},  //   _nise_, зама_,   ,\n  { {0x98a40089, 0x1b060044, 0x00000000, 0x00000000}},  //   _jomā_, রাতে_,   ,\n  { {0xa3570f8f, 0x2d990f90, 0xcad50044, 0x00000000}},  //   _تخصص, _aise_, স্তফ,\n  { {0x2d990f91, 0x00000000, 0x00000000, 0x00000000}},  //   _bise_,   ,   ,\n  { {0x62830f92, 0x00000000, 0x00000000, 0x00000000}},  //   _izno,   ,   ,\n  { {0xe7da0055, 0x4f960f93, 0xbea6007c, 0x00000000}},  // [19a0] _ধন্য, _проу, _папк,\n  { {0xdce40180, 0x2d990007, 0x2d9e00c4, 0x00000000}},  //   bliğ, _eise_, ítes_,\n  { {0x5336007b, 0xdebb0097, 0xe8fa0f94, 0x00000000}},  //   ענען_, _ממיל, зле_,\n  { {0xe1ff0046, 0xeb9a041f, 0xfd1f0082, 0x00000000}},  //   łów_, _ним_, _thìa_,\n  { {0x6d56006b, 0x3f9a0052, 0x4e960014, 0x00000000}},  //   miya, _kipu_, _تشکر,\n  { {0x6d56005d, 0x98a40089, 0x2d990035, 0x00000000}},  //   liya, _domā_, _zise_,\n  { {0xceb300b6, 0x6b6306b6, 0x850400a1, 0x00000000}},  //   ניה_, _скра, ہوںن,\n  { {0x6d560f95, 0x657b0f96, 0x6d4400c4, 0x00000000}},  //   niya, gluh, nhia,\n  { {0xe3af01ef, 0xd9430f97, 0xa9670f98, 0x00000000}},  //   یری_, _сети, _чита_,\n  { {0xfd1f001d, 0x6d5600e0, 0x68e20190, 0x00000000}},  //   _nhìn_, hiya, lgod,\n  { {0x6d560f99, 0x6d4405cd, 0xf41f006c, 0x00000000}},  //   kiya, khia, äär_,\n  { {0x88bd0036, 0x8466005e, 0x7afe01d6, 0x00000000}},  //   _dośw, _пъле, hept,\n  { {0x6d560f9a, 0x54330380, 0x55770049, 0x00000000}},  //   diya, _مرور, _װעגן_,\n  { {0x69de00b0, 0x2d990f9b, 0x15f4006e, 0x00000000}},  //   kupe, _sise_, _आहार_,\n  { {0x2d99016c, 0x63a20f9c, 0xf8d00061, 0x00000000}},  //   _pise_, _huon, हणाय,\n  { {0x63a2000b, 0x6d56005f, 0x6d440412, 0x00000000}},  //   _kuon, giya, ghia,\n  { {0x2d990292, 0x63a200b0, 0x65600048, 0x00000000}},  // [19b0] _vise_, _juon, inmh,\n  { {0x63a20020, 0x2d990133, 0xdced012d, 0x00000000}},  //   _muon, _wise_, klać,\n  { {0x63a20f9d, 0xda670426, 0x2d990f9e, 0x00000000}},  //   _luon, رائي, _tise_,\n  { {0x6d440198, 0x637d0263, 0xacbb00f4, 0x00000000}},  //   chia, vènm, _coût,\n  { {0x7d0d000c, 0x63a20f9f, 0x66e50fa0, 0x00000000}},  //   mdas, _nuon, вола,\n  { {0xf72b007e, 0x7d0d0ad1, 0x7bdf0026, 0x00000000}},  //   яцей_, ldas, muqu,\n  { {0x7bdf008e, 0xc1790006, 0xae14006e, 0x00000000}},  //   luqu, ntės_, डियन_,\n  { {0x63a20fa1, 0x7d0d0fa2, 0xacbb00f4, 0x00000000}},  //   _buon, ndas, _goût,\n  { {0x63a20011, 0x6b4000f8, 0x00000000, 0x00000000}},  //   _cuon, _höga,   ,\n  { {0x63a20fa3, 0x6d56006b, 0x88bd0036, 0x00000000}},  //   _duon, ziya, _pośw,\n  { {0x216a0113, 0x26c70fa4, 0x614600e3, 0x00000000}},  //   дини_, mano_, вена,\n  { {0x26c70198, 0x7afe0fa5, 0x8fa6007e, 0x00000000}},  //   lano_, zept, каме,\n  { {0xf992007b, 0xa3a8001c, 0xaae201f5, 0x00000000}},  //   ירט_, _खूप_, _पालक,\n  { {0x26c70207, 0x75290166, 0x6d5604be, 0x00000000}},  //   nano_, ljez, wiya,\n  { {0x6d44018e, 0x6d560890, 0x50b60fa6, 0x00000000}},  //   thia, tiya, _испу,\n  { {0x26120204, 0x7d0d0058, 0x7c24002d, 0x00000000}},  //   थिती_, gdas, txir,\n  { {0x6449001f, 0x26c709bd, 0x7afe001a, 0x00000000}},  // [19c0] nzei, kano_, tept,\n  { {0x6d56005f, 0x60c40fa7, 0x69de01ca, 0x00000000}},  //   siya, _heim, tupe,\n  { {0x26c70036, 0x3ed9007b, 0x6449010f, 0x00000000}},  //   dano_, _אַרא, hzei,\n  { {0x7afe0fa8, 0x79890016, 0x6c860025, 0x00000000}},  //   sept, _chew, _للجم,\n  { {0x26c70fa9, 0x69de010e, 0x68e20faa, 0x00000000}},  //   fano_, supe, rgod,\n  { {0x26c7016e, 0x60c400b0, 0x68e20016, 0x00000000}},  //   gano_, _leim, sgod,\n  { {0x63a20207, 0x2d9c0047, 0x24800089, 0x00000000}},  //   _suon, _éves_, _šim_,\n  { {0x60c40391, 0x6449010f, 0xe56f0439, 0x00000000}},  //   _neim, fzei, يطي_,\n  { {0x07a60057, 0x26c700d6, 0x6b9c006c, 0x00000000}},  //   _разн, bano_, _kirg,\n  { {0x26c70555, 0x394602d5, 0x7d0d0047, 0x00000000}},  //   cano_, lhos_, zdas,\n  { {0x53d4001c, 0x61ea0009, 0x7d0d0279, 0x00000000}},  //   _दिवश, _qqfl, ydas,\n  { {0x394602d5, 0x63a20fab, 0x5187012b, 0x00000000}},  //   nhos_, _tuon, ђуна,\n  { {0x14d70476, 0x60c40fac, 0x934608d6, 0x00000000}},  //   _יואל_, _deim, _инде,\n  { {0x5333025f, 0x6b9c01a2, 0x00000000, 0x00000000}},  //   _вешт, _nirg,   ,\n  { {0x2fc0063c, 0x02fb0104, 0x60c40fad, 0x00000000}},  //   _ewig_, _חלומ, _feim,\n  { {0x60c4000c, 0x26c70340, 0x6b9c0122, 0x00000000}},  //   _geim, zano_, _airg,\n  { {0x7d0d0149, 0x6b9c0fae, 0x26c7011c, 0x00000000}},  // [19d0] rdas, _birg, yano_,\n  { {0x7cde001a, 0x20090b97, 0x26c70faf, 0x00000000}},  //   tărâ, _isai_, xano_,\n  { {0x26c70198, 0x6b9c0016, 0x7d0d046a, 0x00000000}},  //   vano_, _dirg, pdas,\n  { {0x26c70fb0, 0x00000000, 0x00000000, 0x00000000}},  //   wano_,   ,   ,\n  { {0x26c70fb1, 0x386903d1, 0x9bc4007e, 0x00000000}},  //   tano_, çar_, _вёск,\n  { {0xa03c00b6, 0x386901d5, 0x6b9c0fb2, 0x00000000}},  //   ועדפ, ħar_, _girg,\n  { {0x78a40119, 0xa3e50061, 0xa3a8006e, 0x00000000}},  //   živa, बून_, _खूब_,\n  { {0xf3ff0fb3, 0x39460219, 0xb4ad001c, 0x00000000}},  //   ção_, chos_, कडे_,\n  { {0xf8ae026c, 0x26c70fb4, 0x68e90066, 0x00000000}},  //   _رکن_, pano_, _iced,\n  { {0x6449001f, 0x60c4010a, 0x753b0224, 0x00000000}},  //   rzei, _seim, skuz,\n  { {0x64490fb5, 0x7ae50051, 0x2fc00fb6, 0x00000000}},  //   szei, ight, _swig_,\n  { {0xe4cb007a, 0x26c5005b, 0x7bcd01b1, 0x00000000}},  //   _آبان_, _helo_, ksau,\n  { {0xb4df024c, 0x25a50fb7, 0xfd1f0011, 0x00000000}},  //   तली_, _hull_, _chìm_,\n  { {0x25a501d5, 0x60c404b2, 0x26c50e45, 0x00000000}},  //   _kull_, _weim, _jelo_,\n  { {0x60c40fb8, 0x26c50181, 0x20090fb9, 0x00000000}},  //   _teim, _melo_, _esai_,\n  { {0x2d8b0ce2, 0x61e100b0, 0xf1b200a0, 0x00000000}},  //   _chce_, mull, _פסח_,\n  { {0x61e10127, 0xac86026b, 0x25a50fba, 0x00000000}},  // [19e0] lull, угал, _lull_,\n  { {0xec770fbb, 0xaf060fbc, 0x68e900c4, 0x00000000}},  //   упу_, _спол, _aced,\n  { {0x61e10fbd, 0x25a50541, 0x637d0129, 0x00000000}},  //   null, _null_, gèni,\n  { {0x07a6007e, 0xb4ad0204, 0x6b40000c, 0x00000000}},  //   гадн, कडो_, _gögn,\n  { {0x26c50181, 0x6b9c001e, 0x7e7e00b0, 0x00000000}},  //   _belo_, _tirg, _hypp,\n  { {0x61e1008d, 0x26c501d9, 0xfaa3007e, 0x00000000}},  //   kull, _celo_, _гаро,\n  { {0x212001cd, 0x26c501d9, 0x290d0022, 0x00000000}},  //   _onih_, _delo_, _faea_,\n  { {0x9d220055, 0x61e10fbe, 0x2d8001d6, 0x00000000}},  //   _নতুন_, dull, nlie_,\n  { {0x78660454, 0x26c50145, 0x00000000, 0x00000000}},  //   _сказ, _felo_,   ,\n  { {0x25a50038, 0x61e100ab, 0x26c500c4, 0x00000000}},  //   _full_, full, _gelo_,\n  { {0x61e10fbf, 0x00000000, 0x00000000, 0x00000000}},  //   gull,   ,   ,\n  { {0x26c501d9, 0xa1590fc0, 0x64a6003b, 0x00000000}},  //   _zelo_, таму_, _сада,\n  { {0xd0e602fb, 0x5436031d, 0x26c5011c, 0x00000000}},  //   _कारण_, _حرار, _yelo_,\n  { {0xa2940451, 0x2d800fc1, 0x212000ca, 0x00000000}},  //   _калі, elie_, _enih_,\n  { {0x61e100d4, 0x1df80783, 0x00000000, 0x00000000}},  //   cull, леры_,   ,\n  { {0x2d8004b8, 0x7bcd0706, 0x20090085, 0x00000000}},  //   glie_, tsau, _tsai_,\n  { {0x2009023a, 0x5c990147, 0x7bcd0be1, 0x00000000}},  // [19f0] _usai_, ткая_, usau,\n  { {0x7ae500ab, 0x6d5a0e9d, 0x637d0173, 0x00000000}},  //   ught, étar, tèni,\n  { {0x7bcd006c, 0x2d800fc2, 0x26c5011c, 0x00000000}},  //   ssau, blie_, _relo_,\n  { {0x26c50209, 0x98c70025, 0x25a50fc3, 0x00000000}},  //   _selo_, اغان, _rull_,\n  { {0xf7710025, 0x26c502d5, 0x25a50198, 0x00000000}},  //   يات_, _pelo_, _sull_,\n  { {0x45d50517, 0x25a500ab, 0x39440fc4, 0x00000000}},  //   ацит, _pull_, _elms_,\n  { {0x6b40001f, 0x26c508f7, 0x65c20242, 0x00000000}},  //   _mögl, _velo_, обща,\n  { {0xb4df0183, 0x613f008d, 0x61e10fc5, 0x00000000}},  //   तले_, _qëll, vull,\n  { {0xa3e5007d, 0x613f0065, 0x7d0f0010, 0x00000000}},  //   बंध_, _vëll, _macs,\n  { {0x61e1008d, 0x7d0f041d, 0x25a500f8, 0x00000000}},  //   tull, _lacs, _tull_,\n  { {0x2d80074e, 0xcb120097, 0xe1260088, 0x00000000}},  //   ylie_, קלט_, амни,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x22590036, 0x61e10329, 0x316901aa, 0x00000000}},  //   ńsk_, sull, _djaz_,\n  { {0x61e10fc6, 0x3f9e0fc7, 0xdee60098, 0x00000000}},  //   pull, ötu_, јови,\n  { {0x42790049, 0x3f84001e, 0xed5a007c, 0x00000000}},  //   _באַג, ēmu_, вов_,\n  { {0x20560c96, 0xdca30900, 0xee3700e2, 0x00000000}},  //   _втор, жати, шнс_,\n  { {0x0c26017f, 0x00000000, 0x00000000, 0x00000000}},  // [1a00] шман,   ,   ,\n  { {0x2d800133, 0x7e7e0fc8, 0x00000000, 0x00000000}},  //   slie_, _typp,   ,\n  { {0x7d0f031e, 0xa3e5007d, 0x6edb009b, 0x00000000}},  //   _facs, बूत_, _בחיפ,\n  { {0xd946012b, 0xaae20061, 0xdb060023, 0x00000000}},  //   једи, _पाकक, _kukë,\n  { {0x7d04021e, 0x78a4040d, 0xfaa60088, 0x00000000}},  //   meis, živo, _ваго,\n  { {0x5777007e, 0xed590142, 0x00000000, 0x00000000}},  //   абіў_, ďže_,   ,\n  { {0x645d000c, 0xe7370545, 0x60d60085, 0x00000000}},  //   úsin, реј_, _odym,\n  { {0x7d04021e, 0x2b580544, 0x00000000, 0x00000000}},  //   neis, _hmrc_,   ,\n  { {0x66e601fc, 0xc34a005e, 0x6b40000c, 0x00000000}},  //   _воза, вяне_, _lögm,\n  { {0x7d040fc9, 0x79820038, 0x973c0107, 0x00000000}},  //   heis, llow, _biće,\n  { {0x7d040ecb, 0x6d4600b0, 0x00000000, 0x00000000}},  //   keis, _olka,   ,\n  { {0x9257007c, 0x8556025a, 0xdb060023, 0x00000000}},  //   рают_, _خیبر_, _bukë,\n  { {0x320200b9, 0x7522016e, 0x7d040052, 0x00000000}},  //   ňky_, _inoz, deis,\n  { {0x6d460fca, 0x7d0f096b, 0xc0580088, 0x00000000}},  //   _alka, _sacs, рію_,\n  { {0xd3780119, 0x7d040016, 0x79820036, 0x00000000}},  //   moć_, feis, klow,\n  { {0x929b00b6, 0x7d040abe, 0x7c87007c, 0x00000000}},  //   _ביות, geis, аузе,\n  { {0xfaa7007c, 0x75220062, 0xdfd1006d, 0x00000000}},  // [1a10] ашен, _mnoz, _عيد_,\n  { {0x6d460fcb, 0xd5a400a1, 0x78a40f3a, 0x00000000}},  //   _elka, _يہ_, živl,\n  { {0x3f830ce4, 0x7d0f0fcc, 0xce68007c, 0x00000000}},  //   mlju_, _tacs, _вряд_,\n  { {0xae1a009b, 0x3e160049, 0x79820036, 0x00000000}},  //   _עורכ, _פֿיל_, glow,\n  { {0x1b0f0044, 0xf8070256, 0xd3780fcd, 0x00000000}},  //   সাবে_, рчен, koć_,\n  { {0xd246002c, 0x4429002b, 0xdb2300a2, 0x00000000}},  //   _فن_, _ħa_, _بوسی,\n  { {0x79820036, 0x69de012d, 0x5a44007e, 0x00000000}},  //   blow, crpe, _дэта,\n  { {0x798200d9, 0x00000000, 0x00000000, 0x00000000}},  //   clow,   ,   ,\n  { {0x1422007e, 0x461500a6, 0x00000000, 0x00000000}},  //   здым, _گوار,   ,\n  { {0xc8c800a1, 0x75220087, 0x00000000, 0x00000000}},  //   _موہن_, _enoz,   ,\n  { {0xc4cf00a1, 0x7d0400e7, 0x00000000, 0x00000000}},  //   _ہےں_, yeis,   ,\n  { {0xcea90097, 0x973c012d, 0x00000000, 0x00000000}},  //   _טי_, _viće,   ,\n  { {0x4429028c, 0x05740025, 0xd3a7003b, 0x00000000}},  //   _ça_, _بالد, _треп,\n  { {0x63bb020c, 0x7d04010f, 0x0239004b, 0x00000000}},  //   mpun, weis, _مثبت_,\n  { {0x7d040fce, 0x6ade0044, 0x68fb0036, 0x00000000}},  //   teis, ন্ডো, _obud,\n  { {0x90c60893, 0x00000000, 0x00000000, 0x00000000}},  //   _убие,   ,   ,\n  { {0x63bb0039, 0x3f830166, 0x6d580006, 0x00000000}},  // [1a20] npun, blju_, _įvad,\n  { {0x7d0403b6, 0x68fb03c9, 0x798205d2, 0x00000000}},  //   seis, _abud, wlow,\n  { {0x7d040292, 0xe9da0aed, 0x993a01e1, 0x00000000}},  //   peis, уке_, ляду_,\n  { {0x63bb07af, 0x00000000, 0x00000000, 0x00000000}},  //   kpun,   ,   ,\n  { {0xe73a017f, 0x1867012b, 0xacf700a1, 0x00000000}},  //   лед_, баци_, _اسپت,\n  { {0x63bb0039, 0xdce4002b, 0x78250025, 0x00000000}},  //   dpun, kniċ, تعمل,\n  { {0xa96a05f6, 0xceb300a3, 0x63bb00d9, 0x00000000}},  //   _бива_, ליג_, epun,\n  { {0x63bb0fcf, 0x00000000, 0x00000000, 0x00000000}},  //   fpun,   ,   ,\n  { {0x63bb011c, 0x00000000, 0x00000000, 0x00000000}},  //   gpun,   ,   ,\n  { {0xaaba02fb, 0x68fb05c9, 0x1b0f0044, 0x00000000}},  //   ेरिक, _zbud, সাথে_,\n  { {0x3f830091, 0x63bb002d, 0x4b7b0049, 0x00000000}},  //   vlju_, apun, רטיג,\n  { {0x73e6008b, 0x1a9b0049, 0x7147007c, 0x00000000}},  //   _годз, טייע, схож,\n  { {0x3f830107, 0x27e60058, 0x637d0129, 0x00000000}},  //   tlju_, nuon_, tènt,\n  { {0x2e180173, 0x3ea500ea, 0x00000000, 0x00000000}},  //   _bčf_, ølt_,   ,\n  { {0x2000000a, 0x27e60022, 0x00000000, 0x00000000}},  //   _epii_, huon_,   ,\n  { {0x52830054, 0x78a40243, 0x3f830fd0, 0x00000000}},  //   _عليك, živj, slju_,\n  { {0xfd4f001d, 0x2906002d, 0x09d10061, 0x00000000}},  // [1a30] _khiế, deoa_, हळ्य,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x27ff000d, 0xc987017f, 0x3ce902e1, 0x00000000}},  //   _spun_, буди, pgav_,\n  { {0x63bb0fd1, 0x00000000, 0x00000000, 0x00000000}},  //   ypun,   ,   ,\n  { {0x6aa9001a, 0x6d4d0434, 0x4ae20204, 0x00000000}},  //   _şefu, mhaa, _पाचव,\n  { {0x70b50164, 0xfd4f0011, 0x68fb0036, 0x00000000}},  //   ंडुल, _nhiế, _wbud,\n  { {0xc5d50088, 0x00000000, 0x00000000, 0x00000000}},  //   ціль,   ,   ,\n  { {0x63bb0fd2, 0x68fb0415, 0x27e60fd3, 0x00000000}},  //   tpun, _ubud, buon_,\n  { {0x69da0073, 0x63bb00b0, 0x7c2d0129, 0x00000000}},  //   _åter, upun, nxar,\n  { {0xfd4f001d, 0x63bb0fd4, 0xe1f9003b, 0x00000000}},  //   _chiế, rpun, аго_,\n  { {0x63bb000d, 0x6f0700b9, 0x6d4d0fd5, 0x00000000}},  //   spun, dejc, khaa,\n  { {0x63bb0ba0, 0x27e00340, 0xd24e0014, 0x00000000}},  //   ppun, šine_, خچه_,\n  { {0x6d4d0518, 0x297a0049, 0x00000000, 0x00000000}},  //   dhaa, שטרא,   ,\n  { {0x65690fd6, 0x6da60fd7, 0x973c016c, 0x00000000}},  //   lneh, жива, _kića,\n  { {0x417600a6, 0xbea30a78, 0x8d5a0fd8, 0x00000000}},  //   _وابس, дарк, ашат_,\n  { {0x63a30004, 0x6d43001a, 0x657b01ee, 0x00000000}},  //   _hinn, _înal, nouh,\n  { {0x63a30004, 0x3c66008b, 0xfd1f0011, 0x00000000}},  // [1a40] _kinn, цкаг, _nhìu_,\n  { {0x63a3002b, 0x63ab0fd9, 0xbad5007e, 0x00000000}},  //   _jinn, _mugn, зіцы,\n  { {0xdce40fda, 0xdca6017a, 0x2d8c0fdb, 0x00000000}},  //   lnič, _мани, ïdes_,\n  { {0x63a30004, 0x98a60893, 0x6d4d00b5, 0x00000000}},  //   _linn, циде, chaa,\n  { {0xd90d025a, 0x38cb02fd, 0x6b40000c, 0x00000000}},  //   دیق_, شانی_, _lögi,\n  { {0xd04e005f, 0x501b0104, 0x1754041f, 0x00000000}},  //   ükəs, יונו, явля,\n  { {0xdce4092f, 0x63ab0fdc, 0x5693025f, 0x00000000}},  //   hnič, _augn, машт,\n  { {0x6d44010a, 0x7d160fdd, 0x63a30051, 0x00000000}},  //   nkia, ndys, _ainn,\n  { {0x63a3049b, 0xfd4f001d, 0xdce40213, 0x00000000}},  //   _binn, _phiế, jnič,\n  { {0x63a3002a, 0xdce40466, 0x63ab0006, 0x00000000}},  //   _cinn, dnič, _dugn,\n  { {0x62830016, 0x63a300ab, 0x6d4400b0, 0x00000000}},  //   _cyno, _dinn, kkia,\n  { {0x63a30fde, 0x62830016, 0x63ab0fdf, 0x00000000}},  //   _einn, _dyno, _fugn,\n  { {0x63a30332, 0xfd4f001d, 0x7d16005b, 0x00000000}},  //   _finn, _thiế, ddys,\n  { {0x63a30fe0, 0x93770025, 0x26cc00ca, 0x00000000}},  //   _ginn, _وصور_, _jedo_,\n  { {0x6d5f005f, 0x26cc0fe1, 0x6d4d0fe2, 0x00000000}},  //   tiqa, _medo_, thaa,\n  { {0x63a3095d, 0x91b70167, 0x7c2d002d, 0x00000000}},  //   _zinn, _بطور_, txar,\n  { {0x6d4d0fe3, 0x64400142, 0x6f070450, 0x00000000}},  // [1a50] rhaa, nymi, pejc,\n  { {0xce95005e, 0x6d4d0020, 0xbcfb0fe4, 0x00000000}},  //   _напъ, shaa, _omég,\n  { {0x60cd0169, 0x64400943, 0x2fc90058, 0x00000000}},  //   _keam, hymi, _hwag_,\n  { {0x6d440048, 0x64400052, 0x00000000, 0x00000000}},  //   ckia, kymi,   ,\n  { {0x880700e9, 0x6d5d002b, 0xb807023c, 0x00000000}},  //   تظام, _imsa, تباه,\n  { {0x26cc08e1, 0x60cd0048, 0x644000b4, 0x00000000}},  //   _cedo_, _leam, dymi,\n  { {0x63a3002a, 0xdce40142, 0x26cc0d8e, 0x00000000}},  //   _rinn, znič, _dedo_,\n  { {0x60cd0fe5, 0x442d0411, 0x63ab0197, 0x00000000}},  //   _neam, txe_, _pugn,\n  { {0x65690fe6, 0xb4bb03d7, 0x442d00c4, 0x00000000}},  //   rneh, _अभी_, uxe_,\n  { {0x6d44022b, 0x6d930181, 0xaacb007d, 0x00000000}},  //   zkia, lçad, िरिक,\n  { {0x63a30635, 0x6d440006, 0x443f0fe7, 0x00000000}},  //   _vinn, ykia, syu_,\n  { {0x6d9309f7, 0xdce40091, 0x63a30fe8, 0x00000000}},  //   nçad, tnič, _winn,\n  { {0x63a30fe9, 0x82350014, 0x62830036, 0x00000000}},  //   _tinn, زرگا, _wyno,\n  { {0x61e80027, 0xdce40626, 0x6d5d0fea, 0x00000000}},  //   budl, rnič, _amsa,\n  { {0x61460feb, 0xdce40209, 0x00000000, 0x00000000}},  //   _нека, snič,   ,\n  { {0x60cd001a, 0x78a40247, 0x6d440006, 0x00000000}},  //   _geam, živi, ukia,\n  { {0x6d440fec, 0x2fc90016, 0xb05b06d3, 0x00000000}},  // [1a60] rkia, _gwag_, lbän,\n  { {0x78a90207, 0x8eea0088, 0x6d44042c, 0x00000000}},  //   _agev, _умов_, skia,\n  { {0x26cc0039, 0x64400fed, 0x00000000, 0x00000000}},  //   _redo_, zymi,   ,\n  { {0x26cc0133, 0xdb04004a, 0x00000000, 0x00000000}},  //   _sedo_, rpiñ,   ,\n  { {0x2d8202cc, 0x0c23007e, 0x26cc008e, 0x00000000}},  //   _ikke_, _змян, _pedo_,\n  { {0x6d9300c4, 0xeb97004d, 0x78a90146, 0x00000000}},  //   açad, _ния_, _egev,\n  { {0x78ad0825, 0x26cc0fee, 0x945d0036, 0x00000000}},  //   žava, _vedo_, kańs,\n  { {0x644000b0, 0xe5a3003b, 0x945d0036, 0x00000000}},  //   tymi, нији, jańs,\n  { {0x60cd0035, 0x7bd60fef, 0x26cc0087, 0x00000000}},  //   _ream, nsyu, _tedo_,\n  { {0x60cd094e, 0x65600066, 0x39460ff0, 0x00000000}},  //   _seam, simh, lkos_,\n  { {0x628701d5, 0x60cd0004, 0x672801d5, 0x00000000}},  //   żjon, _peam, _indj,\n  { {0xf8cc03d7, 0x3946010a, 0x673a0ff1, 0x00000000}},  //   ारिय, nkos_, _hotj,\n  { {0x60cd008e, 0x39460ff2, 0xa30b00a1, 0x00000000}},  //   _veam, ikos_, _گرنے_,\n  { {0x973c016c, 0x6d5d0145, 0x673a0906, 0x00000000}},  //   _mićo, _smsa, _jotj,\n  { {0x60cd0ff3, 0xfe700025, 0x6fd90061, 0x00000000}},  //   _team, هدف_, _भटकं,\n  { {0x6b40000c, 0x2d58007c, 0x2fc90058, 0x00000000}},  //   _mögu, пись_, _twag_,\n  { {0x6b40000c, 0x6728016e, 0x25a60022, 0x00000000}},  // [1a70] _lögu, _ondj, _miol_,\n  { {0x2d820ff4, 0x2aab003b, 0x673a012d, 0x00000000}},  //   _ekke_, стао_, _notj,\n  { {0x7f3c034e, 0x62860036, 0x442b0011, 0x00000000}},  //   _לעזו, ękow, ̣c_,\n  { {0xbcfb0211, 0x39460ff5, 0x6d5d0218, 0x00000000}},  //   _ejér, gkos_, _umsa,\n  { {0x6d9300c4, 0xe7390893, 0x2ba70061, 0x00000000}},  //   rçad, жел_, _कंटा,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xf8ae026c, 0x25a600ab, 0x673a01ed, 0x00000000}},  //   اکہ_, _biol_, _dotj,\n  { {0xe3b901fb, 0x6b40000c, 0xf99300d3, 0x00000000}},  //   оби_, _dögu, _سبز_,\n  { {0x394d0ff6, 0x25a6000a, 0x395f0319, 0x00000000}},  //   _iles_, _diol_, _imus_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x779000a2, 0x25a60ff7, 0x6f0c006b, 0x00000000}},  //   _حیوا, _fiol_, _öncə,\n  { {0x69d80181, 0x6b400039, 0xb05b010f, 0x00000000}},  //   ávei, _högt, rbän,\n  { {0x657c0010, 0x76430ff8, 0xb05b06d3, 0x00000000}},  //   _írha, lyny, sbän,\n  { {0x6265025f, 0x394d0016, 0x25a600f6, 0x00000000}},  //   _овла, _lles_, _ziol_,\n  { {0xdef9008b, 0x8fa3007c, 0x945d0036, 0x00000000}},  //   чыў_, таре, pańs,\n  { {0xa187005e, 0x00000000, 0x00000000, 0x00000000}},  //   _обща_,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  // [1a80]   ,   ,   ,\n  { {0x394d000d, 0x5f06007e, 0x7bd6003f, 0x00000000}},  //   _ales_, _ўзна, rsyu,\n  { {0xceb301f8, 0x6b520030, 0x394d0944, 0x00000000}},  //   _בית_, _lægg, _bles_,\n  { {0x78ad092f, 0x3946010a, 0x9cb60014, 0x00000000}},  //   žavn, ukos_, _زمست,\n  { {0x39460ff9, 0x6b40000c, 0x673a016e, 0x00000000}},  //   rkos_, _sögu, _potj,\n  { {0x394d02d5, 0xd5ba0ffa, 0x39460dec, 0x00000000}},  //   _eles_, оси_, skos_,\n  { {0x394d00bb, 0xda650025, 0xfbb00044, 0x00000000}},  //   _fles_, _كافي, _ছবিত,\n  { {0xb4e800e8, 0x2d800026, 0x00000000, 0x00000000}},  //   बले_, noie_,   ,\n  { {0xd90d0167, 0x25a60b50, 0xdc11006b, 0x00000000}},  //   _دین_, _viol_, _məğl,\n  { {0x25f6013d, 0x628f0036, 0x00000000, 0x00000000}},  //   _एमपी_, ęcon,   ,\n  { {0x6b400073, 0x3b180ffb, 0x21290022, 0x00000000}},  //   _högs, _marq_, _pnah_,\n  { {0x056602dc, 0x2d8006f0, 0x2d4700fa, 0x00000000}},  //   _ювен, joie_, _põem_,\n  { {0x6d43001a, 0x59ce0061, 0x104b0088, 0x00000000}},  //   _înai, हीतर, іями_,\n  { {0x2bb5007d, 0x27e60ffc, 0x00000000, 0x00000000}},  //   _अंबा, iron_,   ,\n  { {0x3da7008b, 0x6b4001e5, 0xbf9b01d6, 0x00000000}},  //   драб, _lögs, fwêr,\n  { {0x98a4000a, 0x00000000, 0x00000000, 0x00000000}},  //   _anmč_,   ,   ,\n  { {0x1eab0025, 0x27e60ed5, 0x00000000, 0x00000000}},  // [1a90] _وادي_, jron_,   ,\n  { {0x6ec0001c, 0x27e6005b, 0xa3e6006e, 0x00000000}},  //   वडणु, dron_, _बटन_,\n  { {0x27e60211, 0x27e003df, 0x1a65025a, 0x00000000}},  //   eron_, áinn_, ریری_,\n  { {0x26de0058, 0x27e60ffd, 0xab5b0095, 0x00000000}},  //   _adto_, fron_, _stüd,\n  { {0x7d0d001a, 0x6d4f0026, 0x25be0045, 0x00000000}},  //   meas, _ilca, _attl_,\n  { {0xf7730426, 0x7d0d0038, 0xae030061, 0x00000000}},  //   خاص_, leas, _लहान_,\n  { {0x27e60211, 0xb9050044, 0x00000000, 0x00000000}},  //   aron_, _বউ_,   ,\n  { {0x7d0d001a, 0x00000000, 0x00000000, 0x00000000}},  //   neas,   ,   ,\n  { {0xa775007e, 0x99850010, 0xf8b20097, 0x00000000}},  //   _злач, _élő_, _תשמ_,\n  { {0x7d0d0051, 0x6b400039, 0x7c20016e, 0x00000000}},  //   heas, _högr, _šmrk,\n  { {0x7d0d00b0, 0x26c70059, 0x6d4f0095, 0x00000000}},  //   keas, mbno_, _olca,\n  { {0x361a00b6, 0xdb070023, 0x00000000, 0x00000000}},  //   _מועד, _bijë,   ,\n  { {0x2d800ffe, 0x7d0d0fff, 0xab640279, 0x00000000}},  //   voie_, deas, lmüş,\n  { {0x6d4f0919, 0x6b40009f, 0x3eac0030, 0x00000000}},  //   _alca, _lögr, ødt_,\n  { {0x23650039, 0x6b5205b7, 0x2d9602ea, 0x00000000}},  //   milj_, _jæge, ерас,\n  { {0x27e60f91, 0x7d0d0657, 0x1de10164, 0x00000000}},  //   yron_, geas, _फिरत,\n  { {0x6b520030, 0xed5700ed, 0xec7702ea, 0x00000000}},  // [1aa0] _læge, хот_, епт_,\n  { {0x78ad1000, 0x27e6062a, 0x6d4f0efe, 0x00000000}},  //   žavl, vron_, _elca,\n  { {0x7d0d0035, 0xeef7009b, 0x817500a1, 0x00000000}},  //   beas, _אמיר_, _سنیچ,\n  { {0xcee900a1, 0x7d0d0e5f, 0x00000000, 0x00000000}},  //   _ٹرین_, ceas,   ,\n  { {0x58831001, 0x27e60068, 0x00000000, 0x00000000}},  //   лыша, uron_,   ,\n  { {0xf093007b, 0x7bc4010a, 0x27e6088d, 0x00000000}},  //   אנד_, mpiu, rron_,\n  { {0x3872001a, 0xe1e701fa, 0x06cf0044, 0x00000000}},  //   _ţară_, _حس_, _রাশি,\n  { {0x27e61002, 0x85ba00a1, 0x69dc1003, 0x00000000}},  //   pron_, _ہاؤس_, _ivre,\n  { {0x8881007a, 0xb6030089, 0xd7ca0025, 0x00000000}},  //   _پیون, āšan, _رواه_,\n  { {0x41e601e1, 0x973c016c, 0x778302dc, 0x00000000}},  //   німа, _mićk, _блуз,\n  { {0xdb07000a, 0xf6290025, 0x00000000, 0x00000000}},  //   _dijè, _يسمى_,   ,\n  { {0x613f0065, 0x29020039, 0xd046006b, 0x00000000}},  //   _pëlq, _ökad_, lakə,\n  { {0x2bb50164, 0xe53b009b, 0x7d0d0035, 0x00000000}},  //   _अंधा, _מתאר, veas,\n  { {0x7d0d00e0, 0x4ea7007c, 0x69dc1004, 0x00000000}},  //   weas, ерба, _ovre,\n  { {0x7d0d001a, 0x3ea50c75, 0xdcfd0066, 0x00000000}},  //   teas, ält_, _jisħ,\n  { {0x2bb50309, 0xdcfd0066, 0x3a230085, 0x00000000}},  //   _अंदा, _misħ, _rrjp_,\n  { {0x69dc1005, 0xe7cf013d, 0x7d0d1006, 0x00000000}},  // [1ab0] _avre, _सौंप, reas,\n  { {0x7d0d0e5f, 0x64c4013e, 0x290400d9, 0x00000000}},  //   seas, lčič, _abma_,\n  { {0x7d0d00b0, 0xdcfd0089, 0x26c700ca, 0x00000000}},  //   peas, _eksā, vbno_,\n  { {0x64c400ca, 0x20090093, 0x21391007, 0x00000000}},  //   nčič, _kpai_, njsh_,\n  { {0x69dc1008, 0x399e00b9, 0xdb0f00fa, 0x00000000}},  //   _evre, _růst_, _lucé,\n  { {0x3f830006, 0x00000000, 0x00000000, 0x00000000}},  //   noju_,   ,   ,\n  { {0xc8f50265, 0xf7700647, 0xceb40097, 0x00000000}},  //   _извъ, حان_, ניק_,\n  { {0xab640279, 0x69c501ac, 0x00000000, 0x00000000}},  //   rmüş, mphe,   ,\n  { {0x290f1009, 0x3f830036, 0x00000000, 0x00000000}},  //   mega_, koju_,   ,\n  { {0x290f100a, 0x628a068f, 0x3f83007f, 0x00000000}},  //   lega_, _byfo, joju_,\n  { {0x2fc0000c, 0x628a0016, 0x63aa0026, 0x00000000}},  //   _stig_, _cyfo, _difn,\n  { {0x291d0d16, 0x290f01d9, 0x628a018e, 0x00000000}},  //   ndwa_, nega_, _dyfo,\n  { {0x307600e2, 0x61e8100b, 0xc8da009b, 0x00000000}},  //   тунс, ardl, וקרט,\n  { {0xdf1501fb, 0x290f006c, 0x2d9900f6, 0x00000000}},  //   льсь, hega_, _ahse_,\n  { {0x5ed40055, 0x290f01d9, 0x628a0016, 0x00000000}},  //   _তাদে, kega_, _gyfo,\n  { {0x290f100c, 0x00000000, 0x00000000, 0x00000000}},  //   jega_,   ,   ,\n  { {0xc4d2007b, 0x290f0004, 0x291d0009, 0x00000000}},  // [1ac0] יגן_, dega_, ddwa_,\n  { {0x7bc4007f, 0x00000000, 0x00000000, 0x00000000}},  //   rpiu,   ,   ,\n  { {0xe8fa008b, 0xab5b010f, 0xbea601fc, 0x00000000}},  //   дле_, _stüc, _јанк,\n  { {0x290f0059, 0x81bc0089, 0xd7e6013a, 0x00000000}},  //   gega_, lvēc, віко,\n  { {0xa41c0055, 0x00000000, 0x00000000, 0x00000000}},  //   _তথ্য_,   ,   ,\n  { {0x6d93100d, 0xbcfb0224, 0x69d801ca, 0x00000000}},  //   nçan, _jmén, áves,\n  { {0x69dc037e, 0x6f03011f, 0x290f00ca, 0x00000000}},  //   _uvre, _önce, bega_,\n  { {0x290f0107, 0x38c80123, 0x973c016c, 0x00000000}},  //   cega_, _ساری_, _mići,\n  { {0x98a3003b, 0x49170061, 0xa507003b, 0x00000000}},  //   _вите, _नसतो_, тења_,\n  { {0x5fdc03d7, 0xdc9b0049, 0xdcfd002b, 0x00000000}},  //   _बिजल, ויפל, _tisħ,\n  { {0xe737026b, 0x6d560022, 0x00000000, 0x00000000}},  //   _шеф_, khya,   ,\n  { {0xbcfb00f4, 0x27e90e3b, 0x628a0861, 0x00000000}},  //   _amén, šane_, _vyfo,\n  { {0x5064012b, 0x3f830d90, 0x442005d7, 0x00000000}},  //   атра, toju_, _éi_,\n  { {0x44260435, 0x643b0049, 0x628a0750, 0x00000000}},  //   _iro_, _קעגנ, _tyfo,\n  { {0x3f8309a4, 0x00000000, 0x00000000, 0x00000000}},  //   roju_,   ,   ,\n  { {0x44260570, 0xf1a4007e, 0x3f83100e, 0x00000000}},  //   _kro_, _крын, soju_,\n  { {0x290f100f, 0x9da802dc, 0xdb0f00e5, 0x00000000}},  // [1ad0] vega_, търа_, _ducî,\n  { {0x69c500bb, 0x3b54007e, 0x4426005b, 0x00000000}},  //   tphe, акур, _mro_,\n  { {0x290f1010, 0x7c26010f, 0x2bdf0316, 0x00000000}},  //   tega_, _erkr, _फटका,\n  { {0x69c501ed, 0x00000000, 0x00000000, 0x00000000}},  //   rphe,   ,   ,\n  { {0x290f0059, 0x44261011, 0x69c51012, 0x00000000}},  //   rega_, _nro_, sphe,\n  { {0x290f0004, 0x77840099, 0x6d4d0ac2, 0x00000000}},  //   sega_, аліз, lkaa,\n  { {0x44260ed6, 0x290f1013, 0x7f3c0049, 0x00000000}},  //   _aro_, pega_, ועגו,\n  { {0xdb0d0845, 0x7d1d002b, 0x6d4d021e, 0x00000000}},  //   mpañ, _jass, nkaa,\n  { {0x442600ca, 0x38600051, 0xb4650014, 0x00000000}},  //   _cro_, úirt_, دگاه,\n  { {0x7d1d001f, 0x44261014, 0xdced0091, 0x00000000}},  //   _lass, _dro_, dnač,\n  { {0x6d4d021e, 0x44261015, 0xfb160049, 0x00000000}},  //   kkaa, _ero_, אַכט_,\n  { {0x44260016, 0x6d4d1016, 0x7d1d0b8a, 0x00000000}},  //   _fro_, jkaa, _nass,\n  { {0x442601aa, 0x79890020, 0x656900b0, 0x00000000}},  //   _gro_, _mkew, mieh,\n  { {0x06e50044, 0xd6e50044, 0x65690142, 0x00000000}},  //   প্রি, প্রয, lieh,\n  { {0x7d1d1017, 0xfce607ca, 0x6d9300f4, 0x00000000}},  //   _bass, лово, rçan,\n  { {0x7d1d1017, 0xbacd0044, 0x6d4d1018, 0x00000000}},  //   _cass, _লাগছ, gkaa,\n  { {0x5f761019, 0x0c26007e, 0x7d1d01a2, 0x00000000}},  // [1ae0] _مادر, ыман, _dass,\n  { {0x6d5601dd, 0x6d4d00b0, 0x656901a2, 0x00000000}},  //   shya, akaa, hieh,\n  { {0x7d1d101a, 0x60d600ea, 0x1efb0097, 0x00000000}},  //   _fass, _keym, _אליע,\n  { {0x7d1d0056, 0x6d930181, 0x3940000c, 0x00000000}},  //   _gass, nçal, ðis_,\n  { {0x6f1e0047, 0x48e30605, 0x65690190, 0x00000000}},  //   _kapc, сочв, dieh,\n  { {0x7c24101b, 0x77910167, 0xe737005e, 0x00000000}},  //   mvir, قیقا, леч_,\n  { {0xdced0161, 0x7c2401e5, 0x7d1d01a3, 0x00000000}},  //   znač, lvir, _yass,\n  { {0x4426101c, 0x60d6101d, 0x645b00bb, 0x00000000}},  //   _pro_, _neym, fzui,\n  { {0x136a064b, 0x69de101e, 0x7c240211, 0x00000000}},  //   ешни_, lspe, nvir,\n  { {0xa3e503d7, 0xbcfb00f4, 0x07a6012b, 0x00000000}},  //   _फिर_, _amél, _сазн,\n  { {0xe1350057, 0x929400c0, 0xa2940245, 0x00000000}},  //   анны, ранц, рані,\n  { {0xd257008b, 0x518701f9, 0x4426101f, 0x00000000}},  //   уць_, ѓуна, _tro_,\n  { {0x44260059, 0x7d0400eb, 0x6446006c, 0x00000000}},  //   _uro_, dfis, äkid,\n  { {0x2b8f001f, 0x6f1e0035, 0x7d1d0207, 0x00000000}},  //   rück_, _capc, _sass,\n  { {0xd904026c, 0x7d0400f4, 0x6d4d00b0, 0x00000000}},  //   _ٹی_, ffis, tkaa,\n  { {0x62980119, 0x69de05ad, 0x9d181020, 0x00000000}},  //   _izvo, dspe, лост_,\n  { {0x81b60055, 0x7d1d0056, 0x69de002d, 0x00000000}},  // [1af0] _ছবি_, _vass, espe,\n  { {0x7d1d001f, 0x6569001f, 0x6d4d021e, 0x00000000}},  //   _wass, zieh, skaa,\n  { {0x7d1d01bc, 0x69de0479, 0xda1500ed, 0x00000000}},  //   _tass, gspe, рдењ,\n  { {0xe0e70044, 0x973c016c, 0xdce40036, 0x00000000}},  //   গ্রহ_, _miću, knię,\n  { {0x6d9309f7, 0x69de0035, 0xdb0d004a, 0x00000000}},  //   nçam, aspe, spañ,\n  { {0x6d58010a, 0x69de0048, 0x99d7002c, 0x00000000}},  //   _įvai, bspe, _مترا,\n  { {0xb8db0055, 0xf8c900f4, 0x764a005b, 0x00000000}},  //   _আজ_, _créé_, gyfy,\n  { {0x79a401f9, 0x7bdf0ddb, 0x00000000, 0x00000000}},  //   _груе, osqu,   ,\n  { {0x65690193, 0xdb0f008e, 0x7bdf01a2, 0x00000000}},  //   rieh, _lucí, nsqu,\n  { {0xe7871021, 0x60d6013f, 0x7bdf0181, 0x00000000}},  //   _субо, _seym, isqu,\n  { {0x7d04000c, 0x291f006c, 0x60d60173, 0x00000000}},  //   yfis, _kaua_, _peym,\n  { {0xc4f80025, 0x216a030d, 0x63a10022, 0x00000000}},  //   _معها_, тими_, smln,\n  { {0xb4c302fb, 0x6d93005d, 0x291f0020, 0x00000000}},  //   ्री_, rçal, _maua_,\n  { {0x2d8b0224, 0x69de01d6, 0x291f1022, 0x00000000}},  //   _akce_, yspe, _laua_,\n  { {0x7d040332, 0x69de098e, 0xbea61023, 0x00000000}},  //   tfis, xspe, равк,\n  { {0x7c24010a, 0x27e00f3a, 0x69de02e7, 0x00000000}},  //   tvir, šini_, vspe,\n  { {0xab66008b, 0x7d04009f, 0xdee60242, 0x00000000}},  // [1b00] авал, rfis, _копи,\n  { {0x7c24037e, 0x69de0a74, 0x68fb1024, 0x00000000}},  //   rvir, tspe, _acud,\n  { {0xbd8a0188, 0x399c002a, 0x7d0400ea, 0x00000000}},  //   _لندن_, híse_, pfis,\n  { {0x06cf0044, 0x6d43001a, 0xc7c6004d, 0x00000000}},  //   _রাগি, _înap, аски,\n  { {0x779402fd, 0x27e00051, 0xdb0d000c, 0x00000000}},  //   میرا, éin_, ppað,\n  { {0x2d921025, 0x18670467, 0x00000000, 0x00000000}},  //   llye_, шачи_,   ,\n  { {0xdb0e0065, 0x06d80044, 0x09e30867, 0x00000000}},  //   _libë, _সাদি, _морн,\n  { {0x27e9001e, 0xa5340c24, 0x399c0051, 0x00000000}},  //   šana_, снич, físe_,\n  { {0x362400a1, 0xc955007e, 0x00000000, 0x00000000}},  //   _گواہ, _утры,   ,\n  { {0x316b0036, 0x394400f6, 0xb35402b8, 0x00000000}},  //   wicz_, _homs_, скош,\n  { {0x7c29002b, 0xe81e006e, 0x44e80044, 0x00000000}},  //   _ġerm, पिका_, ক্ষক_,\n  { {0x26dc0ecf, 0x7bc60091, 0x8c48005d, 0x00000000}},  //   lavo_, _otku, _kağı,\n  { {0x39440193, 0xb4d202d2, 0x1b1d0044, 0x00000000}},  //   _moms_, वरी_, নাতে_,\n  { {0x200501d5, 0x26dc0006, 0x6d9300d4, 0x00000000}},  //   ċli_, navo_, rçam,\n  { {0x139b0104, 0x539b009b, 0xc1790006, 0x00000000}},  //   _שבוע, _שיוו, urės_,\n  { {0x39440fdb, 0x5d781026, 0x00000000, 0x00000000}},  //   _noms_, айся_,   ,\n  { {0x60dd0058, 0x8c48006b, 0x31690032, 0x00000000}},  // [1b10] masm, _nağı, _imaz_,\n  { {0x7bdf00f4, 0x68fb0207, 0x26dc0059, 0x00000000}},  //   rsqu, _scud, javo_,\n  { {0x26dc0006, 0x6f15008e, 0x49b80439, 0x00000000}},  //   davo_, mezc, لاند_,\n  { {0xdb0e1027, 0x8c48005d, 0x3944009d, 0x00000000}},  //   _libè, _bağı, _coms_,\n  { {0xdc3500bd, 0x394400ea, 0x27ff009d, 0x00000000}},  //   _האָט_, _doms_, _qqun_,\n  { {0x8c48005d, 0x26dc0006, 0xf3fe0044, 0x00000000}},  //   _dağı, gavo_, ্টার_,\n  { {0xcf580104, 0x6b520190, 0xb34500fa, 0x00000000}},  //   שבות_, _mægl, _loçã,\n  { {0xb4c301f5, 0x74150025, 0x5e78009b, 0x00000000}},  //   ्रे_, موعا, יתון_,\n  { {0x69c70182, 0x26dc0059, 0x212009e4, 0x00000000}},  //   _htje, bavo_, _raih_,\n  { {0x26dc1028, 0x43740088, 0xda0e007d, 0x00000000}},  //   cavo_, жуют, _सहमत_,\n  { {0xe6950054, 0x6f15008e, 0x00000000, 0x00000000}},  //   _الاد, dezc,   ,\n  { {0xf65201f8, 0x67211029, 0x8c480279, 0x00000000}},  //   _מצב_, _halj, _yağı,\n  { {0x672103b6, 0xc882006b, 0x5fb80061, 0x00000000}},  //   _kalj, _peşə_, _आढळल,\n  { {0x20020770, 0x69c70243, 0x00000000, 0x00000000}},  //   rtki_, _otje,   ,\n  { {0xed5a102a, 0x6721003b, 0x2002102b, 0x00000000}},  //   гов_, _malj, stki_,\n  { {0x26dc102c, 0x20020022, 0xc212009b, 0x00000000}},  //   zavo_, ptki_, _זהה_,\n  { {0x39440299, 0x0ab60025, 0x69c70023, 0x00000000}},  // [1b20] _roms_, محاد, _atje,\n  { {0xef1a012b, 0x6721102d, 0x3944049b, 0x00000000}},  //   _смо_, _nalj, _soms_,\n  { {0x26dc0006, 0x2601004a, 0x316901c3, 0x00000000}},  //   vavo_, jóo_, _ymaz_,\n  { {0xb4c30316, 0xd9100167, 0x69c3102e, 0x00000000}},  //   ्रो_, بیر_, ínea,\n  { {0x67210107, 0xdb0e00f4, 0x2be2013d, 0x00000000}},  //   _balj, _libé, _पिटा,\n  { {0xa09b061e, 0x06d80055, 0x7d160c87, 0x00000000}},  //   ניסט, _সাহি, leys,\n  { {0x26dc102f, 0x6d46002d, 0x67210340, 0x00000000}},  //   ravo_, _koka, _dalj,\n  { {0x6d460234, 0x7d161030, 0x26dc0059, 0x00000000}},  //   _joka, neys, savo_,\n  { {0x6d460006, 0x67210065, 0x6843007c, 0x00000000}},  //   _moka, _falj, _ента,\n  { {0x69c1028c, 0x8c1b009b, 0x60c40173, 0x00000000}},  //   _élec, נויי, _afim,\n  { {0x60dd002d, 0x6d460007, 0x7179013b, 0x00000000}},  //   tasm, _ooka, ибор_,\n  { {0x6d461031, 0x67211032, 0x27e00091, 0x00000000}},  //   _noka, _zalj, šinu_,\n  { {0xd46705b5, 0xc05803e8, 0x60dd01a3, 0x00000000}},  //   _лице_, бір_, rasm,\n  { {0xc0580245, 0x60c40146, 0x2bdb013d, 0x00000000}},  //   сію_, _efim, मीफा,\n  { {0x6f150211, 0x6d9300d4, 0x00000000, 0x00000000}},  //   rezc, lçai,   ,\n  { {0x22ae005f, 0x2b940210, 0x00000000, 0x00000000}},  //   mək_, bäck_,   ,\n  { {0x69c71033, 0x6d93028c, 0x6d460213, 0x00000000}},  // [1b30] _stje, nçai, _doka,\n  { {0x8aa70423, 0x69c7012d, 0x3f8a00d0, 0x00000000}},  //   бред, _ptje, cobu_,\n  { {0x2bb501f5, 0x22ae013f, 0x2b5800e5, 0x00000000}},  //   _अंका, nək_, _dlrc_,\n  { {0x6721037e, 0x6dbc0091, 0x75220027, 0x00000000}},  //   _salj, _očaj, _naoz,\n  { {0x672108b2, 0x387f0066, 0xf74501ab, 0x00000000}},  //   _palj, _qxur_, жело,\n  { {0x27e91034, 0x7bcd1035, 0xdb07004a, 0x00000000}},  //   šano_, mpau, _fijá,\n  { {0x672101cd, 0x6723037e, 0x69c70182, 0x00000000}},  //   _valj, rdnj, _utje,\n  { {0x22ae006b, 0xdb0e0923, 0x6b52000c, 0x00000000}},  //   dək_, _ribé, _nægj,\n  { {0xe3b61036, 0x6721002b, 0x27e0002a, 0x00000000}},  //   обы_, _talj, áint_,\n  { {0x798b005b, 0x98ad0142, 0xd6d800e2, 0x00000000}},  //   logw, _hneď_, _гтц_,\n  { {0xe2990200, 0x442700d3, 0xd064006b, 0x00000000}},  //   ран_, _گراف, ərəs,\n  { {0xe43504e8, 0x75220288, 0x00000000, 0x00000000}},  //   _وفاد, _gaoz,   ,\n  { {0x6d461037, 0x2bb501f5, 0x656b0066, 0x00000000}},  //   _roka, _अंगा, _imgh,\n  { {0x6d461038, 0xbf9b02d5, 0x83fd0010, 0x00000000}},  //   _soka, stên, rződ,\n  { {0x22ae005f, 0x7d16021e, 0x3f8a0161, 0x00000000}},  //   cək_, teys, robu_,\n  { {0x2fc90009, 0x2b9401a2, 0x3f8a0941, 0x00000000}},  //   _ftag_, päck_, sobu_,\n  { {0xed5700ed, 0x7bcd011c, 0x7d161039, 0x00000000}},  // [1b40] цот_, gpau, reys,\n  { {0x68e9014a, 0x6d460036, 0x290d0035, 0x00000000}},  //   _aded, _woka, _abea_,\n  { {0x32050038, 0x6d46103a, 0xc8ca01af, 0x00000000}},  //   ntly_, _toka, لوان_,\n  { {0xc27a0049, 0x25ef0061, 0x798b103b, 0x00000000}},  //   ברעי, ींनी_, gogw,\n  { {0x68e9103c, 0x88160558, 0x57a600e2, 0x00000000}},  //   _dded, تباط, ошка,\n  { {0x05ea103d, 0x68e90009, 0xe3a70355, 0x00000000}},  //   афии_, _eded, _زر_,\n  { {0xd6d9103e, 0xd5b70057, 0xda0e03d7, 0x00000000}},  //   сті_, осы_, _सहित_,\n  { {0x7c2904eb, 0x15d9009e, 0x00000000, 0x00000000}},  //   _šeri, حدوں_,   ,\n  { {0x8d5b0049, 0xe0df01aa, 0x1b1d0044, 0x00000000}},  //   יכקי, chòy_, নারে_,\n  { {0x46a6008b, 0xc7b90010, 0xd7640167, 0x00000000}},  //   _дазв, _erős_, _عنای,\n  { {0x2fc9103f, 0x2b94010f, 0x3abb00a0, 0x00000000}},  //   _stag_, räch_, ימינ,\n  { {0x81bc001e, 0x22ae005f, 0x6d9300f6, 0x00000000}},  //   lvēk, rək_, lçav,\n  { {0x32050133, 0x22ae006b, 0x00000000, 0x00000000}},  //   atly_, sək_,   ,\n  { {0xdefb008b, 0x6d930a06, 0x7c3b00f6, 0x00000000}},  //   шым_, nçav, _àuri,\n  { {0xd2500054, 0x320500ab, 0x2cb0006b, 0x00000000}},  //   _سنة_, ctly_, əndə_,\n  { {0x8d7700a1, 0x2fc90009, 0x5cb9007e, 0x00000000}},  //   زازا, _ttag_, слаў_,\n  { {0x4c94007c, 0x0cab0d15, 0x00000000, 0x00000000}},  // [1b50] дитс, ртви_,   ,\n  { {0x69c3004a, 0x88d70044, 0x00000000, 0x00000000}},  //   íneo, _হাইক,   ,\n  { {0x39150242, 0x7bcd0006, 0x0a680751, 0x00000000}},  //   змер, spau, орци_,\n  { {0x7bcd0052, 0x9b450014, 0x628e00b4, 0x00000000}},  //   ppau, _کنسو, żbow,\n  { {0xdd3a009b, 0x798b1040, 0x00000000, 0x00000000}},  //   _הערכ, rogw,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xd90f026c, 0x80dc0044, 0xb9010044, 0x00000000}},  //   _لیا_, _ভাস্, _দা_,\n  { {0xea000011, 0xab5b01a2, 0x00000000, 0x00000000}},  //   _hiếp_, _stüh,   ,\n  { {0x657e00f4, 0xb7d503ec, 0xf3f10025, 0x00000000}},  //   épha, _رقاب, رأة_,\n  { {0xdce4014a, 0x00000000, 0x00000000, 0x00000000}},  //   kniğ,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x9f420802, 0x320500ab, 0x00000000, 0x00000000}},  //   mské_, rtly_,   ,\n  { {0x9f4201ca, 0x320500ab, 0x232900aa, 0x00000000}},  //   lské_, stly_, _голи_,\n  { {0x443f002b, 0x13a700a1, 0x00000000, 0x00000000}},  //   mxu_, _بنتی_,   ,\n  { {0x9f42004f, 0x6da60bbd, 0xd24e023c, 0x00000000}},  //   nské_, зива, _منو_,\n  { {0xf8b90011, 0x657b1041, 0x442f0145, 0x00000000}},  //   _ngũ_, nnuh, _krg_,\n  { {0x27e907a0, 0x442f00d9, 0x81a5023c, 0x00000000}},  // [1b60] šanj_, _jrg_, _تحول,\n  { {0x8b26008b, 0x7d0f0061, 0xed160036, 0x00000000}},  //   ядзе, _ebcs, _łódź_,\n  { {0x2d9e00d4, 0x69da0025, 0x442f0d96, 0x00000000}},  //   ïtes_, صباح_, _lrg_,\n  { {0x442f1042, 0xa6d80044, 0x9f4201ca, 0x00000000}},  //   _org_, _সাইট, dské_,\n  { {0x181800a2, 0x3eba012d, 0x00000000, 0x00000000}},  //   تراک_, _kgpt_,   ,\n  { {0xbb4a0054, 0x7bcb056b, 0xf8af00a1, 0x00000000}},  //   _الآن_, ígue, اکِ_,\n  { {0x442f00f8, 0x6b52000c, 0x00000000, 0x00000000}},  //   _arg_, _nægi,   ,\n  { {0x6d440169, 0xceb300b3, 0xd90d0167, 0x00000000}},  //   njia, עיה_, _نیم_,\n  { {0x9f590073, 0x00000000, 0x00000000, 0x00000000}},  //   ltså_,   ,   ,\n  { {0x325400ed, 0x442f1043, 0xdb1d0181, 0x00000000}},  //   двор, _drg_, _ausê,\n  { {0x442f015c, 0x27e61044, 0x98bf0066, 0x00000000}},  //   _erg_, lson_, _qmuħ_,\n  { {0x463b0049, 0x443f0009, 0x55bb009b, 0x00000000}},  //   _לעבע, bxu_, _המאו,\n  { {0x26de008d, 0x24aa0055, 0xdb050051, 0x00000000}},  //   _keto_, _গ্রহ, smhé,\n  { {0x27e6028c, 0xd370007a, 0xbf9b009d, 0x00000000}},  //   ison_, _جهت_, ptêm,\n  { {0x80dc0044, 0x26de0d94, 0x2cb90022, 0x00000000}},  //   _ভার্, _meto_, _pgsd_,\n  { {0x5d99008b, 0x26de086e, 0xebd9005e, 0x00000000}},  //   ікаў_, _leto_, ждаш_,\n  { {0x27e6016c, 0x61fa1045, 0x7bc0009d, 0x00000000}},  // [1b70] json_, lutl, _émul,\n  { {0x8aa70072, 0x26de0181, 0x6d5f1046, 0x00000000}},  //   пред, _neto_, shqa,\n  { {0x98bf001a, 0x61fa1047, 0x7c290066, 0x00000000}},  //   _nouă_, nutl, _ġeru,\n  { {0x1a6801ef, 0x0dba00a1, 0x27e61048, 0x00000000}},  //   سیقی_, _گئیں_, fson_,\n  { {0xea00001d, 0x26de1049, 0x7d0d0093, 0x00000000}},  //   _tiếp_, _beto_, mfas,\n  { {0x7c2d021a, 0x9f420161, 0x49bb03ec, 0x00000000}},  //   mvar, tské_, _هارد_,\n  { {0x442f063e, 0x68e201ee, 0xe708023c, 0x00000000}},  //   _srg_, baod, ستون_,\n  { {0x9f42004f, 0x98bf000d, 0x53c90175, 0x00000000}},  //   rské_, _două_, огим_,\n  { {0xb4bd001c, 0x7c2d104a, 0xbcfb0010, 0x00000000}},  //   _आली_, nvar, _elég,\n  { {0x04ff0055, 0x9f4201dc, 0xdb1d0039, 0x00000000}},  //   ্যের_, pské_, _utsä,\n  { {0x6d5d005d, 0x7d0d01c3, 0x7c2d104b, 0x00000000}},  //   _olsa, kfas, hvar,\n  { {0x442f0059, 0x65600051, 0x5455104c, 0x00000000}},  //   _trg_, chmh, _овет,\n  { {0x7d0d0190, 0x442f0085, 0x63a30022, 0x00000000}},  //   dfas, _urg_, _thnn,\n  { {0xdfcf0054, 0x6d5d00f4, 0x442d0023, 0x00000000}},  //   شيف_, _alsa, mve_,\n  { {0x7c2d0006, 0x7d0d104d, 0x00000000, 0x00000000}},  //   evar, ffas,   ,\n  { {0x75290047, 0x78bb000b, 0x27e60ca4, 0x00000000}},  //   ndez, _nguv, yson_,\n  { {0xdced0521, 0x442d0023, 0x6d440022, 0x00000000}},  // [1b80] znać, nve_, rjia,\n  { {0x6d5d0232, 0xda660025, 0xeb9f0056, 0x00000000}},  //   _elsa, واضي, _spør_,\n  { {0x0f5701f8, 0x27e60ca4, 0x26de008e, 0x00000000}},  //   _חיים_, wson_, _reto_,\n  { {0x442d0119, 0x98a00059, 0x26de104e, 0x00000000}},  //   kve_, žič_, _seto_,\n  { {0xa3f80055, 0x442d104f, 0x75290026, 0x00000000}},  //   _অন্য_, jve_, ddez,\n  { {0x442d07fd, 0x6f1c005b, 0x6446006c, 0x00000000}},  //   dve_, nerc, äkim,\n  { {0xe1e7009c, 0x442d00b5, 0x26de0052, 0x00000000}},  //   _جس_, eve_, _veto_,\n  { {0x27e60c0d, 0x6f1c0161, 0x6d9300f6, 0x00000000}},  //   pson_, herc, lçar,\n  { {0xea000011, 0x26de1050, 0x6f1c0232, 0x00000000}},  //   _khắp_, _teto_, kerc,\n  { {0x6d930a0a, 0x6f1c00ca, 0x68e0014a, 0x00000000}},  //   nçar, jerc, _hemd,\n  { {0x6f1c1051, 0x442d0207, 0x7d0d014a, 0x00000000}},  //   derc, ave_, yfas,\n  { {0x39461052, 0x67280e61, 0x2fc0054c, 0x00000000}},  //   njos_, _hadj, _buig_,\n  { {0x442d1053, 0x38660b41, 0x6f1c005b, 0x00000000}},  //   cve_, nzor_, ferc,\n  { {0x6f1c1054, 0x61fa067c, 0x7c2d013f, 0x00000000}},  //   gerc, putl, vvar,\n  { {0x67280065, 0x7d0d0066, 0x6e94007c, 0x00000000}},  //   _madj, tfas, виру,\n  { {0xbcfb1055, 0x67280059, 0x2fc000d4, 0x00000000}},  //   _amér, _ladj, _fuig_,\n  { {0x6f1c05d2, 0x7d0d001f, 0x25a60048, 0x00000000}},  // [1b90] berc, rfas, _mhol_,\n  { {0x7c2d06a1, 0x6f1c1056, 0x6728037e, 0x00000000}},  //   rvar, cerc, _nadj,\n  { {0x442d1057, 0xfe350049, 0x00000000, 0x00000000}},  //   zve_, _װאָך_,   ,\n  { {0xb4bd001c, 0x8aa40242, 0x673a1058, 0x00000000}},  //   _आले_, труд, _antj,\n  { {0xdd91026c, 0xe739008b, 0x27e91059, 0x00000000}},  //   _لوگ_, зел_, éan_,\n  { {0x25a60047, 0x9f59009d, 0x442d00f8, 0x00000000}},  //   _ahol_, fusé_, vve_,\n  { {0xf77001fa, 0xe61100a2, 0x69dc0016, 0x00000000}},  //   جان_, اشت_, _gwre,\n  { {0x442d03f7, 0x94250893, 0x6f1c0428, 0x00000000}},  //   tve_, емие, zerc,\n  { {0x442d0c60, 0x75290010, 0x291d105a, 0x00000000}},  //   uve_, rdez, mewa_,\n  { {0x442d0004, 0x291d000b, 0x1b1d0055, 0x00000000}},  //   rve_, lewa_, নাকে_,\n  { {0x63b8037e, 0x442d105b, 0x6f1c014a, 0x00000000}},  //   _divn, sve_, verc,\n  { {0x6f1c0061, 0x2fc00129, 0x6728016c, 0x00000000}},  //   werc, _puig_, _zadj,\n  { {0x394d0343, 0xdbd701c2, 0x6f1c0781, 0x00000000}},  //   _moes_, _jäät, terc,\n  { {0x7ae504cb, 0x291d00e7, 0xdb1d009d, 0x00000000}},  //   jaht, hewa_, _fusé,\n  { {0x291d0020, 0x42520355, 0x6298007f, 0x00000000}},  //   kewa_, _منور, _gyvo,\n  { {0x6f1c059a, 0xb4bd0061, 0x2fc00058, 0x00000000}},  //   serc, _आलो_, _tuig_,\n  { {0x6f1c04cb, 0xac86105c, 0xa802006b, 0x00000000}},  // [1ba0] perc, хгал, _çıxd,\n  { {0xe625001d, 0x395f06ed, 0x6b520030, 0x00000000}},  //   _đông_, _alus_, _nægt,\n  { {0x672801f3, 0xfce6012b, 0x68e0023a, 0x00000000}},  //   _radj, _поно, _pemd,\n  { {0x8c4607e1, 0x707700a6, 0x67280059, 0x00000000}},  //   _земе, _آمیز_, _sadj,\n  { {0x394d0975, 0x2d800036, 0xea000082, 0x00000000}},  //   _does_, mnie_, _thắp_,\n  { {0x2d800046, 0x7c260213, 0x25ad0066, 0x00000000}},  //   lnie_, _iskr, emel_,\n  { {0x56930407, 0xfaa3091b, 0x395f01d5, 0x00000000}},  //   лашт, _баро, _flus_,\n  { {0xa5340216, 0x394d00ab, 0x2d800aba, 0x00000000}},  //   тнич, _goes_, nnie_,\n  { {0x63b80161, 0x6728105d, 0x6b520146, 0x00000000}},  //   _pivn, _tadj, _fægt,\n  { {0x2d800007, 0x3f85016c, 0xd62a00ed, 0x00000000}},  //   hnie_, čluk_, _нозе_,\n  { {0x7d060073, 0x3f9100b9, 0x2d920173, 0x00000000}},  //   _ocks, vozu_, koye_,\n  { {0xea00001d, 0x25d9007a, 0x2d800036, 0x00000000}},  //   _nhập_, _آهنگ_, jnie_,\n  { {0x2d800046, 0xe5a3004d, 0x00000000, 0x00000000}},  //   dnie_, _сици,   ,\n  { {0x2d800046, 0x291d105e, 0x21290022, 0x00000000}},  //   enie_, zewa_, _waah_,\n  { {0xbe88007c, 0x7c26105f, 0x3da70745, 0x00000000}},  //   есте_, _askr, ераб,\n  { {0x2d801060, 0x44260058, 0x2d920dfc, 0x00000000}},  //   gnie_, _kso_, goye_,\n  { {0x7ae501c2, 0x4426012d, 0xab64014a, 0x00000000}},  // [1bb0] taht, _jso_, klüğ,\n  { {0x6d5a008d, 0x4426001c, 0x2d800832, 0x00000000}},  //   ëtar, _mso_, anie_,\n  { {0x395f032c, 0xf7710167, 0x2d920061, 0x00000000}},  //   _plus_, یات_, boye_,\n  { {0x4426022b, 0xdbd7021e, 0x2d800036, 0x00000000}},  //   _oso_, _päät, cnie_,\n  { {0x7ae5021e, 0xbcfb0211, 0x44261061, 0x00000000}},  //   paht, _eléc, _nso_,\n  { {0x394d0343, 0x6d4f014a, 0x291d01a3, 0x00000000}},  //   _woes_, _hoca, sewa_,\n  { {0x291d000b, 0x4426011c, 0x6d4f014a, 0x00000000}},  //   pewa_, _aso_, _koca,\n  { {0x44261062, 0x1da7013d, 0x6d4f00d9, 0x00000000}},  //   _bso_, _कीमत, _joca,\n  { {0x6d4f01ee, 0x42d5007e, 0x44261063, 0x00000000}},  //   _moca, кіну, _cso_,\n  { {0x2d800ef2, 0x6b52000c, 0x60cd0082, 0x00000000}},  //   znie_, _hægr, _afam,\n  { {0x44260b3c, 0x36d4007c, 0x31600c8f, 0x00000000}},  //   _eso_, _сохр, _pliz_,\n  { {0x27e9001e, 0x29020039, 0x6d4f016e, 0x00000000}},  //   šanu_, _ökat_, _noca,\n  { {0xd24e0167, 0x44260087, 0x2d920068, 0x00000000}},  //   منی_, _gso_, voye_,\n  { {0x6b52000c, 0x2d800652, 0x636400f6, 0x00000000}},  //   _lægr, wnie_, _cònd,\n  { {0x2d800046, 0x7c290107, 0xdee3007c, 0x00000000}},  //   tnie_, _šerp, роси,\n  { {0xc5f20049, 0xab64014a, 0x2d8000d9, 0x00000000}},  //   ידל_, zlüğ, unie_,\n  { {0x2d800036, 0x81bc01c5, 0x00000000, 0x00000000}},  // [1bc0] rnie_, svēt,   ,\n  { {0x2d800036, 0xab5b010f, 0x998d0936, 0x00000000}},  //   snie_, _stür, _češ_,\n  { {0x6d4f002a, 0x6dbc0cd6, 0xea000011, 0x00000000}},  //   _foca, _včas, _thập_,\n  { {0x6d4f1064, 0x00000000, 0x00000000, 0x00000000}},  //   _goca,   ,   ,\n  { {0xf74601b3, 0x7c260166, 0x4c83005e, 0x00000000}},  //   кедо, _uskr, _вляв,\n  { {0x7d04011f, 0x7bd61065, 0x6d4f004a, 0x00000000}},  //   lgis, mpyu, _zoca,\n  { {0x27ed00b1, 0xab64014a, 0x1602013d, 0x00000000}},  //   _even_, rlüğ, रंधर_,\n  { {0x6d4f1066, 0x4426007f, 0x00000000, 0x00000000}},  //   _xoca, _pso_,   ,\n  { {0x7c24010f, 0xd3a601ee, 0x00000000, 0x00000000}},  //   nwir, кроп,   ,\n  { {0x44260059, 0x80dc0044, 0x60cd0026, 0x00000000}},  //   _vso_, _ভাগ্, _sfam,\n  { {0xd5af007c, 0x81bc0089, 0xa266005e, 0x00000000}},  //   _вс_, evēr, тъпл,\n  { {0x7c240a37, 0x9257007c, 0x44261067, 0x00000000}},  //   kwir, тают_, _tso_,\n  { {0x4426049a, 0x6d4f06c2, 0x250b00a1, 0x00000000}},  //   _uso_, _roca, _آرمی_,\n  { {0x6d4f0035, 0x7c24004a, 0xc7b40049, 0x00000000}},  //   _soca, dwir, רבֿ_,\n  { {0x6d4f1068, 0x798200ab, 0xd3781069, 0x00000000}},  //   _poca, know, mić_,\n  { {0xd3781069, 0x7d040a8e, 0x79820046, 0x00000000}},  //   lić_, ggis, jnow,\n  { {0x7c24106a, 0xd0110025, 0x6c54030d, 0x00000000}},  // [1bd0] gwir, _الخ_, акту,\n  { {0xd378106b, 0x31790036, 0x765800b0, 0x00000000}},  //   nić_, lisz_, kyvy,\n  { {0xdb05002a, 0x27ed0039, 0x6d4f00d6, 0x00000000}},  //   gmhá, _sven_, _toca,\n  { {0x7c240061, 0xd3780107, 0x6d4f016c, 0x00000000}},  //   bwir, hić_, _uoca,\n  { {0x9f4201ca, 0xd3780091, 0xbcfb0051, 0x00000000}},  //   lská_, kić_, _gléa,\n  { {0xd3780091, 0x628a00ab, 0x00000000, 0x00000000}},  //   jić_, _oxfo,   ,\n  { {0x2d550018, 0x9f4206b8, 0xd3780091, 0x00000000}},  //   _fået_, nská_, dić_,\n  { {0x2d550030, 0xdb1d0428, 0xceb400a0, 0x00000000}},  //   _gået_, _musí, סיק_,\n  { {0xd378106c, 0xa898106d, 0xe7050014, 0x00000000}},  //   fić_, _акту_, _مسای,\n  { {0x65620007, 0x29020039, 0xd3780091, 0x00000000}},  //   _eloh, _ökar_, gić_,\n  { {0x3f830091, 0x2fd20007, 0x752b0032, 0x00000000}},  //   dnju_, _styg_, _tagz,\n  { {0x7412007a, 0xf5300025, 0xd4350070, 0x00000000}},  //   جویا, _وإن_, _معتب,\n  { {0xd378106e, 0x628a106f, 0x44240016, 0x00000000}},  //   bić_, _exfo, cwm_,\n  { {0xd3781070, 0x2d991071, 0x00000000, 0x00000000}},  //   cić_, _akse_,   ,\n  { {0x31791072, 0x79820036, 0x81bd0089, 0x00000000}},  //   bisz_, ynow, rvēr,\n  { {0x7c240503, 0xbcfb0051, 0x81bd0089, 0x00000000}},  //   twir, _pléa, svēr,\n  { {0x09cc001c, 0x3f830fcd, 0xeafa0025, 0x00000000}},  // [1be0] ाऱ्य, bnju_, فرات_,\n  { {0xfbcd0055, 0x7c241073, 0x3f83016c, 0x00000000}},  //   _লিখত, rwir, cnju_,\n  { {0x79820061, 0xe8fa1074, 0x7c241075, 0x00000000}},  //   tnow, еле_, swir,\n  { {0xd378106e, 0x786a0010, 0x88e6007c, 0x00000000}},  //   zić_, _növé, ужде,\n  { {0xe3c80011, 0x79820036, 0x00000000, 0x00000000}},  //   _mực_, rnow,   ,\n  { {0xe3c8001d, 0xa5f81076, 0xdb1c008d, 0x00000000}},  //   _lực_, веку_, _mirë,\n  { {0x6b63103e, 0xd37801cd, 0xb90a0055, 0x00000000}},  //   _укра, vić_, _মা_,\n  { {0x7bc61077, 0x1db4001c, 0x3f83037e, 0x00000000}},  //   _kuku, ंगित, znju_,\n  { {0xa3df001c, 0xd3780166, 0xe644005d, 0x00000000}},  //   धील_, tić_, ılığ,\n  { {0x7bc60061, 0x4424018e, 0x06b90044, 0x00000000}},  //   _muku, rwm_, ঁড়ি,\n  { {0x7bc61078, 0xd3780363, 0x362400a1, 0x00000000}},  //   _luku, rić_, _خواہ,\n  { {0xe3c8001d, 0xd056005f, 0x2906022b, 0x00000000}},  //   _cực_, _heyə, ngoa_,\n  { {0xd3781070, 0xf5930054, 0x69c100f4, 0x00000000}},  //   pić_, _النج, _élev,\n  { {0x31790036, 0x9f420161, 0x00000000, 0x00000000}},  //   sisz_, tská_,   ,\n  { {0x31790046, 0x3f830091, 0xddab1079, 0x00000000}},  //   pisz_, rnju_, етал_,\n  { {0x7bc6008d, 0x3f830107, 0x9f420161, 0x00000000}},  //   _buku, snju_, rská_,\n  { {0x7bc6107a, 0x3f830243, 0xbb750545, 0x00000000}},  // [1bf0] _cuku, pnju_, агај,\n  { {0x7bc6023a, 0x9f420802, 0x332e0066, 0x00000000}},  //   _duku, pská_, _jafx_,\n  { {0x0b88003b, 0x00000000, 0x00000000, 0x00000000}},  //   усти_,   ,   ,\n  { {0x2d99006c, 0xf1c90082, 0xdc340161, 0x00000000}},  //   _ukse_, _hạc_, _zúča,\n  { {0x7bc60061, 0x00000000, 0x00000000, 0x00000000}},  //   _guku,   ,   ,\n  { {0x2906002d, 0x6d4d006c, 0x332e002b, 0x00000000}},  //   agoa_, ljaa, _nafx_,\n  { {0x2002107b, 0xd056005f, 0x7bc6010f, 0x00000000}},  //   zuki_, _deyə, _zuku,\n  { {0xf1c9001d, 0x6d4d107c, 0x69d5107d, 0x00000000}},  //   _lạc_, njaa, _itze,\n  { {0x68eb011c, 0xe3c80011, 0x799b107e, 0x00000000}},  //   magd, _rực_, _ikuw,\n  { {0x69c7000b, 0x68eb05ad, 0x466b0088, 0x00000000}},  //   _kuje, lagd, _прем_,\n  { {0x216a107f, 0x672301d9, 0xdb1c01aa, 0x00000000}},  //   вини_, menj, _dirè,\n  { {0x69c70219, 0x672301d9, 0x7c3b01d5, 0x00000000}},  //   _muje, lenj, _ġurn,\n  { {0xe3c8001d, 0x660301d5, 0xf1c90011, 0x00000000}},  //   _vực_, lunk, _bạc_,\n  { {0x7bc60518, 0x20021080, 0x67231081, 0x00000000}},  //   _ruku, ruki_, nenj,\n  { {0x13da08b7, 0x7bc61082, 0x200204cb, 0x00000000}},  //   _দিয়, _suku, suki_,\n  { {0x7bc60169, 0x64460039, 0x67231083, 0x00000000}},  //   _puku, åkig, henj,\n\n  { {0x69d5022b, 0x672301d6, 0x68eb011c, 0x00000000}},  // [1c00] _atze, kenj, dagd,\n  { {0x672300ee, 0xaaba0167, 0x65691084, 0x00000000}},  //   jenj, ندار_, hheh,\n  { {0x672300ee, 0x6da60265, 0x66030006, 0x00000000}},  //   denj, _вина, junk,\n  { {0x7bc61085, 0xe3c8001d, 0xd91002fd, 0x00000000}},  //   _tuku, _lựa_, ثیر_,\n  { {0x386008cc, 0x65690020, 0x7e97025a, 0x00000000}},  //   áir_, dheh, _منیر_,\n  { {0x66030142, 0x67231086, 0x7ae71087, 0x00000000}},  //   funk, genj, _gejt,\n  { {0x25fd0164, 0x7aaa0061, 0x66030010, 0x00000000}},  //   रंगी_, _करिअ, gunk,\n  { {0x3f980224, 0xa6e90011, 0x74140647, 0x00000000}},  //   horu_, _ngươ, موبا,\n  { {0xdb07008e, 0x658800b9, 0x672301a2, 0x00000000}},  //   _gijó, běhn, benj,\n  { {0x4aaa001c, 0x67231088, 0x60c41089, 0x00000000}},  //   _कराव, cenj, _agim,\n  { {0x69c10047, 0x69c0016a, 0xe3c80011, 0x00000000}},  //   _élet, _kime, _dựa_,\n  { {0x69c00f06, 0xf1c90011, 0x2c5e0089, 0x00000000}},  //   _jime, _sạc_, _kādā_,\n  { {0xb4c201f5, 0x938a005e, 0x69c00d36, 0x00000000}},  //   ंशी_, _иска_, _mime,\n  { {0x69c0000b, 0x09d70055, 0x2bb20061, 0x00000000}},  //   _lime, _হিসা, _जळगा,\n  { {0xdef8008b, 0x7ae70010, 0xa1870783, 0x00000000}},  //   шыя_, _rejt, _выпл,\n  { {0x6723037e, 0x69c70b94, 0x7ae70010, 0x00000000}},  //   zenj, _ruje, _sejt,\n  { {0x69c7028c, 0x6d4d0149, 0x2ac7003b, 0x00000000}},  // [1c10] _suje, rjaa, аљев,\n  { {0x69c000f4, 0x6d4d108a, 0x69c700d4, 0x00000000}},  //   _aime, sjaa, _puje,\n  { {0x6723002b, 0x69c0065a, 0x7d160009, 0x00000000}},  //   venj, _bime, bfys,\n  { {0x69c0108b, 0xdb0f004a, 0x00000000, 0x00000000}},  //   _cime, _pucó,   ,\n  { {0x69c0108c, 0x67230a0f, 0x68eb011c, 0x00000000}},  //   _dime, tenj, ragd,\n  { {0x6603108d, 0x69c7108e, 0x21cc013e, 0x00000000}},  //   tunk, _tuje, _něho_,\n  { {0x6723016c, 0x69c001aa, 0x6569108f, 0x00000000}},  //   renj, _fime, theh,\n  { {0x6723037e, 0x99850054, 0x66031090, 0x00000000}},  //   senj, _الرو, runk,\n  { {0x681a001e, 0x66031091, 0x67231092, 0x00000000}},  //   gādā, sunk, penj,\n  { {0x69c0000b, 0x656900e7, 0xb4e6013d, 0x00000000}},  //   _zime, sheh, _बड़ी_,\n  { {0xb6350151, 0xcb1200b3, 0x26c501d6, 0x00000000}},  //   _دفاع, הלי_, _iglo_,\n  { {0xd05d006b, 0x261c01f5, 0x3f980036, 0x00000000}},  //   lasə, _महती_, woru_,\n  { {0x3f981093, 0x343804e1, 0x68e91094, 0x00000000}},  //   toru_, _پسند_, _meed,\n  { {0x68e9006c, 0x98a00091, 0x50d8007d, 0x00000000}},  //   _leed, žić_, _भ्रष,\n  { {0xc879001a, 0xbcfb009d, 0x25fd013d, 0x00000000}},  //   _deşi_, _elém, रंटी_,\n  { {0x68e90038, 0xbf9b0181, 0x3f980b7d, 0x00000000}},  //   _need, quên, soru_,\n  { {0x3f98014a, 0x7ff61095, 0x7d161096, 0x00000000}},  // [1c20] poru_, _اسبا, rfys,\n  { {0x69c01097, 0x290d001a, 0x2b4300f6, 0x00000000}},  //   _sime, _acea_, _cnjc_,\n  { {0xcf57012e, 0x69c00ac2, 0x627a0049, 0x00000000}},  //   _הבית_, _pime, ְנננ,\n  { {0xb4e603d7, 0xea000011, 0x290d00e5, 0x00000000}},  //   _बजे_, _nhấp_, _ccea_,\n  { {0x69c00020, 0x68e90133, 0x00000000, 0x00000000}},  //   _vime, _deed,   ,\n  { {0xaa46005e, 0x98a40006, 0x681a0089, 0x00000000}},  //   _легл, _namą_, vādā,\n  { {0x68e91098, 0x6b630a78, 0x1b7b0049, 0x00000000}},  //   _feed, _экра, _עטלע,\n  { {0xea000011, 0x69c01099, 0x2c5e0089, 0x00000000}},  //   _chấp_, _uime, _tādā_,\n  { {0x78660057, 0x7c29012d, 0x00000000, 0x00000000}},  //   _указ, _šerz,   ,\n  { {0x681a001e, 0x68e900d9, 0x00000000, 0x00000000}},  //   rādā, _zeed,   ,\n  { {0x6b9b007b, 0xcb9b00b3, 0x00000000, 0x00000000}},  //   רשיד, רסיט,   ,\n  { {0xe5720084, 0x21670f13, 0x00000000, 0x00000000}},  //   _عطا_, стог,   ,\n  { {0xf8ba00e8, 0x00000000, 0x00000000, 0x00000000}},  //   ेशिय,   ,   ,\n  { {0x25ef0061, 0x995c013e, 0x00000000, 0x00000000}},  //   ींची_, jíž_,   ,\n  { {0xf1c9001d, 0x995c00b9, 0x75d101c5, 0x00000000}},  //   _hạn_, díž_, _kāza,\n  { {0x2fc90016, 0xf1c90082, 0x00000000, 0x00000000}},  //   _tuag_, _kạn_,   ,\n  { {0x68e9109a, 0xd05d005f, 0x3b550069, 0x00000000}},  // [1c30] _reed, yasə, окар,\n  { {0xf1c90011, 0x68e9109b, 0x88d20044, 0x00000000}},  //   _mạn_, _seed, ারফক,\n  { {0x6aba000c, 0x68e9109c, 0x2d8b00fa, 0x00000000}},  //   _útfl, _peed, _tjce_,\n  { {0xad270167, 0x8ed80167, 0xbcfb00b9, 0x00000000}},  //   _اردو, _پذیر_, _mlék,\n  { {0xbae80055, 0xf1c90011, 0x68e9017b, 0x00000000}},  //   _পারছ, _nạn_, _veed,\n  { {0x7c2f0198, 0x45d500ed, 0xe73901ab, 0x00000000}},  //   _iscr, оцит, рек_,\n  { {0x68e9006c, 0x636d0325, 0x27e00089, 0x00000000}},  //   _teed, _húng, ģina_,\n  { {0xf1c900ad, 0xf77301ef, 0x160b013d, 0x00000000}},  //   _bạn_, _کار_, संबर_,\n  { {0x7c2f0050, 0xf1c90011, 0x972503e6, 0x00000000}},  //   _jscr, _cạn_, _وفرو,\n  { {0x6d9301d5, 0x4374041f, 0xf1c90082, 0x00000000}},  //   lħad, зуют, _dạn_,\n  { {0xea000011, 0xe12601bd, 0x31690087, 0x00000000}},  //   _thấp_, омни, _blaz_,\n  { {0x26130181, 0x2419007c, 0x32050300, 0x00000000}},  //   mão_, _воды_, ruly_,\n  { {0x26130181, 0x237e012d, 0x7c2f00e5, 0x00000000}},  //   lão_, bitj_, _nscr,\n  { {0x88ba009b, 0x442f01e5, 0x5334007c, 0x00000000}},  //   יזרי, _isg_, _нечт,\n  { {0x3ebe0039, 0x26130181, 0x442f109d, 0x00000000}},  //   ätt_, não_, _hsg_,\n  { {0x443d0035, 0x7c2f0009, 0xf1c90082, 0x00000000}},  //   _krw_, _bscr, _hạo_,\n  { {0x261300c4, 0x636d0048, 0xdca30088, 0x00000000}},  // [1c40] hão_, _cúng, дати,\n  { {0x442f03e2, 0x443d004a, 0x8a3a007c, 0x00000000}},  //   _msg_, _mrw_, ияет_,\n  { {0x261300c4, 0x2d9e00f4, 0xf1c90011, 0x00000000}},  //   jão_, îtes_, _mạo_,\n  { {0x261302d5, 0x8c460478, 0x00000000, 0x00000000}},  //   dão_, _деме,   ,\n  { {0x274a109e, 0x443d010f, 0x00000000, 0x00000000}},  //   ичко_, _nrw_,   ,\n  { {0x29d70066, 0x261300c4, 0xf1c90082, 0x00000000}},  //   _bħad_, fão_, _nạo_,\n  { {0x26130181, 0xf1c90011, 0xc2e80044, 0x00000000}},  //   gão_, _sạn_, _খালি_,\n  { {0x5454109f, 0xdb1c00f6, 0x69de00b0, 0x00000000}},  //   звит, _mirí, mppe,\n  { {0xf1c90011, 0x186709f1, 0xe9470014, 0x00000000}},  //   _bạo_, _дати_, _ظرفی,\n  { {0x2d68011f, 0xf1c910a0, 0x68e200ea, 0x00000000}},  //   rşey_, _vạn_, lbod,\n  { {0xf1c90011, 0x26130181, 0x443d0678, 0x00000000}},  //   _dạo_, cão_, _erw_,\n  { {0xdb1d010f, 0x68e2054e, 0x443d10a1, 0x00000000}},  //   _zusä, nbod, _frw_,\n  { {0xdb1c0051, 0xe73100a1, 0x98c5012d, 0x00000000}},  //   _airí, _غصے_, šuća_,\n  { {0x6d46011f, 0xf1c90011, 0x7ada0061, 0x00000000}},  //   _anka, _gạo_, _प्लॅ,\n  { {0xcdd8003b, 0xdb1c06c0, 0x00000000, 0x00000000}},  //   жњу_, _cirí,   ,\n  { {0xdb1c008e, 0xd657009b, 0x31690091, 0x00000000}},  //   _dirí, חילת_, _ulaz_,\n  { {0x26130181, 0x68e210a2, 0x20040129, 0x00000000}},  // [1c50] zão_, dbod, àmit_,\n  { {0x69de001c, 0xfaa701fb, 0x8aa706e1, 0x00000000}},  //   fppe, ошен, оред,\n  { {0x26130181, 0x539b009b, 0x00000000, 0x00000000}},  //   xão_, סיבו,   ,\n  { {0x261300c4, 0x68e210a3, 0xdeb6009b, 0x00000000}},  //   vão_, gbod, _מפתח_,\n  { {0x69de0026, 0x9cd600b3, 0xf7450745, 0x00000000}},  //   appe, _מורה_, зело,\n  { {0x261302d5, 0x7d0d069e, 0x442f0007, 0x00000000}},  //   tão_, lgas, _rsg_,\n  { {0xf9930188, 0x443d016b, 0xe778009e, 0x00000000}},  //   _قبر_, _srw_, تلوں_,\n  { {0x261302d5, 0x7d0d0fa2, 0x442f009d, 0x00000000}},  //   rão_, ngas, _psg_,\n  { {0x261302d5, 0x7c2d10a4, 0x68fb0058, 0x00000000}},  //   são_, nwar, _idud,\n  { {0x26130181, 0x6d9301d5, 0x7c220023, 0x00000000}},  //   pão_, nħab, çori,\n  { {0xe2990175, 0x7c2d001f, 0x636d0051, 0x00000000}},  //   сан_, hwar, _rúnd,\n  { {0x3a310010, 0x661c006c, 0x225800f8, 0x00000000}},  //   _mszp_, _ärka, ärka_,\n  { {0xf1c9001d, 0x81cc0044, 0x645d010f, 0x00000000}},  //   _tạo_, শীল_, äsid,\n  { {0x7c2d10a5, 0x442d10a6, 0xdc3a006b, 0x00000000}},  //   dwar, mwe_, xçıv,\n  { {0xf2d2007b, 0x442d0007, 0x2ca7006b, 0x00000000}},  //   _טעג_, lwe_, əndi_,\n  { {0x7c2d10a7, 0x7d0d0f20, 0x442d0036, 0x00000000}},  //   fwar, ggas, owe_,\n  { {0x7c2d01d5, 0xed5700ed, 0x2b580a86, 0x00000000}},  // [1c60] gwar, чот_, _porc_,\n  { {0x636d10a8, 0xf1c90011, 0x442d01d6, 0x00000000}},  //   _fúne, _lạm_, iwe_,\n  { {0xa92610a9, 0x442d0173, 0x68e20270, 0x00000000}},  //   здел, hwe_, tbod,\n  { {0xc7c602a8, 0x31b201ca, 0x442d0020, 0x00000000}},  //   пски, báze_, kwe_,\n  { {0x07a60072, 0x442d10aa, 0x68e200b5, 0x00000000}},  //   падн, jwe_, rbod,\n  { {0xe3a704e8, 0x501b00b6, 0x656b10ab, 0x00000000}},  //   _سر_, מונו, _algh,\n  { {0x442d0343, 0xbcfb0051, 0x68e20009, 0x00000000}},  //   ewe_, _sléi, pbod,\n  { {0x6b9e10ac, 0x69ce001a, 0x75290009, 0x00000000}},  //   lopg, _iube, geez,\n  { {0x69ce01a2, 0x442d10ad, 0xe3af0014, 0x00000000}},  //   _hube, gwe_, گري_,\n  { {0x27f70224, 0x69ce0020, 0xb4bc0061, 0x00000000}},  //   ření_, _kube, _आणी_,\n  { {0xcfc40055, 0x7c2d10ae, 0xe3b8005d, 0x00000000}},  //   ্ঠান, zwar, rmı_,\n  { {0x79820046, 0x442d0b28, 0x69ce0022, 0x00000000}},  //   niow, bwe_, _mube,\n  { {0x69ce0770, 0x434609da, 0xafe4007e, 0x00000000}},  //   _lube, _недв, ноўл,\n  { {0x21200022, 0x798200ea, 0x00000000, 0x00000000}},  //   _ebih_, hiow,   ,\n  { {0xd788001d, 0x212005fa, 0x798b018e, 0x00000000}},  //   yển_, _fbih_, yngw,\n  { {0xbcfb008e, 0x7c2d0652, 0x3a230022, 0x00000000}},  //   _llév, twar, _rpjp_,\n  { {0x2d580e09, 0x69dc0779, 0x7d0d01a3, 0x00000000}},  // [1c70] чить_, _atre, rgas,\n  { {0x636d10af, 0x212b10b0, 0x69ce0062, 0x00000000}},  //   _túne, lech_, _bube,\n  { {0x69ce00d4, 0x200b10b1, 0x442d10b2, 0x00000000}},  //   _cube, luci_, zwe_,\n  { {0xfc3f10b3, 0x212b00b9, 0x69ce00b9, 0x00000000}},  //   _trí_, nech_, _dube,\n  { {0xf77000d3, 0x2019023e, 0x69ca0b33, 0x00000000}},  //   گان_, ntsi_, ífer,\n  { {0xf094007b, 0x3f830213, 0x7bdd0d58, 0x00000000}},  //   ענס_, niju_, _itsu,\n  { {0xf7700318, 0x69ce023a, 0x442d0007, 0x00000000}},  //   دان_, _gube, wwe_,\n  { {0x442d10b4, 0x79820036, 0x3f8301ee, 0x00000000}},  //   twe_, ciow, hiju_,\n  { {0x200b10b5, 0x442d02ae, 0x75290f1d, 0x00000000}},  //   juci_, uwe_, reez,\n  { {0xe1f9081e, 0x442d0343, 0xd2f7026c, 0x00000000}},  //   ого_, rwe_, سکتا_,\n  { {0x3f830089, 0xf1c90011, 0x7bcf0145, 0x00000000}},  //   diju_, _tạm_, _lucu,\n  { {0x290f10b6, 0x7bdd0004, 0xdb1c008e, 0x00000000}},  //   ngga_, _otsu, _mirá,\n  { {0xbf9b0181, 0x200b0107, 0x3f8310b7, 0x00000000}},  //   rrên, guci_, fiju_,\n  { {0x1b030044, 0x162101f5, 0x3f830091, 0x00000000}},  //   র্তে_, _महार_, giju_,\n  { {0x7bcf028c, 0x7bdd007f, 0xad5a09c0, 0x00000000}},  //   _aucu, _atsu, орах_,\n  { {0x7bcf000d, 0xc69201ce, 0x2120016c, 0x00000000}},  //   _bucu, דאל_, _ubih_,\n  { {0x69dc0027, 0x3f8310b8, 0x672110b9, 0x00000000}},  // [1c80] _stre, biju_, _oblj,\n  { {0x3f830bf1, 0x09e6081e, 0x2c0b00a1, 0x00000000}},  //   ciju_, дожн, تعفی_,\n  { {0x7bc70169, 0xed5a004d, 0xe9da0140, 0x00000000}},  //   _diju, _дон_, цке_,\n  { {0x7aee0007, 0xdb1c008e, 0x6b9e0030, 0x00000000}},  //   _webt, _dirá, sopg,\n  { {0x7bcf0009, 0x2baf0164, 0x63a8101b, 0x00000000}},  //   _gucu, _जीवा, yldn,\n  { {0x212b0667, 0x798210ba, 0x00000000, 0x00000000}},  //   zech_, siow,   ,\n  { {0x69dc10bb, 0x8b0300b9, 0x79820036, 0x00000000}},  //   _utre, _úřad, piow,\n  { {0xd826025f, 0x3f8310bc, 0x7434073b, 0x00000000}},  //   _одби, ziju_, ениф,\n  { {0x61ea0061, 0x76410016, 0x212b013e, 0x00000000}},  //   _swfl, _erly, vech_,\n  { {0xd37000b8, 0x200b0243, 0x212b0016, 0x00000000}},  //   اهد_, vuci_, wech_,\n  { {0x212b0224, 0x69c80010, 0x63a80908, 0x00000000}},  //   tech_, _édes, rldn,\n  { {0x80fb0309, 0x200b013e, 0x7c260190, 0x00000000}},  //   ्लेख_, tuci_, _opkr,\n  { {0x212b0c0f, 0x320500ab, 0x3f830091, 0x00000000}},  //   rech_, arly_, tiju_,\n  { {0xa294008b, 0x44260020, 0x212b00b9, 0x00000000}},  //   _палі, _ipo_, sech_,\n  { {0x7bcf106f, 0x13e30055, 0x3f830ad8, 0x00000000}},  //   _sucu, _মিয়, riju_,\n  { {0x3f8307a6, 0x7bc70020, 0xa2da0164, 0x00000000}},  //   siju_, _siju, पुर्,\n  { {0x9f4201ca, 0x60cd10bd, 0x44260066, 0x00000000}},  // [1c90] lský_, _igam, _jpo_,\n  { {0x2b4a10be, 0xdb1c10bf, 0x442610c0, 0x00000000}},  //   _cnbc_, _pirá, _mpo_,\n  { {0x9f4201ca, 0x2d850010, 0x09e40088, 0x00000000}},  //   nský_, éles_, воєн,\n  { {0xaadf02f4, 0x4adf02fb, 0x39490845, 0x00000000}},  //   _प्रक, _प्रव, ñas_,\n  { {0xba7401ef, 0x636d0051, 0x7bc7029d, 0x00000000}},  //   _یافت, _lúna, _tiju,\n  { {0xbcfb0181, 0x6d5d005b, 0xe73600d7, 0x00000000}},  //   _elét, _hosa, ееш_,\n  { {0x4426008d, 0x6d5d0142, 0x386910c1, 0x00000000}},  //   _apo_, _kosa, šar_,\n  { {0x60cd0697, 0x442610c2, 0x00000000, 0x00000000}},  //   _ngam, _bpo_,   ,\n  { {0x6442028c, 0x442604be, 0x4ad30061, 0x00000000}},  //   _croi, _cpo_, _तलाव,\n  { {0x6442028c, 0x60cd0169, 0xf1c90011, 0x00000000}},  //   _droi, _agam, _hại_,\n  { {0x636d0051, 0x64420420, 0x442610c3, 0x00000000}},  //   _cúna, _eroi, _epo_,\n  { {0x6d5d10c4, 0x644200f4, 0x25d60097, 0x00000000}},  //   _nosa, _froi, _טוען_,\n  { {0xf1c9001d, 0x27ed01aa, 0x442610c5, 0x00000000}},  //   _mại_, _jwen_, _gpo_,\n  { {0x27ed0607, 0xf1c900ad, 0x443f0117, 0x00000000}},  //   _mwen_, _lại_, mvu_,\n  { {0x27ed01aa, 0x443f06ed, 0x6d5d10c6, 0x00000000}},  //   _lwen_, lvu_, _bosa,\n  { {0x6d5d10c7, 0x27ed0016, 0xed5703f3, 0x00000000}},  //   _cosa, _owen_, нос_,\n  { {0x6d5d06a6, 0xf1ca0011, 0x443f10c8, 0x00000000}},  // [1ca0] _dosa, _nại_, nvu_,\n  { {0x99710036, 0xbcfb01e5, 0x909b009b, 0x00000000}},  //   jął_, _slét, _מספק,\n  { {0xa3c00204, 0x6d5d10c9, 0x65690190, 0x00000000}},  //   ंगत_, _fosa, kkeh,\n  { {0x443f0119, 0x7e610039, 0xf1ca0011, 0x00000000}},  //   kvu_, älpe, _bại_,\n  { {0x63a10036, 0x9f4201dc, 0x186700e3, 0x00000000}},  //   koln, zský_, наци_,\n  { {0xf1ca0011, 0x443f016c, 0xfc3f00b9, 0x00000000}},  //   _dại_, dvu_, _vzít_,\n  { {0xe5c601e0, 0x443f06a3, 0x44260065, 0x00000000}},  //   нсио, evu_, _spo_,\n  { {0x9f4206b8, 0x636d056f, 0xdb1c014a, 0x00000000}},  //   vský_, _rúna, _birç,\n  { {0x27ed005b, 0xe4520257, 0x70af013d, 0x00000000}},  //   _gwen_, اضع_, _घरेल,\n  { {0xbf9b00f4, 0x320c0058, 0x60cd0026, 0x00000000}},  //   trêm, tudy_, _sgam,\n  { {0x9294007e, 0x00000000, 0x00000000, 0x00000000}},  //   танц,   ,   ,\n  { {0x6442028c, 0x32020428, 0x9f420161, 0x00000000}},  //   _troi, čky_, rský_,\n  { {0x6d5d10ca, 0x673a0059, 0x38660129, 0x00000000}},  //   _rosa, _katj, nyor_,\n  { {0xbf9b009d, 0x9f420802, 0x00000000, 0x00000000}},  //   prêm, pský_,   ,\n  { {0xf1a70057, 0x673a0059, 0x64470089, 0x00000000}},  //   _прин, _matj, ājie,\n  { {0xbcfb0285, 0x29d701f3, 0x60cd0145, 0x00000000}},  //   _alér, _bħan_, _ugam,\n  { {0x6d5d0129, 0xfbd30879, 0x6386009d, 0x00000000}},  // [1cb0] _vosa, اتر_, _génè,\n  { {0x673a0182, 0xbcfb10cb, 0x753b012d, 0x00000000}},  //   _natj, _clér, zduz,\n  { {0x6d5d002a, 0x61fa010f, 0x69c9001e, 0x00000000}},  //   _tosa, nstl, _piee,\n  { {0xbcfb0047, 0x27ed0263, 0x25a60087, 0x00000000}},  //   _elér, _pwen_, _nkol_,\n  { {0xe7390256, 0xa3c0007d, 0x29d701d5, 0x00000000}},  //   дел_, ंगा_, _għan_,\n  { {0xdb050051, 0x61fa00ea, 0x00000000, 0x00000000}},  //   rmhó, kstl,   ,\n  { {0x63a10802, 0x673a046a, 0xab940088, 0x00000000}},  //   voln, _datj, _сирі,\n  { {0xf1ca00ad, 0x443f0213, 0x63a10036, 0x00000000}},  //   _tại_, tvu_, woln,\n  { {0x02c90201, 0x6569010f, 0x2104010a, 0x00000000}},  //   रश्न, rkeh, nčių_,\n  { {0x443f10cc, 0x21040006, 0x65690142, 0x00000000}},  //   rvu_, ičių_, skeh,\n  { {0x779006c6, 0x395f01aa, 0x443f10cd, 0x00000000}},  //   _دیوا, _kous_, svu_,\n  { {0x395f0173, 0x63a10010, 0x6386009d, 0x00000000}},  //   _jous_, soln, _pénè,\n  { {0x63a101d9, 0x629800f6, 0x395f0068, 0x00000000}},  //   poln, _exvo, _mous_,\n  { {0x25ad0004, 0xa283007a, 0x25bf001a, 0x00000000}},  //   llel_, _میخو, lmul_,\n  { {0xbea60081, 0xe3c80011, 0x394d0b3f, 0x00000000}},  //   тавк, _cựu_, _ones_,\n  { {0x395f10ce, 0x41b600a1, 0xa5c2000c, 0x00000000}},  //   _nous_, _جمعر, _þótt,\n  { {0x29d7013f, 0x00000000, 0x00000000, 0x00000000}},  // [1cc0] _aça_,   ,   ,\n  { {0x09ca007d, 0x394d0023, 0x00000000, 0x00000000}},  //   िद्य, _anes_,   ,\n  { {0xc332012e, 0x395f10cf, 0x673a00d9, 0x00000000}},  //   שוב_, _bous_, _ratj,\n  { {0x395f0026, 0x02b60049, 0x394d10d0, 0x00000000}},  //   _cous_, דלעך_, _cnes_,\n  { {0x394d004f, 0x395f10d1, 0x673a0065, 0x00000000}},  //   _dnes_, _dous_, _patj,\n  { {0xbf9b00f4, 0x394d0095, 0x9873007e, 0x00000000}},  //   quêt, _enes_, шліц,\n  { {0x6aa3010f, 0x2bd8007d, 0x395f009d, 0x00000000}},  //   ünft, _भंडा, _fous_,\n  { {0x3160002d, 0x2d9201a3, 0x2ef801a2, 0x00000000}},  //   _noiz_, nnye_, harf_,\n  { {0x673a016c, 0x47c6008b, 0xd0e30164, 0x00000000}},  //   _tatj, _абав, _क्षण_,\n  { {0xbcfb00f6, 0x31600288, 0xc4450014, 0x00000000}},  //   _llép, _aoiz_, ایون_,\n  { {0xcb1300b6, 0x2ef8010f, 0x27e6023a, 0x00000000}},  //   בלת_, darf_, lpon_,\n  { {0x25a6011c, 0x2104007f, 0x3a2a0145, 0x00000000}},  //   _ukol_, yčių_, _mpbp_,\n  { {0x27e610d2, 0xf1bf10d3, 0x00000000, 0x00000000}},  //   npon_, rmá_,   ,\n  { {0x29d701d5, 0x200510d4, 0x27e60058, 0x00000000}},  //   _bħal_, čli_, ipon_,\n  { {0x636d0051, 0x3da700ed, 0xc33300b3, 0x00000000}},  //   _múnl, враб, _כוס_,\n  { {0x3160002d, 0x00000000, 0x00000000, 0x00000000}},  //   _goiz_,   ,   ,\n  { {0x0dc801fb, 0xc05b0088, 0x395f0087, 0x00000000}},  // [1cd0] тури_, _цій_, _rous_,\n  { {0x395f028c, 0x2571000c, 0xbb74003b, 0x00000000}},  //   _sous_, _mála_, агуј,\n  { {0x29d70f68, 0x21040006, 0x395f10d5, 0x00000000}},  //   _għal_, sčių_, _pous_,\n  { {0x67d510d6, 0x00000000, 0x00000000, 0x00000000}},  //   году,   ,   ,\n  { {0x395f0a8d, 0x6d4f10d7, 0xd8250081, 0x00000000}},  //   _vous_, _inca, удли,\n  { {0xf1ca0011, 0x394d0016, 0x00000000, 0x00000000}},  //   _hạt_, _wnes_,   ,\n  { {0x395f028c, 0x25bf0035, 0x63760035, 0x00000000}},  //   _tous_, tmul_, _mând,\n  { {0x22490119, 0x845901f9, 0x394d04bd, 0x00000000}},  //   _čak_, ерот_, _unes_,\n  { {0xc9840364, 0x25bf0938, 0xf1ca0082, 0x00000000}},  //   _тури, rmul_, _mạt_,\n  { {0x25bf001a, 0xf1ca0011, 0x69d5014a, 0x00000000}},  //   smul_, _lạt_, _kuze,\n  { {0x75150054, 0xa18a10d8, 0x200b0036, 0x00000000}},  //   _مواض, ебна_, erci_,\n  { {0xd00a0893, 0x9f5e00b9, 0xdb1d01a2, 0x00000000}},  //   неме_, čtí_, _ausü,\n  { {0x69d5002d, 0xe44e022a, 0x2ef8000c, 0x00000000}},  //   _luze, _уж_, tarf_,\n  { {0x6d4f01f6, 0x63760f6e, 0xf367003b, 0x00000000}},  //   _anca, _când, _штен,\n  { {0x539a00a0, 0xa3c00164, 0x63760035, 0x00000000}},  //   _איסו, ंगर_, _sâng,\n  { {0x26140061, 0xcd3600a1, 0x3a380009, 0x00000000}},  //   नंती_, درآب, _rsrp_,\n  { {0x7af510d9, 0x69d50035, 0x2d9208f8, 0x00000000}},  // [1ce0] _bezt, _auze, rnye_,\n  { {0x6d4f04bd, 0x69d50065, 0x6376001a, 0x00000000}},  //   _enca, _buze, _gând,\n  { {0xd9460088, 0x68e4004a, 0x22f60049, 0x00000000}},  //   лежи, ñido, רזען_,\n  { {0xf1ca0082, 0xed570b5f, 0x22580961, 0x00000000}},  //   _gạt_, _бою_, ärki_,\n  { {0x27e60145, 0xb6c800a1, 0x776100f6, 0x00000000}},  //   upon_, ھاتے_, _bolx,\n  { {0x27e600e0, 0x69d50584, 0x07a3060e, 0x00000000}},  //   rpon_, _fuze, бачн,\n  { {0x27e60129, 0xe1e710da, 0x69d5014a, 0x00000000}},  //   spon_, _دس_, _guze,\n  { {0x7bce020c, 0x27e60145, 0x78b1000c, 0x00000000}},  //   _hibu, ppon_, ðkvæ,\n  { {0x69d5022b, 0xa3c2001c, 0xb7160054, 0x00000000}},  //   _zuze, ्दल_, _مباش,\n  { {0x3f8a000b, 0x69c20116, 0x00000000, 0x00000000}},  //   jibu_, lmoe,   ,\n  { {0x6b7b01ce, 0x2d5c0b32, 0x7bce00e0, 0x00000000}},  //   גרינ, _díez_, _mibu,\n  { {0x8446004b, 0x7bce0c35, 0xdb1c00c4, 0x00000000}},  //   _مختل, _libu, _cirú,\n  { {0x200b009d, 0x133900a1, 0x29d701f3, 0x00000000}},  //   urci_, رتیں_, _rħam_,\n  { {0x447b007b, 0x7bce0141, 0xf4870167, 0x00000000}},  //   _אנדע, _nibu, _حامی,\n  { {0x63030025, 0x29040166, 0x63760adb, 0x00000000}},  //   _طويل, _odma_, _vând,\n  { {0x7bce00e7, 0x00000000, 0x00000000, 0x00000000}},  //   _aibu,   ,   ,\n  { {0x69d501d6, 0x3f8a10db, 0xf1ca0082, 0x00000000}},  // [1cf0] _suze, bibu_, _vạt_,\n  { {0x29040066, 0x13d70044, 0x7bce0161, 0x00000000}},  //   _adma_, _দৌড়, _cibu,\n  { {0x5a3510dc, 0x7bce020c, 0x65620058, 0x00000000}},  //   рнет, _dibu, _oooh,\n  { {0x290410dd, 0x69c207a5, 0x6d4f00ab, 0x00000000}},  //   _cdma_, gmoe, _unca,\n  { {0x68f90046, 0x200005aa, 0x69da00f4, 0x00000000}},  //   rawd, _xvii_, _éten,\n  { {0xf7450264, 0x68f90016, 0x69d50062, 0x00000000}},  //   реко, sawd, _tuze,\n  { {0x7f3c007b, 0xfaa9023c, 0x6f050173, 0x00000000}},  //   געוו, _شهري_, _mdhc,\n  { {0x05650088, 0x3f8a0009, 0x7bce10de, 0x00000000}},  //   рвин, zibu_, _zibu,\n  { {0x7bce0009, 0x320b0036, 0x67130061, 0x00000000}},  //   _yibu, ącym_, _ठाऊक_,\n  { {0x25a001d9, 0x422500c0, 0xb7bd001a, 0x00000000}},  //   čila_, адов, _opţi,\n  { {0x45d510df, 0x00000000, 0x00000000, 0x00000000}},  //   _тоес,   ,   ,\n  { {0x69d80181, 0x798b0016, 0xa06a003b, 0x00000000}},  //   ívei, nigw, вама_,\n  { {0x3f8a000b, 0x671c006e, 0x00000000, 0x00000000}},  //   tibu_, _नामक_,   ,\n  { {0xb4c1007d, 0x798b10e0, 0x2d990146, 0x00000000}},  //   ंधी_, higw, _ajse_,\n  { {0x3f8a000b, 0x0fc301fb, 0x7bce0169, 0x00000000}},  //   ribu_, ійсн, _ribu,\n  { {0x257101ca, 0x7bce01a3, 0x3f8a06a9, 0x00000000}},  //   _málo_, _sibu, sibu_,\n  { {0x3b86007e, 0x7d160232, 0x00000000, 0x00000000}},  // [1d00] алаг, rgys,   ,\n  { {0xfbdf001d, 0x1db80061, 0xdcf6019a, 0x00000000}},  //   _trên_, _आठवत, ıcın,\n  { {0x69c206b2, 0xca56025f, 0xe8fa00a8, 0x00000000}},  //   tmoe, штањ, вле_,\n  { {0xc8ca023c, 0xfd120025, 0x7bce0045, 0x00000000}},  //   نوان_, _بجد_, _wibu,\n  { {0x69c201b5, 0x97c610e1, 0x7bce0c1b, 0x00000000}},  //   rmoe, айде, _tibu,\n  { {0x6376001a, 0x69c20032, 0x00000000, 0x00000000}},  //   _mânc, smoe,   ,\n  { {0x798b0066, 0x9c8706b8, 0x656200d2, 0x00000000}},  //   bigw, počí, _pooh,\n  { {0xa4f80123, 0x342602dc, 0x00000000, 0x00000000}},  //   اکار_, афов,   ,\n  { {0xdb1c00ea, 0xa967003b, 0x68ed004a, 0x00000000}},  //   _birø, _тита_, ñade,\n  { {0xf3660069, 0x76550010, 0x00000000, 0x00000000}},  //   ртин, ógyí,   ,\n  { {0x1b030055, 0x0bb700b6, 0x81de0044, 0x00000000}},  //   র্কে_, שלים_, দীন_,\n  { {0x51f70a78, 0xa194013a, 0x00000000, 0x00000000}},  //   шнюю_, жаюч,   ,\n  { {0x04140044, 0x63760181, 0x49070061, 0x00000000}},  //   _তৈরী_, _cânc, हणतो_,\n  { {0x93fb00b6, 0x2578013e, 0x637600e5, 0x00000000}},  //   _ילדי, _déle_, _dânc,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x2129003f, 0x63a8016e, 0x25780010, 0x00000000}},  //   _ubah_, lodn, _féle_,\n  { {0x91bc009b, 0x00000000, 0x00000000, 0x00000000}},  // [1d10] _במהי,   ,   ,\n  { {0x8ae701fb, 0x3b5410e2, 0x3f150088, 0x00000000}},  //   ріал, окур, _удос,\n  { {0xcfe20044, 0x69da0010, 0x2bc8022a, 0x00000000}},  //   _বিএন, _étel, руто_,\n  { {0x63a80e80, 0x00000000, 0x00000000, 0x00000000}},  //   hodn,   ,   ,\n  { {0x8d5a00b6, 0x63a80091, 0x798b10e3, 0x00000000}},  //   _עכשי, kodn, rigw,\n  { {0xcc3a007b, 0xdc3a007b, 0x798b037f, 0x00000000}},  //   _געשט, _געשר, sigw,\n  { {0x798b0020, 0x6446000c, 0x00000000, 0x00000000}},  //   pigw, ækin,   ,\n  { {0xf1ca0011, 0x7bc510e4, 0x7d1d0045, 0x00000000}},  //   _nạp_, lmhu, _jcss,\n  { {0x798910e5, 0x2613007d, 0x7bc500bb, 0x00000000}},  //   _imew, _धमकी_, omhu,\n  { {0xf77300a6, 0x63a810e6, 0xc6a701fc, 0x00000000}},  //   _بار_, godn, _креи,\n  { {0x636d10e7, 0x61460478, 0x00000000, 0x00000000}},  //   _júni, бена,   ,\n  { {0xdb050039, 0xf1ca0082, 0x636d004a, 0x00000000}},  //   llhä, _cạp_, _múni,\n  { {0x63a806a2, 0x2329013b, 0x2418007e, 0x00000000}},  //   bodn, _боли_, _вочы_,\n  { {0x2bdb03d7, 0x53340242, 0xdee3003b, 0x00000000}},  //   _बढ़ा, _мечт, зори,\n  { {0xdef9007e, 0x1d0a02dc, 0x225809b0, 0x00000000}},  //   шыў_, леви_, ärkt_,\n  { {0xf1d00164, 0xa19301fc, 0x442f10e8, 0x00000000}},  //   _सूचन, _најч, _kpg_,\n  { {0x442f001c, 0x443d03b2, 0x7d1d0045, 0x00000000}},  // [1d20] _jpg_, _jsw_, _dcss,\n  { {0xf3f908b7, 0x200200ee, 0x79890020, 0x00000000}},  //   _আমার_, mski_, _amew,\n  { {0x200210e9, 0x6e46007a, 0x442f10ea, 0x00000000}},  //   lski_, _انجم, _lpg_,\n  { {0x9f49009f, 0xf8fa0025, 0x442f0190, 0x00000000}},  //   _hvað_, اءات_, _opg_,\n  { {0x200200ee, 0xbf9b009d, 0x799b0022, 0x00000000}},  //   nski_, prêt, _djuw,\n  { {0x6d44022b, 0x39400006, 0x7c2410eb, 0x00000000}},  //   ldia, žis_, mtir,\n  { {0x644b022b, 0x8afb00b3, 0x65be0065, 0x00000000}},  //   _argi, _תהלי, hëhe,\n  { {0x6d44022b, 0x25a001d9, 0x63a80046, 0x00000000}},  //   ndia, čilo_, wodn,\n  { {0x7c2400d0, 0x200200ee, 0x69c000b0, 0x00000000}},  //   ntir, jski_, _ihme,\n  { {0x7afe0010, 0x200210ec, 0x68e200bb, 0x00000000}},  //   napt, dski_, lcod,\n  { {0xe1350a78, 0xdb1c00f4, 0x69c0016b, 0x00000000}},  //   онны, _chré, _khme,\n  { {0xf651026c, 0x68e20141, 0x5a9b007b, 0x00000000}},  //   _کئے_, ncod, רשטא,\n  { {0x6d440bc4, 0x63a80091, 0x442f0fd1, 0x00000000}},  //   ddia, podn, _gpg_,\n  { {0x60d60047, 0x6d440638, 0x7c2401a2, 0x00000000}},  //   _egym, edia, dtir,\n  { {0x41e603ec, 0xf1ca0011, 0xdb1c0051, 0x00000000}},  //   _استف, _tạp_, _ghré,\n  { {0x1619001c, 0xd0110d3a, 0x20020aa9, 0x00000000}},  //   नंतर_, _قلب_, bski_,\n  { {0x68e20e9c, 0xfe7000a1, 0x7c240058, 0x00000000}},  // [1d30] dcod, ودہ_, gtir,\n  { {0x69c0014a, 0xda7b007e, 0x68e200d9, 0x00000000}},  //   _ahme, ляе_, ecod,\n  { {0x6d4410ed, 0x7a350025, 0xce590478, 0x00000000}},  //   bdia, تفاص, _танц_,\n  { {0xac19007c, 0x7c240035, 0x68e200bb, 0x00000000}},  //   _кому_, btir, gcod,\n  { {0xe8f801ff, 0x7afe0068, 0x7c2400e5, 0x00000000}},  //   слі_, bapt, ctir,\n  { {0x7afe10ee, 0x636d10ef, 0x443d10f0, 0x00000000}},  //   capt, _túni, _rsw_,\n  { {0x442f023a, 0x443d01a2, 0x68e210f1, 0x00000000}},  //   _spg_, _ssw_, bcod,\n  { {0x240910f2, 0x442f005b, 0x68e20197, 0x00000000}},  //   ании_, _ppg_, ccod,\n  { {0x75ca0046, 0xdced0521, 0x657b059c, 0x00000000}},  //   _języ, jkač, rhuh,\n  { {0x657b0020, 0x20020213, 0xa20510f3, 0x00000000}},  //   shuh, vski_, опод,\n  { {0x20020046, 0xcb12019b, 0x7c24002d, 0x00000000}},  //   wski_, ולי_, ztir,\n  { {0x20020ecc, 0x68fb00f4, 0xa4f70167, 0x00000000}},  //   tski_, _jeud, _اکثر_,\n  { {0xbee5001c, 0x443d010f, 0x44240045, 0x00000000}},  //   कडून_, _usw_, ctm_,\n  { {0x20020209, 0x9474039d, 0xdb1c0051, 0x00000000}},  //   rski_, _عدنا, _thré,\n  { {0xfc3f10f4, 0x64490056, 0x68e20019, 0x00000000}},  //   _así_, lvei, ycod,\n  { {0x200210f5, 0x68fb0062, 0x75290207, 0x00000000}},  //   pski_, _neud, nfez,\n  { {0xab6601fe, 0x644910f6, 0x236710f7, 0x00000000}},  // [1d40] овал, nvei, _konj_,\n  { {0x7c240207, 0x6d4410f8, 0x2fd70014, 0x00000000}},  //   rtir, sdia, _گوید_,\n  { {0x7c240213, 0x68e20d4d, 0xdce40521, 0x00000000}},  //   stir, tcod, jkić,\n  { {0x7c240091, 0x7afe0a3e, 0x68fb0544, 0x00000000}},  //   ptir, sapt, _ceud,\n  { {0x1836006d, 0x68fb10f9, 0x68e2010f, 0x00000000}},  //   تراح, _deud, rcod,\n  { {0x68e207eb, 0x69d810fa, 0xbb560025, 0x00000000}},  //   scod, íves, _بنسب,\n  { {0x68e20019, 0x7afc001a, 0xd95a003b, 0x00000000}},  //   pcod, _iert, _краљ_,\n  { {0x7ae9016c, 0x8ebf0044, 0x257807fd, 0x00000000}},  //   _đeti, _আলমগ, _béla_,\n  { {0x7afc021e, 0x69dc00b5, 0x39440145, 0x00000000}},  //   _kert, _hure, _iams_,\n  { {0x39460006, 0x69dc0b48, 0x7afc0035, 0x00000000}},  //   ldos_, _kure, _jert,\n  { {0x7afc01a3, 0xc4e60d99, 0x39460dd1, 0x00000000}},  //   _mert, _джей, odos_,\n  { {0x69dc10fb, 0xe1ef00a6, 0x7afc002d, 0x00000000}},  //   _mure, کسی_, _lert,\n  { {0x39460b7f, 0x849610fc, 0x81ba0055, 0x00000000}},  //   idos_, _بجائ, _অংশ_,\n  { {0x69dc049a, 0xdced00ca, 0x7afc10fd, 0x00000000}},  //   _oure, rkač, _nert,\n  { {0xccfb012b, 0x69dc0095, 0x645d00b0, 0x00000000}},  //   ића_, _nure, äsiv,\n  { {0x7afc10fe, 0x39440089, 0xfc3f0062, 0x00000000}},  //   _aert, _nams_, _psí_,\n  { {0x7afc0653, 0x69dc10ff, 0x21390065, 0x00000000}},  // [1d50] _bert, _aure, mesh_,\n  { {0x69dc05f2, 0x20190004, 0x39460181, 0x00000000}},  //   _bure, musi_, edos_,\n  { {0x20191100, 0xea000011, 0x69dc0585, 0x00000000}},  //   lusi_, _đảo_, _cure,\n  { {0xe9d8008b, 0x69dc001a, 0x3f910107, 0x00000000}},  //   ікі_, _dure, lizu_,\n  { {0x69dc0288, 0x66e50256, 0x20190d90, 0x00000000}},  //   _eure, пола, nusi_,\n  { {0x39461101, 0x7afc022b, 0x2139008d, 0x00000000}},  //   ados_, _gert, hesh_,\n  { {0x7bdd1102, 0x7c39011f, 0x69dc002d, 0x00000000}},  //   _husu, şarı, _gure,\n  { {0x20190dec, 0x7afc1103, 0x7bdd0c04, 0x00000000}},  //   kusi_, _zert, _kusu,\n  { {0x20191104, 0x69dc09ce, 0x7bdd1105, 0x00000000}},  //   jusi_, _zure, _jusu,\n  { {0x644904bd, 0x7bdd0996, 0x2571009f, 0x00000000}},  //   rvei, _musu, _máli_,\n  { {0xcb1200bd, 0x64490ba5, 0xa91d010a, 0x00000000}},  //   עלט_, svei, _amži,\n  { {0x291d1106, 0x2419007c, 0xb6ba0104, 0x00000000}},  //   ngwa_, _годы_, _הצעי,\n  { {0x2019002d, 0x3169002d, 0x7bdd1107, 0x00000000}},  //   gusi_, _doaz_, _nusu,\n  { {0x7bd50d53, 0x636d0051, 0x3946007f, 0x00000000}},  //   _nizu, _cúnt, zdos_,\n  { {0xe2960888, 0xed5a0920, 0x272f005a, 0x00000000}},  //   _наш_, бов_, mını_,\n  { {0x7afc020c, 0x20191108, 0xa0a6007c, 0x00000000}},  //   _sert, busi_, _найд,\n  { {0x7afc020c, 0x69dc1109, 0xdca30216, 0x00000000}},  // [1d60] _pert, _sure, еати,\n  { {0x69dc110a, 0xef860b7b, 0x272f005d, 0x00000000}},  //   _pure, _хлоп, nını_,\n  { {0x19ba0077, 0x7bd5002d, 0x394400f6, 0x00000000}},  //   будь_, _dizu, _pams_,\n  { {0x7ae50195, 0x7afc05ca, 0x39460006, 0x00000000}},  //   acht, _wert, udos_,\n  { {0x7afc020c, 0x39460211, 0x25ad00c7, 0x00000000}},  //   _tert, rdos_, doel_,\n  { {0x69dc0dc6, 0x6d46078f, 0x272f014a, 0x00000000}},  //   _ture, _haka, jını_,\n  { {0x6d46006a, 0xfaa30a27, 0x272f0279, 0x00000000}},  //   _kaka, _заро, dını_,\n  { {0x6d460390, 0x7ec70047, 0x7bdd014a, 0x00000000}},  //   _jaka, lépé, _yusu,\n  { {0x6d46110b, 0x272f0279, 0x21390023, 0x00000000}},  //   _maka, fını_, vesh_,\n  { {0x6d46110c, 0x20190ba5, 0x6843005e, 0x00000000}},  //   _laka, vusi_, _януа,\n  { {0x21390065, 0x2d920c07, 0x25ad00bb, 0x00000000}},  //   tesh_, kiye_, boel_,\n  { {0x6d460811, 0x20190004, 0x6364000a, 0x00000000}},  //   _naka, tusi_, _jònz,\n  { {0x21390065, 0x2d92014a, 0x2d800697, 0x00000000}},  //   resh_, diye_, dhie_,\n  { {0x2019110d, 0x7bdd008a, 0x21390065, 0x00000000}},  //   rusi_, _rusu, sesh_,\n  { {0x6d46110e, 0x2019005f, 0x4ea40920, 0x00000000}},  //   _baka, susi_, ерта,\n  { {0xf1a4008b, 0x2d92110f, 0xe3b80279, 0x00000000}},  //   _прын, giye_, llı_,\n  { {0x6d460bbb, 0xea00001d, 0x5c9900a5, 0x00000000}},  // [1d70] _daka, _đạo_, цкая_,\n  { {0xe3b801f6, 0x7ae5010f, 0x0bb4041f, 0x00000000}},  //   nlı_, ucht, ебую,\n  { {0x7bd51110, 0x68ed0211, 0x6d46014a, 0x00000000}},  //   _vizu, ñado, _faka,\n  { {0x2d801111, 0x6442021e, 0xe3b80180, 0x00000000}},  //   chie_, _osoi, hlı_,\n  { {0x25ad00c7, 0xe3b8014a, 0xf7451112, 0x00000000}},  //   voel_, klı_, дело,\n  { {0x6d4601d9, 0xe3b8026d, 0x00000000, 0x00000000}},  //   _zaka, jlı_,   ,\n  { {0x6d46014a, 0xda34007e, 0x25ad0112, 0x00000000}},  //   _yaka, _перы, toel_,\n  { {0x6faf0061, 0x5ebf0044, 0xd11f007d, 0x00000000}},  //   ंकडू, _আলাই, _भाषण_,\n  { {0xe3b802b9, 0x272f0279, 0x25ad0022, 0x00000000}},  //   flı_, tını_, roel_,\n  { {0xd3890088, 0x29d7002b, 0x27ed1113, 0x00000000}},  //   ійне_, _għar_, _iten_,\n  { {0x272f01f6, 0x320500ab, 0xda7a0049, 0x00000000}},  //   rını_, usly_, ַנשר,\n  { {0x272f01f6, 0x7207026c, 0xc6920104, 0x00000000}},  //   sını_, _ہفتہ_, _באב_,\n  { {0xe3ae008b, 0xa01b0047, 0x6d461114, 0x00000000}},  //   _аб_, szön, _raka,\n  { {0xdb1c002a, 0x2d921115, 0x753b00fa, 0x00000000}},  //   _phrí, wiye_, leuz,\n  { {0x6d461116, 0x1d0a00ed, 0x2d8008ea, 0x00000000}},  //   _paka, жеби_, thie_,\n  { {0x656b0313, 0x9f5900b0, 0xed570478, 0x00000000}},  //   _jogh, essä_, мос_,\n  { {0x6d460ba5, 0x2d921117, 0x656b0066, 0x00000000}},  // [1d80] _vaka, riye_, _mogh,\n  { {0x6d460be3, 0x656b0bd6, 0x290d1118, 0x00000000}},  //   _waka, _logh, _adea_,\n  { {0x6d46021e, 0x2d801119, 0x637f0699, 0x00000000}},  //   _taka, phie_, _gêne,\n  { {0xe3b80676, 0x443f0066, 0x29e8013f, 0x00000000}},  //   zlı_, kwu_, _ağac_,\n  { {0x7d04021e, 0xd90d00a6, 0xe3b8005d, 0x00000000}},  //   mais, صیل_, ylı_,\n  { {0x7d04021e, 0x75220197, 0x69cb01c3, 0x00000000}},  //   lais, _scoz, amge,\n  { {0x27ed111a, 0x656b0030, 0x68e90016, 0x00000000}},  //   _eten_, _bogh, _ffed,\n  { {0x7d04021e, 0x257800f4, 0x753b0020, 0x00000000}},  //   nais, _vélo_, geuz,\n  { {0xe3b8047f, 0x443f0066, 0x656b111b, 0x00000000}},  //   tlı_, gwu_, _dogh,\n  { {0x7d0400b0, 0x636d00f6, 0x656b0048, 0x00000000}},  //   hais, _búnq, _eogh,\n  { {0x7d04021e, 0xa3de02fb, 0x81bd001e, 0x00000000}},  //   kais, _दूर_, stēm,\n  { {0xe3b80180, 0x7d0400b0, 0x2d9e0010, 0x00000000}},  //   slı_, jais, étel_,\n  { {0x637f01d6, 0x9f5900b0, 0xe3b801df, 0x00000000}},  //   _sêne, yssä_, plı_,\n  { {0xe3b8005f, 0x81bd0089, 0xd2500647, 0x00000000}},  //   qlı_, otēk, _منت_,\n  { {0xdfd41036, 0xd90400e9, 0x656b0239, 0x00000000}},  //   торы, _پی_, _yogh,\n  { {0x7d04111c, 0x656b002b, 0x00000000, 0x00000000}},  //   gais, _xogh,   ,\n  { {0xfbdf08c6, 0x3b5500ed, 0x4c94007c, 0x00000000}},  // [1d90] _quê_, нкар, витс,\n  { {0x31a4005d, 0x60c003e1, 0xa3c3006e, 0x00000000}},  //   mıza_, ümme, ्षय_,\n  { {0xdb1c009f, 0x27ed0193, 0xc915012b, 0x00000000}},  //   _virð, _sten_, едећ,\n  { {0x7d04009d, 0x79820022, 0x00000000, 0x00000000}},  //   cais, ghow,   ,\n  { {0x656b002a, 0x31a4005a, 0x69cb111d, 0x00000000}},  //   _rogh, nıza_, rmge,\n  { {0xf1ca001d, 0x656b002a, 0xf6250131, 0x00000000}},  //   _dạy_, _sogh, едко,\n  { {0x81bd001e, 0x45d5053c, 0xd90f0123, 0x00000000}},  //   rtēj, нцит, _نیا_,\n  { {0x79820046, 0x443f0036, 0x81bd0089, 0x00000000}},  //   chow, twu_, stēj,\n  { {0x656b0026, 0x27ed0056, 0xfbdf0082, 0x00000000}},  //   _vogh, _uten_, _trêu_,\n  { {0x2d8c009d, 0x7d04007f, 0x00000000, 0x00000000}},  //   édez_, zais,   ,\n  { {0x0322008b, 0x656b0051, 0x68e404eb, 0x00000000}},  //   ыдэн, _togh, žide,\n  { {0x92df0044, 0x31a4014a, 0x00000000, 0x00000000}},  //   তরে_, fıza_,   ,\n  { {0x7d04111e, 0x6007111f, 0xa806004a, 0x00000000}},  //   vais, нням_, mañó,\n  { {0x7d040258, 0x00000000, 0x00000000, 0x00000000}},  //   wais,   ,   ,\n  { {0x7d040778, 0xf77200a3, 0xed5a0242, 0x00000000}},  //   tais, נקל_, пов_,\n  { {0x61ee008e, 0x7bc7006c, 0x00000000, 0x00000000}},  //   íble, _ahju,   ,\n  { {0x7d041120, 0xc19b009b, 0xdb1e00b0, 0x00000000}},  // [1da0] rais, _משקי, ympä,\n  { {0x7d041121, 0xdb1c0051, 0x60c40087, 0x00000000}},  //   sais, _bhrá, _izim,\n  { {0xe9da0f09, 0xc33201f8, 0x7d04044e, 0x00000000}},  //   чке_, רוב_, pais,\n  { {0xfbdf00f4, 0x2571000c, 0x307a0049, 0x00000000}},  //   _prêt_, _máls_, ּאַנ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x38cb089d, 0x60c40020, 0xdb1c0048, 0x00000000}},  //   سانی_, _mzim, _fhrá,\n  { {0xe2870025, 0xdb1c0051, 0x00000000, 0x00000000}},  //   _إذ_, _ghrá,   ,\n  { {0x0466017f, 0x75e7013f, 0x00000000, 0x00000000}},  //   етом, _qıza,   ,\n  { {0x81e70055, 0x60c40020, 0x98a300e2, 0x00000000}},  //   মীম_, _nzim, _бите,\n  { {0x8835007e, 0x00000000, 0x00000000, 0x00000000}},  //   _шэсц,   ,   ,\n  { {0x60c40020, 0x637600fa, 0x00000000, 0x00000000}},  //   _azim, _jâni,   ,\n  { {0x4a9b007b, 0x546a0265, 0xbcfb009d, 0x00000000}},  //   לייג, _наем_, _inég,\n  { {0xc953019b, 0x25710010, 0x06d50044, 0x00000000}},  //   אמר_, _vált_, _স্পি,\n  { {0xa3c302fb, 0x60c4001e, 0x25a00059, 0x00000000}},  //   ्षण_, _dzim, čilu_,\n  { {0x60c40045, 0x00000000, 0x00000000, 0x00000000}},  //   _ezim,   ,   ,\n  { {0x9f4900fa, 0x00000000, 0x00000000, 0x00000000}},  //   _itaí_,   ,   ,\n  { {0x2ef50265, 0x321e00b4, 0xdb1c1122, 0x00000000}},  // [1db0] _изпр, luty_, _shrá,\n  { {0xc5f60044, 0x8aa71123, 0x200b0197, 0x00000000}},  //   _ঘটনা_, нред, msci_,\n  { {0x321e1124, 0xdd91023c, 0x200b0026, 0x00000000}},  //   nuty_, _نود_, lsci_,\n  { {0x397801e1, 0x1a681125, 0x00000000, 0x00000000}},  //   нсію_, ریقی_,   ,\n  { {0x6d5d0481, 0x200b0026, 0x00000000, 0x00000000}},  //   _insa, nsci_,   ,\n  { {0x7c2d008d, 0x39490ebc, 0x6d4d00c7, 0x00000000}},  //   mtar, žas_, ldaa,\n  { {0x7c2d000d, 0xfbdf02d5, 0xe7080076, 0x00000000}},  //   ltar, _três_, رتون_,\n  { {0x6d4d02ae, 0x4904023c, 0x7c2d1126, 0x00000000}},  //   ndaa, _موفق, otar,\n  { {0x200b1127, 0xbcfb1128, 0xd6db00ed, 0x00000000}},  //   jsci_, _inéd, _ете_,\n  { {0x7c2d009f, 0x69da0923, 0x05960014, 0x00000000}},  //   itar, _éter, _یانگ,\n  { {0x7c2d0a0d, 0x6d5d02ab, 0x20190197, 0x00000000}},  //   htar, _onsa, ersi_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7c2d0065, 0x1b0c0044, 0x65690166, 0x00000000}},  //   jtar, স্টে_, mjeh,\n  { {0x6d5d1129, 0xa067003b, 0x321e0667, 0x00000000}},  //   _ansa, њара_, buty_,\n  { {0x7c2d04f4, 0x2019112a, 0xee15007e, 0x00000000}},  //   etar, arsi_, льтэ,\n  { {0x7c2d04cb, 0x65690065, 0xe8020061, 0x00000000}},  //   ftar, njeh, रीडा_,\n  { {0x442d0555, 0x60c40091, 0x7c2d1002, 0x00000000}},  // [1dc0] nte_, _uzim, gtar,\n  { {0x6d5d0cd4, 0xa3c1013d, 0x8ad60025, 0x00000000}},  //   _ensa, ंति_, نتائ,\n  { {0x442d048a, 0xbcfb088a, 0x7c2d001a, 0x00000000}},  //   hte_, _poét, atar,\n  { {0x69c9112b, 0x3f98003f, 0x637600c4, 0x00000000}},  //   _chee, liru_, _vâni,\n  { {0x442d047c, 0xa3c302fb, 0x7c2d050a, 0x00000000}},  //   jte_, ्षा_, ctar,\n  { {0x442d0030, 0xbb76005e, 0x3f98112c, 0x00000000}},  //   dte_, _румъ, niru_,\n  { {0x442d0007, 0xd6d50044, 0x61e300a4, 0x00000000}},  //   ete_, _স্বয, _nunl,\n  { {0x7bdc022b, 0x69c9112d, 0x6288112e, 0x00000000}},  //   _hiru, _ghee, vzdo,\n  { {0x442d0343, 0x7bdc0209, 0x37e601fb, 0x00000000}},  //   gte_, _kiru, _розг,\n  { {0x61e3005d, 0x20190107, 0x2904112f, 0x00000000}},  //   _bunl, vrsi_, _hema_,\n  { {0x442d0038, 0x7bdc0550, 0x7c2d0e49, 0x00000000}},  //   ate_, _miru, ztar,\n  { {0x442d04bd, 0x61e30253, 0x7c2d006b, 0x00000000}},  //   bte_, _dunl, ytar,\n  { {0x442d04bd, 0x7c2d0543, 0x29040020, 0x00000000}},  //   cte_, xtar, _mema_,\n  { {0x290400d4, 0x61e30082, 0xdce60089, 0x00000000}},  //   _lema_, _funl, _rokā,\n  { {0x91e3012b, 0x7c2d0036, 0xcddb003b, 0x00000000}},  //   _које, wtar, дња_,\n  { {0x2904009f, 0xdd11006b, 0x672d0166, 0x00000000}},  //   _nema_, _düşd, đaji,\n  { {0x6d4d01b5, 0xd1b8007a, 0x69c901c3, 0x00000000}},  // [1dd0] rdaa, _جاوا_, _rhee,\n  { {0x2d820100, 0xd9cb03d7, 0x7bdc029d, 0x00000000}},  //   _elke_, िष्ट, _ciru,\n  { {0x442d022b, 0x7bdc1130, 0x6abc0016, 0x00000000}},  //   zte_, _diru, _cyrf,\n  { {0x7c2d048a, 0x6d5d011c, 0x27e4023a, 0x00000000}},  //   ptar, _unsa, _bumn_,\n  { {0x442d00f4, 0xec350049, 0x7bdc1131, 0x00000000}},  //   xte_, _גאָר_, _firu,\n  { {0x69c900ab, 0x442d0161, 0x7bdc1132, 0x00000000}},  //   _whee, vte_, _giru,\n  { {0x69c900bb, 0x6abc0016, 0xc7940014, 0x00000000}},  //   _thee, _gyrf, جشنب,\n  { {0x61e300f6, 0x7bdc0032, 0x6f0500b9, 0x00000000}},  //   _runl, _ziru, _lehc,\n  { {0x442d0e6d, 0x779304e1, 0xf1bf0027, 0x00000000}},  //   ute_, _پیغا, dlá_,\n  { {0xf7700647, 0x657b0058, 0xe1f90517, 0x00000000}},  //   _وال_, skuh, нго_,\n  { {0x3f980059, 0x65690243, 0x395f0030, 0x00000000}},  //   viru_, pjeh, _knus_,\n  { {0x442d1133, 0x06d50044, 0x3f981134, 0x00000000}},  //   pte_, _স্থি, wiru_,\n  { {0x394d018e, 0x442d0065, 0xd0960a78, 0x00000000}},  //   _maes_, qte_, ушны,\n  { {0x649a007b, 0x749a061e, 0x00000000, 0x00000000}},  //   _אינה, _אינפ,   ,\n  { {0xe1f10a90, 0x395f0ace, 0x3f9801ee, 0x00000000}},  //   _است_, _onus_, riru_,\n  { {0x0ce20055, 0x3f980066, 0x22580030, 0x00000000}},  //   বর্ত, siru_, ærke_,\n  { {0x29040096, 0x7bdc00b0, 0x3f980091, 0x00000000}},  // [1de0] _rema_, _piru, piru_,\n  { {0xdd04038c, 0x09dc0061, 0x29041135, 0x00000000}},  //   ısın, यद्य, _sema_,\n  { {0x75e7006b, 0x29040041, 0x00000000, 0x00000000}},  //   _qızl, _pema_,   ,\n  { {0xfe9b00a3, 0x394d0325, 0x7bdc0036, 0x00000000}},  //   _טיימ, _caes_, _wiru,\n  { {0x29040020, 0x7bdc01a3, 0x00000000, 0x00000000}},  //   _vema_, _tiru,   ,\n  { {0xc3190044, 0x7d0600ea, 0x29040020, 0x00000000}},  //   ত্তি_, _heks, _wema_,\n  { {0x29040c1b, 0x7d061136, 0x394d0016, 0x00000000}},  //   _tema_, _keks, _faes_,\n  { {0x78260025, 0x5e57007b, 0x746a007c, 0x00000000}},  //   _معطل, ריקע_, еров_,\n  { {0x7d061137, 0xd90d0014, 0x00000000, 0x00000000}},  //   _meks, _آیه_,   ,\n  { {0x7d060056, 0x883b009b, 0x25bf0035, 0x00000000}},  //   _leks, _אתמו, alul_,\n  { {0x4ebf0055, 0x317201d0, 0x877b071c, 0x00000000}},  //   _আল্ল, _boyz_, _ראבי,\n  { {0x6fc00039, 0x25bf0035, 0x00000000, 0x00000000}},  //   böck, clul_,   ,\n  { {0x637600e5, 0x00000000, 0x00000000, 0x00000000}},  //   _bânt,   ,   ,\n  { {0x63761138, 0x1b1a0044, 0xf1bf04bb, 0x00000000}},  //   _cânt, ন্তে_, slá_,\n  { {0xa3c10183, 0x7d060107, 0xa3c3006e, 0x00000000}},  //   ंतर_, _beks, ्षर_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7d060630, 0xbcfb008e, 0xcb1b00ed, 0x00000000}},  // [1df0] _deks, _anéc, еќе_,\n  { {0x7d0600e0, 0x395f00f8, 0x3dc00058, 0x00000000}},  //   _eeks, _snus_, aliw_,\n  { {0x394d00c4, 0x00000000, 0x00000000, 0x00000000}},  //   _paes_,   ,   ,\n  { {0x4dfa007b, 0xa90701fa, 0x7d0600d9, 0x00000000}},  //   _שפרא, ابان, _geks,\n  { {0x1b1a0044, 0x00000000, 0x00000000, 0x00000000}},  //   ন্ধে_,   ,   ,\n  { {0x07a500ed, 0x6d4f1139, 0x17f80025, 0x00000000}},  //   јакн, _haca, ارنة_,\n  { {0x6d4f0169, 0x25bf001a, 0x27f800ca, 0x00000000}},  //   _kaca, tlul_, _črne_,\n  { {0x6d4f0181, 0x395f0022, 0x1b1a0044, 0x00000000}},  //   _jaca, _unus_, ন্দে_,\n  { {0x6d4f0127, 0x87270084, 0xb81c007d, 0x00000000}},  //   _maca, _معام, _नियम_,\n  { {0x6d4f106f, 0x00000000, 0x00000000, 0x00000000}},  //   _laca,   ,   ,\n  { {0x49b800a1, 0x25bf113a, 0x651508d4, 0x00000000}},  //   _شاہد_, plul_, _نوائ,\n  { {0x2496007a, 0xe2960454, 0x672d04eb, 0x00000000}},  //   انید_, раю_, đaju,\n  { {0x7d06000c, 0x764e009f, 0x63760adb, 0x00000000}},  //   _reks, _ábyr, _pânt,\n  { {0x64590719, 0x443d0022, 0x63760035, 0x00000000}},  //   _irwi, _ipw_, _dâns,\n  { {0x3ebe000c, 0x645c0089, 0x7d06006c, 0x00000000}},  //   ætt_, ārie, _peks,\n  { {0x6d4f001c, 0xa1930545, 0x645900b4, 0x00000000}},  //   _caca, _мајч, _krwi,\n  { {0x81bd0089, 0x7d060056, 0x6d4f113b, 0x00000000}},  // [1e00] rtēt, _veks, _daca,\n  { {0x6d4f113c, 0x2578000c, 0x907b0104, 0x00000000}},  //   _eaca, _hélt_, _סטיי,\n  { {0x7d060292, 0x6d4f113d, 0xeb97012b, 0x00000000}},  //   _teks, _faca, јих_,\n  { {0x6d4f0020, 0x32360049, 0x443d03b3, 0x00000000}},  //   _gaca, יטען_, _opw_,\n  { {0x6d440035, 0x2d80113e, 0xa01b0010, 0x00000000}},  //   meia, mkie_, szöv,\n  { {0x2d800046, 0x6d4f113f, 0x6d440056, 0x00000000}},  //   lkie_, _zaca, leia,\n  { {0xfaa3008b, 0x2d800061, 0x7c241140, 0x00000000}},  //   _даро, okie_, luir,\n  { {0x2d800343, 0x6d441141, 0xdb070056, 0x00000000}},  //   nkie_, neia, _skjø,\n  { {0xb7160014, 0x2d8001d6, 0x69c2006c, 0x00000000}},  //   _نباش, ikie_, mloe,\n  { {0x69c20016, 0x443d0093, 0x6e3e0056, 0x00000000}},  //   lloe, _dpw_, _oppb,\n  { {0x2d800343, 0xa69602a8, 0x0cc302d2, 0x00000000}},  //   kkie_, _трај, _शर्म,\n  { {0x7c24050f, 0x64590009, 0x00000000, 0x00000000}},  //   kuir, _frwi,   ,\n  { {0x6d4400c4, 0x248d0036, 0x6e3e0203, 0x00000000}},  //   deia, czem_, _appb,\n  { {0x6d4f1142, 0x7c240005, 0xdb050039, 0x00000000}},  //   _saca, duir, llhö,\n  { {0x44240b15, 0x6d4f1143, 0x8de801e0, 0x00000000}},  //   lum_, _paca, ифта_,\n  { {0x69c8001e, 0xdb1c0051, 0xccf8003b, 0x00000000}},  //   _ūden, _ghrú, ићу_,\n  { {0x44240fa2, 0x7c240207, 0x6562004f, 0x00000000}},  // [1e10] num_, guir, _mnoh,\n  { {0x25a91144, 0x6d4f04be, 0xde4702fd, 0x00000000}},  //   čali_, _waca, _پیرو_,\n  { {0x6d4f002a, 0x5a35005e, 0x7f3c0104, 0x00000000}},  //   _taca, снет, _יעזו,\n  { {0x44241145, 0x2d800046, 0x7c2404b4, 0x00000000}},  //   kum_, ckie_, buir,\n  { {0x765a0046, 0x44241146, 0xbcfb0051, 0x00000000}},  //   _arty, jum_, _gnéa,\n  { {0xbb850054, 0x44241147, 0xf74500ed, 0x00000000}},  //   _السي, dum_, секо,\n  { {0x69c21148, 0x443d00bb, 0x7f3c0049, 0x00000000}},  //   bloe, _spw_, דעוו,\n  { {0x4424009f, 0xa01b010f, 0x248d0129, 0x00000000}},  //   fum_, nzös, tzem_,\n  { {0x44241149, 0xe3b9114a, 0x00000000, 0x00000000}},  //   gum_, лби_,   ,\n  { {0xd7740054, 0x248d114b, 0x2d80114c, 0x00000000}},  //   _والع, rzem_, zkie_,\n  { {0x248d0c59, 0x7d0d03b6, 0xe10a00e2, 0x00000000}},  //   szem_, kaas, ленд_,\n  { {0x443d0584, 0xa06a003b, 0x7d0d01b1, 0x00000000}},  //   _tpw_, гама_, jaas,\n  { {0x4424000d, 0x5552026c, 0x645d0030, 0x00000000}},  //   cum_, _رپور, æsid,\n  { {0xa027009f, 0x64490016, 0x75290de1, 0x00000000}},  //   _stöð, mwei, lgez,\n  { {0x51f50076, 0x6449010f, 0xd5ac00a1, 0x00000000}},  //   _استر, lwei, _سہی_,\n  { {0x7529114d, 0x7c2404b4, 0x29d701d5, 0x00000000}},  //   ngez, tuir, _għax_,\n  { {0x6449001f, 0x2d800007, 0x69c201b5, 0x00000000}},  // [1e20] nwei, rkie_, vloe,\n  { {0x2d8009a2, 0x4f260242, 0x7c2404b4, 0x00000000}},  //   skie_, _удоб, ruir,\n  { {0x6449001f, 0x44240047, 0x7c240107, 0x00000000}},  //   hwei, zum_, suir,\n  { {0x4424014a, 0x64550089, 0x644900d9, 0x00000000}},  //   yum_, āzij, kwei,\n  { {0x7c240038, 0xa3e7006e, 0xe80b013d, 0x00000000}},  //   quir, _मूल_, _सौदा_,\n  { {0x64490016, 0x44240f11, 0x9f4000f6, 0x00000000}},  //   dwei, vum_, _juià_,\n  { {0x44240036, 0x7529010f, 0xd5ba00aa, 0x00000000}},  //   wum_, fgez, лси_,\n  { {0x7529069d, 0x3e5801aa, 0x644901a2, 0x00000000}},  //   ggez, _mčt_, fwei,\n  { {0x64490abe, 0x77ca004d, 0x394600c4, 0x00000000}},  //   gwei, _благ_, meos_,\n  { {0x4424114e, 0xf3660a30, 0xa3e70061, 0x00000000}},  //   rum_, стин, _मूळ_,\n  { {0x4424114f, 0x3e5801aa, 0xb7d7006d, 0x00000000}},  //   sum_, _nčt_, _اولا_,\n  { {0x79820046, 0x39461150, 0x656200b0, 0x00000000}},  //   nkow, neos_, _unoh,\n  { {0x543306c6, 0x44240d82, 0x7d0d0052, 0x00000000}},  //   _فرور, qum_, vaas,\n  { {0x3e580173, 0x7d0d00e7, 0x00000000, 0x00000000}},  //   _bčt_, waas,   ,\n  { {0x63ba0161, 0x7a1c001a, 0x7d0d1151, 0x00000000}},  //   motn, nătă, taas,\n  { {0x71a4025f, 0x63ba0059, 0x3253005e, 0x00000000}},  //   _најз, lotn, _хвър,\n  { {0x2d58007c, 0x79820036, 0x7d0d0052, 0x00000000}},  // [1e30] щить_, dkow, raas,\n  { {0x3e5801aa, 0x7d0d006c, 0x2d9e1152, 0x00000000}},  //   _fčt_, saas, éter_,\n  { {0x27f80059, 0x3946008e, 0x644901a2, 0x00000000}},  //   _črna_, feos_, zwei,\n  { {0x41c90183, 0xf1c90201, 0x63ba0161, 0x00000000}},  //   रतिस, रतिन, hotn,\n  { {0x1869003b, 0x63ba0089, 0x00000000, 0x00000000}},  //   рали_, kotn,   ,\n  { {0x36190057, 0xa09c0049, 0xb09c01ce, 0x00000000}},  //   ацию_, ניגט, ניגר,\n  { {0x752900b5, 0xf1c90061, 0x3946008e, 0x00000000}},  //   tgez, रतान, beos_,\n  { {0x64491153, 0xe579064b, 0x7bc500f8, 0x00000000}},  //   twei, рзи_, llhu,\n  { {0x290f04d0, 0xe1010055, 0x61ea010f, 0x00000000}},  //   maga_, ্লাহ_, _aufl,\n  { {0x290f006a, 0x6449001f, 0x7529059b, 0x00000000}},  //   laga_, rwei, sgez,\n  { {0x6449001f, 0x76ab072b, 0x79891154, 0x00000000}},  //   swei, _став_, _klew,\n  { {0x290f020c, 0x98a4002b, 0x00000000, 0x00000000}},  //   naga_, _qamħ_,   ,\n  { {0x2bbe007d, 0x27fd01f3, 0x637f1155, 0x00000000}},  //   ्तमा, npwn_, _lêni,\n  { {0x3e8a008b, 0x290f006c, 0x79890016, 0x00000000}},  //   айго_, haga_, _llew,\n  { {0x290f006c, 0x79891156, 0xaf99041f, 0x00000000}},  //   kaga_, _olew, стях_,\n  { {0x7242026c, 0x290f006c, 0xa3c30309, 0x00000000}},  //   _کھیل, jaga_, ्षक_,\n  { {0x290f0ad1, 0x9f8400b0, 0xbcfb0068, 0x00000000}},  // [1e40] daga_, töä_, _inél,\n  { {0x76410018, 0x3e5801aa, 0x79890a20, 0x00000000}},  //   _oply, _tčt_, _alew,\n  { {0x79820046, 0xfce6003b, 0x61e4003c, 0x00000000}},  //   tkow, _моно, _kiil,\n  { {0x5f4601ef, 0xed5a0057, 0x08c60769, 0x00000000}},  //   _انگل, _том_, обен,\n  { {0x79821157, 0x61e41158, 0x394600dc, 0x00000000}},  //   rkow, _miil, reos_,\n  { {0x39460211, 0x79820036, 0x39520006, 0x00000000}},  //   seos_, skow, žys_,\n  { {0x63ba004f, 0x290f1159, 0x3946008e, 0x00000000}},  //   votn, baga_, peos_,\n  { {0x6d560263, 0x61e400b0, 0x63ba0036, 0x00000000}},  //   ndya, _niil, wotn,\n  { {0x7c3600eb, 0x61ea001a, 0x60c4115a, 0x00000000}},  //   ntyr, _sufl, _nyim,\n  { {0xd37a08fc, 0xe72a02fd, 0x00000000, 0x00000000}},  //   рчи_, _خسرو_,   ,\n  { {0x63ba0aa9, 0x32660088, 0x60cd115b, 0x00000000}},  //   rotn, ітов, _szam,\n  { {0x63ba115c, 0x60c40045, 0xe5780089, 0x00000000}},  //   sotn, _byim, _puķu_,\n  { {0x63ba0059, 0x9f4900c4, 0x1b110044, 0x00000000}},  //   potn, _itaú_, ালতে_,\n  { {0x290f0569, 0x60cd0059, 0xa2940245, 0x00000000}},  //   zaga_, _vzam, _налі,\n  { {0x290f0b5a, 0xdd9b025f, 0x61e4115d, 0x00000000}},  //   yaga_, аша_, _fiil,\n  { {0x1b040055, 0x3f8307e0, 0x6e3500ea, 0x00000000}},  //   _লাগে_, skju_, rtzb,\n  { {0x6ebb006e, 0x290f006c, 0x637f00c4, 0x00000000}},  // [1e50] _शुरु, vaga_, _sêni,\n  { {0x290f0a71, 0x69c00d90, 0x637f00c4, 0x00000000}},  //   waga_, _akme, _pêni,\n  { {0xdced0182, 0x290f011c, 0xdb07000c, 0x00000000}},  //   ljač, taga_, _skjó,\n  { {0x2009115e, 0xc9840437, 0x00000000, 0x00000000}},  //   _kwai_, мучи,   ,\n  { {0x290f115f, 0x6446005f, 0xa804008b, 0x00000000}},  //   raga_, çkil, дзіл,\n  { {0x290f069e, 0x637f0181, 0x69c0014a, 0x00000000}},  //   saga_, _têni, _ekme,\n  { {0x64421160, 0xf96b09b2, 0x290f010e, 0x00000000}},  //   _apoi, _край_, paga_,\n  { {0xe795089d, 0x64420051, 0x799b011c, 0x00000000}},  //   _کارک, _bpoi, _umuw,\n  { {0xdced0091, 0xc9520104, 0x68e901f3, 0x00000000}},  //   jjač, _אמן_, _iged,\n  { {0x69d900b4, 0x61e401b1, 0x00000000, 0x00000000}},  //   lmwe, _siil,   ,\n  { {0x4b7c007b, 0x61e40103, 0x69d91161, 0x00000000}},  //   יאזו, _piil, omwe,\n  { {0x644f0030, 0xe802013d, 0x7c360023, 0x00000000}},  //   æcis, रीका_, ytyr,\n  { {0x61e41162, 0xe5c4007e, 0x64421163, 0x00000000}},  //   _viil, _ўсхо, _gpoi,\n  { {0x2d8b0555, 0x2215005e, 0x00000000, 0x00000000}},  //   _alce_, _ефир,   ,\n  { {0x63a1002b, 0x61e40052, 0x00000000, 0x00000000}},  //   miln, _tiil,   ,\n  { {0x68e91164, 0x63a10059, 0xf6520049, 0x00000000}},  //   _nged, liln, עצן_,\n  { {0x27ed022b, 0x8b26007e, 0x27f80059, 0x00000000}},  // [1e60] _nuen_, здзе, _črno_,\n  { {0x63a100ca, 0x68e91165, 0x69c00145, 0x00000000}},  //   niln, _aged, _skme,\n  { {0x7c360018, 0x6ac60025, 0x5eda0044, 0x00000000}},  //   styr, أقام, _ব্রে,\n  { {0x27ed0219, 0x290d000d, 0x7e610030, 0x00000000}},  //   _buen_, _ceea_, ælpe,\n  { {0xa3cb02d2, 0x63a1010a, 0x7d041166, 0x00000000}},  //   लता_, kiln, mbis,\n  { {0x27ed022b, 0x69d90455, 0x26c51167, 0x00000000}},  //   _duen_, amwe, _bylo_,\n  { {0x63a11168, 0x68ed1169, 0xaa430364, 0x00000000}},  //   diln, žada, _перл,\n  { {0x7f8b005f, 0xb60800b9, 0x69c00006, 0x00000000}},  //   _müqa, jišť, _ukme,\n  { {0x63a10062, 0xdb05008e, 0x7d04116a, 0x00000000}},  //   filn, cohó, ibis,\n  { {0x57fb009b, 0x7d040433, 0xfbbe0164, 0x00000000}},  //   _ללמו, hbis, ्तिम,\n  { {0x27ed022b, 0x200900e7, 0x00000000, 0x00000000}},  //   _zuen_, _swai_,   ,\n  { {0x7c24116b, 0x27ed0085, 0x00000000, 0x00000000}},  //   krir, _yuen_,   ,\n  { {0x63a107e4, 0x777a002d, 0x5334007c, 0x00000000}},  //   biln, _kotx, _желт,\n  { {0xdced016c, 0x00000000, 0x00000000, 0x00000000}},  //   rjač,   ,   ,\n  { {0x433b00b6, 0x777a0c2f, 0xe3b30049, 0x00000000}},  //   _העוב, _motx, _אױס_,\n  { {0x7c240207, 0x7d04011c, 0x442402d1, 0x00000000}},  //   frir, gbis, orm_,\n  { {0x7c2401ed, 0xb60604eb, 0x00000000, 0x00000000}},  // [1e70] grir, lošć,   ,\n  { {0x44240051, 0xeb9b0084, 0xdcef00e5, 0x00000000}},  //   irm_, حضرت_, _bocă,\n  { {0x7d04116c, 0x7c240197, 0xb60604eb, 0x00000000}},  //   bbis, arir, nošć,\n  { {0xdb1c0048, 0xf1bf00fa, 0x00000000, 0x00000000}},  //   _bhró, noá_,   ,\n  { {0xdb17049a, 0x27ed116d, 0x98c70025, 0x00000000}},  //   loxí, _quen_, أغان,\n  { {0x777a0129, 0x3dc910a5, 0x44240022, 0x00000000}},  //   _cotx, llaw_, drm_,\n  { {0x63a101d9, 0xb606016c, 0x7d0f0010, 0x00000000}},  //   viln, jošć, _kecs,\n  { {0x4975007e, 0x63a10036, 0x3dc90058, 0x00000000}},  //   _ўлас, wiln, nlaw_,\n  { {0x63a10059, 0x69c3009d, 0x753b031a, 0x00000000}},  //   tiln, îneu, rfuz,\n  { {0x645b00bb, 0x7d04116e, 0x7d0f0010, 0x00000000}},  //   rvui, zbis, _lecs,\n  { {0x63a10059, 0xa91d0bf8, 0x65790600, 0x00000000}},  //   riln, _alži, _towh,\n  { {0x7c24000c, 0x62810ad0, 0x7d0f00e5, 0x00000000}},  //   yrir, rylo, _necs,\n  { {0x63a10dec, 0x3dc900e0, 0x31690288, 0x00000000}},  //   piln, dlaw_, _dnaz_,\n  { {0x7c24116f, 0x25bf0a86, 0xf8ab0082, 0x00000000}},  //   vrir, loul_, _đời_,\n  { {0x25ad0030, 0x7d040bb4, 0x7d0f1170, 0x00000000}},  //   onel_, tbis, _becs,\n  { {0x25ad0549, 0x7c240065, 0x7f8b006b, 0x00000000}},  //   nnel_, trir, _vüqa,\n  { {0x7d041171, 0xdca30bbd, 0x7c24115f, 0x00000000}},  // [1e80] rbis, вати, urir,\n  { {0x7c24022b, 0x25bf000a, 0x00000000, 0x00000000}},  //   rrir, houl_,   ,\n  { {0x3dc90016, 0x00000000, 0x00000000, 0x00000000}},  //   blaw_,   ,   ,\n  { {0x7c240207, 0xdb1c0051, 0x3dc90051, 0x00000000}},  //   prir, _phró, claw_,\n  { {0xb8f602d2, 0x25bf1172, 0x00000000, 0x00000000}},  //   _हर_, doul_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x9f8d000c, 0x00000000, 0x00000000, 0x00000000}},  //   nþá_,   ,   ,\n  { {0xbf0a0061, 0x442400d9, 0x545400e2, 0x00000000}},  //   वरुन_, trm_, евит,\n  { {0x29060020, 0x777a00d4, 0x660d016c, 0x00000000}},  //   mboa_, _totx, ćaka,\n  { {0x4274007c, 0x2b580087, 0x00000000, 0x00000000}},  //   егос, _jarc_,   ,\n  { {0x2b580129, 0x25bf1173, 0x32180161, 0x00000000}},  //   _marc_, boul_, éry_,\n  { {0xc48601fb, 0xe4a6003b, 0xb606016c, 0x00000000}},  //   _олек, _орло, rošć,\n  { {0xbf0a001c, 0xa3e703d7, 0xc0580245, 0x00000000}},  //   वरून_, _मंच_, мір_,\n  { {0x0efb02fb, 0x47cc0044, 0x2b5809cc, 0x00000000}},  //   ्रेस_, াদকী, _narc_,\n  { {0x3ceb1174, 0xf1bf00fa, 0x3dc90133, 0x00000000}},  //   _pgcv_, poá_, tlaw_,\n  { {0xcdd8003b, 0x637f01c3, 0x00000000, 0x00000000}},  //   дњу_, _fêns,   ,\n  { {0x7d0f0ede, 0x7d02008e, 0x2b58005b, 0x00000000}},  // [1e90] _vecs, ñosa, _barc_,\n  { {0x8cd00061, 0xf4000044, 0x00000000, 0x00000000}},  //   _दररो, _এটার_,   ,\n  { {0x7d0f005b, 0x2b5800fa, 0xdb1c0045, 0x00000000}},  //   _tecs, _darc_, _phrò,\n  { {0x645c0089, 0x2d9201aa, 0x25f2013d, 0x00000000}},  //   ārij, chye_, ँदनी_,\n  { {0x2b580b33, 0x201900b0, 0x6cfa00b3, 0x00000000}},  //   _farc_, nssi_, _מפרס,\n  { {0x237c0521, 0x7c2d1175, 0x2b58004a, 0x00000000}},  //   _novj_, muar, _garc_,\n  { {0x7c2d020c, 0x2bbe006e, 0x199500a5, 0x00000000}},  //   luar, ्तरा, _завя,\n  { {0xc867005e, 0x290600f6, 0x00000000, 0x00000000}},  //   _отзи, cboa_,   ,\n  { {0x25bf001a, 0x00000000, 0x00000000, 0x00000000}},  //   roul_,   ,   ,\n  { {0x25ad0f46, 0x25bf1176, 0x69cb1177, 0x00000000}},  //   snel_, soul_, llge,\n  { {0x25ad1178, 0x7c2d006c, 0x69cb0007, 0x00000000}},  //   pnel_, huar, olge,\n  { {0x7c2d1179, 0xa3cf007d, 0x00000000, 0x00000000}},  //   kuar, _वीर_,   ,\n  { {0x656b0375, 0xbcfb0051, 0x7c2d0065, 0x00000000}},  //   _ingh, _gnéi, juar,\n  { {0xdb1e0065, 0x7c2d117a, 0x6d4d00e0, 0x00000000}},  //   ropë, duar, eeaa,\n  { {0x442d0472, 0x20190026, 0x3c430089, 0x00000000}},  //   lue_, assi_, hīvā_,\n  { {0x7c2d0048, 0x52740025, 0x00000000, 0x00000000}},  //   fuar, _جاهز,   ,\n  { {0x2b5800f6, 0x7c2d0198, 0x442d030a, 0x00000000}},  // [1ea0] _parc_, guar, nue_,\n  { {0x2d920061, 0x68fb000a, 0xe0d7007e, 0x00000000}},  //   shye_, _afud, _явы_,\n  { {0xa926007c, 0x27ff0e65, 0x3ea600e2, 0x00000000}},  //   едел, _atun_, _чинг,\n  { {0x442d117b, 0xb17b0039, 0x7c2d0023, 0x00000000}},  //   kue_, rmåg, buar,\n  { {0xc7c601f9, 0x7c2d0f6a, 0x6e2e01bf, 0x00000000}},  //   нски, cuar, lubb,\n  { {0x7d16117c, 0x656b117d, 0xfaa60069, 0x00000000}},  //   lays, _angh, _заго,\n  { {0x442d009d, 0x21200022, 0xb81c0316, 0x00000000}},  //   eue_, _odih_, _निकम_,\n  { {0x09e30098, 0x7d16011c, 0x442d00ea, 0x00000000}},  //   _босн, nays, fue_,\n  { {0x6e2e0270, 0x98af007f, 0x00000000, 0x00000000}},  //   hubb, degė_,   ,\n  { {0x656b018e, 0x5c370049, 0x2120000a, 0x00000000}},  //   _engh, ערין_, _adih_,\n  { {0x7c2d1179, 0xbcfb009d, 0x2c520173, 0x00000000}},  //   zuar, _inév, _lņd_,\n  { {0x6e2e1054, 0x442d117e, 0xdce60173, 0x00000000}},  //   dubb, bue_, _ankč,\n  { {0x442d009d, 0x7c2d117f, 0xf1a4007e, 0x00000000}},  //   cue_, xuar, урэн,\n  { {0x20190bac, 0x7c2d0023, 0x00000000, 0x00000000}},  //   rssi_, vuar,   ,\n  { {0x656b018e, 0x6f150059, 0x6e2e0d47, 0x00000000}},  //   _yngh, razc, gubb,\n  { {0x7c2201d5, 0x7c2d0238, 0x40950025, 0x00000000}},  //   ġorn, tuar, _للبر,\n  { {0xb81c013d, 0x00000000, 0x00000000, 0x00000000}},  // [1eb0] _निगम_,   ,   ,\n  { {0x6e2e0209, 0x7c2d1180, 0x3df50f93, 0x00000000}},  //   bubb, ruar, _изос,\n  { {0x7d160061, 0x442d022b, 0x6d4d0961, 0x00000000}},  //   bays, zue_, peaa,\n  { {0x3c430089, 0xa91d0059, 0x27ff0093, 0x00000000}},  //   tīvā_, _možg, _ptun_,\n  { {0x7c2d0d87, 0xe10c0049, 0x442d1181, 0x00000000}},  //   quar, פּאָ, xue_,\n  { {0x442d00f4, 0xa3cf013d, 0xf74501bd, 0x00000000}},  //   vue_, _वीं_, теко,\n  { {0xead4007c, 0x00000000, 0x00000000, 0x00000000}},  //   _борь,   ,   ,\n  { {0x442d00f4, 0x0565030d, 0x68fb005b, 0x00000000}},  //   tue_, твин, _ufud,\n  { {0xe4320025, 0x00000000, 0x00000000, 0x00000000}},  //   لفيد,   ,   ,\n  { {0x394f1182, 0x260e0061, 0xdb1e1183, 0x00000000}},  //   legs_, णीही_, topé,\n  { {0x442d0038, 0x2000001a, 0x36750025, 0x00000000}},  //   sue_, _stii_, _جهاز,\n  { {0xdb1e1184, 0x656b0412, 0x00000000, 0x00000000}},  //   ropé, _ungh,   ,\n  { {0x442d032c, 0x8edf0055, 0x7bde0161, 0x00000000}},  //   que_, _ব্লগ, ympu,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6da600ed, 0x7d02004a, 0x00000000, 0x00000000}},  //   вива, ñoso,   ,\n  { {0x12e80049, 0x320500ab, 0xdd920445, 0x00000000}},  //   _אַפּ, mply_, جور_,\n  { {0xa91d0119, 0x2bf6007c, 0x6e2e0093, 0x00000000}},  // [1ec0] _možd, тябр, subb,\n  { {0x6e2e01bc, 0x7d16006a, 0xaf0a0025, 0x00000000}},  //   pubb, says, _تقدم_,\n  { {0x7d16009d, 0x00000000, 0x00000000, 0x00000000}},  //   pays,   ,   ,\n  { {0x637e00b9, 0x00000000, 0x00000000, 0x00000000}},  //   _záně,   ,   ,\n  { {0xe94700a1, 0xfbd100a1, 0xd90d009e, 0x00000000}},  //   ئرمی, شتے_, ثیق_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6ae00055, 0x98b2014a, 0x00000000, 0x00000000}},  //   _প্রো, ıyı_,   ,\n  { {0x80d30061, 0x00000000, 0x00000000, 0x00000000}},  //   _ठरले,   ,   ,\n  { {0xdb1c00b9, 0x00000000, 0x00000000, 0x00000000}},  //   _zkrá,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xc56a0025, 0x00000000, 0x00000000, 0x00000000}},  //   _يحصل_,   ,   ,\n  { {0x316d04a8, 0xfbdf0016, 0x00000000, 0x00000000}},  //   ñez_, _apêl_,   ,\n  { {0x60d60036, 0x94760025, 0x9054007e, 0x00000000}},  //   _czym, _جداا, авяц,\n  { {0x547b00b6, 0x32660264, 0x9e350a78, 0x00000000}},  //   _קטגו, _атив, легч,\n  { {0xdb06013e, 0x00000000, 0x00000000, 0x00000000}},  //   ámýc,   ,   ,\n  { {0x7bc705cb, 0x6288005b, 0xa91d0161, 0x00000000}},  //   _skju, mydo, _kože,\n  { {0xdb1c1185, 0xfbd907d8, 0x6288007f, 0x00000000}},  // [1ed0] _skrá, едај_, lydo,\n  { {0xa91d0119, 0x8f5501fb, 0x63a800e0, 0x00000000}},  //   _može, _свої, nidn,\n  { {0x61ed1186, 0x75221187, 0x7ac4007e, 0x00000000}},  //   _kial, _odoz, асце,\n  { {0x61ed0022, 0x798010e4, 0xafdb0190, 0x00000000}},  //   _jial, _comw, stød,\n  { {0xa3c2001c, 0x6d5d0051, 0x61ed0036, 0x00000000}},  //   ंवा_, _iasa, _mial,\n  { {0x75221188, 0x61ed1189, 0xab8401ab, 0x00000000}},  //   _adoz, _lial, _куск,\n  { {0x6d5d0811, 0xe5a5019d, 0x27ec00ab, 0x00000000}},  //   _kasa, лики, _didn_,\n  { {0xe459005e, 0x6d5d002d, 0x60cd118a, 0x00000000}},  //   ежи_, _jasa, _oyam,\n  { {0x6d5d0d56, 0xa91d01ee, 0x69c90058, 0x00000000}},  //   _masa, _vožd, _ikee,\n  { {0x6d5d118b, 0x7522022b, 0x2bd9013d, 0x00000000}},  //   _lasa, _edoz, _बीमा,\n  { {0x61ed0a49, 0x60d60036, 0xe7840072, 0x00000000}},  //   _bial, _szym, _туто,\n  { {0x61ed118c, 0x6d5d006a, 0x60cd0009, 0x00000000}},  //   _cial, _nasa, _byam,\n  { {0x34390049, 0x7bc5006c, 0x60cd0009, 0x00000000}},  //   _נײַע, kohu, _cyam,\n  { {0x94740879, 0x443f118d, 0x32050837, 0x00000000}},  //   _خدما, mtu_, pply_,\n  { {0x6d5d006a, 0x62880036, 0x22580030, 0x00000000}},  //   _basa, cydo, ærkt_,\n  { {0x6d5d00d6, 0x61ed0207, 0xed57007c, 0x00000000}},  //   _casa, _gial, лос_,\n  { {0x6d5d020c, 0xbcfb00f6, 0x20040051, 0x00000000}},  // [1ee0] _dasa, _anés, ímid_,\n  { {0x443f0288, 0xa09b01ce, 0x69c9118e, 0x00000000}},  //   itu_, _נייט, _akee,\n  { {0x443f118f, 0x69db0051, 0x00000000, 0x00000000}},  //   htu_, _bhue,   ,\n  { {0x69db001c, 0x644b0030, 0x8d560072, 0x00000000}},  //   _chue, _opgi, _сточ,\n  { {0x443f1190, 0xa2ca007d, 0x8eb30014, 0x00000000}},  //   jtu_, _सुन्, _نمیش,\n  { {0x6d5d1191, 0xdb1c0698, 0xcb76003b, 0x00000000}},  //   _zasa, _skræ, _сумњ,\n  { {0x6d5d011f, 0xbb3b01ce, 0x56941192, 0x00000000}},  //   _yasa, _רעלי, райт,\n  { {0xa91d0091, 0x7df50006, 0x77920014, 0x00000000}},  //   _pože, _sąsk, _گیتا,\n  { {0x61ed002a, 0x63a80039, 0x2d8200ca, 0x00000000}},  //   _rial, tidn, _moke_,\n  { {0x61ed005b, 0xa91d0a0f, 0x2d821092, 0x00000000}},  //   _sial, _vože, _loke_,\n  { {0x61ed0169, 0x443f002d, 0x60cd04be, 0x00000000}},  //   _pial, atu_, _syam,\n  { {0x443f0169, 0x3f811193, 0x62881194, 0x00000000}},  //   btu_, _sohu_, rydo,\n  { {0x629a0e17, 0x6d5d0127, 0x61ed0207, 0x00000000}},  //   szto, _rasa, _vial,\n  { {0x60cd0020, 0x6d5d1084, 0xd3700025, 0x00000000}},  //   _vyam, _sasa, _ذهب_,\n  { {0xcddb03f3, 0x6d4403c5, 0x61ed0275, 0x00000000}},  //   ења_, ffia, _tial,\n  { {0x7ae11195, 0x2d580e09, 0x2d8201a3, 0x00000000}},  //   _últi, лись_, _coke_,\n  { {0x6d5d0a5c, 0x5b150242, 0x65600051, 0x00000000}},  // [1ef0] _vasa, имат, idmh,\n  { {0x6d5d1196, 0x7bdc1197, 0x69c90160, 0x00000000}},  //   _wasa, _chru, _skee,\n  { {0x6d5d1198, 0x443f022b, 0x2cae005f, 0x00000000}},  //   _tasa, ztu_, _əldə_,\n  { {0x6d5d0051, 0xbcfb004a, 0x64400a2f, 0x00000000}},  //   _uasa, _enér, ktmi,\n  { {0x443f01ca, 0x99870010, 0xb8fd006e, 0x00000000}},  //   xtu_, énő_, _डर_,\n  { {0x8ae70822, 0x7d0d0190, 0x660500ed, 0x00000000}},  //   _бібл, lbas, апка,\n  { {0x69db1199, 0x7d0d0288, 0x01d60044, 0x00000000}},  //   _thue, obas, _সংসদ,\n  { {0x443f0f3c, 0x7c2d0207, 0x1425007c, 0x00000000}},  //   ttu_, orar, адим,\n  { {0x99840054, 0x4375005e, 0x765a0016, 0x00000000}},  //   _القو, аунт, _esty,\n  { {0x443f119a, 0x395f010f, 0x657b01c2, 0x00000000}},  //   rtu_, _haus_, sjuh,\n  { {0x443f009f, 0x659503e0, 0xe10a026b, 0x00000000}},  //   stu_, _кажу, кенд_,\n  { {0x9f49009f, 0x443f0209, 0x7c2d049d, 0x00000000}},  //   _stað_, ptu_, krar,\n  { {0x7d0d0146, 0x2d820059, 0x395f119b, 0x00000000}},  //   dbas, _roke_, _maus_,\n  { {0x765a018e, 0x23290088, 0x7c2d119c, 0x00000000}},  //   _ysty, _роки_, drar,\n  { {0xdee60407, 0xeab00055, 0xa3c2024c, 0x00000000}},  //   рови, _কর্ম, ंवर_,\n  { {0x442d0198, 0x7d0d119d, 0x395f00d4, 0x00000000}},  //   ore_, gbas, _naus_,\n  { {0x442d00f4, 0x6d44119e, 0xed5700e2, 0x00000000}},  // [1f00] nre_, rfia, шот_,\n  { {0x442d119f, 0x7d0d11a0, 0x3160002d, 0x00000000}},  //   ire_, abas, _haiz_,\n  { {0x6f1c04bd, 0x442d001f, 0x7d0d0039, 0x00000000}},  //   marc, hre_, bbas,\n  { {0x442d0e58, 0x7c2d00ab, 0xdb1c0039, 0x00000000}},  //   kre_, brar, _skrä,\n  { {0x7c2d001a, 0x442d0030, 0x4bd100a1, 0x00000000}},  //   crar, jre_, _کےلئ,\n  { {0x442d02cc, 0x7df50fed, 0x6f1c0122, 0x00000000}},  //   dre_, _sąsi, narc,\n  { {0x442d0555, 0xd5ba00e3, 0x660300ed, 0x00000000}},  //   ere_, кси_, опја,\n  { {0x442d11a1, 0x3160022b, 0x6f1c0051, 0x00000000}},  //   fre_, _naiz_, harc,\n  { {0x6fc60061, 0x3e5801aa, 0x57ea0bb8, 0x00000000}},  //   लकां, _lōt_, _адам_,\n  { {0x46a60265, 0x937800ed, 0x883b009b, 0x00000000}},  //   _казв, убот_, _בתמו,\n  { {0x6440006c, 0x321e11a2, 0x442d11a3, 0x00000000}},  //   stmi, usty_, are_,\n  { {0x442d11a4, 0x044600e3, 0x6f170240, 0x00000000}},  //   bre_, _ведн, _sexc,\n  { {0x6f1c0544, 0x442d00f4, 0x2fc70011, 0x00000000}},  //   farc, cre_, _ưng_,\n  { {0x6f1c027b, 0x7c2d03c7, 0xa91d11a5, 0x00000000}},  //   garc, vrar, _moža,\n  { {0x31600180, 0xa91d016c, 0xbe8811a6, 0x00000000}},  //   _faiz_, _loža, асте_,\n  { {0xf27b0452, 0x527b0104, 0x31600288, 0x00000000}},  //   _ירוש, _ינוא, _gaiz_,\n  { {0x7d0d11a7, 0xdce60006, 0x395f010f, 0x00000000}},  // [1f10] rbas, _mokė, _raus_,\n  { {0x7c2d11a8, 0x6f1c001a, 0x7d0d00ea, 0x00000000}},  //   rrar, carc, sbas,\n  { {0x395f00f8, 0x7d0d0e9c, 0x442d0010, 0x00000000}},  //   _paus_, pbas, zre_,\n  { {0x442d11a9, 0xa91d0825, 0x7c2d007f, 0x00000000}},  //   yre_, _boža, prar,\n  { {0x4dda009b, 0x67d500ed, 0x9f4007f0, 0x00000000}},  //   _תחרו, боду, _guió_,\n  { {0x442d028c, 0x6747007e, 0xd8740014, 0x00000000}},  //   vre_, рэдз, تامب,\n  { {0xa6c903c8, 0x3618008b, 0xaa950025, 0x00000000}},  //   ылка_, ацыю_, _الأث,\n  { {0x442d0a8d, 0xa2c10061, 0xa3cf0061, 0x00000000}},  //   tre_, _रुग्, _वीज_,\n  { {0x442d03d5, 0x7f8b005f, 0x291d006a, 0x00000000}},  //   ure_, _hüqu, mawa_,\n  { {0x291d006a, 0x61f80521, 0x316001a3, 0x00000000}},  //   lawa_, _buvl, _saiz_,\n  { {0x442d0047, 0xa2ca0061, 0x6f1c0e1c, 0x00000000}},  //   sre_, _सुद्, varc,\n  { {0x442d11aa, 0x291d006a, 0x568c007b, 0x00000000}},  //   pre_, nawa_, _שטאַ,\n  { {0x7dfc01aa, 0xa4d40088, 0xafe60088, 0x00000000}},  //   _pčso, _доці, йомл,\n  { {0x291d0127, 0xafe60d51, 0xb17b0c73, 0x00000000}},  //   hawa_, согл, lmål,\n  { {0x291d0e74, 0x2d960930, 0x00000000, 0x00000000}},  //   kawa_, брас,   ,\n  { {0x6f1c0412, 0x291d00e7, 0xb17b0ccc, 0x00000000}},  //   sarc, jawa_, nmål,\n  { {0x6f1c11ab, 0xdd8f0025, 0xcaf60025, 0x00000000}},  // [1f20] parc, روك_, مساب,\n  { {0xc4d208cd, 0x3b18002b, 0x00000000, 0x00000000}},  //   לגן_, _qerq_,   ,\n  { {0x25ad11ac, 0xdb070047, 0xb17b043e, 0x00000000}},  //   kiel_, ámár, kmål,\n  { {0x291d11ad, 0xa91d11ae, 0x38cb00a6, 0x00000000}},  //   gawa_, _poža, گامی_,\n  { {0x53c702f4, 0x25ad0027, 0xb5fc002b, 0x00000000}},  //   रकाश, diel_, _irġi,\n  { {0x9b960025, 0x6d56006b, 0xaa0800a1, 0x00000000}},  //   _الست, leya, _نعرے_,\n  { {0x25ad02ae, 0x3a210061, 0x291d033b, 0x00000000}},  //   fiel_, cshp_, bawa_,\n  { {0x2d8001d6, 0xd943017a, 0x1dc80061, 0x00000000}},  //   njie_, _неси, लवित,\n  { {0x764310ed, 0xa91d047c, 0x61f811af, 0x00000000}},  //   atny, _kožn, _suvl,\n  { {0x5c5b0476, 0x388e0089, 0x00000000, 0x00000000}},  //   נדיק, _vērā_,   ,\n  { {0xa91d11b0, 0x25ad0250, 0xcb1300b3, 0x00000000}},  //   _možn, biel_, הלת_,\n  { {0x25ad11b1, 0xa91d00b9, 0x7df50006, 0x00000000}},  //   ciel_, _ložn, _mąst,\n  { {0x2d800007, 0x23e601e1, 0x7df50006, 0x00000000}},  //   djie_, _лікв, _ląst,\n  { {0x291d0046, 0xdbf10224, 0x92940893, 0x00000000}},  //   zawa_, _příl, _малц,\n  { {0x656200e0, 0x04b700a1, 0x291d05cd, 0x00000000}},  //   _kaoh, _نھیں_, yawa_,\n  { {0x2d800023, 0x00000000, 0x00000000, 0x00000000}},  //   gjie_,   ,   ,\n  { {0x4dd40025, 0x656211b2, 0x21290145, 0x00000000}},  // [1f30] ستفس, _maoh, _idah_,\n  { {0xdea401ef, 0x291d09bd, 0x25ad0e42, 0x00000000}},  //   _کیفی, wawa_, ziel_,\n  { {0x291d03b0, 0x9f84006c, 0xdab90025, 0x00000000}},  //   tawa_, töö_, جهات_,\n  { {0x291d0020, 0xe3b8006b, 0x8f5500a2, 0x00000000}},  //   uawa_, hnı_, _انگش,\n  { {0xf77006c6, 0x25ad010f, 0x2d99046a, 0x00000000}},  //   کان_, viel_, _ilse_,\n  { {0x291d11b3, 0x7761006b, 0x5fc90061, 0x00000000}},  //   sawa_, _qalx, ळविल,\n  { {0x1995007e, 0x291d11b4, 0x25ad0253, 0x00000000}},  //   _давя, pawa_, tiel_,\n  { {0x7d1f0023, 0x764311b5, 0x200901a3, 0x00000000}},  //   naqs, rtny, _otai_,\n  { {0x69cb00b5, 0x25ad028c, 0xb17b11b6, 0x00000000}},  //   moge, riel_, rmål,\n  { {0x42250088, 0x249f11b7, 0xb17b11b8, 0x00000000}},  //   одов, rzum_, smål,\n  { {0x80d10055, 0x25ad010f, 0x09b50049, 0x00000000}},  //   সেম্, piel_, ַפֿט_,\n  { {0x2d9900d9, 0x00000000, 0x00000000, 0x00000000}},  //   _nlse_,   ,   ,\n  { {0x6d560e9e, 0xb5c80014, 0x00000000, 0x00000000}},  //   veya, _اونم_,   ,\n  { {0x6d560022, 0xaab9013d, 0x2d9900f6, 0x00000000}},  //   weya, _आशंक, _alse_,\n  { {0x59c902fb, 0x2d800343, 0xa91d11b9, 0x00000000}},  //   िकार, tjie_, _rožn,\n  { {0x753b000b, 0x69cb01ee, 0x7df5007f, 0x00000000}},  //   nguz, joge, _rąst,\n  { {0x3b86005e, 0x6d5611ba, 0x8c4300ed, 0x00000000}},  // [1f40] олаг, reya, мете,\n  { {0x2d990406, 0x6d5601aa, 0x394d0145, 0x00000000}},  //   _else_, seya, _abes_,\n  { {0xe8fa0072, 0xa91d0f3a, 0x6d5611bb, 0x00000000}},  //   але_, _vožn, peya,\n  { {0x69cb00eb, 0xfd120025, 0x7d1f006b, 0x00000000}},  //   goge, _تجد_, caqs,\n  { {0x7d0411bc, 0xa91d0059, 0x386d00c4, 0x00000000}},  //   mcis, _tožn, _crer_,\n  { {0x7c240051, 0x7d0411bd, 0xf0930104, 0x00000000}},  //   msir, lcis, ונד_,\n  { {0x69cb0c53, 0x41ca0164, 0x7c240d61, 0x00000000}},  //   boge, रवास, lsir,\n  { {0x69cb0211, 0x0d970049, 0x386d000a, 0x00000000}},  //   coge, ַכים_, _frer_,\n  { {0x7c240363, 0xdb1e0030, 0xc31e0044, 0x00000000}},  //   nsir, ropæ, _দাবি_,\n  { {0x7792007a, 0x7c2411be, 0x21290085, 0x00000000}},  //   _زیبا, isir, _sdah_,\n  { {0x200911bf, 0x8afb0049, 0x7dfc0173, 0x00000000}},  //   _stai_, יליז, _dčsk,\n  { {0x96330245, 0x7c240145, 0xa1940245, 0x00000000}},  //   _ініц, ksir, даюч,\n  { {0x48b80044, 0xa2ca007d, 0x78a20161, 0x00000000}},  //   _জরুর, _सुर्, nzov,\n  { {0x09b70164, 0xc05801fb, 0x69cb010f, 0x00000000}},  //   _अद्य, цію_, zoge,\n  { {0x7c2603b1, 0x212900d6, 0x8d770025, 0x00000000}},  //   _avkr, _tdah_, يارا,\n  { {0x7c24000b, 0x21290762, 0x752000e7, 0x00000000}},  //   fsir, _udah_, namz,\n  { {0x69cb054e, 0x1b1f0044, 0x442601ee, 0x00000000}},  // [1f50] voge, _পাবে_, _jvo_,\n  { {0x09b30365, 0x63ba010f, 0x69cb11c0, 0x00000000}},  //   ंच्य, nntn, woge,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x442601cd, 0x7d040026, 0x00000000, 0x00000000}},  //   _ovo_, ccis,   ,\n  { {0x18690175, 0x442611c1, 0x6c790049, 0x00000000}},  //   сали_, _nvo_, _האָפ,\n  { {0xbdf800a6, 0x7d1d010f, 0x69cb11c2, 0x00000000}},  //   _دریا_, _hess, soge,\n  { {0x69cb00ea, 0x442605e0, 0x29dc11c3, 0x00000000}},  //   poge, _avo_, mían_,\n  { {0xc4850331, 0x29dc11c4, 0x386d00ea, 0x00000000}},  //   злик, lían_, _trer_,\n  { {0x7d1d11c5, 0x93790025, 0xe3b10355, 0x00000000}},  //   _mess, مصدر_, فرد_,\n  { {0xf8ae00e9, 0x29dc0211, 0x798901b5, 0x00000000}},  //   _حکم_, nían_, _hoew,\n  { {0x44260119, 0x6d4f0a32, 0x216a017f, 0x00000000}},  //   _evo_, _obca, бини_,\n  { {0x7d1d024e, 0xe6100014, 0x00000000, 0x00000000}},  //   _ness, _ششم_,   ,\n  { {0xb4fa00b6, 0x92b50123, 0x764b0006, 0x00000000}},  //   _הפני, تحکا, žnyč,\n  { {0x7c24001c, 0x6dac014a, 0x798901a2, 0x00000000}},  //   vsir, rşam, _loew,\n  { {0x7d1d001f, 0x29dc008e, 0x2d9607d0, 0x00000000}},  //   _bess, dían_, прас,\n  { {0x7d1d11c6, 0xb88301dc, 0x91e3005e, 0x00000000}},  //   _cess, _klíč, _поще,\n  { {0x7d0400ab, 0xe3190082, 0x21220068, 0x00000000}},  // [1f60] rcis, _điể, makh_,\n  { {0x7c2401a3, 0xa01b00b0, 0x6d4f11c7, 0x00000000}},  //   rsir, pyör, _ebca,\n  { {0x4efb00b6, 0x7c240acc, 0xc33200b6, 0x00000000}},  //   _להיו, ssir, תוב_,\n  { {0x7d1d11c8, 0x7c2411c9, 0x44240133, 0x00000000}},  //   _gess, psir, ysm_,\n  { {0x29dc0211, 0x7c2411ca, 0x61e40051, 0x00000000}},  //   bían_, qsir, _mhil,\n  { {0xc7a303f3, 0x07a3012b, 0x29dc0211, 0x00000000}},  //   ничк, начн, cían_,\n  { {0x44260359, 0xdb1e010f, 0x7d1d0145, 0x00000000}},  //   _svo_, ropä, _yess,\n  { {0x2abb009b, 0x442611cb, 0x798901d6, 0x00000000}},  //   _המלא, _pvo_, _goew,\n  { {0x3a3a01d5, 0xa507003b, 0x75200ba5, 0x00000000}},  //   lupp_, чења_, ramz,\n  { {0xe44f0b59, 0x44260640, 0x00000000, 0x00000000}},  //   اضي_, _vvo_,   ,\n  { {0x61e40048, 0x44240fd1, 0x00000000, 0x00000000}},  //   _bhil, ssm_,   ,\n  { {0x61e409d9, 0x4426000c, 0x00000000, 0x00000000}},  //   _chil, _tvo_,   ,\n  { {0x7d1d028c, 0xa91d11cc, 0x442611cd, 0x00000000}},  //   _ress, _božj, _uvo_,\n  { {0x60c40009, 0x64470035, 0x61e40026, 0x00000000}},  //   _dxim, ăjit, _ehil,\n  { {0x7d1d02d5, 0xd3e501ef, 0x29dc008e, 0x00000000}},  //   _pess, _تقوی, vían_,\n  { {0x61e40035, 0x5d6402dc, 0x00000000, 0x00000000}},  //   _ghil, нтуз,   ,\n  { {0x79890022, 0x29dc008e, 0x6ecd0309, 0x00000000}},  // [1f70] _roew, tían_, _दुरु,\n  { {0x7d1d0168, 0x798911ce, 0x7e610190, 0x00000000}},  //   _wess, _soew, ælps,\n  { {0x7d1d054f, 0x29dc0211, 0xecf90451, 0x00000000}},  //   _tess, rían_, _менш_,\n  { {0xafdb00ea, 0x61e40023, 0x00000000, 0x00000000}},  //   ktøk, _xhil,   ,\n  { {0xa3c10061, 0x6d4d0022, 0x00000000, 0x00000000}},  //   ्कम_, mfaa,   ,\n  { {0x2d8b11cf, 0x6d4d04fd, 0x00000000, 0x00000000}},  //   _hoce_, lfaa,   ,\n  { {0x6b83000c, 0x79890116, 0xc7c8007e, 0x00000000}},  //   öngu, _toew, чыце_,\n  { {0x6d4d11d0, 0x2409007c, 0x799b0022, 0x00000000}},  //   nfaa, онии_, _uluw,\n  { {0xd469007c, 0xafdb0190, 0x00000000, 0x00000000}},  //   ципе_, rtøj,   ,\n  { {0x61e40020, 0x69d9010f, 0x9f53009d, 0x00000000}},  //   _shil, llwe, _fixé_,\n  { {0x67230340, 0x95cb0954, 0x00000000, 0x00000000}},  //   manj, _луда_,   ,\n  { {0x67230149, 0x2d8b07ad, 0x6f1e00e5, 0x00000000}},  //   lanj, _noce_, _sepc,\n  { {0xbf090061, 0x81c20044, 0x291f00d4, 0x00000000}},  //   वडून_, ্গল_, _meua_,\n  { {0x61e40038, 0x656911d1, 0x672311d2, 0x00000000}},  //   _whil, ldeh, nanj,\n  { {0x2d8b0166, 0x00000000, 0x00000000, 0x00000000}},  //   _boce_,   ,   ,\n  { {0x672311d3, 0xf2d20452, 0x656911d4, 0x00000000}},  //   hanj, _שעה_, ndeh,\n  { {0x6449021e, 0x672301ae, 0x2d8b029d, 0x00000000}},  // [1f80] ntei, kanj, _doce_,\n  { {0x67230e3b, 0xd9b8006e, 0x68fb0b33, 0x00000000}},  //   janj, ेक्ट, _agud,\n  { {0x67230295, 0x64490bac, 0x236701d9, 0x00000000}},  //   danj, htei, _manj_,\n  { {0x3a3a0039, 0x2d8b0023, 0xdce4012d, 0x00000000}},  //   rupp_, _goce_, ldič,\n  { {0x26030219, 0xdcb90057, 0xdb0e000c, 0x00000000}},  //   _año_, _ещё_, þjón,\n  { {0x67230e3b, 0x656900c1, 0x31bb0309, 0x00000000}},  //   ganj, edeh, _उद्ध,\n  { {0xc34e0011, 0x6e3c004a, 0x64490052, 0x00000000}},  //   _bổng_, nurb, etei,\n  { {0xc34e0011, 0x644900db, 0x00000000, 0x00000000}},  //   _cổng_, ftei,   ,\n  { {0x672300ee, 0x29e8006b, 0x39440181, 0x00000000}},  //   banj, _uşaq_, _icms_,\n  { {0x67230119, 0x6e3c000c, 0x96960c96, 0x00000000}},  //   canj, kurb, _ореш,\n  { {0xa29401ff, 0x644911d5, 0x777a002d, 0x00000000}},  //   хані, atei, _intx,\n  { {0x14af0061, 0x644901a2, 0x6e3c000c, 0x00000000}},  //   _जेवण, btei, durb,\n  { {0x2d8b0224, 0x14e202f4, 0x644911d6, 0x00000000}},  //   _roce_, _परिण, ctei,\n  { {0x61ee0027, 0x39440085, 0x6e3c0133, 0x00000000}},  //   _ďale, _lcms_, furb,\n  { {0x2bbf0164, 0x6e3c000c, 0xdb0e00f6, 0x00000000}},  //   ्वसा, gurb, _imbè,\n  { {0x23670381, 0x67230ecc, 0x7d160007, 0x00000000}},  //   _zanj_, zanj, gbys,\n  { {0x2d8b11d7, 0x672311d8, 0xf1bf04bb, 0x00000000}},  // [1f90] _voce_, yanj, mná_,\n  { {0x6e3c07b8, 0xf1bf015f, 0x291f0129, 0x00000000}},  //   burb, lná_, _seua_,\n  { {0x6723092f, 0x6e3c0173, 0x644911d9, 0x00000000}},  //   vanj, curb, ztei,\n  { {0x67230020, 0x777a002d, 0xf1bf0d86, 0x00000000}},  //   wanj, _antx, nná_,\n  { {0x672301cd, 0xa91d00ca, 0x644911da, 0x00000000}},  //   tanj, _joži, xtei,\n  { {0xf7710025, 0xa3dd013d, 0x06b00044, 0x00000000}},  //   طات_, _थीं_, _ছড়ি,\n  { {0x672311db, 0x92c20055, 0xe9190088, 0x00000000}},  //   ranj, ্ধু_, _нові_,\n  { {0x6723016c, 0x6449021e, 0xf1bf01ca, 0x00000000}},  //   sanj, ttei, jná_,\n  { {0xf1bf01ca, 0x756800a1, 0xa91d040d, 0x00000000}},  //   dná_, بینہ_, _noži,\n  { {0x644911dc, 0x43740152, 0x656901a2, 0x00000000}},  //   rtei, вуют, sdeh,\n  { {0xc34e001d, 0xfbd200b6, 0xb34500c4, 0x00000000}},  //   _tổng_, רתי_, _acçã,\n  { {0x395d07ec, 0xa91d0209, 0x644911dd, 0x00000000}},  //   news_, _boži, ptei,\n  { {0x25bf000d, 0x4395007e, 0x6601006c, 0x00000000}},  //   mnul_, _падс, _hulk,\n  { {0xa91d0340, 0x660100b0, 0x81bd0089, 0x00000000}},  //   _doži, _kulk, nsēj,\n  { {0x6601021e, 0xe2990245, 0xf1bf06b8, 0x00000000}},  //   _julk, _хай_, bná_,\n  { {0x6e3c00f6, 0xdd920355, 0xdb0e0299, 0x00000000}},  //   rurb, دور_, _imbé,\n  { {0xdca30088, 0x7d1611de, 0xc5f200a0, 0x00000000}},  // [1fa0] гати, rbys, רדן_,\n  { {0x672108b2, 0x7d16018e, 0xf4010055, 0x00000000}},  //   _nelj, sbys, _এবার_,\n  { {0x1b1f0044, 0xdb1c11df, 0x25bf0c76, 0x00000000}},  //   _পাশে_, _skró, knul_,\n  { {0x6da60088, 0xaa570025, 0x08c600e2, 0x00000000}},  //   _чима, علنا_, нбен,\n  { {0x1b1f0055, 0x672100ca, 0xa3c1007d, 0x00000000}},  //   _পারে_, _belj, ्का_,\n  { {0x660111e0, 0x672101d9, 0xd7ef0025, 0x00000000}},  //   _bulk, _celj, مكن_,\n  { {0x66010173, 0x67210087, 0xdb1c0036, 0x00000000}},  //   _culk, _delj, _wkró,\n  { {0x66010006, 0x25bf11e1, 0x6b8e0943, 0x00000000}},  //   _dulk, gnul_, _hobg,\n  { {0xe73a00ed, 0x5ed20061, 0xf1bf06b8, 0x00000000}},  //   _неа_, _दुसऱ, vná_,\n  { {0xc4530054, 0xa91d11e2, 0x25bf0035, 0x00000000}},  //   اضيع, _roži, anul_,\n  { {0xf1bf0d86, 0x363600a2, 0xa91d00ca, 0x00000000}},  //   tná_, _سراس, _soži,\n  { {0xa91d0027, 0x67210825, 0x00000000, 0x00000000}},  //   _poži, _zelj,   ,\n  { {0x5577007b, 0xf1bf0428, 0x660111e3, 0x00000000}},  //   _רעדן_, rná_, _zulk,\n  { {0xe47b0097, 0xf1bf0161, 0x6d460bca, 0x00000000}},  //   _מרדכ, sná_, _acka,\n  { {0xf1bf0161, 0x00000000, 0x00000000, 0x00000000}},  //   pná_,   ,   ,\n  { {0x13d50055, 0xcdd8012b, 0xa91d0059, 0x00000000}},  //   _হওয়, ењу_, _toži,\n  { {0x41c40426, 0x00000000, 0x00000000, 0x00000000}},  // [1fb0] _حقيق,   ,   ,\n  { {0x79990022, 0x752200fa, 0x00000000, 0x00000000}},  //   wkww, _leoz,   ,\n  { {0x75e5008e, 0x672101ed, 0x7cea0010, 0x00000000}},  //   nózc, _relj, töré,\n  { {0xc9840057, 0x752211e4, 0x98b900e2, 0x00000000}},  //   лучи, _neoz, млет_,\n  { {0x660111e5, 0x67210e0d, 0xf7450264, 0x00000000}},  //   _sulk, _pelj, вело,\n  { {0x66010089, 0xb17b00f8, 0xec3600b3, 0x00000000}},  //   _pulk, llåd, _באשר_,\n  { {0x672111e6, 0x0cc40044, 0xbbbf0309, 0x00000000}},  //   _velj, ্ধৃত, ्वीक,\n  { {0x25bf0035, 0x00000000, 0x00000000, 0x00000000}},  //   unul_,   ,   ,\n  { {0x672111e7, 0x9f5304bd, 0x25bf001a, 0x00000000}},  //   _telj, _així_, rnul_,\n  { {0x660111e8, 0xe8741019, 0xc6a7007c, 0x00000000}},  //   _tulk, _حافظ, _преи,\n  { {0xb2f4007c, 0x2ca911e9, 0x332500fa, 0x00000000}},  //   ляющ, hzad_, ralx_,\n  { {0xe2960b87, 0x7afa11ea, 0x75c8013e, 0x00000000}},  //   таю_, _útte, těze,\n  { {0x2ca905fa, 0x00000000, 0x00000000, 0x00000000}},  //   jzad_,   ,   ,\n  { {0x656b002a, 0x7522002d, 0x443f0052, 0x00000000}},  //   _hagh, _zeoz, muu_,\n  { {0x443f00b0, 0x7e230545, 0x00000000, 0x00000000}},  //   luu_, идрж,   ,\n  { {0xfce601e0, 0xdde90431, 0x656b002b, 0x00000000}},  //   вобо, فرقه_, _jagh,\n  { {0x656b1084, 0x443f11eb, 0x00000000, 0x00000000}},  // [1fc0] _magh, nuu_,   ,\n  { {0x656b11ec, 0x4e060242, 0xaaba02fd, 0x00000000}},  //   _lagh, _изоб, ودار_,\n  { {0x6a86005e, 0xbea602e9, 0x443f00b0, 0x00000000}},  //   ължа, _ранк, huu_,\n  { {0x443f11ed, 0x656b11ee, 0x3f8a0107, 0x00000000}},  //   kuu_, _nagh, ljbu_,\n  { {0x92bd0055, 0x91fc001e, 0x443f006c, 0x00000000}},  //   _আরো_, nvār, juu_,\n  { {0x6d440006, 0x244b0030, 0xeb9f068f, 0x00000000}},  //   lgia, døm_, _støv_,\n  { {0x656b0190, 0x6459000a, 0xacbb009d, 0x00000000}},  //   _bagh, _apwi, _jeûn,\n  { {0x6d44010a, 0x7bde06b9, 0x443f0020, 0x00000000}},  //   ngia, llpu, fuu_,\n  { {0x443f0020, 0x656b011c, 0x91fc0089, 0x00000000}},  //   guu_, _dagh, jvār,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xbb3b009b, 0x326302dc, 0xc7d7034e, 0x00000000}},  //   ועיי, атяв, _יומי_,\n  { {0x80d10055, 0x69c20016, 0x443f1080, 0x00000000}},  //   _সৃষ্, nnoe, buu_,\n  { {0x0443003b, 0x64a302dc, 0xb17b00f8, 0x00000000}},  //   _вечн, _каца, vlåd,\n  { {0x644011ef, 0x656b11f0, 0x6d4403d3, 0x00000000}},  //   mumi, _zagh, egia,\n  { {0x64400207, 0xa3c102fb, 0x75e50010, 0x00000000}},  //   lumi, ्कर_, lóza,\n  { {0x6d440198, 0x656b11f1, 0x00000000, 0x00000000}},  //   ggia, _xagh,   ,\n  { {0x644011f2, 0x00000000, 0x00000000, 0x00000000}},  // [1fd0] numi,   ,   ,\n  { {0x765a0036, 0x5b140088, 0xd24d00a1, 0x00000000}},  //   _opty, имут, _بچی_,\n  { {0x6440000b, 0x6d440082, 0x443f11f3, 0x00000000}},  //   humi, bgia, zuu_,\n  { {0x644011f4, 0x99d10044, 0x61fe009d, 0x00000000}},  //   kumi, িষ্ক, _éplu,\n  { {0x6440001e, 0x656b11f5, 0x97d90f62, 0x00000000}},  //   jumi, _ragh, ньку_,\n  { {0x644006ad, 0xb60501c8, 0x7d0d0afb, 0x00000000}},  //   dumi, hláš, lcas,\n  { {0x99670517, 0x656b006a, 0x45d50893, 0x00000000}},  //   _итал, _pagh, лцит,\n  { {0x7d0d023a, 0x4efc00b6, 0x443f00b0, 0x00000000}},  //   ncas, ולוג, tuu_,\n  { {0x644011f6, 0x656b0197, 0xa3c10164, 0x00000000}},  //   gumi, _vagh, ्कल_,\n  { {0xa77400ed, 0x656b11f7, 0x7d0d0009, 0x00000000}},  //   _клуч, _wagh, hcas,\n  { {0x656b01d5, 0x6d440016, 0xe29900ed, 0x00000000}},  //   _tagh, ygia, хан_,\n  { {0x64400004, 0xe5700151, 0x443f03b6, 0x00000000}},  //   bumi, _وطن_, puu_,\n  { {0xad9b00c4, 0x644000e7, 0x7c2d00f8, 0x00000000}},  //   _miúd, cumi, jsar,\n  { {0x442d11f8, 0x7c2d0193, 0x442f009d, 0x00000000}},  //   mse_, dsar, _ivg_,\n  { {0xd5ac026c, 0xed5a0057, 0x442d0905, 0x00000000}},  //   _رہی_, нов_, lse_,\n  { {0x442d0273, 0x7d0d00f6, 0x69c30010, 0x00000000}},  //   ose_, gcas, énel,\n  { {0x442d11f9, 0x70770025, 0x7c2d11fa, 0x00000000}},  // [1fe0] nse_, _مميز_, gsar,\n  { {0x442d101a, 0x442f11fb, 0x6d440016, 0x00000000}},  //   ise_, _mvg_, sgia,\n  { {0x644011fc, 0x8ad5008b, 0xb17b0030, 0x00000000}},  //   zumi, аюцц, slåe,\n  { {0x442d061f, 0x9f5a0263, 0x7d0d0197, 0x00000000}},  //   kse_, _sipè_, ccas,\n  { {0x442d11fd, 0x64e2006e, 0x69c211fe, 0x00000000}},  //   jse_, _परेश, rnoe,\n  { {0x38cb01ef, 0x644011ff, 0x442d017b, 0x00000000}},  //   رانی_, vumi, dse_,\n  { {0x442f0059, 0x499400d3, 0x442d1200, 0x00000000}},  //   _avg_, _پیشر, ese_,\n  { {0x64401201, 0xad9b0051, 0x442d1202, 0x00000000}},  //   tumi, _giúd, fse_,\n  { {0xd3260805, 0xb9930025, 0x48e305f6, 0x00000000}},  //   льни, _القب, _готв,\n  { {0x644008b2, 0xf3660140, 0x39460006, 0x00000000}},  //   rumi, утин, lgos_,\n  { {0x442d0038, 0x7c2d001e, 0x454605f3, 0x00000000}},  //   ase_, zsar, _مناق,\n  { {0x39461203, 0x442f0197, 0x644000b0, 0x00000000}},  //   ngos_, _fvg_, pumi,\n  { {0x442d1204, 0xc5f300b3, 0x2b4a0022, 0x00000000}},  //   cse_, _הדף_, _ocbc_,\n  { {0x7d0d00ab, 0x00000000, 0x00000000, 0x00000000}},  //   wcas,   ,   ,\n  { {0x7d0d1205, 0x539b00b3, 0x98ad00ca, 0x00000000}},  //   tcas, _איגו, _rdeč_,\n  { {0x63ba004f, 0x7c2d1206, 0xc27b00a3, 0x00000000}},  //   litn, tsar, _טרוי,\n  { {0x7d0d0207, 0x69c300f4, 0x61ed014a, 0x00000000}},  // [1ff0] rcas, énem, _ihal,\n  { {0x212b1207, 0x7d0d023a, 0x3946008e, 0x00000000}},  //   lach_, scas, egos_,\n  { {0x7c2d1208, 0x61ed01a3, 0x7d0d0f1d, 0x00000000}},  //   ssar, _khal, pcas,\n  { {0x212b002a, 0x442d1209, 0x61ed0066, 0x00000000}},  //   nach_, yse_, _jhal,\n  { {0x1869012b, 0x3949001e, 0x61ed0051, 0x00000000}},  //   тали_, ļas_, _mhal,\n  { {0xe73600d7, 0x212b0051, 0x629a0006, 0x00000000}},  //   аеш_, hach_, kyto,\n  { {0x212b0871, 0x442d0866, 0x16a60407, 0x00000000}},  //   kach_, wse_, ивши_,\n  { {0x629a0a66, 0x212b0036, 0x61ed0af2, 0x00000000}},  //   dyto, jach_, _nhal,\n  { {0x212b120a, 0x291d09df, 0x63ba00ca, 0x00000000}},  //   dach_, mbwa_, fitn,\n  { {0x61ed022b, 0x68e9012d, 0x92f50088, 0x00000000}},  //   _ahal, _ized, ичні,\n  { {0x61ed120b, 0x212b010f, 0x7bc50cba, 0x00000000}},  //   _bhal, fach_, inhu,\n  { {0x442d008d, 0x442f027b, 0x212b120c, 0x00000000}},  //   pse_, _tvg_, gach_,\n  { {0x7643120d, 0x15f40084, 0x61ed120e, 0x00000000}},  //   luny, _اسلح, _dhal,\n  { {0x629a120f, 0x39460d94, 0x63ba0161, 0x00000000}},  //   byto, zgos_, citn,\n  { {0x60cd0038, 0x629a1210, 0x212b03de, 0x00000000}},  //   _exam, cyto, bach_,\n  { {0x61ed01d5, 0xd1ba026c, 0x4ad902fb, 0x00000000}},  //   _ghal, _جاتا_, _बुधव,\n\n  { {0x4b2600e3, 0x76431211, 0x6da30545, 0x00000000}},  // [2000] имав, huny, цита,\n  { {0x76431212, 0x109b00b3, 0x69c90022, 0x00000000}},  //   kuny, _סביב, _ajee,\n  { {0x320704bd, 0x7f3b009b, 0x34e2013d, 0x00000000}},  //   _juny_, _בעיו, _पर्द,\n  { {0xeae6001c, 0x3946010a, 0x26de0006, 0x00000000}},  //   _करीत_, ugos_, _ryto_,\n  { {0x39461213, 0x8eb3007a, 0xa91d02aa, 0x00000000}},  //   rgos_, _همیش, _požr,\n  { {0x81bd001e, 0x39460211, 0x212b0832, 0x00000000}},  //   lsēt, sgos_, zach_,\n  { {0x7643008a, 0xb86600a1, 0x212b005b, 0x00000000}},  //   guny, _ھارو, yach_,\n  { {0x6d560263, 0xe5c6012b, 0xd9430545, 0x00000000}},  //   nfya, јско, _меси,\n  { {0x88bd0046, 0x29041214, 0x2fd80039, 0x00000000}},  //   _jeśl, _igma_, korg_,\n  { {0x26de0224, 0x61ed1215, 0x38690065, 0x00000000}},  //   _tyto_, _shal, çare_,\n  { {0x212b1216, 0x63ba0161, 0xe3af0380, 0x00000000}},  //   tach_, ritn, بري_,\n  { {0x629a093c, 0x29dc008e, 0x00000000, 0x00000000}},  //   ryto, mías_,   ,\n  { {0x212b120a, 0x7bdc0091, 0x29dc008e, 0x00000000}},  //   rach_, _okru, lías_,\n  { {0x212b120a, 0x2d8201d5, 0x644f04bd, 0x00000000}},  //   sach_, _anke_, àcie,\n  { {0x67281217, 0x61ed1218, 0x212b0036, 0x00000000}},  //   _medj, _thal, pach_,\n  { {0x67280107, 0x61ed1219, 0xdce60089, 0x00000000}},  //   _ledj, _uhal, _sakā,\n  { {0x2fd8033d, 0xdce60089, 0x6be50025, 0x00000000}},  // [2010] borg_, _pakā, مكرم,\n  { {0x67280209, 0x69db05b7, 0xa3e6006e, 0x00000000}},  //   _nedj, _skue, पति_,\n  { {0x290f001c, 0x7ff403ec, 0x7bc500f8, 0x00000000}},  //   tcga_, _بسيا, rnhu,\n  { {0x2001121a, 0x29dc008e, 0x764309df, 0x00000000}},  //   _hihi_, días_, vuny,\n  { {0x68e0018e, 0xe739005e, 0x7c8700c0, 0x00000000}},  //   _cymd, гел_, _туне,\n  { {0x29dc0841, 0x785a001e, 0x8a1703ec, 0x00000000}},  //   fías_, dāvā, _نظرا,\n  { {0xf770031d, 0x29dc0211, 0x20010288, 0x00000000}},  //   بان_, gías_, _mihi_,\n  { {0x2fd800b5, 0x764304cb, 0x77630129, 0x00000000}},  //   zorg_, runy, senx,\n  { {0x68e00016, 0x69d90036, 0x6728121b, 0x00000000}},  //   _gymd, mowe, _fedj,\n  { {0x320700d4, 0x69d9077a, 0x29dc008e, 0x00000000}},  //   _puny_, lowe, bías_,\n  { {0x29dc064d, 0xd575008b, 0x6b95121c, 0x00000000}},  //   cías_, _гуль, _mozg,\n  { {0x69d90036, 0x35f50245, 0x13a70123, 0x00000000}},  //   nowe, _упер, انگی_,\n  { {0xd24e01ef, 0x2fd8000c, 0x20090145, 0x00000000}},  //   ونی_, torg_, _cuai_,\n  { {0x443f103c, 0xaad0013d, 0x69d900b4, 0x00000000}},  //   mru_, _तुझक, howe,\n  { {0x394d0107, 0x69d90036, 0xdee60088, 0x00000000}},  //   _oces_, kowe, сови,\n  { {0x7bdc121d, 0x2900010a, 0x2fd80a74, 0x00000000}},  //   _skru, žiai_, sorg_,\n  { {0x69d90036, 0x20090197, 0x443f0471, 0x00000000}},  // [2020] dowe, _guai_, nru_,\n  { {0x394d121e, 0x68e00039, 0x443f121f, 0x00000000}},  //   _aces_, _rymd, iru_,\n  { {0x49060054, 0x29dc049a, 0x443f01a3, 0x00000000}},  //   مواق, xías_, hru_,\n  { {0x5d860054, 0x705300e9, 0x443f0161, 0x00000000}},  //   _الحل, _بنیا, kru_,\n  { {0x672801ee, 0x236500ca, 0x443f002b, 0x00000000}},  //   _pedj, kelj_, jru_,\n  { {0x7bdc1220, 0x29dc02a0, 0x0f7a0049, 0x00000000}},  //   _ukru, tías_, ראַב,\n  { {0x443f0096, 0x386d014a, 0x69d90036, 0x00000000}},  //   eru_, _eser_, bowe,\n  { {0x29dc0958, 0x443f037e, 0x98a6025f, 0x00000000}},  //   rías_, fru_, _либе,\n  { {0x443f001a, 0x29dc008e, 0x9f5a0026, 0x00000000}},  //   gru_, sías_, _pipì_,\n  { {0x23650e0d, 0x29dc008e, 0x20090085, 0x00000000}},  //   gelj_, pías_, _ruai_,\n  { {0x4df803d7, 0x2258007c, 0x443f00b4, 0x00000000}},  //   ंगाई_, шины_, aru_,\n  { {0x443f0d6b, 0x25a60058, 0x00000000, 0x00000000}},  //   bru_, _ulol_,   ,\n  { {0x443f000d, 0x23651221, 0x20090742, 0x00000000}},  //   cru_, belj_, _quai_,\n  { {0x33f602a8, 0x236500ee, 0x69d9105e, 0x00000000}},  //   _учес, celj_, zowe,\n  { {0x6b951222, 0x69d90020, 0xd357009b, 0x00000000}},  //   _rozg, yowe, _השוק_,\n  { {0xd131007a, 0x44260cfe, 0x00000000, 0x00000000}},  //   _کمک_, _kwo_,   ,\n  { {0xd01102fd, 0x6602007f, 0x6b950032, 0x00000000}},  // [2030] _تلخ_, _miok, _pozg,\n  { {0x6ac4006e, 0x64400051, 0x69d91223, 0x00000000}},  //   वपूर, irmi, wowe,\n  { {0x69d90036, 0x3cde001c, 0x29dc004a, 0x00000000}},  //   towe, _कुठे_, víar_,\n  { {0x127b0049, 0x2365050f, 0x195900a5, 0x00000000}},  //   טאבע, zelj_, рады_,\n  { {0x69d90036, 0xf09f04bd, 0x6d4f0066, 0x00000000}},  //   rowe, nyà_, _icca,\n  { {0x01cf0044, 0x645c001a, 0x69d9114b, 0x00000000}},  //   রতিদ, ăril, sowe,\n  { {0x44261224, 0x64401225, 0x443f0251, 0x00000000}},  //   _awo_, ermi, wru_,\n  { {0x443f1226, 0x84591227, 0x44260061, 0x00000000}},  //   tru_, арот_, _bwo_,\n  { {0x386d0038, 0x23650295, 0x443f1228, 0x00000000}},  //   _user_, telj_, uru_,\n  { {0x443f01f3, 0xdb0e000c, 0xe3b9005e, 0x00000000}},  //   rru_, _embæ, рбо_,\n  { {0x6d5d0428, 0x6d4f06e2, 0x443f1229, 0x00000000}},  //   _obsa, _occa, sru_,\n  { {0x443f002b, 0x2365021c, 0x66020026, 0x00000000}},  //   pru_, selj_, _giok,\n  { {0x44260263, 0x25bf001a, 0x00000000, 0x00000000}},  //   _gwo_, miul_,   ,\n  { {0x6d4f0207, 0x25bf001a, 0x6d5d122a, 0x00000000}},  //   _acca, liul_, _absa,\n  { {0xf1bf00fa, 0x00000000, 0x00000000, 0x00000000}},  //   biá_,   ,   ,\n  { {0x25bf001a, 0x6d4f122b, 0x0c2602ea, 0x00000000}},  //   niul_, _ccca, жман,\n  { {0x249f122c, 0x752b122d, 0xfce3122e, 0x00000000}},  // [2040] nyum_, _megz, дото,\n  { {0x61e6122f, 0x25bf0035, 0x9e661230, 0x00000000}},  //   llkl, hiul_, _двод,\n  { {0xed5a01f9, 0x3dc90058, 0x00000000, 0x00000000}},  //   _кон_, bnaw_,   ,\n  { {0xe9da0175, 0xad5a007e, 0x25ad012d, 0x00000000}},  //   шке_, _трох_, jhel_,\n  { {0x25bf000d, 0x999c0010, 0x00000000, 0x00000000}},  //   diul_, évő_,   ,\n  { {0x44260061, 0xc7a309bb, 0x207b0049, 0x00000000}},  //   _rwo_, мичк, יאנא,\n  { {0x81c30044, 0x7bce00bb, 0x00000000, 0x00000000}},  //   ্তত_, _ijbu,   ,\n  { {0x2d921231, 0x7e9b0049, 0x25ad1232, 0x00000000}},  //   njye_, יסצו, ghel_,\n  { {0xa73a0123, 0x2ca01233, 0xf1bf00fa, 0x00000000}},  //   _نثار_, nyid_, viá_,\n  { {0x442600bb, 0x00000000, 0x00000000, 0x00000000}},  //   _vwo_,   ,   ,\n  { {0x86c60379, 0xcb13009b, 0xb7d71234, 0x00000000}},  //   _بيان, ולת_, _بولا_,\n  { {0x44260038, 0x25ad00f4, 0xb60601a8, 0x00000000}},  //   _two_, chel_, rišć,\n  { {0x44260061, 0xcf00006b, 0x25d90014, 0x00000000}},  //   _uwo_, əşən_, _اهنگ_,\n  { {0x43740014, 0x4ea702dc, 0x00000000, 0x00000000}},  //   _رهبر, орба,   ,\n  { {0x3ea50047, 0xf1bf004a, 0x00000000, 0x00000000}},  //   ált_, piá_,   ,\n  { {0x463b0049, 0x00000000, 0x00000000, 0x00000000}},  //   יעלע,   ,   ,\n  { {0xa1f900a1, 0x030e013d, 0xc19c009b, 0x00000000}},  // [2050] _پڑھا_, _सलाह_, _כשהי,\n  { {0x09d301f5, 0xda7b02dc, 0x00000000, 0x00000000}},  //   तव्य, ияе_,   ,\n  { {0xfd4700a1, 0xaf010044, 0xdd9000a1, 0x00000000}},  //   _ویسٹ_, ্রহণ_, روے_,\n  { {0x2ca00061, 0x249f1235, 0x67ed004a, 0x00000000}},  //   byid_, yyum_, dúja,\n  { {0xb17c01ce, 0x6d4d018d, 0x98f4007e, 0x00000000}},  //   יטאר, mgaa, мяшч,\n  { {0x81c30055, 0x6cfa009b, 0x7b640517, 0x00000000}},  //   ্তি_, _לפרס, _отсе,\n  { {0x25ad0675, 0x67ed0010, 0x25bf001a, 0x00000000}},  //   thel_, gúja, tiul_,\n  { {0x2d990f06, 0x6d4d0168, 0x391501e1, 0x00000000}},  //   _jose_, ngaa, _хмар,\n  { {0x81c30055, 0x25bf001a, 0x395f1236, 0x00000000}},  //   ্তা_, riul_, _ibus_,\n  { {0x2d991237, 0x25ad1238, 0x249f1239, 0x00000000}},  //   _lose_, shel_, ryum_,\n  { {0x69cb000b, 0x95cb007c, 0x25bf001a, 0x00000000}},  //   onge, _куда_, piul_,\n  { {0x2ca0013f, 0x2d99123a, 0x6d4d0bbc, 0x00000000}},  //   yyid_, _nose_, jgaa,\n  { {0x6d4d123b, 0x920b013d, 0x26110082, 0x00000000}},  //   dgaa, _सूरज_, _háo_,\n  { {0xa4fa009b, 0x69cb01a2, 0x6d4d123c, 0x00000000}},  //   _פלסט, hnge, egaa,\n  { {0x2d99123d, 0x8e8300ed, 0x6d4d0250, 0x00000000}},  //   _bose_, нгре, fgaa,\n  { {0x2d990198, 0x6d4d0343, 0x2ca00009, 0x00000000}},  //   _cose_, ggaa, tyid_,\n  { {0xdb1e008d, 0x2d9900ab, 0x6449123e, 0x00000000}},  // [2060] qipë, _dose_, nuei,\n  { {0x395f00f4, 0x2ca00009, 0x69cb021f, 0x00000000}},  //   _abus_, ryid_, enge,\n  { {0x9f9b009b, 0x2d990962, 0x26110082, 0x00000000}},  //   _הסיפ, _fose_, _náo_,\n  { {0x5f460752, 0x2d990032, 0xe8fa0140, 0x00000000}},  //   _بنگل, _gose_, бле_,\n  { {0xa3bd04da, 0xa3cb0204, 0x7d7b009b, 0x00000000}},  //   ीचा_, रचा_, _הנכו,\n  { {0x261100ad, 0x69cb01d6, 0xdb1e123f, 0x00000000}},  //   _báo_, ange, kipé,\n  { {0x2611001d, 0x2d990061, 0xdbc70934, 0x00000000}},  //   _cáo_, _yose_, töös,\n  { {0x69c30010, 0x7bde0052, 0x9418004d, 0x00000000}},  //   énet, lopu, ожит_,\n  { {0x64491240, 0x7c3604d3, 0xdce40006, 0x00000000}},  //   guei, nsyr, keič,\n  { {0x7bde1241, 0x69c21242, 0xdc9b0049, 0x00000000}},  //   nopu, lioe, צייל,\n  { {0xe4d601ef, 0x5ec10044, 0xf773009b, 0x00000000}},  //   _کتاب, _শুনে, _רקע_,\n  { {0xfbc40044, 0x9257007c, 0x64490129, 0x00000000}},  //   ্তিত, чают_, buei,\n  { {0x6449028c, 0x7bde00b0, 0xad9b0051, 0x00000000}},  //   cuei, kopu, _diúl,\n  { {0x22590036, 0x7bde016c, 0xa91d0087, 0x00000000}},  //   ńska_, jopu, _anžl,\n  { {0x6d4d1243, 0xdb1e0051, 0x69cb1244, 0x00000000}},  //   tgaa, cipé, ynge,\n  { {0x91e4012b, 0x00000000, 0x00000000, 0x00000000}},  //   _поје,   ,   ,\n  { {0x113c009b, 0x9c190025, 0x2d990919, 0x00000000}},  // [2070] _התחל, زياء_, _vose_,\n  { {0x09c50061, 0x6d4d0030, 0x2d990009, 0x00000000}},  //   लच्य, sgaa, _wose_,\n  { {0x6d4d1245, 0x2d991246, 0x00000000, 0x00000000}},  //   pgaa, _tose_,   ,\n  { {0x69cb0207, 0x69c20032, 0xdb1e00b0, 0x00000000}},  //   unge, gioe, enpä,\n  { {0xeab000a1, 0x26110011, 0x69cb01a2, 0x00000000}},  //   نٹے_, _sáo_, rnge,\n  { {0xfd1300a1, 0x69da00c4, 0xdb2302fd, 0x00000000}},  //   _تجھ_, _íten, _سوری,\n  { {0xe730023c, 0x69c20288, 0x00000000, 0x00000000}},  //   اصه_, bioe,   ,\n  { {0x69c203d1, 0x64490129, 0x49b8023c, 0x00000000}},  //   cioe, tuei, _فاقد_,\n  { {0x79890253, 0x00000000, 0x00000000, 0x00000000}},  //   _inew,   ,   ,\n  { {0x26110011, 0x644900d4, 0xad9b0051, 0x00000000}},  //   _táo_, ruei, _siúl,\n  { {0x61460816, 0x799b1247, 0xf65500ed, 0x00000000}},  //   мена, _kouw, _цвеќ,\n  { {0x5ec10044, 0x799b1248, 0xdb1e0068, 0x00000000}},  //   _শুভে, _jouw, ripé,\n  { {0x64490ddb, 0xad9b00c4, 0x7a0c0095, 0x00000000}},  //   quei, _ciúm, _işte,\n  { {0x69c2022b, 0x799b1249, 0xbef90061, 0x00000000}},  //   zioe, _louw, ंधून_,\n  { {0x5de6007e, 0x79890275, 0x0ef9007e, 0x00000000}},  //   джва, _onew, зэты_,\n  { {0x799b00d4, 0x69bf007d, 0xdb1c0327, 0x00000000}},  //   _nouw, लोमी, _imré,\n  { {0x7bde016c, 0x5f7605d4, 0x61e40622, 0x00000000}},  // [2080] topu, _قادر, _ikil,\n  { {0x78a200e7, 0xafdb00ea, 0x00000000, 0x00000000}},  //   vyov, ktøy,   ,\n  { {0x81c30055, 0x7c36124a, 0x1d0a0184, 0x00000000}},  //   ্তর_, ssyr, _мени_,\n  { {0x7bde0c76, 0x799b00d9, 0x7989005b, 0x00000000}},  //   sopu, _couw, _cnew,\n  { {0x7bde0d59, 0x69c2002d, 0x799b0112, 0x00000000}},  //   popu, rioe, _douw,\n  { {0x7a0c001a, 0x69c2124b, 0xe3a71095, 0x00000000}},  //   _aşte, sioe, _شر_,\n  { {0x79890009, 0x6b9c0579, 0x69c20032, 0x00000000}},  //   _fnew, _iorg, pioe,\n  { {0x6b9c0010, 0x320e0026, 0x799b0116, 0x00000000}},  //   _horg, _rufy_, _gouw,\n  { {0x69c003a1, 0x6b9c0039, 0x236a00ec, 0x00000000}},  //   _imme, _korg, ојно_,\n  { {0x6b9c0489, 0x61e40020, 0xf366003b, 0x00000000}},  //   _jorg, _akil, фтин,\n  { {0xbcfb0051, 0x6b9c124c, 0x316b00b4, 0x00000000}},  //   _mbéa, _morg, tecz_,\n  { {0x61f6010b, 0x6b9c124d, 0x79890066, 0x00000000}},  //   _chyl, _lorg, _xnew,\n  { {0x6b9c0007, 0x0cc90044, 0x00000000, 0x00000000}},  //   _oorg, _শর্ত,   ,\n  { {0x6b9c01e2, 0xe4c70014, 0xdb0e00f6, 0x00000000}},  //   _norg, _تصمی, _embú,\n  { {0xdd9b013b, 0x69c00e38, 0xa3bd013d, 0x00000000}},  //   оша_, _omme, ीचर_,\n  { {0xc5f80089, 0x31c4007e, 0x00000000, 0x00000000}},  //   _spēj_, _асьв,   ,\n  { {0x6b9c124e, 0x799b00bb, 0x79890022, 0x00000000}},  // [2090] _borg, _rouw, _rnew,\n  { {0x69c00207, 0x61fd0239, 0x6b9c0142, 0x00000000}},  //   _amme, lmsl, _corg,\n  { {0xfd1000a1, 0x799b0173, 0x6b9c01e5, 0x00000000}},  //   اجہ_, _pouw, _dorg,\n  { {0x4c9501fc, 0x9f5a00b0, 0x49b80014, 0x00000000}},  //   _зимс, _eipä_, واند_,\n  { {0x6b9c124f, 0x7e620107, 0x2d8b014a, 0x00000000}},  //   _forg, _ćopi, _ince_,\n  { {0x69c01250, 0xdce4011f, 0x6b9c032c, 0x00000000}},  //   _emme, ldiğ, _gorg,\n  { {0x4ae4008b, 0x16a90581, 0x2fc10253, 0x00000000}},  //   _аўта, явки_, _mmhg_,\n  { {0x6b9c02ae, 0xc8c0001c, 0xdce4014a, 0x00000000}},  //   _zorg, _शेवट, ndiğ,\n  { {0x44391251, 0x6b9c1252, 0x290d0026, 0x00000000}},  //   és_, _yorg, _igea_,\n  { {0x61e4009f, 0x61f600d2, 0x7bc500e7, 0x00000000}},  //   _skil, _shyl, nihu,\n  { {0x2d8b00ab, 0x98a40035, 0x61f60133, 0x00000000}},  //   _once_, _temă_, _phyl,\n  { {0x22590036, 0xe29a0082, 0xa91d0006, 0x00000000}},  //   ńsko_, _ngưu_, _požy,\n  { {0xa5c6000c, 0x32090058, 0x7bc51253, 0x00000000}},  //   sjóð, _diay_, kihu,\n  { {0x2d8b0089, 0x7bc50020, 0x09dc0061, 0x00000000}},  //   _ance_, jihu, _बऱ्य,\n  { {0x24590263, 0x645b001a, 0x61f608c9, 0x00000000}},  //   lèm_, ltui, _thyl,\n  { {0x6b9c03ae, 0x32090011, 0x61e400e7, 0x00000000}},  //   _sorg, _giay_, _ukil,\n  { {0x8c43013b, 0x645b1254, 0xf3900011, 0x00000000}},  // [20a0] лете, ntui, _mảnh_,\n  { {0x7bc50009, 0x290d0026, 0xe2c600a1, 0x00000000}},  //   gihu, _agea_, _آڈیو_,\n  { {0x6b9c001f, 0x645b00b0, 0x68e90085, 0x00000000}},  //   _vorg, htui, _ayed,\n  { {0x645b0007, 0x6b9c01d6, 0xe8fa0140, 0x00000000}},  //   ktui, _worg, пле_,\n  { {0x6b9c0039, 0x69da0d62, 0xd7e605b8, 0x00000000}},  //   _torg, _ítem, ніко,\n  { {0x7c240aa5, 0x290d00f6, 0x62830032, 0x00000000}},  //   mpir, _egea_, _orno,\n  { {0xfa67026b, 0xd94601e0, 0x7c24095f, 0x00000000}},  //   _парк_, _певи, lpir,\n  { {0xd5b71255, 0xf390001d, 0x69c01256, 0x00000000}},  //   есь_, _cảnh_, _umme,\n  { {0x62831257, 0xb88601ca, 0xa3bd0061, 0x00000000}},  //   _arno, _blíž, ीचं_,\n  { {0xafdb0190, 0xdb17006b, 0x00000000, 0x00000000}},  //   trøm, rixç,   ,\n  { {0x6283037e, 0xf8bf009f, 0x0bb7009b, 0x00000000}},  //   _crno, _þér_, גלים_,\n  { {0x645b0007, 0x628300ca, 0x7bc500e7, 0x00000000}},  //   btui, _drno, zihu,\n  { {0xdce4014a, 0x777a0032, 0xf1c001f5, 0x00000000}},  //   vdiğ, _katx, शोधन,\n  { {0x22940054, 0x7c240059, 0x777a0288, 0x00000000}},  //   _للتس, dpir, _jatx,\n  { {0xfe7000a1, 0x777a1258, 0x00000000, 0x00000000}},  //   یدہ_, _matx,   ,\n  { {0x777a0288, 0x00000000, 0x00000000, 0x00000000}},  //   _latx,   ,   ,\n  { {0x3cfc001c, 0xdce4011f, 0xd164005e, 0x00000000}},  // [20b0] लेले_, rdiğ, _същи,\n  { {0x657b003b, 0xe1ff0d62, 0xa91d0c6e, 0x00000000}},  //   zduh, lmó_, _inži,\n  { {0xc333009b, 0xdcef001a, 0x7bc50738, 0x00000000}},  //   רוע_, _bacă, rihu,\n  { {0x245901aa, 0x7c240270, 0x7bc50052, 0x00000000}},  //   yèm_, bpir, sihu,\n  { {0x777a0ec8, 0xf3900011, 0xed60013e, 0x00000000}},  //   _batx, _rảnh_, ížet_,\n  { {0xf7710355, 0xf3900082, 0x777a00d4, 0x00000000}},  //   شات_, _sảnh_, _catx,\n  { {0xd915008b, 0x245901aa, 0x0675094b, 0x00000000}},  //   _адбы, wèm_, туля,\n  { {0xd6ce0054, 0x645b00b0, 0x245901aa, 0x00000000}},  //   تقى_, ttui, tèm_,\n  { {0xad9b0051, 0x777a05aa, 0x442400e0, 0x00000000}},  //   _ciúi, _fatx, gpm_,\n  { {0x645b00c7, 0x5ed70055, 0x24591259, 0x00000000}},  //   rtui, _ধরনে, rèm_,\n  { {0xcb120104, 0x645b1254, 0x6579015e, 0x00000000}},  //   ילי_, stui, _tawh,\n  { {0x645b0035, 0xcec4013e, 0x00000000, 0x00000000}},  //   ptui, hoří_,   ,\n  { {0x98a4010a, 0x75290020, 0x7c240045, 0x00000000}},  //   _temą_, mbez, xpir,\n  { {0x64490016, 0x443d125a, 0x4345004c, 0x00000000}},  //   mrei, _ivw_, _рекв,\n  { {0x6449125b, 0xed5a007c, 0xd0070679, 0x00000000}},  //   lrei, мов_, тере_,\n  { {0xd00f026c, 0xb602009f, 0x661c0010, 0x00000000}},  //   صلہ_, _þátt, _érke,\n  { {0x6449125c, 0x973c0091, 0xac0a00ed, 0x00000000}},  // [20c0] nrei, _hoće, днаа_,\n  { {0x7c240089, 0xd00f0167, 0x442f0016, 0x00000000}},  //   rpir, _گلی_, _mwg_,\n  { {0x6449125d, 0xf1c6013d, 0x2d9e00f4, 0x00000000}},  //   hrei, _लगान, êtes_,\n  { {0x6449125e, 0xd00f0123, 0xdb1c0051, 0x00000000}},  //   krei, _دلی_, _imrí,\n  { {0x777a002d, 0xb8220044, 0x38cb0014, 0x00000000}},  //   _patx, _নিহত_, واهی_,\n  { {0xb17b0039, 0xda721125, 0x00000000, 0x00000000}},  //   llåt, _پُر_,   ,\n  { {0x16370025, 0x2b580173, 0x660b0058, 0x00000000}},  //   نسية_, _icrc_, _bigk,\n  { {0x6449125f, 0xd01a0055, 0x55740113, 0x00000000}},  //   frei, তীয়_, угит,\n  { {0x64490fd1, 0x660b0007, 0xe8ea00a6, 0x00000000}},  //   grei, _digk, _آرزو_,\n  { {0x75c800b9, 0x988b00a1, 0x442400fa, 0x00000000}},  //   tězs, _تحفہ_, rpm_,\n  { {0x26110087, 0xf204013d, 0x442f06f2, 0x00000000}},  //   _cšod_, रगढ़_, _ewg_,\n  { {0x64491260, 0x6738012d, 0x442f005b, 0x00000000}},  //   brei, lavj, _fwg_,\n  { {0xe1ff0211, 0x64491261, 0x10740147, 0x00000000}},  //   rmó_, crei, аляю,\n  { {0x9f5304bd, 0x26180011, 0x38690ab1, 0x00000000}},  //   _això_, _kéo_, çari_,\n  { {0x4ea40265, 0x9f430065, 0x9f340088, 0x00000000}},  //   арта, lojë_, ресі,\n  { {0x26180082, 0x00000000, 0x00000000, 0x00000000}},  //   _méo_,   ,   ,\n  { {0x69c300f4, 0x9f430065, 0x26181262, 0x00000000}},  // [20d0] ènem, nojë_, _léo_,\n  { {0x61ef0c3f, 0x752901ee, 0x6738016c, 0x00000000}},  //   llcl, zbez, javj,\n  { {0x2618009d, 0x00000000, 0x00000000, 0x00000000}},  //   _néo_,   ,   ,\n  { {0xdd9503c8, 0x21390065, 0x9f430065, 0x00000000}},  //   _самы, nash_, kojë_,\n  { {0xf74500d7, 0xafdb0030, 0x394403e8, 0x00000000}},  //   гело, gsøg, рніг,\n  { {0xdb070010, 0x26180011, 0x64491263, 0x00000000}},  //   _eljá, _béo_, vrei,\n  { {0xcf9400a3, 0x21390023, 0x063200e2, 0x00000000}},  //   יטס_, kash_, бејџ,\n  { {0x6449010f, 0x24860116, 0x973c012d, 0x00000000}},  //   trei, _brom_, _roće,\n  { {0x75290fd4, 0x24860c51, 0x21391264, 0x00000000}},  //   rbez, _crom_, dash_,\n  { {0x644907e6, 0x75291265, 0x62811266, 0x00000000}},  //   rrei, sbez, tvlo,\n  { {0x6449010f, 0x248600bb, 0x660b00e0, 0x00000000}},  //   srei, _erom_, _tigk,\n  { {0x24860a8a, 0x644905c6, 0x64460006, 0x00000000}},  //   _from_, prei, škia,\n  { {0x3fc8007a, 0x248604eb, 0xd46900e2, 0x00000000}},  //   ندسی_, _grom_, _чиле_,\n  { {0x61ef0026, 0xf5390142, 0x00000000, 0x00000000}},  //   alcl, lať_,   ,\n  { {0x21390145, 0xfc3f00f6, 0x26180082, 0x00000000}},  //   bash_, _aví_, _xéo_,\n  { {0x25ad046a, 0xf5390142, 0xf1aa0025, 0x00000000}},  //   nkel_, nať_, _ساعه_,\n  { {0xb17b0039, 0x80a500a1, 0x5ed70044, 0x00000000}},  // [20e0] rlåt, _نمٹن, _ধরণে,\n  { {0xb3460181, 0x9f5e00b0, 0x25ad006c, 0x00000000}},  //   moçõ, ötä_, hkel_,\n  { {0x25ad1267, 0x5336007b, 0x9f430065, 0x00000000}},  //   kkel_, רנען_, zojë_,\n  { {0x3ea51268, 0xe9e50088, 0x26180082, 0x00000000}},  //   älte_, аціо, _réo_,\n  { {0xe89409b5, 0x07a60099, 0xf5390027, 0x00000000}},  //   раль, ладн, dať_,\n  { {0xafdb0018, 0x9f430065, 0x21390023, 0x00000000}},  //   rsøg, vojë_, zash_,\n  { {0x673801d9, 0xa91d0521, 0xad9b00c4, 0x00000000}},  //   ravj, _anžu, _viúv,\n  { {0x6d56006a, 0x2d8000f4, 0xd49a00ed, 0x00000000}},  //   ngya, ndie_, еро_,\n  { {0xa84a0879, 0x61e6001e, 0x2d801269, 0x00000000}},  //   _سلام_, dokl, idie_,\n  { {0x9f430065, 0x261800fa, 0x21f2013e, 0x00000000}},  //   rojë_, _téo_, sáhl_,\n  { {0x9f430065, 0x21390065, 0x61e60253, 0x00000000}},  //   sojë_, tash_, fokl,\n  { {0x2486126a, 0x25ad03a1, 0x9f430023, 0x00000000}},  //   _trom_, ckel_, pojë_,\n  { {0x2d800b36, 0x21390065, 0x00000000, 0x00000000}},  //   ddie_, rash_,   ,\n  { {0x2a660036, 0x14d7009b, 0x21390023, 0x00000000}},  //   łoby_, _גודל_, sash_,\n  { {0x2139126b, 0x00000000, 0x00000000, 0x00000000}},  //   pash_,   ,   ,\n  { {0x6d560010, 0x61e60022, 0x00000000, 0x00000000}},  //   ggya, cokl,   ,\n  { {0xdfd5007e, 0x00000000, 0x00000000, 0x00000000}},  // [20f0] _вопы,   ,   ,\n  { {0x91fd001e, 0xf5390027, 0xdb1e004a, 0x00000000}},  //   stād, zať_, tipá,\n  { {0x20d4089d, 0x25ad126c, 0x2ca90093, 0x00000000}},  //   _نتیج, ykel_, syad_,\n  { {0x57dd0204, 0x3e41007f, 0x7aee0146, 0x00000000}},  //   यव्ह, mėt_, _dybt,\n  { {0xf5390027, 0xa3d40061, 0xd5b10082, 0x00000000}},  //   vať_, सचा_, _lúc_,\n  { {0x22590046, 0x39440436, 0x103800a3, 0x00000000}},  //   ński_, _edms_, נטום_,\n  { {0x25ad006c, 0xf5390027, 0xa91d0087, 0x00000000}},  //   tkel_, tať_, _nažg,\n  { {0x25ad037f, 0x00000000, 0x00000000, 0x00000000}},  //   ukel_,   ,   ,\n  { {0x64460006, 0x98480265, 0x61e6126d, 0x00000000}},  //   škin, _бяха_, vokl,\n  { {0x69cb0239, 0x25ad006c, 0x81bd0089, 0x00000000}},  //   lige, skel_, spēl,\n  { {0x27e7126e, 0x25b00010, 0x2249005e, 0x00000000}},  //   monn_, álló_, ъпни_,\n  { {0x69cb001f, 0x91e6026b, 0x27e7126f, 0x00000000}},  //   nige, роме, lonn_,\n  { {0x6e25002a, 0xe3ae0140, 0x00000000, 0x00000000}},  //   _athb, _дб_,   ,\n  { {0x753b0ba5, 0xdfd20025, 0x69cb010f, 0x00000000}},  //   lauz, زيز_, hige,\n  { {0xa91d0428, 0x09b504da, 0x63a31270, 0x00000000}},  //   _každ, ंसाठ, _ionn,\n  { {0x63a31271, 0x32da009b, 0x1d260088, 0x00000000}},  //   _honn, _שחקנ, рмам,\n  { {0x63a31272, 0x2d801273, 0x69cb0292, 0x00000000}},  // [2100] _konn, rdie_, dige,\n  { {0x63a300b0, 0x443f003c, 0xeab20025, 0x00000000}},  //   _jonn, isu_, يعا_,\n  { {0x63a300f4, 0x69cb1274, 0x973c0091, 0x00000000}},  //   _monn, fige, _noća,\n  { {0x443f0f81, 0x63a30051, 0xa01b000c, 0x00000000}},  //   ksu_, _lonn, kvöl,\n  { {0x38cb00a6, 0x91fd0089, 0x764102e1, 0x00000000}},  //   پانی_, ltāc, _avly,\n  { {0x63a30207, 0x98a400b9, 0x443f00ca, 0x00000000}},  //   _nonn, _země_, dsu_,\n  { {0x29560265, 0x443f1275, 0xafdb05b7, 0x00000000}},  //   _възр, esu_, prøv,\n  { {0xd3780363, 0x443f1276, 0x18a60152, 0x00000000}},  //   moći_, fsu_, _кабм,\n  { {0x261603d7, 0x63a3032c, 0x79820066, 0x00000000}},  //   _पूरी_, _bonn, mdow,\n  { {0x63a3032c, 0x798001dd, 0x27e700f6, 0x00000000}},  //   _conn, _hamw, conn_,\n  { {0x6d460428, 0x63a30db6, 0x798009c7, 0x00000000}},  //   _odka, _donn, _kamw,\n  { {0x7c260119, 0x31c71277, 0x753b1278, 0x00000000}},  //   _otkr, рсов, cauz,\n  { {0x8463005e, 0x27ec0022, 0x63a30048, 0x00000000}},  //   _дъще, _kkdn_, _fonn,\n  { {0x44260811, 0x69cb0f5d, 0x644200f4, 0x00000000}},  //   _ito_, zige, _ivoi,\n  { {0xc3fb009b, 0x64400190, 0x7c260d90, 0x00000000}},  //   _שלוש, lsmi, _atkr,\n  { {0xa91d1279, 0x44260620, 0x4255026c, 0x00000000}},  //   _kaže, _kto_, _انٹر,\n  { {0x69cb0292, 0x61ed011c, 0x63a3009d, 0x00000000}},  // [2110] vige, _ikal, _yonn,\n  { {0xa91d0006, 0x69cb0007, 0x69d800f4, 0x00000000}},  //   _maže, wige, éven,\n  { {0x69cb001f, 0x79800061, 0x44260058, 0x00000000}},  //   tige, _bamw, _lto_,\n  { {0x4426127a, 0x443f03d0, 0x6440127b, 0x00000000}},  //   _oto_, ysu_, ksmi,\n  { {0x69cb127c, 0xfd96009b, 0xe6cb000c, 0x00000000}},  //   rige, _הדרך_, _íbúð,\n  { {0x69cb127d, 0x64400089, 0x628a0016, 0x00000000}},  //   sige, dsmi, _orfo,\n  { {0x4426008d, 0x63a30039, 0x6442127e, 0x00000000}},  //   _ato_, _ronn, _avoi,\n  { {0x81bd001e, 0x443f0d49, 0x63a3001f, 0x00000000}},  //   spēj, tsu_, _sonn,\n  { {0x27e70263, 0x64400030, 0x3f8111d1, 0x00000000}},  //   ponn_, gsmi, _oahu_,\n  { {0x443f127f, 0x61ed006a, 0xd7fb1280, 0x00000000}},  //   rsu_, _akal, _руб_,\n  { {0x443f009f, 0x44260bc9, 0x63a31267, 0x00000000}},  //   ssu_, _eto_, _vonn,\n  { {0x63a30168, 0x44260022, 0x64400296, 0x00000000}},  //   _wonn, _fto_, bsmi,\n  { {0x628a001f, 0x95c40025, 0x644f0b33, 0x00000000}},  //   _erfo, _بينه, ácid,\n  { {0x23261281, 0x63ba0c4c, 0x3f810022, 0x00000000}},  //   _лоши_, chtn, _cahu_,\n  { {0xa91d0627, 0xdfcf006d, 0x798200b4, 0x00000000}},  //   _zaže, ريف_, ydow,\n  { {0x973c0091, 0x3d280014, 0x91e302dc, 0x00000000}},  //   _noćn, شتری_, _ноще,\n  { {0x6da30242, 0x798000d9, 0x00000000, 0x00000000}},  // [2120] чита, _ramw,   ,\n  { {0x69c9006c, 0x79820784, 0xa3ca007d, 0x00000000}},  //   _amee, wdow, रोप_,\n  { {0x8e860054, 0x0a4a007c, 0x2bb901f5, 0x00000000}},  //   _الجه, узей_, _इतरा,\n  { {0xe93a01b7, 0xe9da007c, 0x8d56005c, 0x00000000}},  //   اسات_, ыке_, _уточ,\n  { {0x79820036, 0x69db004a, 0x3f810095, 0x00000000}},  //   rdow, _djue, _yahu_,\n  { {0x798200e0, 0xa91d1282, 0x2d82059f, 0x00000000}},  //   sdow, _raže, _hake_,\n  { {0x44261283, 0x79820857, 0x2d820059, 0x00000000}},  //   _sto_, pdow, _kake_,\n  { {0xb8ce0055, 0xa91d0006, 0xdb1e0934, 0x00000000}},  //   _ওই_, _paže, sipä,\n  { {0x2d820038, 0x442600c4, 0x64401284, 0x00000000}},  //   _make_, _qto_, usmi,\n  { {0x61ed02e1, 0x6440032e, 0xd37a026b, 0x00000000}},  //   _skal, rsmi, учи_,\n  { {0x44261285, 0xdddc0059, 0x779300a1, 0x00000000}},  //   _wto_, zvrš, _ریٹا,\n  { {0xdb1c009f, 0x644002d8, 0x44260082, 0x00000000}},  //   _umræ, psmi, _tto_,\n  { {0xafdb0637, 0x673a00b0, 0xd4f6025a, 0x00000000}},  //   drør, _ketj, _اثاث,\n  { {0x823300a1, 0x661a1286, 0x00000000, 0x00000000}},  //   _کروا, _kutk,   ,\n  { {0x25a61287, 0x2d82002d, 0x3f83012d, 0x00000000}},  //   _kool_, _bake_, rdju_,\n  { {0x61ed00e7, 0x7bdc002b, 0x2d8200ab, 0x00000000}},  //   _ukal, _ajru, _cake_,\n  { {0x3f810169, 0x21f90161, 0x661a0c1e, 0x00000000}},  // [2130] _tahu_, lého_, _lutk,\n  { {0x673a01b5, 0x69c900c7, 0x7afc0009, 0x00000000}},  //   _netj, _smee, _bzrt,\n  { {0x21f9004f, 0x2d820a60, 0x00000000, 0x00000000}},  //   ného_, _fake_,   ,\n  { {0xd3780209, 0x725b0049, 0xad9b0048, 0x00000000}},  //   moću_, רכאפ, _dhúc,\n  { {0x673a05b7, 0x973c04eb, 0xe7390478, 0x00000000}},  //   _betj, _voćn, аел_,\n  { {0x2d820020, 0x21f90428, 0x661a1288, 0x00000000}},  //   _zake_, kého_, _butk,\n  { {0x2d820be3, 0x2013002b, 0x56920184, 0x00000000}},  //   _yake_, _mixi_, дајт,\n  { {0x25a600ab, 0x69c91242, 0x79a70545, 0x00000000}},  //   _cool_, _umee, _урге,\n  { {0x7c2d022b, 0x57d500ed, 0x00000000, 0x00000000}},  //   npar, _доаѓ,   ,\n  { {0x673a018d, 0xd8741289, 0x387f0288, 0x00000000}},  //   _getj, _عاقب, _isur_,\n  { {0x5694091b, 0x27e00051, 0x25a60a6b, 0x00000000}},  //   _нафт, éine_, _fool_,\n  { {0x7c2d03f1, 0x201300d4, 0x69d901a2, 0x00000000}},  //   kpar, _aixi_, nnwe,\n  { {0xdbc6006c, 0x64a500e2, 0xdb0500f8, 0x00000000}},  //   mööb, _фала, lkhä,\n  { {0x442d0018, 0x2d82128a, 0x7c2d0190, 0x00000000}},  //   mpe_, _sake_, dpar,\n  { {0x442d0056, 0x2d82023a, 0x5fbb0061, 0x00000000}},  //   lpe_, _pake_, _उतरल,\n  { {0x60000039, 0x201b128b, 0x442d0026, 0x00000000}},  //   döme, _fuqi_, ope_,\n  { {0x442d0263, 0x90c30057, 0xfaf8001e, 0x00000000}},  // [2140] npe_, _объе, _šī_,\n  { {0x7a0c005f, 0x442d128c, 0xdb1c044f, 0x00000000}},  //   _işti, ipe_, _områ,\n  { {0x6da602e9, 0x2d820038, 0x65b50161, 0x00000000}},  //   _дина, _take_, _náho,\n  { {0x7c2d128d, 0x673a0635, 0x442d01a3, 0x00000000}},  //   bpar, _setj, kpe_,\n  { {0x661a0583, 0x673a128e, 0x7c2d0e07, 0x00000000}},  //   _sutk, _petj, cpar,\n  { {0xe793012b, 0x661a00b0, 0x69d901d6, 0x00000000}},  //   дишњ, _putk, anwe,\n  { {0xd5ba0517, 0x442d0007, 0x25a6109b, 0x00000000}},  //   иси_, epe_, _pool_,\n  { {0x21f90428, 0x746a005c, 0x00000000, 0x00000000}},  //   vého_, аров_,   ,\n  { {0x7c2905ff, 0x00000000, 0x00000000, 0x00000000}},  //   _çert,   ,   ,\n  { {0x661a021e, 0x21f901ca, 0x25a60133, 0x00000000}},  //   _tutk, tého_, _wool_,\n  { {0x741400d3, 0x25a600ab, 0x442d0adb, 0x00000000}},  //   _کوتا, _tool_, ape_,\n  { {0xd46a007c, 0x21f90161, 0x7c2d128f, 0x00000000}},  //   _виде_, rého_, ypar,\n  { {0x38660390, 0x321e0009, 0x55d90049, 0x00000000}},  //   ntor_, sqty_, _פֿענ,\n  { {0x9f5a01aa, 0xa91d0006, 0x38661290, 0x00000000}},  //   _sipò_, _maža, itor_,\n  { {0x7c2d1291, 0xa187007e, 0x0ef30044, 0x00000000}},  //   wpar, _дыпл, ছেনঃ_,\n  { {0x3866020c, 0xd3780036, 0x65b501ca, 0x00000000}},  //   ktor_, leć_, _náhl,\n  { {0xf1bf0051, 0xa91d0091, 0x38660065, 0x00000000}},  // [2150] mhá_, _naža, jtor_,\n  { {0x7c2d1292, 0x66020093, 0xfc300025, 0x00000000}},  //   rpar, _lhok, ضحك_,\n  { {0x7a40002a, 0x38660319, 0x442d1293, 0x00000000}},  //   _rátá, etor_, zpe_,\n  { {0x442d0a59, 0x7e7a0049, 0x4e7a0049, 0x00000000}},  //   ype_, _פארז, _פארצ,\n  { {0xf1b4009b, 0xd8b80076, 0x69d901a2, 0x00000000}},  //   וסף_, يدها_, rnwe,\n  { {0xec36009b, 0xa91d0dec, 0x66020f45, 0x00000000}},  //   _מאשר_, _daža, _ahok,\n  { {0x38661294, 0xdb0e0146, 0x00000000, 0x00000000}},  //   ator_, _albæ,   ,\n  { {0x66020193, 0x31790036, 0xdb070065, 0x00000000}},  //   _chok, jesz_, _lojë,\n  { {0x38661295, 0x442d028c, 0x31790010, 0x00000000}},  //   ctor_, upe_, desz_,\n  { {0x442d1296, 0x65691297, 0x75d3001a, 0x00000000}},  //   rpe_, sfeh, văzu,\n  { {0x6569001f, 0xa3ca02fb, 0x65151298, 0x00000000}},  //   pfeh, रोध_, _فوائ,\n  { {0x442d1299, 0x216a0077, 0xd5b80089, 0x00000000}},  //   ppe_, щими_, _stāv_,\n  { {0x6609129a, 0x43950088, 0x00000000, 0x00000000}},  //   mmek, _надс,   ,\n  { {0x6609011f, 0x25bf00e0, 0x3f6a003b, 0x00000000}},  //   lmek, lhul_, љиво_,\n  { {0xa3b803ec, 0xbcfb009d, 0x00000000, 0x00000000}},  //   _ظاهر_, _obés,   ,\n  { {0x9c2600e3, 0x31790036, 0x6609129b, 0x00000000}},  //   здад, cesz_, nmek,\n  { {0x90460025, 0x38660253, 0x1d07129c, 0x00000000}},  // [2160] _عنده, xtor_, зети_,\n  { {0x0e66029b, 0xa91d129d, 0xdb070023, 0x00000000}},  //   _екон, _raža, _gojë,\n  { {0x66091252, 0x25bf0022, 0xa91d04eb, 0x00000000}},  //   kmek, khul_, _saža,\n  { {0x3866129e, 0x58860783, 0xd3780036, 0x00000000}},  //   ttor_, зыка, zeć_,\n  { {0xd90d0167, 0xc18d0049, 0x6609006c, 0x00000000}},  //   لیف_, יטאָ, dmek,\n  { {0x66020065, 0x3866129f, 0xa91d0091, 0x00000000}},  //   _shok, rtor_, _važa,\n  { {0x7bce04e3, 0xad9b0048, 0x00000000, 0x00000000}},  //   _imbu, _mhún,   ,\n  { {0x9adb00b6, 0xbcfb008e, 0x386612a0, 0x00000000}},  //   _החלט, _ibér, ptor_,\n  { {0x6d4b0051, 0xa91d0091, 0x00000000, 0x00000000}},  //   ógai, _kažn,   ,\n  { {0xad9b0011, 0x644f12a1, 0x00000000, 0x00000000}},  //   _nhún, ácia,   ,\n  { {0xdcfd0089, 0x7bce0085, 0x00000000, 0x00000000}},  //   _masā, _mmbu,   ,\n  { {0xa91d1279, 0x80ab0055, 0x25bf12a2, 0x00000000}},  //   _lažn, _চেষ্, chul_,\n  { {0x7bce006b, 0x4420001a, 0xbcfb12a3, 0x00000000}},  //   _ombu, _îi_, _océa,\n  { {0xad9b001d, 0xefc8005c, 0x00000000, 0x00000000}},  //   _chún, пуск_,   ,\n  { {0xad9b0051, 0x00000000, 0x00000000, 0x00000000}},  //   _dhún,   ,   ,\n  { {0x22f7009b, 0x7bce08d0, 0x63aa005b, 0x00000000}},  //   _מזון_, _ambu, _hofn,\n  { {0xa91d0006, 0x6285000c, 0x00000000, 0x00000000}},  // [2170] _bažn, _áhor,   ,\n  { {0x61ef0068, 0x7bce0085, 0x91fd0089, 0x00000000}},  //   locl, _cmbu, itām,\n  { {0xa91d010a, 0xfe241001, 0x00000000, 0x00000000}},  //   _dažn, _пьян,   ,\n  { {0x6aaa0073, 0x7bce01a3, 0x61ef0133, 0x00000000}},  //   äffa, _embu, nocl,\n  { {0x2d9909eb, 0xdcfd01c5, 0x00000000, 0x00000000}},  //   _inse_, _fasā,   ,\n  { {0xab84005e, 0xbcfb0051, 0x656200f6, 0x00000000}},  //   _пуск, _gcéa, _acoh,\n  { {0x660912a4, 0x25bf12a5, 0x00000000, 0x00000000}},  //   tmek, thul_,   ,\n  { {0x2d890eff, 0x75fe0065, 0x9f4a1128, 0x00000000}},  //   ndae_, tëza, robé_,\n  { {0x91fd001e, 0x66091038, 0x443912a6, 0x00000000}},  //   rtāl, rmek, ès_,\n  { {0x63aa12a7, 0xe3b10025, 0xe795025a, 0x00000000}},  //   _cofn, ئرة_, _تارک,\n  { {0x91e600ed, 0x2d990007, 0x61ef0048, 0x00000000}},  //   доне, _onse_, focl,\n  { {0x44b5007c, 0xa91d12a8, 0x61ef12a9, 0x00000000}},  //   _обес, _mažo, gocl,\n  { {0xa3ca007d, 0x2d8901d6, 0x00000000, 0x00000000}},  //   रोह_, ddae_,   ,\n  { {0x6b870213, 0x63aa0016, 0x3fcc0044, 0x00000000}},  //   _najg, _gofn, লক্ষ,\n  { {0x394d0107, 0x248d00c4, 0xa91d016e, 0x00000000}},  //   _odes_, lvem_, _ražn,\n  { {0xbcfb002a, 0x2616013d, 0x217601e1, 0x00000000}},  //   _scéa, _पंछी_, _цукр,\n  { {0xdcfd001e, 0x64460107, 0x3fe6013b, 0x00000000}},  // [2180] _pasā, škiv, _ожив,\n  { {0x394d00d4, 0x657b12aa, 0x00000000, 0x00000000}},  //   _ades_, heuh,   ,\n  { {0xa91d0119, 0x00000000, 0x00000000, 0x00000000}},  //   _važn,   ,   ,\n  { {0xe8fa12ab, 0x394d00fa, 0x00000000, 0x00000000}},  //   оле_, _cdes_,   ,\n  { {0x6d440653, 0x00000000, 0x00000000, 0x00000000}},  //   maia,   ,   ,\n  { {0x628312ac, 0x394d021e, 0x6d4412ad, 0x00000000}},  //   _osno, _edes_, laia,\n  { {0xd90d026c, 0x5a55005e, 0xba2308fc, 0x00000000}},  //   لیہ_, _пъту, _адск,\n  { {0x77b40129, 0x1dde013d, 0x6d440032, 0x00000000}},  //   _màxi, नचित, naia,\n  { {0x186a003b, 0x62830288, 0x00000000, 0x00000000}},  //   _фази_, _asno,   ,\n  { {0x6d44002d, 0x69c212ae, 0x69b40061, 0x00000000}},  //   haia, lhoe, _आवडी,\n  { {0x6d440149, 0xc7d700b3, 0x973c04eb, 0x00000000}},  //   kaia, _קובי_, _noći,\n  { {0x85060d3a, 0x225101ca, 0x69c200bb, 0x00000000}},  //   _قوان, ázka_, nhoe,\n  { {0x6d44002d, 0x3c2412af, 0x64b603ab, 0x00000000}},  //   daia, _növ_, _تحار,\n  { {0xafdb00ea, 0x00000000, 0x00000000, 0x00000000}},  //   msøk,   ,   ,\n  { {0x6b8707b0, 0x6d4400fa, 0xafdb0056, 0x00000000}},  //   _rajg, faia, lsøk,\n  { {0xa91d001e, 0x6d44065c, 0x973c01ee, 0x00000000}},  //   _ražo, gaia, _doći,\n  { {0x2d8901d6, 0x75fe0023, 0x00000000, 0x00000000}},  // [2190] rdae_, hëzo,   ,\n  { {0x2d890007, 0x09d70061, 0xe3b80180, 0x00000000}},  //   sdae_, ढच्य, nkı_,\n  { {0x6d44002d, 0x248d01dc, 0x160e007d, 0x00000000}},  //   baia, zvem_, ागार_,\n  { {0xd5a60445, 0xafdb00ea, 0x27e00048, 0x00000000}},  //   _صف_, ksøk, éinn_,\n  { {0x6d4f12b0, 0xe3b8014a, 0x394d0065, 0x00000000}},  //   _idca, kkı_, _vdes_,\n  { {0x65bc009d, 0xd7c804b1, 0x6d4f00d2, 0x00000000}},  //   _réha, وونه_, _hdca,\n  { {0xd49200e5, 0x00000000, 0x00000000, 0x00000000}},  //   _arπ_,   ,   ,\n  { {0x69c20181, 0x91fd0089, 0xff18009b, 0x00000000}},  //   choe, stāj, וקות_,\n  { {0x60000039, 0x799b0058, 0xa9240161, 0x00000000}},  //   dömn, _inuw, _úžas,\n  { {0xf77000a6, 0x65600051, 0xa3ca006e, 0x00000000}},  //   _نام_, agmh, रोल_,\n  { {0xeb92007b, 0xe299003b, 0x00000000, 0x00000000}},  //   אָר_, чан_,   ,\n  { {0xdb07009f, 0x56b60049, 0xafdb00ea, 0x00000000}},  //   _hljó, _אפען_, bsøk,\n  { {0xbcfb12b1, 0x6d4400c4, 0xb143007e, 0x00000000}},  //   _scén, vaia, ынял,\n  { {0x75290197, 0x6d4404cb, 0x7d1d00f6, 0x00000000}},  //   lcez, waia, _agss,\n  { {0xdee30256, 0x644905da, 0x670f0309, 0x00000000}},  //   гори, lsei, ाधिक_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6449028c, 0x6d44065c, 0x6b560025, 0x00000000}},  // [21a0] nsei, raia, فضائ,\n  { {0x7c2b12b2, 0x6d440653, 0x442f0a0b, 0x00000000}},  //   ígra, saia, _mtg_,\n  { {0xc0a9007a, 0x443d12b3, 0x69c212b4, 0x00000000}},  //   _فایل_, _lww_, thoe,\n  { {0xdca60072, 0x3940002a, 0xc86600e3, 0x00000000}},  //   _зами, úis_, етки,\n  { {0x69c200c7, 0x79890011, 0xad1b009b, 0x00000000}},  //   rhoe, _daew, _מוכר,\n  { {0x69c2046a, 0xc7a3005e, 0x61e40091, 0x00000000}},  //   shoe, личк, _ljil,\n  { {0x69c20007, 0x644b00d8, 0x644901c3, 0x00000000}},  //   phoe, _avgi, esei,\n  { {0x38cb089d, 0x9f4a01ca, 0x201a023a, 0x00000000}},  //   _کافی_, dobí_, _lipi_,\n  { {0x69c0021e, 0xdb07000c, 0x91fd0089, 0x00000000}},  //   _ilme, _fljó, stāk,\n  { {0xa3ca03d7, 0x61e4000b, 0x39460058, 0x00000000}},  //   रों_, _ajil, laos_,\n  { {0xe3b8047f, 0xa15902e9, 0x443d12b5, 0x00000000}},  //   rkı_, ману_, _eww_,\n  { {0x6449010f, 0x39460058, 0x75290197, 0x00000000}},  //   bsei, naos_, ccez,\n  { {0x442f00e0, 0x61e401ee, 0x69c00022, 0x00000000}},  //   _gtg_, _djil, _mlme,\n  { {0x6d4f0066, 0x41d201f5, 0x00000000, 0x00000000}},  //   _sdca, दोबस,   ,\n  { {0x69c012b6, 0xa91d016c, 0x39460203, 0x00000000}},  //   _olme, _sažm, kaos_,\n  { {0x61e40065, 0x3946071d, 0x00000000, 0x00000000}},  //   _gjil, jaos_,   ,\n  { {0x394600e0, 0xa01b04ce, 0x00000000, 0x00000000}},  // [21b0] daos_, rvös,   ,\n  { {0x69c012b7, 0x61fd03ed, 0x2a780022, 0x00000000}},  //   _alme, llsl, _bprb_,\n  { {0x32090082, 0x290400e7, 0xb7b50082, 0x00000000}},  //   _khay_, _azma_, _lịc,\n  { {0x201a00e7, 0x32370049, 0x3946004a, 0x00000000}},  //   _zipi_, גטאן_, gaos_,\n  { {0x69c00045, 0x201a00f6, 0x186900e2, 0x00000000}},  //   _dlme, _yipi_, фали_,\n  { {0x9a870265, 0x2d8b0219, 0xa91d010a, 0x00000000}},  //   _публ, _hace_, _kažk,\n  { {0x2d8b0521, 0x442f009d, 0x00000000, 0x00000000}},  //   _kace_, _stg_,   ,\n  { {0x644912b8, 0x442f01a3, 0x2d8b04eb, 0x00000000}},  //   tsei, _ptg_, _jace_,\n  { {0x75290197, 0x2d8b0e0a, 0x291f00f6, 0x00000000}},  //   rcez, _mace_, _igua_,\n  { {0x61f603b4, 0x7bc50082, 0xb7b50082, 0x00000000}},  //   _skyl, nhhu, _dịc,\n  { {0x443d067b, 0x6449059e, 0x13090057, 0x00000000}},  //   _www_, ssei, ьной_,\n  { {0x2d8b12b9, 0x320912ba, 0x442f12bb, 0x00000000}},  //   _nace_, _chay_, _ttg_,\n  { {0x201a01a3, 0x442f12bc, 0x6446016c, 0x00000000}},  //   _pipi_, _utg_, škir,\n  { {0x2b4300ca, 0x00000000, 0x00000000, 0x00000000}},  //   _nejc_,   ,   ,\n  { {0x201a12bd, 0x2d8b0145, 0xdb070062, 0x00000000}},  //   _vipi_, _bace_, _bojí,\n  { {0xd9bd0204, 0xc69200a3, 0xdb07004a, 0x00000000}},  //   ्फोट, סאן_, _cojí,\n  { {0x201a057e, 0xa01b000c, 0x2d8b0089, 0x00000000}},  // [21c0] _tipi_, rvör, _dace_,\n  { {0x291f0219, 0x25af0009, 0x00000000, 0x00000000}},  //   _agua_, _logl_,   ,\n  { {0x68fb0219, 0x0f57007b, 0xcf5700b6, 0x00000000}},  //   _ayud, _ביים_, _בבית_,\n  { {0x7e6e0009, 0x2d8b12be, 0x7a470010, 0x00000000}},  //   mtbp, _gace_, _sétá,\n  { {0x2d80001a, 0x39460058, 0x63ba00ea, 0x00000000}},  //   meie_, raos_, yktn,\n  { {0x2d8000ea, 0x2d8b0c51, 0x00000000, 0x00000000}},  //   leie_, _zace_,   ,\n  { {0x692612bf, 0xfaa3007e, 0xaa4301ee, 0x00000000}},  //   _амба, _каро, _весл,\n  { {0x5e570049, 0x24860b4a, 0xa2c5013d, 0x00000000}},  //   דיקע_, _psom_, ानन्,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x3209103f, 0x394400eb, 0xa78512c0, 0x00000000}},  //   _shay_, _hems_, _مشمو,\n  { {0xe3af0076, 0x2d800007, 0xd7ef0025, 0x00000000}},  //   تري_, keie_, _بكل_,\n  { {0xb6d9007b, 0xa5da0257, 0x25af0045, 0x00000000}},  //   _אַנט, _غبار_, _gogl_,\n  { {0x2d8b00ab, 0x61fd0146, 0x00000000, 0x00000000}},  //   _race_, rlsl,   ,\n  { {0x040d0082, 0x394400c8, 0x00000000, 0x00000000}},  //   _mườn, _lems_,   ,\n  { {0x3209001d, 0x2d8b12c1, 0xdb0e0065, 0x00000000}},  //   _thay_, _pace_, _dobë,\n  { {0x60b500a1, 0x320900e0, 0x00000000, 0x00000000}},  //   _ممبئ, _uhay_,   ,\n  { {0x7afc00c4, 0x00000000, 0x00000000, 0x00000000}},  // [21d0] _ayrt,   ,   ,\n  { {0xe1ff12c2, 0x1ae70055, 0xad9b0051, 0x00000000}},  //   lló_, _করবে_, _mhúi,\n  { {0x2d8b0375, 0xc9590025, 0x68fb0058, 0x00000000}},  //   _tace_, فلاش_, _syud,\n  { {0xe1ff0047, 0xa91d016e, 0x68fb0058, 0x00000000}},  //   nló_, _kaži, _pyud,\n  { {0x3da4008b, 0x040d0011, 0x7c220051, 0x00000000}},  //   _трэб, _cườn, íort,\n  { {0xa91d010a, 0x040d0011, 0x7afc0c73, 0x00000000}},  //   _maži, _dườn, _fyrt,\n  { {0xf770035b, 0x394400f6, 0xdb0e0173, 0x00000000}},  //   تان_, _fems_, _nobè,\n  { {0xc7b8016c, 0x7f4501f3, 0x39440133, 0x00000000}},  //   _riđe_, _lehq, _gems_,\n  { {0x7afc008d, 0xad9b002a, 0x9868026c, 0x00000000}},  //   _zyrt, _chúi, _لینے_,\n  { {0x69d90e15, 0xd7740123, 0x52a90175, 0x00000000}},  //   liwe, _نامع, евом_,\n  { {0x6146007e, 0xd57502be, 0xdb0e0065, 0x00000000}},  //   лена, _буль, _robë,\n  { {0x69d91196, 0x60000039, 0xe1ff12c3, 0x00000000}},  //   niwe, römm, gló_,\n  { {0x753b000b, 0xe3b30014, 0x00000000, 0x00000000}},  //   mbuz, _پرش_,   ,\n  { {0x645b00c1, 0x3eb812c4, 0xe1ff004a, 0x00000000}},  //   mrui, tyrt_, aló_,\n  { {0x3ebe009f, 0x69d90020, 0xe1ff12c5, 0x00000000}},  //   átt_, kiwe, bló_,\n  { {0x69d90020, 0x753b00d9, 0x3f8c1238, 0x00000000}},  //   jiwe, nbuz, ždu_,\n  { {0x2d8008db, 0xd00f00a1, 0x645b0882, 0x00000000}},  // [21e0] reie_, زلہ_, nrui,\n  { {0x394412c6, 0x8b260cbc, 0x00000000, 0x00000000}},  //   _sems_, удже,   ,\n  { {0x645b0051, 0x7c36000c, 0xe94400a1, 0x00000000}},  //   hrui, spyr, لرشی,\n  { {0x91fd001e, 0x645b01bb, 0xa91d0161, 0x00000000}},  //   stāv, krui, _zaži,\n  { {0x6d460089, 0x753b00d2, 0x00000000, 0x00000000}},  //   _ieka, dbuz,   ,\n  { {0x91fd001e, 0x6d4612c7, 0xa6340088, 0x00000000}},  //   ltāt, _heka, анкі,\n  { {0x6d46027e, 0xf1c101ca, 0xad9b0051, 0x00000000}},  //   _keka, ášky_, _shúi,\n  { {0x545402b8, 0x645b0197, 0x040d0011, 0x00000000}},  //   авит, frui, _tườn,\n  { {0x6d4612c8, 0xa2d90164, 0x136a005e, 0x00000000}},  //   _meka, _फेब्, ншни_,\n  { {0x1ae708b7, 0x6d4610e9, 0x4274003b, 0x00000000}},  //   _করতে_, _leka, агос,\n  { {0xb3450181, 0x7c2612c9, 0x75fe0065, 0x00000000}},  //   _seçã, _lukr, hëzi,\n  { {0x6d4601d9, 0x645b015c, 0xd257008b, 0x00000000}},  //   _neka, brui, ыць_,\n  { {0xa91d010a, 0x645b0d29, 0x7c2612ca, 0x00000000}},  //   _paži, crui, _nukr,\n  { {0xa3e803d7, 0x69d910ba, 0x9f4a00c4, 0x00000000}},  //   _यदि_, ziwe, tobá_,\n  { {0x6d4604d4, 0x4426000b, 0xa91d0006, 0x00000000}},  //   _beka, _huo_, _važi,\n  { {0x6d4612cb, 0x628a002b, 0x44260006, 0x00000000}},  //   _ceka, _isfo, _kuo_,\n  { {0x6d4600ef, 0x7c260161, 0x41c40380, 0x00000000}},  // [21f0] _deka, _cukr, _دقيق,\n  { {0xf1bf01dc, 0x7c260006, 0x69d8009d, 0x00000000}},  //   lká_, _dukr, èven,\n  { {0x442600b0, 0x6d4612cc, 0x3f83003b, 0x00000000}},  //   _luo_, _feka, meju_,\n  { {0x89370054, 0x3ebe05b7, 0x6d4612cd, 0x00000000}},  //   اعضا, øtte_, _geka,\n  { {0x442612ce, 0x69d912cf, 0x98a50594, 0x00000000}},  //   _nuo_, riwe, риле,\n  { {0x62980047, 0xd2460355, 0x7bd5010f, 0x00000000}},  //   _orvo, _ون_, _umzu,\n  { {0x44260203, 0xf40a0044, 0x00000000, 0x00000000}},  //   _auo_, রদার_,   ,\n  { {0x4426011c, 0xf773025a, 0x3dc90022, 0x00000000}},  //   _buo_, _گار_, nhaw_,\n  { {0x6298021e, 0x4426037e, 0x05a6007c, 0x00000000}},  //   _arvo, _cuo_, рвый_,\n  { {0xf773004b, 0xe299012b, 0x645b0112, 0x00000000}},  //   _دار_, вао_, rrui,\n  { {0x645b00bb, 0x3f83007f, 0xd5ae02fd, 0x00000000}},  //   srui, deju_, سفی_,\n  { {0x645b040f, 0x628a0146, 0xa246009e, 0x00000000}},  //   prui, _dsfo, جیٹل_,\n  { {0x6d4612d0, 0x628a0a0a, 0x629800b5, 0x00000000}},  //   _reka, _esfo, _ervo,\n  { {0x6d46020c, 0x91fd0089, 0xbcfb0051, 0x00000000}},  //   _seka, tuāc, _gcéi,\n  { {0x6d460169, 0x7c260dc6, 0x00000000, 0x00000000}},  //   _peka, _sukr,   ,\n  { {0xf1bf0428, 0x65b50027, 0x44260173, 0x00000000}},  //   cká_, _záhr, _yuo_,\n  { {0xd7c50061, 0x6d460483, 0x0b46007c, 0x00000000}},  // [2200] वसाच, _veka, инан,\n  { {0x75fe008d, 0x91fd12d1, 0x6d4600d9, 0x00000000}},  //   rëzi, grāf, _weka,\n  { {0xa91d0b4d, 0x6d4612d2, 0xa926007c, 0x00000000}},  //   _mažu, _teka, адел,\n  { {0x25ad12d3, 0xda650025, 0x00000000, 0x00000000}},  //   jjel_, صامي,   ,\n  { {0xe894085f, 0xd3780243, 0x83fd0010, 0x00000000}},  //   саль, liće_, ntős,\n  { {0x91fd0580, 0xd90d00e9, 0x75220026, 0x00000000}},  //   ntār, ریل_, _sgoz,\n  { {0x44260198, 0x4b7b019b, 0x64420046, 0x00000000}},  //   _suo_, _שאלו, _swoi,\n  { {0x2d920607, 0xbcfb002a, 0x44260207, 0x00000000}},  //   ndye_, _scéi, _puo_,\n  { {0xa4d4007e, 0x98bd0036, 0x00000000, 0x00000000}},  //   сопі, tawą_,   ,\n  { {0x629804a3, 0xa507003b, 0x7e7e00e0, 0x00000000}},  //   _prvo, шења_, _oppp,\n  { {0x3f830006, 0x9f430023, 0x98bd00b4, 0x00000000}},  //   veju_, snjë_, rawą_,\n  { {0x442612d4, 0xf1d20164, 0x64420036, 0x00000000}},  //   _tuo_, दोलन, _twoi,\n  { {0xe3af04e1, 0xdb0e011f, 0x75d30025, 0x00000000}},  //   سری_, _albü, _بينا,\n  { {0xf1bf004f, 0x33f30445, 0x00000000, 0x00000000}},  //   ská_, _وسوس,   ,\n  { {0x3f8312d5, 0x245200a1, 0x3dc900e0, 0x00000000}},  //   reju_, _انڈس, thaw_,\n  { {0x3dc900e0, 0x82330379, 0x00000000, 0x00000000}},  //   uhaw_, _بروا,   ,\n  { {0x91fd0089, 0x3f8301ee, 0x26e2013d, 0x00000000}},  // [2210] stās, peju_, गपुर_,\n  { {0x60c00737, 0xd3780107, 0x3dc90675, 0x00000000}},  //   ømme, biće_, shaw_,\n  { {0x200312d6, 0x6e950054, 0xd378012d, 0x00000000}},  //   mlji_, _الجا, ciće_,\n  { {0x62860036, 0xaa580cb3, 0xdb0e004a, 0x00000000}},  //   łkow, рицу_, _albó,\n  { {0x9f5100b9, 0x97d90f4e, 0x1821007d, 0x00000000}},  //   hozí_, льку_, मदेव_,\n  { {0x26e20061, 0x6819000a, 0x600000b0, 0x00000000}},  //   गपूर_, _kňdi, tömi,\n  { {0x7bc70066, 0x7c2d006b, 0x75fe0023, 0x00000000}},  //   _ilju, lqar, hëzu,\n  { {0x59f90057, 0x6d4d025e, 0x3940009f, 0x00000000}},  //   _себя_, naaa, ðist_,\n  { {0x7bc70bf8, 0x38600009, 0x7c2d12d7, 0x00000000}},  //   _klju, àirt_, nqar,\n  { {0x68e40051, 0x25bf0093, 0xd6db0467, 0x00000000}},  //   úide, skul_, _ите_,\n  { {0x6d4d0058, 0x27e700e0, 0x57fa0049, 0x00000000}},  //   kaaa, mnnn_, _עלעו,\n  { {0xd3780107, 0xad9b0051, 0x930d0095, 0x00000000}},  //   viće_, _mhús, _ışık,\n  { {0x34ab0025, 0x7bc712d8, 0x61e600f8, 0x00000000}},  //   _جداً_, _olju, rnkl,\n  { {0x656901d6, 0x27e712d9, 0x6d4b000c, 0x00000000}},  //   lgeh, nnnn_, ðgan,\n  { {0xada60680, 0x6da60081, 0x75fe0065, 0x00000000}},  //   бавл, бива, rëzv,\n  { {0xd3780209, 0x6d4d001c, 0x6569010f, 0x00000000}},  //   riće_, gaaa, ngeh,\n  { {0xd3780521, 0x9f580065, 0x69d8009d, 0x00000000}},  // [2220] siće_, norë_, èvem,\n  { {0x6d4d001c, 0x65bc00f4, 0x7f860054, 0x00000000}},  //   aaaa, _véhi, _الدن,\n  { {0x387f002d, 0x6d4d12da, 0xdb0e0173, 0x00000000}},  //   _apur_, baaa, _albò,\n  { {0x6d4d001c, 0x27e90051, 0xdb1c0039, 0x00000000}},  //   caaa, éann_, _omrö,\n  { {0x28d20316, 0xfbd100a1, 0x7bc7012d, 0x00000000}},  //   _देखि, ستے_, _flju,\n  { {0xab2700ed, 0x3a3a0058, 0x7bc712db, 0x00000000}},  //   _гора_, pppp_, _glju,\n  { {0x65690dcc, 0x7bde01a3, 0x8f9b009b, 0x00000000}},  //   fgeh, mipu, טיסי,\n  { {0x7bde0169, 0x69cb12dc, 0x6569046a, 0x00000000}},  //   lipu, chge, ggeh,\n  { {0xc34a09b2, 0xdb0e12dd, 0x00000000, 0x00000000}},  //   ляне_, _mobí,   ,\n  { {0x325403f3, 0xd62a003b, 0xdcef0089, 0x00000000}},  //   овор, _боже_, _sacī,\n  { {0xd5af005e, 0x6d4d1084, 0xa2a80061, 0x00000000}},  //   _ес_, yaaa, टमध्,\n  { {0x645d0211, 0x7bde0be4, 0x31c7007c, 0x00000000}},  //   ásic, hipu, ссов,\n  { {0x7bde12de, 0x644f004a, 0x69c20288, 0x00000000}},  //   kipu, ácit, ikoe,\n  { {0x02a602dc, 0x75fe0065, 0xe29a0082, 0x00000000}},  //   _грим, rëzu, _trư_,\n  { {0x6d4d001c, 0x7bde0c2f, 0x6377009b, 0x00000000}},  //   taaa, dipu, _הגוף_,\n  { {0x1ae70055, 0x7c2d12df, 0x7bcb01c5, 0x00000000}},  //   _করলে_, tqar, īgum,\n  { {0x22ae006b, 0x7bc70825, 0xcf8e0014, 0x00000000}},  // [2230] dəki_, _plju, رژی_,\n  { {0xad9b0051, 0x6d4d12e0, 0x61ed03b4, 0x00000000}},  //   _chúr, saaa, _hjal,\n  { {0x387f01a2, 0x61ed000c, 0x7bc700ca, 0x00000000}},  //   _spur_, _kjal, _vlju,\n  { {0x394912e1, 0x6d4d0045, 0xdb0e00e5, 0x00000000}},  //   úas_, qaaa, _bobâ,\n  { {0x27e9008e, 0x61ed12e2, 0x00000000, 0x00000000}},  //   éano_, _mjal,   ,\n  { {0x98480a78, 0xdb0e001a, 0x207c0049, 0x00000000}},  //   сяца_, _dobâ, טאדא,\n  { {0x61ed0211, 0x3ffc0049, 0x656912e3, 0x00000000}},  //   _ojal, אפגע, tgeh,\n  { {0xe459012b, 0x9f580065, 0x8beb0044, 0x00000000}},  //   ажи_, torë_, _কঠিন_,\n  { {0x6569010f, 0x69c90288, 0x00000000, 0x00000000}},  //   rgeh, _ilee,   ,\n  { {0x61ed12e4, 0x394f000c, 0xd7fb0106, 0x00000000}},  //   _ajal, lags_, _суб_,\n  { {0xf77006c6, 0x69c9017d, 0x9f580065, 0x00000000}},  //   _سال_, _klee, sorë_,\n  { {0x216a004c, 0x9f5800d6, 0xb1da0088, 0x00000000}},  //   шими_, moré_, рьох_,\n  { {0x61ed008d, 0xd00a0c96, 0x9f58009d, 0x00000000}},  //   _djal, иеме_, loré_,\n  { {0xee3a0057, 0xd9b6013d, 0x69c212e5, 0x00000000}},  //   инг_, _अक्ट, zkoe,\n  { {0x61ed12e6, 0x80db0055, 0x98bd0036, 0x00000000}},  //   _fjal, _যুদ্, rawę_,\n  { {0x61ed12e7, 0xc692012f, 0x80660769, 0x00000000}},  //   _gjal, ואל_, _движ,\n  { {0x7bde12e8, 0x394f0332, 0xd3780091, 0x00000000}},  // [2240] tipu, dags_, lića_,\n  { {0x69db008e, 0x69c912e9, 0x81ac0044, 0x00000000}},  //   _amue, _alee, _গতি_,\n  { {0x8eb300a1, 0xdb1501aa, 0x7bde12ea, 0x00000000}},  //   _ہمیش, _jozè, ripu,\n  { {0x7ae305f4, 0x609700a1, 0x7bde00b0, 0x00000000}},  //   únta, _انیس_, sipu,\n  { {0xd3780107, 0x69c20116, 0x91fd0089, 0x00000000}},  //   hića_, rkoe, duāl,\n  { {0x69c20215, 0xa09b00a3, 0x5fce0061, 0x00000000}},  //   skoe, יינט, होचल,\n  { {0x394f0719, 0xeb91007b, 0x69c90133, 0x00000000}},  //   bags_, _אָן_, _flee,\n  { {0x69c9020f, 0xd3780091, 0x35f703ec, 0x00000000}},  //   _glee, dića_, يريد_,\n  { {0xb7e602dc, 0x6b990048, 0x38660133, 0x00000000}},  //   _джак, _éagó, quor_,\n  { {0x61ed000c, 0x9f58009d, 0x7de50006, 0x00000000}},  //   _sjal, boré_, rėsi,\n  { {0xd3780107, 0x69c9021e, 0x86560084, 0x00000000}},  //   gića_, _ylee, _ذخائ,\n  { {0x20180023, 0x1aec0044, 0x00000000, 0x00000000}},  //   emri_, _করাই_,   ,\n  { {0xc953019b, 0xa50700e3, 0x7bdc046a, 0x00000000}},  //   ומר_, _деца_, _omru,\n  { {0x425500a1, 0xcf270025, 0xd37804eb, 0x00000000}},  //   _کنٹر, ترحي, bića_,\n  { {0xcddb098c, 0x25a600d9, 0x61ed000c, 0x00000000}},  //   ања_, _knol_, _tjal,\n  { {0x7bdc0557, 0xad9b0048, 0x00000000, 0x00000000}},  //   _amru, _chúp,   ,\n  { {0x61fd008e, 0xbcfb0249, 0x00000000, 0x00000000}},  // [2250] mosl, _acér,   ,\n  { {0x69c900ab, 0x9f43004a, 0x61fd0142, 0x00000000}},  //   _slee, rojó_, losl,\n  { {0x8ae701fb, 0xaa950025, 0x69c90168, 0x00000000}},  //   ціал, ثلاث, _plee,\n  { {0x61fd0107, 0x63b80107, 0x3a2400e5, 0x00000000}},  //   nosl, _lovn, _cimp_,\n  { {0x394f125b, 0x69c900c7, 0xe73900e3, 0x00000000}},  //   rags_, _vlee, бел_,\n  { {0x2904018e, 0x61fd0142, 0x63b8016c, 0x00000000}},  //   _dyma_, hosl, _novn,\n  { {0x61fd00b9, 0x91fd0089, 0x212912eb, 0x00000000}},  //   kosl, tuāl, _ogah_,\n  { {0xd37801cd, 0xd90e00a1, 0x38600051, 0x00000000}},  //   vića_, ئیے_, áirc_,\n  { {0x61fd09fc, 0x478b0057, 0x63b8012d, 0x00000000}},  //   dosl, _всем_, _bovn,\n  { {0x7bc512ec, 0xd3780091, 0x394d12ed, 0x00000000}},  //   nkhu, tića_, _hees_,\n  { {0x88bd0055, 0x6b9512ee, 0x394d00bb, 0x00000000}},  //   _অধিক, _mazg, _kees_,\n  { {0xd3780182, 0x249d0016, 0x2001033b, 0x00000000}},  //   rića_, _trwm_, _akhi_,\n  { {0x394d12ef, 0xd9bd0044, 0x7bc50022, 0x00000000}},  //   _mees_, _আগাম, kkhu,\n  { {0x4375007b, 0x394d0100, 0x443f020c, 0x00000000}},  //   _זײַן_, _lees_, mpu_,\n  { {0x443f018e, 0x6012009f, 0x6da6004d, 0x00000000}},  //   lpu_, væmd, пива,\n  { {0xc8bd007d, 0x62830197, 0x7bc50116, 0x00000000}},  //   ्नाट, _ipno, ekhu,\n  { {0xdd8f031d, 0x443f000a, 0x3c66007e, 0x00000000}},  // [2260] دوق_, npu_, якаг,\n  { {0x3a2412f0, 0x443f00c4, 0x60000039, 0x00000000}},  //   _simp_, ipu_, röms,\n  { {0x394d0436, 0x3a240d29, 0xc7b801ed, 0x00000000}},  //   _bees_, _pimp_, _rođ_,\n  { {0x2d8901ee, 0x394d00bb, 0x32360049, 0x00000000}},  //   ceae_, _cees_, לטען_,\n  { {0x6d4412f1, 0x394d01d6, 0x18670849, 0x00000000}},  //   mbia, _dees_, зачи_,\n  { {0x3f98001a, 0x6d440006, 0x394d12f2, 0x00000000}},  //   ndru_, lbia, _eees_,\n  { {0x3a24000d, 0x63b80428, 0x2bc10061, 0x00000000}},  //   _timp_, _rovn, _शकता,\n  { {0x394d0343, 0x6fcb01df, 0x3f8a12f3, 0x00000000}},  //   _gees_, _müca, hebu_,\n  { {0x61fd0c8a, 0x443f12f4, 0x628304e7, 0x00000000}},  //   vosl, gpu_, _apno,\n  { {0x260a0061, 0x6027009d, 0x883b009b, 0x00000000}},  //   ातही_, hémè, _לתמו,\n  { {0x61fd12f5, 0x63b812f6, 0xd6c40014, 0x00000000}},  //   tosl, _vovn, _تمای,\n  { {0x25a60016, 0xdceb0e54, 0x3f980089, 0x00000000}},  //   _unol_, _žičn, edru_,\n  { {0x61fd01ca, 0x859b009b, 0x53a60088, 0x00000000}},  //   rosl, _לשאו, _надб,\n  { {0xb7bd001a, 0x3f8a12f7, 0x00000000, 0x00000000}},  //   _puţi, gebu_,   ,\n  { {0x61fd01d9, 0x6b950295, 0xddd012f8, 0x00000000}},  //   posl, _razg, _šeši,\n  { {0x7c3f0045, 0x660200d9, 0x00000000, 0x00000000}},  //   tpqr, _jkok,   ,\n  { {0x394d005b, 0x7de50006, 0x3f8a012d, 0x00000000}},  // [2270] _rees_, dėst, bebu_,\n  { {0xfe6e06c6, 0xbca40025, 0x60cf005d, 0x00000000}},  //   دگی_, عملي, ınmı,\n  { {0x6d440ef1, 0x7bc501d6, 0x6b95014a, 0x00000000}},  //   bbia, rkhu, _vazg,\n  { {0x3ebe12f9, 0x66020045, 0x3eac068f, 0x00000000}},  //   ätte_, _nkok, ådte_,\n  { {0x31580476, 0x8819007e, 0x394d010e, 0x00000000}},  //   ליאן_, оўку_, _vees_,\n  { {0x394d0343, 0x6d4f00ca, 0x7de50023, 0x00000000}},  //   _wees_, _heca, rėsu,\n  { {0x6d4f0169, 0x394d0133, 0x00000000, 0x00000000}},  //   _keca, _tees_,   ,\n  { {0x84590898, 0x1994007e, 0x7c27008a, 0x00000000}},  //   орот_, _пася, _hijr,\n  { {0x8554007a, 0x6f0900b9, 0x6add01f5, 0x00000000}},  //   ریور_, řech, _मधुर,\n  { {0x443f0006, 0x6d4f12fa, 0x00000000, 0x00000000}},  //   rpu_, _leca,   ,\n  { {0x7c2f000d, 0x2bae0061, 0x6d440016, 0x00000000}},  //   _lucr, घाता, ybia,\n  { {0x443f12fb, 0x6d4f12fc, 0x798b0016, 0x00000000}},  //   ppu_, _neca, negw,\n  { {0xc4fb0014, 0x660912fd, 0x224012ac, 0x00000000}},  //   _اعضا_, mlek, _čike_,\n  { {0x66090004, 0x6d5d12fe, 0x661b0205, 0x00000000}},  //   llek, _adsa, lmuk,\n  { {0x6d4f0038, 0x442f000c, 0x3f8a0016, 0x00000000}},  //   _beca, _hug_, rebu_,\n  { {0x442712ff, 0x7e61000c, 0x6d4f01a3, 0x00000000}},  //   _hin_, álpa, _ceca,\n  { {0x6d44010a, 0xfce300ec, 0x442f0065, 0x00000000}},  // [2280] rbia, вото, _jug_,\n  { {0x6d440365, 0x8bf10055, 0x442f1300, 0x00000000}},  //   sbia, _জীবন_, _mug_,\n  { {0x442704d7, 0x442f1301, 0x6e261302, 0x00000000}},  //   _min_, _lug_, _tikb,\n  { {0x44271303, 0x6d4f00bb, 0x442f0035, 0x00000000}},  //   _lin_, _geca, _oug_,\n  { {0xa3cd0164, 0x66090646, 0xf4e80044, 0x00000000}},  //   रसा_, dlek, _পর্ব,\n  { {0x442701f6, 0x66090020, 0xb8d6013d, 0x00000000}},  //   _nin_, elek, _छप_,\n  { {0xd6d00054, 0x443d0093, 0x260a0061, 0x00000000}},  //   طقة_, _atw_, ातली_,\n  { {0xd5b00054, 0x443d00b5, 0x442701a3, 0x00000000}},  //   افة_, _btw_, _ain_,\n  { {0x442f1304, 0x92ea0044, 0x443d0d28, 0x00000000}},  //   _cug_, _মরে_, _ctw_,\n  { {0xa3d803d7, 0x3946010a, 0xe8d700b3, 0x00000000}},  //   ठों_, lbos_, _חומר_,\n  { {0x44271305, 0xbcfb1306, 0x66091016, 0x00000000}},  //   _din_, _idée, blek,\n  { {0x44270c85, 0x7dc3006c, 0xf6690025, 0x00000000}},  //   _ein_, _tõsi, _رحمه_,\n  { {0x44270e6d, 0x29f8016e, 0xf77100a1, 0x00000000}},  //   _fin_, mčad_, _جاۓ_,\n  { {0x6d4f0149, 0x442701aa, 0x9f430065, 0x00000000}},  //   _seca, _gin_, mijë_,\n  { {0x6d4f01a3, 0x7c2f00f4, 0x442f010f, 0x00000000}},  //   _peca, _sucr, _zug_,\n  { {0x44271307, 0xa01b010f, 0x7c2f00fa, 0x00000000}},  //   _zin_, gwör, _pucr,\n  { {0x6d4f1308, 0x4427013f, 0x00000000, 0x00000000}},  // [2290] _veca, _yin_,   ,\n  { {0x2fc7001d, 0x44271309, 0x60c00039, 0x00000000}},  //   _ông_, _xin_, ämme,\n  { {0x6d4f014a, 0x798b04c0, 0xf09f00f6, 0x00000000}},  //   _teca, tegw, lvà_,\n  { {0x6d5d0030, 0x38660016, 0x7f55004a, 0x00000000}},  //   _udsa, fror_, lazq,\n  { {0xdd3a012e, 0x798b130a, 0x660900ca, 0x00000000}},  //   _מערכ, regw, vlek,\n  { {0xe739007c, 0xa6950098, 0xe6110014, 0x00000000}},  //   чек_, ериј, گشت_,\n  { {0x44270811, 0x2d99130b, 0x27e905fa, 0x00000000}},  //   _rin_, _kase_, đan_,\n  { {0x4427130c, 0xfc3f0051, 0x38660d2b, 0x00000000}},  //   _sin_, _tríd_, bror_,\n  { {0x4427130d, 0x66090039, 0x661b0169, 0x00000000}},  //   _pin_, rlek, rmuk,\n  { {0xe3b10054, 0x78a6000c, 0x6609014a, 0x00000000}},  //   ارة_, _ákva, slek,\n  { {0x44270263, 0x660901d6, 0x0394007e, 0x00000000}},  //   _vin_, plek, трыя,\n  { {0x2d99037e, 0x442f130e, 0x76430022, 0x00000000}},  //   _nase_, _tug_, mpny,\n  { {0x44270a60, 0x00000000, 0x00000000, 0x00000000}},  //   _tin_,   ,   ,\n  { {0x25bd1163, 0x4427023a, 0xd0120464, 0x00000000}},  //   _howl_, _uin_, الس_,\n  { {0x91e601e0, 0x39460006, 0xdb1c01df, 0x00000000}},  //   _поке, ybos_, üzün,\n  { {0x2d99130f, 0xdb1c00f4, 0x00000000, 0x00000000}},  //   _case_, _forê,   ,\n  { {0xa3c3001c, 0x3dd2018e, 0x8fa60088, 0x00000000}},  // [22a0] _एका_, rhyw_, _запе,\n  { {0xfc3f002a, 0x61e601f6, 0x395f001a, 0x00000000}},  //   _dtí_, likl, _adus_,\n  { {0x160f013d, 0x66000020, 0xc3210044, 0x00000000}},  //   ातार_, yomk, পুরি_,\n  { {0x61e607e4, 0x39460e20, 0x38660f3f, 0x00000000}},  //   nikl, ubos_, tror_,\n  { {0xe894085f, 0x6d56049d, 0x3946049a, 0x00000000}},  //   таль, maya, rbos_,\n  { {0x6d560149, 0x2d991310, 0x38661311, 0x00000000}},  //   laya, _zase_, rror_,\n  { {0x66000062, 0xd90d00a1, 0xdb1c0065, 0x00000000}},  //   tomk, میہ_, _morë,\n  { {0xceb300b6, 0x6d561312, 0x3f9a001e, 0x00000000}},  //   ריה_, naya, _lapu_,\n  { {0x186701f9, 0x61e61313, 0x2ca00190, 0x00000000}},  //   _пати_, dikl, nvid_,\n  { {0x6d560831, 0xb35600a6, 0xb34600c4, 0x00000000}},  //   haya, ریبا_, diçõ,\n  { {0x6d561314, 0xd2570088, 0x61e60095, 0x00000000}},  //   kaya, нця_, fikl,\n  { {0x6d560127, 0xab64014a, 0x25bd002b, 0x00000000}},  //   jaya, ldüğ, _gowl_,\n  { {0x1ae70055, 0x6d560169, 0x7dca0428, 0x00000000}},  //   _করছে_, daya, _výsl,\n  { {0x6fcb005f, 0x2d99001a, 0x2ca00039, 0x00000000}},  //   _gücl, _sase_, dvid_,\n  { {0x2d990607, 0x2d801315, 0xdb1c0065, 0x00000000}},  //   _pase_, ffie_, _dorë,\n  { {0x32530265, 0x6d561316, 0xb3460181, 0x00000000}},  //   _свър, gaya, biçõ,\n  { {0x2d99037e, 0xacf80088, 0xdb150161, 0x00000000}},  // [22b0] _vase_, енту_, _vozí,\n  { {0xdb1c0173, 0x9f5800f6, 0xa2c50061, 0x00000000}},  //   _korè, corà_, ानच्,\n  { {0x6d561317, 0x3a750816, 0x20030006, 0x00000000}},  //   baya, тлер, moji_,\n  { {0x20031318, 0x9f5800c4, 0x6d561319, 0x00000000}},  //   loji_, porã_, caya,\n  { {0x7dda00b9, 0x83fd0010, 0xa01b000c, 0x00000000}},  //   růst, rtőz, rtöf,\n  { {0x61e604a0, 0x20030006, 0x00000000, 0x00000000}},  //   zikl, noji_,   ,\n  { {0x34c9013d, 0x00000000, 0x00000000, 0x00000000}},  //   िन्द,   ,   ,\n  { {0x20030020, 0x00000000, 0x00000000, 0x00000000}},  //   hoji_,   ,   ,\n  { {0x61e60378, 0x2240131a, 0x20030062, 0x00000000}},  //   vikl, _čika_, koji_,\n  { {0xd759004b, 0xe4c80025, 0xf7700380, 0x00000000}},  //   _آلات_, عبين_, _هام_,\n  { {0x61e60004, 0x27e7009f, 0x6d56006a, 0x00000000}},  //   tikl, minn_, yaya,\n  { {0x27e7131b, 0xe3b1089d, 0xb34600c4, 0x00000000}},  //   linn_, ارک_, tiçõ,\n  { {0x61e6131c, 0x799b107e, 0xc952009b, 0x00000000}},  //   rikl, _mauw, סמך_,\n  { {0x200301d9, 0x61e6011f, 0xb3460181, 0x00000000}},  //   goji_, sikl, riçõ,\n  { {0x6d56006a, 0xb3460181, 0x645b0116, 0x00000000}},  //   taya, siçõ, lsui,\n  { {0x27e7131d, 0x799b131e, 0x69cb00bb, 0x00000000}},  //   hinn_, _nauw, jkge,\n  { {0x27e7009f, 0x61e4131f, 0x645b01c3, 0x00000000}},  // [22c0] kinn_, _imil, nsui,\n  { {0x6d56011f, 0x80db0055, 0xfaa61320, 0x00000000}},  //   saya, _যুক্, казо,\n  { {0x6d560760, 0x81f70123, 0x7c360065, 0x00000000}},  //   paya, _سفیر_, sqyr,\n  { {0x5e57007b, 0x186a00e2, 0x645b0052, 0x00000000}},  //   _ביטע_, дади_, ksui,\n  { {0x27e7000c, 0xf7721095, 0x76410006, 0x00000000}},  //   finn_, لاغ_, _atly,\n  { {0x27e70fde, 0xf09300a3, 0x00000000, 0x00000000}},  //   ginn_, ינד_,   ,\n  { {0xbcfb1321, 0xd6cf006d, 0x7dc3006c, 0x00000000}},  //   _idéa, يقه_, _tõst,\n  { {0x6b9c0149, 0xd87600a1, 0x69cb010f, 0x00000000}},  //   _harg, _لائب, ckge,\n  { {0xb4be02f4, 0x3949027b, 0x6b9c0612, 0x00000000}},  //   ीने_, ñase_, _karg,\n  { {0x61e40994, 0x6b9c0145, 0x799b0036, 0x00000000}},  //   _amil, _jarg, _zauw,\n  { {0xa3e302d2, 0x6b9c124c, 0xd6c4089d, 0x00000000}},  //   _नगर_, _marg, _حمای,\n  { {0x79820a44, 0xdb1c1184, 0x61e401ee, 0x00000000}},  //   nfow, _coré, _cmil,\n  { {0x20031322, 0xdb1c009d, 0xf99300b3, 0x00000000}},  //   toji_, _doré, ברר_,\n  { {0x61e40207, 0x6b9c1323, 0xbcfb002a, 0x00000000}},  //   _emil, _narg, _ndéa,\n  { {0x20030059, 0x9e0701fb, 0xdb1c0051, 0x00000000}},  //   roji_, вчал, _foré,\n  { {0x200300ca, 0xd3780166, 0x27e70173, 0x00000000}},  //   soji_, dići_, zinn_,\n  { {0x27e70f99, 0x3209011c, 0x799b00bb, 0x00000000}},  // [22d0] yinn_, _ikay_, _rauw,\n  { {0x6b9c0c2e, 0xfc3f008e, 0x2003006b, 0x00000000}},  //   _carg, _cría_, qoji_,\n  { {0x6b9c0abe, 0x69c000b5, 0x799b0058, 0x00000000}},  //   _darg, _bome, _pauw,\n  { {0x6442002d, 0x645b01d6, 0x27e7010f, 0x00000000}},  //   _otoi, ysui, winn_,\n  { {0x27e71324, 0x26c7018e, 0x6b9c0056, 0x00000000}},  //   tinn_, wyno_, _farg,\n  { {0x6b9c1325, 0x62980091, 0x628a0030, 0x00000000}},  //   _garg, _osvo, _opfo,\n  { {0x27e70a4e, 0x3209011c, 0x69c0049a, 0x00000000}},  //   rinn_, _okay_, _fome,\n  { {0x27e71326, 0x69c01327, 0x09ca0055, 0x00000000}},  //   sinn_, _gome, লোবা,\n  { {0x6b9c014a, 0x3f91002d, 0x753b0026, 0x00000000}},  //   _yarg, kezu_, rcuz,\n  { {0x69c000b5, 0x6b9c11c7, 0x3a2d1328, 0x00000000}},  //   _zome, _xarg, _hiep_,\n  { {0xdb1c0181, 0x645b1329, 0x422602be, 0x00000000}},  //   _poré, ssui, лдов,\n  { {0xa06a012b, 0x9f4e0161, 0xcb12009b, 0x00000000}},  //   нама_, čník_, מלי_,\n  { {0x6fcb010f, 0xa91d0006, 0xd3780107, 0x00000000}},  //   _küch, _pažy, zići_,\n  { {0x3a2d00bb, 0x83350049, 0xdee60a85, 0x00000000}},  //   _liep_, _גאַס_, гоги,\n  { {0x2fc501e5, 0x00000000, 0x00000000, 0x00000000}},  //   ölga_,   ,   ,\n  { {0x6b9c0089, 0xa01b0010, 0x68fb006b, 0x00000000}},  //   _sarg, gtöb, _oxud,\n  { {0x6b9c006c, 0xb88600b9, 0x5baa132a, 0x00000000}},  // [22e0] _parg, _kníž, нкам_,\n  { {0x69c00038, 0x628a0009, 0xd37811af, 0x00000000}},  //   _some, _ypfo, tići_,\n  { {0x69c0132b, 0x68fb081d, 0xc33200b6, 0x00000000}},  //   _pome, _axud, צוא_,\n  { {0x6b9c0149, 0xd378016e, 0x9f580129, 0x00000000}},  //   _warg, rići_, forç_,\n  { {0x6b9c0a44, 0x17540827, 0x2d92011f, 0x00000000}},  //   _targ, авля, meye_,\n  { {0x6fcb001f, 0x69c00038, 0x78a20161, 0x00000000}},  //   _rück, _wome, rvov,\n  { {0x6442048c, 0x69c00036, 0xa2630082, 0x00000000}},  //   _stoi, _tome, _quố,\n  { {0x2d92132c, 0x7c2e132d, 0x20d70061, 0x00000000}},  //   neye_, _hibr, डनमध,\n  { {0xf7460069, 0x98a30069, 0x98760545, 0x00000000}},  //   _безо, _лите, _љубљ,\n  { {0x7c2e0066, 0x08c3013b, 0x2d920045, 0x00000000}},  //   _jibr, _убун, heye_,\n  { {0x8646132e, 0x2d92132c, 0x0bb700b3, 0x00000000}},  //   _снеж, keye_, אלים_,\n  { {0xf651026c, 0x6fcb01a2, 0x00000000, 0x00000000}},  //   _گئے_, _züch,   ,\n  { {0x7c2e002a, 0x2d920095, 0x3f9104eb, 0x00000000}},  //   _oibr, deye_, tezu_,\n  { {0x403400e2, 0xf651009e, 0x00000000, 0x00000000}},  //   серс, _دئے_,   ,\n  { {0x6298037e, 0x442e0912, 0x25af005b, 0x00000000}},  //   _usvo, _iif_, _yngl_,\n  { {0x7c2e002a, 0x442e00f8, 0x32090487, 0x00000000}},  //   _aibr, _hif_, _ukay_,\n  { {0x442e0f68, 0x3b550603, 0xdb6b0088, 0x00000000}},  // [22f0] _kif_, икар, ерел_,\n  { {0x3a2d00d9, 0x00000000, 0x00000000, 0x00000000}},  //   _siep_,   ,   ,\n  { {0x7c2e132f, 0x442e04a5, 0xfc3f000c, 0x00000000}},  //   _dibr, _mif_, _grín_,\n  { {0x442e0145, 0x2d920095, 0x6fcb01a2, 0x00000000}},  //   _lif_, ceye_, _süch,\n  { {0x6d4d1330, 0xbcfb009d, 0x442e06ed, 0x00000000}},  //   mbaa, _idéo, _oif_,\n  { {0xdcfd001e, 0xf771002c, 0x7c2e0007, 0x00000000}},  //   _lasī, زات_, _gibr,\n  { {0x45d50113, 0xd3780107, 0x3a2d0082, 0x00000000}},  //   ицит, niću_, _tiep_,\n  { {0x6d4d015c, 0xb88600b9, 0x442e1331, 0x00000000}},  //   nbaa, _sníž, _aif_,\n  { {0xe456007e, 0x851f006e, 0x442e032e, 0x00000000}},  //   ажы_, मेंट_, _bif_,\n  { {0x29f81332, 0x98170025, 0x78a90035, 0x00000000}},  //   nčan_, _إبرا, _irev,\n  { {0x442e1333, 0x629e0cce, 0x6d4d049b, 0x00000000}},  //   _dif_, _špor, kbaa,\n  { {0x78a91334, 0x10a6004d, 0x6d4d00bb, 0x00000000}},  //   _krev, аимн, jbaa,\n  { {0x442e0190, 0x2d920f5c, 0x6d4d0328, 0x00000000}},  //   _fif_, veye_, dbaa,\n  { {0x442e0365, 0xfe460264, 0x64491335, 0x00000000}},  //   _gif_, инго, mpei,\n  { {0xed5a0404, 0x2d92014a, 0x7c2e0173, 0x00000000}},  //   ков_, teye_, _ribr,\n  { {0x6d4d07a5, 0x64491336, 0x442e000a, 0x00000000}},  //   gbaa, opei, _zif_,\n  { {0xd00f026c, 0x2d92132c, 0x64491337, 0x00000000}},  // [2300] سلہ_, reye_, npei,\n  { {0x2d921338, 0xd3780107, 0x00000000, 0x00000000}},  //   seye_, biću_,   ,\n  { {0x7f5c0fdb, 0x78a91339, 0xfc3f008e, 0x00000000}},  //   marq, _arev, _frío_,\n  { {0x78a9133a, 0x22510161, 0x180e007d, 0x00000000}},  //   _brev, ázky_, ित्व_,\n  { {0x38600051, 0x913b0049, 0x78a9133b, 0x00000000}},  //   éir_, דענק, _crev,\n  { {0x78a90027, 0x7f5c06c2, 0xe66600ed, 0x00000000}},  //   _drev, narq, атио,\n  { {0x442e133c, 0x78a9133d, 0xd91002fd, 0x00000000}},  //   _rif_, _erev, _کیش_,\n  { {0x69d90bc6, 0x442e027b, 0x7dd8002a, 0x00000000}},  //   chwe, _sif_, _físe,\n  { {0x030b03d7, 0x2e3c000c, 0xd378016c, 0x00000000}},  //   _सुबह_, _líf_, ziću_,\n  { {0x66e60088, 0x2b5800d4, 0x442e000a, 0x00000000}},  //   _коза, _jerc_, _qif_,\n  { {0xe737007c, 0x2b580ba8, 0x442e009d, 0x00000000}},  //   _тех_, _merc_, _vif_,\n  { {0xd378037e, 0x9257007c, 0x9f8f013f, 0x00000000}},  //   viću_, шают_, _küç_,\n  { {0x9098046c, 0x92b60044, 0x7dd101bf, 0x00000000}},  //   авят_, ছনে_, _såso,\n  { {0xd378037e, 0xc8840477, 0x7f5c004a, 0x00000000}},  //   tiću_, mağı_, garq,\n  { {0x6d4d133e, 0x6e2f00f6, 0x628100d9, 0x00000000}},  //   tbaa, _picb, ctlo,\n  { {0xcdd8012b, 0x6d4d01d6, 0xdb1c00fa, 0x00000000}},  //   ању_, ubaa, _corí,\n  { {0xdce6038c, 0x6d4d00c7, 0xd3780107, 0x00000000}},  // [2310] _bakı, rbaa, siću_,\n  { {0x6d4d00c7, 0x6c6a00a1, 0x3ceb0061, 0x00000000}},  //   sbaa, اللہ_, _घेणे_,\n  { {0x6d4d00c7, 0xfc3f008e, 0x29f8133f, 0x00000000}},  //   pbaa, _trío_, rčan_,\n  { {0xf9930558, 0x7dd801dc, 0x64490052, 0x00000000}},  //   تبط_, _píse, ypei,\n  { {0x98a50920, 0xaf080167, 0xf7450b86, 0x00000000}},  //   силе, _مقیم_, бело,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x5a44007e, 0x00000000, 0x00000000, 0x00000000}},  //   _мэта,   ,   ,\n  { {0x78a91340, 0xdce80036, 0x29f800ca, 0x00000000}},  //   _trev, śląs, nčal_,\n  { {0xdce6011f, 0xcdb8009b, 0x6fcb0477, 0x00000000}},  //   _yakı, שפחה_, _hücu,\n  { {0xa3e103d7, 0xe299012b, 0x3cff013d, 0x00000000}},  //   नों_, гао_, _रखने_,\n  { {0x644907e6, 0x11d60025, 0x2d8b067f, 0x00000000}},  //   spei, متحد, _obce_,\n  { {0xc8840477, 0x9f510010, 0x64491341, 0x00000000}},  //   bağı_, kozó_, ppei,\n  { {0xc884005d, 0x7f5c0181, 0xd4690aed, 0x00000000}},  //   cağı_, tarq, _силе_,\n  { {0x66091342, 0xd91a01ce, 0x7dca000c, 0x00000000}},  //   loek, טורל, _lýst,\n  { {0x7f5c1343, 0x6fd00a5d, 0x00000000, 0x00000000}},  //   rarq, _häck,   ,\n  { {0x25bf0022, 0xdce6014a, 0xad9b000c, 0x00000000}},  //   njul_, _sakı, _ljúf,\n  { {0x2b580010, 0x5b36006d, 0x30860025, 0x00000000}},  // [2320] _perc_, معار, _الخف,\n  { {0x25bf00eb, 0x660900c7, 0x2f561344, 0x00000000}},  //   hjul_, hoek, _утис,\n  { {0x6fd00039, 0x6609002d, 0x4e1a0167, 0x00000000}},  //   _läck, koek, _متحد_,\n  { {0x200a1345, 0xa01b0cba, 0xc884019a, 0x00000000}},  //   lobi_, ntön, yağı_,\n  { {0x1cba0d0b, 0xdce6011f, 0x06e50055, 0x00000000}},  //   _صاحب_, _takı, _পুলি,\n  { {0x200a1346, 0x3a380065, 0x9ad605b8, 0x00000000}},  //   nobi_, _turp_, _любі,\n  { {0xe0df0197, 0x91fd0089, 0x00000000, 0x00000000}},  //   zzò_, nsāc,   ,\n  { {0x6fd003aa, 0xceb30104, 0xd6d90088, 0x00000000}},  //   _bäck, ליו_, шті_,\n  { {0xdb1c00d4, 0x656f0048, 0x00000000, 0x00000000}},  //   _horà, ócha,   ,\n  { {0x6fd00039, 0x249d000a, 0xc884019a, 0x00000000}},  //   _däck, _dswm_, rağı_,\n  { {0x660901b5, 0x51f90088, 0x91fd0089, 0x00000000}},  //   boek, иною_, krāt,\n  { {0x09ca0044, 0x00000000, 0x00000000, 0x00000000}},  //   লোরা,   ,   ,\n  { {0x63bc0538, 0x200a0239, 0x91fd0089, 0x00000000}},  //   örns, fobi_, drāt,\n  { {0x3fe70044, 0xe0df0026, 0x6574009e, 0x00000000}},  //   পক্ষ, rzò_, _ایکڑ_,\n  { {0xd35b01f8, 0xe2460d3a, 0x6fd001a2, 0x00000000}},  //   _גדול, _اختي, _mäch,\n  { {0x720700a1, 0x8e1501e1, 0x6fd0010f, 0x00000000}},  //   _دفعہ_, ідац, _läch,\n  { {0xf1f800a6, 0x71f8006d, 0x320b0036, 0x00000000}},  // [2330] _دعوت_, _دروس_, mocy_,\n  { {0x6fd0001f, 0x660902ae, 0x61ef060c, 0x00000000}},  //   _näch, zoek, licl,\n  { {0x6fb5007a, 0xad270123, 0xfbd00025, 0x00000000}},  //   _همکا, _گردو, رتك_,\n  { {0x7dd10018, 0x6fcb01df, 0x39150069, 0x00000000}},  //   _måsk, _vücu, омер,\n  { {0x7dca004f, 0x9ccb0147, 0x89340025, 0x00000000}},  //   _výst, _сына_, أعما,\n  { {0x6fd00039, 0x61ef12a0, 0x6d5f1347, 0x00000000}},  //   _räck, hicl, laqa,\n  { {0x7ac401e0, 0x6fd00210, 0x6609044a, 0x00000000}},  //   _есте, _säck, toek,\n  { {0x59f90057, 0xe61901f9, 0x3ebe0052, 0x00000000}},  //   _тебя_, јди_, ätti_,\n  { {0x4425001c, 0x22470093, 0x38600051, 0x00000000}},  //   tml_, _stnk_, áirt_,\n  { {0xdb1c1348, 0x66091349, 0x6498005e, 0x00000000}},  //   _horá, soek, стър_,\n  { {0xdb1c134a, 0x2bde0061, 0x2ca90443, 0x00000000}},  //   _korá, फोटा, hvad_,\n  { {0x6fd00039, 0x2ca900ea, 0x61ef0258, 0x00000000}},  //   _täck, kvad_, gicl,\n  { {0x200a0022, 0x3494134b, 0xdb1c0161, 0x00000000}},  //   tobi_, _нацр, _morá,\n  { {0x34b20a90, 0x2329134c, 0xbcfb00ea, 0x00000000}},  //   _آموز, _коли_, _idéh,\n  { {0x443f0983, 0x200a0020, 0x63a30197, 0x00000000}},  //   lqu_, robi_, _iann,\n  { {0x63a30198, 0xdd92004b, 0xa01b134d, 0x00000000}},  //   _hann, بور_, ltöl,\n  { {0x63a30836, 0x443f0066, 0x2f23009d, 0x00000000}},  // [2340] _kann, nqu_, tégé_,\n  { {0x63a3002b, 0x7bc7004a, 0x443f009d, 0x00000000}},  //   _jann, _coju, iqu_,\n  { {0x63a3009f, 0x3f9801d9, 0x5fb7009b, 0x00000000}},  //   _mann, meru_, _והיא_,\n  { {0x63a3134e, 0xdb1c0919, 0x6fd001a2, 0x00000000}},  //   _lann, _corá, _säch,\n  { {0x91a00011, 0x6d440a55, 0x00000000, 0x00000000}},  //   _chỉ_, mcia,   ,\n  { {0x6d440207, 0x466a01c0, 0x1ae601ee, 0x00000000}},  //   lcia, арим_, _догм,\n  { {0xd90d026c, 0xdb1c0051, 0x443f002b, 0x00000000}},  //   نیہ_, _forá, equ_,\n  { {0x6d44134f, 0x39420004, 0x63a301b5, 0x00000000}},  //   ncia, _üks_, _aann,\n  { {0x63a31350, 0x6d441351, 0x61ef01ee, 0x00000000}},  //   _bann, icia, vicl,\n  { {0x69c200c7, 0x63a300ab, 0x3f980166, 0x00000000}},  //   ljoe, _cann, jeru_,\n  { {0x61ef028a, 0x63a30383, 0x3f980ad8, 0x00000000}},  //   ticl, _dann, deru_,\n  { {0x260b0061, 0x63a30085, 0x00000000, 0x00000000}},  //   ावणी_, _eann,   ,\n  { {0x63a30a8e, 0x3f98002b, 0x61ef1352, 0x00000000}},  //   _fann, feru_, ricl,\n  { {0x65600b57, 0x80270025, 0x6d46101b, 0x00000000}},  //   lamh, ترجم, _afka,\n  { {0xbcfb0181, 0xfeb80014, 0x24400082, 0x00000000}},  //   _idéi, يافت_, _hòm_,\n  { {0x24400263, 0x65600051, 0x63a309e5, 0x00000000}},  //   _kòm_, namh, _zann,\n  { {0x61ed1353, 0x3f981354, 0x63a3009d, 0x00000000}},  // [2350] _imal, beru_, _yann,\n  { {0xdb1c0010, 0x7dd8000c, 0x2ca9010e, 0x00000000}},  //   _sorá, _vísa, rvad_,\n  { {0xdd910054, 0x5a350517, 0x61ed0059, 0x00000000}},  //   _كود_, чнет, _kmal,\n  { {0x6d440198, 0xfe9a0476, 0xf1bf12c5, 0x00000000}},  //   ccia, _פירמ, zmán_,\n  { {0x6d5d001e, 0x24400173, 0x00000000, 0x00000000}},  //   _iesa, _nòm_,   ,\n  { {0x6d5d038c, 0x67d4004d, 0x60c00933, 0x00000000}},  //   _hesa, мочу, ämmi,\n  { {0x63a30fe9, 0x6d5d0db4, 0x61ed003c, 0x00000000}},  //   _rann, _kesa, _omal,\n  { {0x63a303fa, 0xfb34008b, 0x6d5d0091, 0x00000000}},  //   _sann, _інтэ, _jesa,\n  { {0x6d5d1355, 0x63a30004, 0xb4d5007d, 0x00000000}},  //   _mesa, _pann, सने_,\n  { {0x61ed0127, 0x6d5d03fa, 0x443f0066, 0x00000000}},  //   _amal, _lesa, rqu_,\n  { {0x63a30047, 0x443f028c, 0x3f980062, 0x00000000}},  //   _vann, squ_, veru_,\n  { {0x63a30100, 0xdb1c0018, 0x24400263, 0x00000000}},  //   _wann, _foræ, _fòm_,\n  { {0x63a31356, 0xe20b009f, 0xe4490025, 0x00000000}},  //   _tann, _slóð_, _التى_,\n  { {0xf8a5007a, 0x0454026c, 0x69db1357, 0x00000000}},  //   _یک_, _آئند, _llue,\n  { {0x6d5d0149, 0x7c3d1358, 0x443d0016, 0x00000000}},  //   _besa, _ausr, _huw_,\n  { {0xf06604f9, 0xf1bf000c, 0x3f980145, 0x00000000}},  //   _екип, nmál_, seru_,\n  { {0x7c350061, 0x3f980066, 0x3ea10065, 0x00000000}},  // [2360] _bizr, peru_, _esht_,\n  { {0x6d440198, 0x69db021e, 0x00000000, 0x00000000}},  //   scia, _alue,   ,\n  { {0xcf57009b, 0x291f0bb2, 0x69c90288, 0x00000000}},  //   _מבית_, _azua_, _boee,\n  { {0x6d5d1359, 0x69db0133, 0x2018000c, 0x00000000}},  //   _gesa, _clue, llri_,\n  { {0x2d820039, 0x27ec0022, 0x69c201c3, 0x00000000}},  //   _icke_, _pmdn_, rjoe,\n  { {0x569401be, 0x2440135a, 0x69db135b, 0x00000000}},  //   дакт, _ròm_, _elue,\n  { {0x69db01e3, 0x6d5d0541, 0x244001aa, 0x00000000}},  //   _flue, _yesa, _sòm_,\n  { {0xe9a3007e, 0x75e6007e, 0x7c3d003f, 0x00000000}},  //   _пасп, яўле, _yusr,\n  { {0x281600a1, 0xdb1c005a, 0x6560135c, 0x00000000}},  //   _فورس, _borç, ramh,\n  { {0x46a60121, 0x61ed0866, 0x6560135d, 0x00000000}},  //   _назв, _smal, samh,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x3946029d, 0x7ae10010, 0x00000000, 0x00000000}},  //   ncos_, _ülte,   ,\n  { {0x3866135e, 0xdb1c09f7, 0x7dd800b9, 0x00000000}},  //   nsor_, _forç, _písn,\n  { {0x9257007a, 0x6d5d135f, 0xa01b000c, 0x00000000}},  //   _کشور_, _sesa, mtök,\n  { {0x6d5d020c, 0x7c3d0091, 0xdb050065, 0x00000000}},  //   _pesa, _susr, rdhë,\n  { {0x61ed011c, 0x42fb009b, 0x7c3d1360, 0x00000000}},  //   _umal, _להוס, _pusr,\n  { {0x6d5d00ea, 0xa01b1361, 0x4c941362, 0x00000000}},  // [2370] _vesa, ntök, нитс,\n  { {0x6e99005e, 0x39461363, 0x2d820c92, 0x00000000}},  //   _двор_, ecos_, _ecke_,\n  { {0x6d5d01a3, 0xdb58007c, 0x61fd0239, 0x00000000}},  //   _tesa, яют_, onsl,\n  { {0x61fd009f, 0x973c012d, 0xc333009b, 0x00000000}},  //   nnsl, _baćo, גוע_,\n  { {0x07a51364, 0xe73900e2, 0x61fd0332, 0x00000000}},  //   далн, оел_, insl,\n  { {0x945d0036, 0x3946004a, 0x27c701ab, 0x00000000}},  //   zyńs, acos_, ящег,\n  { {0x569200ec, 0x6446000c, 0x25a60048, 0x00000000}},  //   вајт, íkin, _baol_,\n  { {0x394610c0, 0x63b8000a, 0x25a60048, 0x00000000}},  //   ccos_, _anvn, _caol_,\n  { {0xf1bf0daf, 0xdb1c00c4, 0xfc3f00f6, 0x00000000}},  //   rmál_, _porç, _juí_,\n  { {0xf1bf1365, 0x395f00bb, 0xa01b00b0, 0x00000000}},  //   smál_, _heus_, stöj,\n  { {0xfc3f0051, 0x395f00b5, 0x9f5101aa, 0x00000000}},  //   _luí_, _keus_, mizè_,\n  { {0x25a60048, 0x67210166, 0x644b012d, 0x00000000}},  //   _gaol_, _izlj, _ttgi,\n  { {0x395f09f7, 0x644b067e, 0xdb1c0ddb, 0x00000000}},  //   _meus_, _utgi, _torç,\n  { {0x61fd00bb, 0x7dd80142, 0x00000000, 0x00000000}},  //   ansl, _píso,   ,\n  { {0x628800bb, 0xe7e50316, 0x00000000, 0x00000000}},  //   ctdo, _कतना_,   ,\n  { {0x26130181, 0x395f1366, 0xa6af0044, 0x00000000}},  //   mãos_, _neus_, _কথাট,\n  { {0x39a6010a, 0xfc3f0051, 0x9f9400b0, 0x00000000}},  // [2380] _jūsų_, _cuí_, _pää_,\n  { {0x39a6010a, 0x6721016e, 0xafdb1367, 0x00000000}},  //   _mūsų_, _ozlj, spør,\n  { {0x776300f6, 0xa5bd007f, 0x00000000, 0x00000000}},  //   danx, rmųj,   ,\n  { {0xbcfb00f6, 0xfc3f008e, 0x395f00fa, 0x00000000}},  //   _adéu, _fuí_, _ceus_,\n  { {0x5fd203d7, 0x395f02d5, 0x3946029d, 0x00000000}},  //   _हवाल, _deus_, rcos_,\n  { {0x3946049a, 0x38660061, 0x25a61368, 0x00000000}},  //   scos_, rsor_, _saol_,\n  { {0xc7b8001d, 0x69d80065, 0xdb1c0039, 0x00000000}},  //   _vnđ_, ëves, _borå,\n  { {0x746a0373, 0x69d80089, 0x2d800020, 0x00000000}},  //   оров_, īves, ngie_,\n  { {0xd49a0088, 0x00000000, 0x00000000, 0x00000000}},  //   іри_,   ,   ,\n  { {0x1b210055, 0xd3700014, 0xa01b01e5, 0x00000000}},  //   _বলতে_, دهد_, rtök,\n  { {0xc7b300b3, 0x26130181, 0xdb1c0637, 0x00000000}},  //   _שבע_, gãos_, _forå,\n  { {0x22ac00b9, 0xa01b000c, 0x00000000, 0x00000000}},  //   _věk_, ptök,   ,\n  { {0x7dd10073, 0x61fd032e, 0x2d800145, 0x00000000}},  //   _måst, rnsl, dgie_,\n  { {0x7522002d, 0x2d8001c3, 0x00000000, 0x00000000}},  //   _izoz, egie_,   ,\n  { {0x40340594, 0xfc3f0051, 0xa19502dc, 0x00000000}},  //   терс, _suí_, _зайч,\n  { {0x2d800007, 0x442c00bb, 0x660200f6, 0x00000000}},  //   ggie_, lmd_, _jjok,\n  { {0x395f0129, 0xfc3f0011, 0x2b4a0333, 0x00000000}},  // [2390] _reus_, _quí_, _bfbc_,\n  { {0x395f1369, 0xd8380cce, 0x7e7c002d, 0x00000000}},  //   _seus_, _nič_, burp,\n  { {0xe1ff008e, 0x395f0129, 0x7dd10039, 0x00000000}},  //   onó_, _peus_, _båst,\n  { {0x20110a6e, 0x9f58008e, 0x1dd30316, 0x00000000}},  //   lozi_, boró_, _सवित,\n  { {0x7b670057, 0x6e2d0946, 0x3869002a, 0x00000000}},  //   _отве, mmab, éar_,\n  { {0x48e00044, 0x660200b0, 0x442c08d9, 0x00000000}},  //   বপূর, _ajok, jmd_,\n  { {0x395f0a06, 0xe73600c0, 0xd83801ca, 0x00000000}},  //   _teus_, неш_, _dič_,\n  { {0xdcef0477, 0x442c01b5, 0xd5b10137, 0x00000000}},  //   _hacı, emd_, افظ_,\n  { {0x6602136a, 0x3160136b, 0x20110cd1, 0x00000000}},  //   _djok, _reiz_, kozi_,\n  { {0x69d90116, 0x75220925, 0xe1900082, 0x00000000}},  //   lkwe, _dzoz, _cẳng_,\n  { {0xd24e089d, 0x7dd810af, 0xb81b013d, 0x00000000}},  //   ینی_, _sísm, _पीएम_,\n  { {0x69d9002b, 0x66020065, 0x7dd80161, 0x00000000}},  //   nkwe, _gjok, _písm,\n  { {0xa3d50242, 0x7641011c, 0xf9da0049, 0x00000000}},  //   _подч, _huly, פֿטל,\n  { {0x20110207, 0x661b003c, 0x2ca00009, 0x00000000}},  //   gozi_, lluk, vwid_,\n  { {0x4427001f, 0xdee60407, 0xfc3f00d4, 0x00000000}},  //   _ihn_, хови, _orís_,\n  { {0xd24e0025, 0x7641023a, 0x6da3003b, 0x00000000}},  //   _اني_, _muly, лиса,\n  { {0x2011136c, 0xfce3012c, 0x92170049, 0x00000000}},  // [23a0] bozi_, гото, _אַזױ_,\n  { {0xfc3f002a, 0x26e50055, 0xbea60545, 0x00000000}},  //   _arís_, _কখনো_, _заок,\n  { {0x2f5b0452, 0x7dd103bd, 0x44270022, 0x00000000}},  //   _מדינ, _påst, _mhn_,\n  { {0xceb30104, 0xf8660256, 0x69d90058, 0x00000000}},  //   _עיר_, евдо, gkwe,\n  { {0xd838016c, 0x661b136d, 0x2365136e, 0x00000000}},  //   _pič_, dluk, kalj_,\n  { {0x442701d6, 0x6602136f, 0xfb5600a2, 0x00000000}},  //   _nhn_, _sjok, _سپرد,\n  { {0xfc0301bd, 0x09e601fb, 0x69961370, 0x00000000}},  //   _спро, _зовн, _прах,\n  { {0x69d90f10, 0x7bce006c, 0x4427016b, 0x00000000}},  //   ckwe, _hobu, _ahn_,\n  { {0x7bce1371, 0x09e30b87, 0x44271372, 0x00000000}},  //   _kobu, _сотн, _bhn_,\n  { {0x7bce001a, 0x44271373, 0x00000000, 0x00000000}},  //   _jobu, _chn_,   ,\n  { {0x442c00b5, 0x2011089f, 0x45e40011, 0x00000000}},  //   rmd_, vozi_, _đượ,\n  { {0x79820036, 0x7bce0145, 0x661b016c, 0x00000000}},  //   ngow, _lobu, cluk,\n  { {0x23650107, 0x78a20022, 0xe3b20063, 0x00000000}},  //   balj_, nwov, _مرغ_,\n  { {0x644f1374, 0xa3d70061, 0x9f4a00fa, 0x00000000}},  //   ície, _सवय_, tibá_,\n  { {0x20111375, 0xe28f0025, 0x6e940a1e, 0x00000000}},  //   rozi_, _هذي_, лиру,\n  { {0x63aa03da, 0x20110009, 0x51871376, 0x00000000}},  //   _hafn, sozi_, _чука,\n  { {0x7dd81377, 0x6e2d008e, 0x20111378, 0x00000000}},  // [23b0] _získ, rmab, pozi_,\n  { {0x63aa009f, 0x7bce063c, 0x64420197, 0x00000000}},  //   _jafn, _cobu, _muoi,\n  { {0xa03600b6, 0x9f8f006c, 0xbb840025, 0x00000000}},  //   _שאתה_, _müü_, المي,\n  { {0x9f58009f, 0xdb0e00c4, 0x2b4d012d, 0x00000000}},  //   lorð_, _robô, _đecu_,\n  { {0x69d90116, 0x661b0107, 0x99140088, 0x00000000}},  //   rkwe, vluk, льші,\n  { {0x62981379, 0x63aa009f, 0x3f83000c, 0x00000000}},  //   _opvo, _nafn, ngju_,\n  { {0x67d200e2, 0x00000000, 0x00000000, 0x00000000}},  //   роју,   ,   ,\n  { {0xceb4061e, 0xf9930879, 0x442702d4, 0x00000000}},  //   ריק_, _حبس_, _shn_,\n  { {0x661b020c, 0x44270ec1, 0x6442137a, 0x00000000}},  //   rluk, _phn_, _cuoi,\n  { {0x9aa4026c, 0x7dd80802, 0x764100e0, 0x00000000}},  //   _جمہو, _písk, _tuly,\n  { {0x386d137b, 0xd6db0057, 0xb17b05b7, 0x00000000}},  //   _hver_, _эта_, rhån,\n  { {0x9998001e, 0x2365016c, 0xa06a137c, 0x00000000}},  //   _kurš_, salj_, мама_,\n  { {0x442704cb, 0xd1320025, 0x91a00082, 0x00000000}},  //   _thn_, شمس_, _chí_,\n  { {0xb4bf001c, 0xb4cd0061, 0xa0a300ed, 0x00000000}},  //   ीही_, रही_, јард,\n  { {0x248d0010, 0x91a00011, 0x00000000, 0x00000000}},  //   ltem_, _thì_,   ,\n  { {0x386d0f12, 0xbcfb009d, 0x248d00b4, 0x00000000}},  //   _over_, _adéq, otem_,\n  { {0x248d0d9f, 0x9f58000c, 0xe7f2013d, 0x00000000}},  // [23c0] ntem_, borð_, _अगला_,\n  { {0xeafa0647, 0x7bce137d, 0x00000000, 0x00000000}},  //   ورات_, _qobu,   ,\n  { {0x386d0207, 0xed5a0088, 0x6f790049, 0x00000000}},  //   _aver_, _оон_, _אָרג,\n  { {0xe9da0152, 0x248d137e, 0xc33200a0, 0x00000000}},  //   ьке_, ktem_, בוב_,\n  { {0xe894085f, 0x7bce0006, 0x79820036, 0x00000000}},  //   уаль, _tobu, rgow,\n  { {0x248d137f, 0x79821380, 0xd823004d, 0x00000000}},  //   dtem_, sgow, адчи,\n  { {0x386d1381, 0x00000000, 0x00000000, 0x00000000}},  //   _ever_,   ,   ,\n  { {0x63aa000c, 0xa01b0010, 0xe60f0439, 0x00000000}},  //   _safn, ltöt, يشي_,\n  { {0x6442009d, 0x7c3c1382, 0x248d02fa, 0x00000000}},  //   _quoi, _kirr, gtem_,\n  { {0xa8570097, 0x7c3c01d5, 0x32020027, 0x00000000}},  //   _סיבה_, _jirr, enky_,\n  { {0x51f901ff, 0x7c3c00ab, 0xe81b013d, 0x00000000}},  //   енню_, _mirr, _पीटा_,\n  { {0x7dd81383, 0xcb13019b, 0x64420082, 0x00000000}},  //   _físi, ילת_, _tuoi,\n  { {0x6abf0204, 0x248d00d4, 0xfc3f06c2, 0x00000000}},  //   _एप्र, ctem_, _asín_,\n  { {0x7c3c002b, 0xdb1c0190, 0x2005006c, 0x00000000}},  //   _nirr, _forø, õli_,\n  { {0x9294008b, 0x9f58000c, 0x00000000, 0x00000000}},  //   _сайц, rorð_,   ,\n  { {0x32530265, 0x1b210044, 0x00000000, 0x00000000}},  //   _твър, _বললে_,   ,\n  { {0x7c3c0a19, 0xbddb009d, 0xdb050051, 0x00000000}},  // [23d0] _birr, _lièg, rdhí,\n  { {0x7c3c00ea, 0x7c8401fc, 0xe7bd0044, 0x00000000}},  //   _cirr, јуте, _অত্য,\n  { {0x7c3c01f3, 0x248d0010, 0x25ad00f6, 0x00000000}},  //   _dirr, ztem_, ydel_,\n  { {0x443c1384, 0xe7e5007d, 0x973c0243, 0x00000000}},  //   _liv_, कसभा_, _gaći,\n  { {0x67d501bd, 0x00000000, 0x00000000, 0x00000000}},  //   лоду,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6e3d0337, 0xb17b00f8, 0x00000000, 0x00000000}},  //   _kisb, thål,   ,\n  { {0x248d0047, 0x06960054, 0x26c90091, 0x00000000}},  //   ttem_, انية_, ćao_,\n  { {0x25ad00eb, 0x6e3d018d, 0xb17b0039, 0x00000000}},  //   rdel_, _misb, rhål,\n  { {0x6e3d0181, 0x443c06f9, 0x7dd8009f, 0x00000000}},  //   _lisb, _civ_, _vísi,\n  { {0x443c0365, 0x2003092f, 0x7d1d05cc, 0x00000000}},  //   _div_, dnji_, _lyss,\n  { {0x64b5002c, 0x6e3d1385, 0x5ed70044, 0x00000000}},  //   _محتر, _nisb, _ডেভে,\n  { {0x7d1d01d6, 0x79891386, 0x443c1387, 0x00000000}},  //   _nyss, _mcew, _fiv_,\n  { {0x443c0030, 0x75fe0089, 0x9f580023, 0x00000000}},  //   _giv_, vīzi, mirë_,\n  { {0x6e3d1388, 0xf3f00025, 0xdee3092b, 0x00000000}},  //   _bisb, _بأن_, бори,\n  { {0x443c0107, 0xdca6003b, 0x7c3c006b, 0x00000000}},  //   _ziv_, лаби, _sirr,\n  { {0x7c3c000c, 0x61e40eb0, 0x00000000, 0x00000000}},  // [23e0] _pirr, _ilil,   ,\n  { {0xfc3f0051, 0x7d1d0190, 0x6e3d01a2, 0x00000000}},  //   _tsín_, _dyss, _eisb,\n  { {0x62810161, 0x7c3c00b0, 0x78a91389, 0x00000000}},  //   nulo, _virr, _asev,\n  { {0x6d4d001c, 0x7cda0089, 0x8e7b0049, 0x00000000}},  //   ccaa, _pārā, _אנטה,\n  { {0xd91702f0, 0x7c3c01d5, 0x63a1138a, 0x00000000}},  //   льш_, _tirr, keln,\n  { {0x6281011c, 0xbddb009d, 0x61e400f6, 0x00000000}},  //   kulo, _pièg, _llil,\n  { {0x63a107e4, 0x1ae6007c, 0x443c00f8, 0x00000000}},  //   deln, _совм, _riv_,\n  { {0x6281138b, 0xa01b0039, 0x45d4138c, 0x00000000}},  //   dulo, ntör, роис,\n  { {0x6449001c, 0x69c00211, 0xd91000d3, 0x00000000}},  //   gqei, _inme, _بیش_,\n  { {0x61e40020, 0x27f8000c, 0x63a10c75, 0x00000000}},  //   _alil, _örn_, geln,\n  { {0x443c0263, 0xa01b138d, 0x62810395, 0x00000000}},  //   _viv_, ktör, gulo,\n  { {0x15461364, 0xa01b00b0, 0x31c701a4, 0x00000000}},  //   _седм, ytös, усов,\n  { {0x20030091, 0x6e3d138e, 0x00000000, 0x00000000}},  //   tnji_, _risb,   ,\n  { {0x6281011c, 0x63a10107, 0xd7c70061, 0x00000000}},  //   bulo, celn, लायच,\n  { {0x6d4d001c, 0x62810219, 0x539b00b6, 0x00000000}},  //   tcaa, culo, _ניהו,\n  { {0x2003037e, 0x5d55026b, 0x7d1d043a, 0x00000000}},  //   snji_, ркат, _pyss,\n  { {0x20030c0a, 0x8f550014, 0x6e3d138f, 0x00000000}},  // [23f0] pnji_, _پنجش, _visb,\n  { {0x69c01390, 0x21290180, 0x6d4d00bb, 0x00000000}},  //   _anme, _izah_, scaa,\n  { {0x6e3d0066, 0xa01b00b0, 0x61f6005b, 0x00000000}},  //   _tisb, stös, _ymyl,\n  { {0x63a10036, 0xdb07000c, 0x6e3d01c3, 0x00000000}},  //   zeln, _snjó, _uisb,\n  { {0x79c90123, 0x62810032, 0xad9b000c, 0x00000000}},  //   _یوسف_, zulo, _ljúk,\n  { {0x69c01391, 0x2d84014a, 0x24491392, 0x00000000}},  //   _enme, _ömer_, _rúm_,\n  { {0x0f58009b, 0xbddb009d, 0x63a11183, 0x00000000}},  //   ניהם_, _tièd, veln,\n  { {0x660d0746, 0x9f580065, 0x0495007e, 0x00000000}},  //   čako, tirë_, ароў,\n  { {0x63a101c8, 0xa78702fd, 0x78a9012d, 0x00000000}},  //   teln, _مشاو, _usev,\n  { {0x6281006a, 0x66190093, 0x9f580023, 0x00000000}},  //   tulo, _wkwk, rirë_,\n  { {0xdce40006, 0x9f580065, 0x63a110fa, 0x00000000}},  //   vaič, sirë_, reln,\n  { {0x63a10235, 0xdb07093f, 0xb495003b, 0x00000000}},  //   seln, _nají, _видљ,\n  { {0x7dd80224, 0x63a105d2, 0x3d04013d, 0x00000000}},  //   _míst, peln, _रखें_,\n  { {0x6281011c, 0x7dd804bb, 0xdff5007e, 0x00000000}},  //   pulo, _líst, бясь,\n  { {0x316b0046, 0xdb07004a, 0x00000000, 0x00000000}},  //   bacz_, _bají,   ,\n  { {0x61e40503, 0x3a2d0082, 0x00000000, 0x00000000}},  //   _ulil, _nhep_,   ,\n\n  { {0xab660a27, 0x22470066, 0xa01b1393, 0x00000000}},  // [2400] ивал, _hunk_, rtör,\n  { {0x8b26007e, 0x973c016c, 0xfbdf0007, 0x00000000}},  //   адзе, _zaću, _stêr_,\n  { {0x7bde01d6, 0x22470133, 0xa01b1394, 0x00000000}},  //   rkpu, _junk_, ptör,\n  { {0x201804b4, 0xf2960049, 0x22470190, 0x00000000}},  //   lori_, יכער_, _munk_,\n  { {0xc7c600ed, 0x69c00011, 0x9f510181, 0x00000000}},  //   иски, _vnme, lizá_,\n  { {0x20181395, 0xdb070224, 0x2240006c, 0x00000000}},  //   nori_, _zají, _liik_,\n  { {0xb76501fb, 0xa5f800ed, 0xf77200a1, 0x00000000}},  //   стій, леку_, ماں_,\n  { {0xd5b70604, 0x2018018e, 0x3a3f0082, 0x00000000}},  //   ась_, hori_, _giup_,\n  { {0xad9b009f, 0x20180010, 0x236702d0, 0x00000000}},  //   _sjúk, kori_, _benj_,\n  { {0x9f58004a, 0xf1bf0010, 0xf7430900, 0x00000000}},  //   biré_, ymás_, _дефо,\n  { {0xa6ca0054, 0x20180617, 0x0bb7009b, 0x00000000}},  //   _جوال_, dori_, בלים_,\n  { {0x22470093, 0xdb1c0489, 0x7dd81396, 0x00000000}},  //   _dunk_, _horó, _míss,\n  { {0x2bc90164, 0x2018005b, 0x7648011c, 0x00000000}},  //   रामा, fori_, _hudy,\n  { {0x224706f8, 0xb7f8007d, 0x7a23006c, 0x00000000}},  //   _funk_, ्चिम_, võtm,\n  { {0x224701f3, 0x623500e3, 0xdb1c02a0, 0x00000000}},  //   _gunk_, _леку, _moró,\n  { {0x5d78007c, 0x236700e7, 0xfe79013e, 0x00000000}},  //   ийся_, _zenj_, čů_,\n  { {0x61fd0119, 0x40950025, 0x20180091, 0x00000000}},  // [2410] misl, _الخر, bori_,\n  { {0x61fd0890, 0x20180617, 0x3a3f0093, 0x00000000}},  //   lisl, cori_, _siup_,\n  { {0x2bc90164, 0xdb0e0173, 0x2ac7003b, 0x00000000}},  //   राबा, _jabè, шљав,\n  { {0x61fd0142, 0x29d70279, 0x9f58004a, 0x00000000}},  //   nisl, _açar_, viré_,\n  { {0xa8a7007c, 0x76480036, 0xdb0e0e6d, 0x00000000}},  //   ррек, _audy, _labè,\n  { {0xf7710464, 0x76480036, 0xab8400d7, 0x00000000}},  //   سات_, _budy, _муск,\n  { {0x61fd01e5, 0x2ca90016, 0x9557009e, 0x00000000}},  //   kisl, lwad_, لیاء_,\n  { {0x61fd1397, 0x644f1398, 0x2d8900e7, 0x00000000}},  //   jisl, ício, ngae_,\n  { {0x61fd1399, 0x2240006c, 0x201801aa, 0x00000000}},  //   disl, _riik_, yori_,\n  { {0x53c90175, 0x2247016e, 0x60dd01d6, 0x00000000}},  //   угом_, _punk_, dysm,\n  { {0x2018037a, 0x7a23006c, 0x442e139a, 0x00000000}},  //   vori_, võtj, _dhf_,\n  { {0x442e000c, 0x78bb139b, 0x2ca9000a, 0x00000000}},  //   _ehf_, _kruv, kwad_,\n  { {0x2018139c, 0x63c200b9, 0x442e0173, 0x00000000}},  //   tori_, ávní, _fhf_,\n  { {0xd91a009b, 0xe8df0011, 0x90d5007e, 0x00000000}},  //   רושל, _ngọn_, іцяч,\n  { {0x20180747, 0xc2550151, 0xdee30072, 0x00000000}},  //   rori_, _اختت, пори,\n  { {0xfbdf001d, 0x22910a50, 0xdb1c01a2, 0x00000000}},  //   _quên_, mák_, _vorü,\n  { {0xbddb00f4, 0x7bd5014a, 0x2291139d, 0x00000000}},  // [2420] _sièc, _bozu, lák_,\n  { {0xbddb028c, 0x9f860088, 0x6faa012b, 0x00000000}},  //   _pièc, _угод, _свог_,\n  { {0xfe720379, 0x6c330025, 0x7bd5002d, 0x00000000}},  //   _عدد_, أفلا, _dozu,\n  { {0xed5a005e, 0x00000000, 0x00000000, 0x00000000}},  //   _щом_,   ,   ,\n  { {0xdb1c139e, 0x22b70082, 0x2291139f, 0x00000000}},  //   _poró, _lăk_, hák_,\n  { {0x6e2401e5, 0xa09b00a3, 0x61fd016c, 0x00000000}},  //   llib, ריסט, zisl,\n  { {0x2291134a, 0x3eb800ca, 0x1be700e2, 0x00000000}},  //   ják_, nvrt_, _удри_,\n  { {0x545401f9, 0x61fd049a, 0x6e240058, 0x00000000}},  //   овит, xisl, nlib,\n  { {0x61fd0428, 0x78bb0479, 0x92a80036, 0x00000000}},  //   visl, _gruv, _małż,\n  { {0xb27413a0, 0x42740364, 0x61fd0016, 0x00000000}},  //   олош, огос, wisl,\n  { {0x61fd13a1, 0x17570104, 0xdb9b0097, 0x00000000}},  //   tisl, _הסבר_, נסטר,\n  { {0xd46a01f9, 0x9293007e, 0x6446000c, 0x00000000}},  //   _биде_, чаюц, íkis,\n  { {0x6e2413a2, 0x3f98002b, 0x61fd13a3, 0x00000000}},  //   dlib, ffru_, risl,\n  { {0x61fd13a4, 0x229113a5, 0x60dd0943, 0x00000000}},  //   sisl, bák_, rysm,\n  { {0x7bd513a6, 0x61fd00ca, 0x8c000044, 0x00000000}},  //   _rozu, pisl, ্তান_,\n  { {0xbcfb0047, 0x6e2413a7, 0x4cd10044, 0x00000000}},  //   _idéz, glib, _সেগু,\n  { {0x7bd5006b, 0xe1ff0efe, 0x76420d16, 0x00000000}},  // [2430] _pozu, mió_, _mioy,\n  { {0xe1ff13a8, 0x6aae0009, 0x2bc901f5, 0x00000000}},  //   lió_, _bsbf, राधा,\n  { {0x6e2413a9, 0x7bd5012d, 0x00000000, 0x00000000}},  //   blib, _vozu,   ,\n  { {0xe1ff0129, 0x3ebe0737, 0x6d460093, 0x00000000}},  //   nió_, ætte_, _ggka,\n  { {0xeab000a1, 0x00000000, 0x00000000, 0x00000000}},  //   وٹے_,   ,   ,\n  { {0x22910010, 0xd2460379, 0x00000000, 0x00000000}},  //   yák_, _ين_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x91a90011, 0x229113aa, 0x00000000, 0x00000000}},  //   _nhà_, vák_,   ,\n  { {0xe1ff13ab, 0xb4e3006e, 0xa509005e, 0x00000000}},  //   dió_, नने_, репа_,\n  { {0x229113a5, 0xdb0e13ac, 0xe2910025, 0x00000000}},  //   ták_, _sabé, وذج_,\n  { {0xd5ae007a, 0xe2990098, 0x645b04fd, 0x00000000}},  //   رفی_, шан_, spui,\n  { {0xe1ff13ad, 0x229113ae, 0x36340025, 0x00000000}},  //   gió_, rák_, _فرنس,\n  { {0x2291139d, 0x661b0052, 0x601b0035, 0x00000000}},  //   sák_, mouk, tîmp,\n  { {0xa2e5004c, 0x661b13af, 0x64590045, 0x00000000}},  //   _молд, louk, _itwi,\n  { {0x7f430e09, 0xe1ff0211, 0x6609000b, 0x00000000}},  //   держ, bió_, onek,\n  { {0xe1ff13b0, 0x6609055f, 0x644b0061, 0x00000000}},  //   ció_, nnek, _kugi,\n  { {0x656b0047, 0x644313b1, 0x6e2404cb, 0x00000000}},  // [2440] _megh, _kini, rlib,\n  { {0x9f58002a, 0xdb070047, 0x644b022b, 0x00000000}},  //   oirí_, _sajá, _mugi,\n  { {0x442513b2, 0x9d4600da, 0x661b13b3, 0x00000000}},  //   ill_, _менд, kouk,\n  { {0xa9260200, 0x18a60088, 0x661b00b0, 0x00000000}},  //   одел, жадм, jouk,\n  { {0x9f43000c, 0xdce60087, 0x644b13b4, 0x00000000}},  //   mhjá_, _kekč, _nugi,\n  { {0x64430036, 0x6609002d, 0xdb1c000c, 0x00000000}},  //   _nini, enek, _forð,\n  { {0x644b010a, 0x656b0026, 0x98a30006, 0x00000000}},  //   _augi, _begh, _ąją_,\n  { {0xe1ff0129, 0xd49a00aa, 0xd5ba0783, 0x00000000}},  //   xió_, аро_, рск_,\n  { {0x6443006a, 0xe1ff13b5, 0x644b13b6, 0x00000000}},  //   _bini, vió_, _cugi,\n  { {0x986800a1, 0xa2f40088, 0x644b0091, 0x00000000}},  //   _نیچے_, зпоч, _dugi,\n  { {0xe1ff0211, 0xe3b8014a, 0x661b0341, 0x00000000}},  //   tió_, llık_, bouk,\n  { {0x64430ea0, 0x644b03d1, 0x3a260253, 0x00000000}},  //   _eini, _fugi, nlop_,\n  { {0xe1ff0211, 0x644306da, 0xe3b8014a, 0x00000000}},  //   rió_, _fini, nlık_,\n  { {0xd2500054, 0xe1ff04bd, 0x6443011c, 0x00000000}},  //   _كنت_, sió_, _gini,\n  { {0x3a2613b7, 0x2ee5000c, 0x2bc90204, 0x00000000}},  //   klop_, álf_, रासा,\n  { {0x63a813b8, 0x660013b9, 0x62880016, 0x00000000}},  //   ledn, nimk, mudo,\n  { {0x62880219, 0x7dd8008e, 0x201a000c, 0x00000000}},  // [2450] ludo, _vísp, ófið_,\n  { {0x644313ba, 0x660d0087, 0x2ca20022, 0x00000000}},  //   _xini, čaki, _dpkd_,\n  { {0x660013bb, 0x660913bc, 0x00000000, 0x00000000}},  //   kimk, ynek,   ,\n  { {0xda7801ff, 0x660000b9, 0x63a80146, 0x00000000}},  //   іях_, jimk, hedn,\n  { {0x442507b5, 0x998d0027, 0xad9b0010, 0x00000000}},  //   yll_, _tiež_, _amúg,\n  { {0x63a80119, 0x644b13bd, 0x656b0197, 0x00000000}},  //   jedn, _rugi, _segh,\n  { {0xfbd200b6, 0x644b13be, 0x64430065, 0x00000000}},  //   _אתם_, _sugi, _rini,\n  { {0x6443006a, 0x644b13bf, 0x3a2600f6, 0x00000000}},  //   _sini, _pugi, clop_,\n  { {0x644313c0, 0x656b0e66, 0x63a813c1, 0x00000000}},  //   _pini, _vegh, fedn,\n  { {0x656b0168, 0x661b000a, 0x6609007f, 0x00000000}},  //   _wegh, souk, snek,\n  { {0x6443000c, 0xf0890097, 0x4425005b, 0x00000000}},  //   _vini, _תנ_, rll_,\n  { {0x644b006c, 0x644300b4, 0xe2961280, 0x00000000}},  //   _tugi, _wini, чаю_,\n  { {0x6443006a, 0x63a8003b, 0x7bc700b5, 0x00000000}},  //   _tini, bedn, _onju,\n  { {0x628813c2, 0xdfd205f3, 0x63a80142, 0x00000000}},  //   budo, ريز_, cedn,\n  { {0xf1bf002a, 0xe3b8014a, 0x62880325, 0x00000000}},  //   mlán_, zlık_, cudo,\n  { {0x67ef0030, 0xf1bf13c3, 0x6d4b13c4, 0x00000000}},  //   _højd, llán_, žgan,\n  { {0xdca301f9, 0x32020161, 0x00000000, 0x00000000}},  // [2460] нати, miky_,   ,\n  { {0xa09700a3, 0x66000279, 0x00000000, 0x00000000}},  //   _צדיק_, zimk,   ,\n  { {0xca75007e, 0x3ce606b8, 0x3fdb009b, 0x00000000}},  //   дучы, šov_, _הקיב,\n  { {0x63a80046, 0x8c46007c, 0x32020161, 0x00000000}},  //   zedn, _неме, niky_,\n  { {0xd7c70061, 0xfbd100a1, 0xe8940b87, 0x00000000}},  //   लांच, رتے_, фаль,\n  { {0xdb0e0219, 0x9f580c42, 0xe3b8014a, 0x00000000}},  //   _habí, nirà_, rlık_,\n  { {0x63a80027, 0xa01b0210, 0x3a260093, 0x00000000}},  //   vedn, krön, plop_,\n  { {0xceb3009b, 0xbb43022a, 0x682d0051, 0x00000000}},  //   תיה_, _ческ, rúda,\n  { {0x660010ed, 0x67ef0146, 0x00000000, 0x00000000}},  //   rimk, _bøjd,   ,\n  { {0x628813c5, 0x660000e7, 0xb05b00f8, 0x00000000}},  //   tudo, simk, lväg,\n  { {0x63a80027, 0xa75b009b, 0x9f5813c6, 0x00000000}},  //   redn, _הדבר, dirà_,\n  { {0xdb0e13c7, 0x62880030, 0x63a813c8, 0x00000000}},  //   _nabí, rudo, sedn,\n  { {0x7a23006c, 0xf9930049, 0x2fda00d4, 0x00000000}},  //   mõtt, ערש_, _bopg_,\n  { {0x2d9c0010, 0xa01b0010, 0xe47b0049, 0x00000000}},  //   ővel_, ltöz, _פרוכ,\n  { {0x24520011, 0xe3b80276, 0xa3b5006e, 0x00000000}},  //   _hâm_, mdı_, _चोट_,\n  { {0xe3b801f6, 0xdb0e0d7b, 0x00000000, 0x00000000}},  //   ldı_, _cabí,   ,\n  { {0x61ed13c9, 0x67ef0030, 0x9f5813ca, 0x00000000}},  // [2470] _ilal, _høje, birà_,\n  { {0xe3b801f6, 0x9f580197, 0x24520082, 0x00000000}},  //   ndı_, cirà_, _mâm_,\n  { {0x2452001d, 0x61ed0107, 0xdb0e00fa, 0x00000000}},  //   _lâm_, _klal, _fabí,\n  { {0x200300ee, 0x9f5800d6, 0xa9540088, 0x00000000}},  //   liji_, mirá_, екці,\n  { {0x9f58004a, 0x61ed13cb, 0x00000000, 0x00000000}},  //   lirá_, _mlal,   ,\n  { {0x200313cc, 0x7bc713cd, 0xb8d5006e, 0x00000000}},  //   niji_, _unju, _जन_,\n  { {0xdce6001e, 0x9f580285, 0x67ef0030, 0x00000000}},  //   _iekā, nirá_, _nøje,\n  { {0xb9c50426, 0x200313ce, 0xe459005e, 0x00000000}},  //   _تقري, hiji_, ожи_,\n  { {0xdcfd005a, 0x69c900b5, 0xf1bf008e, 0x00000000}},  //   _kası, _inee, tlán_,\n  { {0x2003000b, 0x61ed006a, 0x24520011, 0x00000000}},  //   jiji_, _alal, _dâm_,\n  { {0x200313cf, 0x61ed0066, 0x32020161, 0x00000000}},  //   diji_, _blal, tiky_,\n  { {0x471a007b, 0x69db028c, 0xd6d80057, 0x00000000}},  //   _וועג, _joue, _эту_,\n  { {0x25090a90, 0x69db0f57, 0x05740439, 0x00000000}},  //   _برای_, _moue, _ساند,\n  { {0xdcfd011f, 0xdce6001e, 0x69db00f4, 0x00000000}},  //   _nası, _nekā, _loue,\n  { {0x9f5813d0, 0x5043007c, 0x69c913d1, 0x00000000}},  //   rirà_, терб, _onee,\n  { {0x69db009d, 0x69c90045, 0x00000000, 0x00000000}},  //   _noue, _nnee,   ,\n  { {0x2003012b, 0xdcfd0676, 0xfbc90061, 0x00000000}},  // [2480] biji_, _bası, रांम,\n  { {0x20030295, 0x9f5800dc, 0x69c900c4, 0x00000000}},  //   ciji_, birá_, _anee,\n  { {0x69db07f3, 0x9f58008e, 0xfc3f004a, 0x00000000}},  //   _boue, cirá_, _asís_,\n  { {0x79a302a8, 0xef17008b, 0xa967137c, 0x00000000}},  //   врше, _імя_, дица_,\n  { {0x7a230004, 0x33270052, 0xe3b8005d, 0x00000000}},  //   võtt, _lynx_, ydı_,\n  { {0xb05b0039, 0xe3b8006b, 0x69c913d2, 0x00000000}},  //   sväg, xdı_, _enee,\n  { {0x7a23006c, 0x245213d3, 0x69db009d, 0x00000000}},  //   tõtt, _sâm_, _foue,\n  { {0xc883011f, 0x7bdc09fc, 0x69db0dce, 0x00000000}},  //   üğü_, _horu, _goue,\n  { {0x7bdc0563, 0xe3b8006b, 0x9f5800c4, 0x00000000}},  //   _koru, tdı_, zirá_,\n  { {0x88bd0046, 0x61ed01a3, 0x7bdc00ea, 0x00000000}},  //   _myśl, _slal, _joru,\n  { {0x2003037e, 0xe3b801f6, 0x7bdc00c4, 0x00000000}},  //   viji_, rdı_, _moru,\n  { {0xd257008b, 0x2452001d, 0x9f58004a, 0x00000000}},  //   ьць_, _tâm_, virá_,\n  { {0x60f800a5, 0x20030ecc, 0xdb0e000a, 0x00000000}},  //   дняя_, tiji_, _labà,\n  { {0x9f5813d4, 0x67ef0030, 0x00000000, 0x00000000}},  //   tirá_, _tøje,   ,\n  { {0x61ed008e, 0xc7b8016c, 0xdb150173, 0x00000000}},  //   _tlal, _mađ_, _gazè,\n  { {0x6009016c, 0x63b8068f, 0x9f580b33, 0x00000000}},  //   džme, _havn, rirá_,\n  { {0x7bdc0059, 0x200313d5, 0x69db00f4, 0x00000000}},  // [2490] _boru, piji_, _roue,\n  { {0x63b80de0, 0xfe7100e9, 0x7bdc049a, 0x00000000}},  //   _javn, _مگر_, _coru,\n  { {0x7bdc04c8, 0x69db0e6d, 0xdcfd014a, 0x00000000}},  //   _doru, _poue, _vası,\n  { {0x63b801aa, 0xc3330104, 0xdb0e00c4, 0x00000000}},  //   _lavn, דוע_, _sabã,\n  { {0x1869041f, 0x07a5014c, 0xd5cf0082, 0x00000000}},  //   чали_, еалн, _bềnh_,\n  { {0x63b802cc, 0x7bdc13d6, 0x76b3006b, 0x00000000}},  //   _navn, _goru, _həyə,\n  { {0xd6d10a4f, 0x26c10224, 0x00000000, 0x00000000}},  //   اقع_, ího_,   ,\n  { {0x7bdc014a, 0x22980010, 0x99980006, 0x00000000}},  //   _zoru, dék_, _durų_,\n  { {0x7bdc011f, 0x5436026c, 0x629a13d7, 0x00000000}},  //   _yoru, کرٹر, etto,\n  { {0xf6e70069, 0x2bd20061, 0x629a0203, 0x00000000}},  //   _оцен, साया, ftto,\n  { {0xe9ff0011, 0x63b80091, 0xfbd2009b, 0x00000000}},  //   _giản_, _davn, אתי_,\n  { {0x22490026, 0xbbdc006e, 0x386d000a, 0x00000000}},  //   _ciak_, _मक्क, _kwer_,\n  { {0x64a5008b, 0x629a021e, 0x2bd20204, 0x00000000}},  //   _чала, atto, सामा,\n  { {0x21290093, 0x63b80190, 0x25ad13d8, 0x00000000}},  //   _dyah_, _gavn, leel_,\n  { {0x6da60175, 0xada6007c, 0x76b3006b, 0x00000000}},  //   нива, навл, _bəyə,\n  { {0x7bdc0676, 0x25ad01b5, 0xc1ba13d9, 0x00000000}},  //   _soru, neel_, _رابط_,\n  { {0x7bdc06a6, 0x76b3005f, 0x248d13da, 0x00000000}},  // [24a0] _poru, _dəyə, nuem_,\n  { {0xa09b007b, 0x7bdc005f, 0x25ad0250, 0x00000000}},  //   _צייט, _qoru, heel_,\n  { {0x88bd0046, 0x7bdc009f, 0xdb0e0010, 0x00000000}},  //   _wyśl, _voru, _babá,\n  { {0xd9100123, 0x707702fd, 0x7a3100ea, 0x00000000}},  //   لیز_, _تمیز_, tåta,\n  { {0x25ad00c7, 0x7bdc13db, 0x22980010, 0x00000000}},  //   deel_, _toru, zék_,\n  { {0x25ad00bb, 0xdb0e00f6, 0x00000000, 0x00000000}},  //   eeel_, _tabà,   ,\n  { {0x63b80bf8, 0x629a0009, 0x2cb20016, 0x00000000}},  //   _ravn, xtto, lwyd_,\n  { {0x7c3e06d3, 0x63b813dc, 0x7af2014a, 0x00000000}},  //   lmpr, _savn, ıktı,\n  { {0x2cb2018e, 0x248d09f7, 0x22490281, 0x00000000}},  //   nwyd_, guem_, _riak_,\n  { {0xa87b012e, 0x22980010, 0xa01b03aa, 0x00000000}},  //   _מאמר, ték_, tröm,\n  { {0x60c40032, 0x0566004d, 0x7c3e0026, 0x00000000}},  //   _arim, _звен, impr,\n  { {0x60c413dd, 0x629a0052, 0x248d00c4, 0x00000000}},  //   _brim, rtto, buem_,\n  { {0x60c41044, 0x644f1261, 0x629a00ea, 0x00000000}},  //   _crim, ícit, stto,\n  { {0x2cb2018e, 0x6e260022, 0x60c40ad6, 0x00000000}},  //   dwyd_, _akkb, _drim,\n  { {0x443e13de, 0x6e260093, 0x60c41045, 0x00000000}},  //   mmt_, _bkkb, _erim,\n  { {0x60c4032e, 0x442c06a1, 0x644a0052, 0x00000000}},  //   _frim, lld_, _hifi,\n  { {0x644a13df, 0x2cb20016, 0x442c13e0, 0x00000000}},  // [24b0] _kifi, gwyd_, old_,\n  { {0x62880026, 0x644a0066, 0xdb0e0325, 0x00000000}},  //   ordo, _jifi, _sabá,\n  { {0x442c000c, 0x67ef0030, 0x1df901ab, 0x00000000}},  //   ild_, _nøja, _жены_,\n  { {0x644a000c, 0x443e01a2, 0x386d005b, 0x00000000}},  //   _lifi, hmt_, _pwer_,\n  { {0x25ad0100, 0x644a002a, 0x67d50088, 0x00000000}},  //   veel_, _oifi, коду,\n  { {0x644a13e1, 0x07a501fc, 0x6e2d051b, 0x00000000}},  //   _nifi, такн, llab,\n  { {0x79a7008b, 0x443e0050, 0x25ad010e, 0x00000000}},  //   _прае, dmt_, teel_,\n  { {0x6e2d011c, 0x442c13e2, 0x248d13e3, 0x00000000}},  //   nlab, eld_, tuem_,\n  { {0x6e2d0038, 0x8cc403d7, 0x25ad00c7, 0x00000000}},  //   ilab, रियो, reel_,\n  { {0xd7f80256, 0x60c40023, 0x00000000, 0x00000000}},  //   _пух_, _rrim,   ,\n  { {0x6d5d01e5, 0x6e2d13e4, 0x25ad01d6, 0x00000000}},  //   _ofsa, klab, peel_,\n  { {0x442c00b5, 0x443e01a2, 0x2cb2005b, 0x00000000}},  //   ald_, amt_, ywyd_,\n  { {0x248d13e5, 0xe3ae041f, 0x62880471, 0x00000000}},  //   quem_, _кб_, ardo,\n  { {0x65690030, 0x60c4016e, 0x6e2d095d, 0x00000000}},  //   lbeh, _vrim, elab,\n  { {0x91fd0089, 0x7a380010, 0x6e2d0efe, 0x00000000}},  //   mpān, líte, flab,\n  { {0x6e2d13e6, 0xa6e90011, 0x6569002d, 0x00000000}},  //   glab, _trươ, nbeh,\n  { {0x1d0713e7, 0x44270093, 0x60c413e8, 0x00000000}},  // [24c0] вети_, _kkn_, _urim,\n  { {0x2cb20016, 0x6e2d001a, 0x26c50197, 0x00000000}},  //   rwyd_, alab, _orlo_,\n  { {0xeb9713e9, 0xee3a007c, 0x6e2d008e, 0x00000000}},  //   тих_, _оно_, blab,\n  { {0x6e2d117e, 0x656900bb, 0x588600a5, 0x00000000}},  //   clab, jbeh, выка,\n  { {0x442c068f, 0x443e06a1, 0x26c5002d, 0x00000000}},  //   yld_, ymt_, _arlo_,\n  { {0x660200ab, 0x628800f8, 0x6b6302d3, 0x00000000}},  //   _smok, yrdo, _вкра,\n  { {0x644a0207, 0x7bce13ea, 0x764b011c, 0x00000000}},  //   _rifi, _inbu, _bigy,\n  { {0x644a0016, 0x6adb0044, 0x54b8004d, 0x00000000}},  //   _sifi, _যেকো, егия_,\n  { {0x41d60309, 0x7a380010, 0x442c0035, 0x00000000}},  //   धानस, gíte, tld_,\n  { {0x442c0038, 0x386613eb, 0x6e2d01c5, 0x00000000}},  //   uld_, mpor_, zlab,\n  { {0x442c13ec, 0x443e0239, 0x764b0047, 0x00000000}},  //   rld_, rmt_, _figy,\n  { {0x644a071d, 0x660200e0, 0x00000000, 0x00000000}},  //   _wifi, _umok,   ,\n  { {0x644a13ed, 0x443e00f6, 0x7bce05a6, 0x00000000}},  //   _tifi, pmt_, _onbu,\n  { {0x6e2d0048, 0xa91d012d, 0x00000000, 0x00000000}},  //   wlab, _udže,   ,\n  { {0x6e2d0089, 0xdbdc000c, 0xd3780036, 0x00000000}},  //   tlab, _ráðl, mać_,\n  { {0x6e24002d, 0x7bce13ee, 0xe3b8006b, 0x00000000}},  //   goib, _anbu, mlıq_,\n  { {0x6e2d13ef, 0x31791072, 0xe3b8006b, 0x00000000}},  // [24d0] rlab, masz_, llıq_,\n  { {0x31790047, 0x6e2d0089, 0xd3780036, 0x00000000}},  //   lasz_, slab, nać_,\n  { {0xf09f13f0, 0x162202d2, 0xe3b8006b, 0x00000000}},  //   ltà_, मवार_, nlıq_,\n  { {0xa01b000c, 0xf1bf00c4, 0xd37813f1, 0x00000000}},  //   fsög, ndá_, hać_,\n  { {0xd3780046, 0xf09f13f2, 0x9d140088, 0x00000000}},  //   kać_, ntà_, _вдяч,\n  { {0xe739026b, 0xf09f0197, 0xd3780036, 0x00000000}},  //   нел_, ità_, jać_,\n  { {0xd3780046, 0x9f510211, 0x31790ef2, 0x00000000}},  //   dać_, lizó_, kasz_,\n  { {0x26c50119, 0xe3b8005f, 0x7c2501ee, 0x00000000}},  //   _vrlo_, dlıq_, lohr,\n  { {0x75f500b9, 0x9f51008e, 0x39150783, 0x00000000}},  //   _náze, nizó_, _смар,\n  { {0x7a3813f3, 0x7c2501ca, 0xd3780036, 0x00000000}},  //   ríte, nohr, gać_,\n  { {0x420a022a, 0xf09f0207, 0x7a3813f4, 0x00000000}},  //   енно_, età_, síte,\n  { {0x7a3813f5, 0x09b10044, 0x00000000, 0x00000000}},  //   píte, ছাকা,   ,\n  { {0x7c250d9b, 0x660900bb, 0xdb1c13f6, 0x00000000}},  //   kohr, miek, _carê,\n  { {0x6609010a, 0x25bd018e, 0xd3780036, 0x00000000}},  //   liek, _hawl_, cać_,\n  { {0x442513f7, 0x249f000c, 0x539a009b, 0x00000000}},  //   mol_, ltum_, _ניקו,\n  { {0x6609001e, 0x4425002b, 0xe1f200d3, 0x00000000}},  //   niek, lol_, _دست_,\n  { {0xa3c8006e, 0xf09f00f6, 0x00000000, 0x00000000}},  // [24e0] _लोड_, ctà_,   ,\n  { {0x44250bc4, 0x249f01e5, 0x00000000, 0x00000000}},  //   nol_, itum_,   ,\n  { {0x7f9b009b, 0xb05b0039, 0x91d80061, 0x00000000}},  //   _אביז, nvän, यापै,\n  { {0x442513f8, 0x249f05ed, 0xd37813f9, 0x00000000}},  //   hol_, ktum_, zać_,\n  { {0x4425006a, 0x7a1c00b9, 0xdbd2010e, 0x00000000}},  //   kol_, jčte, _küüs,\n  { {0x44250129, 0x2ca003bd, 0xa01b000c, 0x00000000}},  //   jol_, mtid_, rsög,\n  { {0x442513fa, 0x09a90055, 0x2ca00c72, 0x00000000}},  //   dol_, ওয়া, ltid_,\n  { {0xd3780046, 0x200a047f, 0x963400ec, 0x00000000}},  //   wać_, hibi_, јниц,\n  { {0x4425018e, 0x2ca00061, 0xc7960879, 0x00000000}},  //   fol_, ntid_, _مشاب,\n  { {0x44251014, 0x3a260343, 0xe3b8006b, 0x00000000}},  //   gol_, loop_, tlıq_,\n  { {0xd37813fb, 0x5334005e, 0x1666003b, 0x00000000}},  //   rać_, рент, _свем,\n  { {0xf09f0198, 0xe3b8005f, 0xd3780036, 0x00000000}},  //   ttà_, rlıq_, sać_,\n  { {0x442513fc, 0x3dc0018e, 0x200a13fd, 0x00000000}},  //   bol_, ddiw_, fibi_,\n  { {0x4425000d, 0xf09f0a19, 0xc3560265, 0x00000000}},  //   col_, rtà_, _съдъ,\n  { {0x3a2613fe, 0xf09f13ff, 0x70ae01f5, 0x00000000}},  //   koop_, stà_, टबॉल,\n  { {0x270e005f, 0x443c0190, 0x9f51008e, 0x00000000}},  //   _mən_, _hhv_, tizó_,\n  { {0x9f41008d, 0x1ae20055, 0x3a260007, 0x00000000}},  // [24f0] _kohë_, _গেলে_, doop_,\n  { {0x320b0038, 0x66091400, 0x3eba0009, 0x00000000}},  //   licy_, ziek, _fspt_,\n  { {0xddd00676, 0xa3d50164, 0x9e3501fc, 0x00000000}},  //   _çeşi, हात_, _венч,\n  { {0x442510fa, 0x320b0036, 0xa91d00d0, 0x00000000}},  //   zol_, nicy_, _adža,\n  { {0x44250f99, 0x2ca00016, 0x6925025f, 0x00000000}},  //   yol_, ctid_, јмла,\n  { {0x66090036, 0x25bd0016, 0xba7703d6, 0x00000000}},  //   wiek, _sawl_, _مارت,\n  { {0xec3600b6, 0x6609001e, 0x44251401, 0x00000000}},  //   _כאשר_, tiek, vol_,\n  { {0x249f1402, 0x270e005f, 0x442501aa, 0x00000000}},  //   ttum_, _dən_, wol_,\n  { {0x442504bd, 0x25bf1403, 0xfa340014, 0x00000000}},  //   tol_, rdul_, _طرفد,\n  { {0x66091404, 0x249f01e5, 0x78bb0107, 0x00000000}},  //   siek, rtum_, _isuv,\n  { {0x4425018e, 0x249f009f, 0xc5d501e1, 0x00000000}},  //   rol_, stum_, _віль,\n  { {0x4425018e, 0x249f000c, 0xb05b0039, 0x00000000}},  //   sol_, ptum_, rvän,\n  { {0x44250142, 0x200a006b, 0xdb1c0065, 0x00000000}},  //   pol_, tibi_, _parë,\n  { {0x88bd0046, 0xb4fa009b, 0x645b0146, 0x00000000}},  //   _wyśw, _בפני, mqui,\n  { {0x645b0219, 0x200a1405, 0xdb1c0065, 0x00000000}},  //   lqui, ribi_, _varë,\n  { {0xdd9205f3, 0x06af0055, 0x8e5501fb, 0x00000000}},  //   تور_, কিপি, стрі,\n  { {0xeb9a09da, 0x248d0093, 0x51f600a1, 0x00000000}},  // [2500] киа_, nrem_, _مسکر,\n  { {0x907b0476, 0x307b009b, 0x2ca00056, 0x00000000}},  //   _שטיי, _שאינ, rtid_,\n  { {0x703b026c, 0x2ca00004, 0xdb150181, 0x00000000}},  //   _جسٹس_, stid_, _razã,\n  { {0x705301ef, 0x7ae30a3c, 0x61e400b0, 0x00000000}},  //   _دنیا, änta, _joil,\n  { {0x270e005f, 0x3a2601d6, 0xdb1c00f4, 0x00000000}},  //   _sən_, roop_, _maré,\n  { {0x1867012b, 0x248d1406, 0xdb071407, 0x00000000}},  //   шаљи_, drem_, _cajó,\n  { {0x645b0b32, 0x5b35007e, 0xdb0501a2, 0x00000000}},  //   equi, _гэту, gehä,\n  { {0xe5c60679, 0x248d1408, 0x61e40cc9, 0x00000000}},  //   рско, frem_, _noil,\n  { {0x69c012bb, 0x91830082, 0x00000000, 0x00000000}},  //   _iame, _nếu_,   ,\n  { {0xdb1c0263, 0x69c21409, 0xdb150010, 0x00000000}},  //   _parè, ldoe, _hazá,\n  { {0x4b7b007b, 0x78a20161, 0x248d140a, 0x00000000}},  //   כטיג, ltov, arem_,\n  { {0x69c200b5, 0x61e4140b, 0x69c000ab, 0x00000000}},  //   ndoe, _coil, _jame,\n  { {0x78a20428, 0x69c0001a, 0xfeb801ef, 0x00000000}},  //   ntov, _mame, یافت_,\n  { {0xb17b00ea, 0xdb07000a, 0xb22701e5, 0x00000000}},  //   gkår, _majò, _blæð,\n  { {0x69c0000d, 0x61e4002a, 0x5187007e, 0x00000000}},  //   _oame, _foil, _купа,\n  { {0x5d550113, 0xdb050073, 0x69c0140c, 0x00000000}},  //   скат, nehå, _name,\n  { {0x78a2003b, 0xd7c60061, 0xbddb009d, 0x00000000}},  // [2510] jtov, लयाच, _bièr,\n  { {0x6fb5025a, 0xeb930d3a, 0x0a6b06e3, 0x00000000}},  //   _امدا, تظر_, врди_,\n  { {0x69c0140d, 0xcf92009b, 0x75f5140e, 0x00000000}},  //   _bame, _צטט_, _láza,\n  { {0xc9870f09, 0x78a207ff, 0x00000000, 0x00000000}},  //   ружи, ftov,   ,\n  { {0xf0940049, 0xf1bf0010, 0xb05b0039, 0x00000000}},  //   ַנק_, llás_, kväm,\n  { {0x645d0211, 0xe8f8007e, 0x69c00085, 0x00000000}},  //   ísim, шлі_, _eame,\n  { {0x69c000f4, 0x7a38140f, 0x657b011c, 0x00000000}},  //   _fame, síta, tauh,\n  { {0x248d1410, 0x69c013ec, 0xff1800b3, 0x00000000}},  //   trem_, _game, יקות_,\n  { {0x32f7005f, 0xf99200a3, 0x657b00b0, 0x00000000}},  //   məyə_, _מרן_, rauh,\n  { {0x61e40949, 0x69c00027, 0x645b0576, 0x00000000}},  //   _soil, _zame, rqui,\n  { {0x645b02d5, 0x61e41411, 0x69c0000b, 0x00000000}},  //   squi, _poil, _yame,\n  { {0x245b0181, 0xa06a003b, 0xdb080010, 0x00000000}},  //   _têm_, лама_, ülés,\n  { {0x61e4028c, 0x70560025, 0x27e5093e, 0x00000000}},  //   _voil, إنسا, _koln_,\n  { {0x76aa005f, 0x51f60014, 0x32f7006b, 0x00000000}},  //   _həya, _گستر, həyə_,\n  { {0x22950025, 0x52850025, 0x64590066, 0x00000000}},  //   _العس, _البك, _huwi,\n  { {0x78a20428, 0x51f600d3, 0xdb0e033f, 0x00000000}},  //   ytov, _دستر, _tabú,\n  { {0x2283011f, 0x5baa007e, 0x32f7006b, 0x00000000}},  // [2520] lık_, лкам_, dəyə_,\n  { {0x69c00376, 0xaf9a003b, 0x78a20925, 0x00000000}},  //   _same, _стих_, vtov,\n  { {0x69c01412, 0x62811413, 0xdcef001e, 0x00000000}},  //   _pame, nslo, _vecā,\n  { {0x78a21414, 0x69c00ea9, 0x7db60025, 0x00000000}},  //   ttov, _qame, _اصدا,\n  { {0x69c201b5, 0x175402d3, 0xb3b701f5, 0x00000000}},  //   rdoe, овля, _असंख,\n  { {0x69c0000b, 0x78a20428, 0x69c20328, 0x00000000}},  //   _wame, rtov, sdoe,\n  { {0x78a21415, 0x76aa005f, 0x75f50062, 0x00000000}},  //   stov, _bəya, _sáza,\n  { {0x2283014a, 0x78a20142, 0xf1bf0051, 0x00000000}},  //   dık_, ptov, hlár_,\n  { {0x62830107, 0x7a380010, 0x98b5013d, 0x00000000}},  //   _avno, líto, _आईएए,\n  { {0x75f51416, 0x6459005b, 0x8cbb00a0, 0x00000000}},  //   _váza, _duwi, נציק,\n  { {0x02a30805, 0xdb0500f8, 0x20180022, 0x00000000}},  //   прям, pehå, dnri_,\n  { {0x22400ee1, 0x00000000, 0x00000000, 0x00000000}},  //   _chik_,   ,   ,\n  { {0x25b7007a, 0xb114007e, 0x4de10044, 0x00000000}},  //   _دهند_, змяш, নসমূ,\n  { {0x765a0010, 0xb4e40061, 0xb4d401f5, 0x00000000}},  //   _kuty, नही_, हमी_,\n  { {0xa3d502fb, 0x32f7006b, 0x2283014a, 0x00000000}},  //   हार_, yəyə_, cık_,\n  { {0x5ebb0044, 0x76aa006b, 0x75f500b9, 0x00000000}},  //   _উপদে, _xəya, _lázn,\n  { {0x13ac0044, 0xc4b6007d, 0x00000000, 0x00000000}},  // [2530] _কোয়, _अनोख,   ,\n  { {0x3a2d0007, 0x60cd008a, 0x765a01d6, 0x00000000}},  //   _skep_, _iram, _outy,\n  { {0xbddb01aa, 0x1dc400e8, 0x60cd0091, 0x00000000}},  //   _chèc, _लोकत, _hram,\n  { {0x777a0288, 0x2bf50061, 0x00000000, 0x00000000}},  //   _aetx, _इतकं_,   ,\n  { {0x26cc1417, 0x32f7006b, 0x2283014a, 0x00000000}},  //   _ardo_, rəyə_, zık_,\n  { {0x60cd0b4a, 0x628101ca, 0xf7710025, 0x00000000}},  //   _mram, yslo, ذات_,\n  { {0xe739007c, 0xcf940049, 0x64590145, 0x00000000}},  //   шек_, לטס_, _suwi,\n  { {0x7d090359, 0x60cd0197, 0x26c7021c, 0x00000000}},  //   _þess, _oram, rvno_,\n  { {0x6aa50c0d, 0x442e0d25, 0xa3d5007d, 0x00000000}},  //   lthf, _bkf_, हाल_,\n  { {0x981706dd, 0x2283011f, 0x52a91418, 0x00000000}},  //   _ابرا, tık_, авом_,\n  { {0x60cd011f, 0xe9ff0011, 0x765a0009, 0x00000000}},  //   _aram, _nhẫn_, _guty,\n  { {0x60cd137e, 0x6459011c, 0x75f50161, 0x00000000}},  //   _bram, _tuwi, _zázn,\n  { {0x628101c9, 0x24191001, 0x645900e0, 0x00000000}},  //   sslo, _коды_, _uuwi,\n  { {0x60cd1419, 0x7d0001e5, 0x3f9e010e, 0x00000000}},  //   _dram, _ýmsi, ütu_,\n  { {0x60cd022b, 0xd3470014, 0x22400082, 0x00000000}},  //   _eram, _دیده_, _thik_,\n  { {0x60cd141a, 0x7bd5010f, 0x61fd010f, 0x00000000}},  //   _fram, _anzu, chsl,\n  { {0xdca30264, 0xac0a00ed, 0x00000000, 0x00000000}},  // [2540] мати, анаа_,   ,\n  { {0x60260088, 0x91a600a1, 0x9f6000b0, 0x00000000}},  //   _єдна, _اچھے_, ärät_,\n  { {0x2bce001c, 0x75f506b8, 0xda650025, 0x00000000}},  //   _होणा, _názo, كاني,\n  { {0x7a380010, 0x7bd50288, 0x00000000, 0x00000000}},  //   ríto, _enzu,   ,\n  { {0x7989018e, 0x2db7009b, 0x636601dc, 0x00000000}},  //   _ddew, _ולכן_, nční,\n  { {0x7a3812c2, 0xdb1c008e, 0x2d801172, 0x00000000}},  //   píto, _harí, laie_,\n  { {0xf1ca007d, 0x5694058e, 0x00000000, 0x00000000}},  //   ियान, чайт,   ,\n  { {0x95ca012b, 0x442e141b, 0x2bce141c, 0x00000000}},  //   рука_, _skf_, _होता,\n  { {0xe9ff0011, 0x75fc0010, 0x18670088, 0x00000000}},  //   _hiến_, _néze, _мати_,\n  { {0xe9ff001d, 0x26cc00ca, 0x765a0045, 0x00000000}},  //   _kiến_, _trdo_, _tuty,\n  { {0x60cd0295, 0x6fde0316, 0x75f50010, 0x00000000}},  //   _sram, मानं, _gázo,\n  { {0x60cd010a, 0xe9ff0082, 0x00000000, 0x00000000}},  //   _pram, _miến_,   ,\n  { {0x845a00ed, 0x4fc705bb, 0x00000000, 0x00000000}},  //   _трет_, осва,   ,\n  { {0xe9ff0082, 0x00000000, 0x00000000, 0x00000000}},  //   _phẫn_,   ,   ,\n  { {0x442c0030, 0xe29700ed, 0x22630142, 0x00000000}},  //   mod_, _дај_, ľské_,\n  { {0x60cd141d, 0x442c141e, 0x2d58041f, 0x00000000}},  //   _tram, lod_, жить_,\n  { {0xa802011f, 0x60cd0020, 0xdb1c008e, 0x00000000}},  // [2550] şıyo, _uram, _darí,\n  { {0x442c141f, 0xe9ff001d, 0x7bc502c2, 0x00000000}},  //   nod_, _biến_, udhu,\n  { {0x20111420, 0xdb1c00d4, 0x7bc50065, 0x00000000}},  //   mizi_, _farí, rdhu,\n  { {0x442c1421, 0x24860119, 0x2011000b, 0x00000000}},  //   hod_, _ovom_, lizi_,\n  { {0x442c09f3, 0x7e62089f, 0x6e2d059e, 0x00000000}},  //   kod_, _čopi, moab,\n  { {0x2011047f, 0xcc760097, 0x7bd5010f, 0x00000000}},  //   nizi_, _מעשה_, _unzu,\n  { {0xea63026c, 0x442c1422, 0x9675007e, 0x00000000}},  //   _آپری, dod_, чылі,\n  { {0x20111423, 0x9f580026, 0x7642113e, 0x00000000}},  //   hizi_, nirò_, _choy,\n  { {0x442c018e, 0x5884007e, 0x20110020, 0x00000000}},  //   fod_, _жыха, kizi_,\n  { {0x442c006a, 0x20110091, 0x2d801424, 0x00000000}},  //   god_, jizi_, zaie_,\n  { {0x20111425, 0x00000000, 0x00000000, 0x00000000}},  //   dizi_,   ,   ,\n  { {0x27340051, 0x76420145, 0x00000000, 0x00000000}},  //   súnú_, _ghoy,   ,\n  { {0xa01b010f, 0x442c018e, 0x455a0104, 0x00000000}},  //   rsön, bod_, _הכנס,\n  { {0x7fd50099, 0x7649014a, 0x20111426, 0x00000000}},  //   місі, lmey, gizi_,\n  { {0x2d80001a, 0xdee60088, 0xd0070140, 0x00000000}},  //   taie_, чови, чере_,\n  { {0x661b1427, 0x7649014a, 0xee3a07d0, 0x00000000}},  //   nnuk, nmey, ёна_,\n  { {0xd347007a, 0x2d800a86, 0x20110032, 0x00000000}},  // [2560] _دیگه_, raie_, bizi_,\n  { {0x2d80009d, 0x5ebb0044, 0x20110035, 0x00000000}},  //   saie_, _উপরে, cizi_,\n  { {0x05bd0061, 0x7a380010, 0x661b0058, 0x00000000}},  //   ्याब, sítm, knuk,\n  { {0x442c1428, 0xdb1c1429, 0x98a60088, 0x00000000}},  //   zod_, _parâ, зиде,\n  { {0xed520014, 0x442c011c, 0xdb1c00c4, 0x00000000}},  //   _سپس_, yod_, _barã,\n  { {0xe9ff001d, 0xdb0e00b9, 0xdc6700aa, 0x00000000}},  //   _tiến_, _zabý, _хард_,\n  { {0x8c4307ca, 0x24860119, 0x7649142a, 0x00000000}},  //   _чере, _svom_, fmey,\n  { {0xd49a0216, 0xceb300b6, 0x442c0016, 0x00000000}},  //   бро_, גיה_, wod_,\n  { {0x38c800d3, 0x442c142b, 0x7d04000b, 0x00000000}},  //   _بازی_, tod_, nzis,\n  { {0xa2f40088, 0x7d00000c, 0x07a3142c, 0x00000000}},  //   дпоч, _ýmsu, _паун,\n  { {0x442c0016, 0x64480089, 0x201100b9, 0x00000000}},  //   rod_, rmdi, vizi_,\n  { {0xd257008b, 0x442c142d, 0x79820020, 0x00000000}},  //   яць_, sod_, naow,\n  { {0x442c0119, 0x2011142e, 0x5067142f, 0x00000000}},  //   pod_, tizi_, ятна,\n  { {0x1ae20055, 0x7d040036, 0xdb0e008e, 0x00000000}},  //   _গেছে_, dzis, _jabó,\n  { {0x63ba073a, 0x533306e3, 0x20110041, 0x00000000}},  //   metn, _пешт, rizi_,\n  { {0x63ba01d9, 0x67ef0030, 0x629a07b4, 0x00000000}},  //   letn, _højt, muto,\n  { {0x629a011c, 0x20110173, 0x9f580026, 0x00000000}},  // [2570] luto, pizi_, rirò_,\n  { {0xf0450167, 0x7a381430, 0x63ba04eb, 0x00000000}},  //   _تعبی, líth, netn,\n  { {0x629a0489, 0x3f830119, 0xdb1c0129, 0x00000000}},  //   nuto, maju_, _carà,\n  { {0x63ba0010, 0x3915007c, 0x7aea0039, 0x00000000}},  //   hetn, ммер, äfta,\n  { {0x48ab01bd, 0x1a6800a1, 0x76aa006b, 0x00000000}},  //   стем_, _ہیلی_, _dəym,\n  { {0x63ba11cc, 0x629a0142, 0xfe700014, 0x00000000}},  //   jetn, kuto, _جدی_,\n  { {0x629a1431, 0x2ca9076a, 0x7649014a, 0x00000000}},  //   juto, ltad_, tmey,\n  { {0x629a1432, 0x7bc70b37, 0x661b016c, 0x00000000}},  //   duto, _haju, unuk,\n  { {0x7649011f, 0x2ca91433, 0x3f831434, 0x00000000}},  //   rmey, ntad_, kaju_,\n  { {0x3f830119, 0x386d0197, 0xdb1c008e, 0x00000000}},  //   jaju_, _iter_, _hará,\n  { {0x7bc706fe, 0x3f831435, 0x7d040197, 0x00000000}},  //   _maju, daju_, zzis,\n  { {0x2ca91436, 0x7bc701a3, 0xe5e500a2, 0x00000000}},  //   ktad_, _laju, _تزئی,\n  { {0x629a0ef7, 0xa3c802f4, 0x53a50b11, 0x00000000}},  //   auto, _लोक_, _жалб,\n  { {0x629a1437, 0x63ba016c, 0xad9b00f6, 0x00000000}},  //   buto, cetn, _llúd,\n  { {0xe9ff001d, 0x67ef0030, 0xbea302dc, 0x00000000}},  //   _nhắn_, _højs, карк,\n  { {0xee3a0822, 0x00000000, 0x00000000, 0x00000000}},  //   іна_,   ,   ,\n  { {0xbc6a0070, 0x3f830091, 0x7a380802, 0x00000000}},  // [2580] زمان_, baju_, sítk,\n  { {0x3f83016c, 0x60c4011f, 0x7d04001a, 0x00000000}},  //   caju_, _isim, rzis,\n  { {0x7a3806c2, 0xdb1c11e7, 0xfbd1026c, 0x00000000}},  //   líti, _bará, ھتے_,\n  { {0xdb1c0489, 0x63ba1438, 0xad9b0051, 0x00000000}},  //   _cará, zetn, _clúd,\n  { {0x307a0049, 0xdb1c077b, 0x61fd0065, 0x00000000}},  //   קאַנ, _dará, ërli,\n  { {0x60c4000b, 0x466a017f, 0xdb0e0173, 0x00000000}},  //   _msim, орим_, _dabò,\n  { {0xa3c802fb, 0x25ad063c, 0x63ba0059, 0x00000000}},  //   _लोग_, ffel_, vetn,\n  { {0x3f830107, 0x60c404c6, 0xdb1c0387, 0x00000000}},  //   zaju_, _osim, _gará,\n  { {0x63ba0059, 0x60c40009, 0x7bc700e7, 0x00000000}},  //   tetn, _nsim, _yaju,\n  { {0x629a1439, 0xb05b010f, 0xa91d0087, 0x00000000}},  //   tuto, hwäc, _sežg,\n  { {0x63ba143a, 0x3f831435, 0x65c60326, 0x00000000}},  //   retn, vaju_, _обжа,\n  { {0x629a0039, 0x63ba021a, 0x741300a6, 0x00000000}},  //   ruto, setn, _یونا,\n  { {0x3f83037e, 0xc5f3009b, 0x798001aa, 0x00000000}},  //   taju_, _בדף_, _memw,\n  { {0x67ef0030, 0x7a380010, 0x60c40087, 0x00000000}},  //   _højr, síth, _dsim,\n  { {0x60c408b2, 0x3f830119, 0x7bc7143b, 0x00000000}},  //   _esim, raju_, _raju,\n  { {0x3f83037e, 0x2ca9143c, 0x7bc701c5, 0x00000000}},  //   saju_, ttad_, _saju,\n  { {0x64580ac2, 0x7bc7143d, 0x3f830091, 0x00000000}},  // [2590] _kivi, _paju, paju_,\n  { {0x2ca90211, 0x2c640039, 0x9f450010, 0x00000000}},  //   rtad_, _död_, óló_,\n  { {0x2ca9143e, 0x61ed0142, 0x62880007, 0x00000000}},  //   stad_, _koal, nsdo,\n  { {0x645811d1, 0xdb26007a, 0xceb2007b, 0x00000000}},  //   _livi, رونی, _גיט_,\n  { {0x9f580051, 0x7bc70127, 0x61ed0035, 0x00000000}},  //   mhrá_, _taju, _moal,\n  { {0x07a20893, 0xb05b0c4d, 0x27fe0022, 0x00000000}},  //   гашн, lväs, _cltn_,\n  { {0x25ad000d, 0x49bb0014, 0x1995007e, 0x00000000}},  //   tfel_, _وارد_, _павя,\n  { {0xcf58012e, 0x6b8504cb, 0x62880239, 0x00000000}},  //   ובות_, lahg, dsdo,\n  { {0x6458143f, 0x25ad0678, 0x628a00ea, 0x00000000}},  //   _bivi, rfel_, _avfo,\n  { {0xc747006d, 0xd9f50061, 0x13091001, 0x00000000}},  //   _قضاي, _आवडत_, зной_,\n  { {0xa91d0059, 0x61ed001a, 0x60c401f3, 0x00000000}},  //   _deže, _boal, _ssim,\n  { {0x61ed027b, 0x25e0001c, 0x69cb1440, 0x00000000}},  //   _coal, काणी_, ndge,\n  { {0xe9ff001d, 0x61ed0032, 0x69c900e0, 0x00000000}},  //   _nhận_, _doal, _maee,\n  { {0x7a381441, 0x64581442, 0x2c640039, 0x00000000}},  //   ríti, _givi, _röd_,\n  { {0x62880045, 0x6e290161, 0x00000000, 0x00000000}},  //   csdo, čebn,   ,\n  { {0x6458037e, 0x91fd0089, 0xa3c50061, 0x00000000}},  //   _zivi, spār, _उघड_,\n  { {0xdd8f0318, 0x60c40020, 0xf6520049, 0x00000000}},  // [25a0] صول_, _usim, רצן_,\n  { {0x61ed02ae, 0x26c50292, 0x69c900f6, 0x00000000}},  //   _zoal, _oslo_, _aaee,\n  { {0xdb1c02d5, 0x8f9b01ce, 0x2c52000a, 0x00000000}},  //   _març, _ציטי, _jņdi_,\n  { {0x427a0049, 0x27fe0022, 0xb05b00f8, 0x00000000}},  //   פאנג, _sltn_, mvär,\n  { {0x27fe0093, 0xb05b00f8, 0x27ec0087, 0x00000000}},  //   _pltn_, lvär, _podn_,\n  { {0xfaa6007e, 0xf7780066, 0x69cb01c3, 0x00000000}},  //   _паго, _roħs_, adge,\n  { {0x64580207, 0x798001aa, 0x8f9b01ce, 0x00000000}},  //   _rivi, _temw, ליסי,\n  { {0x6458099e, 0xc1ca006e, 0xa91d1443, 0x00000000}},  //   _sivi, ियोग, _seže,\n  { {0x7659018e, 0xdb1c0129, 0x61ed013f, 0x00000000}},  //   _diwy, _barç, _roal,\n  { {0xa01b0073, 0xb4c00061, 0x61ed1444, 0x00000000}},  //   rsök, _ंनी_, _soal,\n  { {0x64580219, 0x61ed0035, 0x00000000, 0x00000000}},  //   _vivi, _poal,   ,\n  { {0x2d820059, 0x62880125, 0xb05b00f8, 0x00000000}},  //   _neke_, rsdo, dvär,\n  { {0xa91d050f, 0x61ed0b94, 0x7bdc0116, 0x00000000}},  //   _teže, _voal, _onru,\n  { {0xdb1c1184, 0x00000000, 0x00000000, 0x00000000}},  //   _garç,   ,   ,\n  { {0x2d820173, 0x76aa013f, 0x00000000, 0x00000000}},  //   _beke_, _bəyi,   ,\n  { {0xbddb00f4, 0xe9ff0011, 0x7bdc010f, 0x00000000}},  //   _thèm, _phận_, _anru,\n  { {0x76aa005f, 0x5d55026b, 0xa3d50061, 0x00000000}},  // [25b0] _dəyi, ткат, हाच_,\n  { {0xb6030027, 0xfe710167, 0xf1bf1445, 0x00000000}},  //   čšin, _نگر_, leá_,\n  { {0x20130066, 0xa01b0010, 0xb05b00f8, 0x00000000}},  //   _imxi_, kröz, sväs,\n  { {0xe9ff0011, 0x38a91446, 0x7bdc0325, 0x00000000}},  //   _thận_, túr_, _enru,\n  { {0x69cb037f, 0x28f803e8, 0x00000000, 0x00000000}},  //   rdge, нець_,   ,\n  { {0x6b850045, 0x673a01d6, 0x00000000, 0x00000000}},  //   qahg, _bytj,   ,\n  { {0x3d150061, 0x38a90a87, 0x2d820145, 0x00000000}},  //   _नेते_, súr_, _yeke_,\n  { {0xa91d05fa, 0x9b5800aa, 0xb60601ed, 0x00000000}},  //   _vežb, _чист_, ješć,\n  { {0xdb1c047f, 0xf1bf0027, 0x65690023, 0x00000000}},  //   _parç, deá_, rceh,\n  { {0x75f50161, 0x00000000, 0x00000000, 0x00000000}},  //   _názv,   ,   ,\n  { {0xf1dd0365, 0xfbd200b6, 0x41dd0061, 0x00000000}},  //   यांन, בתי_, यांस,\n  { {0x22490263, 0x15150ae0, 0x7a380010, 0x00000000}},  //   _chak_, _идея, sítv,\n  { {0x2d82003b, 0xd9e30044, 0x28c7013d, 0x00000000}},  //   _reke_, _মতাম, लिटि,\n  { {0x35a7006e, 0x395f00e0, 0x22490032, 0x00000000}},  //   _गाड़, _lgus_, _ehak_,\n  { {0x2d820020, 0x2be00067, 0x0eb90783, 0x00000000}},  //   _peke_, नासा, нуты_,\n  { {0xc69201f8, 0xf1bf0051, 0x25bf00e5, 0x00000000}},  //   יאל_, ceá_, neul_,\n  { {0xb05b0039, 0x25b2014a, 0xd24f0379, 0x00000000}},  // [25c0] rvär, _öyle_, _بني_,\n  { {0x395f0195, 0x0e661447, 0xd00f0076, 0x00000000}},  //   _agus_, _икон, _ولي_,\n  { {0xbad5008b, 0x76aa006b, 0x2d820056, 0x00000000}},  //   ліцы, _təyi, _teke_,\n  { {0xb33c01d5, 0x2018011c, 0x60d60036, 0x00000000}},  //   ngħa, liri_, _krym,\n  { {0x1867033c, 0x8b660151, 0x00000000, 0x00000000}},  //   вачи_, _لازم,   ,\n  { {0xe9ff001d, 0x6d46115c, 0x7bdc01a2, 0x00000000}},  //   _phản_, _izka, _unru,\n  { {0xcac70175, 0x2ca00250, 0x1ae3007c, 0x00000000}},  //   _игре_, luid_, _корм,\n  { {0x20180020, 0x7c3e09b0, 0xbddb000a, 0x00000000}},  //   hiri_, llpr, _chèh,\n  { {0x20181448, 0xb6060521, 0x2ca0010e, 0x00000000}},  //   kiri_, vešć, nuid_,\n  { {0x2018000b, 0xe9ff0082, 0x9f5a00f6, 0x00000000}},  //   jiri_, _thản_, _alpí_,\n  { {0x201804d4, 0xdd2f00b9, 0xf2c30605, 0x00000000}},  //   diri_, měťo, асян,\n  { {0x7a380489, 0x2ca0006c, 0x25bf0035, 0x00000000}},  //   pítu, kuid_, ceul_,\n  { {0x20180294, 0x66021449, 0x3eba062a, 0x00000000}},  //   firi_, _ilok, _appt_,\n  { {0x201804d4, 0xdb170181, 0x3eba0093, 0x00000000}},  //   giri_, nexã, _bppt_,\n  { {0x660201e3, 0x6d46002d, 0xb33c002b, 0x00000000}},  //   _klok, _azka, bgħa,\n  { {0x60d60065, 0x7c3e144a, 0xe3b000a1, 0x00000000}},  //   _frym, elpr, _خرچ_,\n  { {0x2018000b, 0x60d6144b, 0x2ca0004a, 0x00000000}},  // [25d0] biri_, _grym, guid_,\n  { {0x2018144c, 0x61fd01d6, 0x25bf001a, 0x00000000}},  //   ciri_, lksl, zeul_,\n  { {0x443e1274, 0x6602144d, 0x4975003b, 0x00000000}},  //   ilt_, _olok, глес,\n  { {0x443e001f, 0x61fd007f, 0x7c3e144e, 0x00000000}},  //   hlt_, nksl, alpr,\n  { {0x693400ed, 0x5d9a012f, 0xa91d144f, 0x00000000}},  //   анцу, _אברה, _beža,\n  { {0x66020b80, 0x7e650022, 0x00000000, 0x00000000}},  //   _alok, _kuhp,   ,\n  { {0x66020209, 0x7a380047, 0x25bf0035, 0x00000000}},  //   _blok, gíts, teul_,\n  { {0x20180294, 0x00000000, 0x00000000, 0x00000000}},  //   ziri_,   ,   ,\n  { {0x644a002a, 0x629a0211, 0x20181450, 0x00000000}},  //   _bhfi, erto, yiri_,\n  { {0x6602021e, 0x3fce0044, 0x60d60065, 0x00000000}},  //   _elok, _রক্ষ, _rrym,\n  { {0x6602009f, 0x2018014a, 0xb33c002b, 0x00000000}},  //   _flok, viri_, tgħa,\n  { {0x443e06a8, 0x20180729, 0x00000000, 0x00000000}},  //   alt_, wiri_,   ,\n  { {0x201811af, 0x25e002fb, 0x657b1451, 0x00000000}},  //   tiri_, कारी_, mbuh,\n  { {0x5ebb0044, 0x04920025, 0x23290256, 0x00000000}},  //   _উপজে, _الوح, _поли_,\n  { {0x2018000b, 0x7f1901ff, 0x629a00ca, 0x00000000}},  //   riri_, віту_, crto,\n  { {0x20180da4, 0x61fd1452, 0x2ca0006c, 0x00000000}},  //   siri_, cksl, tuid_,\n  { {0xfce30069, 0x248d1453, 0x271f013d, 0x00000000}},  // [25e0] бото, nsem_, यपुर_,\n  { {0x6d4601dc, 0x207b0049, 0x2ca003b3, 0x00000000}},  //   _vzka, _ראיא, ruid_,\n  { {0x23a60061, 0x7c3e0009, 0x657b011c, 0x00000000}},  //   _खासद, rlpr, kbuh,\n  { {0x5336007b, 0x248d095c, 0x3f8a00a9, 0x00000000}},  //   אנען_, ksem_, labu_,\n  { {0x81ce0055, 0x46140014, 0xddc40036, 0x00000000}},  //   রাপ_, یوتر, rmiń,\n  { {0x660201c5, 0x67d40131, 0x3f8a00e7, 0x00000000}},  //   _slok, року, nabu_,\n  { {0x66020006, 0x443e0190, 0xdcfd0089, 0x00000000}},  //   _plok, vlt_, _iesā,\n  { {0x6e2401e5, 0x3f8a000b, 0x7bce01a3, 0x00000000}},  //   nnib, habu_, _habu,\n  { {0x7bce1454, 0xa91d0746, 0x248d0010, 0x00000000}},  //   _kabu, _teža, gsem_,\n  { {0x78a21455, 0x443e009d, 0x439401fc, 0x00000000}},  //   muov, ult_, јанс,\n  { {0x7bce006a, 0x81ce0044, 0x3f85000c, 0x00000000}},  //   _mabu, রান_, ðlum_,\n  { {0x7bce1456, 0x25e00061, 0xdb1c0051, 0x00000000}},  //   _labu, काळी_, _barú,\n  { {0x78a20197, 0x00000000, 0x00000000, 0x00000000}},  //   nuov,   ,   ,\n  { {0x7bce011c, 0x629a00ca, 0xcbbf0044, 0x00000000}},  //   _nabu, prto, _উচ্ছ,\n  { {0x321908d2, 0xa91d1457, 0xb7db0049, 0x00000000}},  //   pisy_, _nežn, עקלי,\n  { {0x821500a1, 0x7bce011c, 0x00000000, 0x00000000}},  //   _خوبص, _aabu,   ,\n  { {0x3f8a000b, 0x69c21458, 0x9c3900ed, 0x00000000}},  // [25f0] babu_, deoe, впат_,\n  { {0x5d5400ed, 0x7bce01a3, 0x26e4013d, 0x00000000}},  //   скут, _cabu, _कपूर_,\n  { {0xdb150211, 0x5e470025, 0x7bce01c5, 0x00000000}},  //   _razó, _مضحك, _dabu,\n  { {0x248d1083, 0xdb15004a, 0xa91d00ca, 0x00000000}},  //   ysem_, _sazó, _dežn,\n  { {0x7bce1459, 0x225907e4, 0x00000000, 0x00000000}},  //   _fabu, írky_,   ,\n  { {0xb8cd03d7, 0x7bce145a, 0xa695098c, 0x00000000}},  //   _कम_, _gabu, ариј,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7bce0027, 0x3f8a0087, 0x6b87012d, 0x00000000}},  //   _zabu, zabu_, _hejg,\n  { {0x81ce0055, 0xccf2007b, 0xdb05010f, 0x00000000}},  //   রাম_, ַכט_, gehö,\n  { {0x3ea30065, 0x798b0058, 0x7d0d016c, 0x00000000}},  //   kujt_, lagw, izas,\n  { {0x248d0181, 0xfbcf0044, 0x657b011c, 0x00000000}},  //   ssem_, রাপত, pbuh,\n  { {0xdb0503a9, 0xa06a0c27, 0xc1060025, 0x00000000}},  //   behö, кама_, لوجي,\n  { {0x3f8a000b, 0xa91d01c5, 0x00000000, 0x00000000}},  //   tabu_, _mežo,   ,\n  { {0x8fa601f9, 0x661b010a, 0x660901d5, 0x00000000}},  //   јаве, liuk, lhek,\n  { {0x3f8a0020, 0xa2250014, 0x539a009b, 0x00000000}},  //   rabu_, _گروه, _סיקו,\n  { {0x3f8a0020, 0x661b0006, 0x442508d9, 0x00000000}},  //   sabu_, niuk, lnl_,\n  { {0xed5a01f9, 0x3b86005e, 0x7bce13b1, 0x00000000}},  // [2600] тоа_, илаг, _pabu,\n  { {0x4f960153, 0x9b850647, 0x644100ff, 0x00000000}},  //   _триу, مؤمن, nlli,\n  { {0x644100f4, 0xbf9b00a3, 0x661b0a64, 0x00000000}},  //   illi, _בייש, kiuk,\n  { {0x7bce145b, 0xe8fa012b, 0xbcfb0047, 0x00000000}},  //   _wabu, кле_, _igén,\n  { {0x7fe904e1, 0x7d0d0036, 0x8d630088, 0x00000000}},  //   _شریف_, czas, _євре,\n  { {0x48130088, 0xa91d0ecc, 0x69c20032, 0x00000000}},  //   оміс, _težn, seoe,\n  { {0xddc40089, 0x2cb20007, 0xe5c6030d, 0x00000000}},  //   rmiņ, ltyd_, аспо,\n  { {0x8881026c, 0x6441021e, 0xa01b145c, 0x00000000}},  //   _کیون, elli, nsör,\n  { {0x2cb201d6, 0x186a0088, 0x75fc000a, 0x00000000}},  //   ntyd_, _рази_, _jézi,\n  { {0xf366098c, 0xe9ff001d, 0x6908005d, 0x00000000}},  //   штин, _phần_, ırdı,\n  { {0x7bd90049, 0x5334005e, 0x326602ea, 0x00000000}},  //   אַרק, сент, јтов,\n  { {0xd5b002fd, 0x9f580051, 0x66090020, 0x00000000}},  //   _رفت_, bhrú_, chek,\n  { {0x6441145d, 0x600200c4, 0xba5708cd, 0x00000000}},  //   blli, _cômo, יסטו_,\n  { {0xe9ff001d, 0xfe73031d, 0x2005000c, 0x00000000}},  //   _thần_, قدر_, óli_,\n  { {0x54390049, 0x22940025, 0x3a2600bb, 0x00000000}},  //   _געװא, _البس, knop_,\n  { {0x2cb201d6, 0xb7fe0044, 0x75fc009d, 0x00000000}},  //   ftyd_, ্চিত_, _bézi,\n  { {0x6b870065, 0xacf802e9, 0x7c87007c, 0x00000000}},  // [2610] _pejg, анту_, рубе,\n  { {0x60cd0013, 0x81ce0044, 0x3ea30065, 0x00000000}},  //   _isam, রাণ_, pujt_,\n  { {0xa91d145e, 0xdce70180, 0x6fb6009e, 0x00000000}},  //   _pežo, ılıd, _امپا,\n  { {0xa2d7006e, 0x00000000, 0x00000000, 0x00000000}},  //   यित्,   ,   ,\n  { {0x491103d7, 0x644100b0, 0x798b0f65, 0x00000000}},  //   _देखो_, ylli, ragw,\n  { {0x60cd0020, 0x798b107e, 0x8d5a009b, 0x00000000}},  //   _msam, sagw, _תכשי,\n  { {0x660905c6, 0x7bc5145f, 0xfeca0049, 0x00000000}},  //   thek, mehu, ָמפּ,\n  { {0xc4850265, 0x60cd06a6, 0x7bc50146, 0x00000000}},  //   блик, _osam, lehu,\n  { {0xf795008b, 0xe9ff0011, 0x64411460, 0x00000000}},  //   _газэ, _chấn_, tlli,\n  { {0xf09f01e8, 0x66090f87, 0xf7700025, 0x00000000}},  //   drà_, shek, _قام_,\n  { {0xd7f80b87, 0x60cd07ed, 0x7c2200f4, 0x00000000}},  //   _тут_, _asam, éori,\n  { {0x64411461, 0x7bc50065, 0x60cd0145, 0x00000000}},  //   slli, hehu, _bsam,\n  { {0x7bc500ea, 0x79890112, 0xf09f00f6, 0x00000000}},  //   kehu, _meew, grà_,\n  { {0x43850054, 0x18350049, 0x249f0190, 0x00000000}},  //   _الثق, מאָל_, mrum_,\n  { {0x60cd06bd, 0x7bc50190, 0xf09f0129, 0x00000000}},  //   _esam, dehu, arà_,\n  { {0xf09f00d4, 0x249f1462, 0x4d66007e, 0x00000000}},  //   brà_, orum_, скав,\n  { {0x1b150055, 0x61e41463, 0xfce30140, 0x00000000}},  // [2620] _তুলে_, _inil, пото,\n  { {0x7bc50030, 0xf1bf0051, 0x61f600e0, 0x00000000}},  //   gehu, nnán_, _hoyl,\n  { {0x249f0180, 0x2cb20007, 0x201a00e0, 0x00000000}},  //   hrum_, styd_, _impi_,\n  { {0x994a0025, 0x9b9602fd, 0xc332009b, 0x00000000}},  //   هلال_, _گلست, הוב_,\n  { {0x2d800020, 0x98a30242, 0x5e570049, 0x00000000}},  //   mbie_, зиче, _ליטע_,\n  { {0x249f1464, 0x2d800bd3, 0xdb1e1465, 0x00000000}},  //   drum_, lbie_, lepí,\n  { {0x05240044, 0x667400a6, 0x201a0022, 0x00000000}},  //   _পরের_, زگار, _mmpi_,\n  { {0xe5c6007c, 0xe9ff0011, 0x443c000c, 0x00000000}},  //   сско, _phấn_, _skv_,\n  { {0x32ee006b, 0x8cdb006e, 0xb9060364, 0x00000000}},  //   məyi_, नियो, _узак,\n  { {0x61e40f6a, 0xf09f0207, 0x2ca00f9b, 0x00000000}},  //   _anil, vrà_, irid_,\n  { {0x61f6014a, 0x249f00f6, 0x60cd00ea, 0x00000000}},  //   _boyl, arum_, _ssam,\n  { {0xf09f04b9, 0x64a6007e, 0x201a1466, 0x00000000}},  //   trà_, _гада, _ampi_,\n  { {0x339407d0, 0x7bc500e7, 0x44fa0439, 0x00000000}},  //   _далё, yehu, _حراج_,\n  { {0x3e6e0224, 0xf09f1467, 0x2ca01468, 0x00000000}},  //   _být_, rrà_, drid_,\n  { {0x7bc50190, 0x61f60544, 0x32b70025, 0x00000000}},  //   vehu, _foyl, _هدية_,\n  { {0xf09f0197, 0x60cd0051, 0x2ceb007c, 0x00000000}},  //   prà_, _tsam, льзо_,\n  { {0x60cd0091, 0x7bc51469, 0x00000000, 0x00000000}},  // [2630] _usam, tehu,   ,\n  { {0x7b67146a, 0xbddb146b, 0xdcfd0006, 0x00000000}},  //   стае, _chèr, _nesą,\n  { {0x2d800ace, 0x2ca00004, 0x79890022, 0x00000000}},  //   bbie_, arid_, _peew,\n  { {0x80cc0044, 0x7bc50190, 0xdb1c000c, 0x00000000}},  //   ামর্, sehu, _farþ,\n  { {0x7bc50190, 0x75fc0010, 0xe3b80095, 0x00000000}},  //   pehu, _jézu, kfı_,\n  { {0x4cba0049, 0xbddb009d, 0x8699007c, 0x00000000}},  //   _דזשו, _thès, атит_,\n  { {0x3209005a, 0x7989146c, 0x24860022, 0x00000000}},  //   _olay_, _teew, _awom_,\n  { {0x249f092d, 0xb05b010f, 0x32ee006b, 0x00000000}},  //   trum_, swäh, cəyi_,\n  { {0xdb1e001a, 0x61f60203, 0x00000000, 0x00000000}},  //   cepâ, _royl,   ,\n  { {0x61e4000c, 0x3209146d, 0x249f000c, 0x00000000}},  //   _snil, _alay_, rrum_,\n  { {0x81ce0044, 0xf1bf13ab, 0x320900d4, 0x00000000}},  //   রাস_, rnán_, _blay_,\n  { {0x2d8b146e, 0xcad6009b, 0x32090133, 0x00000000}},  //   _nece_, קורת_, _clay_,\n  { {0xa06a0816, 0x628e0010, 0xb5c80014, 0x00000000}},  //   рага_, ábor, _دونم_,\n  { {0x320907b1, 0xee3f0142, 0x00000000, 0x00000000}},  //   _elay_, _aký_,   ,\n  { {0x32090b3d, 0x9e0501f5, 0x61f6013f, 0x00000000}},  //   _flay_, रसंघ_, _toyl,\n  { {0x61e40093, 0x3d150061, 0x2d8b01ed, 0x00000000}},  //   _unil, _नइखे_, _cece_,\n  { {0x2d8b003b, 0xee370245, 0xbddb00f4, 0x00000000}},  // [2640] _dece_, іну_, _chèq,\n  { {0x8b26007e, 0xeb9a0d99, 0x2ca008ce, 0x00000000}},  //   одзе, риж_, rrid_,\n  { {0x2d8b0207, 0xf1bf0010, 0x6ac603d6, 0x00000000}},  //   _fece_, knál_, تقام,\n  { {0xa3d503d7, 0x752f0036, 0x2d8b01df, 0x00000000}},  //   ाएँ_, żczy, _gece_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xec3400a6, 0x2d8b001a, 0x00000000, 0x00000000}},  //   _روزگ, _zece_,   ,\n  { {0xdb1c0065, 0x491a013d, 0xab270517, 0x00000000}},  //   _mbrë, _मेरो_, _дора_,\n  { {0x16370054, 0x7ae10047, 0xd5b7041f, 0x00000000}},  //   يسية_, _álta, ось_,\n  { {0xa3d503d7, 0x6fca0061, 0x442a003b, 0x00000000}},  //   ाएं_, ाजां, ицом_,\n  { {0x22400047, 0x344a00e2, 0x00000000, 0x00000000}},  //   _akik_, јчин_,   ,\n  { {0x32090038, 0xe73a0088, 0x2a6400e7, 0x00000000}},  //   _play_, _теж_, _kimb_,\n  { {0x60100073, 0x78a20062, 0x80ac006e, 0x00000000}},  //   _jämf, orov, _जमशे,\n  { {0xd258008b, 0x2d8b001a, 0xf9930104, 0x00000000}},  //   юць_, _rece_, ורר_,\n  { {0x2d8b016c, 0x600b146f, 0x78a2007f, 0x00000000}},  //   _sece_, _sümb, irov,\n  { {0x28d1007d, 0xed8b003b, 0x6579009d, 0x00000000}},  //   _दैनि, исак_, _éché,\n  { {0xdb1c010f, 0x31350f62, 0x00000000, 0x00000000}},  //   _darü, _нейр,   ,\n  { {0x2d8b037e, 0x31690010, 0x69c6000c, 0x00000000}},  // [2650] _vece_, _igaz_, _ókey,\n  { {0x9f58009f, 0x78a20142, 0x26de0197, 0x00000000}},  //   skrá_, drov, _orto_,\n  { {0x81ce0055, 0x3f910107, 0xa91d0059, 0x00000000}},  //   রার_, mazu_, _težk,\n  { {0x3f910091, 0x2a64008a, 0xdb1c004a, 0x00000000}},  //   lazu_, _cimb_, _aaró,\n  { {0x78a20387, 0xdb150181, 0xe9d8007e, 0x00000000}},  //   grov, _razõ, ўкі_,\n  { {0xf7710137, 0xa91d0142, 0x3f91016c, 0x00000000}},  //   رات_, _ježi, nazu_,\n  { {0x1ab4081e, 0xf4200044, 0x26de0087, 0x00000000}},  //   _обря, নকার_, _crto_,\n  { {0x78a2049c, 0xa91d1470, 0xc4850256, 0x00000000}},  //   brov, _leži, плик,\n  { {0xdb1c1471, 0x26de0026, 0x7bd504eb, 0x00000000}},  //   _abrè, _erto_, _kazu,\n  { {0xa91d1472, 0xb68600a1, 0xf1bf0010, 0x00000000}},  //   _neži, _کھول_, snál_,\n  { {0x7bd50ba3, 0x3f91002d, 0x442e1473, 0x00000000}},  //   _mazu, dazu_, _djf_,\n  { {0x7bd500ca, 0xdb1c0036, 0x06c30044, 0x00000000}},  //   _lazu, _zaró, ্মদি,\n  { {0xad9b0051, 0x442e0087, 0x386d004a, 0x00000000}},  //   _glúi, _fjf_, _juer_,\n  { {0xdb1c0173, 0x31690288, 0x25ad010e, 0x00000000}},  //   _marò, _egaz_, lgel_,\n  { {0x25ad0016, 0x6d4f004a, 0x25e00061, 0x00000000}},  //   ogel_, _azca, काची_,\n  { {0x386d0007, 0x3f91012d, 0xe9ff0082, 0x00000000}},  //   _ouer_, aazu_, _thẹn_,\n  { {0x7bd51474, 0xed5700ed, 0x00000000, 0x00000000}},  // [2660] _bazu, зот_,   ,\n  { {0x7bd5000d, 0x91a800a1, 0x799b0085, 0x00000000}},  //   _cazu, _انکے_, _aduw,\n  { {0x7bd501a2, 0x6d4f004a, 0x00000000, 0x00000000}},  //   _dazu, _ezca,   ,\n  { {0x78a20027, 0x38c800a6, 0x6abb016c, 0x00000000}},  //   trov, قاتی_, _ćuft,\n  { {0x2d921475, 0xdb1c090b, 0x79820036, 0x00000000}},  //   maye_, _paró, rbow,\n  { {0x25ad010f, 0x2fca0a26, 0x7bd50035, 0x00000000}},  //   egel_, nebg_, _gazu,\n  { {0x78a2012b, 0xdb1c008e, 0x386d01a2, 0x00000000}},  //   srov, _varó, _euer_,\n  { {0x78a20038, 0x25ad0010, 0x2d921476, 0x00000000}},  //   prov, ggel_, naye_,\n  { {0xb4d60164, 0x98a3007c, 0x7bd500e7, 0x00000000}},  //   ाटे_, _пите, _yazu,\n  { {0xd7760025, 0x2d921477, 0xb8650025, 0x00000000}},  //   _رائع, haye_, _قالو,\n  { {0x600b005f, 0x056606e1, 0x2d92055b, 0x00000000}},  //   _nüma, _евен, kaye_,\n  { {0x7c3e0253, 0x442e0045, 0xa91d00ca, 0x00000000}},  //   hopr, _wjf_, _seži,\n  { {0x2d92000b, 0x7c3e0c8a, 0x463b0049, 0x00000000}},  //   daye_, kopr, _פעדע,\n  { {0x54530088, 0x644f0666, 0xa3e30316, 0x00000000}},  //   _звіт, ïcit, _पोप_,\n  { {0x645a0fde, 0x7bd50295, 0x3f910387, 0x00000000}},  //   mmti, _razu, razu_,\n  { {0x443e006a, 0x2d920061, 0x6d460007, 0x00000000}},  //   lot_, gaye_, _byka,\n  { {0x423801f8, 0x7bd51478, 0x443e0007, 0x00000000}},  // [2670] _מנהל_, _pazu, oot_,\n  { {0x443e001e, 0xf092019b, 0x442c000c, 0x00000000}},  //   not_, _שני_, nnd_,\n  { {0x2d92000b, 0x644801e5, 0x7bd5001a, 0x00000000}},  //   baye_, ildi, _vazu,\n  { {0x7bd50020, 0x2d920009, 0xa2a4006e, 0x00000000}},  //   _wazu, caye_, _किन्,\n  { {0xddc4038c, 0x443e006a, 0x89370054, 0x00000000}},  //   lmiş, kot_, أعضا,\n  { {0xd3660b59, 0x443e001e, 0x7c3e0197, 0x00000000}},  //   _له_, jot_, copr,\n  { {0x443e1479, 0x6e2d05f0, 0xddc4005a, 0x00000000}},  //   dot_, onab, nmiş,\n  { {0x442c05d0, 0x644800c7, 0x386d009d, 0x00000000}},  //   end_, eldi, _tuer_,\n  { {0x442c009f, 0x62980207, 0x69cb147a, 0x00000000}},  //   fnd_, _avvo, mege,\n  { {0x443e147b, 0x69cb03a1, 0x442c0009, 0x00000000}},  //   got_, lege, gnd_,\n  { {0x81d70055, 0xdb1c000c, 0xd1ca007c, 0x00000000}},  //   সান_, _jarð, олне_,\n  { {0x6448022b, 0x69d9147c, 0x442c01b5, 0x00000000}},  //   aldi, ndwe, and_,\n  { {0x20040181, 0x6e2d0016, 0x628a01f3, 0x00000000}},  //   êmio_, dnab, _ewfo,\n  { {0x443e0687, 0x2d920263, 0x81ce0044, 0x00000000}},  //   cot_, waye_, রাই_,\n  { {0x2d92147d, 0x7f43007c, 0x7c3e09fc, 0x00000000}},  //   taye_, верж, vopr,\n  { {0x6281147e, 0x6e2d000c, 0x7649014a, 0x00000000}},  //   mplo, gnab, nley,\n  { {0x7c3e0263, 0x2d920173, 0x60c400e7, 0x00000000}},  // [2680] topr, raye_, _upim,\n  { {0x2d92147f, 0x69d901c3, 0x7649049d, 0x00000000}},  //   saye_, edwe, hley,\n  { {0x600b006c, 0x7649014a, 0x62810173, 0x00000000}},  //   _kümn, kley, nplo,\n  { {0x6b8e022b, 0x69cb05c6, 0x443e0089, 0x00000000}},  //   _webg, gege, zot_,\n  { {0x442c009f, 0x443e0058, 0x69c00061, 0x00000000}},  //   ynd_, yot_, _vbme,\n  { {0x69d901d6, 0x443e1480, 0x656b0026, 0x00000000}},  //   adwe, xot_, _aggh,\n  { {0x443e004f, 0x69cb054e, 0xdb1c000c, 0x00000000}},  //   vot_, bege, _garð,\n  { {0xd49a00d7, 0xceb300b6, 0x442c10a5, 0x00000000}},  //   оро_, דיה_, wnd_,\n  { {0x443e1481, 0x7d040093, 0x64a300ed, 0x00000000}},  //   tot_, nyis, вања,\n  { {0x442c1482, 0x9f5a0023, 0xb05b01a2, 0x00000000}},  //   und_, _copë_, hwär,\n  { {0x443e001e, 0x442c00db, 0xe57a008b, 0x00000000}},  //   rot_, rnd_, _дзе_,\n  { {0x443e0089, 0x7d0400b0, 0x84ea01d8, 0x00000000}},  //   sot_, kyis, _وفاق_,\n  { {0x443e1483, 0x92be0044, 0xdb1e0961, 0x00000000}},  //   pot_, ঁটে_, lepä,\n  { {0xa29401ff, 0xdb1e0181, 0xddc4005d, 0x00000000}},  //   _закі, cepç, tmiş,\n  { {0x81d70044, 0x69d90016, 0xb05b01a2, 0x00000000}},  //   সাব_, ydwe, fwär,\n  { {0xddc4038c, 0x76400319, 0xc333009b, 0x00000000}},  //   rmiş, nomy, _שוק_,\n  { {0x6e2d000c, 0x69cb1484, 0xdc5501fc, 0x00000000}},  // [2690] rnab, vege, евањ,\n  { {0x69cb07eb, 0x9f89000c, 0x6e2d00f8, 0x00000000}},  //   wege, _góðu_, snab,\n  { {0x76400006, 0x7649014a, 0xe0df0026, 0x00000000}},  //   komy, yley, lvò_,\n  { {0xdb1c009f, 0x76400036, 0xdddd0036, 0x00000000}},  //   _varð, jomy, _wisł,\n  { {0x69cb0599, 0x7d160036, 0x999600a1, 0x00000000}},  //   rege, czys, رپور_,\n  { {0x69cb0059, 0x78ab00c7, 0xd76300a1, 0x00000000}},  //   sege, rugv, نچای,\n  { {0x76491402, 0x69cb0030, 0x628100b4, 0x00000000}},  //   tley, pege, xplo,\n  { {0xb8d50055, 0x00000000, 0x00000000, 0x00000000}},  //   _জন_,   ,   ,\n  { {0x3e750039, 0xe7e00164, 0x764903fb, 0x00000000}},  //   _låt_, _गोवा_, rley,\n  { {0x764906b5, 0x62810116, 0x00000000, 0x00000000}},  //   sley, tplo,   ,\n  { {0x3e750039, 0x7649011c, 0xc7d6009b, 0x00000000}},  //   _nåt_, pley, _רועי_,\n  { {0x6281088d, 0x76400912, 0x31790009, 0x00000000}},  //   rplo, comy, gcsz_,\n  { {0x62810209, 0x00000000, 0x00000000, 0x00000000}},  //   splo,   ,   ,\n  { {0x25bf0951, 0x3e7500d8, 0x660905b7, 0x00000000}},  //   lful_, _båt_, lkek,\n  { {0x64410091, 0x6e241485, 0x8464005e, 0x00000000}},  //   moli, tiib, _ръце,\n  { {0xee3a01fb, 0x7d04021e, 0xa2a40204, 0x00000000}},  //   їна_, tyis, _कित्,\n  { {0xdca30216, 0x44251486, 0x25bf04be, 0x00000000}},  // [26a0] лати, oil_, iful_,\n  { {0x7d160046, 0x64410016, 0x6e241487, 0x00000000}},  //   rzys, noli, siib,\n  { {0xa3b70204, 0x387f1488, 0xad9b0d62, 0x00000000}},  //   _छान_, _atur_, _clús,\n  { {0x6441018e, 0x44250811, 0x7d041489, 0x00000000}},  //   holi, hil_, pyis,\n  { {0x6441091e, 0x25bf0016, 0x4973007e, 0x00000000}},  //   koli, dful_, уліс,\n  { {0x442501a3, 0xf093009b, 0x6441073a, 0x00000000}},  //   jil_, ננו_, joli,\n  { {0x6441148a, 0x442507ac, 0x7640013e, 0x00000000}},  //   doli, dil_, tomy,\n  { {0xdb1e006c, 0xd90d00a1, 0xcb67007e, 0x00000000}},  //   repä, _ڈیم_, _часе_,\n  { {0xddde001e, 0xdb1e01b1, 0x764005ac, 0x00000000}},  //   _atpū, sepä, romy,\n  { {0x6441018e, 0x442503b0, 0x600b0279, 0x00000000}},  //   goli, gil_, _cüml,\n  { {0x60d60133, 0xdb1c00f6, 0xb05b01a2, 0x00000000}},  //   _asym, _obrí, ltäg,\n  { {0x44250051, 0x6609148b, 0xad9b00f6, 0x00000000}},  //   ail_, ckek, _llúr,\n  { {0x6441148c, 0xb5fb0104, 0xc05b0088, 0x00000000}},  //   boli, _מלאכ, зів_,\n  { {0x20d60107, 0x64410207, 0x31790061, 0x00000000}},  //   džić_, coli, scsz_,\n  { {0xdd95007e, 0x80c40044, 0x00000000, 0x00000000}},  //   кавы, শিষ্,   ,\n  { {0x931200a1, 0x3e7502e1, 0x629a148d, 0x00000000}},  //   _لوڈش, _våt_, msto,\n  { {0x629a001e, 0x61ed148e, 0xd2f8026c, 0x00000000}},  // [26b0] lsto, _inal, _رکھا_,\n  { {0x600b0eaa, 0x629a0052, 0x00000000, 0x00000000}},  //   _kümm, osto,   ,\n  { {0xd011026c, 0x61ed0030, 0x76aa006b, 0x00000000}},  //   _ملک_, _knal, _təyy,\n  { {0x6441148f, 0x629a00b0, 0xdbd7003c, 0x00000000}},  //   zoli, isto, _sääs,\n  { {0xdbd70368, 0x442506db, 0xfd9601f8, 0x00000000}},  //   _pääs, yil_, _בדרך_,\n  { {0x629a0ade, 0x4425005f, 0x2ca900f8, 0x00000000}},  //   ksto, xil_, mrad_,\n  { {0x4425060b, 0x629a0091, 0xe7e00061, 0x00000000}},  //   vil_, jsto, _गोळा_,\n  { {0x44250016, 0x64411490, 0x78a4016e, 0x00000000}},  //   wil_, woli, šiva,\n  { {0x629a0027, 0x25bf00ab, 0x66090145, 0x00000000}},  //   esto, rful_, rkek,\n  { {0x69db022b, 0x629a000c, 0x2b9c00b9, 0x00000000}},  //   _haue, fsto, mácí_,\n  { {0x629a127f, 0x69db1491, 0x38bb01d6, 0x00000000}},  //   gsto, _kaue, lêr_,\n  { {0x44251492, 0x412a02d3, 0xe5e500a2, 0x00000000}},  //   sil_, домо_, _جزئی,\n  { {0x44250607, 0x66060047, 0x69db010f, 0x00000000}},  //   pil_, ökke, _maue,\n  { {0x2ca91493, 0x629a01a2, 0x69db0e42, 0x00000000}},  //   drad_, bsto, _laue,\n  { {0xa067132e, 0x629a1494, 0x7db60131, 0x00000000}},  //   тара_, csto, ксац,\n  { {0x6458008d, 0x3ea51430, 0xf1bf008e, 0x00000000}},  //   _zhvi, álta_, lián_,\n  { {0x2ca9012b, 0x8e5501fb, 0xdd8f01d8, 0x00000000}},  // [26c0] grad_, утрі, زول_,\n  { {0x61ed091e, 0x81ce0044, 0x62860107, 0x00000000}},  //   _znal, রাও_, ćkov,\n  { {0x69db010f, 0x3f9801ed, 0x93bc0035, 0x00000000}},  //   _baue, maru_, onăr,\n  { {0x2ca9006c, 0xa2a4006e, 0x69db0f57, 0x00000000}},  //   brad_, _किस्, _caue,\n  { {0x69db0fa5, 0xa967017f, 0x629a0087, 0x00000000}},  //   _daue, вица_, zsto,\n  { {0xbcfb0047, 0x629a0036, 0x81ce0044, 0x00000000}},  //   _egés, ysto, রাট_,\n  { {0x48ee03d7, 0x59dd0061, 0x629a1495, 0x00000000}},  //   _आपको_, _नोकर, xsto,\n  { {0x7bdc0149, 0xe5c60679, 0x76591496, 0x00000000}},  //   _haru, тско, _chwy,\n  { {0x26030219, 0x3f980089, 0x7bdc1497, 0x00000000}},  //   _años_, karu_, _karu,\n  { {0x7bde00c7, 0x629a05c6, 0x7bdc1498, 0x00000000}},  //   ndpu, tsto, _jaru,\n  { {0x7bdc1499, 0x81dc0055, 0x629a00b0, 0x00000000}},  //   _maru, ঠান_, usto,\n  { {0x7bdc149a, 0x3f93149b, 0xe8df0082, 0x00000000}},  //   _laru, _sexu_, _uyển_,\n  { {0x629a0056, 0x3f9804c0, 0xf1bf149c, 0x00000000}},  //   ssto, faru_, bián_,\n  { {0x7bdc149d, 0x629a0056, 0x4394005e, 0x00000000}},  //   _naru, psto, _сакс,\n  { {0x5f940594, 0x81ce0044, 0xc43400a1, 0x00000000}},  //   рист, রাজ_, _لکھت,\n  { {0x2ca908c9, 0x61ed016a, 0x7bdc149e, 0x00000000}},  //   trad_, _unal, _aaru,\n  { {0x68e2003b, 0x7bdc00f0, 0x3f980142, 0x00000000}},  // [26d0] jvod, _baru, baru_,\n  { {0x600b038c, 0x7bdc001a, 0x2ca9010f, 0x00000000}},  //   _mümk, _caru, rrad_,\n  { {0xba740379, 0x69db0032, 0x68e20035, 0x00000000}},  //   لانت, _paue, evod,\n  { {0xc33300b6, 0xb05b0a5d, 0x60100039, 0x00000000}},  //   בוע_, städ, _jämn,\n  { {0x7659018e, 0x80d9013d, 0x7bdc149f, 0x00000000}},  //   _rhwy, मिटे, _faru,\n  { {0x60100073, 0x7bdc1108, 0x386c0022, 0x00000000}},  //   _lämn, _garu, _cidr_,\n  { {0xaa670780, 0x8cdb006e, 0x76590016, 0x00000000}},  //   _атак, निको, _phwy,\n  { {0x7bdc04c8, 0x3f9814a0, 0x60100039, 0x00000000}},  //   _zaru, zaru_, _nämn,\n  { {0x29190039, 0x7bdc00e7, 0x2459009d, 0x00000000}},  //   _åsa_, _yaru, hème_,\n  { {0x87d70879, 0x23d50478, 0x6b9514a1, 0x00000000}},  //   _جغرا, уцир, _jezg,\n  { {0x3f980027, 0x6b95008f, 0xf1bf0142, 0x00000000}},  //   varu_, _mezg, rián_,\n  { {0x3f9814a2, 0x79990085, 0x394d0173, 0x00000000}},  //   waru_, naww, _kyes_,\n  { {0x3f98016e, 0x00000000, 0x00000000, 0x00000000}},  //   taru_,   ,   ,\n  { {0x70560426, 0x6b950825, 0x2a6d01a2, 0x00000000}},  //   انسا, _nezg, _lieb_,\n  { {0xdb1c0428, 0x68e204c8, 0x6da6041f, 0x00000000}},  //   _obrá, zvod, лива,\n  { {0x7bdc001e, 0x3f9801c5, 0x2bc6013d, 0x00000000}},  //   _saru, saru_, र्ना,\n  { {0x3f980089, 0x6b950ad8, 0x229800b9, 0x00000000}},  // [26e0] paru_, _bezg, _týká_,\n  { {0xb05b00b0, 0xd0f7009b, 0xdb1c10c9, 0x00000000}},  //   ttäe, _עמית_, _abrá,\n  { {0x7bdc0ac2, 0x81d70055, 0x2a6d002b, 0x00000000}},  //   _varu, সার_, _bieb_,\n  { {0x7bdc0a70, 0xe947025a, 0x02b60049, 0x00000000}},  //   _waru, گرمی, טלעך_,\n  { {0xa3b301f5, 0x7bdc04cb, 0x69c2018d, 0x00000000}},  //   टला_, _taru, rfoe,\n  { {0xd6da017f, 0xa2a40164, 0x600b006b, 0x00000000}},  //   ети_, _किल्, _cümh,\n  { {0x394d00ab, 0xfd500082, 0x68e2013e, 0x00000000}},  //   _eyes_, _nghẹ, svod,\n  { {0xa5bd0006, 0x00000000, 0x00000000, 0x00000000}},  //   liųj,   ,   ,\n  { {0x27ef0224, 0x20180022, 0x9916007e, 0x00000000}},  //   ální_, khri_, _сьві,\n  { {0x1cbb0049, 0xd5a4009e, 0x77920241, 0x00000000}},  //   עמיע, _چلای, _ایثا,\n  { {0x2bc602f4, 0xe9ff0011, 0x2bf70104, 0x00000000}},  //   र्या, _chặn_, אמין_,\n  { {0x54e6004b, 0xdb0501a2, 0xf1bf0062, 0x00000000}},  //   _مستق, pfhö, ciál_,\n  { {0x62830056, 0x75d30379, 0x00000000, 0x00000000}},  //   _etno, _دينا,   ,\n  { {0x2bc602fb, 0xc5bc0044, 0xddd00340, 0x00000000}},  //   र्मा, _অফটপ, _češk,\n  { {0xe1ff0010, 0x00000000, 0x00000000, 0x00000000}},  //   tmód_,   ,   ,\n  { {0x66020004, 0xfc240055, 0x62880a7e, 0x00000000}},  //   _jook, বকোষ_, mpdo,\n  { {0x82340167, 0x2001006c, 0x2a6d14a3, 0x00000000}},  // [26f0] _دروا, _tohi_, _rieb_,\n  { {0x66020038, 0x6fb2013d, 0x60cd011c, 0x00000000}},  //   _look, _जाएं, _ipam,\n  { {0xdddc11af, 0xf09f00f6, 0x00000000, 0x00000000}},  //   sprš, lsà_,   ,\n  { {0x394d14a4, 0x5efa00a0, 0xfde9007d, 0x00000000}},  //   _pyes_, _ספרד, _ऑफिस_,\n  { {0x0ff800a1, 0x7c840140, 0x6b950823, 0x00000000}},  //   _شعیب_, _гусе, _tezg,\n  { {0x601003a9, 0x60cd14a5, 0x79990145, 0x00000000}},  //   _näml, _mpam, saww,\n  { {0x66020038, 0xe5710025, 0x4ac90061, 0x00000000}},  //   _book, يطة_, _रहिव,\n  { {0x660201a6, 0x7aea0030, 0x1b1e0044, 0x00000000}},  //   _cook, æfte, _বুকে_,\n  { {0xf1bf0161, 0xc7d9005e, 0x660214a6, 0x00000000}},  //   riál_, _имах_, _dook,\n  { {0x291d00e7, 0x4ac90061, 0xe4c80025, 0x00000000}},  //   mzwa_, _रहाव, ابين_,\n  { {0xfbd200b6, 0x60cd0085, 0x2d9b0023, 0x00000000}},  //   חתי_, _apam, kaqe_,\n  { {0x01660ae0, 0xb34500f6, 0x998f0006, 0x00000000}},  //   икно, _alçà, mogų_,\n  { {0xe0d70265, 0x2bc60061, 0x291d00e7, 0x00000000}},  //   авя_, र्डा, nzwa_,\n  { {0x249f0022, 0x660204a5, 0x6e260145, 0x00000000}},  //   msum_, _zook, _smkb,\n  { {0x44d60046, 0x69c900d4, 0x92f601fa, 0x00000000}},  //   _zł_, _obee, _نفوذ_,\n  { {0x409601ee, 0x442700e0, 0x68e90203, 0x00000000}},  //   _крот, _hmn_, _ored,\n  { {0x249f0a16, 0x8fa6003b, 0x6010044e, 0x00000000}},  // [2700] nsum_, _капе, _hämm,\n  { {0x81d70044, 0x69c904e6, 0x601014a7, 0x00000000}},  //   সাঃ_, _abee, _kämm,\n  { {0xdef9008b, 0xf77801d5, 0x68e90544, 0x00000000}},  //   _быў_, _naħa_, _ared,\n  { {0x68e90239, 0xda650025, 0xb05b0039, 0x00000000}},  //   _bred, ماني, ptäc,\n  { {0x601000b0, 0x3e7c0082, 0x7e64010e, 0x00000000}},  //   _lämm, _hít_, mmip,\n  { {0xb8ce02d2, 0x68e914a8, 0x4427011c, 0x00000000}},  //   _कि_, _dred, _nmn_,\n  { {0x68e914a9, 0xfaa3007e, 0x8f9b0049, 0x00000000}},  //   _ered, _маро, דיצי,\n  { {0x68e904d7, 0x2d8014aa, 0x3e7c0224, 0x00000000}},  //   _fred, ncie_, _mít_,\n  { {0x3e7c14ab, 0x2bc60061, 0x2ca014ac, 0x00000000}},  //   _lít_, र्था, nsid_,\n  { {0xe3b8027d, 0x442714ad, 0x2a78006c, 0x00000000}},  //   lnız_, _cmn_, _kurb_,\n  { {0x2d8014ae, 0x44270022, 0x68e90d0a, 0x00000000}},  //   kcie_, _dmn_, _zred,\n  { {0x2ca00004, 0x2d800036, 0x2bc6007d, 0x00000000}},  //   ksid_, jcie_, र्ता,\n  { {0x25a60c3b, 0x44270023, 0x601000f8, 0x00000000}},  //   _idol_, _fmn_, _täml,\n  { {0x2d800036, 0x44270093, 0x3e7c0011, 0x00000000}},  //   ecie_, _gmn_, _bít_,\n  { {0xf09f04b9, 0x442c14af, 0x6d4f0675, 0x00000000}},  //   ssà_, mid_, _syca,\n  { {0x442c0004, 0xef190036, 0x1317009b, 0x00000000}},  //   lid_, ąż_, _כחול_,\n  { {0x442c00bb, 0x60cd0a0f, 0x44270022, 0x00000000}},  // [2710] oid_, _upam, _ymn_,\n  { {0x442c0b83, 0x6448046a, 0x1fa70478, 0x00000000}},  //   nid_, nodi, _триг,\n  { {0x68e90bf8, 0x2bc6007d, 0x25a6002d, 0x00000000}},  //   _sred, र्धा, _odol_,\n  { {0x68e913a1, 0x442c005f, 0x64480161, 0x00000000}},  //   _pred, hid_, hodi,\n  { {0x442c0b1a, 0x2ca014b0, 0xb9c40025, 0x00000000}},  //   kid_, csid_, تقني,\n  { {0x6e2d14b1, 0x68e9037a, 0x442c0427, 0x00000000}},  //   liab, _vred, jid_,\n  { {0x442c017b, 0x7d0d14b2, 0x2d9901ee, 0x00000000}},  //   did_, lyas, _kese_,\n  { {0x68e901e2, 0xdb160051, 0x6e2d14b3, 0x00000000}},  //   _tred, _ócái, niab,\n  { {0x68e91034, 0x7d0d047f, 0x2d990207, 0x00000000}},  //   _ured, nyas, _mese_,\n  { {0x644810ec, 0x249f0270, 0x2d990292, 0x00000000}},  //   godi, rsum_, _lese_,\n  { {0x249f14b4, 0x8c1a009b, 0x2d800036, 0x00000000}},  //   ssum_, רותי, ycie_,\n  { {0x2d99008d, 0x442c14b5, 0x7d0d0173, 0x00000000}},  //   _nese_, aid_, kyas,\n  { {0x442c006c, 0x644814b6, 0x44270145, 0x00000000}},  //   bid_, bodi, _tmn_,\n  { {0x2d9906c2, 0x7d0d09e5, 0x3e7c14b7, 0x00000000}},  //   _aese_, dyas, _pít_,\n  { {0x81bf0055, 0x2d9901aa, 0xddc60006, 0x00000000}},  //   ীয়_, _bese_, _aikš,\n  { {0xf2d20049, 0x2ca0006c, 0xdb1700c4, 0x00000000}},  //   _זעה_, tsid_, nexõ,\n  { {0x2d8014b8, 0x7d0d0010, 0x6e360006, 0x00000000}},  // [2720] rcie_, gyas, rnyb,\n  { {0x2d800036, 0x2ca0006c, 0x3e7c0082, 0x00000000}},  //   scie_, rsid_, _tít_,\n  { {0x2ca009e7, 0x2d990065, 0xd24f00a2, 0x00000000}},  //   ssid_, _fese_, _زنی_,\n  { {0x6e2d0f6a, 0x2d990007, 0x753d0036, 0x00000000}},  //   ciab, _gese_, ższy,\n  { {0xdb1e0010, 0x442c013f, 0x28f80194, 0x00000000}},  //   lepü, yid_, рель_,\n  { {0xf093009b, 0x00000000, 0x00000000, 0x00000000}},  //   לנד_,   ,   ,\n  { {0x64480340, 0x24860116, 0x07a3025f, 0x00000000}},  //   vodi, _stom_, чајн,\n  { {0x442c018e, 0x3f9a05fa, 0xf1bf0010, 0x00000000}},  //   wid_, _lepu_, riák_,\n  { {0x64480142, 0x38cb00a6, 0xa3b30061, 0x00000000}},  //   todi, _مالی_, टलं_,\n  { {0x3e410006, 0x79820036, 0x00000000, 0x00000000}},  //   mėte_, lcow,   ,\n  { {0x442c14b9, 0x644814ba, 0x95ca01fb, 0x00000000}},  //   rid_, rodi, _була_,\n  { {0x442c061f, 0x26de14bb, 0x64480010, 0x00000000}},  //   sid_, _isto_, sodi,\n  { {0x64480059, 0x6e2d00d6, 0x2d9914bc, 0x00000000}},  //   podi, viab, _rese_,\n  { {0x442c0003, 0x3f9a04be, 0xddc6129d, 0x00000000}},  //   qid_, _cepu_, _rikš,\n  { {0x533314bd, 0x877b01f8, 0x6e2d08a8, 0x00000000}},  //   _нешт, ראלי, tiab,\n  { {0x7d0d14be, 0x00000000, 0x00000000, 0x00000000}},  //   tyas,   ,   ,\n  { {0x2d9914bf, 0x78a2016c, 0x443c013f, 0x00000000}},  // [2730] _vese_, jsov, _kjv_,\n  { {0x224b0030, 0x2d9914c0, 0x78a214c1, 0x00000000}},  //   lock_, _wese_, dsov,\n  { {0x2d9900c4, 0x7d0d09e5, 0x6d410036, 0x00000000}},  //   _tese_, syas, _ślad,\n  { {0x75200061, 0x224b0b3d, 0x13e10044, 0x00000000}},  //   kzmz, nock_, বায়,\n  { {0x6e3d14c2, 0x7d0d006b, 0xc879006b, 0x00000000}},  //   _ijsb, qyas, _quş_,\n  { {0x18690437, 0x6d5d0089, 0x224b14c3, 0x00000000}},  //   шали_, _izsa, hock_,\n  { {0xb05b021e, 0xe3ae0044, 0x661b0258, 0x00000000}},  //   ytän, কভাব, thuk,\n  { {0xc485012b, 0x0609005e, 0x34a9012b, 0x00000000}},  //   олик, рник_, авио_,\n  { {0x26de0219, 0xe3b10076, 0x2bc6007d, 0x00000000}},  //   _esto_, ورد_, र्वा,\n  { {0x661b000b, 0x799b01d6, 0x42c900e2, 0x00000000}},  //   shuk, _heuw, агон_,\n  { {0xd7f80011, 0xb05b00b0, 0xe2990098, 0x00000000}},  //   _khăn_, ttän, јам_,\n  { {0xb68600a1, 0xcf8900a0, 0x00000000, 0x00000000}},  //   _بھول_, _יט_,   ,\n  { {0xb05b14c4, 0x799b00d9, 0x443c1408, 0x00000000}},  //   rtän, _meuw, _fjv_,\n  { {0xb05b14c5, 0x799b0022, 0x248d14c6, 0x00000000}},  //   stän, _leuw, mpem_,\n  { {0xdee30072, 0x7bd714c7, 0x3f6a05a5, 0x00000000}},  //   мори, dexu, риво_,\n  { {0x799b010f, 0xe1ff008e, 0xd7f80082, 0x00000000}},  //   _neuw, lmón_, _nhăn_,\n  { {0xad66007a, 0x3f9a0145, 0x00000000, 0x00000000}},  // [2740] زاره, _tepu_,   ,\n  { {0x61e60bc7, 0x6b560a27, 0xb05b00b0, 0x00000000}},  //   ldkl, отех, ntäl,\n  { {0x61e4006a, 0x41b3009e, 0xfe460ab6, 0x00000000}},  //   _kail, _عمیر, _мноо,\n  { {0xd7f80011, 0x78a20e38, 0xdcfd0006, 0x00000000}},  //   _chăn_, tsov, _nesė,\n  { {0x61e414c8, 0xe89409b5, 0xc7ba008b, 0x00000000}},  //   _mail, чаль, аёй_,\n  { {0xacd9007b, 0x2cb2018e, 0x61e400b0, 0x00000000}},  //   _פֿרי, mryd_, _lail,\n  { {0x78a20161, 0xa01b00b0, 0x26de0026, 0x00000000}},  //   ssov, mpöt, _qsto_,\n  { {0x78ad0119, 0x6b9c14c9, 0x61e414ca, 0x00000000}},  //   šava, _herg, _nail,\n  { {0x6b9c0004, 0x7aee0059, 0xdb07000a, 0x00000000}},  //   _kerg, _hrbt, _adjè,\n  { {0x3eb80065, 0x2fd80030, 0xdb1c00c4, 0x00000000}},  //   kurt_, jerg_, _acré,\n  { {0x61e4002a, 0x4b7b0049, 0x6b9c14cb, 0x00000000}},  //   _bail, יטיג, _merg,\n  { {0x61e4002a, 0x201a0197, 0x6b9c0203, 0x00000000}},  //   _cail, _alpi_, _lerg,\n  { {0x61e40273, 0x660f0a5d, 0x2d920133, 0x00000000}},  //   _dail, öcke, dbye_,\n  { {0xcbd50055, 0x3eb8010f, 0x6b9c00b5, 0x00000000}},  //   _হচ্ছ, furt_, _nerg,\n  { {0xdd9b0216, 0x93cb00a1, 0x69c00009, 0x00000000}},  //   иша_, _خانہ_, _ocme,\n  { {0x3ead004f, 0x61e414cc, 0x7bce01d5, 0x00000000}},  //   čet_, _gail, _abbu,\n  { {0x2fd806d3, 0x6b9c020c, 0xc05b01fb, 0x00000000}},  // [2750] berg_, _berg, _він_,\n  { {0x61e4002d, 0x69c014cd, 0x3eb8010f, 0x00000000}},  //   _zail, _acme, burt_,\n  { {0x6b9c14ce, 0x23c2006e, 0xb05b00b0, 0x00000000}},  //   _derg, _शानद, ntäm,\n  { {0x6b9c0116, 0x2cb20016, 0x69c0000a, 0x00000000}},  //   _eerg, bryd_, _ccme,\n  { {0x6b9c002b, 0x6d5d14cf, 0xd94500e2, 0x00000000}},  //   _ferg, _uzsa, џели,\n  { {0x3abb007a, 0xa69500ec, 0x6b9c14d0, 0x00000000}},  //   _پاسخ_, приј, _gerg,\n  { {0x09c20055, 0x199514d1, 0x290200f6, 0x00000000}},  //   োয়া, _навя, _àkan_,\n  { {0x6b9c022b, 0xd6ce0379, 0x6b850016, 0x00000000}},  //   _zerg, اقي_, lchg,\n  { {0x69d914d2, 0x6d43010f, 0x61e400ab, 0x00000000}},  //   mewe, ßnah, _rail,\n  { {0x69d90007, 0x61e40238, 0x9422007c, 0x00000000}},  //   lewe, _sail, емье,\n  { {0x81e50055, 0x61e40ffc, 0xef200036, 0x00000000}},  //   নান_, _pail, ążki_,\n  { {0xb05b0073, 0x614600ed, 0x628a004a, 0x00000000}},  //   stäl, зема, _dtfo,\n  { {0x61e40dd9, 0x61e614d3, 0xf992009b, 0x00000000}},  //   _vail, rdkl, ערך_,\n  { {0xdff5007e, 0x27e50022, 0xe3b30014, 0x00000000}},  //   мясь, _jaln_, _آرش_,\n  { {0x61e400f4, 0x69d900ea, 0x26c70f3a, 0x00000000}},  //   _tail, kewe, ntno_,\n  { {0x69d9020f, 0x2cb20007, 0xbc760025, 0x00000000}},  //   jewe, tryd_, كهرب,\n  { {0x69d900b5, 0xee370088, 0x721b009b, 0x00000000}},  // [2760] dewe, їну_, _לוקח,\n  { {0x63a114d4, 0x26c714d5, 0xdce6001e, 0x00000000}},  //   naln, ktno_, _iekļ,\n  { {0x6b9c14d6, 0xc986017a, 0x9f97009b, 0x00000000}},  //   _verg, пули, _מדיה_,\n  { {0x69d90168, 0x63a100ca, 0x32090011, 0x00000000}},  //   gewe, haln, _xoay_,\n  { {0x63a101d9, 0x6b9c0169, 0xc5c30044, 0x00000000}},  //   kaln, _terg, ্যাপ,\n  { {0x63a10213, 0xfaa60088, 0x3a3f002f, 0x00000000}},  //   jaln, _наго, _ejup_,\n  { {0x69d90c0c, 0x7c2e001a, 0x8c1b009b, 0x00000000}},  //   bewe, _imbr, _פולי,\n  { {0x44f40764, 0xbb3b00b3, 0x09e301ee, 0x00000000}},  //   дпис, _העלי, _посн,\n  { {0x81e50044, 0x3e41007f, 0x00000000, 0x00000000}},  //   নাম_, nėta_,   ,\n  { {0xb05b021e, 0x2281000c, 0x00000000, 0x00000000}},  //   ttäm, _bók_,   ,\n  { {0xe1d901fb, 0x316014d7, 0x7e7e05e0, 0x00000000}},  //   одні_, _aziz_, _nupp,\n  { {0xe71700a0, 0x63a1006c, 0xa1940245, 0x00000000}},  //   _מחבר_, aaln, наюч,\n  { {0xd6250025, 0xb05b14d8, 0x7c2e03e2, 0x00000000}},  //   _تعلي, stäm, _ombr,\n  { {0x63a114d9, 0x3e41007f, 0x00000000, 0x00000000}},  //   caln, dėta_,   ,\n  { {0x442e0010, 0x7e7e0190, 0x628a01c9, 0x00000000}},  //   _imf_, _cupp, _utfo,\n  { {0x7e7e00ea, 0xc333009b, 0x433b009b, 0x00000000}},  //   _dupp, _רוק_, _לעוב,\n  { {0x442e0697, 0xb05b0b6f, 0x69d90253, 0x00000000}},  // [2770] _kmf_, ntäk, vewe,\n  { {0x31380097, 0x70550014, 0xf7780066, 0x00000000}},  //   _מנחם_, _زنجا, _daħk_,\n  { {0xd7f8001d, 0x6b85010f, 0x69d90112, 0x00000000}},  //   _chăm_, rchg, tewe,\n  { {0x63a114da, 0xf1bf14db, 0x7c2e14dc, 0x00000000}},  //   zaln, ngá_, _embr,\n  { {0x37e500da, 0x7e7e0197, 0x69d90a6b, 0x00000000}},  //   долг, _zupp, rewe,\n  { {0x69d90c4c, 0x442e04a5, 0x00000000, 0x00000000}},  //   sewe, _nmf_,   ,\n  { {0x63a101d9, 0xb05b021e, 0x00000000, 0x00000000}},  //   valn, ttäj,   ,\n  { {0x60100039, 0x26c70059, 0x442e00f8, 0x00000000}},  //   _hämt, rtno_, _amf_,\n  { {0x26c701d9, 0xf2b60044, 0x93fd007e, 0x00000000}},  //   stno_, _জনগণ, аўнi,\n  { {0x52a914dd, 0x60100039, 0x442e0145, 0x00000000}},  //   овом_, _jämt, _cmf_,\n  { {0x63a114de, 0x2bcf0309, 0x387f01b5, 0x00000000}},  //   raln, स्या, _huur_,\n  { {0x63a10169, 0x7e7e0109, 0x387f0cf0, 0x00000000}},  //   saln, _rupp, _kuur_,\n  { {0x7e7e030a, 0x63a10aa9, 0xa5bd010a, 0x00000000}},  //   _supp, paln, siųs,\n  { {0x2281009f, 0xa2d8013d, 0x387f00c7, 0x00000000}},  //   _tók_, _फैक्, _muur_,\n  { {0x41c6013d, 0x00000000, 0x00000000, 0x00000000}},  //   _वापस,   ,   ,\n  { {0x25bf048f, 0x00000000, 0x00000000, 0x00000000}},  //   ngul_,   ,   ,\n  { {0xed5701f9, 0xdca30088, 0x387f06a4, 0x00000000}},  // [2780] дот_, кати, _nuur_,\n  { {0x8d63007c, 0x7e7e006c, 0x4d630088, 0x00000000}},  //   твуе, _tupp, ткув,\n  { {0x78a90198, 0x0e6614df, 0xb9e60088, 0x00000000}},  //   _avev, _окон, діли,\n  { {0x81e50044, 0x8b650257, 0x387f14e0, 0x00000000}},  //   নাথ_, رالم, _buur_,\n  { {0xd37805fa, 0x00000000, 0x00000000, 0x00000000}},  //   leće_,   ,   ,\n  { {0xd7f8001d, 0x387f01b5, 0x368a0088, 0x00000000}},  //   _thăm_, _duur_, осин_,\n  { {0xd378016c, 0x6a8300ed, 0x660b0190, 0x00000000}},  //   neće_, _алса, _bogk,\n  { {0x973c0091, 0x25bf0169, 0xd5b000a1, 0x00000000}},  //   _neće, ggul_, اہش_,\n  { {0xe3ce001d, 0x47c6012b, 0x442e00f6, 0x00000000}},  //   _dựng_, _обав, _pmf_,\n  { {0x7c3e0145, 0x7e660022, 0x4ad20061, 0x00000000}},  //   nnpr, _lhkp, _सहाव,\n  { {0x0bb700b6, 0xd3780166, 0xe2f80088, 0x00000000}},  //   ולים_, jeće_, чені_,\n  { {0xd3780091, 0x442e0e42, 0x00000000, 0x00000000}},  //   deće_, _wmf_,   ,\n  { {0x442e00d9, 0x00000000, 0x00000000, 0x00000000}},  //   _tmf_,   ,   ,\n  { {0xdb1c1343, 0x8ca2013d, 0x442e14e1, 0x00000000}},  //   _acrí, गठनो, _umf_,\n  { {0x443e02e1, 0x7687014a, 0xadd5003b, 0x00000000}},  //   mnt_, _kıya, новљ,\n  { {0x645a018e, 0xf1d0001d, 0x6010010f, 0x00000000}},  //   llti, _hạng_, _sämt,\n  { {0x2d5807ca, 0x443e0e94, 0xf4bc0044, 0x00000000}},  // [2790] дить_, ont_, _অনুব,\n  { {0x443e14e2, 0x7c3e0146, 0x2bbb0025, 0x00000000}},  //   nnt_, gnpr, تارة_,\n  { {0x443e016d, 0xf1d0001d, 0x387f14e3, 0x00000000}},  //   int_, _mạng_, _suur_,\n  { {0x443e010f, 0xdb1c0051, 0x32190007, 0x00000000}},  //   hnt_, _gcrí, nksy_,\n  { {0x7e6d00f8, 0x645a012d, 0x625d0068, 0x00000000}},  //   mmap, klti, véol,\n  { {0xb90702d2, 0x81d30055, 0x7e6d006c, 0x00000000}},  //   _बन_, _হোম_, lmap,\n  { {0x7ac40216, 0x973c012d, 0x443e0133, 0x00000000}},  //   _исте, _odću, dnt_,\n  { {0x443e028c, 0xceb4061e, 0xb05b14e4, 0x00000000}},  //   ent_, דיק_, stäh,\n  { {0x2bcf02f4, 0x79c805f3, 0x443e000c, 0x00000000}},  //   स्था, _توقف_, fnt_,\n  { {0x6932026c, 0x7305025f, 0x443e092e, 0x00000000}},  //   _حکمر, епоз, gnt_,\n  { {0xf1d0001d, 0x65620032, 0x00000000, 0x00000000}},  //   _dạng_, _ezoh,   ,\n  { {0x443e018e, 0x2bcf02fb, 0x645a0dd7, 0x00000000}},  //   ant_, स्ता, alti,\n  { {0xa1550265, 0x973c0166, 0x7e6d0085, 0x00000000}},  //   върш, _veće, dmap,\n  { {0xdb1c002a, 0x443e14e5, 0x6606000c, 0x00000000}},  //   _scrí, cnt_, ökkv,\n  { {0xd3780107, 0x60100039, 0x6d59002b, 0x00000000}},  //   teće_, _säms, żwal,\n  { {0x201814e6, 0x7e6d00e0, 0x7c3e14e7, 0x00000000}},  //   skri_, gmap, wnpr,\n  { {0xfe430500, 0xc7a500a1, 0x1016007e, 0x00000000}},  // [27a0] унто, _پڑ_, _зьня,\n  { {0xaf9a007c, 0x00000000, 0x00000000, 0x00000000}},  //   _этих_,   ,   ,\n  { {0x3f9814e8, 0x2bc601f5, 0xe80300e8, 0x00000000}},  //   mbru_, र्गा, लाना_,\n  { {0x2d96081e, 0xda650025, 0x0f370049, 0x00000000}},  //   _ярос, ناني, _טריט_,\n  { {0x443e14e9, 0x3f98012d, 0x00000000, 0x00000000}},  //   ynt_, obru_,   ,\n  { {0xb05b021e, 0x7d160052, 0x00000000, 0x00000000}},  //   ttäi, myys,   ,\n  { {0x8c430805, 0xd6d70a78, 0x765b008e, 0x00000000}},  //   _сере, еты_, fluy,\n  { {0xcfe90044, 0x7bde14ea, 0x443e14eb, 0x00000000}},  //   খায়_, lepu, wnt_,\n  { {0x29020065, 0x684600ed, 0xdb1c00c4, 0x00000000}},  //   _çka_, _знаа, _ucrâ,\n  { {0xe8d700b6, 0x443e00ab, 0x69c2040f, 0x00000000}},  //   _אומר_, unt_, lgoe,\n  { {0xa1950147, 0x443e03a1, 0x68e2005b, 0x00000000}},  //   канч, rnt_, lwod,\n  { {0x765b0211, 0x69c2002d, 0x3eb80009, 0x00000000}},  //   cluy, ngoe, drrt_,\n  { {0x6e240020, 0x7bde0065, 0xf1d00082, 0x00000000}},  //   dhib, kepu, _tạng_,\n  { {0xb05b021e, 0x60100039, 0x251b0049, 0x00000000}},  //   htäv, _sämr, _צוגא,\n  { {0x7e6d0062, 0x2cab0052, 0x00000000, 0x00000000}},  //   tmap, _svcd_,   ,\n  { {0x09d50044, 0x2ca90614, 0xddc4013f, 0x00000000}},  //   _সোনা, tsad_, rliş,\n  { {0xd90401ef, 0xdb1c0036, 0x2ca900e0, 0x00000000}},  // [27b0] _ای_, _obró, usad_,\n  { {0x7bde0240, 0x7e6d0c7a, 0x2bd8013d, 0x00000000}},  //   gepu, smap, ड़गा,\n  { {0x2ca90039, 0xa3d20164, 0x1eab006d, 0x00000000}},  //   ssad_, ह्य_, _عادي_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x601005b4, 0x9f5a0173, 0x2604006e, 0x00000000}},  //   _kämp, _anpè_, वानी_,\n  { {0xec35007b, 0x7bde000d, 0x69c20032, 0x00000000}},  //   _יאָר_, cepu, agoe,\n  { {0xf4c20055, 0x765b014a, 0x99850025, 0x00000000}},  //   ্টোব, tluy, _للزو,\n  { {0x60100bf4, 0x644711cc, 0x00000000, 0x00000000}},  //   _lämp, čjim,   ,\n  { {0xe1ff0036, 0x00000000, 0x00000000, 0x00000000}},  //   lmów_,   ,   ,\n  { {0xa93400ed, 0x6e2400ca, 0x24960014, 0x00000000}},  //   _сеуш, zhib, کنید_,\n  { {0x232914ec, 0x2bc60204, 0x00000000, 0x00000000}},  //   фони_, र्टा,   ,\n  { {0x65950175, 0x7aea0030, 0x7bde0036, 0x00000000}},  //   _раду, æfti, zepu,\n  { {0xc2431280, 0xbcfb0010, 0x00000000, 0x00000000}},  //   рняк, _szén,   ,\n  { {0x66091382, 0xd2b9009e, 0x00000000, 0x00000000}},  //   ljek, _قابض_,   ,\n  { {0x60100210, 0x6e240020, 0x8fa3007e, 0x00000000}},  //   _dämp, thib, расе,\n  { {0x63a305ce, 0x68e2018e, 0x7bd5010f, 0x00000000}},  //   _henn, ywod, _abzu,\n  { {0x644114ed, 0x6026008b, 0x7af5010f, 0x00000000}},  // [27c0] onli, _адпа, _arzt,\n  { {0x6e2414ee, 0x644114ef, 0xd3780107, 0x00000000}},  //   shib, nnli, leća_,\n  { {0x81e508b7, 0xb05b021e, 0x7bde002d, 0x00000000}},  //   নার_, ttäv, repu,\n  { {0x63a30f39, 0x6441010f, 0x7bde14f0, 0x00000000}},  //   _lenn, hnli, sepu,\n  { {0xe3a704e1, 0x69c200b5, 0x62830058, 0x00000000}},  //   _پر_, rgoe, _luno,\n  { {0x63a300db, 0x644100b5, 0xb05b0c4d, 0x00000000}},  //   _nenn, jnli, stäv,\n  { {0x2900000d, 0xc5eb0055, 0x628314f1, 0x00000000}},  //   ţia_, কানা_, _nuno,\n  { {0xd3780182, 0x644101b5, 0x661b011c, 0x00000000}},  //   jeća_, enli, gkuk,\n  { {0x63a314f2, 0xd378037e, 0x70dc0061, 0x00000000}},  //   _benn, deća_, यबोल,\n  { {0x63a30027, 0x62830058, 0xb05b14f3, 0x00000000}},  //   _cenn, _buno, ntät,\n  { {0x63a305d5, 0x6283000d, 0xddc40059, 0x00000000}},  //   _denn, _cuno, zmiš,\n  { {0x27ec0133, 0x644114f4, 0x00000000, 0x00000000}},  //   _hadn_, anli,   ,\n  { {0xc05b01fb, 0x63a30047, 0x81e50044, 0x00000000}},  //   дів_, _fenn, নাল_,\n  { {0x63a314f5, 0x4425090d, 0xe44f0123, 0x00000000}},  //   _genn, chl_, _وضو_,\n  { {0x64580089, 0x80d60044, 0x6283001a, 0x00000000}},  //   _ikvi, দিষ্, _guno,\n  { {0x63a80161, 0x337700b6, 0x63a314f6, 0x00000000}},  //   ladn, _בתוך_, _zenn,\n  { {0x63a30283, 0xde580088, 0x61ed0058, 0x00000000}},  // [27d0] _yenn, таті_, _iaal,\n  { {0x63a80a14, 0x61ed0157, 0x06d90044, 0x00000000}},  //   nadn, _haal, থিতি,\n  { {0x61ed14f7, 0xfe6e02fd, 0xddc414f8, 0x00000000}},  //   _kaal, تگی_, smiš,\n  { {0xc333009b, 0xf9890014, 0x61ef14f9, 0x00000000}},  //   סוף_, رنتي_, ndcl,\n  { {0x61ed0b37, 0x394902d5, 0x645801ae, 0x00000000}},  //   _maal, ças_, _okvi,\n  { {0xd378037e, 0x973c01a8, 0xab9401fb, 0x00000000}},  //   zeća_, _seća, _вирі,\n  { {0x63a314fa, 0x973c0521, 0x644114fb, 0x00000000}},  //   _renn, _peća, vnli,\n  { {0x63a3000c, 0x628300b0, 0x61ed14fc, 0x00000000}},  //   _senn, _runo, _naal,\n  { {0x7e7d0173, 0x6283011c, 0x34b20025, 0x00000000}},  //   _misp, _suno, مميز,\n  { {0x6283008d, 0x660914fd, 0x7bc5033b, 0x00000000}},  //   _puno, sjek, nghu,\n  { {0xc5d501fb, 0x6d5d05ad, 0x63a30292, 0x00000000}},  //   _біль, _lysa, _venn,\n  { {0x63a3037f, 0x7e7d14fe, 0x2604006e, 0x00000000}},  //   _wenn, _nisp, वाणी_,\n  { {0x04c80025, 0x63a30e69, 0x61ed00bb, 0x00000000}},  //   _لوني_, _tenn, _daal,\n  { {0xf77801d5, 0x6283011c, 0x34b20014, 0x00000000}},  //   _taħt_, _tuno, _اموز,\n  { {0xb05b0002, 0x7e7d14ff, 0x61ed1500, 0x00000000}},  //   kräf, _bisp, _faal,\n  { {0xc6920476, 0xfce6025f, 0x7e7d0048, 0x00000000}},  //   מאל_, лобо, _cisp,\n  { {0x4d66007e, 0xdd8f01fa, 0xb05b059f, 0x00000000}},  // [27e0] укав, سول_, ttät,\n  { {0x309b019b, 0x69c9000d, 0xab2a026b, 0x00000000}},  //   _רשימ, _acee, ноза_,\n  { {0x68e90016, 0xb05b04ce, 0x00000000, 0x00000000}},  //   _ased, rtät,   ,\n  { {0xb05b010f, 0x63a80059, 0x2906002d, 0x00000000}},  //   stät, zadn, txoa_,\n  { {0x522d0049, 0x00000000, 0x00000000, 0x00000000}},  //   וואַ,   ,   ,\n  { {0xcaa60025, 0xdd3b0049, 0x00000000, 0x00000000}},  //   _مصري, _װעלכ,   ,\n  { {0x63a81501, 0xd5e20082, 0x3a260a60, 0x00000000}},  //   vadn, _phò, phop_,\n  { {0xe4e601fb, 0xa2810036, 0x64581502, 0x00000000}},  //   гіон, łość_, _skvi,\n  { {0x3946012b, 0x61ed00bb, 0x00000000, 0x00000000}},  //   _снаг, _raal,   ,\n  { {0x61ed006c, 0x250700a1, 0x00000000, 0x00000000}},  //   _saal, ارٹی_,   ,\n  { {0x26040309, 0x61ed011c, 0xb05b00f8, 0x00000000}},  //   वादी_, _paal, ktär,\n  { {0xa2270014, 0x387e00ca, 0x64a6007e, 0x00000000}},  //   ارده, _hitr_, _бада,\n  { {0x7e7d0409, 0x61ed0158, 0x41c601f5, 0x00000000}},  //   _risp, _vaal, _वारस,\n  { {0x4394008b, 0xf1bf002a, 0x7e7d0263, 0x00000000}},  //   _такс, chán_, _sisp,\n  { {0x61ed0168, 0x5f9401fc, 0x3e410006, 0x00000000}},  //   _taal, сист, lėti_,\n  { {0x92b30445, 0x00000000, 0x00000000, 0x00000000}},  //   _احوا,   ,   ,\n  { {0x7e7d001e, 0x3e410006, 0xc047025a, 0x00000000}},  // [27f0] _visp, nėti_, _مخدو,\n  { {0x25a6018e, 0x7e7d0ace, 0x6d5d01ca, 0x00000000}},  //   _leol_, _wisp, _vysa,\n  { {0x7bc507a9, 0xb05b09f0, 0x78bc0089, 0x00000000}},  //   rghu, träf, _ārva,\n  { {0x3e410006, 0x636f0010, 0x2bc70164, 0x00000000}},  //   kėti_, lóné, _लावा,\n  { {0x05260044, 0x00000000, 0x00000000, 0x00000000}},  //   মপুর_,   ,   ,\n  { {0x3e41010a, 0x25a90059, 0x973c016c, 0x00000000}},  //   dėti_, _žal_, _većn,\n  { {0x3dd90022, 0x00000000, 0x00000000, 0x00000000}},  //   _kbsw_,   ,   ,\n  { {0x25a6002a, 0x38c900a1, 0x24861503, 0x00000000}},  //   _ceol_, _لائی_, _buom_,\n  { {0x68e91504, 0xf1bf0051, 0x387e0da4, 0x00000000}},  //   _used, thán_, _fitr_,\n  { {0x2249003f, 0x24860145, 0x00000000, 0x00000000}},  //   _ajak_, _duom_,   ,\n  { {0x63bc000c, 0x31690010, 0xe7840014, 0x00000000}},  //   órna, _azaz_, _المپ,\n  { {0xd57509b5, 0xe3b100a6, 0xa4d50088, 0x00000000}},  //   _куль, حرک_, _воді,\n  { {0x2249012d, 0x00000000, 0x00000000, 0x00000000}},  //   _djak_,   ,   ,\n  { {0xa06a008b, 0xfaf80089, 0xe3b90131, 0x00000000}},  //   тага_, _šīm_, _рбк_,\n  { {0x43750049, 0xb05b00b0, 0x6e36004d, 0x00000000}},  //   _דײַן_, ttär, ахах,\n  { {0x644f00f4, 0x22490065, 0x9ac70066, 0x00000000}},  //   écif, _gjak_, _miċħ,\n\n  { {0xc0e6026b, 0x6fd60088, 0xb05b04ce, 0x00000000}},  // [2800] _топк, _кінц, rtär,\n  { {0xb05b09b0, 0xd00f0025, 0x00000000, 0x00000000}},  //   stär, _يلي_,   ,\n  { {0x394d06fa, 0x395f0058, 0x79a600e2, 0x00000000}},  //   _axes_, _ayus_, арле,\n  { {0xb05b001f, 0x2a6d00b9, 0x2efa1505, 0x00000000}},  //   träg, _cheb_, _irpf_,\n  { {0x2604006e, 0x25a61506, 0xda650379, 0x00000000}},  //   वासी_, _reol_, حالي,\n  { {0x25a6002a, 0x6843007c, 0x6352013e, 0x00000000}},  //   _seol_, онча, něné,\n  { {0x6f1c0016, 0x973c04eb, 0x03ee0044, 0x00000000}},  //   nyrc, _većo, জামী_,\n  { {0xb05b0788, 0x6b630088, 0x00000000, 0x00000000}},  //   präg, _єкта,   ,\n  { {0x87da02fd, 0x6f1c0016, 0x746a0140, 0x00000000}},  //   _لباس_, hyrc, кров_,\n  { {0xbcfb0010, 0x3e410006, 0x2604007d, 0x00000000}},  //   _szék, rėti_, वाही_,\n  { {0x23380147, 0xb6cb00a1, 0x20131507, 0x00000000}},  //   упны_, _لانے_, _roxi_,\n  { {0xd377008b, 0xd2580088, 0x00000000, 0x00000000}},  //   шчы_, иця_,   ,\n  { {0x04940379, 0x625d009d, 0x00000000, 0x00000000}},  //   _التح, déot,   ,\n  { {0x04db01ce, 0x26040061, 0x251b0097, 0x00000000}},  //   _סקול, वावी_, _בודא,\n  { {0x6f1c018e, 0xbe880407, 0x660205d5, 0x00000000}},  //   gyrc, исте_, _knok,\n  { {0x30a71508, 0xdd980aed, 0xe37b00b3, 0x00000000}},  //   _кров, ишу_, _ברור,\n  { {0x629a0a0e, 0xb05b0039, 0x786d00c4, 0x00000000}},  // [2810] lpto, träd, lúve,\n  { {0x2bb80025, 0x00000000, 0x00000000, 0x00000000}},  //   لامة_,   ,   ,\n  { {0x5fdc0097, 0xb05b053d, 0x66020087, 0x00000000}},  //   _יחזק, rräd, _onok,\n  { {0x4975034b, 0x9f430023, 0x00000000, 0x00000000}},  //   блес, hejë_,   ,\n  { {0x8cf4008b, 0x26de0285, 0xe8030204, 0x00000000}},  //   _дзяц, _apto_, लाला_,\n  { {0x1d16009b, 0x660204a5, 0x3dc900e0, 0x00000000}},  //   _הקשר_, _anok, lgaw_,\n  { {0x6dbb00b4, 0x00000000, 0x00000000, 0x00000000}},  //   ałał,   ,   ,\n  { {0xb8cd0055, 0x3dc9011c, 0x26de008e, 0x00000000}},  //   _কম_, ngaw_, _dpto_,\n  { {0xe45900e3, 0x81d60044, 0x629a0168, 0x00000000}},  //   лжи_, _সফল_, epto,\n  { {0x9b44009c, 0x9814007a, 0x68fb022b, 0x00000000}},  //   _انہو, _وبلا, _irud,\n  { {0xe71904e8, 0x00000000, 0x00000000, 0x00000000}},  //   _حيات_,   ,   ,\n  { {0x68fb0d44, 0x66020026, 0x00000000, 0x00000000}},  //   _krud, _gnok,   ,\n  { {0x26040201, 0x291d1509, 0x8505007a, 0x00000000}},  //   वारी_, nywa_, _دوشن,\n  { {0x3cfe00b9, 0x33950025, 0xe3b8014a, 0x00000000}},  //   _čtv_, _الغز, lkın_,\n  { {0xfbcd0044, 0x442700ea, 0xd7f10082, 0x00000000}},  //   রজাত, _iln_, _mã_,\n  { {0x0d86012b, 0x25ad01d6, 0x68fb016c, 0x00000000}},  //   слан, nael_, _orud,\n  { {0x61e6150a, 0x44270022, 0x00000000, 0x00000000}},  // [2820] mekl, _kln_,   ,\n  { {0x69db0211, 0x442704be, 0x61e6014a, 0x00000000}},  //   _abue, _jln_, lekl,\n  { {0x6d4f06c2, 0x442709a8, 0xfc3f04bd, 0x00000000}},  //   _exca, _mln_, _avís_,\n  { {0x80cb0055, 0x61e6011f, 0xb3460181, 0x00000000}},  //   িবর্, nekl, leçõ,\n  { {0xddcd0477, 0x25ad0016, 0x7e64150b, 0x00000000}},  //   llaş, dael_, mlip,\n  { {0x61e6129a, 0x6602150c, 0x00000000, 0x00000000}},  //   hekl, _snok,   ,\n  { {0xddcd027d, 0x25ad00d6, 0x61e6014a, 0x00000000}},  //   nlaş, fael_, kekl,\n  { {0x44270026, 0x7e64011c, 0x7c3e010e, 0x00000000}},  //   _aln_, nlip, lipr,\n  { {0x68fb150d, 0xa9260057, 0x61e60010, 0x00000000}},  //   _grud, _удал, dekl,\n  { {0xddcd011f, 0x7c3e00ea, 0xe82400a1, 0x00000000}},  //   klaş, nipr, _بذری,\n  { {0x5c5b007b, 0x2bf7009b, 0x63a4012d, 0x00000000}},  //   רדיק, זמין_, _đind,\n  { {0xad9b02d5, 0xcb13009b, 0xc0cb003b, 0x00000000}},  //   _anún, ללת_, луге_,\n  { {0x661d0c4d, 0x7bdc0738, 0xdb070023, 0x00000000}},  //   öske, _obru, _pejë,\n  { {0x133900a1, 0x4427016b, 0x629a150e, 0x00000000}},  //   اتیں_, _gln_, ppto,\n  { {0x443e150f, 0x543b007b, 0x645a1510, 0x00000000}},  //   mit_, _געגא, moti,\n  { {0x443e006a, 0x645a0089, 0x7bdc0207, 0x00000000}},  //   lit_, loti, _abru,\n  { {0x973c0521, 0x68e4006b, 0x9c3900e2, 0x00000000}},  // [2830] _bećk, çidl, апат_,\n  { {0x443e1511, 0x645a0089, 0x628a1512, 0x00000000}},  //   nit_, noti, _kufo,\n  { {0x6448022b, 0x207c0049, 0x7bce0022, 0x00000000}},  //   indi, _גאזא, _dcbu,\n  { {0x443e0b9a, 0x1df90057, 0x7e64094e, 0x00000000}},  //   hit_, _темы_, clip,\n  { {0x443e0d56, 0x00000000, 0x00000000, 0x00000000}},  //   kit_,   ,   ,\n  { {0x629804a3, 0x443e1513, 0x7c3e0375, 0x00000000}},  //   _otvo, jit_, cipr,\n  { {0x645a0ba5, 0xa3be006e, 0x628a007f, 0x00000000}},  //   doti, ेलन_, _nufo,\n  { {0x68fb1514, 0x6e2d1515, 0xe61901f9, 0x00000000}},  //   _trud, nhab, рди_,\n  { {0x44271516, 0x644806d6, 0xddcd0180, 0x00000000}},  //   _pln_, fndi, zlaş,\n  { {0x443e006a, 0xddcd011f, 0x63aa018e, 0x00000000}},  //   git_, ylaş, _cefn,\n  { {0x63aa018e, 0x27e71517, 0xdb1c0051, 0x00000000}},  //   _defn, menn_, _scrú,\n  { {0x443e1518, 0x64480020, 0x69cb020c, 0x00000000}},  //   ait_, andi, ngge,\n  { {0xe3ae0373, 0x61e6011f, 0x6e2d1519, 0x00000000}},  //   _об_, rekl, dhab,\n  { {0x443e151a, 0x645a0089, 0x442c0061, 0x00000000}},  //   cit_, coti, chd_,\n  { {0x26c70709, 0x61e6014a, 0xa3d2013d, 0x00000000}},  //   nuno_, pekl, _हॉट_,\n  { {0xddcd0180, 0x22b50089, 0xa3d70061, 0x00000000}},  //   rlaş, māk_, ाभव_,\n  { {0x81d30055, 0xd7c90316, 0x22b5001e, 0x00000000}},  // [2840] _হোক_, _रांच, lāk_,\n  { {0xebe30081, 0xddcd0180, 0x69d900d9, 0x00000000}},  //   моуп, plaş, efwe,\n  { {0x22b50089, 0xd24f0167, 0x27e70173, 0x00000000}},  //   nāk_, _سنی_, denn_,\n  { {0x443e151b, 0xe8fa151c, 0x6e2d008e, 0x00000000}},  //   zit_, иле_, chab,\n  { {0x3ead037e, 0x6448009f, 0x443e0148, 0x00000000}},  //   ćete_, yndi, yit_,\n  { {0x443e0f51, 0x7bdc0190, 0x645a151d, 0x00000000}},  //   xit_, _ubru, xoti,\n  { {0xdcf6038c, 0x645a0119, 0x26c70211, 0x00000000}},  //   mayı, voti, guno_,\n  { {0xdcf6038c, 0x765b01aa, 0x628a00fa, 0x00000000}},  //   layı, gouy, _rufo,\n  { {0x443e151e, 0x645a0089, 0x62980119, 0x00000000}},  //   tit_, toti, _stvo,\n  { {0x186a0265, 0x64481153, 0x47c301e0, 0x00000000}},  //   _тази_, undi, _обув,\n  { {0x443e071e, 0x1bfb0049, 0x2bcf006e, 0x00000000}},  //   rit_, בליב, स्टा,\n  { {0x95c7003b, 0x443e151f, 0x645a0089, 0x00000000}},  //   _душа_, sit_, soti,\n  { {0x443e006a, 0xda7b00b6, 0x645a016e, 0x00000000}},  //   pit_, ינטר, poti,\n  { {0xddcd1520, 0x7640010a, 0x22b5001e, 0x00000000}},  //   dmaš, limy, bāk_,\n  { {0x69cb0693, 0x6e2d0051, 0x539b00b3, 0x00000000}},  //   ygge, thab, _דיוו,\n  { {0xd3780166, 0x2bdd0309, 0x6e2400e0, 0x00000000}},  //   jeći_, न्ना, gkib,\n  { {0xd3780119, 0x6e2d014a, 0xacf80451, 0x00000000}},  // [2850] deći_, rhab, онту_,\n  { {0x6e2d0020, 0x26c71521, 0xad9b0181, 0x00000000}},  //   shab, yuno_, _inúm,\n  { {0x76401522, 0x6e2d028a, 0x00000000, 0x00000000}},  //   kimy, phab,   ,\n  { {0x26c700e7, 0x27e7000a, 0x00000000, 0x00000000}},  //   vuno_, wenn_,   ,\n  { {0x22b50089, 0x22a70010, 0x443c064f, 0x00000000}},  //   zāk_, zők_, _omv_,\n  { {0xf8071523, 0x26c70016, 0x443c0087, 0x00000000}},  //   ючен, tuno_, _nmv_,\n  { {0xd3780107, 0x27e701aa, 0x2a6600e0, 0x00000000}},  //   beći_, renn_, blob_,\n  { {0x06090072, 0x22b50089, 0x22a70010, 0x00000000}},  //   сник_, vāk_, vők_,\n  { {0xe4d60025, 0x27e71524, 0x26c700e0, 0x00000000}},  //   كويت_, penn_, suno_,\n  { {0x87070025, 0x26c71525, 0x22a70010, 0x00000000}},  //   _وبال, puno_, tők_,\n  { {0x2bdd0201, 0x443c00bb, 0x625d009d, 0x00000000}},  //   न्या, _dmv_, téop,\n  { {0x22b5001e, 0x26f903d7, 0x2c6d0428, 0x00000000}},  //   rāk_, ्मीर_, _vždy_,\n  { {0x973c012d, 0x22b50089, 0x22a70010, 0x00000000}},  //   _reći, sāk_, sők_,\n  { {0xb4fa009b, 0x16090061, 0xd3780091, 0x00000000}},  //   _לפני, वावर_, zeći_,\n  { {0x64410475, 0x0e6a0025, 0x973c04eb, 0x00000000}},  //   mili, مصري_, _peći,\n  { {0xe1ff1526, 0x64410504, 0xa2c0006e, 0x00000000}},  //   llón_, lili, _वित्,\n  { {0x973c0119, 0x6e241527, 0x2bc70061, 0x00000000}},  // [2860] _veći, rkib, _लाखा,\n  { {0x61f60284, 0x66190093, 0x6e241528, 0x00000000}},  //   _hayl, _lowk, skib,\n  { {0x61f61163, 0xd3780363, 0xdcf6005d, 0x00000000}},  //   _kayl, teći_, rayı,\n  { {0x6441011c, 0x201a1529, 0x98a0152a, 0x00000000}},  //   hili, _hopi_, šič_,\n  { {0x6441000b, 0x61f607b1, 0xd3780091, 0x00000000}},  //   kili, _mayl, reći_,\n  { {0x61f607b1, 0x64410020, 0xb05b010f, 0x00000000}},  //   _layl, jili, hrän,\n  { {0x6441000b, 0x7640000a, 0xe9a60088, 0x00000000}},  //   dili, timy, _навп,\n  { {0xa3d9006e, 0x443c0c48, 0xf77200a1, 0x00000000}},  //   ड्स_, _smv_, واں_,\n  { {0x6441152b, 0xb05b053d, 0x682f0190, 0x00000000}},  //   fili, drän, _bødd,\n  { {0xa2c002f4, 0x644108a1, 0x3a2601d6, 0x00000000}},  //   _विद्, gili, lkop_,\n  { {0x46a3003b, 0x644f028c, 0xe7b3025a, 0x00000000}},  //   _захв, écia, _سمند,\n  { {0xb05b152c, 0x7ae1010f, 0x3a26018f, 0x00000000}},  //   grän, _älte, nkop_,\n  { {0x6441152d, 0x216709b5, 0x682f01e3, 0x00000000}},  //   bili, ятог, _fødd,\n  { {0x201a0016, 0x6e3d0066, 0xe1ff004a, 0x00000000}},  //   _copi_, _smsb, clón_,\n  { {0x629c004f, 0xf1c60204, 0x33db009b, 0x00000000}},  //   írod, _वाचन, _החוד,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xbcfb0047, 0xc1bc009b, 0x91bc009b, 0x00000000}},  // [2870] _azér, _המחש, _המחי,\n  { {0x201a005b, 0x682f0190, 0x32090082, 0x00000000}},  //   _gopi_, _køde, _hnay_,\n  { {0x998900b9, 0x682f043e, 0x61f6005a, 0x00000000}},  //   íkům_, _jøde, _yayl,\n  { {0x682f0030, 0x3a26011c, 0x78a9000a, 0x00000000}},  //   _møde, gkop_, _pwev,\n  { {0xa3be024c, 0xbcfb0047, 0xf8ae00a1, 0x00000000}},  //   ेला_, _ezér, لکل_,\n  { {0x64410ddd, 0xd3780521, 0x00000000, 0x00000000}},  //   xili, leću_,   ,\n  { {0x3209014a, 0x682f0190, 0x2d9f010e, 0x00000000}},  //   _onay_, _rødd, _õues_,\n  { {0x6441018e, 0xc7440054, 0xdb0700b9, 0x00000000}},  //   wili, عضوي, _její,\n  { {0x64410b1a, 0x280800b9, 0xdb0702a0, 0x00000000}},  //   tili, átní_, _mejí,\n  { {0xe7b500d3, 0x61f6006b, 0x32090058, 0x00000000}},  //   _آماد, _sayl, _anay_,\n  { {0x6441005f, 0x61f60676, 0x1b1f0055, 0x00000000}},  //   rili, _payl, _যেতে_,\n  { {0x6441152e, 0xdb0e0181, 0xd3780243, 0x00000000}},  //   sili, _bebê, jeću_,\n  { {0x6441006a, 0x22420292, 0xb05b0c4d, 0x00000000}},  //   pili, rikk_, rrän,\n  { {0x682f05b7, 0xdee6007c, 0x22420056, 0x00000000}},  //   _føde, моги, sikk_,\n  { {0x61f605ac, 0x25af0087, 0x682f0146, 0x00000000}},  //   _tayl, _kegl_, _gøde,\n  { {0x7bc3000c, 0x61f6013f, 0x00000000, 0x00000000}},  //   ónun, _uayl,   ,\n  { {0x201a11a7, 0x2ca0152f, 0xdb0e01d6, 0x00000000}},  // [2880] _topi_, upid_, _gebê,\n  { {0x2ca00009, 0x25dd0204, 0x3a2d0068, 0x00000000}},  //   rpid_, क्ती_, _alep_,\n  { {0x63bc1530, 0x248701aa, 0xa2a10061, 0x00000000}},  //   órni, _minm_, कीच्,\n  { {0xa2c002fb, 0xfaf8001e, 0xc7b8012d, 0x00000000}},  //   _विस्, _šīs_, _mođe_,\n  { {0x3a26123c, 0xd83a007e, 0x08970025, 0x00000000}},  //   rkop_, жэй_, وضوع_,\n  { {0x3a260235, 0x68ed00c4, 0x0ee2006e, 0x00000000}},  //   skop_, çada, _पहाड,\n  { {0x3a26067c, 0x7c2e0026, 0x66e30545, 0x00000000}},  //   pkop_, _ilbr, воја,\n  { {0x26c012f8, 0x2487002a, 0x44f40216, 0x00000000}},  //   čio_, _ainm_, епис,\n  { {0x25af0026, 0x682f0190, 0x00000000, 0x00000000}},  //   _degl_, _søde,   ,\n  { {0x83fc0182, 0x22400f37, 0x00000000, 0x00000000}},  //   kođe, _amik_,   ,\n  { {0xd6cf004b, 0x97260014, 0x78a201ed, 0x00000000}},  //   _نقل_, _تفاو, lpov,\n  { {0xc7b80091, 0x64a6007e, 0x7afa000c, 0x00000000}},  //   _dođe_, _жада, _áttu,\n  { {0xe8030061, 0x7c2e00b4, 0x00000000, 0x00000000}},  //   लाचा_, _olbr,   ,\n  { {0x656f010f, 0x9f43013e, 0x00000000, 0x00000000}},  //   üche, sejí_,   ,\n  { {0x83fc0166, 0x442e0288, 0x00000000, 0x00000000}},  //   gođe, _ilf_,   ,\n  { {0x41e70822, 0x7c2e01a2, 0xddc40036, 0x00000000}},  //   _ціка, _albr, enił,\n  { {0x5c750057, 0x7bde010f, 0x101800a1, 0x00000000}},  // [2890] елат, ffpu, سکیں_,\n  { {0x78a206b8, 0x3a2d1531, 0x83fc0091, 0x00000000}},  //   dpov, _slep_, bođe,\n  { {0xb5fd003b, 0x00000000, 0x00000000, 0x00000000}},  //   loše,   ,   ,\n  { {0xd37b0049, 0xdb1c004a, 0x2cc4019a, 0x00000000}},  //   קראט, _acró, ürdü_,\n  { {0x5d8501d8, 0xb5fd0340, 0x682f068f, 0x00000000}},  //   _سلسل, noše, _rødb,\n  { {0x46f50088, 0xec350049, 0x2c05013d, 0x00000000}},  //   ечит, _טאָר_, राओं_,\n  { {0xa2c00309, 0x661d0c43, 0x00000000, 0x00000000}},  //   _विष्, ösko,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xdb1c01aa, 0x260401f5, 0xb5fd0645, 0x00000000}},  //   _adrè, वाजी_, joše,\n  { {0xa2c002fb, 0xb5fd050f, 0x7af50036, 0x00000000}},  //   _विश्, doše, _kszt,\n  { {0x442e0190, 0x31690276, 0xe5e1007e, 0x00000000}},  //   _dlf_, _ayaz_, _былi_,\n  { {0x349503f3, 0x83fc0091, 0xdb0e000a, 0x00000000}},  //   _задр, vođe, _debè,\n  { {0x6594012b, 0xb5fd0b18, 0x660b1532, 0x00000000}},  //   _рачу, goše, _ingk,\n  { {0x26c70207, 0x7af50047, 0x95cc006b, 0x00000000}},  //   orno_, _oszt, _çərç,\n  { {0xbcfb0047, 0x26040061, 0xdee30256, 0x00000000}},  //   _szép, वाची_, лори,\n  { {0x9f580919, 0x433a009b, 0x83fc0166, 0x00000000}},  //   ndré_, _מעצב, rođe,\n  { {0x61e41533, 0x7af50010, 0x93f30061, 0x00000000}},  // [28a0] _ibil, _aszt, _असाच_,\n  { {0x4d631534, 0x3ec5005a, 0xa7fc014a, 0x00000000}},  //   укув, üstü_, _akın,\n  { {0x4fd7007b, 0x7fd7007b, 0x660b10ed, 0x00000000}},  //   _אויב_, _אויס_, _ongk,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x61e4000b, 0x67d401fc, 0x7af50010, 0x00000000}},  //   _mbil, волу, _eszt,\n  { {0x660b1535, 0x25dd006e, 0xfaf100a1, 0x00000000}},  //   _angk, क्सी_, دثے_,\n  { {0x61e40091, 0x78a2057c, 0xad9b000c, 0x00000000}},  //   _obil, spov, _snúi,\n  { {0x660b0085, 0xdb0e0173, 0x00000000, 0x00000000}},  //   _cngk, _rebè,   ,\n  { {0x54541536, 0x69c000f6, 0x442e0203, 0x00000000}},  //   квит, _idme, _plf_,\n  { {0xccf300b6, 0x61e41537, 0x290403ba, 0x00000000}},  //   רכז_, _abil, _irma_,\n  { {0xdb0e0b76, 0x61e401f3, 0x7e660022, 0x00000000}},  //   _bebé, _bbil, _okkp,\n  { {0x5ab700bd, 0x7e6600e0, 0x00000000, 0x00000000}},  //   עלכע_, _nkkp,   ,\n  { {0x442e0018, 0xdb0e004a, 0xd83f00ca, 0x00000000}},  //   _tlf_, _debé, _ščit_,\n  { {0xb5fd0627, 0x442e02e1, 0xdb070010, 0x00000000}},  //   roše, _ulf_, _lejá,\n  { {0xc0ab00a6, 0x69c00465, 0x2baf006e, 0x00000000}},  //   _کابل_, _odme, टरसा,\n  { {0xb5fd016c, 0x29041538, 0x27ee0016, 0x00000000}},  //   poše, _orma_, hefn_,\n  { {0xf1bf1539, 0x61ef153a, 0x8bc7153b, 0x00000000}},  // [28b0] nkám_, mecl, есед,\n  { {0x69c0153c, 0x61e4016e, 0x61fd0056, 0x00000000}},  //   _adme, _zbil, ldsl,\n  { {0x7e660022, 0xdb070010, 0x00000000, 0x00000000}},  //   _fkkp, _bejá,   ,\n  { {0x61fd06a1, 0x68ed153d, 0x61ef153e, 0x00000000}},  //   ndsl, çado, necl,\n  { {0xd366007a, 0x7e6d153f, 0x60dd1540, 0x00000000}},  //   _چه_, mlap, ntsm,\n  { {0x7e6d0010, 0xd3660014, 0x69c000e0, 0x00000000}},  //   llap, _نه_, _edme,\n  { {0x8f9c0049, 0x29040145, 0xcc54005e, 0x00000000}},  //   ליגי, _erma_, _свръ,\n  { {0x7e6d0010, 0x24990285, 0x61fd0030, 0x00000000}},  //   nlap, ísmo_, jdsl,\n  { {0xe895008b, 0x61ef1541, 0x9f4a0129, 0x00000000}},  //   _разь, decl, rebé_,\n  { {0x7e6d00b0, 0x61e40197, 0x00000000, 0x00000000}},  //   hlap, _sbil,   ,\n  { {0x3f8c016c, 0xe6c70379, 0x26dc0f6c, 0x00000000}},  //   žduk_, _ستاي, ctvo_,\n  { {0x660b0169, 0x60dd01a2, 0xa6960097, 0x00000000}},  //   _ungk, ftsm, _סכנה_,\n  { {0x463a007b, 0x7e6d0089, 0x60dd0030, 0x00000000}},  //   _קענע, dlap, gtsm,\n  { {0x6a7810af, 0x25dd007d, 0x701901e1, 0x00000000}},  //   mífe, क्री_, ніст_,\n  { {0x61e4006b, 0x998f0006, 0x6a781542, 0x00000000}},  //   _tbil, nigų_, lífe,\n  { {0x61e40825, 0xc6920049, 0xa7fc014a, 0x00000000}},  //   _ubil, שאן_, _akıl,\n  { {0x6a78052a, 0x3e5a013e, 0x60dd0045, 0x00000000}},  // [28c0] nífe, jďte_, ctsm,\n  { {0xe0b7061e, 0x9f5a0065, 0xfce3142c, 0x00000000}},  //   _שליט_, _japë_, рофо,\n  { {0x68e906c0, 0xe9da007c, 0x3daa007c, 0x00000000}},  //   _aped, дке_, _окно_,\n  { {0x98a60081, 0x831a0049, 0x60c9016c, 0x00000000}},  //   виде, וועז, šeme,\n  { {0x64430006, 0x00000000, 0x00000000, 0x00000000}},  //   _omni,   ,   ,\n  { {0x6b9c00c4, 0x26ce004a, 0x00000000, 0x00000000}},  //   _ufrg, tufo_,   ,\n  { {0x8c43025f, 0xddcd001a, 0x69c00009, 0x00000000}},  //   _тере, noaş, _tdme,\n  { {0x35f40331, 0xceb300b3, 0x69c008c8, 0x00000000}},  //   упир, ביה_, _udme,\n  { {0x26dc016c, 0x2904000d, 0xd9100123, 0x00000000}},  //   stvo_, _urma_, _دیش_,\n  { {0xa84a025a, 0x26dc012d, 0x00000000, 0x00000000}},  //   _غلام_, ptvo_,   ,\n  { {0x1db20164, 0x0bb700b3, 0x64430009, 0x00000000}},  //   जरात, כלים_, _dmni,\n  { {0x27e9037e, 0x60dd02e1, 0x6443014a, 0x00000000}},  //   đane_, ttsm, _emni,\n  { {0x61fd1543, 0x041e0044, 0x61ef0585, 0x00000000}},  //   rdsl, যোগী_, recl,\n  { {0xdb05000c, 0x61ef009d, 0xa4b7009b, 0x00000000}},  //   rahú, secl, _ילדה_,\n  { {0xb5fd01c5, 0x7e6d0010, 0xf1bf0010, 0x00000000}},  //   loša, tlap, nkák_,\n  { {0x64480996, 0x2d8f0030, 0x64430036, 0x00000000}},  //   lidi, øge_, _zmni,\n  { {0xb5fd001e, 0x3d0d013d, 0x9f5a01aa, 0x00000000}},  // [28d0] noša, समें_, _lapè_,\n  { {0x7e6d010a, 0xd0f8012f, 0x64481544, 0x00000000}},  //   slap, _יצחק_, nidi,\n  { {0x68e90198, 0xe0df0197, 0x7e6d1545, 0x00000000}},  //   _sped, ltò_, plap,\n  { {0xe1ff0010, 0x64480b1f, 0x628d0066, 0x00000000}},  //   ndó_, hidi, _jiao,\n  { {0x6e2d0020, 0xe0df0e5d, 0x89a80088, 0x00000000}},  //   mkab, ntò_, тків_,\n  { {0xb5fd001e, 0x628d01f3, 0x644809d8, 0x00000000}},  //   doša, _liao, jidi,\n  { {0x36690057, 0x64480006, 0x81cb0044, 0x00000000}},  //   нако_, didi, র্য_,\n  { {0x83fc0091, 0xc7b804eb, 0x6a7803d1, 0x00000000}},  //   vođa, _vođa_, tífe,\n  { {0x64480b1f, 0x9f4300b0, 0x5a44007e, 0x00000000}},  //   fidi, lejä_, _тэра,\n  { {0x6448014a, 0x81cb0044, 0x683400f6, 0x00000000}},  //   gidi, র্ম_, _pàde,\n  { {0x6e2d014a, 0x05130044, 0x8458005e, 0x00000000}},  //   kkab, িনের_, ърът_,\n  { {0x83fc0107, 0x823604e8, 0x628d0197, 0x00000000}},  //   rođa, اردا, _ciao,\n  { {0x64480b62, 0x628d1546, 0x7d0904eb, 0x00000000}},  //   bidi, _diao, _šesn,\n  { {0x64480919, 0xddc400b9, 0x64431547, 0x00000000}},  //   cidi, dliš, _umni,\n  { {0x3ebe009f, 0x75290047, 0x00000000, 0x00000000}},  //   étt_, lyez,   ,\n  { {0x81cb0055, 0x661b020c, 0x6e2d011c, 0x00000000}},  //   র্ব_, njuk, gkab,\n  { {0x75291483, 0xdcff006b, 0xddc4007f, 0x00000000}},  // [28e0] nyez, faqı, gliš,\n  { {0xbc6a023c, 0x661b0934, 0x00000000, 0x00000000}},  //   رمان_, hjuk,   ,\n  { {0x49ca1548, 0x9f8b010e, 0x00000000, 0x00000000}},  //   елен_, _söök_,   ,\n  { {0x6e2d003b, 0x64480142, 0xddc40087, 0x00000000}},  //   ckab, zidi, bliš,\n  { {0x28f80e09, 0x627c0036, 0xad9b0027, 0x00000000}},  //   тель_, _głoś, _vnút,\n  { {0x64480096, 0xb5fd0089, 0x00000000, 0x00000000}},  //   xidi, voša,   ,\n  { {0x7d04044e, 0x644809dd, 0xfaa300ec, 0x00000000}},  //   lvis, vidi, _гасо,\n  { {0xb5fd001e, 0xceb3009b, 0x6448018e, 0x00000000}},  //   toša, זיה_, widi,\n  { {0x81cb0055, 0x644811c6, 0x7d0405fe, 0x00000000}},  //   র্ড_, tidi, nvis,\n  { {0xb5fd0089, 0x5c370049, 0x2a66011c, 0x00000000}},  //   roša, ָרטן_, loob_,\n  { {0xd7930054, 0x442c1549, 0xddc401ca, 0x00000000}},  //   _المخ, rkd_, zliš,\n  { {0x3ce004d3, 0x6448005d, 0x667600a1, 0x00000000}},  //   ktiv_, sidi, _صدار,\n  { {0x7d04154a, 0xe1ff154b, 0xc5f300b6, 0x00000000}},  //   jvis, rdó_, _לדף_,\n  { {0x7d0400b5, 0xe0df0197, 0x9f530066, 0x00000000}},  //   dvis, rtò_, _paxà_,\n  { {0xd904026c, 0xf8d1006e, 0x63ba154c, 0x00000000}},  //   _کی_, _सम्प, matn,\n  { {0x63ba154d, 0x7d040146, 0x00000000, 0x00000000}},  //   latn, fvis,   ,\n  { {0xdb0e008e, 0x2fda0009, 0x5bcb003b, 0x00000000}},  // [28f0] _debí, _fcpg_, ећег_,\n  { {0xad9b0917, 0x224b154e, 0x6e2d0030, 0x00000000}},  //   _saúd, lick_, skab,\n  { {0x09bc0055, 0x1a6500a1, 0x81cb0044, 0x00000000}},  //   _ইউজা, لیسی_, র্ণ_,\n  { {0x224b154f, 0xdb070039, 0x63ba1550, 0x00000000}},  //   nick_, _rejä, hatn,\n  { {0x212b1551, 0x63ba033b, 0x3ce0001a, 0x00000000}},  //   nych_, katn, ctiv_,\n  { {0x63ba0119, 0x2ca900f8, 0x224b01a2, 0x00000000}},  //   jatn, mpad_, hick_,\n  { {0x63ba01d9, 0x224b098e, 0x75d50014, 0x00000000}},  //   datn, kick_, ليغا,\n  { {0x06090057, 0x81cb0044, 0xf625034b, 0x00000000}},  //   тник_, র্ত_, рдио,\n  { {0x680b001e, 0x63ba04be, 0x2ca90168, 0x00000000}},  //   _pēdē, fatn, npad_,\n  { {0x212b1552, 0x1309007c, 0x63ba0010, 0x00000000}},  //   dych_, вной_, gatn,\n  { {0x35f5041f, 0xb05b01a2, 0x9f5a0068, 0x00000000}},  //   _впер, nräu, _tapé_,\n  { {0x224b0039, 0x7d0400b0, 0x2ca9046a, 0x00000000}},  //   gick_, yvis, kpad_,\n  { {0xae000061, 0x63ba04cb, 0x25ad1553, 0x00000000}},  //   _लोगन_, batn, mbel_,\n  { {0x7d040a19, 0x645d00f4, 0x98a00166, 0x00000000}},  //   vvis, ésid, šić_,\n  { {0xc447026c, 0xdfcf0025, 0x81c00044, 0x00000000}},  //   _لیکن_, ظيف_, ুভব_,\n  { {0x7d040089, 0x3ce001d5, 0x3126005e, 0x00000000}},  //   tvis, ttiv_, _вдиг,\n  { {0x212b0046, 0x1c46008b, 0x00000000, 0x00000000}},  // [2900] cych_, анам,   ,\n  { {0x69db0211, 0x629e029d, 0x3ce01554, 0x00000000}},  //   _acue, _époc, rtiv_,\n  { {0x3ce01140, 0x2ca90f02, 0x68fb12b6, 0x00000000}},  //   stiv_, apad_, _asud,\n  { {0x7d040010, 0x25ad00b5, 0x63ba1555, 0x00000000}},  //   pvis, jbel_, zatn,\n  { {0xb5fd1556, 0x7d0400f8, 0x9f580129, 0x00000000}},  //   tošn, qvis, ldrà_,\n  { {0x25ad021f, 0xd90d0167, 0x69db004a, 0x00000000}},  //   ebel_, عیل_, _ecue,\n  { {0x63ba01cd, 0x212b0046, 0x9f580129, 0x00000000}},  //   vatn, zych_, ndrà_,\n  { {0x27e9037e, 0x2c0a001c, 0xb05b0a2f, 0x00000000}},  //   đana_, _होतं_, lrät,\n  { {0x63ba0387, 0x15e20164, 0x98a30478, 0x00000000}},  //   tatn, क्षर_, _мите,\n  { {0x3cf9013d, 0xb05b0210, 0x224b0133, 0x00000000}},  //   _उनसे_, nrät, wick_,\n  { {0x212b0046, 0x3a240091, 0x2ca900ca, 0x00000000}},  //   wych_, _komp_, zpad_,\n  { {0x212b0832, 0xdb15000a, 0xbddb000a, 0x00000000}},  //   tych_, _dezè, _emèj,\n  { {0x224b01d5, 0x63ba0169, 0x9258005e, 0x00000000}},  //   rick_, patn, раят_,\n  { {0x212b1557, 0x104b004c, 0x3a240168, 0x00000000}},  //   rych_, тями_, _lomp_,\n  { {0xe29701f9, 0xc05801fb, 0x645d0f57, 0x00000000}},  //   _кај_, рія_, ésie,\n  { {0x2ca901d6, 0x00000000, 0x00000000, 0x00000000}},  //   tpad_,   ,   ,\n  { {0xdb05002a, 0xb5fd0465, 0x22490022, 0x00000000}},  // [2910] rbhí, došl, _imak_,\n  { {0x2ca91558, 0x63b81559, 0xdd110066, 0x00000000}},  //   rpad_, _jevn, _iżże,\n  { {0x2ca90107, 0xdb150010, 0xb9950025, 0x00000000}},  //   spad_, _kezé, ملاب,\n  { {0x63b800b9, 0x2ca900f8, 0x00000000, 0x00000000}},  //   _levn, ppad_,   ,\n  { {0xa3b60164, 0xe1ff155a, 0x20010058, 0x00000000}},  //   जरा_, llós_, _kahi_,\n  { {0x81dd0055, 0x9f58008e, 0x20030022, 0x00000000}},  //   ড়ি_, ldrá_, ndji_,\n  { {0x26c10428, 0xad9b0181, 0x62980207, 0x00000000}},  //   ého_, _gaúc, _nuvo,\n  { {0xa2c002d2, 0xcf5801f8, 0x9f580211, 0x00000000}},  //   _विज्, יבות_, ndrá_,\n  { {0x81dd0055, 0x68fb1434, 0x25ad155b, 0x00000000}},  //   ড়া_, _usud, rbel_,\n  { {0xc6e701fb, 0x2001022b, 0x395f155c, 0x00000000}},  //   _відп, _nahi_, _ixus_,\n  { {0xd6db012b, 0x63b80173, 0xe365004c, 0x00000000}},  //   _шта_, _devn, скни,\n  { {0xf5950054, 0x81cb0044, 0x6298083f, 0x00000000}},  //   _الإج, র্স_, _duvo,\n  { {0x66ea006b, 0x20010085, 0x661d01e5, 0x00000000}},  //   _təkc, _bahi_, ösku,\n  { {0x8fa3003b, 0xa8790049, 0xf66a000c, 0x00000000}},  //   заре, טאָר, phæð_,\n  { {0x2001155d, 0xb05b00f8, 0x00000000, 0x00000000}},  //   _dahi_, vrät,   ,\n  { {0x7bc71468, 0xb05b155e, 0x682f0146, 0x00000000}},  //   _adju, tsäc, _bødk,\n  { {0x3a2400bb, 0x66ea006b, 0x6298010f, 0x00000000}},  // [2920] _romp_, _məka, _zuvo,\n  { {0xddcd0036, 0x00000000, 0x00000000, 0x00000000}},  //   gnał,   ,   ,\n  { {0x5f061036, 0xb05b155f, 0x3a2400bb, 0x00000000}},  //   _узна, rrät, _pomp_,\n  { {0xb05b0039, 0x9acb00a1, 0x68e20197, 0x00000000}},  //   srät, ادلہ_, ttod,\n  { {0xa3d70164, 0xb05b0039, 0x628600ca, 0x00000000}},  //   िला_, prät, imko,\n  { {0x6c3600a6, 0xc5e50044, 0xd6da02d3, 0x00000000}},  //   _افسا, _খোলা_, гти_,\n  { {0x68e20207, 0x63b81560, 0xb5fd04eb, 0x00000000}},  //   stod, _revn, pošl,\n  { {0xb8ce08b7, 0x63b800ca, 0xf1bf0010, 0x00000000}},  //   _কি_, _sevn, nkát_,\n  { {0x629814f8, 0x63b80161, 0xdb050276, 0x00000000}},  //   _suvo, _pevn, zahü,\n  { {0x96ba1561, 0x22491562, 0x932600a1, 0x00000000}},  //   _буду_, _smak_, مرجن,\n  { {0xe6960025, 0xd5af02e9, 0x888102fd, 0x00000000}},  //   _الصد, _нс_, _تیون,\n  { {0xe71700b6, 0x80dd0055, 0xfbde0044, 0x00000000}},  //   _לחבר_, যবস্, ড়িত,\n  { {0xdb150010, 0x85761234, 0x067b0049, 0x00000000}},  //   _vezé, _ادائ, _ענדל,\n  { {0x25de0204, 0xf1db0309, 0xdb1c0030, 0x00000000}},  //   _गाडी_, _भावन, _idræ,\n  { {0xfbde0044, 0x9f340088, 0xadbd007e, 0x00000000}},  //   ড়াত, пері, кавi,\n  { {0x66020004, 0x6a78004a, 0x200100e7, 0x00000000}},  //   _jaok, dífo, _wahi_,\n  { {0xd7c80061, 0x61ed011c, 0x20011563, 0x00000000}},  // [2930] रणाच, _ibal, _tahi_,\n  { {0x44e2000c, 0x81cb0044, 0xb6060521, 0x00000000}},  //   ið_, র্শ_, lašć,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x66020627, 0x998d1556, 0xb05b010f, 0x00000000}},  //   _naok, _aleš_, präs,\n  { {0x61ed000b, 0x7bc3009f, 0x69d91564, 0x00000000}},  //   _mbal, ónus, rgwe,\n  { {0x16a9005c, 0xbcfb00f4, 0xdb050048, 0x00000000}},  //   авки_, _exéc, abhá,\n  { {0xb21b000c, 0xe7390827, 0x682f1565, 0x00000000}},  //   tmæl, рей_, _jødi,\n  { {0xe7f503d7, 0x79e700a1, 0x644a0142, 0x00000000}},  //   _इसका_, _دورہ_, _amfi,\n  { {0xb5fd0e3b, 0x845900ed, 0x7ae50022, 0x00000000}},  //   lošk, ирот_, ltht,\n  { {0x61ed011c, 0x00000000, 0x00000000, 0x00000000}},  //   _abal,   ,   ,\n  { {0x60c40119, 0xfbd2019b, 0x61ed1566, 0x00000000}},  //   _svim, ותי_, _bbal,\n  { {0x7c270065, 0x7b200107, 0xe5ef00b0, 0x00000000}},  //   _lojr, _ušuš, äkää,\n  { {0x644f00f4, 0x25bf0433, 0x61ed00d4, 0x00000000}},  //   écis, maul_, _dbal,\n  { {0x61ed002d, 0xb5fd0142, 0xdfd20025, 0x00000000}},  //   _ebal, košk, بيس_,\n  { {0x44271567, 0x81b90044, 0xb5fd0166, 0x00000000}},  //   _ion_, _চার_, jošk,\n  { {0x44271568, 0x78a90224, 0x3d060061, 0x00000000}},  //   _hon_, _otev, हटले_,\n  { {0x44271569, 0xec4a007c, 0x0c260088, 0x00000000}},  // [2940] _kon_, азал_, оман,\n  { {0x4427156a, 0x69c90145, 0x61ed156b, 0x00000000}},  //   _jon_, _adee, _zbal,\n  { {0x4427028c, 0x290d130f, 0xb5fd0bf8, 0x00000000}},  //   _mon_, _area_, gošk,\n  { {0x44270011, 0x290d0a49, 0x38c802fd, 0x00000000}},  //   _lon_, _brea_, ماتی_,\n  { {0xb05b0444, 0x442700b0, 0x69c90045, 0x00000000}},  //   isän, _oon_, _ddee,\n  { {0x442705d3, 0x764b018e, 0x290d012d, 0x00000000}},  //   _non_, _amgy, _drea_,\n  { {0xab2a0017, 0xd6d00025, 0x3e480035, 0x00000000}},  //   _това_, رقة_, eşti_,\n  { {0x4427002a, 0xcf93009b, 0x7d09012d, 0x00000000}},  //   _aon_, וטו_, _šesi,\n  { {0x4427156c, 0xe4e601fb, 0x25eb0061, 0x00000000}},  //   _bon_, ційн, _अउरी_,\n  { {0x4427156d, 0x44e2009f, 0x61ed04b8, 0x00000000}},  //   _con_, rð_, _sbal,\n  { {0x4427156e, 0xd251007a, 0x2be20204, 0x00000000}},  //   _don_, فند_, _पाना,\n  { {0x9258007c, 0x25bf00e5, 0x00000000, 0x00000000}},  //   жают_, caul_,   ,\n  { {0x442701aa, 0xc21801fb, 0x855603ec, 0x00000000}},  //   _fon_, ією_, _بخاط,\n  { {0x9f4c004f, 0x4427156f, 0xdb1e00c4, 0x00000000}},  //   ždý_, _gon_, rapê,\n  { {0x764b018e, 0xb6060521, 0x7ae50045, 0x00000000}},  //   _ymgy, pašć, xtht,\n  { {0x61ed0020, 0xc7b80166, 0x7c270009, 0x00000000}},  //   _ubal, _dođi_, _sojr,\n  { {0x44270607, 0x2d8f001f, 0x645a1570, 0x00000000}},  // [2950] _yon_, äge_, onti,\n  { {0x645a1571, 0x44270f1d, 0xb5fd1572, 0x00000000}},  //   nnti, _xon_, tošk,\n  { {0x645a00b0, 0x443e01a2, 0xdefb007e, 0x00000000}},  //   inti, iht_, _тып_,\n  { {0x290d000d, 0xb5fd01d9, 0xf9c701fb, 0x00000000}},  //   _prea_, rošk, іщен,\n  { {0x8d8702be, 0xf99003ec, 0x443e0982, 0x00000000}},  //   _фунд, نبه_, kht_,\n  { {0x290d000d, 0x2be20061, 0x09340025, 0x00000000}},  //   _vrea_, _पाया, برمج,\n  { {0x4427000d, 0x2b570014, 0x7ac4005c, 0x00000000}},  //   _ron_, _بیاد_, _осте,\n  { {0x682f02cc, 0x569200ec, 0x443e010f, 0x00000000}},  //   _nødv, најт, eht_,\n  { {0x442701a3, 0x290d0300, 0xb5fd10d9, 0x00000000}},  //   _pon_, _urea_, noši,\n  { {0x443e0866, 0x645a00ea, 0x00000000, 0x00000000}},  //   ght_, gnti,   ,\n  { {0x442708ba, 0xdb0e010f, 0xa8220014, 0x00000000}},  //   _von_, _gebä, _سکون,\n  { {0xfc3f1573, 0x645a0006, 0x442700ab, 0x00000000}},  //   _stíl_, anti, _won_,\n  { {0x4427028c, 0xb05b04ce, 0xb5fd0089, 0x00000000}},  //   _ton_, rsän, joši,\n  { {0x443e1574, 0xc7b80107, 0x9f5a0197, 0x00000000}},  //   cht_, _pođi_, _papà_,\n  { {0xe7ed0365, 0xfbd200a1, 0x25bd00e0, 0x00000000}},  //   च्या_, ہتا_, _kewl_,\n  { {0x9f4b0010, 0x00000000, 0x00000000, 0x00000000}},  //   áját_,   ,   ,\n  { {0xdb1c00c4, 0x229a0089, 0x629600e0, 0x00000000}},  // [2960] _gerê, _rīki_, _iiyo,\n  { {0x6296047b, 0x9f580023, 0x00000000, 0x00000000}},  //   _hiyo, nerë_,   ,\n  { {0xeb970088, 0x62961575, 0x628400ea, 0x00000000}},  //   чих_, _kiyo, _khio,\n  { {0xdb1c0065, 0x9f580065, 0x628701dc, 0x00000000}},  //   _herë, herë_, ňkov,\n  { {0x645a1576, 0x62840051, 0x6e240d16, 0x00000000}},  //   ynti, _mhio, mjib,\n  { {0x9f580023, 0x00000000, 0x00000000, 0x00000000}},  //   jerë_,   ,   ,\n  { {0x81d40055, 0xe3c30044, 0x8f9b00a3, 0x00000000}},  //   স্য_, ্ভাব, זיצי,\n  { {0x645a0b78, 0x6296011c, 0x6e360006, 0x00000000}},  //   wnti, _niyo, nkyb,\n  { {0x6d440198, 0xa3d70061, 0x682f08c8, 0x00000000}},  //   nzia, िलं_, _rødv,\n  { {0x81b90055, 0x7bde1577, 0x53340478, 0x00000000}},  //   _চাই_, ngpu, деот,\n  { {0x62961578, 0xddcd00b9, 0x645a00f8, 0x00000000}},  //   _biyo, hlaš, rnti,\n  { {0x443e048a, 0x6284111b, 0xa77b0049, 0x00000000}},  //   sht_, _chio, _פראפ,\n  { {0x6296034f, 0x443e0658, 0x62840048, 0x00000000}},  //   _diyo, pht_, _dhio,\n  { {0x6d441579, 0xc95300b6, 0xc05b0451, 0x00000000}},  //   dzia, תמש_, сім_,\n  { {0x6284002a, 0x7e6d0161, 0x9f5a008e, 0x00000000}},  //   _fhio, toap, _papá_,\n  { {0x337700b6, 0x443c0011, 0xb5fd0089, 0x00000000}},  //   _מתוך_, _hlv_, toši,\n  { {0x7e6d000d, 0xddcd0ce4, 0x8d770025, 0x00000000}},  // [2970] roap, glaš, سارا,\n  { {0x62960288, 0x7e6d0035, 0x7a33026d, 0x00000000}},  //   _ziyo, soap, _içti,\n  { {0x3cf903d7, 0x539b0104, 0x443c00d9, 0x00000000}},  //   _उनके_, ציאו, _mlv_,\n  { {0xddcd0059, 0x6e3602d4, 0xdb1c00f6, 0x00000000}},  //   blaš, ckyb, _merè,\n  { {0x8c3b001f, 0x998400b9, 0x443c01c3, 0x00000000}},  //   _auße, _domů_, _olv_,\n  { {0x66ea005f, 0xe8f8007e, 0x7d0d0232, 0x00000000}},  //   _təkl, ялі_, mvas,\n  { {0x7d0d157a, 0x00000000, 0x00000000, 0x00000000}},  //   lvas,   ,   ,\n  { {0x7d0d0784, 0x443c00b0, 0x00000000, 0x00000000}},  //   ovas, _alv_,   ,\n  { {0x7d0d00b0, 0x3a84007e, 0x58d4157b, 0x00000000}},  //   nvas, _чырв, _потт,\n  { {0x62961338, 0x62840048, 0xdb1c000a, 0x00000000}},  //   _siyo, _shio, _berè,\n  { {0x6fd70061, 0xcfe30055, 0xb05b0039, 0x00000000}},  //   _बाजू, য়ান, rsäl,\n  { {0x1c0a001c, 0x5eac0055, 0x443c121b, 0x00000000}},  //   _होईल_, _ছিলে, _elv_,\n  { {0xd012026c, 0xdb1c008d, 0xdb1e008e, 0x00000000}},  //   پلز_, _perë, rapé,\n  { {0x4095029b, 0x6609022b, 0xddcd0107, 0x00000000}},  //   ерст, ldek, vlaš,\n  { {0xdee301fb, 0x6284002a, 0x6441056f, 0x00000000}},  //   кори, _thio, mhli,\n  { {0x6609011f, 0x6d44022b, 0x7c3c00e0, 0x00000000}},  //   ndek, tzia, _slrr,\n  { {0x15e202fb, 0x7d0d12c3, 0x6e240022, 0x00000000}},  // [2980] क्टर_, gvas, rjib,\n  { {0x6d440207, 0x26c7089f, 0x443c00f6, 0x00000000}},  //   rzia, ksno_, _xlv_,\n  { {0x7d0d157c, 0xf0930104, 0xdb051259, 0x00000000}},  //   avas, _שנת_, nchè,\n  { {0xddcd0089, 0x8c48005f, 0xceb300b3, 0x00000000}},  //   plaš, _başç, _שיר_,\n  { {0x81cb0055, 0x66090066, 0x81d40044, 0x00000000}},  //   র্ক_, ddek, স্থ_,\n  { {0x76aa0d51, 0x9f5801aa, 0x645d009d, 0x00000000}},  //   отив_, terè_, ésil,\n  { {0x6441157d, 0x8c3b010f, 0x66ea006b, 0x00000000}},  //   dhli, _fußb, _təkm,\n  { {0x81d40055, 0xa3b00164, 0x66090058, 0x00000000}},  //   স্ত_, टुन_, gdek,\n  { {0x6ad30044, 0x69c00089, 0xb7bc0089, 0x00000000}},  //   _সহযো, _ieme, _loģi,\n  { {0x69c0022b, 0x644100ab, 0x682f01e3, 0x00000000}},  //   _heme, ghli, _døds,\n  { {0x69c0020c, 0xbbd70097, 0x3946004a, 0x00000000}},  //   _keme, וויץ_, lzos_,\n  { {0x78a001dd, 0x682f01e3, 0x69c01303, 0x00000000}},  //   _kumv, _føds, _jeme,\n  { {0x69c0020c, 0x3946157e, 0x656f010f, 0x00000000}},  //   _meme, nzos_, ücht,\n  { {0x6441001f, 0x69c00010, 0xbe0500a1, 0x00000000}},  //   chli, _leme, کورٹ,\n  { {0xfe730188, 0x3267005e, 0x9f410197, 0x00000000}},  //   ندر_, _отив, _xchè_,\n  { {0x27e9037e, 0x69c0157f, 0xe508001d, 0x00000000}},  //   đani_, _neme, _kỷ_,\n  { {0x6a78045b, 0xddc40514, 0xa2da0201, 0x00000000}},  // [2990] cífi, bliž, पूर्,\n  { {0x61fd1580, 0x244001aa, 0x6609014a, 0x00000000}},  //   lesl, _fòme_, zdek,\n  { {0x3ce91581, 0x69c01582, 0x2904008a, 0x00000000}},  //   stav_, _beme, _asma_,\n  { {0xfe35007b, 0x61fd1556, 0x78a00009, 0x00000000}},  //   _נאָך_, nesl, _bumv,\n  { {0x69c00483, 0xadd6019b, 0x78a0001a, 0x00000000}},  //   _deme, _אורח_, _cumv,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x69c0000d, 0x7bc5011c, 0x660900b5, 0x00000000}},  //   _feme, mahu, tdek,\n  { {0x69c0037f, 0x7bc51583, 0xd90e026c, 0x00000000}},  //   _geme, lahu, جیے_,\n  { {0x6609033b, 0x64410124, 0x29040087, 0x00000000}},  //   rdek, thli, _gsma_,\n  { {0x69c0001e, 0xc9840072, 0x7bc5036b, 0x00000000}},  //   _zeme, _руси, nahu,\n  { {0x69c0011f, 0x35b501fb, 0x69cc00b9, 0x00000000}},  //   _yeme, _збер, ůlež,\n  { {0xcb12007b, 0x61fd00c7, 0x683404bd, 0x00000000}},  //   אלט_, gesl, _ràdi,\n  { {0x7bc5011c, 0x25b9000c, 0x6d5b0079, 0x00000000}},  //   kahu, ðslu_, _žuan,\n  { {0xf8b2009b, 0x6a781261, 0x7bc5010e, 0x00000000}},  //   רשם_, rífi, jahu,\n  { {0x3a3f014a, 0x5e960025, 0x61fd002d, 0x00000000}},  //   _olup_, فلسط, besl,\n  { {0x61e4041a, 0x2be20061, 0x66ea006b, 0x00000000}},  //   _ucil, _पाहा, _səkk,\n  { {0xc692061e, 0x8fa601e1, 0x7afb01a8, 0x00000000}},  // [29a0] ראן_, _папе, _ćuta,\n  { {0x69c01584, 0x09d80061, 0x7bc50eb0, 0x00000000}},  //   _seme, डल्य, gahu,\n  { {0x69c004fa, 0x4fbb00a0, 0x3a2d01c3, 0x00000000}},  //   _peme, _מציא, _boep_,\n  { {0x4ad10061, 0xc9861585, 0x0f570097, 0x00000000}},  //   _हिरव, нули, _טיים_,\n  { {0x7bc50058, 0xa3cf0309, 0x69c00065, 0x00000000}},  //   bahu, षणा_, _veme,\n  { {0x26dc0556, 0x39461586, 0x69c00168, 0x00000000}},  //   tuvo_, rzos_, _weme,\n  { {0x8c1b007b, 0x316c0046, 0x81cb0055, 0x00000000}},  //   _צולי, ędzy_, র্ট_,\n  { {0x7c2e0190, 0x9b17009b, 0x3a3f0091, 0x00000000}},  //   _hobr, _אחלה_, _glup_,\n  { {0x7c2e002d, 0xb21b0030, 0x61fd1587, 0x00000000}},  //   _kobr, llæg, vesl,\n  { {0xb806026c, 0xb05b0039, 0x73380216, 0x00000000}},  //   _سکتے_, rsäk, дзор_,\n  { {0xb21b0f4b, 0x22400168, 0xe1ff0051, 0x00000000}},  //   nlæg, _blik_, nnóg_,\n  { {0xe508001d, 0x60dd03b6, 0x22401588, 0x00000000}},  //   _tỷ_, tusm, _clik_,\n  { {0xdb051321, 0x7bc50020, 0xe5080011, 0x00000000}},  //   rché, yahu, _uỷ_,\n  { {0x7c2e1589, 0x61fd006b, 0xb4be0061, 0x00000000}},  //   _nobr, sesl, ेळी_,\n  { {0x60dd006c, 0xddc40036, 0xb5fd0091, 0x00000000}},  //   susm, bliż, pošt,\n  { {0x442e037f, 0xb21b0030, 0x7bc50020, 0x00000000}},  //   _hof_, dlæg, wahu,\n  { {0x7bc5020c, 0x442e158a, 0x3a2d07a5, 0x00000000}},  // [29b0] tahu, _kof_, _roep_,\n  { {0xddeb007a, 0xe1ff158b, 0x3a2d00bb, 0x00000000}},  //   _کرده_, leó_, _soep_,\n  { {0x442e0145, 0x3a2d0116, 0x00000000, 0x00000000}},  //   _mof_, _poep_,   ,\n  { {0x442e01d6, 0x7bc50428, 0x60cd00ea, 0x00000000}},  //   _lof_, sahu, _kvam,\n  { {0xbddb0129, 0x26cc0521, 0x7bc50058, 0x00000000}},  //   _elèc, _avdo_, pahu,\n  { {0x81cb0055, 0xbddb03eb, 0x46f50088, 0x00000000}},  //   র্চ_, _flèc, вчит,\n  { {0x1c0a03d7, 0xaa59158c, 0xddcd0036, 0x00000000}},  //   _होटल_, _живу_, miał,\n  { {0x7c2e0428, 0x60cd04eb, 0x9f4a00ea, 0x00000000}},  //   _zobr, _ovam, rebø_,\n  { {0xe1ff0010, 0x98f4002c, 0x26cc0022, 0x00000000}},  //   deó_, _مثلا, _evdo_,\n  { {0x22400292, 0x442e0016, 0xddcd0036, 0x00000000}},  //   _slik_, _cof_, niał,\n  { {0xb21b0f4b, 0x60cd006c, 0x22400036, 0x00000000}},  //   klæd, _avam, _plik_,\n  { {0x442e158d, 0x6b9a000c, 0x27e90521, 0x00000000}},  //   _eof_, _útge, đanu_,\n  { {0xa509158e, 0xf1bf0047, 0xdd0100b9, 0x00000000}},  //   _цела_, pján_, čtět,\n  { {0xd4790049, 0x628f0ace, 0x660b000c, 0x00000000}},  //   _קאַל, amco, _hagk,\n  { {0xe456007b, 0x7c2e1089, 0x60cd0f4a, 0x00000000}},  //   _ביסט_, _robr, _evam,\n  { {0x7c2e00d6, 0xb17b0039, 0x22400056, 0x00000000}},  //   _sobr, mgån, _ulik_,\n  { {0xed570113, 0x660b006a, 0xdca301e0, 0x00000000}},  // [29c0] вот_, _magk, иати,\n  { {0x14d40061, 0x213701ce, 0x660b02e7, 0x00000000}},  //   _दिसण, _סטיל_, _lagk,\n  { {0x9f4800b0, 0x8b9606e7, 0x403b00b3, 0x00000000}},  //   ähän_, трач, _חגיג,\n  { {0xb21b158f, 0x660b006a, 0x7c2e0016, 0x00000000}},  //   rlæg, _nagk, _wobr,\n  { {0xd94601e0, 0x61f6008d, 0xd8380107, 0x00000000}},  //   ъеди, _mbyl, _liče_,\n  { {0xddcd0036, 0x98730451, 0x7c2e0107, 0x00000000}},  //   ciał, аліц, _uobr,\n  { {0x442000ad, 0xd8380107, 0x442e1590, 0x00000000}},  //   _đi_, _niče_, _rof_,\n  { {0x442e0173, 0x261901f5, 0xb17b0039, 0x00000000}},  //   _sof_, भागी_, dgån,\n  { {0x2ca6002a, 0x442e0638, 0x57ea00ed, 0x00000000}},  //   íodh_, _pof_, _одам_,\n  { {0x6a780325, 0xe9670467, 0x683400f6, 0x00000000}},  //   rífu, _раул_, _pàdu,\n  { {0x60cd01bf, 0x660b0292, 0x442e00bb, 0x00000000}},  //   _svam, _fagk, _vof_,\n  { {0x7d0406a9, 0xddcd0036, 0xd838016c, 0x00000000}},  //   kwis, ział, _diče_,\n  { {0x442e00bb, 0x628f00bb, 0x6a78000c, 0x00000000}},  //   _tof_, rmco, lífs,\n  { {0x6e2f0082, 0x66001591, 0x7d040544, 0x00000000}},  //   _socb, lemk, dwis,\n  { {0x67380010, 0x7afb012d, 0xbcfb00f6, 0x00000000}},  //   nyvj, _ćuto, _txék,\n  { {0x30a70a1e, 0x6d0e0309, 0xddcd0036, 0x00000000}},  //   _иров, सिंग_, wiał,\n  { {0xd90406c6, 0x2d5805c7, 0x2259080a, 0x00000000}},  // [29d0] _بی_, вить_, misk_,\n  { {0x764207be, 0x225905ad, 0x61f6013e, 0x00000000}},  //   _lloy, lisk_, _zbyl,\n  { {0xddcd0036, 0x98b80089, 0x0ba41592, 0x00000000}},  //   riał, _ārā_, ршум,\n  { {0x225901c4, 0x629e00f4, 0x7d040058, 0x00000000}},  //   nisk_, _épou, bwis,\n  { {0x4dda019b, 0xdb1c0f6e, 0xa3e20061, 0x00000000}},  //   _אחרו, _cerâ, धला_,\n  { {0x764200e7, 0x660b1593, 0xd3660439, 0x00000000}},  //   _aloy, _sagk, _هه_,\n  { {0x660b0811, 0x63ba0009, 0x225902e1, 0x00000000}},  //   _pagk, dbtn, kisk_,\n  { {0xf5090d03, 0x3eb30082, 0x9f9c009b, 0x00000000}},  //   енил_, _mtxt_, וסופ,\n  { {0x2259004e, 0x03a5017f, 0x79ea00a1, 0x00000000}},  //   disk_, липо, _سولہ_,\n  { {0x58870783, 0x7642000a, 0x2c1c013d, 0x00000000}},  //   _рыба, _eloy, नाएं_,\n  { {0x7d041594, 0xc735035b, 0x225901e3, 0x00000000}},  //   zwis, _حفاظ, fisk_,\n  { {0x2259080a, 0x7d040036, 0xb17b0039, 0x00000000}},  //   gisk_, ywis, rgån,\n  { {0x3eb30009, 0x25ad1595, 0x00000000, 0x00000000}},  //   _atxt_, mcel_,   ,\n  { {0xdb1c0e7c, 0xd8381000, 0x25ad008e, 0x00000000}},  //   _serí, _tiče_, lcel_,\n  { {0xdb1c1596, 0x3eb30009, 0x2259043e, 0x00000000}},  //   _perí, _ctxt_, bisk_,\n  { {0x25ad0284, 0x6d41005f, 0x7d0400b5, 0x00000000}},  //   ncel_, _əlav, twis,\n  { {0xdb1c0142, 0x00000000, 0x00000000, 0x00000000}},  // [29e0] _verí,   ,   ,\n  { {0x7d040046, 0xc0060256, 0x660006b8, 0x00000000}},  //   rwis, _спок, zemk,\n  { {0xe9da0140, 0x7d0401a2, 0x660000e7, 0x00000000}},  //   еке_, swis, yemk,\n  { {0x66ea005f, 0x61e604be, 0x9f580c42, 0x00000000}},  //   _məkt, ngkl, merà_,\n  { {0x9f580197, 0x00000000, 0x00000000, 0x00000000}},  //   lerà_,   ,   ,\n  { {0xdcfd0089, 0x6d48006b, 0x7e6400ca, 0x00000000}},  //   _uzsā, _ədal, lnip,\n  { {0xf1ba001d, 0x9f580197, 0x66001597, 0x00000000}},  //   _đơn_, nerà_, temk,\n  { {0x9634025f, 0x7e64006c, 0xfb1b00b3, 0x00000000}},  //   рниц, nnip, _אולמ,\n  { {0x89660454, 0xc966008b, 0x8886025f, 0x00000000}},  //   _скаж, _свай, _блаж,\n  { {0x26190061, 0x5454005e, 0xb05b1598, 0x00000000}},  //   _मोठी_, рвот, nsät,\n  { {0xa3e50183, 0x225901c4, 0xb8930025, 0x00000000}},  //   _फार_, tisk_, _اللع,\n  { {0x9f580207, 0xbb3b0049, 0x6443007f, 0x00000000}},  //   derà_, געטי, _elni,\n  { {0x225901c4, 0xf1bf0010, 0xe3af0014, 0x00000000}},  //   risk_, lják_, غری_,\n  { {0x2259080a, 0x3394007e, 0x00000000, 0x00000000}},  //   sisk_, _калё,   ,\n  { {0x645a006a, 0x21390065, 0x225911b6, 0x00000000}},  //   miti, sysh_, pisk_,\n  { {0x442c1599, 0x443e159a, 0xdb0e013f, 0x00000000}},  //   ljd_, lkt_, _debü,\n  { {0xdc55098c, 0x5d99007e, 0x26c10010, 0x00000000}},  // [29f0] авањ, ткаў_, ához_,\n  { {0xe7e00201, 0x68e20006, 0xb05b0039, 0x00000000}},  //   _नागप, duod, gsät,\n  { {0x443e159b, 0xcb55012b, 0xdb0e010f, 0x00000000}},  //   ikt_, јвећ, _gebü,\n  { {0xdb1c02d5, 0x39150057, 0x645a0020, 0x00000000}},  //   _serã, имер, hiti,\n  { {0x645a0020, 0x628d131d, 0xfc3f0051, 0x00000000}},  //   kiti, _mhao, _dtír_,\n  { {0x645a1089, 0x443e02ae, 0x7c3e06d3, 0x00000000}},  //   jiti, jkt_, ckpr,\n  { {0x645a0038, 0xfc3f0211, 0x6a78049a, 0x00000000}},  //   diti, _guía_, rífr,\n  { {0x6e2d023a, 0xceb40097, 0xea63026c, 0x00000000}},  //   njab, זיק_, _اپری,\n  { {0xdb1c0181, 0x69cb0866, 0x7bc7003f, 0x00000000}},  //   _terã, mage, _keju,\n  { {0x69cb06d3, 0x6448120b, 0x7bc7159c, 0x00000000}},  //   lage, ghdi, _jeju,\n  { {0x20030802, 0x38ab0030, 0x60dd00bb, 0x00000000}},  //   deji_, _hør_, ersm,\n  { {0x628d0051, 0x69cb0038, 0x7bc71308, 0x00000000}},  //   _chao, nage, _leju,\n  { {0x645a159d, 0x628d002a, 0x9f58159e, 0x00000000}},  //   biti, _dhao, derá_,\n  { {0x443e001f, 0x69cb0030, 0x9f58159f, 0x00000000}},  //   ckt_, hage, terà_,\n  { {0x7e56004c, 0x69cb01e3, 0x38ab0737, 0x00000000}},  //   атац, kage, _lør_,\n  { {0x628d0051, 0x9f580cdd, 0xfe43053f, 0x00000000}},  //   _ghao, rerà_, онсо,\n  { {0x69cb0239, 0xb05b09f0, 0x753b0dfc, 0x00000000}},  // [2a00] dage, tsät, nyuz,\n  { {0x9f580197, 0xdb1c0051, 0x628d02d4, 0x00000000}},  //   perà_, _aerá, _zhao,\n  { {0x9f5815a0, 0xb05b0a5d, 0x69cb0190, 0x00000000}},  //   berá_, rsät, fage,\n  { {0x645a000d, 0x9f58029d, 0xfce6025f, 0x00000000}},  //   ziti, cerá_, _комо,\n  { {0x394015a1, 0x443e0056, 0x7bc70023, 0x00000000}},  //   áis_, ykt_, _feju,\n  { {0xf1bf0047, 0x2c1c013d, 0x26dc01a8, 0x00000000}},  //   tják_, नाओं_, trvo_,\n  { {0x645a15a2, 0x12e00044, 0x78ab0009, 0x00000000}},  //   viti, _বন্দ, aqgv,\n  { {0x2619007d, 0x38ab02cc, 0x69cb15a3, 0x00000000}},  //   _मोदी_, _før_, cage,\n  { {0x38ab0018, 0x645a15a4, 0xd9430aed, 0x00000000}},  //   _gør_, titi, _дети,\n  { {0x628d002a, 0x443e0089, 0x26dc016c, 0x00000000}},  //   _shao, ukt_, prvo_,\n  { {0x645a15a5, 0x443e15a6, 0xd5af004d, 0x00000000}},  //   riti, rkt_, _мс_,\n  { {0x443e15a7, 0x60dd0009, 0x7649000a, 0x00000000}},  //   skt_, trsm, chey,\n  { {0x645a000b, 0x9f580181, 0xc05b01fb, 0x00000000}},  //   piti, verá_, вів_,\n  { {0x02a601fb, 0x69cb0181, 0xc05b0088, 0x00000000}},  //   _крим, zage, тім_,\n  { {0x69cb00f4, 0xa2e301f9, 0x44f000f4, 0x00000000}},  //   yage, _дојд, là_,\n  { {0x7bc70169, 0xb05b00b0, 0x69cb00c4, 0x00000000}},  //   _seju, tsäs, xage,\n  { {0x629f00f4, 0x69cb15a8, 0xdb1e006c, 0x00000000}},  // [2a10] _époq, vage, hapä,\n  { {0xdb1c0211, 0x69cb010f, 0x6d4d00b5, 0x00000000}},  //   _será, wage, rzaa,\n  { {0x69cb04d7, 0x38ab0056, 0x6486000c, 0x00000000}},  //   tage, _sør_, yðin,\n  { {0xceb200bd, 0xbddb0173, 0xe0df0026, 0x00000000}},  //   _מיט_, _klèm, orò_,\n  { {0x69cb15a6, 0xdb1c064d, 0xe9d8007e, 0x00000000}},  //   rage, _verá, ркі_,\n  { {0x69cb15a9, 0xdb050051, 0x44f000d4, 0x00000000}},  //   sage, achá, dà_,\n  { {0x69cb0061, 0xb9e70088, 0x61ed00b4, 0x00000000}},  //   page, _візи, _ocal,\n  { {0x81cc0044, 0x683d0129, 0x38ab0030, 0x00000000}},  //   _লাভ_, _mèdi, _tør_,\n  { {0x6486009f, 0x79800016, 0xf8070088, 0x00000000}},  //   rðin, _gymw, _вчен,\n  { {0x69c900bb, 0xe0df0197, 0x61ed0d7b, 0x00000000}},  //   _heee, drò_, _acal,\n  { {0x78a90211, 0x9f580129, 0x60c400ab, 0x00000000}},  //   _huev, merç_, _swim,\n  { {0x66ea006b, 0x78a115aa, 0x69c9016e, 0x00000000}},  //   _təkr, _hilv, _jeee,\n  { {0x78a915ab, 0x69c90a9d, 0xf6740a4f, 0x00000000}},  //   _juev, _meee, _بالخ,\n  { {0x78a90211, 0xf1bf0181, 0x69c901ee, 0x00000000}},  //   _muev, abá_, _leee,\n  { {0x7ae5006c, 0x3e860025, 0xf1bf0010, 0x00000000}},  //   juht, مشرف, bbá_,\n  { {0x25bf011f, 0xf8a5007a, 0x64410fcf, 0x00000000}},  //   nbul_, _يک_, lkli,\n  { {0x78a90219, 0x644115ac, 0x925a0123, 0x00000000}},  // [2a20] _nuev, okli, _لشکر_,\n  { {0x09d00061, 0x64410aba, 0xdd8f1095, 0x00000000}},  //   हण्य, nkli, رول_,\n  { {0xb09b009b, 0xd91000a1, 0x7c350b4a, 0x00000000}},  //   _תייר, ڈیز_, _dozr,\n  { {0xd91004e1, 0x61ed01f3, 0x281900a1, 0x00000000}},  //   ویز_, _xcal, یفنگ_,\n  { {0x627b007b, 0x6441002b, 0x78a9008e, 0x00000000}},  //   ננננ, kkli, _cuev,\n  { {0x78a1001e, 0x69c90045, 0xfc4400a1, 0x00000000}},  //   _cilv, _eeee, _بھرپ,\n  { {0x1ae30264, 0x22420145, 0x569401bd, 0x00000000}},  //   _норм, kkkk_, оакт,\n  { {0x44f00409, 0x44b401fb, 0xbb3b0049, 0x00000000}},  //   tà_, обис, _געלי,\n  { {0x7afb0107, 0xdb1c00c4, 0x78a115ad, 0x00000000}},  //   _ćuti, _berç, _filv,\n  { {0x44f015ae, 0x61ed085d, 0xe0df0197, 0x00000000}},  //   rà_, _scal, vrò_,\n  { {0x6d41005f, 0xd764026c, 0x44f000d4, 0x00000000}},  //   _əlaq, _بنای, sà_,\n  { {0x64410007, 0x3ea20036, 0xe0df0197, 0x00000000}},  //   akli, _nikt_, trò_,\n  { {0xdb1c00b0, 0x644115af, 0xf5960025, 0x00000000}},  //   _herä, bkli, _الشج,\n  { {0x64410073, 0xdb1c15b0, 0xe0df0197, 0x00000000}},  //   ckli, _gerç, rrò_,\n  { {0xc05801e1, 0x7c3515b1, 0xce6b005e, 0x00000000}},  //   сія_, _rozr, град_,\n  { {0x4caa0055, 0xe0df0026, 0x61ed006b, 0x00000000}},  //   _চৌধু, prò_, _ucal,\n  { {0x7c350027, 0x69c915b2, 0x3ea215b3, 0x00000000}},  // [2a30] _pozr, _reee, _dikt_,\n  { {0x4d9804af, 0x69c915b4, 0x99ba0044, 0x00000000}},  //   скую_, _seee, ুলোক,\n  { {0xa91d0087, 0x69c9004a, 0x22490eff, 0x00000000}},  //   _izži, _peee, _klak_,\n  { {0x78a10335, 0x3a2400fa, 0x7ae50943, 0x00000000}},  //   _silv, _cnmp_, ruht,\n  { {0x78a115b5, 0xbcfb0181, 0x7ae50103, 0x00000000}},  //   _pilv, _exér, suht,\n  { {0x8aa70216, 0xdb1c0073, 0xdd310036, 0x00000000}},  //   _град, _berä, zęśc,\n  { {0x81d408b7, 0x78a100d9, 0x78bc016c, 0x00000000}},  //   স্ট_, _vilv, _črve,\n  { {0xd8380087, 0xb05b01a2, 0x00000000, 0x00000000}},  //   _fičo_, lpäd,   ,\n  { {0x89370123, 0x78a115b6, 0x64410039, 0x00000000}},  //   _اعزا, _tilv, tkli,\n  { {0x99480025, 0x224915b7, 0x7d0f0009, 0x00000000}},  //   _الكل_, _alak_, _mscs,\n  { {0x644115b8, 0xdb1c010f, 0xb21b0030, 0x00000000}},  //   rkli, _gerä, rlæn,\n  { {0x81e20055, 0x7d0f0061, 0x6441006c, 0x00000000}},  //   ন্ন_, _oscs, skli,\n  { {0xdb1c0181, 0x3ea202e1, 0xbddb0173, 0x00000000}},  //   _terç, _rikt_, _elèk,\n  { {0x224915b9, 0x3ea20479, 0x2d8201d6, 0x00000000}},  //   _elak_, _sikt_, _ryke_,\n  { {0x03250088, 0x22490ce3, 0x7d1d00d9, 0x00000000}},  //   _єдин, _flak_, _arss,\n  { {0x3f840089, 0x00e6058e, 0x00000000, 0x00000000}},  //   āmu_, _джин,   ,\n  { {0x3ea20039, 0x2cb901c3, 0x00000000, 0x00000000}},  // [2a40] _vikt_, _ctsd_,   ,\n  { {0x628606d3, 0x3942006c, 0x2cb90082, 0x00000000}},  //   llko, _üksi_, _dtsd_,\n  { {0x6da60200, 0xe7ed01f5, 0x3ea20089, 0x00000000}},  //   _мина, च्छा_, _tikt_,\n  { {0x387e0022, 0x00000000, 0x00000000, 0x00000000}},  //   _sktr_,   ,   ,\n  { {0xa3e90183, 0x00000000, 0x00000000, 0x00000000}},  //   यला_,   ,   ,\n  { {0xd6da103e, 0xdb1c00b0, 0x00000000, 0x00000000}},  //   ати_, _perä,   ,\n  { {0x27e0011f, 0x81e20055, 0xdca301fc, 0x00000000}},  //   ğin_, ন্য_, _цари,\n  { {0xdb1c010f, 0x27e00279, 0xa5340603, 0x00000000}},  //   _verä, şin_, знич,\n  { {0xd4060242, 0x69c20116, 0x746a007c, 0x00000000}},  //   ояни, mboe, иров_,\n  { {0x81e20055, 0xb3540088, 0x69c215ba, 0x00000000}},  //   ন্ম_, зкош, lboe,\n  { {0x2249083a, 0x683d00f6, 0x68e40048, 0x00000000}},  //   _plak_, _cèdu, áidf,\n  { {0x64a615bb, 0x69c200b5, 0x27fe0009, 0x00000000}},  //   _дада, nboe, _hbtn_,\n  { {0x1a9b007b, 0xba9b012f, 0x2beb0164, 0x00000000}},  //   ייטע, יסטי, _चालू_,\n  { {0x9f5a01aa, 0x74140014, 0x27fe0145, 0x00000000}},  //   _rapò_, _روبا, _jbtn_,\n  { {0x22490161, 0xd8380cd6, 0x69c20116, 0x00000000}},  //   _tlak_, _moč_, kboe,\n  { {0x68e20006, 0xa91d00b9, 0x5f940545, 0x00000000}},  //   krod, _lyža, фист,\n  { {0xa3ae03d7, 0x5d550113, 0xfbab041f, 0x00000000}},  // [2a50] _कला_, чкат, атей_,\n  { {0x68e210fd, 0x64dd0061, 0xd8380059, 0x00000000}},  //   drod, _मिसळ, _noč_,\n  { {0xb5fd15bc, 0x00000000, 0x00000000, 0x00000000}},  //   liše,   ,   ,\n  { {0xc333007b, 0x69c200c7, 0x244001aa, 0x00000000}},  //   ווע_, gboe, _dòmi_,\n  { {0x2ca302ae, 0x68e20036, 0x7d1d0068, 0x00000000}},  //   _tijd_, grod, _urss,\n  { {0x9f580026, 0x7d0d00e7, 0x387c016c, 0x00000000}},  //   ffrè_, mwas, govr_,\n  { {0x3ffc007b, 0x4429001d, 0x7d0d15bd, 0x00000000}},  //   יפגע, _đa_, lwas,\n  { {0x68e207ac, 0xecdf03d7, 0x7d0d00e7, 0x00000000}},  //   brod, _फटाफ, owas,\n  { {0xdb05001f, 0x81e20055, 0x68e204d2, 0x00000000}},  //   schä, ন্ড_, crod,\n  { {0x7d0d0058, 0x67f4000c, 0x00000000, 0x00000000}},  //   iwas, rþjó,   ,\n  { {0x59cf0309, 0x7d0d15be, 0x5884007e, 0x00000000}},  //   _हजार, hwas, _цыта,\n  { {0x80b30044, 0xdb120010, 0xdb070065, 0x00000000}},  //   _জিজ্, égév, _agjë,\n  { {0xa5670014, 0x271c0011, 0x660915bf, 0x00000000}},  //   _بدان, _ảnh_, meek,\n  { {0x660915c0, 0xdb15010f, 0x3af500f8, 0x00000000}},  //   leek, _bezü, kåp_,\n  { {0x442715c1, 0x00000000, 0x00000000, 0x00000000}},  //   _inn_,   ,   ,\n  { {0x7d0d15c2, 0xdd920025, 0x7c270022, 0x00000000}},  //   fwas, فوز_, _anjr,\n  { {0x7d0d15c3, 0x00000000, 0x00000000, 0x00000000}},  // [2a60] gwas,   ,   ,\n  { {0x8b960517, 0x4c8315c4, 0xac830264, 0x00000000}},  //   преч, елув, егул,\n  { {0x442701f3, 0x103b009b, 0x69c20112, 0x00000000}},  //   _mnn_, _הגיע, tboe,\n  { {0xdca60265, 0x7d0d097e, 0x2018000c, 0x00000000}},  //   _нами, bwas, ldri_,\n  { {0x291f0051, 0xb05b006c, 0x69c201b5, 0x00000000}},  //   _crua_, späe, rboe,\n  { {0x68e2005b, 0x69c20112, 0xb17b15c5, 0x00000000}},  //   rrod, sboe, mgåt,\n  { {0xa09b01ce, 0x7bdc0093, 0xe73700ec, 0x00000000}},  //   זיסט, _idru, зеј_,\n  { {0x442715c6, 0x81e20055, 0x54b80242, 0x00000000}},  //   _ann_, ন্ত_, огия_,\n  { {0x7bce0149, 0x48e30849, 0x291f0065, 0x00000000}},  //   _kebu, _потв, _grua_,\n  { {0xb5fd0ce4, 0x200a11af, 0x29040087, 0x00000000}},  //   više, jebi_, _ipma_,\n  { {0x67bb009b, 0x44270082, 0x66090032, 0x00000000}},  //   _המבק, _dnn_, beek,\n  { {0x442705d1, 0x7bce0f4d, 0xb5fd012d, 0x00000000}},  //   _enn_, _lebu, tiše,\n  { {0xba570049, 0x7bdc15c7, 0xbddb000a, 0x00000000}},  //   לסטו_, _odru, _klèv,\n  { {0x7bce0cd5, 0xb5fd016c, 0xc058008b, 0x00000000}},  //   _nebu, riše, піс_,\n  { {0xff04007c, 0x5433035b, 0x81e20044, 0x00000000}},  //   нятн, _سرور, ন্ধ_,\n  { {0x7d0d011c, 0xb5fd0c1e, 0x7bdc0145, 0x00000000}},  //   twas, piše, _adru,\n  { {0x62560964, 0x41c3007d, 0xdcef0089, 0x00000000}},  // [2a70] ršot, _व्यस, _izcī,\n  { {0x81e20055, 0xe0df01aa, 0x200a00c4, 0x00000000}},  //   ন্দ_, ryòd_, cebi_,\n  { {0x7d0d15be, 0x78bb0cb2, 0x290400f6, 0x00000000}},  //   swas, _stuv, _apma_,\n  { {0xfd1f0011, 0x320b009d, 0x61ef0082, 0x00000000}},  //   _trì_, necy_, ngcl,\n  { {0x9f510211, 0x7bce033b, 0xdb050051, 0x00000000}},  //   pezó_, _febu, nchú,\n  { {0x7bce010f, 0x66090116, 0xdb1501aa, 0x00000000}},  //   _gebu, week, _dezò,\n  { {0x660900b0, 0xe736005e, 0xac94033c, 0x00000000}},  //   teek, дещ_, _чарш,\n  { {0x7e6d0d88, 0x7bdc0465, 0x291f05d7, 0x00000000}},  //   nnap, _zdru, _trua_,\n  { {0x14dd0061, 0x660901b5, 0x81cc0044, 0x00000000}},  //   _मिळण, reek, _লাল_,\n  { {0x68e4002a, 0x66090052, 0x7e6d01a2, 0x00000000}},  //   áide, seek, hnap,\n  { {0xe29a0216, 0x420a0d99, 0x7e6d15c8, 0x00000000}},  //   жан_, онно_, knap,\n  { {0xd9ff007d, 0x7bc50048, 0x21200087, 0x00000000}},  //   ोजित_, hbhu, _prih_,\n  { {0x7e6d0381, 0xd4350025, 0x24190783, 0x00000000}},  //   dnap, _يعتب, _моды_,\n  { {0x6721016c, 0xa91d0161, 0x00000000, 0x00000000}},  //   _krlj, _lyžo,   ,\n  { {0x7bce12e0, 0x10a30131, 0xa0a302ea, 0x00000000}},  //   _rebu, тирн, тард,\n  { {0x7bce0149, 0x7bdc00b9, 0x7e6d0010, 0x00000000}},  //   _sebu, _sdru, gnap,\n  { {0x6aae15c9, 0x62840034, 0x7bce0022, 0x00000000}},  // [2a80] _subf, _ikio, _pebu,\n  { {0xfce30256, 0x8b6a0a85, 0x00000000, 0x00000000}},  //   тофо, оизв_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7bce0190, 0x53360049, 0xc98601ab, 0x00000000}},  //   _webu, ונען_, мули,\n  { {0xb17b0cb2, 0x644f0089, 0x7bce15ca, 0x00000000}},  //   lgår, īcij, _tebu,\n  { {0x7bdc0166, 0x7e6407a4, 0x00000000, 0x00000000}},  //   _udru, liip,   ,\n  { {0x2bc40164, 0x68e40051, 0xb17b02e7, 0x00000000}},  //   _ल्या, áidb, ngår,\n  { {0x44201305, 0x7c3c0238, 0x8c3b01a2, 0x00000000}},  //   _şi_, _horr, _wußt,\n  { {0x7c3c0cfd, 0xd838037e, 0x6d4404cb, 0x00000000}},  //   _korr, _liči_, nyia,\n  { {0x62840020, 0xdb1c05b7, 0x7c3c002d, 0x00000000}},  //   _akio, _berø, _jorr,\n  { {0x7c3c0181, 0x7d060022, 0xbddb000a, 0x00000000}},  //   _morr, _lpks, _klèt,\n  { {0x7c3c00f4, 0x81e20044, 0x63ad15cb, 0x00000000}},  //   _lorr, ন্স_, _şant,\n  { {0x61fd000c, 0x7c3c01d6, 0x20010022, 0x00000000}},  //   rfsl, _oorr, _pbhi_,\n  { {0x7c3c0073, 0x62840288, 0xdb050048, 0x00000000}},  //   _norr, _ekio, rchú,\n  { {0xe800001c, 0x9f5f011f, 0x1ee700a1, 0x00000000}},  //   ल्या_, _ürün_, ظوری_,\n  { {0x443c0afd, 0x7d060022, 0x7e640058, 0x00000000}},  //   _hov_, _bpks, giip,\n  { {0x443c0dc6, 0x7c3c1295, 0x7e6d15cc, 0x00000000}},  // [2a90] _kov_, _borr, rnap,\n  { {0xe3b80676, 0x6fc00061, 0x6f050011, 0x00000000}},  //   ncı_, वडणू, _tphc,\n  { {0x7c3c0c54, 0x30780025, 0x7bc50048, 0x00000000}},  //   _dorr, _تحية_, rbhu,\n  { {0x60cd0be3, 0x443c05b7, 0x752204f3, 0x00000000}},  //   _kwam, _lov_, _oroz,\n  { {0x7c3c0d22, 0xa803014a, 0xf8b1025a, 0x00000000}},  //   _forr, _çıkt, اکر_,\n  { {0x443c01d9, 0x7c3c002d, 0x60cd0020, 0x00000000}},  //   _nov_, _gorr, _mwam,\n  { {0x39490ebc, 0xddc401d9, 0x6e3d0007, 0x00000000}},  //   šas_, lniš, _kosb,\n  { {0x7c3c15cd, 0x75220107, 0xfc3f0051, 0x00000000}},  //   _zorr, _broz, _cuív_,\n  { {0x443c15ce, 0x6e3d0023, 0xd7fb15cf, 0x00000000}},  //   _bov_, _mosb, _муж_,\n  { {0x20cd01c5, 0xdb2600a1, 0x6e3d01d6, 0x00000000}},  //   dži_, _توہی, _losb,\n  { {0x13a700e9, 0x60cd0020, 0x443c0197, 0x00000000}},  //   بندی_, _awam, _dov_,\n  { {0x23bf007d, 0x60cd0a5f, 0xf089009b, 0x00000000}},  //   _श्रद, _bwam, _הנ_,\n  { {0x7522001e, 0xc56b025a, 0xddc40059, 0x00000000}},  //   _groz, _بحال_, jniš,\n  { {0x6aa915d0, 0x443c1042, 0xddc401ae, 0x00000000}},  //   _lief, _gov_, dniš,\n  { {0x44f90263, 0x752215b1, 0x661915d1, 0x00000000}},  //   lè_, _zroz, _kawk,\n  { {0x661b15d2, 0xb17b01bf, 0x6e3d0016, 0x00000000}},  //   nduk, rgår, _cosb,\n  { {0x7c3c002d, 0x44f90263, 0x6e3d018e, 0x00000000}},  // [2aa0] _porr, nè_, _dosb,\n  { {0x31570049, 0x7d1b002b, 0x7c3c15d3, 0x00000000}},  //   _ניין_, _ġust, _qorr,\n  { {0x7c3c15d4, 0xb5fd016c, 0x201a12aa, 0x00000000}},  //   _vorr, ziša, _iapi_,\n  { {0xddc401d9, 0x7ae315d5, 0x661b016e, 0x00000000}},  //   bniš, ánta, jduk,\n  { {0x44f90263, 0x6aa90112, 0x201a15d6, 0x00000000}},  //   jè_, _dief, _kapi_,\n  { {0x98a310a9, 0x201a002f, 0xb5fd00ca, 0x00000000}},  //   гиче, _japi_, viša,\n  { {0x09e601fb, 0x752215d7, 0x201a00ca, 0x00000000}},  //   _повн, _sroz, _mapi_,\n  { {0x443c0239, 0x44f901aa, 0x6aa90026, 0x00000000}},  //   _sov_, fè_, _gief,\n  { {0x443c15d8, 0xc8ca03ec, 0x66190036, 0x00000000}},  //   _pov_, _روان_, _dawk,\n  { {0x07a60106, 0x201a0010, 0x60cd09df, 0x00000000}},  //   _зазн, _napi_, _rwam,\n  { {0xcf120044, 0xddc40059, 0x39460010, 0x00000000}},  //   হমুদ_, zniš, lyos_,\n  { {0x76490039, 0xb5fd040d, 0x752215d9, 0x00000000}},  //   ckey, lišn, _troz,\n  { {0x81a90055, 0x39460047, 0x443c0145, 0x00000000}},  //   খুন_, nyos_, _tov_,\n  { {0xddc4092f, 0x201a0197, 0xc5690d3a, 0x00000000}},  //   vniš, _capi_, _تحمل_,\n  { {0x6e3d0007, 0x141b009b, 0x201a0386, 0x00000000}},  //   _posb, _מוגב, _dapi_,\n  { {0xddc410b9, 0x60cd15da, 0x6d1c007d, 0x00000000}},  //   tniš, _twam, निंग_,\n  { {0x30a70373, 0x313501f9, 0x22ac00b9, 0x00000000}},  // [2ab0] _пров, _репр, _věku_,\n  { {0xddc40059, 0xbbcb0061, 0x31580049, 0x00000000}},  //   rniš, िरेक, _ריזן_,\n  { {0xb5fd0119, 0xcfb6009b, 0x99f5007e, 0x00000000}},  //   dišn, _בלתי_, вялі,\n  { {0x44f90263, 0xddc40fd0, 0x201a15db, 0x00000000}},  //   yè_, pniš, _zapi_,\n  { {0x201a15dc, 0xca7415dd, 0x00000000, 0x00000000}},  //   _yapi_, دالغ,   ,\n  { {0x6bd4004b, 0x44f915de, 0x00000000, 0x00000000}},  //   _متفر, vè_,   ,\n  { {0x6aa9010f, 0x79c90379, 0x44f901aa, 0x00000000}},  //   _tief, _يوسف_, wè_,\n  { {0x44f90263, 0x3eab0022, 0x00000000, 0x00000000}},  //   tè_, _jict_,   ,\n  { {0x764915df, 0x661b04a0, 0x3a2d00c4, 0x00000000}},  //   rkey, rduk, _inep_,\n  { {0x7bd715e0, 0x2d8b00bb, 0x44f901aa, 0x00000000}},  //   naxu, _myce_, rè_,\n  { {0x3a3f01aa, 0x44f901aa, 0x35f5007e, 0x00000000}},  //   _koup_, sè_, _апер,\n  { {0x201a023a, 0x44f915e1, 0xd83801aa, 0x00000000}},  //   _sapi_, pè_, _chčf_,\n  { {0x2124002a, 0x6486000c, 0x9f58000c, 0x00000000}},  //   ímh_, gðis, rfrí_,\n  { {0x3a3f009d, 0xb05b04ce, 0x00000000, 0x00000000}},  //   _loup_, spän,   ,\n  { {0xfc3f15e2, 0xe1ff15e3, 0x00000000, 0x00000000}},  //   _luís_, mión_,   ,\n  { {0x201a0020, 0x337600b3, 0x2ee5000c, 0x00000000}},  //   _wapi_, _בעצם_, álfa_,\n  { {0x201a0149, 0xada6008b, 0xbea309b2, 0x00000000}},  // [2ac0] _tapi_, таал, ратк,\n  { {0xe1ff0219, 0xddc9012d, 0x22400288, 0x00000000}},  //   nión_, čošk, _hoik_,\n  { {0xb5fd0166, 0x8fa600ec, 0x3a3f0173, 0x00000000}},  //   višn, _јане, _boup_,\n  { {0x3a3f00f4, 0x7524016c, 0xc33200b3, 0x00000000}},  //   _coup_, _šizm, יוב_,\n  { {0x3ea015e4, 0x99dd000a, 0x00000000, 0x00000000}},  //   mmit_, _alňs,   ,\n  { {0xdb1c0047, 0x3ea00065, 0xb7d80025, 0x00000000}},  //   _kerü, lmit_, روبا_,\n  { {0x7c2e0fcf, 0xb5fd0e00, 0xe70402fd, 0x00000000}},  //   _inbr, rišn, استی,\n  { {0xeb97004c, 0x9f58004a, 0x00000000, 0x00000000}},  //   _рис_, leró_,   ,\n  { {0xb5fd0825, 0x00000000, 0x00000000, 0x00000000}},  //   mišl,   ,   ,\n  { {0xe1ff15e5, 0x9f58008e, 0x3ea00023, 0x00000000}},  //   gión_, neró_, hmit_,\n  { {0x22520007, 0x00000000, 0x00000000, 0x00000000}},  //   _blyk_,   ,   ,\n  { {0xdb1c15e6, 0xacbb00f4, 0x3ea015e7, 0x00000000}},  //   _heró, _brûl, jmit_,\n  { {0x81cc0044, 0x7c2e0112, 0x00000000, 0x00000000}},  //   _লাখ_, _onbr,   ,\n  { {0xe1ff0819, 0x14d7007b, 0x6486009f, 0x00000000}},  //   ción_, _יודל_, rðis,\n  { {0x3eab0061, 0x9f58008e, 0x00000000, 0x00000000}},  //   _pict_, deró_,   ,\n  { {0x320f0047, 0x7c2e0240, 0x02a400a5, 0x00000000}},  //   _úgy_, _anbr, _крым,\n  { {0x628f01c3, 0xcc990184, 0x5c750745, 0x00000000}},  // [2ad0] mlco, евац_, глат,\n  { {0x3a2d15e8, 0x7ae315e9, 0x628f01ed, 0x00000000}},  //   _snep_, ánto, llco,\n  { {0x3ea00866, 0xdb1c010f, 0x5ba7017f, 0x00000000}},  //   bmit_, _gerü, траз,\n  { {0x3ce901d9, 0x2011094f, 0x7c2e15ea, 0x00000000}},  //   prav_, lezi_, _enbr,\n  { {0x26de15eb, 0x628f000a, 0x9f580919, 0x00000000}},  //   _avto_, ilco, beró_,\n  { {0x2011001a, 0xe1ff0211, 0x81d90044, 0x00000000}},  //   nezi_, xión_, ালি_,\n  { {0x27e901f6, 0x3a3f01aa, 0x9f580026, 0x00000000}},  //   ğan_, _toup_, lerò_,\n  { {0x27e915ec, 0x7bd50032, 0x201115ed, 0x00000000}},  //   şan_, _hezu, hezi_,\n  { {0xe800024c, 0x2a640265, 0x2717005f, 0x00000000}},  //   ल्हा_, _търг, _mənə_,\n  { {0x3ea0008d, 0x69d915ee, 0x7bd515ef, 0x00000000}},  //   zmit_, lawe, _jezu,\n  { {0x7bd515f0, 0x442e0146, 0x9f580197, 0x00000000}},  //   _mezu, _dnf_, herò_,\n  { {0xe1ff15f1, 0x69d9000b, 0x442e15f2, 0x00000000}},  //   sión_, nawe, _enf_,\n  { {0x6486000c, 0x442e0085, 0xd5ae0257, 0x00000000}},  //   rðir, _fnf_, _عفو_,\n  { {0x201115f3, 0x9f580197, 0xb5fd0b54, 0x00000000}},  //   gezi_, derò_, zišl,\n  { {0x37d80044, 0x2d8f010f, 0x9f58004a, 0x00000000}},  //   _সামর, ügen_, veró_,\n  { {0xdb050051, 0x69d915f4, 0xfbcd0044, 0x00000000}},  //   hchó, jawe, _লাগত,\n  { {0x62860429, 0x7bd5010f, 0xed5700ed, 0x00000000}},  // [2ae0] moko, _bezu, гот_,\n  { {0x6286011c, 0xdb1c0047, 0x3ea00089, 0x00000000}},  //   loko, _terü, smit_,\n  { {0x272301f6, 0x7bd502eb, 0xdb1c00d4, 0x00000000}},  //   _nın_, _dezu, _aerò,\n  { {0x248515f5, 0x69d90fb6, 0x9f41008e, 0x00000000}},  //   holm_, gawe, _echó_,\n  { {0x9f58008e, 0xdb1c008e, 0xc7ba007e, 0x00000000}},  //   peró_, _peró, нёй_,\n  { {0x628615f6, 0x7bd50ab3, 0x26dc041a, 0x00000000}},  //   hoko, _gezu, tsvo_,\n  { {0x628600b0, 0xdb1c008e, 0x7d160016, 0x00000000}},  //   koko, _veró, lwys,\n  { {0x60c415f7, 0x61e40020, 0x628615f8, 0x00000000}},  //   _otim, _ndil, joko,\n  { {0x628615f9, 0x60c415fa, 0x54540069, 0x00000000}},  //   doko, _ntim, ивит,\n  { {0x61e415fb, 0xe6440279, 0x6aa215fc, 0x00000000}},  //   _adil, ılış, lmof,\n  { {0x439401f9, 0x20110035, 0x60c415fd, 0x00000000}},  //   ранс, vezi_, _atim,\n  { {0xe45206c6, 0x2011000b, 0x62860266, 0x00000000}},  //   _گفتگ, wezi_, goko,\n  { {0x2011000b, 0x61e40016, 0x855700a1, 0x00000000}},  //   tezi_, _ddil, _میٹر_,\n  { {0x61e415fe, 0x2717006b, 0x442e01ee, 0x00000000}},  //   _edil, _sənə_, _unf_,\n  { {0x60c4049a, 0x2011002d, 0x69d900e7, 0x00000000}},  //   _etim, rezi_, yawe,\n  { {0x20110035, 0x9f580197, 0x6728012d, 0x00000000}},  //   sezi_, terò_, _mrdj,\n  { {0xdb05010f, 0x7bd50065, 0x2beb00ed, 0x00000000}},  // [2af0] schü, _pezu, еќен_,\n  { {0x69d90020, 0x69c015ff, 0x9f580197, 0x00000000}},  //   wawe, _afme, rerò_,\n  { {0x7bd50107, 0x8af9005e, 0x69d90020, 0x00000000}},  //   _vezu, тнес_, tawe,\n  { {0xd01100a1, 0x7f3a0049, 0x7d160016, 0x00000000}},  //   _الگ_, _סערו, bwys,\n  { {0x80a402fd, 0xe0df0e5d, 0x67281600, 0x00000000}},  //   _خمین, nsò_, _ardj,\n  { {0xb346014a, 0x62860e49, 0x6353006b, 0x00000000}},  //   _kaçı, zoko, sənə,\n  { {0xe7390373, 0x764201d6, 0xdb050a41, 0x00000000}},  //   тей_, _booy, rchó,\n  { {0x8aa4004c, 0xb5fd0006, 0x26c70e0d, 0x00000000}},  //   _груд, mišk, rpno_,\n  { {0xb5fd09f4, 0xf1c800b9, 0x76421601, 0x00000000}},  //   lišk, ndář_, _dooy,\n  { {0x32090058, 0x290d00c4, 0x44651602, 0x00000000}},  //   _abay_, _ipea_, рвов,\n  { {0x62861603, 0x60c4010f, 0xe29a012b, 0x00000000}},  //   toko, _stim, као_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x628601d9, 0xe44e0131, 0x2d8f01a2, 0x00000000}},  //   roko, _дж_, ügel_,\n  { {0x3209001c, 0x9f58000c, 0x25bf1604, 0x00000000}},  //   _ebay_, ferð_, lcul_,\n  { {0x8fa60265, 0xb5fd00d0, 0x62860142, 0x00000000}},  //   раве, jišk, poko,\n  { {0xb5fd0b4d, 0x13da0055, 0x64430abe, 0x00000000}},  //   dišk, _দায়, _honi,\n  { {0x64431605, 0xbc661606, 0x60c400e7, 0x00000000}},  // [2b00] _koni, авак, _utim,\n  { {0x7d160343, 0x64430006, 0x78a30009, 0x00000000}},  //   rwys, _joni, jmnv,\n  { {0xb5fd0006, 0xe9da0cee, 0x00000000, 0x00000000}},  //   gišk, вке_,   ,\n  { {0xa9260102, 0x539a00b3, 0x62870fcd, 0x00000000}},  //   идел, דיעו, čkog,\n  { {0x6728003b, 0x764201d6, 0xd3780091, 0x00000000}},  //   _srdj, _rooy, maće_,\n  { {0xdb1c009f, 0x9866026c, 0x6aa201aa, 0x00000000}},  //   _ferð, جیئے_, smof,\n  { {0xd6d704af, 0xdb1c009f, 0x290d002d, 0x00000000}},  //   аты_, _gerð, _epea_,\n  { {0x963400e1, 0xd01f0044, 0x960a007e, 0x00000000}},  //   сниц, দায়_, тэка_,\n  { {0x3ce01607, 0xd90e00a6, 0x993400a1, 0x00000000}},  //   nsiv_, _آیت_, _دہشت,\n  { {0x656f1608, 0x27e50022, 0x32090058, 0x00000000}},  //   úcha, _gdln_, _sbay_,\n  { {0x0bb700b6, 0x6f090046, 0xc5e80055, 0x00000000}},  //   ילים_, łecz, ক্ষা_,\n  { {0xd3780107, 0x9f58000c, 0x21290340, 0x00000000}},  //   jaće_, verð_, _prah_,\n  { {0xdfdb0265, 0xc693009b, 0x64430016, 0x00000000}},  //   къв_, _ואף_, _foni,\n  { {0x644300d0, 0xd48f0088, 0xe0df0026, 0x00000000}},  //   _goni, _єр_, rsò_,\n  { {0x09d70055, 0xe0df0c42, 0xb346006b, 0x00000000}},  //   _হাসা, ssò_, _qaçı,\n  { {0xb5fd010a, 0x877b0049, 0x443e00f8, 0x00000000}},  //   višk, דאלי, ljt_,\n  { {0x64430022, 0x2d8f0030, 0x8bb70025, 0x00000000}},  // [2b10] _yoni, æge_, لإضا,\n  { {0xb5fd0006, 0x270e006b, 0xa8020477, 0x00000000}},  //   tišk, _kənd_, çıla,\n  { {0xf2d30049, 0xd3780521, 0x95ff0044, 0x00000000}},  //   ַעס_, baće_, ্যতম_,\n  { {0xdb1c0359, 0xb5fd09f4, 0x270e006b, 0x00000000}},  //   _verð, rišk, _zəng_,\n  { {0x634a005f, 0xb5fd010a, 0x728a0049, 0x00000000}},  //   lənd, sišk, נננְ,\n  { {0x893401d8, 0x1ed80167, 0xb5fd0006, 0x00000000}},  //   تعما, _حبیب_, pišk,\n  { {0x81e20055, 0x64431609, 0x36690ca6, 0x00000000}},  //   ন্ট_, _roni, лако_,\n  { {0x64430211, 0x80b80055, 0x7e6d0035, 0x00000000}},  //   _soni, _অবস্, niap,\n  { {0x64430046, 0x6d4d04cb, 0x25bf001a, 0x00000000}},  //   _poni, nyaa, rcul_,\n  { {0x645a00ab, 0x25bf160a, 0x7e6d160b, 0x00000000}},  //   ghti, scul_, hiap,\n  { {0xd7950054, 0xe1ff0010, 0x64430006, 0x00000000}},  //   _الاخ, ciók_, _voni,\n  { {0xc049061e, 0x644300c1, 0x634a006b, 0x00000000}},  //   _אז_, _woni, dənd,\n  { {0x7e6d0cfe, 0xd3780107, 0x2ba70061, 0x00000000}},  //   diap, vaće_, केता,\n  { {0x645a160c, 0x46130014, 0x00000000, 0x00000000}},  //   chti, _دوچر,   ,\n  { {0xd3780521, 0xddc40035, 0x634a013f, 0x00000000}},  //   taće_, ghiş, gənd,\n  { {0x765b160d, 0x7e6d0d96, 0x00000000, 0x00000000}},  //   nhuy, giap,   ,\n  { {0xd3780107, 0x6da30920, 0x26c2012d, 0x00000000}},  // [2b20] raće_, зита, _čkom_,\n  { {0x3ce000ea, 0xd3780521, 0x00000000, 0x00000000}},  //   rsiv_, saće_,   ,\n  { {0xff260140, 0x6d4d04cb, 0xeafa0431, 0x00000000}},  //   _умно, ayaa, طرات_,\n  { {0xeb970e09, 0xddcd001a, 0x00000000, 0x00000000}},  //   щих_, rnaţ,   ,\n  { {0xdd920084, 0x2d8400f4, 0x645a00b0, 0x00000000}},  //   _روس_, _âme_, yhti,\n  { {0x6e24002d, 0x13af0044, 0x7d04094f, 0x00000000}},  //   ldib, চুয়, mtis,\n  { {0x7d040207, 0x09d70044, 0x6b63005e, 0x00000000}},  //   ltis, _হারা, _екра,\n  { {0x6e24059a, 0xceb300b6, 0x645d0065, 0x00000000}},  //   ndib, היה_, ësin,\n  { {0xb05b00b0, 0x645a0023, 0x00000000, 0x00000000}},  //   späi, thti,   ,\n  { {0x634a005f, 0x7bde04be, 0x7d040051, 0x00000000}},  //   yənd, napu, itis,\n  { {0x53980088, 0x7d0403b6, 0x9f45005a, 0x00000000}},  //   рвня_, htis, ülü_,\n  { {0x645a008d, 0x7bde04cb, 0x7ae3008e, 0x00000000}},  //   shti, hapu, ánti,\n  { {0x7bde011c, 0x68e2160e, 0xc05b0088, 0x00000000}},  //   kapu, nsod, гів_,\n  { {0x80b80055, 0x634a005f, 0x7bde0052, 0x00000000}},  //   _অবশ্, tənd, japu,\n  { {0x7e6d0032, 0x7bde160f, 0x9f5801aa, 0x00000000}},  //   tiap, dapu, ngrè_,\n  { {0x7d0401e5, 0x634a006b, 0xdceb0142, 0x00000000}},  //   ftis, rənd, žičk,\n  { {0x7d041002, 0x7e6d1610, 0x6f1e00fa, 0x00000000}},  // [2b30] gtis, riap, _espc,\n  { {0x7e6d1611, 0xb5fd016e, 0x7bde027c, 0x00000000}},  //   siap, riši, gapu,\n  { {0x2004006b, 0x6d4d01a3, 0x7e6d0c1b, 0x00000000}},  //   əmi_, syaa, piap,\n  { {0xb5fd07a0, 0x7d1d0058, 0x02fb0049, 0x00000000}},  //   piši, _tsss, רלאמ,\n  { {0xe9d8008b, 0x64580219, 0x7d0402a4, 0x00000000}},  //   скі_, _olvi, ctis,\n  { {0x7bde00d6, 0xe9d90036, 0x7e7d1612, 0x00000000}},  //   capu, _weź_, _hjsp,\n  { {0x07a20517, 0x765b0082, 0x70b5013d, 0x00000000}},  //   машн, thuy, ंदुल,\n  { {0x245b028c, 0x64580181, 0xb658007e, 0x00000000}},  //   _même_, _alvi, йшых_,\n  { {0xe4590794, 0x69db0016, 0x81bf0044, 0x00000000}},  //   ижи_, _ieue, ইরা_,\n  { {0xdb1c05e9, 0x69db01a2, 0x395200ea, 0x00000000}},  //   _verö, _heue, øyse_,\n  { {0x7af701f3, 0x7c250048, 0x00000000, 0x00000000}},  //   nuxt, idhr,   ,\n  { {0x7de60010, 0x7d04000c, 0xdb1c014a, 0x00000000}},  //   _késő, ytis, _terö,\n  { {0x7bde09e4, 0x3eba1613, 0x69db00d4, 0x00000000}},  //   yapu, _supt_, _meue,\n  { {0x9f5800f4, 0x69db0007, 0x66091614, 0x00000000}},  //   lgré_, _leue, lfek,\n  { {0xe29a0680, 0x1faa081e, 0x75291615, 0x00000000}},  //   _как_, ркви_, lvez,\n  { {0x69db001f, 0xe1ff0036, 0x7d040e2d, 0x00000000}},  //   _neue, diów_, ttis,\n  { {0x7bde1616, 0x1c46005e, 0x7d0400b0, 0x00000000}},  // [2b40] tapu, онам, utis,\n  { {0x7659018e, 0x7d040038, 0x6e2406c2, 0x00000000}},  //   _llwy, rtis, sdib,\n  { {0x20180207, 0x9f060076, 0x69db1617, 0x00000000}},  //   meri_, _بوجو, _beue,\n  { {0x20181355, 0x7ff602fd, 0x7bde0ed1, 0x00000000}},  //   leri_, _اسکا, sapu,\n  { {0xcaa50054, 0x7bde04d4, 0x69db00d4, 0x00000000}},  //   أصلي, papu, _deue,\n  { {0x20180208, 0xab2a1618, 0x75290010, 0x00000000}},  //   neri_, _кога_, dvez,\n  { {0xf8bf02ae, 0x69db010f, 0x68e2002b, 0x00000000}},  //   _één_, _feue, ssod,\n  { {0xe3b8047f, 0x7bdc01e7, 0x76590016, 0x00000000}},  //   rdım_, _heru, _clwy,\n  { {0x7bdc020c, 0x2018014a, 0xdb2100b0, 0x00000000}},  //   _keru, keri_, ätös,\n  { {0xddc40b41, 0x2018016e, 0x3a240146, 0x00000000}},  //   jniž, jeri_, _hamp_,\n  { {0x7bdc0149, 0x3a240030, 0x7659018e, 0x00000000}},  //   _meru, _kamp_, _flwy,\n  { {0xbddb00f4, 0x6abc00e5, 0x75290059, 0x00000000}},  //   _poèm, _murf, bvez,\n  { {0xe3af026c, 0x29061619, 0xddcd00b9, 0x00000000}},  //   ٹری_, ntoa_, chař,\n  { {0x20180281, 0xe3af025a, 0x270e006b, 0x00000000}},  //   geri_, عری_, _gənc_,\n  { {0xcddb00e1, 0xff040783, 0x04200044, 0x00000000}},  //   иња_, мятн, বাদী_,\n  { {0x7bdc001a, 0xb3bc0044, 0x29060032, 0x00000000}},  //   _aeru, _আজিজ, ktoa_,\n  { {0x7bdc0281, 0x2018161a, 0x69db00d9, 0x00000000}},  // [2b50] _beru, beri_, _reue,\n  { {0x2018161b, 0xb5fd0209, 0x7bdc001a, 0x00000000}},  //   ceri_, lišt, _ceru,\n  { {0x7bdc161c, 0x20010016, 0x6abc161d, 0x00000000}},  //   _deru, _ichi_, _curf,\n  { {0x61fd0292, 0xb5fd0340, 0x3a2401cb, 0x00000000}},  //   ngsl, ništ, _camp_,\n  { {0x3ea9021e, 0x3a2400eb, 0x61fd161e, 0x00000000}},  //   mmat_, _damp_, igsl,\n  { {0x7bdc00c7, 0x3ea90ae4, 0xb5fd0059, 0x00000000}},  //   _geru, lmat_, hišt,\n  { {0x7bc5161f, 0x69db010f, 0x645d0065, 0x00000000}},  //   mchu, _teue, ësim,\n  { {0xe9df009f, 0xb5fd1620, 0x7bdc002d, 0x00000000}},  //   _þú_, jišt, _zeru,\n  { {0xb5fd036a, 0x1a680cd9, 0x3e7701d5, 0x00000000}},  //   dišt, _بینی_, għti_,\n  { {0x2001000b, 0x75290047, 0x7bc50051, 0x00000000}},  //   _nchi_, rvez, nchu,\n  { {0x7ae50065, 0x7bc5010f, 0x3ea904cb, 0x00000000}},  //   nsht, ichu, kmat_,\n  { {0x212000ca, 0x61fd00f8, 0x7bc50048, 0x00000000}},  //   _psih_, ggsl, hchu,\n  { {0x20181092, 0x55ba009b, 0x3ea90127, 0x00000000}},  //   teri_, _המנו, dmat_,\n  { {0x2a7f07d1, 0xb5fd016c, 0x394000b0, 0x00000000}},  //   _ljub_, rišu, äisi_,\n  { {0x4375007b, 0x2018001a, 0x634a006b, 0x00000000}},  //   _מײַן_, reri_, rənc,\n  { {0x7bdc033b, 0x3ea900ea, 0x20010638, 0x00000000}},  //   _seru, gmat_, _echi_,\n  { {0x7bdc04d4, 0x2018008d, 0x3a24046a, 0x00000000}},  // [2b60] _peru, peri_, _ramp_,\n  { {0x8fa601a4, 0x20180065, 0x6abc0544, 0x00000000}},  //   _напе, qeri_, _purf,\n  { {0x7bdc012b, 0x3a2400e0, 0x68f900bb, 0x00000000}},  //   _veru, _pamp_, euwd,\n  { {0x7bdc1621, 0xda65006d, 0x290600b0, 0x00000000}},  //   _weru, واني, ttoa_,\n  { {0x3a26040f, 0x29060883, 0xf9180014, 0x00000000}},  //   rdop_, utoa_, تراژ_,\n  { {0x7bc501d6, 0x7c5a0025, 0x6e26011c, 0x00000000}},  //   cchu, _السر_, _hakb,\n  { {0x29061622, 0x6e260460, 0xdc370049, 0x00000000}},  //   stoa_, _kakb, _צאלט_,\n  { {0xb86600e9, 0xa534003b, 0x6e260036, 0x00000000}},  //   _کارو, днич, _jakb,\n  { {0xb5fd00b9, 0x04200044, 0x6e260095, 0x00000000}},  //   višt, বাসী_, _makb,\n  { {0x22490784, 0x3ea90023, 0xe9ff0082, 0x00000000}},  //   _soak_, zmat_, _toản_,\n  { {0xb5fd013e, 0x04fe0044, 0xe9ff0082, 0x00000000}},  //   tišt, ্টের_, _hoạn_,\n  { {0x20011623, 0x76bb009b, 0x6e260288, 0x00000000}},  //   _schi_, _המאפ, _nakb,\n  { {0xb5fd0091, 0x321913c2, 0x61fd0239, 0x00000000}},  //   rišt, resy_, rgsl,\n  { {0x75221624, 0x04200044, 0x00000000, 0x00000000}},  //   _isoz, বাহী_,   ,\n  { {0xb5fd00b9, 0xe9ff0011, 0x6e2604d3, 0x00000000}},  //   pišt, _loạn_, _bakb,\n  { {0x5f940088, 0x5eb4058e, 0x644a0657, 0x00000000}},  //   хист, ейст, _hofi,\n  { {0x61ed0107, 0x628f0142, 0x644a00e7, 0x00000000}},  // [2b70] _idal, moco, _kofi,\n  { {0x5ba700ed, 0x60cd1335, 0x628f00c4, 0x00000000}},  //   през, _itam, loco,\n  { {0x7bc51625, 0xa1340123, 0xe7a50089, 0x00000000}},  //   rchu, _قریش, ādīš,\n  { {0x7bc51626, 0x7ae5008d, 0x628f1627, 0x00000000}},  //   schu, rsht, noco,\n  { {0xa95401fb, 0x61ed0eb0, 0x00000000, 0x00000000}},  //   нкці, _mdal,   ,\n  { {0xf7700a90, 0x60cd0020, 0x644a1628, 0x00000000}},  //   گاه_, _mtam, _nofi,\n  { {0x16a90264, 0x61ed014a, 0xab950088, 0x00000000}},  //   овки_, _odal, _циві,\n  { {0x61ed008d, 0x60cd002d, 0x7c271002, 0x00000000}},  //   _ndal, _otam, _hajr,\n  { {0x68e40051, 0x60cd1629, 0x644a00d4, 0x00000000}},  //   áidt, _ntam, _bofi,\n  { {0x61ed020c, 0x644a018e, 0x55ff0044, 0x00000000}},  //   _adal, _cofi, ্যেক_,\n  { {0x5884008b, 0x60cd162a, 0x644a00b4, 0x00000000}},  //   _чыта, _atam, _dofi,\n  { {0x60cd0009, 0x00000000, 0x00000000, 0x00000000}},  //   _btam,   ,   ,\n  { {0x61ed0016, 0x644a162b, 0x98a4001a, 0x00000000}},  //   _ddal, _fofi, _urmă_,\n  { {0x7c270142, 0x764b162c, 0x661b11fe, 0x00000000}},  //   _najr, _hogy, leuk,\n  { {0x4427001a, 0x628f04d4, 0x92e80025, 0x00000000}},  //   _ian_, boco, _فريق_,\n  { {0x661b162d, 0x764b04be, 0xbea3003b, 0x00000000}},  //   neuk, _jogy, васк,\n  { {0xfce30057, 0x1d0701fc, 0x7c270065, 0x00000000}},  // [2b80] кото, мети_, _bajr,\n  { {0x4427060b, 0x61ed07e4, 0xb05b0614, 0x00000000}},  //   _jan_, _zdal, spär,\n  { {0x4427162e, 0xe1ff162f, 0xe9ff0011, 0x00000000}},  //   _man_, ciós_, _soạn_,\n  { {0x44271630, 0xe1ff0036, 0x7c270032, 0x00000000}},  //   _lan_, chód_, _eajr,\n  { {0xe3e30055, 0x44270011, 0x3e77002b, 0x00000000}},  //   _মানব, _oan_, għtu_,\n  { {0x44271631, 0xd943003b, 0x00000000, 0x00000000}},  //   _nan_, тељи,   ,\n  { {0x644a0635, 0x69c901cf, 0x628f10c9, 0x00000000}},  //   _rofi, _ffee, yoco,\n  { {0x4427049b, 0x644a0039, 0x661b0020, 0x00000000}},  //   _aan_, _sofi, geuk,\n  { {0x442702d4, 0xe7cf0164, 0xd7cf007d, 0x00000000}},  //   _ban_, _स्वप, _स्वच,\n  { {0x44270a8a, 0x00000000, 0x00000000, 0x00000000}},  //   _can_,   ,   ,\n  { {0x44270149, 0x60cd0198, 0x764b0047, 0x00000000}},  //   _dan_, _stam, _fogy,\n  { {0x4427022b, 0x9258007c, 0xc7b80166, 0x00000000}},  //   _ean_, дают_, _nađi_,\n  { {0x628f1632, 0xe1ff147e, 0x644a006b, 0x00000000}},  //   roco, rgó_, _tofi,\n  { {0x44271633, 0x628f0197, 0xa3df007d, 0x00000000}},  //   _gan_, soco, तरण_,\n  { {0x764b0390, 0xe5800089, 0x00000000, 0x00000000}},  //   _yogy, šķā_,   ,\n  { {0x61ed1634, 0x13e30055, 0x44271635, 0x00000000}},  //   _udal, _মায়, _zan_,\n  { {0x4427006a, 0x60cd1636, 0x6e94004c, 0x00000000}},  // [2b90] _yan_, _utam, титу,\n  { {0x69c900c1, 0x4427006b, 0x4cc80044, 0x00000000}},  //   _sfee, _xan_, _লিখু,\n  { {0x68e90255, 0x634a006b, 0x7c270ede, 0x00000000}},  //   _sved, zənn, _vajr,\n  { {0xdd910879, 0xdb0e0010, 0x37d80044, 0x00000000}},  //   _موج_, áján, _সাগর,\n  { {0xcce70025, 0xe6ed0027, 0x7c270066, 0x00000000}},  //   _تسجي, _väčš, _tajr,\n  { {0x3eb9049a, 0x07a504f9, 0xa158009b, 0x00000000}},  //   _hist_, налн, ובדה_,\n  { {0x4427018e, 0x3eb91637, 0x00000000, 0x00000000}},  //   _ran_, _kist_,   ,\n  { {0x44270071, 0xd0280044, 0x1995007e, 0x00000000}},  //   _san_, মায়_, _забя,\n  { {0x68e9004f, 0x3eb9054e, 0xe579007c, 0x00000000}},  //   _uved, _mist_, язи_,\n  { {0x3eb90038, 0x44271638, 0x98ad016c, 0x00000000}},  //   _list_, _qan_, _kreč_,\n  { {0x4427049b, 0xe29a00c0, 0x2d9908e0, 0x00000000}},  //   _van_, зан_, _lyse_,\n  { {0x442701a3, 0x80d40044, 0x3eb901ed, 0x00000000}},  //   _wan_, _তিব্, _nist_,\n  { {0xdb1c0039, 0x4427060b, 0x634a006b, 0x00000000}},  //   _ifrå, _tan_, lənl,\n  { {0x44270093, 0x00000000, 0x00000000, 0x00000000}},  //   _uan_,   ,   ,\n  { {0x3eb9010f, 0x66c7014a, 0x322900b0, 0x00000000}},  //   _bist_, _yıka, ötyä_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x61e60996, 0x3eb90555, 0x6e9300f3, 0x00000000}},  // [2ba0] makl, _dist_, القا,\n  { {0x61e6066b, 0x4f261534, 0x3eb900bb, 0x00000000}},  //   lakl, _здоб, _eist_,\n  { {0x09d70055, 0xb3460181, 0x20c60011, 0x00000000}},  //   _হাজা, maçõ, _hôi_,\n  { {0x2cb8001f, 0xb3460181, 0x61e6014a, 0x00000000}},  //   _wird_, laçõ, nakl,\n  { {0x2d990146, 0x00000000, 0x00000000, 0x00000000}},  //   _gyse_,   ,   ,\n  { {0x20c6001d, 0xeee7007a, 0xd6da005e, 0x00000000}},  //   _môi_, _تغیی, пти_,\n  { {0xf09300a3, 0x20c60011, 0x61e61109, 0x00000000}},  //   אנג_, _lôi_, kakl,\n  { {0x3546017f, 0x61e61639, 0x7e6400e7, 0x00000000}},  //   ехов, jakl, nhip,\n  { {0x7afe163a, 0x61e6163b, 0x20c60082, 0x00000000}},  //   lupt, dakl, _nôi_,\n  { {0x54540113, 0xdb1c0023, 0x00000000, 0x00000000}},  //   твот, _ngrë,   ,\n  { {0xb34600c4, 0x66c70095, 0x00000000, 0x00000000}},  //   daçõ, _tıka,   ,\n  { {0xa75b034e, 0x20c60011, 0x634a006b, 0x00000000}},  //   _מדבר, _bôi_, səno,\n  { {0x5184003b, 0xc68f00a1, 0x20c60082, 0x00000000}},  //   гура, _اِن_, _côi_,\n  { {0xb3460181, 0x634a006b, 0x3eb901c9, 0x00000000}},  //   gaçõ, lənm, _sist_,\n  { {0x61e6163c, 0x443c0716, 0x61f40039, 0x00000000}},  //   bakl, _inv_, ådlö,\n  { {0x61e6011f, 0x78ba163d, 0x645d0065, 0x00000000}},  //   cakl, _litv, ësiv,\n  { {0x442c018e, 0x4f5800a1, 0x3f9e000c, 0x00000000}},  // [2bb0] odd_, وجہد_, ýtur_,\n  { {0xb34602d5, 0x634a006b, 0x3eb900b5, 0x00000000}},  //   caçõ, yənl, _wist_,\n  { {0x442c163e, 0x2d990007, 0x7afe01f3, 0x00000000}},  //   idd_, _wyse_, gupt,\n  { {0x7e640035, 0x7c3c12b2, 0x2003163f, 0x00000000}},  //   chip, _enrr, lgji_,\n  { {0x6e3d010f, 0x20c60082, 0x78ba00b9, 0x00000000}},  //   _insb, _xôi_, _bitv,\n  { {0xa3bc03d7, 0x6e2d000c, 0x7d0d007f, 0x00000000}},  //   _अलग_, ldab, mtas,\n  { {0x7d0d1640, 0xddcd001a, 0x81e70044, 0x00000000}},  //   ltas, ciaţ, _পান_,\n  { {0x442c018e, 0xb3460181, 0x7f3c0049, 0x00000000}},  //   edd_, zaçõ, לעוו,\n  { {0xc4850088, 0x12bd0044, 0x2c640039, 0x00000000}},  //   клик, _আবেদ, _född_,\n  { {0x443c0a8b, 0x69d901a2, 0x00000000, 0x00000000}},  //   _cnv_, lbwe,   ,\n  { {0x61e6009f, 0x7d0d006c, 0x06f40076, 0x00000000}},  //   takl, htas, _مسنج,\n  { {0x27e708cc, 0x7d0d014a, 0x443c009d, 0x00000000}},  //   lann_, ktas, _env_,\n  { {0xb3460181, 0x61e6014a, 0x443c0f0a, 0x00000000}},  //   taçõ, rakl, _fnv_,\n  { {0x27e7002a, 0x7d0d0030, 0x10a61641, 0x00000000}},  //   nann_, dtas, тигн,\n  { {0xb34602d5, 0xdee30081, 0x7d0d0026, 0x00000000}},  //   raçõ, иори, etas,\n  { {0x20c600ad, 0x27e71642, 0x6d44002d, 0x00000000}},  //   _tôi_, hann_, txia,\n  { {0x7d0d011c, 0xb3460181, 0x27e7000c, 0x00000000}},  // [2bc0] gtas, paçõ, kann_,\n  { {0x61e405d1, 0xe3b8027d, 0x3f9a08d2, 0x00000000}},  //   _heil, mdır_, _typu_,\n  { {0xbddb0f57, 0x27e71643, 0x09e600da, 0x00000000}},  //   _poèt, dann_, воен,\n  { {0x7afe121e, 0x60c40020, 0x6abb07ae, 0x00000000}},  //   rupt, _kuim, _ciuf,\n  { {0x442c0bc4, 0x61e4028c, 0xe3b80279, 0x00000000}},  //   ydd_, _meil, ndır_,\n  { {0xcee906c6, 0x27e7002a, 0x61e40181, 0x00000000}},  //   _ترین_, gann_, _leil,\n  { {0xa7fc005a, 0x60c40051, 0x78ba00f8, 0x00000000}},  //   _alıc, _luim, _vitv,\n  { {0xfaa60069, 0x61e4006c, 0x442c018e, 0x00000000}},  //   _рабо, _neil, wdd_,\n  { {0x27e71644, 0x090600ec, 0x47e10055, 0x00000000}},  //   bann_, _шпан, _নারী,\n  { {0x78ba049b, 0xdb1c00f4, 0x27e70051, 0x00000000}},  //   _uitv, _agré, cann_,\n  { {0x442c018e, 0x7d0d1645, 0xa279003b, 0x00000000}},  //   rdd_, ztas, ебну_,\n  { {0xd3780166, 0x7d0d000c, 0x443c0b3d, 0x00000000}},  //   naći_, ytas, _wnv_,\n  { {0x61e4009f, 0x60c4002a, 0xd251025a, 0x00000000}},  //   _deil, _cuim, لنگ_,\n  { {0x2bfe0309, 0x645d0065, 0x443c00d9, 0x00000000}},  //   _लागू_, ësit, _unv_,\n  { {0x61e40056, 0x20030065, 0x260f006e, 0x00000000}},  //   _feil, rgji_, थ्वी_,\n  { {0x7d0d0635, 0x61e41440, 0x60c4008e, 0x00000000}},  //   ttas, _geil, _fuim,\n  { {0x60c40181, 0x27e70058, 0x7d0d1646, 0x00000000}},  // [2bd0] _guim, yann_, utas,\n  { {0x7d0d022b, 0x6aa90065, 0x61e405c6, 0x00000000}},  //   rtas, _shef, _zeil,\n  { {0x7d0d0004, 0x27e71647, 0xddc60036, 0x00000000}},  //   stas, vann_, _dokł,\n  { {0x27e7010f, 0x99d4006d, 0x21290085, 0x00000000}},  //   wann_, لتها, _ksah_,\n  { {0xe9d80ee0, 0x27e71648, 0xee3f0142, 0x00000000}},  //   ткі_, tann_, _iný_,\n  { {0xfa230044, 0xd7091649, 0x00000000, 0x00000000}},  //   ফাইল_, енке_,   ,\n  { {0x27e70263, 0x12bd0055, 0xe3b8005a, 0x00000000}},  //   rann_, _আব্দ, zdır_,\n  { {0x27e70263, 0xddcd001e, 0x9980049c, 0x00000000}},  //   sann_, skaņ, žiš_,\n  { {0x61e400b0, 0x27e701aa, 0xf8070088, 0x00000000}},  //   _reil, pann_, _ачен,\n  { {0x61e41014, 0x60c4015c, 0xe3e30055, 0x00000000}},  //   _seil, _ruim, _মাহব,\n  { {0x60c4164a, 0x65690010, 0x91e6004d, 0x00000000}},  //   _suim, szeh, лоне,\n  { {0xe3b8006b, 0x00000000, 0x00000000, 0x00000000}},  //   tdır_,   ,   ,\n  { {0x61e402ae, 0x645d008d, 0x60c40211, 0x00000000}},  //   _veil, ësis, _quim,\n  { {0xe3b801f6, 0x61e4010f, 0x26c508e3, 0x00000000}},  //   rdır_, _weil, _kulo_,\n  { {0x61e4164b, 0x99750036, 0x21290145, 0x00000000}},  //   _teil, nęło_, _esah_,\n  { {0x26c50026, 0x60c40755, 0x3a2d00d2, 0x00000000}},  //   _mulo_, _tuim, _naep_,\n  { {0x0eb904af, 0x4c860265, 0xe3b8006b, 0x00000000}},  // [2be0] туры_, глав, qdır_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x26c5164c, 0x2240040f, 0xfaa6003b, 0x00000000}},  //   _nulo_, _knik_, гажо,\n  { {0x3ce80316, 0x1efb0049, 0xc986005e, 0x00000000}},  //   _चौथे_, _אלטע, лули,\n  { {0xed57004d, 0xf99201b7, 0xc27b071c, 0x00000000}},  //   _боя_, حبا_, ערני,\n  { {0x3ea0164d, 0x66c7011f, 0xf772026c, 0x00000000}},  //   llit_, _tıkl, یاں_,\n  { {0x26c50e1d, 0xd3780243, 0x22400032, 0x00000000}},  //   _culo_, paći_, _onik_,\n  { {0x7c2e0211, 0x3ea0000c, 0x26c5011c, 0x00000000}},  //   _habr, nlit_, _dulo_,\n  { {0x634a005f, 0x290f001c, 0x7c2e01aa, 0x00000000}},  //   məni, ctga_, _kabr,\n  { {0x634a005f, 0x22400058, 0x24520035, 0x00000000}},  //   ləni, _anik_, _câmp_,\n  { {0x360605f3, 0x3ea0006c, 0x26c5011c, 0x00000000}},  //   _مواف, klit_, _gulo_,\n  { {0x21b501fb, 0xdbdf000c, 0xa2950245, 0x00000000}},  //   ийня, _líðu, рамі,\n  { {0x667b0049, 0x463b0049, 0x067b0097, 0x00000000}},  //   _אטאק, _רעדע, _אנאל,\n  { {0x7c2e0091, 0x3e67006c, 0x634a006b, 0x00000000}},  //   _nabr, _mõte_, həni,\n  { {0x634a005f, 0x442e0039, 0x316b0036, 0x00000000}},  //   kəni, _iaf_, szcz_,\n  { {0x442e0016, 0x3ea00d9c, 0x7c2e00e0, 0x00000000}},  //   _haf_, glit_, _aabr,\n  { {0x3cee03d7, 0x634a005f, 0x9f4300b9, 0x00000000}},  // [2bf0] ेंगे_, dəni, mají_,\n  { {0x442e002b, 0x3ea000b0, 0x9f4300b9, 0x00000000}},  //   _jaf_, alit_, lají_,\n  { {0x2baa001c, 0x442e00d9, 0x3ea0164e, 0x00000000}},  //   _करणा, _maf_, blit_,\n  { {0x9f4300b9, 0x442e0095, 0x3ea000e5, 0x00000000}},  //   nají_, _laf_, clit_,\n  { {0xd945007c, 0xd37804eb, 0x00000000, 0x00000000}},  //   рели, maću_,   ,\n  { {0x442e002b, 0x26c51577, 0x2c14007d, 0x00000000}},  //   _naf_, _pulo_, न्दू_,\n  { {0xf77103ec, 0x366903f3, 0x270e006b, 0x00000000}},  //   غات_, како_, _yəni_,\n  { {0x7c2e037b, 0xbb840054, 0x2baa001c, 0x00000000}},  //   _zabr, _الفي, _करता,\n  { {0x81eb0055, 0x9f4300b9, 0x442e164f, 0x00000000}},  //   মলা_, dají_, _baf_,\n  { {0x26c51449, 0xf8b90076, 0x22401650, 0x00000000}},  //   _tulo_, _شهاب_, _snik_,\n  { {0xd3780107, 0x52aa003b, 0x53a500e2, 0x00000000}},  //   kaću_, квом_, ранб,\n  { {0x67b800f9, 0xcb12009b, 0x442e0dfc, 0x00000000}},  //   _صالح_, חלט_, _eaf_,\n  { {0x442e1651, 0xd37804eb, 0x00000000, 0x00000000}},  //   _faf_, daću_,   ,\n  { {0x442e1652, 0x270e006b, 0x05a80088, 0x00000000}},  //   _gaf_, _səni_, _свій_,\n  { {0x634a006b, 0xa2a70061, 0xdee60088, 0x00000000}},  //   yəni, _टीव्, роби,\n  { {0xdbdf009f, 0x7c2e01a3, 0x22400390, 0x00000000}},  //   _síðu, _sabr, _unik_,\n\n  { {0x7c2e023a, 0x3ea0000c, 0x645c1653, 0x00000000}},  // [2c00] _pabr, rlit_, örig,\n  { {0xa7fc01f6, 0x3ea01654, 0x00000000, 0x00000000}},  //   _alın, slit_,   ,\n  { {0x62870428, 0x634a006b, 0xd3780521, 0x00000000}},  //   čkov, təni, baću_,\n  { {0xeb970373, 0x628611b2, 0x2c640039, 0x00000000}},  //   ших_, nnko, _döda_,\n  { {0x7c2e0093, 0x634a006b, 0x62860cba, 0x00000000}},  //   _tabr, rəni, inko,\n  { {0x7d04000b, 0xceb4006b, 0x6e24010f, 0x00000000}},  //   muis, lmə_, leib,\n  { {0x7d04021e, 0xa2ca0164, 0x00000000, 0x00000000}},  //   luis, _संध्,   ,\n  { {0x442e019a, 0x95d7005e, 0x634a006b, 0x00000000}},  //   _saf_, адът_, qəni,\n  { {0x9f4300b9, 0x7d04009d, 0x442e1655, 0x00000000}},  //   vají_, nuis, _paf_,\n  { {0x62861656, 0x6e24010f, 0xb8060014, 0x00000000}},  //   enko, heib, _خبره,\n  { {0x7d040007, 0x4394025f, 0x1c0b013d, 0x00000000}},  //   huis, санс, स्टल_,\n  { {0x7d0400b0, 0x442e0173, 0x628600ea, 0x00000000}},  //   kuis, _waf_, gnko,\n  { {0x442e09e2, 0xe4d4025a, 0x61f6018e, 0x00000000}},  //   _taf_, _اقتد, _ddyl,\n  { {0xdb1c0df5, 0x7d0400f4, 0x03770123, 0x00000000}},  //   _agrí, duis, احیت_,\n  { {0x60d600ea, 0xf0b40088, 0xd3780521, 0x00000000}},  //   _etym, ійсь, taću_,\n  { {0x2c640039, 0x5f94003b, 0xdce6014a, 0x00000000}},  //   _röda_, цист, _aykı,\n  { {0xa2ca007d, 0x7d0400f4, 0xd90402fd, 0x00000000}},  // [2c10] _सूत्, guis, _تی_,\n  { {0x80dd0044, 0xd3780645, 0x00000000, 0x00000000}},  //   _বিপ্, saću_,   ,\n  { {0x5b150679, 0x00000000, 0x00000000, 0x00000000}},  //   смет,   ,   ,\n  { {0xe8f50025, 0x7d040207, 0x6aa201ee, 0x00000000}},  //   مستخ, buis, glof,\n  { {0x3cfe03d7, 0xb927007c, 0x7d04009d, 0x00000000}},  //   _लिये_, рфей, cuis,\n  { {0xf1bf0010, 0x00000000, 0x00000000, 0x00000000}},  //   ldás_,   ,   ,\n  { {0x81bf0044, 0xda350147, 0x62860024, 0x00000000}},  //   েরি_, _левы, ynko,\n  { {0x7c251657, 0x80dd0044, 0xf1bf0010, 0x00000000}},  //   lehr, _বিন্, ndás_,\n  { {0x673a01d6, 0x00000000, 0x00000000, 0x00000000}},  //   _ertj,   ,   ,\n  { {0xb4650057, 0x9865026c, 0x81bf0044, 0x00000000}},  //   скол, _دیتے_, েরা_,\n  { {0x6e241658, 0x673a00d9, 0x60d600b4, 0x00000000}},  //   yeib, _grtj, _stym,\n  { {0x99800027, 0x6286002d, 0x00000000, 0x00000000}},  //   žiť_, unko,   ,\n  { {0xf65200b6, 0x628602e1, 0xd5480380, 0x00000000}},  //   _מצא_, rnko, _نجوم_,\n  { {0x7536007b, 0x1c030061, 0x200c006c, 0x00000000}},  //   _לאנד_, _लागल_, üdi_,\n  { {0x44251659, 0x64431446, 0xceb4006b, 0x00000000}},  //   mel_, _inni, tmə_,\n  { {0x7d040625, 0x752900e7, 0x00000000, 0x00000000}},  //   tuis, owez,   ,\n  { {0x6e24010f, 0x752900b5, 0xceb4006b, 0x00000000}},  // [2c20] reib, nwez, rmə_,\n  { {0x4425011f, 0x313700a0, 0x7d040dc9, 0x00000000}},  //   nel_, _פנים_, ruis,\n  { {0x291f00b0, 0x7d040052, 0x00000000, 0x00000000}},  //   _apua_, suis,   ,\n  { {0xa2ca02f4, 0x4425165a, 0x7d040c7e, 0x00000000}},  //   _संस्, hel_, puis,\n  { {0x6443021e, 0x7d04051b, 0x660901b5, 0x00000000}},  //   _onni, quis, dgek,\n  { {0xd90d00e9, 0xbb46165b, 0xab2a004d, 0x00000000}},  //   ئیل_, _легк, _йога_,\n  { {0x44250390, 0xf1c80164, 0xfaa6007e, 0x00000000}},  //   del_, रखान, _гаво,\n  { {0x44250250, 0x6609123b, 0x6443165c, 0x00000000}},  //   eel_, ggek, _anni,\n  { {0x44250562, 0x896600da, 0xc966007e, 0x00000000}},  //   fel_, _укаж, _увай,\n  { {0xe8d7009b, 0x290600e7, 0x00000000, 0x00000000}},  //   _לומר_, muoa_,   ,\n  { {0x2f380173, 0xdc9b08cd, 0x00000000, 0x00000000}},  //   _nčg_, רייל,   ,\n  { {0x32670920, 0x6443018e, 0x46690088, 0x00000000}},  //   стов, _enni, _крім_,\n  { {0x4425165d, 0x2018002b, 0x00000000, 0x00000000}},  //   bel_, ffri_,   ,\n  { {0x44250142, 0x27ee000c, 0xe81b0164, 0x00000000}},  //   cel_, nafn_, प्पा_,\n  { {0x447b009b, 0x7c25013e, 0x00000000, 0x00000000}},  //   _תנוע, vehr,   ,\n  { {0x7c25010f, 0x290600e7, 0x00000000, 0x00000000}},  //   wehr, kuoa_,   ,\n  { {0xdc55012b, 0x463b0049, 0xa7fc014a, 0x00000000}},  // [2c30] овањ, נעמע, _alım,\n  { {0xba3d00b9, 0x00000000, 0x00000000, 0x00000000}},  //   _lhůt,   ,   ,\n  { {0x50d404e1, 0x212b018e, 0x99d70025, 0x00000000}},  //   _وزیر, lwch_, متشا,\n  { {0x4425079a, 0x61ef0035, 0x2be90044, 0x00000000}},  //   zel_, nacl, খলেই_,\n  { {0x4425165e, 0x212b018e, 0xa2bc0049, 0x00000000}},  //   yel_, nwch_, אמאט,\n  { {0x4425077d, 0x7e6d165f, 0x27ee0016, 0x00000000}},  //   xel_, lhap, gafn_,\n  { {0x44251660, 0x2bdf02d2, 0xb8d0007d, 0x00000000}},  //   vel_, _प्या, _टी_,\n  { {0x44251661, 0x628d012d, 0x0f7c009b, 0x00000000}},  //   wel_, _njao, טרול,\n  { {0x66090007, 0x75290b43, 0x395200ea, 0x00000000}},  //   rgek, uwez, øyst_,\n  { {0x6609144a, 0x212b018e, 0x44250bed, 0x00000000}},  //   sgek, dwch_, uel_,\n  { {0x224a02b3, 0x7e6d017b, 0x634a013f, 0x00000000}},  //   апни_, khap, dəns,\n  { {0x4425061f, 0xe29a06b6, 0xd6ab05d4, 0x00000000}},  //   sel_, рам_, _صدام_,\n  { {0xa4f70167, 0x212b0016, 0x2f380087, 0x00000000}},  //   _اکبر_, gwch_, _sčg_,\n  { {0x6443000c, 0x316c0036, 0x61ef0045, 0x00000000}},  //   _unni, ądz_, aacl,\n  { {0x1fb51662, 0xae7a013a, 0xe81b01f5, 0x00000000}},  //   зстр, асах_, प्या_,\n  { {0x00ca1663, 0x7e6d011c, 0x7bd500bb, 0x00000000}},  //   _клик_, ghap, _afzu,\n  { {0x63a3018e, 0xf1bf0051, 0x9f4300c4, 0x00000000}},  // [2c40] _hynn, leán_, rajá_,\n  { {0xad9b049a, 0x63a31664, 0xdb1c1665, 0x00000000}},  //   _acús, _kynn, _agrá,\n  { {0x49ca1666, 0xddc40035, 0xad9b0048, 0x00000000}},  //   ален_, ghiţ, _scút,\n  { {0x7e6d1667, 0x09e300ed, 0x63a31668, 0x00000000}},  //   chap, доцн, _mynn,\n  { {0x63a301d6, 0x522d0049, 0x00000000, 0x00000000}},  //   _lynn, טואַ,   ,\n  { {0x6e36010a, 0x7e640052, 0x00000000, 0x00000000}},  //   ldyb, lkip,   ,\n  { {0x7d161669, 0x7c22012d, 0x61ef013f, 0x00000000}},  //   ltys, đord, yacl,\n  { {0x27ee009f, 0xf1bf0051, 0x7bc70065, 0x00000000}},  //   safn_, deán_, _zgju,\n  { {0xceb3019b, 0x7d160bd7, 0x61ef00d9, 0x00000000}},  //   ויה_, ntys, vacl,\n  { {0x31e30183, 0x63a3018e, 0xb86604e8, 0x00000000}},  //   पर्ध, _bynn, _بارو,\n  { {0x63a30bc4, 0x61ef0129, 0xe3b8014a, 0x00000000}},  //   _cynn, tacl, ldız_,\n  { {0x212b018e, 0x63a30016, 0x00000000, 0x00000000}},  //   twch_, _dynn,   ,\n  { {0xa2ca0309, 0x26cc166a, 0x00000000, 0x00000000}},  //   _सूर्, _hudo_,   ,\n  { {0x80dd0055, 0x26cc0065, 0x212b0016, 0x00000000}},  //   _বিদ্, _kudo_, rwch_,\n  { {0x63a3166b, 0x8f34166c, 0x7e6d0058, 0x00000000}},  //   _gynn, мерц, thap,\n  { {0x26cc0325, 0x64580052, 0xa19501e1, 0x00000000}},  //   _mudo_, _hovi, _найч,\n  { {0x629d0211, 0x645800b0, 0x7e6d166d, 0x00000000}},  // [2c50] moso, _kovi, rhap,\n  { {0x61ed0038, 0x6458003b, 0x2ba7012b, 0x00000000}},  //   _heal, _jovi, ојев,\n  { {0x64580866, 0x26cc166e, 0x60cd00e7, 0x00000000}},  //   _movi, _nudo_, _huam,\n  { {0x6458001a, 0x7522166f, 0x60cd000b, 0x00000000}},  //   _lovi, _opoz, _kuam,\n  { {0xcfbd0044, 0x6d4b0039, 0xd92b005e, 0x00000000}},  //   _অভিন, ågad, рцел_,\n  { {0x61ed0066, 0x629d005b, 0x60cd12d9, 0x00000000}},  //   _leal, hoso, _muam,\n  { {0x629d1670, 0x26cc1671, 0x25a9050f, 0x00000000}},  //   koso, _cudo_, _šal_,\n  { {0x26cc1672, 0xdb1c0010, 0x61ed0471, 0x00000000}},  //   _dudo_, _ugrá, _neal,\n  { {0x63a31673, 0x629d008e, 0x65600016, 0x00000000}},  //   _synn, doso, gymh,\n  { {0xf1bf0051, 0x645801ed, 0x1309007c, 0x00000000}},  //   teán_, _covi, бной_,\n  { {0x61ed1674, 0xbddb00f6, 0x752200f5, 0x00000000}},  //   _beal, _anèm, _epoz,\n  { {0xf1bf002a, 0x629d0020, 0x61ed0fff, 0x00000000}},  //   reán_, goso, _ceal,\n  { {0xf1bf002a, 0x63a3005b, 0x661b00e7, 0x00000000}},  //   seán_, _wynn, mfuk,\n  { {0x653a007b, 0x645801c5, 0x63a30016, 0x00000000}},  //   _לענד, _govi, _tynn,\n  { {0x1eaa023c, 0x61ed1675, 0xdfcf0380, 0x00000000}},  //   ماري_, _feal, ايف_,\n  { {0x6446001e, 0x61ed0051, 0x7d160052, 0x00000000}},  //   ēkie, _geal, ttys,\n  { {0xf1bf002a, 0x60cd01a3, 0x6e360190, 0x00000000}},  // [2c60] neál_, _guam, rdyb,\n  { {0x7e641676, 0x61ed00ab, 0x76591677, 0x00000000}},  //   skip, _zeal, _lowy,\n  { {0xe8050164, 0x7d161678, 0x6d4b0039, 0x00000000}},  //   _राजा_, stys, ägar,\n  { {0x76590046, 0x7d161562, 0x0ae90025, 0x00000000}},  //   _nowy, ptys, تركي_,\n  { {0x63a60036, 0x00000000, 0x00000000, 0x00000000}},  //   ękni,   ,   ,\n  { {0x26cc0211, 0xa3ab0061, 0x7d041679, 0x00000000}},  //   _pudo_, _खरं_, mris,\n  { {0x7522167a, 0x25c1005f, 0xe1ff0036, 0x00000000}},  //   _spoz, ərlə_, chów_,\n  { {0x6458167b, 0x80dd0055, 0xfaa301fb, 0x00000000}},  //   _sovi, _বিস্, _засо,\n  { {0x6458040d, 0x68e90016, 0x629d02bb, 0x00000000}},  //   _povi, _gwed, voso,\n  { {0x26cc02d5, 0x7d04002a, 0x61ed167c, 0x00000000}},  //   _tudo_, iris, _seal,\n  { {0xe61a0057, 0x61ed0004, 0x229501e0, 0x00000000}},  //   _где_, _peal, диня,\n  { {0x7d040020, 0xbddb01aa, 0xd377007e, 0x00000000}},  //   kris, _enèj, ячы_,\n  { {0x629d167d, 0xe534007c, 0x64580052, 0x00000000}},  //   roso, _цель, _tovi,\n  { {0x7d040089, 0x61e0005a, 0x55bb00b3, 0x00000000}},  //   dris, ımla, _המדו,\n  { {0x629d167e, 0x7c350ed8, 0x25af010f, 0x00000000}},  //   poso, _razr, _zzgl_,\n  { {0x7d04010f, 0x816b003b, 0xe0df0026, 0x00000000}},  //   fris, _гроб_, ppò_,\n  { {0x823403ec, 0x22490027, 0x786f06ec, 0x00000000}},  // [2c70] _سريا, _inak_, _høve,\n  { {0xdfd10025, 0x00000000, 0x00000000, 0x00000000}},  //   _جيد_,   ,   ,\n  { {0xaac70070, 0x7d04006c, 0xde590088, 0x00000000}},  //   ستان, aris, _дані_,\n  { {0x7d18002a, 0x68e9006a, 0x7d04016e, 0x00000000}},  //   éasá, _pwed, bris,\n  { {0x7d0408d3, 0x3ea90039, 0x786f08e0, 0x00000000}},  //   cris, mlat_, _løve,\n  { {0x3ea90065, 0x07a50751, 0xc7a50088, 0x00000000}},  //   llat_, малн, милк,\n  { {0x12c70055, 0x7659047a, 0x2249167f, 0x00000000}},  //   _শব্দ, _powy, _onak_,\n  { {0xd877007a, 0x645c1680, 0x569202ea, 0x00000000}},  //   _کارب, örin, кајт,\n  { {0xbddb0173, 0xddcd0006, 0xb8150098, 0x00000000}},  //   _anèk, kiaž, _одај,\n  { {0x22491451, 0x249e0009, 0x25a60173, 0x00000000}},  //   _anak_, gotm_, _dyol_,\n  { {0x3ea90169, 0x04ff0044, 0x80dd0044, 0x00000000}},  //   klat_, ্বের_, _বিষ্,\n  { {0x7d04000c, 0x1fc50044, 0xcfc50044, 0x00000000}},  //   yris, ্রাস, ্রান,\n  { {0x66c7014a, 0x3ea90058, 0x22490288, 0x00000000}},  //   _fıkr, dlat_, _dnak_,\n  { {0x80dd0055, 0x638501fc, 0x22491681, 0x00000000}},  //   _বিশ্, _огла, _enak_,\n  { {0xe29f000c, 0x3ea90035, 0x7d040016, 0x00000000}},  //   boð_, flat_, wris,\n  { {0x3ea91682, 0xecea0ae0, 0x00000000, 0x00000000}},  //   glat_, ждал_,   ,\n  { {0x32d3001d, 0x7d041683, 0xd12f007a, 0x00000000}},  // [2c80] _hãy_, uris, _نمي_,\n  { {0x7d0401bc, 0x22490091, 0x3ac8006b, 0x00000000}},  //   rris, _znak_, _aşpa_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7d04032c, 0x3ea900d4, 0x201e0173, 0x00000000}},  //   pris, clat_, òtif_,\n  { {0x20d408b2, 0xaac50014, 0xbdfb0bb6, 0x00000000}},  //   _jäi_, رتمن, _برپا_,\n  { {0xd6da107f, 0x1867017f, 0x00000000, 0x00000000}},  //   оти_, мачи_,   ,\n  { {0xf793008b, 0x32d30082, 0xdc3701ce, 0x00000000}},  //   кашэ, _nãy_, _קאלט_,\n  { {0xa3c302fb, 0xa534017a, 0x3ea01684, 0x00000000}},  //   ्शन_, енич, noit_,\n  { {0x64c80164, 0x26c600e7, 0x786f0146, 0x00000000}},  //   रदेश, _vioo_, _døvb,\n  { {0x22490030, 0x80dd0044, 0x00000000, 0x00000000}},  //   _snak_, _বিল্,   ,\n  { {0xd37a0aef, 0xe29f01e5, 0x00000000, 0x00000000}},  //   ючи_, toð_,   ,\n  { {0x32d30011, 0x0566142c, 0x00000000, 0x00000000}},  //   _dãy_, _овен,   ,\n  { {0xa2ca006e, 0xf1ab0014, 0x3ea00035, 0x00000000}},  //   _संक्, تاده_, doit_,\n  { {0xdbf30279, 0x961d0089, 0x104b0088, 0x00000000}},  //   _işçi, miņa, цями_,\n  { {0xc05801e1, 0x3ea90222, 0x32d30082, 0x00000000}},  //   фія_, tlat_, _gãy_,\n  { {0x442c1685, 0x3ea90831, 0x2906012d, 0x00000000}},  //   led_, ulat_, kroa_,\n  { {0x3ea91686, 0x442c0016, 0xdfd51001, 0x00000000}},  // [2c90] rlat_, oed_, _попы,\n  { {0x442c0038, 0x3ea90224, 0xa1f900a1, 0x00000000}},  //   ned_, slat_, _بڑھا_,\n  { {0x3ea90035, 0x628f0cfe, 0x442c005b, 0x00000000}},  //   plat_, onco, ied_,\n  { {0x442c1687, 0x2bdf02fb, 0xfbdf02f4, 0x00000000}},  //   hed_, _प्रा, _प्रम,\n  { {0x442c0038, 0x26de0207, 0xd82500ed, 0x00000000}},  //   ked_, _atto_, едли,\n  { {0x442c0209, 0x6e2d0051, 0x7d0d04cb, 0x00000000}},  //   jed_, leab, muas,\n  { {0x442c0038, 0xa2ca02fb, 0x7d0d0169, 0x00000000}},  //   ded_, _संग्, luas,\n  { {0xbb48007a, 0x6e2d004a, 0x442c06ed, 0x00000000}},  //   _تلفن_, neab, eed_,\n  { {0x79a703f3, 0x442c0016, 0x7d0d0048, 0x00000000}},  //   _црве, fed_, nuas,\n  { {0xa2ca02fb, 0xe4510054, 0x442c1688, 0x00000000}},  //   _संख्, اضة_, ged_,\n  { {0xe2860751, 0x00000000, 0x00000000, 0x00000000}},  //   елни,   ,   ,\n  { {0x644a00f4, 0x7d0d04cb, 0x442c006c, 0x00000000}},  //   _enfi, kuas, aed_,\n  { {0x442c0ace, 0x764b0047, 0x1fe10044, 0x00000000}},  //   bed_, _ingy, _বয়স,\n  { {0x442c0038, 0x2bdf006e, 0xa06a007e, 0x00000000}},  //   ced_, _प्ला, чага_,\n  { {0x3ea0010e, 0x625800fa, 0x00000000, 0x00000000}},  //   toit_, _mãoz,   ,\n  { {0x6e2d02a4, 0x7d0d0020, 0x68e20022, 0x00000000}},  //   geab, fuas, ypod,\n  { {0x62860288, 0x3ea01689, 0x7d0d168a, 0x00000000}},  // [2ca0] miko, roit_, guas,\n  { {0x69db008e, 0xef1a0478, 0xc19b0104, 0x00000000}},  //   _afue, _емо_, _משפי,\n  { {0x961d0089, 0xb5fd0089, 0x9f430142, 0x00000000}},  //   ziņa, ekšm, zajú_,\n  { {0x442c168b, 0x2906002d, 0x6e2d0133, 0x00000000}},  //   zed_, troa_, ceab,\n  { {0x442c0038, 0xd83801d9, 0x6f0e012d, 0x00000000}},  //   yed_, _pač_, lubc,\n  { {0x62860d49, 0x2906022b, 0x442c00ab, 0x00000000}},  //   hiko, rroa_, xed_,\n  { {0x442c0038, 0x62860315, 0xe66600ec, 0x00000000}},  //   ved_, kiko, етпо,\n  { {0x442c168c, 0x6286168d, 0x68e2009d, 0x00000000}},  //   wed_, jiko, ppod,\n  { {0x442c0a8a, 0x6286002d, 0xdb1c0051, 0x00000000}},  //   ted_, diko, _ngrú,\n  { {0x6aa200c7, 0x9980010a, 0x628601c3, 0x00000000}},  //   loof, žių_, eiko,\n  { {0x442c0a8a, 0xb21b00ea, 0x00000000, 0x00000000}},  //   red_, dnær,   ,\n  { {0x442c109b, 0x6286168e, 0x00000000, 0x00000000}},  //   sed_, giko,   ,\n  { {0x442c00ab, 0x6e2d0056, 0x628f00d9, 0x00000000}},  //   ped_, veab, rnco,\n  { {0x6aa20168, 0x74130014, 0x7bce00e0, 0x00000000}},  //   hoof, _موها, _ngbu,\n  { {0x02a7102a, 0x53340827, 0x6286168f, 0x00000000}},  //   _прим, _рейт, biko,\n  { {0x7bdc0065, 0xb21b101b, 0x00000000, 0x00000000}},  //   _afru, rnæs,   ,\n  { {0x6e2d0051, 0x9f4a1690, 0xbbeb0025, 0x00000000}},  // [2cb0] reab, rabá_, كرام_,\n  { {0x6e2d008e, 0xf8b80082, 0x00000000, 0x00000000}},  //   seab, _nhĩ_,   ,\n  { {0x68fb037e, 0x3944112b, 0x7afc0e0d, 0x00000000}},  //   _svud, _arms_, _cvrt,\n  { {0x636b0010, 0x7d0d04cb, 0xd7f10082, 0x00000000}},  //   lönö, puas, _sẽ_,\n  { {0x7d0d0026, 0x3a240022, 0xb5fd0006, 0x00000000}},  //   quas, _dbmp_, ukšm,\n  { {0x62860006, 0x9be7009e, 0x00000000, 0x00000000}},  //   ziko, _سورۃ_,   ,\n  { {0xa695025f, 0x62860a63, 0xe7390256, 0x00000000}},  //   криј, yiko, фей_,\n  { {0x6286084b, 0x6edc00ca, 0xbddb000a, 0x00000000}},  //   xiko, _učbe, _enèv,\n  { {0xf993004b, 0x628601b1, 0x58d50088, 0x00000000}},  //   _صبر_, viko, _розт,\n  { {0x58d400e3, 0x44650679, 0x290f1691, 0x00000000}},  //   _софт, твов, muga_,\n  { {0x62861692, 0xfbd200b6, 0xe29a012b, 0x00000000}},  //   tiko, יתי_, дан_,\n  { {0x20010022, 0x63aa005b, 0x00000000, 0x00000000}},  //   _adhi_, _dyfn,   ,\n  { {0x6286022b, 0xa5640025, 0x290f006c, 0x00000000}},  //   riko, _مدون, nuga_,\n  { {0x62860e33, 0x291d0020, 0x78a30052, 0x00000000}},  //   siko, itwa_, nonv,\n  { {0x8fa6026b, 0x63aa0016, 0x290f0fc7, 0x00000000}},  //   таве, _gyfn, huga_,\n  { {0x291d01aa, 0x7bdc0207, 0x290f006c, 0x00000000}},  //   ktwa_, _sfru, kuga_,\n  { {0xc5f20097, 0x78a31693, 0x290f1694, 0x00000000}},  // [2cc0] ידן_, konv, juga_,\n  { {0x290f033b, 0x20040006, 0x00000000, 0x00000000}},  //   duga_, ėmis_,   ,\n  { {0x78a3000a, 0x00000000, 0x00000000, 0x00000000}},  //   donv,   ,   ,\n  { {0xc98601ee, 0x290f00e7, 0x00000000, 0x00000000}},  //   кули, fuga_,   ,\n  { {0x6aa2010e, 0x78a300ea, 0x290f010e, 0x00000000}},  //   roof, fonv, guga_,\n  { {0x7afc016e, 0xa7fc005d, 0xa3c3013d, 0x00000000}},  //   _tvrt, _alır, ्शा_,\n  { {0x7c3c002a, 0x7afc016c, 0x394400fa, 0x00000000}},  //   _iarr, _uvrt, _wrms_,\n  { {0x7c3c1695, 0x6d4601ee, 0x7c3e1696, 0x00000000}},  //   _harr, _krka, ldpr,\n  { {0x7c3c022b, 0x291d0036, 0x81d80044, 0x00000000}},  //   _karr, ctwa_, িরা_,\n  { {0x7c3c022b, 0x78a31697, 0x62840173, 0x00000000}},  //   _jarr, conv, _amio,\n  { {0x7c3c071e, 0xd25101ef, 0x64a300ed, 0x00000000}},  //   _marr, مند_, раќа,\n  { {0x7c3c022b, 0x6d460039, 0xa77b0049, 0x00000000}},  //   _larr, _orka, _קראפ,\n  { {0x95530014, 0x316d004a, 0xaf340014, 0x00000000}},  //   _نخوا, áez_, یرفت,\n  { {0x8c080055, 0x25840089, 0x3e750292, 0x00000000}},  //   র্তন_, rīlī_, _måte_,\n  { {0x54330188, 0x3ce2142a, 0x6d46114e, 0x00000000}},  //   _ضرور, _atkv_, _arka,\n  { {0x443e0018, 0x443c00eb, 0x3cfe006e, 0x00000000}},  //   ldt_, _hav_, _लिखे_,\n  { {0x7c3c1698, 0x961d001e, 0x80dd0044, 0x00000000}},  // [2cd0] _barr, ziņo, _বিক্,\n  { {0x443e1699, 0x7c3c169a, 0x290f169b, 0x00000000}},  //   ndt_, _carr, vuga_,\n  { {0x7c3c04bd, 0x6d46169c, 0x443e00d9, 0x00000000}},  //   _darr, _erka, idt_,\n  { {0x7c3c002a, 0x443c0030, 0x99840006, 0x00000000}},  //   _earr, _lav_, _namų_,\n  { {0x7c3c0051, 0xe8df0011, 0x443c169d, 0x00000000}},  //   _farr, _trọn_, _oav_,\n  { {0x443c169e, 0x7c3c022b, 0x6e3d03b0, 0x00000000}},  //   _nav_, _garr, _hasb,\n  { {0x291d169f, 0x46f4007e, 0x290f006c, 0x00000000}},  //   stwa_, ачыт, suga_,\n  { {0xc1e30316, 0x443e00b5, 0x7c3c0032, 0x00000000}},  //   _क्लब_, edt_, _zarr,\n  { {0x7c3c0095, 0x6e3d033b, 0x7e6d16a0, 0x00000000}},  //   _yarr, _masb, ikap,\n  { {0x649d04bd, 0x7c3c16a1, 0x6e3d0116, 0x00000000}},  //   nèix, _xarr, _lasb,\n  { {0x461503ec, 0x7e6d00b0, 0xf770023c, 0x00000000}},  //   _موار, kkap, _وام_,\n  { {0xe0c9007b, 0x32ba0025, 0x443e00d9, 0x00000000}},  //   _זײ_, عددة_, adt_,\n  { {0x443c0048, 0x81ac0044, 0x321e0036, 0x00000000}},  //   _fav_, কেন_, ęty_,\n  { {0x40950bbd, 0x443c05cb, 0x80dd0044, 0x00000000}},  //   арст, _gav_, _বিখ্,\n  { {0x4427006b, 0x6e3d163c, 0x9f580023, 0x00000000}},  //   _ibn_, _basb, marë_,\n  { {0x7c3c022b, 0x7e6d011c, 0x443c0087, 0x00000000}},  //   _sarr, gkap, _zav_,\n  { {0x614601f9, 0x1d0700c0, 0x65690093, 0x00000000}},  // [2ce0] _сепа, лети_, nyeh,\n  { {0x7c3c002b, 0x9f580023, 0x786f0190, 0x00000000}},  //   _qarr, narë_, _søvn,\n  { {0x7c3c0065, 0x16030061, 0x645c0934, 0x00000000}},  //   _varr, ळणार_, örii,\n  { {0xe3c50044, 0x7c3c00ab, 0x998d0036, 0x00000000}},  //   _এভাব, _warr, _oceń_,\n  { {0x7c3c04bd, 0x443e16a2, 0x6e2402c2, 0x00000000}},  //   _tarr, ydt_, mfib,\n  { {0x61f60279, 0x60d60058, 0x6d4416a3, 0x00000000}},  //   _leyl, _muym, mvia,\n  { {0x6d4400d4, 0x443c0253, 0x9f580023, 0x00000000}},  //   lvia, _rav_, darë_,\n  { {0x443c16a4, 0x9b930054, 0xfaa616a5, 0x00000000}},  //   _sav_, _الفت, _сабо,\n  { {0x6d440a53, 0xd94301e0, 0x443c007f, 0x00000000}},  //   nvia, _лети, _pav_,\n  { {0x443e00bb, 0xe8d70104, 0xd5c0013d, 0x00000000}},  //   udt_, _עובר_, शेषज,\n  { {0x443e0662, 0x61f6014a, 0x7e6d011c, 0x00000000}},  //   rdt_, _beyl, ykap,\n  { {0x201a0066, 0x61f60095, 0x443e00d9, 0x00000000}},  //   _acpi_, _ceyl, sdt_,\n  { {0x443c0ed6, 0x6d440027, 0x61f8007e, 0x00000000}},  //   _tav_, jvia, ыняў_,\n  { {0x60d6005a, 0x00000000, 0x00000000, 0x00000000}},  //   _duym,   ,   ,\n  { {0xb4c002fb, 0xb4c2007d, 0x7e6d16a6, 0x00000000}},  //   ंगी_, ्दी_, tkap,\n  { {0xe80e013d, 0x764016a7, 0x38bb01d6, 0x00000000}},  //   _साझा_, ndmy, mêre_,\n  { {0xb8040164, 0x5d55026b, 0x7d1d0009, 0x00000000}},  // [2cf0] रणाम_, шкат, _qqss,\n  { {0x7e6d0292, 0x9ed900e3, 0x673a006c, 0x00000000}},  //   skap, _имот_, _ostj,\n  { {0x649d0129, 0x6e3d16a8, 0xd1b800a1, 0x00000000}},  //   rèix, _tasb, _لایا_,\n  { {0x81f30044, 0x61f6006b, 0x6e3d0093, 0x00000000}},  //   _ঝাঁপ_, _xeyl, _uasb,\n  { {0xc27c0049, 0xe9d8007e, 0x527c0049, 0x00000000}},  //   ערדי, укі_, ענדא,\n  { {0x1bd416a9, 0x7d0d0f3e, 0xa96600e2, 0x00000000}},  //   _горя, mras, риша_,\n  { {0x9f580023, 0x00000000, 0x00000000, 0x00000000}},  //   varë_,   ,   ,\n  { {0x673a0087, 0x00000000, 0x00000000, 0x00000000}},  //   _dstj,   ,   ,\n  { {0x9f580065, 0x7d0d014a, 0x4427107b, 0x00000000}},  //   tarë_, nras, _pbn_,\n  { {0x032500ec, 0xddc40006, 0x291f00f6, 0x00000000}},  //   адон, nkiš, _iqua_,\n  { {0xe1ff0046, 0x3a3f069e, 0x44270296, 0x00000000}},  //   nków_, _kaup_, _vbn_,\n  { {0x80dd0055, 0x216a0088, 0x614600a5, 0x00000000}},  //   _বিজ্, вими_, аема,\n  { {0x34950264, 0xe2970057, 0x44270082, 0x00000000}},  //   _кадр, рая_, _tbn_,\n  { {0xd466012b, 0x6d440197, 0xe5c4007e, 0x00000000}},  //   _више_, vvia, _усхо,\n  { {0x26cf0009, 0x6e240026, 0x7d0d16aa, 0x00000000}},  //   _kigo_, tfib, eras,\n  { {0x7d0d049a, 0xe1ff0036, 0x9f5812b2, 0x00000000}},  //   fras, dków_, naré_,\n  { {0xac860088, 0x26cf008e, 0x629d004a, 0x00000000}},  // [2d00] агал, _migo_, éroe,\n  { {0xd12f089d, 0x0eb80061, 0x26cf16ab, 0x00000000}},  //   _کمی_, _आठवड, _ligo_,\n  { {0x6d4406c2, 0xdddd0010, 0x2abc008e, 0x00000000}},  //   svia, _első, híbe_,\n  { {0x6da60088, 0x64410022, 0x7d0d16ac, 0x00000000}},  //   _вима, hdli, bras,\n  { {0x44e916ad, 0x29000181, 0x9f580b32, 0x00000000}},  //   _nº_, éia_, daré_,\n  { {0x201816ae, 0x3706007c, 0x3eb216af, 0x00000000}},  //   ngri_, ачив, llyt_,\n  { {0x64410186, 0x26cf16b0, 0x291f0026, 0x00000000}},  //   ddli, _bigo_, _equa_,\n  { {0x6441010f, 0x22400149, 0xeb9701fb, 0x00000000}},  //   edli, _naik_, _тис_,\n  { {0xd5b707ca, 0x26cf0b76, 0x44250678, 0x00000000}},  //   ись_, _digo_, ffl_,\n  { {0xb4c003d7, 0x38bb0007, 0x64410270, 0x00000000}},  //   ंगे_, têre_, gdli,\n  { {0x22400149, 0x39460006, 0x3e750039, 0x00000000}},  //   _baik_, lvos_, _låta_,\n  { {0xc5f00055, 0x644116b1, 0x9f5816b2, 0x00000000}},  //   _টাকা_, adli, caré_,\n  { {0x22400022, 0x867b00a0, 0x00000000, 0x00000000}},  //   _daik_, _בראו,   ,\n  { {0x83f80069, 0x7d0d16b3, 0x27fc05ba, 0x00000000}},  //   _секс_, vras, navn_,\n  { {0x06fd00b9, 0x224016b4, 0x3eb200ea, 0x00000000}},  //   žívá_, _faik_, flyt_,\n  { {0x27fc0030, 0x2c190061, 0x2a64000a, 0x00000000}},  //   havn_, _पाहू_, _nomb_,\n  { {0x6d400059, 0xdb1c0036, 0x3a3f0022, 0x00000000}},  // [2d10] _šmar, _ogró, _raup_,\n  { {0x7d0d021e, 0xe1ff0036, 0x9f5816b5, 0x00000000}},  //   rras, tków_, zaré_,\n  { {0x291f0061, 0x3a3f000a, 0x2a640133, 0x00000000}},  //   _squa_, _paup_, _bomb_,\n  { {0x7d0d1669, 0x61fd001c, 0xde590245, 0x00000000}},  //   pras, nasl, _самі_,\n  { {0x39490211, 0x0dcb00ed, 0xd9450726, 0x00000000}},  //   ías_, _јуни_, сели,\n  { {0x26cf0211, 0x3ea913a2, 0xf8a8007e, 0x00000000}},  //   _sigo_, loat_, авік_,\n  { {0x61fd022b, 0x9f580b32, 0x261b0204, 0x00000000}},  //   kasl, taré_, _यादी_,\n  { {0x2f98009b, 0x61fd0089, 0x7d1b01a2, 0x00000000}},  //   יכון_, jasl, _äuss,\n  { {0x26cf049a, 0x880704e8, 0x497516b6, 0x00000000}},  //   _vigo_, _نظام, _улас,\n  { {0x9f5812b2, 0x26cf00e7, 0x26c40026, 0x00000000}},  //   saré_, _wigo_, ammo_,\n  { {0x644104b2, 0xa25b00c4, 0x9f58009d, 0x00000000}},  //   rdli, rmôn, paré_,\n  { {0x27210211, 0x6f1504a8, 0x625a0364, 0x00000000}},  //   món_, duzc, урор_,\n  { {0x272116b7, 0xa5090088, 0x95cb003b, 0x00000000}},  //   lón_, _села_, _ружа_,\n  { {0x645c00b0, 0x00000000, 0x00000000, 0x00000000}},  //   örit,   ,   ,\n  { {0x2721027b, 0xb21b0030, 0xdee6007c, 0x00000000}},  //   nón_, dhæf, соби,\n  { {0x39460006, 0x225200d6, 0xbda60025, 0x00000000}},  //   yvos_, _unyk_, محذو,\n  { {0xed5708d6, 0x272116b8, 0x00000000, 0x00000000}},  // [2d20] бот_, hón_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x272116b9, 0xdb1c00d4, 0x5f460426, 0x00000000}},  //   jón_, _agrò, _انجل,\n  { {0x2721008e, 0x82d60049, 0xa3c90061, 0x00000000}},  //   dón_, צונג_, लेय_,\n  { {0xceb4006b, 0x186a0088, 0x92e30044, 0x00000000}},  //   mlə_, лади_, _ফটো_,\n  { {0xfce30057, 0x39460010, 0x27210027, 0x00000000}},  //   _хоро, rvos_, fón_,\n  { {0x27210211, 0xa3c901f5, 0x61e40035, 0x00000000}},  //   gón_, लेम_, _ofil,\n  { {0xceb4006b, 0x20cf0066, 0x2d8001c3, 0x00000000}},  //   nlə_, _ażil_, ozie_,\n  { {0x2d8016ba, 0xb5fd0089, 0x61fd0010, 0x00000000}},  //   nzie_, ekšs, vasl,\n  { {0xd6d205f3, 0xb86516bb, 0x2721008e, 0x00000000}},  //   _فقط_, _والو, bón_,\n  { {0xceb4005f, 0x27210efe, 0x61fd01c5, 0x00000000}},  //   klə_, cón_, tasl,\n  { {0x41e4007e, 0x9c87093f, 0x29000006, 0x00000000}},  //   зіра, _kočá, šiau_,\n  { {0x61fd00ee, 0xb5fd007f, 0x645c16bc, 0x00000000}},  //   rasl, rkšt, öris,\n  { {0x2d8016bd, 0x61fd006b, 0x236a0025, 0x00000000}},  //   dzie_, sasl, _محبي_,\n  { {0x61e4018e, 0x4fc40b49, 0x93fb0097, 0x00000000}},  //   _ffil, зста, _גלוי,\n  { {0x5f94005e, 0xa195005e, 0x00000000, 0x00000000}},  //   чист, _майч,   ,\n  { {0x27210845, 0x2d58041f, 0x628f16be, 0x00000000}},  // [2d30] zón_, бить_, mico,\n  { {0xebc7003b, 0x6f1504de, 0x9d1800e2, 0x00000000}},  //   бљен, puzc, софт_,\n  { {0xb5fd0059, 0xb21b000c, 0x2721004a, 0x00000000}},  //   ljše, rhæf, xón_,\n  { {0x2721004a, 0x61e416bf, 0x7e6600d9, 0x00000000}},  //   vón_, _xfil, _gokp,\n  { {0xae1a007b, 0xd5a600a1, 0xb5fd00ca, 0x00000000}},  //   _דורכ, _آف_, njše,\n  { {0x272116c0, 0x628f0035, 0x00000000, 0x00000000}},  //   tón_, hico,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x27210211, 0xb5fd0089, 0x628f0466, 0x00000000}},  //   rón_, ekšr, jico,\n  { {0x2721027b, 0x628f029d, 0x00000000, 0x00000000}},  //   són_, dico,   ,\n  { {0x27210211, 0x73050088, 0x61e40197, 0x00000000}},  //   pón_, опоз, _sfil,\n  { {0x628f029d, 0x32090058, 0xe7ef0061, 0x00000000}},  //   fico, _bday_, _घ्या_,\n  { {0x628f029d, 0xd57516c1, 0xe297078e, 0x00000000}},  //   gico, _муль, жаю_,\n  { {0x2a3a0049, 0xceb4006b, 0x7e6600e0, 0x00000000}},  //   בערמ, vlə_, _rokp,\n  { {0x201e16c2, 0x00000000, 0x00000000, 0x00000000}},  //   üti_,   ,   ,\n  { {0xceb4005f, 0x7e660058, 0x64430035, 0x00000000}},  //   tlə_, _pokp, _iani,\n  { {0x661b16c3, 0x394d145d, 0xee3a00e1, 0x00000000}},  //   nguk, _ores_, јна_,\n  { {0x64430811, 0x7fd60099, 0xceb4005f, 0x00000000}},  // [2d40] _kani, _міні, rlə_,\n  { {0xceb4006b, 0x2d800142, 0x00000000, 0x00000000}},  //   slə_, rzie_,   ,\n  { {0xe9da0aed, 0x6a8616c4, 0x2904012d, 0x00000000}},  //   аке_, олжа, _svma_,\n  { {0x644316c5, 0x9c8700b9, 0x394d005b, 0x00000000}},  //   _lani, _počá, _bres_,\n  { {0x81ac0055, 0x59a50061, 0xdb0700b9, 0x00000000}},  //   কের_, गॅलर, _vyjá,\n  { {0x6443006a, 0xc17300b6, 0xd90d007a, 0x00000000}},  //   _nani, וחד_, ایل_,\n  { {0x8b2302a8, 0x394d0211, 0xe3a70084, 0x00000000}},  //   _одре, _eres_, _آر_,\n  { {0xba1a0025, 0x64430058, 0x7d040dc9, 0x00000000}},  //   _خيرا_, _aani, osis,\n  { {0x6443001a, 0x628f0142, 0xd90d025a, 0x00000000}},  //   _bani, vico, _مین_,\n  { {0x64430bab, 0x7d0416c6, 0xe46a09da, 0x00000000}},  //   _cani, isis, ршил_,\n  { {0x628f10d7, 0x7d040d85, 0x00000000, 0x00000000}},  //   tico, hsis,   ,\n  { {0x7d04021e, 0xd377008b, 0xdb211152, 0x00000000}},  //   ksis, ючы_, étét,\n  { {0x628f0198, 0x644316c7, 0x66d50006, 0x00000000}},  //   rico, _fani, _iška,\n  { {0x6443006a, 0x628f0489, 0x66000145, 0x00000000}},  //   _gani, sico, lamk,\n  { {0x628f0181, 0x442e04b3, 0x44e00011, 0x00000000}},  //   pico, _ibf_, _hò_,\n  { {0x644300ee, 0x7c2e16c8, 0x44e00263, 0x00000000}},  //   _zani, _abbr, _kò_,\n  { {0xd90400e9, 0x7d04006a, 0xdddd0036, 0x00000000}},  // [2d50] _جی_, gsis, _posł,\n  { {0x44e016c9, 0xfc330025, 0x6ed50036, 0x00000000}},  //   _mò_, بحر_, _dąbr,\n  { {0x68e902cc, 0x44e012ba, 0x66001636, 0x00000000}},  //   _sted, _lò_, kamk,\n  { {0x7c2e065d, 0x660005cd, 0x787d000a, 0x00000000}},  //   _ebbr, jamk, _mève,\n  { {0x44e001aa, 0x2292089f, 0x81cd0044, 0x00000000}},  //   _nò_, nška_, শুর_,\n  { {0x628d000a, 0x3e7c00b9, 0x442e00d9, 0x00000000}},  //   _lmao, _víte_, _nbf_,\n  { {0xf771031d, 0x6443037e, 0x68e90036, 0x00000000}},  //   عات_, _rani, _wted,\n  { {0x394d16ca, 0x44e016cb, 0x05650088, 0x00000000}},  //   _tres_, _bò_, звин,\n  { {0x644316cc, 0x79820036, 0x44e00082, 0x00000000}},  //   _pani, czow, _cò_,\n  { {0x442e00c4, 0x44e016cd, 0xd87701af, 0x00000000}},  //   _cbf_, _dò_, _بارب,\n  { {0xf1a900bd, 0x2292010a, 0x0322007e, 0x00000000}},  //   _עס_, eška_, ндэн,\n  { {0xe29a08fd, 0x64430149, 0x44e00263, 0x00000000}},  //   сам_, _wani, _fò_,\n  { {0x64430036, 0x2bb802f4, 0x44e00011, 0x00000000}},  //   _tani, _अर्थ, _gò_,\n  { {0x7ae916ce, 0x15420478, 0xf09f00d4, 0x00000000}},  //   _četn, _чешм, dràs_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x3e6e009f, 0x7d0400b0, 0x6d4f0087, 0x00000000}},  //   _nýtt_, tsis, _brca,\n  { {0xed5700ed, 0x44e0159f, 0x7d0400e5, 0x00000000}},  // [2d60] пот_, _xò_, usis,\n  { {0x7d0416cf, 0x6e2f0061, 0xe0580014, 0x00000000}},  //   rsis, _ebcb, _بیست_,\n  { {0x6d4f0095, 0x66000022, 0x00000000, 0x00000000}},  //   _erca, yamk,   ,\n  { {0x61e60b3d, 0x7d0400b0, 0xfaa30245, 0x00000000}},  //   nckl, psis, нахо,\n  { {0x7d040023, 0x6d4f16d0, 0x9f5800d4, 0x00000000}},  //   qsis, _grca, larà_,\n  { {0x79820036, 0x44e00082, 0x91bb009b, 0x00000000}},  //   rzow, _rò_, זמני,\n  { {0xa3ab03d7, 0x6d4f16d1, 0x44e016d2, 0x00000000}},  //   _कुल_, _zrca, _sò_,\n  { {0x44e016d3, 0x442e0203, 0x7e760146, 0x00000000}},  //   _pò_, _sbf_, nkyp,\n  { {0x660001a3, 0x3f83002b, 0xa3c9007d, 0x00000000}},  //   ramk, zzju_, लेस_,\n  { {0x69c00119, 0x628d002a, 0x66000218, 0x00000000}},  //   _izme, _smao, samk,\n  { {0xd25100d3, 0x442e16d4, 0x9f5800d4, 0x00000000}},  //   نند_, _vbf_, jarà_,\n  { {0x9f580129, 0xa75b009b, 0x44e0099c, 0x00000000}},  //   darà_, _לדבר, _tò_,\n  { {0xc05b01fb, 0x6ed60204, 0x2906012d, 0x00000000}},  //   бів_, _मंजु, nsoa_,\n  { {0x26de027f, 0x2292050f, 0x9f5800f6, 0x00000000}},  //   _kuto_, rška_, farà_,\n  { {0xb5fd01ae, 0x6458051b, 0x9f580129, 0x00000000}},  //   ljša, _invi, garà_,\n  { {0x81ac0055, 0x02a4008b, 0x26de16d5, 0x00000000}},  //   কেই_, _прым, _muto_,\n  { {0x2d580057, 0xb5fd0059, 0x442c00bb, 0x00000000}},  // [2d70] пить_, njša, ofd_,\n  { {0x6d4f0107, 0x9f580129, 0xddc6000a, 0x00000000}},  //   _vrca, barà_, _makň,\n  { {0x200316d6, 0x644816d7, 0x629d068f, 0x00000000}},  //   maji_, iddi, onso,\n  { {0x20030052, 0x2ea80061, 0x629d00ea, 0x00000000}},  //   laji_, ककृत, nnso,\n  { {0x186900c0, 0x9f580b33, 0x6d4f001a, 0x00000000}},  //   жали_, mará_, _urca,\n  { {0x200316d8, 0x26de13b1, 0x9f5816d9, 0x00000000}},  //   naji_, _buto_, lará_,\n  { {0x47d00044, 0x6d4d01d6, 0x61e600f8, 0x00000000}},  //   _স্বী, lvaa, yckl,\n  { {0x6e2d004e, 0x9f5800dc, 0x442c00b5, 0x00000000}},  //   nfab, nará_, efd_,\n  { {0x200316da, 0x6d4d16db, 0x442c16dc, 0x00000000}},  //   kaji_, nvaa, ffd_,\n  { {0xd90d026c, 0x200316dd, 0x2b430066, 0x00000000}},  //   _میچ_, jaji_, _ksjc_,\n  { {0x20030235, 0x06d70044, 0x3e7c000c, 0x00000000}},  //   daji_, _সবকি, _líta_,\n  { {0x64480061, 0x9f5816de, 0x60c500e0, 0x00000000}},  //   addi, jará_, _ahhm,\n  { {0x9f580b33, 0x26de0107, 0x765901c3, 0x00000000}},  //   dará_, _zuto_, _inwy,\n  { {0x9f580129, 0x20030020, 0x76490c87, 0x00000000}},  //   tarà_, gaji_, ldey,\n  { {0x6e2d16df, 0x7e640093, 0x98a4007f, 0x00000000}},  //   ffab, tjip, _esmė_,\n  { {0x9f581195, 0x7649014a, 0x00000000, 0x00000000}},  //   gará_, ndey,   ,\n  { {0x7529001a, 0xdb0e01dc, 0xe8df0011, 0x00000000}},  // [2d80] ntez, _vybí, _trộn_,\n  { {0x69db00c4, 0xfbd201d8, 0x7e7d02a9, 0x00000000}},  //   _ague, نتا_, _elsp,\n  { {0xaec616e0, 0x9f580285, 0x0ae90025, 0x00000000}},  //   _обол, bará_, كرني_,\n  { {0x9f58029d, 0x99dd0161, 0x290600b0, 0x00000000}},  //   cará_, _daňo, tsoa_,\n  { {0x64480bc4, 0x752911b7, 0xa96701fc, 0x00000000}},  //   yddi, jtez, мица_,\n  { {0xd6ea092b, 0x3ead0618, 0x69db002d, 0x00000000}},  //   офил_, čete_, _egue,\n  { {0x290602d5, 0x75290026, 0x00000000, 0x00000000}},  //   ssoa_, etez,   ,\n  { {0x2003000b, 0xc9560057, 0x786f0146, 0x00000000}},  //   zaji_, _отзы, _bøvs,\n  { {0x200316e1, 0x6f1c031e, 0x69c00091, 0x00000000}},  //   yaji_, hurc, _uzme,\n  { {0x26de16e2, 0x1620001c, 0x9f580b76, 0x00000000}},  //   _tuto_, _यावर_, zará_,\n  { {0xd62a16e3, 0x6448018e, 0x200300ca, 0x00000000}},  //   _може_, rddi, vaji_,\n  { {0x6f1c010f, 0x20030020, 0x7d1600ea, 0x00000000}},  //   durc, waji_, krys,\n  { {0x2003000b, 0x60d70142, 0x9f580b33, 0x00000000}},  //   taji_, _pixm, vará_,\n  { {0x656f010f, 0x7d160065, 0x7bdc0022, 0x00000000}},  //   äche, drys, _ngru,\n  { {0x9f580489, 0xa295008b, 0x200316e4, 0x00000000}},  //   tará_, _пакі, raji_,\n  { {0x7bdc06c2, 0x4ea400e3, 0x6d4d00b5, 0x00000000}},  //   _agru, вруа, tvaa,\n  { {0x9f580489, 0x20030020, 0xdd940147, 0x00000000}},  // [2d90] rará_, paji_, ваты,\n  { {0x315600b6, 0x6d4d16e5, 0x9f580b33, 0x00000000}},  //   _ניתן_, rvaa, sará_,\n  { {0x9f580285, 0x6f1c0035, 0x6d4d00b0, 0x00000000}},  //   pará_, curc, svaa,\n  { {0x75290065, 0x7d1616e6, 0x2249006c, 0x00000000}},  //   ytez, brys, _jaak_,\n  { {0x224906b2, 0x801806c6, 0xf5480011, 0x00000000}},  //   _maak_, _عزیز_, _nụ_,\n  { {0x68e016e7, 0x2a660026, 0x2b4300d4, 0x00000000}},  //   _dumd, ajob_, _tsjc_,\n  { {0x7afc018e, 0x38c900a1, 0x2001006c, 0x00000000}},  //   _gwrt, _ہائی_, _mehi_,\n  { {0x060901e0, 0x75290282, 0x26c600e7, 0x00000000}},  //   чник_, ttez, _choo_,\n  { {0xf548001d, 0x7649014a, 0x75290026, 0x00000000}},  //   _cụ_, rdey, utez,\n  { {0x75290181, 0x336516e8, 0xf5480011, 0x00000000}},  //   rtez, евог, _dụ_,\n  { {0xa3c9006e, 0x291d011c, 0xe8d6009b, 0x00000000}},  //   लें_, luwa_, _נוער_,\n  { {0xbbdc013d, 0x2292050f, 0x75290035, 0x00000000}},  //   _बल्क, rško_, ptez,\n  { {0x20010032, 0x45220044, 0x26cd0026, 0x00000000}},  //   _behi_, _বৈঠক_, mmeo_,\n  { {0x03a50256, 0x2a6d006c, 0x6f1c0145, 0x00000000}},  //   _пило, _loeb_, turc,\n  { {0xc7b2007b, 0x2a7f005f, 0x2baf03d7, 0x00000000}},  //   ָבן_, _olub_, _जुला,\n  { {0x291d0be3, 0x9f5c0359, 0x6833038c, 0x00000000}},  //   kuwa_, _því_, lıdı,\n  { {0xafe600ed, 0x291d00e7, 0xe3b8014a, 0x00000000}},  // [2da0] _попл, juwa_, ngın_,\n  { {0x2a66152f, 0x224900b5, 0xb21b0030, 0x00000000}},  //   wjob_, _zaak_, nhæn,\n  { {0x2a660066, 0x2a7f0cfe, 0xddcd0091, 0x00000000}},  //   tjob_, _blub_, rkaš,\n  { {0x09e603e0, 0x7d160fb6, 0xb9060783, 0x00000000}},  //   ходн, prys, ездк,\n  { {0x2a6616e9, 0x3ea00052, 0x1c1e0061, 0x00000000}},  //   rjob_, mnit_, _पाऊल_,\n  { {0x3b0a0c96, 0x6d4601d9, 0x3ea016ea, 0x00000000}},  //   _него_, _iska, lnit_,\n  { {0x3ea00065, 0x7c3e16eb, 0x2a6616ec, 0x00000000}},  //   onit_, mepr, pjob_,\n  { {0x3ea009f0, 0x9405006b, 0xa5340088, 0x00000000}},  //   nnit_, milə_, внич,\n  { {0x224916ed, 0x3ea01449, 0xb21b0030, 0x00000000}},  //   _raak_, init_, fhæn,\n  { {0xf548001d, 0x224916ee, 0x26c6016b, 0x00000000}},  //   _vụ_, _saak_, _whoo_,\n  { {0x7ae910ec, 0xd7640014, 0x00000000, 0x00000000}},  //   _četk, _جنای,   ,\n  { {0x6d46006c, 0x09d40055, 0xf5480011, 0x00000000}},  //   _oska, _হ্যা, _tụ_,\n  { {0x224902ae, 0x638600f4, 0x7c3e00ea, 0x00000000}},  //   _vaak_, _béné, kepr,\n  { {0x7c3e05d5, 0x224901d6, 0x660216ef, 0x00000000}},  //   jepr, _waak_, _heok,\n  { {0x443e048a, 0x6d4616f0, 0x224900c7, 0x00000000}},  //   met_, _aska, _taak_,\n  { {0x443e04d3, 0x626706b4, 0x644a1402, 0x00000000}},  //   let_, _سابق, _hafi,\n  { {0x7c3e0019, 0x61ed16f1, 0xdb0e0161, 0x00000000}},  // [2db0] fepr, _ifal, _rybá,\n  { {0x6386028c, 0x64840009, 0x7c3e01a2, 0x00000000}},  //   _géné, _dòig, gepr,\n  { {0x6d46022b, 0x644a16f2, 0x7f450065, 0x00000000}},  //   _eska, _mafi, _ushq,\n  { {0x443e16f3, 0x81ac0055, 0xd9990054, 0x00000000}},  //   het_, কেও_, ونات_,\n  { {0x443e0047, 0xd94500d7, 0x61ed0020, 0x00000000}},  //   ket_, тели, _mfal,\n  { {0x443e16f4, 0x7c3e049a, 0xa3c2024c, 0x00000000}},  //   jet_, cepr, ्धा_,\n  { {0x443e0374, 0x9424006b, 0x61ed0016, 0x00000000}},  //   det_, _ötən_, _ofal,\n  { {0x81ac0044, 0x443e00b0, 0x2f5c0049, 0x00000000}},  //   কেট_, eet_, לדונ,\n  { {0x443e00f4, 0x644a0061, 0x660200e0, 0x00000000}},  //   fet_, _bafi, _deok,\n  { {0x443e05ec, 0x3ea0013e, 0xf990023c, 0x00000000}},  //   get_, znit_, _طبق_,\n  { {0x70270044, 0x6833005d, 0x644a16f5, 0x00000000}},  //   য়াজ_, rıdı, _dafi,\n  { {0x7c3e0036, 0x6833005d, 0x638600f4, 0x00000000}},  //   zepr, sıdı, _séné,\n  { {0x443e0018, 0x6386009d, 0x7c3e0023, 0x00000000}},  //   bet_, _péné, yepr,\n  { {0x61ed018e, 0x764b0047, 0x644a01a3, 0x00000000}},  //   _efal, _hagy, _gafi,\n  { {0x44270009, 0x7c3e0023, 0x6386009d, 0x00000000}},  //   _icn_, vepr, _véné,\n  { {0x644a0471, 0x9405006b, 0x7c3e05d2, 0x00000000}},  //   _zafi, vilə_, wepr,\n  { {0x764b0047, 0x3ea016f6, 0x7c3e0207, 0x00000000}},  // [2dc0] _magy, rnit_, tepr,\n  { {0x3ea00030, 0x711b0049, 0x9405006b, 0x00000000}},  //   snit_, _קויפ, tilə_,\n  { {0x290d000d, 0x7c3e002d, 0x6d460036, 0x00000000}},  //   _avea_, repr, _wska,\n  { {0x443e16f7, 0x764b0047, 0x7c3e16f8, 0x00000000}},  //   zet_, _nagy, sepr,\n  { {0x443e011f, 0x9405006b, 0x6d4600b0, 0x00000000}},  //   yet_, silə_, _uska,\n  { {0x68ed00c4, 0x443e0239, 0x44270045, 0x00000000}},  //   íada, xet_, _ncn_,\n  { {0x443e004e, 0x644a06fe, 0x37d50044, 0x00000000}},  //   vet_, _rafi, _স্বর,\n  { {0x6e24011c, 0x443e0046, 0x44270129, 0x00000000}},  //   ngib, wet_, _acn_,\n  { {0x7ae90166, 0x48e601fb, 0x442716f9, 0x00000000}},  //   _četi, _розв, _bcn_,\n  { {0x443e0030, 0x5453007c, 0x644a071f, 0x00000000}},  //   uet_, авьт, _qafi,\n  { {0x443e05ec, 0x8c1b0476, 0x261b001c, 0x00000000}},  //   ret_, וויי, _याची_,\n  { {0x443e0f3c, 0x92580057, 0x644a0020, 0x00000000}},  //   set_, вают_, _wafi,\n  { {0x443e0292, 0x44270190, 0x644a16fa, 0x00000000}},  //   pet_, _fcn_, _tafi,\n  { {0x84380054, 0x443e16fb, 0x7414026c, 0x00000000}},  //   _أكثر_, qet_, _صوبا,\n  { {0x6aa20f45, 0x61ed0066, 0x00000000, 0x00000000}},  //   knof, _tfal,   ,\n  { {0x6e240197, 0x61ed16fc, 0x3e750039, 0x00000000}},  //   ggib, _ufal, _nått_,\n  { {0x51870245, 0xa3c20164, 0x70590131, 0x00000000}},  // [2dd0] _шука, ्धव_, _запр_,\n  { {0x04140055, 0x673a1220, 0x1acb0309, 0x00000000}},  //   ত্রী_, _optj, िष्ठ,\n  { {0xc61a0044, 0x764000b0, 0xdfd1023c, 0x00000000}},  //   থ্যা_, kemy, _ديد_,\n  { {0xb21b0030, 0x6aa201d6, 0xdea1025a, 0x00000000}},  //   skæf, gnof, _ایری,\n  { {0x76400271, 0x0d64005e, 0x66ea0036, 0x00000000}},  //   demy, _кърм, _ręka,\n  { {0x66d50006, 0xfaf3083e, 0x6aa201c3, 0x00000000}},  //   _iški, _نثر_, anof,\n  { {0x3e75067e, 0x4427008e, 0x764b16fd, 0x00000000}},  //   _fått_, _rcn_, _pagy,\n  { {0x3e75093b, 0x7bc70bf1, 0x25a00b4a, 0x00000000}},  //   _gått_, _izju, _žila_,\n  { {0x764b0047, 0xdd12005a, 0x95550025, 0x00000000}},  //   _vagy, _müşt, اخبا,\n  { {0x6e240c0a, 0x7c250fb8, 0x22920059, 0x00000000}},  //   zgib, nghr, mški_,\n  { {0xe29a0081, 0x7c250048, 0x6d440036, 0x00000000}},  //   еан_, ighr, zwia,\n  { {0xad9b029d, 0x955501f7, 0x7d0d16fe, 0x00000000}},  //   _reún, _مختا, ksas,\n  { {0xd5bb008b, 0x44270082, 0x9f5816ff, 0x00000000}},  //   _ўсе_, _tcn_, mbré_,\n  { {0x62860065, 0x20cf01f3, 0x7d0d0190, 0x00000000}},  //   shko, _bżiq_, dsas,\n  { {0x644102ae, 0xe29a0200, 0x44e90082, 0x00000000}},  //   meli, _пак_, _hú_,\n  { {0x6441014a, 0xdd920257, 0xb226017a, 0x00000000}},  //   leli, موز_, _смил,\n  { {0x6e240240, 0x7d0d006a, 0x44e9000c, 0x00000000}},  // [2de0] rgib, gsas, _jú_,\n  { {0x644105fb, 0x44251700, 0x76400036, 0x00000000}},  //   neli, ngl_, zemy,\n  { {0x44e90051, 0x61e91701, 0x6441001a, 0x00000000}},  //   _lú_, žele, ieli,\n  { {0xa3ab062e, 0x644108b2, 0xaaba00a6, 0x00000000}},  //   _कुछ_, heli, ردار_,\n  { {0x44e9009f, 0x64411702, 0x6aa20bc7, 0x00000000}},  //   _nú_, keli, rnof,\n  { {0x6441096f, 0x7ae90ce4, 0x200a006a, 0x00000000}},  //   jeli, _četv, nabi_,\n  { {0xd6da00d7, 0x26dd0263, 0x62841703, 0x00000000}},  //   нти_, _biwo_, _olio,\n  { {0x44e90011, 0x60de01c5, 0x66c50010, 0x00000000}},  //   _bú_, _lipm, tóka,\n  { {0x764004b3, 0x64411704, 0x49ca012b, 0x00000000}},  //   remy, feli, _члан_,\n  { {0x644102ae, 0x27f701c8, 0x6284000b, 0x00000000}},  //   geli, čení_, _alio,\n  { {0xd7ef0054, 0x44e90027, 0x628404a5, 0x00000000}},  //   _ركن_, _eú_, _blio,\n  { {0x75200020, 0x62841705, 0xf12700c2, 0x00000000}},  //   pumz, _clio, льго,\n  { {0x5184013b, 0xd37800b4, 0x00000000, 0x00000000}},  //   бура, syć_,   ,\n  { {0x6441014a, 0x224d018b, 0x6284006c, 0x00000000}},  //   celi, žek_, _elio,\n  { {0x447b007b, 0x1ee7007a, 0xdfd50783, 0x00000000}},  //   _אנגע, اوری_, ровы,\n  { {0x7d0d0943, 0x62841706, 0xf3130688, 0x00000000}},  //   tsas, _glio, _ابوظ,\n  { {0xe2140380, 0xddc60006, 0x320b0133, 0x00000000}},  // [2df0] _طبيع, _pokš, macy_,\n  { {0x7d0d1707, 0x320b0036, 0x7af70045, 0x00000000}},  //   rsas, lacy_, tpxt,\n  { {0x7d0d00b0, 0x6284021e, 0x9f51004a, 0x00000000}},  //   ssas, _ylio, razó_,\n  { {0x7c250051, 0xdb1c0065, 0x639b0049, 0x00000000}},  //   sghr, _zyrë, עסאנ,\n  { {0x44250016, 0x6441014a, 0x7ae900ca, 0x00000000}},  //   ygl_, yeli, _četu,\n  { {0x7e6d006c, 0x26dd01aa, 0xfc67005e, 0x00000000}},  //   ljap, _siwo_, _съмн,\n  { {0x44e91708, 0xb5fd0059, 0x26dd1709, 0x00000000}},  //   _sú_, ljši, _piwo_,\n  { {0x6441046a, 0x7f3c007b, 0xb8eb0044, 0x00000000}},  //   weli, געהו, _রং_,\n  { {0x64410027, 0xc4850098, 0x26c30089, 0x00000000}},  //   teli, илик, ējo_,\n  { {0x99840054, 0x7ae7008d, 0x62840051, 0x00000000}},  //   _الكو, _kujt, _slio,\n  { {0x6266170a, 0x61ef0061, 0x200a00ca, 0x00000000}},  //   авна, fccl, vabi_,\n  { {0x44e90195, 0xe29a008b, 0xc5d501fb, 0x00000000}},  //   _tú_, там_, _кіль,\n  { {0x644100b0, 0x2731001d, 0x200a011c, 0x00000000}},  //   peli, _hơn_, tabi_,\n  { {0xe3b00014, 0x00000000, 0x00000000, 0x00000000}},  //   _کره_,   ,   ,\n  { {0xb4c30201, 0xb4c10164, 0x200a0087, 0x00000000}},  //   ्षी_, ंती_, rabi_,\n  { {0x6284000b, 0x200a006a, 0x320b0133, 0x00000000}},  //   _ulio, sabi_, cacy_,\n  { {0xb2bb00b6, 0x614600ed, 0x61e403d8, 0x00000000}},  // [2e00] _במקר, _тепа, _igil,\n  { {0x6723033b, 0xc5d70044, 0xf8a50167, 0x00000000}},  //   kunj, _সভাপ, _رک_,\n  { {0x0b4607e1, 0xa3c90061, 0x67230093, 0x00000000}},  //   рнен, लेच_, junj,\n  { {0x5336007b, 0xb4c102f4, 0x7e6d0023, 0x00000000}},  //   ינען_, ंतु_, cjap,\n  { {0x656f010f, 0xe6da000c, 0x00000000, 0x00000000}},  //   ächl, ðsíð,   ,\n  { {0x57f303f3, 0xfb260014, 0x00000000, 0x00000000}},  //   општ, _پرسپ,   ,\n  { {0x27310011, 0xa7b80a78, 0x61e400f8, 0x00000000}},  //   _cơn_, ылку_, _ogil,\n  { {0x66c5009f, 0x61e4170b, 0xfaa60245, 0x00000000}},  //   sókn, _ngil, _табо,\n  { {0x320b1537, 0x54b8005e, 0x2292016c, 0x00000000}},  //   vacy_, лгия_, nšku_,\n  { {0x2bbf0061, 0x6723170c, 0x7ae00048, 0x00000000}},  //   _्रमा, bunj, _himt,\n  { {0x947306ea, 0x69c00ced, 0x6723016c, 0x00000000}},  //   تديا, _hyme, cunj,\n  { {0x7ae00066, 0x9f61009d, 0x69c00052, 0x00000000}},  //   _jimt, _épée_, _kyme,\n  { {0xe298008b, 0x320b077a, 0xe69304e8, 0x00000000}},  //   раў_, racy_, _بلند,\n  { {0x61e4170d, 0x653b00a3, 0x69c001a3, 0x00000000}},  //   _egil, _סעוד, _myme,\n  { {0x9e07003b, 0xcebb012b, 0xa3b70167, 0x00000000}},  //   ичал, вља_, _پاور_,\n  { {0x70270044, 0x33db009b, 0x7ae0170e, 0x00000000}},  //   য়েও_, _בחוד, _nimt,\n  { {0x629d001a, 0xe1ff0f11, 0x7e6d01b1, 0x00000000}},  // [2e10] miso, mbó_, rjap,\n  { {0x629d00b0, 0xfd4d001d, 0x91bc009b, 0x00000000}},  //   liso, _khoả, _במחי,\n  { {0x69c00f57, 0x7ae00022, 0x00000000, 0x00000000}},  //   _ayme, _bimt,   ,\n  { {0x67230020, 0x629d0161, 0x69c00007, 0x00000000}},  //   vunj, niso, _byme,\n  { {0x2731001d, 0x69c0018e, 0xc87900e5, 0x00000000}},  //   _sơn_, _cyme, _huşi_,\n  { {0x6c850054, 0x67230169, 0x00000000, 0x00000000}},  //   _السم, tunj,   ,\n  { {0x629d0883, 0x3e7c00b9, 0x00000000, 0x00000000}},  //   kiso, _síti_,   ,\n  { {0x9aa5007a, 0x7ae00006, 0x629d170f, 0x00000000}},  //   _امرو, _gimt, jiso,\n  { {0xddc60046, 0x69c00016, 0x629d071e, 0x00000000}},  //   _zakł, _gyme, diso,\n  { {0xd8740054, 0xb4c3001c, 0x67230091, 0x00000000}},  //   _والب, ्षे_, punj,\n  { {0xdb1c00f4, 0x91e60581, 0xe3b10025, 0x00000000}},  //   _pyré, йоне, ثرة_,\n  { {0x68e113e4, 0xeb3a0049, 0x629d09a3, 0x00000000}},  //   _hild, נערש, giso,\n  { {0x68e101e3, 0x940c006b, 0x00000000, 0x00000000}},  //   _kild, hidə_,   ,\n  { {0x037900e9, 0x940c006b, 0x629d0068, 0x00000000}},  //   _محبت_, kidə_, aiso,\n  { {0xe3b30070, 0x00000000, 0x00000000, 0x00000000}},  //   _برش_,   ,   ,\n  { {0x629d00c4, 0x681b0089, 0x394d0068, 0x00000000}},  //   ciso, lādē, _oses_,\n  { {0x7ae00006, 0x00000000, 0x00000000, 0x00000000}},  // [2e20] _rimt,   ,   ,\n  { {0x7ae91710, 0x7ae01711, 0xcb6a003b, 0x00000000}},  //   _četr, _simt, лазе_,\n  { {0x394d004a, 0x69c01712, 0x80b60061, 0x00000000}},  //   _ases_, _syme, ृतीं,\n  { {0x7f3b0049, 0x69c0008e, 0x68e10016, 0x00000000}},  //   _געטו, _pyme, _aild,\n  { {0x39130088, 0xb5fd00ca, 0x44fb0325, 0x00000000}},  //   змір, njšu, _nª_,\n  { {0xbcfb000c, 0x96f8007e, 0x68e11713, 0x00000000}},  //   _bréf, аект_, _cild,\n  { {0xd6d00647, 0x68e1049d, 0xbb860025, 0x00000000}},  //   وقت_, _dild, _الأي,\n  { {0x44f40175, 0x629d1714, 0xdd080027, 0x00000000}},  //   опис, xiso, _môže,\n  { {0xc9aa008b, 0x68e100f8, 0x68e900c4, 0x00000000}},  //   _свае_, _fild, _gued,\n  { {0x68e1009f, 0x0466012b, 0x629d005b, 0x00000000}},  //   _gild, стим, wiso,\n  { {0x629d00b0, 0x291903b1, 0x00000000, 0x00000000}},  //   tiso, _åsar_,   ,\n  { {0x68e100c4, 0x00000000, 0x00000000, 0x00000000}},  //   _zild,   ,   ,\n  { {0x787d0263, 0x629d0835, 0xe1ff1715, 0x00000000}},  //   _sèvi, riso, rbó_,\n  { {0x629d0a5b, 0xfd4d0011, 0x7d1f0045, 0x00000000}},  //   siso, _thoả, vrqs,\n  { {0x629d0b41, 0x66d50006, 0xe437009b, 0x00000000}},  //   piso, _iškr, _הרוח_,\n  { {0x442e0203, 0x7c2e00fa, 0x6e94019d, 0x00000000}},  //   _hcf_, _acbr, пису,\n  { {0xe29f009f, 0x5c750745, 0xcc99003b, 0x00000000}},  // [2e30] mið_, олат, авац_,\n  { {0xe29f009f, 0x68e91716, 0x00000000, 0x00000000}},  //   lið_, _rued,   ,\n  { {0x68e91717, 0xda7b0245, 0xa036009b, 0x00000000}},  //   _sued, ляд_, _ואתה_,\n  { {0x68e91718, 0x66f1001e, 0xe29f009f, 0x00000000}},  //   _pued, _nāka, nið_,\n  { {0x68e91719, 0x68e10004, 0xa969012b, 0x00000000}},  //   _qued, _pild, рила_,\n  { {0x46f50072, 0xbcfb028c, 0x26c40197, 0x00000000}},  //   очит, _préf, elmo_,\n  { {0xe29f009f, 0x68e103b4, 0x3ea905f7, 0x00000000}},  //   kið_, _vild, onat_,\n  { {0x3ea9171a, 0x68e10f12, 0x68e90016, 0x00000000}},  //   nnat_, _wild, _tued,\n  { {0x68e101e3, 0xe29f000c, 0x394d00ab, 0x00000000}},  //   _tild, dið_, _uses_,\n  { {0x442e02d0, 0x3ea9171b, 0x68e10026, 0x00000000}},  //   _ccf_, hnat_, _uild,\n  { {0xe29f009f, 0x37ab0088, 0x442e171c, 0x00000000}},  //   fið_, _стан_, _dcf_,\n  { {0x6d4f002a, 0xe29f009f, 0x6d5d0039, 0x00000000}},  //   _osca, gið_, _orsa,\n  { {0x3ea900b9, 0xa509007c, 0x442e0009, 0x00000000}},  //   dnat_, _тела_, _fcf_,\n  { {0x394002b9, 0x6e3d171d, 0x00000000, 0x00000000}},  //   çisi_, _absb,   ,\n  { {0x6d5d101d, 0x6d4f171e, 0xe3d70044, 0x00000000}},  //   _arsa, _asca, _দ্রব,\n  { {0x3ea900f6, 0xd5f90049, 0x6d5d0145, 0x00000000}},  //   gnat_, שפּר, _brsa,\n  { {0x660b0047, 0x3ce300b5, 0x648d0051, 0x00000000}},  // [2e40] _megk, _bijv_, _cúig,\n  { {0x852103d7, 0x660b171f, 0xa7fc01df, 0x00000000}},  //   _मिनट_, _legk, _anın,\n  { {0x6d5d1720, 0x3ea91721, 0xbddb0173, 0x00000000}},  //   _ersa, bnat_, _abèd,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xbcfb1722, 0x82d70049, 0x00000000, 0x00000000}},  //   _créd, קונג_,   ,\n  { {0x3ea01723, 0xb4b3013d, 0x66f10089, 0x00000000}},  //   liit_, झको_, _sāka,\n  { {0x443c00d9, 0x2a640022, 0x442e1724, 0x00000000}},  //   _rbv_, _tnmb_, _rcf_,\n  { {0x7bce1140, 0xbcfb00f4, 0x9f58008e, 0x00000000}},  //   _izbu, _fréd, laró_,\n  { {0x442e0f36, 0x94aa00ed, 0x2d801725, 0x00000000}},  //   _pcf_, итоа_, nyie_,\n  { {0x3ea90e25, 0x3ead10f7, 0x7a40000c, 0x00000000}},  //   znat_, četi_, _fátæ,\n  { {0xe29f009f, 0x249e0035, 0x442e01a2, 0x00000000}},  //   tið_, ritm_, _vcf_,\n  { {0x442e0066, 0x81af0044, 0x00000000, 0x00000000}},  //   _wcf_, _করব_,   ,\n  { {0xe29f0359, 0x3ea90802, 0x443c00d9, 0x00000000}},  //   rið_, vnat_, _tbv_,\n  { {0xe29f009f, 0xf8ca013d, 0x443c00d6, 0x00000000}},  //   sið_, ितिय, _ubv_,\n  { {0xc05801fb, 0x4fc40099, 0x3f850161, 0x00000000}},  //   ція_, дста, álu_,\n  { {0x64481726, 0xe2980080, 0x82f700a6, 0x00000000}},  //   ledi, _мај_, _بروز_,\n  { {0x3ea90a16, 0x442c00bb, 0x2d58007c, 0x00000000}},  // [2e50] rnat_, ogd_, оить_,\n  { {0x6448018e, 0x442c03ed, 0x4d9807d0, 0x00000000}},  //   nedi, ngd_, цкую_,\n  { {0x20111727, 0x442c00b5, 0x3ea91728, 0x00000000}},  //   mazi_, igd_, pnat_,\n  { {0x20110119, 0xbcfb1729, 0x6448172a, 0x00000000}},  //   lazi_, _préd, hedi,\n  { {0x6d4f172b, 0x64480792, 0x6d5d010f, 0x00000000}},  //   _usca, kedi, _ursa,\n  { {0x64480363, 0xbcfb028c, 0x1fdf0044, 0x00000000}},  //   jedi, _crée, _ব্যস,\n  { {0x64480016, 0x6d4d0112, 0xf7730445, 0x00000000}},  //   dedi, lwaa, باش_,\n  { {0x6e2d0f4f, 0x201100e7, 0xbcfb0051, 0x00000000}},  //   ngab, hazi_, _tréd,\n  { {0x2011000b, 0x64480adc, 0x6d4d172c, 0x00000000}},  //   kazi_, fedi, nwaa,\n  { {0x660b172d, 0x442c0039, 0xa3cf0309, 0x00000000}},  //   _wegk, ggd_, _शरद_,\n  { {0xe7f0013d, 0x395f0022, 0x779000a2, 0x00000000}},  //   _चलता_, _hrus_, _لیوا,\n  { {0x442c00b5, 0x6d4d01a3, 0x395f172e, 0x00000000}},  //   agd_, kwaa, _krus_,\n  { {0x6448172f, 0x6e2d0b5a, 0x6f150036, 0x00000000}},  //   bedi, dgab, eszc,\n  { {0x644806c2, 0xb4fa009b, 0x6e2d0197, 0x00000000}},  //   cedi, _הפסי, egab,\n  { {0x6e2d010f, 0x66f10089, 0x75290035, 0x00000000}},  //   fgab, _māko, luez,\n  { {0x68fb0107, 0x628f0082, 0x88d10044, 0x00000000}},  //   _otud, chco, াদিক,\n  { {0x2011002d, 0x9f580129, 0x4c8601fc, 0x00000000}},  // [2e60] bazi_, taró_, плав,\n  { {0x313700b6, 0x66f10089, 0x3ea011f6, 0x00000000}},  //   _צריך_, _nāko, siit_,\n  { {0x307b00b6, 0x395f0169, 0x6e2d01a2, 0x00000000}},  //   _האינ, _arus_, bgab,\n  { {0x316004cd, 0x62860056, 0x64480232, 0x00000000}},  //   _kriz_, nkko, zedi,\n  { {0x442c1730, 0x9f58008e, 0xb9e30088, 0x00000000}},  //   ygd_, paró_, ніши,\n  { {0x7d1600ea, 0x644800d9, 0x648d0048, 0x00000000}},  //   msys, xedi, _lúib,\n  { {0x68fb00f4, 0xa7370025, 0x64480738, 0x00000000}},  //   _etud, كثير_, vedi,\n  { {0xd90d089d, 0x2011000b, 0x64480016, 0x00000000}},  //   _چین_, zazi_, wedi,\n  { {0x6448011f, 0x7d16010f, 0x75290032, 0x00000000}},  //   tedi, nsys, guez,\n  { {0x6aa20020, 0x6f150036, 0xc9170097, 0x00000000}},  //   liof, yszc, _מחמת_,\n  { {0x442c00b5, 0x20110020, 0x6d4d00b5, 0x00000000}},  //   rgd_, vazi_, zwaa,\n  { {0x20111731, 0xa25b00f4, 0x31601732, 0x00000000}},  //   wazi_, plôm, _briz_,\n  { {0x2011001a, 0xd6270088, 0x00000000, 0x00000000}},  //   tazi_, _хоче_,   ,\n  { {0xe4d70014, 0xe3af0123, 0x44f2005b, 0x00000000}},  //   _فونت_, ئری_, _iâ_,\n  { {0x2011022b, 0x643b009b, 0x543b0049, 0x00000000}},  //   razi_, _העונ, _לעגא,\n  { {0x6d4d0112, 0x8c090044, 0x31601733, 0x00000000}},  //   twaa, _লাইন_, _friz_,\n  { {0x6e2d1073, 0x7d160270, 0x6d4d00e0, 0x00000000}},  // [2e70] rgab, gsys, uwaa,\n  { {0x6d4d015c, 0x6e2d125c, 0x787d009d, 0x00000000}},  //   rwaa, sgab, _lèvr,\n  { {0x81af0055, 0x6d4d0b36, 0x29000035, 0x00000000}},  //   _করি_, swaa, ţial_,\n  { {0x7aee0129, 0xfbd00025, 0x66f10089, 0x00000000}},  //   _dubt, اتك_, _sāko,\n  { {0x81df0044, 0x5c07094b, 0x44f20544, 0x00000000}},  //   দুর_, _нява, _nâ_,\n  { {0x81af08b7, 0x224b01a2, 0xccf2009b, 0x00000000}},  //   _করা_, heck_, _בכך_,\n  { {0xe7391734, 0x00000000, 0x00000000, 0x00000000}},  //   цей_,   ,   ,\n  { {0x395f0169, 0x61e911cc, 0xbcfb0142, 0x00000000}},  //   _trus_, želj, _gréc,\n  { {0xb34502d5, 0x09db0044, 0x7d29006b, 0x00000000}},  //   _opçã, _ড্রা, əssü,\n  { {0xdeff01d5, 0xb21b0190, 0x628d0052, 0x00000000}},  //   ċċju_, skæl, _alao,\n  { {0xdc380049, 0x78a300ca, 0x00000000, 0x00000000}},  //   לאזט_, minv,   ,\n  { {0x628d0051, 0x316006af, 0x78a30052, 0x00000000}},  //   _clao, _priz_, linv,\n  { {0x6286021e, 0x7529029d, 0x7d160203, 0x00000000}},  //   rkko, quez, xsys,\n  { {0x62860004, 0x92ae0055, 0x78a30052, 0x00000000}},  //   skko, কতে_, ninv,\n  { {0x1fb50256, 0x81df0044, 0x224b01a2, 0x00000000}},  //   естр, দুল_, beck_,\n  { {0xee3a008b, 0x212b010f, 0x628d0051, 0x00000000}},  //   ўна_, buch_, _glao,\n  { {0x7afc1735, 0xec7a00c0, 0x78a30190, 0x00000000}},  // [2e80] _strt, опа_, kinv,\n  { {0x79820020, 0x00000000, 0x00000000, 0x00000000}},  //   vyow,   ,   ,\n  { {0xbcfb028c, 0x00000000, 0x00000000, 0x00000000}},  //   _préc,   ,   ,\n  { {0x8b650025, 0x49ca1736, 0x1e831737, 0x00000000}},  //   عالم, олен_, _алюм,\n  { {0xd910007a, 0x6aa20197, 0x7bc7000c, 0x00000000}},  //   ایط_, riof, _eyju,\n  { {0x787d009d, 0x6aa21738, 0x78a3141a, 0x00000000}},  //   _sèvr, siof, ginv,\n  { {0x44f20035, 0x00000000, 0x00000000, 0x00000000}},  //   _sâ_,   ,   ,\n  { {0xdb0e0036, 0x7c3e0253, 0xdced0095, 0x00000000}},  //   _wybó, lfpr, nyağ,\n  { {0xfaa3003b, 0xfbb00044, 0x00000000, 0x00000000}},  //   _рато, _করিত,   ,\n  { {0x337400c0, 0xb8661739, 0x00000000, 0x00000000}},  //   егор, _تارو,   ,\n  { {0xe8ca0061, 0xd2510076, 0x224b01a2, 0x00000000}},  //   ितीच, هند_, teck_,\n  { {0x68e80339, 0x6d460190, 0x3267173a, 0x00000000}},  //   _hidd, _opka, фтов,\n  { {0x68e8173b, 0x656f010f, 0xbcfb009d, 0x00000000}},  //   _kidd, ächt, _oréa,\n  { {0x5577007b, 0x212b010f, 0x68e802c0, 0x00000000}},  //   _קעגן_, ruch_, _jidd,\n  { {0x68e80141, 0x212b010f, 0x6d4608ad, 0x00000000}},  //   _midd, such_, _apka,\n  { {0x645803db, 0x443e173c, 0x645a0190, 0x00000000}},  //   _havi, lft_, ldti,\n  { {0x6458173d, 0x7bca010f, 0xbcfb0051, 0x00000000}},  // [2e90] _kavi, üfun, _bréa,\n  { {0xbcfb028c, 0x443e001f, 0x68e8002b, 0x00000000}},  //   _créa, nft_, _nidd,\n  { {0x64580334, 0x443e173e, 0xbcfb0051, 0x00000000}},  //   _mavi, ift_, _dréa,\n  { {0x64580263, 0x41d301f5, 0x68e8006b, 0x00000000}},  //   _lavi, _सरास, _aidd,\n  { {0xdb1c01ca, 0x78a31603, 0xbcfb0048, 0x00000000}},  //   _vyrá, tinv, _fréa,\n  { {0xbcfb002a, 0x68e8038c, 0x443e02ae, 0x00000000}},  //   _gréa, _cidd, jft_,\n  { {0x68e8018e, 0x78a30f80, 0xf09400b3, 0x00000000}},  //   _didd, rinv, כנס_,\n  { {0x443e173f, 0x61ed1740, 0x68e8018e, 0x00000000}},  //   eft_, _ngal, _eidd,\n  { {0x443e1741, 0x64580091, 0x7e7d0065, 0x00000000}},  //   fft_, _bavi, _mosp,\n  { {0x64581352, 0x68e81742, 0xe1fa02d2, 0x00000000}},  //   _cavi, _gidd, ूर्ण_,\n  { {0x64581743, 0x53c90088, 0x7ae90006, 0x00000000}},  //   _davi, ягом_, _kiet,\n  { {0xb607008b, 0x7e7d0089, 0x68e8006b, 0x00000000}},  //   _цяжк, _nosp, _zidd,\n  { {0x7ae91744, 0x64580061, 0x656205e8, 0x00000000}},  //   _miet, _favi, _groh,\n  { {0x7ae91745, 0x6458007f, 0x61ed00e5, 0x00000000}},  //   _liet, _gavi, _egal,\n  { {0x7e7d01d6, 0xb4cb00e8, 0xf8b2009b, 0x00000000}},  //   _bosp, लती_, אשם_,\n  { {0x7ae902ae, 0x64580b54, 0x7e7d1746, 0x00000000}},  //   _niet, _zavi, _cosp,\n  { {0x7e7d0161, 0xbcfb0aea, 0x753b0266, 0x00000000}},  // [2ea0] _dosp, _préa, ntuz,\n  { {0x64580129, 0xe0d2002c, 0x32120199, 0x00000000}},  //   _xavi, _حزب_, _heyy_,\n  { {0x7ae903a8, 0xa09b0049, 0xcb090088, 0x00000000}},  //   _biet, _זייט, дхід_,\n  { {0x68e80030, 0xc332009b, 0x7ae90089, 0x00000000}},  //   _sidd, רוא_, _ciet,\n  { {0xe94700a1, 0x753b016c, 0x64430036, 0x00000000}},  //   ٹرنی, jtuz, _obni,\n  { {0x7ae901d6, 0x64430066, 0xe8ca0061, 0x00000000}},  //   _eiet, _nbni, ितेच,\n  { {0x64580368, 0x7ae90dbc, 0x7d040197, 0x00000000}},  //   _ravi, _fiet, lpis,\n  { {0x64580a5c, 0xd6d703c8, 0x7d0400b0, 0x00000000}},  //   _savi, нты_, opis,\n  { {0x64580ba5, 0xe4a6004c, 0xa90a006d, 0x00000000}},  //   _pavi, ерно, _ريال_,\n  { {0xd91b00b6, 0x443e010f, 0x81af0044, 0x00000000}},  //   _מומל, uft_, _করল_,\n  { {0x443e000c, 0x645a00eb, 0x229501e0, 0x00000000}},  //   rft_, rdti, виня,\n  { {0x273a0065, 0xda10006e, 0x64580908, 0x00000000}},  //   mën_, ारित_, _wavi,\n  { {0x273a008d, 0xd251007a, 0x1a9b007b, 0x00000000}},  //   lën_, هنگ_, ליטע,\n  { {0x7e7d0207, 0x7d040b41, 0xe73100a1, 0x00000000}},  //   _sosp, dpis, _حصے_,\n  { {0xd904026c, 0x7e7d0627, 0x273a008d, 0x00000000}},  //   _گی_, _posp, nën_,\n  { {0x61ed0f2f, 0x00000000, 0x00000000, 0x00000000}},  //   _ugal,   ,   ,\n  { {0xd904089d, 0x273a008d, 0x7ae90dec, 0x00000000}},  // [2eb0] _دی_, hën_, _riet,\n  { {0x7ae90253, 0x273a008d, 0x387e00ca, 0x00000000}},  //   _siet, kën_, _notr_,\n  { {0x7ae9001e, 0x273a0065, 0xb09c01ce, 0x00000000}},  //   _piet, jën_, _מיזר,\n  { {0xed51026c, 0x273a0065, 0x7e7d012d, 0x00000000}},  //   _پھر_, dën_, _uosp,\n  { {0x7ae90ba5, 0xe8f80245, 0x273a00b5, 0x00000000}},  //   _viet, елі_, eën_,\n  { {0x07a506e1, 0x2ca5000c, 0x5c140123, 0x00000000}},  //   калн, _öld_, _مظفر,\n  { {0x7ae91747, 0x648d009f, 0x273a0065, 0x00000000}},  //   _tiet, _búin, gën_,\n  { {0xdddd001e, 0xd90c025a, 0xf1bf1748, 0x00000000}},  //   _nosū, _کیو_, ngás_,\n  { {0x648d002a, 0x765b0996, 0x387e00ca, 0x00000000}},  //   _dúin, rduy, _fotr_,\n  { {0xb4cb006e, 0x273a0023, 0x765901c3, 0x00000000}},  //   लते_, bën_, _wawy,\n  { {0x753b15bc, 0x7d040059, 0x273a0065, 0x00000000}},  //   stuz, zpis, cën_,\n  { {0x7d040cba, 0x00000000, 0x00000000, 0x00000000}},  //   ypis,   ,   ,\n  { {0xe29704af, 0x660901a3, 0x00000000, 0x00000000}},  //   тая_, mbek,   ,\n  { {0x9345026b, 0xbcfb00f4, 0xa28400a1, 0x00000000}},  //   _анке, _prén, ئیکو,\n  { {0xc059008b, 0x00000000, 0x00000000, 0x00000000}},  //   хіў_,   ,   ,\n  { {0xe3e8007b, 0x7d040091, 0x644101a2, 0x00000000}},  //   _אַפֿ, tpis, lfli,\n  { {0x7bd50207, 0xdee300ed, 0x273a0065, 0x00000000}},  // [2ec0] _azzu, роти, zën_,\n  { {0x0cbe013d, 0x7d0404cb, 0x2a6d0802, 0x00000000}},  //   ्तेम, rpis, _aneb_,\n  { {0x20180129, 0x6609012b, 0x91f6013d, 0x00000000}},  //   mari_, kbek, _इलाज_,\n  { {0x201816df, 0x273a0065, 0x7d0403b6, 0x00000000}},  //   lari_, vën_, ppis,\n  { {0x2a7f01aa, 0xdb0e0039, 0x66090240, 0x00000000}},  //   _doub_, _nybö, dbek,\n  { {0x2018022b, 0x273a008d, 0xfc03004c, 0x00000000}},  //   nari_, tën_, _впро,\n  { {0xdca3004c, 0xd6da0184, 0xdb1c080a, 0x00000000}},  //   _тари, мти_, _byrå,\n  { {0x20180281, 0x273a008d, 0x6b8303a9, 0x00000000}},  //   hari_, rën_, änge,\n  { {0x20180ad4, 0x273a008d, 0xd946012b, 0x00000000}},  //   kari_, sën_, _јези,\n  { {0x20181749, 0x273a0065, 0x3eb200b0, 0x00000000}},  //   jari_, pën_, hnyt_,\n  { {0x201801a3, 0x75290197, 0x273a0065, 0x00000000}},  //   dari_, arez, qën_,\n  { {0x75290325, 0x26cd174a, 0x26c60020, 0x00000000}},  //   brez, cleo_, _ukoo_,\n  { {0x7529174b, 0x2018174c, 0x00000000, 0x00000000}},  //   crez, fari_,   ,\n  { {0x2b580061, 0x26c4174d, 0x4ec40055, 0x00000000}},  //   _osrc_, lomo_, ্দোল,\n  { {0xbcfb009d, 0x14b101f5, 0x78ad009d, 0x00000000}},  //   _préo, ीकरण, éavi,\n  { {0x26c4049a, 0xceb8003b, 0x5eb4174e, 0x00000000}},  //   nomo_, вљу_, айст,\n  { {0x20180be3, 0x00000000, 0x00000000, 0x00000000}},  // [2ed0] bari_,   ,   ,\n  { {0x660900d9, 0x00000000, 0x00000000, 0x00000000}},  //   zbek,   ,   ,\n  { {0x26c40416, 0x2b580022, 0x00000000, 0x00000000}},  //   komo_, _csrc_,   ,\n  { {0x3e04005e, 0x00000000, 0x00000000, 0x00000000}},  //   _вярв,   ,   ,\n  { {0x26c40036, 0xf9900379, 0x3ea900d4, 0x00000000}},  //   domo_, يبه_, miat_,\n  { {0x475901e0, 0x2b580009, 0x7c871364, 0x00000000}},  //   ерия_, _fsrc_, _руме,\n  { {0x46a5005e, 0x2bc80e75, 0x660901a2, 0x00000000}},  //   лакв, _ауто_, tbek,\n  { {0x201804f8, 0x75290eb5, 0xcc1400a1, 0x00000000}},  //   zari_, trez, _مذہب,\n  { {0xd41503c8, 0x2018174f, 0x66090513, 0x00000000}},  //   льны, yari_, rbek,\n  { {0x13090057, 0x7529022b, 0x3ea90035, 0x00000000}},  //   нной_, rrez, hiat_,\n  { {0x201801cd, 0x26cd0219, 0x6441037f, 0x00000000}},  //   vari_, pleo_, rfli,\n  { {0x2018107e, 0x26c40207, 0x644101d6, 0x00000000}},  //   wari_, como_, sfli,\n  { {0x3ea9001a, 0xe56e012b, 0x291d01aa, 0x00000000}},  //   diat_, _уз_, nswa_,\n  { {0x03190054, 0x291f0020, 0xbcfb009d, 0x00000000}},  //   _كتبت_, _mvua_, _crém,\n  { {0x20180982, 0x212b001c, 0x3eb20146, 0x00000000}},  //   rari_, arch_, tnyt_,\n  { {0x3ea901a3, 0xe3b0023c, 0x00000000, 0x00000000}},  //   giat_, _بره_,   ,\n  { {0xcbb00055, 0x20180010, 0x8d660eb1, 0x00000000}},  // [2ee0] _করেছ, pari_, ывае,\n  { {0x7af50032, 0x26c400e7, 0x00000000, 0x00000000}},  //   _buzt, zomo_,   ,\n  { {0x4b260175, 0x1bba0025, 0x26c40020, 0x00000000}},  //   умев, رائع_, yomo_,\n  { {0x3ea905f7, 0x648d0051, 0x00000000, 0x00000000}},  //   ciat_, _súil,   ,\n  { {0xa9670867, 0x229200b9, 0x00000000, 0x00000000}},  //   лица_, ušky_,   ,\n  { {0x62960023, 0x321900b4, 0xbddb000a, 0x00000000}},  //   ëzoj, zasy_, _obèj,\n  { {0x7af5022b, 0x26c41750, 0x29060032, 0x00000000}},  //   _guzt, tomo_, spoa_,\n  { {0x21200119, 0x7f3b007b, 0x212b0016, 0x00000000}},  //   _ovih_, געקו, yrch_,\n  { {0xa836025a, 0x1836031d, 0x7ae20052, 0x00000000}},  //   _معاش, _مراح, mmot,\n  { {0xb9930054, 0x26c40020, 0xb80a0025, 0x00000000}},  //   _الكب, somo_, _أيام_,\n  { {0x61ea006b, 0x04630930, 0x212b005b, 0x00000000}},  //   əllə, стым, wrch_,\n  { {0x7bce01d6, 0x9258007c, 0x6b8100f6, 0x00000000}},  //   _mybu, гают_, _àlge,\n  { {0x3ea90129, 0xe5a30098, 0xbddb000a, 0x00000000}},  //   viat_, _лици, _ebèj,\n  { {0x92b50055, 0x859b034e, 0xe3a40014, 0x00000000}},  //   ঝতে_, _אשדו, _پشتی,\n  { {0x7ae200f8, 0x3ea911eb, 0x15d700a1, 0x00000000}},  //   kmot, tiat_, _لگیں_,\n  { {0x5e5801fb, 0x64840045, 0x25a904eb, 0x00000000}},  //   лися_, _tòis, _žali_,\n  { {0xbcfb0923, 0x00000000, 0x00000000, 0x00000000}},  // [2ef0] _trém,   ,   ,\n  { {0xe1ff0d62, 0x3ea901a3, 0x7af50032, 0x00000000}},  //   lcó_, siat_, _puzt,\n  { {0x60c71751, 0x75eb0010, 0x3ea900e5, 0x00000000}},  //   mojm, _közü, piat_,\n  { {0x628f0e9c, 0x7ae2130e, 0xe1ff008e, 0x00000000}},  //   nkco, gmot, ncó_,\n  { {0x22490093, 0x00000000, 0x00000000, 0x00000000}},  //   _mbak_,   ,   ,\n  { {0x316900ca, 0x60c70065, 0xf77101af, 0x00000000}},  //   _mraz_, nojm, قاب_,\n  { {0x7ae200c4, 0xdd0e0095, 0x00000000, 0x00000000}},  //   bmot, _kışl,   ,\n  { {0x31690046, 0x06850216, 0xa525017f, 0x00000000}},  //   _oraz_, ргин, амид,\n  { {0x60c71752, 0xef190036, 0x04190044, 0x00000000}},  //   kojm, ąży_, _দাবী_,\n  { {0x66f1001e, 0xbcfb009d, 0x60c70023, 0x00000000}},  //   _sāku, _préj, jojm,\n  { {0xe29a102a, 0x21200119, 0x798b0016, 0x00000000}},  //   ван_, _svih_, lygw,\n  { {0x91e60256, 0x316900c4, 0x61fa013e, 0x00000000}},  //   ионе, _braz_, ětlo,\n  { {0x6f050051, 0x7d090023, 0x75eb013f, 0x00000000}},  //   _athc, _çesh, _dözü,\n  { {0x661b1082, 0x31690521, 0x60c70023, 0x00000000}},  //   lauk, _draz_, gojm,\n  { {0x44fb1753, 0x7ae21754, 0x23760063, 0x00000000}},  //   _hê_, ymot, _نمود_,\n  { {0x661b1755, 0x44fb001d, 0x628f0019, 0x00000000}},  //   nauk, _kê_, ckco,\n  { {0x316901a2, 0x6e361756, 0x00000000, 0x00000000}},  // [2f00] _graz_, rgyb,   ,\n  { {0x44fb0011, 0x6e36018e, 0x661b1757, 0x00000000}},  //   _mê_, sgyb, hauk,\n  { {0x44fb1758, 0x66f1001e, 0x394d01c5, 0x00000000}},  //   _lê_, _māks, _apes_,\n  { {0x661b1759, 0x4fbb0104, 0x6b830039, 0x00000000}},  //   jauk, _יציא, änga,\n  { {0x7ae204cb, 0x44fb160d, 0x661b002d, 0x00000000}},  //   rmot, _nê_, dauk,\n  { {0x9915008b, 0x62840032, 0x00000000, 0x00000000}},  //   сьці, _loio,   ,\n  { {0x78aa053d, 0x44fb00fa, 0x00000000, 0x00000000}},  //   rifv, _aê_,   ,\n  { {0x44fb0011, 0x35460088, 0x62840197, 0x00000000}},  //   _bê_, ахов, _noio,\n  { {0x66f10089, 0x44fb00fa, 0x245b007f, 0x00000000}},  //   _sākt, _cê_, kšmė_,\n  { {0x07a601fc, 0x44fb0701, 0x75eb0279, 0x00000000}},  //   _казн, _dê_, _sözü,\n  { {0x3169013e, 0x2bf700a0, 0x60c70023, 0x00000000}},  //   _sraz_, ימין_, vojm,\n  { {0x31690375, 0x661b0022, 0x44fb1612, 0x00000000}},  //   _praz_, cauk, _fê_,\n  { {0x60c70065, 0xe1ff02a0, 0x628f00d9, 0x00000000}},  //   tojm, rcó_, rkco,\n  { {0xe1ff175a, 0x00000000, 0x00000000, 0x00000000}},  //   scó_,   ,   ,\n  { {0xd4c50025, 0x443c0129, 0x62960606, 0x00000000}},  //   _اغني, _icv_, _flyo,\n  { {0x443c05e6, 0x31690181, 0x60c70065, 0x00000000}},  //   _hcv_, _traz_, sojm,\n  { {0x44fb0082, 0x60c709fc, 0x9df80140, 0x00000000}},  // [2f10] _xê_, pojm, рнут_,\n  { {0x705506c6, 0xcc74012b, 0x7d020048, 0x00000000}},  //   _اندا, огућ, íosa,\n  { {0x443c175b, 0x394d01e5, 0x6a170025, 0x00000000}},  //   _mcv_, _spes_, لبشر,\n  { {0x99d90025, 0x00000000, 0x00000000, 0x00000000}},  //   هواء_,   ,   ,\n  { {0x661b175c, 0x00000000, 0x00000000, 0x00000000}},  //   vauk,   ,   ,\n  { {0x88c801fb, 0x6d5d0bd5, 0xab87132a, 0x00000000}},  //   алів_, _issa, _кубк,\n  { {0xfbe508b7, 0x44fb1273, 0xbb850054, 0x00000000}},  //   _প্রত, _sê_, _الزي,\n  { {0x443c00d9, 0xcfb8009b, 0xbcfb1059, 0x00000000}},  //   _acv_, ילוי_, _préh,\n  { {0x661b0ba5, 0x056801f9, 0xa3e40316, 0x00000000}},  //   rauk, ајќи_, पेस_,\n  { {0x661b001e, 0x44fb175d, 0xbcfb0129, 0x00000000}},  //   sauk, _vê_, _créi,\n  { {0x661b00b0, 0xe6430279, 0xb4d70061, 0x00000000}},  //   pauk, şmış, _ाठी_,\n  { {0x44fb08c6, 0xc7b2009b, 0x644a0009, 0x00000000}},  //   _tê_, _צבא_, _ebfi,\n  { {0x75220107, 0xd6c6007a, 0xe3b100a2, 0x00000000}},  //   _gvoz, _امنی, ترک_,\n  { {0xbcfb0051, 0x4095005e, 0x443c05d2, 0x00000000}},  //   _gréi, орст, _gcv_,\n  { {0xdfd20379, 0x00000000, 0x00000000, 0x00000000}},  //   سير_,   ,   ,\n  { {0xb21b0030, 0x00000000, 0x00000000, 0x00000000}},  //   skær,   ,   ,\n  { {0x6b830a5d, 0x0c260088, 0xa2c5007d, 0x00000000}},  // [2f20] ängn, йман, रवर्,\n  { {0x6aa90020, 0x4427009d, 0x8db50088, 0x00000000}},  //   _amef, _jdn_, істі,\n  { {0x6d5d028c, 0x0b4601fb, 0xa3db0061, 0x00000000}},  //   _essa, снен, ढेच_,\n  { {0x66190ace, 0xc33200b3, 0x442700d2, 0x00000000}},  //   _newk, לוב_, _ldn_,\n  { {0xda65006d, 0x6abb0022, 0x823b0049, 0x00000000}},  //   تالي, _djuf, רענצ,\n  { {0xddcd0477, 0xc7b000a1, 0x764b00e5, 0x00000000}},  //   ldaş, وڑا_, _abgy,\n  { {0x6d44175e, 0x656b175f, 0x9f58008e, 0x00000000}},  //   ltia, _argh, mbró_,\n  { {0xddcd0279, 0x201a0925, 0x7e64006c, 0x00000000}},  //   ndaş, _lepi_, ndip,\n  { {0xbcfb124d, 0x44270145, 0x661d000c, 0x00000000}},  //   _préi, _bdn_, ðska,\n  { {0x44270061, 0x81ae0044, 0x6d441760, 0x00000000}},  //   _cdn_, কথা_, itia,\n  { {0x6d441761, 0xddcd0276, 0x00000000, 0x00000000}},  //   htia, kdaş,   ,\n  { {0x6d4409e4, 0x44270ca4, 0x00000000, 0x00000000}},  //   ktia, _edn_,   ,\n  { {0xe298008b, 0x752212ac, 0xbcfb002a, 0x00000000}},  //   саў_, _uvoz, _tréi,\n  { {0x443c004a, 0x00000000, 0x00000000, 0x00000000}},  //   _ucv_,   ,   ,\n  { {0x201a0263, 0xddcd006b, 0x6d5d00e0, 0x00000000}},  //   _depi_, fdaş, _sssa,\n  { {0x644801d6, 0x6d441762, 0x66190066, 0x00000000}},  //   lfdi, ftia, _xewk,\n  { {0x6d440058, 0x00000000, 0x00000000, 0x00000000}},  // [2f30] gtia,   ,   ,\n  { {0x44270061, 0x2caa00f6, 0x00000000, 0x00000000}},  //   _xdn_, _cmbd_,   ,\n  { {0xd9f9026b, 0x6d441763, 0x00000000, 0x00000000}},  //   анец_, atia,   ,\n  { {0x70550063, 0x629d0082, 0x00000000, 0x00000000}},  //   _انگا, nhso,   ,\n  { {0xa92401fb, 0x6d5d01c3, 0x6d4f0085, 0x00000000}},  //   зділ, _ussa, _upca,\n  { {0x20030046, 0x186900ed, 0xd7091764, 0x00000000}},  //   ncji_, раки_, анке_,\n  { {0x7d0d1765, 0x00000000, 0x00000000, 0x00000000}},  //   lpas,   ,   ,\n  { {0x442701a3, 0x6aa90020, 0x941e013f, 0x00000000}},  //   _sdn_, _umef, mitə_,\n  { {0x20030046, 0x7d0d1766, 0x44270085, 0x00000000}},  //   kcji_, npas, _pdn_,\n  { {0x395f1767, 0x8d5c00b3, 0x00000000, 0x00000000}},  //   _isus_, רכזי,   ,\n  { {0x6d44022b, 0xddcd0477, 0x65640087, 0x00000000}},  //   ztia, ydaş, _šiht,\n  { {0x68fb01b0, 0x7d0d04be, 0x201a04cb, 0x00000000}},  //   _kuud, kpas, _sepi_,\n  { {0x7d0d00bb, 0x68fb0934, 0x656b0048, 0x00000000}},  //   jpas, _juud, _urgh,\n  { {0x68fb0004, 0xa06a008b, 0x00000000, 0x00000000}},  //   _muud, шага_,   ,\n  { {0x7d0d1768, 0x68fb1487, 0x6723012d, 0x00000000}},  //   epas, _luud, nsnj,\n  { {0x6d440dc9, 0x629d0109, 0x76490016, 0x00000000}},  //   ttia, chso, nfey,\n  { {0x7d0d011c, 0xddcd006b, 0x6496001a, 0x00000000}},  // [2f40] gpas, rdaş, _mâin,\n  { {0xd91000a1, 0x3a3f00f6, 0xd00a003b, 0x00000000}},  //   ہیر_, _acup_, _њене_,\n  { {0x7d0d142e, 0x00000000, 0x00000000, 0x00000000}},  //   apas,   ,   ,\n  { {0x6d440023, 0x00000000, 0x00000000, 0x00000000}},  //   ptia,   ,   ,\n  { {0x18741769, 0x76490016, 0xc983007c, 0x00000000}},  //   згля, dfey, дущи,\n  { {0xbcfb176a, 0x24870263, 0x941e006b, 0x00000000}},  //   _prév, _nonm_, bitə_,\n  { {0xab271227, 0x7bdc176b, 0x00000000, 0x00000000}},  //   _мора_, _uzru,   ,\n  { {0x6496001a, 0x76490016, 0x00000000, 0x00000000}},  //   _câin, gfey,   ,\n  { {0x20030036, 0x22b60089, 0x7e9b00a3, 0x00000000}},  //   ycji_, cāki_, יסקו,\n  { {0x7afc011f, 0x60c20051, 0x3946008f, 0x00000000}},  //   _kurt, _íomh, mtos_,\n  { {0x39460325, 0xc606008b, 0x7afc01e5, 0x00000000}},  //   ltos_, _дзей, _jurt,\n  { {0x7afc00b0, 0x9294008b, 0x2a64012d, 0x00000000}},  //   _murt, даюц, _jamb_,\n  { {0x39460df9, 0xdb07000c, 0x506705f6, 0x00000000}},  //   ntos_, _ólög, отва,\n  { {0x3946176c, 0xc0cb0783, 0x2a64176d, 0x00000000}},  //   itos_, руме_, _lamb_,\n  { {0x14c70183, 0xa295007e, 0x7afc1459, 0x00000000}},  //   रकरण, _накі, _nurt,\n  { {0xc333009b, 0x39460dec, 0x7d0d176e, 0x00000000}},  //   _חוק_, ktos_, tpas,\n  { {0x7afc022b, 0x3ebe000c, 0x20030036, 0x00000000}},  // [2f50] _aurt, étta_, pcji_,\n  { {0x7afc176f, 0x68fb003c, 0x21390023, 0x00000000}},  //   _burt, _ruud, mush_,\n  { {0x68fb006c, 0x39461770, 0x7d0d0781, 0x00000000}},  //   _suud, etos_, spas,\n  { {0xbcfb027b, 0x68fb0004, 0x7d0d059f, 0x00000000}},  //   _brét, _puud, ppas,\n  { {0xa9690175, 0x4e7a00a0, 0xbcfb009d, 0x00000000}},  //   сила_, _הארצ, _crét,\n  { {0x7afc00ab, 0xe9d8008b, 0xacfa009b, 0x00000000}},  //   _furt, цкі_, _להשכ,\n  { {0x7afc0f30, 0xddcd016c, 0x64960035, 0x00000000}},  //   _gurt, njaž, _pâin,\n  { {0xbcfb009f, 0x2139008d, 0xba770380, 0x00000000}},  //   _frét, kush_, _باست,\n  { {0x39461771, 0x22590168, 0xc7b80521, 0x00000000}},  //   ctos_, desk_, _ređe_,\n  { {0x7afc014a, 0x76490016, 0x65691772, 0x00000000}},  //   _yurt, sfey, rveh,\n  { {0x61f1006b, 0xc7b8012d, 0x27070082, 0x00000000}},  //   ədlə, _peđe_, _qđnd_,\n  { {0x21390022, 0x00000000, 0x00000000, 0x00000000}},  //   fush_,   ,   ,\n  { {0x2139012d, 0x24870173, 0x00000000, 0x00000000}},  //   gush_, _tonm_,   ,\n  { {0x648d0051, 0x00000000, 0x00000000, 0x00000000}},  //   _cúit,   ,   ,\n  { {0x39460010, 0x66de0065, 0xdee60088, 0x00000000}},  //   ztos_, lëka, зови,\n  { {0x21391511, 0x39460006, 0x531a0049, 0x00000000}},  //   bush_, ytos_, _פופצ,\n  { {0x7afc00f4, 0xd00f026c, 0x39460df5, 0x00000000}},  // [2f60] _surt, ئلہ_, xtos_,\n  { {0x7afc04b4, 0xe1ff073f, 0xc1730097, 0x00000000}},  //   _purt, ndón_, _נחת_,\n  { {0xbcfb0eb4, 0x7afc006b, 0x6ffb00b3, 0x00000000}},  //   _brés, _qurt, _להיפ,\n  { {0x394600c4, 0xbcfb00f4, 0x37d10044, 0x00000000}},  //   ttos_, _prét, াধার,\n  { {0x394600b0, 0x00000000, 0x00000000, 0x00000000}},  //   utos_,   ,   ,\n  { {0x98a301be, 0x7afc046e, 0x22b60089, 0x00000000}},  //   ниче, _turt, māku_,\n  { {0xfbc301e1, 0x2a6406c0, 0x7afc00b5, 0x00000000}},  //   _збро, _tamb_, _uurt,\n  { {0x39461773, 0xb9020044, 0xdb1c0036, 0x00000000}},  //   ptos_, _নং_, _wyró,\n  { {0xf7f601d8, 0x7e66000a, 0x00000000, 0x00000000}},  //   _فساد, _makp,   ,\n  { {0x3ebf00ca, 0x7e660022, 0x00000000, 0x00000000}},  //   čuti_, _lakp,   ,\n  { {0x62351020, 0x22590190, 0x00000000, 0x00000000}},  //   мену, tesk_,   ,\n  { {0x0bb70104, 0x7e6600e0, 0x5187007c, 0x00000000}},  //   ללים_, _nakp, пуга,\n  { {0x22590ea9, 0x648d0051, 0xcfaa0044, 0x00000000}},  //   resk_, _cúis, _খুলন,\n  { {0xa3b401fb, 0x212d01dc, 0x65621241, 0x00000000}},  //   _облі, šeho_, _isoh,\n  { {0x4fc4012b, 0x645a0b25, 0xc7b80082, 0x00000000}},  //   еста, meti, _gdđt_,\n  { {0x443e0374, 0x3ea01774, 0x00000000, 0x00000000}},  //   lgt_, ghit_,   ,\n  { {0x645a0026, 0x443e00bb, 0x7e6600d9, 0x00000000}},  // [2f70] oeti, ogt_, _dakp,\n  { {0x645a0612, 0x67280182, 0xa2c5007d, 0x00000000}},  //   neti, _ovdj, रवक्,\n  { {0xbcfb028c, 0x9e150088, 0x443e059b, 0x00000000}},  //   _prés, _одні, igt_,\n  { {0x645a1775, 0xd366007a, 0x629d0065, 0x00000000}},  //   heti, _یه_, ëroh,\n  { {0x645a014a, 0xd914007e, 0x22b60089, 0x00000000}},  //   keti, едчы, cāku_,\n  { {0x645a0247, 0x443e02ae, 0xbcfb0068, 0x00000000}},  //   jeti, jgt_, _frér,\n  { {0x645a002d, 0xbcfb1776, 0x65620045, 0x00000000}},  //   deti, _trés, _asoh,\n  { {0x443e1777, 0x22b60089, 0x67280087, 0x00000000}},  //   egt_, nākt_, _dvdj,\n  { {0xdddd0046, 0x645a166d, 0x00000000, 0x00000000}},  //   _hasł, feti,   ,\n  { {0x443e1778, 0x648d0051, 0x3ea00065, 0x00000000}},  //   ggt_, _rúis, zhit_,\n  { {0x9c8700b9, 0xe1ff1779, 0xd6ce02fd, 0x00000000}},  //   _začá, rdón_, طقی_,\n  { {0xd5ae089d, 0xe2971734, 0x443e00b5, 0x00000000}},  //   افی_, даю_, agt_,\n  { {0x645a177a, 0x648d002a, 0x2d8001c3, 0x00000000}},  //   beti, _dúir, xxie_,\n  { {0x443e001c, 0x645a00b9, 0x7e660056, 0x00000000}},  //   cgt_, ceti, _sakp,\n  { {0x3ea0177b, 0x7e66011c, 0x21290203, 0x00000000}},  //   thit_, _pakp, _evah_,\n  { {0xdee3007c, 0x3d02006e, 0xdee601ee, 0x00000000}},  //   воси, _वंदे_, фоби,\n  { {0x3ea001d6, 0x6fe7009d, 0x290d0022, 0x00000000}},  // [2f80] rhit_, técé, _ntea_,\n  { {0x6286037e, 0x3ea00065, 0x013700a0, 0x00000000}},  //   ljko, shit_, _קרית_,\n  { {0x307b009b, 0x4a46017f, 0x290d002d, 0x00000000}},  //   _ואינ, днев, _atea_,\n  { {0x645a177c, 0xe9da0679, 0x3a2d0035, 0x00000000}},  //   zeti, оке_, _cdep_,\n  { {0xbcfb0aea, 0x645a014a, 0x443e0239, 0x00000000}},  //   _fréq, yeti, ygt_,\n  { {0x96f80594, 0x645a002d, 0xf2bb007d, 0x00000000}},  //   пект_, xeti, _उद्घ,\n  { {0x22b60089, 0x36d40069, 0x290d00e5, 0x00000000}},  //   nāks_, нокр, _etea_,\n  { {0xcfc00044, 0x6e2400e7, 0x64430146, 0x00000000}},  //   _ইরান, naib, _acni,\n  { {0x645a008d, 0xdddd0036, 0x3a0900a1, 0x00000000}},  //   teti, _zasł, _رکنی_,\n  { {0x6e240c97, 0x443e01a2, 0x84e70025, 0x00000000}},  //   haib, ugt_, وفيق_,\n  { {0x645a011f, 0x443e177d, 0x6e24011c, 0x00000000}},  //   reti, rgt_, kaib,\n  { {0x645a037e, 0x6b83177e, 0x753b0009, 0x00000000}},  //   seti, ängi, buuz,\n  { {0x6596004b, 0x7c2e05fa, 0x6e240032, 0x00000000}},  //   _تجار, _odbr, daib,\n  { {0xe3af06c6, 0xf9930097, 0x61f8007e, 0x00000000}},  //   اری_, דרש_, ьняў_,\n  { {0xceb4005f, 0xdfd4007e, 0xdfd8005e, 0x00000000}},  //   fiə_, воры, дът_,\n  { {0x76400061, 0x7c2e0093, 0x6e240327, 0x00000000}},  //   ngmy, _adbr, gaib,\n  { {0xbcfb009d, 0x3d1a007d, 0x00000000, 0x00000000}},  // [2f90] _crép, मीले_,   ,\n  { {0x66de0065, 0x22b60089, 0x61e0014a, 0x00000000}},  //   këko, sākt_, ümle,\n  { {0x290d0899, 0x5a351281, 0x3eb00051, 0x00000000}},  //   _stea_, енет, últú_,\n  { {0x6e240b51, 0x6aa20016, 0x628d00c4, 0x00000000}},  //   caib, ghof, _joao,\n  { {0x49b80014, 0xc7b8016c, 0x00000000, 0x00000000}},  //   واهد_, _ređa_,   ,\n  { {0x442e02d4, 0x00000000, 0x00000000, 0x00000000}},  //   _ndf_,   ,   ,\n  { {0xe739041f, 0xc7b80521, 0x46f50077, 0x00000000}},  //   чей_, _peđa_, нчит,\n  { {0x442e00d4, 0x32c40477, 0x6aa20020, 0x00000000}},  //   _adf_, kıya_, chof,\n  { {0x81b40055, 0x04b50ae0, 0x5a44007e, 0x00000000}},  //   _জুন_, есня, _шэра,\n  { {0xb21b0030, 0x7c250471, 0x00000000, 0x00000000}},  //   sjæl, nahr,   ,\n  { {0x442e177f, 0x889a009b, 0x6286012d, 0x00000000}},  //   _ddf_, _צבעי, tjko,\n  { {0x442e009d, 0x753b0020, 0x51f700a1, 0x00000000}},  //   _edf_, puuz, کسپر,\n  { {0x3495008b, 0x442e1780, 0xbddb00f4, 0x00000000}},  //   _падр, _fdf_, _scèn,\n  { {0x92c20055, 0x7c25010f, 0x6e2400e7, 0x00000000}},  //   ্গে_, jahr, waib,\n  { {0x44251781, 0x6e241782, 0x6609012d, 0x00000000}},  //   mal_, taib, ocek,\n  { {0x44250643, 0xbcfb00f4, 0x64410007, 0x00000000}},  //   lal_, _prép, lgli,\n  { {0x7c25001f, 0xed5701f9, 0xee37008b, 0x00000000}},  // [2fa0] fahr, нот_, энт_,\n  { {0x644106d3, 0x7d040065, 0x6e241783, 0x00000000}},  //   ngli, rqis, saib,\n  { {0x201801d5, 0x64411784, 0x4425005b, 0x00000000}},  //   mbri_, igli, ial_,\n  { {0x4425006a, 0x629d0006, 0x2ea800a1, 0x00000000}},  //   hal_, ūrov, _کھڑی_,\n  { {0x44250127, 0x7bc700f6, 0x6aa201a2, 0x00000000}},  //   kal_, _exju, rhof,\n  { {0x44251785, 0xfbd1026c, 0x6aa2021f, 0x00000000}},  //   jal_, اتے_, shof,\n  { {0x442e1786, 0xf093009b, 0x2bbe0061, 0x00000000}},  //   _rdf_, רנו_, ्थळा,\n  { {0x442e009d, 0x41b20061, 0x6441010e, 0x00000000}},  //   _sdf_, ीपास, egli,\n  { {0x4425018e, 0x00000000, 0x00000000, 0x00000000}},  //   fal_,   ,   ,\n  { {0x6441098e, 0x1828007a, 0x33740077, 0x00000000}},  //   ggli, _آقای_, вгор,\n  { {0x5c370049, 0xc61f0044, 0x00000000, 0x00000000}},  //   ערטן_, _ধারা_,   ,\n  { {0x44251787, 0x64411788, 0x3bbb0104, 0x00000000}},  //   aal_, agli, למיד,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x44250038, 0x32c401df, 0x00000000, 0x00000000}},  //   cal_, rıya_,   ,\n  { {0x7ea30004, 0xdfd50783, 0xbcfb0010, 0x00000000}},  //   _lõpe, товы, _esél,\n  { {0x7c25010f, 0x6b8100f6, 0x32c4026d, 0x00000000}},  //   wahr, _àlgi, pıya_,\n  { {0x661d009f, 0x2d580194, 0xa2ce013d, 0x00000000}},  // [2fb0] ðski, нить_, सवर्,\n  { {0x6ac90201, 0x2d870091, 0x00000000, 0x00000000}},  //   िक्र, ćne_,   ,\n  { {0x212b010f, 0x2be60061, 0x00000000, 0x00000000}},  //   lsch_, _करणं_,   ,\n  { {0x44251789, 0xc3330104, 0xc5fe0089, 0x00000000}},  //   zal_, רוף_, šējo_,\n  { {0x212b0a35, 0x4425060b, 0x68fa013f, 0x00000000}},  //   nsch_, yal_, _bitd,\n  { {0x4425006b, 0x212b010f, 0x7e6d0058, 0x00000000}},  //   xal_, isch_, ldap,\n  { {0x2bb80054, 0x46a513e7, 0x6d4d178a, 0x00000000}},  //   _كافة_, какв, ltaa,\n  { {0x7e6d020c, 0x44250504, 0xcb120452, 0x00000000}},  //   ndap, wal_, _כלל_,\n  { {0x6d4d061f, 0x6441001f, 0x6609014a, 0x00000000}},  //   ntaa, tgli, rcek,\n  { {0x97a7003b, 0xd90d007a, 0x6441178b, 0x00000000}},  //   _прел, _هیچ_, ugli,\n  { {0x6d4d00b0, 0x61e40010, 0x7afb178c, 0x00000000}},  //   htaa, _szil, _kiut,\n  { {0x6441018e, 0xddc4001a, 0x6d4d0dde, 0x00000000}},  //   sgli, ndiţ, ktaa,\n  { {0x4425049a, 0x7afb0010, 0x00000000, 0x00000000}},  //   pal_, _miut,   ,\n  { {0x7e7d010f, 0xe3b9178d, 0x4425178e, 0x00000000}},  //   _ansp, _обл_, qal_,\n  { {0x03a20088, 0x00000000, 0x00000000, 0x00000000}},  //   _вищо,   ,   ,\n  { {0x6d4d04fd, 0x7e6d0058, 0x212b01a2, 0x00000000}},  //   ftaa, gdap, bsch_,\n  { {0x6d4d178f, 0x00000000, 0x00000000, 0x00000000}},  // [2fc0] gtaa,   ,   ,\n  { {0x7afb0198, 0x7e7d01aa, 0xdd8f0318, 0x00000000}},  //   _aiut, _ensp, غول_,\n  { {0x6d4d001c, 0x8fa604af, 0x0a4a008b, 0x00000000}},  //   ataa, _ране, дзей_,\n  { {0x7afb04bd, 0x78a11790, 0x7ae90020, 0x00000000}},  //   _ciut, _allv, _chet,\n  { {0x6d4d001c, 0x7ceb010f, 0x7afb003f, 0x00000000}},  //   ctaa, dürf, _diut,\n  { {0xf77206dd, 0x672a00ea, 0x00000000, 0x00000000}},  //   لاع_, tsfj,   ,\n  { {0x6b8304ce, 0x7afb07ad, 0x00000000, 0x00000000}},  //   ängt, _fiut,   ,\n  { {0x7afb0026, 0x212b0032, 0x68fa01d6, 0x00000000}},  //   _giut, ysch_, _witd,\n  { {0xceb300b6, 0x7bdc0052, 0x27e5004a, 0x00000000}},  //   ייה_, _hyru, _ezln_,\n  { {0x68fa00c7, 0xb4cc013d, 0xb86502fd, 0x00000000}},  //   _uitd, लवे_, _مامو,\n  { {0xa2950099, 0x29040f68, 0x387e000d, 0x00000000}},  //   гані, _huma_, _intr_,\n  { {0x26c00006, 0x212b03a1, 0x29041791, 0x00000000}},  //   čios_, tsch_, _kuma_,\n  { {0xe298008b, 0xe5340147, 0x29040020, 0x00000000}},  //   таў_, _сель, _juma_,\n  { {0x212b010f, 0x29041792, 0x7ceb1793, 0x00000000}},  //   rsch_, _muma_, mürg,\n  { {0xff040242, 0x29041794, 0x386c00e5, 0x00000000}},  //   иятн, _luma_, _madr_,\n  { {0x6d4d1795, 0x29040007, 0x212b1796, 0x00000000}},  //   ttaa, _ouma_, psch_,\n  { {0x29040181, 0x7e6d020c, 0x7afb1797, 0x00000000}},  // [2fd0] _numa_, rdap, _riut,\n  { {0x7ae90020, 0x629d01d6, 0x80c10044, 0x00000000}},  //   _shet, lkso, _শীর্,\n  { {0x6d4d0d6f, 0x50b8057d, 0x7afb1798, 0x00000000}},  //   staa, _جديد_, _piut,\n  { {0x629d0146, 0x290400bb, 0x6d4d003f, 0x00000000}},  //   nkso, _buma_, ptaa,\n  { {0x29040127, 0xb5fd01ee, 0x8d8400ed, 0x00000000}},  //   _cuma_, neše, _курд,\n  { {0x98e50054, 0x7ae900ab, 0x6b8304ce, 0x00000000}},  //   دكتو, _whet, ängs,\n  { {0x00580104, 0x2249014a, 0x386c00e5, 0x00000000}},  //   דשות_, _ocak_, _dadr_,\n  { {0xdb240195, 0xd756023c, 0x387e0068, 0x00000000}},  //   _úsái, اليت_, _entr_,\n  { {0x60d50c8a, 0xb5fd0243, 0x290401ed, 0x00000000}},  //   kozm, ješe, _guma_,\n  { {0x34850b87, 0x20010011, 0x22490093, 0x00000000}},  //   угог, _nghi_, _acak_,\n  { {0x947500d3, 0x29040657, 0xe81901f5, 0x00000000}},  //   ندگا, _zuma_, _न्या_,\n  { {0x29041352, 0x20010026, 0x7ceb01a2, 0x00000000}},  //   _yuma_, _aghi_, bürg,\n  { {0x661b1799, 0xd46801b2, 0x00000000, 0x00000000}},  //   mbuk, رحیم_,   ,\n  { {0x55ba009b, 0x9103007c, 0x629d0065, 0x00000000}},  //   _אמנו, спре, ëror,\n  { {0x2d8f0002, 0xf8b2009b, 0xb4c10309, 0x00000000}},  //   ägen_, משך_, ्की_,\n  { {0x661b179a, 0xc24601ee, 0x00000000, 0x00000000}},  //   nbuk, _сник,   ,\n  { {0x83fc0091, 0x3f9e179b, 0x661b0020, 0x00000000}},  // [2fe0] ređe, štu_, ibuk,\n  { {0xf06601f9, 0xf28a00a1, 0x3a2400fa, 0x00000000}},  //   _скоп, _آپکو_, _semp_,\n  { {0x2904179c, 0xddd40036, 0x7ceb019a, 0x00000000}},  //   _suma_, _łańc, dürd,\n  { {0x753b057c, 0x7524014a, 0x094a00ed, 0x00000000}},  //   kruz, _çizg, ечки_,\n  { {0x38a2000c, 0x82d70049, 0x753b016c, 0x00000000}},  //   _aðra_, נונג_, jruz,\n  { {0x4b2603ec, 0x753b0107, 0x31570049, 0x00000000}},  //   _معرف, druz, ריסן_,\n  { {0x3a24086a, 0xd6d012c0, 0x00000000, 0x00000000}},  //   _temp_, يقت_,   ,\n  { {0xa534003b, 0x29040020, 0x6b830039, 0x00000000}},  //   анич, _tuma_, ånge,\n  { {0x7d06179d, 0x753b0035, 0x29040058, 0x00000000}},  //   _juks, gruz, _uuma_,\n  { {0xd5630265, 0x7d060052, 0x00000000, 0x00000000}},  //   стъп, _muks,   ,\n  { {0x2ee00279, 0x00000000, 0x00000000, 0x00000000}},  //   klif_,   ,   ,\n  { {0x753b0026, 0x81e90044, 0x66e31079, 0x00000000}},  //   bruz, _বলব_, _лоха,\n  { {0x629d0378, 0xc05b01fb, 0x753b0285, 0x00000000}},  //   rkso, нів_, cruz,\n  { {0x6fd60316, 0xf48402fd, 0x00000000, 0x00000000}},  //   _मुहू, _خاصی,   ,\n  { {0x7d06008f, 0xb5fd179e, 0x60d5179f, 0x00000000}},  //   _auks, reše, rozm,\n  { {0x7d06006a, 0x6e20010e, 0xd9f60061, 0x00000000}},  //   _buks, _õmbl, ेशात_,\n  { {0xa3b80061, 0xb5fd00ca, 0x6e260328, 0x00000000}},  // [2ff0] _घेत_, peše, _dekb,\n  { {0x7d060065, 0x20010026, 0x6e2600d9, 0x00000000}},  //   _duks, _ughi_, _eekb,\n  { {0x70fa009b, 0x03e20082, 0x60fa009b, 0x00000000}},  //   _שהתח, _đuốn, _שהתק,\n  { {0x19b9008b, 0x7ceb010f, 0xc333009b, 0x00000000}},  //   куль_, würd, מוע_,\n  { {0xa9690175, 0x645809dd, 0x7ceb0279, 0x00000000}},  //   тила_, _obvi, türd,\n  { {0x7c870147, 0x3ea90010, 0x2bd001f5, 0x00000000}},  //   _суме, lhat_, _तुका,\n  { {0x07a5005e, 0x7522000a, 0x00000000, 0x00000000}},  //   райн, _awoz,   ,\n  { {0x753b0282, 0x3ea917a0, 0xe7080014, 0x00000000}},  //   truz, nhat_, دتون_,\n  { {0x661b020c, 0x7847025a, 0xca48023c, 0x00000000}},  //   rbuk, _مضام, _حلقه_,\n  { {0xb4c10201, 0x6602022b, 0x753b01bc, 0x00000000}},  //   ्के_, _egok, rruz,\n  { {0xe28604f9, 0x61e1005f, 0x987a0049, 0x00000000}},  //   ални, əlli, _שרעק,\n  { {0x6d5d0030, 0x25b60014, 0x7c270030, 0x00000000}},  //   _opsa, اهید_, _lejr,\n  { {0x3ea91002, 0xcad6009b, 0x75220c28, 0x00000000}},  //   dhat_, שורת_, _gwoz,\n  { {0x7c2700b9, 0x6e260093, 0x7d060733, 0x00000000}},  //   _nejr, _sekb, _ruks,\n  { {0x7d0617a1, 0x6d5d17a2, 0x442700d4, 0x00000000}},  //   _suks, _apsa, _ien_,\n  { {0x442703cd, 0x3ea917a3, 0xee3717a4, 0x00000000}},  //   _hen_, ghat_, инс_,\n\n  { {0xcbe208b7, 0x44270343, 0x25ad0342, 0x00000000}},  // [3000] _বলেছ, _ken_, nzel_,\n  { {0x44270224, 0xac830230, 0x4c8300ed, 0x00000000}},  //   _jen_, огул, олув,\n  { {0x80a60167, 0x9f4c00b0, 0x00000000, 0x00000000}},  //   _ممکن, ädä_,   ,\n  { {0x44270027, 0x3ea900b9, 0x00000000, 0x00000000}},  //   _len_, chat_,   ,\n  { {0x6d5d002d, 0x7c2717a5, 0x4427005b, 0x00000000}},  //   _gpsa, _fejr, _oen_,\n  { {0x7e640e33, 0xddcd0035, 0x7c270022, 0x00000000}},  //   leip, leaş, _gejr,\n  { {0x6d440035, 0xf727007e, 0x656b074e, 0x00000000}},  //   luia, ацый_, _asgh,\n  { {0x3ea00943, 0xdc2e006b, 0x83fc0243, 0x00000000}},  //   nkit_, _yığm, jeđa,\n  { {0x442717a6, 0xf8af00a1, 0x6d4417a7, 0x00000000}},  //   _ben_, سکے_, nuia,\n  { {0x7ae217a8, 0x4427042e, 0x3ea90010, 0x00000000}},  //   llot, _cen_, zhat_,\n  { {0x48070264, 0x3ea017a9, 0x7ae208a6, 0x00000000}},  //   _техн_, kkit_, olot,\n  { {0x4427017c, 0x96fa031d, 0x6b810325, 0x00000000}},  //   _een_, _شعار_, _álge,\n  { {0x442704cd, 0x7ae20026, 0x20d70025, 0x00000000}},  //   _fen_, ilot, لتسج,\n  { {0x44270607, 0x3ea90133, 0x00000000, 0x00000000}},  //   _gen_, what_,   ,\n  { {0x442c17aa, 0xb5fd003b, 0x3ea90010, 0x00000000}},  //   mad_, meša, that_,\n  { {0x4427022b, 0x93fb007b, 0x2bda013d, 0x00000000}},  //   _zen_, _בלוי, _भड़ा,\n  { {0x6d4f001c, 0x442717ab, 0x7ae217ac, 0x00000000}},  // [3010] _qqca, _yen_, dlot,\n  { {0x6448000c, 0x3ea90065, 0x44270082, 0x00000000}},  //   ngdi, shat_, _xen_,\n  { {0x7c270030, 0x81e90044, 0x3ea917ad, 0x00000000}},  //   _vejr, _বলি_, phat_,\n  { {0x442c109a, 0xdd91026c, 0x3ea0059f, 0x00000000}},  //   had_, _فوج_, ckit_,\n  { {0x442c0119, 0x777a002d, 0x6d5d17ae, 0x00000000}},  //   kad_, _artx, _upsa,\n  { {0x442c0004, 0x81e90055, 0xb5fd0243, 0x00000000}},  //   jad_, _বলা_, ješa,\n  { {0x442c1718, 0x4427022b, 0xccf2009b, 0x00000000}},  //   dad_, _ren_, _מכך_,\n  { {0x4427021e, 0x7ae2059a, 0x442c17af, 0x00000000}},  //   _sen_, clot, ead_,\n  { {0x44270904, 0xddc601d9, 0x442c0051, 0x00000000}},  //   _pen_, _kakš, fad_,\n  { {0x442c001e, 0x44270065, 0x6e2d01f3, 0x00000000}},  //   gad_, _qen_, haab,\n  { {0x44270018, 0xc6260055, 0xe29a0364, 0x00000000}},  //   _ven_, _যারা_, ган_,\n  { {0x44270007, 0xddc60091, 0x64480112, 0x00000000}},  //   _wen_, _lakš, agdi,\n  { {0x442c17b0, 0x83fc0521, 0xc7b8012d, 0x00000000}},  //   bad_, ređa, _ređi_,\n  { {0x7cf00bfe, 0x7649014a, 0xb5fd016c, 0x00000000}},  //   märg, lgey, ceša,\n  { {0xc7b8012d, 0x8fa300c0, 0x628f00f6, 0x00000000}},  //   _peđi_, паре, bjco,\n  { {0x7649000c, 0x422617b1, 0x539a0104, 0x00000000}},  //   ngey, _удив, _תיקו,\n  { {0x3ea00943, 0x7d260123, 0x518500e2, 0x00000000}},  // [3020] rkit_, صفان, _дуќа,\n  { {0x6296008e, 0x6d4417b2, 0x00000000, 0x00000000}},  //   _hoyo, ruia,   ,\n  { {0x2d8f0737, 0xe1ff00d4, 0x395f17b3, 0x00000000}},  //   øger_, bdós_, _apus_,\n  { {0x442c016c, 0xc5f20044, 0x6b830039, 0x00000000}},  //   zad_, ছুটা_, ånga,\n  { {0x442c006a, 0x6d441343, 0x62960020, 0x00000000}},  //   yad_, quia, _moyo,\n  { {0x7ae202ae, 0x307a0049, 0x7ea3006c, 0x00000000}},  //   slot, ראַנ, _lõpl,\n  { {0x442c061f, 0x7ae201ca, 0xd6da05a5, 0x00000000}},  //   vad_, plot, лти_,\n  { {0x442c011c, 0xe6660264, 0x7cf000f8, 0x00000000}},  //   wad_, стко, färg,\n  { {0xb21b06ec, 0x00000000, 0x00000000, 0x00000000}},  //   kjær,   ,   ,\n  { {0x62840036, 0x6aa2042e, 0x442c17b4, 0x00000000}},  //   _anio, lkof, uad_,\n  { {0x442c0073, 0x62960093, 0x6e2d0022, 0x00000000}},  //   rad_, _boyo, yaab,\n  { {0x442c17b5, 0x6aa20a20, 0xd6270893, 0x00000000}},  //   sad_, nkof, _гоце_,\n  { {0xb5fd17b6, 0x39460006, 0x914b007e, 0x00000000}},  //   lešn, nuos_, ычна_,\n  { {0x442c17b7, 0x66de0023, 0x6e2d0258, 0x00000000}},  //   qad_, rëku, waab,\n  { {0xdbf10224, 0xe4570049, 0x6e2d17b8, 0x00000000}},  //   _přím, _ליגט_, taab,\n  { {0x7cf004ce, 0x00000000, 0x00000000, 0x00000000}},  //   härd,   ,   ,\n  { {0x38ab0737, 0x6e9417b9, 0x998d04eb, 0x00000000}},  // [3030] _høre_, читу, _odeš_,\n  { {0x394617ba, 0x38ab0030, 0xa3cc013d, 0x00000000}},  //   duos_, _køre_, _रखा_,\n  { {0x6296000b, 0x395f000d, 0xce95005e, 0x00000000}},  //   _yoyo, _spus_, _данъ,\n  { {0xdb080010, 0x38ab1565, 0x00000000, 0x00000000}},  //   álás, _møre_,   ,\n  { {0xc7b80119, 0xddc601d9, 0x394617bb, 0x00000000}},  //   _među_, _takš, guos_,\n  { {0x7cf00039, 0x61ed0020, 0x58d417bc, 0x00000000}},  //   gärd, _mzal, почт,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x66f201fc, 0x6aa201a2, 0x060901bd, 0x00000000}},  //   мпју, ckof, шник_,\n  { {0xf9930025, 0x1a680167, 0x3afa0049, 0x00000000}},  //   _عبر_, _دینی_, _כּמע,\n  { {0x6296009d, 0xd8380087, 0x65690b19, 0x00000000}},  //   _soyo, _gdč_, rweh,\n  { {0x61ed17bd, 0x626617be, 0x656901a2, 0x00000000}},  //   _azal, овна, sweh,\n  { {0x38ab0030, 0x26dd0045, 0xe7300025, 0x00000000}},  //   _døre_, _ukwo_, _أصل_,\n  { {0x6296009d, 0x7cf009b0, 0x00000000, 0x00000000}},  //   _voyo, läre,   ,\n  { {0x03a5012b, 0x62840036, 0x6aa90016, 0x00000000}},  //   _мило, _wnio, _llef,\n  { {0x629601cf, 0x38ab0018, 0x7cf00a5d, 0x00000000}},  //   _toyo, _gøre_, näre,\n  { {0x628402f1, 0xb5fd17bf, 0x00000000, 0x00000000}},  //   _unio, nešo,   ,\n  { {0xe1ff15e3, 0x85f60049, 0x00000000, 0x00000000}},  // [3040] león_, ַמעס_,   ,\n  { {0x61e4014a, 0x6aa90a8e, 0x60de0133, 0x00000000}},  //   _iyil, _alef, _ukpm,\n  { {0xbcfb028c, 0x8b6a0057, 0x7cf003af, 0x00000000}},  //   _spéc, риев_, värd,\n  { {0x6aa917c0, 0xb5fd0059, 0x394617c1, 0x00000000}},  //   _clef, ješo, tuos_,\n  { {0x7ceb006b, 0x00000000, 0x00000000, 0x00000000}},  //   süra,   ,   ,\n  { {0x98a301e0, 0x2d54006c, 0x7cf00039, 0x00000000}},  //   миче, mäe_, färe,\n  { {0xf0930476, 0xfaa6007e, 0xb8650025, 0x00000000}},  //   ונג_, _даво, ثانو,\n  { {0x96340364, 0xb5fd0c30, 0x60dc003f, 0x00000000}},  //   чниц, rešn, horm,\n  { {0x61e40047, 0x6d56006b, 0x60dc0010, 0x00000000}},  //   _nyil, ntya, korm,\n  { {0x81e90044, 0xb5fd17c2, 0x60dc0173, 0x00000000}},  //   _বলল_, pešn, jorm,\n  { {0x61ed115b, 0x60dc117e, 0xb5fd012d, 0x00000000}},  //   _szal, dorm, lešl,\n  { {0x2bbd013d, 0xddcd001a, 0x00000000, 0x00000000}},  //   ्पता, ndaţ,   ,\n  { {0x672d0166, 0x00000000, 0x00000000, 0x00000000}},  //   ćaje,   ,   ,\n  { {0x6ab70164, 0xd8380173, 0x60dc0203, 0x00000000}},  //   _आग्र, _elčv_, gorm,\n  { {0x09b702fb, 0xb4e601f5, 0xcebb003b, 0x00000000}},  //   _अध्य, पती_, аља_,\n  { {0x9d1517c3, 0x645a01e5, 0x73f90049, 0x00000000}},  //   здач, lfti, _פּסו,\n  { {0x5fdb007d, 0xbddb00f6, 0x61e40010, 0x00000000}},  // [3050] _मुरल, _acèr, _gyil,\n  { {0x645a05c4, 0xb5fd013e, 0x00000000, 0x00000000}},  //   nfti, dešl,   ,\n  { {0xd7df0061, 0x7cf001a2, 0x00000000, 0x00000000}},  //   _पुढच, färb,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x0dc801f9, 0xa9240088, 0x6aa90065, 0x00000000}},  //   _дури_, дділ, _vlef,\n  { {0x27951662, 0x7cf017c4, 0x21290828, 0x00000000}},  //   зшир, täre, _mwah_,\n  { {0x24890011, 0x291d01aa, 0x38670190, 0x00000000}},  //   _đam_, spwa_, renr_,\n  { {0x3209001d, 0xfbd200a0, 0x6abb0009, 0x00000000}},  //   _ngay_, _נתן_, _umuf,\n  { {0x60dc014a, 0x645a0016, 0x7cf017c5, 0x00000000}},  //   yorm, ffti, säre,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x3a2d0038, 0x60dc17c6, 0x65620107, 0x00000000}},  //   _keep_, vorm, _epoh,\n  { {0x216a005e, 0x29050459, 0x21290145, 0x00000000}},  //   бими_, _hila_, _bwah_,\n  { {0x2905000b, 0xb7bc001e, 0x60dc0142, 0x00000000}},  //   _kila_, _reģi, torm,\n  { {0x2d54006c, 0xf992009b, 0x3a2d0203, 0x00000000}},  //   väe_, תרך_, _leep_,\n  { {0xd00f1095, 0xa3b80061, 0x6b8300f8, 0x00000000}},  //   الف_, _घेऊ_, ångl,\n  { {0x60dc00f4, 0x539a009b, 0xf7720049, 0x00000000}},  //   sorm, _ליצו, עקן_,\n  { {0x60dc006a, 0xa1130025, 0xbcfb0048, 0x00000000}},  // [3060] porm, _كويت, _spéa,\n  { {0x2905006a, 0x6d560010, 0xf8a50167, 0x00000000}},  //   _nila_, rtya, _شک_,\n  { {0x309b009b, 0x3a2d0145, 0xa09b00a0, 0x00000000}},  //   _השימ, _beep_, _הייט,\n  { {0x7ceb050d, 0xed5a02dc, 0x29050052, 0x00000000}},  //   büro, _лом_, _aila_,\n  { {0x29051092, 0x6e24020e, 0x3a2d00ab, 0x00000000}},  //   _bila_, mbib, _deep_,\n  { {0x2905008d, 0x6e2400ea, 0x7ceb005a, 0x00000000}},  //   _cila_, lbib, nürl,\n  { {0x36d4072b, 0x56940d99, 0x2905011c, 0x00000000}},  //   мокр, дайт, _dila_,\n  { {0x6d44010e, 0x00000000, 0x00000000, 0x00000000}},  //   oria,   ,   ,\n  { {0xd94300c0, 0x9c8300ca, 0x7c2e00ea, 0x00000000}},  //   _пети, ščet, _kebr,\n  { {0x6d440fdd, 0x2905003f, 0x691c014a, 0x00000000}},  //   iria, _gila_, rçeğ,\n  { {0x7ceb014a, 0x7c2e00f6, 0x645a17c7, 0x00000000}},  //   dürl, _mebr, rfti,\n  { {0x7c2e1706, 0x6d440006, 0xa3bd013d, 0x00000000}},  //   _lebr, kria, _इधर_,\n  { {0x867b00b6, 0xc50a0025, 0x5187003b, 0x00000000}},  //   _לראו, _اتصل_, чуна,\n  { {0xbcfb049a, 0x6d4417c8, 0x7ceb014a, 0x00000000}},  //   _apén, dria, gürl,\n  { {0x443c0197, 0x712700a6, 0xbef80204, 0x00000000}},  //   _idv_, _کربل, ंगून_,\n  { {0x442e009f, 0x6d44027b, 0x6e24006a, 0x00000000}},  //   _hef_, fria, gbib,\n  { {0x1df80147, 0x6d4417c9, 0x443c014a, 0x00000000}},  // [3070] зеты_, gria, _kdv_,\n  { {0xd0110084, 0x3a2d0abf, 0x442e0602, 0x00000000}},  //   _جلد_, _seep_, _jef_,\n  { {0x7c2e121b, 0x442e12fe, 0xdced0166, 0x00000000}},  //   _debr, _mef_, hvać,\n  { {0x6d44027b, 0x290517ca, 0x3f57006b, 0x00000000}},  //   bria, _sila_, mçu_,\n  { {0x7c2e17cb, 0x3f57006b, 0x6d4400c4, 0x00000000}},  //   _febr, lçu_, cria,\n  { {0x7c2e17cc, 0x3a2d0319, 0x442e03d0, 0x00000000}},  //   _gebr, _weep_, _nef_,\n  { {0x290509f7, 0x3f5717cd, 0xb8f5006e, 0x00000000}},  //   _vila_, nçu_, _हद_,\n  { {0xaa58012b, 0x7c2e0036, 0x443c0851, 0x00000000}},  //   _нису_, _zebr, _adv_,\n  { {0x290517ce, 0x442e17cf, 0x7cf00039, 0x00000000}},  //   _tila_, _bef_, lära,\n  { {0xb5fd0a0f, 0x6e240107, 0x442e00c4, 0x00000000}},  //   lešk, zbib, _cef_,\n  { {0x6203005f, 0xa91d17d0, 0x443c0059, 0x00000000}},  //   ətlə, _drže, _ddv_,\n  { {0x7c25002a, 0x7d0702ae, 0x442e0141, 0x00000000}},  //   hbhr, _lijs, _eef_,\n  { {0x7ceb17d1, 0x27e0014a, 0x442e17d2, 0x00000000}},  //   türl, ğine_, _fef_,\n  { {0x3ce301f3, 0x442e01e5, 0x1dd8013d, 0x00000000}},  //   _nkjv_, _gef_, _भुगत,\n  { {0x7c2e17d3, 0x910300e1, 0xdee60a27, 0x00000000}},  //   _rebr, тпре, дови,\n  { {0x6d440142, 0x7c2e0181, 0xd12f00a1, 0x00000000}},  //   tria, _sebr, طمہ_,\n  { {0xed5701f9, 0x6d440a0e, 0xd00f00a1, 0x00000000}},  // [3080] мот_, uria, الہ_,\n  { {0x6d440238, 0x1c39007e, 0x442e00f6, 0x00000000}},  //   rria, зяць_, _xef_,\n  { {0x6d440022, 0xdced0645, 0x6e2f0022, 0x00000000}},  //   sria, zvać, _fecb,\n  { {0x6d440388, 0x7d0f0555, 0x20180026, 0x00000000}},  //   pria, _fucs, lcri_,\n  { {0x7c2e17d4, 0x26cd0521, 0xd83800d0, 0x00000000}},  //   _tebr, dneo_, _loče_,\n  { {0xab2a0265, 0xfbd9013d, 0x7d0700d9, 0x00000000}},  //   _мога_, _बुकम, _gijs,\n  { {0x442e17d5, 0x443c009d, 0xfc0301e1, 0x00000000}},  //   _ref_, _rdv_, _апро,\n  { {0x6b830018, 0x442e018e, 0x443c0087, 0x00000000}},  //   ænge, _sef_, _sdv_,\n  { {0x443c0091, 0xa91d04eb, 0x00000000, 0x00000000}},  //   _pdv_, _prže,   ,\n  { {0x442e0023, 0x752417d6, 0x00000000, 0x00000000}},  //   _qef_, _çizm,   ,\n  { {0x442e17d7, 0xf7720025, 0xa91d17d8, 0x00000000}},  //   _vef_, _جاء_, _vrže,\n  { {0xe5c603f4, 0x2d8201ee, 0x38ab0190, 0x00000000}},  //   _осло, _orke_, _jørn_,\n  { {0xa308026c, 0x26c40006, 0xa91d0059, 0x00000000}},  //   _کرتے_, mimo_, _trže,\n  { {0x26c4045e, 0x394602d5, 0x7ceb17d9, 0x00000000}},  //   limo_, iros_, türm,\n  { {0x7d0700b5, 0x4fc40d68, 0x2d820f46, 0x00000000}},  //   _rijs, вста, _arke_,\n  { {0x26c4010a, 0x39460006, 0x3f5717cd, 0x00000000}},  //   nimo_, kros_, rçu_,\n  { {0x2fdf0036, 0xb5fd0059, 0x2d82012d, 0x00000000}},  // [3090] ług_, vešk, _crke_,\n  { {0x39461049, 0x26c40dc7, 0x3f810161, 0x00000000}},  //   dros_, himo_, _trhu_,\n  { {0x38ab0018, 0x26c4010a, 0x92c30055, 0x00000000}},  //   _børn_, kimo_, ্তী_,\n  { {0x26c4010a, 0x7d0700b5, 0x693517da, 0x00000000}},  //   jimo_, _wijs, енду,\n  { {0x39460211, 0xe1ff0010, 0x2d820107, 0x00000000}},  //   gros_, deók_, _grke_,\n  { {0x7cf00004, 0x99d4007a, 0x7b670401, 0x00000000}},  //   pära, ختما, _отбе,\n  { {0xc878005d, 0x83fc012d, 0x3946004a, 0x00000000}},  //   _dağ_, beđi, aros_,\n  { {0x39460219, 0x3ea90010, 0x26c40006, 0x00000000}},  //   bros_, nkat_, gimo_,\n  { {0x394615a3, 0x2f1517db, 0xf5050072, 0x00000000}},  //   cros_, _låg_, нзио,\n  { {0xb5fd17dc, 0x7e6d0051, 0x26cd012d, 0x00000000}},  //   neši, heap, sneo_,\n  { {0x26c40087, 0xc2c60025, 0x3ea917dd, 0x00000000}},  //   bimo_, فيدي, kkat_,\n  { {0x26c40059, 0x7cf00039, 0xc5d501e1, 0x00000000}},  //   cimo_, järn, _піль,\n  { {0x7e6d001a, 0xc878005a, 0xa3de013e, 0x00000000}},  //   deap, _yağ_, _měří_,\n  { {0xb5fd0243, 0x0ef8013d, 0x6d4d006c, 0x00000000}},  //   ješi, ंग्स_, duaa,\n  { {0xb4bd001c, 0x7ea30004, 0xb4cb01f5, 0x00000000}},  //   ीची_, _lõpu, रची_,\n  { {0x20180061, 0x3ea917de, 0x7eaa0161, 0x00000000}},  //   scri_, gkat_, _výpo,\n  { {0xac8609b2, 0xf1bf004a, 0x00000000, 0x00000000}},  // [30a0] нгал, lbán_,   ,\n  { {0x394602d5, 0x26c40091, 0x201a00c4, 0x00000000}},  //   vros_, zimo_, _ufpi_,\n  { {0x291f17df, 0x2d8f0a35, 0x2057009b, 0x00000000}},  //   _atua_, äger_, _אייל_,\n  { {0x394600d6, 0x26c40489, 0x3ea90039, 0x00000000}},  //   tros_, ximo_, ckat_,\n  { {0x26c4010a, 0xb5fd016c, 0x394617e0, 0x00000000}},  //   vimo_, beši, uros_,\n  { {0x39460df9, 0x672d037e, 0x20070129, 0x00000000}},  //   rros_, ćajn, _únic_,\n  { {0x26c40817, 0x2d80009d, 0xcb670aed, 0x00000000}},  //   timo_, lvie_, _паре_,\n  { {0x2d800026, 0x00000000, 0x00000000, 0x00000000}},  //   ovie_,   ,   ,\n  { {0x7ae2003c, 0xceb3009b, 0x0cc40044, 0x00000000}},  //   moot, טיה_, ্তীত,\n  { {0x22400127, 0xed57009b, 0x7ae217e1, 0x00000000}},  //   _adik_, עביר_, loot,\n  { {0x26c417e2, 0xd6cf007e, 0x21200145, 0x00000000}},  //   pimo_, _бт_, _atih_,\n  { {0x7ae217e3, 0x7ceb005a, 0x3ea90032, 0x00000000}},  //   noot, türk, xkat_,\n  { {0x64a6008b, 0x245809b5, 0x2f1501c9, 0x00000000}},  //   _пада, _жаль_, _såg_,\n  { {0x7ae202c2, 0x92c30044, 0x251b0097, 0x00000000}},  //   hoot, ্তে_, _צווא,\n  { {0xdfd4008b, 0x7e6d17e4, 0x30a4005e, 0x00000000}},  //   горы, teap, уряв,\n  { {0x6d4d03b6, 0x6e3600e0, 0x3ea900d2, 0x00000000}},  //   tuaa, gayb, ukat_,\n  { {0x628d000b, 0xdce40046, 0x7e6d10e4, 0x00000000}},  // [30b0] _inao, zwią, reap,\n  { {0x3ea900b9, 0x7e6d00ea, 0x2f150039, 0x00000000}},  //   skat_, seap, _tåg_,\n  { {0x6e3617e5, 0xb5fd12ac, 0x7ae20061, 0x00000000}},  //   bayb, reši, foot,\n  { {0x629f002b, 0x9f960104, 0x60c717e6, 0x00000000}},  //   _joqo, _סדרה_, lijm,\n  { {0x628d17e7, 0x7e9a00a0, 0x00000000, 0x00000000}},  //   _mnao, _חסרו,   ,\n  { {0xf7450072, 0xf77101f7, 0x00000000, 0x00000000}},  //   веко, لاب_,   ,\n  { {0xa91d00ee, 0x00000000, 0x00000000, 0x00000000}},  //   _drža,   ,   ,\n  { {0x7ae200bb, 0x629f0066, 0x0cc40044, 0x00000000}},  //   coot, _noqo, ্তৃত,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xb4bd0183, 0x628d0cd7, 0xb4cb0061, 0x00000000}},  //   ीचे_, _anao, रचे_,\n  { {0x68e30e69, 0x21200091, 0x00000000, 0x00000000}},  //   mond, _stih_,   ,\n  { {0x68e307ef, 0x83fc0fcd, 0x00000000, 0x00000000}},  //   lond, jeđu,   ,\n  { {0x645c0129, 0x6a3a009b, 0x00000000, 0x00000000}},  //   òric, וגרפ,   ,\n  { {0x64a20887, 0x68e30020, 0x628d00d4, 0x00000000}},  //   _ваша, nond, _enao,\n  { {0xafe6004c, 0x68e30032, 0x7e560900, 0x00000000}},  //   товл, iond, ктац,\n  { {0x68e300bb, 0x661b17e8, 0x22400022, 0x00000000}},  //   hond, ncuk, _udik_,\n  { {0xec7a005e, 0xe0da003b, 0x7ae209fc, 0x00000000}},  // [30c0] мпа_, _ови_, voot,\n  { {0x313700b6, 0x21370049, 0x2d80009d, 0x00000000}},  //   _שנים_, _שטיל_, rvie_,\n  { {0x7ae2006c, 0x83fc0521, 0xfe460194, 0x00000000}},  //   toot, beđu, _инно,\n  { {0x0a6700ec, 0x4420001a, 0x753b0340, 0x00000000}},  //   врши_, _și_, ksuz,\n  { {0x68e31017, 0x7ae200b5, 0x38650022, 0x00000000}},  //   fond, root, _bblr_,\n  { {0x68e31428, 0x91bb009b, 0x48d00044, 0x00000000}},  //   gond, ומני, িত্র,\n  { {0xb8ea013d, 0x98a3003b, 0x7ae20058, 0x00000000}},  //   _लग_, рије, poot,\n  { {0xfaa317e9, 0x00000000, 0x00000000, 0x00000000}},  //   _касо,   ,   ,\n  { {0xa91d0e0d, 0xfaa30140, 0x0906007e, 0x00000000}},  //   _trža, _тато, _апан,\n  { {0x68e3051b, 0xd838016c, 0x7cf000f8, 0x00000000}},  //   cond, _foča_, kärm,\n  { {0x7cf00039, 0x61f60826, 0x290c0052, 0x00000000}},  //   värl, _azyl, _iida_,\n  { {0xa91d037e, 0x02a70264, 0xd7ef0025, 0x00000000}},  //   _mržn, тром, _بكم_,\n  { {0x61f60046, 0xc6490025, 0xc05b0088, 0x00000000}},  //   _czyl, _أجمل_, мів_,\n  { {0x290c0263, 0x00000000, 0x00000000, 0x00000000}},  //   _jida_,   ,   ,\n  { {0x290c17ea, 0x92b70076, 0x4034007c, 0x00000000}},  //   _mida_, _لحظا, ресс,\n  { {0x628d000b, 0x68e302ae, 0x32550216, 0x00000000}},  //   _unao, zond, _свир,\n  { {0x68e30279, 0x83fc0091, 0x00000000, 0x00000000}},  // [30d0] yond, ređu,   ,\n  { {0x6adb02fb, 0xb5fd003b, 0x290c007f, 0x00000000}},  //   यक्र, mešt, _nida_,\n  { {0x68e302ae, 0xddc40006, 0x6aa000fa, 0x00000000}},  //   vond, reiš, _bomf,\n  { {0x68e301bb, 0x290c01a3, 0x6aa000ab, 0x00000000}},  //   wond, _aida_, _comf,\n  { {0xb5fd17eb, 0x68e307ec, 0x290c0760, 0x00000000}},  //   nešt, tond, _bida_,\n  { {0x394f17ec, 0x7e7d16f8, 0x290c00fa, 0x00000000}},  //   rugs_, _hasp, _cida_,\n  { {0x68e302ae, 0xf094061e, 0xdce40036, 0x00000000}},  //   rond, ינס_, jwię,\n  { {0x68e307f8, 0x7cf00103, 0xf7700558, 0x00000000}},  //   sond, järj, تاه_,\n  { {0x68e3028c, 0x7e7d0173, 0xb5fd0243, 0x00000000}},  //   pond, _masp, ješt,\n  { {0x290c002d, 0x38ab068f, 0x2d84012d, 0x00000000}},  //   _gida_, _mørk_, _šmek_,\n  { {0x61ed0e7f, 0x7afb16da, 0x7e7d0035, 0x00000000}},  //   _ayal, _khut, _oasp,\n  { {0x7e7d0059, 0x7cf00039, 0x61ed03cc, 0x00000000}},  //   _nasp, värm, _byal,\n  { {0xfdbe0044, 0x78a1141a, 0x60c500f6, 0x00000000}},  //   _আড্ড, _kolv, _bmhm,\n  { {0x43850054, 0xdddd0046, 0x61ed01aa, 0x00000000}},  //   _ملتق, _obsł, _dyal,\n  { {0x7afb01c2, 0x6d5d01f3, 0x7e7d005b, 0x00000000}},  //   _ohut, _aqsa, _basp,\n  { {0x7ea30004, 0x63b5012d, 0x00000000, 0x00000000}},  //   _sõpr, đanč,   ,\n  { {0x7c350036, 0x61ed0010, 0xde35007e, 0x00000000}},  // [30e0] _bezr, _gyal, рэсь,\n  { {0x7cf017ed, 0xddc6004f, 0x7e7d0051, 0x00000000}},  //   märk, _takž, _easp,\n  { {0x7afb17ee, 0x5f7603ec, 0x290c0614, 0x00000000}},  //   _bhut, _صادر, _rida_,\n  { {0xe9da102a, 0x7e7d096e, 0xbae501fb, 0x00000000}},  //   нке_, _gasp, ацій,\n  { {0x9e63007e, 0x290c008e, 0x78a1000c, 0x00000000}},  //   _увяд, _pida_, _bolv,\n  { {0xa91d0059, 0x7e7d016e, 0x290c006b, 0x00000000}},  //   _tržn, _zasp, _qida_,\n  { {0x290c06f4, 0x69dc0046, 0xf6e6026b, 0x00000000}},  //   _vida_, _śred, лцин,\n  { {0x7afb0051, 0x00000000, 0x00000000, 0x00000000}},  //   _ghut,   ,   ,\n  { {0x45d403f3, 0xbcfb0051, 0x290c0056, 0x00000000}},  //   ропс, _spéi, _tida_,\n  { {0xb5fd003b, 0x7ea30004, 0x63a805b7, 0x00000000}},  //   vešt, _lõpp, tydn,\n  { {0x61ed0022, 0x7d0e000a, 0x00000000, 0x00000000}},  //   _syal, _mibs,   ,\n  { {0x7d0e002b, 0x63a80190, 0xd83800ca, 0x00000000}},  //   _libs, rydn, _kočo_,\n  { {0x7e7d17ef, 0xe534007c, 0xf486007e, 0x00000000}},  //   _rasp, _тель, _буйн,\n  { {0x7e7d17f0, 0x00000000, 0x00000000, 0x00000000}},  //   _sasp,   ,   ,\n  { {0x387e17f1, 0x3ea200bb, 0x7e640bdc, 0x00000000}},  //   _matr_, _bokt_, ffip,\n  { {0x4ea4012b, 0x00000000, 0x00000000, 0x00000000}},  //   бруа,   ,   ,\n  { {0x6d5d0061, 0x7e7d003b, 0xdd94007c, 0x00000000}},  // [30f0] _qqsa, _vasp, баты,\n  { {0x7e7d10ed, 0x80d30044, 0x7afb0edd, 0x00000000}},  //   _wasp, _দীর্, _shut,\n  { {0x7e7d1750, 0xda1500ed, 0x7afb0082, 0x00000000}},  //   _tasp, адењ, _phut,\n  { {0x78a11341, 0xa3c300b9, 0x8f9a0097, 0x00000000}},  //   _solv, náší_, _סירי,\n  { {0x78a108d3, 0x3cea0087, 0x442c0022, 0x00000000}},  //   _polv, _fkbv_, kbd_,\n  { {0x07a50265, 0x6b830039, 0xe8f8007e, 0x00000000}},  //   иалн, ångs, глі_,\n  { {0x78a10219, 0x6447008e, 0x6d4d108a, 0x00000000}},  //   _volv, ójim, lraa,\n  { {0x6f0f0066, 0x78a10d29, 0x46a501ab, 0x00000000}},  //   _jicc, _wolv, раив,\n  { {0x6f0f0197, 0x6d4d0dde, 0x78a117f2, 0x00000000}},  //   _micc, nraa, _tolv,\n  { {0x99d4004b, 0x6f0f0026, 0x7eaa0161, 0x00000000}},  //   _اتفا, _licc, _výpi,\n  { {0xf7990123, 0x6e2d0725, 0x6d4d0dd7, 0x00000000}},  //   _جناب_, kbab, hraa,\n  { {0x6f0f17f3, 0x6d4d006c, 0x7cf003a9, 0x00000000}},  //   _nicc, kraa, tärk,\n  { {0x7ceb0276, 0x644e0325, 0x00000000, 0x00000000}},  //   nürs, óbic,   ,\n  { {0x6d4d01b5, 0x75290181, 0x00000000, 0x00000000}},  //   draa, mpez,   ,\n  { {0x6f0f17f4, 0x7eb100ea, 0x7d0e0146, 0x00000000}},  //   _bicc, _våpn, _ribs,\n  { {0xddc60046, 0x6e2d006a, 0x6f0f0207, 0x00000000}},  //   _takż, gbab, _cicc,\n  { {0x6f0f029a, 0x6d4d017d, 0x00000000, 0x00000000}},  // [3100] _dicc, graa,   ,\n  { {0x8c460088, 0x00000000, 0x00000000, 0x00000000}},  //   реже,   ,   ,\n  { {0x6f0f0779, 0x6e2d16a7, 0x7cf00614, 0x00000000}},  //   _ficc, bbab, näri,\n  { {0x6d4d0116, 0x8b230088, 0x7eb806c2, 0x00000000}},  //   braa, ідче, _bípe,\n  { {0x394017f5, 0x2d84009d, 0x798902f1, 0x00000000}},  //   éis_, _éme_, _crew,\n  { {0x79890036, 0x7cf000b0, 0x00000000, 0x00000000}},  //   _drew, käri,   ,\n  { {0xd90d06c6, 0xd6da0517, 0xbb4303e0, 0x00000000}},  //   ریم_, кти_, _мерк,\n  { {0x2f1c0010, 0xa5340088, 0x7989000a, 0x00000000}},  //   _míg_, бнич, _frew,\n  { {0x79890544, 0x6f040048, 0xd8380087, 0x00000000}},  //   _grew, imic, _hočm_,\n  { {0xd4060242, 0x00000000, 0x00000000, 0x00000000}},  //   ияни,   ,   ,\n  { {0x6f040119, 0xdddd0089, 0x7eb800fa, 0x00000000}},  //   kmic, _pasū, _zípe,\n  { {0xf2c70264, 0x20cd010a, 0x6f040107, 0x00000000}},  //   рсон, džia_, jmic,\n  { {0x6f0f0207, 0x6f0411e4, 0x442c0093, 0x00000000}},  //   _ricc, dmic, pbd_,\n  { {0x6d4d015c, 0x6f0f0207, 0x14f3007e, 0x00000000}},  //   vraa, _sicc, _дзіў,\n  { {0x6f0f0198, 0x04040044, 0x13a90014, 0x00000000}},  //   _picc, _শ্রী_, _منوی_,\n  { {0x5eb401be, 0x6f04016c, 0x6e2d01c3, 0x00000000}},  //   ойст, gmic, ubab,\n  { {0x6e2d01a3, 0x6f0f0010, 0xf1a4007e, 0x00000000}},  // [3110] rbab, _vicc, _дрэн,\n  { {0x6f0f0066, 0x6d4d01b5, 0xd83800d0, 0x00000000}},  //   _wicc, rraa, _neč_,\n  { {0x6f0f0afb, 0x6d4d17f6, 0x2ef201c3, 0x00000000}},  //   _ticc, sraa, blyf_,\n  { {0x6e9501b7, 0x6d4d00c7, 0x38b900f4, 0x00000000}},  //   _الحا, praa, _mère_,\n  { {0xda7804dd, 0xdced0166, 0xd83804eb, 0x00000000}},  //   рях_, svađ, _beč_,\n  { {0x7ceb0279, 0x31e40044, 0x00000000, 0x00000000}},  //   rürs, নেকশ,   ,\n  { {0x4738007e, 0x798901d6, 0x00000000, 0x00000000}},  //   ачыў_, _wrew,   ,\n  { {0x7cf003b6, 0x79890544, 0x24890276, 0x00000000}},  //   väri, _trew, _şam_,\n  { {0x798901f3, 0x00000000, 0x00000000, 0x00000000}},  //   _urew,   ,   ,\n  { {0x6f041144, 0x8b0800b9, 0x7cf017f7, 0x00000000}},  //   zmic, pořá, täri,\n  { {0x130a007c, 0x752901a2, 0x972300a1, 0x00000000}},  //   лной_, spez, _بہبو,\n  { {0xfbd200b6, 0x752917f8, 0x00000000, 0x00000000}},  //   לתי_, ppez,   ,\n  { {0xd46901f9, 0x86c40380, 0x00000000, 0x00000000}},  //   _биле_, _بينن,   ,\n  { {0x6023012b, 0x7cf017f9, 0xd7f10082, 0x00000000}},  //   здра, päri, _kỹ_,\n  { {0xf41200b6, 0x2d8b008e, 0x38b9009d, 0x00000000}},  //   _צפה_, _arce_, _gère_,\n  { {0xd7f10082, 0x93240464, 0x2d8b0087, 0x00000000}},  //   _mỹ_, _برون, _brce_,\n  { {0xbea317fa, 0xdce60089, 0x25bf17fb, 0x00000000}},  // [3120] чатк, _apkā, nzul_,\n  { {0xc5f200a3, 0x6f040091, 0xeb9a01ab, 0x00000000}},  //   לדן_, smic, лиз_,\n  { {0x7f860054, 0xd838012b, 0xdee601ee, 0x00000000}},  //   _الجن, _reč_, _гони,\n  { {0xba160055, 0x93bc001a, 0x7cf017fc, 0x00000000}},  //   ার্ড_, mbăt, järv,\n  { {0x2fd70167, 0xa3a90061, 0xd8380910, 0x00000000}},  //   _نوید_, _गॅस_, _peč_,\n  { {0x3ea7000d, 0x48e30265, 0x6d560058, 0x00000000}},  //   _într_, почв, muya,\n  { {0xd83817fd, 0xf1bf0047, 0x6d56011c, 0x00000000}},  //   _več_, zzá_, luya,\n  { {0x7e760943, 0xc6f8003b, 0x00000000, 0x00000000}},  //   neyp, јних_,   ,\n  { {0xe8fa01ee, 0xd8380087, 0x00000000, 0x00000000}},  //   _бла_, _teč_,   ,\n  { {0xb86601ef, 0x7c3e0232, 0x38b900f4, 0x00000000}},  //   _دارو, napr, _père_,\n  { {0xd25102fd, 0x7e7617fe, 0x6d56002d, 0x00000000}},  //   وند_, keyp, huya,\n  { {0x6d56011c, 0xddcd001a, 0x3f85000c, 0x00000000}},  //   kuya, neaţ, ælum_,\n  { {0x9c8301d9, 0x7cf0010f, 0x41e7007e, 0x00000000}},  //   ščit, läru, сіна,\n  { {0x9a290011, 0x6d560f9f, 0x7c3e010e, 0x00000000}},  //   _mươi_, duya, japr,\n  { {0x443e04be, 0x2d8b0825, 0xaab803d7, 0x00000000}},  //   mat_, _srce_, _आतंक,\n  { {0xd251026c, 0xff0701e1, 0x3ea00065, 0x00000000}},  //   _کچھ_, сягн, gjit_,\n  { {0x38ab0030, 0x22490281, 0xf2d40049, 0x00000000}},  // [3130] _kørt_, _idak_, _מעק_,\n  { {0x645a0006, 0xd99900a1, 0xbcfb009d, 0x00000000}},  //   ngti, ینات_, _apér,\n  { {0x443e001a, 0x68ea01c3, 0x00000000, 0x00000000}},  //   iat_, dofd,   ,\n  { {0x443e170b, 0x6d560058, 0x2d8b0107, 0x00000000}},  //   hat_, buya, _trce_,\n  { {0x443e0281, 0x5d33026c, 0x7cf0006c, 0x00000000}},  //   kat_, _رہائ, värv,\n  { {0x443e021e, 0x02c60204, 0xac180437, 0x00000000}},  //   jat_, _लग्न, _гору_,\n  { {0x443e17ff, 0xccf200a0, 0x3eb9000c, 0x00000000}},  //   dat_, _חכם_, _klst_,\n  { {0x224909e4, 0x645a063f, 0x00000000, 0x00000000}},  //   _ndak_, egti,   ,\n  { {0x443e0149, 0x99d40025, 0x3eb90009, 0x00000000}},  //   fat_, _فتكا, _mlst_,\n  { {0xe4c501fb, 0x20cd010a, 0x25ad0f5c, 0x00000000}},  //   ійни, džio_, ryel_,\n  { {0x7cf000b0, 0x25ad0173, 0x69cd0316, 0x00000000}},  //   märt, syel_, _देती,\n  { {0x7c3e0032, 0xf7700257, 0x420a0581, 0x00000000}},  //   zapr, _سام_, инно_,\n  { {0x443e020c, 0x7c3e0c2c, 0x38ab043e, 0x00000000}},  //   bat_, yapr, _ført_,\n  { {0x443e1800, 0x6ac60061, 0x53a50025, 0x00000000}},  //   cat_, _वष्र, _ومشك,\n  { {0xa91d1144, 0x6d4b1801, 0x7c3e1802, 0x00000000}},  //   _drži, ágan, vapr,\n  { {0x765b0011, 0x6d561803, 0x93bc001a, 0x00000000}},  //   nguy, tuya, rbăt,\n  { {0x27e0011f, 0x6296006a, 0x7c3e1804, 0x00000000}},  // [3140] ğini_, _inyo, tapr,\n  { {0x6284001a, 0x27e01805, 0x6286006c, 0x00000000}},  //   _haio, şini_, ldko,\n  { {0x7c3e0065, 0x62841806, 0xbea60216, 0x00000000}},  //   rapr, _kaio, _данк,\n  { {0x443e1807, 0x6286001f, 0x7c3e0089, 0x00000000}},  //   zat_, ndko, sapr,\n  { {0x628402d5, 0x443e12d9, 0x7c3e0006, 0x00000000}},  //   _maio, yat_, papr,\n  { {0x443e1808, 0xceb4006b, 0xed4301e1, 0x00000000}},  //   xat_, lkə_, _інсп,\n  { {0x443e1809, 0x6d44180a, 0x99490036, 0x00000000}},  //   vat_, lsia, góły_,\n  { {0x7c3c0756, 0x443e170b, 0x9a290011, 0x00000000}},  //   _herr, wat_, _tươi_,\n  { {0x443e120d, 0x7c3c021e, 0x628600ea, 0x00000000}},  //   tat_, _kerr, ddko,\n  { {0x6296180b, 0x443e088c, 0xc9d50014, 0x00000000}},  //   _anyo, uat_, _عملک,\n  { {0x7c3c008d, 0x6284002d, 0x4394003b, 0x00000000}},  //   _merr, _baio, чанс,\n  { {0x443e020c, 0x7c3c180c, 0x6d440ed1, 0x00000000}},  //   sat_, _lerr, ksia,\n  { {0x443e0475, 0x7792025a, 0xd25100a2, 0x00000000}},  //   pat_, _ریکا, ونگ_,\n  { {0x84380054, 0x443e0312, 0x629600d4, 0x00000000}},  //   _اكثر_, qat_, _enyo,\n  { {0x6d44007f, 0x6d4601c9, 0x224904be, 0x00000000}},  //   esia, _avka, _tdak_,\n  { {0x443c0374, 0x764001e5, 0x628400c4, 0x00000000}},  //   _hev_, namy, _gaio,\n  { {0x7c3c180d, 0xa91d0091, 0x21290133, 0x00000000}},  // [3150] _berr, _trži, _utah_,\n  { {0x7c3c0219, 0x7640180e, 0x6284002d, 0x00000000}},  //   _cerr, hamy, _zaio,\n  { {0x443c0007, 0x6d4401b1, 0x7eaa0161, 0x00000000}},  //   _mev_, asia, _výpr,\n  { {0x0f7a007b, 0x7cf003a2, 0x443c0142, 0x00000000}},  //   _פארב, färs, _lev_,\n  { {0x7c3c0917, 0x6b8e180f, 0xdb050010, 0x00000000}},  //   _ferr, _erbg, gyhá,\n  { {0x7c3c002d, 0x3f810065, 0x7aeb1810, 0x00000000}},  //   _gerr, _kshu_, sogt,\n  { {0x7d1d01a3, 0xe7390057, 0x78a80107, 0x00000000}},  //   _huss, щей_, _dodv,\n  { {0x7c3c022b, 0x7d1d0112, 0x7c25005b, 0x00000000}},  //   _zerr, _kuss, lchr,\n  { {0x7d1d00b0, 0x62841290, 0xa43d0451, 0x00000000}},  //   _juss, _raio, льнi,\n  { {0x6e3d0365, 0x7d1d010f, 0x6aa900b5, 0x00000000}},  //   _lesb, _muss, _hoef,\n  { {0x443c1811, 0x7d1d01bc, 0x62840026, 0x00000000}},  //   _dev_, _luss, _paio,\n  { {0x6d440bd0, 0x6e3d1742, 0x443c0066, 0x00000000}},  //   ysia, _nesb, _eev_,\n  { {0x361a0476, 0x5ec30055, 0x443c1812, 0x00000000}},  //   _הונד, ্কাই, _fev_,\n  { {0x7e6f1813, 0x6abb00f6, 0xd8380087, 0x00000000}},  //   _abcp, _lluf, _poči_,\n  { {0x7d1d1814, 0xdfd20025, 0x6abb0190, 0x00000000}},  //   _auss, رير_, _oluf,\n  { {0x7c3c0181, 0x7d15001e, 0x7d1d006c, 0x00000000}},  //   _serr, _aizs, _buss,\n  { {0x7c3c0211, 0x6d44010a, 0x6e3d022b, 0x00000000}},  // [3160] _perr, usia, _desb,\n  { {0x7e6f001c, 0x6e240197, 0x4425013e, 0x00000000}},  //   _ebcp, scib, ncl_,\n  { {0x6d44085d, 0x44270638, 0x7d1d1815, 0x00000000}},  //   ssia, _mfn_, _euss,\n  { {0x64411816, 0x7c3c002b, 0x13ae0044, 0x00000000}},  //   hali, _werr, _ছেড়,\n  { {0x44271817, 0x7d1d01a2, 0xe0df00f6, 0x00000000}},  //   _ofn_, _guss, cròs_,\n  { {0x64410da1, 0x6f1e00ee, 0x69c202ae, 0x00000000}},  //   jali, _kupc, rzoe,\n  { {0xf09300b6, 0xa3cb013d, 0x6abb10c5, 0x00000000}},  //   תנו_, _रेल_, _fluf,\n  { {0x443c0089, 0x6441006c, 0x7d1d00a9, 0x00000000}},  //   _sev_, eali, _yuss,\n  { {0x644105b7, 0x44271818, 0x7ae31819, 0x00000000}},  //   fali, _bfn_, énte,\n  { {0x6441181a, 0xb21b000c, 0x442700d2, 0x00000000}},  //   gali, rdæm, _cfn_,\n  { {0x81aa0055, 0x39460b33, 0x442711a8, 0x00000000}},  //   _গেল_, lsos_, _dfn_,\n  { {0x39461505, 0x64410103, 0x3267007c, 0x00000000}},  //   osos_, aali, чтов,\n  { {0x6441181b, 0x443c001e, 0xfbc40044, 0x00000000}},  //   bali, _tev_, ্থিত,\n  { {0x64a3008b, 0x20cd07e4, 0x00000000, 0x00000000}},  //   _пача, mžik_,   ,\n  { {0x61e4033f, 0x7d1d054f, 0x2d82002d, 0x00000000}},  //   _exil, _suss, _aske_,\n  { {0x7d1d001c, 0x33db009b, 0x394612ea, 0x00000000}},  //   _puss, _לחוד, ksos_,\n  { {0x7c25181c, 0x7b03010e, 0x7cf000f8, 0x00000000}},  // [3170] tchr, nõue, värr,\n  { {0xad9b008e, 0xc1bc009b, 0x6aa900d9, 0x00000000}},  //   _azúc, _למחש, _soef,\n  { {0x2d820263, 0x7c25181d, 0x7d150047, 0x00000000}},  //   _eske_, rchr, _vizs,\n  { {0x7c2504e5, 0x7d1d0100, 0x6441181e, 0x00000000}},  //   schr, _tuss, zali,\n  { {0x64410263, 0x6934181f, 0x00000000, 0x00000000}},  //   yali, енчу,   ,\n  { {0x6441005f, 0x9ce700a1, 0xec290025, 0x00000000}},  //   xali, _روزے_, _ذكرى_,\n  { {0x64410004, 0x238c00b9, 0x6aa91820, 0x00000000}},  //   vali, _něj_, _toef,\n  { {0x6441105e, 0x7e6d0026, 0x00000000, 0x00000000}},  //   wali, nfap,   ,\n  { {0x64411821, 0x26c3010a, 0xc6480025, 0x00000000}},  //   tali, ėjo_, سجيل_,\n  { {0xf34902dc, 0x644100e5, 0x3a3f0112, 0x00000000}},  //   опол_, uali, _heup_,\n  { {0x644109fb, 0x2242002b, 0x68e40048, 0x00000000}},  //   rali, takk_, éide,\n  { {0x6441006a, 0xe29a1822, 0x291f0020, 0x00000000}},  //   sali, цам_, _kuua_,\n  { {0x64411616, 0xf65200b3, 0x442700f8, 0x00000000}},  //   pali, _יצא_, _tfn_,\n  { {0xd838012d, 0x6441013f, 0x00000000, 0x00000000}},  //   _foču_, qali,   ,\n  { {0xdce401d5, 0x291f006c, 0xbef90061, 0x00000000}},  //   stiċ, _luua_, ंतून_,\n  { {0x61f600b0, 0x61e4002d, 0x2d820022, 0x00000000}},  //   _tyyl, _txil, _pske_,\n  { {0x65690089, 0xf1bf1823, 0x3eab005b, 0x00000000}},  // [3180] nteh, lcán_, _doct_,\n  { {0x315700bd, 0x24870263, 0xec770140, 0x00000000}},  //   _קיין_, _janm_, мпу_,\n  { {0x24870263, 0x6569010e, 0x00000000, 0x00000000}},  //   _manm_, hteh,   ,\n  { {0x39460943, 0x212001a3, 0x24870173, 0x00000000}},  //   tsos_, _kuih_, _lanm_,\n  { {0x397a06f1, 0x39460006, 0x3a261824, 0x00000000}},  //   تصاد_, usos_, rcop_,\n  { {0x394603d1, 0x3a261825, 0x2240000c, 0x00000000}},  //   rsos_, scop_, _leik_,\n  { {0x39460ca7, 0xdce40213, 0xdb8300e3, 0x00000000}},  //   ssos_, ntič, _игри,\n  { {0x81c40055, 0x38c806c6, 0x2d8008e7, 0x00000000}},  //   _এখন_, _کاری_, owie_,\n  { {0x786601be, 0x248701aa, 0xe5c6007c, 0x00000000}},  //   _оказ, _banm_, ьско,\n  { {0xdce400ee, 0x7eb100ea, 0xd8380087, 0x00000000}},  //   ktič, _håpt, _poču_,\n  { {0xb8651826, 0x61fa006b, 0x2487000a, 0x00000000}},  //   _سالو, ətli, _danm_,\n  { {0x9294008b, 0x212005cd, 0xe6930025, 0x00000000}},  //   ваюц, _buih_, _للمد,\n  { {0x24870263, 0xf5b6004b, 0xf1bf008e, 0x00000000}},  //   _fanm_, _تصاد, acán_,\n  { {0xfd4f0011, 0x2d800036, 0x00000000, 0x00000000}},  //   _triế, dwie_,   ,\n  { {0xc588001d, 0x22400443, 0x00000000, 0x00000000}},  //   _hồ_, _feik_,   ,\n  { {0x24871827, 0x6e3601d6, 0x00000000, 0x00000000}},  //   _zanm_, gbyb,   ,\n  { {0xfd1f1828, 0x00000000, 0x00000000, 0x00000000}},  // [3190] _quì_,   ,   ,\n  { {0xc5880011, 0x00000000, 0x00000000, 0x00000000}},  //   _mồ_,   ,   ,\n  { {0xc5880011, 0x50d4006d, 0xf4290052, 0x00000000}},  //   _lồ_, _جزير, lkää_,\n  { {0x527c0049, 0x0dcb0cb3, 0x00000000, 0x00000000}},  //   ַנוא, _дуги_,   ,\n  { {0x5e56007b, 0x39490051, 0x00000000, 0x00000000}},  //   _אירע_, éas_,   ,\n  { {0x6f0d016e, 0xb06600b0, 0x6b830190, 0x00000000}},  //   lmac, _ikää, ængs,\n  { {0x66020e49, 0x7ceb1829, 0x26cf00c4, 0x00000000}},  //   _azok, kürz, _pmgo_,\n  { {0xc5880011, 0xf4060044, 0x6569032e, 0x00000000}},  //   _bồ_, োডার_, tteh,\n  { {0x9875007e, 0x2240182a, 0x78880089, 0x00000000}},  //   _плац, _reik_, _būvē,\n  { {0x6f0d010f, 0x6569182b, 0x660201ee, 0x00000000}},  //   hmac, rteh, _dzok,\n  { {0x6569001f, 0x6f0d00b5, 0xccf2009b, 0x00000000}},  //   steh, kmac, רכי_,\n  { {0x87b6007b, 0xe7b60049, 0x60d5065e, 0x00000000}},  //   _אלעס_, _אהער_, eizm,\n  { {0x463a00bd, 0xf1bf0051, 0xa3d40164, 0x00000000}},  //   _זענע, scán_, _सेठ_,\n  { {0x73e50265, 0x6721182c, 0x3075007c, 0x00000000}},  //   _полз, _kulj, кусс,\n  { {0x91030081, 0x2d8f0190, 0x21200093, 0x00000000}},  //   упре, ægen_, _wuih_,\n  { {0x6721182d, 0x2d800036, 0x6d56005b, 0x00000000}},  //   _mulj, twie_, trya,\n  { {0xdce40340, 0x672101d5, 0xf3890011, 0x00000000}},  // [31a0] stič, _lulj, _hả_,\n  { {0x9f860245, 0x60d514a8, 0x6c860025, 0x00000000}},  //   _згод, cizm, علام,\n  { {0x6e46025f, 0x103b009b, 0x26df0166, 0x00000000}},  //   _пенз, _מגיע, knuo_,\n  { {0xe6070379, 0x6da60aa2, 0x00000000, 0x00000000}},  //   _مش_, _зима,   ,\n  { {0xd6d0089d, 0xda650025, 0x7ae3008e, 0x00000000}},  //   یقت_, ضاني, énta,\n  { {0x98a30057, 0x67210091, 0xc5880082, 0x00000000}},  //   личе, _bulj, _rồ_,\n  { {0x6602182e, 0xfce3004c, 0x00000000, 0x00000000}},  //   _szok, _соро,   ,\n  { {0x67210243, 0x26df0166, 0x7d1b00f6, 0x00000000}},  //   _dulj, gnuo_, _èusc,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x07a6008b, 0x6721182f, 0xf3890082, 0x00000000}},  //   _пазн, _fulj, _bả_,\n  { {0xf389001d, 0x67211830, 0x9259007e, 0x00000000}},  //   _cả_, _gulj, мант_,\n  { {0x95ca05a5, 0x66e302dc, 0xf4290052, 0x00000000}},  //   _нула_, _йоха, tkää_,\n  { {0x67210e00, 0xe0df00d4, 0x00000000, 0x00000000}},  //   _zulj, bsòl_,   ,\n  { {0x6f0d00bb, 0x13f4005e, 0x645c1831, 0x00000000}},  //   wmac, _изля, órid,\n  { {0x6f0d010f, 0xf3890082, 0x00000000, 0x00000000}},  //   tmac, _gả_,   ,\n  { {0x25e70061, 0x60d50b30, 0x752200e7, 0x00000000}},  //   _जखमी_, sizm, _kuoz,\n  { {0x75220006, 0x00000000, 0x00000000, 0x00000000}},  // [31b0] _juoz,   ,   ,\n  { {0x6f0d054e, 0x26df04eb, 0x00000000, 0x00000000}},  //   smac, znuo_,   ,\n  { {0xc4d3007b, 0xf3890011, 0x00000000, 0x00000000}},  //   נגע_, _xả_,   ,\n  { {0x7642004a, 0x00000000, 0x00000000, 0x00000000}},  //   _neoy,   ,   ,\n  { {0x67211832, 0x79820a81, 0x00000000, 0x00000000}},  //   _sulj, gwow,   ,\n  { {0x3ea9002b, 0xdb2301ef, 0x9dd6009b, 0x00000000}},  //   ljat_, _موسی, _יורק_,\n  { {0x26df0107, 0xf09401ce, 0x07a50c4e, 0x00000000}},  //   tnuo_, טנס_, тайн,\n  { {0x3ea90065, 0x00000000, 0x00000000, 0x00000000}},  //   njat_,   ,   ,\n  { {0xceb4061e, 0x26df04eb, 0xf3890082, 0x00000000}},  //   טיק_, rnuo_, _sả_,\n  { {0x26df0166, 0x752200d9, 0x249c00e5, 0x00000000}},  //   snuo_, _duoz, _cnvm_,\n  { {0x3fdc0044, 0x00000000, 0x00000000, 0x00000000}},  //   _ধর্ষ,   ,   ,\n  { {0xe2970454, 0xf3890011, 0x3ea90066, 0x00000000}},  //   ваю_, _vả_, jjat_,\n  { {0xcb12007b, 0x20d601fb, 0x3ea90066, 0x00000000}},  //   ילט_, вівс, djat_,\n  { {0xf3890011, 0x3ea9082f, 0x00000000, 0x00000000}},  //   _tả_, ejat_,   ,\n  { {0x10a3003b, 0x7eb810af, 0xddca0036, 0x00000000}},  //   ширн, _hípi, łoży,\n  { {0x20cd0006, 0x3ea90ea9, 0x00000000, 0x00000000}},  //   džiu_, gjat_,   ,\n  { {0x6443008a, 0xe0d20014, 0xa7fc005a, 0x00000000}},  // [31c0] _keni, _نزد_, _acıl,\n  { {0x6443020c, 0x3ea900b0, 0x2004013f, 0x00000000}},  //   _jeni, ajat_, əmin_,\n  { {0x6443020c, 0x394d0285, 0xaa460fd8, 0x00000000}},  //   _meni, _aves_, веел,\n  { {0x79820036, 0x656b0066, 0xdb210010, 0x00000000}},  //   twow, _oqgh, átás,\n  { {0x20cd016c, 0x3eab0161, 0x00000000, 0x00000000}},  //   rživ_, žitá_,   ,\n  { {0x64430065, 0x79820036, 0x00000000, 0x00000000}},  //   _neni, rwow,   ,\n  { {0xbb430256, 0x394d1833, 0x00000000, 0x00000000}},  //   _веск, _eves_,   ,\n  { {0x7d1c00f2, 0xd6d70783, 0x7e64010e, 0x00000000}},  //   _hirs, кты_, ngip,\n  { {0x6443011f, 0x2d9201aa, 0x2b5a00f6, 0x00000000}},  //   _beni, nvye_, lrpc_,\n  { {0x64431834, 0xd90e0167, 0xe7ed006e, 0x00000000}},  //   _ceni, _بیت_, _चुका_,\n  { {0x7d1c01c5, 0x6443114e, 0x3dc9002b, 0x00000000}},  //   _mirs, _deni, zzaw_,\n  { {0x7ae217a9, 0x394d00f4, 0x7d1c116b, 0x00000000}},  //   nnot, _yves_, _lirs,\n  { {0xb35606c6, 0x7ae20052, 0x7d1c00d9, 0x00000000}},  //   ریکا_, inot, _oirs,\n  { {0x64431835, 0x00000000, 0x00000000, 0x00000000}},  //   _geni,   ,   ,\n  { {0x64480091, 0x3ea91836, 0x251b00a3, 0x00000000}},  //   madi, tjat_, _קווא,\n  { {0x7d1c1837, 0x644304a7, 0xaf340014, 0x00000000}},  //   _airs, _zeni, شرفت,\n  { {0x7ae2004f, 0x644301f6, 0x3ea90bf4, 0x00000000}},  // [31d0] dnot, _yeni, rjat_,\n  { {0x3e53001d, 0x628f00d9, 0x27e9001a, 0x00000000}},  //   ệt_, ldco, şani_,\n  { {0x7d1c0101, 0x5a35005e, 0x442e1838, 0x00000000}},  //   _dirs, гнет, _mff_,\n  { {0x9415007b, 0x628f1768, 0x64481839, 0x00000000}},  //   אַנד_, ndco, hadi,\n  { {0x7d1c0038, 0x442e0038, 0xd5a6031d, 0x00000000}},  //   _firs, _off_, _اف_,\n  { {0x6448183a, 0x7c3406e7, 0x6f1d01c3, 0x00000000}},  //   jadi, _верх, _hisc,\n  { {0xccf2009b, 0x64430023, 0x8af9006b, 0x00000000}},  //   _לכך_, _reni, _atəş,\n  { {0xb5fd0089, 0x6e2d01a3, 0x7ae200ca, 0x00000000}},  //   egša, ncab, cnot,\n  { {0x6d4d0158, 0xc867003b, 0x644800fa, 0x00000000}},  //   nsaa, _атеи, fadi,\n  { {0x6448049a, 0x64430065, 0x6f1d0bad, 0x00000000}},  //   gadi, _qeni, _lisc,\n  { {0x6443000d, 0x442e0045, 0x00000000, 0x00000000}},  //   _veni, _dff_,   ,\n  { {0x6443001f, 0x68ed002a, 0x442e0061, 0x00000000}},  //   _weni, éadf, _eff_,\n  { {0x644304bd, 0x6448000b, 0x645c029d, 0x00000000}},  //   _teni, badi, óric,\n  { {0x6f1d002a, 0xa3d40164, 0x6d4d0007, 0x00000000}},  //   _aisc, _सेव_, dsaa,\n  { {0xd36e0025, 0x7ae20784, 0x6d4d01d6, 0x00000000}},  //   _فهو_, ynot, esaa,\n  { {0x6d4d0007, 0x63bc05b7, 0x7d1c01c5, 0x00000000}},  //   fsaa, ørne, _sirs,\n  { {0xed5701f9, 0x7e640181, 0x7ae2183b, 0x00000000}},  // [31e0] лот_, rgip, vnot,\n  { {0x7ff60025, 0x7ae21733, 0x6f1d0e93, 0x00000000}},  //   _مسجا, wnot, _eisc,\n  { {0x7ae20e40, 0x7d1c1104, 0xf4250044, 0x00000000}},  //   tnot, _virs, _মজার_,\n  { {0x64480aab, 0x6e2d1003, 0xeafa023c, 0x00000000}},  //   zadi, ccab, ررات_,\n  { {0x2d8400f4, 0x7d1c0030, 0x7ae2142e, 0x00000000}},  //   _ème_, _tirs, rnot,\n  { {0x7ae216ae, 0x2cb100ca, 0x644800fa, 0x00000000}},  //   snot, _gozd_, xadi,\n  { {0x6448010a, 0x9cd7019b, 0xe3a70464, 0x00000000}},  //   vadi, _עולה_, _ار_,\n  { {0x6448183c, 0x65aa003b, 0x6f1d0d62, 0x00000000}},  //   wadi, етог_, _xisc,\n  { {0x6448183d, 0x442c00e5, 0xceb300b3, 0x00000000}},  //   tadi, tcd_, מיה_,\n  { {0x6560141b, 0x297b0049, 0x25a00066, 0x00000000}},  //   rumh, _אטמא, _ġild_,\n  { {0x6448183e, 0xd6d90036, 0x442e183f, 0x00000000}},  //   radi, bił_, _vff_,\n  { {0x6448005f, 0x291e1840, 0xd6d90036, 0x00000000}},  //   sadi, _hita_, cił_,\n  { {0x6f1d0d60, 0x291e0149, 0x628f0857, 0x00000000}},  //   _risc, _kita_, rdco,\n  { {0x4394005e, 0xf1c20059, 0x93f5006b, 0x00000000}},  //   _вакс, dišč_, çəcə,\n  { {0x14d700a0, 0x291e0020, 0x4034007c, 0x00000000}},  //   _גוגל_, _mita_, сесс,\n  { {0xf1a70264, 0x291e01c9, 0x6d4d0dde, 0x00000000}},  //   _брон, _lita_, tsaa,\n  { {0x2d580194, 0x6e2d01a3, 0x272a0082, 0x00000000}},  // [31f0] лить_, rcab, _lùn_,\n  { {0x6d4d0007, 0x224b0061, 0x6e2d0211, 0x00000000}},  //   rsaa, lack_, scab,\n  { {0x6d4d0368, 0x6f1d010f, 0xbc070242, 0x00000000}},  //   ssaa, _tisc, учай,\n  { {0x6f1d002a, 0x69cb010f, 0x291e0d49, 0x00000000}},  //   _uisc, tzge, _aita_,\n  { {0x18690a27, 0x291e074d, 0x00000000, 0x00000000}},  //   вали_, _bita_,   ,\n  { {0xd6d90036, 0x224b1841, 0x2d99008e, 0x00000000}},  //   wił_, hack_, _irse_,\n  { {0x291e0065, 0xa3d4006e, 0x00000000, 0x00000000}},  //   _dita_, _सेल_,   ,\n  { {0xca480054, 0x2d99016c, 0x291e1842, 0x00000000}},  //   _ملفه_, _krse_, _eita_,\n  { {0x7afb12ad, 0x291e03d1, 0x7ac4003b, 0x00000000}},  //   _ikut, _fita_, _усре,\n  { {0x291e096e, 0xa509003b, 0x04b5004d, 0x00000000}},  //   _gita_, ђена_, рсия,\n  { {0x645c0181, 0x7ae900ea, 0xaab90061, 0x00000000}},  //   ória, _kjet, _आवाक,\n  { {0x95d9007c, 0xb6050618, 0x8c1a009b, 0x00000000}},  //   _идет_, _pišč, כותי,\n  { {0x7afb000b, 0x7ae90065, 0x2611007d, 0x00000000}},  //   _mkut, _mjet, देशी_,\n  { {0x7ae90182, 0x7eb800f6, 0x27e90035, 0x00000000}},  //   _ljet, _lípt, şanu_,\n  { {0x2d990951, 0x7afb0c07, 0x7ae900b9, 0x00000000}},  //   _arse_, _okut, _ojet,\n  { {0x5de6026b, 0x7ae90023, 0xb60511a5, 0x00000000}},  //   ажба, _njet, _tišč,\n  { {0x1c461843, 0xf8c50309, 0x00000000, 0x00000000}},  // [3200] инам, वसाय,   ,\n  { {0x7ae90efc, 0x3b96003b, 0x91bb009b, 0x00000000}},  //   _ajet, ијет, _סמיי,\n  { {0x2d8b0207, 0x60dc0058, 0x2d9901c3, 0x00000000}},  //   _esce_, mirm, _erse_,\n  { {0x291e1844, 0x2bda001c, 0x60dc005a, 0x00000000}},  //   _sita_, _येणा, lirm,\n  { {0x291e023a, 0x7ae90182, 0xed57005e, 0x00000000}},  //   _pita_, _djet, _коя_,\n  { {0xd8f70088, 0x60dc0058, 0xd90d00a6, 0x00000000}},  //   анії_, nirm, فیق_,\n  { {0x291e01f4, 0x3cf50061, 0x7ae90023, 0x00000000}},  //   _vita_, ्तरे_, _fjet,\n  { {0x12c10055, 0x7ae91845, 0x7eb80010, 0x00000000}},  //   _উদ্দ, _gjet, _típu,\n  { {0x2bda0061, 0x291e011c, 0xe4a6007c, 0x00000000}},  //   _येता, _tita_, арно,\n  { {0xd49a01f9, 0x291e001a, 0x27fe0062, 0x00000000}},  //   три_, _uita_, _tytn_,\n  { {0x60dc038c, 0x929500ec, 0x224b14f9, 0x00000000}},  //   dirm, банц, tack_,\n  { {0x81c30089, 0x56930088, 0x63ba1846, 0x00000000}},  //   ņēmi, _маєт, rytn,\n  { {0x60dc11be, 0xd5341847, 0x3a240022, 0x00000000}},  //   firm, _افتخ, _mgmp_,\n  { {0x55bb009b, 0x224b01a2, 0x332700d9, 0x00000000}},  //   _במדו, sack_, _funx_,\n  { {0x2327045e, 0xb5e80055, 0xd4370049, 0x00000000}},  //   _који_, _পরিচ, _דרוק_,\n  { {0x61ed002d, 0x67281848, 0x60dc0009, 0x00000000}},  //   _txal, _mudj, airm,\n  { {0x60dc008e, 0x5d99007e, 0x3209014a, 0x00000000}},  // [3210] birm, ыкаў_, _uzay_,\n  { {0x7afb0387, 0x7ae90209, 0x60dc1849, 0x00000000}},  //   _skut, _sjet, cirm,\n  { {0x443e010f, 0x68f8184a, 0x7ae90065, 0x00000000}},  //   ibt_, dovd, _pjet,\n  { {0x8f9a009b, 0x66e800b9, 0x212905cd, 0x00000000}},  //   _עירי, děko, _kuah_,\n  { {0x7ae9105b, 0xe9f80088, 0x0dcb01e4, 0x00000000}},  //   _vjet, анці_, _руни_,\n  { {0xe8f802f0, 0x672800b0, 0x26c60085, 0x00000000}},  //   алі_, _budj, _aloo_,\n  { {0x7ae9008d, 0x6728016c, 0x7b03006c, 0x00000000}},  //   _tjet, _cudj, nõuk,\n  { {0x7afb0020, 0x7ae911b9, 0x645c000c, 0x00000000}},  //   _ukut, _ujet, órin,\n  { {0x60dc006b, 0x2eaa0049, 0xb93400e2, 0x00000000}},  //   yirm, רשפּ, _метј,\n  { {0x7af90e9c, 0x21210022, 0x7b2c0276, 0x00000000}},  //   lowt, _nihh_, _oğul,\n  { {0x6728184b, 0x80ab0164, 0x60dc005d, 0x00000000}},  //   _gudj, ञाने, virm,\n  { {0x2129027e, 0x1b7a0049, 0xe1ff004a, 0x00000000}},  //   _buah_, נטרע, rgón_,\n  { {0x60dc184c, 0x443e0039, 0xd36e0014, 0x00000000}},  //   tirm, bbt_, وهی_,\n  { {0x7af90126, 0x753b00f6, 0x3f9a012d, 0x00000000}},  //   howt, mpuz, _prpu_,\n  { {0xbea600e3, 0x60dc000c, 0x4f95019d, 0x00000000}},  //   бавк, rirm, орту,\n  { {0xc24601e0, 0x00000000, 0x00000000, 0x00000000}},  //   _уник,   ,   ,\n  { {0x5e3300a1, 0x60dc0058, 0x93bc001a, 0x00000000}},  // [3220] سّلا, pirm, scăt,\n  { {0x30860025, 0x00000000, 0x00000000, 0x00000000}},  //   _الدف,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6286184d, 0x248501a2, 0x799b01d6, 0x00000000}},  //   neko, helm_, _bruw,\n  { {0x6f04010f, 0x67280243, 0x38cb0014, 0x00000000}},  //   mlic, _sudj, گانی_,\n  { {0x6f04184e, 0x6286006c, 0x6728184f, 0x00000000}},  //   llic, heko, _pudj,\n  { {0x68f801d5, 0x62860056, 0x38cb02fd, 0x00000000}},  //   rovd, keko, دانی_,\n  { {0x6f04001f, 0x62860209, 0x9f5f009d, 0x00000000}},  //   nlic, jeko, érée_,\n  { {0x645c1850, 0x6286002d, 0xceb4006b, 0x00000000}},  //   ório, deko, mməd_,\n  { {0x67281851, 0x6f04010f, 0x443e010f, 0x00000000}},  //   _tudj, hlic, ubt_,\n  { {0x6f041852, 0x443e1853, 0x224900ab, 0x00000000}},  //   klic, rbt_, _peak_,\n  { {0x6286037f, 0xbc1b0049, 0xd5a402fd, 0x00000000}},  //   geko, טויש, _ولای,\n  { {0x6f04001f, 0xc05b01fb, 0x7ae3008e, 0x00000000}},  //   dlic, лів_, énti,\n  { {0xf61700b6, 0x22491854, 0x00000000, 0x00000000}},  //   _החדש_, _weak_,   ,\n  { {0x6f04010f, 0x6286002d, 0xf48700a2, 0x00000000}},  //   flic, beko, _دانی,\n  { {0x6f041855, 0x66021856, 0x644a1857, 0x00000000}},  //   glic, _kyok, _hefi,\n  { {0xdced0161, 0xd04e006b, 0x6b9c0146, 0x00000000}},  // [3230] stač, hibə, _arrg,\n  { {0x644a01ee, 0x6f04004a, 0x00000000, 0x00000000}},  //   _jefi, alic,   ,\n  { {0x66020249, 0x6d460066, 0xebd900e2, 0x00000000}},  //   _lyok, _ewka, јдеш_,\n  { {0x6f04001c, 0x99990256, 0x799b06f6, 0x00000000}},  //   clic, икет_, _pruw,\n  { {0x64580059, 0x660200e7, 0x00000000, 0x00000000}},  //   _odvi, _nyok,   ,\n  { {0x47590265, 0x62861858, 0x98a200e3, 0x00000000}},  //   ария_, zeko, дише,\n  { {0xe7390057, 0x6602011c, 0x16a9007c, 0x00000000}},  //   шей_, _ayok, ивки_,\n  { {0x2ee9018e, 0x64580f44, 0x66020173, 0x00000000}},  //   nnaf_, _advi, _byok,\n  { {0x644a0109, 0x785b0089, 0x66020045, 0x00000000}},  //   _befi, tāvē, _cyok,\n  { {0x644a1859, 0x753b185a, 0xe6c4012d, 0x00000000}},  //   _cefi, rpuz, ćešć,\n  { {0x644a185b, 0x6286022b, 0xdce40091, 0x00000000}},  //   _defi, teko, stić,\n  { {0x24850191, 0x6458185c, 0x6722004a, 0x00000000}},  //   selm_, _edvi, _gioj,\n  { {0x412a0057, 0x349500ed, 0x236501ee, 0x00000000}},  //   рого_, _мадр, sulj_,\n  { {0x644a000c, 0xa06a01fc, 0x7e6f01f3, 0x00000000}},  //   _gefi, јава_, _accp,\n  { {0x64410343, 0x6f04001f, 0x68e4002a, 0x00000000}},  //   mbli, tlic, éidi,\n  { {0xee3a00d7, 0x7523010f, 0xf412009b, 0x00000000}},  //   рна_, _hinz, _קפה_,\n  { {0x6f04001f, 0x764b0047, 0x75230066, 0x00000000}},  // [3240] rlic, _megy, _kinz,\n  { {0x764b0047, 0x7c650025, 0x75230066, 0x00000000}},  //   _legy, كامل, _jinz,\n  { {0x61fb01d5, 0x7523185d, 0x44270203, 0x00000000}},  //   żult, _minz, _mgn_,\n  { {0x764b185e, 0xaf3500a1, 0xbebb01d6, 0x00000000}},  //   _negy, _ڈویژ, _hiën,\n  { {0x67220211, 0x442709ea, 0x2d8f0030, 0x00000000}},  //   _rioj, _ogn_, æget_,\n  { {0x764b00ea, 0x4427185f, 0x752301f3, 0x00000000}},  //   _aegy, _ngn_, _ninz,\n  { {0x764b02cc, 0x644a1860, 0x68ed0051, 0x00000000}},  //   _begy, _refi, éada,\n  { {0x35b400d7, 0x442702d8, 0x644a0035, 0x00000000}},  //   збир, _agn_, _sefi,\n  { {0x94aa01f9, 0xd04e005f, 0x2db70049, 0x00000000}},  //   атна_, sibə, ַלטן_,\n  { {0x2cb81861, 0x75231862, 0x7c3b016c, 0x00000000}},  //   _jord_, _cinz, _đurk,\n  { {0x2cb80239, 0x44270169, 0x644a000c, 0x00000000}},  //   _mord_, _dgn_, _vefi,\n  { {0x7523001f, 0x04fc0055, 0x050a0044, 0x00000000}},  //   _einz, ীদের_, রদের_,\n  { {0x64410409, 0x75231863, 0x66de0089, 0x00000000}},  //   bbli, _finz, lūko,\n  { {0x64580018, 0x75231864, 0x00000000, 0x00000000}},  //   _udvi, _ginz,   ,\n  { {0x7659005b, 0x00000000, 0x00000000, 0x00000000}},  //   _ydwy,   ,   ,\n  { {0x442700bb, 0x00000000, 0x00000000, 0x00000000}},  //   _zgn_,   ,   ,\n  { {0x2cb81865, 0x00000000, 0x00000000, 0x00000000}},  // [3250] _bord_,   ,   ,\n  { {0x75231866, 0x2cb80133, 0xf1bf004a, 0x00000000}},  //   _xinz, _cord_, scás_,\n  { {0xfe7000a1, 0x2fc500ea, 0x00000000, 0x00000000}},  //   عدہ_, ølgd_,   ,\n  { {0x6ffa009b, 0x00000000, 0x00000000, 0x00000000}},  //   _להתפ,   ,   ,\n  { {0x6441018e, 0xd9451867, 0x00000000, 0x00000000}},  //   ybli, чели,   ,\n  { {0x752b1868, 0x00000000, 0x00000000, 0x00000000}},  //   _rugz,   ,   ,\n  { {0x3eb900b5, 0x75231869, 0x8ae70088, 0x00000000}},  //   _kost_, _rinz, _діал,\n  { {0xc9870265, 0x7e6d020c, 0x752300e7, 0x00000000}},  //   _музи, ngap, _sinz,\n  { {0x3eb9124f, 0x95550025, 0x44270093, 0x00000000}},  //   _most_, أخبا, _pgn_,\n  { {0xe7330054, 0x3eb900ab, 0x6441186a, 0x00000000}},  //   _قصص_, _lost_, ubli,\n  { {0x64411440, 0xe29a025f, 0xf7700025, 0x00000000}},  //   rbli, бан_, _لان_,\n  { {0x2907002b, 0x752301a2, 0x3eb90089, 0x00000000}},  //   llna_, _winz, _nost_,\n  { {0x27310011, 0x7aeb0051, 0x7523186b, 0x00000000}},  //   _hán_, ingt, _tinz,\n  { {0x9742037e, 0x659a012f, 0x859a009b, 0x00000000}},  //   šćen, _לינק, _לשנו,\n  { {0x3f570f68, 0x3eb9186c, 0x8fa300ed, 0x00000000}},  //   għu_, _bost_, наре,\n  { {0x3eb900ab, 0x273111ea, 0x2cb80584, 0x00000000}},  //   _cost_, _mán_, _sord_,\n  { {0x3eb901ca, 0x273108cc, 0x4d66007e, 0x00000000}},  // [3260] _dost_, _lán_, якав,\n  { {0x6296011c, 0x27310082, 0x7aeb0045, 0x00000000}},  //   _hayo, _oán_, engt,\n  { {0x3eb91305, 0x6296011c, 0x2d8f0190, 0x00000000}},  //   _fost_, _kayo, æger_,\n  { {0x2cb80aba, 0x3eb9186d, 0x2fc50637, 0x00000000}},  //   _word_, _gost_, ølge_,\n  { {0xe8940228, 0x62960781, 0x2cb80946, 0x00000000}},  //   даль, _mayo, _tord_,\n  { {0x273100ad, 0x62960339, 0x6d560093, 0x00000000}},  //   _bán_, _layo, msya,\n  { {0xd6da0077, 0x27310011, 0xaa46025f, 0x00000000}},  //   йти_, _cán_, _невл,\n  { {0x7c3b0107, 0x987801d9, 0x27310011, 0x00000000}},  //   _đuri, _išči_, _dán_,\n  { {0x6d56186e, 0x7ae20639, 0x00000000, 0x00000000}},  //   nsya, miot,   ,\n  { {0x7ae20a64, 0x6296011c, 0x38c80167, 0x00000000}},  //   liot, _aayo, _باری_,\n  { {0x78a80698, 0xd91b071c, 0xb80a006d, 0x00000000}},  //   _indv, _פובל, _ايام_,\n  { {0xddc4001e, 0x7ae20a59, 0x60de0022, 0x00000000}},  //   maiņ, niot, _ampm,\n  { {0x64a6186f, 0x6296011c, 0x3eb9001a, 0x00000000}},  //   _нада, _dayo, _rost_,\n  { {0x760b007b, 0x7ae20197, 0x1543025f, 0x00000000}},  //   _פּאַ, hiot, _џејм,\n  { {0x2005000c, 0xd4970104, 0x78ba1870, 0x00000000}},  //   æli_, _זכות_, _motv,\n  { {0x6296011c, 0x00000000, 0x00000000, 0x00000000}},  //   _gayo,   ,   ,\n  { {0x7e6d1871, 0xa2aa006e, 0x3eb90068, 0x00000000}},  // [3270] rgap, टार्, _vost_,\n  { {0xb035004d, 0xddd60010, 0x78ba1872, 0x00000000}},  //   _юнош, ggyő, _notv,\n  { {0x316c0036, 0x62960009, 0x2b58012d, 0x00000000}},  //   ądze_, _yayo, _cvrc_,\n  { {0x7ae20912, 0x27311873, 0x78a81874, 0x00000000}},  //   giot, _rán_, _andv,\n  { {0x78ba0a5e, 0x27310082, 0x00000000, 0x00000000}},  //   _botv, _sán_,   ,\n  { {0x273104bb, 0xf7710688, 0x00000000, 0x00000000}},  //   _pán_, ناب_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x78a80030, 0x7ae21875, 0xe559012b, 0x00000000}},  //   _endv, ciot, ојој_,\n  { {0x6296005f, 0x7827023c, 0xbbdd0316, 0x00000000}},  //   _rayo, _فعال, _मधुक,\n  { {0x62961876, 0x27311877, 0xddc41878, 0x00000000}},  //   _sayo, _tán_, ngiš,\n  { {0x6296103f, 0x68e31879, 0x00000000, 0x00000000}},  //   _payo, mind,   ,\n  { {0x31790009, 0x91e600ed, 0x00000000, 0x00000000}},  //   ftsz_, доме,   ,\n  { {0x656900fa, 0x6abb0068, 0x00000000, 0x00000000}},  //   queh, _mouf,   ,\n  { {0x7ae2187a, 0x6296187b, 0xf992009b, 0x00000000}},  //   ziot, _wayo, דרך_,\n  { {0x6296006a, 0x6aa9046a, 0x1eaa04e8, 0x00000000}},  //   _tayo, _onef, ياري_,\n  { {0x68e3187c, 0x646201c5, 0x00000000, 0x00000000}},  //   hind, ētiņ,   ,\n  { {0x68e30edb, 0x7ae2187d, 0x00000000, 0x00000000}},  // [3280] kind, viot,   ,\n  { {0x3cfa013d, 0x6d56187e, 0x69c20020, 0x00000000}},  //   ्तें_, rsya, vyoe,\n  { {0x68e30ddd, 0xb4fa0049, 0x7ae200b0, 0x00000000}},  //   dind, קלער, tiot,\n  { {0x68e30146, 0x00000000, 0x00000000, 0x00000000}},  //   eind,   ,   ,\n  { {0x68e3187f, 0x7ae2002d, 0x6abb00b9, 0x00000000}},  //   find, riot, _douf,\n  { {0x68e301a3, 0x7ae3008e, 0x97a601ee, 0x00000000}},  //   gind, éntr, дрил,\n  { {0xf76f06dd, 0xad9b0010, 0xda660025, 0x00000000}},  //   لاي_, _nyúj, _ياري,\n  { {0x68e30022, 0x6abb009d, 0x00000000, 0x00000000}},  //   aind, _gouf,   ,\n  { {0x68e3152d, 0x00000000, 0x00000000, 0x00000000}},  //   bind,   ,   ,\n  { {0x78a80d32, 0x68e3014a, 0x6abb07e4, 0x00000000}},  //   _undv, cind, _zouf,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x25a900ee, 0xe7691880, 0x658700f8, 0x00000000}},  //   _šale_, _رحمن_, örhå,\n  { {0xf4930063, 0x471b1881, 0x98a400e5, 0x00000000}},  //   رشید, _וואג, _gumă_,\n  { {0x660f010f, 0x3cfa013d, 0x00000000, 0x00000000}},  //   ücke, ्तों_,   ,\n  { {0xcebb003b, 0xdfd50a7c, 0x00000000, 0x00000000}},  //   оља_, ховы,   ,\n  { {0x68e3005f, 0x00000000, 0x00000000, 0x00000000}},  //   zind,   ,   ,\n  { {0x68e3027d, 0x9d15007e, 0x6abb0e6d, 0x00000000}},  // [3290] yind, едач, _rouf,\n  { {0x6abb11aa, 0x68e3006b, 0xa2c70061, 0x00000000}},  //   _souf, xind, ासक्,\n  { {0xf092009b, 0x6abb1882, 0x00000000, 0x00000000}},  //   _גני_, _pouf,   ,\n  { {0x68e30125, 0x00000000, 0x00000000, 0x00000000}},  //   wind,   ,   ,\n  { {0x68e3005f, 0x1958007e, 0x69af0061, 0x00000000}},  //   tind, дачы_, ंमधी,\n  { {0x7b03006c, 0xd5af009e, 0x00000000, 0x00000000}},  //   tõus, یہا_,   ,\n  { {0x68e301f6, 0x6abb1339, 0x98a40035, 0x00000000}},  //   rind, _touf, _sumă_,\n  { {0x68e3038c, 0x6aa9004a, 0x00000000, 0x00000000}},  //   sind, _unef,   ,\n  { {0x68e3000b, 0x32090058, 0x00000000, 0x00000000}},  //   pind, _nyay_,   ,\n  { {0x97420091, 0x00000000, 0x00000000, 0x00000000}},  //   šćan,   ,   ,\n  { {0x28ac006e, 0xe29a132e, 0x320900e0, 0x00000000}},  //   चारि, пан_, _ayay_,\n  { {0xd055006b, 0xe29a007e, 0xdce4014a, 0x00000000}},  //   mizə, чам_, ktiğ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x257901aa, 0x657b00e7, 0x00000000, 0x00000000}},  //   mèl_, mtuh,   ,\n  { {0x3f1600ed, 0x60c101e5, 0x394d000a, 0x00000000}},  //   еќат, ölma, _lwes_,\n  { {0x116800a2, 0x00000000, 0x00000000, 0x00000000}},  //   _قلبی_,   ,   ,\n  { {0x25790263, 0x7c3b02b9, 0x2bec0044, 0x00000000}},  // [32a0] nèl_, _şura, _করেই_,\n  { {0xfa150044, 0x00000000, 0x00000000, 0x00000000}},  //   িশাল_,   ,   ,\n  { {0x22520058, 0x612b002b, 0x0b46005e, 0x00000000}},  //   _keyk_, _iżla, хнен,\n  { {0x657b011c, 0x29050095, 0x00000000, 0x00000000}},  //   ktuh, _akla_,   ,\n  { {0x28ac013d, 0x19941883, 0x28be013d, 0x00000000}},  //   चालि, таля, ्सलि,\n  { {0x26cf1884, 0x25790263, 0xd90d00a6, 0x00000000}},  //   _algo_, dèl_, قیق_,\n  { {0x56941523, 0x6625006b, 0x62841885, 0x00000000}},  //   вайт, ərkə, _obio,\n  { {0xd6d70057, 0x29050173, 0x20d4006c, 0x00000000}},  //   еть_, _ekla_, _häid_,\n  { {0x88860751, 0x6d4415ea, 0xa967005e, 0x00000000}},  //   _плаж, npia, _пита_,\n  { {0x62841886, 0x20d4006c, 0x6d440006, 0x00000000}},  //   _abio, _jäid_, ipia,\n  { {0xe2f90088, 0x02cc0061, 0x00000000, 0x00000000}},  //   дені_, ासून,   ,\n  { {0x257901aa, 0x00000000, 0x00000000, 0x00000000}},  //   bèl_,   ,   ,\n  { {0xe298007e, 0xc68f00a1, 0x00000000, 0x00000000}},  //   хаў_, _دِن_,   ,\n  { {0x2ec902fb, 0x628400d9, 0x63a30009, 0x00000000}},  //   रस्त, _ebio, _frnn,\n  { {0x6d4404a5, 0x442e0335, 0x00000000, 0x00000000}},  //   epia, _igf_,   ,\n  { {0xdce4014a, 0xceb4006b, 0x00000000, 0x00000000}},  //   ttiğ, smən_,   ,\n  { {0xb8160044, 0xceb4013f, 0x00000000, 0x00000000}},  // [32b0] াশিত_, mməl_,   ,\n  { {0x629d0637, 0x62840036, 0x00000000, 0x00000000}},  //   ldso, _zbio,   ,\n  { {0x37e50044, 0x257901aa, 0xdce40095, 0x00000000}},  //   _পুনর, zèl_, stiğ,\n  { {0x628f0bc0, 0x25790263, 0x7b2c014a, 0x00000000}},  //   neco, yèl_, _ağus,\n  { {0x6f0d1887, 0x629d1888, 0x442e0146, 0x00000000}},  //   mlac, idso, _ogf_,\n  { {0x6f0d0791, 0x25790263, 0x013800b3, 0x00000000}},  //   llac, vèl_, ערות_,\n  { {0x628f0085, 0x6f0d0048, 0x00000000, 0x00000000}},  //   keco, olac,   ,\n  { {0x25791889, 0x442e0030, 0xd055006b, 0x00000000}},  //   tèl_, _agf_, rizə,\n  { {0x628f164f, 0x629d0016, 0x6f0d00d9, 0x00000000}},  //   deco, ddso, ilac,\n  { {0x257901aa, 0x6f0d1274, 0x657b188a, 0x00000000}},  //   rèl_, hlac, rtuh,\n  { {0x657b011c, 0x6f0d188b, 0x257901aa, 0x00000000}},  //   stuh, klac, sèl_,\n  { {0x2d4f0046, 0x628f0141, 0x81dd0044, 0x00000000}},  //   kże_, geco, _তুই_,\n  { {0x69d901a2, 0x6f0d188c, 0x00000000, 0x00000000}},  //   nzwe, dlac,   ,\n  { {0x6143004c, 0x442e010f, 0x6f0d0048, 0x00000000}},  //   рера, _ggf_, elac,\n  { {0x6d440016, 0x6d5d188d, 0xd0070140, 0x00000000}},  //   wpia, _avsa, вере_,\n  { {0x628f1372, 0x4374025f, 0x7b2c006b, 0x00000000}},  //   ceco, _сушт, _oğur,\n  { {0xed5701f9, 0xf65201ce, 0x7159007e, 0x00000000}},  // [32c0] кот_, יצן_, _прэс_,\n  { {0x672b008d, 0x6f0d002a, 0x315701ce, 0x00000000}},  //   _ligj, alac, _שיין_,\n  { {0x6f0d188e, 0x6d44188f, 0xd8380166, 0x00000000}},  //   blac, spia, _jače_,\n  { {0x6d441015, 0xd8381890, 0x298a092b, 0x00000000}},  //   ppia, _mače_, дско_,\n  { {0xd91000e9, 0x00000000, 0x00000000, 0x00000000}},  //   میر_,   ,   ,\n  { {0x8c430088, 0x6569010f, 0x7b2c0035, 0x00000000}},  //   _вере, dreh, _eşua,\n  { {0x20d4006c, 0xfce3007c, 0x629d1891, 0x00000000}},  //   _käib_, _торо, ydso,\n  { {0x443c0203, 0x2ef20016, 0x25a90340, 0x00000000}},  //   _sfv_, nnyf_, _šala_,\n  { {0x80d30055, 0x628f01c5, 0x65691892, 0x00000000}},  //   _সদস্, veco, greh,\n  { {0x3946029d, 0x81b80044, 0x6f04077d, 0x00000000}},  //   mpos_, চনা_, hoic,\n  { {0x628f0141, 0xd4970783, 0xdced0107, 0x00000000}},  //   teco, тры_, stać,\n  { {0x290e0016, 0xdce40bf8, 0x20d4010e, 0x00000000}},  //   llfa_, drič, _näib_,\n  { {0x6f0d037e, 0x629d11d1, 0x39460009, 0x00000000}},  //   vlac, rdso, npos_,\n  { {0x39460211, 0x443c00fa, 0x27381893, 0x00000000}},  //   ipos_, _ufv_, _kén_,\n  { {0x4fc40147, 0x6f0d0142, 0x6d5d012d, 0x00000000}},  //   аста, tlac, _svsa,\n  { {0xb275007c, 0x3d9504b6, 0x25a60f5d, 0x00000000}},  //   _слиш, либр, _krol_,\n  { {0xa2f800a0, 0x27381894, 0x1e34007e, 0x00000000}},  // [32d0] _שמחה_, _lén_, рнуў,\n  { {0x6f0d049a, 0xdce4016c, 0x00000000, 0x00000000}},  //   slac, brič,   ,\n  { {0x6f0d0549, 0x27380011, 0xde59013a, 0x00000000}},  //   plac, _nén_, _пані_,\n  { {0x69d9010f, 0x6d5d00e5, 0xa904009e, 0x00000000}},  //   tzwe, _tvsa, یبون,\n  { {0x998501d8, 0xda780764, 0x394600e0, 0x00000000}},  //   التو, тях_, gpos_,\n  { {0xd914008b, 0x69d9010f, 0x27380082, 0x00000000}},  //   адчы, rzwe, _bén_,\n  { {0x2738002a, 0x69d901a2, 0x660b0145, 0x00000000}},  //   _cén_, szwe, _sygk,\n  { {0x65690010, 0x3869005d, 0xd8380d0a, 0x00000000}},  //   treh, şar_, _rače_,\n  { {0x273800b5, 0x3a3f00f6, 0x672b1895, 0x00000000}},  //   _eén_, _ifup_, _vigj,\n  { {0x7b2c027d, 0xb4cd0164, 0x25a61896, 0x00000000}},  //   _uğur, रसे_, _drol_,\n  { {0x42ea005e, 0x65690d25, 0x25a6014a, 0x00000000}},  //   емно_, sreh, _erol_,\n  { {0x6d41092f, 0x216a01fb, 0x65691897, 0x00000000}},  //   _član, ними_, preh,\n  { {0x7d050023, 0x25a6012d, 0xca7a0049, 0x00000000}},  //   kohs, _grol_, ענשט,\n  { {0x19b6009b, 0xb447007e, 0x00000000, 0x00000000}},  //   אפשר_, _рэдк,   ,\n  { {0x2d991898, 0xf4560097, 0x2d8b0f75, 0x00000000}},  //   _asse_, _עיקר_, _apce_,\n  { {0x944200a1, 0x00000000, 0x00000000, 0x00000000}},  //   _پھین,   ,   ,\n  { {0x6f040bf5, 0xceb4006b, 0x3dc900e0, 0x00000000}},  // [32e0] roic, lmək_, gyaw_,\n  { {0xdce40bf8, 0x00000000, 0x00000000, 0x00000000}},  //   prič,   ,   ,\n  { {0xe7e3001c, 0x2d9902d5, 0xceb4006b, 0x00000000}},  //   _केला_, _esse_, nmək_,\n  { {0x316000d0, 0x39461042, 0x2d860181, 0x00000000}},  //   _kviz_, tpos_, çoes_,\n  { {0x9f0604e1, 0xaa570379, 0xb2770049, 0x00000000}},  //   _لوگو, الها_, רענג_,\n  { {0x39460325, 0x307a0049, 0xceb4006b, 0x00000000}},  //   rpos_, גאַנ, kmək_,\n  { {0x39461899, 0x2d80189a, 0xb8ec006e, 0x00000000}},  //   spos_, ltie_, _लव_,\n  { {0x3ea0008d, 0x963400c0, 0x25a600c4, 0x00000000}},  //   ndit_, шниц, _prol_,\n  { {0x2d8002ae, 0xb8ea0055, 0xe8fa003b, 0x00000000}},  //   ntie_, _লগ_, _зла_,\n  { {0x3f9a012d, 0x3ea00e2c, 0x00000000, 0x00000000}},  //   _ospu_, hdit_,   ,\n  { {0xa92301ca, 0x31600035, 0xd25103ec, 0x00000000}},  //   ížen, _aviz_, يند_,\n  { {0x57fb009b, 0x2d80189b, 0x25a6005b, 0x00000000}},  //   _אלבו, ktie_, _trol_,\n  { {0xf1ab0025, 0x2259007f, 0x3135189c, 0x00000000}},  //   راحه_, rask_, регр,\n  { {0xe7b60044, 0x63bc1565, 0x31600173, 0x00000000}},  //   জনীয, ørns, _dviz_,\n  { {0x2d800436, 0x443e00f6, 0x7c3e0009, 0x00000000}},  //   etie_, mct_, dcpr,\n  { {0x645a030a, 0x2d800de1, 0x3dc900e0, 0x00000000}},  //   lati, ftie_, tyaw_,\n  { {0xdc55098c, 0x645a002d, 0x00000000, 0x00000000}},  // [32f0] ивањ, oati,   ,\n  { {0x443e189d, 0x7d1c0725, 0x00000000, 0x00000000}},  //   nct_, _chrs,   ,\n  { {0x5a350265, 0x2d801541, 0xa2aa0061, 0x00000000}},  //   анет, atie_, टाच्,\n  { {0x645a1166, 0x64a60061, 0x3dc900e0, 0x00000000}},  //   hati, _कोसळ, pyaw_,\n  { {0x2d80189e, 0x50b800e9, 0xbebb0328, 0x00000000}},  //   ctie_, _شدید_, _diët,\n  { {0x645a0027, 0xb4c30164, 0x20d4006c, 0x00000000}},  //   jati, _एके_, _käia_,\n  { {0x645a066a, 0x443e00e5, 0x98540088, 0x00000000}},  //   dati, dct_, стіш,\n  { {0x16a9007c, 0x0565189f, 0x443e18a0, 0x00000000}},  //   твии_, авин, ect_,\n  { {0x6341001e, 0x05760054, 0xba190025, 0x00000000}},  //   _mēne, لمية_, _شيئا_,\n  { {0xc4820eb1, 0x7aeb18a1, 0x3ea018a2, 0x00000000}},  //   ольк, ligt, zdit_,\n  { {0x69cb18a3, 0x86c50014, 0x31600087, 0x00000000}},  //   lyge, _پيشن, _sviz_,\n  { {0x290704bd, 0xceb4005f, 0xf77006dd, 0x00000000}},  //   lona_, rmək_, _رام_,\n  { {0x443e01d6, 0xa91d0006, 0x00000000, 0x00000000}},  //   bct_, _apži,   ,\n  { {0x645a030a, 0x03a501fb, 0x044500e2, 0x00000000}},  //   cati, _вико, _текн,\n  { {0xb21b0030, 0xd8380166, 0x7e56007c, 0x00000000}},  //   lfæl, _jača_, итац,\n  { {0xe519013d, 0xd83801c5, 0x290718a4, 0x00000000}},  //   _नीति_, _mača_, hona_,\n  { {0x7aeb0343, 0x29070c30, 0x3ea011be, 0x00000000}},  // [3300] digt, kona_, rdit_,\n  { {0x2d8018a5, 0x2907066e, 0x3865009d, 0x00000000}},  //   rtie_, jona_, _ndlr_,\n  { {0xa7fc038c, 0x2d800027, 0xbebb01c3, 0x00000000}},  //   _adın, stie_, _piët,\n  { {0x645a0038, 0x2d8018a6, 0x0a670401, 0x00000000}},  //   zati, ptie_, арши_,\n  { {0x660f010f, 0x645a09e5, 0x3b060606, 0x00000000}},  //   ückl, yati, rooq_,\n  { {0x290704bd, 0x645a062a, 0x6fba0061, 0x00000000}},  //   gona_, xati, _उपां,\n  { {0x645a18a7, 0xe0b70049, 0x00000000, 0x00000000}},  //   vati, ילסט_,   ,\n  { {0x645a18a8, 0x79b700a1, 0x69cb00ea, 0x00000000}},  //   wati, _چھوڑ_, byge,\n  { {0x645a121e, 0x290718a9, 0x386518aa, 0x00000000}},  //   tati, bona_, _fdlr_,\n  { {0x29070e68, 0x79820146, 0x6aa2074e, 0x00000000}},  //   cona_, mtow, ldof,\n  { {0x645a1294, 0x443e13ba, 0x92590364, 0x00000000}},  //   rati, rct_, лант_,\n  { {0x645a028c, 0x6aa201d6, 0x6d460091, 0x00000000}},  //   sati, ndof, _otka,\n  { {0xc05b01fb, 0x79820046, 0x645a18ab, 0x00000000}},  //   ків_, ntow, pati,\n  { {0x41e80401, 0x645a18ac, 0x92e70044, 0x00000000}},  //   рфюм_, qati, বকে_,\n  { {0x6458001e, 0x251b0476, 0x6d461104, 0x00000000}},  //   _ievi, _שווא, _atka,\n  { {0x79820046, 0x645818ad, 0x6d4601c3, 0x00000000}},  //   ktow, _hevi, _btka,\n  { {0x290718ae, 0x040b0044, 0x7aeb0190, 0x00000000}},  // [3310] yona_, হেদী_, vigt,\n  { {0x40950054, 0xd05c006b, 0x645818af, 0x00000000}},  //   _الدر, kirə, _jevi,\n  { {0xd00801f9, 0x29070197, 0x7aeb010f, 0x00000000}},  //   _веќе_, vona_, tigt,\n  { {0xd05c006b, 0x68e80016, 0x69cb18b0, 0x00000000}},  //   dirə, _amdd, tyge,\n  { {0x29070209, 0x7aeb0007, 0x99d40014, 0x00000000}},  //   tona_, rigt, يتها,\n  { {0x645809a9, 0x7aeb18b1, 0x69cb18b2, 0x00000000}},  //   _nevi, sigt, ryge,\n  { {0x290718b3, 0x79820036, 0x69cb068f, 0x00000000}},  //   rona_, atow, syge,\n  { {0x2907022b, 0x20d4021e, 0x98a500e5, 0x00000000}},  //   sona_, _näin_, _bilă_,\n  { {0x7ae916dd, 0x2738001d, 0x799b0036, 0x00000000}},  //   _imet, _lĩnh_, _usuw,\n  { {0xa91d0006, 0x6458014a, 0x6aa00035, 0x00000000}},  //   _apžv, _cevi, _zamf,\n  { {0x7ae901d9, 0xd6db18b4, 0xd90c00a1, 0x00000000}},  //   _kmet, _итд_, _جیو_,\n  { {0x6aa000f6, 0x98a500e5, 0x00000000, 0x00000000}},  //   _xamf, _filă_,   ,\n  { {0x45450879, 0x64a5008b, 0x68e8018e, 0x00000000}},  //   _انتق, _гала, _ymdd,\n  { {0x05b800a6, 0x64580007, 0x7afb0825, 0x00000000}},  //   _خدمت_, _gevi, _ljut,\n  { {0x7ae9006c, 0x66d50428, 0x644118b5, 0x00000000}},  //   _omet, _záka, mcli,\n  { {0x79820036, 0x7afb0039, 0x64580026, 0x00000000}},  //   ytow, _njut, _zevi,\n  { {0x644100e5, 0x00000000, 0x00000000, 0x00000000}},  // [3320] ocli,   ,   ,\n  { {0x7ae90004, 0x7afb18b6, 0x6441006b, 0x00000000}},  //   _amet, _ajut, ncli,\n  { {0x7ae90026, 0x2fd00035, 0x00000000, 0x00000000}},  //   _bmet, ângă_,   ,\n  { {0x76590bc4, 0xdbd001ca, 0x291e05fa, 0x00000000}},  //   _newy, _užív, _shta_,\n  { {0xe3a7026c, 0x78a10089, 0x6d460056, 0x00000000}},  //   _کر_, _balv, _utka,\n  { {0x79820046, 0x7ae90129, 0xd05c006b, 0x00000000}},  //   rtow, _emet, tirə,\n  { {0x64580038, 0x79820036, 0x76590007, 0x00000000}},  //   _revi, stow, _bewy,\n  { {0x6458011f, 0xd6d70a78, 0x3ea200d8, 0x00000000}},  //   _sevi, йты_, _jakt_,\n  { {0x7ae300c1, 0x3ea201c9, 0xf772009e, 0x00000000}},  //   ënte, _makt_, زاں_,\n  { {0x78a10ebc, 0xd49a0920, 0x644100f6, 0x00000000}},  //   _galv, ури_, gcli,\n  { {0x387e0be3, 0xa68600aa, 0x60c50170, 0x00000000}},  //   _ictr_, _глед, _rohm,\n  { {0x6443000c, 0x765918b7, 0x332000e5, 0x00000000}},  //   _efni, _gewy, _chix_,\n  { {0x645801c1, 0x98ac01aa, 0xa6a9035b, 0x00000000}},  //   _tevi, _lidč_, _خالق_,\n  { {0x64a30001, 0x273800ad, 0x673a18b8, 0x00000000}},  //   _нача, _cũng_, _kutj,\n  { {0x27380011, 0x673a18b9, 0x3ea218ba, 0x00000000}},  //   _dũng_, _jutj, _bakt_,\n  { {0xfbdf0055, 0x2738001d, 0x2bac007d, 0x00000000}},  //   _বুঝত, _vĩnh_, घटना,\n  { {0x673a0065, 0xe1670076, 0x628d0058, 0x00000000}},  // [3330] _lutj, _ادبي, _ibao,\n  { {0x27380011, 0x7ae90213, 0xbcfb00f4, 0x00000000}},  //   _tĩnh_, _smet, _evén,\n  { {0x3ea20dc1, 0x79990487, 0x7afb002b, 0x00000000}},  //   _fakt_, wwww, _pjut,\n  { {0x26c60253, 0x6441004a, 0x00000000, 0x00000000}},  //   _nooo_, zcli,   ,\n  { {0x78a1021e, 0x1a6800a6, 0x5d790049, 0x00000000}},  //   _palv, صیلی_, _דאָק,\n  { {0x6d4d003c, 0xd90f0123, 0xe8f801ff, 0x00000000}},  //   mpaa, ریا_, блі_,\n  { {0x78a100b0, 0x6441001c, 0x9405006b, 0x00000000}},  //   _valv, vcli, belə_,\n  { {0x7ae901d9, 0x7afb0091, 0x78a1040f, 0x00000000}},  //   _umet, _ujut, _walv,\n  { {0x78a1044e, 0x212118bb, 0x6b850300, 0x00000000}},  //   _talv, _ohhh_, lthg,\n  { {0x33650805, 0xaf010044, 0x98f70167, 0x00000000}},  //   овог, ্ষিণ_, _اثرا,\n  { {0x2ca30047, 0x644101c5, 0x765901c3, 0x00000000}},  //   _majd_, rcli, _tewy,\n  { {0x21210058, 0x644100d4, 0xc5d50245, 0x00000000}},  //   _ahhh_, scli, _міль,\n  { {0x80b50044, 0x3ea20039, 0xe60e02ea, 0x00000000}},  //   ুসন্, _rakt_, _цд_,\n  { {0xceb4006b, 0x27310087, 0x3ea218bc, 0x00000000}},  //   hmət_, _kšno_, _sakt_,\n  { {0x3ea200bb, 0x7ce9006b, 0x27380011, 0x00000000}},  //   _pakt_, _görə, _vũng_,\n  { {0x212103b0, 0x63ae0190, 0xee3f01e5, 0x00000000}},  //   _ehhh_, æbne, _snýr_,\n  { {0xceb4006b, 0x3ea2030e, 0x6d4d011c, 0x00000000}},  // [3340] dmət_, _vakt_, gpaa,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xeb9a009a, 0x0b46007e, 0x00000000, 0x00000000}},  //   рие_, цнен,   ,\n  { {0x094a0072, 0x673a18bd, 0x00000000, 0x00000000}},  //   ачки_, _rutj,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x765d000c, 0x6f1600ea, 0x26c601a2, 0x00000000}},  //   ðsyn, llyc, _sooo_,\n  { {0xd6da0bbd, 0xf40700a1, 0x00000000, 0x00000000}},  //   ити_, _آؤ_,   ,\n  { {0x83fc0091, 0x758a0256, 0xbddb00f6, 0x00000000}},  //   nađe, асов_, _ofèl,\n  { {0xc6f7008b, 0x66d5000c, 0x7c390010, 0x00000000}},  //   ўных_, _tákn, _ábrá,\n  { {0x673a0065, 0x26c60145, 0x00000000, 0x00000000}},  //   _tutj, _wooo_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x21210146, 0x00000000, 0x00000000, 0x00000000}},  //   _shhh_,   ,   ,\n  { {0x66d5004f, 0xe298008b, 0x64a60256, 0x00000000}},  //   _záko, цаў_, _мада,\n  { {0x7ce9006b, 0x00000000, 0x00000000, 0x00000000}},  //   _törə,   ,   ,\n  { {0xceb4006b, 0x7ce0000c, 0x40340081, 0x00000000}},  //   ymət_, _körf, дерс,\n  { {0x83fc037e, 0x66d50428, 0x2ca3002b, 0x00000000}},  //   gađe, _nákl, _sajd_,\n  { {0x3f9e000c, 0x00000000, 0x00000000, 0x00000000}},  // [3350] ætur_,   ,   ,\n  { {0x6d4d01b1, 0x00000000, 0x00000000, 0x00000000}},  //   rpaa,   ,   ,\n  { {0x6d4d095c, 0x6d40009d, 0x2b4a00c4, 0x00000000}},  //   spaa, _éman, _ctbc_,\n  { {0xb5fd01d9, 0x6d4d00b0, 0x6b850016, 0x00000000}},  //   laše, ppaa, rthg,\n  { {0xdce70279, 0xceb4006b, 0x3179108d, 0x00000000}},  //   şlıc, rmət_, nusz_,\n  { {0x9d18005e, 0xb5fd013e, 0x08c401e1, 0x00000000}},  //   _моят_, naše, мбін,\n  { {0x7b640242, 0xd37811af, 0x00000000, 0x00000000}},  //   _отте, juć_,   ,\n  { {0x6f0d0617, 0x31790f88, 0x672200b4, 0x00000000}},  //   noac, kusz_, _choj,\n  { {0xe5710025, 0x7ce001a2, 0x00000000, 0x00000000}},  //   رطة_, _dörf,   ,\n  { {0x66d50428, 0xdced0161, 0x83fc012d, 0x00000000}},  //   _zákl, krač, zađe,\n  { {0x7ce00073, 0xb5fd003b, 0x130a0783, 0x00000000}},  //   _förf, daše, йной_,\n  { {0xf8bd0055, 0xdced00ca, 0xf5560014, 0x00000000}},  //   _অতিথ, drač, _کلوب_,\n  { {0x171a007b, 0xe2970783, 0x14a60061, 0x00000000}},  //   _פונע, чая_, _कोकण,\n  { {0x7528001c, 0x00000000, 0x00000000, 0x00000000}},  //   cmdz,   ,   ,\n  { {0x24670010, 0x6023003b, 0xdced047c, 0x00000000}},  //   _című_, едра, grač,\n  { {0x660f01a2, 0x00000000, 0x00000000, 0x00000000}},  //   ückw,   ,   ,\n  { {0x83fc0166, 0x7ce000f8, 0x6f1618be, 0x00000000}},  // [3360] rađe, _jörg, rlyc,\n  { {0x7ce0000c, 0x200c010e, 0xdced0471, 0x00000000}},  //   _mörg, üdis_, brač,\n  { {0x6f0d027b, 0x205700a0, 0xdce4012d, 0x00000000}},  //   boac, _מייל_, hrić,\n  { {0xdce40091, 0x672900ca, 0x00000000, 0x00000000}},  //   krić, jmej,   ,\n  { {0x7ae30112, 0xd37800b4, 0x00000000, 0x00000000}},  //   ënta, zuć_,   ,\n  { {0x2b58009d, 0xdce404eb, 0x00000000, 0x00000000}},  //   _twrc_, drić,   ,\n  { {0xb8f4013d, 0x00000000, 0x00000000, 0x00000000}},  //   _हक_,   ,   ,\n  { {0xb8d302d2, 0xfaa318bf, 0xd6d00025, 0x00000000}},  //   _जो_, _пасо, ئقة_,\n  { {0xdced1470, 0x186a00e2, 0x00000000, 0x00000000}},  //   zrač, _гази_,   ,\n  { {0x656f18c0, 0x07a6007c, 0xb4d6013d, 0x00000000}},  //   ácha, _назн, ससे_,\n  { {0x67220065, 0x7b370107, 0x6f0d18c1, 0x00000000}},  //   _thoj, _ućut, yoac,\n  { {0x6602002d, 0xdced0059, 0xd7ef0025, 0x00000000}},  //   _txok, vrač, _حكم_,\n  { {0x7ce018c2, 0xb5fd00ca, 0xdb0e0065, 0x00000000}},  //   _körd, taše, _arbë,\n  { {0xdced016e, 0x63bc00f8, 0x00000000, 0x00000000}},  //   trač, ärns,   ,\n  { {0xbebb008d, 0xb5fd0059, 0x7ce00a5d, 0x00000000}},  //   _dhën, raše, _mörd,\n  { {0x7ce00039, 0x290e0022, 0x00000000, 0x00000000}},  //   _lörd, hofa_,   ,\n  { {0x6f0d18c3, 0xdd9407d0, 0x00000000, 0x00000000}},  // [3370] roac, наты,   ,\n  { {0xa1150025, 0x81e60044, 0x7ce001a2, 0x00000000}},  //   _زوجت, _বুক_, _nörd,\n  { {0x6ce40088, 0x6f0d00e7, 0x00000000, 0x00000000}},  //   хіте, poac,   ,\n  { {0x386c0541, 0x2ee00016, 0xdb230014, 0x00000000}},  //   _addr_, chif_, روشی,\n  { {0x7ce004ce, 0x3ea90045, 0x00000000, 0x00000000}},  //   _börd, mdat_,   ,\n  { {0x3ea90030, 0x008a0049, 0x7ff400a2, 0x00000000}},  //   ldat_, ַרפֿ, _آسیا,\n  { {0x7ce00279, 0x917a0082, 0xfaf30025, 0x00000000}},  //   _dörd, _mất_, _كثر_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7ce0127c, 0x2d8918c4, 0x2a6d12dd, 0x00000000}},  //   _förd, ntae_, _ideb_,\n  { {0x7ce0005d, 0x67290229, 0x3ea900b0, 0x00000000}},  //   _görd, smej, hdat_,\n  { {0xf77006b4, 0xb7d5083e, 0x00000000, 0x00000000}},  //   _مان_, _تقاب,   ,\n  { {0xbebb008d, 0x25a904eb, 0x00000000, 0x00000000}},  //   _shën, _šalu_,   ,\n  { {0x7ce0010f, 0x3ea900f8, 0x823602fd, 0x00000000}},  //   _höre, ddat_, بردا,\n  { {0xbddb000a, 0x25ad00ea, 0xd8380087, 0x00000000}},  //   _efèk, mvel_, _račk_,\n  { {0x25ad006c, 0x6b9e0009, 0x00000000, 0x00000000}},  //   lvel_, xwpg,   ,\n  { {0x3f68006b, 0xf412009b, 0xef1a0245, 0x00000000}},  //   rğu_, _שפה_, іма_,\n  { {0xbebb008d, 0x25ad0691, 0x00000000, 0x00000000}},  // [3380] _thën, nvel_,   ,\n  { {0x3ea618c5, 0x2ee000e7, 0x6284000a, 0x00000000}},  //   žot_, shif_, _hcio,\n  { {0x4f2600c0, 0x66dc0224, 0x26dd0009, 0x00000000}},  //   _одоб, _léka, _olwo_,\n  { {0x657b00b0, 0xd8380087, 0x00000000, 0x00000000}},  //   kuuh, _tačk_,   ,\n  { {0xd00f01ef, 0x290e1530, 0xe894041f, 0x00000000}},  //   _ملی_, tofa_, еаль,\n  { {0xd838016c, 0x394d00f6, 0x7e64007f, 0x00000000}},  //   _kači_, _dtes_, laip,\n  { {0x290e18c6, 0x394d18c7, 0x778a006b, 0x00000000}},  //   rofa_, _etes_, _təxm,\n  { {0x290e18c8, 0x7e6418c9, 0x356a0194, 0x00000000}},  //   sofa_, naip, орон_,\n  { {0xa534004c, 0x38cb00a1, 0xd49a0256, 0x00000000}},  //   ннич, _ڈالی_, орн_,\n  { {0x7ce003a2, 0x38cb026c, 0xe0df0263, 0x00000000}},  //   _före, _والی_, npòt_,\n  { {0x7ce018ca, 0x3c770104, 0x7e640058, 0x00000000}},  //   _göre, ותים_, kaip,\n  { {0x83fc0119, 0xeb91007b, 0x7ae202a3, 0x00000000}},  //   gađa, אָך_, nhot,\n  { {0x660f01a2, 0x3ea9035f, 0x518418cb, 0x00000000}},  //   ückt, vdat_, кура,\n  { {0x7ce0014a, 0x0ef9013d, 0x30150849, 0x00000000}},  //   _yöre, ्क्स_, едгр,\n  { {0x7e7f001c, 0x3ea900c7, 0x644a002b, 0x00000000}},  //   tgqp, tdat_, _iffi,\n  { {0x62840051, 0xb5fd0e3b, 0x2249014a, 0x00000000}},  //   _gcio, laša, _ufak_,\n  { {0x629d12fe, 0x78ba049b, 0x3ea9046a, 0x00000000}},  // [3390] meso, _ontv, rdat_,\n  { {0xb5fd0340, 0x628f01f3, 0x78a80142, 0x00000000}},  //   naša, lfco, _nadv,\n  { {0x394d00f6, 0x443c00dd, 0x630400a1, 0x00000000}},  //   _stes_, _mgv_, _سویل,\n  { {0x7ce00039, 0x628f0197, 0xdb07000c, 0x00000000}},  //   _röre, nfco, _brjá,\n  { {0x644a0038, 0x7ce000f8, 0x2721000c, 0x00000000}},  //   _offi, _söre, jóna_,\n  { {0x8d5a0104, 0xf7710379, 0x629d18cc, 0x00000000}},  //   _מכשי, هاب_, heso,\n  { {0x7ce00073, 0x629d0065, 0x7ae218cd, 0x00000000}},  //   _förb, keso, bhot,\n  { {0x644a0e8d, 0x7ae2000b, 0xdb07000c, 0x00000000}},  //   _affi, chot, _frjá,\n  { {0x25ad00d9, 0x443c18ce, 0x00000000, 0x00000000}},  //   uvel_, _bgv_,   ,\n  { {0x25ad0030, 0x62840207, 0x7ce018cf, 0x00000000}},  //   rvel_, _scio, _töre,\n  { {0x629d050a, 0x39890584, 0x6abb18d0, 0x00000000}},  //   feso, lús_, _knuf,\n  { {0x629d0030, 0x660f010f, 0x00000000, 0x00000000}},  //   geso, ücks,   ,\n  { {0xa4d501fb, 0x398918d1, 0x443c00c4, 0x00000000}},  //   _поді, nús_, _fgv_,\n  { {0x628b0039, 0x83fc016c, 0xbebb0065, 0x00000000}},  //   _ögon, sađa, _dhëm,\n  { {0x629d01d6, 0x6569032e, 0x398911ea, 0x00000000}},  //   beso, lseh, hús_,\n  { {0xbea3003b, 0x7649014a, 0x00000000, 0x00000000}},  //   ласк, ncey,   ,\n  { {0x7e6418d2, 0x656910a4, 0x00000000, 0x00000000}},  // [33a0] raip, nseh,   ,\n  { {0x315701ce, 0x67390066, 0x00000000, 0x00000000}},  //   _ריין_, _liwj,   ,\n  { {0x7ae2098e, 0x78a80006, 0x7e6400d4, 0x00000000}},  //   thot, _radv, paip,\n  { {0xca2608d6, 0x255d01aa, 0x69c2002d, 0x00000000}},  //   нфли, kňl_, txoe,\n  { {0x7ae20020, 0xb21b0f4b, 0x78a818d3, 0x00000000}},  //   rhot, lfær, _padv,\n  { {0x7ae20020, 0x97a6017f, 0x6abb0943, 0x00000000}},  //   shot, ерил, _enuf,\n  { {0x7a36038c, 0x629d008d, 0x5a96008b, 0x00000000}},  //   _bütü, yeso, _праф,\n  { {0x398906c2, 0xdb0701e5, 0x00000000, 0x00000000}},  //   bús_, _trjá,   ,\n  { {0xb5fd0e00, 0x1a9b0049, 0x78ba0912, 0x00000000}},  //   taša, _צימע, _tntv,\n  { {0xdce410ec, 0x00000000, 0x00000000, 0x00000000}},  //   ksič,   ,   ,\n  { {0xb5fd18d4, 0x629d0065, 0xbebb0065, 0x00000000}},  //   raša, teso, _shëm,\n  { {0xb5fd0ce4, 0x9258007c, 0x2a6600e0, 0x00000000}},  //   mašn, нают_, naob_,\n  { {0x629d18d5, 0x443c0666, 0x628f00d9, 0x00000000}},  //   reso, _tgv_, rfco,\n  { {0x644a13f0, 0x629d0169, 0x7e6f0009, 0x00000000}},  //   _uffi, seso, _sdcp,\n  { {0xb5fd0f3a, 0x629d18d6, 0x2f2700e2, 0x00000000}},  //   našn, peso, еќав,\n  { {0x629d0065, 0x612000b0, 0x539b009b, 0x00000000}},  //   qeso, löll, _זיהו,\n  { {0xb274007c, 0x00000000, 0x00000000, 0x00000000}},  // [33b0] _слыш,   ,   ,\n  { {0x6abb0116, 0x6aa90093, 0x612000b0, 0x00000000}},  //   _snuf, _saef, nöll,\n  { {0xb5fd0091, 0xf092009b, 0x00000000, 0x00000000}},  //   jašn, _דני_,   ,\n  { {0xb5fd0119, 0xf4130049, 0x255d01aa, 0x00000000}},  //   dašn, אפע_, yňl_,\n  { {0x612018d7, 0x6d4f0010, 0x00000000, 0x00000000}},  //   köll, _utca,   ,\n  { {0x66d5000c, 0x2d990026, 0xb4bf0061, 0x00000000}},  //   _jákv, _ipse_, _ंचे_,\n  { {0x398918d8, 0x255d01aa, 0x66e5004d, 0x00000000}},  //   sús_, wňl_, кока,\n  { {0x6569006c, 0x291c00fa, 0x00000000, 0x00000000}},  //   tseh, alva_,   ,\n  { {0xd3780036, 0xd6ce0025, 0x7ce000f8, 0x00000000}},  //   erć_, تقي_, _höra,\n  { {0x66d5000c, 0x6569010f, 0x7b2c0035, 0x00000000}},  //   _nákv, rseh, _uşur,\n  { {0x25a618d9, 0x6569010f, 0x3f47006c, 0x00000000}},  //   _esol_, sseh, _nõu_,\n  { {0x05210044, 0x216a02d3, 0x7c3a000c, 0x00000000}},  //   নদের_, мими_, _útre,\n  { {0xe7300151, 0x00000000, 0x00000000, 0x00000000}},  //   _اصل_,   ,   ,\n  { {0xfd660011, 0xb21b101b, 0x6d40009d, 0x00000000}},  //   _thuầ, tfær, _émai,\n  { {0x2d990173, 0x26cf0036, 0x6f6300e2, 0x00000000}},  //   _apse_, _kogo_, иврз,\n  { {0xf772061e, 0x26cf02d5, 0x3329002b, 0x00000000}},  //   יקל_, _jogo_, _ghax_,\n  { {0xb21b043e, 0x8c460088, 0x62960009, 0x00000000}},  // [33c0] lgæn, везе, _ibyo,\n  { {0x811600a1, 0xb21b000c, 0xe058025a, 0x00000000}},  //   _جذبا, pfær, _سیرت_,\n  { {0x3eab00ab, 0x5f06007e, 0x6ee3006c, 0x00000000}},  //   _fact_, _азна, _sõbe,\n  { {0x68e10039, 0x26cf00ca, 0x00000000, 0x00000000}},  //   _alld, _nogo_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7ce00039, 0x3ea00daf, 0x3f9a0093, 0x00000000}},  //   _föra, leit_, _kppu_,\n  { {0xf093012f, 0x7ce00039, 0xa3c301ca, 0x00000000}},  //   ינג_, _göra, yšší_,\n  { {0x81e80055, 0xb5fd0091, 0x3ea0060d, 0x00000000}},  //   _যখন_, rašn, neit_,\n  { {0xe4e6008b, 0x66d50428, 0x26cf0020, 0x00000000}},  //   вінн, _náku, _dogo_,\n  { {0x3ea0001f, 0x70d10061, 0xd49a0d15, 0x00000000}},  //   heit_, _सकेल, фри_,\n  { {0x3ea0001f, 0x26cf0181, 0x83fc0521, 0x00000000}},  //   keit_, _fogo_, rađo,\n  { {0x26cf002d, 0xc2b80088, 0x61200052, 0x00000000}},  //   _gogo_, влює_, söll,\n  { {0x39440ebc, 0xdb210047, 0x316d00f4, 0x00000000}},  //   _jums_, ítés, éez_,\n  { {0x39441104, 0xab6518da, 0x2a640093, 0x00000000}},  //   _mums_, ngüí, _lemb_,\n  { {0xd838001e, 0x3eab0675, 0x60180242, 0x00000000}},  //   _taču_, _pact_, воря_,\n  { {0x7ce000f8, 0x3ea00010, 0x00000000, 0x00000000}},  //   _röra, geit_,   ,\n  { {0x1df81036, 0x3944003b, 0x2d80004a, 0x00000000}},  // [33d0] веты_, _nums_, guie_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x3ea0010f, 0x644f0036, 0x645a01a2, 0x00000000}},  //   beit_, ścig, ibti,\n  { {0x2d80000d, 0xeb0d0061, 0x39440089, 0x00000000}},  //   buie_, िकेत_, _bums_,\n  { {0xadf0001c, 0x26cf0026, 0xeab003ab, 0x00000000}},  //   _घेऊन_, _rogo_, تعل_,\n  { {0x7ce00a5d, 0x9b450188, 0x26cf05cd, 0x00000000}},  //   _hörn, _منسو, _sogo_,\n  { {0x7ce009e9, 0x61200039, 0x0b8800ed, 0x00000000}},  //   _körn, följ, _исти_,\n  { {0xbb840025, 0x394400d4, 0x05a90088, 0x00000000}},  //   _خلفي, _fums_, евий_,\n  { {0x888300a1, 0xeb1f0061, 0xb5fd18db, 0x00000000}},  //   _نیشن, बतीत_, rašo,\n  { {0x3ea0010f, 0x645e006c, 0x68e100d4, 0x00000000}},  //   zeit_, _õpil, _ulld,\n  { {0x26cf18dc, 0xe784007e, 0x69d90b04, 0x00000000}},  //   _togo_, _вучо, lywe,\n  { {0xe1ff004a, 0x73e20900, 0x00000000, 0x00000000}},  //   raón_, союз,   ,\n  { {0x765b10e0, 0x3ea018dd, 0x69d900e7, 0x00000000}},  //   mbuy, veit_, nywe,\n  { {0x3ea0010f, 0x657b00e7, 0x00000000, 0x00000000}},  //   weit_, mruh,   ,\n  { {0x3ea0049b, 0xdee603f3, 0x7ce0009f, 0x00000000}},  //   teit_, гови, _börn,\n  { {0x7e550216, 0xeabe0055, 0xceb4006b, 0x00000000}},  //   итуц, _আত্ম, lməz_,\n  { {0x3ea018de, 0xb21b0030, 0x518500ed, 0x00000000}},  // [33e0] reit_, ngæl, _куќа,\n  { {0x69d918df, 0x442701d6, 0x3ea018e0, 0x00000000}},  //   dywe, _kzn_, seit_,\n  { {0x7ce00039, 0x78ae00c4, 0x2d801387, 0x00000000}},  //   _förn, _óbvi, suie_,\n  { {0x6286006a, 0x20d4006c, 0x298a005e, 0x00000000}},  //   ngko, _täis_, еско_,\n  { {0xf548001d, 0xceb300a3, 0x2d80117e, 0x00000000}},  //   _mục_, _פיש_, quie_,\n  { {0x6f0418e1, 0xf5480011, 0xb5fd18e2, 0x00000000}},  //   lnic, _lục_, rašl,\n  { {0x6f040166, 0xebe616c4, 0x44270006, 0x00000000}},  //   onic, _совп, _nzn_,\n  { {0x6d460258, 0x6f040036, 0x394400f8, 0x00000000}},  //   _kuka, nnic, _tums_,\n  { {0x4427006b, 0x1a060888, 0x6aa218e3, 0x00000000}},  //   _azn_, _спам, meof,\n  { {0x6d46021e, 0x6f04001a, 0x6aa21270, 0x00000000}},  //   _muka, hnic, leof,\n  { {0xd4970147, 0x44380039, 0x634800b9, 0x00000000}},  //   уры_, är_, _věno,\n  { {0xf5480011, 0x518701e0, 0x6aa218e4, 0x00000000}},  //   _cục_, луга, neof,\n  { {0xf548001d, 0x41e4007e, 0xa2f4007e, 0x00000000}},  //   _dục_, біра, спяч,\n  { {0x6f040197, 0x00000000, 0x00000000, 0x00000000}},  //   enic,   ,   ,\n  { {0x6d46021a, 0x6f0401ee, 0x403500ed, 0x00000000}},  //   _auka, fnic, ревс,\n  { {0x6d460127, 0xf5480082, 0x6f040036, 0x00000000}},  //   _buka, _gục_, gnic,\n  { {0x705504e1, 0x644f0046, 0x8cf5007e, 0x00000000}},  // [33f0] _پنجا, ście, азац,\n  { {0x63b80b4a, 0x6d460d00, 0xeb0d007d, 0x00000000}},  //   _krvn, _duka, िक्त_,\n  { {0x6d4601aa, 0x6f0401ca, 0xfff90167, 0x00000000}},  //   _euka, bnic, _شکست_,\n  { {0x7ce018e5, 0x6d4618e6, 0x6aa201d6, 0x00000000}},  //   _föro, _fuka, geof,\n  { {0x6d4618e7, 0x3f830091, 0x09d80044, 0x00000000}},  //   _guka, luju_, _দেবা,\n  { {0xe9b8026c, 0x69d90343, 0x02e2007d, 0x00000000}},  //   انوں_, rywe, _पत्न,\n  { {0x3f830169, 0x69d90197, 0x3f91002d, 0x00000000}},  //   nuju_, sywe, ntzu_,\n  { {0x6d46011f, 0x2b4d0802, 0x657b0387, 0x00000000}},  //   _yuka, _čech_, truh,\n  { {0xc987098c, 0xb5fd050f, 0x3f8309fc, 0x00000000}},  //   _љуби, mašk, huju_,\n  { {0xb4650816, 0x81cb0044, 0x63b818e8, 0x00000000}},  //   школ, লনা_, _brvn,\n  { {0x78a300b5, 0x02c60264, 0x765b0009, 0x00000000}},  //   menv, айно, pbuy,\n  { {0xdced05fa, 0xb5fd0e00, 0x3f830091, 0x00000000}},  //   brać, našk, duju_,\n  { {0x6f040340, 0x628617c6, 0x6146007c, 0x00000000}},  //   vnic, rgko, рега,\n  { {0x6f040046, 0x412a004c, 0x6d460091, 0x00000000}},  //   wnic, того_, _ruka,\n  { {0xf548001d, 0x52760200, 0x3f830107, 0x00000000}},  //   _tục_, _купу, guju_,\n  { {0xb5fd0059, 0xdb0e0344, 0x539a009b, 0x00000000}},  //   jašk, _orbá, _ייצו,\n\n  { {0xee3a00d7, 0x7ce00073, 0x78a300bb, 0x00000000}},  // [3400] тна_, _förl, kenv,\n  { {0x6d46037e, 0x3f830062, 0xccc3007c, 0x00000000}},  //   _vuka, buju_, обуй,\n  { {0x6f0418e1, 0x3f83016c, 0x307b00b6, 0x00000000}},  //   pnic, cuju_, _באינ,\n  { {0x6d46161a, 0xb5fd0c0a, 0x41b302fd, 0x00000000}},  //   _tuka, gašk, _امیر,\n  { {0x7ce018e9, 0x64430036, 0x6aa20051, 0x00000000}},  //   _hörm, _ogni, reof,\n  { {0x78a3054e, 0x1d0a18ea, 0x307a0049, 0x00000000}},  //   genv, _реги_, דאַנ,\n  { {0xe3a70063, 0x96f80256, 0xf6e61867, 0x00000000}},  //   _بر_, лект_, ицин,\n  { {0x64430036, 0xd6d7007c, 0xdced016c, 0x00000000}},  //   _agni, иты_, trać,\n  { {0x3f830091, 0x2d920173, 0x645e010e, 0x00000000}},  //   zuju_, ntye_, _õpik,\n  { {0x63b80224, 0x30c10044, 0x0d97009b, 0x00000000}},  //   _prvn, _উত্স, סכים_,\n  { {0x66e60595, 0x7ce000f8, 0x00000000, 0x00000000}},  //   _кожа, _rörl,   ,\n  { {0x32670fbb, 0x3f8301ee, 0x96ba00f3, 0x00000000}},  //   штов, vuju_, _جائز_,\n  { {0xbddb0129, 0xe4e60088, 0x00000000, 0x00000000}},  //   _agèn, _війн,   ,\n  { {0x3f8304cb, 0x3d10013d, 0x64a3003b, 0x00000000}},  //   tuju_, ़कों_, _мача,\n  { {0x43840025, 0x2ee9018e, 0x644f0036, 0x00000000}},  //   _العق, thaf_, ścic,\n  { {0x2fcd0091, 0x3f830091, 0x78a30e24, 0x00000000}},  //   ćeg_, ruju_, zenv,\n  { {0xb5fd01d9, 0x7ce00010, 0x3f830091, 0x00000000}},  // [3410] vašk, _törl, suju_,\n  { {0x7ce00073, 0xfd1003ab, 0x3f8304eb, 0x00000000}},  //   _förm, وجل_, puju_,\n  { {0x7ce001f6, 0x78a3007f, 0xb5fd0091, 0x00000000}},  //   _görm, venv, tašk,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x26cd016c, 0x78a30c4c, 0xb5fd01ed, 0x00000000}},  //   vjeo_, tenv, rašk,\n  { {0xac19012b, 0xf745012b, 0x3158009b, 0x00000000}},  //   _богу_, беко, סיון_,\n  { {0x3a870147, 0x48780245, 0x78a318eb, 0x00000000}},  //   _вызв, рсія_, renv,\n  { {0x78a31596, 0xfc4a0051, 0xb5fd0166, 0x00000000}},  //   senv, _tríú_, laši,\n  { {0x78a30a5e, 0x00000000, 0x00000000, 0x00000000}},  //   penv,   ,   ,\n  { {0x6444011f, 0xb5fd1472, 0x00000000, 0x00000000}},  //   _şiir, naši,   ,\n  { {0x7ce00073, 0xc2c60025, 0x7e6d18ec, 0x00000000}},  //   _börj, ميدي, kaap,\n  { {0x4735003b, 0xc0490097, 0x778a006b, 0x00000000}},  //   _унес, _טז_, _təxr,\n  { {0xb5fd0107, 0x29070bfd, 0x7ce000f8, 0x00000000}},  //   kaši, onna_, _sörm,\n  { {0x644318ed, 0x270c00b9, 0x00000000, 0x00000000}},  //   _ugni, měna_,   ,\n  { {0xa355023c, 0x1fb5007c, 0x63530035, 0x00000000}},  //   _اختص, остр, _băne,\n  { {0xe9ff0011, 0xf5480011, 0x628d0051, 0x00000000}},  //   _ngắn_, _mụn_, _gcao,\n  { {0xb5fd0091, 0x270c00b9, 0x635300e5, 0x00000000}},  // [3420] faši, něna_, _dăne,\n  { {0xee370407, 0x2d920007, 0xbc6a01fa, 0x00000000}},  //   сну_, rtye_, امان_,\n  { {0xaf0a06b4, 0xbea6030d, 0x7ce001e5, 0x00000000}},  //   _مقدم_, _ланк, _hörk,\n  { {0x26180061, 0x7ce018ee, 0x0c370025, 0x00000000}},  //   _पडली_, _körk, حكمة_,\n  { {0xceb4006b, 0x83fc0091, 0xdce40036, 0x00000000}},  //   mdə_, rađi, esią,\n  { {0xceb4005f, 0x7ce003ed, 0x7d1c0107, 0x00000000}},  //   ldə_, _mörk, _ukrs,\n  { {0x6ecc0204, 0xd8380087, 0x00000000, 0x00000000}},  //   हापु, _obče_,   ,\n  { {0xceb40163, 0x2907002a, 0xf1050164, 0x00000000}},  //   ndə_, anna_, _रद्द_,\n  { {0xceb3012e, 0x2d80004a, 0x7bde18ef, 0x00000000}},  //   ליה_, nrie_, lypu,\n  { {0x2d8018f0, 0x337402e9, 0x92c50044, 0x00000000}},  //   irie_, огор, _এতে_,\n  { {0xceb4005f, 0xd6cf005e, 0x3cf0013d, 0x00000000}},  //   kdə_, _ет_, _इतने_,\n  { {0x7ae2007f, 0x2d800093, 0x00000000, 0x00000000}},  //   nkot, krie_,   ,\n  { {0x7e6d001c, 0x656f002a, 0xceb4006b, 0x00000000}},  //   vaap, ácht, ddə_,\n  { {0x7ae21092, 0x2cb30555, 0x7e6d1519, 0x00000000}},  //   hkot, xdxd_, waap,\n  { {0x7ae200b0, 0x4fc402ea, 0xceb4013f, 0x00000000}},  //   kkot, пста, fdə_,\n  { {0x7ce00039, 0x2d8006ec, 0x3f7304eb, 0x00000000}},  //   _förk, frie_, rću_,\n  { {0x2907000c, 0x7ce00180, 0x7e6d010e, 0x00000000}},  // [3430] ynna_, _görk, raap,\n  { {0x2b580022, 0x26090061, 0x291e00e0, 0x00000000}},  //   _btrc_, ापती_, _nkta_,\n  { {0xb5fd0006, 0x2d8018f1, 0xfb8407d0, 0x00000000}},  //   raši, arie_, зычн,\n  { {0x2d80001a, 0x291e01a3, 0xceb4006b, 0x00000000}},  //   brie_, _akta_, cdə_,\n  { {0x2d800035, 0xcec0013e, 0x60d70288, 0x00000000}},  //   crie_, ářet_, _koxm,\n  { {0xfe73026c, 0x92c50044, 0x83fc0107, 0x00000000}},  //   _بدھ_, _এতো_, lađu,\n  { {0xa6c90920, 0xddc40006, 0x2aa0000a, 0x00000000}},  //   илка_, maiš, _bčbč_,\n  { {0xba7701ef, 0xe579003b, 0x96b9012b, 0x00000000}},  //   _داست, ази_, руку_,\n  { {0x7ae9011f, 0x4ae4008b, 0x7afb0943, 0x00000000}},  //   _ilet, _эўра, _imut,\n  { {0xceb4005f, 0x039502dc, 0x395d005b, 0x00000000}},  //   zdə_, ормя, mpws_,\n  { {0x7ae90343, 0x130a007c, 0xceb4006b, 0x00000000}},  //   _klet, иной_, ydə_,\n  { {0xdb1c00f4, 0x92f603e8, 0xceb4006b, 0x00000000}},  //   _arrê, ічні, xdə_,\n  { {0x7ce00073, 0x6353001a, 0x60d700bb, 0x00000000}},  //   _förh, _bănc, _boxm,\n  { {0x7ae918f2, 0x7ae2002d, 0xa067013b, 0x00000000}},  //   _llet, zkot, жара_,\n  { {0x7ae9003c, 0xceb4005f, 0x48e10061, 0x00000000}},  //   _olet, tdə_, _कवनो_,\n  { {0xbebb008d, 0x83fc0107, 0xc7b200a0, 0x00000000}},  //   _shër, gađu, ובל_,\n  { {0xceb4005f, 0x16360049, 0x2c260044, 0x00000000}},  // [3440] rdə_, ַנער_, _বলেই_,\n  { {0x2d800007, 0x7ae91198, 0x69b0013d, 0x00000000}},  //   rrie_, _alet, _आईबी,\n  { {0xa09b0476, 0x7ae20e88, 0x7ae918f3, 0x00000000}},  //   _דייט, tkot, _blet,\n  { {0x2d8004b4, 0x639a0049, 0xb5fd0059, 0x00000000}},  //   prie_, יסענ, lašu,\n  { {0xdb210047, 0xbebb0065, 0x6120000c, 0x00000000}},  //   ítás, _thër, sölu,\n  { {0x7ae918f4, 0x3a2d0107, 0xb5fd0006, 0x00000000}},  //   _elet, _dzep_, našu,\n  { {0x7ae90028, 0xd90d06c6, 0xf76f023c, 0x00000000}},  //   _flet, دیل_, ناي_,\n  { {0x7c2e11e6, 0x00000000, 0x00000000, 0x00000000}},  //   _izbr,   ,   ,\n  { {0x29000181, 0xe4a6007c, 0xf77200a1, 0x00000000}},  //   éias_, орно, ساں_,\n  { {0x07a6005e, 0x798218f5, 0x449701ab, 0x00000000}},  //   _мазн, mrow, овью_,\n  { {0xd6da0014, 0xb6cc0180, 0x94710241, 0x00000000}},  //   _پوشش_, çüsü, رگوا,\n  { {0x291c18f6, 0xfc4600b9, 0x79820036, 0x00000000}},  //   lova_, šího_, orow,\n  { {0xc6490a4f, 0x00000000, 0x00000000, 0x00000000}},  //   _اجمل_,   ,   ,\n  { {0x7ce018f7, 0x00000000, 0x00000000, 0x00000000}},  //   _föri,   ,   ,\n  { {0x291c001a, 0x270c00b9, 0x3e6b00ed, 0x00000000}},  //   iova_, něno_, ишан_,\n  { {0x291c0091, 0x798218f8, 0xa3c9007d, 0x00000000}},  //   hova_, krow, ोहर_,\n  { {0x61200047, 0x291c0209, 0x3d941281, 0x00000000}},  // [3450] tölt, kova_, митр,\n  { {0x7ae90292, 0x79820036, 0x613218f9, 0x00000000}},  //   _slet, drow, gæld,\n  { {0xf09200b6, 0xb5fd037e, 0x7ae9040d, 0x00000000}},  //   _אני_, lašt, _plet,\n  { {0x79820036, 0xd90f00a1, 0x53380049, 0x00000000}},  //   frow, ھیا_, ַנגן_,\n  { {0x79820036, 0x3ea918fa, 0x21210022, 0x00000000}},  //   grow, meat_, _kkhh_,\n  { {0xe8f801ff, 0x3ea918fb, 0xf5480011, 0x00000000}},  //   олі_, leat_, _cụm_,\n  { {0xf7710025, 0x98a20152, 0x7ae9002b, 0x00000000}},  //   ءات_, хище, _tlet,\n  { {0x7afb0c2b, 0xdce40036, 0x224918fc, 0x00000000}},  //   _umut, dsię, _ngak_,\n  { {0x291c0091, 0xdce40036, 0x79820133, 0x00000000}},  //   bova_, esię, crow,\n  { {0x2249027e, 0xceb4006b, 0x291c0142, 0x00000000}},  //   _agak_, llət_, cova_,\n  { {0x644f0046, 0x1425007e, 0x3ea90052, 0x00000000}},  //   ścio, ядом, keat_,\n  { {0xe29a0ae0, 0x39450190, 0x00000000, 0x00000000}},  //   щам_, _hils_,   ,\n  { {0x21330082, 0x3ea90052, 0x00000000, 0x00000000}},  //   _bhxh_, deat_,   ,\n  { {0xd479007b, 0x55ba009b, 0xa7fc01df, 0x00000000}},  //   _האַל, _למנו, _adıy,\n  { {0xb5fd00d0, 0x442005b8, 0x394501b8, 0x00000000}},  //   rašu, _цi_, _mils_,\n  { {0xc7b2007b, 0x200518fd, 0x394d01d6, 0x00000000}},  //   עבן_, úlia_, _oues_,\n  { {0x394d009d, 0x25ad18fe, 0xada30143, 0x00000000}},  // [3460] _nues_, nwel_, натл,\n  { {0x394500f8, 0x6d23012b, 0xdb1c00f4, 0x00000000}},  //   _nils_, едуз, _irré,\n  { {0x291c11e4, 0x61320018, 0x7ac6005e, 0x00000000}},  //   vova_, ræld, зсле,\n  { {0x79820036, 0x291c01aa, 0xec130014, 0x00000000}},  //   trow, wova_, روند,\n  { {0x394d18ff, 0x291c0091, 0x3f981900, 0x00000000}},  //   _cues_, tova_, ltru_,\n  { {0x394d04bd, 0xdb07000c, 0xd90d0167, 0x00000000}},  //   _dues_, _brjó, لیق_,\n  { {0x3f981305, 0x291c1901, 0x7c2e0089, 0x00000000}},  //   ntru_, rova_, _uzbr,\n  { {0x291c008d, 0x79820036, 0x7d1e0039, 0x00000000}},  //   sova_, prow, lops,\n  { {0x394500f4, 0x291c0091, 0x394d0ec1, 0x00000000}},  //   _fils_, pova_, _gues_,\n  { {0x7d1e1902, 0x39451903, 0x937800e2, 0x00000000}},  //   nops, _gils_, обот_,\n  { {0x7ce00073, 0xdced01d5, 0xdb1c01e6, 0x00000000}},  //   _förv, ntaġ, _arré,\n  { {0x69c01282, 0xdb0e00d4, 0x52a70025, 0x00000000}},  //   _krme, _arbú, أصدق,\n  { {0xe298008b, 0x3ea91904, 0x37ae0044, 0x00000000}},  //   чаў_, veat_, _কপির,\n  { {0xb5fd04a5, 0xa63b00b6, 0x00000000, 0x00000000}},  //   rašt, _הגדר,   ,\n  { {0x7d1e1043, 0x37de0044, 0x63530035, 0x00000000}},  //   dops, _ভেতর, _tăna,\n  { {0xb5fd04eb, 0x00000000, 0x00000000, 0x00000000}},  //   pašt,   ,   ,\n  { {0xceb4005f, 0x634800b9, 0x3ea90585, 0x00000000}},  // [3470] vlət_, _věnu, reat_,\n  { {0x394d009d, 0x61ef005a, 0xe9ff0082, 0x00000000}},  //   _rues_, ınlı, _ngạn_,\n  { {0x3ea90498, 0x9be4007e, 0xcf9b00e2, 0x00000000}},  //   peat_, ніцк, _ујп_,\n  { {0x394d0219, 0x39450129, 0x628f1905, 0x00000000}},  //   _pues_, _sils_, ngco,\n  { {0x27211906, 0x394d0f57, 0x39450089, 0x00000000}},  //   zóns_, _ques_, _pils_,\n  { {0x475901e0, 0x394d00f4, 0x6d5d022b, 0x00000000}},  //   ория_, _vues_, _itsa,\n  { {0xceb4005f, 0x2a6d0004, 0x69c01907, 0x00000000}},  //   mlər_, _teeb_, _erme,\n  { {0xceb4005f, 0x6d4704cb, 0x64580030, 0x00000000}},  //   llər_, _hija, _afvi,\n  { {0x6d470f59, 0x6d4f000d, 0x69c001ee, 0x00000000}},  //   _kija, _juca, _grme,\n  { {0x7ce01908, 0xceb4005f, 0x6f0d010f, 0x00000000}},  //   _föru, nlər_, hnac,\n  { {0x7ce00047, 0x6d470a6e, 0x3f98002b, 0x00000000}},  //   _törv, _mija, xtru_,\n  { {0x6d5d1909, 0xdced0279, 0x672201ee, 0x00000000}},  //   _otsa, yrağ, _gkoj,\n  { {0xceb4005f, 0x6f0d09c6, 0x6d4f00f6, 0x00000000}},  //   klər_, dnac, _nuca,\n  { {0x6d47190a, 0x6729190b, 0x7e7d1621, 0x00000000}},  //   _nija, llej, _adsp,\n  { {0x6d5d0a5c, 0xe29a0256, 0xceb4006b, 0x00000000}},  //   _atsa, _дай_, dlər_,\n  { {0x6d4f001a, 0x6f0d120c, 0x6d47190c, 0x00000000}},  //   _buca, gnac, _aija,\n  { {0x44270bc4, 0x6d4701a3, 0xceb4006b, 0x00000000}},  // [3480] _hyn_, _bija, flər_,\n  { {0x3e6c001d, 0x6e2b001f, 0x6d4f0207, 0x00000000}},  //   ết_, ügba, _duca,\n  { {0x7d1e0514, 0x6d47020c, 0x6d4f00d6, 0x00000000}},  //   rops, _dija, _euca,\n  { {0x673b0046, 0x7d1e0190, 0xdced014a, 0x00000000}},  //   jmuj, sops, prağ,\n  { {0xceb4005f, 0x44270007, 0x6d470211, 0x00000000}},  //   blər_, _lyn_, _fija,\n  { {0x69c0016c, 0x765901d6, 0x644f0036, 0x00000000}},  //   _vrme, _afwy, ścij,\n  { {0x67290211, 0x62880006, 0x7ce0014a, 0x00000000}},  //   flej, ėdoj, _dört,\n  { {0xd6d00054, 0x7ce0000c, 0x6d4f008e, 0x00000000}},  //   اقة_, _vöru, _yuca,\n  { {0x7ce00039, 0x69c0001a, 0x2cb80313, 0x00000000}},  //   _fört, _urme, _kard_,\n  { {0x6f0d0046, 0x442700f8, 0x764b190d, 0x00000000}},  //   znac, _byn_, _eggy,\n  { {0x4427018e, 0x7ce00210, 0x6ef10030, 0x00000000}},  //   _cyn_, _hörs, _håbe,\n  { {0x44270016, 0xceb4006b, 0x7cf20030, 0x00000000}},  //   _dyn_, zlər_, _færg,\n  { {0xceb4006b, 0x7e6f00f6, 0x290e0026, 0x00000000}},  //   ylər_, _recp, onfa_,\n  { {0x4427190e, 0x7ce006d3, 0x6d4f0213, 0x00000000}},  //   _fyn_, _mörs, _ruca,\n  { {0x44270016, 0xe8df0011, 0xceb4006b, 0x00000000}},  //   _gyn_, _cuộn_, vlər_,\n  { {0x6d47021e, 0x6720022e, 0x2cb800c7, 0x00000000}},  //   _sija, nomj, _aard_,\n  { {0x6f0d0919, 0xceb4005f, 0x6d470213, 0x00000000}},  // [3490] rnac, tlər_, _pija,\n  { {0x6f0d018e, 0x2cb8190f, 0x798b0061, 0x00000000}},  //   snac, _card_, vugw,\n  { {0xceb40163, 0x6d47000b, 0x673b0036, 0x00000000}},  //   rlər_, _vija, ymuj,\n  { {0x7ce01910, 0x6d470093, 0xceb4006b, 0x00000000}},  //   _börs, _wija, slər_,\n  { {0x672012d5, 0x6d47003b, 0x2cb80066, 0x00000000}},  //   domj, _tija, _fard_,\n  { {0x2cb81911, 0x798b1912, 0xa7b501fc, 0x00000000}},  //   _gard_, rugw, есиј,\n  { {0x6729006c, 0xddc60089, 0x3eb900b5, 0x00000000}},  //   tlej, _iekš, _kast_,\n  { {0x7ce01913, 0xe9ff0082, 0x2cb80087, 0x00000000}},  //   _förs, _ngần_, _zard_,\n  { {0x7ce01914, 0x44270292, 0x7cf20030, 0x00000000}},  //   _tört, _syn_, _færd,\n  { {0x3eb90038, 0x67bb01d8, 0x44270007, 0x00000000}},  //   _last_, _واضح_, _pyn_,\n  { {0xc20900b6, 0x67290030, 0x232a0216, 0x00000000}},  //   _פה_, plej, зони_,\n  { {0x7af90279, 0xbebb0065, 0x3eb915c7, 0x00000000}},  //   _çatı, _skën, _nast_,\n  { {0x44271915, 0x35a508f3, 0x7cf2043e, 0x00000000}},  //   _wyn_, _чалг, _hære,\n  { {0x7cf20698, 0x44271916, 0x3eb900d9, 0x00000000}},  //   _kære, _tyn_, _aast_,\n  { {0x6ee3006c, 0x8fa3189f, 0x7cf200ea, 0x00000000}},  //   _lõbu, ларе, _jære,\n  { {0xe1ff027b, 0x6eea0161, 0x3eb900ab, 0x00000000}},  //   mbón_, _výbo, _cast_,\n  { {0x7cf20637, 0x62960009, 0x72060014, 0x00000000}},  // [34a0] _lære, _icyo, _سودم,\n  { {0x3eb900ab, 0xdd8f0188, 0xb19b0049, 0x00000000}},  //   _east_, صوم_, _צייכ,\n  { {0xe29f000c, 0x61e61917, 0x12d20044, 0x00000000}},  //   liða_, lykl, াসীদ,\n  { {0x3eb905c6, 0x395f1824, 0xd00f00a1, 0x00000000}},  //   _gast_, _btus_, _چلی_,\n  { {0x2cb81918, 0xe89417fa, 0x7ce00039, 0x00000000}},  //   _tard_, валь, _dörr,\n  { {0x7cf20737, 0x6ef10030, 0x7e761919, 0x00000000}},  //   _bære, _våbe, layp,\n  { {0x09d80055, 0x7ce00073, 0x7cf20030, 0x00000000}},  //   _দেখা, _förr, _værd,\n  { {0x8f9b061e, 0x61e6010a, 0x26dd023a, 0x00000000}},  //   ליצי, kykl, _cowo_,\n  { {0x60de0007, 0xd2510014, 0x550603e0, 0x00000000}},  //   _oopm, یند_, ечна,\n  { {0xdb15010f, 0x644d0279, 0x61e60006, 0x00000000}},  //   _erzä, _şair, dykl,\n  { {0xccf300b6, 0x6720191a, 0x7cf20146, 0x00000000}},  //   רכת_, pomj, _gære,\n  { {0xf1bf0f6c, 0x78ba0010, 0x00000000, 0x00000000}},  //   tvá_, _hatv,   ,\n  { {0x3eb9008d, 0x250b00a1, 0x78ba01d6, 0x00000000}},  //   _rast_, _کرنی_, _katv,\n  { {0x31350603, 0x3eb90007, 0x75210129, 0x00000000}},  //   тегр, _sast_, colz,\n  { {0x3eb905d0, 0x3ea0191b, 0x78ba03fa, 0x00000000}},  //   _past_, ffit_, _matv,\n  { {0x78ba191c, 0x7cf2191d, 0x00000000, 0x00000000}},  //   _latv, _nærb,   ,\n  { {0x3eb900b5, 0x7d25026c, 0x61e60387, 0x00000000}},  // [34b0] _vast_, نفرن, cykl,\n  { {0x3eb900d9, 0x2ee9191e, 0xdbd1010e, 0x00000000}},  //   _wast_, skaf_, püüg,\n  { {0x7cf20637, 0x3eb905d5, 0x00000000, 0x00000000}},  //   _bærb, _tast_,   ,\n  { {0xc01c0011, 0x9980014a, 0x0f7a01ce, 0x00000000}},  //   _lược_, çiş_, _קארב,\n  { {0x442b0011, 0x7cf2068f, 0x00000000, 0x00000000}},  //   ́c_, _sære,   ,\n  { {0x78ba00e5, 0x3158009b, 0x09e2030d, 0x00000000}},  //   _catv, עיון_, рошн,\n  { {0x8aa7008b, 0x61e603de, 0xac180088, 0x00000000}},  //   _прад, zykl, _зору_,\n  { {0x7cf2068f, 0x78a40091, 0x645a001a, 0x00000000}},  //   _være, điva, ecti,\n  { {0x7ce0191f, 0x940b006b, 0x23600091, 0x00000000}},  //   _körp, əcə_, _čija_,\n  { {0x78ba0ff2, 0x61e61920, 0x25bf0007, 0x00000000}},  //   _gatv, vykl, rvul_,\n  { {0xc6e701fb, 0x6abb001f, 0xc01c0011, 0x00000000}},  //   _підп, _kauf, _dược_,\n  { {0x29070027, 0x78ba1434, 0xe1ff12e1, 0x00000000}},  //   lina_, _zatv, rbón_,\n  { {0x95e900a1, 0x399b0181, 0x98be0035, 0x00000000}},  //   _تباہ_, nês_, _uită_,\n  { {0x6abb001f, 0x2d890007, 0xe1ff0010, 0x00000000}},  //   _lauf, drae_, mból_,\n  { {0x61e6010a, 0x657b000c, 0x00000000, 0x00000000}},  //   sykl, lsuh,   ,\n  { {0x29071921, 0x2416009b, 0xe1f20355, 0x00000000}},  //   hina_, _שחקן_, _نسخ_,\n  { {0x2907002d, 0x60de0061, 0x7e760146, 0x00000000}},  // [34c0] kina_, _topm, rayp,\n  { {0x29070a13, 0xee370407, 0x98be0006, 0x00000000}},  //   jina_, тну_, _kitą_,\n  { {0x29070119, 0x644f0036, 0x7e760058, 0x00000000}},  //   dina_, ściw, payp,\n  { {0x2d890181, 0xe1ff0010, 0xbad5007e, 0x00000000}},  //   brae_, kból_, лічы,\n  { {0x78ba030b, 0x7ce00039, 0xc333034e, 0x00000000}},  //   _patv, _förp, בוא_,\n  { {0x290702ae, 0x97a6003b, 0xc8780095, 0x00000000}},  //   gina_, врил, _boğa_,\n  { {0x8b26007e, 0x27e700ea, 0x00000000, 0x00000000}},  //   _адве, gynn_,   ,\n  { {0x399b0181, 0x8c1b0104, 0xf5480082, 0x00000000}},  //   bês_, _חולי, _lụt_,\n  { {0x81e70055, 0x399b0181, 0x78ba0f22, 0x00000000}},  //   _যেন_, cês_, _tatv,\n  { {0x645a0050, 0x6abb0036, 0x00000000, 0x00000000}},  //   ucti, _zauf,   ,\n  { {0xd25100a2, 0x69c20007, 0x645a0133, 0x00000000}},  //   ینگ_, lvoe, rcti,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x394c00ab, 0x69c20250, 0x7ae300c4, 0x00000000}},  //   _kids_, nvoe, ênti,\n  { {0x5577007b, 0x2d890007, 0x03c601ee, 0x00000000}},  //   _יעדן_, vrae_, _асим,\n  { {0xcebb003b, 0x13b30379, 0x00000000, 0x00000000}},  //   мља_, _نصيح,   ,\n  { {0x29071922, 0x2d890e32, 0x00000000, 0x00000000}},  //   zina_, trae_,   ,\n  { {0x6abb1642, 0x69c200bb, 0x00000000, 0x00000000}},  // [34d0] _rauf, jvoe,   ,\n  { {0x2907081d, 0xcc0b03ec, 0xb5df0044, 0x00000000}},  //   xina_, وزان_, _বেঁচ,\n  { {0x290700ee, 0x99d40014, 0xfd44007e, 0x00000000}},  //   vina_, یتها, рэтн,\n  { {0x7ae01923, 0x29071156, 0xbcfb0051, 0x00000000}},  //   _comt, wina_, _dtéa,\n  { {0xdcef005f, 0x29070490, 0x69c207a5, 0x00000000}},  //   şdır, tina_, gvoe,\n  { {0xdb1c00f6, 0x61320190, 0x00000000, 0x00000000}},  //   _errà, jæll,   ,\n  { {0x6abb0475, 0x3f91005a, 0x273a0023, 0x00000000}},  //   _tauf, nuzu_, kënd_,\n  { {0x657b0058, 0x7bc70066, 0xe1ff0010, 0x00000000}},  //   tsuh, _irju, tból_,\n  { {0x29070b41, 0xfec50044, 0x61320030, 0x00000000}},  //   pina_, _একাধ, fæll,\n  { {0x394c01b5, 0x7cf2000c, 0x657b1924, 0x00000000}},  //   _gids_, _kæra, rsuh,\n  { {0x657b00b0, 0xe1ff0010, 0x3f9100e7, 0x00000000}},  //   ssuh, sból_, juzu_,\n  { {0x68e10018, 0x65620065, 0x3f911925, 0x00000000}},  //   _hold, _ftoh, duzu_,\n  { {0x68e10d44, 0x26cf01a2, 0x7cf20056, 0x00000000}},  //   _kold, _ingo_, _læra,\n  { {0x29350049, 0xd5ac00a1, 0x3f911926, 0x00000000}},  //   טאָן_, _کہی_, fuzu_,\n  { {0x68e1000d, 0x442400e9, 0x3f91002d, 0x00000000}},  //   _mold, _پروف, guzu_,\n  { {0x6ee30004, 0x2b9c0802, 0x52761927, 0x00000000}},  //   _sõbr, víc_, _суку,\n  { {0x62840211, 0x7bc7008a, 0x7ae00035, 0x00000000}},  // [34e0] _idio, _arju, _romt,\n  { {0x7ae01928, 0x00000000, 0x00000000, 0x00000000}},  //   _somt,   ,   ,\n  { {0xb09b0476, 0x409b0049, 0xa2d80164, 0x00000000}},  //   _אייר, _אביס, याप्,\n  { {0x69c20250, 0x3cf00061, 0xdb0e00f6, 0x00000000}},  //   tvoe, _इतके_, _arbò,\n  { {0x68e10e8f, 0x2b9c01ca, 0x187405b8, 0x00000000}},  //   _bold, síc_, агля,\n  { {0x69c20250, 0x2d920dfc, 0x68e1051b, 0x00000000}},  //   rvoe, muye_, _cold,\n  { {0x7ae0004f, 0x68e1049d, 0x62840555, 0x00000000}},  //   _tomt, _dold, _odio,\n  { {0x6d4e1929, 0x473400e2, 0x00000000, 0x00000000}},  //   _hiba, јнис,   ,\n  { {0x6d4e000b, 0x2905192a, 0x58960014, 0x00000000}},  //   _kiba, _fmla_, _مجاز,\n  { {0x68e1192b, 0x6284008e, 0x6d4e0066, 0x00000000}},  //   _gold, _adio, _jiba,\n  { {0x2d920009, 0xc6250044, 0x998d012d, 0x00000000}},  //   huye_, মেলা_, _izeš_,\n  { {0x6d4e011c, 0x973c016e, 0x68e1192c, 0x00000000}},  //   _liba, _opći, _zold,\n  { {0x68e10279, 0x6284018e, 0x870600a1, 0x00000000}},  //   _yold, _ddio, _لڑکے_,\n  { {0x6d4e0f36, 0x3f91002d, 0xe104007e, 0x00000000}},  //   _niba, tuzu_, бясп,\n  { {0xe44f0380, 0x7c2e192d, 0x00000000, 0x00000000}},  //   _عضو_, _nybr,   ,\n  { {0x2d920045, 0xaf3704b1, 0x6d4e192e, 0x00000000}},  //   fuye_, ارست, _aiba,\n  { {0x6d4e192f, 0x2d9201dd, 0x5c7500e3, 0x00000000}},  // [34f0] _biba, guye_, илат,\n  { {0x2d8705e8, 0x7c2e1930, 0x2b4d07c0, 0x00000000}},  //   čne_, _bybr, _siec_,\n  { {0x6d4e0149, 0xaa55003b, 0x8f351867, 0x00000000}},  //   _diba, авеш, _венц,\n  { {0x6d4e002d, 0x2d921931, 0x00000000, 0x00000000}},  //   _eiba, buye_,   ,\n  { {0x68e1023a, 0x442e037d, 0x2b4d0011, 0x00000000}},  //   _pold, _lyf_, _viec_,\n  { {0x6d4e0059, 0x2b4d0036, 0x7c2e00d9, 0x00000000}},  //   _giba, _wiec_, _fybr,\n  { {0x68e11932, 0x46f50aed, 0xf6510025, 0x00000000}},  //   _vold, ичит, يئة_,\n  { {0x6d4e01c5, 0x68e100d9, 0xe1ff000c, 0x00000000}},  //   _ziba, _wold, gbók_,\n  { {0x6d4e0009, 0xe5760783, 0x195900a5, 0x00000000}},  //   _yiba, азы_, _разы_,\n  { {0xb3a9011f, 0x6d4e004a, 0x00000000, 0x00000000}},  //   _çıkı, _xiba,   ,\n  { {0xb4e5001c, 0x03a50a27, 0x2d920009, 0x00000000}},  //   _नवी_, шино, zuye_,\n  { {0xb6c9026c, 0x69c917c6, 0x2d920045, 0x00000000}},  //   _جائے_, _kree, yuye_,\n  { {0x95670ae0, 0x7f57009d, 0x00000000, 0x00000000}},  //   _съед, _auxq,   ,\n  { {0x2d920009, 0x65690190, 0x672404eb, 0x00000000}},  //   vuye_, mpeh, čije,\n  { {0x6d4e1933, 0x6ef800fa, 0x65691934, 0x00000000}},  //   _riba, _líbe, lpeh,\n  { {0xe8df001d, 0x539a00b6, 0x6d4e0058, 0x00000000}},  //   _muốn_, _סיפו, _siba,\n  { {0xed5701b3, 0xd1320025, 0x98a5000a, 0x00000000}},  // [3500] иот_, _ومع_, _aklč_,\n  { {0x2d921935, 0x6aa904b3, 0x6ef10146, 0x00000000}},  //   ruye_, _abef, _fåbo,\n  { {0x1d1901fb, 0xeb9a10a9, 0x6d4e0020, 0x00000000}},  //   ують_, тие_, _viba,\n  { {0x7c2e004f, 0xfaa606b6, 0x69c91936, 0x00000000}},  //   _vybr, радо, _bree,\n  { {0x7c2e0046, 0x6d4e0487, 0x69c91937, 0x00000000}},  //   _wybr, _tiba, _cree,\n  { {0x6f161191, 0x2d82016c, 0x2d801938, 0x00000000}},  //   lnyc, _ivke_, msie_,\n  { {0xe8df0011, 0x6f160036, 0x1d071939, 0x00000000}},  //   _cuốn_, onyc, _тери_,\n  { {0x6f16193a, 0x2d800022, 0x6b830035, 0x00000000}},  //   nnyc, osie_, ânge,\n  { {0x2d800343, 0x69c90038, 0x3f5c0082, 0x00000000}},  //   nsie_, _gree, _líu_,\n  { {0x44f40072, 0x2d80193b, 0x2b580087, 0x00000000}},  //   спос, isie_, _kurc_,\n  { {0x3f5c193c, 0x443801c4, 0x00000000, 0x00000000}},  //   _níu_, år_,   ,\n  { {0xe5a6017f, 0x2d80193d, 0x6f160046, 0x00000000}},  //   _види, ksie_, jnyc,\n  { {0x6f160871, 0x442e0016, 0xfe7f009d, 0x00000000}},  //   dnyc, _wyf_, _loïc_,\n  { {0x09c30044, 0x969200a1, 0xddcf0035, 0x00000000}},  //   ্নচা, _ایکش, _lecţ,\n  { {0x75280036, 0x403515c4, 0x63530035, 0x00000000}},  //   modz, севс, _bănu,\n  { {0x27210027, 0x7528193e, 0x00000000, 0x00000000}},  //   fóny_, lodz,   ,\n  { {0x7cf20190, 0x7f4f01c3, 0x635300e5, 0x00000000}},  // [3510] _værn, _vicq, _dănu,\n  { {0xeb1f0201, 0x6d8a00a1, 0x6aa90026, 0x00000000}},  //   यक्त_, املہ_, _sbef,\n  { {0x6f160832, 0x2d80193f, 0x00000000, 0x00000000}},  //   bnyc, asie_,   ,\n  { {0x69c90663, 0x75280036, 0x2b580026, 0x00000000}},  //   _pree, hodz, _durc_,\n  { {0x7cf2158f, 0xe1ff076b, 0x7f3a009b, 0x00000000}},  //   _kærl, nzó_, _תערו,\n  { {0x6f0d0dc6, 0x69c906b2, 0xb4e50061, 0x00000000}},  //   liac, _vree, _नवे_,\n  { {0x69c901bb, 0x3f5c0082, 0x00000000, 0x00000000}},  //   _wree, _xíu_,   ,\n  { {0x6f0d0871, 0x6d45002a, 0x660d000c, 0x00000000}},  //   niac, lmha, _þakk,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6d45002a, 0x6f1605fd, 0x6f0d0197, 0x00000000}},  //   nmha, znyc, hiac,\n  { {0x65690de5, 0x6f0d1940, 0x272104bb, 0x00000000}},  //   speh, kiac, zóny_,\n  { {0x8a14026c, 0x6132000c, 0x63a10009, 0x00000000}},  //   _اظہا, mæli, rtln,\n  { {0x6f0d0142, 0xe297007c, 0x6f160142, 0x00000000}},  //   diac, щая_, vnyc,\n  { {0xd46601fb, 0x6f160036, 0x61460893, 0x00000000}},  //   _лише_, wnyc, сега,\n  { {0x33951941, 0x6f160871, 0x438501b7, 0x00000000}},  //   _العز, tnyc, _البق,\n  { {0x09bd08b7, 0x2d800007, 0x83640b03, 0x00000000}},  //   _আপনা, tsie_, _بدول,\n  { {0x8297009b, 0x6f1605fd, 0x7f440005, 0x00000000}},  // [3520] _הדפס_, rnyc, rmiq,\n  { {0x2d8002ae, 0xa25b0181, 0xddcf001a, 0x00000000}},  //   rsie_, ndôn, _secţ,\n  { {0x2d80049b, 0xb5fd010a, 0xf53601ce, 0x00000000}},  //   ssie_, rašy, צטער_,\n  { {0x2d801942, 0x6d450051, 0xaf3602fd, 0x00000000}},  //   psie_, amha, _درخت,\n  { {0x08540088, 0x98a5002b, 0x00000000, 0x00000000}},  //   овлю, _silġ_,   ,\n  { {0x6d450051, 0x2b580bdb, 0x00000000, 0x00000000}},  //   cmha, _turc_,   ,\n  { {0x37060242, 0x00000000, 0x00000000, 0x00000000}},  //   йчив,   ,   ,\n  { {0xfaa3026b, 0xe8df001d, 0x75280036, 0x00000000}},  //   _насо, _buồn_, wodz,\n  { {0x186a0088, 0x00000000, 0x00000000, 0x00000000}},  //   _бази_,   ,   ,\n  { {0x6f0d1943, 0xe29f000c, 0x00000000, 0x00000000}},  //   ziac, miði_,   ,\n  { {0x63a5001f, 0x75280871, 0x7cf201e3, 0x00000000}},  //   _ähnl, rodz, _nærm,\n  { {0x083b0049, 0x7cf202cc, 0x290e00e7, 0x00000000}},  //   _געבל, _særl, lifa_,\n  { {0x79820046, 0x26c30089, 0x6f0d1944, 0x00000000}},  //   nsow, ējot_, viac,\n  { {0x290e0032, 0xe3b20025, 0xe1ff1819, 0x00000000}},  //   nifa_, _فرع_, rzó_,\n  { {0x436700ed, 0x6f0d0142, 0x00000000, 0x00000000}},  //   _лајн_, tiac,   ,\n  { {0x877b00a3, 0x79820036, 0x8c000044, 0x00000000}},  //   טאלי, ksow, ্থান_,\n  { {0x6f0d05e1, 0x28b903d7, 0x00000000, 0x00000000}},  // [3530] riac, _इसलि,   ,\n  { {0x6f0d0027, 0x6d451945, 0x463b0049, 0x00000000}},  //   siac, umha, רעמע,\n  { {0x6d451946, 0x25a40020, 0x290e0066, 0x00000000}},  //   rmha, html_, difa_,\n  { {0xf2d40049, 0x539b009b, 0x5a350216, 0x00000000}},  //   ּעס_, ריאו, онет,\n  { {0xb2bc0049, 0x290e0066, 0x6f1d00d9, 0x00000000}},  //   טמאר, fifa_, _ijsc,\n  { {0x0b7b083e, 0x00000000, 0x00000000, 0x00000000}},  //   _مصرع_,   ,   ,\n  { {0x0a6b06e3, 0xf7451947, 0xf772009e, 0x00000000}},  //   _брзи_, оеко, واٹ_,\n  { {0x0565012b, 0x3b6402dc, 0x3ea902d4, 0x00000000}},  //   овин, _хърв, nfat_,\n  { {0xceb400a0, 0x3ea90016, 0xa8a7004c, 0x00000000}},  //   ליק_, ifat_, _грек,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x28150054, 0x00000000, 0x00000000, 0x00000000}},  //   _بواس,   ,   ,\n  { {0x4acf02fb, 0xe29a1948, 0x26c30089, 0x00000000}},  //   _सोमव, шам_, ējos_,\n  { {0x9f4c00b9, 0x7cf200ea, 0x00000000, 0x00000000}},  //   ádí_, _særm,   ,\n  { {0x2d4d0521, 0x6eea1949, 0x443c0087, 0x00000000}},  //   _džek_, _nýbr, _fzv_,\n  { {0x3ea90c43, 0xc4470014, 0x7ce00010, 0x00000000}},  //   ffat_, _دیدن_, _törz,\n  { {0x7cf200ea, 0x9f590010, 0x00000000, 0x00000000}},  //   _værm, ázás_,   ,\n  { {0x82fa01ef, 0xec7a00e3, 0x61ef028a, 0x00000000}},  // [3540] _مرکز_, ипа_, cycl,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xdee601fc, 0x60d70049, 0x00000000, 0x00000000}},  //   _дони, _וויא_,   ,\n  { {0x3f98194a, 0x49ca05b5, 0x261a0082, 0x00000000}},  //   muru_, илен_, ừoi_,\n  { {0x3f98008a, 0x290e014a, 0x3a200095, 0x00000000}},  //   luru_, tifa_, çip_,\n  { {0xf77200b8, 0x7cf20018, 0xe29f000c, 0x00000000}},  //   واع_, _mærk, riði_,\n  { {0x290e194b, 0x31a40010, 0x7cf20190, 0x00000000}},  //   rifa_, höz_, _lærk,\n  { {0x7e640682, 0x27e00091, 0x290e00e7, 0x00000000}},  //   ncip, ćin_, sifa_,\n  { {0x3f980020, 0x26c20027, 0x2369183b, 0x00000000}},  //   huru_, ľko_, _čaja_,\n  { {0x69c00047, 0x3f98194c, 0x26c207ac, 0x00000000}},  //   _isme, kuru_, žko_,\n  { {0x3f9816b1, 0x4acf0061, 0x316901ee, 0x00000000}},  //   juru_, _सोडव, _staz_,\n  { {0x46d1013d, 0x68e8005b, 0x290c016c, 0x00000000}},  //   _दोपह, _hodd, _hmda_,\n  { {0x68e801e5, 0x00000000, 0x00000000, 0x00000000}},  //   _kodd,   ,   ,\n  { {0x443c01ca, 0x3f9816fa, 0xf99300b3, 0x00000000}},  //   _tzv_, furu_, ורש_,\n  { {0x3f98002d, 0x290c0058, 0x6f1d0022, 0x00000000}},  //   guru_, _mmda_, _pjsc,\n  { {0x69c0003b, 0x68e8101b, 0x37bc0044, 0x00000000}},  //   _osme, _lodd, _অপার,\n  { {0xa2d80201, 0x7cf2000c, 0x3ea9194d, 0x00000000}},  // [3550] यार्, _gærk, rfat_,\n  { {0x3f98022b, 0x68e80016, 0x3ea90145, 0x00000000}},  //   buru_, _nodd, sfat_,\n  { {0x69c0010a, 0xa3cd007d, 0x3f98194e, 0x00000000}},  //   _asme, रिय_, curu_,\n  { {0xd7b40061, 0x60c500b0, 0x68fa194f, 0x00000000}},  //   ंबईच, _hahm, _altd,\n  { {0x7e7d001e, 0x68e81950, 0x09e10044, 0x00000000}},  //   _iesp, _bodd, _মেজা,\n  { {0x7e7d00d4, 0x2c4600a1, 0x7cf2068f, 0x00000000}},  //   _hesp, _کیمپ_, _nærh,\n  { {0x69c00129, 0x60c503fe, 0x4758008b, 0x00000000}},  //   _esme, _mahm, орыя_,\n  { {0x6d5d000b, 0x7e7d1951, 0x1ab40088, 0x00000000}},  //   _kusa, _jesp, _обся,\n  { {0x6d550020, 0x68e8005b, 0x7e7d0032, 0x00000000}},  //   _kiza, _fodd, _mesp,\n  { {0x7afb009f, 0x7e7d0263, 0x3f98014a, 0x00000000}},  //   _hlut, _lesp, yuru_,\n  { {0x6d55014a, 0x7afb0a74, 0x7ae900b0, 0x00000000}},  //   _miza, _klut, _koet,\n  { {0xf7700123, 0x7ae90066, 0x6d5d00c4, 0x00000000}},  //   _شام_, _joet, _ousa,\n  { {0x7ae902ae, 0x6d5d023a, 0x7cf3014a, 0x00000000}},  //   _moet, _nusa, _kırı,\n  { {0x3f980089, 0x6d55006b, 0x7cf20018, 0x00000000}},  //   turu_, _niza, _værk,\n  { {0x6d5d1952, 0x7afb0052, 0x32021953, 0x00000000}},  //   _ausa, _olut, szky_,\n  { {0x6d5d0390, 0xdee30679, 0x7e7d0851, 0x00000000}},  //   _busa, носи, _cesp,\n  { {0x7e7d1954, 0x60c504be, 0x6d5d03c5, 0x00000000}},  // [3560] _desp, _fahm, _cusa,\n  { {0xdd8f0647, 0x6d5d0b30, 0x7afb0093, 0x00000000}},  //   اول_, _dusa, _alut,\n  { {0x46bd0183, 0x68e80016, 0x7ae912ed, 0x00000000}},  //   ्याह, _rodd, _boet,\n  { {0x7e7d1955, 0x7ae90007, 0x68e80282, 0x00000000}},  //   _gesp, _coet, _sodd,\n  { {0x6d5d011c, 0x13b40044, 0x7cf21956, 0x00000000}},  //   _gusa, টিয়, _læri,\n  { {0x6d55022b, 0x7e7d0046, 0x7afb1957, 0x00000000}},  //   _giza, _zesp, _elut,\n  { {0x7afb000c, 0x6d5d001f, 0xf76f007a, 0x00000000}},  //   _flut, _zusa, هاي_,\n  { {0x7ae901b6, 0x256001aa, 0x6d550a65, 0x00000000}},  //   _goet, _pòl_, _ziza,\n  { {0x69c01958, 0x7cf3005d, 0x68e81959, 0x00000000}},  //   _usme, _fırı, _todd,\n  { {0x7ae900b5, 0x76590016, 0x25600173, 0x00000000}},  //   _zoet, _egwy, _vòl_,\n  { {0x60c5127d, 0x256001aa, 0xa29501e1, 0x00000000}},  //   _rahm, _wòl_, мані,\n  { {0x883b009b, 0x6b650006, 0x00000000, 0x00000000}},  //   _פתאו, _jėga,   ,\n  { {0x629d13ea, 0x60c50022, 0x236004eb, 0x00000000}},  //   rgso, _pahm, _čiju_,\n  { {0x0cc70055, 0x7cf207a8, 0xdb0e0146, 0x00000000}},  //   _শক্ত, _færi, _esbø,\n  { {0x6d5d0127, 0x443a001d, 0x22400a69, 0x00000000}},  //   _susa, _áp_, _ezik_,\n  { {0x6d5d020c, 0x6d5501aa, 0x539b009b, 0x00000000}},  //   _pusa, _siza, _היהו,\n  { {0x7e7d0129, 0x7ae90007, 0x6d55008e, 0x00000000}},  // [3570] _vesp, _roet, _piza,\n  { {0x7afb05ad, 0x7ae9195a, 0x81fc009b, 0x00000000}},  //   _slut, _soet, _להחז,\n  { {0xf09201f8, 0x7afb00f4, 0xfe7000a1, 0x00000000}},  //   _בני_, _plut, ئدہ_,\n  { {0x6d55195b, 0xa3cd02fb, 0x6d5d154f, 0x00000000}},  //   _wiza, रित_, _tusa,\n  { {0x7ae901b5, 0x6d5d195c, 0xdb05009d, 0x00000000}},  //   _voet, _uusa, nthé,\n  { {0x78ad016c, 0x7cf3006b, 0xbcfb004a, 0x00000000}},  //   đavo, _qırı, _quéd,\n  { {0x7ae9195d, 0x00000000, 0x00000000, 0x00000000}},  //   _toet,   ,   ,\n  { {0x628d0051, 0x7afb0058, 0x8cdb013d, 0x00000000}},  //   _ndao, _ulut, नावो,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x8389041f, 0x628d0035, 0x00000000, 0x00000000}},  //   обов_, _adao,   ,\n  { {0xccf20097, 0x6ef804f6, 0x673a000c, 0x00000000}},  //   דכי_, _bíbl, ðbjö,\n  { {0x395f006c, 0xe29f000c, 0xc878014a, 0x00000000}},  //   _kuus_, ggð_, _doğu_,\n  { {0x64a5195e, 0xf5480082, 0xdb240068, 0x00000000}},  //   _жала, _lụy_, ésél,\n  { {0x7cf20190, 0x395f195f, 0x00000000, 0x00000000}},  //   _hærv, _muus_,   ,\n  { {0x2d8f008e, 0x8fa30088, 0x395f00d9, 0x00000000}},  //   ágen_, каре, _luus_,\n  { {0x98bf002b, 0x6ef8004a, 0x00000000, 0x00000000}},  //   _ftuħ_, _víbo,   ,\n  { {0x395f0343, 0x312601fc, 0xe1ff008e, 0x00000000}},  // [3580] _nuus_, _одиг, lcón_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xe1ff0211, 0x00000000, 0x00000000, 0x00000000}},  //   ncón_,   ,   ,\n  { {0x7cf2101b, 0x395f1960, 0x9411013f, 0x00000000}},  //   _nærv, _buus_, üzə_,\n  { {0x387e01dc, 0x31600181, 0x7bda0cce, 0x00000000}},  //   _petr_, _juiz_, _štud,\n  { {0x395f0146, 0x00000000, 0x00000000, 0x00000000}},  //   _duus_,   ,   ,\n  { {0x31600181, 0xdca30404, 0xb906013d, 0x00000000}},  //   _luiz_, _шари, _बच_,\n  { {0x3ea01961, 0x44200107, 0x8c4300ed, 0x00000000}},  //   ngit_, _ći_, _ресе,\n  { {0xb8f40055, 0x395f00bb, 0xd5ba0088, 0x00000000}},  //   _হক_, _guus_, іси_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x38cb089d, 0x00000000, 0x00000000, 0x00000000}},  //   _باقی_,   ,   ,\n  { {0x395f000a, 0x0cbb0164, 0x00000000, 0x00000000}},  //   _yuus_, _उस्म,   ,\n  { {0xe7070167, 0x3ea00173, 0xbebb0023, 0x00000000}},  //   _تسلی, dgit_, _njëa,\n  { {0x672d0825, 0xdb0507cb, 0x7cf2000c, 0x00000000}},  //   čaje, rthé, _kæru,\n  { {0xd5c80011, 0xe1f90006, 0xdb05009d, 0x00000000}},  //   _hề_, šų_, sthé,\n  { {0xd5c80011, 0x3ea0011c, 0xceb8003b, 0x00000000}},  //   _kề_, ggit_, мљу_,\n  { {0xc05b01e1, 0x917a0082, 0xfe7f00f6, 0x00000000}},  // [3590] _мін_, _vật_, _veï_,\n  { {0x2d9b004a, 0x3d940256, 0x00000000, 0x00000000}},  //   ruqe_, тифр,   ,\n  { {0xd5c80011, 0x7e761962, 0x98a70089, 0x00000000}},  //   _lề_, bbyp, jonā_,\n  { {0xbcfb12a3, 0x6ef101c4, 0x00000000, 0x00000000}},  //   _québ, _påbu,   ,\n  { {0x18690175, 0xd5c80011, 0x38c40006, 0x00000000}},  //   пали_, _nề_, kūrė_,\n  { {0x7f4d006b, 0x270c00b9, 0xf5480082, 0x00000000}},  //   lmaq, měny_, _tụy_,\n  { {0x2d4d0521, 0x6c54007e, 0x38c4007f, 0x00000000}},  //   _džet_, _акру, dūrė_,\n  { {0x7c22006b, 0xd5c80011, 0xa3cd007d, 0x00000000}},  //   ğort, _bề_, रिस_,\n  { {0xc8ab005e, 0xe6190aef, 0x9419006b, 0x00000000}},  //   _мъже_, яди_, əsə_,\n  { {0x31600919, 0x61320190, 0x6b650006, 0x00000000}},  //   _ruiz_, jælp, _jėgo,\n  { {0x260f03d7, 0x00000000, 0x00000000, 0x00000000}},  //   _तेरी_,   ,   ,\n  { {0xe1ff008e, 0x67220065, 0x2d8b0466, 0x00000000}},  //   rcón_, _gjoj, _ovce_,\n  { {0x6d47021e, 0xe1ff06c2, 0x3afa0049, 0x00000000}},  //   _ohja, scón_, פּטע,\n  { {0x64a51963, 0x673b0052, 0xdbd701b1, 0x00000000}},  //   _чака, lluj, _käär,\n  { {0x6d4b0006, 0xdbd70961, 0x00000000, 0x00000000}},  //   įgal, _jäär,   ,\n  { {0xdbd70368, 0x6443016e, 0x6d470310, 0x00000000}},  //   _määr, _izni, _ahja,\n  { {0x62860ac2, 0xdce60089, 0x7e7601c3, 0x00000000}},  // [35a0] mako, _atkā, rbyp,\n  { {0x62861964, 0x3e7e0082, 0x00000000, 0x00000000}},  //   lako, ắt_,   ,\n  { {0xbcfb00c4, 0x6d470023, 0x00000000, 0x00000000}},  //   _suéc, _dhja,   ,\n  { {0x44271965, 0xbcfb000c, 0x673b15ad, 0x00000000}},  //   _mxn_, _stét, jluj,\n  { {0xddcd001a, 0x82770049, 0xceb4013f, 0x00000000}},  //   rbaţ, גענע_, nnəm_,\n  { {0x6286006c, 0xb86603ec, 0x6f0400c4, 0x00000000}},  //   hako, راتو, lhic,\n  { {0x8c430373, 0x62860059, 0xa09b00a0, 0x00000000}},  //   _бере, kako, ליסט,\n  { {0xa6aa0025, 0xcc3b0049, 0xcf93009b, 0x00000000}},  //   سابق_, _זעלט, אטה_,\n  { {0x62861957, 0xe56f0014, 0x7cf20146, 0x00000000}},  //   dako, یطی_, _fært,\n  { {0xd5c800ad, 0xc42a109f, 0x81e60044, 0x00000000}},  //   _về_, зюме_, পনা_,\n  { {0x5c970049, 0x44380374, 0x00000000, 0x00000000}},  //   עכטע_, ær_,   ,\n  { {0x6aa20012, 0xd5c80082, 0xadc30082, 0x00000000}},  //   ngof, _tề_, _nhếc,\n  { {0x6f040146, 0x7cfb00e5, 0x00000000, 0x00000000}},  //   dhic, _bîrl,   ,\n  { {0xa3cd03d7, 0x248500d4, 0x7cf20030, 0x00000000}},  //   रिश_, calm_, _mærs,\n  { {0x628615f9, 0x656207a4, 0x7761002b, 0x00000000}},  //   bako, _huoh, _xulx,\n  { {0x643b009b, 0x9f60134d, 0x63b80082, 0x00000000}},  //   _מעונ, árás_, _ipvn,\n  { {0x7f4d006b, 0x6ef80048, 0xdced12db, 0x00000000}},  // [35b0] rmaq, _míbh, spač,\n  { {0xac2700d7, 0xbebb0023, 0x69c201c3, 0x00000000}},  //   нфек, _gjën, dwoe,\n  { {0x2d8900f6, 0x69c201d6, 0x00000000, 0x00000000}},  //   ssae_, ewoe,   ,\n  { {0x6f041966, 0x9e150099, 0x7cf206ec, 0x00000000}},  //   chic, _адмі, _sært,\n  { {0xdb1c0010, 0x2d8b016c, 0xab640036, 0x00000000}},  //   _arró, _uvce_, ężar,\n  { {0x62861204, 0xbcfb00d6, 0xdbd70933, 0x00000000}},  //   zako, _etér, _päär,\n  { {0x62860232, 0x7cf20030, 0xdce40036, 0x00000000}},  //   yako, _vært, jpię,\n  { {0x7cf2009f, 0xdbd708b2, 0x98b60089, 0x00000000}},  //   _færs, _väär, īgās_,\n  { {0xe7f30201, 0x62861553, 0xdb1c008e, 0x00000000}},  //   _अथवा_, vako, _erró,\n  { {0xd95500a6, 0xd90f00a1, 0x673b0059, 0x00000000}},  //   _شناخ, _ھیں_, sluj,\n  { {0x6286022b, 0xdce40fcd, 0x00000000, 0x00000000}},  //   tako, spić,   ,\n  { {0x64430428, 0x461200a2, 0x069b00a1, 0x00000000}},  //   _vzni, اویر, _رخصت_,\n  { {0x6286022b, 0x248501d6, 0x9f45013e, 0x00000000}},  //   rako, palm_, álý_,\n  { {0x6286010a, 0xf4870072, 0x25ad1967, 0x00000000}},  //   sako, _чудн, mtel_,\n  { {0x6f040051, 0x25ad1968, 0x4cca0044, 0x00000000}},  //   thic, ltel_, রামু,\n  { {0x7cf2000c, 0x0b130044, 0x8fa30143, 0x00000000}},  //   _nærr, িকুল_, јате,\n  { {0x25ad014a, 0x7bd50180, 0xed5a00ed, 0x00000000}},  // [35c0] ntel_, _arzu, доа_,\n  { {0xbcfb00f4, 0x5eaa0044, 0x7bd50036, 0x00000000}},  //   _stér, _চোখে, _brzu,\n  { {0x6f0400ab, 0xe0fb0097, 0x6ef800b9, 0x00000000}},  //   phic, _חליל, _líbi,\n  { {0x25ad0107, 0xe6bd0061, 0xdb1c00d4, 0x00000000}},  //   ktel_, ्योज, _arrò,\n  { {0xe8941969, 0x62840181, 0xa967004c, 0x00000000}},  //   галь, _meio, вича_,\n  { {0x6609001e, 0x26dd01aa, 0x69c201bb, 0x00000000}},  //   dzek, _anwo_, rwoe,\n  { {0x38cb01ef, 0x7cf21956, 0x6d5c0058, 0x00000000}},  //   بانی_, _færr, _iira,\n  { {0x6d5c011c, 0x3e860006, 0xdb1c00d4, 0x00000000}},  //   _hira, būtų_, _errò,\n  { {0x6d5c011f, 0x6f03000d, 0x28e2006e, 0x00000000}},  //   _kira, _înce, पादि,\n  { {0x6d5c0518, 0x628400c4, 0x7c3c0fdc, 0x00000000}},  //   _jira, _aeio, _kyrr,\n  { {0x4c9b009b, 0xdc9b0097, 0x63aa0045, 0x00000000}},  //   וביו, וייל, _qqfn,\n  { {0x6d5c04a0, 0x25ad0638, 0x656200b0, 0x00000000}},  //   _lira, btel_, _tuoh,\n  { {0x62840032, 0x66090036, 0x25ad008e, 0x00000000}},  //   _deio, czek, ctel_,\n  { {0xa2a50309, 0xe9ce007e, 0x00000000, 0x00000000}},  //   _काव्, скi_,   ,\n  { {0x543301ef, 0xa43801fb, 0x6e950517, 0x00000000}},  //   _پرور, _язку_, ливу,\n  { {0x2167007c, 0x6d5c0145, 0xbcfb008e, 0x00000000}},  //   _итог, _aira, _cuén,\n  { {0x6d5c0284, 0x00000000, 0x00000000, 0x00000000}},  // [35d0] _bira,   ,   ,\n  { {0x6d5c196a, 0x26cd196b, 0x00000000, 0x00000000}},  //   _cira, zdeo_,   ,\n  { {0xa2d8001c, 0x6d5c020c, 0x7c3c0016, 0x00000000}},  //   याच्, _dira, _cyrr,\n  { {0x443c196c, 0x6d5c010e, 0xd2590089, 0x00000000}},  //   _myv_, _eira, žņu_,\n  { {0x78a3001c, 0x6d5c0039, 0x99150106, 0x00000000}},  //   tgnv, _fira, лькі,\n  { {0x7c3c009f, 0x6d5c0207, 0x7e6d06b1, 0x00000000}},  //   _fyrr, _gira, lcap,\n  { {0x6e3d018e, 0x7c3c018e, 0x98a70a55, 0x00000000}},  //   _hysb, _gyrr, joną_,\n  { {0x66090756, 0x27e9037e, 0x25ad196d, 0x00000000}},  //   tzek, ćan_, ttel_,\n  { {0x25ad0fe2, 0x26cd008e, 0xbebb0023, 0x00000000}},  //   utel_, rdeo_, _njëm,\n  { {0x25ad0944, 0x6609196e, 0x69c9006c, 0x00000000}},  //   rtel_, rzek, _isee,\n  { {0x25ad196f, 0xa2a501f5, 0x66090010, 0x00000000}},  //   stel_, _काश्, szek,\n  { {0x91e60140, 0x1614013d, 0x00000000, 0x00000000}},  //   гоме, _तेवर_,   ,\n  { {0xa2a502fb, 0xe4c80014, 0x00000000, 0x00000000}},  //   _कार्, ربین_,   ,\n  { {0x361a007b, 0xa2d4007d, 0xf5920025, 0x00000000}},  //   _אונד, _बोर्, _الوج,\n  { {0x6d5c1970, 0x6026005e, 0xaf220044, 0x00000000}},  //   _rira, удва, _ভীষণ_,\n  { {0xbcfb00f4, 0x69c900f6, 0x7e6d192c, 0x00000000}},  //   _stép, _osee, gcap,\n  { {0x7f5d00f4, 0x25691971, 0xd7f80011, 0x00000000}},  // [35e0] _disq, _júl_, _ngăn_,\n  { {0x6d5c1972, 0x29070059, 0xee37003b, 0x00000000}},  //   _qira, jhna_, уну_,\n  { {0x6d5c1973, 0x9f58008d, 0x69c90103, 0x00000000}},  //   _vira, nyrë_, _asee,\n  { {0x6d5c10ed, 0x7e6d0197, 0x00000000, 0x00000000}},  //   _wira, ccap,   ,\n  { {0x6d5c008d, 0x427b0049, 0x98a70a62, 0x00000000}},  //   _tira, גאנג, zoną_,\n  { {0xbebb0065, 0x2907002b, 0x7c3c00ea, 0x00000000}},  //   _njëj, ghna_, _tyrr,\n  { {0x672d0213, 0xc5f10055, 0xa2a50164, 0x00000000}},  //   čajn, _জেলা_, _काल्,\n  { {0xb6f400ec, 0xdbd2006c, 0x63a11974, 0x00000000}},  //   рзиј, _müür, duln,\n  { {0xe9da01fb, 0xfaf7009b, 0x3b0700ed, 0x00000000}},  //   _яка_, _עצמי_, _сето_,\n  { {0x38c800e9, 0x290700b9, 0x63a10133, 0x00000000}},  //   _جاری_, chna_, fuln,\n  { {0x4c9b0049, 0x499000a1, 0x00000000, 0x00000000}},  //   עשטע, _ایڈر,   ,\n  { {0x395e04c7, 0xa2a50061, 0x00000000, 0x00000000}},  //   _hits_, _काळ्,   ,\n  { {0x395e0c0d, 0x7f5d00f4, 0x9258007c, 0x00000000}},  //   _kits_, _risq, лают_,\n  { {0x7f5d00f6, 0xbebb0023, 0xbcfb0919, 0x00000000}},  //   _sisq, _gjëj, _cuél,\n  { {0x395e1975, 0x00000000, 0x00000000, 0x00000000}},  //   _mits_,   ,   ,\n  { {0x395e1976, 0x7cf206ec, 0x2907012d, 0x00000000}},  //   _lits_, _særp, zhna_,\n  { {0x2d8f0010, 0x7e6d003f, 0x7f5d0115, 0x00000000}},  // [35f0] ége_, rcap, _visq,\n  { {0x7e6d049a, 0x395e0129, 0x22491977, 0x00000000}},  //   scap, _nits_, _izak_,\n  { {0x1cb80025, 0x7f5d01f3, 0x00000000, 0x00000000}},  //   طالب_, _tisq,   ,\n  { {0x2cb80a3b, 0x00000000, 0x00000000, 0x00000000}},  //   _ebrd_,   ,   ,\n  { {0xdd01011f, 0x7cdb001e, 0xddc4001a, 0x00000000}},  //   ştır, _pārē, rciţ,\n  { {0x395e0089, 0x69c90059, 0x6ce70088, 0x00000000}},  //   _cits_, _vsee, _сіме,\n  { {0x395e0f57, 0x80ad0309, 0xbebb0065, 0x00000000}},  //   _dits_, _जाने, _njëk,\n  { {0xb8fc02fb, 0x497501fb, 0x29070908, 0x00000000}},  //   _तो_, _влас, shna_,\n  { {0x09b806b4, 0x69c91978, 0x395e0133, 0x00000000}},  //   _مطلع_, _usee, _fits_,\n  { {0x332900b5, 0x63a101ca, 0x9f580065, 0x00000000}},  //   _ajax_, tuln, tyrë_,\n  { {0x04450373, 0xd8740d0b, 0x29050fd1, 0x00000000}},  //   ренн, _طالب, _illa_,\n  { {0x216a041f, 0x25690010, 0x395e021b, 0x00000000}},  //   кими_, _túl_, _zits_,\n  { {0xe2970783, 0x614608f3, 0x26cf1014, 0x00000000}},  //   шая_, иема, _iago_,\n  { {0x81b80055, 0x26cf0211, 0x8467005e, 0x00000000}},  //   ছিল_, _hago_, _съде,\n  { {0x26cf000a, 0x3f1600ed, 0x22490032, 0x00000000}},  //   _kago_, аќат, _ezak_,\n  { {0x26cf0093, 0x3eab0009, 0x2caa0022, 0x00000000}},  //   _jago_, _ccct_, _scbd_,\n  { {0x29050368, 0xa3cd02fb, 0x433b009b, 0x00000000}},  // [3600] _olla_, रिक_, _בעקב,\n  { {0x26cf0555, 0x80ad013d, 0x409600e3, 0x00000000}},  //   _lago_, _जाये, _трит,\n  { {0x24870607, 0x6cd301fa, 0xa09b01ce, 0x00000000}},  //   _menm_, تقلا, _בייט,\n  { {0x29050624, 0x26cf002d, 0xbebb0065, 0x00000000}},  //   _alla_, _nago_, _njëh,\n  { {0x395e041d, 0x6f03001a, 0x28e20963, 0x00000000}},  //   _pits_, _înca, पालि,\n  { {0x89da0123, 0xdb050a87, 0x39130088, 0x00000000}},  //   _یوزر_, rthá, омір,\n  { {0xb8ce02d2, 0x26cf006a, 0x2fda0022, 0x00000000}},  //   _का_, _bago_, _jrpg_,\n  { {0xd6d7007c, 0x29050219, 0xfaa30088, 0x00000000}},  //   ать_, _ella_, _масо,\n  { {0x26cf022b, 0x6b9e001c, 0x395e0061, 0x00000000}},  //   _dago_, lrpg, _tits_,\n  { {0x04660098, 0x395e00d9, 0x00000000, 0x00000000}},  //   штим, _uits_,   ,\n  { {0x291c1979, 0x9cd90049, 0x6cd90049, 0x00000000}},  //   miva_, אַרז, אַרצ,\n  { {0x291c07ac, 0x26cf011c, 0xe61a0745, 0x00000000}},  //   liva_, _gago_, _иде_,\n  { {0x26c412ac, 0x5067005e, 0xe73716e3, 0x00000000}},  //   memo_, итва, _тец_,\n  { {0x291c0638, 0x26cf197a, 0x2487000a, 0x00000000}},  //   niva_, _zago_, _genm_,\n  { {0x26cf0203, 0x00000000, 0x00000000, 0x00000000}},  //   _yago_,   ,   ,\n  { {0x291c001a, 0x2fcd0036, 0x6d4e002b, 0x00000000}},  //   hiva_, łego_, _ahba,\n  { {0x291c197b, 0x2249014a, 0x22400010, 0x00000000}},  // [3610] kiva_, _uzak_, _gyik_,\n  { {0x291c0c1e, 0x61fd197c, 0xe1ff0036, 0x00000000}},  //   jiva_, mysl, wców_,\n  { {0x291c0627, 0x70550014, 0x41d50164, 0x00000000}},  //   diva_, _دندا, दिवस,\n  { {0x26c40295, 0x6e3200b9, 0xf21c013d, 0x00000000}},  //   jemo_, _žebř, _पेड़_,\n  { {0x26c40e00, 0xe1ff0036, 0x26cf04a5, 0x00000000}},  //   demo_, rców_, _rago_,\n  { {0x291c197d, 0x26cf0483, 0x3ea90725, 0x00000000}},  //   giva_, _sago_, lgat_,\n  { {0x26cf0b76, 0xb3a9005f, 0x260f006e, 0x00000000}},  //   _pago_, _çıxı, _तेजी_,\n  { {0x3ea9020c, 0x656f01ca, 0x6ef806f4, 0x00000000}},  //   ngat_, ícho, _híbr,\n  { {0x291c0074, 0x98c70081, 0xa3a901f5, 0x00000000}},  //   biva_, _всел, गून_,\n  { {0xdb1c00f4, 0x290500eb, 0x61fd00ea, 0x00000000}},  //   _aprè, _ulla_, dysl,\n  { {0x26cf0058, 0x2bda013d, 0x00000000, 0x00000000}},  //   _tago_, णिया,   ,\n  { {0x26c4037e, 0x05170044, 0x6ef8004a, 0x00000000}},  //   cemo_, ঠকের_, _líbr,\n  { {0x61fd007f, 0x7d070087, 0x00000000, 0x00000000}},  //   gysl, _oljs,   ,\n  { {0x463a0049, 0x657b027c, 0xdb1c0173, 0x00000000}},  //   _גענע, mpuh, _eprè,\n  { {0xd007026b, 0xdee6197e, 0x442e00f6, 0x00000000}},  //   бере_, бови, _gxf_,\n  { {0x98a70046, 0x0e660c4e, 0x291c0091, 0x00000000}},  //   ronę_, скан, ziva_,\n  { {0x10a601fb, 0xc27b009b, 0x00000000, 0x00000000}},  // [3620] _липн, _גרפי,   ,\n  { {0x26c4037e, 0x291c10af, 0x6abb0022, 0x00000000}},  //   zemo_, xiva_, _abuf,\n  { {0xcfea0014, 0x26c40061, 0x1c39007e, 0x00000000}},  //   _صفحه_, yemo_, аяць_,\n  { {0xfaa60d68, 0x69db101a, 0x00000000, 0x00000000}},  //   садо, _brue,   ,\n  { {0x315702fd, 0x26c40c1e, 0x00000000, 0x00000000}},  //   _خلیج_, vemo_,   ,\n  { {0x26c40020, 0x69db00b7, 0x7f44197f, 0x00000000}},  //   wemo_, _drue, lliq,\n  { {0x291c1980, 0x26c40042, 0x00000000, 0x00000000}},  //   riva_, temo_,   ,\n  { {0x291c08d3, 0xc6f8019d, 0x69db1981, 0x00000000}},  //   siva_, рних_, _frue,\n  { {0x26c41982, 0x69db0252, 0x291c00b0, 0x00000000}},  //   remo_, _grue, piva_,\n  { {0x26c40107, 0x7d1e0058, 0x3ea9014a, 0x00000000}},  //   semo_, nips, zgat_,\n  { {0xdb1c009d, 0x1877009b, 0x201e0253, 0x00000000}},  //   _apré, _העבר_, útil_,\n  { {0xa3cd006e, 0x61fd00b0, 0x7d1e0095, 0x00000000}},  //   रिज_, tysl, hips,\n  { {0x66e50164, 0x02aa0061, 0xf204007e, 0x00000000}},  //   कारक_, _कारभ, пяро,\n  { {0x2d920007, 0xf1270500, 0x61fd0472, 0x00000000}},  //   dsye_, сьмо, rysl,\n  { {0x24b7009b, 0xf04300a1, 0x753a0b7c, 0x00000000}},  //   _ההון_, سٹری, motz,\n  { {0x69c0017c, 0x3ea9001a, 0x753a0032, 0x00000000}},  //   _opme, ugat_, lotz,\n  { {0x7bdc1983, 0xd0d50265, 0x3ea900d4, 0x00000000}},  // [3630] _arru, _допъ, rgat_,\n  { {0x8c671984, 0x6abb0026, 0x753a0032, 0x00000000}},  //   стад, _sbuf, notz,\n  { {0x7f441923, 0xbc4b0057, 0x69c0001e, 0x00000000}},  //   bliq, учае_, _apme,\n  { {0x69db0211, 0x753a002d, 0x60c70023, 0x00000000}},  //   _prue, hotz, lejm,\n  { {0x6f0d002a, 0x7bdc002d, 0x753a002d, 0x00000000}},  //   mhac, _erru, kotz,\n  { {0xd366023c, 0xf77101af, 0x20110026, 0x00000000}},  //   _يه_, واب_, ozzi_,\n  { {0x3786005e, 0x776200e5, 0xda7b007e, 0x00000000}},  //   общо_, _biox, _бяз_,\n  { {0x69db068f, 0x6d450c49, 0x6abb0009, 0x00000000}},  //   _true, llha, _ubuf,\n  { {0xd6290147, 0x628f0020, 0x9f4a0068, 0x00000000}},  //   ропе_, daco, ômée_,\n  { {0x753a002d, 0x1425007c, 0x3871006b, 0x00000000}},  //   gotz, ждом, _üzr_,\n  { {0x02c601e0, 0xd6ce0123, 0x60c70036, 0x00000000}},  //   ойно, رقی_, dejm,\n  { {0x77620026, 0x6d4501a2, 0x628f00b4, 0x00000000}},  //   _giox, hlha, gaco,\n  { {0x51ba007e, 0x2d4d1985, 0x6f0d0048, 0x00000000}},  //   шыня_, _džez_, dhac,\n  { {0x320c0036, 0x627e0036, 0x67290134, 0x00000000}},  //   ądy_, dłoż, lnej,\n  { {0x656b0016, 0x6143004c, 0x6b650006, 0x00000000}},  //   _hugh, фера, _mėgs,\n  { {0x65631986, 0x628f00c4, 0x656b0020, 0x00000000}},  //   _hinh, caco, _kugh,\n  { {0x7d1e035f, 0x80a500a1, 0x65630082, 0x00000000}},  // [3640] tips, _کمپن, _kinh,\n  { {0x65630066, 0x656b1575, 0x644303b4, 0x00000000}},  //   _jinh, _mugh, _kyni,\n  { {0x656302d5, 0x7d1e1987, 0x656b000b, 0x00000000}},  //   _minh, rips, _lugh,\n  { {0xe9da0f09, 0x65631988, 0x6f0d0020, 0x00000000}},  //   ике_, _linh, chac,\n  { {0x6d450016, 0x67290465, 0x656b0026, 0x00000000}},  //   blha, dnej, _nugh,\n  { {0xf806007c, 0x1d0a0077, 0x6f0413fb, 0x00000000}},  //   жчин, _теги_, lkic,\n  { {0xe3a702fd, 0xeb97007c, 0x7bdc002d, 0x00000000}},  //   _تر_, _мир_, _urru,\n  { {0x656b0058, 0x6563002d, 0x6f040166, 0x00000000}},  //   _bugh, _ainh, nkic,\n  { {0x65630d39, 0x3cf8150e, 0x628f0142, 0x00000000}},  //   _binh, _korv_, vaco,\n  { {0x2b460129, 0x32d70011, 0xa3d6013d, 0x00000000}},  //   lloc_, _ủy_, सिल_,\n  { {0x65630181, 0x64430016, 0x628f0207, 0x00000000}},  //   _dinh, _cyni, taco,\n  { {0x65630fde, 0x753a022b, 0x61e20059, 0x00000000}},  //   _einh, sotz, _šola,\n  { {0x628f0387, 0x753a004a, 0x7d1c016c, 0x00000000}},  //   raco, potz, _omrs,\n  { {0x628f03d1, 0x65630058, 0x3cf800ea, 0x00000000}},  //   saco, _ginh, _norv_,\n  { {0x6f0d0051, 0x628f1989, 0x60c70087, 0x00000000}},  //   thac, paco, rejm,\n  { {0xe7f202d2, 0x3eaf010f, 0x2b46001a, 0x00000000}},  //   _अपना_, ügt_, jloc_,\n  { {0x2005154d, 0x63a80142, 0xe1ff0129, 0x00000000}},  // [3650] šli_, ludn, rcós_,\n  { {0x656301da, 0x6729198a, 0x6f0d016e, 0x00000000}},  //   _xinh, znej, shac,\n  { {0x63a80059, 0x6d450203, 0xdbd6010e, 0x00000000}},  //   nudn, rlha, jääg,\n  { {0x6f04198b, 0xddcd198c, 0xfbde00c4, 0x00000000}},  //   ckic, mbaž, _drª_,\n  { {0xed5b02fd, 0x6f1d0051, 0xda7801e1, 0x00000000}},  //   _نشست_, _imsc, цях_,\n  { {0xb17c00b3, 0x656b0197, 0x00000000, 0x00000000}},  //   סטור, _rugh,   ,\n  { {0xa2ac001c, 0x07a50500, 0x2b460115, 0x00000000}},  //   _झाल्, чайн, bloc_,\n  { {0x65630082, 0x2b46198d, 0x6ef1198e, 0x00000000}},  //   _sinh, cloc_, _påby,\n  { {0x67290b4a, 0x644307b5, 0x65630181, 0x00000000}},  //   rnej, _syni, _pinh,\n  { {0x67290235, 0xe61600a5, 0x656b00bb, 0x00000000}},  //   snej, яды_, _vugh,\n  { {0x65630181, 0x6f1d00b5, 0x00000000, 0x00000000}},  //   _vinh, _omsc,   ,\n  { {0x64430161, 0xd7ba009b, 0x656b0258, 0x00000000}},  //   _vyni, _לצער, _tugh,\n  { {0x64430046, 0x65630701, 0x9f5e01dc, 0x00000000}},  //   _wyni, _tinh, átí_,\n  { {0x63a80027, 0x6f1d0d28, 0x00000000, 0x00000000}},  //   budn, _amsc,   ,\n  { {0xdee6198f, 0xbebb0065, 0x9f5e01dc, 0x00000000}},  //   пови, _njës, ští_,\n  { {0x1b010044, 0x00000000, 0x00000000, 0x00000000}},  //   লোতে_,   ,   ,\n  { {0x6f0404eb, 0xfbde00fa, 0x00000000, 0x00000000}},  // [3660] rkic, _srª_,   ,\n  { {0x6f040b23, 0x00000000, 0x00000000, 0x00000000}},  //   skic,   ,   ,\n  { {0xe0fb00b3, 0x7f46007c, 0x6f040b4a, 0x00000000}},  //   _הליל, _неож, pkic,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xd9460256, 0x2ea80061, 0x3cf807c4, 0x00000000}},  //   педи, गलीत, _torv_,\n  { {0x2d800007, 0xfe6f00a1, 0xed57007c, 0x00000000}},  //   mpie_, _لگے_, _ноя_,\n  { {0xab64010f, 0x2d8001c3, 0x2ca7004a, 0x00000000}},  //   grüß, lpie_, ónde_,\n  { {0x290e0020, 0x2d8000d2, 0x63a802e1, 0x00000000}},  //   shfa_, opie_, vudn,\n  { {0xb6c8026c, 0x9634004c, 0xceb301ce, 0x00000000}},  //   ماکے_, ьниц, גיח_,\n  { {0x63a8002b, 0x00000000, 0x00000000, 0x00000000}},  //   tudn,   ,   ,\n  { {0x533501bd, 0x68e80030, 0xa84a0025, 0x00000000}},  //   дент, _indd, _الام_,\n  { {0x68fa0010, 0x63a80036, 0x00000000, 0x00000000}},  //   _hotd, rudn,   ,\n  { {0x63a81990, 0x75210032, 0xc56a0025, 0x00000000}},  //   sudn, bilz, _احصل_,\n  { {0xbebb008d, 0xd6250774, 0xe9ce007e, 0x00000000}},  //   _njër, _تعمي, ткi_,\n  { {0x4fc4003b, 0xdb1c1991, 0x2d800007, 0x00000000}},  //   нста, _aprí, epie_,\n  { {0xdb1c0051, 0x290c00e0, 0x00000000, 0x00000000}},  //   _bprí, _llda_,   ,\n  { {0xf1b10061, 0xe3b8005d, 0x2d801992, 0x00000000}},  // [3670] _जमिन, ltı_, gpie_,\n  { {0x68fa01a2, 0x39470045, 0x4d980930, 0x00000000}},  //   _notd, xlns_, якую_,\n  { {0xe3b8005a, 0x798901c3, 0x9f550152, 0x00000000}},  //   ntı_, _swew, _овоч,\n  { {0xf1b1006e, 0x290c121f, 0x6f1d010f, 0x00000000}},  //   _जमान, _alda_, _umsc,\n  { {0xeab00025, 0x68fa00d9, 0x60d70288, 0x00000000}},  //   اعم_, _botd, _kaxm,\n  { {0xd045005f, 0xbebb0065, 0xe3b8005a, 0x00000000}},  //   _sahə, _gjër, ktı_,\n  { {0xb09c0049, 0x7b080010, 0xbebb0023, 0x00000000}},  //   מיגר, ártó, _ujës,\n  { {0x06090256, 0xfbd2009b, 0x68e80030, 0x00000000}},  //   жник_, _בתל_, _endd,\n  { {0x7ae9006c, 0xeaf80025, 0x00000000, 0x00000000}},  //   _inet, _عرفت_,   ,\n  { {0x7afb01b5, 0x61e200d0, 0x25720016, 0x00000000}},  //   _hout, _šolo, _dâl_,\n  { {0x7afb1993, 0xbcfb008e, 0x7ae901a2, 0x00000000}},  //   _kout, _hués, _knet,\n  { {0x6f03001a, 0x7afb021e, 0x2d9900ca, 0x00000000}},  //   _înch, _jout, _ovse_,\n  { {0x60d7005f, 0x68e80016, 0x7afb060b, 0x00000000}},  //   _baxm, _yndd, _mout,\n  { {0x7afb10f0, 0x7dd80048, 0xbcfb004a, 0x00000000}},  //   _lout, húsá, _mués,\n  { {0x7ae9114c, 0xa067003b, 0x504300ed, 0x00000000}},  //   _onet, дара_, верб,\n  { {0x7afb001a, 0x7dd80010, 0x00000000, 0x00000000}},  //   _nout, júsá,   ,\n  { {0x2d800e6d, 0xddc60036, 0x4d66007e, 0x00000000}},  // [3680] upie_, _szkł, дкав,\n  { {0x7ae90065, 0x2d800a77, 0x51f700a1, 0x00000000}},  //   _anet, rpie_, _آسٹر,\n  { {0x7afb028c, 0x2d8000b4, 0x8e8608d6, 0x00000000}},  //   _bout, spie_, _огне,\n  { {0x7afb1994, 0x291e0022, 0x7ae91995, 0x00000000}},  //   _cout, _smta_, _cnet,\n  { {0xfe42026c, 0x7afb1994, 0xb17b0030, 0x00000000}},  //   _شکری, _dout, rvåg,\n  { {0xe3b80477, 0x7ae91996, 0xbebb0023, 0x00000000}},  //   ytı_, _enet, _ujër,\n  { {0x7afb046a, 0xe3b8006b, 0x25720016, 0x00000000}},  //   _fout, xtı_, _sâl_,\n  { {0x7afb023f, 0xd7570025, 0x7ae91997, 0x00000000}},  //   _gout, وجيا_, _gnet,\n  { {0xa3b00164, 0x68fa1998, 0xf77200a1, 0x00000000}},  //   टून_, _totd, راں_,\n  { {0x7afb1999, 0xe3b8014a, 0xbcfb008e, 0x00000000}},  //   _zout, ttı_, _huér,\n  { {0x7afb00ab, 0x798200d2, 0x00000000, 0x00000000}},  //   _yout, lpow,   ,\n  { {0xe3af00d3, 0x38630010, 0xe3b801df, 0x00000000}},  //   گری_, _újra_, rtı_,\n  { {0x672d199a, 0xe3b8026d, 0x00000000, 0x00000000}},  //   čajt, stı_,   ,\n  { {0xe3af0167, 0xe3b8014a, 0x00000000, 0x00000000}},  //   دری_, ptı_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xdcc70183, 0x7d0e199b, 0x798200e0, 0x00000000}},  //   रज्ञ, _albs, kpow,\n  { {0xa3d60316, 0x5d55003b, 0x98be0173, 0x00000000}},  // [3690] सिक_, екат, _aktč_,\n  { {0x7afb0c6a, 0x7059007e, 0x2249011c, 0x00000000}},  //   _sout, _напр_, _iyak_,\n  { {0xfe70026c, 0x7afb0263, 0x3b0d0023, 0x00000000}},  //   ادہ_, _pout, _pleq_,\n  { {0xd6d90036, 0x3f83002b, 0x80bb006e, 0x00000000}},  //   koła_, mpju_, श्रे,\n  { {0x7ae90059, 0x7afb0dd9, 0x013401b2, 0x00000000}},  //   _vnet, _vout, _سعید,\n  { {0xe9d80099, 0xe8f80245, 0x7afb00bb, 0x00000000}},  //   ькі_, млі_, _wout,\n  { {0x7afb028c, 0xe77800a1, 0x5ed20044, 0x00000000}},  //   _tout, ولوں_, হারে,\n  { {0xbcfb00f4, 0x29070203, 0x00000000, 0x00000000}},  //   _guér, skna_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xf8070057, 0x00000000, 0x00000000, 0x00000000}},  //   _очен,   ,   ,\n  { {0x2249014a, 0x8cc1006e, 0x644f0036, 0x00000000}},  //   _ayak_, र्यो, ęcio,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xe60e004d, 0x3d000061, 0x00000000, 0x00000000}},  //   _сд_, _शकले_,   ,\n  { {0x656f199c, 0x2618006e, 0xe7c30044, 0x00000000}},  //   íchu, _बेटी_, ্মীয,\n  { {0x79820036, 0x00000000, 0x00000000, 0x00000000}},  //   zpow,   ,   ,\n  { {0xdb1c04bb, 0x3cea00d9, 0x00000000, 0x00000000}},  //   _oprá, _snbv_,   ,\n  { {0x6da300c0, 0xd2660088, 0x7bc7199d, 0x00000000}},  // [36a0] лита, _який, _apju,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x1ee8026c, 0xbcfb009d, 0x25ad008e, 0x00000000}},  //   _ہوگی_, _puér, huel_,\n  { {0x61e40ecc, 0x60dc0107, 0x25ad05cd, 0x00000000}},  //   _kril, ldrm, kuel_,\n  { {0xdced01d5, 0x61e20107, 0x00000000, 0x00000000}},  //   ssaġ, _šolj,   ,\n  { {0x6b510039, 0x25ad199e, 0x7b1300fa, 0x00000000}},  //   råga, duel_, _açud,\n  { {0xfaa6008b, 0x00000000, 0x00000000, 0x00000000}},  //   _паво,   ,   ,\n  { {0x61e4008e, 0xd90e0123, 0x00000000, 0x00000000}},  //   _oril, _گیت_,   ,\n  { {0x25ad0489, 0x6d5e0048, 0x00000000, 0x00000000}},  //   guel_, ompa,   ,\n  { {0xe9d70088, 0x3a23106d, 0x00000000, 0x00000000}},  //   _яку_, _смуг,   ,\n  { {0x66e60057, 0xdb1c0224, 0x61e4199f, 0x00000000}},  //   _пожа, _zprá, _aril,\n  { {0x6b9c00d9, 0x00000000, 0x00000000, 0x00000000}},  //   _mvrg,   ,   ,\n  { {0x6906009f, 0x61e400f8, 0x3f57009d, 0x00000000}},  //   _aðei, _cril, nçue_,\n  { {0x2eeb009d, 0x61e400ab, 0x6b9c0087, 0x00000000}},  //   _sncf_, _dril, _ovrg,\n  { {0xb4ac0201, 0x61e40368, 0xe9ff001d, 0x00000000}},  //   गली_, _eril, _khảo_,\n  { {0x61e405ad, 0x22490058, 0x00000000, 0x00000000}},  //   _fril, _tyak_,   ,\n  { {0x6722000b, 0x6ca70088, 0x2f07006c, 0x00000000}},  // [36b0] _mmoj, ереж, _jõgi_,\n  { {0x63a80287, 0x656a002b, 0x00000000, 0x00000000}},  //   ordn, _jifh,   ,\n  { {0xdb1c06b8, 0x6e2a006b, 0x9be4007e, 0x00000000}},  //   _sprá, _əlbə, ліцк,\n  { {0x6d5e00b0, 0xa5a1013d, 0x00000000, 0x00000000}},  //   ampa, _खिलौ,   ,\n  { {0x25ad19a0, 0x644a19a1, 0x00000000, 0x00000000}},  //   xuel_, _lyfi,   ,\n  { {0x7f4d001c, 0xbb850025, 0x7bcb0035, 0x00000000}},  //   llaq, _للسي, ăgub,\n  { {0x644a0039, 0xe73919a2, 0x58940025, 0x00000000}},  //   _nyfi, мек_, اجهز,\n  { {0x25ad19a3, 0xe9ff0082, 0xb21b000c, 0x00000000}},  //   tuel_, _chảo_, rbæj,\n  { {0x6f03001a, 0xaefb0045, 0x6b6c014a, 0x00000000}},  //   _încu, _ciùi, _işga,\n  { {0x67220009, 0x25ad008e, 0x80ad0204, 0x00000000}},  //   _emoj, ruel_, _जागे,\n  { {0x63a80107, 0x644a018e, 0x25ad009d, 0x00000000}},  //   grdn, _cyfi, suel_,\n  { {0x61e40213, 0x60ce00d4, 0x644a132f, 0x00000000}},  //   _pril, webm, _dyfi,\n  { {0x25ad0fdb, 0x1c1e001c, 0x6d5e0016, 0x00000000}},  //   quel_, _येईल_, ympa,\n  { {0x7e7d19a4, 0xe5a2003b, 0x64a50fc0, 0x00000000}},  //   _afsp, _тиши, _рака,\n  { {0x21670517, 0x764b018e, 0x644a0016, 0x00000000}},  //   тири_, _hygy, _gyfi,\n  { {0x61e40d52, 0x69c90328, 0x8464005e, 0x00000000}},  //   _tril, _opee, _съче,\n  { {0x61e4001a, 0xc69200a0, 0x00000000, 0x00000000}},  // [36c0] _uril, יאן_,   ,\n  { {0xdced006b, 0x4c8300e2, 0x00000000, 0x00000000}},  //   rpağ, илув,   ,\n  { {0xeb97019d, 0x6d5e00ea, 0x7d030510, 0x00000000}},  //   вих_, rmpa, önsa,\n  { {0xfaa6025f, 0x6207000c, 0x00000000, 0x00000000}},  //   тадо, _örlí,   ,\n  { {0xceb3007b, 0x82770049, 0x00000000, 0x00000000}},  //   _דיר_, דענע_,   ,\n  { {0x6b580df3, 0x92ce0044, 0xceb4006b, 0x00000000}},  //   díge, রায়_, lgə_,\n  { {0xdbcc000c, 0xc0100011, 0x69c9118e, 0x00000000}},  //   _góða, _đuổi_, _epee,\n  { {0x95d80264, 0xceb4005f, 0xc6230044, 0x00000000}},  //   едит_, ciət_, _পড়া_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xb4ac0183, 0x44f4005e, 0x03f8003b, 0x00000000}},  //   गले_, упос, еној_,\n  { {0xe9ff001d, 0xd6cf19a5, 0x929506f3, 0x00000000}},  //   _thảo_, _кт_, ланц,\n  { {0x6722000b, 0xf626003b, 0xdb9b0097, 0x00000000}},  //   _umoj, _идео, וסטר,\n  { {0x63a80091, 0x644a01d6, 0x656a002b, 0x00000000}},  //   srdn, _wyfi, _tifh,\n  { {0x3494132e, 0xdb05009d, 0x00000000, 0x00000000}},  //   _сакр, rrhé,   ,\n  { {0x403501f9, 0xe7e5013d, 0x2f1506ec, 0x00000000}},  //   уевс, किया_, _låge_,\n  { {0x75280089, 0xfcd900a1, 0xb7db00a3, 0x00000000}},  //   lidz, کارڈ_, וקלי,\n  { {0x2d8f00f4, 0x7e550088, 0x26c600e7, 0x00000000}},  // [36d0] ège_, уває, _mboo_,\n  { {0x48bd0044, 0x00000000, 0x00000000, 0x00000000}},  //   _আফ্র,   ,   ,\n  { {0x69c91936, 0x7a0a0089, 0xf1bf0325, 0x00000000}},  //   _spee, _lētā, ltá_,\n  { {0x6f16013e, 0x6b510039, 0xee840a78, 0x00000000}},  //   chyc, rågo, _выро,\n  { {0xf1bf19a6, 0x7b1300c4, 0x2d5400b0, 0x00000000}},  //   ntá_, _açuc, mäen_,\n  { {0xb4ac01f5, 0x6f0d00b4, 0x00000000, 0x00000000}},  //   गलो_, lkac,   ,\n  { {0xf7710d3a, 0x6d45008e, 0x31580049, 0x00000000}},  //   حات_, moha, דיגן_,\n  { {0xdb05002a, 0x6f0d0871, 0x6b58004a, 0x00000000}},  //   rthó, nkac, tíge,\n  { {0x645c000c, 0x00000000, 0x00000000, 0x00000000}},  //   ýrin,   ,   ,\n  { {0x6d4519a7, 0x6b580446, 0xe616007c, 0x00000000}},  //   noha, ríge, удь_,\n  { {0xc2090104, 0xf1bf00c4, 0x00000000, 0x00000000}},  //   _צה_, etá_,   ,\n  { {0xa77a007b, 0x82f600e2, 0x00000000, 0x00000000}},  //   _טרעפ, учоц,   ,\n  { {0x6d450004, 0xe5a500d7, 0x67290a67, 0x00000000}},  //   koha, _сили, miej,\n  { {0x67290006, 0xf48700ed, 0x6d4501a3, 0x00000000}},  //   liej, _рудн, joha,\n  { {0x66090010, 0x37c30044, 0x232a0088, 0x00000000}},  //   lyek, ্মকর, _поки_,\n  { {0x67290fed, 0x26df0006, 0x25bf0035, 0x00000000}},  //   niej, nduo_, otul_,\n  { {0x25bf000d, 0x660919a8, 0xceb4006b, 0x00000000}},  // [36e0] ntul_, nyek, rgə_,\n  { {0x98a70006, 0x25bf001a, 0x629600e0, 0x00000000}},  //   monė_, itul_, _heyo,\n  { {0x67290036, 0xa25b00c4, 0x00000000, 0x00000000}},  //   kiej, nfôn,   ,\n  { {0x6f0d0253, 0x26dd0045, 0x62960173, 0x00000000}},  //   ckac, _nawo_, _jeyo,\n  { {0xe81c013d, 0xceb4006b, 0x672919a9, 0x00000000}},  //   _भेजा_, rhəd_, diej,\n  { {0x6f03001a, 0xdb1c0039, 0xdb050344, 0x00000000}},  //   _încr, _sprä, ruhá,\n  { {0x6d5c014a, 0x60de0023, 0x26dd0173, 0x00000000}},  //   _ihra, _mapm, _bawo_,\n  { {0x2ee0002b, 0x629601aa, 0x75280036, 0x00000000}},  //   ndif_, _neyo, widz,\n  { {0x16340ae0, 0xe9ff0082, 0x6d5c0203, 0x00000000}},  //   репя, _thạo_, _khra,\n  { {0x88bc0224, 0x00000000, 0x00000000, 0x00000000}},  //   _změn,   ,   ,\n  { {0x629619aa, 0xdb1e0065, 0x25bf001a, 0x00000000}},  //   _beyo, jtpë, atul_,\n  { {0x66760054, 0x660919ab, 0x26dd000a, 0x00000000}},  //   _إدار, byek, _gawo_,\n  { {0x6d5c0059, 0x25bf000d, 0x62960173, 0x00000000}},  //   _ohra, ctul_, _deyo,\n  { {0x60de19ac, 0xf1bf00fa, 0x6f0d0036, 0x00000000}},  //   _capm, rtá_, wkac,\n  { {0xe47b009b, 0xf1bf04bb, 0x2d5400b0, 0x00000000}},  //   _ארוכ, stá_, täen_,\n  { {0xfe730a4f, 0x62960022, 0x6d450058, 0x00000000}},  //   صدر_, _geyo, woha,\n  { {0x6d45006a, 0x6d5c0051, 0x6f0d0036, 0x00000000}},  // [36f0] toha, _bhra, rkac,\n  { {0xb0b203d7, 0x6d5c19ad, 0x67290006, 0x00000000}},  //   _जाएग, _chra, ziej,\n  { {0x6296000b, 0x3a7500ed, 0x6d4519ae, 0x00000000}},  //   _yeyo, алер, roha,\n  { {0x645d006b, 0x6d450058, 0x8d7703ec, 0x00000000}},  //   əsid, soha, _ماسا,\n  { {0x60de011f, 0x39a7025f, 0x67290d94, 0x00000000}},  //   _yapm, ушев, viej,\n  { {0x26dd19af, 0x6d5c0048, 0xbebb0023, 0x00000000}},  //   _sawo_, _ghra, _njëz,\n  { {0xdb1c01d2, 0x672919b0, 0xa8020180, 0x00000000}},  //   _språ, tiej, şınl,\n  { {0x88bc00b9, 0x661b002d, 0xbddb0173, 0x00000000}},  //   _uměn, tzuk, _fyèt,\n  { {0x2d890061, 0x629606af, 0x45350242, 0x00000000}},  //   npae_, _reyo, ихот,\n  { {0x25bf000d, 0x6729093c, 0x62960093, 0x00000000}},  //   rtul_, siej, _seyo,\n  { {0x661b0046, 0x25bf000d, 0x394706fa, 0x00000000}},  //   szuk, stul_, mons_,\n  { {0x394700f4, 0x25bf000d, 0xb17b0039, 0x00000000}},  //   lons_, ptul_, rvån,\n  { {0x80df0044, 0x00000000, 0x00000000, 0x00000000}},  //   মান্,   ,   ,\n  { {0x394719b1, 0x660600b0, 0x73e50131, 0x00000000}},  //   nons_, äkke, _вокз,\n  { {0x5f0619b2, 0xdfd2067a, 0x629601aa, 0x00000000}},  //   азва, غير_, _teyo,\n  { {0x1e8601f9, 0x6d5c0059, 0x3947009d, 0x00000000}},  //   рлам, _shra, hons_,\n  { {0xa156005e, 0x60de19b3, 0x6d5c19b4, 0x00000000}},  // [3700] _външ, _tapm, _phra,\n  { {0x39470089, 0xdca6013b, 0x6abb0026, 0x00000000}},  //   jons_, ражи, _acuf,\n  { {0x60c30010, 0x00000000, 0x00000000, 0x00000000}},  //   _önma,   ,   ,\n  { {0xdee6003b, 0x00000000, 0x00000000, 0x00000000}},  //   _томи,   ,   ,\n  { {0x6d5c0016, 0x394719b5, 0xd90d00a6, 0x00000000}},  //   _thra, fons_, کیل_,\n  { {0x97a60679, 0x394701cb, 0xb21b000c, 0x00000000}},  //   арил, gons_, mbæt,\n  { {0xf09300b6, 0x81cc0044, 0xf803007e, 0x00000000}},  //   חנו_, রটি_, жчын,\n  { {0xa3e40316, 0xab690070, 0x7bdb009b, 0x00000000}},  //   निस_, _محقق_, _בקלו,\n  { {0x25ad00d4, 0xc6f70783, 0x394700f6, 0x00000000}},  //   grel_, рных_, bons_,\n  { {0x81cc0044, 0x7ae207ef, 0x7ae000e7, 0x00000000}},  //   রটা_, ldot, _hamt,\n  { {0x69c20168, 0x7ae000ea, 0x3c7700b3, 0x00000000}},  //   ltoe, _kamt, יתים_,\n  { {0x7ae2001b, 0x268a023c, 0x86461020, 0x00000000}},  //   ndot, _شخصي_, _кнеж,\n  { {0x69c20292, 0x273a0089, 0x7ae201c5, 0x00000000}},  //   ntoe, cīna_, idot,\n  { {0x29c2001d, 0x2d050061, 0x7ae00cb8, 0x00000000}},  //   _mưa_, _शकेल_, _lamt,\n  { {0x753d0047, 0x7ae20d90, 0x69c200b0, 0x00000000}},  //   észe, kdot, htoe,\n  { {0x3947062a, 0x69c219b6, 0x7ae019b7, 0x00000000}},  //   zons_, ktoe, _namt,\n  { {0x629d0013, 0x394700f4, 0x7ae219b8, 0x00000000}},  // [3710] maso, yons_, ddot,\n  { {0x394702d0, 0x629d07ac, 0x30a70088, 0x00000000}},  //   xons_, laso, _трив,\n  { {0x394700f4, 0xbddb000a, 0x00000000, 0x00000000}},  //   vons_, _pyès,   ,\n  { {0x06ac0055, 0x7ae001a3, 0x3b040026, 0x00000000}},  //   ক্তি, _camt, _comq_,\n  { {0xa2bc02f4, 0x39471120, 0x29c20082, 0x00000000}},  //   ष्ट्, tons_, _cưa_,\n  { {0x629d19b9, 0x88bc00b9, 0x29c20011, 0x00000000}},  //   haso, _uměl, _dưa_,\n  { {0x394700f4, 0xfb84007e, 0x7ae00087, 0x00000000}},  //   rons_, _мытн, _famt,\n  { {0x497505a5, 0x3947028a, 0x7ae00006, 0x00000000}},  //   _глас, sons_, _gamt,\n  { {0x629d065c, 0x394719ba, 0x69db164e, 0x00000000}},  //   daso, pons_, _usue,\n  { {0x25ad0e69, 0x00000000, 0x00000000, 0x00000000}},  //   rrel_,   ,   ,\n  { {0xe29a017a, 0x9407006b, 0x0445060e, 0x00000000}},  //   лан_, _yenə_, сенн,\n  { {0x290519bb, 0x68e10635, 0x2d850e3c, 0x00000000}},  //   _hola_, _hald, _člen_,\n  { {0x68e119bc, 0x29050802, 0x29c20011, 0x00000000}},  //   _kald, _kola_, _xưa_,\n  { {0x68e30065, 0xa3e40316, 0x61e20059, 0x00000000}},  //   ndnd, निश_, _šols,\n  { {0x290519bd, 0x09d4007d, 0xb4b30164, 0x00000000}},  //   _mola_, _धन्य, टली_,\n  { {0x2905011c, 0x629d008e, 0x69c201d6, 0x00000000}},  //   _lola_, caso, ytoe,\n  { {0x7ae00190, 0x00000000, 0x00000000, 0x00000000}},  // [3720] _ramt,   ,   ,\n  { {0x2905022b, 0x2f150039, 0xe0da01ee, 0x00000000}},  //   _nola_, _våga_, _сво_,\n  { {0x940c005f, 0x7ae00091, 0x7ae211b2, 0x00000000}},  //   fadə_, _pamt, tdot,\n  { {0x9b2501e1, 0x69c20b38, 0x7ae2013e, 0x00000000}},  //   офіл, ttoe, udot,\n  { {0x68e119be, 0x29051238, 0xd91006c6, 0x00000000}},  //   _bald, _bola_, ویر_,\n  { {0xdd8f0025, 0x69c200c7, 0xd94317bc, 0x00000000}},  //   _سوف_, rtoe, печи,\n  { {0x29050509, 0x69c20168, 0x6d4e14fe, 0x00000000}},  //   _dola_, stoe, _ikba,\n  { {0xdc37007b, 0x69c201d6, 0x98bc007f, 0x00000000}},  //   _האלט_, ptoe, dovą_,\n  { {0x68e10030, 0x629d0010, 0x6b5819bf, 0x00000000}},  //   _fald, vaso, lígo,\n  { {0x68e119c0, 0x29050091, 0x18a300ed, 0x00000000}},  //   _gald, _gola_, _наум,\n  { {0x629d00b0, 0x8cca013d, 0x06e00044, 0x00000000}},  //   taso, स्यो, ভাবি,\n  { {0x68e1002d, 0x23a9006e, 0x00000000, 0x00000000}},  //   _zald, _किरद,   ,\n  { {0x629d002d, 0x29050279, 0xdcef001a, 0x00000000}},  //   raso, _yola_, _jucă,\n  { {0x463b007b, 0x629d002d, 0x777a002d, 0x00000000}},  //   _געדע, saso, _kutx,\n  { {0x629d1163, 0x4ac802fb, 0x60d501aa, 0x00000000}},  //   paso, रभाव, rezm,\n  { {0x6d4e01d5, 0x777a05aa, 0x332905d2, 0x00000000}},  //   _akba, _mutx, _umax_,\n  { {0x246e006b, 0x777a0032, 0x3f9e01e5, 0x00000000}},  // [3730] ləm_, _lutx, átur_,\n  { {0xe29f009f, 0x2b4d016c, 0x61ed0032, 0x00000000}},  //   lað_, _skec_, _iral,\n  { {0x290519c1, 0xf2dc0044, 0x2b5f0011, 0x00000000}},  //   _rola_, ধারণ, _phuc_,\n  { {0x68e119c2, 0xe29f009f, 0x61ed0119, 0x00000000}},  //   _sald, nað_, _kral,\n  { {0x290519c3, 0x68e10089, 0x210d001c, 0x00000000}},  //   _pola_, _pald, _सकाळ_,\n  { {0xa969013b, 0x68e1005f, 0xdb2300a1, 0x00000000}},  //   шила_, _qald, _کوری,\n  { {0x68e10394, 0xe29f000c, 0x2b5f0011, 0x00000000}},  //   _vald, kað_, _thuc_,\n  { {0x68e10dcc, 0x777a0c2f, 0xe29f000c, 0x00000000}},  //   _wald, _dutx, jað_,\n  { {0x68e119c4, 0x290519c5, 0xe5760147, 0x00000000}},  //   _tald, _tola_, озы_,\n  { {0xb4b30061, 0x628407ae, 0x893706dd, 0x00000000}},  //   टले_, _sfio, _اعرا,\n  { {0x61ed19c6, 0x777a022b, 0x7d070059, 0x00000000}},  //   _aral, _gutx, _mojs,\n  { {0x61ed0235, 0xe29f000c, 0x7bc519c7, 0x00000000}},  //   _bral, gað_, ithu,\n  { {0x64a50745, 0x6f060087, 0x00000000, 0x00000000}},  //   _дала, _rokc,   ,\n  { {0xe3b10647, 0x7bc500f8, 0x6f060085, 0x00000000}},  //   _قرب_, kthu, _sokc,\n  { {0xa06a008b, 0x61ed066f, 0x246e006b, 0x00000000}},  //   рава_, _eral, cəm_,\n  { {0x6aa90020, 0x61ed00c4, 0x7bc50146, 0x00000000}},  //   _ndef, _fral, dthu,\n  { {0x7d0702c0, 0xcd2a007e, 0x7bc5005b, 0x00000000}},  // [3740] _bojs, ажае_, ethu,\n  { {0x6aa900f6, 0x6b5800f6, 0x7d07012d, 0x00000000}},  //   _adef, tígo, _cojs,\n  { {0x8b2601fb, 0x7bc519c8, 0x1c39007e, 0x00000000}},  //   одже, gthu, бяць_,\n  { {0xa802014a, 0x39ea0cb3, 0x00000000, 0x00000000}},  //   şıkl, идео_,   ,\n  { {0x6aa9018e, 0x2d4f0129, 0xd94619c9, 0x00000000}},  //   _ddef, gües_, оеди,\n  { {0xed57053f, 0x3ea000f4, 0xf1bf0010, 0x00000000}},  //   _моя_, lait_, szág_,\n  { {0xfbc30088, 0x6aa90009, 0x7bc50082, 0x00000000}},  //   _обро, _fdef, cthu,\n  { {0x3ea000f4, 0xc6f80793, 0xd83801ed, 0x00000000}},  //   nait_, сних_, _neče_,\n  { {0xe29f000c, 0xdcee19ca, 0xb17b0056, 0x00000000}},  //   vað_, _libč, rvåk,\n  { {0x38c80167, 0x61ed0065, 0xdb210010, 0x00000000}},  //   _داری_, _rral, ütör,\n  { {0xe29f009f, 0x06ac0055, 0x3ea00504, 0x00000000}},  //   tað_, ক্ষি, kait_,\n  { {0x246e005f, 0x0665007a, 0x61ed0006, 0x00000000}},  //   rəm_, _کامپ, _pral,\n  { {0xe29f000c, 0x363601fa, 0x41e40451, 0x00000000}},  //   rað_, _براس, міра,\n  { {0x7bc50016, 0xe29f000c, 0x00000000, 0x00000000}},  //   ythu, sað_,   ,\n  { {0x7d070059, 0xe29f000c, 0x3ea0009d, 0x00000000}},  //   _rojs, pað_, fait_,\n  { {0x06ac0044, 0x2328003b, 0x00000000, 0x00000000}},  //   ক্রি, _моји_,   ,\n  { {0x61ed0010, 0x753a0032, 0x3f57014a, 0x00000000}},  // [3750] _ural, ontz, lçuk_,\n  { {0x7bc519cb, 0x00000000, 0x00000000, 0x00000000}},  //   tthu,   ,   ,\n  { {0x7d070b54, 0x3ea003b0, 0x753a002d, 0x00000000}},  //   _vojs, bait_, intz,\n  { {0x7bc50016, 0x7d070036, 0x77620082, 0x00000000}},  //   rthu, _wojs, _nhox,\n  { {0x7bc50007, 0x00000000, 0x00000000, 0x00000000}},  //   sthu,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x4809005e, 0x00000000, 0x00000000, 0x00000000}},  //   сейн_,   ,   ,\n  { {0x753a002d, 0x6aa90190, 0x656801c3, 0x00000000}},  //   entz, _udef, emdh,\n  { {0xd8381279, 0x6446027d, 0xc8f90044, 0x00000000}},  //   _reče_, şkil, _অতীত_,\n  { {0x58bb0318, 0x6e200004, 0xe5761280, 0x00000000}},  //   _خارج_, _ümbe, язь_,\n  { {0x6d890027, 0x3ea001e6, 0xa2e619cc, 0x00000000}},  //   _hľad, yait_, понд,\n  { {0x96b8003b, 0x62810036, 0x753a002d, 0x00000000}},  //   _душу_, ślon, antz,\n  { {0xd838037e, 0x2bd201f5, 0x3ea000f4, 0x00000000}},  //   _veče_, _सहभा, vait_,\n  { {0x645d0163, 0xdd92026c, 0xeb08013d, 0x00000000}},  //   əsin, ہور_, _वक्त_,\n  { {0x3ea019cd, 0xd2590089, 0x442102e7, 0x00000000}},  //   tait_, ļņa_, _åh_,\n  { {0x673b0934, 0xdd920644, 0x04560025, 0x00000000}},  //   nnuj, فور_, _علية_,\n  { {0x3ea0028c, 0xfe4308d6, 0x00e400a1, 0x00000000}},  // [3760] rait_, енто, _ہتھی,\n  { {0x3ea019ce, 0x00000000, 0x00000000, 0x00000000}},  //   sait_,   ,   ,\n  { {0x3ea00f91, 0xc0470011, 0x0c26025f, 0x00000000}},  //   pait_, _mượn_, џмен,\n  { {0xc0470082, 0x70760014, 0x63be0056, 0x00000000}},  //   _lượn_, _واگذ, _åpne,\n  { {0xceb300bd, 0xd6c30055, 0x0d83007e, 0x00000000}},  //   _איר_, ্যায, _плян,\n  { {0x6f0411cc, 0xf8060088, 0x00000000, 0x00000000}},  //   ljic, зчин,   ,\n  { {0x776200d9, 0x00000000, 0x00000000, 0x00000000}},  //   _phox,   ,   ,\n  { {0x1ae30057, 0x6f0410c1, 0x6f1619cf, 0x00000000}},  //   _посм, njic, nkyc,\n  { {0x6e24000b, 0xbb430242, 0x00000000, 0x00000000}},  //   nzib, _четк,   ,\n  { {0x47d40055, 0x00000000, 0x00000000, 0x00000000}},  //   থিবী,   ,   ,\n  { {0x4ae00061, 0x00000000, 0x00000000, 0x00000000}},  //   _नसाव,   ,   ,\n  { {0xf6e501fb, 0x1dac007d, 0x6aa20020, 0x00000000}},  //   _оцін, _चिंत, naof,\n  { {0x6f0408de, 0x87250025, 0x00000000, 0x00000000}},  //   djic, _تعلم,   ,\n  { {0x6e2419d0, 0x98a7001a, 0xe3af00a1, 0x00000000}},  //   dzib, mină_, خری_,\n  { {0x3d00007d, 0x6aa200e7, 0x98a70035, 0x00000000}},  //   राने_, kaof, lină_,\n  { {0x6d4300ca, 0x394e01a2, 0x00000000, 0x00000000}},  //   čnam, hofs_,   ,\n  { {0x63ba016c, 0xa3e402fb, 0x7b3c0eae, 0x00000000}},  // [3770] lutn, निक_, rčul,\n  { {0xf1b2013d, 0xdb1c0036, 0x673b0059, 0x00000000}},  //   _जितन, _opró, znuj,\n  { {0x63ba089f, 0x00000000, 0x00000000, 0x00000000}},  //   nutn,   ,   ,\n  { {0xdb050065, 0xadbd007e, 0x6f04012d, 0x00000000}},  //   mshë, _камi, cjic,\n  { {0xdb1c0010, 0x67200023, 0xdb050023, 0x00000000}},  //   _apró, dhmj, lshë,\n  { {0x63ba19d1, 0xe9d801ff, 0xdb1c0051, 0x00000000}},  //   kutn, які_, _bpró,\n  { {0x1bd4004c, 0x67d200ed, 0xdb050065, 0x00000000}},  //   _поря, воју, nshë,\n  { {0xe619005e, 0x629f0023, 0x63ba19d2, 0x00000000}},  //   жди_, _neqo, dutn,\n  { {0x98a7001a, 0x3dc919d3, 0xe9d000a1, 0x00000000}},  //   gină_, ntaw_, _مغل_,\n  { {0x65630061, 0xe6c40107, 0xdb050065, 0x00000000}},  //   _qhnh, češć, kshë,\n  { {0x2d540004, 0xdb050065, 0x78a30052, 0x00000000}},  //   päev_, jshë, manv,\n  { {0x572701f7, 0x47350364, 0x98bc013e, 0x00000000}},  //   _عراق, _юнес, kově_,\n  { {0xdb050065, 0xaefb0011, 0x2ee9098d, 0x00000000}},  //   eshë, _phùn, ddaf_,\n  { {0x63ba04be, 0xdb050065, 0xdb1c010f, 0x00000000}},  //   butn, fshë, _sprü,\n  { {0x63ba012d, 0x6f04012d, 0x00000000, 0x00000000}},  //   cutn, tjic,   ,\n  { {0xdbd90181, 0xd00f00a1, 0x6e240032, 0x00000000}},  //   nçõe, گلہ_, tzib,\n  { {0xdbd90181, 0xee3a0fc0, 0xaefb0011, 0x00000000}},  // [3780] içõe, цна_, _thùn,\n  { {0x61e4002d, 0x5d6719d4, 0xd8380087, 0x00000000}},  //   _isil, диум_, _leča_,\n  { {0x6f6600ed, 0xb6a30082, 0xdbf200b9, 0x00000000}},  //   _овоз, _phầ, příp,\n  { {0x60dc0207, 0x7c65002c, 0xdb1c000a, 0x00000000}},  //   lerm, رالل, _aprò,\n  { {0xa2c1007d, 0xdb1c0036, 0xfaa3007e, 0x00000000}},  //   _वास्, _spró, тачо,\n  { {0x60dc19d5, 0xeb9a00d7, 0x98a7001a, 0x00000000}},  //   nerm, _миг_, vină_,\n  { {0x38cb00e9, 0x6f1d0009, 0x60dc01a2, 0x00000000}},  //   تانی_, _ylsc, ierm,\n  { {0x60dc02ae, 0x394e19d6, 0x98a70035, 0x00000000}},  //   herm, sofs_, tină_,\n  { {0xfaa30545, 0x557419a2, 0x00000000, 0x00000000}},  //   _шато, нгит,   ,\n  { {0x2fdf0046, 0x78a300d4, 0xdbd900c4, 0x00000000}},  //   ługi_, canv, açõe,\n  { {0x61e4000b, 0x291e00b0, 0x798000e7, 0x00000000}},  //   _asil, _ilta_, _humw,\n  { {0x63ba0897, 0x68e80292, 0x798009df, 0x00000000}},  //   rutn, _hadd, _kumw,\n  { {0x60dc08d3, 0x290c0059, 0x63ba0091, 0x00000000}},  //   ferm, _koda_, sutn,\n  { {0x60dc0c53, 0xdb050065, 0x660f0a5d, 0x00000000}},  //   germ, tshë, äcke,\n  { {0x68e801f6, 0x61e419d7, 0x57dc0309, 0x00000000}},  //   _madd, _esil, _मनोह,\n  { {0xc3280054, 0xdb050065, 0x3dc9002b, 0x00000000}},  //   _يكون_, rshë, ttaw_,\n  { {0x6458021e, 0x68fa01b5, 0x8d790025, 0x00000000}},  // [3790] _hyvi, _ontd, سماء_,\n  { {0x68e80066, 0x60dc008e, 0x290c19d8, 0x00000000}},  //   _nadd, cerm, _noda_,\n  { {0x3dc919d9, 0x5eab0044, 0x60c50c10, 0x00000000}},  //   staw_, ঙ্গে, _ichm,\n  { {0xbebb0065, 0xdd95007e, 0xfbd00014, 0x00000000}},  //   _emër, _памы, شتم_,\n  { {0x290c19da, 0x3f8101a3, 0x442500d9, 0x00000000}},  //   _boda_, _huhu_, zzl_,\n  { {0x290c0197, 0x3f81006c, 0x41b2013d, 0x00000000}},  //   _coda_, _kuhu_, _जिसस,\n  { {0xa9270089, 0x78a300f8, 0x68e80837, 0x00000000}},  //   _režī, ranv, _dadd,\n  { {0x68fa010f, 0x6aa0041d, 0x06090088, 0x00000000}},  //   _entd, _gemf, зник_,\n  { {0x7afb0207, 0xb9b503ab, 0x68e808c9, 0x00000000}},  //   _inut, _سماع, _fadd,\n  { {0x290c0039, 0x68e800ea, 0x7ae900b0, 0x00000000}},  //   _goda_, _gadd, _haet,\n  { {0x60dc0270, 0x7afb0039, 0xdbd900c4, 0x00000000}},  //   verm, _knut, pçõe,\n  { {0x78a1001c, 0x60c50093, 0x29070295, 0x00000000}},  //   _helv, _achm, ljna_,\n  { {0x60dc0b25, 0xa2c102fb, 0x78a119db, 0x00000000}},  //   term, _वार्, _kelv,\n  { {0x7ae9002a, 0xafe6034b, 0x61e400ca, 0x00000000}},  //   _laet, ногл, _vsil,\n  { {0xb4ab001c, 0x60dc0302, 0x69cb19dc, 0x00000000}},  //   गणी_, rerm, htge,\n  { {0xe456007b, 0x60dc08ed, 0x61e419dd, 0x00000000}},  //   _איצט_, serm, _tsil,\n  { {0xc6920476, 0x733b0049, 0x8cb600aa, 0x00000000}},  // [37a0] טאן_, _מעקס, есеч,\n  { {0x79800b3a, 0xafe600e2, 0xf4bd0044, 0x00000000}},  //   _rumw, _зоол, _অসুব,\n  { {0x68e819de, 0x7ae906c0, 0x309b009b, 0x00000000}},  //   _radd, _baet, _משימ,\n  { {0x6d5519df, 0x7ae90767, 0x2d920007, 0x00000000}},  //   _ekza, _caet, ppye_,\n  { {0x68e8001c, 0x78a10010, 0x7ae90016, 0x00000000}},  //   _padd, _belv, _daet,\n  { {0x7afb00f6, 0x68e8002b, 0x612200c4, 0x00000000}},  //   _enut, _qadd, _fôle,\n  { {0xb90802d2, 0x78a104d3, 0x9d43007c, 0x00000000}},  //   _बस_, _delv, _серд,\n  { {0x8b66007a, 0x7659018e, 0x68e8014f, 0x00000000}},  //   _سازم, _bywy, _wadd,\n  { {0x290c19e0, 0x78a10047, 0xa84a0167, 0x00000000}},  //   _toda_, _felv, _کلام_,\n  { {0x7d0e01e7, 0xb17b0039, 0x2d820145, 0x00000000}},  //   _jobs, kvår, _muke_,\n  { {0x332000eb, 0x9295005e, 0x2d820238, 0x00000000}},  //   _blix_, канц, _luke_,\n  { {0x60c5001f, 0x76590016, 0x3f5700d4, 0x00000000}},  //   _schm, _fywy, nçut_,\n  { {0x2d8219e1, 0x3f8104cb, 0x7d0e00e0, 0x00000000}},  //   _nuke_, _suhu_, _oobs,\n  { {0x78a100d4, 0xd8380087, 0x6e3b19e2, 0x00000000}},  //   _xelv, _ječo_, _žubo,\n  { {0x332019e3, 0xdfd8005e, 0xbf1c013d, 0x00000000}},  //   _flix_, нът_, नसून_,\n  { {0x2d8219e4, 0x61180279, 0x6122009d, 0x00000000}},  //   _buke_, _ağlı, _rôle,\n  { {0x7d0e01c5, 0xe7e2013d, 0x5d5500e3, 0x00000000}},  // [37b0] _bobs, _कैसा_, вкат,\n  { {0x2d82071e, 0x7ae90016, 0x6122009d, 0x00000000}},  //   _duke_, _saet, _pôle,\n  { {0x78a119e5, 0xe3b8005d, 0x7ae90ac2, 0x00000000}},  //   _relv, nrı_, _paet,\n  { {0x78a119e6, 0x29c9008e, 0x612200c4, 0x00000000}},  //   _selv, túa_, _vôle,\n  { {0x7d0e00f6, 0x09e50143, 0x78a10835, 0x00000000}},  //   _fobs, толн, _pelv,\n  { {0x69cb0506, 0x88bc00b9, 0x7ae90016, 0x00000000}},  //   rtge, _směr, _waet,\n  { {0x78a100b0, 0x69cb19e7, 0x2d82012d, 0x00000000}},  //   _velv, stge, _zuke_,\n  { {0xf77101af, 0x26c619e8, 0x78a10116, 0x00000000}},  //   جات_, _ccoo_, _welv,\n  { {0x9fb600b9, 0x645c0e4d, 0x99d403e6, 0x00000000}},  //   vřít_, ürin, _متلا,\n  { {0xe9750380, 0x26c60026, 0x2ca301f3, 0x00000000}},  //   _شهاد, _ecoo_, _jejd_,\n  { {0xa8020279, 0xa91d0091, 0x3f57009d, 0x00000000}},  //   şırl, _tužb, nçus_,\n  { {0x7659018e, 0x6f0f0197, 0x236901aa, 0x00000000}},  //   _tywy, _nocc, _chaj_,\n  { {0xf1bf0181, 0x3ea200d9, 0x00000000, 0x00000000}},  //   guá_, _rekt_,   ,\n  { {0x2d821434, 0x3ea201e5, 0x2ca301f3, 0x00000000}},  //   _ruke_, _sekt_, _nejd_,\n  { {0x10a319e9, 0x6f0f0207, 0x7d0e00c4, 0x00000000}},  //   рисн, _bocc, _robs,\n  { {0x6f0f0207, 0x2d82011c, 0x22160269, 0x00000000}},  //   _cocc, _puke_, _афор,\n  { {0x6f0f0207, 0xe7bd0044, 0xb17b0039, 0x00000000}},  // [37c0] _docc, _আনোয, rvår,\n  { {0xa3b80061, 0x00000000, 0x00000000, 0x00000000}},  //   _चिम_,   ,   ,\n  { {0xa7fc005a, 0xb17b00ea, 0x00000000, 0x00000000}},  //   _azın, mvåp,   ,\n  { {0x6f0f0197, 0x98a70a67, 0x2d820253, 0x00000000}},  //   _gocc, minę_, _tuke_,\n  { {0x98a70a67, 0x3f5702d0, 0x00000000, 0x00000000}},  //   linę_, rçut_,   ,\n  { {0xa2d90061, 0x6f0f0197, 0x7b3c0107, 0x00000000}},  //   _फॉन्, _zocc, jčuv,\n  { {0x6a8601f9, 0xec7709da, 0xb8da03d7, 0x00000000}},  //   _алба, _апр_, _आए_,\n  { {0x6d5e0472, 0x3d000061, 0x8c4302dc, 0x00000000}},  //   llpa, रावे_, _тесе,\n  { {0xd838012d, 0xdb110048, 0x00000000, 0x00000000}},  //   _tečo_, _ógán,   ,\n  { {0xe29a001d, 0xa802005f, 0x660f0039, 0x00000000}},  //   _đưa_, şıql, äcka,\n  { {0x33750081, 0x91820082, 0xd70619ea, 0x00000000}},  //   лгор, yện_, _изжи,\n  { {0x61f60030, 0xe61a003b, 0xe3b8014a, 0x00000000}},  //   _bryl, _оде_, rrı_,\n  { {0x6f0f0207, 0xd05d006b, 0x00000000, 0x00000000}},  //   _rocc, əyən,   ,\n  { {0x6f0f19eb, 0x2f1501c9, 0x61f60016, 0x00000000}},  //   _socc, _lågt_, _dryl,\n  { {0x443a006c, 0x6f0f0026, 0xb227000c, 0x00000000}},  //   _äp_, _pocc, _bræð,\n  { {0x5eb401e0, 0x63ba02aa, 0x6d5e054e, 0x00000000}},  //   ийст, mrtn, elpa,\n  { {0x6f0f0026, 0x6ca70a1e, 0x61f604e7, 0x00000000}},  // [37d0] _vocc, вреж, _gryl,\n  { {0x67220065, 0x98a70a62, 0x01fa0097, 0x00000000}},  //   _lloj, binę_, _נפתל,\n  { {0xb227009f, 0x6f0f0207, 0x30a4007e, 0x00000000}},  //   _fræð, _tocc, _трыв,\n  { {0x27f901dc, 0x3f57009d, 0xb227000c, 0x00000000}},  //   _čsn_, rçus_, _græð,\n  { {0x3ea901a3, 0x6eba009b, 0x2ca30066, 0x00000000}},  //   maat_, _אזרח, _tejd_,\n  { {0xeb9304e8, 0x18690265, 0x3ea90007, 0x00000000}},  //   _نظر_, нали_, laat_,\n  { {0x98a2007c, 0x00000000, 0x00000000, 0x00000000}},  //   щище,   ,   ,\n  { {0xa6e5012d, 0xdb1c0210, 0x307c0049, 0x00000000}},  //   ужил, _sprö, ואונ,\n  { {0xe579017a, 0xaefb0045, 0x00000000, 0x00000000}},  //   нзи_, _chùi,   ,\n  { {0x499000a1, 0x3ea901d6, 0x00000000, 0x00000000}},  //   _بیور, haat_,   ,\n  { {0x6722008e, 0x656f013e, 0x80df0044, 0x00000000}},  //   _floj, ůcho, মাঞ্,\n  { {0x15f501f7, 0x61f60039, 0x6b58004a, 0x00000000}},  //   _مستح, _pryl, lígr,\n  { {0x3ea90277, 0x63ba00bb, 0xba3d013e, 0x00000000}},  //   daat_, artn, _zdůr,\n  { {0x64a519ec, 0x25ad08a9, 0x98a70006, 0x00000000}},  //   _сака, msel_, tinę_,\n  { {0x25ad19ed, 0x3ea90145, 0x7a2a0010, 0x00000000}},  //   lsel_, faat_, _köté,\n  { {0x14cf01f5, 0x6d4719ee, 0x543a0049, 0x00000000}},  //   त्रण, _ajja, _רעקא,\n  { {0x201e0209, 0x25ad114e, 0x0e660887, 0x00000000}},  // [37e0] šti_, nsel_, укан,\n  { {0x3ea9001c, 0x319b00a3, 0x25ad01d6, 0x00000000}},  //   aaat_, _רבינ, isel_,\n  { {0xf536007b, 0x69db0211, 0x25e5013d, 0x00000000}},  //   נטער_, _apue, _जैसी_,\n  { {0x3ea919ef, 0x25ad014a, 0x0b46007e, 0x00000000}},  //   caat_, ksel_, ынен,\n  { {0x99d30054, 0xa91d19f0, 0x69db0146, 0x00000000}},  //   متوا, _suža, _cpue,\n  { {0x25ad05a6, 0x5f260044, 0xe9730025, 0x00000000}},  //   dsel_, _যদিও_, مهند,\n  { {0x25ad021f, 0xd90d0063, 0xdce60006, 0x00000000}},  //   esel_, بیل_, _sukė,\n  { {0xc6f819f1, 0x291c19f2, 0x7f4419f3, 0x00000000}},  //   тних_, skva_, nniq,\n  { {0x25ad02e7, 0x7ae2087c, 0x00000000, 0x00000000}},  //   gsel_, meot,   ,\n  { {0x7ae219f4, 0x2956005e, 0x80d600e8, 0x00000000}},  //   leot, _събр, म्मे,\n  { {0x6134006b, 0x69c20016, 0xa91d050f, 0x00000000}},  //   _gülə, luoe, _kužn,\n  { {0xa91d16d0, 0x78aa001c, 0xf1bf0010, 0x00000000}},  //   _južn, lafv, szám_,\n  { {0xa5960265, 0x3ea90007, 0xd5ae00a1, 0x00000000}},  //   _срещ, vaat_, _عہد_,\n  { {0xa2c10164, 0x7bdc00bb, 0x98a700b9, 0x00000000}},  //   _वाक्, _opru, dině_,\n  { {0x3ea9046a, 0x753a0ec8, 0xceb4006b, 0x00000000}},  //   taat_, mitz, rkən_,\n  { {0x753a120d, 0xa91d0091, 0x3e07005e, 0x00000000}},  //   litz, _nužn, лязв,\n  { {0x7ae2128e, 0x3ea9049b, 0xdb1e00f4, 0x00000000}},  // [37f0] deot, raat_, cupé,\n  { {0x753a04bd, 0x3ea904be, 0xd7f8001a, 0x00000000}},  //   nitz, saat_, _oră_,\n  { {0x3ea900b0, 0x00000000, 0x00000000, 0x00000000}},  //   paat_,   ,   ,\n  { {0x753a19f5, 0x8f9a009b, 0x7f440129, 0x00000000}},  //   hitz, _שירי, cniq,\n  { {0x753a022b, 0xa91d0091, 0x00000000, 0x00000000}},  //   kitz, _dužn,   ,\n  { {0x25ad0190, 0x6f0d0091, 0x7a2a0010, 0x00000000}},  //   vsel_, ljac, _söté,\n  { {0x753a002d, 0x6e2d06b9, 0x6d450011, 0x00000000}},  //   ditz, lzab, mnha,\n  { {0x6f0d0091, 0x475902dc, 0x00000000, 0x00000000}},  //   njac, ърля_,   ,\n  { {0xd706007c, 0x6e2d04de, 0x88c7023c, 0x00000000}},  //   рные_, nzab, _متال,\n  { {0x25ad19f6, 0x2bc90061, 0x753a002d, 0x00000000}},  //   rsel_, ांपा, gitz,\n  { {0x68e3022b, 0x25ad0010, 0x612b0010, 0x00000000}},  //   mend, ssel_, _külf,\n  { {0x2498005d, 0x6f0d0107, 0x45d500ed, 0x00000000}},  //   ırma_, jjac, _водс,\n  { {0x6f0d0107, 0x753a15ed, 0x442c0036, 0x00000000}},  //   djac, bitz, azd_,\n  { {0xf48701a4, 0x628f000a, 0x98a700b9, 0x00000000}},  //   _судн, acco, vině_,\n  { {0x2bb10046, 0x6d570a86, 0x68fc008e, 0x00000000}},  //   jąc_, doxa, _órde,\n  { {0x68e30004, 0x6f0d0093, 0x6d450052, 0x00000000}},  //   hend, gjac, enha,\n\n  { {0x63a3018e, 0x661b04cb, 0xa91d0091, 0x00000000}},  // [3800] _hwnn, nyuk, _ružn,\n  { {0x68e3004e, 0x4103007e, 0xa91d0fd0, 0x00000000}},  //   jend, _дзьв, _sužn,\n  { {0x68e3068f, 0x7ae2002d, 0x6e2d0032, 0x00000000}},  //   dend, teot, azab,\n  { {0x753a022b, 0x6f0d0036, 0x98a700b9, 0x00000000}},  //   zitz, cjac, pině_,\n  { {0x2bd2024c, 0x272a001d, 0xdcfc002b, 0x00000000}},  //   _सहका, _hùng_, _jirċ,\n  { {0x68e303a1, 0x8b96007c, 0x7c660439, 0x00000000}},  //   gend, _врач, _نازل,\n  { {0x8c43041f, 0xa91d0091, 0x753a0fc3, 0x00000000}},  //   _дере, _tužn, vitz,\n  { {0x6d5c0059, 0x272a0082, 0x753a01a2, 0x00000000}},  //   _hkra, _mùng_, witz,\n  { {0x753a0ec8, 0x5506007e, 0x272a0011, 0x00000000}},  //   titz, ачна, _lùng_,\n  { {0x68e30198, 0xd8380521, 0x612b0276, 0x00000000}},  //   cend, _leči_, _zülf,\n  { {0x753a19f7, 0x6e2d0207, 0x612b010e, 0x00000000}},  //   ritz, zzab, _hülg,\n  { {0x753a0fa5, 0xd6d90036, 0x612b006c, 0x00000000}},  //   sitz, koły_, _külg,\n  { {0x78a80047, 0xf5940054, 0x6d45018e, 0x00000000}},  //   _kedv, _التج, ynha,\n  { {0x78a80091, 0x442c0009, 0x272a0011, 0x00000000}},  //   _jedv, pzd_, _bùng_,\n  { {0x272a001d, 0x4ea701f9, 0x7467005e, 0x00000000}},  //   _cùng_, ираа, _кръв_,\n  { {0x68e319f8, 0x272a001d, 0x6d5c19f9, 0x00000000}},  //   zend, _dùng_, _akra,\n  { {0x68e30211, 0x8cc2006e, 0x6d5700e5, 0x00000000}},  // [3810] yend, _लाखो, toxa,\n  { {0x61ed011c, 0x68e31824, 0xa91d0142, 0x00000000}},  //   _isal, xend, _ružo,\n  { {0x68e319fa, 0x6d450abe, 0xee870a78, 0x00000000}},  //   vend, rnha, _выго,\n  { {0x6d5c011f, 0x28c9001c, 0x68e30dcc, 0x00000000}},  //   _ekra, _राहि, wend,\n  { {0xe9190088, 0x61ed0066, 0x3df4007e, 0x00000000}},  //   лоді_, _jsal, _дзяс,\n  { {0x98a2005e, 0x61ed0020, 0xf1bf0b33, 0x00000000}},  //   пише, _msal, irá_,\n  { {0xe73901ab, 0x60da010e, 0x67290023, 0x00000000}},  //   лек_, õtmi, thej,\n  { {0x61ed08b2, 0x7bc511b3, 0xf1bf19fb, 0x00000000}},  //   _osal, muhu, krá_,\n  { {0x68e319fc, 0x612b0047, 0x7bc50022, 0x00000000}},  //   pend, _küld, luhu,\n  { {0xb8fc0055, 0x6aa90662, 0xf1bf19fd, 0x00000000}},  //   _তো_, _heef, drá_,\n  { {0x61ed01a3, 0xd8860014, 0x7bc50058, 0x00000000}},  //   _asal, _اهمی, nuhu,\n  { {0x272a0082, 0x00000000, 0x00000000, 0x00000000}},  //   _rùng_,   ,   ,\n  { {0x7bc503b0, 0x61ed0047, 0x753d0047, 0x00000000}},  //   huhu, _csal, észs,\n  { {0x6aa9015c, 0x7bc519fe, 0x00000000, 0x00000000}},  //   _leef, kuhu,   ,\n  { {0x798119ff, 0x61ed1a00, 0xf1bf0b33, 0x00000000}},  //   _milw, _esal, ará_,\n  { {0xf1bf1a01, 0x272a001d, 0x84070010, 0x00000000}},  //   brá_, _vùng_, _előí,\n  { {0x2fdf0035, 0x1d8a0025, 0xc5880082, 0x00000000}},  // [3820] ăuga_, ائري_, _lồn_,\n  { {0x272a0011, 0xdca61a02, 0x6b80014a, 0x00000000}},  //   _tùng_, сажи, _simg,\n  { {0xb53a0049, 0xa6ad0044, 0x25bf008a, 0x00000000}},  //   נגעש, _গানট, hrul_,\n  { {0x7981005b, 0x00000000, 0x00000000, 0x00000000}},  //   _ailw,   ,   ,\n  { {0x3ea01a03, 0x28c9006e, 0x213a0085, 0x00000000}},  //   mbit_, _राशि, _kmph_,\n  { {0x25bf1a04, 0xc5880011, 0x612b005d, 0x00000000}},  //   drul_, _bồn_, _güld,\n  { {0x93bc001a, 0x79811a05, 0x6ab70044, 0x00000000}},  //   nzăt, _dilw, _ইউরো,\n  { {0xbc1b00b6, 0x6aa902ae, 0xa3ab013d, 0x00000000}},  //   _גולש, _geef, गठन_,\n  { {0xe9a30080, 0xc6f70147, 0x79811a06, 0x00000000}},  //   _натп, сных_, _filw,\n  { {0xd90e02fd, 0x3f8210c6, 0x73d80745, 0x00000000}},  //   _سیب_, _liku_, адор_,\n  { {0x61ed1a07, 0x25bf0035, 0x3ea00058, 0x00000000}},  //   _ssal, arul_, kbit_,\n  { {0x25bf0035, 0x3f8216aa, 0x61ed1a08, 0x00000000}},  //   brul_, _niku_, _psal,\n  { {0xd7570025, 0x3ea00203, 0x25bf001a, 0x00000000}},  //   _النت_, dbit_, crul_,\n  { {0xecc7013d, 0xdcfc15ad, 0xf1bf1a09, 0x00000000}},  //   _लाइफ, _birč, rrá_,\n  { {0x7d150387, 0x653b009b, 0x3f821a0a, 0x00000000}},  //   _rozs, _תעוד, _biku_,\n  { {0x61ed1a0b, 0xdcfc0173, 0xa91d01ed, 0x00000000}},  //   _tsal, _dirč, _ružm,\n  { {0x9c870054, 0x61ed1a0c, 0x3f820065, 0x00000000}},  // [3830] مشاه, _usal, _diku_,\n  { {0x7bc5000b, 0xd13100a6, 0x30a7072b, 0x00000000}},  //   tuhu, _آمد_, _урив,\n  { {0x3ea00838, 0x00000000, 0x00000000, 0x00000000}},  //   bbit_,   ,   ,\n  { {0x7bc5000b, 0x79810007, 0xd9f90d51, 0x00000000}},  //   ruhu, _silw, инец_,\n  { {0x7bc50020, 0xdaa80088, 0xbddb0129, 0x00000000}},  //   suhu, свід_, _exèr,\n  { {0x2d99021e, 0x27951a0d, 0x7bc51a0e, 0x00000000}},  //   _itse_, ошир, puhu,\n  { {0x25a6041d, 0x612b014a, 0x6aa900bb, 0x00000000}},  //   _awol_, _güle, _teef,\n  { {0xf38900ad, 0x2d8b037e, 0x25bf001a, 0x00000000}},  //   _bản_, _kuce_, trul_,\n  { {0x2d8b05fa, 0xf3890011, 0xe616007c, 0x00000000}},  //   _juce_, _cản_, жды_,\n  { {0x45190401, 0x2d8301aa, 0xc5880011, 0x00000000}},  //   рция_, _jije_, _tồn_,\n  { {0x2d8b0207, 0x3eb900b9, 0x2d830065, 0x00000000}},  //   _luce_, _odst_, _mije_,\n  { {0x2d99006c, 0x00000000, 0x00000000, 0x00000000}},  //   _otse_,   ,   ,\n  { {0x3f8201b1, 0xfe7f1a0f, 0x10f6005e, 0x00000000}},  //   _riku_, _maïs_, оявя,\n  { {0x3f82000b, 0xe7dd0201, 0xf992019b, 0x00000000}},  //   _siku_, _महाप, ורך_,\n  { {0x3ea01a10, 0x612b0279, 0x3f820288, 0x00000000}},  //   tbit_, _bülb, _piku_,\n  { {0xf3890011, 0x6d4b009d, 0x1f6605b8, 0x00000000}},  //   _hảo_, égan, ікам,\n  { {0x3f82009f, 0x3ea0033b, 0x612b1a11, 0x00000000}},  // [3840] _viku_, rbit_, _süle,\n  { {0x2d830107, 0x2d8b001a, 0x3ea00276, 0x00000000}},  //   _cije_, _duce_, sbit_,\n  { {0x2d8307ed, 0x3f6a00aa, 0x3f8201c5, 0x00000000}},  //   _dije_, _вино_, _tiku_,\n  { {0x2d990197, 0x27f8000c, 0xbddb00d4, 0x00000000}},  //   _ftse_, _árni_, _exèq,\n  { {0xe8940b21, 0x93bc001a, 0x2d831a12, 0x00000000}},  //   паль, nzăr, _fije_,\n  { {0x6d89012d, 0x2d83000a, 0x25a6002b, 0x00000000}},  //   _džad, _gije_, _rwol_,\n  { {0xf38900ad, 0xb8f20164, 0xf72a0a1e, 0x00000000}},  //   _sản_, _वा_, иций_,\n  { {0x4b3400a2, 0xdb050210, 0xaad10061, 0x00000000}},  //   _عکاس, gshä, _हायक,\n  { {0xf389001d, 0x6aa20035, 0x7afd1a13, 0x00000000}},  //   _bảo_, mbof, _ósta,\n  { {0x61300002, 0x37e6007c, 0x01d00044, 0x00000000}},  //   _hälf, _мозг, িবাদ,\n  { {0xd7ef0054, 0x2cfb01ce, 0x00000000, 0x00000000}},  //   _لكل_, בליא,   ,\n  { {0x51870a30, 0xf3890011, 0x98bc0006, 0x00000000}},  //   жува, _tản_, tovė_,\n  { {0x3eab0061, 0x69c2040f, 0x00000000, 0x00000000}},  //   _rect_, nroe,   ,\n  { {0x3eab1290, 0x2d8b00b9, 0x98bc0006, 0x00000000}},  //   _sect_, _ruce_, rovė_,\n  { {0x69c200b5, 0x2d8b1a14, 0x656f009d, 0x00000000}},  //   hroe, _suce_, îche,\n  { {0x2d8301aa, 0x2bc90061, 0x2d8b009d, 0x00000000}},  //   _sije_, ांसा, _puce_,\n  { {0x2d830091, 0x395c0089, 0xa80201df, 0x00000000}},  // [3850] _pije_, kovs_, ğıyl,\n  { {0x2d8b0107, 0x459b0049, 0xf3890082, 0x00000000}},  //   _vuce_, יסמע, _xảo_,\n  { {0xd2510014, 0x2d830065, 0x69c2046a, 0x00000000}},  //   _زنگ_, _vije_, eroe,\n  { {0xf4130097, 0x69c20016, 0xa91d07e4, 0x00000000}},  //   ופע_, froe, _tužk,\n  { {0x69c20100, 0x2b4d0065, 0x2d831a15, 0x00000000}},  //   groe, _vjec_, _tije_,\n  { {0xa91d016e, 0x00000000, 0x00000000, 0x00000000}},  //   _kuži,   ,   ,\n  { {0xdb050210, 0xb886000c, 0x00000000, 0x00000000}},  //   tshä, _svíþ,   ,\n  { {0x69c20168, 0xa3bb013d, 0xf9890076, 0x00000000}},  //   broe, ेंस_, _هنري_,\n  { {0x3d000061, 0xa91d0062, 0x00000000, 0x00000000}},  //   राचे_, _luži,   ,\n  { {0xc588001d, 0xa8a70088, 0x799b0058, 0x00000000}},  //   _gồm_, _фрак, _ituw,\n  { {0x7bd70032, 0x00000000, 0x00000000, 0x00000000}},  //   ntxu,   ,   ,\n  { {0x26dd0061, 0x91e60098, 0xd6d90036, 0x00000000}},  //   _ubwo_, поме, biła_,\n  { {0x6130006c, 0x6d890027, 0xf3890082, 0x00000000}},  //   _jälg, _zľav, _tảo_,\n  { {0x867a00b6, 0x92ac0044, 0x6d4b009d, 0x00000000}},  //   _פרסו, খলে_, égal,\n  { {0x645c006c, 0xa06a16b6, 0x00000000, 0x00000000}},  //   ürit, сава_,   ,\n  { {0xa91d1434, 0x00000000, 0x00000000, 0x00000000}},  //   _duži,   ,   ,\n  { {0x6130010e, 0x00000000, 0x00000000, 0x00000000}},  // [3860] _nälg,   ,   ,\n  { {0x4d6301f9, 0xd00f00a1, 0xa91d050f, 0x00000000}},  //   екув, خلہ_, _fuži,\n  { {0x711b007b, 0xa7fc038c, 0x28d2013d, 0x00000000}},  //   _הויפ, _ayın, _साबि,\n  { {0x69c20129, 0x6d890107, 0x7d070087, 0x00000000}},  //   troe, _džab, _enjs,\n  { {0x61300039, 0xc333009b, 0x395c01c5, 0x00000000}},  //   _välf, עוד_, tovs_,\n  { {0x612b0004, 0x69c20129, 0x672b000c, 0x00000000}},  //   _küla, rroe, _algj,\n  { {0xfaa6012b, 0x8b66025a, 0xd6d90036, 0x00000000}},  //   _наво, _فارم, wiła_,\n  { {0xf389001d, 0x96ea0088, 0x499400a1, 0x00000000}},  //   _cảm_, ська_, _قیصر,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x79b700a0, 0x672b0146, 0x00000000, 0x00000000}},  //   _מלמד_, _elgj,   ,\n  { {0x61e41a16, 0x7ae000fa, 0xd6d900b4, 0x00000000}},  //   _apil, _kbmt, siła_,\n  { {0x6d5e0107, 0xa91d0aab, 0xd16d00e5, 0x00000000}},  //   hopa, _ruži, _fraț,\n  { {0x637f001e, 0xa91d19f0, 0xf67a0014, 0x00000000}},  //   _jūni, _suži, _امشب_,\n  { {0xf67b0104, 0x6d5e04eb, 0x661d1a17, 0x00000000}},  //   _האדמ, jopa, äske,\n  { {0x6d5e0211, 0x04db009b, 0x00000000, 0x00000000}},  //   dopa, _הקול,   ,\n  { {0x65680039, 0x657a0270, 0x7ae4010e, 0x00000000}},  //   lldh, lmth, õitl,\n  { {0xbf1d024c, 0x78830010, 0x3200000a, 0x00000000}},  // [3870] _नवीन_, _kívü, _griy_,\n  { {0xa91d037e, 0x6d5e01d6, 0xfd47007e, 0x00000000}},  //   _tuži, gopa, чэбн,\n  { {0xa022006c, 0x799b00bb, 0x00000000, 0x00000000}},  //   ööta, _stuw,   ,\n  { {0x7bd7002d, 0xceeb0123, 0x1b19007e, 0x00000000}},  //   rtxu, _اردن_, ўжды_,\n  { {0x6b9c00ca, 0xa2c0006e, 0x27310082, 0x00000000}},  //   _etrg, _वयस्, _háng_,\n  { {0x5d850167, 0x61300894, 0x00000000, 0x00000000}},  //   _زلزل, _välg,   ,\n  { {0x81e30044, 0x6e20006c, 0x612b006b, 0x00000000}},  //   নটি_, _ümbr, _xüla,\n  { {0x6604040d, 0x65680f7a, 0x27310082, 0x00000000}},  //   _šika, eldh, _máng_,\n  { {0x27311877, 0x06090088, 0x26cd00b4, 0x00000000}},  //   _láng_, інок_, rgeo_,\n  { {0x81e30044, 0x7aeb010f, 0xe91a00a1, 0x00000000}},  //   নটা_, legt, _ورلڈ_,\n  { {0x61e41a18, 0xa3a80061, 0x69d9010f, 0x00000000}},  //   _spil, खील_, ltwe,\n  { {0xe2970454, 0x6130006c, 0x59d1007d, 0x00000000}},  //   маю_, _mäle, _समार,\n  { {0x69d909d0, 0x6d5e0020, 0x7bc5010f, 0x00000000}},  //   ntwe, yopa, hrhu,\n  { {0x69d9054e, 0xafe6041f, 0x212c0051, 0x00000000}},  //   itwe, могл, ódh_,\n  { {0xe0d20014, 0x6d5e00b0, 0x00000000, 0x00000000}},  //   _یزد_, vopa,   ,\n  { {0xf412009b, 0x27310011, 0xdbc6006c, 0x00000000}},  //   _יפו_, _dáng_, _köög,\n  { {0x6d5e00b0, 0x6b8e086a, 0x3eb200e0, 0x00000000}},  // [3880] topa, _subg, rayt_,\n  { {0xa06a072b, 0x41760014, 0x28c9013d, 0x00000000}},  //   _мапа_, _تابس, _रागि,\n  { {0x6d5e1a19, 0x5fe2001c, 0x61300073, 0x00000000}},  //   ropa, _पहिल, _väld,\n  { {0x69d91515, 0x4a461a1a, 0x6d5e1a1b, 0x00000000}},  //   ftwe, мнев, sopa,\n  { {0xceb300b6, 0x6d5e0020, 0x637612c5, 0x00000000}},  //   _שיש_, popa, mánd,\n  { {0xfbc60152, 0x63761a1c, 0xf8061523, 0x00000000}},  //   _обго, lánd, дчин,\n  { {0xa91d0006, 0x6376004a, 0x99920036, 0x00000000}},  //   _nužu, cáng, ódła_,\n  { {0xc588001d, 0x6376008e, 0x69cb00e5, 0x00000000}},  //   _hồi_, nánd, buge,\n  { {0xbb4301fc, 0x69d90036, 0x6e241a1d, 0x00000000}},  //   _ретк, ctwe, nyib,\n  { {0x7d1c0085, 0x6376004a, 0x00000000, 0x00000000}},  //   _jors, hánd,   ,\n  { {0x7d1c016e, 0xd6cf00e3, 0xc5880082, 0x00000000}},  //   _mors, _ит_, _mồi_,\n  { {0x3d0503d7, 0x7d1c028c, 0x63761a1e, 0x00000000}},  //   _होने_, _lors, jánd,\n  { {0x2731001d, 0x7d1c0100, 0x660f0039, 0x00000000}},  //   _sáng_, _oors, äckt,\n  { {0x63880263, 0x7d1c0292, 0x61fd0030, 0x00000000}},  //   tènè, _nors, rvsl,\n  { {0x69cb010f, 0xc5880011, 0xdfd8005e, 0x00000000}},  //   zuge, _nồi_, мът_,\n  { {0x66020387, 0x6376008e, 0x33180025, 0x00000000}},  //   _krok, gánd, _يزيد_,\n  { {0x171b007b, 0x93780151, 0x6d58016c, 0x00000000}},  // [3890] קומע, _تصور_, čvan,\n  { {0x7d1c0198, 0xc5880011, 0x2d871a1f, 0x00000000}},  //   _cors, _bồi_, öne_,\n  { {0xe3b8027d, 0xd0110070, 0xe1ff12c5, 0x00000000}},  //   nsı_, _صلح_, lvó_,\n  { {0x0f2701fb, 0x6602022b, 0x6376008e, 0x00000000}},  //   _цьом, _orok, cánd,\n  { {0x7d1c004e, 0xdddd0046, 0x7aeb0007, 0x00000000}},  //   _fors, _wysł, regt,\n  { {0x69cb1a20, 0x7d1c1156, 0x69d90270, 0x00000000}},  //   ruge, _gors, rtwe,\n  { {0x69d90007, 0x6d45006a, 0x63761a21, 0x00000000}},  //   stwe, miha, láne,\n  { {0x6d450149, 0xf7710426, 0x660200ab, 0x00000000}},  //   liha, دات_, _brok,\n  { {0x2cb10010, 0x00000000, 0x00000000, 0x00000000}},  //   _kezd_,   ,   ,\n  { {0xf389001d, 0x6d45000c, 0xf9920104, 0x00000000}},  //   _hải_, niha, _ערב_,\n  { {0x776905d2, 0x6b890010, 0x93460147, 0x00000000}},  //   plex, _kieg, енне,\n  { {0x6f1d001c, 0x6d4506ba, 0x6602068f, 0x00000000}},  //   _nosc, hiha, _frok,\n  { {0x6b891a22, 0x6d45011c, 0xe5b4007e, 0x00000000}},  //   _mieg, kiha, _айчы,\n  { {0x6b89001f, 0x412a01fb, 0x6d4500e7, 0x00000000}},  //   _lieg, чого_, jiha,\n  { {0x63760211, 0xd4660e85, 0x6d4501a3, 0x00000000}},  //   tánd, _пише_, diha,\n  { {0xc588001d, 0x6b891a23, 0x6f1d0207, 0x00000000}},  //   _rồi_, _nieg, _cosc,\n  { {0x63761a24, 0x612b006c, 0x6f1d16b8, 0x00000000}},  // [38a0] ránd, _küll, _dosc,\n  { {0x1016007e, 0x98a70006, 0x6376008e, 0x00000000}},  //   _зьмя, minė_, sánd,\n  { {0x7d1c001f, 0x6f1d0c42, 0x6b891a25, 0x00000000}},  //   _vors, _fosc, _bieg,\n  { {0x28d20201, 0x6b89008e, 0xb6050087, 0x00000000}},  //   _साहि, _cieg, _košč,\n  { {0x6b891a26, 0x7d1c0239, 0xf38a0011, 0x00000000}},  //   _dieg, _tors, _cải_,\n  { {0x442511d1, 0xf38a0082, 0xc5880082, 0x00000000}},  //   kyl_, _dải_, _tồi_,\n  { {0xb6050087, 0x00000000, 0x00000000, 0x00000000}},  //   _lošč,   ,   ,\n  { {0x442515d6, 0xf38a0082, 0x6b8901f3, 0x00000000}},  //   dyl_, _fải_, _gieg,\n  { {0x79880066, 0x656100c4, 0x2d8a1a27, 0x00000000}},  //   _tidw, folh, _kibe_,\n  { {0x645d005f, 0x6b891a28, 0xef210089, 0x00000000}},  //   əsiz, _zieg, _zaļā_,\n  { {0x5335072b, 0x290c0145, 0x44250544, 0x00000000}},  //   вент, _inda_, gyl_,\n  { {0x6602016e, 0x291e18be, 0x6d4500e7, 0x00000000}},  //   _trok, _hota_, ziha,\n  { {0x291e04fa, 0x8c240055, 0x612b0fb5, 0x00000000}},  //   _kota_, _যেমন_, _füll,\n  { {0x656102d5, 0x442500b9, 0x291e00b0, 0x00000000}},  //   colh, byl_, _jota_,\n  { {0xb4be0201, 0xf2b00055, 0x291e002d, 0x00000000}},  //   ेली_, _কারণ, _mota_,\n  { {0x6d450009, 0x628d1a29, 0x63761a2a, 0x00000000}},  //   wiha, _ugao, táne,\n  { {0x6d450475, 0x290c006b, 0x6b8900dd, 0x00000000}},  // [38b0] tiha, _onda_, _rieg,\n  { {0x6b891a2b, 0x63761a2c, 0x612b006c, 0x00000000}},  //   _sieg, ráne, _külm,\n  { {0x6b89001e, 0x63ba129a, 0x6f1d0207, 0x00000000}},  //   _pieg, nstn, _tosc,\n  { {0x290c020c, 0x6d450127, 0x6b8901d5, 0x00000000}},  //   _anda_, siha, _qieg,\n  { {0x291e0307, 0x6b89001e, 0x6d45011c, 0x00000000}},  //   _bota_, _vieg, piha,\n  { {0x291e0bc0, 0xf38a0011, 0x6b8901de, 0x00000000}},  //   _cota_, _vải_, _wieg,\n  { {0x6b890f68, 0x291e07e8, 0x63ba1a2d, 0x00000000}},  //   _tieg, _dota_, jstn,\n  { {0x3d050201, 0x290c00cd, 0x0609012b, 0x00000000}},  //   _होते_, _enda_, дник_,\n  { {0x4425018e, 0xceb400a3, 0x3f8b0035, 0x00000000}},  //   wyl_, ניץ_, _micu_,\n  { {0x7afb1a2e, 0x69db001c, 0x44250007, 0x00000000}},  //   _haut, _ique, tyl_,\n  { {0x394702d0, 0x7afb021e, 0x645800f6, 0x00000000}},  //   mins_, _kaut, _cxvi,\n  { {0x7afb1a2f, 0x98a7010a, 0x39471a30, 0x00000000}},  //   _jaut, tinė_, lins_,\n  { {0x7afb0020, 0x44250403, 0x291e000a, 0x00000000}},  //   _maut, syl_, _yota_,\n  { {0x3dc9002b, 0x3947153c, 0x66060018, 0x00000000}},  //   draw_, nins_, ække,\n  { {0xa0670216, 0x2d8a0091, 0x612b1a31, 0x00000000}},  //   вара_, _ribe_, _gülm,\n  { {0x7afb00b0, 0x69db00f6, 0xe4560049, 0x00000000}},  //   _naut, _oque, _שיקט_,\n  { {0x3dc90719, 0x2d8a18c8, 0xf1bf0010, 0x00000000}},  // [38c0] graw_, _pibe_, lyán_,\n  { {0xad9b1a32, 0x39471a33, 0x7afb00e0, 0x00000000}},  //   _trún, jins_, _aaut,\n  { {0x69db1a34, 0x3ea90039, 0x39471a35, 0x00000000}},  //   _aque, bbat_, dins_,\n  { {0x291e1a36, 0x3dc91a37, 0x7afb0585, 0x00000000}},  //   _sota_, braw_, _caut,\n  { {0x7fe2006e, 0x2b460051, 0x39470def, 0x00000000}},  //   _पहुँ, rioc_, fins_,\n  { {0xdca30242, 0x394700ab, 0x3f8b0ce0, 0x00000000}},  //   _вари, gins_, _zicu_,\n  { {0x6b660256, 0x7afb00f4, 0x69db03e2, 0x00000000}},  //   _аква, _faut, _eque,\n  { {0x8a0600aa, 0x7afb010a, 0xb6f401fc, 0x00000000}},  //   _избе, _gaut, узиј,\n  { {0x291e1a38, 0xc6f70783, 0x7ae20203, 0x00000000}},  //   _tota_, тных_, mfot,\n  { {0xb4be0201, 0x394700f4, 0x3ea9093e, 0x00000000}},  //   ेले_, cins_, zbat_,\n  { {0x3cfa03d7, 0x332000d4, 0x7afb00d2, 0x00000000}},  //   _उसने_, _boix_, _yaut,\n  { {0x7ae2054e, 0x46a6005e, 0x63760010, 0x00000000}},  //   nfot, _радв, vánc,\n  { {0x6d58016c, 0x201e1a39, 0x63ba00ea, 0x00000000}},  //   čvaj, ätin_, sstn,\n  { {0x3f8b016c, 0x7bde1a3a, 0x7ae20035, 0x00000000}},  //   _sicu_, ktpu, hfot,\n  { {0x5ea40055, 0x332000d4, 0xc5790049, 0x00000000}},  //   _ওয়ে, _foix_, _אָקט,\n  { {0x394700b5, 0x637600b9, 0x332000f6, 0x00000000}},  //   zins_, ránc, _goix_,\n  { {0x3ea9001a, 0x7afb00b0, 0x7db40025, 0x00000000}},  // [38d0] rbat_, _raut, لصلا,\n  { {0x7afb1a3b, 0x612b0180, 0x63761a3c, 0x00000000}},  //   _saut, _mülk, mána,\n  { {0x7afb0127, 0x39471a3d, 0x63761a3e, 0x00000000}},  //   _paut, vins_, lána,\n  { {0x5a35026b, 0x39470462, 0x629d0010, 0x00000000}},  //   лнет, wins_, ncso,\n  { {0x39470129, 0xa2d6006e, 0x7afb009d, 0x00000000}},  //   tins_, _भास्, _vaut,\n  { {0x4cad0044, 0xe8f80451, 0x00000000, 0x00000000}},  //   _চাকু, клі_,   ,\n  { {0x7afb0ebc, 0x3947000c, 0xf74500ed, 0x00000000}},  //   _taut, rins_, леко,\n  { {0x3947009f, 0x98bc001a, 0x212108a8, 0x00000000}},  //   sins_, tivă_, _lohh_,\n  { {0xd4d9008b, 0x4a5501e1, 0x3947009d, 0x00000000}},  //   ньні_, _скас, pins_,\n  { {0x27310399, 0xdb1c000a, 0x63761a3f, 0x00000000}},  //   _dána_, _avrè, dána,\n  { {0x6b950ea1, 0x98bc0035, 0xa34a01ee, 0x00000000}},  //   _juzg, sivă_, езна_,\n  { {0x257900f4, 0x69cb00d9, 0x11d601e1, 0x00000000}},  //   dèle_, orge, лігр,\n  { {0x332000f4, 0x63760d6a, 0x39990173, 0x00000000}},  //   _voix_, gána, _jès_,\n  { {0xb60200b9, 0x39991a40, 0x69cb0048, 0x00000000}},  //   čátk, _mès_, irge,\n  { {0x39991a41, 0x3d170164, 0x7ae20240, 0x00000000}},  //   _lès_, नाने_, yfot,\n  { {0x6d890107, 0x69c4006e, 0xad9b000c, 0x00000000}},  //   _džam, _रिली, _trúl,\n  { {0xc69201ce, 0x80b30044, 0x7ae20190, 0x00000000}},  // [38e0] מאן_, _জার্, vfot,\n  { {0xc8d2006e, 0x23b7013d, 0xfca91a42, 0x00000000}},  //   _साइट, _आबाद, نامو_,\n  { {0x80aa01f5, 0xa3bb006e, 0x7ae216ec, 0x00000000}},  //   _ज्ये, ेंट_, tfot,\n  { {0x2ca7038c, 0xeafa00a1, 0xda7a007c, 0x00000000}},  //   ında_, عرات_, нял_,\n  { {0x82d7007b, 0x59f80741, 0xb17b1861, 0x00000000}},  //   רונג_, теля_, ståe,\n  { {0x399900f4, 0x7ae200bb, 0x7bde016c, 0x00000000}},  //   _dès_, sfot, ptpu,\n  { {0xe3a70014, 0xd90d0167, 0x69cb046a, 0x00000000}},  //   _در_, ظیم_, arge,\n  { {0xb8cb007d, 0x3999147f, 0x78b80095, 0x00000000}},  //   _क्_, _fès_, savv,\n  { {0xa5340256, 0x290f0051, 0x39990173, 0x00000000}},  //   инич, álaí_, _gès_,\n  { {0x6b8200bb, 0x5983007c, 0x46a40309, 0x00000000}},  //   lmog, _глуб, _ग्रह,\n  { {0xb8930025, 0xd6c400d3, 0x245801fb, 0x00000000}},  //   _المع, _نمای, тань_,\n  { {0x80d7024c, 0x84330088, 0x63760d6a, 0x00000000}},  //   _बाहे, снює, tána,\n  { {0x96b90245, 0x6d890107, 0x80de0044, 0x00000000}},  //   _руху_, _džaj, য়ন্,\n  { {0xe3af00a1, 0x63761a43, 0x257900f4, 0x00000000}},  //   _کرو_, rána, tèle_,\n  { {0x629d0047, 0x63760047, 0xc8d201f5, 0x00000000}},  //   pcso, sána, _साईट,\n  { {0x61300039, 0x00000000, 0x00000000, 0x00000000}},  //   _häll,   ,   ,\n  { {0x61300039, 0x612b006c, 0x672200fa, 0x00000000}},  // [38f0] _käll, _lüli, _mooj,\n  { {0x627c00b6, 0x613003b6, 0x399901aa, 0x00000000}},  //   _אנחנ, _jäll, _rès_,\n  { {0xbc070642, 0x768b014a, 0x69c000ea, 0x00000000}},  //   ычай, _köyü, _avme,\n  { {0x612b006b, 0x32090be1, 0x39990173, 0x00000000}},  //   _sülh, _kray_, _pès_,\n  { {0x99d70054, 0xf9c716a9, 0x69cb0602, 0x00000000}},  //   اتصا, ущен, urge,\n  { {0xa4f30061, 0xf990067a, 0x6b820026, 0x00000000}},  //   _असेच_, سبه_, amog,\n  { {0xd8b80076, 0x00000000, 0x00000000, 0x00000000}},  //   ادها_,   ,   ,\n  { {0x399901aa, 0x61ed1a44, 0x637d1a45, 0x00000000}},  //   _tès_, _opal, nénd,\n  { {0x857900ed, 0x7d120010, 0x00000000, 0x00000000}},  //   ксот_, _újsá,   ,\n  { {0x63520089, 0x6606000c, 0x00000000, 0x00000000}},  //   māni, ækka,   ,\n  { {0x768b005f, 0x61ed1a46, 0x99840025, 0x00000000}},  //   _böyü, _apal, _اللو,\n  { {0xe28609ae, 0x60c50051, 0xb60200b9, 0x00000000}},  //   илни, _adhm, čárk,\n  { {0x7ae9008d, 0x61300a35, 0x768b006b, 0x00000000}},  //   _mbet, _fäll, _döyü,\n  { {0x61300073, 0x6d891a47, 0xdb05009d, 0x00000000}},  //   _gäll, _džak, sphè,\n  { {0xa06a01c0, 0x602301ee, 0x63520089, 0x00000000}},  //   тава_, одра, hāni,\n  { {0x75230802, 0x6d470258, 0x7ae90288, 0x00000000}},  //   _honz, _amja, _nbet,\n  { {0x25bf001a, 0x63760010, 0x7dc6007a, 0x00000000}},  // [3900] nsul_, láno, شقان,\n  { {0x7ae91a48, 0x127b0049, 0x91bb0097, 0x00000000}},  //   _abet, _באפע, _שמיי,\n  { {0xc5f202d2, 0xf536007b, 0x75230207, 0x00000000}},  //   _अन्य_, סטער_, _monz,\n  { {0x25bf0004, 0x79a6005e, 0x305b0104, 0x00000000}},  //   ksul_, арке, _ידיד,\n  { {0x6b8200b5, 0x68000010, 0x00000000, 0x00000000}},  //   rmog, kájá,   ,\n  { {0x6722006c, 0x6b8200bb, 0x637d0919, 0x00000000}},  //   _sooj, smog, méne,\n  { {0x02b60061, 0xc6230044, 0xd7fa0888, 0x00000000}},  //   _अजून, _বেলা_, тул_,\n  { {0x61301a49, 0xab2704cf, 0x3ea001a3, 0x00000000}},  //   _säll, _коса_, ncit_,\n  { {0x66e20309, 0x38c800a1, 0x94aa0478, 0x00000000}},  //   क्षक_, _ماضی_, ктна_,\n  { {0xdb0e00ea, 0x612b1a4a, 0x96a6007d, 0x00000000}},  //   _avbø, _tüli, _ट्रॉ,\n  { {0x61ed010a, 0xa4140055, 0x7523059a, 0x00000000}},  //   _spal, ান্য_, _donz,\n  { {0x32090133, 0x3dc00058, 0x00000000, 0x00000000}},  //   _pray_, ksiw_,   ,\n  { {0x6130021e, 0x15a7005e, 0x75230638, 0x00000000}},  //   _täll, _къщи_, _fonz,\n  { {0x75230211, 0xf1bf0051, 0xf6690014, 0x00000000}},  //   _gonz, rsá_, _صحنه_,\n  { {0xf1bf0010, 0xdb05009d, 0x415400e2, 0x00000000}},  //   ssá_, sphé, цврс,\n  { {0x32090e9e, 0x61300103, 0x3f8f000c, 0x00000000}},  //   _tray_, _jälj, ögu_,\n  { {0x61ed1a4b, 0x442c018e, 0x637d076d, 0x00000000}},  // [3910] _upal, lyd_, géne,\n  { {0xeca7025f, 0xdca7007e, 0x00000000, 0x00000000}},  //   рјан, ршап,   ,\n  { {0x443e1582, 0x656f009d, 0x442c005b, 0x00000000}},  //   nzt_, îchi, nyd_,\n  { {0x63760010, 0x63520089, 0x65680020, 0x00000000}},  //   jánl, tāni, hodh,\n  { {0x98a50081, 0x442c0016, 0x2cb80056, 0x00000000}},  //   биле, hyd_, _ferd_,\n  { {0x63a40428, 0x3eb91a4c, 0x9f5a01aa, 0x00000000}},  //   _činn, _hest_, _aspè_,\n  { {0x013800b6, 0x2d990030, 0x75230197, 0x00000000}},  //   שרות_, _huse_, _ronz,\n  { {0x3eb90df0, 0x442c018e, 0x0058034e, 0x00000000}},  //   _jest_, dyd_, ישות_,\n  { {0x6d570061, 0x6e2d016a, 0x75230197, 0x00000000}},  //   onxa, nyab, _ponz,\n  { {0xf9900137, 0x442c018e, 0xd7e701fb, 0x00000000}},  //   _قبل_, fyd_, _відо,\n  { {0x2d910381, 0x3cfa013d, 0x3eb90129, 0x00000000}},  //   _mize_, _उससे_, _oest_,\n  { {0xe6950054, 0x63760027, 0x25bf008a, 0x00000000}},  //   _الإد, ráno, psul_,\n  { {0x7f4d009d, 0xa69600b3, 0x2d990023, 0x00000000}},  //   diaq, _הכנה_, _nuse_,\n  { {0xa0a3005e, 0x753a05c6, 0x2eeb0009, 0x00000000}},  //   зард, chtz, _abcf_,\n  { {0x3eb90038, 0x251a00b6, 0x61431a4d, 0x00000000}},  //   _best_, _תוצא, чера,\n  { {0xdd920054, 0x637d0010, 0x2d910288, 0x00000000}},  //   كور_, téne, _aize_,\n  { {0x6130021e, 0x2d91011f, 0x2cb81a4e, 0x00000000}},  // [3920] _jälk, _bize_, _perd_,\n  { {0x3eb90004, 0x2d99037e, 0x98a70006, 0x00000000}},  //   _eest_, _duse_, dinį_,\n  { {0x4176026c, 0x3eb904fb, 0x2cb81a4f, 0x00000000}},  //   _پاکس, _fest_, _verd_,\n  { {0x2cb817cc, 0x2ca1157d, 0x3eb91a50, 0x00000000}},  //   _werd_, achd_, _gest_,\n  { {0x7c3e0010, 0x7769008e, 0x2d910173, 0x00000000}},  //   szpr, doex, _fize_,\n  { {0x61300073, 0x3eb91a51, 0x3f9a04be, 0x00000000}},  //   _sälj, _zest_, _kupu_,\n  { {0xb9000754, 0xa7fc005d, 0x63a40142, 0x00000000}},  //   _था_, _ayır, _čino,\n  { {0xcb6a008b, 0x9634003b, 0x3f9a012d, 0x00000000}},  //   _сабе_, жниц, _mupu_,\n  { {0x61300dac, 0x442c018e, 0x612b014a, 0x00000000}},  //   _välj, wyd_, _kült,\n  { {0x443e001f, 0x442c0343, 0x69c20022, 0x00000000}},  //   tzt_, tyd_, msoe,\n  { {0x78ba0089, 0x65681a52, 0x00000000, 0x00000000}},  //   _ietv, rodh,   ,\n  { {0x442c1194, 0x443e010f, 0x6aa20197, 0x00000000}},  //   ryd_, rzt_, ncof,\n  { {0x66760151, 0x443e1a53, 0x69c20007, 0x00000000}},  //   _ادار, szt_, nsoe,\n  { {0x3eb90004, 0x70d30061, 0x2d991717, 0x00000000}},  //   _sest_, तलेल, _ruse_,\n  { {0x3eb90010, 0xdbf10224, 0x889b0049, 0x00000000}},  //   _pest_, _příj, רבלי,\n  { {0x2d910541, 0x6e2d005f, 0xbebb01c3, 0x00000000}},  //   _size_, tyab, _goël,\n  { {0x3eb90056, 0x612b014a, 0x7f4d0068, 0x00000000}},  // [3930] _vest_, _bült, riaq,\n  { {0x78ba0030, 0x3eb900ab, 0x6f04004a, 0x00000000}},  //   _netv, _west_, adic,\n  { {0x2d9109e5, 0x7bf900e2, 0x28d200e8, 0x00000000}},  //   _vize_, рнер_, _साजि,\n  { {0x98a70006, 0x2d991a54, 0x69c201c3, 0x00000000}},  //   tinį_, _tuse_, fsoe,\n  { {0x7ccb0089, 0x78ba1992, 0x660d0066, 0x00000000}},  //   tērē, _betv, _ġako,\n  { {0x527c007b, 0x660d0b4d, 0x612b1a55, 0x00000000}},  //   אנדא, _šako, _gült,\n  { {0xb8f10061, 0xe8090309, 0x98bc013e, 0x00000000}},  //   _वय_, विधा_, livě_,\n  { {0x612b0010, 0x661b002d, 0xdb230c43, 0x00000000}},  //   _küls, txuk, öräl,\n  { {0x673b1a56, 0x7769004a, 0x78ba1a57, 0x00000000}},  //   rhuj, roex, _fetv,\n  { {0x61300039, 0x6f0402db, 0x673b00e7, 0x00000000}},  //   _välk, zdic, shuj,\n  { {0x09be0044, 0xe85501f7, 0xd77400a1, 0x00000000}},  //   _উৎপা, _بناد, _کالع,\n  { {0x3f9a0182, 0x799b00e7, 0x65950f4e, 0x00000000}},  //   _rupu_, _kuuw, _даду,\n  { {0x4ade006e, 0xbebb0007, 0x3f9a1a58, 0x00000000}},  //   फ्टव, _voël, _supu_,\n  { {0x25ad0292, 0xb17b0073, 0x3f9a02c8, 0x00000000}},  //   mpel_, stån, _pupu_,\n  { {0xa2e61a59, 0x66090056, 0x6abb009d, 0x00000000}},  //   _дойд, lvek, _oeuf,\n  { {0x6abb1119, 0x6f0406c2, 0x69c20016, 0x00000000}},  //   _neuf, udic, ysoe,\n  { {0xfd4a003b, 0x25ad0022, 0x00000000, 0x00000000}},  // [3940] азак_, npel_,   ,\n  { {0x637d1a5a, 0xbd8301e1, 0x3f9a0020, 0x00000000}},  //   ména, дгук, _tupu_,\n  { {0x61e605d5, 0x78ba0146, 0xb53a0049, 0x00000000}},  //   ltkl, _retv, סגעש,\n  { {0xfa250044, 0x78ba1a5b, 0x69c20f12, 0x00000000}},  //   _মেইল_, _setv, tsoe,\n  { {0x394e028c, 0x2a60006b, 0x2fd81332, 0x00000000}},  //   tifs_, çib_, lurg_,\n  { {0x69c20343, 0x27fe0022, 0x6d5c1a5c, 0x00000000}},  //   rsoe, _pstn_, _ujra,\n  { {0x394e00f4, 0x78ba1a5d, 0x25ad071b, 0x00000000}},  //   rifs_, _vetv, epel_,\n  { {0x64410061, 0x61e60039, 0xf0930104, 0x00000000}},  //   dzli, ktkl, ונו_,\n  { {0x99890bf8, 0x5b2100a1, 0x6b9c0c06, 0x00000000}},  //   šaš_, _سہول, _hurg,\n  { {0x2bd1007d, 0x27310082, 0x6b9c0560, 0x00000000}},  //   _हिमा, _lánh_, _kurg,\n  { {0x66e619ec, 0x6b9c0006, 0x7d7b0049, 0x00000000}},  //   _можа, _jurg, שריג,\n  { {0x6b9c002d, 0xe3af0167, 0xad9b0b22, 0x00000000}},  //   _murg, کری_, _krút,\n  { {0xe4da0014, 0x6b9c0288, 0x637d0068, 0x00000000}},  //   _نوشت_, _lurg, géna,\n  { {0x3cf6013d, 0xa3b5007d, 0x00000000, 0x00000000}},  //   ीयों_, _चौक_,   ,\n  { {0x27310011, 0x2f19007c, 0x6b9c006c, 0x00000000}},  //   _bánh_, бовь_, _nurg,\n  { {0x27310011, 0x2fcd0091, 0x394c00f6, 0x00000000}},  //   _cánh_, čeg_, _lmds_,\n  { {0xd251004b, 0x3dd20016, 0xdddd0089, 0x00000000}},  // [3950] _سند_, gryw_, _izsū,\n  { {0x6b9c07af, 0xdfdb0265, 0x2fd8010f, 0x00000000}},  //   _burg, _към_, burg_,\n  { {0x92dd0055, 0x6b9c1a5e, 0xdc980088, 0x00000000}},  //   ড়ী_, _curg, івці_,\n  { {0x27310011, 0xad9b0010, 0x6b9c0095, 0x00000000}},  //   _gánh_, _csúc, _durg,\n  { {0x6d5811af, 0x7e7d0089, 0xe9d80451, 0x00000000}},  //   čvar, _uzsp, жкі_,\n  { {0x3f8900d4, 0x68f8006c, 0x66090056, 0x00000000}},  //   lmau_, gevd, vvek,\n  { {0x6b9c00c4, 0x6abb01a2, 0x00000000, 0x00000000}},  //   _gurg, _teuf,   ,\n  { {0x6130003c, 0x63760428, 0x96230055, 0x00000000}},  //   _väli, ránk, _বেগম_,\n  { {0x7bc51864, 0x6b9c1424, 0x00000000, 0x00000000}},  //   lshu, _zurg,   ,\n  { {0x6441001f, 0x637610fa, 0x69d90eb0, 0x00000000}},  //   tzli, máni, muwe,\n  { {0x69d906f6, 0x25ad0aa4, 0x660900ea, 0x00000000}},  //   luwe, spel_, svek,\n  { {0x2905022b, 0x64410d9a, 0x332900bb, 0x00000000}},  //   _hala_, rzli, _coax_,\n  { {0x29050643, 0x7bc501d6, 0x2d8300b0, 0x00000000}},  //   _kala_, hshu, _ohje_,\n  { {0x29071a5f, 0x27310011, 0x61e601d6, 0x00000000}},  //   ndna_, _sánh_, rtkl,\n  { {0x29050027, 0xb4d701f5, 0x3eb201d6, 0x00000000}},  //   _mala_, िली_, tbyt_,\n  { {0x2fd80209, 0x69d91a60, 0x7bc501bf, 0x00000000}},  //   rurg_, kuwe, dshu,\n  { {0x0e6301e0, 0x6b9c0053, 0x68f8006b, 0x00000000}},  // [3960] ектн, _surg, yevd,\n  { {0xee37019d, 0x69d907a5, 0x6b9c016e, 0x00000000}},  //   чну_, duwe, _purg,\n  { {0x309b009b, 0x69d900b5, 0x27310082, 0x00000000}},  //   _לשימ, euwe, _tánh_,\n  { {0x23a10036, 0x29071a61, 0x290500e0, 0x00000000}},  //   _mój_, edna_, _aala_,\n  { {0x63761526, 0x29051a62, 0x7bc51a63, 0x00000000}},  //   gáni, _bala_, ashu,\n  { {0x6b9c14cc, 0x29fd0027, 0x6f0601a3, 0x00000000}},  //   _turg, _dňa_, _hakc,\n  { {0x6d4e1a64, 0x7c650d0b, 0x6b9c01d6, 0x00000000}},  //   _imba, _قافل, _uurg,\n  { {0x290700d4, 0xceb4006b, 0xa614005e, 0x00000000}},  //   adna_, nbə_, дмич,\n  { {0x20dc024c, 0x69d9128d, 0x29050181, 0x00000000}},  //   _बांध, cuwe, _fala_,\n  { {0x29070045, 0xaa3b009b, 0x00000000, 0x00000000}},  //   cdna_, _התמח,   ,\n  { {0xd6cf0121, 0x14dd0204, 0xa4380245, 0x00000000}},  //   _пт_, _मारण, ізму_,\n  { {0x29050968, 0x66e6003b, 0x6f061a65, 0x00000000}},  //   _zala_, _хода, _nakc,\n  { {0x51871a66, 0x6d4e01a3, 0xdb1e013e, 0x00000000}},  //   зува, _omba, jspí,\n  { {0x92dd0055, 0x66021a67, 0xf617034e, 0x00000000}},  //   ড়ে_, _isok, _מחדש_,\n  { {0x6f06013f, 0x69d901a2, 0x00000000, 0x00000000}},  //   _bakc, zuwe,   ,\n  { {0x6d4e0be3, 0x5f94003b, 0x637d1a68, 0x00000000}},  //   _amba, еист, méno,\n  { {0x3f890016, 0x7bc501c3, 0x6f0600d9, 0x00000000}},  // [3970] rmau_, wshu, _dakc,\n  { {0x7bc500bb, 0x00000000, 0x00000000, 0x00000000}},  //   tshu,   ,   ,\n  { {0xd25102fd, 0x629a00b9, 0x3d0c0061, 0x00000000}},  //   _سنگ_, ětov, _डोळे_,\n  { {0x63761a69, 0x6d4e0781, 0x6602002d, 0x00000000}},  //   táni, _emba, _osok,\n  { {0x2905006a, 0x7bc503f1, 0xdd910879, 0x00000000}},  //   _pala_, sshu, _لوح_,\n  { {0x63761a6a, 0x69d91a6b, 0x29050312, 0x00000000}},  //   ráni, ruwe, _qala_,\n  { {0xccf20104, 0x66020023, 0x69d90058, 0x00000000}},  //   _שכל_, _asok, suwe,\n  { {0x290511ad, 0x05a901fb, 0xeab30025, 0x00000000}},  //   _wala_, овий_, _سعر_,\n  { {0x29050635, 0xa3df0061, 0x7d071a6c, 0x00000000}},  //   _tala_, धून_, _kajs,\n  { {0xb4d70201, 0x53c902b8, 0x629b0006, 0x00000000}},  //   िले_, огом_, žuol,\n  { {0x7d0704a9, 0xa3d402fb, 0x66020281, 0x00000000}},  //   _majs, िंग_, _esok,\n  { {0x4cc70044, 0x7d071a6d, 0x00000000, 0x00000000}},  //   র্চু, _lajs,   ,\n  { {0xe56e0265, 0xceb4006b, 0x6f060087, 0x00000000}},  //   _аз_, vbə_, _rakc,\n  { {0x659401fc, 0x00000000, 0x00000000, 0x00000000}},  //   _зачу,   ,   ,\n  { {0xdee60a27, 0x10a31662, 0xd0070175, 0x00000000}},  //   мови, тисн, мере_,\n  { {0x672b0762, 0x26df0020, 0x6aad004a, 0x00000000}},  //   _jogj, nguo_, ñafl,\n  { {0x6f06145e, 0x63a40091, 0x7d0700f8, 0x00000000}},  // [3980] _vakc, _čini, _bajs,\n  { {0x672b1a6e, 0x1e83007e, 0x00000000, 0x00000000}},  //   _logj, тлум,   ,\n  { {0x711b0049, 0xa7fc013f, 0xfce30256, 0x00000000}},  //   _וויפ, _axın, тохо,\n  { {0x3cfa03d7, 0x28e00061, 0xdbc7000c, 0x00000000}},  //   _उसके_, _नाहि, _vöðv,\n  { {0x6368005d, 0xd946007c, 0x61300039, 0x00000000}},  //   mınd, меди, _fält,\n  { {0x6368047f, 0x6aa90061, 0x6d4e0d65, 0x00000000}},  //   lınd, _efef, _umba,\n  { {0x61300073, 0x31570049, 0x6aa90016, 0x00000000}},  //   _häls, ויסן_, _ffef,\n  { {0x636801f6, 0x85a600ed, 0x2d9800ab, 0x00000000}},  //   nınd, мјод, _hire_,\n  { {0x63ad016c, 0x672b0023, 0x2d980145, 0x00000000}},  //   _čana, _dogj, _kire_,\n  { {0x63681a6f, 0x2d980173, 0x00000000, 0x00000000}},  //   hınd, _jire_,   ,\n  { {0x2d981a70, 0x443803b5, 0x99800006, 0x00000000}},  //   _mire_, ár_, šių_,\n  { {0x2d98028c, 0x2bd1006e, 0x66020058, 0x00000000}},  //   _lire_, _हिसा, _tsok,\n  { {0x26c41a71, 0x6368005a, 0xd3790091, 0x00000000}},  //   mamo_, dınd, juće_,\n  { {0x2d98022b, 0x26c40af3, 0xe44f02fd, 0x00000000}},  //   _nire_, lamo_, اضی_,\n  { {0xa3cb0754, 0x6368047f, 0x4fc4007e, 0x00000000}},  //   _लिए_, fınd, кста,\n  { {0x26c409e3, 0x2d9810c9, 0x660d1a72, 0x00000000}},  //   namo_, _aire_, _šaki,\n  { {0x8af7005f, 0xd3790119, 0x7d070d6b, 0x00000000}},  // [3990] şəkk, guće_, _pajs,\n  { {0x26c4050f, 0x2d98009d, 0x6d5e0146, 0x00000000}},  //   hamo_, _cire_, gnpa,\n  { {0x2d980e8d, 0x8af90256, 0x61300d20, 0x00000000}},  //   _dire_, знес_, _vält,\n  { {0x26c40059, 0xf38a0011, 0x2d981a73, 0x00000000}},  //   jamo_, _bảy_, _eire_,\n  { {0x28e0001c, 0xad9b002a, 0x3ea900ea, 0x00000000}},  //   _नाशि, _grúp, mcat_,\n  { {0xde16007b, 0x63761a74, 0x3ea91a75, 0x00000000}},  //   _אַלץ_, lánt, lcat_,\n  { {0xe73901e1, 0xb90701f5, 0x3f9900e7, 0x00000000}},  //   зей_, _भा_, _kisu_,\n  { {0x3ea9145d, 0x26c40059, 0x9ac700a1, 0x00000000}},  //   ncat_, gamo_, _آگاہ_,\n  { {0x29d5031d, 0x3f99016e, 0x00000000, 0x00000000}},  //   _سياس, _misu_,   ,\n  { {0x142501e0, 0x9a84004c, 0x6368005d, 0x00000000}},  //   едом, _русл, zınd,\n  { {0x63680279, 0x61f61a76, 0x26c40247, 0x00000000}},  //   yınd, _spyl, bamo_,\n  { {0x3f990119, 0x26c4037e, 0x6368006b, 0x00000000}},  //   _nisu_, camo_, xınd,\n  { {0xf38a0011, 0xb606000c, 0x00000000, 0x00000000}},  //   _xảy_, rráð,   ,\n  { {0x25d60049, 0x6e2004bd, 0xb606000c, 0x00000000}},  //   _נוצן_, _àmbi, sráð,\n  { {0x6368038c, 0x2d9800f4, 0xe465010e, 0x00000000}},  //   tınd, _rire_, ööde_,\n  { {0x2d980107, 0x539a009b, 0x6d5e1a77, 0x00000000}},  //   _sire_, _ציפו, wnpa,\n  { {0x636801f6, 0x2d9800f4, 0x0d86007c, 0x00000000}},  // [39a0] rınd, _pire_, елан,\n  { {0x6368038c, 0x26c40020, 0x61300510, 0x00000000}},  //   sınd, zamo_, _väls,\n  { {0xf536007b, 0x2d9801aa, 0xeb9a022a, 0x00000000}},  //   עטער_, _vire_, чие_,\n  { {0x3ea9001c, 0x2057007b, 0x2d9800ab, 0x00000000}},  //   ccat_, _טייל_, _wire_,\n  { {0x26c40091, 0x2d98060b, 0x00000000, 0x00000000}},  //   vamo_, _tire_,   ,\n  { {0x26c40020, 0xdbc7006c, 0x26cf01c3, 0x00000000}},  //   wamo_, _rööv, _adgo_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7bde0085, 0x62840026, 0xf4150044, 0x00000000}},  //   mupu, _ozio, াহার_,\n  { {0x26c40340, 0xbb4300a5, 0x7bde19ae, 0x00000000}},  //   ramo_, _сетк, lupu,\n  { {0x26c4016c, 0x7ae20450, 0xa3cb006e, 0x00000000}},  //   samo_, lgot, _लिख_,\n  { {0x62840207, 0x7bde011c, 0x3ea90253, 0x00000000}},  //   _azio, nupu, ycat_,\n  { {0x7ae2002d, 0xdbc7006c, 0x5c5b0049, 0x00000000}},  //   ngot, _tööv, לדיק,\n  { {0x7bde01a3, 0x799a047b, 0x628400d9, 0x00000000}},  //   hupu, _kitw, _czio,\n  { {0xa4d401fb, 0x7bde0f6b, 0x3f99006c, 0x00000000}},  //   _рокі, kupu, _sisu_,\n  { {0x3ea91a78, 0x3f991293, 0x62840026, 0x00000000}},  //   tcat_, _pisu_, _ezio,\n  { {0x799a1a79, 0x3f99002b, 0x7d1c00e5, 0x00000000}},  //   _litw, _qisu_, _anrs,\n  { {0x3ea91a7a, 0x3f991a2f, 0x63761a43, 0x00000000}},  // [39b0] rcat_, _visu_, ránt,\n  { {0xceeb007a, 0x3ea91a7b, 0x3dc91156, 0x00000000}},  //   _کردن_, scat_, rsaw_,\n  { {0x3ea9003b, 0x60c71a7c, 0x9c190025, 0x00000000}},  //   pcat_, majm, بياء_,\n  { {0x7ae20149, 0x60c70065, 0x799a0020, 0x00000000}},  //   ggot, lajm, _aitw,\n  { {0x6f1d032c, 0xd7f8001a, 0xf77102fd, 0x00000000}},  //   _insc, _apă_, یاب_,\n  { {0x60c70036, 0x7ae2002d, 0xfd610082, 0x00000000}},  //   najm, agot, _luyế,\n  { {0xd942073b, 0xdb1e101b, 0x00000000, 0x00000000}},  //   рещи, dspæ,   ,\n  { {0x60c71a7d, 0x00000000, 0x00000000, 0x00000000}},  //   hajm,   ,   ,\n  { {0xd7060057, 0x3b64005e, 0x91820082, 0x00000000}},  //   тные_, _сърв, yền_,\n  { {0x60c7050f, 0xdb05010f, 0xb8860802, 0x00000000}},  //   jajm, sphä, _stíž,\n  { {0x6f1d00bb, 0x1422007e, 0x60c7016e, 0x00000000}},  //   _onsc, адэм, dajm,\n  { {0x6d451a7e, 0x6368005d, 0x69d90112, 0x00000000}},  //   hhha, dınc, orwe,\n  { {0x799a0009, 0x69cb1a7f, 0x6f0d005b, 0x00000000}},  //   _yitw, nsge, ddac,\n  { {0x6f1d001f, 0x60c71a80, 0x67291727, 0x00000000}},  //   _ansc, gajm, ljej,\n  { {0x69d9010f, 0x7f4400f4, 0x6d570288, 0x00000000}},  //   hrwe, thiq, dixa,\n  { {0xd36f0054, 0x6e24002d, 0x69cb01d6, 0x00000000}},  //   _وهو_, txib, ksge,\n  { {0x63a302e1, 0x7f440065, 0x6d5700f8, 0x00000000}},  // [39c0] _hunn, rhiq, fixa,\n  { {0x63a302ae, 0x6f1d00bb, 0x69cb0112, 0x00000000}},  //   _kunn, _ensc, dsge,\n  { {0x7c9601fb, 0x40d9007b, 0x823600e9, 0x00000000}},  //   трац, _אַרײ, _سرکا,\n  { {0x6b8902d5, 0x799a1a81, 0x63a305ed, 0x00000000}},  //   _cheg, _sitw, _munn,\n  { {0x7bde1632, 0x7ae21a82, 0x6b9b0254, 0x00000000}},  //   supu, rgot, _diug,\n  { {0x49730822, 0x14dd001c, 0x6d45010f, 0x00000000}},  //   аліс, _मागण, chha,\n  { {0x69cb0007, 0x6b9b0197, 0x63a3006c, 0x00000000}},  //   asge, _fiug, _nunn,\n  { {0x6b9b0198, 0xe3af0055, 0x60c705fa, 0x00000000}},  //   _giug, _কিংব, zajm,\n  { {0xe9a60265, 0x3d170061, 0xd3790091, 0x00000000}},  //   _разп, नाचे_, juća_,\n  { {0x799a1a83, 0x973c1a84, 0x636801df, 0x00000000}},  //   _uitw, _duća, yınc,\n  { {0x291e1a85, 0x290c0032, 0x00000000, 0x00000000}},  //   _inta_, _iada_,   ,\n  { {0xfd61001d, 0x63a3020f, 0x5453005e, 0x00000000}},  //   _quyế, _dunn, рвют,\n  { {0x290c0006, 0x60c70142, 0xd3790091, 0x00000000}},  //   _kada_, tajm, guća_,\n  { {0x63a30292, 0x290c002d, 0xf8b401f5, 0x00000000}},  //   _funn, _jada_, ुरिय,\n  { {0x63a3009f, 0xfd61001d, 0x290c000b, 0x00000000}},  //   _gunn, _tuyế, _mada_,\n  { {0xe0e30044, 0x290c01a3, 0xe3af03ec, 0x00000000}},  //   য়েন, _lada_, _برو_,\n  { {0x6f0d002a, 0xc29901fb, 0x5f940088, 0x00000000}},  // [39d0] rdac, _яких_, ритт,\n  { {0x290c0977, 0xbebb0007, 0x50b7007d, 0x00000000}},  //   _nada_, _poës, _अभिष,\n  { {0x290e018e, 0x4035004c, 0xd0110025, 0x00000000}},  //   ddfa_, _сенс, _الج_,\n  { {0x41c4089d, 0x69cb010f, 0x6f1d0043, 0x00000000}},  //   _حقیق, tsge, _unsc,\n  { {0x290c022b, 0x61ef1a86, 0x637d00f4, 0x00000000}},  //   _bada_, ntcl, géni,\n  { {0x69cb0168, 0x2a6901d5, 0xc4bd0044, 0x00000000}},  //   rsge, ħab_, _ইঞ্জ,\n  { {0x6d55038c, 0x60c5014a, 0x290c00f0, 0x00000000}},  //   _imza, _mehm, _dada_,\n  { {0x0609026b, 0x80dc0055, 0x60c50ac2, 0x00000000}},  //   еник_, ম্প্, _lehm,\n  { {0x63a30635, 0x290c002a, 0x673b0065, 0x00000000}},  //   _sunn, _fada_, rkuj,\n  { {0x290c001e, 0x60c5010f, 0x7e7d00ab, 0x00000000}},  //   _gada_, _nehm, _mysp,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x63a302e1, 0xc6540014, 0x3f47010e, 0x00000000}},  //   _vunn, افیک, _jõud_,\n  { {0xf77005d4, 0x290c01df, 0x973c0091, 0x00000000}},  //   _بال_, _yada_, _kućn,\n  { {0xa11600e9, 0x06e30309, 0x63a31a87, 0x00000000}},  //   دوست, _गाँव_, _tunn,\n  { {0xd379016e, 0xa06701c0, 0x973c016c, 0x00000000}},  //   suća_, гара_, _mućn,\n  { {0x332b0061, 0x2eb500ec, 0x7e7d01c3, 0x00000000}},  //   cjcx_, исус, _bysp,\n  { {0x60c5002b, 0xcb1d013d, 0xdb1e00f8, 0x00000000}},  // [39e0] _fehm, फाईड_, nspå,\n  { {0x7e7d0036, 0x637d1a88, 0x64640006, 0x00000000}},  //   _dysp, véni, štiš,\n  { {0x06e303d7, 0xdd8f0054, 0x9f5e0010, 0x00000000}},  //   _गांव_, أول_, ító_,\n  { {0x290c01cd, 0xbda6035b, 0xbae50088, 0x00000000}},  //   _sada_, _محسو, ицій,\n  { {0x290c0149, 0x00000000, 0x00000000, 0x00000000}},  //   _pada_,   ,   ,\n  { {0x3f801460, 0x637d1a89, 0xbebb01d6, 0x00000000}},  //   lliu_, réni, _hoëp,\n  { {0x8c460517, 0x290c1a8a, 0x3320106f, 0x00000000}},  //   _севе, _vada_, _onix_,\n  { {0x7d0e0145, 0xbb43003b, 0xa81703ec, 0x00000000}},  //   _habs, _леск, اتور_,\n  { {0x290c010a, 0xe4c6007c, 0xdb1e053d, 0x00000000}},  //   _tada_, лённ, rspä,\n  { {0x291e1a8b, 0xa97601fc, 0x35f70439, 0x00000000}},  //   _unta_, _субј, اريد_,\n  { {0xb9930025, 0x249803a2, 0x3f801a8c, 0x00000000}},  //   _اللب, ärm_, kliu_,\n  { {0xdc3b0049, 0x7d0e1478, 0x41e701e1, 0x00000000}},  //   געטר, _labs, ліга,\n  { {0x36360084, 0x60c503b6, 0x61ed0009, 0x00000000}},  //   _حراس, _pehm, _qqal,\n  { {0x61ef0270, 0x973c11af, 0x00000000, 0x00000000}},  //   rtcl, _kućo,   ,\n  { {0x61ef1a8d, 0xdfd8005e, 0x855600a1, 0x00000000}},  //   stcl, лът_, _لیکر_,\n  { {0x7d0e00e0, 0x636801df, 0x61ed0066, 0x00000000}},  //   _aabs, pına, _tqal,\n  { {0x5d5500c0, 0x60c501f3, 0x320900e0, 0x00000000}},  // [39f0] акат, _tehm, _usay_,\n  { {0x7ae90197, 0x00000000, 0x00000000, 0x00000000}},  //   _scet,   ,   ,\n  { {0x7e7d0036, 0x63ad016c, 0x3ea61a8e, 0x00000000}},  //   _wysp, _čank, žota_,\n  { {0x681c001a, 0xb17b0039, 0x00000000, 0x00000000}},  //   _mădă, fråg,   ,\n  { {0x6f0f0026, 0x2b440087, 0x00000000, 0x00000000}},  //   _iacc, _dlmc_,   ,\n  { {0x26c90091, 0x00000000, 0x00000000, 0x00000000}},  //   _žao_,   ,   ,\n  { {0xb17b063b, 0xe7310025, 0x6f0f0066, 0x00000000}},  //   mråd, قصة_, _kacc,\n  { {0x6f0f1a8f, 0xb17b0748, 0xdb070190, 0x00000000}},  //   _jacc, lråd, _stjæ,\n  { {0x6f0f0207, 0x00000000, 0x00000000, 0x00000000}},  //   _macc,   ,   ,\n  { {0x5a340c27, 0x6f0f0197, 0x25a60058, 0x00000000}},  //   _унут, _lacc, _duol_,\n  { {0xd4690aed, 0x3366004c, 0x39451a90, 0x00000000}},  //   тине_, ивог, _ills_,\n  { {0x6f0f0afb, 0x17f80025, 0x681c00e5, 0x00000000}},  //   _nacc, _حركة_, _dădă,\n  { {0xf7700644, 0xb17b03b1, 0x00000000, 0x00000000}},  //   _عام_, kråd,   ,\n  { {0xa06a008b, 0xd3790091, 0x00000000, 0x00000000}},  //   вага_, vrće_,   ,\n  { {0xd479007b, 0x6f0f1003, 0x1fb501e1, 0x00000000}},  //   _באַל, _bacc, йстр,\n  { {0x6f0f0207, 0x7d0e146c, 0x2eeb00e5, 0x00000000}},  //   _cacc, _sabs, _cccf_,\n  { {0x6f0f0197, 0xdcf50173, 0xb17b0ccc, 0x00000000}},  // [3a00] _dacc, _ekzč, rtår,\n  { {0x8cb6005e, 0x6f0f00e5, 0x00000000, 0x00000000}},  //   рсач, _eacc,   ,\n  { {0x6f0f0198, 0x6c4a0084, 0x2a7f0145, 0x00000000}},  //   _facc, خلاف_, _ayub_,\n  { {0xa3e604da, 0x394505ce, 0x317803b2, 0x00000000}},  //   यंत_, _alls_, lorz_,\n  { {0x7d0e152f, 0x637d004a, 0x6f041a91, 0x00000000}},  //   _tabs, mént, meic,\n  { {0x6f04001f, 0x6f0f0197, 0x201a016c, 0x00000000}},  //   leic, _zacc, _krpi_,\n  { {0x25a60026, 0xe7580088, 0xed57004d, 0x00000000}},  //   _suol_, ликі_, _тор_,\n  { {0x39450129, 0x681c0035, 0x00000000, 0x00000000}},  //   _ells_, _rădă,   ,\n  { {0x48e616c4, 0x758a007c, 0x00000000, 0x00000000}},  //   _возв, ксов_,   ,\n  { {0x6b821a92, 0x25a60207, 0x69db01f5, 0x00000000}},  //   llog, _vuol_, _निती,\n  { {0xd6c40014, 0x6f04007f, 0x637d0010, 0x00000000}},  //   _همای, keic, ként,\n  { {0x6b82010f, 0x27fe0022, 0x00000000, 0x00000000}},  //   nlog, _iptn_,   ,\n  { {0x6f0f1a93, 0x05b40879, 0x6445006c, 0x00000000}},  //   _racc, _امتح, _ühin,\n  { {0xd5fb00b6, 0x6f0f0207, 0x5067005e, 0x00000000}},  //   _ספור, _sacc, атба,\n  { {0x6f0f0207, 0x6f0407a7, 0xb17b0c73, 0x00000000}},  //   _pacc, feic, vråd,\n  { {0xddc40036, 0x637d009d, 0x63ba16d0, 0x00000000}},  //   dził, ténu, mptn,\n  { {0x6b820627, 0x2121001d, 0xb17b0d2b, 0x00000000}},  // [3a10] dlog, _tnhh_, tråd,\n  { {0xacf400a1, 0x00000000, 0x00000000, 0x00000000}},  //   قسمت,   ,   ,\n  { {0x6f0f1a94, 0x6b82018e, 0xb17b1a95, 0x00000000}},  //   _tacc, flog, rråd,\n  { {0xb17b1a96, 0x637d008e, 0x6f0f0190, 0x00000000}},  //   sråd, cént, _uacc,\n  { {0x636801f6, 0x00000000, 0x00000000, 0x00000000}},  //   dınl,   ,   ,\n  { {0xdb070039, 0xe77800a1, 0xe9b800a1, 0x00000000}},  //   _stjä, یلوں_, جنوں_,\n  { {0x6b821a97, 0x98f4023c, 0xdb0901a2, 0x00000000}},  //   blog, تثنا, _gieß,\n  { {0x6b8200d4, 0x2ee91a98, 0x00000000, 0x00000000}},  //   clog, ngaf_,   ,\n  { {0xe579026b, 0x7afb0058, 0x00000000, 0x00000000}},  //   лзи_, _ibut,   ,\n  { {0x6f04001f, 0x99850025, 0x39450129, 0x00000000}},  //   zeic, _الطو, _ulls_,\n  { {0x6d470ecc, 0x00000000, 0x00000000, 0x00000000}},  //   _mlja,   ,   ,\n  { {0x6722073a, 0x00000000, 0x00000000, 0x00000000}},  //   _gnoj,   ,   ,\n  { {0xd7740025, 0x6f041a99, 0xb5a71523, 0x00000000}},  //   _بالع, veic, _трей,\n  { {0x6b820295, 0x6f04010f, 0x67220e25, 0x00000000}},  //   zlog, weic, _znoj,\n  { {0x6f04001e, 0x7afb0059, 0x637d0842, 0x00000000}},  //   teic, _obut, tént,\n  { {0x27ea0030, 0x660900e7, 0x00000000, 0x00000000}},  //   _åbne_, owek,   ,\n  { {0x6f04001f, 0x6d470107, 0x63680180, 0x00000000}},  // [3a20] reic, _blja, nınm,\n  { {0x7afb07b1, 0x6f041a9a, 0x637d008e, 0x00000000}},  //   _abut, seic, sént,\n  { {0x6b820059, 0x6368011f, 0x61e6014a, 0x00000000}},  //   tlog, yınl, lukl,\n  { {0xf09300b6, 0x6368006b, 0x66090116, 0x00000000}},  //   _מנת_, xınl, kwek,\n  { {0xceb300bd, 0xb3470181, 0x61e60089, 0x00000000}},  //   _מיר_, luçõ, nukl,\n  { {0x6b820056, 0xa7b800ed, 0x00000000, 0x00000000}},  //   slog, алку_,   ,\n  { {0x6c36007a, 0x6d5e17ce, 0x6b821a9b, 0x00000000}},  //   _افزا, mipa, plog,\n  { {0x6d5e006a, 0xa3e6013d, 0xcc3b0049, 0x00000000}},  //   lipa, यंस_, _געלט,\n  { {0x3f47006c, 0x6368026d, 0x00000000, 0x00000000}},  //   _jõua_, rınl,   ,\n  { {0x61e6014a, 0x7afb0023, 0x63680276, 0x00000000}},  //   dukl, _zbut, sınl,\n  { {0x4395003b, 0x7c3e1a9c, 0x00000000, 0x00000000}},  //   жанс, nypr,   ,\n  { {0xdc9b0476, 0x6d5e001a, 0xb3470181, 0x00000000}},  //   טייל, hipa, duçõ,\n  { {0x6d5e006a, 0x66e3007e, 0xe6960025, 0x00000000}},  //   kipa, _хоча, _الشد,\n  { {0x067b007b, 0xe3af02fd, 0x6d5e00f0, 0x00000000}},  //   _ענגל, بری_, jipa,\n  { {0xd48f004d, 0x2099007e, 0x657a00ab, 0x00000000}},  //   _хр_, рквы_, moth,\n  { {0x7eb90265, 0x6d470107, 0x61e61a9d, 0x00000000}},  //   ргас_, _slja, bukl,\n  { {0x171b007b, 0x7d05005f, 0x61e6011f, 0x00000000}},  // [3a30] נומע, tehs, cukl,\n  { {0x6d5e0695, 0x4c4b0641, 0x657a032c, 0x00000000}},  //   gipa, ляем_, noth,\n  { {0x443e1a9e, 0xfbd00014, 0xb34700c4, 0x00000000}},  //   nyt_, فتن_, cuçõ,\n  { {0x657a01a2, 0x20010022, 0xdb00000a, 0x00000000}},  //   hoth, _iphi_, _jimè,\n  { {0x6d5e1a9f, 0x443e00b0, 0xdb0000f6, 0x00000000}},  //   bipa, hyt_, _mimè,\n  { {0x6d5e06c0, 0x7ff4007a, 0xa3d80061, 0x00000000}},  //   cipa, _بسیا, ाळा_,\n  { {0x7c3e0ace, 0x61e6014a, 0x657a0133, 0x00000000}},  //   cypr, zukl, doth,\n  { {0x7afb0061, 0x443e0fed, 0x4cde0044, 0x00000000}},  //   _ubut, dyt_, ন্দু,\n  { {0xdb1c009f, 0x63aa010f, 0x05a6007c, 0x00000000}},  //   _evró, _aufn, овый_,\n  { {0x61e61353, 0x05760025, 0x58d40077, 0x00000000}},  //   vukl, يمية_, _ноут,\n  { {0x29070119, 0xf6d50088, 0xe29f000c, 0x00000000}},  //   mena_, _діля, veða_,\n  { {0xf7700054, 0x29070119, 0x61e61aa0, 0x00000000}},  //   _كان_, lena_, tukl,\n  { {0x07080439, 0xdb0000f6, 0x15390014, 0x00000000}},  //   _ديني_, _dimè, _پزشک_,\n  { {0x2907002d, 0x31af0279, 0x443e0142, 0x00000000}},  //   nena_, _düz_, byt_,\n  { {0xa0a3025f, 0x628d01aa, 0x61e61aa1, 0x00000000}},  //   дард, _ezao, sukl,\n  { {0x77690293, 0x2907002d, 0xb3470181, 0x00000000}},  //   nnex, hena_, ruçõ,\n  { {0x6d5e0ed1, 0x29071640, 0x98a500b4, 0x00000000}},  // [3a40] tipa, kena_, _wolę_,\n  { {0x29071032, 0x63a4006c, 0xf1b90802, 0x00000000}},  //   jena_, _hiin, íše_,\n  { {0x63a41aa2, 0x6d5e0127, 0xbc6a00a1, 0x00000000}},  //   _kiin, ripa, جمان_,\n  { {0x31af005d, 0x657a0258, 0x00000000, 0x00000000}},  //   _yüz_, zoth,   ,\n  { {0xdb000efe, 0xcb070076, 0x63a40ac2, 0x00000000}},  //   _jimé, زيون_, _miin,\n  { {0x29071aa3, 0x63a401c2, 0x69db007d, 0x00000000}},  //   gena_, _liin, _निरी,\n  { {0x6d5c01a3, 0x98be001a, 0xa7fc006b, 0x00000000}},  //   _imra, _altă_, _axır,\n  { {0xceb4005f, 0x44200428, 0x63a418ec, 0x00000000}},  //   ncə_, _či_, _niin,\n  { {0x55060147, 0x657a009d, 0xcf93034e, 0x00000000}},  //   очна, toth, וטה_,\n  { {0x63760047, 0x443e042c, 0x63aa01ee, 0x00000000}},  //   mány, tyt_, _pufn,\n  { {0xd6cf046c, 0xad1b007b, 0xceb4006b, 0x00000000}},  //   _от_, בויר, kcə_,\n  { {0x657a1784, 0x443e0006, 0x74ba013d, 0x00000000}},  //   soth, ryt_, _श्रृ,\n  { {0x657a00b5, 0x6d5c0107, 0x63a404cb, 0x00000000}},  //   poth, _omra, _diin,\n  { {0x660201aa, 0x63aa0521, 0x443e0027, 0x00000000}},  //   _ipok, _tufn, pyt_,\n  { {0x63a4000d, 0x403500ed, 0x3cfd0061, 0x00000000}},  //   _fiin, чевс, र्फे_,\n  { {0x29070f53, 0xa3b70070, 0x234902fd, 0x00000000}},  //   zena_, _باور_, _دستی_,\n  { {0xd3790119, 0xdb000919, 0x00000000, 0x00000000}},  // [3a50] jući_, _gimé,   ,\n  { {0xd3790166, 0x8d7405f3, 0x66020020, 0x00000000}},  //   dući_, والا, _mpok,\n  { {0x29070091, 0x76400016, 0x823402fd, 0x00000000}},  //   vena_, hymy, _فریا,\n  { {0x6d5c1aa4, 0x29070058, 0xddc40089, 0x00000000}},  //   _emra, wena_, dziņ,\n  { {0xd3790091, 0x63760010, 0x00000000, 0x00000000}},  //   gući_, gány,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x29070390, 0x6d451aa5, 0x09d70061, 0x00000000}},  //   rena_, mkha, _ठिकठ,\n  { {0x290703b6, 0x3f5701d5, 0x27e70bdc, 0x00000000}},  //   sena_, għux_, runn_,\n  { {0x2907062b, 0x7769002b, 0x63a4006c, 0x00000000}},  //   pena_, rnex, _riin,\n  { {0x63a40b3e, 0x6d4518ce, 0x34390025, 0x00000000}},  //   _siin, nkha, مسجد_,\n  { {0xdb000173, 0x66020c01, 0x63a4006c, 0x00000000}},  //   _simé, _epok, _piin,\n  { {0x69c900c7, 0xd7fa009b, 0xd76300a1, 0x00000000}},  //   _kwee, _להעל, _تنصی,\n  { {0x63a4003c, 0x00000000, 0x00000000, 0x00000000}},  //   _viin,   ,   ,\n  { {0x25bf1aa6, 0xd13200f3, 0x55ba009b, 0x00000000}},  //   mpul_, رمز_, _המסו,\n  { {0x65611aa7, 0x34e8007b, 0x3d0f013d, 0x00000000}},  //   milh, _וווּ_, ड़ने_,\n  { {0x0eaa008b, 0x64410061, 0x6561002b, 0x00000000}},  //   скай_, myli, lilh,\n  { {0x6f1605d2, 0x9f5a000c, 0xee3a005e, 0x00000000}},  // [3a60] rdyc, _uppí_, щна_,\n  { {0x656100c4, 0xd3790166, 0x98ac0006, 0x00000000}},  //   nilh, vući_, _kodą_,\n  { {0x315700bd, 0x6441018e, 0x913b009b, 0x00000000}},  //   _זיין_, nyli, _העיק,\n  { {0x2f5601e1, 0xeb970f93, 0x6da6003b, 0x00000000}},  //   _хтос, пих_, _нима,\n  { {0xf38d0049, 0x00000000, 0x00000000, 0x00000000}},  //   בראָ,   ,   ,\n  { {0x661b1aa8, 0x6d5c01a3, 0x63760010, 0x00000000}},  //   dvuk, _umra, rány,\n  { {0x66021aa9, 0x65611aaa, 0x69c90019, 0x00000000}},  //   _spok, dilh, _ewee,\n  { {0xddc40089, 0x85b80745, 0x45b801ab, 0x00000000}},  //   rziņ, олис_, огию_,\n  { {0x75381aab, 0xeb9700d7, 0x65611824, 0x00000000}},  //   _povz, _хит_, filh,\n  { {0xddc401c5, 0x00000000, 0x00000000, 0x00000000}},  //   pziņ,   ,   ,\n  { {0x7640021e, 0x69c900bb, 0x656f009d, 0x00000000}},  //   symy, _zwee, écha,\n  { {0xc7b300b3, 0x6d4b0089, 0x394c0048, 0x00000000}},  //   _טבע_, īgai, _hlds_,\n  { {0x7afd051d, 0x66020235, 0x394c00f6, 0x00000000}},  //   _öste, _upok, _klds_,\n  { {0x3f821744, 0xad9b008e, 0x656100fa, 0x00000000}},  //   _akku_, _apún, cilh,\n  { {0x34fb1aac, 0x7d150059, 0x4acc01f5, 0x00000000}},  //   _ההוד, _razs, ाराव,\n  { {0x35d1013d, 0x00000000, 0x00000000, 0x00000000}},  //   _दौड़,   ,   ,\n  { {0xc434026c, 0x6d451aad, 0x394c0133, 0x00000000}},  // [3a70] _رکھت, tkha, _olds_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6d4501a3, 0x69c900fe, 0x661b0253, 0x00000000}},  //   rkha, _swee, zvuk,\n  { {0x395e0296, 0x7fd600b3, 0x6d451aae, 0x00000000}},  //   _amts_, _קורס_, skha,\n  { {0xe9d8007e, 0x64410036, 0x9f4300b9, 0x00000000}},  //   зкі_, zyli, nují_,\n  { {0x3f89018e, 0xada4007e, 0x3eb90007, 0x00000000}},  //   llau_, _паўл, _hfst_,\n  { {0x65610181, 0x3f890016, 0x9f4300b9, 0x00000000}},  //   vilh, olau_, hují_,\n  { {0x69c91aaf, 0xeab00025, 0xf0940097, 0x00000000}},  //   _twee, _معك_, ענק_,\n  { {0x2bcb0204, 0x656100fa, 0x64410016, 0x00000000}},  //   ाठवा, tilh, wyli,\n  { {0x33290061, 0x64410056, 0x25bf1ab0, 0x00000000}},  //   _anax_, tyli, rpul_,\n  { {0x65611824, 0x661b1ab1, 0x00000000, 0x00000000}},  //   rilh, svuk,   ,\n  { {0x8c1a009b, 0x3cfd0164, 0x656100c4, 0x00000000}},  //   קורי, र्ते_, silh,\n  { {0x3f890016, 0x656100c4, 0xdcfc1ab2, 0x00000000}},  //   dlau_, pilh, _skrč,\n  { {0x59e00061, 0x26cf002d, 0xdb1e01aa, 0x00000000}},  //   _निसर, _hego_, nspò,\n  { {0x6d8b00f6, 0x00000000, 0x00000000, 0x00000000}},  //   güam,   ,   ,\n  { {0x26cf0046, 0x60c1038c, 0x9f4300b9, 0x00000000}},  //   _jego_, ılma, bují_,\n  { {0xd1ba004b, 0x2013098e, 0x88bc00b9, 0x00000000}},  // [3a80] _بابا_, _esxi_, _sněm,\n  { {0x3eb9000c, 0x00000000, 0x00000000, 0x00000000}},  //   _efst_,   ,   ,\n  { {0xfb8200a1, 0x3f89068a, 0x201c0010, 0x00000000}},  //   نگری, blau_, _évi_,\n  { {0x26cf0119, 0x0b461969, 0x9f5a01aa, 0x00000000}},  //   _nego_, ьнен, _espò_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xe89409c0, 0x2b4d009d, 0xc983080c, 0x00000000}},  //   наль, _elec_, кущи,\n  { {0x9f4300b9, 0x6d4e0056, 0x26cf0032, 0x00000000}},  //   zují_, _ilba, _bego_,\n  { {0x27e001d9, 0x26cf00c4, 0xa614004d, 0x00000000}},  //   čin_, _cego_, емич,\n  { {0xe9d700c0, 0xe4e60088, 0x6a830641, 0x00000000}},  //   _окт_, мінн, _алта,\n  { {0x4a57009b, 0x69c2018f, 0x9f4300b9, 0x00000000}},  //   _חשמל_, mpoe, vují_,\n  { {0x61e60109, 0x3f890016, 0xdb001ab3, 0x00000000}},  //   erkl, ylau_, _limí,\n  { {0xf6d6089d, 0x25af1ab4, 0xe6660a85, 0x00000000}},  //   _آزاد, _fugl_, _отло,\n  { {0x51870a30, 0x9294007e, 0x69c200bb, 0x00000000}},  //   дува, каюц, npoe,\n  { {0x9f4300b9, 0x3f89005b, 0x00000000, 0x00000000}},  //   rují_, wlau_,   ,\n  { {0x3f890016, 0x33290066, 0x00000000, 0x00000000}},  //   tlau_, _tnax_,   ,\n  { {0x9f580263, 0x5f9402b0, 0x2bd8013d, 0x00000000}},  //   ntrè_, вист, _डिजा,\n  { {0x200500b9, 0xd25200a1, 0x88bc00b9, 0x00000000}},  // [3a90] ůli_, _منٹ_, _vněj,\n  { {0x30150373, 0x3f8903d1, 0x69c2005b, 0x00000000}},  //   _здор, slau_, dpoe,\n  { {0x2b4d1ab5, 0xd379016e, 0x99490142, 0x00000000}},  //   _plec_, suću_, núť_,\n  { {0x309a00b6, 0x6d4e0065, 0xceeb0014, 0x00000000}},  //   _משתמ, _elba, _بردن_,\n  { {0x6f0d1ab6, 0x6eba0104, 0x9f5a000c, 0x00000000}},  //   meac, _מזרח, _uppá_,\n  { {0x6f0d002a, 0x6813006b, 0x26cf0022, 0x00000000}},  //   leac, _hədə, _sego_,\n  { {0x26cf0285, 0x7c841ab7, 0x6813006b, 0x00000000}},  //   _pego_, _ауте, _kədə,\n  { {0x6f0d002a, 0xac941001, 0x5bcb0061, 0x00000000}},  //   neac, _расш, ाठीव,\n  { {0x6813005f, 0xb17b1ab8, 0x3989000c, 0x00000000}},  //   _mədə, trål, húsi_,\n  { {0xe00f02d2, 0x6f0d0051, 0xb4e9007d, 0x00000000}},  //   ाबाद_, heac, यले_,\n  { {0x26cf0046, 0x6368014a, 0x6f0d00eb, 0x00000000}},  //   _tego_, kınt, keac,\n  { {0x81d70044, 0x59c60164, 0x6813006b, 0x00000000}},  //   _সহজ_, रीकर, _nədə,\n  { {0x6f0d002a, 0x69d9010f, 0x15f3013d, 0x00000000}},  //   deac, nswe, _आमिर_,\n  { {0x463a0049, 0x69d90c4c, 0x00000000, 0x00000000}},  //   _מענע, iswe,   ,\n  { {0x6f0d002a, 0x6813006b, 0xf8b201ce, 0x00000000}},  //   feac, _bədə, רשל_,\n  { {0x6f0d1ab9, 0xd2521095, 0x69d901d6, 0x00000000}},  //   geac, _منع_, kswe,\n  { {0x9f5812a3, 0xdb0000c4, 0x20d6007e, 0x00000000}},  // [3aa0] ntré_, _limã, _пінс,\n  { {0x69d90116, 0x60d5004a, 0x98a5000a, 0x00000000}},  //   dswe, cazm, _anlč_,\n  { {0xdd8f039d, 0xd910007a, 0xc173009b, 0x00000000}},  //   حول_, ییر_, _תחת_,\n  { {0x6f0d0051, 0x3ce61aba, 0x69c200d9, 0x00000000}},  //   ceac, şov_, tpoe,\n  { {0xdcfc0089, 0x69d90d18, 0x00000000, 0x00000000}},  //   _ekrā, gswe,   ,\n  { {0x69c20116, 0x672b1abb, 0x48fb0316, 0x00000000}},  //   rpoe, _angj, ल्लो_,\n  { {0x2d98001f, 0x69c200c7, 0x69d901d6, 0x00000000}},  //   _ihre_, spoe, aswe,\n  { {0xa8470025, 0x9f58000c, 0x3ea60089, 0x00000000}},  //   عليم_, ftré_, žotu_,\n  { {0xdb0e00f6, 0x00000000, 0x00000000, 0x00000000}},  //   _rubè,   ,   ,\n  { {0x6b820004, 0x672b1abc, 0xdb0000f6, 0x00000000}},  //   loog, _engj, _himà,\n  { {0xd49801fb, 0x6b8201ee, 0xdb1c004a, 0x00000000}},  //   ької_, ooog, _atré,\n  { {0xd25100a1, 0x88bc00b9, 0x00000000, 0x00000000}},  //   لنج_, _sněh,   ,\n  { {0xd46a025a, 0xf2041abd, 0x6f0d0d28, 0x00000000}},  //   تحکم_, ляро, veac,\n  { {0x6b8200bb, 0x291c1792, 0xdb1c0048, 0x00000000}},  //   hoog, ndva_, _dtré,\n  { {0x6f0d002a, 0x7ae00009, 0x60d50c8a, 0x00000000}},  //   teac, _odmt, razm,\n  { {0x6813005f, 0x69c00521, 0x69d91abe, 0x00000000}},  //   _qədə, _otme, yswe,\n  { {0x6f0d0195, 0x623502b0, 0xf1a702a8, 0x00000000}},  // [3ab0] reac, _репу, _прон,\n  { {0x6f0d002a, 0x32090022, 0x4ea40b7b, 0x00000000}},  //   seac, _ipay_, урса,\n  { {0x2fd90054, 0x69c00995, 0xceb4006b, 0x00000000}},  //   _توجد_, _atme, mdən_,\n  { {0xeab000b8, 0x6b82006c, 0x69d9010f, 0x00000000}},  //   معه_, goog, tswe,\n  { {0xdb07009f, 0x61fd006c, 0xdb0000c4, 0x00000000}},  //   _stjó, ntsl, _simã,\n  { {0xceb40163, 0xfbd3023c, 0x69d9046a, 0x00000000}},  //   ndən_, _متر_, rswe,\n  { {0x69c01abf, 0xe7391ac0, 0x6b8201d6, 0x00000000}},  //   _etme, дей_, boog,\n  { {0x7bc516d4, 0x6abb00e7, 0xdb0000f6, 0x00000000}},  //   mphu, _ufuf, _gimà,\n  { {0xceb4005f, 0x57240025, 0x998d00e5, 0x00000000}},  //   kdən_, طريق, _greş_,\n  { {0x637d0047, 0xdb0e008e, 0xdb0000c4, 0x00000000}},  //   mény, _rubé, _timã,\n  { {0x9f5800f4, 0xa3cc0309, 0x79830058, 0x00000000}},  //   stré_, शील_, monw,\n  { {0x3fc8026c, 0x06990025, 0x672b0065, 0x00000000}},  //   ہدری_, _قناة_, _ungj,\n  { {0x20d60088, 0xceb4006b, 0xe29717fa, 0x00000000}},  //   ківс, fdən_, каю_,\n  { {0x6e20064d, 0xdb0901c3, 0x00000000, 0x00000000}},  //   _ámbi, _bieë,   ,\n  { {0x61fd0112, 0x998f0006, 0x00000000, 0x00000000}},  //   atsl, lygų_,   ,\n  { {0xdb0e10cb, 0x9f5a00ea, 0x7983005b, 0x00000000}},  //   _tubé, _oppå_, honw,\n  { {0xfe43007c, 0x29050f9e, 0x27380010, 0x00000000}},  // [3ac0] анто, _obla_, _pénz_,\n  { {0x64450004, 0x63ae0051, 0x9f4300c4, 0x00000000}},  //   _ühis, _úiné, rujá_,\n  { {0x6b8200b5, 0x69c01ac1, 0x7983005b, 0x00000000}},  //   toog, _stme, donw,\n  { {0x27380a50, 0x29050095, 0x00000000, 0x00000000}},  //   _fény_, _abla_,   ,\n  { {0x79830016, 0x2d980af2, 0x637d0010, 0x00000000}},  //   fonw, _thre_, gény,\n  { {0xf8060088, 0x3ea60089, 0x00000000, 0x00000000}},  //   вчин, žots_,   ,\n  { {0x9d1b0476, 0x7d1c1ac2, 0x290e1ac3, 0x00000000}},  //   _קולט, _iars, refa_,\n  { {0xceb4006b, 0x290e013e, 0xd056006b, 0x00000000}},  //   zdən_, sefa_, übəs,\n  { {0x7d1c0089, 0x68ed0010, 0xbb431a4d, 0x00000000}},  //   _kars, ándé, _тетк,\n  { {0xf1dc013d, 0x7d1c1ac4, 0xdcfe01ed, 0x00000000}},  //   _बिजन, _jars, kopč,\n  { {0x2955005e, 0xd6d203ec, 0xe2f90088, 0x00000000}},  //   _сътр, _نقض_, нені_,\n  { {0x7d1c05fe, 0x61fd093b, 0xb17b01c9, 0x00000000}},  //   _lars, ttsl, pråk,\n  { {0xceb4006b, 0xa3e6006e, 0x7d1c002d, 0x00000000}},  //   tdən_, यूज_, _oars,\n  { {0x70bf02d2, 0x61fd0030, 0x7d1c0d8f, 0x00000000}},  //   ्रेल, rtsl, _nars,\n  { {0xceb4005f, 0x224d05d2, 0xd37b0f97, 0x00000000}},  //   rdən_, šek_, _очи_,\n  { {0x65681ac5, 0x3eaf0030, 0xd437009b, 0x00000000}},  //   lidh, øgt_, _ירוק_,\n  { {0x7d1c0030, 0x6448007f, 0x680a006b, 0x00000000}},  // [3ad0] _bars, lydi, _hədd,\n  { {0xbebb008d, 0x2d8700f4, 0x7d1c0091, 0x00000000}},  //   _anët, ône_, _cars,\n  { {0x6ca702a8, 0xe1ff147e, 0x7d1c010f, 0x00000000}},  //   траж, ltó_, _dars,\n  { {0x2b8e004f, 0x63ad1ac6, 0x9f3501e1, 0x00000000}},  //   ných_, _jian, _семі,\n  { {0x7d1c1ac7, 0xe1ff1ac8, 0x0f360049, 0x00000000}},  //   _fars, ntó_, _ערשט_,\n  { {0x65681ac9, 0x7d1c010a, 0x6f1d0210, 0x00000000}},  //   jidh, _gars, _hasc,\n  { {0xccf200b6, 0x2b8e0428, 0xdb09009d, 0x00000000}},  //   _לכם_, kých_, _lieé,\n  { {0xe6190265, 0x6f1d0270, 0x4429016e, 0x00000000}},  //   еди_, _jasc, _ča_,\n  { {0x645a0089, 0x6b9b00ea, 0xe1ff0010, 0x00000000}},  //   ezti, _ihug, jtó_,\n  { {0x6f1d0198, 0x63ad006c, 0xc9841aca, 0x00000000}},  //   _lasc, _aian, _кухи,\n  { {0x63ad0198, 0x6f1d0009, 0xe1ff00f6, 0x00000000}},  //   _bian, _oasc, etó_,\n  { {0xc7b2012e, 0x63ad1acb, 0x18a40088, 0x00000000}},  //   _הבא_, _cian, _таєм,\n  { {0x63ad0149, 0x65680020, 0x7d070a26, 0x00000000}},  //   _dian, bidh, _objs,\n  { {0x673b092f, 0x88e50044, 0xd6d900b4, 0x00000000}},  //   ljuj, প্রক, lał_,\n  { {0xdee60001, 0x6f1d0a86, 0x63ad1acc, 0x00000000}},  //   лови, _basc, _fian,\n  { {0x673b0825, 0x63ad0a60, 0xd6d90036, 0x00000000}},  //   njuj, _gian, nał_,\n  { {0x7d1c0006, 0xdd9206b4, 0x6e930025, 0x00000000}},  // [3ae0] _pars, مور_, ملفا,\n  { {0xdca60001, 0x442704cb, 0x6f1d0051, 0x00000000}},  //   гази, _krn_, _easc,\n  { {0x6f1d0490, 0xd6d90036, 0x7c9601ab, 0x00000000}},  //   _fasc, kał_, урац,\n  { {0x7d1c0046, 0x6b9b0051, 0x6f1d0a86, 0x00000000}},  //   _wars, _chug, _gasc,\n  { {0x673b05fa, 0x298a017a, 0x7d1c0006, 0x00000000}},  //   djuj, нско_, _tars,\n  { {0xc27b007b, 0xb6050059, 0x00000000, 0x00000000}},  //   ערסי, _mašč,   ,\n  { {0x37aa017f, 0x8b960545, 0x6e240026, 0x00000000}},  //   нтин_, _брач, lvib,\n  { {0x6f040181, 0x7bde1864, 0x7e690087, 0x00000000}},  //   nfic, mspu, _žepi,\n  { {0x2b8e0428, 0x64481acd, 0x442700f8, 0x00000000}},  //   vých_, wydi, _arn_,\n  { {0x201a00f6, 0x00000000, 0x00000000, 0x00000000}},  //   _ospi_,   ,   ,\n  { {0x65680020, 0x33750088, 0x291e001a, 0x00000000}},  //   ridh, игор, _iata_,\n  { {0x291e1ace, 0x63ad0719, 0x76490061, 0x00000000}},  //   _hata_, _qian, byey,\n  { {0x291e0149, 0xe534008b, 0x645a0047, 0x00000000}},  //   _kata_, _вель, szti,\n  { {0xe1ff1acf, 0xe6930025, 0x4427000a, 0x00000000}},  //   rtó_, _الهد, _frn_,\n  { {0x291e0d56, 0x6f0411c5, 0xe1ff0211, 0x00000000}},  //   _mata_, ffic, stó_,\n  { {0x2f1805c7, 0x291e0036, 0x7bde05b7, 0x00000000}},  //   лось_, _lata_, dspu,\n  { {0x6b9b005b, 0xdb0e004a, 0x00000000, 0x00000000}},  // [3af0] _rhug, _cubí,   ,\n  { {0x6b9b000b, 0x291e0747, 0x6f1d010f, 0x00000000}},  //   _shug, _nata_, _wasc,\n  { {0xc17400b6, 0x6f1d11dc, 0xb60501d9, 0x00000000}},  //   _לחץ_, _tasc, _zašč,\n  { {0xfbd0007a, 0x4c94007c, 0x00000000, 0x00000000}},  //   ستم_, щихс,   ,\n  { {0x291e0b9a, 0x673b012d, 0x00000000, 0x00000000}},  //   _bata_, vjuj,   ,\n  { {0xed51026c, 0xd6d90046, 0x291e0035, 0x00000000}},  //   _بھر_, wał_, _cata_,\n  { {0x6b9b0051, 0xd6d90036, 0x9835007e, 0x00000000}},  //   _thug, tał_, рэлі,\n  { {0x5ba40783, 0x680a006b, 0x6b9b00e0, 0x00000000}},  //   _груз, _bədb, _uhug,\n  { {0x291e000d, 0x7afb0022, 0xd6d90036, 0x00000000}},  //   _fata_, _icut, rał_,\n  { {0x056502be, 0xd6d90046, 0x291e001a, 0x00000000}},  //   рвон, sał_, _gata_,\n  { {0x2815007a, 0x00000000, 0x00000000, 0x00000000}},  //   _خواس,   ,   ,\n  { {0x25ee0061, 0xb6050ed9, 0x25ae1ad0, 0x00000000}},  //   _आमची_, _pašč, _eifl_,\n  { {0x291e011c, 0xeb3a0049, 0xbb3a0049, 0x00000000}},  //   _yata_, דערש, דערי,\n  { {0x64a50816, 0xdb150065, 0x00000000, 0x00000000}},  //   _кала, _buzë,   ,\n  { {0x44271ad1, 0xdb1c000c, 0x3f47006c, 0x00000000}},  //   _urn_, _strí, _nõus_,\n  { {0xcc36026c, 0x6d551ad2, 0x6e241ad3, 0x00000000}},  //   یراع, _alza, tvib,\n  { {0x6f041ad2, 0xdc3c00ca, 0x4d66007e, 0x00000000}},  // [3b00] rfic, ršča, акав,\n  { {0x6f0400d4, 0x7afb0835, 0x6e24004a, 0x00000000}},  //   sfic, _acut, rvib,\n  { {0x291e04d4, 0x60dc19d5, 0x3dc90058, 0x00000000}},  //   _rata_, marm, apaw_,\n  { {0x60dc0207, 0x291e0091, 0x7bde000c, 0x00000000}},  //   larm, _sata_, rspu,\n  { {0x291e0f87, 0xda630954, 0x00000000, 0x00000000}},  //   _pata_, овци,   ,\n  { {0x60dc000c, 0x07e6003b, 0x00000000, 0x00000000}},  //   narm, ацим,   ,\n  { {0xa8a3005e, 0x8c460517, 0x25ae0087, 0x00000000}},  //   орък, _теве, _rifl_,\n  { {0x60dc01a3, 0xab740014, 0xdb07000c, 0x00000000}},  //   harm, _انرژ, _stjö,\n  { {0x291e023a, 0x60dc014a, 0x00000000, 0x00000000}},  //   _tata_, karm,   ,\n  { {0x60dc1ad4, 0xe4a6007c, 0x00000000, 0x00000000}},  //   jarm, ирно,   ,\n  { {0x332004bd, 0x60dc0027, 0xd49a005e, 0x00000000}},  //   _baix_, darm, ъри_,\n  { {0x680a005f, 0x3d06006e, 0x60d71ad5, 0x00000000}},  //   _tədb, स्ते_, _sexm,\n  { {0x60c20035, 0x98be000a, 0x00000000, 0x00000000}},  //   _şoma, _lotč_,   ,\n  { {0xa187008b, 0x224b0039, 0x51870878, 0x00000000}},  //   рымл, ryck_, рума,\n  { {0x656f009d, 0x657d0010, 0x00000000, 0x00000000}},  //   èche, éshe,   ,\n  { {0xa857009b, 0x64470052, 0x00000000, 0x00000000}},  //   בילה_, äjie,   ,\n  { {0x23690f5c, 0x60dc002d, 0x60d71ad6, 0x00000000}},  // [3b10] _imaj_, barm, _texm,\n  { {0x60dc1ad7, 0x7afb001a, 0x6144003b, 0x00000000}},  //   carm, _scut, _мења,\n  { {0x92d90044, 0x5ba7007e, 0x00000000, 0x00000000}},  //   ালী_, ардз,   ,\n  { {0x3dc9002b, 0x98be000a, 0x00000000, 0x00000000}},  //   ppaw_, _dotč_,   ,\n  { {0xbf3601f8, 0x00000000, 0x00000000, 0x00000000}},  //   _הארץ_,   ,   ,\n  { {0x2bd900a6, 0xdcfc0036, 0x3f47006c, 0x00000000}},  //   _مارک_, _okrę, _tõus_,\n  { {0x3158009b, 0x23690173, 0x00000000, 0x00000000}},  //   שיון_, _omaj_,   ,\n  { {0x27e90119, 0x7afb0521, 0x32020062, 0x00000000}},  //   čan_, _ucut, ytky_,\n  { {0xd4d90099, 0x80dd0044, 0x387e1ad8, 0x00000000}},  //   льні_, _বান্, _extr_,\n  { {0x60dc006b, 0x4535034b, 0x69cb01c3, 0x00000000}},  //   xarm, схит, mpge,\n  { {0xb8950025, 0x60dc0030, 0x2b9c0802, 0x00000000}},  //   _الاع, varm, síce_,\n  { {0x60dc1ad9, 0x21211ada, 0x63b801ed, 0x00000000}},  //   warm, _aahh_, _duvn,\n  { {0xa50906b6, 0xdb1c0036, 0x212100f6, 0x00000000}},  //   _бела_, _zwró, _bahh_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x03a6025f, 0x60dc0211, 0x32020161, 0x00000000}},  //   _лико, rarm, stky_,\n  { {0x60dc008e, 0xd007012b, 0x39450058, 0x00000000}},  //   sarm, љете_, _lols_,\n  { {0x60dc0095, 0xf1bf076d, 0x00000000, 0x00000000}},  // [3b20] parm, lván_,   ,\n  { {0xc6920097, 0x61e40095, 0x51f700a1, 0x00000000}},  //   לאן_, _ivil, _اسٹر,\n  { {0xdb1c029d, 0x61e402cc, 0xbc6a03ec, 0x00000000}},  //   _atrá, _hvil, دمان_,\n  { {0x7bc300d4, 0x61e40635, 0x39450026, 0x00000000}},  //   ínua, _kvil, _aols_,\n  { {0x21210022, 0x88cf0044, 0x00000000, 0x00000000}},  //   _yahh_, _রাজক,   ,\n  { {0x39450f36, 0xdb1c0048, 0x636f0173, 0x00000000}},  //   _cols_, _dtrá, _kònè,\n  { {0xa3f208b7, 0x3945000a, 0x2b440087, 0x00000000}},  //   _জন্য_, _dols_, _tomc_,\n  { {0x61e40c43, 0xb8ef006e, 0x00000000, 0x00000000}},  //   _ovil, _व्_,   ,\n  { {0xdcfc0036, 0x00000000, 0x00000000, 0x00000000}},  //   _skrę,   ,   ,\n  { {0xb9960054, 0x394509f7, 0xc7b80521, 0x00000000}},  //   _الطب, _gols_, _tuđ_,\n  { {0x61e41adb, 0xdb1c01dc, 0x290c0066, 0x00000000}},  //   _avil, _ztrá, _ibda_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xc69600a1, 0x926b00ed, 0x61e41adc, 0x00000000}},  //   _اشاع, урна_, _cvil,\n  { {0x92d90055, 0xd258007e, 0x602300b9, 0x00000000}},  //   ালে_, сцю_, jímá,\n  { {0xf484007a, 0x00000000, 0x00000000, 0x00000000}},  //   _باشی,   ,   ,\n  { {0xe7f00316, 0x61ef1add, 0x3d06006e, 0x00000000}},  //   _घटना_, prcl, स्से_,\n  { {0x7bc70ade, 0x93bc0035, 0x20030925, 0x00000000}},  // [3b30] _stju, zvăl, stji_,\n  { {0x6ca70745, 0xd04e013f, 0x00000000, 0x00000000}},  //   бреж, habə,   ,\n  { {0xdb1c1ade, 0xd25101ef, 0x61e4045d, 0x00000000}},  //   _strá, _رنگ_, _zvil,\n  { {0x3945153c, 0x33fb0049, 0x6bd40025, 0x00000000}},  //   _sols_, רהאנ, ستمر,\n  { {0x39450129, 0xd9451adf, 0x00000000, 0x00000000}},  //   _pols_, жели,   ,\n  { {0x680a006b, 0x00000000, 0x00000000, 0x00000000}},  //   _səda,   ,   ,\n  { {0x39451ae0, 0xf99000b8, 0x68e80142, 0x00000000}},  //   _vols_, ربه_, _dddd,\n  { {0x290c01d5, 0x9b58004c, 0x6d470211, 0x00000000}},  //   _ebda_, _лист_, _hoja,\n  { {0x6d4700f5, 0x857900ed, 0x6b8b01f4, 0x00000000}},  //   _koja, исот_, mogg,\n  { {0x6b8b0fcf, 0xe5690d03, 0xf1bf0010, 0x00000000}},  //   logg, риод_, tván_,\n  { {0x61e40198, 0x6d470142, 0x03a60072, 0x00000000}},  //   _svil, _moja, жино,\n  { {0x6d470181, 0x6b8b0007, 0x9655005e, 0x00000000}},  //   _loja, nogg, _мълч,\n  { {0x84e51ae1, 0x057402fd, 0xf1bf1ae2, 0x00000000}},  //   _долж, _کاند, sván_,\n  { {0x412a0805, 0x6d470778, 0x28cf0164, 0x00000000}},  //   шого_, _noja, _स्मि,\n  { {0x7ae90107, 0x06ae0044, 0x752300e7, 0x00000000}},  //   _odet, ছুদি, _ianz,\n  { {0x75231ae3, 0x7ae90061, 0x61e405fe, 0x00000000}},  //   _hanz, _ndet, _tvil,\n  { {0x75231515, 0xee3a0113, 0x92e9057d, 0x00000000}},  // [3b40] _kanz, шна_, _طريق_,\n  { {0x3d1403d7, 0x7c9600d7, 0x75230032, 0x00000000}},  //   ड़ें_, орец, _janz,\n  { {0x752310ea, 0x6d470874, 0x3a2d0022, 0x00000000}},  //   _manz, _doja, _arep_,\n  { {0x75230211, 0xeb970057, 0xddd60036, 0x00000000}},  //   _lanz, оих_, rzył,\n  { {0x6a1605f3, 0xc9aa0e82, 0x49a6025f, 0x00000000}},  //   تبار, авде_, ојка,\n  { {0xed5a012b, 0xe9180451, 0x7ae903b6, 0x00000000}},  //   _тог_, сокі_, _edet,\n  { {0xd7f00025, 0xfc030679, 0x69c900b0, 0x00000000}},  //   ركة_, _опро, _etee,\n  { {0x75231ae4, 0xdb1c0dba, 0x798a0022, 0x00000000}},  //   _aanz, _stræ, sofw,\n  { {0x7523097e, 0x3a2d02e1, 0xd04e006b, 0x00000000}},  //   _banz, _grep_, rabə,\n  { {0x70b9001c, 0x75230207, 0x98a600d7, 0x00000000}},  //   _आलेल, _canz, _дизе,\n  { {0x75231ad2, 0x00000000, 0x00000000, 0x00000000}},  //   _danz,   ,   ,\n  { {0x80dd0044, 0x7c2e0087, 0xd04e006b, 0x00000000}},  //   _বাধ্, _mrbr, qabə,\n  { {0xa2bc013d, 0x00000000, 0x00000000, 0x00000000}},  //   _एलर्,   ,   ,\n  { {0x7523001f, 0x3d14013d, 0x1a9b0049, 0x00000000}},  //   _ganz, ड़ों_, ייכע,\n  { {0x6d470211, 0x20990783, 0x4f6b00e2, 0x00000000}},  //   _roja, сквы_, ашам_,\n  { {0x7523000b, 0x6d470145, 0x1fa4007c, 0x00000000}},  //   _zanz, _soja, друг,\n  { {0x7c2e0fdb, 0x3eaf010f, 0x5d5500e3, 0x00000000}},  // [3b50] _arbr, ägt_, пкат,\n  { {0xdd9101b7, 0x442e00ea, 0x80f50783, 0x00000000}},  //   روا_, _krf_, _эпох,\n  { {0x5b15005e, 0x6d4702b2, 0x69c91aaf, 0x00000000}},  //   змет, _voja, _stee,\n  { {0x501a00b6, 0x442e0203, 0x3a2d0133, 0x00000000}},  //   _פורו, _mrf_, _prep_,\n  { {0x7f3a00b3, 0x6b8b01d6, 0x7c2e010f, 0x00000000}},  //   _הערו, rogg, _erbr,\n  { {0x6d5e010f, 0xf77102fd, 0x6b8b0197, 0x00000000}},  //   chpa, کات_, sogg,\n  { {0x6b8b0207, 0x00000000, 0x00000000, 0x00000000}},  //   pogg,   ,   ,\n  { {0x75230207, 0x3a2d016c, 0x657a1ae5, 0x00000000}},  //   _sanz, _trep_, enth,\n  { {0x28cf02fb, 0x7523138a, 0x443e0061, 0x00000000}},  //   _स्थि, _panz, ext_,\n  { {0x442e00f8, 0x00000000, 0x00000000, 0x00000000}},  //   _brf_,   ,   ,\n  { {0x7523000d, 0xb97a007b, 0xccf20049, 0x00000000}},  //   _vanz, _פרעז, עכט_,\n  { {0x889a009b, 0x63760059, 0x442e1408, 0x00000000}},  //   _הבעי, kšne, _drf_,\n  { {0x7523000b, 0xd25200a1, 0x442e0d1a, 0x00000000}},  //   _tanz, رنس_, _erf_,\n  { {0x442e175f, 0x752300e7, 0x3eb90022, 0x00000000}},  //   _frf_, _uanz, _agst_,\n  { {0x8fa6005e, 0x00000000, 0x00000000, 0x00000000}},  //   заве,   ,   ,\n  { {0x9f580023, 0x00000000, 0x00000000, 0x00000000}},  //   murë_,   ,   ,\n  { {0x2ee0002a, 0x63a41ae6, 0x31710668, 0x00000000}},  // [3b60] raif_, _ihin, bizz_,\n  { {0x6f0f0061, 0xceb4006b, 0x61e600eb, 0x00000000}},  //   _ebcc, ddət_, mskl,\n  { {0xa3de0316, 0x63a40082, 0x61e600f8, 0x00000000}},  //   दीप_, _khin, lskl,\n  { {0xeb9a0057, 0x6d5e07af, 0x0b4607d0, 0x00000000}},  //   щие_, shpa, янен,\n  { {0x61e60039, 0xf8b000a1, 0x63a41ae7, 0x00000000}},  //   nskl, چکا_, _mhin,\n  { {0xe894085f, 0xdb1c0a5d, 0x9f580023, 0x00000000}},  //   маль, _strä, kurë_,\n  { {0x55f80055, 0xdca60072, 0xab2a142c, 0x00000000}},  //   _অনেক_, _хави, _лова_,\n  { {0x963402a8, 0x442e0288, 0x61e60203, 0x00000000}},  //   дниц, _rrf_, kskl,\n  { {0xbb3b00b6, 0x80dd0055, 0x442e00fa, 0x00000000}},  //   _פעמי, _বাস্, _srf_,\n  { {0x443e1ae8, 0x442e00c4, 0x63a4107b, 0x00000000}},  //   txt_, _prf_, _ahin,\n  { {0xb4bc006e, 0x63a41ae9, 0x9f580023, 0x00000000}},  //   _अली_, _bhin, gurë_,\n  { {0x63a403ef, 0x7ae20020, 0x442e0a5e, 0x00000000}},  //   _chin, naot, _vrf_,\n  { {0x46a31aea, 0x61e600f8, 0x442e0288, 0x00000000}},  //   _зацв, gskl, _wrf_,\n  { {0x442e00c4, 0x64740140, 0x6d4a0abc, 0x00000000}},  //   _trf_, _оглу, öfal,\n  { {0x403401bd, 0xd5a5007a, 0x3171002b, 0x00000000}},  //   нерс, _تلوی, rizz_,\n  { {0x63a40fff, 0x6d5c16fa, 0xa2de0061, 0x00000000}},  //   _ghin, _alra, परण्,\n  { {0xceb4006b, 0x442c06d3, 0x00000000, 0x00000000}},  // [3b70] ddəs_, lvd_,   ,\n  { {0x6ca7005e, 0x00000000, 0x00000000, 0x00000000}},  //   преж,   ,   ,\n  { {0x8c190426, 0xdb1c0023, 0x00000000, 0x00000000}},  //   تيار_, _gurë,   ,\n  { {0x63a40023, 0x6d5c0232, 0x00000000, 0x00000000}},  //   _xhin, _elra,   ,\n  { {0x539c009b, 0x81df0044, 0x6f0d03cd, 0x00000000}},  //   זיאו, দূর_, mfac,\n  { {0x6f0d1aeb, 0xceb201ce, 0x34db006e, 0x00000000}},  //   lfac, _שיך_, _मजेद,\n  { {0x29c20359, 0xdb1c1aec, 0xb8e5006e, 0x00000000}},  //   _eða_, _strå, _एल_,\n  { {0x6f0d001f, 0x8038009b, 0x6d4502e1, 0x00000000}},  //   nfac, לנוע_, ljha,\n  { {0x63a40675, 0x629a0036, 0x09d70044, 0x00000000}},  //   _rhin, ętok, _সমকা,\n  { {0xe576008b, 0x63a403ef, 0x9f580065, 0x00000000}},  //   дзь_, _shin, turë_,\n  { {0xceb4005f, 0x63a41aed, 0x60de0087, 0x00000000}},  //   ndər_, _phin, _repm,\n  { {0xe29a0fc0, 0x68e31aee, 0x61e601a2, 0x00000000}},  //   жам_, land, tskl,\n  { {0xa3b902fb, 0x27e00166, 0x6f0d1445, 0x00000000}},  //   _अंक_, ćine_, dfac,\n  { {0x10a61123, 0x61e61aef, 0x66091af0, 0x00000000}},  //   дигн, rskl, mtek,\n  { {0x63a40038, 0x6609000c, 0x6f0d0af2, 0x00000000}},  //   _thin, ltek, ffac,\n  { {0x7e7b1af1, 0x67290211, 0x9f580129, 0x00000000}},  //   _župa, ndej, ltrú_,\n  { {0x80dd0055, 0xe3a70167, 0xdd921095, 0x00000000}},  // [3b80] _বার্, _تشوی, نور_,\n  { {0x68e30004, 0x6609156a, 0x67291af2, 0x00000000}},  //   jand, itek, hdej,\n  { {0x68e30073, 0x7e641af3, 0x7ae2006c, 0x00000000}},  //   dand, szip, taot,\n  { {0x672900ca, 0x25ee006e, 0xddc61af4, 0x00000000}},  //   jdej, _इटली_, _обми,\n  { {0x68e3000c, 0x6729002b, 0x0eea0061, 0x00000000}},  //   fand, ddej, टणीस_,\n  { {0x68e3006a, 0x6da600aa, 0x66090056, 0x00000000}},  //   gand, _цига, dtek,\n  { {0xfbc3053f, 0x2bf5007e, 0xd794005e, 0x00000000}},  //   _абсо, _пятр, никъ,\n  { {0xdca3025f, 0x1f5b0049, 0x61e91af5, 0x00000000}},  //   _раси, ַדיא, šeli,\n  { {0x68e30f42, 0x66090047, 0xf8cf007d, 0x00000000}},  //   band, gtek, _स्वय,\n  { {0x68e300d6, 0x7afd0039, 0x7ae000f8, 0x00000000}},  //   cand, _östr, _hemt,\n  { {0x69c00142, 0x291c003b, 0xdb1c09af, 0x00000000}},  //   _hume, meva_, _auré,\n  { {0x291c0ac2, 0x69c00020, 0x00000000, 0x00000000}},  //   leva_, _kume,   ,\n  { {0x69c000f4, 0x394c0089, 0x7ae000d2, 0x00000000}},  //   _jume, _kods_, _memt,\n  { {0x291c000d, 0x69c01ac6, 0xceb4005f, 0x00000000}},  //   neva_, _mume, ydər_,\n  { {0x69c0000d, 0x6f0d09b0, 0x00000000, 0x00000000}},  //   _lume, tfac,   ,\n  { {0x69c00a20, 0x291c0023, 0x394c0146, 0x00000000}},  //   _oume, heva_, _lods_,\n  { {0x68e3006b, 0x6f0d030a, 0x7bce1af6, 0x00000000}},  // [3b90] yand, rfac, _atbu,\n  { {0x291c0119, 0x61fd0ac2, 0x4fc700ed, 0x00000000}},  //   jeva_, musl, _осма,\n  { {0x68e30073, 0x69c01af7, 0x291c0059, 0x00000000}},  //   vand, _aume, deva_,\n  { {0x68e31af8, 0xe7f40061, 0x395e00d4, 0x00000000}},  //   wand, ींना_, _alts_,\n  { {0xe9d8007e, 0x7ae00065, 0x395e000a, 0x00000000}},  //   дкі_, _demt, _blts_,\n  { {0x69c00058, 0x291c1af9, 0x33290026, 0x00000000}},  //   _dume, geva_, _laax_,\n  { {0x7ae01afa, 0x69c000ea, 0xa7b50184, 0x00000000}},  //   _femt, _eume, нсиј,\n  { {0x68e30004, 0x69c003e2, 0x6609006c, 0x00000000}},  //   sand, _fume, ttek,\n  { {0x68e30f59, 0xe6160a78, 0x67291afb, 0x00000000}},  //   pand, еды_, rdej,\n  { {0x6609022b, 0x291c1028, 0x7bc800f4, 0x00000000}},  //   rtek, ceva_, _éduc,\n  { {0x6609022b, 0x9f58009d, 0xdb1c009d, 0x00000000}},  //   stek, suré_, _suré,\n  { {0x68e11afc, 0x660903e3, 0xdb1c009d, 0x00000000}},  //   _held, ptek, _puré,\n  { {0x61fd006c, 0x7e7b1afd, 0x68e1006c, 0x00000000}},  //   gusl, _župn, _keld,\n  { {0x2b5f00d4, 0x00000000, 0x00000000, 0x00000000}},  //   _lluc_,   ,   ,\n  { {0x68e11afe, 0x03960ae0, 0x00000000, 0x00000000}},  //   _meld, _прия,   ,\n  { {0x20050129, 0x61fd1a6f, 0x00000000, 0x00000000}},  //   àlia_, busl,   ,\n  { {0xc7b200a3, 0x291c006b, 0xdee1007e, 0x00000000}},  // [3ba0] רבן_, yeva_, русi_,\n  { {0x69c00059, 0x68e11aff, 0x8d7601b7, 0x00000000}},  //   _rume, _neld, راءا,\n  { {0xdee60057, 0x69c01b00, 0x394c0857, 0x00000000}},  //   _пони, _sume, _rods_,\n  { {0x6d430894, 0x394c01c5, 0x3f820023, 0x00000000}},  //   önar, _sods_, _ujku_,\n  { {0x291c000d, 0x68e11b01, 0xdb00008e, 0x00000000}},  //   teva_, _beld, _simó,\n  { {0x680a006b, 0x68e1008e, 0xdb0000f6, 0x00000000}},  //   _hədi, _celd, _cimò,\n  { {0x291c0020, 0xdca3003b, 0x7bce0039, 0x00000000}},  //   reva_, _бари, _utbu,\n  { {0x69c0000b, 0x6d4e1b02, 0x291c1b03, 0x00000000}},  //   _tume, _hoba, seva_,\n  { {0x68e10461, 0x6d4e04eb, 0x394c1b04, 0x00000000}},  //   _feld, _koba, _tods_,\n  { {0x68e108a5, 0x6d4e0c53, 0x25a70009, 0x00000000}},  //   _geld, _joba, _chnl_,\n  { {0x6d4e025e, 0x236000b5, 0x24980030, 0x00000000}},  //   _moba, _blij_, ærm_,\n  { {0x68e100b5, 0x61fd03b6, 0x680a006b, 0x00000000}},  //   _zeld, tusl, _nədi,\n  { {0x3f800036, 0x00000000, 0x00000000, 0x00000000}},  //   dniu_,   ,   ,\n  { {0x3f800036, 0x6d4e1b05, 0x61fd01a3, 0x00000000}},  //   eniu_, _noba, rusl,\n  { {0x7d1e1b06, 0x680a006b, 0x61fd1b07, 0x00000000}},  //   deps, _bədi, susl,\n  { {0x5f940069, 0x2d870059, 0xc49b009b, 0x00000000}},  //   гист, čnem_, _משות,\n  { {0x6d4e0091, 0x2b9c00b9, 0x00000000, 0x00000000}},  // [3bb0] _boba, mích_,   ,\n  { {0x6d4e1b08, 0x2b9c0802, 0x61ed0052, 0x00000000}},  //   _coba, lích_, _ival,\n  { {0x61ed016c, 0x6d4e0119, 0x614400ed, 0x00000000}},  //   _hval, _doba, _сеќа,\n  { {0x68e1000c, 0x2b9c0224, 0x00000000, 0x00000000}},  //   _seld, ních_,   ,\n  { {0xaa580175, 0x68e10089, 0xe1ff008e, 0x00000000}},  //   ницу_, _peld, nuó_,\n  { {0x6d4e0016, 0x7d1e0b4a, 0x61ed00f6, 0x00000000}},  //   _goba, ceps, _mval,\n  { {0x61ed001c, 0x7c8400e2, 0x0138009b, 0x00000000}},  //   _lval, _буте, תרות_,\n  { {0x6d4e0046, 0x2b9c0802, 0x68e100fe, 0x00000000}},  //   _zoba, jích_, _weld,\n  { {0x27e00091, 0x68e103fb, 0x59f8073b, 0x00000000}},  //   ćina_, _teld, _петя_,\n  { {0xdb1c01e3, 0x38cb0478, 0xe1ff004a, 0x00000000}},  //   _strø, _хуан_, duó_,\n  { {0x61ed1b09, 0x3f800a62, 0x00000000, 0x00000000}},  //   _aval, yniu_,   ,\n  { {0x2cb0006b, 0xe1ff0efe, 0x7d1e013e, 0x00000000}},  //   ündə_, rzón_, zeps,\n  { {0x2d870027, 0x98a50173, 0x00000000, 0x00000000}},  //   čnej_, _malč_,   ,\n  { {0x61ed000c, 0x00000000, 0x00000000, 0x00000000}},  //   _dval,   ,   ,\n  { {0xdee60bbd, 0x6d4e0919, 0x2d931b0a, 0x00000000}},  //   кови, _roba, doxe_,\n  { {0x2b9c01c8, 0x6d4e010f, 0x680a006b, 0x00000000}},  //   cích_, _soba, _qədi,\n  { {0x6d4e002a, 0x672b0065, 0x44271624, 0x00000000}},  // [3bc0] _poba, _magj, _hsn_,\n  { {0x672b0065, 0x3f800006, 0x4d631b0b, 0x00000000}},  //   _lagj, sniu_, акув,\n  { {0x6faa012b, 0xfbc3008b, 0x61ed0091, 0x00000000}},  //   _овог_, абхо, _zval,\n  { {0x7d1e1b0c, 0x4427114e, 0x00000000, 0x00000000}},  //   seps, _msn_,   ,\n  { {0x44270022, 0x6d4e0122, 0xa96a00d7, 0x00000000}},  //   _lsn_, _toba, мида_,\n  { {0x6f040142, 0x38c800a6, 0x2b9c00b9, 0x00000000}},  //   lgic, راتی_, zích_,\n  { {0xebe31ae1, 0x317b009b, 0x44270943, 0x00000000}},  //   _восп, ורסמ, _nsn_,\n  { {0x59dd013d, 0x6f0401ed, 0x00000000, 0x00000000}},  //   _नौकर, ngic,   ,\n  { {0x692601f9, 0xdb1c04f6, 0x44270145, 0x00000000}},  //   _имаа, _jurí, _asn_,\n  { {0x4427008a, 0x80b30061, 0x201a0052, 0x00000000}},  //   _bsn_, _आणले, _oppi_,\n  { {0x44271b0d, 0x31780009, 0x2b9c0062, 0x00000000}},  //   _csn_, dirz_, tích_,\n  { {0x1877009b, 0x6e240009, 0xe1ff008e, 0x00000000}},  //   _בעבר_, kwib, tuó_,\n  { {0x2b9c0af6, 0x201a006c, 0x680a006b, 0x00000000}},  //   rích_, _appi_, _cədv,\n  { {0x6b821b0e, 0x44270035, 0x660004cb, 0x00000000}},  //   hnog, _fsn_, mumk,\n  { {0xa184008b, 0x4427012d, 0x6366000c, 0x00000000}},  //   рыял, _gsn_, _bónd,\n  { {0x6f040026, 0x6366004a, 0x00000000, 0x00000000}},  //   ggic, _cónd,   ,\n  { {0x63660211, 0x6b820091, 0xdbca006c, 0x00000000}},  // [3bd0] _dónd, dnog, _mõõt,\n  { {0x7c3a09fc, 0x80dd0044, 0x6366008e, 0x00000000}},  //   _štra, _বাক্, _póng,\n  { {0x6b82018e, 0xdb1c1b0f, 0x44270026, 0x00000000}},  //   fnog, _eurí, _xsn_,\n  { {0x4ea7008b, 0xfe70026c, 0x636606c2, 0x00000000}},  //   _арга, حدہ_, _gónd,\n  { {0x4efa00a0, 0x00000000, 0x00000000, 0x00000000}},  //   _אהרו,   ,   ,\n  { {0x7762027b, 0xdb1c0035, 0x2ee9054c, 0x00000000}},  //   _alox, _curâ, laaf_,\n  { {0x77620288, 0x672b0023, 0x17b900e2, 0x00000000}},  //   _blox, _pagj, нѓиќ_,\n  { {0x6c3100a1, 0x07090076, 0x56290140, 0x00000000}},  //   _پہچا, ريخي_, ежим_,\n  { {0x25600026, 0x22590190, 0x66001b10, 0x00000000}},  //   _sòla_, jysk_, gumk,\n  { {0x2ee90007, 0x4e360049, 0x00000000, 0x00000000}},  //   haaf_, אָטן_,   ,\n  { {0x672b0010, 0xa3e9007e, 0x00000000, 0x00000000}},  //   _tagj, эдна_,   ,\n  { {0xe6110014, 0x77620026, 0x67200243, 0x00000000}},  //   _هشت_, _glox, cemj,\n  { {0x26cd0026, 0x06b10044, 0x36341125, 0x00000000}},  //   mceo_, _ট্রি, _پرنس,\n  { {0x6e200181, 0xa50900ed, 0x442700e7, 0x00000000}},  //   _âmbi, _чека_, _tsn_,\n  { {0xb4df0201, 0x44270c6a, 0x2b9c01dc, 0x00000000}},  //   तरी_, _usn_, síci_,\n  { {0x80d4007d, 0x26cd0249, 0x6e240045, 0x00000000}},  //   _ब्रे, nceo_, twib,\n  { {0x22461355, 0x8fa30769, 0xe1f203ec, 0x00000000}},  // [3be0] _çok_, сате, _اسب_,\n  { {0x8c4605a7, 0x636600f6, 0x67200089, 0x00000000}},  //   лезе, _dóne, zemj,\n  { {0x201a000c, 0x44250016, 0xc3270044, 0x00000000}},  //   _uppi_, nwl_, যারি_,\n  { {0xdb1c1b11, 0xe513006e, 0x67d10089, 0x00000000}},  //   _turí, त्ति_, _mājd,\n  { {0x6b8205bd, 0x32020027, 0xf1bf0d81, 0x00000000}},  //   rnog, nuky_, lvár_,\n  { {0x75210010, 0x6b82016e, 0x082a01ab, 0x00000000}},  //   jelz, snog, еции_,\n  { {0x8d6301c0, 0x75210270, 0xcb6a004d, 0x00000000}},  //   _увре, delz, _заве_,\n  { {0x998d001a, 0x66000089, 0x1754005e, 0x00000000}},  //   _preţ_, tumk, рвия,\n  { {0xfaa3007e, 0xe4e603e8, 0x672015d3, 0x00000000}},  //   _гато, лінн, remj,\n  { {0x80d40316, 0x7521054e, 0x67201b12, 0x00000000}},  //   _ब्ले, gelz, semj,\n  { {0x0d97009b, 0x9f58008e, 0xcd9700a0, 0x00000000}},  //   רכים_, ntró_, רדית_,\n  { {0x78a80091, 0x5c370049, 0x439502ea, 0x00000000}},  //   _izdv, ארטן_, рамс,\n  { {0xa77b007b, 0x75211b13, 0xc7b80082, 0x00000000}},  //   _אראפ, belz, _vpđd_,\n  { {0x047500a1, 0x44250016, 0x998d0087, 0x00000000}},  //   ائیگ, bwl_, _kreš_,\n  { {0xe3b001ef, 0x6568002a, 0x657a0051, 0x00000000}},  //   تری_, mhdh, mith,\n  { {0x657a0051, 0xaf371b14, 0x82391b15, 0x00000000}},  //   lith, درست, _азис_,\n  { {0x645a0056, 0xccfb012b, 0x63ad1b16, 0x00000000}},  // [3bf0] lyti, еће_, _ihan,\n  { {0x657a002a, 0x637601d9, 0x81e80044, 0x00000000}},  //   nith, jšnj, মূহ_,\n  { {0x63ad1b17, 0x2ca70945, 0x645a1b18, 0x00000000}},  //   _khan, ånd_, nyti,\n  { {0xbe05026c, 0x657a0051, 0x5a3500ed, 0x00000000}},  //   _پوسٹ, hith, инет,\n  { {0x20031b19, 0x63ad096a, 0x61ef1b1a, 0x00000000}},  //   luji_, _mhan, nscl,\n  { {0x657a008d, 0x645a1b1b, 0xdb1c00d4, 0x00000000}},  //   jith, kyti, _eurà,\n  { {0x3158019b, 0x657a1b1c, 0x2011002d, 0x00000000}},  //   ריון_, dith, ntzi_,\n  { {0x63ad001d, 0x7bd5022b, 0x645a0006, 0x00000000}},  //   _nhan, _itzu, dyti,\n  { {0x7bc71b1d, 0x7aeb1b1e, 0x7b640081, 0x00000000}},  //   _huju, magt, _утре,\n  { {0x7bc71448, 0x63ad1786, 0x200300b9, 0x00000000}},  //   _kuju, _ahan, kuji_,\n  { {0x64a51963, 0x7bc7033b, 0x63ad0051, 0x00000000}},  //   рана, _juju, _bhan,\n  { {0x63ad15a4, 0x7aeb011c, 0x7bc71b1f, 0x00000000}},  //   _chan, nagt, _muju,\n  { {0x63ad1b20, 0x69d901aa, 0x7bc70621, 0x00000000}},  //   _dhan, npwe, _luju,\n  { {0x63ad1b21, 0x29070332, 0xbdfd0044, 0x00000000}},  //   _ehan, ngna_, ুবাদ_,\n  { {0x6b9b0009, 0xafe60088, 0xd4660088, 0x00000000}},  //   _okug, робл, _вище_,\n  { {0x6b890295, 0x63ad1659, 0x7c3a050f, 0x00000000}},  //   _njeg, _ghan, _štro,\n\n  { {0x539b1aac, 0x7aeb0343, 0xf1bf0344, 0x00000000}},  // [3c00] _ביקו, dagt, rvár_,\n  { {0x7bc71b22, 0x200300b9, 0x61e40026, 0x00000000}},  //   _buju, buji_, _iwil,\n  { {0x80dd0044, 0x1c39007e, 0x6d5e006c, 0x00000000}},  //   _বাচ্, ляць_, rkpa,\n  { {0x6d5e006c, 0x63ad0023, 0x61e401c3, 0x00000000}},  //   skpa, _xhan, _kwil,\n  { {0x9f580211, 0x6b890065, 0xdb1c1b23, 0x00000000}},  //   stró_, _djeg, _stró,\n  { {0x61e40020, 0x28f7007c, 0xdb1c0b33, 0x00000000}},  //   _mwil, аешь_, _durá,\n  { {0x637608de, 0xdb0000c4, 0x478a005c, 0x00000000}},  //   ršnj, _simõ, ксим_,\n  { {0x7aeb001c, 0x2ca7085e, 0x657a005b, 0x00000000}},  //   cagt, ünde_, with,\n  { {0x63ad018e, 0x657a0051, 0xb90e0011, 0x00000000}},  //   _rhan, tith, _xalộ_,\n  { {0xa906007a, 0x7bc01b24, 0x63bf006b, 0x00000000}},  //   _خبرن, _himu, _siqn,\n  { {0x657a002a, 0x4438049a, 0x7bc01b25, 0x00000000}},  //   rith, ír_, _kimu,\n  { {0x68e81b26, 0x645a1b27, 0x657a0051, 0x00000000}},  //   _hedd, ryti, sith,\n  { {0x657a03b0, 0x7c3a050f, 0x61fd0112, 0x00000000}},  //   pith, _štrl, ursl,\n  { {0x68e81b28, 0x7bc0016e, 0x7e6d0059, 0x00000000}},  //   _jedd, _limu, vzap,\n  { {0x68e81b29, 0x63ad1b2a, 0xdb1e00b9, 0x00000000}},  //   _medd, _than, _švýc,\n  { {0x7bc00009, 0x2011002d, 0x68e80039, 0x00000000}},  //   _nimu, rtzi_, _ledd,\n  { {0x7bc70ecb, 0x7a1a0089, 0x68e80016, 0x00000000}},  // [3c10] _suju, nātā, _oedd,\n  { {0x7aeb1b2b, 0x6b9b141a, 0xab5d002b, 0x00000000}},  //   wagt, _skug, _miże,\n  { {0x63660047, 0x7bc00009, 0x6aa90036, 0x00000000}},  //   _hóna, _bimu, _szef,\n  { {0x41c4007a, 0x9f580197, 0x7e990014, 0x00000000}},  //   _دقیق, strò_, _منجر_,\n  { {0x7aeb018d, 0x7bc00169, 0x3d140164, 0x00000000}},  //   ragt, _dimu, न्हे_,\n  { {0x7bc70149, 0x98ac005a, 0x290c0022, 0x00000000}},  //   _tuju, _aldı_, _ccda_,\n  { {0x680a005f, 0x68e8018e, 0x7aeb011c, 0x00000000}},  //   _sədr, _dedd, pagt,\n  { {0xbb850054, 0x9b940088, 0x6b9b0009, 0x00000000}},  //   _الري, _дисц, _ukug,\n  { {0x68e8018e, 0x16390025, 0xa762005e, 0x00000000}},  //   _fedd, اسبة_, якъд,\n  { {0x68e81742, 0x7bc01b2c, 0x6d5501aa, 0x00000000}},  //   _gedd, _zimu, _joza,\n  { {0x6d55049c, 0xc7d9013b, 0xd05c006b, 0x00000000}},  //   _moza, _смех_, barə,\n  { {0x69c11b01, 0x6d41000c, 0xd05c006b, 0x00000000}},  //   _hile, _ólaf, carə,\n  { {0x7ae9109b, 0x63660051, 0xe1ff076b, 0x00000000}},  //   _meet, _cóna, gró_,\n  { {0x8636007b, 0x6d55001e, 0x7ae91487, 0x00000000}},  //   _לאנג_, _noza, _leet,\n  { {0xa0671b2d, 0x05740084, 0x201e06f0, 0x00000000}},  //   бара_, _باند, ïti_,\n  { {0x69c114fe, 0xa3e7007d, 0xe1ff008e, 0x00000000}},  //   _lile, मीण_, bró_,\n  { {0xee3a008b, 0x69c10051, 0x7bc00207, 0x00000000}},  // [3c20] ына_, _oile, _rimu,\n  { {0x7bc0006a, 0xd05c005f, 0x69c100ea, 0x00000000}},  //   _simu, zarə, _nile,\n  { {0xd5c8001d, 0x116804e1, 0xd05c005f, 0x00000000}},  //   _nền_, _ملکی_, yarə,\n  { {0x387a005f, 0x69c1014a, 0x68e81b2e, 0x00000000}},  //   _üzrə_, _aile, _sedd,\n  { {0xa3e70164, 0x00000000, 0x00000000, 0x00000000}},  //   मीत_,   ,   ,\n  { {0xdd9202fd, 0x69c1008d, 0x6d551b2f, 0x00000000}},  //   _روز_, _cile, _goza,\n  { {0x7bc004fa, 0x7ae901d6, 0x68e802e1, 0x00000000}},  //   _timu, _feet, _vedd,\n  { {0x2d9a1b30, 0x69c100b0, 0x68e81959, 0x00000000}},  //   lope_, _eile, _wedd,\n  { {0x69c11b31, 0x00000000, 0x00000000, 0x00000000}},  //   _file,   ,   ,\n  { {0x69c101a3, 0xd05c006b, 0x7ae9000a, 0x00000000}},  //   _gile, sarə, _zeet,\n  { {0x680a006b, 0xe60f02fd, 0xb8960025, 0x00000000}},  //   _tədq, وشی_, _الضع,\n  { {0x69c11b32, 0xf3670a85, 0x2d9a0253, 0x00000000}},  //   _zile, стон, hope_,\n  { {0xc797026c, 0x36360379, 0x86c30025, 0x00000000}},  //   _اپنا_, _دراس, _عيون,\n  { {0x69c100f6, 0x7c2e01c3, 0x00000000, 0x00000000}},  //   _xile, _osbr,   ,\n  { {0x67d10089, 0xe3c90082, 0x00000000, 0x00000000}},  //   _kāja, _hằn_,   ,\n  { {0x442e0946, 0x9ed9007c, 0x6d55012d, 0x00000000}},  //   _isf_, рмат_, _soza,\n  { {0x6d5501d9, 0x67d1001e, 0xa2a0007d, 0x00000000}},  // [3c30] _poza, _māja, _गुप्,\n  { {0x7ae9006c, 0x60c500e0, 0x2d9a00e7, 0x00000000}},  //   _seet, _ughm, gope_,\n  { {0x6d550363, 0x69c10207, 0x7ae90004, 0x00000000}},  //   _voza, _rile, _peet,\n  { {0xcf270014, 0x443c00fa, 0x80b50061, 0x00000000}},  //   _اردي, _mrv_, ंधीं,\n  { {0x69c1006c, 0x78a100f4, 0x7ae9006c, 0x00000000}},  //   _pile, _sylv, _veet,\n  { {0x7ae90328, 0xe1ff0036, 0x2d9a00e7, 0x00000000}},  //   _weet, szów_, cope_,\n  { {0xa2a0001c, 0x442e00d5, 0x69c11b33, 0x00000000}},  //   _गुन्, _nsf_, _vile,\n  { {0x3f89018e, 0xf77100f9, 0x09d80044, 0x00000000}},  //   nnau_, بات_, _সিরা,\n  { {0x14da0365, 0x69c1000c, 0x443c006c, 0x00000000}},  //   _म्हण, _tile, _arv_,\n  { {0x2bb90183, 0x442e0211, 0xe5791364, 0x00000000}},  //   ेदवा, _bsf_, рзо_,\n  { {0x6f1d001a, 0xa34a0072, 0x443c0145, 0x00000000}},  //   _obsc, азна_, _crv_,\n  { {0x443c1b34, 0x80a30061, 0x2bd0013d, 0x00000000}},  //   _drv_, _गरजे, _तूफा,\n  { {0xe796025a, 0x442e1093, 0x443c00f6, 0x00000000}},  //   _بالک, _esf_, _erv_,\n  { {0x6f1d001f, 0x3f890016, 0x443c000c, 0x00000000}},  //   _absc, enau_, _frv_,\n  { {0x659a00a0, 0x3f890016, 0x443c0d9b, 0x00000000}},  //   _דיסק, fnau_, _grv_,\n  { {0x6f0f0061, 0x20870088, 0x3f890544, 0x00000000}},  //   _cccc, ійти_, gnau_,\n  { {0xbea31b35, 0x27e00166, 0xee37007e, 0x00000000}},  // [3c40] датк, ćini_, онт_,\n  { {0x7c3c0145, 0x4c8602dc, 0x00000000, 0x00000000}},  //   _prrr, олзв,   ,\n  { {0x2d9a0549, 0x6f0f00fa, 0x00000000, 0x00000000}},  //   rope_, _fccc,   ,\n  { {0x6f0f001c, 0x8cda02d2, 0x3e7000f4, 0x00000000}},  //   _gccc, _प्रो, _côté_,\n  { {0x094a0ad9, 0xee37085f, 0xbddb0129, 0x00000000}},  //   ички_, _дня_, _crèd,\n  { {0x39450045, 0x9f4300ea, 0x00000000, 0x00000000}},  //   _cnls_, rsjå_,   ,\n  { {0xd90d0014, 0xf66a000c, 0x2ef90022, 0x00000000}},  //   ایم_, kvæð_, _ydsf_,\n  { {0x3b0709ae, 0x7bde00b0, 0x8b230184, 0x00000000}},  //   _месо_, mppu, _одсе,\n  { {0x442e0093, 0x443c1414, 0x598600ed, 0x00000000}},  //   _ssf_, _srv_, _длаб,\n  { {0xd6e20055, 0xece80044, 0x29180009, 0x00000000}},  //   _যাওয, _পাঁড, _ùra_,\n  { {0x3f89018e, 0x23691b36, 0x00000000, 0x00000000}},  //   ynau_, _plaj_,   ,\n  { {0x7ae20e9c, 0x443c0087, 0x00000000, 0x00000000}},  //   nbot, _vrv_,   ,\n  { {0x81d30055, 0xb5fd013e, 0x00000000, 0x00000000}},  //   হীন_, uzšt,   ,\n  { {0x443c00ca, 0x442e00c4, 0x386f0276, 0x00000000}},  //   _trv_, _tsf_, _ömrü_,\n  { {0xd5c8001d, 0x443c1374, 0xd24e0167, 0x00000000}},  //   _mềm_, _urv_, نچی_,\n  { {0xa85700b3, 0xd5b80089, 0x75281b37, 0x00000000}},  //   חילה_, lmā_, ledz,\n  { {0x3f890016, 0x7ae20126, 0x00000000, 0x00000000}},  // [3c50] rnau_, dbot,   ,\n  { {0x8c670025, 0x75280010, 0xeca7003b, 0x00000000}},  //   يطان, nedz, ојен,\n  { {0x25690142, 0xd5b80089, 0xa3de0061, 0x00000000}},  //   _júla_, imā_, दीच_,\n  { {0x7ae20b57, 0xab5d01f3, 0x291e0544, 0x00000000}},  //   gbot, _biża, _abta_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6f0d027b, 0xab5d002b, 0x7ae20026, 0x00000000}},  //   lgac, _diża, abot,\n  { {0x77a5049a, 0x6d47002b, 0x7ae20197, 0x00000000}},  //   lóxi, _inja, bbot,\n  { {0xdb1c1b38, 0x6f0d1b39, 0x656a00ea, 0x00000000}},  //   _strö, ngac, _alfh,\n  { {0x6d470107, 0x79a701fc, 0x497502dc, 0x00000000}},  //   _knja, _држе, _елас,\n  { {0xa509003b, 0x3a3f0022, 0x69db0288, 0x00000000}},  //   љена_, _irup_, _itue,\n  { {0x04450373, 0x03a60404, 0x6e2d01a2, 0x00000000}},  //   ченн, зино, hwab,\n  { {0xb4ab0164, 0x25e80061, 0x2d810082, 0x00000000}},  //   _खरी_, चीही_, hihe_,\n  { {0x6d47016c, 0x6b8b0058, 0x00000000, 0x00000000}},  //   _onja, ingg,   ,\n  { {0xb227009f, 0xe20b000c, 0x763a0049, 0x00000000}},  //   _svæð, _stóð_, _לענג,\n  { {0x67d10089, 0x66091b3a, 0x64a2007e, 0x00000000}},  //   _mājo, luek, _паша,\n  { {0xdfcf0054, 0x6d470145, 0xf412009b, 0x00000000}},  //   طيك_, _anja, _נפח_,\n  { {0x26c21b3b, 0x7ae200ea, 0xc3330049, 0x00000000}},  // [3c60] žkov_, vbot, _טוה_,\n  { {0x2d810009, 0xdd9201b7, 0x6b8b00e0, 0x00000000}},  //   gihe_, روض_, engg,\n  { {0xdd8f0025, 0x7ae20009, 0x3a3f00ea, 0x00000000}},  //   دول_, tbot, _arup_,\n  { {0xe3c9001d, 0x7f4a0644, 0x6d471b3c, 0x00000000}},  //   _nằm_, _الحق_, _enja,\n  { {0x7ae21543, 0x20180207, 0x442c0009, 0x00000000}},  //   rbot, ltri_, zwd_,\n  { {0xdb151b3d, 0x7ae20061, 0x6b8b00e0, 0x00000000}},  //   _buzó, sbot, angg,\n  { {0x20181b3e, 0x200a006b, 0xdb090009, 0x00000000}},  //   ntri_, nubi_, _fheà,\n  { {0x95d80057, 0x22401b3f, 0xe3c90082, 0x00000000}},  //   одит_, _orik_, _cằm_,\n  { {0x3a3f04bd, 0x7bce020c, 0x2018039a, 0x00000000}},  //   _grup_, _hubu, htri_,\n  { {0x7bce01a3, 0x6b821126, 0x2018006c, 0x00000000}},  //   _kubu, liog, ktri_,\n  { {0x7528001e, 0x6366009f, 0xd5b8001e, 0x00000000}},  //   redz, _tónl, rmā_,\n  { {0x98ac001e, 0x7bce0dfc, 0xd5b80089, 0x00000000}},  //   _gadā_, _mubu, smā_,\n  { {0x7bce1b40, 0x27e00091, 0x16340ecd, 0x00000000}},  //   _lubu, ćinu_, _целя,\n  { {0x35b30245, 0xdb090051, 0x22400190, 0x00000000}},  //   _збір, _mheá, _drik_,\n  { {0x22400193, 0x200a0bf8, 0x443a1877, 0x00000000}},  //   _erik_, gubi_, _ép_,\n  { {0x22401b41, 0xee3f00b9, 0x77a50d7b, 0x00000000}},  //   _frik_, _prý_, tóxi,\n  { {0x201800eb, 0x7bdc0089, 0x6f0d1b42, 0x00000000}},  // [3c70] atri_, _atru, rgac,\n  { {0x7bce170b, 0x77a5004a, 0x6f0d0045, 0x00000000}},  //   _bubu, róxi, sgac,\n  { {0x69db0030, 0x5b150545, 0x7bce0035, 0x00000000}},  //   _stue, дмет, _cubu,\n  { {0x7bce0089, 0x23cf0309, 0xbddb009d, 0x00000000}},  //   _dubu, _संसद, _crèc,\n  { {0x3a3f005f, 0xcf5600b6, 0xe3c90082, 0x00000000}},  //   _qrup_, _חברת_, _rằm_,\n  { {0x98a5034b, 0xbddb1b43, 0x6d470145, 0x00000000}},  //   миле, _trèb, _unja,\n  { {0xb4ab01f5, 0x7bce0093, 0x999f0010, 0x00000000}},  //   _खरे_, _gubu, éről_,\n  { {0xeafb00a6, 0x3a3f1717, 0xbddb0666, 0x00000000}},  //   _درست_, _trup_, _grèc,\n  { {0x98ad006b, 0x61fb0166, 0x7bd20089, 0x00000000}},  //   ınıb_, šulj, ējuš,\n  { {0x7bce0197, 0x66091165, 0xdce700ca, 0x00000000}},  //   _yubu, ruek, _oljč,\n  { {0x7983097e, 0x2018002b, 0xe3c90082, 0x00000000}},  //   minw, xtri_, _tằm_,\n  { {0x798300e0, 0x889a009b, 0x2240177d, 0x00000000}},  //   linw, _ובעי, _prik_,\n  { {0xf7700879, 0x0caa02fb, 0x00000000, 0x00000000}},  //   _حال_, _कर्म,   ,\n  { {0xd5bb05b8, 0x20180c32, 0xe7f40061, 0x00000000}},  //   _усе_, ttri_, ींचा_,\n  { {0x7f5a00ed, 0x8fa61b44, 0x853c0006, 0x00000000}},  //   ојат_, даве, klėj,\n  { {0x2240023a, 0x0395007e, 0x7bce0253, 0x00000000}},  //   _trik_, _прыя, _rubu,\n  { {0x7bdc1b45, 0x7bce0760, 0x63a401f6, 0x00000000}},  // [3c80] _stru, _subu, _ikin,\n  { {0xdd8f01f7, 0x7bce1b46, 0x00000000, 0x00000000}},  //   لوق_, _pubu,   ,\n  { {0x81d60044, 0xfe7100a1, 0x6b821b47, 0x00000000}},  //   _হিট_, ندے_, tiog,\n  { {0x61e9001a, 0x20050802, 0xab5d002b, 0x00000000}},  //   ţele, álie_, _diżo,\n  { {0x6b82005b, 0x63a400e7, 0x00000000, 0x00000000}},  //   riog, _mkin,   ,\n  { {0x7bce0149, 0x7c3a0142, 0x6b820006, 0x00000000}},  //   _tubu, _štru, siog,\n  { {0x7bdc0039, 0x63a41b48, 0xa3ae007d, 0x00000000}},  //   _utru, _okin, कता_,\n  { {0x96340072, 0xc6f81b49, 0x96ea01e1, 0x00000000}},  //   ениц, чних_, цька_,\n  { {0x9f4300ea, 0x00000000, 0x00000000, 0x00000000}},  //   rsjø_,   ,   ,\n  { {0x63a4006a, 0xb4e8013d, 0x6d5c01a3, 0x00000000}},  //   _akin, बरे_, _jora,\n  { {0x6d5c00ee, 0x7bda028c, 0xb4de013d, 0x00000000}},  //   _mora, _étud, _तभी_,\n  { {0x63b6018e, 0x6d5c002d, 0x88e60044, 0x00000000}},  //   _chyn, _lora, _নাটক,\n  { {0x69c81b4a, 0x5a9b0049, 0x6d5c040f, 0x00000000}},  //   _kide, ַשלא, _oora,\n  { {0x6d5c15f8, 0x63a4022b, 0x69c80066, 0x00000000}},  //   _nora, _ekin, _jide,\n  { {0x69c81b4b, 0x3ead016c, 0xb4ca0061, 0x00000000}},  //   _mide, _šet_, लखी_,\n  { {0x69c80baf, 0xab5d002b, 0x23880010, 0x00000000}},  //   _lide, _riżo, tője_,\n  { {0x6d5c1b4c, 0x69c8002a, 0x443e1a95, 0x00000000}},  // [3c90] _bora, _oide, lvt_,\n  { {0x6d5c00d6, 0x69c81b4d, 0x23b20010, 0x00000000}},  //   _cora, _nide, mája_,\n  { {0x67220091, 0x2ca70030, 0x09d80044, 0x00000000}},  //   _oboj, ænd_, _সিগা,\n  { {0x61ed1661, 0x6d5c0051, 0x69c8032c, 0x00000000}},  //   _kwal, _eora, _aide,\n  { {0x69c8022b, 0x6d5c02d5, 0x7e760036, 0x00000000}},  //   _bide, _fora, czyp,\n  { {0x61ed000b, 0x75381b4e, 0x00000000, 0x00000000}},  //   _mwal, _navz,   ,\n  { {0x69c80bc3, 0x31580049, 0x98a2030d, 0x00000000}},  //   _dide, ויגן_, лише,\n  { {0x6d5c055a, 0x69c80f30, 0x76420957, 0x00000000}},  //   _zora, _eide, _broy,\n  { {0x69c8119e, 0x63b6018e, 0x764200f4, 0x00000000}},  //   _fide, _rhyn, _croy,\n  { {0x69c81b4f, 0x63a40091, 0x63b60319, 0x00000000}},  //   _gide, _skin, _shyn,\n  { {0x61ed0a9a, 0x98141095, 0xc6250044, 0x00000000}},  //   _awal, _لبنا, বিধা_,\n  { {0xe29a18bf, 0xd7c80025, 0x61ed0258, 0x00000000}},  //   зам_, _قوله_, _bwal,\n  { {0x7bc9028c, 0x45240044, 0x69c800e0, 0x00000000}},  //   _mieu, বয়ক_, _yide,\n  { {0x7bc900f4, 0x661b1b50, 0x636600f1, 0x00000000}},  //   _lieu, mtuk, _móni,\n  { {0x6d5c08da, 0x7f5d0211, 0xdfd2006d, 0x00000000}},  //   _rora, _bosq, اير_,\n  { {0x7bc90662, 0xe29a0017, 0x6d5c0996, 0x00000000}},  //   _nieu, _най_, _sora,\n  { {0x6d5c0410, 0xdd920076, 0x661b020c, 0x00000000}},  // [3ca0] _pora, هور_, ntuk,\n  { {0x661b1b51, 0xa3b403d7, 0xd29b034e, 0x00000000}},  //   ituk, _जीत_, _משפט,\n  { {0x6d5c010f, 0x26190011, 0x442701a3, 0x00000000}},  //   _vora, hèo_, _jpn_,\n  { {0xeb9719f1, 0x69c802cc, 0x673b0046, 0x00000000}},  //   них_, _side, jduj,\n  { {0x69c81b52, 0x6d5c1b53, 0x7bc9009d, 0x00000000}},  //   _pide, _tora, _dieu,\n  { {0x61fb0285, 0x442700ca, 0x00000000, 0x00000000}},  //   áuli, _opn_,   ,\n  { {0x7dc90006, 0xab5d01d5, 0x6aa90146, 0x00000000}},  //   _užsa, _miżj, _eyef,\n  { {0x76421b54, 0x69c81b55, 0x2572009d, 0x00000000}},  //   _proy, _wide, _mâle_,\n  { {0xf65216bb, 0x69c805cb, 0xadc3001d, 0x00000000}},  //   ائع_, _tide, _hoạc,\n  { {0x64431b56, 0x44271b57, 0x78a801d6, 0x00000000}},  //   _brni, _bpn_, _tydv,\n  { {0x661b002d, 0x64430091, 0x61ed03ef, 0x00000000}},  //   atuk, _crni, _swal,\n  { {0x6722016e, 0x76420299, 0x395e002d, 0x00000000}},  //   _uboj, _troy, _hots_,\n  { {0x64430058, 0x61f8008b, 0x44270030, 0x00000000}},  //   _erni, нняў_, _epn_,\n  { {0x44270190, 0xe8ee05b8, 0x61ed0173, 0x00000000}},  //   _fpn_, алi_, _vwal,\n  { {0xd3a7012b, 0x395e028c, 0x213a0173, 0x00000000}},  //   _прип, _mots_, _daph_,\n  { {0x61ed01aa, 0x395e00ab, 0xa2aa0061, 0x00000000}},  //   _twal, _lots_, _घरच्,\n  { {0xab5d0066, 0x7bc9009d, 0x64431b58, 0x00000000}},  // [3cb0] _fiżj, _rieu, _zrni,\n  { {0x7bc91b59, 0x395e06ed, 0x44270145, 0x00000000}},  //   _sieu, _nots_, _ypn_,\n  { {0x661b002d, 0x7bc9009d, 0x63660325, 0x00000000}},  //   ztuk, _pieu, _sóni,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x395e01a3, 0x7bc900f4, 0x2396001e, 0x00000000}},  //   _bots_, _vieu, nāja_,\n  { {0x2d850808, 0x333b01f3, 0x2ee900f6, 0x00000000}},  //   _öle_, _laqx_, lbaf_,\n  { {0x395e1b5a, 0x7bc90082, 0x013800b3, 0x00000000}},  //   _dots_, _tieu, גרות_,\n  { {0x6366027b, 0x394c00ab, 0x661b0836, 0x00000000}},  //   _tóni, _ends_, ttuk,\n  { {0x673b1b5b, 0x1a5b0025, 0x645c16bc, 0x00000000}},  //   rduj, _عشرة_, ärin,\n  { {0x661b1b5c, 0x893403ec, 0x44271b5d, 0x00000000}},  //   rtuk, _معما, _ppn_,\n  { {0x661b021e, 0x3d190316, 0x636600f6, 0x00000000}},  //   stuk, _पाने_, _mónv,\n  { {0x64430059, 0x00000000, 0x00000000, 0x00000000}},  //   _vrni,   ,   ,\n  { {0xd2f2013d, 0x23790023, 0x239601c5, 0x00000000}},  //   _अजीब_, ërja_, gāja_,\n  { {0x44271b5e, 0x3ceb013d, 0x66091b5f, 0x00000000}},  //   _tpn_, टरों_, mrek,\n  { {0x10a601fb, 0x64431b60, 0x44271b61, 0x00000000}},  //   тивн, _urni, _upn_,\n  { {0xd00f004b, 0x20051b62, 0x20041b63, 0x00000000}},  //   تلف_, ália_, čmi_,\n  { {0x0e63004c, 0xab5d0066, 0x9f580048, 0x00000000}},  // [3cc0] актн, _tiżj, orrú_,\n  { {0x6d8b001e, 0x5bca006e, 0x00000000, 0x00000000}},  //   kļau, िद्व,   ,\n  { {0x5f06003b, 0x395e1b64, 0xceea0088, 0x00000000}},  //   _изна, _rots_, _одне_,\n  { {0x09e6025f, 0x395e1b65, 0x660902ab, 0x00000000}},  //   водн, _sots_, krek,\n  { {0x395e04bd, 0x82d70049, 0x66091b66, 0x00000000}},  //   _pots_, דונג_, jrek,\n  { {0xfce3041f, 0x2fc00146, 0x660900cd, 0x00000000}},  //   _воро, lmig_, drek,\n  { {0x395e0129, 0x6d4e0032, 0x88840752, 0x00000000}},  //   _vots_, _inba, دیان,\n  { {0xf09301f8, 0x466a00ed, 0x66090056, 0x00000000}},  //   ינו_, дром_, frek,\n  { {0x395e04bd, 0x66090b5a, 0x00000000, 0x00000000}},  //   _tots_, grek,   ,\n  { {0x26cf01d6, 0xb5fd01dc, 0x00000000, 0x00000000}},  //   _eggo_, myšl,   ,\n  { {0x6609022b, 0x5975007e, 0x6ab20309, 0x00000000}},  //   arek, _сыту, _जरुर,\n  { {0x2396001e, 0x66e60930, 0x00000000, 0x00000000}},  //   tāja_, _рода,   ,\n  { {0x51871b67, 0x2d8f0010, 0x6d8b00b4, 0x00000000}},  //   вува, égek_, nżac,\n  { {0x60de0146, 0x00000000, 0x00000000, 0x00000000}},  //   _cfpm,   ,   ,\n  { {0xa3b40164, 0x84380025, 0x61e60168, 0x00000000}},  //   _जीव_, _أكبر_, apkl,\n  { {0x6d4e1b68, 0x6ab203d7, 0x23960089, 0x00000000}},  //   _anba, _जरूर, pāja_,\n  { {0x1df80783, 0x27e90166, 0x30c50044, 0x00000000}},  // [3cd0] кеты_, ćani_, ্রেস,\n  { {0x9be70088, 0xdcb10082, 0x00000000, 0x00000000}},  //   відк, _ở_,   ,\n  { {0x9f580211, 0x61fd0af1, 0x66090a10, 0x00000000}},  //   guró_, lssl, zrek,\n  { {0xc47700b6, 0x09cb001c, 0x2011000b, 0x00000000}},  //   כתבו_, ाद्य, muzi_,\n  { {0x3f890fdd, 0xd838000a, 0xfe7f00f6, 0x00000000}},  //   miau_, _asč_, _veïs_,\n  { {0xdb1c1b69, 0x3f891b6a, 0x0d64005e, 0x00000000}},  //   _zurü, liau_, _късм,\n  { {0xb8db02fb, 0x20110020, 0x645c1b6b, 0x00000000}},  //   _घर_, nuzi_, äril,\n  { {0x3f891b6c, 0x66090cc0, 0x00000000, 0x00000000}},  //   niau_, trek,   ,\n  { {0x09dd0055, 0xdb1c1b6d, 0x7bd5055b, 0x00000000}},  //   _ঠিকা, _euró, _huzu,\n  { {0x66091b6e, 0x7bd5000b, 0x3f890016, 0x00000000}},  //   rrek, _kuzu, hiau_,\n  { {0x78540167, 0x3f890006, 0x20111b6f, 0x00000000}},  //   _نیوز_, kiau_, juzi_,\n  { {0x36d51b70, 0x66090466, 0x644101b6, 0x00000000}},  //   _содр, prek, rvli,\n  { {0x66050088, 0x2ed90044, 0x3f890016, 0x00000000}},  //   _спла, তরাষ, diau_,\n  { {0xbddb00f4, 0xe4e70088, 0x201100e7, 0x00000000}},  //   _crèm, _рідн, fuzi_,\n  { {0x2011000b, 0x5f060265, 0x25a502ac, 0x00000000}},  //   guzi_, лзва, moll_,\n  { {0x3f890e44, 0xab5d002b, 0x61e61b71, 0x00000000}},  //   giau_, _fiżi, ppkl,\n  { {0x200a016c, 0x7bd515ed, 0x00000000, 0x00000000}},  // [3ce0] srbi_, _auzu,   ,\n  { {0x61e40263, 0x20110066, 0x7bd5001a, 0x00000000}},  //   _itil, buzi_, _buzu,\n  { {0x711b00bd, 0x3f891b72, 0xbb46005e, 0x00000000}},  //   _אויפ, biau_, лежк,\n  { {0x3f891b73, 0x7bd5022b, 0x25a51b74, 0x00000000}},  //   ciau_, _duzu, holl_,\n  { {0x25a50039, 0xe9180451, 0xc98600e2, 0x00000000}},  //   koll_, волі_, луки,\n  { {0x6d4e0048, 0xd83801ca, 0x9f580026, 0x00000000}},  //   _unba, _psč_, curò_,\n  { {0xebe30bbd, 0x68f8037b, 0x6366000c, 0x00000000}},  //   _госп, ravd, _jóns,\n  { {0x7c930025, 0x61e400f8, 0x68f815c5, 0x00000000}},  //   _الفص, _otil, savd,\n  { {0x7bd50342, 0x557405b5, 0x63a60091, 0x00000000}},  //   _zuzu, игит, dokn,\n  { {0x7bc200ea, 0x3f890006, 0x7bd51b75, 0x00000000}},  //   lmou, ziau_, _yuzu,\n  { {0x7c2905fa, 0x61e40095, 0x63550077, 0x00000000}},  //   _ćerk, _atil, авну,\n  { {0x7bc20263, 0x20110009, 0xab5d0066, 0x00000000}},  //   nmou, vuzi_, _piżi,\n  { {0x388e005f, 0x3f890006, 0x25a500f8, 0x00000000}},  //   _hər_, viau_, boll_,\n  { {0x7bc21b76, 0x3f89018e, 0xab5d002b, 0x00000000}},  //   hmou, wiau_, _viżi,\n  { {0x3f89018e, 0xbddb01aa, 0x403500ed, 0x00000000}},  //   tiau_, _vrèm, шевс,\n  { {0x7bd50020, 0x20111b77, 0x7bc200b9, 0x00000000}},  //   _ruzu, ruzi_, jmou,\n  { {0x3f891b78, 0x7bc20203, 0x518701fc, 0x00000000}},  // [3cf0] riau_, dmou, _буна,\n  { {0x3f891b79, 0xab5d002b, 0x127c0049, 0x00000000}},  //   siau_, _jiżv, _ראזע,\n  { {0xe1ff0047, 0x3f8904a2, 0x66cb0276, 0x00000000}},  //   lsó_, piau_, _kökü,\n  { {0x22490190, 0x6d581b7a, 0x00000000, 0x00000000}},  //   _krak_, övar,   ,\n  { {0xe9ff001d, 0xfaa501fc, 0xe1ff008e, 0x00000000}},  //   _trận_, јало, nsó_,\n  { {0x22490091, 0xab5d0066, 0x0cd40131, 0x00000000}},  //   _mrak_, _niżv, _горю,\n  { {0xe73908fc, 0x25a51b7b, 0x7bc20146, 0x00000000}},  //   вей_, voll_, bmou,\n  { {0x16390025, 0x00000000, 0x00000000, 0x00000000}},  //   نسخة_,   ,   ,\n  { {0x6b8b0026, 0x00000000, 0x00000000, 0x00000000}},  //   migg,   ,   ,\n  { {0x4585107f, 0x2705001d, 0x6b8b05b7, 0x00000000}},  //   ргов, ồn_, ligg,\n  { {0x25a512bc, 0x473501fb, 0xf1c80224, 0x00000000}},  //   roll_, _внес, ntář_,\n  { {0x22490046, 0x53a601ee, 0x69c30232, 0x00000000}},  //   _brak_, рамб, lmne,\n  { {0x25a50129, 0x63a61b7c, 0x66cb014a, 0x00000000}},  //   poll_, rokn, _dökü,\n  { {0x69c30051, 0xa2c2007d, 0xa50918ea, 0x00000000}},  //   nmne, रेष्, _река_,\n  { {0x7bc20133, 0x22490032, 0x00000000, 0x00000000}},  //   ymou, _erak_,   ,\n  { {0x68400884, 0x22490846, 0x3a2d00d6, 0x00000000}},  //   ládá, _frak_, _opep_,\n  { {0x7de501b7, 0x6b8b123c, 0x433b01ce, 0x00000000}},  // [3d00] مسلم, digg, _יעקב,\n  { {0x01fb01ce, 0xab5d002b, 0x5fb80061, 0x00000000}},  //   _שפיל, _miżu, _आठवल,\n  { {0x7bc21339, 0x22490733, 0x6b8b0197, 0x00000000}},  //   tmou, _zrak_, figg,\n  { {0x69c31b7d, 0x656301f3, 0xdbdf01e5, 0x00000000}},  //   emne, _lonh, _víðt,\n  { {0x7bc20133, 0x79c6007e, 0x00000000, 0x00000000}},  //   rmou, айдз,   ,\n  { {0xf806025f, 0x99f50088, 0x645c03b6, 0x00000000}},  //   ачин, сяці, ärik,\n  { {0xa96703f3, 0x31570049, 0xdb1c000c, 0x00000000}},  //   рија_, ייסן_, _furð,\n  { {0x6d5e003b, 0x2ee00009, 0xab5d0036, 0x00000000}},  //   ljpa, ncif_, _biżu,\n  { {0xba290447, 0x656300f4, 0x49ca034b, 0x00000000}},  //   _مسلم_, _bonh, _алан_,\n  { {0x656302d5, 0x66cb0279, 0x00000000, 0x00000000}},  //   _conh, _sökü,   ,\n  { {0xe2f90c50, 0x5fd20061, 0x00000000, 0x00000000}},  //   лені_, _दंगल,   ,\n  { {0xe3b90477, 0xe1ff0010, 0x636b01ee, 0x00000000}},  //   atın_, tsó_, трог_,\n  { {0x521402d3, 0x3636007a, 0xe57a0081, 0x00000000}},  //   одят, _خراس, _изд_,\n  { {0xdd1a01d5, 0x7c2e1b7e, 0xd5af0088, 0x00000000}},  //   għżu, _opbr, _єс_,\n  { {0xb4d2001c, 0x657a0051, 0x3f8700ed, 0x00000000}},  //   वशी_, mhth, аѓаа,\n  { {0x224916e7, 0x853c0006, 0x644a002b, 0x00000000}},  //   _trak_, plės, _irfi,\n  { {0x63ad0058, 0x3eaf0dba, 0x443c01a2, 0x00000000}},  // [3d10] _ikan, ægt_, _hsv_,\n  { {0xdcf91095, 0x201e0129, 0x657a0011, 0x00000000}},  //   افات_, àtic_, nhth,\n  { {0x63ad0066, 0x9f350245, 0x0dc81b7f, 0x00000000}},  //   _kkan, _лені, рути_,\n  { {0xe457007b, 0x442e00c4, 0x63ad01f3, 0x00000000}},  //   ייבט_, _mpf_, _jkan,\n  { {0x6b8b0207, 0xe3b9006b, 0xf2d40049, 0x00000000}},  //   rigg, ytın_, קעס_,\n  { {0x443c0d2b, 0xab5d01d5, 0x6b8b1b80, 0x00000000}},  //   _osv_, _riżu, sigg,\n  { {0x66021089, 0x63ad01ee, 0x7e6d0058, 0x00000000}},  //   _avok, _okan, lyap,\n  { {0x65630181, 0x09e60044, 0x63ad0dfc, 0x00000000}},  //   _sonh, _নিরা, _nkan,\n  { {0x9f5e028c, 0x443c001e, 0x7e6d1b81, 0x00000000}},  //   été_, _asv_, nyap,\n  { {0x657a1b82, 0x63ad00f0, 0x66e7006e, 0x00000000}},  //   ghth, _akan, _ट्रक_,\n  { {0x66020403, 0x442e0181, 0xe3b90279, 0x00000000}},  //   _evok, _cpf_, rtın_,\n  { {0x443c0190, 0xc169009b, 0xa5f90140, 0x00000000}},  //   _dsv_, _אח_, _беду_,\n  { {0x644a0708, 0x442e1b83, 0xc6a7003b, 0x00000000}},  //   _erfi, _epf_, _тржи,\n  { {0x657a07eb, 0xf6520104, 0x1ddb013d, 0x00000000}},  //   chth, _מצד_, _बढ़त,\n  { {0xe1f20014, 0xdee60088, 0x66020059, 0x00000000}},  //   _کسب_, йови, _zvok,\n  { {0x439301fc, 0x6b9b00e7, 0x00000000, 0x00000000}},  //   _најс, _njug,   ,\n  { {0x0ef9007e, 0xa3dd0061, 0x6f1d004a, 0x00000000}},  // [3d20] рэсы_, _थंड_, _dcsc,\n  { {0x32020142, 0x442e0d48, 0x6b8900e7, 0x00000000}},  //   msky_, _ypf_, _ameg,\n  { {0xfbd201fa, 0x0c2600c0, 0x61f60016, 0x00000000}},  //   ستا_, смен, _hwyl,\n  { {0xeafa01af, 0x8afd00b9, 0xef210089, 0x00000000}},  //   ارات_, _pořa, _ceļā_,\n  { {0x32020027, 0x298a064b, 0x3cf8075b, 0x00000000}},  //   nsky_, лско_, _terv_,\n  { {0x2d8f0047, 0x6e240697, 0x2b401b84, 0x00000000}},  //   éget_, mtib, žic_,\n  { {0x764b018e, 0x66020b22, 0x00000000, 0x00000000}},  //   _argy, _svok,   ,\n  { {0x442e0020, 0x6e2400f6, 0xab960025, 0x00000000}},  //   _rpf_, otib, _الرغ,\n  { {0x442e0062, 0xda6305f6, 0xba56005e, 0x00000000}},  //   _spf_, _евти, _утвъ,\n  { {0x443c00b5, 0x2c0d0061, 0x644a0022, 0x00000000}},  //   _psv_, ांचं_, _prfi,\n  { {0xd7ea0893, 0x32021293, 0x78ba0089, 0x00000000}},  //   _смее_, esky_, _uztv,\n  { {0x6e241b85, 0x4c9b0049, 0x61f60016, 0x00000000}},  //   ktib, רשטע, _bwyl,\n  { {0x442e0190, 0x2d8a0d16, 0x7f441352, 0x00000000}},  //   _wpf_, _ombe_, ddiq,\n  { {0x442e0022, 0x68fa0606, 0x61f60016, 0x00000000}},  //   _tpf_, _jetd, _dwyl,\n  { {0x7dc9010a, 0x63ad0021, 0x442e00d4, 0x00000000}},  //   _užsi, _tkan, _upf_,\n  { {0x44ce006b, 0x63ad0020, 0x68fa0022, 0x00000000}},  //   mə_, _ukan, _letd,\n  { {0x320f0047, 0x44ce005f, 0x61f6018e, 0x00000000}},  // [3d30] _így_, lə_, _gwyl,\n  { {0x68fa0030, 0x6b890006, 0x7e6d0c2c, 0x00000000}},  //   _netd, _smeg, ryap,\n  { {0x44ce0163, 0x29f60036, 0x6e241b86, 0x00000000}},  //   nə_, eła_, atib,\n  { {0xe3b9014a, 0x291e0dcb, 0x7bc000b4, 0x00000000}},  //   ktım_, _acta_, _chmu,\n  { {0x2bb80054, 0x2d8f0047, 0x29f60036, 0x00000000}},  //   حالة_, éges_, gła_,\n  { {0x6ea20183, 0x98be005d, 0xbddb009d, 0x00000000}},  //   _कुटु, _altı_, _brèv,\n  { {0x6d5500b5, 0x29f60036, 0x6d451b87, 0x00000000}},  //   _inza, ała_, mdha,\n  { {0x44ce005f, 0x6d4502fa, 0x0609003b, 0x00000000}},  //   də_, ldha, аник_,\n  { {0x96b901e1, 0x7c2501a2, 0x200511af, 0x00000000}},  //   шуку_, lthr, šlih_,\n  { {0x7afb001f, 0x68fa006b, 0x32020142, 0x00000000}},  //   _heut, _getd, vsky_,\n  { {0xbddb00f4, 0x7afb003f, 0x7c2514f9, 0x00000000}},  //   _grèv, _keut, nthr,\n  { {0x7c251b88, 0x2011041a, 0x61f6018e, 0x00000000}},  //   ithr, drzi_, _pwyl,\n  { {0x32040428, 0xbb3a0049, 0xeb3a0049, 0x00000000}},  //   émy_, בערי, בערש,\n  { {0x7afb010f, 0x32020142, 0x6729002b, 0x00000000}},  //   _leut, rsky_, lfej,\n  { {0x6d450016, 0xafe3017f, 0x7ae206fa, 0x00000000}},  //   ddha, досл, ycot,\n  { {0x6d55010f, 0x6e2417f4, 0x29f60036, 0x00000000}},  //   _anza, ttib, yła_,\n  { {0x20d6008b, 0x61461b89, 0x69c100b9, 0x00000000}},  // [3d40] _мінс, _депа, _ohle,\n  { {0x6e24023a, 0x7f44006b, 0x8cb601fc, 0x00000000}},  //   rtib, sdiq, осеч,\n  { {0x6e2400d6, 0x0b460242, 0x7afb1b8a, 0x00000000}},  //   stib, жнен, _beut,\n  { {0xab2a102a, 0x20181b8b, 0x6e2400f4, 0x00000000}},  //   рода_, muri_, ptib,\n  { {0x7afb03a1, 0x20180571, 0x7ae21965, 0x00000000}},  //   _deut, luri_, rcot,\n  { {0x44ce005f, 0x7ae20211, 0x69c1171e, 0x00000000}},  //   yə_, scot, _chle,\n  { {0x2018001a, 0x29f60036, 0x7afb009d, 0x00000000}},  //   nuri_, sła_, _feut,\n  { {0x44ce005f, 0x20180035, 0x29f60036, 0x00000000}},  //   və_, iuri_, pła_,\n  { {0x7bdc0475, 0x20181b1c, 0x44250036, 0x00000000}},  //   _huru, huri_, etl_,\n  { {0x7bdc011f, 0x637f0065, 0x7c45000c, 0x00000000}},  //   _kuru, _këng, _ótrú,\n  { {0x9cdb007b, 0x7bdc0281, 0x3a261b8c, 0x00000000}},  //   יקיפ, _juru, ltop_,\n  { {0xc5f90055, 0x883b00b6, 0x44ce005f, 0x00000000}},  //   _আমরা_, _כתבו, rə_,\n  { {0x3a2612d9, 0xe298007e, 0x44ce006b, 0x00000000}},  //   ntop_, жаў_, sə_,\n  { {0x7c250675, 0x2018001a, 0x291c0006, 0x00000000}},  //   ythr, furi_, ngva_,\n  { {0x2018001a, 0xe9ff001d, 0x44ce005f, 0x00000000}},  //   guri_, _trần_, qə_,\n  { {0x20030036, 0x3a2600ea, 0x00000000, 0x00000000}},  //   rsji_, ktop_,   ,\n  { {0x7afb006c, 0x7c250011, 0x7e600129, 0x00000000}},  // [3d50] _reut, wthr, _àmpl,\n  { {0x7bdc022b, 0x20181b8d, 0x2b4600f4, 0x00000000}},  //   _buru, buri_, edoc_,\n  { {0x2018000d, 0x6d4511d4, 0x7afb00d9, 0x00000000}},  //   curi_, rdha, _peut,\n  { {0x7bdc011f, 0x2396001e, 0x7c2519dd, 0x00000000}},  //   _duru, tāji_, rthr,\n  { {0x69c11625, 0x7bdc1b8e, 0xdb0b0023, 0x00000000}},  //   _phle, _euru, logë,\n  { {0x7bdc00f8, 0x4dda009b, 0x2fc901d6, 0x00000000}},  //   _furu, _לחשו, lmag_,\n  { {0x7bdc04a0, 0x637f0065, 0x7afb0023, 0x00000000}},  //   _guru, _kënd, _teut,\n  { {0x3a3f00e0, 0x1606006e, 0x3a2610f0, 0x00000000}},  //   _tsup_, _शिखर_, btop_,\n  { {0x20181b8f, 0x69c10009, 0x637f0023, 0x00000000}},  //   zuri_, _thle, _mënd,\n  { {0x7649021e, 0x637f0065, 0x442501a2, 0x00000000}},  //   rvey, _lënd, ttl_,\n  { {0x20181b90, 0xc5680025, 0x7dc9007f, 0x00000000}},  //   xuri_, تحيل_, _užsu,\n  { {0x201801eb, 0x442501a2, 0x637f0023, 0x00000000}},  //   vuri_, rtl_, _nënd,\n  { {0xbebb008d, 0x44251b91, 0x059600a1, 0x00000000}},  //   _mbës, stl_, _کانگ,\n  { {0x20181b92, 0x270c0006, 0x00000000, 0x00000000}},  //   turi_, rėnų_,   ,\n  { {0x394500d4, 0x645c0bac, 0x90c30517, 0x00000000}},  //   _mals_, ärit, ебре,\n  { {0x20181aba, 0x7bdc00e0, 0xdb1b0051, 0x00000000}},  //   ruri_, _ruru, _bhuí,\n  { {0x2018148e, 0x7bdc01a3, 0xd24f0025, 0x00000000}},  // [3d60] suri_, _suru, _مني_,\n  { {0xf1bf1b93, 0x2018001a, 0x7bdc006c, 0x00000000}},  //   ltán_, puri_, _puru,\n  { {0x7bdc005f, 0x6bd60774, 0xf1bf0048, 0x00000000}},  //   _quru, ستار, otán_,\n  { {0x7bdc1b94, 0x3a261b95, 0x3947012d, 0x00000000}},  //   _vuru, ttop_, edns_,\n  { {0x2b460203, 0x39450b50, 0x7bdc0022, 0x00000000}},  //   rdoc_, _bals_, _wuru,\n  { {0x7bdc0127, 0x3a260bd3, 0x23960089, 0x00000000}},  //   _turu, rtop_, māju_,\n  { {0x3a260059, 0x0720007d, 0xdca31867, 0x00000000}},  //   stop_, _यादव_, _зари,\n  { {0x4c9b009b, 0x3a260a60, 0xab27004d, 0x00000000}},  //   _הבלו, ptop_, _носа_,\n  { {0xc6f704af, 0x39451b96, 0x23960089, 0x00000000}},  //   чных_, _fals_, nāju_,\n  { {0x9986035b, 0x394501c5, 0x6914012d, 0x00000000}},  //   _علاو, _gals_, _bžež,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x187700b6, 0xa295008b, 0xbebb0065, 0x00000000}},  //   _מעבר_, дамі, _mbër,\n  { {0x637f008d, 0x95ca003b, 0xe9ff0011, 0x00000000}},  //   _rënd, _лука_, _trấn_,\n  { {0x645c1b97, 0x32191b98, 0x239601c5, 0x00000000}},  //   äris, rusy_, dāju_,\n  { {0xdb1b0051, 0x753a0f30, 0x2fc900d2, 0x00000000}},  //   _shuí, metz, tmag_,\n  { {0x637f008d, 0xa857019b, 0x753a010f, 0x00000000}},  //   _qënd, הילה_, letz,\n  { {0x63af0387, 0x9d5500e9, 0x2fc91058, 0x00000000}},  // [3d70] mocn, وچست, rmag_,\n  { {0x61ed0198, 0x2fc9123c, 0x753a1b99, 0x00000000}},  //   _ital, smag_, netz,\n  { {0xbddb01aa, 0x637f0065, 0x3f92011c, 0x00000000}},  //   _près, _tënd, biyu_,\n  { {0x290c1b9a, 0xdecb0072, 0x39451b9b, 0x00000000}},  //   _adda_, _гугл_, _sals_,\n  { {0xd9450069, 0x394500d4, 0x657d0065, 0x00000000}},  //   дели, _pals_, ëshk,\n  { {0x99670057, 0xbddb00f4, 0xeab00025, 0x00000000}},  //   ятел, _frèr, دعم_,\n  { {0x753a022b, 0x394501d6, 0xa90404b1, 0x00000000}},  //   detz, _vals_, ربون,\n  { {0x6d4700f0, 0x290c01e5, 0x61ed02e1, 0x00000000}},  //   _haja, _edda_, _otal,\n  { {0x61ed02c0, 0x394501b8, 0x66150036, 0x00000000}},  //   _ntal, _tals_, ązko,\n  { {0x6d471b9c, 0x7bcb1b9d, 0x753a0032, 0x00000000}},  //   _jaja, lmgu, getz,\n  { {0x6d470004, 0x6fbf0183, 0x61ed022b, 0x00000000}},  //   _maja, ्षां, _atal,\n  { {0x6d470263, 0x61ed0066, 0x3209000a, 0x00000000}},  //   _laja, _btal, _bvay_,\n  { {0x753a022b, 0xa50908d6, 0x61ed12fe, 0x00000000}},  //   betz, _дела_, _ctal,\n  { {0x6d470466, 0xdb0b0039, 0xc7b90010, 0x00000000}},  //   _naja, llgä, llő_,\n  { {0x61ed00b5, 0x2bd9007d, 0xdee60679, 0x00000000}},  //   _etal, _बंगा, доби,\n  { {0xe29a046c, 0x2396001e, 0xe3b7005e, 0x00000000}},  //   _май_, tāju_, _общ_,\n  { {0x6d470211, 0x2d930a86, 0x00000000, 0x00000000}},  // [3d80] _baja, fixe_,   ,\n  { {0x6d470211, 0x7ae91b9e, 0xf1bf1b9f, 0x00000000}},  //   _caja, _afet, ntál_,\n  { {0x6d470059, 0x7c3e00bb, 0x3f6a17a4, 0x00000000}},  //   _daja, uwpr, _дино_,\n  { {0xeb9702d3, 0x661b0052, 0x6d470288, 0x00000000}},  //   мих_, kuuk, _eaja,\n  { {0x09e314d1, 0x6d470169, 0x62861ba0, 0x00000000}},  //   вочн, _faja, nzko,\n  { {0x7ae90181, 0x6f0401c5, 0x27380011, 0x00000000}},  //   _efet, laic, _ẩn_,\n  { {0x753a1ba1, 0x4427004a, 0x00000000, 0x00000000}},  //   vetz, _nqn_,   ,\n  { {0x6d470142, 0x6f041ba2, 0x8b9501e1, 0x00000000}},  //   _zaja, naic, _зруч,\n  { {0x753a022b, 0x6443009d, 0x6d4700e7, 0x00000000}},  //   tetz, _asni, _yaja,\n  { {0x62860027, 0x6f040035, 0x290c00f8, 0x00000000}},  //   dzko, haic, _udda_,\n  { {0x753a002d, 0x63af0142, 0xc9530104, 0x00000000}},  //   retz, tocn, _שמע_,\n  { {0x753a001f, 0x93bd001a, 0x6b820f5d, 0x00000000}},  //   setz, ptăm, nhog,\n  { {0x63af0235, 0x6f0400c4, 0x16341ba3, 0x00000000}},  //   rocn, daic, _челя,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6d4703b6, 0xdb0b0039, 0x63af057c, 0x00000000}},  //   _raja, llgå, pocn,\n  { {0x6d470513, 0x6f041ba4, 0x00000000, 0x00000000}},  //   _saja, gaic,   ,\n  { {0x61ed13df, 0x6d471ba5, 0x5d55026b, 0x00000000}},  // [3d90] _utal, _paja, нкат,\n  { {0x20050047, 0xdcbb007c, 0x71750025, 0x00000000}},  //   ális_, още_, _أهدا,\n  { {0x6d4706b0, 0x5b150200, 0xa739016c, 0x00000000}},  //   _vaja, емет, ščiš,\n  { {0x6d47105a, 0x4fc7007e, 0x6f040555, 0x00000000}},  //   _waja, _існа, caic,\n  { {0x6d4701a3, 0xa3c2007d, 0x6366008e, 0x00000000}},  //   _taja, ्गत_, _cóny,\n  { {0x661b01b1, 0xda7801ab, 0x00000000, 0x00000000}},  //   vuuk, ьях_,   ,\n  { {0x88bc00b9, 0xa3af0316, 0x7d050022, 0x00000000}},  //   _sběr, कवा_, mahs,\n  { {0x661b157c, 0x8bc4007e, 0x3eb90190, 0x00000000}},  //   tuuk, _асуд, _kyst_,\n  { {0xeab3031d, 0x9f510047, 0xf6510647, 0x00000000}},  //   _شعر_, lszó_, ائب_,\n  { {0x44651ba6, 0xb46501ee, 0x661b0329, 0x00000000}},  //   евов, екол, ruuk,\n  { {0x5fdb02d2, 0x7ae40161, 0x3eb91a4c, 0x00000000}},  //   _मंगल, žite, _lyst_,\n  { {0x57ca0061, 0x8afd013e, 0x628601a2, 0x00000000}},  //   ागृह, _boři, tzko,\n  { {0x6f041ba7, 0x55590581, 0x00000000, 0x00000000}},  //   vaic, _надя_,   ,\n  { {0x64a5008b, 0x2396001e, 0x628601c5, 0x00000000}},  //   _пала, tājs_, rzko,\n  { {0xa06a0999, 0x6286108d, 0xe4e40088, 0x00000000}},  //   чава_, szko, _річн,\n  { {0x22520030, 0x42261ba8, 0xdce71ba9, 0x00000000}},  //   _tryk_, _здив, _dojč,\n  { {0x539b00b6, 0x66090056, 0x6f04111b, 0x00000000}},  // [3da0] _מיקו, nsek, raic,\n  { {0x6f040051, 0xbd460025, 0x660900b0, 0x00000000}},  //   saic, عناي, isek,\n  { {0x6026008b, 0x6f040051, 0x6b82032c, 0x00000000}},  //   _ядна, paic, thog,\n  { {0x637f0065, 0x6609014a, 0x8a0602dc, 0x00000000}},  //   _këna, ksek, езде,\n  { {0x63a4000b, 0x66090a9d, 0x6b820250, 0x00000000}},  //   _mjin, jsek, rhog,\n  { {0xe8940eec, 0xe29f000c, 0x6b821baa, 0x00000000}},  //   каль, naða_, shog,\n  { {0xc30b0055, 0x6d5c062c, 0x6da302dc, 0x00000000}},  //   ষ্টি_, _inra, _сира,\n  { {0x963401fb, 0x18970025, 0x17540a85, 0x00000000}},  //   вниц, عضوة_, твия,\n  { {0x940a006b, 0xe72f023c, 0x660900f8, 0x00000000}},  //   əmək_, صصي_, gsek,\n  { {0x63a41bab, 0x98be00e5, 0x00000000, 0x00000000}},  //   _ajin, _cată_,   ,\n  { {0x98be001a, 0xbddb000a, 0x63a400c4, 0x00000000}},  //   _dată_, _asèl, _bjin,\n  { {0x69da0047, 0x7d0501c5, 0x8afd00b9, 0x00000000}},  //   _hite, zahs, _poři,\n  { {0x69da0924, 0x63a4003b, 0x2018002d, 0x00000000}},  //   _kite, _djin, erri_,\n  { {0x69da1bac, 0x00000000, 0x00000000, 0x00000000}},  //   _jite,   ,   ,\n  { {0x69da021e, 0xf1bf0010, 0x5f9500ed, 0x00000000}},  //   _mite, lták_, вивт,\n  { {0x6d5c1bad, 0x63a40065, 0x657a0133, 0x00000000}},  //   _anra, _gjin, lkth,\n  { {0x69da00c4, 0x442c02d4, 0xa3e4007d, 0x00000000}},  // [3db0] _oite, ltd_, _भूत_,\n  { {0x69da1bae, 0x657a032e, 0x9f510010, 0x00000000}},  //   _nite, nkth, tszó_,\n  { {0x6d5c0009, 0x7d050145, 0xf9910123, 0x00000000}},  //   _dnra, rahs, یبت_,\n  { {0x3f670057, 0x3eb9144b, 0x3b64005e, 0x00000000}},  //   _чтоб, _tyst_, лъчв,\n  { {0x69da1baf, 0xaa45007c, 0xd6e60044, 0x00000000}},  //   _bite, телл, নরায,\n  { {0x69da000d, 0x7f4d178e, 0x6e2d1bb0, 0x00000000}},  //   _cite, ldaq, mtab,\n  { {0xdb0b0219, 0x69da020c, 0x5ba70245, 0x00000000}},  //   logí, _dite, _зраз,\n  { {0x69da018e, 0x6609006c, 0x06aa0044, 0x00000000}},  //   _eite, tsek, খেছি,\n  { {0x69da00d4, 0x63bd0026, 0x00000000, 0x00000000}},  //   _fite, dlsn,   ,\n  { {0x63b6000c, 0x66091bb1, 0x986500a1, 0x00000000}},  //   _skyn, rsek, _لیتے_,\n  { {0x64a50113, 0x6609004e, 0xd6ab0014, 0x00000000}},  //   тана, ssek, _کدام_,\n  { {0x29071bb2, 0xe29a06b6, 0x91e6005c, 0x00000000}},  //   lana_, дам_, коме,\n  { {0x69c8021e, 0x6e2d01f3, 0xe29f000c, 0x00000000}},  //   _yhde, jtab, taða_,\n  { {0x657a0056, 0x6e2d06d4, 0x29071bb3, 0x00000000}},  //   ckth, dtab, nana_,\n  { {0x201801d6, 0x6e2d1bb4, 0x290700c4, 0x00000000}},  //   urri_, etab, iana_,\n  { {0x29070020, 0x63a40020, 0x7e7600b0, 0x00000000}},  //   hana_, _ujin, tyyp,\n  { {0x290704ff, 0xdb0b02a0, 0xfce61bb5, 0x00000000}},  // [3dc0] kana_, gogí, возо,\n  { {0x290701d9, 0x00000000, 0x00000000, 0x00000000}},  //   jana_,   ,   ,\n  { {0x69da1bb6, 0x61e400f4, 0xe6be007d, 0x00000000}},  //   _rite, _huil, _ऊर्ज,\n  { {0x69da011f, 0x7981018e, 0x6e2d12b0, 0x00000000}},  //   _site, _allw, btab,\n  { {0x61e4028c, 0x69da062c, 0xdb150047, 0x00000000}},  //   _juil, _pite, óbál,\n  { {0x644f001e, 0x61e400b0, 0x6d5c0133, 0x00000000}},  //   ācij, _muil, _unra,\n  { {0x69da008d, 0x26c00006, 0xeb9a00d7, 0x00000000}},  //   _vite, _šio_, _жив_,\n  { {0x7aeb001c, 0x78ba0428, 0xf1bf0047, 0x00000000}},  //   ccgt, _vytv, tták_,\n  { {0x69da037f, 0xcf9301f8, 0x09e607d0, 0x00000000}},  //   _tite, יטה_, _розн,\n  { {0x29070211, 0x69da049b, 0x442c1bb7, 0x00000000}},  //   cana_, _uite, ttd_,\n  { {0x9d1b00a3, 0x657a0065, 0xad1b0097, 0x00000000}},  //   וויט, rkth, וויר,\n  { {0x61e40038, 0xc884005d, 0x442c0009, 0x00000000}},  //   _buil, ışı_, rtd_,\n  { {0x81be0044, 0x61e41059, 0x98be0a67, 0x00000000}},  //   েদন_, _cuil, _datą_,\n  { {0x657d008d, 0x61e41bb8, 0x6e2d0009, 0x00000000}},  //   ësht, _duil, vtab,\n  { {0xb33b02d5, 0x394c0637, 0xf48400a2, 0x00000000}},  //   ança, _mads_, _حاشی,\n  { {0x6e2d1bb9, 0xdce7013e, 0x61e40048, 0x00000000}},  //   ttab, _pojď, _fuil,\n  { {0xdfd80265, 0x7bc90f10, 0x6e2d1a90, 0x00000000}},  // [3dd0] тър_, _rheu, utab,\n  { {0x29071aba, 0x6e2d1bba, 0x224901d6, 0x00000000}},  //   xana_, rtab, _isak_,\n  { {0x6e2d1bbb, 0x2907016c, 0x61e400bb, 0x00000000}},  //   stab, vana_, _zuil,\n  { {0x6e2d1bbc, 0x29071bbd, 0x2613001c, 0x00000000}},  //   ptab, wana_, _दिली_,\n  { {0x290716c3, 0xee87007c, 0xde6402dc, 0x00000000}},  //   tana_, _рыно, _кърп,\n  { {0x9aa40025, 0x394c00d4, 0xaa560025, 0x00000000}},  //   جمهو, _cads_, الوا_,\n  { {0x2907117c, 0x013800b6, 0x7bc91194, 0x00000000}},  //   rana_, דרות_, _theu,\n  { {0x29071bbe, 0x394c01e5, 0x00000000, 0x00000000}},  //   sana_, _eads_,   ,\n  { {0x29071bbf, 0x394c000a, 0x645c0479, 0x00000000}},  //   pana_, _fads_, årin,\n  { {0x394c0089, 0x61e400b5, 0x61e2009d, 0x00000000}},  //   _gads_, _ruil, _éoli,\n  { {0x2905001e, 0x9f600023, 0x22490085, 0x00000000}},  //   _iela_, ërës_, _asak_,\n  { {0x29050073, 0x888c0049, 0x637f0065, 0x00000000}},  //   _hela_, _קראַ, _dëno,\n  { {0x22491bc0, 0x61e409f7, 0x2d831bc1, 0x00000000}},  //   _csak_, _quil, _olje_,\n  { {0x29051080, 0x61e40112, 0x869a0049, 0x00000000}},  //   _jela_, _vuil, _אינז,\n  { {0x2905002b, 0xa5da0049, 0x34390049, 0x00000000}},  //   _mela_, _אַהי, _טײַע,\n  { {0x61e4002a, 0x29050145, 0x128800a1, 0x00000000}},  //   _tuil, _lela_, _لمبی_,\n  { {0x1fa71bc2, 0x733b0049, 0xdd2c0006, 0x00000000}},  // [3de0] укти_, _טעקס, _vėži,\n  { {0x290511c8, 0x00000000, 0x00000000, 0x00000000}},  //   _nela_,   ,   ,\n  { {0x661b0c0d, 0x2d830059, 0x82360123, 0x00000000}},  //   hruk, _dlje_, _شرکا,\n  { {0xd9cc024c, 0x09e60057, 0xa09b007b, 0x00000000}},  //   ाष्ट, годн, _טייט,\n  { {0x29051bc3, 0x2fc001c4, 0xf1a90014, 0x00000000}},  //   _bela_, mlig_, _سایه_,\n  { {0xfce30194, 0x2905028c, 0x661b02ae, 0x00000000}},  //   _горо, _cela_, druk,\n  { {0x29051bc4, 0xdcfe0089, 0x6f060087, 0x00000000}},  //   _dela_, sipē, _kekc,\n  { {0x6d4e1bc5, 0x2d9a029d, 0x2fc005fe, 0x00000000}},  //   _haba, lipe_, nlig_,\n  { {0x6d4e0b9a, 0x2905000c, 0x2fc0021f, 0x00000000}},  //   _kaba, _fela_, ilig_,\n  { {0x6d4e0169, 0x16370054, 0x6f060036, 0x00000000}},  //   _jaba, اسية_, _lekc,\n  { {0x6d4e1bc6, 0xa81a0647, 0xc4450014, 0x00000000}},  //   _maba, _ستار_, لیون_,\n  { {0x6d4e1bc7, 0x2905002d, 0x661b1bc8, 0x00000000}},  //   _laba, _zela_, bruk,\n  { {0x51870d68, 0x2fc005cb, 0x2d9a0a5f, 0x00000000}},  //   гува, dlig_, kipe_,\n  { {0x6d4e1bc9, 0x22490b9f, 0xa4d401ff, 0x00000000}},  //   _naba, _vsak_, _колі,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x443c1702, 0xc27500ed, 0x644a002b, 0x00000000}},  //   _ipv_, _влиј, _isfi,\n  { {0x6d4e006a, 0x2d83012d, 0x00000000, 0x00000000}},  // [3df0] _baba, _plje_,   ,\n  { {0x31350373, 0x6d4e1bca, 0x8d7706dd, 0x00000000}},  //   _теор, _caba, دارا,\n  { {0x6d4e030b, 0x2905003f, 0xa2d90309, 0x00000000}},  //   _daba, _rela_, _नृत्,\n  { {0x8f470121, 0x29050213, 0x64580091, 0x00000000}},  //   _сход, _sela_, _mrvi,\n  { {0x290502d5, 0x6d4e1bcb, 0x66020066, 0x00000000}},  //   _pela_, _faba, _nwok,\n  { {0x2d9a0127, 0x6d4e006a, 0x64580724, 0x00000000}},  //   cipe_, _gaba, _orvi,\n  { {0xa3e403d7, 0x29050142, 0xc984003b, 0x00000000}},  //   _भूल_, _vela_, ључи,\n  { {0x6d4e1bcc, 0x291b005f, 0x7f4f00f4, 0x00000000}},  //   _zaba, şqa_, _jacq,\n  { {0x6d4e011f, 0x64581bcd, 0x290512a1, 0x00000000}},  //   _yaba, _arvi, _tela_,\n  { {0x661b002d, 0x80bb0061, 0xe576007c, 0x00000000}},  //   rruk, _शुभे, изы_,\n  { {0x7d071bce, 0x443c0c06, 0x657d0023, 0x00000000}},  //   _mejs, _cpv_, ëshq,\n  { {0xe72e01b3, 0x645816d0, 0x7f4f0197, 0x00000000}},  //   _ќе_, _drvi, _nacq,\n  { {0x443c0061, 0x2fc01bcf, 0x64581bd0, 0x00000000}},  //   _epv_, vlig_, _ervi,\n  { {0x6f06004f, 0x7d071bd1, 0x443c02c1, 0x00000000}},  //   _sekc, _nejs, _fpv_,\n  { {0x2fc00cb2, 0x6fb6006d, 0x637f0023, 0x00000000}},  //   tlig_, لمسا, _mënj,\n  { {0x6d4e1bd2, 0x4393025f, 0xb4d10061, 0x00000000}},  //   _saba, _мајс, वधी_,\n  { {0x6d4e1bd3, 0x2fc00374, 0x0e6601e1, 0x00000000}},  // [3e00] _paba, rlig_, шкан,\n  { {0x6d4e0312, 0x2fc000f8, 0x645e0285, 0x00000000}},  //   _qaba, slig_, _ápic,\n  { {0x6d4e0004, 0x2d9a0051, 0x7d070059, 0x00000000}},  //   _vaba, ripe_, _dejs,\n  { {0xfbc301be, 0x2d9a0263, 0x3f89010f, 0x00000000}},  //   обхо, sipe_, chau_,\n  { {0x6d4e078f, 0x7d070107, 0x7ae40428, 0x00000000}},  //   _taba, _fejs, žito,\n  { {0x2d9a0065, 0x93bd001a, 0x7d071bd4, 0x00000000}},  //   qipe_, ntăr, _gejs,\n  { {0xdca3017f, 0x7659018e, 0x2d981bd5, 0x00000000}},  //   _дари, _arwy, _imre_,\n  { {0x76590016, 0x66020173, 0x3f801bd6, 0x00000000}},  //   _brwy, _pwok, nkiu_,\n  { {0xd0fb007d, 0x76590016, 0x7bc2013e, 0x00000000}},  //   ्रमण_, _crwy, mlou,\n  { {0x645801ae, 0x76590016, 0x637f0065, 0x00000000}},  //   _prvi, _drwy, _gënj,\n  { {0x2ec303d7, 0x764b0016, 0xc5730025, 0x00000000}},  //   _शर्त, _esgy, تطيع,\n  { {0x64580e0d, 0x76590016, 0x7bc21684, 0x00000000}},  //   _vrvi, _frwy, nlou,\n  { {0x7762008e, 0x7659005b, 0x00000000, 0x00000000}},  //   _inox, _grwy,   ,\n  { {0x443c097c, 0xa63b009b, 0x7bc2013e, 0x00000000}},  //   _tpv_, _סגור, hlou,\n  { {0x3f890bc4, 0x7d070018, 0x7414035b, 0x00000000}},  //   thau_, _rejs, _اوبا,\n  { {0x93bd0035, 0x764b005b, 0x7659005b, 0x00000000}},  //   drăg, _ysgy, _yrwy,\n  { {0x3f89018e, 0x7d0700b9, 0xea000011, 0x00000000}},  // [3e10] rhau_, _pejs, _đếm_,\n  { {0x78ad0279, 0x93bd0035, 0x3f890bc1, 0x00000000}},  //   şavi, ctăr, shau_,\n  { {0x705502fd, 0x637f0065, 0x2dd80025, 0x00000000}},  //   _انجا, _nënk, شبكة_,\n  { {0x2d98014a, 0x6e24060c, 0x7bc2009d, 0x00000000}},  //   _emre_, buib, glou,\n  { {0x7f3a007b, 0x2d8f00f4, 0xa2cb0061, 0x00000000}},  //   _גערו, èges_, सेच्,\n  { {0x5d850647, 0x7bc200d9, 0xecf8007e, 0x00000000}},  //   _السل, alou, _верш_,\n  { {0x7bc2113a, 0xf1bf0010, 0x00000000, 0x00000000}},  //   blou, ltás_,   ,\n  { {0x7bc20129, 0x6d4501a3, 0x6f0d1bd7, 0x00000000}},  //   clou, leha, naac,\n  { {0x6b830065, 0xf1bf0010, 0x00000000, 0x00000000}},  //   ëngu, ntás_,   ,\n  { {0x2717001d, 0x6d4507f9, 0xc9740025, 0x00000000}},  //   ển_, neha, _والث,\n  { {0x61f61bd8, 0x0445041f, 0x69c30009, 0x00000000}},  //   _styl, щенн, mlne,\n  { {0x03a60242, 0x76590016, 0x69c31bd9, 0x00000000}},  //   симо, _trwy, llne,\n  { {0xf6680014, 0x6d451341, 0xd29a0088, 0x00000000}},  //   _نحوه_, keha, утні_,\n  { {0x9f58008e, 0xb227000c, 0xf7780066, 0x00000000}},  //   mpré_, _stæð, _ruħi_,\n  { {0x64a203e0, 0x6d450030, 0x65631bda, 0x00000000}},  //   _наша, deha, _innh,\n  { {0x4425000d, 0x672904cb, 0x6e241bdb, 0x00000000}},  //   mul_, ngej, tuib,\n  { {0x4425000d, 0x93bd0035, 0x0d8601ee, 0x00000000}},  // [3e20] lul_, ptăr, блан,\n  { {0x6f0d001c, 0x6d45046a, 0x44250068, 0x00000000}},  //   aaac, geha, oul_,\n  { {0x4425000d, 0x98a70006, 0x7bc20062, 0x00000000}},  //   nul_, menė_, tlou,\n  { {0x6f0d001c, 0xf1bf1bdc, 0x4425001a, 0x00000000}},  //   caac, stát_, iul_,\n  { {0x44250004, 0x6d4513d2, 0x6e240df5, 0x00000000}},  //   hul_, beha, quib,\n  { {0x44251bdd, 0x7bc200b9, 0x6d451bde, 0x00000000}},  //   kul_, slou, ceha,\n  { {0x6c860054, 0xa96700e1, 0x442500e5, 0x00000000}},  //   _الأم, сија_, jul_,\n  { {0x442504e3, 0xf1bf0027, 0x65630016, 0x00000000}},  //   dul_, ntár_, _annh,\n  { {0x35f70014, 0x22400022, 0x00000000, 0x00000000}},  //   یرید_, _npik_,   ,\n  { {0x44250038, 0x454a1bdf, 0x00000000, 0x00000000}},  //   ful_, учим_,   ,\n  { {0x4425001a, 0x22400093, 0x6f0d00e7, 0x00000000}},  //   gul_, _apik_, yaac,\n  { {0xe29f009f, 0x628f00f6, 0x29c9008e, 0x00000000}},  //   laði_, tzco, núan_,\n  { {0x6d451be0, 0x00000000, 0x00000000, 0x00000000}},  //   yeha,   ,   ,\n  { {0x4425038c, 0x3d22013d, 0xe29f000c, 0x00000000}},  //   bul_, मलों_, naði_,\n  { {0x4425000d, 0x6f0d001c, 0x6d450190, 0x00000000}},  //   cul_, taac, veha,\n  { {0x53a4098c, 0xaad90164, 0xc41700a1, 0x00000000}},  //   _најб, बेडक, _اغوا_,\n  { {0x63ad0f5b, 0x6d451be1, 0xf1ab0014, 0x00000000}},  // [3e30] _ijan, teha, _ماده_,\n  { {0xf1bf0010, 0x290e1be2, 0x61fd046a, 0x00000000}},  //   rtás_, jafa_, mpsl,\n  { {0x6d45065c, 0xe29f000c, 0xf1bf00f1, 0x00000000}},  //   reha, daði_, stás_,\n  { {0x6d450390, 0x53c9006e, 0x637f0065, 0x00000000}},  //   seha, रतिश, _bëni,\n  { {0x2bb10046, 0x4425000d, 0xe29f009f, 0x00000000}},  //   jące_, zul_, faði_,\n  { {0x637f0065, 0xb4e7007d, 0xe29f01e5, 0x00000000}},  //   _dëni, _भले_, gaði_,\n  { {0x645e04c8, 0x4425001a, 0x69c30146, 0x00000000}},  //   _špin, xul_, rlne,\n  { {0xe61901fb, 0x4425001a, 0x63ad003b, 0x00000000}},  //   ади_, vul_, _njan,\n  { {0x67291be3, 0x1bd4007c, 0x44250022, 0x00000000}},  //   rgej, _хотя, wul_,\n  { {0x44251305, 0x63ad1be4, 0x290e00e7, 0x00000000}},  //   tul_, _ajan, cafa_,\n  { {0x39471be5, 0x63ad1be6, 0x61fd00bb, 0x00000000}},  //   mens_, _bjan, epsl,\n  { {0x44251305, 0xc1690097, 0x22400022, 0x00000000}},  //   rul_, _בח_, _ppik_,\n  { {0x4425000d, 0x63ad01aa, 0x515600ed, 0x00000000}},  //   sul_, _djan, отву,\n  { {0x6b8916ca, 0x394700eb, 0x4425000d, 0x00000000}},  //   _lleg, nens_, pul_,\n  { {0xaf9a085f, 0x6b9b1be7, 0x6b89010e, 0x00000000}},  //   атах_, _omug, _oleg,\n  { {0x290e1be8, 0x82a60088, 0x3947192b, 0x00000000}},  //   zafa_, _майж, hens_,\n  { {0x1dc50309, 0x8fa300ed, 0x7ae40161, 0x00000000}},  // [3e40] वतंत, фате, žitk,\n  { {0x6b891be9, 0x39470190, 0x637f0065, 0x00000000}},  //   _aleg, jens_, _rëni,\n  { {0x39471bea, 0x6b891beb, 0xdee60242, 0x00000000}},  //   dens_, _bleg, _мони,\n  { {0x39470061, 0x6b890145, 0x00000000, 0x00000000}},  //   eens_, _cleg,   ,\n  { {0x39471bec, 0xe29f000c, 0x6b8200f8, 0x00000000}},  //   fens_, taði_, rkog,\n  { {0x394708da, 0x637f0023, 0x2d9e014a, 0x00000000}},  //   gens_, _vëni, _öte_,\n  { {0x290e1bed, 0xe29f000c, 0x58d300e2, 0x00000000}},  //   rafa_, raði_, мошт,\n  { {0x290e06fe, 0x00000000, 0x00000000, 0x00000000}},  //   safa_,   ,   ,\n  { {0x3947119b, 0x056a01fc, 0xbddb009d, 0x00000000}},  //   bens_, ајни_, _isèr,\n  { {0x39470f4a, 0x63ad0056, 0x2bb10036, 0x00000000}},  //   cens_, _sjan, rące_,\n  { {0x63ad002b, 0x09e30044, 0xa3e4006e, 0x00000000}},  //   _pjan, _নৌকা, _भूख_,\n  { {0xf746004c, 0x9f420023, 0x290c151d, 0x00000000}},  //   _федо, _dikë_, _heda_,\n  { {0xe3b9006b, 0x290c1bee, 0x753d0010, 0x00000000}},  //   brın_, _keda_, ősza,\n  { {0x290c0093, 0x637f0023, 0x00000000, 0x00000000}},  //   _jeda_, _nënv,   ,\n  { {0xcf9b07d8, 0x290c0173, 0xdfd51001, 0x00000000}},  //   аја_, _meda_, зовы,\n  { {0x290c0039, 0x2d8a001a, 0x61fd0479, 0x00000000}},  //   _leda_, _albe_, ppsl,\n  { {0x394700f4, 0x645a0b16, 0x00000000, 0x00000000}},  // [3e50] yens_, lvti,   ,\n  { {0x6b9b032e, 0x6b890343, 0x290c0738, 0x00000000}},  //   _smug, _sleg, _neda_,\n  { {0x394702ae, 0x6b890129, 0xe1ff004a, 0x00000000}},  //   vens_, _pleg, lpó_,\n  { {0x63bd0213, 0x61ed027e, 0x39470343, 0x00000000}},  //   nosn, _kual, wens_,\n  { {0x290c1bef, 0x61ed04cb, 0x61e51bf0, 0x00000000}},  //   _beda_, _jual, _kihl,\n  { {0x39470007, 0x290c1bf1, 0x61e501dc, 0x00000000}},  //   uens_, _ceda_, _jihl,\n  { {0x76420211, 0x39471bea, 0x290c003b, 0x00000000}},  //   _apoy, rens_, _deda_,\n  { {0x6d550010, 0x3947004e, 0x6b9b1bf2, 0x00000000}},  //   _haza, sens_, _umug,\n  { {0x6d55011f, 0x39470168, 0xd706007c, 0x00000000}},  //   _kaza, pens_, чные_,\n  { {0xb9980783, 0x6d550aa8, 0x9f420065, 0x00000000}},  //   _двух_, _jaza, _pikë_,\n  { {0x1b0e0055, 0x320900ab, 0xf1bf004a, 0x00000000}},  //   _হাতে_, _away_, tuán_,\n  { {0x6d55037e, 0x61ed1aed, 0x32090173, 0x00000000}},  //   _laza, _bual, _bway_,\n  { {0x61ed0845, 0x290c00c4, 0x673b012d, 0x00000000}},  //   _cual, _yeda_, mfuj,\n  { {0x6d5501d9, 0x61ed0b62, 0xa6e1000c, 0x00000000}},  //   _naza, _dual, öðug,\n  { {0x32090082, 0x7ae90288, 0x98a70089, 0x00000000}},  //   _eway_, _oget, denī_,\n  { {0x7ae909e4, 0x09a8013d, 0x7ae40027, 0x00000000}},  //   _nget, _औद्य, žiti,\n  { {0x6d55005f, 0x3cde0061, 0x71a601ee, 0x00000000}},  // [3e60] _baza, केने_, _наиз,\n  { {0x6d55172b, 0x6e360006, 0x637f0065, 0x00000000}},  //   _caza, rtyb, _dënu,\n  { {0x290c12d8, 0x0b460069, 0xb33b09b1, 0x00000000}},  //   _reda_, знен, liça,\n  { {0x290c0004, 0x261c062e, 0x7d010035, 0x00000000}},  //   _seda_, _मिली_, _pârâ,\n  { {0x6f040169, 0x290c0052, 0xba73023c, 0x00000000}},  //   mbic, _peda_, فاوت,\n  { {0x644300b5, 0x7ae916ec, 0x290c1bf3, 0x00000000}},  //   _opni, _eget, _qeda_,\n  { {0x8c430373, 0xd90d00d3, 0xf7720447, 0x00000000}},  //   _пере, شین_, فاظ_,\n  { {0x69c1011f, 0x7d0e1bf4, 0x6d551bf5, 0x00000000}},  //   _ekle, _hebs, _zaza,\n  { {0x6d55047f, 0x290c1bf6, 0x6e2412aa, 0x00000000}},  //   _yaza, _teda_, nrib,\n  { {0x61eb00f4, 0x1dbe0309, 0x6d55006b, 0x00000000}},  //   _égli, ्तित, _xaza,\n  { {0x61ed0294, 0x6e240279, 0x63bd0e24, 0x00000000}},  //   _sual, hrib, tosn,\n  { {0x637f0065, 0x60c5021e, 0x7d0e1bf7, 0x00000000}},  //   _nënt, _ryhm, _lebs,\n  { {0x645a001c, 0x61ed051b, 0xe298008b, 0x00000000}},  //   svti, _qual, заў_,\n  { {0xbddb00f6, 0x26db00a0, 0x00000000, 0x00000000}},  //   _apèn, _הקדמ,   ,\n  { {0x6d55051a, 0xe53b00a0, 0x63bd00ca, 0x00000000}},  //   _raza, _התור, posn,\n  { {0x4fc409f1, 0xb33b00fa, 0xdb0b074d, 0x00000000}},  //   есуа, biça, llgö,\n  { {0x6d55011f, 0x2bb10036, 0x6e240dc5, 0x00000000}},  // [3e70] _paza, jąca_, grib,\n  { {0x6d55005f, 0x27e6032c, 0x60c500b0, 0x00000000}},  //   _qaza, _lion_, _tyhm,\n  { {0x6d5515f7, 0x6f040026, 0x6e2400e0, 0x00000000}},  //   _vaza, bbic, arib,\n  { {0x69c10046, 0x6d55000b, 0x27e6002d, 0x00000000}},  //   _skle, _waza, _nion_,\n  { {0x6e241bf8, 0x6d550020, 0x2fc91bf9, 0x00000000}},  //   crib, _taza, mlag_,\n  { {0xd90f04e1, 0x27e60052, 0x2fc91bfa, 0x00000000}},  //   ایا_, _aion_, llag_,\n  { {0x23690119, 0x27e60032, 0x26c60022, 0x00000000}},  //   _onaj_, _bion_, _ayoo_,\n  { {0x27e60051, 0x69c10036, 0x7d1c1a7d, 0x00000000}},  //   _cion_, _wkle, _zdrs,\n  { {0x6f0f0ef1, 0x27e6002d, 0x645c1bfb, 0x00000000}},  //   _mecc, _dion_, ærin,\n  { {0x6f0f1bfc, 0x2fc9010f, 0x39150167, 0x00000000}},  //   _lecc, hlag_, _آواز,\n  { {0x637f0065, 0xa34a00e3, 0x27e6009d, 0x00000000}},  //   _nëns, озна_, _fion_,\n  { {0xf2a602ea, 0x27e60068, 0xb33b00fa, 0x00000000}},  //   димп, _gion_, tiça,\n  { {0x7ae40059, 0xe2970783, 0x6e24013f, 0x00000000}},  //   žitv, дая_, xrib,\n  { {0x6f1d0b32, 0x27e6002d, 0xb33b00fa, 0x00000000}},  //   _adsc, _zion_, riça,\n  { {0x6f0f0197, 0x2fc90991, 0x91e30088, 0x00000000}},  //   _becc, flag_, торе,\n  { {0x6f0f02c9, 0x442500d0, 0x2fc9011c, 0x00000000}},  //   _cecc, mrl_, glag_,\n  { {0x6f0404cb, 0x0eaa008b, 0x6f0f1811, 0x00000000}},  // [3e80] rbic, цкай_, _decc,\n  { {0x6f041862, 0x23690166, 0x6f1d0026, 0x00000000}},  //   sbic, _znaj_, _edsc,\n  { {0x6c4a002c, 0x51f6025a, 0x926500a2, 0x00000000}},  //   تلاف_, _عسکر, _قدیم,\n  { {0x6e24188a, 0x5aca00ed, 0x7d050051, 0x00000000}},  //   prib, олем_, abhs,\n  { {0x6e24006b, 0x25be004a, 0x7d0e01c3, 0x00000000}},  //   qrib, yotl_, _tebs,\n  { {0x2fc00051, 0x27e60de7, 0x6f0f0197, 0x00000000}},  //   loig_, _sion_, _zecc,\n  { {0xa3c30309, 0xa2a5007d, 0x19b9007e, 0x00000000}},  //   ्तम_, _चेन्, чуць_,\n  { {0x97a30783, 0xb6050087, 0x00000000, 0x00000000}},  //   крыл, _odšč,   ,\n  { {0x993a007e, 0x00000000, 0x00000000, 0x00000000}},  //   _мяжу_,   ,   ,\n  { {0x26c600e7, 0x44980088, 0x00000000, 0x00000000}},  //   _vyoo_, звою_,   ,\n  { {0x201e0387, 0x27e60835, 0xe73a0131, 0x00000000}},  //   átil_, _tion_, _меж_,\n  { {0x69ca1bfd, 0xc6a602dc, 0x00000000, 0x00000000}},  //   llfe, _орли,   ,\n  { {0x6f0f197d, 0x44250082, 0x3a2600ea, 0x00000000}},  //   _recc, arl_, nrop_,\n  { {0x6f0f1bfe, 0x00000000, 0x00000000, 0x00000000}},  //   _secc,   ,   ,\n  { {0x656a002a, 0x6f0f1bff, 0x00000000, 0x00000000}},  //   _infh, _pecc,   ,\n  { {0x442c1c00, 0x9df906e1, 0x93780025, 0x00000000}},  //   mud_, знат_, _يصير_,\n  { {0x442c1c01, 0x6f0f0207, 0x291e00ea, 0x00000000}},  // [3e90] lud_, _vecc, _odta_,\n  { {0x3a260436, 0xeca70184, 0x00000000, 0x00000000}},  //   drop_, мјен,   ,\n  { {0x442c061f, 0x6f0f0232, 0x070e01f5, 0x00000000}},  //   nud_, _tecc, सराव_,\n  { {0xad9b0daf, 0x61fb001a, 0x20031c02, 0x00000000}},  //   _stúd, ţulu, mpji_,\n  { {0xa969025f, 0x442c010e, 0x00000000, 0x00000000}},  //   зила_, hud_,   ,\n  { {0x442c1c03, 0xac190175, 0xdb0b0051, 0x00000000}},  //   kud_, _ногу_, ingé,\n  { {0x442c04cb, 0xb8f70309, 0x6e2d00ab, 0x00000000}},  //   jud_, _सर_, luab,\n  { {0x442c1c04, 0xd7f80082, 0x3f89007f, 0x00000000}},  //   dud_, _trăn_, nkau_,\n  { {0x6e2d008e, 0x7afb00e7, 0x00000000, 0x00000000}},  //   nuab, _ifut,   ,\n  { {0x7bcb0afd, 0x442500ea, 0xe5710025, 0x00000000}},  //   llgu, trl_, اطة_,\n  { {0x44250061, 0x442c095a, 0xd469003b, 0x00000000}},  //   url_, gud_, чине_,\n  { {0x7853006b, 0x00000000, 0x00000000, 0x00000000}},  //   _nəvə,   ,   ,\n  { {0x44250026, 0x442c0068, 0x8883009e, 0x00000000}},  //   srl_, aud_, _سیکن,\n  { {0x442c01bf, 0x201e0107, 0x442500ca, 0x00000000}},  //   bud_, štim_, prl_,\n  { {0xa067012b, 0x1beb007d, 0x2bb10036, 0x00000000}},  //   нара_, _जंगल_, jąco_,\n  { {0x3f89003f, 0x25a51c05, 0x00000000, 0x00000000}},  //   gkau_, lill_,   ,\n  { {0x7853006b, 0x4d66007e, 0x63a60022, 0x00000000}},  // [3ea0] _dəvə, нкав, mikn,\n  { {0x25a51c06, 0x63a6027e, 0x7dc601b2, 0x00000000}},  //   nill_, likn, رقان,\n  { {0x10a60088, 0x98a70006, 0x00000000, 0x00000000}},  //   _чинн, denį_,   ,\n  { {0x6e2d0b50, 0x63a604bb, 0x3a261c07, 0x00000000}},  //   buab, nikn, trop_,\n  { {0x6f630057, 0x25a5000c, 0xf1bf004a, 0x00000000}},  //   _связ, kill_, irán_,\n  { {0xdca61c08, 0xf1bf0051, 0x442c1c09, 0x00000000}},  //   _заги, hrán_, yud_,\n  { {0x442c006b, 0xfdbe013d, 0x25a50fad, 0x00000000}},  //   xud_, ्तीफ, dill_,\n  { {0x442c02e1, 0xca761c0a, 0x637f0023, 0x00000000}},  //   vud_, _пузы, _nënp,\n  { {0xf1bf0211, 0x442c04be, 0x63a6008a, 0x00000000}},  //   drán_, wud_, dikn,\n  { {0x442c1c0b, 0x25a501e5, 0x38c80123, 0x00000000}},  //   tud_, gill_, _قاضی_,\n  { {0x46ea01f9, 0x3e5201aa, 0x4395142c, 0x00000000}},  //   _еден_, _lņt_, ванс,\n  { {0x442c0030, 0xf1bf0051, 0x9f970023, 0x00000000}},  //   rud_, grán_, rçë_,\n  { {0x32190061, 0x442c1c0c, 0x6f1606f2, 0x00000000}},  //   ussy_, sud_, dayc,\n  { {0xf1bf1a1c, 0x442c006c, 0x66e3094b, 0x00000000}},  //   arán_, pud_, _соча,\n  { {0xc4f7007b, 0xd48f013b, 0xf1bf02f9, 0x00000000}},  //   _אזוי_, _ср_, brán_,\n  { {0x6e2d010e, 0x628600d9, 0x00000000, 0x00000000}},  //   tuab, byko,   ,\n  { {0x3f890006, 0x8d87007c, 0xe3b01c0d, 0x00000000}},  // [3eb0] rkau_, нужд, _درو_,\n  { {0x22490119, 0x3f891c0e, 0xfd100025, 0x00000000}},  //   _ipak_, skau_, مجم_,\n  { {0x6f160163, 0x7853006b, 0x6e2d04a5, 0x00000000}},  //   bayc, _təvə, suab,\n  { {0xa3c303d7, 0x501a009b, 0x2bb10036, 0x00000000}},  //   ्ति_, _קורו, rąco_,\n  { {0x2fd90093, 0x5edf0044, 0x1a6800a1, 0x00000000}},  //   _ihsg_, _ফ্রে, ٹیلی_,\n  { {0x7dcb006c, 0xf2d40049, 0xd9450745, 0x00000000}},  //   küsi, נעס_, теки,\n  { {0xa3c302f4, 0x62860c8c, 0x2d910089, 0x00000000}},  //   ्ता_, zyko, _ilze_,\n  { {0x25a50066, 0x9ff30044, 0xf7710a4f, 0x00000000}},  //   will_, _জবাব_, شاب_,\n  { {0x25a50538, 0x9955004d, 0x63a60091, 0x00000000}},  //   till_, _икац, vikn,\n  { {0xb4650088, 0x88e30044, 0x00000000, 0x00000000}},  //   вкол, নুষক,   ,\n  { {0x69c30006, 0x63a604be, 0x22491c0f, 0x00000000}},  //   mone, tikn, _apak_,\n  { {0x62861c10, 0x22490022, 0x03a6005c, 0x00000000}},  //   tyko, _bpak_, тимо,\n  { {0x63a6008a, 0x25a51341, 0xf1bf0232, 0x00000000}},  //   rikn, pill_, rrán_,\n  { {0x412a01fb, 0x69c300b0, 0x62861c11, 0x00000000}},  //   ього_, none, ryko,\n  { {0xed520014, 0x69c30032, 0x2121004a, 0x00000000}},  //   یپر_, ione, _ddhh_,\n  { {0xe4e40088, 0x6266022a, 0x3e52000a, 0x00000000}},  //   _січн, _авиа, _pņt_,\n  { {0xee3a0425, 0x69c31c12, 0x63a40e6a, 0x00000000}},  // [3ec0] ьна_, kone, _imin,\n  { {0x69c30292, 0xdb0000f4, 0x91e601ee, 0x00000000}},  //   jone, _immé, _шопе,\n  { {0x69c31c13, 0x63a41c14, 0xa7fc01df, 0x00000000}},  //   done, _kmin, _arın,\n  { {0x6a8600ed, 0x661b03b6, 0xf1bf00b9, 0x00000000}},  //   клеа, ksuk, hrál_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x661b1c15, 0x00000000, 0x00000000, 0x00000000}},  //   dsuk,   ,   ,\n  { {0x63a400b0, 0xd7f80011, 0xa96701fc, 0x00000000}},  //   _omin, _trăm_, тија_,\n  { {0x6d5e0bbc, 0x63a400e0, 0x7c3e01a2, 0x00000000}},  //   ldpa, _nmin, mtpr,\n  { {0x6d5c1c16, 0x69c3002d, 0x201e0107, 0x00000000}},  //   _kara, bone, štih_,\n  { {0x63a4006a, 0x69c304bd, 0x6d5c033b, 0x00000000}},  //   _amin, cone, _jara,\n  { {0x92af08b7, 0x6d5c066d, 0x19b9007c, 0x00000000}},  //   _করে_, _mara, _чуть_,\n  { {0x6d5c006a, 0x22490022, 0x63a40146, 0x00000000}},  //   _lara, _ppak_, _cmin,\n  { {0x63a40056, 0x86c30014, 0x00000000, 0x00000000}},  //   _dmin, _پيون,   ,\n  { {0x63a41c17, 0x7c3e02e1, 0xf4840123, 0x00000000}},  //   _emin, ktpr, _مابی,\n  { {0x25ab00f4, 0xdb1b0011, 0xa5bd0006, 0x00000000}},  //   ècle_, _khuô, krųj,\n  { {0x69c30885, 0x6d5c006a, 0x63a40036, 0x00000000}},  //   zone, _aara, _gmin,\n  { {0x6d5c04d4, 0x6d5e00b5, 0x69c30095, 0x00000000}},  // [3ed0] _bara, fdpa, yone,\n  { {0x69c30982, 0x7c3e068f, 0x5c070c4e, 0x00000000}},  //   xone, ftpr, вяда,\n  { {0x443e008e, 0x69c300b0, 0x64580087, 0x00000000}},  //   ntt_, vone, _jsvi,\n  { {0x66021c18, 0xff041c19, 0x69c301b5, 0x00000000}},  //   _otok, _вярн, wone,\n  { {0x6b80037f, 0x443e0082, 0x66020045, 0x00000000}},  //   _domg, htt_, _ntok,\n  { {0x6d5c0238, 0x64580626, 0x644a0030, 0x00000000}},  //   _gara, _osvi, _opfi,\n  { {0x69c3029d, 0x7c3e0d4d, 0x92af0044, 0x00000000}},  //   rone, ctpr, _করো_,\n  { {0x6d5c01d9, 0xdb1b0011, 0x69c30238, 0x00000000}},  //   _zara, _chuô, sone,\n  { {0x6d5c038c, 0x7f5d00f4, 0x443e1c1a, 0x00000000}},  //   _yara, _masq, ett_,\n  { {0x63a41c1b, 0x6d5c006b, 0x661b0145, 0x00000000}},  //   _smin, _xara, rsuk,\n  { {0x443e001c, 0x661b0052, 0x63a40145, 0x00000000}},  //   gtt_, ssuk, _pmin,\n  { {0x7981005b, 0x7f5d00f6, 0xdcfc0066, 0x00000000}},  //   _holw, _nasq, _porċ,\n  { {0x6d470c06, 0x69da021e, 0x79811c1c, 0x00000000}},  //   _obja, _yhte, _kolw,\n  { {0xf652009b, 0x00000000, 0x00000000, 0x00000000}},  //   _לצד_,   ,   ,\n  { {0xb18401dc, 0x7c3e1c1d, 0x3fc8025a, 0x00000000}},  //   šťov, xtpr, ندری_,\n  { {0x63a4011c, 0x7f5d00f4, 0x6d471c1e, 0x00000000}},  //   _umin, _casq, _abja,\n  { {0xa3c302fb, 0x0e66008b, 0x7d150eef, 0x00000000}},  // [3ee0] ्तर_, ыкан, _bezs,\n  { {0x6d5c005f, 0x3c3c1c1f, 0x7c3e1c20, 0x00000000}},  //   _qara, tív_, ttpr,\n  { {0x3157007b, 0x0c26005e, 0x8fa60517, 0x00000000}},  //   _גיין_, умен, _бане,\n  { {0x69da008d, 0xeb971c21, 0x207b0049, 0x00000000}},  //   _shte, лих_, _נאכא,\n  { {0x6d5c0483, 0x79811c22, 0xab31006b, 0x00000000}},  //   _tara, _bolw, zıçı_,\n  { {0x443e1c23, 0xdcfc0eae, 0x7981005b, 0x00000000}},  //   ytt_, _korč, _colw,\n  { {0x3f8219c2, 0x764b0006, 0x6b8002e7, 0x00000000}},  //   _koku_, _apgy, _tomg,\n  { {0x3f821c24, 0xf093009b, 0x7f441c25, 0x00000000}},  //   _joku_, מנו_, nfiq,\n  { {0x0936023c, 0x853c0006, 0xa91c0142, 0x00000000}},  //   _مراج, siėm, _voľb,\n  { {0xaa930025, 0x79811c26, 0x443e0785, 0x00000000}},  //   _الكث, _golw, ttt_,\n  { {0x94d40245, 0xdcfc00ca, 0xa4d4013a, 0x00000000}},  //   ронц, _norč, роні,\n  { {0xdb090065, 0x7dcb006b, 0x395e03a1, 0x00000000}},  //   _vjeç, lüst, _hats_,\n  { {0x7f5d06c2, 0x443e0145, 0x66021c27, 0x00000000}},  //   _rasq, stt_, _utok,\n  { {0xdcfc01ee, 0x365b009b, 0x443e0068, 0x00000000}},  //   _borč, _נכונ, ptt_,\n  { {0x6ab00183, 0x395e0039, 0x7f5d1c28, 0x00000000}},  //   जपुर, _mats_, _pasq,\n  { {0x29c9009f, 0x998600b9, 0xe1f000a6, 0x00000000}},  //   núar_, spoň_, _کسي_,\n  { {0x6e3d0009, 0x61f60173, 0x7f5d038e, 0x00000000}},  // [3ef0] _qqsb, _guyl, _vasq,\n  { {0x442c049b, 0x395e010e, 0x7bc901d6, 0x00000000}},  //   ord_, _nats_, _skeu,\n  { {0x7f5d0129, 0x70fa009b, 0x7dcb014a, 0x00000000}},  //   _tasq, _בהתח, düst,\n  { {0x907a00a0, 0x442c0051, 0x798100d2, 0x00000000}},  //   _סטרי, ird_, _solw,\n  { {0x6f0d0149, 0xfe35007b, 0x79810093, 0x00000000}},  //   mbac, _דאָך_, _polw,\n  { {0x6f0d01a2, 0x644e002b, 0x395e0133, 0x00000000}},  //   lbac, ħbij, _cats_,\n  { {0x798101b5, 0x395e06ed, 0x00000000, 0x00000000}},  //   _volw, _dats_,   ,\n  { {0x2d8302d5, 0xf6250072, 0x6f0d0dcc, 0x00000000}},  //   _hoje_, адио, nbac,\n  { {0x2d830119, 0xe616045a, 0x442c015c, 0x00000000}},  //   _koje_, ады_, erd_,\n  { {0x764b0061, 0x6f0d0471, 0x395e1c29, 0x00000000}},  //   _vpgy, hbac, _gats_,\n  { {0x04450805, 0x7dcb010f, 0x645e14ba, 0x00000000}},  //   шенн, lüss, _špir,\n  { {0x6e2d0232, 0x2d831c2a, 0x00000000, 0x00000000}},  //   krab, _loje_,   ,\n  { {0x3f821712, 0x6f0d00ab, 0x442c0f12, 0x00000000}},  //   _roku_, dbac, ard_,\n  { {0x66091c2b, 0xd62600ed, 0x6e2d0089, 0x00000000}},  //   mpek, _тоше_, drab,\n  { {0x6f0d057e, 0x0cb00055, 0xc0e6007c, 0x00000000}},  //   fbac, _কর্ত, ровк,\n  { {0x64411c2c, 0x7dcb0095, 0x0c760014, 0x00000000}},  //   mtli, züst, یداد,\n  { {0x6e2d0c99, 0x6441010f, 0x2d83039b, 0x00000000}},  // [3f00] grab, ltli, _boje_,\n  { {0xd24f00a2, 0x64410007, 0x27ef0030, 0x00000000}},  //   _کنی_, otli, _lign_,\n  { {0x64410109, 0x26cf0009, 0xed57007e, 0x00000000}},  //   ntli, _lygo_, рох_,\n  { {0x6441010f, 0xdb0b0181, 0x6e2d008e, 0x00000000}},  //   itli, ligê, brab,\n  { {0x395e0a5c, 0x6441050d, 0x6e2d00e5, 0x00000000}},  //   _pats_, htli, crab,\n  { {0xa3dd02fb, 0x64410039, 0x442c00ea, 0x00000000}},  //   _तीन_, ktli, yrd_,\n  { {0x7dcb1c2d, 0x26cf0bc7, 0x2b5500a1, 0x00000000}},  //   rüst, _aygo_, _گیند_,\n  { {0x7dcb006c, 0x395e01c3, 0xf1bf03b5, 0x00000000}},  //   süst, _wats_, nuár_,\n  { {0xd6d70e09, 0x64411c2e, 0x00000000, 0x00000000}},  //   ить_, etli,   ,\n  { {0x6441010f, 0x356a005e, 0x80f5006e, 0x00000000}},  //   ftli, трин_, _आलेख_,\n  { {0x6f0d0075, 0x442c00b5, 0x98a50180, 0x00000000}},  //   ybac, urd_, _falı_,\n  { {0x291c0059, 0x442c0022, 0x27ef1c2f, 0x00000000}},  //   lava_, rrd_, _gign_,\n  { {0x9f42021e, 0x64410eaa, 0xf1bf0010, 0x00000000}},  //   _mikä_, atli, nság_,\n  { {0x291c0027, 0x6e2d009d, 0x98a5006b, 0x00000000}},  //   nava_, vrab, _zalı_,\n  { {0x64410045, 0xddcd0036, 0x2d830023, 0x00000000}},  //   ctli, ywał, _roje_,\n  { {0xcf98045e, 0x6e2d011c, 0x291c1c30, 0x00000000}},  //   ају_, trab, hava_,\n  { {0x291c1ab1, 0x2d8300ca, 0xfe700025, 0x00000000}},  // [3f10] kava_, _poje_, ودك_,\n  { {0x291c0087, 0x6f0d0002, 0x6e2d13e4, 0x00000000}},  //   java_, sbac, rrab,\n  { {0x291c014a, 0x2d830107, 0x201e00b9, 0x00000000}},  //   dava_, _voje_, átit_,\n  { {0x6e2d00d4, 0xdea10014, 0x3a751c31, 0x00000000}},  //   prab, _فیزی, йлер,\n  { {0xeab00379, 0x291c1c32, 0x2d830006, 0x00000000}},  //   وعه_, fava_, _toje_,\n  { {0x27ef0038, 0x9f42021e, 0x98a5014a, 0x00000000}},  //   _sign_, _eikä_, _salı_,\n  { {0x7c950054, 0x6c850647, 0x6441010f, 0x00000000}},  //   _الأص, _الزم, xtli,\n  { {0x5ba40e09, 0x9f970129, 0x00000000, 0x00000000}},  //   _друз, nçà_,   ,\n  { {0x291c0cce, 0x00000000, 0x00000000, 0x00000000}},  //   bava_,   ,   ,\n  { {0x6609011c, 0x64411c33, 0x660d014a, 0x00000000}},  //   rpek, ttli, _çakm,\n  { {0x6609151e, 0x84580401, 0x64411c34, 0x00000000}},  //   spek, арят_, utli,\n  { {0x6441010f, 0xad9b000c, 0xdcfc0089, 0x00000000}},  //   rtli, _stúl, _morā,\n  { {0x6605003b, 0x00000000, 0x00000000, 0x00000000}},  //   _упла,   ,   ,\n  { {0x637f008d, 0x9103005e, 0x845902ea, 0x00000000}},  //   _mëny, зпре, _брит_,\n  { {0xdcfc001e, 0xf1bf0010, 0x00000000, 0x00000000}},  //   _norā, zság_,   ,\n  { {0xd00f002c, 0x291c01d9, 0x2d870706, 0x00000000}},  //   علق_, zava_, önen_,\n  { {0xdee3004d, 0xdd8f0123, 0xea000011, 0x00000000}},  // [3f20] зоти, کول_, _đắm_,\n  { {0x201e02d5, 0x291c1052, 0x627b00a3, 0x00000000}},  //   átis_, xava_, _ענינ,\n  { {0xbddb0173, 0x0fda0014, 0xcb6a003b, 0x00000000}},  //   _apès, _مبحث_, лаже_,\n  { {0xf3f90055, 0x201e010a, 0x00000000, 0x00000000}},  //   _আবার_, štis_,   ,\n  { {0xe3b901df, 0xc6b20044, 0x00000000, 0x00000000}},  //   ksın_, _চর্চ,   ,\n  { {0x7d960025, 0x5d860025, 0xfce60131, 0x00000000}},  //   _السؤ, _الآل, _гого,\n  { {0xf1bf0010, 0xc866005e, 0x3ea00035, 0x00000000}},  //   sság_, стли, lzit_,\n  { {0x291c037e, 0xbb430057, 0x7d1e006c, 0x00000000}},  //   sava_, _неск, laps,\n  { {0xd6d00025, 0xf66a03ec, 0x3ea0013f, 0x00000000}},  //   بقة_, احبه_, nzit_,\n  { {0x7d1e0232, 0x8afd00b9, 0x39990bf2, 0x00000000}},  //   naps, _vaře, _pèse_,\n  { {0x07a6025f, 0x25ac0022, 0x00000000, 0x00000000}},  //   _лажн, ridl_,   ,\n  { {0xc7f7009b, 0x69ca00bb, 0x7d1e1c35, 0x00000000}},  //   _הזאת_, lofe, haps,\n  { {0x7d1e01c9, 0x00000000, 0x00000000, 0x00000000}},  //   kaps,   ,   ,\n  { {0x645c1c36, 0x7d1e016c, 0x00000000, 0x00000000}},  //   æris, japs,   ,\n  { {0xbddb009d, 0x251b00a3, 0x00000000, 0x00000000}},  //   _opèr, _גווא,   ,\n  { {0xa3bd03d7, 0x69ca010f, 0x4034025f, 0x00000000}},  //   _आदि_, hofe, џетс,\n  { {0x63af021c, 0x88bc00b9, 0x00000000, 0x00000000}},  // [3f30] micn, _sděl,   ,\n  { {0x63af037e, 0x753a0203, 0x3209011c, 0x00000000}},  //   licn, ngtz, _itay_,\n  { {0x69ca0066, 0xdb0b01e6, 0xa91c0142, 0x00000000}},  //   dofe, ligé, _poľn,\n  { {0x63af012d, 0xeab100a1, 0x398b01e3, 0x00000000}},  //   nicn, وٹا_, _løst_,\n  { {0x7f3a007b, 0xa91c0027, 0x784a006b, 0x00000000}},  //   _דערו, _voľn, _rəva,\n  { {0xa96900ed, 0x69ca0203, 0x7d1e0133, 0x00000000}},  //   рика_, gofe, caps,\n  { {0x88bc0224, 0xab950088, 0x00000000, 0x00000000}},  //   _uděl, _диві,   ,\n  { {0x6d571c37, 0xd5b80089, 0x91f90164, 0x00000000}},  //   lexa, enā_, ंदाज_,\n  { {0x7bcb10c6, 0x63af01ee, 0x00000000, 0x00000000}},  //   mogu, dicn,   ,\n  { {0x7bcb1c38, 0x628f0b40, 0x05a9007c, 0x00000000}},  //   logu, dyco, рвой_,\n  { {0xe3ba0057, 0x7dd00bf4, 0x32091c39, 0x00000000}},  //   ибо_, mäst, _atay_,\n  { {0x3ce10754, 0x63af1c3a, 0x42ea0ae0, 0x00000000}},  //   _करने_, gicn, имно_,\n  { {0x9293007e, 0x63bd004a, 0x00000000, 0x00000000}},  //   даўц, érna,   ,\n  { {0x7dd01c3b, 0x00000000, 0x00000000, 0x00000000}},  //   näst,   ,   ,\n  { {0x63af037e, 0x7bcb0004, 0x2b4d01ca, 0x00000000}},  //   bicn, kogu, _obec_,\n  { {0x673b0161, 0x65630082, 0x7dd01c3c, 0x00000000}},  //   nguj, _hanh, häst,\n  { {0x3f9912b5, 0x65630199, 0x7dd00cba, 0x00000000}},  // [3f40] _dlsu_, _kanh, käst,\n  { {0x3ea01c3d, 0x2b4d0062, 0x69ca00fa, 0x00000000}},  //   rzit_, _abec_, xofe,\n  { {0x7d1e0065, 0x65630335, 0x7bcb1c3e, 0x00000000}},  //   raps, _manh, fogu,\n  { {0x29051c3f, 0xe800013d, 0x6563005b, 0x00000000}},  //   _afla_, _लंबा_, _lanh,\n  { {0x79c6007e, 0x7dd000f8, 0xdcfc00e5, 0x00000000}},  //   ойдз, fäst, _coră,\n  { {0x082a0769, 0xf806058f, 0x291a1c40, 0x00000000}},  //   ации_, очин, úpa_,\n  { {0x23ca0183, 0x53ca0061, 0x6d4e002b, 0x00000000}},  //   रवाद, रवाश, _ibba,\n  { {0x7d1c1440, 0x6f040107, 0x65631c41, 0x00000000}},  //   _hers, ncic, _aanh,\n  { {0x7d1c00c7, 0x65630181, 0x63af01ee, 0x00000000}},  //   _kers, _banh, vicn,\n  { {0x48e61c42, 0x7dd00bf4, 0x7d1c00ab, 0x00000000}},  //   _дозв, mäss, _jers,\n  { {0x63af07d1, 0x2cfb061e, 0x320900ab, 0x00000000}},  //   ticn, יליא, _stay_,\n  { {0x6f04037e, 0xf1bf00b9, 0x6b821c43, 0x00000000}},  //   jcic, hrát_, njog,\n  { {0xf1bf01ca, 0x7d1c1c44, 0x3e4e0089, 0x00000000}},  //   krát_, _oers, nētā_,\n  { {0x656302d5, 0x63af0107, 0xc87e006b, 0x00000000}},  //   _ganh, sicn, şğul_,\n  { {0x3f8700ed, 0x6e240032, 0x7bcb00e7, 0x00000000}},  //   оѓаа, esib, yogu,\n  { {0x6d4e001b, 0x628f0009, 0x2328003b, 0x00000000}},  //   _abba, pyco, _доћи_,\n  { {0x7d1c020c, 0x63ad000b, 0x518701c0, 0x00000000}},  // [3f50] _bers, _iman, _дуна,\n  { {0x7988018e, 0x93bd001a, 0xfd100025, 0x00000000}},  //   _nodw, crăr, نجم_,\n  { {0x7d1c1c45, 0x7bcb0006, 0x63ad002b, 0x00000000}},  //   _ders, togu, _kman,\n  { {0x7d1c049b, 0x799a0bed, 0x6f040197, 0x00000000}},  //   _eers, _altw, ccic,\n  { {0x7d1c0016, 0xea00001d, 0x63ad0066, 0x00000000}},  //   _fers, _đảm_, _mman,\n  { {0x7d1c000c, 0x8dfa00b6, 0x4e16009b, 0x00000000}},  //   _gers, _להשת, _מחשב_,\n  { {0x63ad0004, 0x785702fd, 0x7dd000b0, 0x00000000}},  //   _oman, تیاز_, räst,\n  { {0x6563011c, 0x7d1c010f, 0x63ad0058, 0x00000000}},  //   _sanh, _zers, _nman,\n  { {0x65631214, 0x3964021e, 0x7d1c0276, 0x00000000}},  //   _panh, össä_, _yers,\n  { {0x63ad16c3, 0x7988005b, 0x6b8901d6, 0x00000000}},  //   _aman, _godw, _hoeg,\n  { {0x6563021e, 0x8afd00b9, 0x6b89016c, 0x00000000}},  //   _vanh, _zařa, _koeg,\n  { {0x6f1d1a56, 0x6b8900d9, 0x8c49005a, 0x00000000}},  //   _nesc, _joeg, maşı,\n  { {0x8c49005d, 0xc7b200b3, 0xa3bd0164, 0x00000000}},  //   laşı, _אבא_, _आदर_,\n  { {0x63ad0c35, 0x64a5012b, 0xf1bf076a, 0x00000000}},  //   _eman, _нала, drás_,\n  { {0x6f1d15a6, 0x251a00b3, 0x6b9b1c46, 0x00000000}},  //   _besc, _הוצא, _olug,\n  { {0x6f1d0107, 0x63ad1b61, 0xb2261281, 0x00000000}},  //   _cesc, _gman, _емил,\n  { {0x59cb0201, 0x88d10044, 0x539b00a0, 0x00000000}},  // [3f60] िवार, াধিক, _ליקו,\n  { {0x6b9b1c47, 0x7d1c0065, 0x6f040197, 0x00000000}},  //   _alug, _qers, scic,\n  { {0x7d1c0125, 0x1b0d0055, 0x3ce1001c, 0x00000000}},  //   _vers, _হয়ে_, _करणे_,\n  { {0x6f1d04e5, 0x7d1c0046, 0x8c490676, 0x00000000}},  //   _gesc, _wers, daşı,\n  { {0x7d1c0149, 0x79880036, 0x298a0ae0, 0x00000000}},  //   _ters, _podw, йско_,\n  { {0x6f1d0107, 0x44270190, 0x3e4e0089, 0x00000000}},  //   _zesc, _ovn_, rētā_,\n  { {0x6b9b14b4, 0x672001f3, 0x7dd01469, 0x00000000}},  //   _flug, tamj, säss,\n  { {0x3ce1062e, 0x6b9b009f, 0x9cbb0104, 0x00000000}},  //   _करते_, _glug, _הצלח,\n  { {0xfaa30113, 0x98b1001e, 0x7bc000bb, 0x00000000}},  //   _зато, ībām_, _ijmu,\n  { {0xf64f0647, 0x63ad0091, 0x2d8a0203, 0x00000000}},  //   ائي_, _sman, _jobe_,\n  { {0xdcfc0036, 0x67200065, 0xbebb01d6, 0x00000000}},  //   _gorą, pamj, _teëg,\n  { {0x69d80073, 0x291e0039, 0x57fb009b, 0x00000000}},  //   llve, _heta_, _הלאו,\n  { {0x291e0f7c, 0x27070011, 0x44270082, 0x00000000}},  //   _keta_, _ống_, _evn_,\n  { {0x291e0065, 0x7521001a, 0x6f1d1052, 0x00000000}},  //   _jeta_, calz, _sesc,\n  { {0x291e01d5, 0x6f1d0207, 0xdfd50147, 0x00000000}},  //   _meta_, _pesc, довы,\n  { {0x291e1c48, 0xf1bf0211, 0xbfd90088, 0x00000000}},  //   _leta_, trás_, ідає_,\n  { {0x7d050186, 0x6f1d0207, 0xddd000b9, 0x00000000}},  // [3f70] tchs, _vesc, _řeši,\n  { {0x291e0107, 0xf1bf0010, 0x7d05010f, 0x00000000}},  //   _neta_, rrás_, uchs,\n  { {0x7d05010f, 0x6f1d1c49, 0xceeb00a6, 0x00000000}},  //   rchs, _tesc, _گردن_,\n  { {0xfc30031d, 0x69d80270, 0x7d0501a2, 0x00000000}},  //   احل_, elve, schs,\n  { {0x6b8900b5, 0x6b9b07a5, 0x957c0006, 0x00000000}},  //   _voeg, _vlug, rmąj,\n  { {0x3f8b037e, 0xac191c4a, 0x64481c4b, 0x00000000}},  //   _hocu_, _могу_, ktdi,\n  { {0x6b89049b, 0x291e01aa, 0x246c00b9, 0x00000000}},  //   _toeg, _deta_, _něm_,\n  { {0xefc80011, 0xa3dd0061, 0x442701f3, 0x00000000}},  //   _địch_, _तील_, _rvn_,\n  { {0x291e0129, 0x3f8b0079, 0xbbc90316, 0x00000000}},  //   _feta_, _mocu_, िकीक,\n  { {0x291e009f, 0x44270089, 0xbebb07a5, 0x00000000}},  //   _geta_, _pvn_, _geëe,\n  { {0xb80806f1, 0x64a516b6, 0x00000000, 0x00000000}},  //   _فيلم_, фана,   ,\n  { {0x3f8b0107, 0xb605021c, 0x442517fe, 0x00000000}},  //   _nocu_, _pešč, rsl_,\n  { {0x4393007e, 0x21e401a2, 0x442501a2, 0x00000000}},  //   таўс, höhe_, ssl_,\n  { {0x44270cd4, 0x77690039, 0xb6050059, 0x00000000}},  //   _tvn_, ldex, _vešč,\n  { {0x64480066, 0xdb0000b0, 0x3f8b016e, 0x00000000}},  //   ctdi, _ymmä, _bocu_,\n  { {0x77690141, 0x2d8a016e, 0xafe3005e, 0x00000000}},  //   ndex, _sobe_, восл,\n  { {0xa1c601f9, 0x76491b36, 0x200c00c8, 0x00000000}},  // [3f80] _обид, ntey, ūdi_,\n  { {0xee370088, 0x7afb00f6, 0x22570014, 0x00000000}},  //   ьну_, _agut, _کلید_,\n  { {0x291e185b, 0x0b46007e, 0x01350049, 0x00000000}},  //   _reta_, днен, _אָרט_,\n  { {0x291e002b, 0x3ebf0243, 0x3f8b016c, 0x00000000}},  //   _seta_, _žute_, _gocu_,\n  { {0x291e027e, 0x65680016, 0x2d8a1c4c, 0x00000000}},  //   _peta_, yddh, _tobe_,\n  { {0x7afb002d, 0x67c10089, 0x13bb0316, 0x00000000}},  //   _egut, vēja, _उद्भ,\n  { {0x291e1c4d, 0xf54e0011, 0xfc03025f, 0x00000000}},  //   _veta_, _bụng_, _апсо,\n  { {0x6f160016, 0x33200129, 0x88bc00b9, 0x00000000}},  //   nbyc, _neix_, _oděv,\n  { {0xf54e00ad, 0x291e0091, 0x00000000, 0x00000000}},  //   _dụng_, _teta_,   ,\n  { {0xdcfc0521, 0x67c10089, 0x2b440082, 0x00000000}},  //   _dorć, rēja, _hcmc_,\n  { {0xe94700a1, 0x67c101c5, 0x2b4400e7, 0x00000000}},  //   _ترقی, sēja, _kcmc_,\n  { {0x64480089, 0x67c10089, 0x6e361c4e, 0x00000000}},  //   rtdi, pēja, kryb,\n  { {0xe298008b, 0x64480089, 0x332000f6, 0x00000000}},  //   даў_, stdi, _deix_,\n  { {0x246c00b9, 0x00000000, 0x00000000, 0x00000000}},  //   _těm_,   ,   ,\n  { {0x8557019b, 0x1048007c, 0x21230066, 0x00000000}},  //   _חשוב_, мяти_, rajh_,\n  { {0x27e6008e, 0x7e6d00f8, 0x00000000, 0x00000000}},  //   _jhon_, tvap,   ,\n  { {0x7f4d008d, 0x27e60022, 0x603e0035, 0x00000000}},  // [3f90] rfaq, _mhon_, _pămî,\n  { {0xdb0b00dc, 0x7e6d01b1, 0x00000000, 0x00000000}},  //   rigí, rvap,   ,\n  { {0x6f160270, 0x7e6d1c4f, 0x00000000, 0x00000000}},  //   bbyc, svap,   ,\n  { {0x27e60082, 0x332000f6, 0x26d8013f, 0x00000000}},  //   _nhon_, _xeix_, ərov_,\n  { {0xf54e0011, 0xdfd101b2, 0x00000000, 0x00000000}},  //   _rụng_, _ليگ_,   ,\n  { {0x200100ca, 0xda620077, 0xfd1001b2, 0x00000000}},  //   _kuhi_, увши, _نجف_,\n  { {0x20011009, 0x27e60009, 0x00000000, 0x00000000}},  //   _juhi_, _bhon_,   ,\n  { {0xd0f8019b, 0x27e60082, 0x16650931, 0x00000000}},  //   ומות_, _chon_, евим,\n  { {0xb8d6024c, 0xea000011, 0x77690288, 0x00000000}},  //   _चे_, _đầm_, rdex,\n  { {0x21210022, 0xdb0b00f6, 0x00000000, 0x00000000}},  //   _nehh_, ligà,   ,\n  { {0x7649115d, 0x33200129, 0xf54e0011, 0x00000000}},  //   stey, _peix_, _tụng_,\n  { {0x6e360006, 0x00000000, 0x00000000, 0x00000000}},  //   yryb,   ,   ,\n  { {0x27ed0109, 0xbb3a071c, 0x6595007e, 0x00000000}},  //   mmen_, הערי, _паду,\n  { {0x200100e0, 0x00000000, 0x00000000, 0x00000000}},  //   _buhi_,   ,   ,\n  { {0xddc41279, 0x27ed0270, 0x21210022, 0x00000000}},  //   jviš, omen_, _dehh_,\n  { {0x27ed0263, 0xa2e60783, 0xbebb0065, 0x00000000}},  //   nmen_, _пойд, _ndës,\n  { {0xee3a0265, 0x27ed00b0, 0x00000000, 0x00000000}},  // [3fa0] яна_, imen_,   ,\n  { {0x27ed001f, 0x6e360145, 0x5d670fd8, 0x00000000}},  //   hmen_, rryb, ниум_,\n  { {0x27ed1c50, 0x273a0276, 0x00000000, 0x00000000}},  //   kmen_, nünü_,   ,\n  { {0x67c10089, 0x61ee07cc, 0x27ed00bb, 0x00000000}},  //   dējo, lmbl, jmen_,\n  { {0xfeba0318, 0x27ed01a2, 0xc333009b, 0x00000000}},  //   _راحت_, dmen_, רוד_,\n  { {0x27ed00b5, 0x7db60025, 0x27e60048, 0x00000000}},  //   emen_, _أصحا, _shon_,\n  { {0xfce30264, 0x27e60026, 0x395c00f8, 0x00000000}},  //   _боро, _phon_, revs_,\n  { {0x2fc01c51, 0x6d5e0127, 0x27ed1c52, 0x00000000}},  //   nnig_, lepa, gmen_,\n  { {0x7c3e0428, 0xe60f00a6, 0x2fc00016, 0x00000000}},  //   lupr, یشی_, inig_,\n  { {0x6d5e0ed1, 0x2fc0079d, 0x9f4000b0, 0x00000000}},  //   nepa, hnig_, lmiä_,\n  { {0xd6da04e1, 0x27e61c53, 0x7c3e0089, 0x00000000}},  //   _کوشش_, _thon_, nupr,\n  { {0x6d5e010e, 0x21210066, 0x20011c54, 0x00000000}},  //   hepa, _sehh_, _ruhi_,\n  { {0x6d5e0023, 0x00000000, 0x00000000, 0x00000000}},  //   kepa,   ,   ,\n  { {0x7c3e002b, 0x6d5e0166, 0x1a9b0049, 0x00000000}},  //   kupr, jepa, ליכע,\n  { {0xbebb008d, 0x6d5e061d, 0x273a019a, 0x00000000}},  //   _ndër, depa, cünü_,\n  { {0x987b007b, 0x66021c55, 0xc27501fc, 0x00000000}},  //   האלט, _kuok, _алиј,\n  { {0x443e021e, 0x66020ecb, 0x9df9026b, 0x00000000}},  // [3fb0] lut_, _juok, днат_,\n  { {0x6d5e00b5, 0x6602021e, 0x443e0061, 0x00000000}},  //   gepa, _muok, out_,\n  { {0x443e098a, 0x6602021e, 0x27ed0023, 0x00000000}},  //   nut_, _luok, ymen_,\n  { {0xc4d30049, 0xdab90025, 0x67c10089, 0x00000000}},  //   אגע_, وهات_, vējo,\n  { {0xa969003b, 0x443e0065, 0xd9450a27, 0x00000000}},  //   дила_, hut_, вели,\n  { {0x443e020c, 0x6d5e1c56, 0xbd45006d, 0x00000000}},  //   kut_, cepa, _جنسي,\n  { {0x27ed1c57, 0x1866005e, 0x443e01a3, 0x00000000}},  //   tmen_, ващи_, jut_,\n  { {0x443e0085, 0x3f890169, 0x27ed00ea, 0x00000000}},  //   dut_, njau_, umen_,\n  { {0x64580e3f, 0x3ea91c58, 0x67c10089, 0x00000000}},  //   _apvi, nzat_, sējo,\n  { {0xa8a702a8, 0x27ed0056, 0xd5a301b2, 0x00000000}},  //   _прек, smen_, الدی,\n  { {0x443e04bd, 0x03a6013b, 0x27ed0145, 0x00000000}},  //   gut_, вино, pmen_,\n  { {0x6d5e0036, 0x888a0049, 0x273a019a, 0x00000000}},  //   zepa, _קרײַ, rünü_,\n  { {0xa2d5007d, 0x3ea90065, 0x6d5e1b1c, 0x00000000}},  //   _युद्, jzat_, yepa,\n  { {0x443e0149, 0x784a005f, 0x6d5e0032, 0x00000000}},  //   but_, _səvi, xepa,\n  { {0x443e000d, 0x61ee0065, 0x6d5e010f, 0x00000000}},  //   cut_, rmbl, vepa,\n  { {0xa06700ed, 0x752309d0, 0x3ebf0166, 0x00000000}},  //   њата_, _henz, _žuta_,\n  { {0x6d5e0515, 0x2fc0009f, 0xa7fc0180, 0x00000000}},  // [3fc0] tepa, rnig_, _asıl,\n  { {0xdb0b1c59, 0x2fcd0f3a, 0x6d470066, 0x00000000}},  //   vigá, čega_, _ccja,\n  { {0x75230207, 0xdd100027, 0x013700a0, 0x00000000}},  //   _menz, _týžd, _ברית_,\n  { {0xeb9714dd, 0x6d5e14f0, 0x75231944, 0x00000000}},  //   ких_, sepa, _lenz,\n  { {0x7c3e0006, 0x443e000d, 0xbb4310d6, 0x00000000}},  //   supr, zut_, речк,\n  { {0x7f4400f4, 0x6602021e, 0x443e1c5a, 0x00000000}},  //   lgiq, _ruok, yut_,\n  { {0x1c39007c, 0xa3c40164, 0x76590016, 0x00000000}},  //   _пять_, ्वा_, _apwy,\n  { {0x443e021e, 0xf093009b, 0xf76f0426, 0x00000000}},  //   vut_, שנה_, قاً_,\n  { {0x7523011f, 0x443e0433, 0x9f59000a, 0x00000000}},  //   _benz, wut_, _disè_,\n  { {0x75230089, 0x6602021e, 0x00000000, 0x00000000}},  //   _cenz, _vuok,   ,\n  { {0x3ea914fe, 0x43950088, 0x75230253, 0x00000000}},  //   zzat_, ганс, _denz,\n  { {0x443e020c, 0x040d001d, 0x7bc20052, 0x00000000}},  //   rut_, _hưởn, nnou,\n  { {0xe5c6025f, 0x443e1c5b, 0x3f8f000c, 0x00000000}},  //   _иско, sut_, ögum_,\n  { {0x443e05bd, 0x7bc200b9, 0x75230724, 0x00000000}},  //   put_, hnou, _genz,\n  { {0x9f350451, 0x75280036, 0x7bc21c5c, 0x00000000}},  //   леві, madz, knou,\n  { {0x3ea90411, 0x442e00ca, 0x752304c6, 0x00000000}},  //   tzat_, _ivf_, _zenz,\n  { {0x5d5505f6, 0x7bc200b9, 0x7c2e01c9, 0x00000000}},  // [3fd0] лкат, dnou, _avbr,\n  { {0x752801ee, 0x3ea91c5d, 0x00000000, 0x00000000}},  //   nadz, rzat_,   ,\n  { {0x442c0dda, 0x442e068f, 0x3ea90010, 0x00000000}},  //   nsd_, _jvf_, szat_,\n  { {0xed51026c, 0x2013002d, 0x76400009, 0x00000000}},  //   _گھر_, _itxi_, kumy,\n  { {0x75280036, 0x00000000, 0x00000000, 0x00000000}},  //   kadz,   ,   ,\n  { {0x7528001e, 0xf2d40049, 0xca7602fd, 0x00000000}},  //   jadz, סעס_, اموش_,\n  { {0x75231c5e, 0x6d451c5f, 0x6e2d01c5, 0x00000000}},  //   _renz, mgha, lsab,\n  { {0x75230198, 0x6d450066, 0x399901aa, 0x00000000}},  //   _senz, lgha, _mèsi_,\n  { {0xaab70164, 0x7523061b, 0x2d910263, 0x00000000}},  //   _अधिक, _penz, _koze_,\n  { {0x6d45020c, 0x4585019d, 0x6e2d010f, 0x00000000}},  //   ngha, угов, isab,\n  { {0x481500d7, 0x2d911c60, 0xfbb7007d, 0x00000000}},  //   _смес, _moze_, _आगाम,\n  { {0xe72e045e, 0xdce71c61, 0x7523000b, 0x00000000}},  //   _ће_, _najč, _wenz,\n  { {0x69c3028c, 0x752300b5, 0x2d91098e, 0x00000000}},  //   onne, _tenz, _ooze_,\n  { {0xa06a008b, 0x957c0046, 0x69c30a2e, 0x00000000}},  //   нага_, gląd, nnne,\n  { {0x69c3002a, 0x65610181, 0x442c0dea, 0x00000000}},  //   inne, melh, csd_,\n  { {0x6f0d001c, 0xc31e0044, 0x6d4500ea, 0x00000000}},  //   gcac, _থাকি_, egha,\n  { {0x2d91037e, 0x6e2d1c62, 0x64411080, 0x00000000}},  // [3fe0] _boze_, gsab, luli,\n  { {0x5166053f, 0x7bc20a71, 0x63a40161, 0x00000000}},  //   _своб, wnou, _hlin,\n  { {0x6441020c, 0x6f0f0b69, 0x7bc2013e, 0x00000000}},  //   nuli, _ffcc, tnou,\n  { {0x69c31c63, 0x201815e1, 0x6f0d0197, 0x00000000}},  //   enne, mpri_, ccac,\n  { {0xd00f00d3, 0x644114f7, 0x63a41c64, 0x00000000}},  //   _ولی_, huli, _mlin,\n  { {0x6441000b, 0xe8940057, 0x63a41c65, 0x00000000}},  //   kuli, иаль, _llin,\n  { {0x64410020, 0x201801aa, 0x63a41983, 0x00000000}},  //   juli, npri_, _olin,\n  { {0x963402a8, 0x75280046, 0x63a41c66, 0x00000000}},  //   аниц, wadz, _nlin,\n  { {0x2bb10046, 0x040d001d, 0x75281c67, 0x00000000}},  //   jący_, _tưởn, tadz,\n  { {0x63a41c68, 0x65610203, 0x545400d7, 0x00000000}},  //   _alin, gelh, авот,\n  { {0x64410ffc, 0x69da1c69, 0x75280036, 0x00000000}},  //   guli, _ikte, radz,\n  { {0x63a400ab, 0x75280871, 0xdc9b009b, 0x00000000}},  //   _clin, sadz, גיטל,\n  { {0x61fe00f6, 0x877b0049, 0xdce70db9, 0x00000000}},  //   _bipl, _ראדי, _rajč,\n  { {0x64410006, 0x63a41198, 0x9f49002a, 0x00000000}},  //   buli, _elin, rmaí_,\n  { {0x6441028c, 0xb97b007b, 0x6f0d001c, 0x00000000}},  //   culi, ענלי, tcac,\n  { {0xa3dd0061, 0x6e2d01a2, 0xd3270088, 0x00000000}},  //   _तीच_, tsab, _ськи,\n  { {0x2d911c6a, 0xa3c4006e, 0x6f0d18d1, 0x00000000}},  // [3ff0] _poze_, ्वर_, rcac,\n  { {0x6e2d01a3, 0x6f0d0eb3, 0x63a40667, 0x00000000}},  //   rsab, scac, _zlin,\n  { {0x6e2d1c6b, 0x6d451c6c, 0x2dd80025, 0x00000000}},  //   ssab, rgha, ابقة_,\n  { {0x16040309, 0x6d450051, 0x501a0097, 0x00000000}},  //   रदार_, sgha, _שורו,\n  { {0x3ce1013d, 0x6441182b, 0x00000000, 0x00000000}},  //   _करके_, zuli,   ,\n  { {0x64410022, 0x67c10089, 0x00000000, 0x00000000}},  //   yuli, mēji,   ,\n  { {0x65611748, 0x67c10089, 0x18a5007e, 0x00000000}},  //   velh, lēji, райм,\n  { {0x64410006, 0x69da0056, 0x00000000, 0x00000000}},  //   vuli, _ekte,   ,\n  { {0x64410009, 0x65610d95, 0x2d9c0010, 0x00000000}},  //   wuli, telh, öveg_,\n  { {0xbebb07a5, 0x7ae91c6d, 0xe57607d0, 0x00000000}},  //   _reël, _izet, азь_,\n  { {0x63a41c6e, 0x656103f0, 0x397a01ce, 0x00000000}},  //   _plin, relh, _שטענ,\n  { {0xe29a0265, 0x6441006c, 0x61fe01aa, 0x00000000}},  //   вам_, ruli, _sipl,\n  { {0x63a41c6f, 0x61fe0173, 0x212a0e9e, 0x00000000}},  //   _vlin, _pipl, tabh_,\n  { {0x6441010a, 0x1a9a007b, 0x463a007b, 0x00000000}},  //   puli, דישע, _יענע,\n  { {0x5f06007c, 0x39470133, 0x00000000, 0x00000000}},  //   изва, igns_,   ,\n  { {0x63a40020, 0x7ae901aa, 0x20181c70, 0x00000000}},  //   _ulin, _ozet, rpri_,\n\n  { {0x20180263, 0x61fe0279, 0x8fa30242, 0x00000000}},  // [4000] spri_, _tipl, цате,\n  { {0x637b021e, 0x67f50006, 0xb33b014a, 0x00000000}},  //   _tänä, _išju, rkçe,\n  { {0x3157061e, 0x913b01f8, 0xf536007b, 0x00000000}},  //   _דיין_, _בעיק, שטער_,\n  { {0xf4560049, 0x3ce60061, 0x54560049, 0x00000000}},  //   ייער_, _करीं_, יסען_,\n  { {0x7ae90026, 0x67c10089, 0x00000000, 0x00000000}},  //   _czet, cēji,   ,\n  { {0xb33b0065, 0xd8760025, 0x2d8c010e, 0x00000000}},  //   thçk, لاعب, _õde_,\n  { {0x7c8501f9, 0x7ae9002d, 0x97a60140, 0x00000000}},  //   _луѓе, _ezet, ирил,\n  { {0xc7c60098, 0x25a0009d, 0x9f4200b0, 0x00000000}},  //   јски, _œil_, _eikö_,\n  { {0xfaa3003b, 0xd6d00025, 0x00000000, 0x00000000}},  //   _дато, ثقة_,   ,\n  { {0xd90e0bb6, 0x00000000, 0x00000000, 0x00000000}},  //   _غیب_,   ,   ,\n  { {0x6d790049, 0x67c10089, 0x48b6007c, 0x00000000}},  //   אָרװ, zēji, _тщат,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x69d80428, 0x14b70167, 0xddc40089, 0x00000000}},  //   nove, ادیث_, ltiņ,\n  { {0x351b01ce, 0x044300ed, 0x69d80035, 0x00000000}},  //   _יוגנ, _дејн, iove,\n  { {0xdcfc005f, 0x69d81c71, 0x34fb009b, 0x00000000}},  //   _sorğ, hove, _בהוד,\n  { {0x69d81962, 0x63bd06a0, 0x59d60061, 0x00000000}},  // [4010] kove, misn, धवार,\n  { {0x67c1001e, 0x443e0250, 0x63bd0743, 0x00000000}},  //   rēji, ort_, lisn,\n  { {0x69d81c72, 0x629d0052, 0x443e00f6, 0x00000000}},  //   dove, lyso, nrt_,\n  { {0x443e0195, 0x63bd04be, 0x67c800b9, 0x00000000}},  //   irt_, nisn, dějo,\n  { {0x443e001f, 0x7c3e1c73, 0x394c00f6, 0x00000000}},  //   hrt_, arpr, _bcds_,\n  { {0x69d80059, 0x32090c70, 0xe9d8007e, 0x00000000}},  //   gove, _muay_, акі_,\n  { {0x013800b6, 0x315801ce, 0x3a240022, 0x00000000}},  //   ברות_, ייגן_, _ewmp_,\n  { {0x1bd40088, 0x443e0925, 0x7ae4002b, 0x00000000}},  //   _дося, drt_, żita,\n  { {0x443e1626, 0x63bd037e, 0x69d80142, 0x00000000}},  //   ert_, disn, bove,\n  { {0x69d800ab, 0x629d05f0, 0x55890437, 0x00000000}},  //   cove, dyso, убом_,\n  { {0xa78700a1, 0x232a01c0, 0x81bd0044, 0x00000000}},  //   _پشاو, лони_, ইকা_,\n  { {0x06b80014, 0x63bd1c74, 0xdb0000f6, 0x00000000}},  //   انیک_, gisn, _immò,\n  { {0x443e021b, 0x68e10030, 0xcfcd0044, 0x00000000}},  //   art_, _hyld, লতান,\n  { {0x661b01a3, 0x3d21013d, 0x00000000, 0x00000000}},  //   mpuk, यरों_,   ,\n  { {0x3ce60754, 0x63bd023a, 0xa7fc014a, 0x00000000}},  //   _करें_, bisn, _arıy,\n  { {0x69d8041a, 0xaf06007e, 0x2498059f, 0x00000000}},  //   zove, спал, ärme_,\n  { {0x245101ca, 0x82360151, 0x3209008e, 0x00000000}},  // [4020] lám_, _اربا, _guay_,\n  { {0x67c10089, 0x7c3e000a, 0x00000000, 0x00000000}},  //   mēju, trpr,   ,\n  { {0x24510027, 0x01fb00a0, 0x7ae00039, 0x00000000}},  //   nám_, _תפיל, _symt,\n  { {0x7f860025, 0x69d800d9, 0x661b00e0, 0x00000000}},  //   _الحن, wove, kpuk,\n  { {0x69d80142, 0xca5600ed, 0x29050058, 0x00000000}},  //   tove, стењ, _bgla_,\n  { {0x20020020, 0x443e0d3e, 0x24510d7a, 0x00000000}},  //   _hiki_, yrt_, kám_,\n  { {0x247700ad, 0x8c4301c0, 0x2002033b, 0x00000000}},  //   _năm_, _нере, _kiki_,\n  { {0x69d80c55, 0x24510161, 0xa6140242, 0x00000000}},  //   sove, dám_, омич,\n  { {0x69d80cce, 0x20020107, 0x5ebb0049, 0x00000000}},  //   pove, _miki_, ָזיק,\n  { {0x68e10737, 0x67c10089, 0x7afd0161, 0x00000000}},  //   _fyld, dēju, _ústa,\n  { {0x63bd01d9, 0x443e05f2, 0x6d5c1c75, 0x00000000}},  //   tisn, urt_, _mbra,\n  { {0x9f40028c, 0x20020695, 0x443e010f, 0x00000000}},  //   blié_, _niki_, rrt_,\n  { {0x63bd01cd, 0x3209001d, 0x51871534, 0x00000000}},  //   risn, _quay_, бува,\n  { {0x443e0059, 0x63bd12f7, 0x611401e1, 0x00000000}},  //   prt_, sisn, здру,\n  { {0x6811001e, 0x20020066, 0xbebb01d6, 0x00000000}},  //   _kāda, _biki_, _teëk,\n  { {0x6d5c02d5, 0x02a701fb, 0x68110089, 0x00000000}},  //   _abra, _гром, _jāda,\n  { {0x20021c76, 0x67c10089, 0x6d5c0145, 0x00000000}},  // [4030] _diki_, cēju, _bbra,\n  { {0x800900a1, 0xdcfc0089, 0x6d4e00f6, 0x00000000}},  //   _پردہ_, _norē, _ccba,\n  { {0x30f700a1, 0x24770011, 0x7bd90036, 0x00000000}},  //   _دودھ_, _xăm_, towu,\n  { {0x6d5c0a19, 0x8f47007c, 0x6d43000c, 0x00000000}},  //   _ebra, _уход, ónab,\n  { {0x24510010, 0xc33400b3, 0x75380cd6, 0x00000000}},  //   zám_, פוס_, _odvz,\n  { {0xe3cf0055, 0x9f42021e, 0x6d5c07b0, 0x00000000}},  //   রতিব, _ehkä_, _gbra,\n  { {0x319c01ce, 0x91660082, 0xa3d9006e, 0x00000000}},  //   רבונ, _hộ_, ़का_,\n  { {0x6d5c07e4, 0x2fc9018e, 0x24510802, 0x00000000}},  //   _zbra, nnag_, vám_,\n  { {0xbebb0112, 0x05a90088, 0x24770082, 0x00000000}},  //   _beëi, ивий_, _săm_,\n  { {0xdcf5001e, 0x7e7d0146, 0x24510161, 0x00000000}},  //   _nozī, _mrsp, tám_,\n  { {0xd38a0604, 0xe36601ab, 0x00000000, 0x00000000}},  //   айне_, окни,   ,\n  { {0xd8d600bd, 0xe8d6007b, 0x67c10089, 0x00000000}},  //   _וועט_, _ווער_, tēju,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xd3780046, 0x64a5008b, 0xbebb040f, 0x00000000}},  //   ść_, _мала, _geëi,\n  { {0xa06a137c, 0x67c10089, 0x910302dc, 0x00000000}},  //   шава_, sēju, дпре,\n  { {0xa2d50316, 0x6d5c0197, 0x91660082, 0x00000000}},  //   _युक्, _sbra, _bộ_,\n  { {0x672b1c77, 0x4427018e, 0x6603006c, 0x00000000}},  // [4040] _megj, _hwn_, _kink,\n  { {0x20020dfc, 0x672b1c77, 0x660301d5, 0x00000000}},  //   _wiki_, _legj, _jink,\n  { {0x660300b0, 0x2002023a, 0xc2c900a1, 0x00000000}},  //   _mink, _tiki_, _نبیل_,\n  { {0x53370049, 0x64410051, 0x680a0036, 0x00000000}},  //   ַנצן_, irli, _wędk,\n  { {0xadeb02d2, 0x6441010f, 0x298a00ed, 0x00000000}},  //   _जीवन_, hrli, иско_,\n  { {0x44270038, 0x6d5c0036, 0x66030066, 0x00000000}},  //   _own_, _ubra, _nink,\n  { {0x672b0093, 0x7afd0062, 0x9939078e, 0x00000000}},  //   _begj, _ústn, сячу_,\n  { {0x24800340, 0x2d980027, 0x6b63004c, 0x00000000}},  //   _čim_, _hore_, _окса,\n  { {0x2d9804cd, 0x672b0065, 0x3ea00010, 0x00000000}},  //   _kore_, _degj, nyit_,\n  { {0xa2d5013d, 0x68ed00b9, 0x7e7b16d0, 0x00000000}},  //   _युग्, řada, _šupk,\n  { {0x2d980a8a, 0x66030107, 0x68110089, 0x00000000}},  //   _more_, _dink, _tāda,\n  { {0x660314b4, 0x2d980c35, 0x44271c78, 0x00000000}},  //   _eink, _lore_, _dwn_,\n  { {0x6603002d, 0x644101bb, 0x69ca0026, 0x00000000}},  //   _fink, arli, onfe,\n  { {0xbf9b02d5, 0xa1840147, 0x66030006, 0x00000000}},  //   _ciên, мысл, _gink,\n  { {0x84380025, 0x69ca0bf5, 0x44271b21, 0x00000000}},  //   _اكبر_, infe, _gwn_,\n  { {0x6448020c, 0x65680065, 0x66030471, 0x00000000}},  //   mudi, ledh, _zink,\n  { {0xdce70036, 0x6448016e, 0x2fc90007, 0x00000000}},  // [4050] _mają, ludi, rnag_,\n  { {0xd90400e9, 0x2d981b2a, 0xe1ff0036, 0x00000000}},  //   _لی_, _core_, zwój_,\n  { {0x2d980065, 0x64480340, 0xdb0000f6, 0x00000000}},  //   _dore_, nudi, _almà,\n  { {0x09c30061, 0x00000000, 0x00000000, 0x00000000}},  //   वच्य,   ,   ,\n  { {0x7e7d127c, 0x672b0220, 0x2d9813f7, 0x00000000}},  //   _ursp, _regj, _fore_,\n  { {0x6568008d, 0x672b009f, 0x4efa009b, 0x00000000}},  //   jedh, _segj, _להרו,\n  { {0x6603010a, 0x6c540679, 0x3f990166, 0x00000000}},  //   _rink, _окру, _kosu_,\n  { {0x66031c79, 0xfe6e026c, 0x3f99002d, 0x00000000}},  //   _sink, _جگہ_, _josu_,\n  { {0x66030007, 0x672b0065, 0x65680020, 0x00000000}},  //   _pink, _vegj, fedh,\n  { {0x64481c7a, 0x6441013f, 0x442700b4, 0x00000000}},  //   fudi, trli, _pwn_,\n  { {0x66031c79, 0xbf9b001d, 0xb0db0061, 0x00000000}},  //   _vink, _riên, _मुलग,\n  { {0x660317cc, 0x6441010f, 0x7bcb0082, 0x00000000}},  //   _wink, rrli, nngu,\n  { {0x6603010a, 0x7bcb002d, 0x00000000, 0x00000000}},  //   _tink, ingu,   ,\n  { {0x6448049c, 0x77690203, 0x67e5008e, 0x00000000}},  //   budi, leex, dóji,\n  { {0x64480f03, 0x00000000, 0x00000000, 0x00000000}},  //   cudi,   ,   ,\n  { {0xf43a009b, 0xc00300ec, 0x776901c3, 0x00000000}},  //   _התקש, епск, neex,\n  { {0xa3d9013d, 0x7e6d0058, 0x69ca005b, 0x00000000}},  // [4060] ़कर_, gwap, ynfe,\n  { {0xc27b0476, 0xf27b00a3, 0x3f8f000c, 0x00000000}},  //   _פריי, _פריש, ögur_,\n  { {0x2d980292, 0x1d190088, 0x319b009b, 0x00000000}},  //   _vore_, юють_, _הבינ,\n  { {0x2b5f00f6, 0x2d98066d, 0x9f40004a, 0x00000000}},  //   _cbuc_, _wore_, rmió_,\n  { {0x2d98006c, 0x09e60098, 0x93bd0035, 0x00000000}},  //   _tore_, подн, spăg,\n  { {0x7bcb0020, 0xceb30049, 0x2ac100ea, 0x00000000}},  //   angu, _טיר_, _sæbø_,\n  { {0x6448027b, 0xb4ea013d, 0x68ed013e, 0x00000000}},  //   xudi, _मरे_, řadn,\n  { {0x644805ad, 0x6f1600bb, 0xcc57009b, 0x00000000}},  //   vudi, ncyc, _מבלי_,\n  { {0x2a7f01ed, 0x65680ede, 0x00000000, 0x00000000}},  //   _grub_, tedh,   ,\n  { {0x6448095e, 0xb21b000c, 0x7bc20020, 0x00000000}},  //   tudi, lvæg, liou,\n  { {0x92e90055, 0xaac0001c, 0x79880009, 0x00000000}},  //   _বলে_, _शेतक, _indw,\n  { {0x6448000b, 0xb4cc013d, 0x7bc20133, 0x00000000}},  //   rudi, _रखी_, niou,\n  { {0x51871c7b, 0x2cb30061, 0x98a5001e, 0x00000000}},  //   пува, zzxd_, _ielā_,\n  { {0xddcd0036, 0x6448007f, 0xe3b9005d, 0x00000000}},  //   ztał, pudi, nsız_,\n  { {0xddcd0036, 0x557700a3, 0x98a70035, 0x00000000}},  //   ytał, _מעגן_, mană_,\n  { {0x5f940072, 0x94730054, 0x21310065, 0x00000000}},  //   нист, _أدوا, sazh_,\n  { {0x63ad034f, 0x7bc20938, 0xe3b9014a, 0x00000000}},  // [4070] _ilan, diou, ksız_,\n  { {0x63ad1c7c, 0x6aa2000a, 0x7e6d040f, 0x00000000}},  //   _hlan, dyof, rwap,\n  { {0x63ad0397, 0xa3c40061, 0x200c013e, 0x00000000}},  //   _klan, ्वच_, ídit_,\n  { {0xff25089d, 0xa14900a1, 0x7bc200ab, 0x00000000}},  //   _تبدی, _اسکے_, giou,\n  { {0xf8ae025a, 0x63ad0020, 0x1ee70167, 0x00000000}},  //   یکم_, _mlan, _روسی_,\n  { {0x63ad1c7d, 0xddcd0046, 0xdcfc010a, 0x00000000}},  //   _llan, stał, _norė,\n  { {0x63ad049d, 0x224b1c7e, 0x92e90044, 0x00000000}},  //   _olan, huck_, _বলো_,\n  { {0xe6190594, 0x7bc21c7f, 0x79881c80, 0x00000000}},  //   оди_, ciou, _endw,\n  { {0x6b89014a, 0x6d4a004a, 0xbebb01c3, 0x00000000}},  //   _ineg, ófag, _geët,\n  { {0x63ad011f, 0x6b9b0145, 0xa3e6006e, 0x00000000}},  //   _alan, _houg, _बीज_,\n  { {0x63ad0239, 0x69c30e2d, 0x6b891c81, 0x00000000}},  //   _blan, mine, _kneg,\n  { {0x69c3021e, 0x224b012d, 0x21e4010f, 0x00000000}},  //   line, fuck_, höht_,\n  { {0x69c30051, 0x63ad0213, 0x6b9b009d, 0x00000000}},  //   oine, _dlan, _moug,\n  { {0xdcee001e, 0x63ad1c82, 0x6b9b0056, 0x00000000}},  //   _labā, _elan, _loug,\n  { {0x63ad0390, 0xc0e3007e, 0x00000000, 0x00000000}},  //   _flan, ворк,   ,\n  { {0xa3e603d7, 0x69c3010f, 0x6b9b1c83, 0x00000000}},  //   _बीच_, hine, _noug,\n  { {0x69c3014a, 0x7bc20038, 0x6e360006, 0x00000000}},  // [4080] kine, viou, usyb,\n  { {0xfbd2026c, 0x6aa20020, 0xad660076, 0x00000000}},  //   ھتا_, vyof, باره,\n  { {0xbc6a03ec, 0x6b9b0549, 0xdb0b1374, 0x00000000}},  //   تمان_, _boug, bigü,\n  { {0x160d0061, 0x80bc0061, 0x6b9b0133, 0x00000000}},  //   सदार_, ोपीं, _coug,\n  { {0x7bc20038, 0x69c306d7, 0x799a0036, 0x00000000}},  //   riou, fine, _potw,\n  { {0x6b890059, 0x7bc20066, 0x6aa20085, 0x00000000}},  //   _eneg, siou, ryof,\n  { {0xa96700ec, 0xec16007a, 0xe3b9005d, 0x00000000}},  //   фија_, _آورد, rsız_,\n  { {0x6d5e01d6, 0x69c3003c, 0x17f70025, 0x00000000}},  //   lfpa, aine, ورية_,\n  { {0x7bc000ab, 0x056a01fc, 0x06e10044, 0x00000000}},  //   _immu, ојни_, মেসি,\n  { {0xc9860464, 0xe3b9013f, 0xad76007e, 0x00000000}},  //   _تشري, qsız_, звiц,\n  { {0x69dd0051, 0x6b9b009d, 0x98a70035, 0x00000000}},  //   _ísea, _youg, rană_,\n  { {0xe7170014, 0x18a31c84, 0x00000000, 0x00000000}},  //   _قيمت_, _шахм,   ,\n  { {0xbebb01d6, 0x63ad0142, 0x00000000, 0x00000000}},  //   _leër, _vlan,   ,\n  { {0xa4d401fb, 0x63ad0058, 0x224b03a1, 0x00000000}},  //   _полі, _wlan, ruck_,\n  { {0xcf9b098c, 0x2eed0825, 0x7bc000e0, 0x00000000}},  //   оја_, _šef_, _ommu,\n  { {0x63ad0169, 0x657a0240, 0x6d5e054e, 0x00000000}},  //   _ulan, ldth, efpa,\n  { {0x24581c85, 0x6b9b032c, 0x645a1c86, 0x00000000}},  // [4090] lém_, _roug, ltti,\n  { {0x7bc0003c, 0xdce70036, 0x6b89037a, 0x00000000}},  //   _ammu, _zaję, _sneg,\n  { {0x645a021e, 0x24580224, 0x61e5003f, 0x00000000}},  //   ntti, ném_, _ikhl,\n  { {0x645a00b0, 0xce95005e, 0x69c318f8, 0x00000000}},  //   itti, _замъ, wine,\n  { {0x69c31c87, 0x24580884, 0x290c012d, 0x00000000}},  //   tine, hém_, _bgda_,\n  { {0x68e8018e, 0x245800b9, 0x7bc01c88, 0x00000000}},  //   _bydd, kém_, _emmu,\n  { {0x3d1a001c, 0x69c301cb, 0x6b9b00ab, 0x00000000}},  //   मुळे_, rine, _toug,\n  { {0x69c30038, 0x68e8018e, 0xa69500ed, 0x00000000}},  //   sine, _dydd, ерој,\n  { {0x69c3110a, 0x92ea0055, 0x645a1c89, 0x00000000}},  //   pine, _গল্প_, etti,\n  { {0x68e8018e, 0xe895007e, 0x201c0010, 0x00000000}},  //   _fydd, _пазь, _évig_,\n  { {0x69c11c8a, 0xf77300f3, 0x00000000, 0x00000000}},  //   _imle, _لاش_,   ,\n  { {0xe3b203ec, 0x61e5003f, 0x853c0006, 0x00000000}},  //   ارد_, _akhl, nkėj,\n  { {0x645a182c, 0x6d550036, 0x3ce60061, 0x00000000}},  //   atti, _ocza, _जुने_,\n  { {0xdb0900f6, 0x6d430f18, 0x00000000, 0x00000000}},  //   _lleï, ónal,   ,\n  { {0xe3b20054, 0x24580181, 0xceb4006b, 0x00000000}},  //   _مرة_, cém_, hbət_,\n  { {0xafe3025f, 0x201e0089, 0xc178007f, 0x00000000}},  //   госл, īti_, žė_,\n  { {0x201e0e3f, 0x69c10056, 0x7ae90020, 0x00000000}},  // [40a0] ūti_, _omle, _nyet,\n  { {0xe1f201af, 0x62840032, 0x00000000, 0x00000000}},  //   _حسب_, _irio,   ,\n  { {0x3157007b, 0x28df03d7, 0x0b460242, 0x00000000}},  //   _איין_, _पुलि, енен,\n  { {0x7ae9001c, 0x6284007f, 0x68e81c8b, 0x00000000}},  //   _byet, _krio, _rydd,\n  { {0x68e81c8c, 0x24581c8d, 0x5b130088, 0x00000000}},  //   _sydd, zém_, уміт,\n  { {0x645a0836, 0x7ae900e0, 0x6e2408d3, 0x00000000}},  //   ytti, _dyet, mpib,\n  { {0xab2a0918, 0xd90d0014, 0x7ae900f2, 0x00000000}},  //   _нова_, زین_, _eyet,\n  { {0x62840ec8, 0x24580224, 0xceb4006b, 0x00000000}},  //   _orio, vém_, bbət_,\n  { {0x68e80016, 0xe5c60140, 0x98a7007f, 0x00000000}},  //   _wydd, есно, vaną_,\n  { {0x24581c85, 0x98a70036, 0xb8e800a1, 0x00000000}},  //   tém_, waną_, _قبضے_,\n  { {0xa4d40245, 0x645a00b0, 0x77920bb6, 0x00000000}},  //   тоні, utti, _میثا,\n  { {0x24581c85, 0x62840016, 0x645a00b0, 0x00000000}},  //   rém_, _brio, rtti,\n  { {0x6284090b, 0x645a02e7, 0x27e601a3, 0x00000000}},  //   _crio, stti, _ikon_,\n  { {0x04940025, 0x22440161, 0x65780056, 0x00000000}},  //   _للتح, ámka_, _uavh,\n  { {0x62840016, 0x9f35007e, 0x2fc20022, 0x00000000}},  //   _erio, кеві, _bmkg_,\n  { {0x62840051, 0x8d770014, 0xddc40276, 0x00000000}},  //   _frio, کارا, ttiş,\n  { {0x6284007f, 0x8afd013e, 0xa3de0309, 0x00000000}},  // [40b0] _grio, _obřa, तकर_,\n  { {0x5d5400e2, 0x442e00d9, 0x00000000, 0x00000000}},  //   лкут, _kwf_,   ,\n  { {0x7c670025, 0xdb3500ed, 0x9f5a00f6, 0x00000000}},  //   عائل, веењ, _cupó_,\n  { {0x7ae9008d, 0xa03a0049, 0x443c1c8e, 0x00000000}},  //   _pyet, _קערפ, _mvv_,\n  { {0xbf3600b6, 0x853c0006, 0xdb0e000c, 0x00000000}},  //   _בארץ_, rkėj, þjál,\n  { {0x89a80088, 0x7ae91c8f, 0x00000000, 0x00000000}},  //   нків_, _vyet,   ,\n  { {0xceb4006b, 0xbddb000a, 0x68110089, 0x00000000}},  //   sbət_, _avèg, _kādi,\n  { {0x7c250ca4, 0xceb4006b, 0x00000000, 0x00000000}},  //   mphr, mbər_,   ,\n  { {0x200b001a, 0x443c0197, 0x6448002d, 0x00000000}},  //   _mici_, _avv_, erdi,\n  { {0x200b0107, 0x27e61b2c, 0x765b1c90, 0x00000000}},  //   _lici_, _ekon_, rtuy,\n  { {0x443c02d4, 0x7c250048, 0x6f1d00d9, 0x00000000}},  //   _cvv_, nphr, _ofsc,\n  { {0x200b000d, 0xe72e003b, 0x442e1c91, 0x00000000}},  //   _nici_, _ње_, _dwf_,\n  { {0x27ff19b1, 0x644800c7, 0xe29703c8, 0x00000000}},  //   mmun_, ardi, вая_,\n  { {0x27ed15a6, 0x27e00bf8, 0x200b1c92, 0x00000000}},  //   llen_, čine_, _aici_,\n  { {0x200b16a3, 0xcfaa0014, 0xddd60161, 0x00000000}},  //   _bici_, وارم_, jvyš,\n  { {0x62840129, 0x4425005b, 0x9f4f000c, 0x00000000}},  //   _trio, mpl_, ögð_,\n  { {0x27ed010f, 0x200b0207, 0x76490173, 0x00000000}},  // [40c0] ilen_, _dici_, nrey,\n  { {0x27ed001f, 0xf4240044, 0x00000000, 0x00000000}},  //   hlen_, _ভিতর_,   ,\n  { {0x27ed0030, 0x7649000c, 0x442507a3, 0x00000000}},  //   klen_, hrey, npl_,\n  { {0x61ee0210, 0x8fa6003b, 0x27ed0b38, 0x00000000}},  //   llbl, _раме, jlen_,\n  { {0x27ed0016, 0x00000000, 0x00000000, 0x00000000}},  //   dlen_,   ,   ,\n  { {0x27ed1c93, 0xdb0b009f, 0x200b001a, 0x00000000}},  //   elen_, rigð, _zici_,\n  { {0x660a0aa3, 0x27ed0016, 0x00000000, 0x00000000}},  //   _rifk, flen_,   ,\n  { {0x27ed018e, 0x3860002b, 0x64480091, 0x00000000}},  //   glen_, ċir_, vrdi,\n  { {0xb8e902fb, 0x442e0061, 0xda650380, 0x00000000}},  //   _ले_, _swf_, _مالي,\n  { {0x21380107, 0x64480059, 0x27ed0032, 0x00000000}},  //   jarh_, trdi, alen_,\n  { {0x27ed1c94, 0x291e0022, 0x3a26046a, 0x00000000}},  //   blen_, _ifta_, lpop_,\n  { {0xd5b0007a, 0xa73a0879, 0x7649000c, 0x00000000}},  //   _گفت_, _آثار_, brey,\n  { {0xdcf500ca, 0x660a0066, 0x00000000, 0x00000000}},  //   _razč, _tifk,   ,\n  { {0x442e0016, 0x201300f6, 0x443c00d9, 0x00000000}},  //   _twf_, _puxi_, _tvv_,\n  { {0x3a260146, 0x99990142, 0x200b0232, 0x00000000}},  //   hpop_, _ísť_, _pici_,\n  { {0x02a70256, 0xa347008b, 0xc355025f, 0x00000000}},  //   _аром, _рэкл, _скиј,\n  { {0x291e0073, 0xfe700025, 0x200b00ca, 0x00000000}},  // [40d0] _ofta_, يدك_, _vici_,\n  { {0x68ed00b9, 0x672901ee, 0x00000000, 0x00000000}},  //   řadi, zbej,   ,\n  { {0x27ed1c95, 0x68110089, 0x200b01c5, 0x00000000}},  //   ylen_, _tādi, _tici_,\n  { {0x291e1c96, 0x6f1d00fa, 0x00000000, 0x00000000}},  //   _afta_, _ufsc,   ,\n  { {0xd9450517, 0xeab00379, 0x27ed08c8, 0x00000000}},  //   гели, يعه_, vlen_,\n  { {0x27ed1a98, 0x48790ae0, 0x7649014a, 0x00000000}},  //   wlen_, есия_, vrey,\n  { {0x27ed1c97, 0x3ea90173, 0x2d180014, 0x00000000}},  //   tlen_, lyat_, _شکلک_,\n  { {0x869901f9, 0x27ed046a, 0x291e030e, 0x00000000}},  //   етот_, ulen_, _efta_,\n  { {0x67290018, 0x27ed0016, 0x3ea91c98, 0x00000000}},  //   rbej, rlen_, nyat_,\n  { {0x27ed0016, 0x59b7007d, 0x98c700ec, 0x00000000}},  //   slen_, _अतिर, _исел,\n  { {0x27ed0052, 0x58d4073b, 0xf7551289, 0x00000000}},  //   plen_, _кофт, _مناج,\n  { {0xc20900b6, 0x3ea9020c, 0xddcd0091, 0x00000000}},  //   _זה_, kyat_, jvaž,\n  { {0xdcf401ee, 0x2fc90146, 0x4425013e, 0x00000000}},  //   _čača, diag_, spl_,\n  { {0x06e50055, 0x3ea91c99, 0x44250133, 0x00000000}},  //   _পৃথি, dyat_, ppl_,\n  { {0xa06700c0, 0x75d213d9, 0x200000e5, 0x00000000}},  //   лара_, _ديوا, tmii_,\n  { {0x645c0129, 0x3a2602c2, 0x00000000, 0x00000000}},  //   àrie, ypop_,   ,\n  { {0x4d6609e6, 0x3ea90b57, 0x20001507, 0x00000000}},  // [40e0] лкав, gyat_, rmii_,\n  { {0xa0c60014, 0x00000000, 0x00000000, 0x00000000}},  //   _ميخو,   ,   ,\n  { {0xacf602a8, 0xa0a6005e, 0xf5360049, 0x00000000}},  //   учај, _санд, רטער_,\n  { {0x65ad0027, 0x7c650025, 0x00000000, 0x00000000}},  //   _súhl, شامل,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xfce6012b, 0x82770049, 0x00000000, 0x00000000}},  //   _бого, טענע_,   ,\n  { {0x3a261c9a, 0xdca30900, 0x00000000, 0x00000000}},  //   spop_, _лари,   ,\n  { {0x7c3e0039, 0x3f800035, 0x3a2601d6, 0x00000000}},  //   mspr, ndiu_, ppop_,\n  { {0x36d4007c, 0x35b41c9b, 0x00000000, 0x00000000}},  //   ропр, ибир,   ,\n  { {0xd90e00a6, 0x2db70049, 0x00000000, 0x00000000}},  //   _عیب_, ָלטן_,   ,\n  { {0x7c3e0292, 0x69ca133d, 0x81da0044, 0x00000000}},  //   nspr, mife, ়তা_,\n  { {0x3ea9005f, 0x3f800065, 0x7c3e01a2, 0x00000000}},  //   yyat_, jdiu_, ispr,\n  { {0xdcf5001e, 0x659400d7, 0x95ca0f93, 0x00000000}},  //   _mazā, _валу, _пука_,\n  { {0x7c3e04d3, 0x33200375, 0x00000000, 0x00000000}},  //   kspr, _efix_,   ,\n  { {0x753a002d, 0x351b00a3, 0x3ea91904, 0x00000000}},  //   matz, _אוונ, wyat_,\n  { {0x443e1c9c, 0x753a022b, 0x7c3e00eb, 0x00000000}},  //   mst_, latz, dspr,\n  { {0x7c3e0168, 0x00000000, 0x00000000, 0x00000000}},  // [40f0] espr,   ,   ,\n  { {0x753a022b, 0x443e1c9d, 0x7c3e124c, 0x00000000}},  //   natz, ost_, fspr,\n  { {0x69ca001a, 0x7c3e0af1, 0x9f490051, 0x00000000}},  //   dife, gspr, llaí_,\n  { {0x443e0a48, 0xdb0001aa, 0x753a09ce, 0x00000000}},  //   ist_, _komè, hatz,\n  { {0x753a022b, 0x443e010f, 0x2d851c9e, 0x00000000}},  //   katz, hst_, _óleo_,\n  { {0x61e70107, 0x7c3e1c9f, 0xd8250a85, 0x00000000}},  //   nojl, bspr, адки,\n  { {0x443e02ae, 0x753a022b, 0xa7b50098, 0x00000000}},  //   jst_, datz, исиј,\n  { {0x07a50057, 0xc1d2013d, 0x443e0905, 0x00000000}},  //   раин, _सद्ग, dst_,\n  { {0x443e01cb, 0x6a2300a1, 0x69ca00d9, 0x00000000}},  //   est_, _اہتم, bife,\n  { {0x27e001d9, 0x446501fb, 0x7bcb04d4, 0x00000000}},  //   čina_, авов, ligu,\n  { {0x232a0517, 0xa7751663, 0x2d810051, 0x00000000}},  //   кони_, _влеч, idhe_,\n  { {0x888a007b, 0x7bcb125e, 0xbef500e8, 0x00000000}},  //   _שרײַ, nigu, _आरंभ_,\n  { {0x2d9102ae, 0x753a002d, 0xdb001ca0, 0x00000000}},  //   _onze_, batz, _comè,\n  { {0xdb0010cf, 0x7c3e04fd, 0x443e010f, 0x00000000}},  //   _domè, yspr, bst_,\n  { {0x7bcb002d, 0x9f490051, 0x98a700b9, 0x00000000}},  //   kigu, alaí_, vaně_,\n  { {0x673b010a, 0x788000b9, 0x3f800035, 0x00000000}},  //   nauj, lává, udiu_,\n  { {0xef170888, 0xd007005e, 0x7bcb084b, 0x00000000}},  // [4100] рму_, рете_, digu,\n  { {0x9d4601e0, 0x7c3e001f, 0x63a40035, 0x00000000}},  //   режд, tspr, _hoin,\n  { {0x63a4002b, 0x7bcb0056, 0x98a700b9, 0x00000000}},  //   _koin, figu, raně_,\n  { {0x63a40038, 0x7c3e1440, 0x753a022b, 0x00000000}},  //   _join, rspr, zatz,\n  { {0x63a4028c, 0x63b61ca1, 0x7c3e0da6, 0x00000000}},  //   _moin, _mlyn, sspr,\n  { {0x443e000c, 0x63a41ca2, 0x7c3e00f8, 0x00000000}},  //   yst_, _loin, pspr,\n  { {0x7bcb03d2, 0xb9c30054, 0x7b9601fb, 0x00000000}},  //   bigu, تقوي, _краї,\n  { {0x963401fb, 0x63a41c79, 0x2ca71ca3, 0x00000000}},  //   бниц, _noin, ände_,\n  { {0x753a022b, 0x443e0016, 0x3b0700ed, 0x00000000}},  //   tatz, wst_, _вето_,\n  { {0xdb0004bd, 0x443e00b5, 0x550605a7, 0x00000000}},  //   _nomé, tst_, ична,\n  { {0x753a022b, 0x443e000c, 0x63b61b6c, 0x00000000}},  //   ratz, ust_, _blyn,\n  { {0x63a4002a, 0x753a08a0, 0x6b820197, 0x00000000}},  //   _coin, satz, ndog,\n  { {0x443e001f, 0x753a022b, 0x63a41ca4, 0x00000000}},  //   sst_, patz, _doin,\n  { {0x463b007b, 0xdb001ca5, 0x7bcb0032, 0x00000000}},  //   _יעדע, _comé, zigu,\n  { {0xdb000161, 0x63b60016, 0xa184008b, 0x00000000}},  //   _domé, _flyn, цыял,\n  { {0x63a40038, 0x6d5c1ca6, 0x63b60016, 0x00000000}},  //   _goin, _acra, _glyn,\n  { {0x7bcb009d, 0x6b821263, 0x764018f7, 0x00000000}},  // [4110] vigu, ddog, nsmy,\n  { {0x71750076, 0x00000000, 0x00000000, 0x00000000}},  //   _اهدا,   ,   ,\n  { {0x2ca7001a, 0x7bcb03c1, 0x2d810065, 0x00000000}},  //   ând_, tigu, rdhe_,\n  { {0x6d5c10ff, 0x6f950025, 0x6b800016, 0x00000000}},  //   _ecra, _الحض, _camg,\n  { {0x7bcb04f3, 0xb21b000c, 0x673b0006, 0x00000000}},  //   rigu, kvæm, vauj,\n  { {0x7bcb08f0, 0x6d5c0051, 0x7af7006b, 0x00000000}},  //   sigu, _gcra, əxtl,\n  { {0x6b82027b, 0x673b0e3f, 0x7bcb00d4, 0x00000000}},  //   bdog, tauj, pigu,\n  { {0xb21b000c, 0x6b80005b, 0xba770014, 0x00000000}},  //   tvæl, _gamg, _پارت,\n  { {0x63a4002a, 0x673b0dec, 0x7bdb016c, 0x00000000}},  //   _roin, rauj, _ijuu,\n  { {0x63a41ca7, 0x67da002b, 0x63b60030, 0x00000000}},  //   _soin, rċja, _slyn,\n  { {0x63a4030a, 0x63b60161, 0xd90f00a1, 0x00000000}},  //   _poin, _plyn, _کیں_,\n  { {0xe29a0c4e, 0x79811ca8, 0x645c0129, 0x00000000}},  //   гам_, _halw, ària,\n  { {0x6d470059, 0x1b7a0049, 0x63a416c7, 0x00000000}},  //   _odja, נטשע, _voin,\n  { {0xc692009b, 0x00000000, 0x00000000, 0x00000000}},  //   _מאד_,   ,   ,\n  { {0x63a4021e, 0x6b821ca9, 0x7e7d06ed, 0x00000000}},  //   _toin, ydog, _assp,\n  { {0x79810263, 0x644100f8, 0x442700ca, 0x00000000}},  //   _lalw, msli, _itn_,\n  { {0x8fa3047d, 0x24430676, 0x7e7d00e5, 0x00000000}},  // [4120] чате, lım_, _cssp,\n  { {0x6b80000c, 0x7bc90e4b, 0x44271caa, 0x00000000}},  //   _samg, _ameu, _ktn_,\n  { {0x64410af1, 0x2443047f, 0x6b820313, 0x00000000}},  //   nsli, nım_, tdog,\n  { {0x80c10044, 0x4427006b, 0x644101a2, 0x00000000}},  //   _শুক্, _mtn_, isli,\n  { {0x6b82108b, 0x7981005b, 0xab650089, 0x00000000}},  //   rdog, _balw, daļā,\n  { {0x09e30200, 0x64410995, 0x3f821cab, 0x00000000}},  //   почн, ksli, _haku_,\n  { {0xc17300a0, 0x78b5005f, 0x58860147, 0x00000000}},  //   פחה_, _üzvl, сыла,\n  { {0x2443047f, 0xf09300b6, 0x644105b7, 0x00000000}},  //   dım_, לנו_, dsli,\n  { {0xdcfc00d0, 0x64410007, 0x3f820052, 0x00000000}},  //   _marč, esli, _maku_,\n  { {0x44271cac, 0x79811014, 0x3f8204cb, 0x00000000}},  //   _btn_, _galw, _laku_,\n  { {0x644100eb, 0x539901fb, 0x442700fa, 0x00000000}},  //   gsli, авня_, _ctn_,\n  { {0x3f82011c, 0x7e64059f, 0x61e1007d, 0x00000000}},  //   _naku_, ktip, पक्ष,\n  { {0x64410007, 0x69d81cad, 0x798100bb, 0x00000000}},  //   asli, onve, _yalw,\n  { {0x4427012d, 0x69d801e5, 0xbddb009d, 0x00000000}},  //   _ftn_, nnve, _avèn,\n  { {0x3f820f9a, 0x44260380, 0x201a1cae, 0x00000000}},  //   _baku_, _ارتف, _cupi_,\n  { {0x442c0022, 0x23bb0023, 0x69d801a2, 0x00000000}},  //   mpd_, _bëje_, hnve,\n  { {0x680a0046, 0x6e94189f, 0x7e640058, 0x00000000}},  // [4130] _będz, питу, gtip,\n  { {0xbddb03eb, 0x201a0020, 0x628d0032, 0x00000000}},  //   _evèn, _fupi_, _irao,\n  { {0x6ad101f5, 0xccfb003b, 0x9f4000d4, 0x00000000}},  //   तप्र, ућа_, boià_,\n  { {0x79810016, 0x2d9c0039, 0x395e00ab, 0x00000000}},  //   _salw, över_, _acts_,\n  { {0x69d8009f, 0x2443005d, 0x201a012d, 0x00000000}},  //   fnve, zım_, _zupi_,\n  { {0x2443005a, 0x6e2d0207, 0x201a1caf, 0x00000000}},  //   yım_, mpab, _yupi_,\n  { {0x6e2d0919, 0x442c0022, 0x387e00d2, 0x00000000}},  //   lpab, jpd_, _cstr_,\n  { {0x79811b43, 0x4427055e, 0x395e0ed6, 0x00000000}},  //   _walw, _rtn_, _ects_,\n  { {0xe61604af, 0x64410035, 0xfbd20097, 0x00000000}},  //   оды_, wsli, _חתן_,\n  { {0x644101bf, 0x2443047f, 0x44270093, 0x00000000}},  //   tsli, tım_, _ptn_,\n  { {0x87e707ca, 0x628d1cb0, 0x2d830d61, 0x00000000}},  //   _люде, _arao, _maje_,\n  { {0x2443047f, 0x64410006, 0xe6951095, 0x00000000}},  //   rım_, rsli, _ولاد,\n  { {0x2443014a, 0x6441010f, 0x628d0051, 0x00000000}},  //   sım_, ssli, _crao,\n  { {0x2d8301aa, 0xe69202fd, 0x3f821be3, 0x00000000}},  //   _naje_, _آلود, _saku_,\n  { {0x03a601fb, 0xdcfc1cb1, 0x3f821a03, 0x00000000}},  //   _мико, _parč, _paku_,\n  { {0x7e6400b0, 0x680a0036, 0x628d0bfb, 0x00000000}},  //   ttip, _sędz, _frao,\n  { {0x2d831cb2, 0xf77200a3, 0xdb060279, 0x00000000}},  // [4140] _baje_, וקן_, ümün,\n  { {0xdd9204e8, 0x3f820022, 0x201a1c30, 0x00000000}},  //   بوط_, _waku_, _tupi_,\n  { {0x7e64001e, 0x2d830213, 0x3f6a10a9, 0x00000000}},  //   stip, _daje_, _кино_,\n  { {0xcb6a003b, 0x6d43000c, 0x2ca70039, 0x00000000}},  //   раде_, ónar, ända_,\n  { {0x395e0009, 0x387e0087, 0x00000000, 0x00000000}},  //   _pcts_, _sstr_,   ,\n  { {0x2d830107, 0x387e0009, 0x8d760014, 0x00000000}},  //   _gaje_, _pstr_, _باحا,\n  { {0x69d804f2, 0x00000000, 0x00000000, 0x00000000}},  //   rnve,   ,   ,\n  { {0xca7603c8, 0xdd9000a1, 0x963401c0, 0x00000000}},  //   _музы, _توڑ_, пниц,\n  { {0x2d830117, 0xdb0001ca, 0x317806ed, 0x00000000}},  //   _yaje_, _komí, kerz_,\n  { {0x2896003b, 0x00000000, 0x00000000, 0x00000000}},  //   _мјес,   ,   ,\n  { {0x3178031c, 0xd5b701ff, 0x00000000, 0x00000000}},  //   derz_, ісь_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x9f4904bd, 0xc6d600f3, 0x6e220048, 0x00000000}},  //   llaç_, _بتات, íobl,\n  { {0x27e902aa, 0x675600a6, 0xd83801aa, 0x00000000}},  //   čane_, _ایکس_, _kwč_,\n  { {0x2d830059, 0x8557009b, 0x00000000, 0x00000000}},  //   _raje_, _ושוב_,   ,\n  { {0xcf98012b, 0x5f94017a, 0x09b70309, 0x00000000}},  //   оју_, мист, _अत्य,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  // [4150]   ,   ,   ,\n  { {0xdc8b00ed, 0xdb001cb3, 0xc05b0c18, 0x00000000}},  //   исел_, _comí, _кім_,\n  { {0xdb0000f7, 0x417a009b, 0x2d830059, 0x00000000}},  //   _domí, _הנתב, _vaje_,\n  { {0x207a007b, 0x307a0049, 0x6e2d19a1, 0x00000000}},  //   _פארא, _פארנ, ppab,\n  { {0xbf9a00b3, 0x720a00a1, 0x20091cb4, 0x00000000}},  //   _הירש, _خفیہ_, mmai_,\n  { {0x20091cb5, 0xd8380173, 0x00000000, 0x00000000}},  //   lmai_, _bwč_,   ,\n  { {0x0138009b, 0xcb35005e, 0xd6d90036, 0x00000000}},  //   חרות_, _невъ, dała_,\n  { {0x200902d4, 0x60dc00a0, 0x00000000, 0x00000000}},  //   nmai_, יקונ,   ,\n  { {0xe81b02d2, 0x2a7f010e, 0x00000000, 0x00000000}},  //   _पूरा_, _usub_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x20090010, 0x8458004d, 0xb9c4006d, 0x00000000}},  //   kmai_, орят_, _تقلي,\n  { {0x78fa009b, 0x00000000, 0x00000000, 0x00000000}},  //   _הפעו,   ,   ,\n  { {0x38670009, 0x6595005e, 0x27ed15cd, 0x00000000}},  //   ltnr_, _наду, moen_,\n  { {0x7c290224, 0x27ed0032, 0x00000000, 0x00000000}},  //   _čern, loen_,   ,\n  { {0xf9920049, 0x9103003b, 0x20020022, 0x00000000}},  //   ערל_, епре, _phki_,\n  { {0xef1a1123, 0x27ed1cb6, 0xe3b9006b, 0x00000000}},  //   сма_, noen_, lqın_,\n  { {0x7a19000a, 0xd12f009e, 0x00000000, 0x00000000}},  // [4160] _lňtb, ئمہ_,   ,\n  { {0x27ed1cb7, 0x386700f8, 0x00000000, 0x00000000}},  //   hoen_, ktnr_,   ,\n  { {0x61ee049a, 0x27ed1cb8, 0x711b0049, 0x00000000}},  //   mobl, koen_, _לויפ,\n  { {0xdb00000d, 0x20091cb9, 0xe1ff008e, 0x00000000}},  //   _româ, cmai_, ntón_,\n  { {0x27ed0343, 0xf38d0049, 0x7bc30065, 0x00000000}},  //   doen_, יראָ, ënua,\n  { {0x61ee00f4, 0x00000000, 0x00000000, 0x00000000}},  //   nobl,   ,   ,\n  { {0x2d980039, 0x38c80014, 0xfce302e9, 0x00000000}},  //   _inre_, غاتی_, _зоро,\n  { {0x27ed1cba, 0xd6d90036, 0x6d5e006c, 0x00000000}},  //   goen_, wała_, lgpa,\n  { {0x61ee0056, 0x9f400010, 0xd6d90036, 0x00000000}},  //   kobl, llió_, tała_,\n  { {0x61ee00b9, 0x273a0082, 0x2009007f, 0x00000000}},  //   jobl, ẫn_, zmai_,\n  { {0x20090006, 0x3dbe0044, 0x61ee0059, 0x00000000}},  //   ymai_, _আদাল, dobl,\n  { {0x394c01f3, 0x23bb0023, 0xd6d90036, 0x00000000}},  //   _hdds_, _bëja_, sała_,\n  { {0xa3be001c, 0x61ee03c9, 0x394c004a, 0x00000000}},  //   _इतर_, fobl, _kdds_,\n  { {0xbf9b1cbb, 0xd49a0088, 0x00000000, 0x00000000}},  //   _chên, _гри_,   ,\n  { {0x657a0038, 0x2009007f, 0x00000000, 0x00000000}},  //   meth, tmai_,   ,\n  { {0x645a011c, 0x657a1cbc, 0x2d980035, 0x00000000}},  //   muti, leth, _anre_,\n  { {0x61ee0190, 0x394c1cbd, 0xdb1b00fa, 0x00000000}},  // [4170] bobl, _odds_, _fluê,\n  { {0xd9040a90, 0x27ed111a, 0xbbb50309, 0x00000000}},  //   _می_, zoen_, ंस्क,\n  { {0x645a0027, 0xdcfc001e, 0xd2f900a1, 0x00000000}},  //   nuti, _parā, _دکھا_,\n  { {0x394c0133, 0x22490087, 0x8af900ed, 0x00000000}},  //   _adds_, _kvak_, онес_,\n  { {0xc5f80089, 0x657a0203, 0x645a010e, 0x00000000}},  //   klē_, keth, huti,\n  { {0x3f891cbe, 0x386700ea, 0x00000000, 0x00000000}},  //   ldau_, ttnr_,   ,\n  { {0xe7390057, 0x27ed0056, 0xb7b50082, 0x00000000}},  //   оей_, toen_, _dụn,\n  { {0x645a1325, 0x3f890171, 0x2249016e, 0x00000000}},  //   duti, ndau_, _ovak_,\n  { {0x27ed1cbf, 0x2b4d06c0, 0x38670634, 0x00000000}},  //   roen_, _idec_, stnr_,\n  { {0x657a00ab, 0x27ed1cc0, 0x645a0020, 0x00000000}},  //   geth, soen_, futi,\n  { {0x645a011c, 0x9f4b00b9, 0xdb000048, 0x00000000}},  //   guti, _akcí_, _iomá,\n  { {0xd6ce00e9, 0x657a0016, 0xe3b9013f, 0x00000000}},  //   اقی_, aeth, sqın_,\n  { {0x3f89018e, 0x657a005b, 0xe1ff15e3, 0x00000000}},  //   ddau_, beth, rtón_,\n  { {0x645a0837, 0xe1ff008e, 0x213e0051, 0x00000000}},  //   buti, stón_, úth_,\n  { {0xc7b80011, 0x2fc0005b, 0x7afd06ec, 0x00000000}},  //   _ttđt_, thig_, _østf,\n  { {0xee3a0822, 0x3e6600f4, 0x3a2d0058, 0x00000000}},  //   жна_, tôt_, _otep_,\n  { {0x7dc003a2, 0x61ee0b32, 0x66e80023, 0x00000000}},  // [4180] _löse, pobl, mëkë,\n  { {0x3f89018e, 0x27e01034, 0xfd1203ec, 0x00000000}},  //   adau_, čini_, نجا_,\n  { {0xdb1901aa, 0x93bd001a, 0x6d5e0168, 0x00000000}},  //   viwò, mpăr, rgpa,\n  { {0x3e6600f4, 0x2b4d00f6, 0x657a0010, 0x00000000}},  //   pôt_, _cdec_, zeth,\n  { {0x657a0061, 0xe1ff0010, 0x6d5e00e0, 0x00000000}},  //   yeth, któl_, pgpa,\n  { {0x082a009a, 0x7dc001a2, 0x9f40004a, 0x00000000}},  //   оции_, _böse, plió_,\n  { {0xdb00004f, 0xab2a0822, 0x701c0044, 0x00000000}},  //   _domá, _мова_, _তবুও_,\n  { {0x645a1cc1, 0xf76f0d3a, 0x657a018e, 0x00000000}},  //   vuti, لاً_, weth,\n  { {0x6e22002a, 0x896601e0, 0x7bc20222, 0x00000000}},  //   íobh, _окаж, mhou,\n  { {0xb8b6012b, 0x27e91cc2, 0xfe9b009b, 0x00000000}},  //   _осећ, čana_, קיימ,\n  { {0x657a0030, 0x799a0869, 0x628400b0, 0x00000000}},  //   reth, _intw, _asio,\n  { {0x645a1cc3, 0x7bc201b5, 0xb21b000c, 0x00000000}},  //   ruti, nhou, kvæt,\n  { {0x645a1cc4, 0x6d4e0091, 0x7c2918a2, 0x00000000}},  //   suti, _odba, _čerm,\n  { {0x79881cc5, 0xa56800a1, 0x3f890016, 0x00000000}},  //   _jadw, _رشتے_, wdau_,\n  { {0x798801d5, 0x7bc200bb, 0x69c60006, 0x00000000}},  //   _madw, khou, _įkel,\n  { {0x98a70107, 0x64480c7a, 0x79880173, 0x00000000}},  //   žiću_, msdi, _ladw,\n  { {0x799a049b, 0x63ad001a, 0x7c2e0089, 0x00000000}},  // [4190] _ontw, _ioan, _atbr,\n  { {0x63ad0011, 0x8d7701f7, 0x6d4e04b7, 0x00000000}},  //   _hoan, بارا, _cdba,\n  { {0xdb0013ae, 0x3a2d00ab, 0x798a0016, 0x00000000}},  //   _romá, _step_, ddfw,\n  { {0x799a1cc6, 0x2d870027, 0x63ad1cc7, 0x00000000}},  //   _antw, žne_, _joan,\n  { {0xdb0001ca, 0x79881cc8, 0x201900e0, 0x00000000}},  //   _pomá, _badw, _iisi_,\n  { {0x9f40000c, 0xd6d90036, 0x79880016, 0x00000000}},  //   llið_, wało_, _cadw,\n  { {0x6d450fe7, 0x20190e51, 0xfd4600a1, 0x00000000}},  //   maha, _kisi_, _سینٹ_,\n  { {0x799a1cc9, 0x7bc203eb, 0x6d450475, 0x00000000}},  //   _entw, chou, laha,\n  { {0xdb0001ca, 0x201904cb, 0x442e14ea, 0x00000000}},  //   _tomá, _misi_, _atf_,\n  { {0x6d45006a, 0x77b51cca, 0x77bc049a, 0x00000000}},  //   naha, _máxi, _véxa,\n  { {0x69c30051, 0x63ad00e5, 0x661801c5, 0x00000000}},  //   mhne, _boan, _divk,\n  { {0x6d45006a, 0xceb4005f, 0x20191ccb, 0x00000000}},  //   haha, yyə_, _nisi_,\n  { {0x63ad001d, 0x6d451ccc, 0x442e0197, 0x00000000}},  //   _doan, kaha, _etf_,\n  { {0x1aec0044, 0x6d4504cb, 0x442e1ccd, 0x00000000}},  //   জেকে_, jaha, _ftf_,\n  { {0x6d450475, 0x7dc0010f, 0xafe60545, 0x00000000}},  //   daha, _lösc, еовл,\n  { {0x6729008e, 0x63ad0035, 0x93bd001a, 0x00000000}},  //   ncej, _goan, spăr,\n  { {0x6d451cce, 0x764904cd, 0x62840020, 0x00000000}},  // [41a0] faha, nsey, _usio,\n  { {0x6d451ccf, 0x7bc2103f, 0x6b9b1444, 0x00000000}},  //   gaha, whou, _anug,\n  { {0x7bc21cd0, 0x20190e06, 0x63ad1cd1, 0x00000000}},  //   thou, _fisi_, _yoan,\n  { {0xbea60888, 0x79880016, 0x63ad0082, 0x00000000}},  //   _замк, _sadw, _xoan,\n  { {0x7bc2049b, 0x6d450475, 0xb21b0737, 0x00000000}},  //   rhou, baha, lvær,\n  { {0x7bc201b5, 0x69c31cd2, 0x6d4504be, 0x00000000}},  //   shou, ghne, caha,\n  { {0x7bc21cd3, 0x7c2e01c9, 0x307a0049, 0x00000000}},  //   phou, _utbr, לאַנ,\n  { {0x2d8a1cd4, 0x6b89000a, 0x00000000, 0x00000000}},  //   _habe_, _gaeg,   ,\n  { {0x7bc01cd5, 0x442e1cd6, 0x69c30051, 0x00000000}},  //   _ilmu, _stf_, bhne,\n  { {0x69c3001f, 0x2d8a002d, 0xac9700a1, 0x00000000}},  //   chne, _jabe_, _تنہا_,\n  { {0x81d60055, 0x6448010a, 0xd5b80089, 0x00000000}},  //   িকা_, usdi, rkā_,\n  { {0xd5b8001e, 0x644813ea, 0x6d450032, 0x00000000}},  //   skā_, rsdi, zaha,\n  { {0x6d451cd7, 0x63ad12f0, 0x201900af, 0x00000000}},  //   yaha, _voan, _risi_,\n  { {0x20190a9a, 0x27e00209, 0x7afd0637, 0x00000000}},  //   _sisi_, činu_, _øste,\n  { {0x7bc0038c, 0x442e08cb, 0x6d451cd8, 0x00000000}},  //   _olmu, _utf_, vaha,\n  { {0x77b5081d, 0x00000000, 0x00000000, 0x00000000}},  //   _páxi,   ,   ,\n  { {0x2d8a001c, 0x20190a5c, 0x2b46012d, 0x00000000}},  // [41b0] _babe_, _visi_, daoc_,\n  { {0x2d8a1cd9, 0x7bc00dfb, 0x9ce701fc, 0x00000000}},  //   _cabe_, _almu, нцел,\n  { {0x2d8a002d, 0x20191a7c, 0xf99f0011, 0x00000000}},  //   _dabe_, _tisi_, _đè_,\n  { {0x6d450390, 0x77b500c4, 0x6d4a01e5, 0x00000000}},  //   saha, _táxi, ófar,\n  { {0x6d450b9a, 0x69c30048, 0x00000000, 0x00000000}},  //   paha, thne,   ,\n  { {0x2d8a022b, 0x7bc01ae2, 0x7e6d1cda, 0x00000000}},  //   _gabe_, _elmu, mtap,\n  { {0x7e6d0052, 0x00000000, 0x00000000, 0x00000000}},  //   ltap,   ,   ,\n  { {0x27e90f3a, 0x00000000, 0x00000000, 0x00000000}},  //   čano_,   ,   ,\n  { {0x7e6d1cdb, 0x69c31cdc, 0xba74023c, 0x00000000}},  //   ntap, phne, _مالت,\n  { {0x76491205, 0xdb0004ce, 0x6827007e, 0x00000000}},  //   rsey, _domä, _зьдз,\n  { {0x69c10047, 0xf502005e, 0xef1f00f6, 0x00000000}},  //   _ille, изьо, _paül_,\n  { {0x394704bd, 0x7e6d0199, 0x7d1a000c, 0x00000000}},  //   lans_, ktap, _útse,\n  { {0x9585007c, 0xd2990088, 0x00000000, 0x00000000}},  //   _алле, нтрі_,   ,\n  { {0x69c100f6, 0xdb1b00d4, 0x00000000, 0x00000000}},  //   _jlle, _lluï,   ,\n  { {0xb21b0030, 0x2d8a00d0, 0x394700f6, 0x00000000}},  //   tvær, _rabe_, ians_,\n  { {0x2d8a029d, 0x61fc001c, 0x394704d1, 0x00000000}},  //   _sabe_, slrl, hans_,\n  { {0x394701aa, 0x69c1021e, 0xb21b0698, 0x00000000}},  // [41c0] kans_, _olle, rvær,\n  { {0x39471cdd, 0xb21b0637, 0x00000000, 0x00000000}},  //   jans_, svær,   ,\n  { {0x39471cde, 0xc1bb00b3, 0x0b460088, 0x00000000}},  //   dans_, _חמיש, внен,\n  { {0x69c115a6, 0x224000bb, 0x24870919, 0x00000000}},  //   _alle, _kwik_, _msnm_,\n  { {0x39471cdf, 0x2d8a1ce0, 0x7e6d0068, 0x00000000}},  //   fans_, _tabe_, ctap,\n  { {0x3f8b1ce1, 0x394701cb, 0x00000000, 0x00000000}},  //   _zacu_, gans_,   ,\n  { {0x8c4304b6, 0xdca300aa, 0x25ae071b, 0x00000000}},  //   _весе, _кари, _rofl_,\n  { {0x69c10239, 0xd90d00a6, 0xe7b20061, 0x00000000}},  //   _elle, سین_, _जवळप,\n  { {0x39470129, 0x83fd0091, 0x25ae0087, 0x00000000}},  //   bans_, nuđe, _pofl_,\n  { {0x39471ce2, 0x00000000, 0x00000000, 0x00000000}},  //   cans_,   ,   ,\n  { {0x62960022, 0x7e6d002d, 0xd76400a1, 0x00000000}},  //   _aryo, ztap, _منای,\n  { {0x69d800ab, 0xccf3009b, 0xe73702dc, 0x00000000}},  //   live, יכת_, _аец_,\n  { {0xe298008b, 0x3a2415a2, 0x645d0006, 0x00000000}},  //   ваў_, _jump_, ąsia,\n  { {0x72050025, 0x69d8032c, 0x3f8b012d, 0x00000000}},  //   اوسم, nive, _sacu_,\n  { {0x3a240784, 0x3f8b0093, 0x2fc20281, 0x00000000}},  //   _lump_, _pacu_, _blkg_,\n  { {0x394718ae, 0x69d80035, 0x7e6d044e, 0x00000000}},  //   zans_, hive, ttap,\n  { {0x39470263, 0x69d80292, 0xdf44007e, 0x00000000}},  // [41d0] yans_, kive, рэсп,\n  { {0x7e6d0145, 0x3f8b0009, 0x69d80059, 0x00000000}},  //   rtap, _wacu_, jive,\n  { {0x69d8027b, 0x7afb0093, 0x63bd0006, 0x00000000}},  //   dive, _syut, oksn,\n  { {0x3a240ca4, 0x59c50061, 0xbddb01aa, 0x00000000}},  //   _bump_, वसभर, _avèt,\n  { {0x39471ce3, 0xb5fd0161, 0x69d807f9, 0x00000000}},  //   tans_, luše, five,\n  { {0x69d80378, 0xe81b02d2, 0x1a68025a, 0x00000000}},  //   give, _पूजा_, ئیلی_,\n  { {0x39470263, 0x2d8106ad, 0xddc4001a, 0x00000000}},  //   rans_, mehe_, stiţ,\n  { {0x39470d5b, 0x2d81006c, 0x17850679, 0x00000000}},  //   sans_, lehe_, угим,\n  { {0x394701aa, 0x645a0141, 0x99670069, 0x00000000}},  //   pans_, erti, _ател,\n  { {0xb5fd0059, 0x7dc00039, 0xceb20049, 0x00000000}},  //   kuše, _lösn, ציי_,\n  { {0xddc40b4b, 0xd877023c, 0x224001c3, 0x00000000}},  //   ntiš, _جاذب, _swik_,\n  { {0x2d8117ca, 0x62961ce4, 0xdb1b0129, 0x00000000}},  //   hehe_, _pryo, _lluí,\n  { {0xe1ff0046, 0x645a01a2, 0x673b0023, 0x00000000}},  //   ntów_, arti, mbuj,\n  { {0x27ff01d5, 0xa594005e, 0xddc40006, 0x00000000}},  //   llun_, _връщ, ktiš,\n  { {0x057404e1, 0xaf9a085f, 0x957c0036, 0x00000000}},  //   _خاند, нтах_, snąc,\n  { {0xe1ff0046, 0x69d8003b, 0x200b00b9, 0x00000000}},  //   któw_, zive, _chci_,\n  { {0xd24f0076, 0xe81b013d, 0x27ff00b0, 0x00000000}},  // [41e0] _فني_, _पूछा_, ilun_,\n  { {0xdca6012b, 0x3a240ace, 0x69d8033f, 0x00000000}},  //   лази, _rump_, xive,\n  { {0x69d81ce5, 0x27e90209, 0x3a240145, 0x00000000}},  //   vive, čanj_, _sump_,\n  { {0x4fa60c65, 0xab2a007c, 0x6e3600d9, 0x00000000}},  //   _симв, хода_, ppyb,\n  { {0x69d80322, 0x693400a1, 0x673b0059, 0x00000000}},  //   tive, لکار, dbuj,\n  { {0x7c29004f, 0x7d03010f, 0x645a000c, 0x00000000}},  //   _červ, ünsc, yrti,\n  { {0x3945120d, 0xa2db006e, 0xdce70036, 0x00000000}},  //   _dels_, _पेन्, _obję,\n  { {0x69d80006, 0x76aa007c, 0x645a0b4a, 0x00000000}},  //   sive, етов_, vrti,\n  { {0x386e1ce6, 0xdcee007f, 0x6e2600d9, 0x00000000}},  //   stfr_, _pabė, _jukb,\n  { {0x80ba0044, 0x6b820051, 0x645a00ca, 0x00000000}},  //   _উইন্, leog, trti,\n  { {0x8d5b0049, 0x35f3007e, 0xcdf70049, 0x00000000}},  //   עכטי, спэр, רמיי_,\n  { {0x1bf4013d, 0x6b820048, 0x00000000, 0x00000000}},  //   इकिल_, neog,   ,\n  { {0x63bd08ad, 0xdb1901a2, 0x00000000, 0x00000000}},  //   rksn, chwä,   ,\n  { {0x645a0059, 0x80d30044, 0x00000000, 0x00000000}},  //   prti, _দুষ্,   ,\n  { {0x8607004b, 0xdb000211, 0xc9b7009b, 0x00000000}},  //   _حقوق_, _comú, נהלת_,\n  { {0xb5fd01ca, 0x20000667, 0x00000000, 0x00000000}},  //   ruše, glii_,   ,\n  { {0x6b820207, 0xa3ea001c, 0x141c00b6, 0x00000000}},  // [41f0] deog, _मदत_, _אוהב,\n  { {0x21670b11, 0xbddb009d, 0x76420009, 0x00000000}},  //   _стиг, _avèr, _mwoy,\n  { {0x2d81000b, 0x80d30055, 0xcd0700e3, 0x00000000}},  //   rehe_, _দুর্, учаи,\n  { {0xa134025a, 0x672200e7, 0x3945009d, 0x00000000}},  //   _پریش, _ngoj, _sels_,\n  { {0xa969003b, 0x394504bd, 0xddc409f4, 0x00000000}},  //   вила_, _pels_, stiš,\n  { {0xa85500e1, 0x9f5200f4, 0xe1ff0036, 0x00000000}},  //   атиј, voyé_, rtów_,\n  { {0xe1ff0046, 0x5b3701f7, 0x27ff000c, 0x00000000}},  //   stów_, _معذر, tlun_,\n  { {0x9b89026c, 0x5a3500ed, 0x765b0211, 0x00000000}},  //   _جنرل_, _внат, truy,\n  { {0x6d47020c, 0x394500f4, 0xdb09000c, 0x00000000}},  //   _keja, _tels_, _gleð,\n  { {0x6d4704cb, 0x3ea900f6, 0x00000000, 0x00000000}},  //   _jeja, ixat_,   ,\n  { {0xa3ea03d7, 0x79831ce7, 0x6d470145, 0x00000000}},  //   _मदद_, menw, _meja,\n  { {0x6d4701aa, 0x7e7d1ce8, 0x79830016, 0x00000000}},  //   _leja, _opsp, lenw,\n  { {0x75d504e1, 0x9814035b, 0xe5a500ed, 0x00000000}},  //   _پيغا, _ابلا, _вили,\n  { {0x6d470027, 0x79831ce9, 0x865a009b, 0x00000000}},  //   _neja, nenw, _ידני,\n  { {0x7e7d0089, 0x00000000, 0x00000000, 0x00000000}},  //   _apsp,   ,   ,\n  { {0xa06701f9, 0x4427001a, 0x7e7d0022, 0x00000000}},  //   јата_, _iun_, _bpsp,\n  { {0x44271cea, 0x6d470007, 0x798300bb, 0x00000000}},  // [4200] _hun_, _beja, kenw,\n  { {0x44200be3, 0x44271ceb, 0x6d47008e, 0x00000000}},  //   _hii_, _kun_, _ceja,\n  { {0x4427012b, 0x6d471cec, 0x7983146c, 0x00000000}},  //   _jun_, _deja, denw,\n  { {0x44271ced, 0xfc03025f, 0x3e6f194f, 0x00000000}},  //   _mun_, опхо, büt_,\n  { {0x4420001a, 0x0a94007e, 0x79831cee, 0x00000000}},  //   _mii_, салю, fenw,\n  { {0xe85406ea, 0x798307eb, 0xe9f7008b, 0x00000000}},  //   منتد, genw, аніі_,\n  { {0xfce307ca, 0x442703a1, 0x80b60044, 0x00000000}},  //   _доро, _nun_, ৃপক্,\n  { {0x44200004, 0x2fc01cef, 0x99dd0173, 0x00000000}},  //   _nii_, nkig_, _pwňc,\n  { {0x44270211, 0x64430784, 0x7983010f, 0x00000000}},  //   _aun_, _awni, benw,\n  { {0x77bc1cf0, 0x44271cf1, 0x44200f2c, 0x00000000}},  //   _méxi, _bun_, _aii_,\n  { {0x4427049a, 0x2fc006b2, 0x77860174, 0x00000000}},  //   _cun_, kkig_, _влез,\n  { {0xe73a0517, 0x44271cf2, 0x67220107, 0x00000000}},  //   _ред_, _dun_, _ugoj,\n  { {0x659401fb, 0x44270082, 0x2c510036, 0x00000000}},  //   _галу, _eun_, ząd_,\n  { {0x442700ab, 0x44200145, 0x7c201cf3, 0x00000000}},  //   _fun_, _eii_, _limr,\n  { {0x4420001a, 0x6d4701a3, 0x0ce10044, 0x00000000}},  //   _fii_, _reja, _ভর্ত,\n  { {0x6d470149, 0x7c201431, 0xee1f007d, 0x00000000}},  //   _seja, _nimr, बद्ध_,\n  { {0xd2510054, 0x6d47027e, 0x5d551cf4, 0x00000000}},  // [4210] _عند_, _peja, йкат,\n  { {0x27e902aa, 0x4427006a, 0x44200035, 0x00000000}},  //   čani_, _yun_, _zii_,\n  { {0x40950054, 0x79830112, 0x6d471049, 0x00000000}},  //   _الجر, venw, _veja,\n  { {0x4420027b, 0xd7e60025, 0xfbd0023c, 0x00000000}},  //   _xii_, _رك_, وتن_,\n  { {0x6d47008e, 0x2d87009d, 0x7c201cf5, 0x00000000}},  //   _teja, ônes_, _dimr,\n  { {0xb5fd0119, 0x38950089, 0x69ca0048, 0x00000000}},  //   kuša, _pār_, ghfe,\n  { {0xb5fd0089, 0x7983059b, 0xed0500a1, 0x00000000}},  //   juša, renw, _طورپ,\n  { {0x2d911cf6, 0x442700ab, 0xb5fd0bf1, 0x00000000}},  //   _haze_, _run_, duša,\n  { {0x2d91037e, 0x442700ab, 0x44200632, 0x00000000}},  //   _kaze_, _sun_, _rii_,\n  { {0x442704be, 0x7c200173, 0x69ca01a2, 0x00000000}},  //   _pun_, _zimr, chfe,\n  { {0x2d910541, 0x44201cf7, 0x69fa0049, 0x00000000}},  //   _maze_, _pii_, _עלעק,\n  { {0x2d910107, 0x48151cf8, 0x44270082, 0x00000000}},  //   _laze_, _умес, _vun_,\n  { {0x4420027b, 0x1af70044, 0x00000000, 0x00000000}},  //   _vii_, েশকে_,   ,\n  { {0xa06a1cf9, 0x4427127d, 0x77bc027b, 0x00000000}},  //   лага_, _tun_, _réxi,\n  { {0xd4350318, 0x8fa60265, 0x442011eb, 0x00000000}},  //   _اعتب, баве, _tii_,\n  { {0x44200093, 0x98b0012d, 0x29c201e5, 0x00000000}},  //   _uii_, žaću_, _aðal_,\n  { {0x2d911cfa, 0x63a40058, 0xd007003b, 0x00000000}},  // [4220] _baze_, _inin, сете_,\n  { {0x7c2002e7, 0xef17003b, 0x00000000, 0x00000000}},  //   _simr, сму_,   ,\n  { {0x63a40247, 0xd8381cfb, 0x00000000, 0x00000000}},  //   _knin, _krče_,   ,\n  { {0xdee6003b, 0xf4560049, 0xe1ff00f6, 0x00000000}},  //   _гоми, מיער_, btós_,\n  { {0x7e6404bd, 0x2d911140, 0xaad2013d, 0x00000000}},  //   quip, _faze_, _देखक,\n  { {0xcaa50054, 0x9f49000c, 0x22440161, 0x00000000}},  //   تصمي, llað_, ámky_,\n  { {0xc0f20011, 0x2a7f06fa, 0x63a41cbf, 0x00000000}},  //   _rượu_, _epub_, _onin,\n  { {0x63b617e5, 0xb5fd1cfc, 0x9634003b, 0x00000000}},  //   _noyn, vuša, ониц,\n  { {0xa37b0181, 0xcf93009b, 0x00000000, 0x00000000}},  //   niõe, לטה_,   ,\n  { {0x63a402c6, 0x5454005e, 0x7bc200e0, 0x00000000}},  //   _anin, овот, lkou,\n  { {0x2937007b, 0x69c80190, 0xc7af007c, 0x00000000}},  //   _האבן_, _ilde, _её_,\n  { {0x7bc2078b, 0x290c1cfd, 0xb5fd04eb, 0x00000000}},  //   nkou, _izda_, ruša,\n  { {0xadfa013d, 0xb5fd1cfe, 0x69c80087, 0x00000000}},  //   ्तान_, suša, _klde,\n  { {0x236d0046, 0xb5fd0161, 0x63a400b0, 0x00000000}},  //   żej_, lušn, _enin,\n  { {0x2fd90022, 0x2d911cff, 0x7bc200b0, 0x00000000}},  //   _pmsg_, _raze_, kkou,\n  { {0x543b007b, 0x628d0051, 0x61fe0739, 0x00000000}},  //   _געהא, _tsao, _ekpl,\n  { {0xa37b0181, 0x69c800ab, 0x98bc0006, 0x00000000}},  // [4230] giõe, _olde, ravę_,\n  { {0xd8380173, 0x00000000, 0x00000000, 0x00000000}},  //   _otč_,   ,   ,\n  { {0x2d910107, 0xb5fd0059, 0x9f49000c, 0x00000000}},  //   _vaze_, kušn, blað_,\n  { {0x69c815cd, 0x69da1d00, 0xfd100025, 0x00000000}},  //   _alde, _amte, رجل_,\n  { {0x957c0036, 0xd8380173, 0x2d91014a, 0x00000000}},  //   ciąg, _atč_, _taze_,\n  { {0x7bc200b0, 0x957c0036, 0xdb1b0129, 0x00000000}},  //   akou, niąd, _lluç,\n  { {0xd90e026c, 0xe1ff000c, 0x69c80009, 0x00000000}},  //   ہیے_, próf_, _dlde,\n  { {0x7bc20ff3, 0x6fc90164, 0x00000000, 0x00000000}},  //   ckou, रसिं,   ,\n  { {0x7bc904d2, 0x7bdb0168, 0x00000000, 0x00000000}},  //   _ileu, _imuu,   ,\n  { {0xb5fd0e0d, 0xd838016c, 0x00000000, 0x00000000}},  //   krše, _srče_,   ,\n  { {0x7bc9049b, 0xa5090072, 0x6386017f, 0x00000000}},  //   _kleu, рена_, огна,\n  { {0x645c1d01, 0xf1a900b3, 0xe29a0fd8, 0x00000000}},  //   ária, _בס_, аам_,\n  { {0xbddb000a, 0x00000000, 0x00000000, 0x00000000}},  //   _pwèl,   ,   ,\n  { {0x38a0000d, 0x7bc90221, 0x69c3138a, 0x00000000}},  //   _fără_, _lleu, nkne,\n  { {0x7bc9005b, 0x9f49000c, 0x7bc20068, 0x00000000}},  //   _oleu, tlað_, ykou,\n  { {0x6fda00b9, 0x7c290161, 0x63a400ab, 0x00000000}},  //   můck, _čerp, _unin,\n  { {0x82360188, 0x69c30eb6, 0xee37019d, 0x00000000}},  // [4240] _بربا, kkne, жну_,\n  { {0x7bc900ea, 0xad6603ec, 0x7bdb1d02, 0x00000000}},  //   _aleu, تاره, _amuu,\n  { {0x7bc900f4, 0xc2e900a1, 0x7afd0030, 0x00000000}},  //   _bleu, _نعیم_, _østj,\n  { {0x61fc001a, 0xcb67007e, 0x2d0a0061, 0x00000000}},  //   lorl, жаце_, _वरील_,\n  { {0xf38d0049, 0x00000000, 0x00000000, 0x00000000}},  //   טראָ,   ,   ,\n  { {0x7e761d03, 0x61fc1d04, 0x7bc216e5, 0x00000000}},  //   mtyp, norl, skou,\n  { {0xa96700e1, 0x7bc900f4, 0x7e760056, 0x00000000}},  //   ција_, _fleu, ltyp,\n  { {0x7bc90168, 0x7c3e0190, 0x17f70025, 0x00000000}},  //   _gleu, mppr, يرية_,\n  { {0x61fc0010, 0x7e760016, 0xa96a17a4, 0x00000000}},  //   korl, ntyp, _виза_,\n  { {0xd5ba0265, 0x69c31153, 0x7c3e1d05, 0x00000000}},  //   рси_, ckne, oppr,\n  { {0x7e761d06, 0x4438040f, 0xddcd0035, 0x00000000}},  //   htyp, ër_, ltaţ,\n  { {0xb5fd0119, 0x47c30ae0, 0x3e741d07, 0x00000000}},  //   vrše, _обхв, kät_,\n  { {0x61fc05b7, 0x3e7400b0, 0xddcd001a, 0x00000000}},  //   forl, jät_, ntaţ,\n  { {0x35f70558, 0x7e7600ea, 0xdb0000dc, 0x00000000}},  //   _ورود_, dtyp, _homó,\n  { {0xdb000036, 0xc1050025, 0x394c0133, 0x00000000}},  //   _komó, سوري, _meds_,\n  { {0xd9c20044, 0x443e00ab, 0x1e35007e, 0x00000000}},  //   ্চিম, mpt_, знаў,\n  { {0x443e00b5, 0x7e760190, 0x80dc0044, 0x00000000}},  // [4250] lpt_, gtyp, _মুদ্,\n  { {0x7bc900c7, 0x443e00b5, 0xdd910025, 0x00000000}},  //   _sleu, opt_, عوا_,\n  { {0xc172009b, 0x7bc900f4, 0x98bc00b9, 0x00000000}},  //   _אחי_, _pleu, ravě_,\n  { {0x70fa00b6, 0x60fa009b, 0x22491d08, 0x00000000}},  //   _להתח, _להתק, _kwak_,\n  { {0x7e760061, 0xbf3600a3, 0x3f891d09, 0x00000000}},  //   ctyp, _מארץ_, meau_,\n  { {0x22490020, 0x443e0022, 0x3f89009d, 0x00000000}},  //   _mwak_, kpt_, leau_,\n  { {0x69c300b5, 0x443e00b5, 0x6fbf0316, 0x00000000}},  //   rkne, jpt_, _एकां,\n  { {0x3f8910ff, 0xdb000051, 0x7bdb011c, 0x00000000}},  //   neau_, _comó, _umuu,\n  { {0x61fc0676, 0xab66006c, 0xddcd001a, 0x00000000}},  //   yorl, stüü, ctaţ,\n  { {0x49b803ab, 0xdcfc012d, 0x6e3b01df, 0x00000000}},  //   _والد_, _zarđ, _çubu,\n  { {0x61fc05b7, 0x64a5007e, 0x22490127, 0x00000000}},  //   vorl, чана, _awak_,\n  { {0x7e761d0a, 0x2b4d00f6, 0x22490145, 0x00000000}},  //   ytyp, _jeec_, _bwak_,\n  { {0x3f891d0b, 0x61fc014a, 0x443e00bb, 0x00000000}},  //   deau_, torl, apt_,\n  { {0x3e74021e, 0x29051d0c, 0x443e00fa, 0x00000000}},  //   vät_, _kyla_, bpt_,\n  { {0x8fa6008b, 0x5502013d, 0x61fc1d0d, 0x00000000}},  //   паве, _रुपए_, rorl,\n  { {0x3e741d0e, 0x29050058, 0x61fc0146, 0x00000000}},  //   tät_, _myla_, sorl,\n  { {0x61fc014a, 0x00000000, 0x00000000, 0x00000000}},  // [4260] porl,   ,   ,\n  { {0x3e740444, 0x7d1a000c, 0x00000000, 0x00000000}},  //   rät_, _útsk,   ,\n  { {0x7e760056, 0x91bb009b, 0x3b8600ed, 0x00000000}},  //   styp, _המיי, злег,\n  { {0x3f891b0a, 0x7e761d0f, 0xcb6a0e82, 0x00000000}},  //   ceau_, ptyp, саде_,\n  { {0x7f4400c4, 0x200200bb, 0xc33300b3, 0x00000000}},  //   mbiq, _ikki_, גוד_,\n  { {0x443e1d10, 0x29050224, 0x2c750190, 0x00000000}},  //   ypt_, _byla_, båd_,\n  { {0xdb000036, 0x7dcb0036, 0x6d5c153a, 0x00000000}},  //   _pomó, yższ, _idra,\n  { {0xf0930104, 0x6d4e0127, 0x62840403, 0x00000000}},  //   תנה_, _heba, _opio,\n  { {0x6d4e020c, 0x7c2e01a2, 0x6d5c02d4, 0x00000000}},  //   _keba, _hubr, _kdra,\n  { {0x645c02d5, 0xddd60036, 0x7c2e0032, 0x00000000}},  //   ário, jwyż, _kubr,\n  { {0x443e010f, 0x22490007, 0x493b009b, 0x00000000}},  //   upt_, _swak_, _הגבו,\n  { {0x6d4e04cb, 0x00000000, 0x00000000, 0x00000000}},  //   _leba,   ,   ,\n  { {0x3f89028c, 0x6d5c0340, 0xd7a90061, 0x00000000}},  //   veau_, _odra, कारच,\n  { {0x171b00b6, 0x443e1d11, 0x7e641802, 0x00000000}},  //   _הודע, ppt_, drip,\n  { {0x3cdc001c, 0x3f8900f4, 0x7e6408a6, 0x00000000}},  //   _गेले_, teau_, erip,\n  { {0x443c1085, 0x6d5c018e, 0x224901d6, 0x00000000}},  //   _itv_, _adra, _twak_,\n  { {0x3f8905f2, 0x6d4e04cb, 0x7dc0010f, 0x00000000}},  // [4270] reau_, _beba, _lösu,\n  { {0x20020359, 0x3f89028c, 0x6d4e1d12, 0x00000000}},  //   _ekki_, seau_, _ceba,\n  { {0x6d4e0018, 0x7c2e0211, 0x6d5c0016, 0x00000000}},  //   _deba, _cubr, _ddra,\n  { {0x7c2e016e, 0x2c75080a, 0x442e1d13, 0x00000000}},  //   _dubr, råd_, _muf_,\n  { {0x7e641d14, 0x6d4e0009, 0x443c08ad, 0x00000000}},  //   crip, _feba, _ltv_,\n  { {0x6d4e046a, 0x2009018e, 0x64580207, 0x00000000}},  //   _geba, llai_, _ovvi,\n  { {0x6d450066, 0x443c1102, 0xfc64005e, 0x00000000}},  //   mbha, _ntv_, _пътн,\n  { {0x6d5c1d15, 0x6d451270, 0x6d4e10d2, 0x00000000}},  //   _zdra, lbha, _zeba,\n  { {0x442e08ba, 0x6458054f, 0x6d450051, 0x00000000}},  //   _auf_, _avvi, obha,\n  { {0x6b8b0292, 0x442e00f6, 0x443c1d16, 0x00000000}},  //   legg, _buf_, _btv_,\n  { {0x442e0020, 0x62840051, 0xb5fd09fc, 0x00000000}},  //   _cuf_, _spio, lušk,\n  { {0xe72e1d17, 0xf770007a, 0x6b8b0207, 0x00000000}},  //   _је_, _ماه_, negg,\n  { {0xe56e102a, 0x27ff0263, 0x2738001d, 0x00000000}},  //   _из_, moun_, _ứng_,\n  { {0x6b8b0207, 0x27ed010f, 0x442e00f8, 0x00000000}},  //   hegg, lnen_, _fuf_,\n  { {0x27ed05b4, 0x957c0046, 0x9f8b000c, 0x00000000}},  //   onen_, siąc, töðu_,\n  { {0x27ed1d18, 0x6d4e020c, 0x64411d19, 0x00000000}},  //   nnen_, _seba, mpli,\n  { {0x27ed021e, 0x22160264, 0xd12f026c, 0x00000000}},  // [4280] inen_, _офор, امہ_,\n  { {0x3f4c001d, 0x27ed001f, 0x7e640de2, 0x00000000}},  //   ếu_, hnen_, rrip,\n  { {0x64411635, 0x225e0036, 0xeb9a007c, 0x00000000}},  //   npli, ątku_, жие_,\n  { {0x6d4e0292, 0x27ed02ae, 0xab830057, 0x00000000}},  //   _weba, jnen_, вушк,\n  { {0x6d4e04cb, 0x61ee01c3, 0xddcd0091, 0x00000000}},  //   _teba, onbl, staš,\n  { {0x27ed1c9a, 0x6d43005a, 0x7c2e1d1a, 0x00000000}},  //   enen_, ınac, _tubr,\n  { {0xdcfc001e, 0xd7a9001c, 0x27ed010f, 0x00000000}},  //   _varē, कांच, fnen_,\n  { {0x27ed00eb, 0x443c01d9, 0x2d980944, 0x00000000}},  //   gnen_, _rtv_, _hare_,\n  { {0x2d9804cd, 0x7dc0009f, 0x442e12bc, 0x00000000}},  //   _kare_, _föst, _suf_,\n  { {0x7dc001f6, 0x891603ab, 0x2d980343, 0x00000000}},  //   _göst, _قبائ, _jare_,\n  { {0x9cec0055, 0x2d98000d, 0x20090016, 0x00000000}},  //   _করুন_, _mare_, ylai_,\n  { {0x443c0011, 0x2d981105, 0x61ee00d9, 0x00000000}},  //   _vtv_, _lare_, enbl,\n  { {0x2d98001a, 0xdcf50089, 0x443c00d9, 0x00000000}},  //   _oare_, _pazī, _wtv_,\n  { {0x442e000a, 0x8c140044, 0x2d980168, 0x00000000}},  //   _tuf_, িদিন_, _nare_,\n  { {0x6e2700b5, 0x26c40006, 0xb5fd016c, 0x00000000}},  //   _rijb, lymo_, zušk,\n  { {0x2d98010e, 0x2a660085, 0x6e2700d9, 0x00000000}},  //   _aare_, krob_, _sijb,\n  { {0xd9040cd9, 0x6b8b0635, 0x2d981d1b, 0x00000000}},  // [4290] _چی_, vegg, _bare_,\n  { {0x2d980585, 0xd90402fd, 0x20090006, 0x00000000}},  //   _care_, _نی_, slai_,\n  { {0x7dc00039, 0x44290011, 0xb5fd07a0, 0x00000000}},  //   _röst, _kia_, kršn,\n  { {0x26c40006, 0x00000000, 0x00000000, 0x00000000}},  //   kymo_,   ,   ,\n  { {0x44290198, 0x6b8b0207, 0x2d981d1c, 0x00000000}},  //   _mia_, regg, _fare_,\n  { {0x2d981017, 0x442901a3, 0x26c40006, 0x00000000}},  //   _gare_, _lia_, dymo_,\n  { {0x3f990d49, 0x44290022, 0x6b8b1d1d, 0x00000000}},  //   _kasu_, _oia_, pegg,\n  { {0x27ed054e, 0x44290020, 0xb5fd1d1e, 0x00000000}},  //   unen_, _nia_, muši,\n  { {0x27ed051d, 0x27ff1d1f, 0x06960025, 0x00000000}},  //   rnen_, roun_, فنية_,\n  { {0x7c2906b2, 0xe6160147, 0xe93800a2, 0x00000000}},  //   _hier, нды_, _قسمت_,\n  { {0x7c291d20, 0x44291d21, 0xf3e6025f, 0x00000000}},  //   _kier, _bia_, ежно,\n  { {0x4429010a, 0x644100b5, 0xc7c4034b, 0x00000000}},  //   _cia_, rpli, _исчи,\n  { {0x442904be, 0x644101aa, 0x7c291d22, 0x00000000}},  //   _dia_, spli, _mier,\n  { {0xb5fd129d, 0x64411d23, 0x44290253, 0x00000000}},  //   kuši, ppli, _eia_,\n  { {0x44290010, 0xf50501fb, 0xb5fd0089, 0x00000000}},  //   _fia_, _язко, juši,\n  { {0x442900ad, 0x7c290046, 0xee3a0517, 0x00000000}},  //   _gia_, _nier, зна_,\n  { {0x2d981d24, 0x9cec0055, 0x7dd20018, 0x00000000}},  // [42a0] _pare_, _করেন_, _læse,\n  { {0xddc40a14, 0x44290197, 0x2b5f1d25, 0x00000000}},  //   stiž, _zia_, _aduc_,\n  { {0x7c290036, 0x2d980239, 0xb5fd12d5, 0x00000000}},  //   _bier, _vare_, guši,\n  { {0x2d9801c3, 0x7c291d26, 0xf43a0049, 0x00000000}},  //   _ware_, _cier, לגעמ,\n  { {0x7c291d27, 0x2d98001a, 0xb5fd10f7, 0x00000000}},  //   _dier, _tare_, vršn,\n  { {0x98a50279, 0x7c290056, 0x3ea000ea, 0x00000000}},  //   _adlı_, _eier, mvit_,\n  { {0x3ea00035, 0x699f0061, 0x7c291d28, 0x00000000}},  //   lvit_, _गोळी, _fier,\n  { {0xf76f006d, 0x26c40006, 0xdb21010f, 0x00000000}},  //   ماً_, tymo_, _äuße,\n  { {0xc6f801fb, 0x66010239, 0x4429008a, 0x00000000}},  //   ьних_, folk, _ria_,\n  { {0x44291d29, 0x7c2901a2, 0xa3e3006e, 0x00000000}},  //   _sia_, _zier, फोन_,\n  { {0x4429000b, 0x22400263, 0x6296000a, 0x00000000}},  //   _pia_, _atik_, _asyo,\n  { {0x87da002c, 0x07da01f7, 0x7c29002b, 0x00000000}},  //   _عباس_, _عذاب_, _xier,\n  { {0x44290a05, 0x518705c0, 0x799a18ba, 0x00000000}},  //   _via_, нува, _katw,\n  { {0x442900d9, 0x3f9901ee, 0x3ea000ea, 0x00000000}},  //   _wia_, _sasu_, dvit_,\n  { {0x44291d2a, 0x2240002d, 0x799a0058, 0x00000000}},  //   _tia_, _etik_, _matw,\n  { {0x7e6d00c4, 0x44290145, 0x26140061, 0x00000000}},  //   tuap, _uia_, _नीती_,\n  { {0x645a0089, 0x63ad01f6, 0x7c290129, 0x00000000}},  // [42b0] lsti, _inan, _rier,\n  { {0x7c290036, 0xf41f00b0, 0x799a1d2b, 0x00000000}},  //   _sier, lmä_, _natw,\n  { {0x7c290652, 0x3f99006c, 0x3a3f01ed, 0x00000000}},  //   _pier, _tasu_, _stup_,\n  { {0x645a002d, 0xb5fd0142, 0x7c29008e, 0x00000000}},  //   isti, ruši, _qier,\n  { {0x7c290308, 0x2bb80054, 0x9f490051, 0x00000000}},  //   _vier, عامة_, nnaí_,\n  { {0x645a1d2c, 0x7c290046, 0xf41f00b0, 0x00000000}},  //   ksti, _wier, hmä_,\n  { {0x7c291d2d, 0x63ad00f8, 0x660100c7, 0x00000000}},  //   _tier, _onan, volk,\n  { {0x645a0030, 0xdb23007a, 0x7dd20030, 0x00000000}},  //   dsti, _موزی, _væse,\n  { {0x799a04cb, 0x83fd016c, 0xdb000146, 0x00000000}},  //   _fatw, nuđu, _anmæ,\n  { {0x6b9b0056, 0x645a01a2, 0x69ca01a2, 0x00000000}},  //   _haug, fsti, ckfe,\n  { {0x6b9b1d2e, 0x645a01c9, 0x22401d2f, 0x00000000}},  //   _kaug, gsti, _stik_,\n  { {0xa3dc03d7, 0x7bcb1d30, 0x957c0036, 0x00000000}},  //   णों_, nkgu, wnąt,\n  { {0xe1ff008e, 0x799a0dfc, 0xdb1b009d, 0x00000000}},  //   rrón_, _yatw, _boué,\n  { {0xf505017a, 0x63ad1d31, 0x6b9b124c, 0x00000000}},  //   _изло, _enan, _laug,\n  { {0xdd9200a6, 0x91a90082, 0x645a005b, 0x00000000}},  //   یور_, _quá_, csti,\n  { {0x6b9b1d32, 0xe1ff0010, 0xdfd2006d, 0x00000000}},  //   _naug, lról_, جير_,\n  { {0xd00700d7, 0xf1c20089, 0x629600e0, 0x00000000}},  // [42c0] тете_, _pašā_, _usyo,\n  { {0x63ad01d9, 0x3ea0088c, 0xa2db007d, 0x00000000}},  //   _znan, rvit_, _पेट्,\n  { {0x6b9b00db, 0x9f400051, 0x3ea000b0, 0x00000000}},  //   _baug, iniú_, svit_,\n  { {0x9f400051, 0xaa4610f3, 0x799a0093, 0x00000000}},  //   hniú_, ведл, _satw,\n  { {0xdaba007a, 0x799a01aa, 0xe1ff0010, 0x00000000}},  //   بهشت_, _patw, król_,\n  { {0x645a021e, 0x9d430081, 0x3fc8009e, 0x00000000}},  //   ysti, _верд, _آدھی_,\n  { {0x38c800a2, 0x8b9600ed, 0x7d03010f, 0x00000000}},  //   عاتی_, _ирач, ünst,\n  { {0xb0ba01f5, 0x2ca70030, 0x645a1d33, 0x00000000}},  //   _उपनग, ænde_, vsti,\n  { {0x4b7b007b, 0x645a0ffd, 0x799a1d34, 0x00000000}},  //   _קאמו, wsti, _tatw,\n  { {0x645a0039, 0xd6d90036, 0x9f400048, 0x00000000}},  //   tsti, nały_, gniú_,\n  { {0xc8ca007a, 0x81c90055, 0x7afd068f, 0x00000000}},  //   _توان_, লোড_, _østr,\n  { {0xf74610d8, 0x7bc01d35, 0x673b0026, 0x00000000}},  //   _редо, _jomu, ccuj,\n  { {0x645a0089, 0xe737012b, 0x41e70245, 0x00000000}},  //   ssti, _реч_, віва,\n  { {0x645a003b, 0x8af7006b, 0x9f490048, 0x00000000}},  //   psti, _şəkl, rnaí_,\n  { {0xcf9b00ed, 0xdfd50a78, 0x3a2c0082, 0x00000000}},  //   мја_, говы, _midp_,\n  { {0x63ad006a, 0x889b0097, 0x938b005e, 0x00000000}},  //   _unan, ובלי, _цска_,\n  { {0x6d5700d4, 0x6b9b1d36, 0x8e3800a1, 0x00000000}},  // [42d0] taxa, _raug, نسلر_,\n  { {0xab5d0046, 0x6b9b010a, 0x9d550025, 0x00000000}},  //   _może, _saug, انات,\n  { {0x7bc0032e, 0x6d57006b, 0xb5fd1d37, 0x00000000}},  //   _bomu, raxa, mušt,\n  { {0x80dc0055, 0x8af7006b, 0x6b820010, 0x00000000}},  //   _মুক্, _çəkm, gfog,\n  { {0x7bc019c2, 0x290c005d, 0xbebb0023, 0x00000000}},  //   _domu, _ayda_, _egër,\n  { {0x6b9b00e7, 0x7bcb0146, 0x00000000, 0x00000000}},  //   _waug, skgu,   ,\n  { {0xe73917c3, 0xdb000073, 0xe80f0061, 0x00000000}},  //   ней_, _anmä, ातला_,\n  { {0xccf2019b, 0x7c3a00f4, 0x765b0058, 0x00000000}},  //   _הכל_, _étra, tsuy,\n  { {0x5a3407ca, 0x673b1d38, 0x6fca0161, 0x00000000}},  //   _внут, rcuj, _dých,\n  { {0x6d550173, 0x673b016c, 0x3897013f, 0x00000000}},  //   _jeza, scuj, _lərə_,\n  { {0x290c0bc4, 0x6d5504cd, 0xa3ea0113, 0x00000000}},  //   _gyda_, _meza, една_,\n  { {0x6d55002d, 0x61e50051, 0xe1ff0010, 0x00000000}},  //   _leza, _amhl, sról_,\n  { {0x5b7a0049, 0x966501ab, 0x00000000, 0x00000000}},  //   ערשא, _скле,   ,\n  { {0x69c10032, 0xb5fd00d0, 0x80dc0044, 0x00000000}},  //   _jole, gušt, _মুগ্,\n  { {0x69c11d39, 0x3942006b, 0xdb19010f, 0x00000000}},  //   _mole, _əks_, chwö,\n  { {0xd6d90036, 0xb5fd1b4e, 0x60c104ce, 0x00000000}},  //   wały_, kršk, älma,\n  { {0x6d551d3a, 0xb5fd0e0d, 0xe7f60164, 0x00000000}},  // [42e0] _beza, vršj, ुकता_,\n  { {0x6d55014a, 0x69c11d3b, 0xb5fd0091, 0x00000000}},  //   _ceza, _nole, dršk,\n  { {0x6d551d3c, 0x7bc00059, 0x0b4601e1, 0x00000000}},  //   _deza, _pomu, гнен,\n  { {0x9f060151, 0x69c11d3d, 0x2d9c0ecc, 0x00000000}},  //   _موجو, _aole, žve_,\n  { {0x69c1117c, 0x160302fb, 0x6fca0027, 0x00000000}},  //   _bole, रकार_, _rých,\n  { {0x6d551cb7, 0x38a3014a, 0x6b820232, 0x00000000}},  //   _geza, _bır_, sfog,\n  { {0x69c1018e, 0x082a05a7, 0x7bc00161, 0x00000000}},  //   _dole, нции_, _tomu,\n  { {0x6e2e0145, 0x6d550213, 0x38a3005a, 0x00000000}},  //   _hibb, _zeza, _dır_,\n  { {0x69c10e06, 0x7c220c43, 0x6e2e0ace, 0x00000000}},  //   _fole, mmor, _kibb,\n  { {0x6e2e0c32, 0x290c02e1, 0x00000000, 0x00000000}},  //   _jibb, _tyda_,   ,\n  { {0x6fca0027, 0x2db701ce, 0xb8e90044, 0x00000000}},  //   _tých, אלין_, _লে_,\n  { {0x7c220e9c, 0x69c101aa, 0x7d0e0085, 0x00000000}},  //   nmor, _zole, _mybs,\n  { {0x64431d3e, 0xe298007e, 0x69c1000a, 0x00000000}},  //   _etni, гаў_, _yole,\n  { {0x69d8009f, 0x6e2e0066, 0x26db034e, 0x00000000}},  //   nhve, _nibb, _אקדמ,\n  { {0x6d550209, 0x69cc03d7, 0xdcfc001e, 0x00000000}},  //   _reza, _तकनी, _darī,\n  { {0x9f520173, 0x7c220645, 0x644800d9, 0x00000000}},  //   nnyè_, jmor, mpdi,\n  { {0x5d550113, 0xb5fd0c1d, 0x6e2e01bc, 0x00000000}},  // [42f0] икат, pušt, _bibb,\n  { {0xdcfc0089, 0x78a802e1, 0xbddb0173, 0x00000000}},  //   _garī, _ordv, _etèn,\n  { {0x6d550213, 0x6e2e02c2, 0xa1150014, 0x00000000}},  //   _veza, _dibb, _خودت,\n  { {0x7c22054e, 0xaf070044, 0x7d0e0146, 0x00000000}},  //   gmor, লেষণ_, _dybs,\n  { {0x69c103e9, 0x6e2e0afb, 0xbd6b003b, 0x00000000}},  //   _pole, _fibb, _прве_,\n  { {0x6e2e07be, 0x27e601aa, 0x6845007e, 0x00000000}},  //   _gibb, _amon_, анка,\n  { {0x69c11d3f, 0x8c250379, 0x7e6d04d3, 0x00000000}},  //   _vole, _نفسه, lrap,\n  { {0x16650216, 0x2d9300f4, 0xb5fd0107, 0x00000000}},  //   авим, lexe_, pršk,\n  { {0x78a80006, 0x27e60173, 0x7e6d0203, 0x00000000}},  //   _erdv, _dmon_, nrap,\n  { {0x69d8010f, 0x27e6002d, 0x2d931d40, 0x00000000}},  //   chve, _emon_, nexe_,\n  { {0x7e6d00bb, 0x6aa9000c, 0x628d0032, 0x00000000}},  //   hrap, _href, _apao,\n  { {0x6aa91d41, 0xcc76009b, 0x7e6d0058, 0x00000000}},  //   _kref, סגרת_, krap,\n  { {0x6b890020, 0xb811013d, 0xdcfc0089, 0x00000000}},  //   _mbeg, _डीएम_, _parī,\n  { {0xa06a008b, 0x6aa9000b, 0x76491d42, 0x00000000}},  //   кага_, _mref, mpey,\n  { {0x7c2207be, 0x90c3005e, 0x7e6d00d9, 0x00000000}},  //   ymor, обре, erap,\n  { {0x6aa90197, 0x6e2e141a, 0x00000000, 0x00000000}},  //   _oref, _sibb,   ,\n  { {0x7e6d030a, 0x3f9200f6, 0x7c221d43, 0x00000000}},  // [4300] grap, reyu_, vmor,\n  { {0x998c0089, 0x7c2201c3, 0x27e901ca, 0x00000000}},  //   _vidū_, wmor, čany_,\n  { {0x7c220d44, 0xd8380243, 0xc1010082, 0x00000000}},  //   tmor, _trči_, _mượt_,\n  { {0xc101001d, 0x7e6d00c4, 0x6e2e00d4, 0x00000000}},  //   _lượt_, brap, _wibb,\n  { {0x6e2e006b, 0x6aa90016, 0x6fd812dd, 0x00000000}},  //   _tibb, _cref, _cíce,\n  { {0x6aa9018e, 0xceb3009b, 0x7c220843, 0x00000000}},  //   _dref, _ויש_, smor,\n  { {0xa3c603d7, 0x69d81d44, 0x00000000, 0x00000000}},  //   _एवं_, rhve,   ,\n  { {0x7bd9010f, 0x4c9b009b, 0x6aa90009, 0x00000000}},  //   chwu, _בבלו, _fref,\n  { {0x6aa904c1, 0x1996003b, 0x764d0279, 0x00000000}},  //   _gref, _вјер, _çayl,\n  { {0x14ca007c, 0xe4a60216, 0x6b8910f5, 0x00000000}},  //   выми_, армо, _zbeg,\n  { {0xd4970d99, 0xd5b70147, 0x388e006b, 0x00000000}},  //   аря_, рсы_, _sərf_,\n  { {0xc7c7007c, 0x46ea00e2, 0xd5b80089, 0x00000000}},  //   _выше_, _иден_, mmām_,\n  { {0x926b005e, 0x00000000, 0x00000000, 0x00000000}},  //   ърна_,   ,   ,\n  { {0x7e6d0197, 0xf2070088, 0xab5d0066, 0x00000000}},  //   vrap, рямо, _moża,\n  { {0x7e6d0019, 0x00000000, 0x00000000, 0x00000000}},  //   wrap,   ,   ,\n  { {0x7e6d002b, 0xb5fd0295, 0x25e2006e, 0x00000000}},  //   trap, vrši, टोरी_,\n  { {0xba3d0224, 0x9df900e3, 0xd83809ca, 0x00000000}},  // [4310] _prům, гнат_, _luč_,\n  { {0x7e6d1692, 0x2705001d, 0xeca7003b, 0x00000000}},  //   rrap, ồng_, ијен,\n  { {0x7e6d004e, 0x6fd80051, 0x7c671739, 0x00000000}},  //   srap, _síce, شاال,\n  { {0x5b250054, 0x6aa90335, 0x7e6d0035, 0x00000000}},  //   مفضل, _pref, prap,\n  { {0xd945005e, 0x7c3b012d, 0xc33400b3, 0x00000000}},  //   бели, _čuru, קוס_,\n  { {0xceb200bd, 0x81c90044, 0x6fd800b9, 0x00000000}},  //   _זיך_, লোর_, _více,\n  { {0xf0940049, 0xc1010082, 0xe89800a1, 0x00000000}},  //   ַנץ_, _rượt_, لموں_,\n  { {0x6aa90bc6, 0xddcd0087, 0xd0f8019b, 0x00000000}},  //   _tref, ntaž, ימות_,\n  { {0x06090751, 0x6aa90020, 0x00000000, 0x00000000}},  //   лник_, _uref,   ,\n  { {0x5887045a, 0x66081d45, 0xb86b06e3, 0x00000000}},  //   _выда, godk, _ајде_,\n  { {0xc3290097, 0xc1010011, 0x03a60216, 0x00000000}},  //   _נו_, _vượt_, бино,\n  { {0xd8380173, 0x00000000, 0x00000000, 0x00000000}},  //   _prčv_,   ,   ,\n  { {0x27ed021e, 0x8707007c, 0xe4d602fd, 0x00000000}},  //   mien_, _тяже, لویت_,\n  { {0x27ed001f, 0xd5b105f3, 0xddc40089, 0x00000000}},  //   lien_, _رفع_, kriš,\n  { {0x3f6a0d68, 0x7dd20030, 0x27ed00b5, 0x00000000}},  //   ливо_, _sæso, oien_,\n  { {0xafe3012b, 0x6ab7013d, 0x543a0049, 0x00000000}},  //   посл, _आपूर, _געקא,\n  { {0xef1a003b, 0x75460010, 0x44200058, 0x00000000}},  // [4320] ума_, _érzé, _ihi_,\n  { {0x27ed002d, 0xeef5008b, 0x4432107e, 0x00000000}},  //   hien_, іятэ, _hiy_,\n  { {0x442000ad, 0x7dc00047, 0x27ed0315, 0x00000000}},  //   _khi_, _kösz, kien_,\n  { {0x27ed021e, 0x61ee006b, 0xab5d0036, 0x00000000}},  //   jien_, libl, _poża,\n  { {0x27ed001e, 0x395c0089, 0x99dd000a, 0x00000000}},  //   dien_, tavs_, _pwňp,\n  { {0x61ee1d46, 0xddc40209, 0x443201aa, 0x00000000}},  //   nibl, briš, _liy_,\n  { {0x6d5e011c, 0x44200e33, 0x27ed122f, 0x00000000}},  //   mapa, _ohi_, fien_,\n  { {0x6d5e0475, 0x27ed1d47, 0x44200011, 0x00000000}},  //   lapa, gien_, _nhi_,\n  { {0x320a1d48, 0xb97a00a1, 0x95ca02dc, 0x00000000}},  //   koby_, _محاذ_, гуна_,\n  { {0x6d5e006a, 0x44200211, 0x27ed00b5, 0x00000000}},  //   napa, _ahi_, aien_,\n  { {0xab5d0046, 0x27ed0983, 0x1836007a, 0x00000000}},  //   _możn, bien_, _طراح,\n  { {0x44201d49, 0x27ed00f4, 0x6d5e023a, 0x00000000}},  //   _chi_, cien_, hapa,\n  { {0x6d5e006a, 0x44320169, 0x442003e7, 0x00000000}},  //   kapa, _diy_, _dhi_,\n  { {0x61ee0e97, 0x6d5e0ac0, 0x41e4008b, 0x00000000}},  //   gibl, japa, піса,\n  { {0x84460151, 0x6d5e027e, 0x388e006b, 0x00000000}},  //   _اختل, dapa, _hərb_,\n  { {0x4420001d, 0x00000000, 0x00000000, 0x00000000}},  //   _ghi_,   ,   ,\n  { {0x61ee05d5, 0xa3ce0061, 0xddcd09f4, 0x00000000}},  // [4330] bibl, _शकत_, rtaž,\n  { {0x27ed1d4a, 0x61ee006b, 0x6d5e1d4b, 0x00000000}},  //   zien_, cibl, gapa,\n  { {0x2bdd02f4, 0xddcd010a, 0x236901d9, 0x00000000}},  //   _मतदा, ptaž, _kdaj_,\n  { {0x649e0107, 0x27ed00d4, 0xe1ff0036, 0x00000000}},  //   mšić, xien_, trów_,\n  { {0x27ed0108, 0x7e790049, 0x4ea700ed, 0x00000000}},  //   vien_, _דאָז, _урна,\n  { {0x27ed0036, 0xddcd0036, 0x3ea901d6, 0x00000000}},  //   wien_, ntaż, mvat_,\n  { {0x27ed16c6, 0x3ea91d4c, 0x64ac0521, 0x00000000}},  //   tien_, lvat_, nđić,\n  { {0x2369008d, 0x224904cb, 0x61ee1d4d, 0x00000000}},  //   _ndaj_, _otak_, zibl,\n  { {0x9595008b, 0xed1800a1, 0x3ea901d6, 0x00000000}},  //   ошні, _نہےں_, nvat_,\n  { {0x27ed1d4e, 0x44200632, 0x649e0107, 0x00000000}},  //   sien_, _shi_, kšić,\n  { {0x4420001d, 0x22490c28, 0x27ed1744, 0x00000000}},  //   _phi_, _atak_, pien_,\n  { {0x232a06e1, 0xb5fd0087, 0x6d5e04eb, 0x00000000}},  //   иони_, vršu, zapa,\n  { {0x6d5e11b3, 0xdb000065, 0xfdfb0309, 0x00000000}},  //   yapa, _ramë, ्वास_,\n  { {0xb21b0030, 0x6d5e00f6, 0x00000000, 0x00000000}},  //   stæn, xapa,   ,\n  { {0x4420001d, 0x61ee006b, 0x320a0721, 0x00000000}},  //   _thi_, ribl, roby_,\n  { {0x6d5e110d, 0x61ee0781, 0x320a0941, 0x00000000}},  //   wapa, sibl, soby_,\n  { {0x6e4602fd, 0x61ee01aa, 0x81c90044, 0x00000000}},  // [4340] زنام, pibl, লোই_,\n  { {0x63a4022b, 0x236901d9, 0x62860171, 0x00000000}},  //   _hain, _zdaj_, mtko,\n  { {0x63a4010a, 0x6d5e110b, 0x3ea900b0, 0x00000000}},  //   _kain, rapa, avat_,\n  { {0x63a4002d, 0xddcd001a, 0x2d851d4f, 0x00000000}},  //   _jain, tuaţ, _ölen_,\n  { {0x6d5e1d50, 0x1a9603ab, 0xa3bb0204, 0x00000000}},  //   papa, تجاج, घात_,\n  { {0xfce601bd, 0x63a41d51, 0xf2d30104, 0x00000000}},  //   _дого, _lain, ועד_,\n  { {0x6d5c1d52, 0xa37b02d5, 0x7c3e0009, 0x00000000}},  //   _iera, lhõe, qqpr,\n  { {0x6d5c0170, 0x63a40004, 0xd90d007a, 0x00000000}},  //   _hera, _nain, دیم_,\n  { {0x6d5c027e, 0x7e6414b2, 0xab5d0046, 0x00000000}},  //   _kera, nsip, _możl,\n  { {0x7c3c008d, 0x6d5c01a3, 0x186a10d8, 0x00000000}},  //   _kurr, _jera, _важи_,\n  { {0x63a41d53, 0x6d5c020c, 0x29181d54, 0x00000000}},  //   _bain, _mera, _ára_,\n  { {0x7bc2028c, 0x63a41d55, 0x6d5c0168, 0x00000000}},  //   njou, _cain, _lera,\n  { {0x63a4010a, 0x69c80292, 0x7c3c022b, 0x00000000}},  //   _dain, _kode, _lurr,\n  { {0xdb0000f4, 0x69c81d56, 0x345500a1, 0x00000000}},  //   _camé, _jode, _کروڑ,\n  { {0x63a402f1, 0xe5e70014, 0xa3bb0070, 0x00000000}},  //   _fain, _بزنی, _ناظر_,\n  { {0x6d5c0051, 0x63a40238, 0x69c80253, 0x00000000}},  //   _aera, _gain, _lode,\n  { {0x6d5c033b, 0x7c3c0756, 0x2249011c, 0x00000000}},  // [4350] _bera, _aurr, _utak_,\n  { {0x69c8001e, 0x7c3c008d, 0x6d5c01a3, 0x00000000}},  //   _node, _burr, _cera,\n  { {0x7c3c0038, 0x6d5c02e1, 0x443c0ce3, 0x00000000}},  //   _curr, _dera, _juv_,\n  { {0x7c3c0065, 0x00000000, 0x00000000, 0x00000000}},  //   _durr,   ,   ,\n  { {0x69c8010f, 0x443c1d57, 0x29f60036, 0x00000000}},  //   _bode, _luv_, kład_,\n  { {0x6d5c02d5, 0x7c3c08e9, 0x644a016c, 0x00000000}},  //   _gera, _furr, _otfi,\n  { {0x69c8027b, 0x6e3d01a6, 0x6d4503ef, 0x00000000}},  //   _dode, _husb, mcha,\n  { {0x62860046, 0x6d451d58, 0x69da1582, 0x00000000}},  //   ytko, lcha, _elte,\n  { {0x69c800b7, 0x291e002d, 0x6e3d0181, 0x00000000}},  //   _fode, _ezta_, _jusb,\n  { {0x6d451d59, 0x6d5c049a, 0x69c80207, 0x00000000}},  //   ncha, _xera, _gode,\n  { {0x2b401332, 0xb21b05df, 0x63a40e2d, 0x00000000}},  //   žice_, rtæl, _pain,\n  { {0x22840092, 0x6e350450, 0x62860056, 0x00000000}},  //   tök_, _lizb, ttko,\n  { {0x63a40089, 0x98a7038c, 0x7dd3014a, 0x00000000}},  //   _vain, manı_, _kısı,\n  { {0x7bc20050, 0x63a40020, 0x853c0006, 0x00000000}},  //   zjou, _wain, ndėl,\n  { {0x6e3d001f, 0x22841d5a, 0x63a41c87, 0x00000000}},  //   _ausb, sök_, _tain,\n  { {0x6d5c0281, 0xe1ff0046, 0x6e3d0190, 0x00000000}},  //   _sera, wrót_, _busb,\n  { {0x6d5c020c, 0xdb00049a, 0x7c3c00ab, 0x00000000}},  // [4360] _pera, _tamé, _surr,\n  { {0x65610190, 0x7e641d5b, 0x7c3c0052, 0x00000000}},  //   nalh, rsip, _purr,\n  { {0x6d5c1d5c, 0x7e640007, 0x31570476, 0x00000000}},  //   _vera, ssip, _מיין_,\n  { {0x6d45002a, 0x69c801d9, 0x7bc900f4, 0x00000000}},  //   acha, _sode, _coeu,\n  { {0x69c81596, 0x7bc200b0, 0x656101e3, 0x00000000}},  //   _pode, rjou, kalh,\n  { {0x7c3c1d5d, 0x09e300a8, 0x98c60cbc, 0x00000000}},  //   _turr, ночн, зсил,\n  { {0x65611d5e, 0x69c8073a, 0x764b1d5f, 0x00000000}},  //   dalh, _vode, _atgy,\n  { {0x79980263, 0x7bdb0501, 0x2d9a0c21, 0x00000000}},  //   sevw, _gluu, lepe_,\n  { {0x69c81d60, 0x00000000, 0x00000000, 0x00000000}},  //   _tode,   ,   ,\n  { {0x69da04b4, 0x65610181, 0xba3d00b9, 0x00000000}},  //   _ulte, galh, _prův,\n  { {0x395e0100, 0x5399007c, 0x244100f6, 0x00000000}},  //   _iets_, овня_, _cóm_,\n  { {0x883b009b, 0x443c00d2, 0x244101e5, 0x00000000}},  //   _התאו, _vuv_, _dóm_,\n  { {0x656102d5, 0x7f5d0066, 0x6d45047a, 0x00000000}},  //   balh, _resq, ycha,\n  { {0x656100c4, 0xa41000b9, 0x2d9a0243, 0x00000000}},  //   calh, ětší_, jepe_,\n  { {0x7f5d02d5, 0x395e1d61, 0x2d9a00f6, 0x00000000}},  //   _pesq, _mets_, depe_,\n  { {0x34fb00b6, 0x395e00ab, 0xd13000f3, 0x00000000}},  //   _להוד, _lets_, امِ_,\n  { {0x6d450039, 0x9f40009f, 0x69c30036, 0x00000000}},  // [4370] tcha, rnið_, yjne,\n  { {0x395e041d, 0x6d4500b9, 0x7bc900f4, 0x00000000}},  //   _nets_, ucha, _soeu,\n  { {0x24410011, 0x98a70180, 0x7bdb1d62, 0x00000000}},  //   _xóm_, yanı_, _pluu,\n  { {0x6d451d63, 0xbddb00f4, 0x398f005a, 0x00000000}},  //   scha, _suèd, zısı_,\n  { {0x398f011f, 0x7bc9009d, 0x98a70180, 0x00000000}},  //   yısı_, _voeu, vanı_,\n  { {0x2d9a001a, 0xf9c7041f, 0x00000000, 0x00000000}},  //   cepe_, ящен,   ,\n  { {0xf89201f9, 0x395e1d64, 0x656100c4, 0x00000000}},  //   вајќ, _dets_, valh,\n  { {0x6561036b, 0x9b590745, 0x2a660058, 0x00000000}},  //   walh, _фиат_, bsob_,\n  { {0x656102d5, 0xaa5801f9, 0x395e0129, 0x00000000}},  //   talh, _ниту_, _fets_,\n  { {0x395e1d65, 0x98a7005d, 0x7c2b00f8, 0x00000000}},  //   _gets_, sanı_, lmgr,\n  { {0x31630e00, 0x656111da, 0x398f005a, 0x00000000}},  //   dajz_, ralh, rısı_,\n  { {0xc16900a0, 0x656100c4, 0x6fd81d66, 0x00000000}},  //   _כח_, salh, _cícl,\n  { {0xe60e0551, 0x65610181, 0x398f01df, 0x00000000}},  //   _ад_, palh, pısı_,\n  { {0xc58e001d, 0x244114ab, 0x00000000, 0x00000000}},  //   _hồng_, _tóm_,   ,\n  { {0x2fcb0129, 0x00000000, 0x00000000, 0x00000000}},  //   _bocg_,   ,   ,\n  { {0x442b128e, 0x00000000, 0x00000000, 0x00000000}},  //   cmc_,   ,   ,\n  { {0x2fcb0026, 0x2d9a0095, 0xc58e0082, 0x00000000}},  // [4380] _docg_, tepe_, _mồng_,\n  { {0x270c001d, 0xc58e0011, 0x25a7000a, 0x00000000}},  //   ớng_, _lồng_, _janl_,\n  { {0x2d9a02bb, 0x412a00e2, 0x2240010e, 0x00000000}},  //   repe_, _фоно_, _huik_,\n  { {0xc58e0011, 0x395e00ab, 0x2d9a0197, 0x00000000}},  //   _nồng_, _sets_, sepe_,\n  { {0xa3e3007d, 0x395e00ab, 0x2005009d, 0x00000000}},  //   फोट_, _pets_, élie_,\n  { {0xc333034e, 0x8d760123, 0x3f800006, 0x00000000}},  //   דוד_, _تاحا, lgiu_,\n  { {0xc58e0011, 0x3ea0040f, 0x224006a8, 0x00000000}},  //   _bồng_, lwit_, _luik_,\n  { {0x466a0130, 0x3f801325, 0x6bda0014, 0x00000000}},  //   ором_, ngiu_, _بورس_,\n  { {0x96340aef, 0xc6f80088, 0x00000000, 0x00000000}},  //   нниц, яних_,   ,\n  { {0xb21b009f, 0xc6f703c8, 0xba23008b, 0x00000000}},  //   rtæk, ьных_, _адук,\n  { {0xdb0010af, 0x442b0026, 0x25a70173, 0x00000000}},  //   _mamí, tmc_, _danl_,\n  { {0x224000c1, 0x7e760814, 0x2ca7000c, 0x00000000}},  //   _buik_, kryp, ændi_,\n  { {0x51871534, 0xf7d700a3, 0xfd650011, 0x00000000}},  //   мува, _קודש_, _chuỗ,\n  { {0x69d81d67, 0x22400116, 0x23af0309, 0x00000000}},  //   nkve, _duik_, _जोरद,\n  { {0x442b01d0, 0x86370104, 0xe8df0082, 0x00000000}},  //   pmc_, _קרוב_, _kiềm_,\n  { {0x5f9400ed, 0x14cb0164, 0x6fa90061, 0x00000000}},  //   кист, ाहरण, _चोखं,\n  { {0xee3f001d, 0xc3090044, 0x7e7601d6, 0x00000000}},  // [4390] _quý_, রেজি_, gryp,\n  { {0xdb0000f6, 0x00000000, 0x00000000, 0x00000000}},  //   _camí,   ,   ,\n  { {0x61f5005d, 0xf3900011, 0x3156009b, 0x00000000}},  //   mizl, _mảng_, _איתן_,\n  { {0xe8df0011, 0xee3f0082, 0x60d6009b, 0x00000000}},  //   _niềm_, _tuý_, _נורא_,\n  { {0xdb000ca7, 0xc58e0011, 0x9f8a006c, 0x00000000}},  //   _famí, _rồng_, tööd_,\n  { {0x92a90036, 0x61f5005a, 0x8afd00b9, 0x00000000}},  //   _załó, nizl, _neře,\n  { {0x2b4002db, 0x5fd3006e, 0x00000000, 0x00000000}},  //   žica_, _सवाल,   ,\n  { {0x0138019b, 0x2d810026, 0xdb00013e, 0x00000000}},  //   ורות_, lghe_, _zamí,\n  { {0xf390001d, 0xddcd001a, 0xc58e0082, 0x00000000}},  //   _bảng_, craţ, _vồng_,\n  { {0x2d810207, 0xf3900011, 0xab62006c, 0x00000000}},  //   nghe_, _cảng_, _üüri,\n  { {0x2d810048, 0xd5e80025, 0x00000000, 0x00000000}},  //   ighe_, بعين_,   ,\n  { {0xe29a0088, 0x7dd2000c, 0x22400007, 0x00000000}},  //   пам_, _hæst, _puik_,\n  { {0x45d51d68, 0x2bc7006e, 0x224002c2, 0x00000000}},  //   _подс, _रचना, _quik_,\n  { {0x25a7004a, 0x00000000, 0x00000000, 0x00000000}},  //   _uanl_,   ,   ,\n  { {0xc0e60d99, 0xdb00008e, 0x25aa00a6, 0x00000000}},  //   ховк, _ramí, _رضوی_,\n  { {0x7dd20030, 0x27ff1361, 0x3ea00066, 0x00000000}},  //   _læst, nnun_, twit_,\n  { {0xdee30081, 0x9f9d000c, 0x3f800716, 0x00000000}},  // [43a0] готи, ræðu_, rgiu_,\n  { {0x7dd2124e, 0xdcee014a, 0xfce60264, 0x00000000}},  //   _næst, _sabı, нозо,\n  { {0x3ea01d69, 0x5ec80044, 0x515b009b, 0x00000000}},  //   swit_, _রেখে, _מכיו,\n  { {0x986600a1, 0xfc390173, 0xddcd0035, 0x00000000}},  //   ہیئے_, _ciŭ_, traţ,\n  { {0x20000035, 0x7dd20146, 0x00000000, 0x00000000}},  //   mnii_, _bæst,   ,\n  { {0xa8a601f9, 0x603c000a, 0x693402fd, 0x00000000}},  //   ерик, _fčmt, نکار,\n  { {0xde0301fb, 0x27ff000c, 0x69d81d6a, 0x00000000}},  //   _спри, fnun_, rkve,\n  { {0x20001d6b, 0x69d8000c, 0x6c360025, 0x00000000}},  //   nnii_, skve, _أفرا,\n  { {0xd5b00025, 0x00000000, 0x00000000, 0x00000000}},  //   لفة_,   ,   ,\n  { {0x7dd20030, 0x00000000, 0x00000000, 0x00000000}},  //   _gæst,   ,   ,\n  { {0x8afd0224, 0xe8df0011, 0xddcd0006, 0x00000000}},  //   _veře, _tiềm_, nraš,\n  { {0xab5d01d5, 0x982b00a1, 0x27ff0276, 0x00000000}},  //   _pożi, _فتنہ_, cnun_,\n  { {0xf3900011, 0xdb1b00fa, 0x00000000, 0x00000000}},  //   _tảng_, _anuê,   ,\n  { {0xddcd0006, 0xd5b80089, 0x00000000, 0x00000000}},  //   kraš, rmās_,   ,\n  { {0xc60c0164, 0x61f506e6, 0x64a30545, 0x00000000}},  //   सकीय_, rizl, _баја,\n  { {0xe8df001d, 0x61f5005d, 0xddcd1b8e, 0x00000000}},  //   _hiểm_, sizl, draš,\n  { {0xe8df001d, 0x6fd81d6c, 0xd838000a, 0x00000000}},  // [43b0] _kiểm_, _mích, _asčk_,\n  { {0x02fc012f, 0x443b0023, 0x6b8201d6, 0x00000000}},  //   _מלחמ, _hiq_, egog,\n  { {0x6fd80051, 0xc5f30049, 0x2d810197, 0x00000000}},  //   _oích, נדע_, rghe_,\n  { {0x6d58000c, 0x00000000, 0x00000000, 0x00000000}},  //   ðvar,   ,   ,\n  { {0xfaa50069, 0x443b0065, 0x4429005b, 0x00000000}},  //   тало, _miq_, _mha_,\n  { {0xe9d8008b, 0x44290093, 0xbddb1b43, 0x00000000}},  //   нкі_, _lha_, _etèr,\n  { {0xd2620089, 0x394c0146, 0x603c0173, 0x00000000}},  //   _ziņā_, _dfds_, _kōma,\n  { {0x4429001d, 0x386c008e, 0xe739004c, 0x00000000}},  //   _nha_, _dvdr_, мей_,\n  { {0x5a3502be, 0x7c290009, 0x6fd80051, 0x00000000}},  //   _анат, _iher, _dích,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x44290061, 0x7c290020, 0x7c3b0883, 0x00000000}},  //   _bha_, _kher, _kiur,\n  { {0x44290be3, 0x7c29000a, 0x9f400068, 0x00000000}},  //   _cha_, _jher, phié_,\n  { {0x44290065, 0x7c291d6d, 0x443b0023, 0x00000000}},  //   _dha_, _mher, _diq_,\n  { {0xdb000211, 0x412a0131, 0x4429010e, 0x00000000}},  //   _jamá, дого_, _eha_,\n  { {0x7c29018e, 0x703a007e, 0xdb00113f, 0x00000000}},  //   _oher, дчас_, _mamá,\n  { {0x6443000d, 0x2000001a, 0x656301e3, 0x00000000}},  //   _iuni, unii_, _henh,\n  { {0xee3a012b, 0x64430697, 0xfe4300ed, 0x00000000}},  // [43c0] дна_, _huni, инто,\n  { {0xc27b00a0, 0xddcd0213, 0x7c291ba2, 0x00000000}},  //   _קריי, traš, _aher,\n  { {0x7c3b1d6e, 0x64431d6f, 0x65630093, 0x00000000}},  //   _biur, _juni, _menh,\n  { {0x7c29028c, 0x64431d70, 0x7c3b088c, 0x00000000}},  //   _cher, _muni, _ciur,\n  { {0x64430de6, 0x7c3b01a3, 0x6b8211c6, 0x00000000}},  //   _luni, _diur, rgog,\n  { {0x656302d5, 0xddcd0006, 0x7c291d71, 0x00000000}},  //   _nenh, praš, _eher,\n  { {0xdb00102e, 0x644300bb, 0x2ca70030, 0x00000000}},  //   _damá, _nuni, ændt_,\n  { {0x7c3b04b4, 0x7c291d72, 0xd6da041f, 0x00000000}},  //   _giur, _gher, дто_,\n  { {0x6e3c1d73, 0x656316d4, 0x64430032, 0x00000000}},  //   _kirb, _benh, _auni,\n  { {0x44291499, 0x7c3b0fec, 0x443b0065, 0x00000000}},  //   _sha_, _ziur, _siq_,\n  { {0x6443145d, 0x44291d74, 0x7d7b009b, 0x00000000}},  //   _cuni, _pha_, וניו,\n  { {0x64431d75, 0x656301bb, 0xa785023c, 0x00000000}},  //   _duni, _eenh, _مشهو,\n  { {0xa3c903d7, 0x644300fa, 0x44290190, 0x00000000}},  //   लॉग_, _euni, _vha_,\n  { {0x6563022c, 0x67fe0089, 0x6e3c0066, 0x00000000}},  //   _genh, dīji, _nirb,\n  { {0x44291d76, 0x65680475, 0x64431d77, 0x00000000}},  //   _tha_, madh, _guni,\n  { {0xd7c50061, 0x442f0292, 0x443b0082, 0x00000000}},  //   वायच, _òg_, _uiq_,\n  { {0x6e3c005a, 0x403400da, 0x7c3b00d4, 0x00000000}},  // [43d0] _birb, ретс, _riur,\n  { {0xf41f0f3c, 0x7c29000b, 0x3f73001d, 0x00000000}},  //   llä_, _sher, ệu_,\n  { {0x6e3c010a, 0xd010026c, 0x63ad0013, 0x00000000}},  //   _dirb, صلے_, _kaan,\n  { {0x63ad0004, 0x2d870046, 0x65680020, 0x00000000}},  //   _jaan, żne_, hadh,\n  { {0x63ad1d78, 0x628f0061, 0x7c3b0129, 0x00000000}},  //   _maan, ntco, _viur,\n  { {0x7c290038, 0x7d1c021a, 0x63ad1158, 0x00000000}},  //   _wher, _fyrs, _laan,\n  { {0x7c290038, 0x3da40265, 0xc98416e0, 0x00000000}},  //   _ther, _тряб, ручи,\n  { {0x656302d5, 0x7c2900b9, 0x644309cc, 0x00000000}},  //   _senh, _uher, _runi,\n  { {0x6568000b, 0x64430d90, 0x7e6d1d79, 0x00000000}},  //   fadh, _suni, nsap,\n  { {0x7a240263, 0x64431d7a, 0x63ad1d7b, 0x00000000}},  //   pòta, _puni, _aaan,\n  { {0x65630181, 0x63ad00bb, 0xa3df0061, 0x00000000}},  //   _venh, _baan, णसं_,\n  { {0xf1a900b6, 0x628f1d7c, 0x65630544, 0x00000000}},  //   _מס_, ftco, _wenh,\n  { {0x656302d5, 0x63ad011c, 0xe8df0011, 0x00000000}},  //   _tenh, _daan, _diễm_,\n  { {0x20191d7d, 0xa509034b, 0x00000000, 0x00000000}},  //   _aksi_, _пела_,   ,\n  { {0xe0d501fb, 0xb21b0030, 0xdb0001a2, 0x00000000}},  //   ають, kræf, _unmö,\n  { {0x63ad1d7e, 0xdce700b9, 0x8c43005d, 0x00000000}},  //   _gaan, ůměr, ışla,\n  { {0x628f00bb, 0x6e3c0022, 0xd007007c, 0x00000000}},  // [43e0] ctco, _pirb, уете_,\n  { {0xe058007a, 0xef170269, 0xcf250025, 0x00000000}},  //   _لیست_, уму_, شرقي,\n  { {0xb33b0181, 0x63ad000b, 0xe5f60049, 0x00000000}},  //   meça, _yaan, נזער_,\n  { {0x8afd00b9, 0x6e3c01a2, 0x3f8406ec, 0x00000000}},  //   _seřa, _wirb, _ømu_,\n  { {0x388e006b, 0x6e3c002b, 0x7e6d0010, 0x00000000}},  //   _tərk_, _tirb, csap,\n  { {0x9f52000c, 0x48aa003b, 0x6e3c0048, 0x00000000}},  //   ábær_, етим_, _uirb,\n  { {0x2019021e, 0xf41f00b0, 0xfce601ab, 0x00000000}},  //   _yksi_, ylä_, _сово,\n  { {0x76740517, 0x27e2000c, 0x9f49000c, 0x00000000}},  //   алиф, ókn_, nnað_,\n  { {0x7bc00211, 0x628f107b, 0xeef70049, 0x00000000}},  //   _inmu, xtco, ָמיר_,\n  { {0x63ad08b2, 0x35f4004c, 0x1a9b0049, 0x00000000}},  //   _saan, рпор, _אימע,\n  { {0x4d7b007b, 0x63ad006a, 0x6568016a, 0x00000000}},  //   ערטע, _paan, radh,\n  { {0x53350589, 0xd6d90036, 0xb6c800a1, 0x00000000}},  //   иент, był_, _لاتے_,\n  { {0x2d980129, 0x63ad1d7f, 0x656804e7, 0x00000000}},  //   _obre_, _vaan, padh,\n  { {0x63ad000b, 0x8556025a, 0x2d98009d, 0x00000000}},  //   _waan, _حیدر_, _nbre_,\n  { {0x628f00b5, 0x6fd80129, 0x63ad01c2, 0x00000000}},  //   stco, _lícu, _taan,\n  { {0x2d98029d, 0x7e6d006c, 0x9f49000c, 0x00000000}},  //   _abre_, tsap, gnað_,\n  { {0xb33b00c4, 0x8c4301df, 0x388e006b, 0x00000000}},  // [43f0] beça, ışma, _dəri_,\n  { {0x6b891d80, 0x7e6d01d6, 0x2d8a0045, 0x00000000}},  //   _sceg, rsap, _ccbe_,\n  { {0x7e6d0625, 0x8d74006d, 0xd6d90036, 0x00000000}},  //   ssap, صالا, zył_,\n  { {0x2d981d81, 0x78510089, 0x00000000, 0x00000000}},  //   _ebre_, _jāve,   ,\n  { {0xe8df0011, 0x29f60036, 0x291e00e0, 0x00000000}},  //   _kiệm_, ałam_, _ayta_,\n  { {0x291e0039, 0x7649006b, 0x3eb90045, 0x00000000}},  //   _byta_, vqey, _irst_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xccf2034e, 0x3eb9003b, 0x7df40036, 0x00000000}},  //   _וכל_, _krst_, yńsk,\n  { {0xda78005e, 0x6aa900ab, 0x7a3902dc, 0x00000000}},  //   _бях_, _usef, _апар_,\n  { {0xdcf5038c, 0x67fe001e, 0xe8df001d, 0x00000000}},  //   _hazı, dīju, _niệm_,\n  { {0x69c11d82, 0x78430010, 0xa509017a, 0x00000000}},  //   _inle, _bőve, тена_,\n  { {0x78bc05ee, 0x672e0010, 0xceb4006b, 0x00000000}},  //   _árva, önjü, yvə_,\n  { {0xe9ff001d, 0xa2c60061, 0xf6790049, 0x00000000}},  //   _luận_, ामध्, _סאַמ,\n  { {0xdcf5038c, 0x3f8b00b5, 0xd9e5007d, 0x00000000}},  //   _lazı, _accu_, कसित_,\n  { {0xb33b0a06, 0x05960014, 0xddc4002b, 0x00000000}},  //   reça, _خانگ, rriż,\n  { {0x853c0006, 0xdcf51d83, 0x3eb900fa, 0x00000000}},  //   rdėt, _nazı, _brst_,\n\n  { {0x8d660057, 0xddc401d5, 0x05a90061, 0x00000000}},  // [4400] ивае, priż, _कसाब,\n  { {0x957c0046, 0x68350006, 0xddd400b4, 0x00000000}},  //   wiąz, _išdu, _żało,\n  { {0x0b461d84, 0x3eb9001f, 0x61fc0279, 0x00000000}},  //   анен, _erst_, mirl,\n  { {0x61fc047f, 0x9f06089d, 0x69c103a9, 0x00000000}},  //   lirl, _نوجو, _anle,\n  { {0x61fc0051, 0x00000000, 0x00000000, 0x00000000}},  //   oirl,   ,   ,\n  { {0x61fc005d, 0x291e1d85, 0x00000000, 0x00000000}},  //   nirl, _pyta_,   ,\n  { {0x67fe0089, 0x07e6003b, 0x99650088, 0x00000000}},  //   zīju, ицим, стіл,\n  { {0xd90d01ef, 0x69c11d86, 0x7bc01d87, 0x00000000}},  //   رین_, _enle, _unmu,\n  { {0xe5c60264, 0x61fc1d88, 0x6e2e0022, 0x00000000}},  //   асно, kirl, _khbb,\n  { {0x7c2204bd, 0xd94301fc, 0xf8b80082, 0x00000000}},  //   llor, _дефи, _trĩ_,\n  { {0xdcf501f6, 0x61fc0279, 0xc8ca02fd, 0x00000000}},  //   _yazı, dirl, _جوان_,\n  { {0x67fe001e, 0xe7830269, 0x1aed0044, 0x00000000}},  //   tīju, _душо, _ছুটে_,\n  { {0x61fc1d89, 0x2909005a, 0x7c220288, 0x00000000}},  //   firl, şaat_, ilor,\n  { {0x321815a4, 0x67fe0089, 0x3d0f0309, 0x00000000}},  //   gory_, rīju, _तुझे_,\n  { {0x67fe0089, 0x27e601a3, 0x8c43014a, 0x00000000}},  //   sīju, _klon_, ışka,\n  { {0x78ba0091, 0x645a00ab, 0x44220009, 0x00000000}},  //   _mrtv, mpti, clk_,\n  { {0xdcf5005f, 0xb33b0181, 0x61fc014a, 0x00000000}},  // [4410] _razı, meço, birl,\n  { {0x61fc0211, 0x645a0056, 0xf1ab0014, 0x00000000}},  //   cirl, opti, _شاخه_,\n  { {0x3318026c, 0xe9ff001d, 0x680800b9, 0x00000000}},  //   _مزید_, _quận_, vědn,\n  { {0x1b100055, 0x3eb90bf8, 0xdcf5006b, 0x00000000}},  //   ়েছে_, _trst_, _qazı,\n  { {0xfaa70404, 0x6fd80779, 0x78ba014a, 0x00000000}},  //   ршен, _víct, _artv,\n  { {0xa258009b, 0x27e6011c, 0xbf360104, 0x00000000}},  //   סבוק_, _alon_, _לארץ_,\n  { {0x78ba027b, 0x6ce401fb, 0xfb87008b, 0x00000000}},  //   _crtv, _діте, _вызн,\n  { {0x61fc005f, 0x1a680167, 0x3f890016, 0x00000000}},  //   zirl, _چینی_, ngau_,\n  { {0x61fc0180, 0x19590783, 0x78ba00d9, 0x00000000}},  //   yirl, _базы_, _ertv,\n  { {0x27e60173, 0x69c100ab, 0xc4850900, 0x00000000}},  //   _elon_, _unle, блок,\n  { {0x32180161, 0x80d70044, 0x27e6000a, 0x00000000}},  //   vory_, _ডেস্, _flon_,\n  { {0x986400a1, 0x32180036, 0x3ea91659, 0x00000000}},  //   _بیٹے_, wory_, kwat_,\n  { {0x32180324, 0x78ba037e, 0x61fc000c, 0x00000000}},  //   tory_, _zrtv, tirl,\n  { {0x765b05cd, 0x00000000, 0x00000000, 0x00000000}},  //   mpuy,   ,   ,\n  { {0x61fc1d8a, 0x7c220403, 0x25a50016, 0x00000000}},  //   rirl, ylor, mell_,\n  { {0x32180387, 0x2b40050f, 0x25a500d4, 0x00000000}},  //   sory_, žici_, lell_,\n  { {0xf41300b6, 0x61fc0197, 0x62800010, 0x00000000}},  // [4420] _מפה_, pirl, ámod,\n  { {0x25a51c95, 0x62860058, 0x6b9b1d8b, 0x00000000}},  //   nell_, muko, _abug,\n  { {0x1d19008b, 0x628600b0, 0xec7a1d8c, 0x00000000}},  //   аюць_, luko, упе_,\n  { {0x6abb1d8d, 0x25a51959, 0x680800b9, 0x00000000}},  //   _bruf, hell_, vědo,\n  { {0xeafa0076, 0x25a500cd, 0x62861d8e, 0x00000000}},  //   درات_, kell_, nuko,\n  { {0x5ed10044, 0x25a50023, 0x645a1d8f, 0x00000000}},  //   _সেকে, jell_, ypti,\n  { {0x6fcc0061, 0x27e60173, 0x62860d9c, 0x00000000}},  //   हापू, _plon_, huko,\n  { {0x62860ac2, 0x6abb0146, 0x00000000, 0x00000000}},  //   kuko, _fruf,   ,\n  { {0xe9ff001d, 0x25a50016, 0x69961adf, 0x00000000}},  //   _quản_, fell_, _грех,\n  { {0x25a51d90, 0x78bc0181, 0x5498007e, 0x00000000}},  //   gell_, _árvo, авоў_,\n  { {0xd497007c, 0x9d260044, 0xd5b7007c, 0x00000000}},  //   бря_, _বলুন_, ссы_,\n  { {0x645a00ab, 0x63a60010, 0x62860161, 0x00000000}},  //   rpti, gekn, fuko,\n  { {0x25a51d91, 0xb33b0181, 0x6286006c, 0x00000000}},  //   bell_, reço, guko,\n  { {0x25a5014a, 0x073700b6, 0xe677009b, 0x00000000}},  //   cell_, _האדם_, _פתוח_,\n  { {0xcf9b00ed, 0xba3d00b9, 0x63a604e7, 0x00000000}},  //   лја_, _průz, bekn,\n  { {0x3ea91d92, 0x63a60022, 0x00000000, 0x00000000}},  //   twat_, cekn,   ,\n  { {0x9df9026b, 0xe3b0023c, 0x3f891d93, 0x00000000}},  // [4430] анат_, _سري_, rgau_,\n  { {0xdce70046, 0x644a06b7, 0x27170082, 0x00000000}},  //   _zdję, _kufi, ểng_,\n  { {0x2127001d, 0x3ea90b36, 0x59c701f5, 0x00000000}},  //   _ánh_, swat_, लासर,\n  { {0x60da006c, 0x6abb000c, 0x644a0729, 0x00000000}},  //   ätme, _pruf, _mufi,\n  { {0x661a0052, 0xf42a00b0, 0x25a50ced, 0x00000000}},  //   kotk, lvää_, yell_,\n  { {0x63a60089, 0x25a50129, 0xc9870077, 0x00000000}},  //   zekn, xell_, суди,\n  { {0x25a51d94, 0x48520123, 0x20090006, 0x00000000}},  //   vell_, وپوز, onai_,\n  { {0x6abb1d95, 0x869900ed, 0x6b9b011d, 0x00000000}},  //   _truf, атот_, _ubug,\n  { {0x64581d96, 0x25a50039, 0x6abb0009, 0x00000000}},  //   _atvi, tell_, _uruf,\n  { {0x644a0009, 0x661a016e, 0xb33b014a, 0x00000000}},  //   _bufi, gotk, reçl,\n  { {0x25a50129, 0x668300a1, 0x20090093, 0x00000000}},  //   rell_, _کیخل, knai_,\n  { {0x25a500d4, 0x628614f7, 0x644a1d97, 0x00000000}},  //   sell_, tuko, _dufi,\n  { {0x8c1a019b, 0x25a5002b, 0x63a60010, 0x00000000}},  //   שורי, pell_, rekn,\n  { {0x6d47008d, 0x27ff023a, 0x20090964, 0x00000000}},  //   _ngja, liun_, enai_,\n  { {0x61430057, 0x62860004, 0xd61800a1, 0x00000000}},  //   дера, suko, _اتنا_,\n  { {0x543602fd, 0x24750089, 0x27ff145d, 0x00000000}},  //   _برتر, mām_, niun_,\n  { {0x44201d98, 0x9d260055, 0x76431483, 0x00000000}},  // [4440] _iki_, _বলেন_, _kiny,\n  { {0x64441d99, 0x7643013e, 0x10a601ee, 0x00000000}},  //   _hiii, _jiny, _дион,\n  { {0x2475001e, 0x7643027e, 0x442008a8, 0x00000000}},  //   nām_, _miny, _kki_,\n  { {0xeb9a01f9, 0x7643011c, 0x27ed0059, 0x00000000}},  //   рид_, _liny, jhen_,\n  { {0x27ed0065, 0x27ff1d9a, 0xa9230802, 0x00000000}},  //   dhen_, diun_, ížno,\n  { {0x764311b3, 0x24750089, 0x27ed04ca, 0x00000000}},  //   _niny, kām_, ehen_,\n  { {0x2475001e, 0xe7860072, 0xd7c50204, 0x00000000}},  //   jām_, оупо, वांच,\n  { {0x6b8b001c, 0x2475001e, 0x6d470065, 0x00000000}},  //   cggg, dām_, _zgja,\n  { {0xa3ce03d7, 0x76430922, 0x661a0d25, 0x00000000}},  //   रान_, _biny, totk,\n  { {0x44200047, 0x644400f6, 0x44f40088, 0x00000000}},  //   _aki_, _aiii, зпос,\n  { {0x644400ca, 0x24750089, 0x764304cb, 0x00000000}},  //   _biii, gām_, _diny,\n  { {0x27ed08ba, 0x27ff001a, 0x2b401d9b, 0x00000000}},  //   chen_, ciun_, žicu_,\n  { {0x4420023a, 0x661a1d9c, 0x76431d9d, 0x00000000}},  //   _dki_, potk, _finy,\n  { {0x2475001e, 0x76431d81, 0x644418bd, 0x00000000}},  //   bām_, _giny, _eiii,\n  { {0x29f60036, 0x64580292, 0x442005cd, 0x00000000}},  //   sław_, _utvi, _fki_,\n  { {0x187b007b, 0x35e0006e, 0x7643055e, 0x00000000}},  //   יטלב, _पकड़, _ziny,\n  { {0x20091cc4, 0x44391177, 0x54340014, 0x00000000}},  // [4450] rnai_, mms_, _ترور,\n  { {0xdcbb1277, 0x27ed0066, 0x4420002d, 0x00000000}},  //   ище_, zhen_, _zki_,\n  { {0x6b8b001c, 0x44391d9e, 0x27ed0023, 0x00000000}},  //   tggg, oms_, yhen_,\n  { {0xc4d300a0, 0xf5370049, 0xdb1b00c4, 0x00000000}},  //   וגע_, קטאר_, _anuá,\n  { {0x601301d5, 0xed15026c, 0x443900ab, 0x00000000}},  //   għme, _کہاں_, ims_,\n  { {0xa96600e3, 0x7f3a009b, 0x44391d9f, 0x00000000}},  //   пиша_, _לערו, hms_,\n  { {0xa3ce02fb, 0x27ed1da0, 0x682510fa, 0x00000000}},  //   राम_, then_, lódi,\n  { {0xf77106dd, 0x24750089, 0x76431454, 0x00000000}},  //   راب_, vām_, _siny,\n  { {0x76431da1, 0x27ff0065, 0x44320016, 0x00000000}},  //   _piny, riun_, _rhy_,\n  { {0x27ed0065, 0x2475001e, 0x4439010a, 0x00000000}},  //   shen_, tām_, ems_,\n  { {0x76430129, 0x442001a3, 0x64441da2, 0x00000000}},  //   _viny, _pki_, _piii,\n  { {0x38350a78, 0xdce700b9, 0x24750089, 0x00000000}},  //   _энер, _nejč, rām_,\n  { {0xddcd01ca, 0x24750089, 0x61ee005b, 0x00000000}},  //   draž, sām_, thbl,\n  { {0x44320038, 0x44390787, 0x66ba0104, 0x00000000}},  //   _why_, ams_, _למנה,\n  { {0x412a01f9, 0x44320011, 0x4420023a, 0x00000000}},  //   сово_, _thy_, _tki_,\n  { {0x44391aaa, 0x66010c08, 0x61ee1da3, 0x00000000}},  //   cms_, lilk, shbl,\n  { {0x3171000a, 0x20000145, 0x00000000, 0x00000000}},  // [4460] bazz_, riii_,   ,\n  { {0xd8380173, 0x42fb009b, 0x200008c0, 0x00000000}},  //   _apčl_, _להפס, siii_,\n  { {0x63b6011f, 0xddcd01d9, 0x2000001a, 0x00000000}},  //   _kayn, braž, piii_,\n  { {0x20570097, 0x1b150044, 0x66010288, 0x00000000}},  //   _מיטל_, তেছে_, hilk,\n  { {0x63b6011c, 0x66010eff, 0x61fe0361, 0x00000000}},  //   _mayn, kilk, _kmpl,\n  { {0x63b61352, 0x6601012d, 0x00000000, 0x00000000}},  //   _layn, jilk,   ,\n  { {0xdca30113, 0x66011da4, 0xa8a3007e, 0x00000000}},  //   _пари, dilk, ерык,\n  { {0x7a2d004a, 0x368a00e2, 0x00000000, 0x00000000}},  //   rúta, бсон_,   ,\n  { {0x61fe0129, 0x8626007e, 0x2e3400f8, 0x00000000}},  //   _ompl, зьне, räff_,\n  { {0xf9c400e9, 0x44390022, 0x7ae2013f, 0x00000000}},  //   _تحری, wms_, myot,\n  { {0x69c80905, 0xdcfc011f, 0xb21b000c, 0x00000000}},  //   _inde, _karı, fræn,\n  { {0xb21b1da5, 0x21ef01a2, 0x00000000, 0x00000000}},  //   græn, _mühe_,   ,\n  { {0x44391da6, 0xe9ff001d, 0x63b60058, 0x00000000}},  //   rms_, _quần_, _dayn,\n  { {0x4439001e, 0x69da021e, 0x22450039, 0x00000000}},  //   sms_, _jote, ölk_,\n  { {0xddcd0119, 0x859b009b, 0x69da1da7, 0x00000000}},  //   traž, _השוו, _mote,\n  { {0x61fe1da8, 0xe9ff001d, 0x69da0325, 0x00000000}},  //   _empl, _tuần_, _lote,\n  { {0x69c8049b, 0xe9ff0011, 0xadb506e3, 0x00000000}},  // [4470] _onde, _huấn_, мбаш,\n  { {0x69da191c, 0xd5b80089, 0x9f490048, 0x00000000}},  //   _note, ndā_, mhaí_,\n  { {0xdcfc005a, 0x68250181, 0x26c00006, 0x00000000}},  //   _barı, sódi, _šiol_,\n  { {0xd7e60025, 0x3eb20052, 0x00000000, 0x00000000}},  //   _شك_, äntä_,   ,\n  { {0xa3ce0183, 0x69da0065, 0x69c80181, 0x00000000}},  //   रात_, _bote, _bnde,\n  { {0x69da02a4, 0xa859012b, 0xdea40167, 0x00000000}},  //   _cote, ојих_, _سیمی,\n  { {0x660101d9, 0x7c840cee, 0x69da0142, 0x00000000}},  //   vilk, _путе, _dote,\n  { {0x69c80917, 0x7b1901ee, 0x7b081da9, 0x00000000}},  //   _ende, _добр_, ástá,\n  { {0x66011daa, 0x00000000, 0x00000000, 0x00000000}},  //   tilk,   ,   ,\n  { {0xd7060057, 0x69da0b32, 0xa37b006c, 0x00000000}},  //   ьные_, _gote, skõl,\n  { {0xdcfc01f6, 0xb21b0698, 0x7bc90116, 0x00000000}},  //   _yarı, træn, _kneu,\n  { {0xd91a00bd, 0x68e3009f, 0x6601020c, 0x00000000}},  //   _וועל, mynd, silk,\n  { {0x68e3000c, 0xb21b1dab, 0x7bdb000a, 0x00000000}},  //   lynd, rræn, _mouu,\n  { {0x22960698, 0x63b60133, 0xf50501ee, 0x00000000}},  //   ræk_, _wayn, _озло,\n  { {0xd13200a1, 0x7bc9194d, 0x63b60082, 0x00000000}},  //   ئمز_, _oneu, _tayn,\n  { {0xdfd20379, 0xc7b90010, 0x9f400048, 0x00000000}},  //   خير_, ndő_, mhiú_,\n  { {0xdb00009f, 0x9f490051, 0x1dc90309, 0x00000000}},  // [4480] _samþ, chaí_, रांत,\n  { {0xee371dac, 0x7ae20020, 0xdcfc005a, 0x00000000}},  //   дну_, vyot, _sarı,\n  { {0x69da06f8, 0x7e760b3d, 0x00000000, 0x00000000}},  //   _rote, ssyp,   ,\n  { {0x69da1dad, 0xdcfc006b, 0x6286046a, 0x00000000}},  //   _sote, _qarı, orko,\n  { {0x69da1dae, 0xbb43008b, 0x24530011, 0x00000000}},  //   _pote, вецк, _lãm_,\n  { {0x7ae201aa, 0x98c609f1, 0x6286010e, 0x00000000}},  //   ryot, дсил, irko,\n  { {0x68e30018, 0x69da028a, 0xdcfc014a, 0x00000000}},  //   gynd, _vote, _tarı,\n  { {0x5fd10061, 0xb8d6013d, 0xb90600e8, 0x00000000}},  //   हायल, _छन_, _पथ_,\n  { {0x69da1daf, 0x6d430bd9, 0x00000000, 0x00000000}},  //   _tote, žnat,   ,\n  { {0x752f0036, 0xd49a0131, 0x7bc90161, 0x00000000}},  //   ęczn, орм_, _zneu,\n  { {0x439501fb, 0x35f70025, 0xe9ff0082, 0x00000000}},  //   нанс, بريد_, _quấn_,\n  { {0x9f490051, 0x00000000, 0x00000000, 0x00000000}},  //   thaí_,   ,   ,\n  { {0x969600e2, 0x3dca000a, 0x00000000, 0x00000000}},  //   _цреш, _onbw_,   ,\n  { {0xe9ff0011, 0x00000000, 0x00000000, 0x00000000}},  //   _tuấn_,   ,   ,\n  { {0x301500ed, 0x9f400048, 0x00000000, 0x00000000}},  //   едвр, chiú_,   ,\n  { {0xb21b000c, 0xdb00008e, 0x00000000, 0x00000000}},  //   mræm, _jamó,   ,\n  { {0xdb00004a, 0x00000000, 0x00000000, 0x00000000}},  // [4490] _mamó,   ,   ,\n  { {0x442b1db0, 0xe2a6000c, 0x25ac0016, 0x00000000}},  //   llc_, _áðan_, nedl_,\n  { {0x7bc907ff, 0x3d94012d, 0xdcfc01c5, 0x00000000}},  //   _pneu, тихр, _marķ,\n  { {0xdab9007e, 0x00000000, 0x00000000, 0x00000000}},  //   зыкі_,   ,   ,\n  { {0x442b0051, 0xbddb00f6, 0x68e3005b, 0x00000000}},  //   ilc_, _quès, wynd,\n  { {0x7bc9018e, 0xe9d8007e, 0xdb0b0023, 0x00000000}},  //   _wneu, мкі_, legë,\n  { {0xdcee0036, 0x4c170167, 0x00000000, 0x00000000}},  //   _odbę, _قبرس,   ,\n  { {0xbddb009d, 0xd7750025, 0x628600f8, 0x00000000}},  //   _guèr, رابع, yrko,\n  { {0xa3ce024c, 0x68e3152f, 0xd90e00a1, 0x00000000}},  //   रास_, synd, لیے_,\n  { {0x7c2b06a1, 0x9f400051, 0xb46502dc, 0x00000000}},  //   llgr, thiú_, нкол,\n  { {0xdb000e27, 0x2a6d0288, 0x00000000, 0x00000000}},  //   _famó, _hweb_,   ,\n  { {0xab5d0036, 0x00000000, 0x00000000, 0x00000000}},  //   _poży,   ,   ,\n  { {0xc7d6061e, 0x1ae10044, 0x6286046a, 0x00000000}},  //   _רוני_, _খেতে_, urko,\n  { {0xdb000046, 0x7c2b00f8, 0x645c004a, 0x00000000}},  //   _zamó, hlgr, íric,\n  { {0xc95200b3, 0x3075189c, 0x00000000, 0x00000000}},  //   רמל_, кутс,   ,\n  { {0x6286016e, 0xdb0000f6, 0x00000000, 0x00000000}},  //   prko, _mamò,   ,\n  { {0x63a41db1, 0x4422143a, 0x8d660893, 0x00000000}},  // [44a0] _ibin, mok_, евзе,\n  { {0x44221db2, 0xa3ce0164, 0x7c2b021f, 0x00000000}},  //   lok_, राव_, elgr,\n  { {0x394c0300, 0x2d87004a, 0x44221db3, 0x00000000}},  //   _rgds_, ónea_, ook_,\n  { {0x44220027, 0x2a6d0288, 0x00000000, 0x00000000}},  //   nok_, _bweb_,   ,\n  { {0x5b230147, 0x63a4000b, 0xdb00008e, 0x00000000}},  //   льша, _mbin, _ramó,\n  { {0x4422011c, 0xcb070025, 0x427b0049, 0x00000000}},  //   hok_, عيون_, לאנג,\n  { {0x44220f55, 0x6d5c0061, 0xbad80044, 0x00000000}},  //   kok_, _ifra, _দেখছ,\n  { {0x8c43013b, 0x44220010, 0x3ebf0243, 0x00000000}},  //   _бесе, jok_, _šuti_,\n  { {0x44221b6d, 0x7c220007, 0x62800010, 0x00000000}},  //   dok_, moor, ámol,\n  { {0x63a41793, 0xceb300a0, 0x5b35007e, 0x00000000}},  //   _abin, ריז_, _рэсу,\n  { {0x44221db4, 0xa37b006c, 0x6d4e00e0, 0x00000000}},  //   fok_, lkõi, _mgba,\n  { {0x44220047, 0x2bc6006e, 0x988b00a1, 0x00000000}},  //   gok_, _रोमा, _رحمہ_,\n  { {0x6d5c01aa, 0x55e60242, 0xa2be0309, 0x00000000}},  //   _ofra, _подб, शिष्,\n  { {0x7c220100, 0x442b0009, 0x63a40009, 0x00000000}},  //   hoor, slc_, _ebin,\n  { {0x7c2217c6, 0x7c2b00ea, 0xa3ce0309, 0x00000000}},  //   koor, ylgr, राश_,\n  { {0x44220390, 0x629a001a, 0x98bc014a, 0x00000000}},  //   cok_, ător, navı_,\n  { {0x7c22020f, 0x7e64011c, 0xa3b80014, 0x00000000}},  // [44b0] door, gpip, _ساير_,\n  { {0x63bd0635, 0x63af1db5, 0xab5d0066, 0x00000000}},  //   ldsn, lecn, _inżi,\n  { {0x5577007b, 0x7c221db6, 0x63bd012d, 0x00000000}},  //   געבן_, foor, odsn,\n  { {0x6d5c01aa, 0x7e640009, 0x7c221db7, 0x00000000}},  //   _efra, bpip, goor,\n  { {0x629d0e0c, 0x6d5c018e, 0x7f76009b, 0x00000000}},  //   ntso, _ffra, _בערב_,\n  { {0x44221db8, 0xc3340104, 0x2a6d0009, 0x00000000}},  //   zok_, נוס_, _vweb_,\n  { {0x7c2200c7, 0x44221db9, 0x7c2c009d, 0x00000000}},  //   boor, yok_, éorè,\n  { {0x7c2202c2, 0x629d00ea, 0x44220032, 0x00000000}},  //   coor, ktso, xok_,\n  { {0xdcee00b9, 0x442208d0, 0x00000000, 0x00000000}},  //   _odbě, vok_,   ,\n  { {0x4422023a, 0x628f117e, 0x62800010, 0x00000000}},  //   wok_, duco, ámom,\n  { {0x44221b6d, 0x06df0044, 0xd7e70088, 0x00000000}},  //   tok_, _বেশি, _підо,\n  { {0x629d00ea, 0x7e6400e0, 0x00000000, 0x00000000}},  //   ftso, ypip,   ,\n  { {0x44221db2, 0x628f016c, 0x06df0044, 0x00000000}},  //   rok_, guco, _বেরি,\n  { {0x44221dba, 0x6d5b014a, 0x21ef010e, 0x00000000}},  //   sok_, _şuan, _püha_,\n  { {0x44221dbb, 0x21f4010f, 0x91030098, 0x00000000}},  //   pok_, _nähe_, апре,\n  { {0xe3b2031d, 0x63a40020, 0x7e6410f0, 0x00000000}},  //   _ضرب_, _ubin, tpip,\n  { {0x539b00b6, 0xf7720476, 0x7c220100, 0x00000000}},  // [44c0] _חיפו, יקן_, voor,\n  { {0x4d6308f3, 0x7c22049b, 0x7e640ae3, 0x00000000}},  //   икув, woor, rpip,\n  { {0x7c22006c, 0xc2c90014, 0x00000000, 0x00000000}},  //   toor, _قبیل_,   ,\n  { {0x31780036, 0xe7270025, 0x7a2d0048, 0x00000000}},  //   larz_, _نص_, lúth,\n  { {0x7c2200c7, 0x7f1a0088, 0x00000000, 0x00000000}},  //   roor, _ціну_,   ,\n  { {0x7c2200c7, 0x69340014, 0x317800b4, 0x00000000}},  //   soor, هکار, narz_,\n  { {0x7c221dbc, 0xa37b006c, 0x09e301fc, 0x00000000}},  //   poor, skõi, ројн,\n  { {0x61df0164, 0x20120010, 0xb21b0030, 0x00000000}},  //   _नक्ष, nnyi_, træk,\n  { {0x31780036, 0x63af1dbd, 0x682500fa, 0x00000000}},  //   karz_, vecn, tódr,\n  { {0x2d980022, 0x00000000, 0x00000000, 0x00000000}},  //   _jcre_,   ,   ,\n  { {0x624b01d5, 0xe8df0082, 0x395e0026, 0x00000000}},  //   _bżon, _thềm_, _ifts_,\n  { {0x601301d5, 0x629d0479, 0xd5be0089, 0x00000000}},  //   għml, ttso, _šāda_,\n  { {0x61e10039, 0x63af1958, 0x63bd0056, 0x00000000}},  //   öllo, recn, rdsn,\n  { {0x629d022b, 0x63af1dbe, 0xdcfc000a, 0x00000000}},  //   rtso, secn, _adrč,\n  { {0x629d013f, 0x67f50010, 0xdcee012d, 0x00000000}},  //   stso, _fájd, _bebč,\n  { {0x2d980335, 0xb4de0061, 0x00000000, 0x00000000}},  //   _acre_, णही_,   ,\n  { {0x4429006a, 0x2caa023a, 0x2d87004a, 0x00000000}},  // [44d0] _ika_, _apbd_, óneo_,\n  { {0x20120009, 0x25be000a, 0x21f4006c, 0x00000000}},  //   anyi_, ndtl_, _pähe_,\n  { {0x270e013d, 0x645e009d, 0x9f9c000c, 0x00000000}},  //   ापुर_, _épid, _tíð_,\n  { {0x21f4006c, 0x44291dbf, 0x8b940088, 0x00000000}},  //   _vähe_, _jka_, иріч,\n  { {0x2009122d, 0x3c3502e1, 0xaa580131, 0x00000000}},  //   miai_, gåva_, вичу_,\n  { {0x2009010a, 0x644d009d, 0x2cb80022, 0x00000000}},  //   liai_, _liai, _fsrd_,\n  { {0x44290010, 0xb4cc013d, 0x07a50088, 0x00000000}},  //   _oka_, रमो_, гайн,\n  { {0x20090736, 0x44291dc0, 0x644d0068, 0x00000000}},  //   niai_, _nka_, _niai,\n  { {0x7c29022b, 0xa3d7006e, 0x5b15012b, 0x00000000}},  //   _iker, सान_, _смат,\n  { {0xf99304e8, 0x20090197, 0x26c600e7, 0x00000000}},  //   _خبر_, hiai_, _droo_,\n  { {0x20091dc1, 0x44290058, 0x240a005e, 0x00000000}},  //   kiai_, _bka_, енни_,\n  { {0x44290065, 0xb33b006b, 0x644d0026, 0x00000000}},  //   _cka_, veçr, _ciai,\n  { {0xe2c709c0, 0x44291dc2, 0xe5a501ee, 0x00000000}},  //   гляд_, _dka_, _били,\n  { {0x27ed1bea, 0x442900b0, 0xab5d0066, 0x00000000}},  //   lken_, _eka_, _inżu,\n  { {0x7c29002d, 0x3eb90784, 0x624b0066, 0x00000000}},  //   _oker, _asst_, _iżol,\n  { {0x200907bc, 0x2d830a2e, 0x644d0082, 0x00000000}},  //   giai_, _adje_, _giai,\n  { {0xee3a017f, 0x27ed1dc3, 0x8f750245, 0x00000000}},  // [44e0] ена_, iken_, русі,\n  { {0xdd92004b, 0x7c290056, 0x7c3b00ea, 0x00000000}},  //   صوص_, _aker, _ahur,\n  { {0x27ed1dc4, 0x67f50224, 0x20090006, 0x00000000}},  //   kken_, _záje, biai_,\n  { {0x27ed02ae, 0x7c3b00ab, 0x20091dc5, 0x00000000}},  //   jken_, _chur, ciai_,\n  { {0x7c3b0065, 0xead40f62, 0x09e6005c, 0x00000000}},  //   _dhur, роль, лодн,\n  { {0x2d830363, 0x27ed02ae, 0x2fc01dc6, 0x00000000}},  //   _gdje_, eken_, ldig_,\n  { {0x3ea01256, 0xf9690088, 0x00000000, 0x00000000}},  //   ltit_, трій_,   ,\n  { {0xd6da0200, 0x383402ea, 0xdbca010e, 0x00000000}},  //   ето_, јнир, _põõs,\n  { {0x3ea00110, 0xb99601fa, 0x644d0051, 0x00000000}},  //   ntit_, _مشاغ, _riai,\n  { {0x44290073, 0xa96a0025, 0x644d0006, 0x00000000}},  //   _ska_, _أمام_, _siai,\n  { {0x2ed1006e, 0x44291dc7, 0x3ea00023, 0x00000000}},  //   _सप्त, _pka_, htit_,\n  { {0x27ed1dc8, 0x3ea0045f, 0x78ba0010, 0x00000000}},  //   cken_, ktit_, _istv,\n  { {0x518701f9, 0x2009010a, 0xe3bf0e65, 0x00000000}},  //   лува, viai_, goña_,\n  { {0x2fc01dc9, 0x54e60025, 0x00000000, 0x00000000}},  //   edig_, _مسبق,   ,\n  { {0xb21b0030, 0xf55b009b, 0xf8b401f5, 0x00000000}},  //   kræv, _אדומ, ंबिय,\n  { {0x08770049, 0x442f1dca, 0x425500a1, 0x00000000}},  //   טעלט_, _óg_, _پندر,\n  { {0x2009010a, 0x33a80265, 0xa4f800a1, 0x00000000}},  // [44f0] riai_, _също_, _سکھر_,\n  { {0x7c29130e, 0x2009010a, 0x7c3b1dcb, 0x00000000}},  //   _sker, siai_, _shur,\n  { {0x20090006, 0xd01000a1, 0x27ed12fd, 0x00000000}},  //   piai_, زلے_, yken_,\n  { {0x200c00f4, 0x657a01a3, 0xce95005e, 0x00000000}},  //   édit_, hath, _камъ,\n  { {0x657a164d, 0x78ba00f6, 0x3ea000d4, 0x00000000}},  //   kath, _astv, ctit_,\n  { {0x2d830107, 0x88c50025, 0xf8650264, 0x00000000}},  //   _udje_, لتعل, авко,\n  { {0x27ed0158, 0x14b00309, 0x624b0066, 0x00000000}},  //   tken_, _जनगण, _nżom,\n  { {0x7c3b1dcc, 0x27ed1dcd, 0x7c291dce, 0x00000000}},  //   _uhur, uken_, _uker,\n  { {0x27ed1dcf, 0x657a0016, 0xe7e60061, 0x00000000}},  //   rken_, fath, _ओकरा_,\n  { {0x27ed059f, 0x657a0010, 0x80bb0044, 0x00000000}},  //   sken_, gath, _উপন্,\n  { {0x21f4006c, 0x2fc00de7, 0xa8a7005e, 0x00000000}},  //   _näha_, ydig_, _щрак,\n  { {0x245a0023, 0x3ea0013e, 0x09aa0044, 0x00000000}},  //   _dëm_, ytit_, _গোপা,\n  { {0x657a0058, 0x3ea00288, 0x666701ab, 0x00000000}},  //   bath, xtit_, _съез,\n  { {0x657a009d, 0xe1ff06c2, 0x20190087, 0x00000000}},  //   cath, spón_, _ajsi_,\n  { {0xab5d0046, 0x61460a30, 0x412a025f, 0x00000000}},  //   _każd, рева, тово_,\n  { {0x2fc001b5, 0x3ea000f8, 0x2fda0014, 0x00000000}},  //   udig_, ttit_, خورد_,\n  { {0x2fc01dd0, 0xed5a02b0, 0x3ea01dd1, 0x00000000}},  // [4500] rdig_, воз_, utit_,\n  { {0xc27b007b, 0x3ea004bd, 0x645e1dd2, 0x00000000}},  //   _שריי, rtit_, _épic,\n  { {0x3ea0098a, 0x8fa6007e, 0x7a2d000c, 0x00000000}},  //   stit_, _кане, nútu,\n  { {0x3ea00efc, 0x9f4000b0, 0xc50c0049, 0x00000000}},  //   ptit_, tkiä_, עלאָ,\n  { {0xa3d70309, 0x62880036, 0x657a0284, 0x00000000}},  //   सात_, ądow, yath,\n  { {0x78ba012d, 0x00000000, 0x00000000, 0x00000000}},  //   _pstv,   ,   ,\n  { {0x21890049, 0x44c5001e, 0x657a06a5, 0x00000000}},  //   אָפּ, _nē_, vath,\n  { {0x657a00e7, 0x21ef010e, 0x00000000, 0x00000000}},  //   wath, _rühm_,   ,\n  { {0x657a1b25, 0x8f9b00a3, 0x2a6400f6, 0x00000000}},  //   tath, דיפי, _utmb_,\n  { {0x26c00006, 0x7bc01dd3, 0x270e0164, 0x00000000}},  //   _šios_, _hamu, ापौर_,\n  { {0x7bc00127, 0x78ba01d9, 0x7d7b00b3, 0x00000000}},  //   _kamu, _ustv, כניו,\n  { {0x7bc00169, 0xc3200044, 0xb6a600ed, 0x00000000}},  //   _jamu, নেছি_, _видл,\n  { {0x7bc0011c, 0x6aa21dd4, 0x657a028a, 0x00000000}},  //   _mamu, ntof, path,\n  { {0x7bc0001a, 0x44c5000a, 0x7a2d12c3, 0x00000000}},  //   _lamu, _fē_, sútv,\n  { {0x80071dd5, 0xb21b101b, 0xdfd500a5, 0x00000000}},  //   ачае, dræt, бовы,\n  { {0x7bc00149, 0x7415089d, 0x2aa001aa, 0x00000000}},  //   _namu, _دوبا, kòb_,\n  { {0x6458042b, 0xdb231dd6, 0xe7ee0061, 0x00000000}},  // [4510] _huvi, ürül, _जवना_,\n  { {0x64581aa2, 0x7bc000b0, 0x6aa204b3, 0x00000000}},  //   _kuvi, _aamu, dtof,\n  { {0x7bc01dd7, 0xdcbb005e, 0x64581dd8, 0x00000000}},  //   _bamu, ъща_, _juvi,\n  { {0x81b80055, 0x64581dd9, 0x6aa20009, 0x00000000}},  //   ছাঃ_, _muvi, ftof,\n  { {0x7bc00129, 0x61e5010f, 0x64580052, 0x00000000}},  //   _damu, _kohl, _luvi,\n  { {0x64580181, 0x657806b8, 0x61e50066, 0x00000000}},  //   _ouvi, _nevh, _johl,\n  { {0x61e5004f, 0x7bc0002b, 0x6458007f, 0x00000000}},  //   _mohl, _famu, _nuvi,\n  { {0xe73903c8, 0x7bc00058, 0xa6950098, 0x00000000}},  //   лей_, _gamu, број,\n  { {0x6aa204b7, 0x6abb08eb, 0x601301d5, 0x00000000}},  //   ctof, _usuf, għmi,\n  { {0x7bc00059, 0x6458007f, 0x61e501f3, 0x00000000}},  //   _zamu, _buvi, _nohl,\n  { {0x6458001a, 0x7bc01dda, 0x628f11fe, 0x00000000}},  //   _cuvi, _yamu, erco,\n  { {0x69c100b5, 0x64580181, 0x69c301a2, 0x00000000}},  //   _hale, _duvi, ldne,\n  { {0x9756009b, 0xa3e90316, 0x61e51ddb, 0x00000000}},  //   _הינו_, _मकर_, _bohl,\n  { {0xbb3a0097, 0x69c10285, 0x69c31ddc, 0x00000000}},  //   טערי, _jale, ndne,\n  { {0x9f420065, 0x61e50062, 0x628f00d9, 0x00000000}},  //   _tokë_, _dohl, arco,\n  { {0x7e660022, 0x69c11ddd, 0x81b80044, 0x00000000}},  //   _ptkp, _lale, ছাই_,\n  { {0x38a10051, 0x64581d93, 0x0d861d84, 0x00000000}},  // [4520] hór_, _zuvi, йлан,\n  { {0x69c11dde, 0x7bc00515, 0xab8c011f, 0x00000000}},  //   _nale, _samu, _çözü,\n  { {0x7bc0070d, 0x31570104, 0x41d50061, 0x00000000}},  //   _pamu, _ליין_, दारस,\n  { {0x6d551ddf, 0x69c10302, 0x2aa001aa, 0x00000000}},  //   _egza, _aale, tòb_,\n  { {0x7bc2032c, 0x00000000, 0x00000000, 0x00000000}},  //   rdou,   ,   ,\n  { {0x6aa21de0, 0xe2a7000c, 0x2bfa0044, 0x00000000}},  //   rtof, óðir_, েকেই_,\n  { {0x6aa214b4, 0x69c10667, 0xf8c50061, 0x00000000}},  //   stof, _dale, विषय,\n  { {0x7bc00020, 0x9f4201aa, 0xb8d00164, 0x00000000}},  //   _uamu, _pokè_, _ओह_,\n  { {0x69c10ab1, 0xa3d7006e, 0x69c307e4, 0x00000000}},  //   _fale, सास_, bdne,\n  { {0x69c11de1, 0xceb30104, 0x38a10036, 0x00000000}},  //   _gale, ליח_, bór_,\n  { {0x2813026c, 0xc9570025, 0xddc60006, 0x00000000}},  //   _کونس, _المش_, _atkū,\n  { {0x69c10046, 0xd6df0044, 0xdb0b13aa, 0x00000000}},  //   _zale, _বেওয, legá,\n  { {0x61e501ca, 0xa3ce007d, 0x628f1de2, 0x00000000}},  //   _pohl, राज_, urco,\n  { {0x64581de3, 0x69c100d4, 0x27e60785, 0x00000000}},  //   _tuvi, _xale, _hoon_,\n  { {0x27e60052, 0x00000000, 0x00000000, 0x00000000}},  //   _koon_,   ,   ,\n  { {0x61e5010f, 0x27e61de4, 0x00000000, 0x00000000}},  //   _wohl, _joon_,   ,\n  { {0x442b0a32, 0x63ad006a, 0x6d480428, 0x00000000}},  // [4530] moc_, _iban, _údaj,\n  { {0xd047005f, 0x442b001a, 0x63ad1de5, 0x00000000}},  //   _əmək, loc_, _hban,\n  { {0x69c10068, 0x442b0d9b, 0x63ad0082, 0x00000000}},  //   _rale, ooc_, _kban,\n  { {0x27e61de6, 0x69c100ab, 0xb21b0030, 0x00000000}},  //   _noon_, _sale, præs,\n  { {0x63ad0065, 0x38a10036, 0x332008f4, 0x00000000}},  //   _mban, wór_, _xxix_,\n  { {0x69c1178e, 0xda780783, 0x7e6d1de7, 0x00000000}},  //   _qale, сяц_, mpap,\n  { {0x69c30da6, 0x16d1013d, 0x6845007e, 0x00000000}},  //   rdne, तम्ब, онка,\n  { {0x69c11196, 0x16651dac, 0x442b00d4, 0x00000000}},  //   _wale, овим, joc_,\n  { {0x7c2b0b3d, 0x69c10292, 0x27e6006a, 0x00000000}},  //   mogr, _tale, _doon_,\n  { {0x63ad1de8, 0x38c900a1, 0xb5fd016c, 0x00000000}},  //   _aban, _پائی_, opši,\n  { {0xca480379, 0x04460805, 0x442b00d4, 0x00000000}},  //   _الله_, женн, foc_,\n  { {0x3885001e, 0x7e6d023a, 0xa34a026b, 0x00000000}},  //   mēr_, kpap, изна_,\n  { {0xe72e01fb, 0xf1d50061, 0x645e009d, 0x00000000}},  //   _це_, दांन, _épin,\n  { {0x63ad002d, 0x27e600b5, 0x7c2b009d, 0x00000000}},  //   _eban, _zoon_, hogr,\n  { {0x7c2b0056, 0x27e60082, 0x442b0035, 0x00000000}},  //   kogr, _yoon_, boc_,\n  { {0x6b891de9, 0x7c2b002b, 0x442b00e5, 0x00000000}},  //   _ndeg, jogr, coc_,\n  { {0xa3d70201, 0xc7b2019b, 0x7e6d006a, 0x00000000}},  // [4540] सार_, ובן_, gpap,\n  { {0x13a6026c, 0x6b890207, 0x0d8603e8, 0x00000000}},  //   _اچھی_, _adeg, ілен,\n  { {0x7c2b15a3, 0xb6070089, 0xad6503ec, 0x00000000}},  //   fogr, mašī, ساله,\n  { {0xfbfa0044, 0x00000000, 0x00000000, 0x00000000}},  //   েক্ষ_,   ,   ,\n  { {0x254e005f, 0x7d2400a1, 0x601301d5, 0x00000000}},  //   zəl_, _کہان, għmu,\n  { {0x27e600ab, 0x6b890599, 0x00000000, 0x00000000}},  //   _soon_, _edeg,   ,\n  { {0x27e60058, 0x2e2f010f, 0x200b0093, 0x00000000}},  //   _poon_, rüft_, _ymci_,\n  { {0x254e005f, 0x76aa0242, 0x7a3f009d, 0x00000000}},  //   vəl_, атов_, vête,\n  { {0x442b002b, 0xe7a60204, 0xfaa602e9, 0x00000000}},  //   voc_, क्षप, _фазо,\n  { {0x80bb0055, 0x27e601bb, 0x1a6700a1, 0x00000000}},  //   _উপস্, _woon_, _بیوی_,\n  { {0x27e60250, 0x957c0036, 0x2bcf0061, 0x00000000}},  //   _toon_, ejąc, _सोडा,\n  { {0x7a3f00f4, 0xab5d0066, 0x3fc50044, 0x00000000}},  //   rête, _każa, _এক্ষ,\n  { {0x442b10ff, 0x23dd0061, 0xb6cb00a1, 0x00000000}},  //   roc_, याबद, _پانے_,\n  { {0x442b0784, 0x67fc00f4, 0x00000000, 0x00000000}},  //   soc_, _déje,   ,\n  { {0xba3d0224, 0x957c0036, 0x7c2b09e5, 0x00000000}},  //   _způs, ając, yogr,\n  { {0x68250036, 0x63ad011c, 0x7e6d0ebd, 0x00000000}},  //   wódz, _uban, tpap,\n  { {0x7c2b0627, 0x00000000, 0x00000000, 0x00000000}},  // [4550] vogr,   ,   ,\n  { {0x7c2b01aa, 0xf2d20049, 0xe2a7000c, 0x00000000}},  //   wogr, _װעט_, óður_,\n  { {0x61e1000c, 0x7e6d0089, 0x6ce4007e, 0x00000000}},  //   öllu, spap, міце,\n  { {0xf3ff0181, 0x7e6d0052, 0x32110036, 0x00000000}},  //   nhã_, ppap, lizy_,\n  { {0xa969003b, 0x00000000, 0x00000000, 0x00000000}},  //   била_,   ,   ,\n  { {0xb7bd0035, 0x00000000, 0x00000000, 0x00000000}},  //   moţi,   ,   ,\n  { {0x7c2b0056, 0x3858007e, 0x67f50010, 0x00000000}},  //   pogr, орыю_, _fájl,\n  { {0x96950228, 0x80cc0061, 0x00000000, 0x00000000}},  //   прош, हिते,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xc9f70025, 0x2d8101a2, 0x245a0089, 0x00000000}},  //   _بسرع, nahe_, _zīmi_,\n  { {0xc329009b, 0x645e009d, 0x00000000, 0x00000000}},  //   _עו_, _épil,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xc5f5005e, 0x9f59000a, 0x00000000, 0x00000000}},  //   _някъ, _ilsè_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xe3c2005d, 0xdb0900f6, 0x00000000, 0x00000000}},  //   _alış_, _obeï,   ,\n  { {0xddc40059, 0x998700b9, 0x6d480048, 0x00000000}},  //   dpiš, konů_, _údai,\n  { {0x35d0013d, 0x3f8000c4, 0x2bda0061, 0x00000000}},  // [4560] _थोड़, raiu_, णासा,\n  { {0x6146008b, 0xb21b000c, 0x62860091, 0x00000000}},  //   _непа, nsæl, msko,\n  { {0xd7bd001c, 0xc17300b6, 0xe7bd02f4, 0x00000000}},  //   ्याच, _אחת_, ्याप,\n  { {0xfaa60216, 0x60db009b, 0x44200022, 0x00000000}},  //   задо, _הקטנ, _jji_,\n  { {0x6286049c, 0x4420000b, 0x6456014a, 0x00000000}},  //   nsko, _mji_, _miyi,\n  { {0x2012005f, 0x62861978, 0x4420016c, 0x00000000}},  //   liyi_, isko, _lji_,\n  { {0x7af200b9, 0x26cf010e, 0x4420007f, 0x00000000}},  //   _řetě, _argo_, _oji_,\n  { {0xab6608fd, 0x44200065, 0xfaa6007c, 0x00000000}},  //   _хвал, _nji_, _набо,\n  { {0x62860091, 0xfaa40167, 0xf4220044, 0x00000000}},  //   jsko, _تجزی, নতার_,\n  { {0x62861dea, 0x442001aa, 0xd7f800e5, 0x00000000}},  //   dsko, _aji_, _atăt_,\n  { {0x62860b4d, 0x43951deb, 0xbebb0065, 0x00000000}},  //   esko, манс, _nxën,\n  { {0x62861c81, 0x6b821dec, 0x44320146, 0x00000000}},  //   fsko, naog, _cky_,\n  { {0x2012005f, 0x6286101e, 0x64561ded, 0x00000000}},  //   diyi_, gsko, _diyi,\n  { {0x6f040036, 0x44320009, 0x171b009b, 0x00000000}},  //   dzic, _eky_, _פוגע,\n  { {0x64a300ec, 0x62861dee, 0x6b8200e7, 0x00000000}},  //   _заја, asko, kaog,\n  { {0x753700b6, 0x999e010a, 0x6456014a, 0x00000000}},  //   _מאוד_, _kitų_, _giyi,\n  { {0xdb0800f4, 0xa3d30204, 0x2d811def, 0x00000000}},  // [4570] _élèv, _होय_, tahe_,\n  { {0xdb0b07c4, 0x64560045, 0xddc404eb, 0x00000000}},  //   negå, _ziyi, tpiš,\n  { {0x443900b5, 0x64570211, 0x271e0011, 0x00000000}},  //   ols_, _éxit, ịnh_,\n  { {0x44cc0224, 0xa3d300e8, 0x09aa0044, 0x00000000}},  //   _mě_, _होम_, _গোলা,\n  { {0x4439028c, 0xd90f026c, 0xb5fd1df0, 0x00000000}},  //   ils_, گیا_, opšt,\n  { {0x44391df1, 0x3ea90f4a, 0x614700f4, 0x00000000}},  //   hls_, mtat_, célé,\n  { {0xd90f04e1, 0x44cc00b9, 0x44390089, 0x00000000}},  //   دیا_, _ně_, kls_,\n  { {0x2fc90343, 0x44391df2, 0x00000000, 0x00000000}},  //   ndag_, jls_,   ,\n  { {0x3ea91800, 0x3c44008b, 0x44390bd8, 0x00000000}},  //   ntat_, _чэрв, dls_,\n  { {0x64441df3, 0x4439032c, 0x645601aa, 0x00000000}},  //   _shii, els_, _siyi,\n  { {0x6f040197, 0x3ea91df4, 0x79830145, 0x00000000}},  //   zzic, htat_, manw,\n  { {0x62860209, 0x3ea900f8, 0x2fc900b5, 0x00000000}},  //   tsko, ktat_, jdag_,\n  { {0x3ea90065, 0xe5a50ae0, 0x1307007e, 0x00000000}},  //   jtat_, _жили, дняй_,\n  { {0x42551df5, 0xd25200a1, 0x2bcf0164, 0x00000000}},  //   етст, ئنس_, _सोसा,\n  { {0x62861543, 0x644400eb, 0xcfc50044, 0x00000000}},  //   ssko, _thii, _একজন,\n  { {0x6286037e, 0x442004d4, 0x2fc9006a, 0x00000000}},  //   psko, _uji_, gdag_,\n  { {0xb22600ed, 0x79831df6, 0x8c130044, 0x00000000}},  // [4580] _омил, kanw, িকান_,\n  { {0x6f041df7, 0x20000058, 0xdb08009d, 0x00000000}},  //   rzic, shii_, _élév,\n  { {0x2a6d0016, 0x2bda0061, 0xfce3034b, 0x00000000}},  //   _ateb_, णाला, кофо,\n  { {0x1ee8026c, 0xab5d0036, 0x7c65039d, 0x00000000}},  //   _فوجی_, _ważn, ءالل,\n  { {0xaaba025a, 0x3ea91825, 0xbaba0b6c, 0x00000000}},  //   تدار_, ctat_, تداء_,\n  { {0x79831df8, 0xab5d0066, 0x00000000, 0x00000000}},  //   ganw, _fażo,   ,\n  { {0x6d5c0f3a, 0x6da300e2, 0xdcfc01f3, 0x00000000}},  //   _igra, _шира, _merċ,\n  { {0xab2a003b, 0x63a401d1, 0x9b930025, 0x00000000}},  //   _доба_, _ncin, _للفت,\n  { {0x9f49014a, 0x79831df9, 0x00000000, 0x00000000}},  //   rkaç_, banw,   ,\n  { {0x4439002b, 0x67fc038e, 0x79831dfa, 0x00000000}},  //   wls_, _déja, canw,\n  { {0x0d9701f8, 0x2fc90007, 0xdb0b044f, 0x00000000}},  //   וכים_, ydag_, regå,\n  { {0x69c800b7, 0x443907f3, 0xa29501ff, 0x00000000}},  //   _hade, uls_, намі,\n  { {0xf77300b6, 0x6d5c08c5, 0x443900ab, 0x00000000}},  //   _סקס_, _ogra, rls_,\n  { {0x69c80263, 0x44cc00b9, 0x69ca010f, 0x00000000}},  //   _jade, _tě_, ndfe,\n  { {0x24650089, 0x443906ed, 0x63a40026, 0x00000000}},  //   _tēma_, pls_, _fcin,\n  { {0x6d5c06c2, 0x7658000b, 0x3ea91dfb, 0x00000000}},  //   _agra, _hivy, ttat_,\n  { {0x69da0181, 0x63bd0006, 0x765800e7, 0x00000000}},  // [4590] _onte, mesn, _kivy,\n  { {0xa3d3001c, 0x69c801b5, 0x3ea90a16, 0x00000000}},  //   _होत_, _nade, rtat_,\n  { {0x629d011c, 0x6d5c0009, 0x69ca0016, 0x00000000}},  //   luso, _dgra, ddfe,\n  { {0x69da0682, 0x60c50066, 0x3ea91dfc, 0x00000000}},  //   _ante, _ishm, ptat_,\n  { {0x69c801e7, 0x629d0253, 0x656a00ea, 0x00000000}},  //   _bade, nuso, _offh,\n  { {0xe29c009b, 0x6d5c0846, 0x6d8700a1, 0x00000000}},  //   קשור, _ggra, _زمرہ_,\n  { {0x69c804bd, 0xa855025f, 0x79831601, 0x00000000}},  //   _dade, нтиј, ranw,\n  { {0x69da15a4, 0x63bd1dfd, 0x6d5c0213, 0x00000000}},  //   _ente, jesn, _zgra,\n  { {0x69c800eb, 0x63bd0006, 0x7bdb011c, 0x00000000}},  //   _fade, desn, _inuu,\n  { {0x69c81244, 0x63a41dfe, 0x6b800089, 0x00000000}},  //   _gade, _scin, _zemg,\n  { {0x76580035, 0x63a4144f, 0x63bd0861, 0x00000000}},  //   _divy, _pcin, fesn,\n  { {0x9f4b02d5, 0x69c80763, 0x7bcb07b8, 0x00000000}},  //   _você_, _zade, ndgu,\n  { {0x629d0010, 0x69da005b, 0xe78401ff, 0x00000000}},  //   guso, _ynte, _рухо,\n  { {0x80cc0061, 0x2907016c, 0x3f8401ee, 0x00000000}},  //   हिले, ozna_, _žmu_,\n  { {0x60260401, 0x79810022, 0x7e7d01f3, 0x00000000}},  //   едва, _melw, _awsp,\n  { {0x63a4041a, 0x63bd0c8a, 0x6d5c09f9, 0x00000000}},  //   _ucin, cesn, _sgra,\n  { {0xa3bf0204, 0x629d0adb, 0x2d9600e2, 0x00000000}},  // [45a0] ीयर_, cuso, ерес,\n  { {0xee37012b, 0xab5d0036, 0x7bcb00d9, 0x00000000}},  //   ену_, _inży, edgu,\n  { {0x27210011, 0x6d5c0059, 0x6b800022, 0x00000000}},  //   ỳnh_, _vgra, _pemg,\n  { {0x69c8011f, 0x7bcf0181, 0x79810016, 0x00000000}},  //   _sade, _ócul, _aelw,\n  { {0x69c80b53, 0x79811dff, 0x7afd1e00, 0x00000000}},  //   _pade, _belw, _üstl,\n  { {0x63bd0fed, 0x6d5c0091, 0xca75007e, 0x00000000}},  //   zesn, _ugra, туцы,\n  { {0x69c80100, 0x69ca0007, 0xf41f00b0, 0x00000000}},  //   _vade, rdfe, ynä_,\n  { {0x69c803e1, 0x76581e01, 0x7791025a, 0x00000000}},  //   _wade, _sivy, لیما,\n  { {0x63bd145e, 0x3a260245, 0x69c81e02, 0x00000000}},  //   vesn, _змаг, _tade,\n  { {0x69da08ba, 0x48e61e03, 0x3f82002d, 0x00000000}},  //   _unte, _позв, _leku_,\n  { {0x2918006c, 0x29070046, 0x63bd010a, 0x00000000}},  //   _ära_, czna_, tesn,\n  { {0x3f820119, 0x629d003c, 0x388c00b9, 0x00000000}},  //   _neku_, tuso, měr_,\n  { {0x63bd0dc6, 0x1dd1013d, 0xfbd3009b, 0x00000000}},  //   resn, _सफलत, אתר_,\n  { {0x63bd0a8f, 0x629d0142, 0x00000000, 0x00000000}},  //   sesn, ruso,   ,\n  { {0x63bd1e04, 0xadc30082, 0x3f82008a, 0x00000000}},  //   pesn, _ngạc, _beku_,\n  { {0x653b009b, 0x629d0010, 0x00000000, 0x00000000}},  //   _מעוד, puso,   ,\n  { {0xf4580049, 0xdcfc0087, 0x00000000, 0x00000000}},  // [45b0] _איהר_, _derč,   ,\n  { {0x4df40088, 0x50f50264, 0x644f1e05, 0x00000000}},  //   ляєт, _азот, lmci,\n  { {0xe29f000c, 0xe9df0082, 0x2cb800e5, 0x00000000}},  //   luð_, _đú_, _cprd_,\n  { {0x2cb8023a, 0x7981005b, 0x00000000, 0x00000000}},  //   _dprd_, _selw,   ,\n  { {0xe29f000c, 0x16bc0204, 0x7bcb0039, 0x00000000}},  //   nuð_, ्टोब, rdgu,\n  { {0xb7bd0035, 0x25be012d, 0xa3d3013d, 0x00000000}},  //   inţe, jetl_, _होस_,\n  { {0x9f40000c, 0x99830006, 0x00000000, 0x00000000}},  //   lkið_, _ųjų_,   ,\n  { {0xf1e3013d, 0x79810016, 0xe29f000c, 0x00000000}},  //   खाड़_, _welw, kuð_,\n  { {0x6d48002a, 0x395e00c4, 0xa3e5006e, 0x00000000}},  //   _údar, _fgts_, नान_,\n  { {0x2d830211, 0x388c00b9, 0xdb0b0190, 0x00000000}},  //   _jeje_, běr_, degø,\n  { {0x2d83036f, 0x53dd01f5, 0xb7bd0035, 0x00000000}},  //   _meje_, यांश, enţe,\n  { {0x2d831e06, 0x26c60061, 0xe29f000c, 0x00000000}},  //   _leje_, _fsoo_, fuð_,\n  { {0x72c3008b, 0x3f820de5, 0x65c5007e, 0x00000000}},  //   абяз, _reku_, _абла,\n  { {0xb8230055, 0x1a9a0049, 0x72c300e2, 0x00000000}},  //   _পঠিত_, וישע, јбрз,\n  { {0xdcfc1e07, 0xb7bd0035, 0x3f8204eb, 0x00000000}},  //   _perč, anţe, _peku_,\n  { {0x601b00b0, 0x2b5f1e08, 0x00000000, 0x00000000}},  //   vämä, _nguc_,   ,\n  { {0x2d830993, 0xdcfc0006, 0x3f820142, 0x00000000}},  // [45c0] _beje_, _verč, _veku_,\n  { {0x601b021e, 0x44220009, 0x2fcb00f6, 0x00000000}},  //   tämä, lnk_, _eacg_,\n  { {0x6026008b, 0x2d831068, 0xd00a0e82, 0x00000000}},  //   _адна, _deje_, _жене_,\n  { {0x67fc009d, 0x388c00b9, 0x00000000, 0x00000000}},  //   _réjo, věr_,   ,\n  { {0x67fc00f4, 0x44220010, 0x2d831e09, 0x00000000}},  //   _séjo, ink_, _feje_,\n  { {0xc333019b, 0x67f50047, 0x5a3303e8, 0x00000000}},  //   בוד_, _máju, аніт,\n  { {0xfce307ca, 0x3ea00168, 0x621b0049, 0x00000000}},  //   _коро, luit_, ווסק,\n  { {0x8c46007c, 0x2fc01e0a, 0x00000000, 0x00000000}},  //   _ребе, neig_,   ,\n  { {0x3ea001b5, 0x96340794, 0xf6e3007e, 0x00000000}},  //   nuit_, лниц, ацэн,\n  { {0x7c220056, 0x25a70197, 0x442201c3, 0x00000000}},  //   lnor, _ccnl_, enk_,\n  { {0x7c2208eb, 0x2a640065, 0x1514004d, 0x00000000}},  //   onor, _humb_, удня,\n  { {0x7c220039, 0xd7ef0025, 0xe29f000c, 0x00000000}},  //   nnor, _وكل_, tuð_,\n  { {0x51871e0b, 0xa2d0013d, 0x41de01f5, 0x00000000}},  //   кува, दिष्, मांस,\n  { {0x3ea0028c, 0x7c22010f, 0xe29f000c, 0x00000000}},  //   duit_, hnor, ruð_,\n  { {0xb65b0097, 0xc05b0088, 0x2258007c, 0x00000000}},  //   _קדוש, діа_, тиры_,\n  { {0x23aa024c, 0x32180061, 0xf047007e, 0x00000000}},  //   _कायद, airy_, тэго,\n  { {0x3ea01e0c, 0x7c221712, 0x53140014, 0x00000000}},  // [45d0] guit_, dnor, _پذير,\n  { {0x7c22018e, 0x9f40000c, 0x00000000, 0x00000000}},  //   enor, rkið_,   ,\n  { {0x2d831e0d, 0x83340123, 0x00000000, 0x00000000}},  //   _veje_, _مریض,   ,\n  { {0x7c220207, 0x200c0129, 0x3ea01e0e, 0x00000000}},  //   gnor, èdit_, buit_,\n  { {0xee8403c8, 0x2d830065, 0x6003006c, 0x00000000}},  //   _высо, _teje_, _tõmb,\n  { {0x27ef01e3, 0x7c220288, 0xc3340097, 0x00000000}},  //   _sogn_, anor, סוס_,\n  { {0x7c2200c4, 0x89d60025, 0x20020022, 0x00000000}},  //   bnor, طوير_, _ylki_,\n  { {0x6d470213, 0xc30a0044, 0xf7710025, 0x00000000}},  //   _izja, রপতি_, حاث_,\n  { {0x2a640059, 0x27ef0190, 0x00000000, 0x00000000}},  //   _gumb_, _vogn_,   ,\n  { {0xab5d0066, 0x00000000, 0x00000000, 0x00000000}},  //   _nażi,   ,   ,\n  { {0x3ea01e0f, 0x6abb0009, 0x00000000, 0x00000000}},  //   zuit_, _hpuf,   ,\n  { {0xe29a008b, 0x4c9a01ce, 0x987a0049, 0x00000000}},  //   нам_, עברו, _נאנט,\n  { {0xab5d002b, 0x44220087, 0x2fc001e5, 0x00000000}},  //   _bażi, rnk_, veig_,\n  { {0xfb16007b, 0x7c22041a, 0x720600a1, 0x00000000}},  //   אַלט_, znor, اہدہ_,\n  { {0x2fc01e10, 0x7c221e11, 0x09cd0044, 0x00000000}},  //   teig_, ynor, লাপা,\n  { {0x3ea01e12, 0xd9c0013d, 0xe3b20426, 0x00000000}},  //   tuit_, _एस्ट, _طرب_,\n  { {0xdee3026b, 0x2fc01e13, 0xab5d0066, 0x00000000}},  // [45e0] боти, reig_, _fażi,\n  { {0x3ea001b5, 0xfce6025f, 0x1168025a, 0x00000000}},  //   ruit_, лозо, _جلدی_,\n  { {0x3ea00173, 0x7c220afd, 0xb5fa0049, 0x00000000}},  //   suit_, tnor, עלעכ,\n  { {0x9e660025, 0x63a600bb, 0xab83007c, 0x00000000}},  //   _ماسن, ngkn, бушк,\n  { {0x7c220039, 0xa3e50201, 0x6d470032, 0x00000000}},  //   rnor, नात_, _ezja,\n  { {0x7c2200ea, 0xe918007e, 0xddcd0035, 0x00000000}},  //   snor, колі_, rpaţ,\n  { {0xb21b101b, 0x67f50142, 0x6e2b0010, 0x00000000}},  //   msæt, _nájs, égbe,\n  { {0xa3d3013d, 0xb21b0030, 0x57f40081, 0x00000000}},  //   _हों_, lsæt, рпит,\n  { {0x7bc20498, 0x6996030d, 0x81ea0044, 0x00000000}},  //   meou, _брех, _মতন_,\n  { {0x88c60025, 0xb21b0030, 0x00000000, 0x00000000}},  //   _متصل, nsæt,   ,\n  { {0xd5b70783, 0xce37009b, 0x9f5601e5, 0x00000000}},  //   усы_, ראית_, _ágæt_,\n  { {0x7bc200ab, 0x4547007e, 0xc6a6003b, 0x00000000}},  //   neou, ычым_, _брки,\n  { {0xa3d6006e, 0xb21b0030, 0xa83700a3, 0x00000000}},  //   _सफर_, ksæt, _גראד_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xb21b1e14, 0x661a1e15, 0x683e0023, 0x00000000}},  //   dsæt, mitk, tëdh,\n  { {0xd904009c, 0x661a1a56, 0x12e70088, 0x00000000}},  //   _ہی_, litk, _біог,\n  { {0xdd9b0794, 0x7bc2006c, 0x8e15007e, 0x00000000}},  // [45f0] еше_, deou, адац,\n  { {0x2733001d, 0x2721001d, 0xd90400e9, 0x00000000}},  //   ợng_, ẳng_, _فی_,\n  { {0x628f0051, 0x645f00f4, 0x644d01a3, 0x00000000}},  //   lsco, _épis, _khai,\n  { {0x907a00a3, 0x3d190061, 0x628f004a, 0x00000000}},  //   _שטרי, _येणे_, osco,\n  { {0x644d002a, 0x628f0051, 0x661a003f, 0x00000000}},  //   _mhai, nsco, kitk,\n  { {0x3d19001c, 0xe9d8007e, 0x628f0197, 0x00000000}},  //   _येथे_, лкі_, isco,\n  { {0xa3d6006e, 0x661a010f, 0x628f04df, 0x00000000}},  //   _सफल_, ditk, hsco,\n  { {0x44290065, 0x20091e16, 0xe8890082, 0x00000000}},  //   _nja_, nhai_, rẻ_,\n  { {0x0ab802fd, 0x6f0d1140, 0x3d19001c, 0x00000000}},  //   _مطلب_, nzac, _येते_,\n  { {0x44290390, 0x7c290637, 0x6b8b01d6, 0x00000000}},  //   _aja_, _hjer, lagg,\n  { {0x644d002a, 0x628f0b32, 0xf3e6004c, 0x00000000}},  //   _bhai, esco, ажно,\n  { {0x69c3011f, 0x6b8b0207, 0x644d0122, 0x00000000}},  //   lene, nagg, _chai,\n  { {0x661a0085, 0x7c29028b, 0x7c3b0020, 0x00000000}},  //   bitk, _mjer, _mkur,\n  { {0x412a0373, 0x6b8b0418, 0x442910c3, 0x00000000}},  //   вого_, hagg, _eja_,\n  { {0x644d002a, 0x78a3006b, 0x7c3b014a, 0x00000000}},  //   _fhai, nunv, _okur,\n  { {0x7c29048a, 0x69c31e17, 0x27ed0292, 0x00000000}},  //   _njer, hene, njen_,\n  { {0xd00f0025, 0x0d8602d3, 0x6b8b0197, 0x00000000}},  // [4600] ذلك_, илан, dagg,\n  { {0x7c3b000c, 0x69c30059, 0x27ed0065, 0x00000000}},  //   _akur, jene, hjen_,\n  { {0x7c290030, 0x27ff000c, 0x27ed1e18, 0x00000000}},  //   _bjer, kkun_, kjen_,\n  { {0x200901d6, 0x6b8b0197, 0x27ed1e19, 0x00000000}},  //   chai_, gagg, jjen_,\n  { {0x69c30abe, 0x27ed016c, 0x7c290023, 0x00000000}},  //   fene, djen_, _djer,\n  { {0x69c3001f, 0x7bc2001c, 0x7c291e1a, 0x00000000}},  //   gene, seou, _ejer,\n  { {0x082a09de, 0x7c2902cc, 0xa96700ec, 0x00000000}},  //   кции_, _fjer, шија_,\n  { {0x7c291e1b, 0x27ed09ef, 0xd6da005e, 0x00000000}},  //   _gjer, gjen_, вто_,\n  { {0x644d018e, 0x69c31e1c, 0xa3e50204, 0x00000000}},  //   _rhai, bene, नास_,\n  { {0x644d0051, 0xe83900b9, 0xceb3009b, 0x00000000}},  //   _shai, ější, קית_,\n  { {0x2dd900bd, 0x661a0039, 0x644d0051, 0x00000000}},  //   אַרב, ritk, _phai,\n  { {0x628f00bb, 0x661a1382, 0x78fb0049, 0x00000000}},  //   tsco, sitk, _שלאפ,\n  { {0x628f0197, 0x629d00bb, 0xd7ef0025, 0x00000000}},  //   usco, urso, _تكن_,\n  { {0x798810b4, 0x5466003b, 0x00000000, 0x00000000}},  //   _jedw, _књиз,   ,\n  { {0x049406ea, 0x644d002a, 0x4639007b, 0x00000000}},  //   _البح, _thai, _געװע,\n  { {0x6f0d04bd, 0xa3bb05d4, 0x1473026c, 0x00000000}},  //   tzac, _شاعر_, _باوج,\n  { {0x44390325, 0x60d3010a, 0x69c30cca, 0x00000000}},  // [4610] mos_, _žemė, yene,\n  { {0x44390977, 0xa3e503d7, 0x7c3b0056, 0x00000000}},  //   los_, नाव_, _skur,\n  { {0x6b8b001c, 0xd010026c, 0x201e0129, 0x00000000}},  //   tagg, سلے_, ètic_,\n  { {0x44391e1d, 0x69c300bb, 0x201b006b, 0x00000000}},  //   nos_, wene, qiqi_,\n  { {0x7c290243, 0x6b8b15d4, 0x44390181, 0x00000000}},  //   _vjer, ragg, ios_,\n  { {0x44391e1e, 0x89a801fb, 0x6b8b0207, 0x00000000}},  //   hos_, иків_, sagg,\n  { {0x4439010a, 0x7c29008d, 0x69c3022b, 0x00000000}},  //   kos_, _tjer, rene,\n  { {0x44390736, 0x7c3b0574, 0x7c291e1f, 0x00000000}},  //   jos_, _ukur, _ujer,\n  { {0x44390977, 0xa9c70265, 0x27ed1105, 0x00000000}},  //   dos_, _всек, rjen_,\n  { {0x27ed1e20, 0x63ad02f9, 0x79881e21, 0x00000000}},  //   sjen_, _acan, _gedw,\n  { {0x44391814, 0x6b890004, 0xf2c90104, 0x00000000}},  //   fos_, _keeg, _רע_,\n  { {0x44390325, 0x27ed0065, 0x63ad0048, 0x00000000}},  //   gos_, qjen_, _ccan,\n  { {0x6b8900b5, 0x7c3a000c, 0x853c0006, 0x00000000}},  //   _meeg, _ítre, ngėj,\n  { {0x6b89046a, 0xe736003b, 0xf6760049, 0x00000000}},  //   _leeg, _ћеш_, _הײסט_,\n  { {0x44390a76, 0x63ad0009, 0x00000000, 0x00000000}},  //   bos_, _fcan,   ,\n  { {0x44390f19, 0x6e3c0059, 0xb4fa009b, 0x00000000}},  //   cos_, _skrb, _תפקי,\n  { {0x7c39005b, 0xa3e5007d, 0xdee3142c, 0x00000000}},  // [4620] dowr, नार_, поти,\n  { {0xbd8a007a, 0xe0580014, 0x00000000, 0x00000000}},  //   انان_, _چیست_,   ,\n  { {0xf8a504e1, 0xe058007a, 0x6b8900d9, 0x00000000}},  //   _تک_, _نیست_, _beeg,\n  { {0x44d7000d, 0x00000000, 0x00000000, 0x00000000}},  //   _mă_,   ,   ,\n  { {0xa91c0027, 0x6b890007, 0x79880016, 0x00000000}},  //   _veľm, _deeg, _pedw,\n  { {0x4439049a, 0xfce6003b, 0xa2d9024c, 0x00000000}},  //   zos_, _лого, मित्,\n  { {0x44391e22, 0xdca310dc, 0x7d2400a1, 0x00000000}},  //   yos_, _нари, _بہان,\n  { {0x44391e23, 0xc7c60057, 0xe698005e, 0x00000000}},  //   xos_, сски, авиш_,\n  { {0xf76f03ec, 0xceb4006b, 0x00000000, 0x00000000}},  //   راي_, ntə_,   ,\n  { {0x63ad0122, 0x2d8a0247, 0x44d70035, 0x00000000}},  //   _scan, _jebe_, _bă_,\n  { {0x44391e24, 0x44d7000d, 0xd7ef03f3, 0x00000000}},  //   tos_, _că_, _еу_,\n  { {0x44d7001a, 0xceb4006b, 0xccf3009b, 0x00000000}},  //   _dă_, ktə_, לכת_,\n  { {0x44391718, 0xb3aa0164, 0x6594007e, 0x00000000}},  //   ros_, _कारख, _далу,\n  { {0x44390919, 0x5558008b, 0x2d9c0181, 0x00000000}},  //   sos_, _каля_, óvel_,\n  { {0x4439006a, 0xa1591e25, 0x61fa0039, 0x00000000}},  //   pos_, раву_, ötla,\n  { {0x4035007e, 0xceb4006b, 0x3ea0158f, 0x00000000}},  //   цебс, ftə_, frit_,\n  { {0x6b89006c, 0x60250006, 0x3ea01d73, 0x00000000}},  // [4630] _reeg, nėmi, grit_,\n  { {0x6b89006c, 0xf41f00b0, 0xafdb0190, 0x00000000}},  //   _seeg, liä_, _skød,\n  { {0x2d8a0819, 0x3ea00065, 0x6b89006c, 0x00000000}},  //   _debe_, arit_, _peeg,\n  { {0x3ea01cfa, 0xf41f00b0, 0xab940088, 0x00000000}},  //   brit_, niä_, зиці,\n  { {0x3ea004bd, 0xdefb0147, 0x78670010, 0x00000000}},  //   crit_, _сын_, _műve,\n  { {0x6b890328, 0x2d8a14c9, 0x600a0027, 0x00000000}},  //   _weeg, _gebe_, _výme,\n  { {0xf41f00b0, 0xdd0e006b, 0xe7e50309, 0x00000000}},  //   kiä_, mışa, काला_,\n  { {0xdd0e005a, 0x2d8a0bf8, 0xf41f00b0, 0x00000000}},  //   lışa, _zebe_, jiä_,\n  { {0x44d71305, 0x6003006c, 0x2d9807c4, 0x00000000}},  //   _să_, _nõmm, _ydre_,\n  { {0x069300a1, 0xdd0e0279, 0x00000000, 0x00000000}},  //   _ہاتھ, nışa,   ,\n  { {0x25dd0061, 0xd7c8007a, 0xa3ea007e, 0x00000000}},  //   _कोणी_, _گونه_, адна_,\n  { {0x44d7000d, 0x3f8b0091, 0x60250006, 0x00000000}},  //   _vă_, _necu_, bėmi,\n  { {0x42ba007e, 0x61f70141, 0xd7c804b1, 0x00000000}},  //   шыню_, _boxl, _دونه_,\n  { {0x3ea0164e, 0xf7480439, 0x00000000, 0x00000000}},  //   vrit_, _الهي_,   ,\n  { {0x3f8b0107, 0x00000000, 0x00000000, 0x00000000}},  //   _becu_,   ,   ,\n  { {0x1dac02d2, 0x3ea00715, 0x2d8a0387, 0x00000000}},  //   _चाहत, trit_, _sebe_,\n  { {0xd00700e3, 0xda090061, 0x3f8b1e26, 0x00000000}},  // [4640] цете_, वसात_, _decu_,\n  { {0x3ea00065, 0x64461802, 0x3fc600a1, 0x00000000}},  //   rrit_, llki, _ڈگری_,\n  { {0xa91c0027, 0x24650089, 0xceb4006b, 0x00000000}},  //   _veľk, _tēmu_, stə_,\n  { {0xdee602b0, 0x3ea000f4, 0x3f8b012d, 0x00000000}},  //   _доми, prit_, _gecu_,\n  { {0x2d8a0119, 0x61f7006b, 0xf413009b, 0x00000000}},  //   _tebe_, _yoxl, ופא_,\n  { {0xdd920123, 0xddd50089, 0x202300b4, 0x00000000}},  //   _زور_, _aizņ, ąpił_,\n  { {0x8b96003b, 0xf1b2013d, 0x23aa0061, 0x00000000}},  //   _мрач, _जानन, _कांद,\n  { {0x6d4e1e27, 0x60250006, 0x3b8601ab, 0x00000000}},  //   _izba, tėmi, _флаг,\n  { {0xc6f704af, 0xf41f00b0, 0x3b07005e, 0x00000000}},  //   жных_, viä_, _дето_,\n  { {0xc5fa00ed, 0x6025007f, 0x00000000, 0x00000000}},  //   рѓи_, rėmi,   ,\n  { {0x629601aa, 0x64740245, 0xf41f00b0, 0x00000000}},  //   _avyo, ягну, tiä_,\n  { {0x9f49000c, 0x6b8205de, 0x59e20061, 0x00000000}},  //   kkað_, nbog, पाकर,\n  { {0xc34b005e, 0x93470025, 0xf41f00b0, 0x00000000}},  //   ряне_, تخدم, riä_,\n  { {0xf41f021e, 0x72050025, 0x3f8b0035, 0x00000000}},  //   siä_, أوسم, _secu_,\n  { {0x6aa21e28, 0xf41f00b0, 0x3f8b0087, 0x00000000}},  //   hrof, piä_, _pecu_,\n  { {0x7a3f00f4, 0x6b821e29, 0x386c0161, 0x00000000}},  //   nêtr, jbog, _mudr_,\n  { {0x855606c6, 0x656d0279, 0x3f8b06ed, 0x00000000}},  // [4650] _دیگر_, _şahi, _vecu_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x27e61827, 0x2d810051, 0xd7bc0061, 0x00000000}},  //   _onon_, rbhe_, ्जाच,\n  { {0x6b820190, 0x44cc0036, 0xa923013e, 0x00000000}},  //   gbog, _mś_, ůžko,\n  { {0x7f760097, 0x442b0fcc, 0x6d4e0032, 0x00000000}},  //   _מערב_, inc_, _ezba,\n  { {0x3ea90169, 0x28b90025, 0x2fc90311, 0x00000000}},  //   muat_, مطبخ_, leag_,\n  { {0x6446000c, 0x3ea91e2a, 0x47d40044, 0x00000000}},  //   ylki, luat_, থানী,\n  { {0x6aa20016, 0xf81302fd, 0x08d4007e, 0x00000000}},  //   brof, بستگ, ьція,\n  { {0x3ea91e2b, 0xa3e5013d, 0x6b9b00e0, 0x00000000}},  //   nuat_, नाई_, _idug,\n  { {0x442b00d4, 0x973200a6, 0x00000000, 0x00000000}},  //   enc_, رکنا,   ,\n  { {0x04461e2c, 0x24520861, 0x7c2b0544, 0x00000000}},  //   зенн, háme_, ongr,\n  { {0x3897001a, 0x7c2b00ea, 0x7a3f009d, 0x00000000}},  //   măr_, nngr, cêtr,\n  { {0xe72e0017, 0x66e5017a, 0x26dd0061, 0x00000000}},  //   _че_, _хола, _urwo_,\n  { {0xbb3a007b, 0x24520161, 0x442b005b, 0x00000000}},  //   מערי, dáme_, anc_,\n  { {0x25e80164, 0x38970035, 0xa7fc014a, 0x00000000}},  //   जारी_, năr_, _atıy,\n  { {0x6b9b000b, 0x6aa21e2d, 0x2fc90007, 0x00000000}},  //   _ndug, yrof, geag_,\n  { {0x3ea9145d, 0xdfcf01b7, 0x38970035, 0x00000000}},  // [4660] guat_, ديق_, hăr_,\n  { {0x273a0011, 0x7c2b0168, 0x13a800a1, 0x00000000}},  //   ừng_, engr, _انکی_,\n  { {0x5046005c, 0x6b820296, 0x00000000, 0x00000000}},  //   _необ, tbog,   ,\n  { {0x4422022b, 0x6aa2010f, 0x3ea9020c, 0x00000000}},  //   nik_, trof, buat_,\n  { {0x3f920093, 0x00000000, 0x00000000, 0x00000000}},  //   mayu_,   ,   ,\n  { {0xceb3019b, 0x3f921444, 0x6aa200d4, 0x00000000}},  //   _איש_, layu_, rrof,\n  { {0xe3bf027b, 0x44220010, 0xa3ac0164, 0x00000000}},  //   liñe_, kik_, खला_,\n  { {0x6aa20a83, 0x442215df, 0x4c9b009b, 0x00000000}},  //   prof, jik_, _לבלו,\n  { {0x44220047, 0xfaa300ed, 0x442b0087, 0x00000000}},  //   dik_, _пато, vnc_,\n  { {0x44980088, 0x3f920093, 0x6e3e1e2e, 0x00000000}},  //   овою_, hayu_, nopb,\n  { {0x3f920022, 0x24590451, 0x69ca0095, 0x00000000}},  //   kayu_, жань_, mefe,\n  { {0x442201a3, 0x7c221d7a, 0x6e3e00d2, 0x00000000}},  //   gik_, nior, hopb,\n  { {0x394501c3, 0x6b9c01c5, 0x00000000, 0x00000000}},  //   _zyls_, _ērgl,   ,\n  { {0x69d8000c, 0x245201dc, 0x7c220420, 0x00000000}},  //   ndve, váme_, hior,\n  { {0x7c2b018e, 0x442201a3, 0x7c220d17, 0x00000000}},  //   yngr, bik_, kior,\n  { {0x3ea905f7, 0x442201a3, 0x69ca01bf, 0x00000000}},  //   tuat_, cik_, hefe,\n  { {0xdb1b009f, 0x7c220032, 0x69ca00ea, 0x00000000}},  // [4670] _nauð, dior, kefe,\n  { {0x2bf90044, 0xdb07009d, 0x69d81e2f, 0x00000000}},  //   _আগেই_, _élég, jdve,\n  { {0x69ca0129, 0x7c220197, 0xde4700a1, 0x00000000}},  //   defe, fior, _ہیرو_,\n  { {0x7c220198, 0x3897001a, 0x69d80112, 0x00000000}},  //   gior, văr_, edve,\n  { {0x3ea900d4, 0x7c2b06d3, 0xf42a00b0, 0x00000000}},  //   quat_, rngr, ltää_,\n  { {0x44221e30, 0xdb1b000c, 0xd945005e, 0x00000000}},  //   zik_, _dauð, мели,\n  { {0xf9900076, 0x44220047, 0x7c220036, 0x00000000}},  //   ابه_, yik_, bior,\n  { {0x7c221e31, 0x2d93002d, 0x869900ed, 0x00000000}},  //   cior, laxe_, отот_,\n  { {0x4422006c, 0x7bcb00e7, 0x69ca01a2, 0x00000000}},  //   vik_, megu, befe,\n  { {0x49bb007a, 0x7bcb009f, 0x2d930061, 0x00000000}},  //   _دارد_, legu, naxe_,\n  { {0x44220756, 0x38661e32, 0x69c104c6, 0x00000000}},  //   tik_, _fior_, _ible,\n  { {0x7bcb04bd, 0xe8250014, 0xc209009b, 0x00000000}},  //   negu, _غذای, _דה_,\n  { {0x44220756, 0x24800091, 0x15f50025, 0x00000000}},  //   rik_, _čime_, _يستح,\n  { {0x7c221e33, 0x35fb007a, 0xd9f0007d, 0x00000000}},  //   zior, _درصد_, चायत_,\n  { {0x69c10065, 0x442204cb, 0x7e7d0d90, 0x00000000}},  //   _mble, pik_, _atsp,\n  { {0xdee60069, 0xd4360025, 0x7c220a49, 0x00000000}},  //   моби, _تعتب, xior,\n  { {0x4420000d, 0x69c11e34, 0x6e3e1e35, 0x00000000}},  // [4680] _imi_, _oble, topb,\n  { {0x44201e36, 0xdb1b000c, 0x9f590197, 0x00000000}},  //   _hmi_, _rauð, _mosè_,\n  { {0x9b6a0175, 0xdd8f03ec, 0x442013b1, 0x00000000}},  //   ошла_, شون_, _kmi_,\n  { {0xf7670025, 0x69c1010f, 0x7d0308e0, 0x00000000}},  //   _لا_, _able, ønsa,\n  { {0x7c220d60, 0x44200515, 0x69ca01d6, 0x00000000}},  //   rior, _mmi_, tefe,\n  { {0x7c2204f4, 0xe60700a2, 0x7e6700d9, 0x00000000}},  //   sior, _شش_, _gijp,\n  { {0x69ca1e37, 0x69d81484, 0x38660181, 0x00000000}},  //   refe, rdve, _pior_,\n  { {0x69c11e38, 0xc6f80793, 0x23aa0061, 0x00000000}},  //   _eble, зних_, _कागद,\n  { {0x8b26008b, 0x9f590026, 0xf4140044, 0x00000000}},  //   _ўдзе, _cosè_, াচার_,\n  { {0x44201e39, 0x44f401e0, 0xf42a00b0, 0x00000000}},  //   _ami_, епос, ytää_,\n  { {0xf4be0055, 0x44200142, 0x3dd80016, 0x00000000}},  //   েম্ব, _bmi_, _marw_,\n  { {0x442000c4, 0x69c1167a, 0x00000000, 0x00000000}},  //   _cmi_, _zble,   ,\n  { {0x442010e4, 0x236d0059, 0x27f70161, 0x00000000}},  //   _dmi_, žejo_, žená_,\n  { {0x34940057, 0xf42a021e, 0x4420010e, 0x00000000}},  //   _закр, ttää_, _emi_,\n  { {0x4420001a, 0xd258007e, 0x7e6700bb, 0x00000000}},  //   _fmi_, ьцю_, _rijp,\n  { {0x44de002b, 0xf42a00b0, 0x1fa40140, 0x00000000}},  //   _iċ_, rtää_, круг,\n  { {0xf42a021e, 0x7bcb0a92, 0x7e6700b5, 0x00000000}},  // [4690] stää_, vegu, _pijp,\n  { {0x9f590df9, 0x7bcb010f, 0x6d47009d, 0x00000000}},  //   _josé_, wegu, _pyja,\n  { {0x7bcb1e3a, 0x997300b9, 0x6ac80044, 0x00000000}},  //   tegu, těži_, লিফো,\n  { {0x4ea701fb, 0x6d4706b8, 0x3dcf0044, 0x00000000}},  //   _орга, _vyja, রাইল,\n  { {0x7bcb1e3b, 0x8234007a, 0x6f160046, 0x00000000}},  //   regu, _سریا, czyc,\n  { {0x7bcb0129, 0x9f5906c2, 0x3dd8005b, 0x00000000}},  //   segu, _nosé_, _garw_,\n  { {0x7bcb0085, 0xa96601ee, 0x00000000, 0x00000000}},  //   pegu, ниша_,   ,\n  { {0x2009010a, 0x76430058, 0x2d910032, 0x00000000}},  //   nkai_, _skny, _heze_,\n  { {0x5a350437, 0x4420009d, 0x9f59004a, 0x00000000}},  //   _знат, _rmi_, _bosé_,\n  { {0xe616007c, 0x64560009, 0x78ae0051, 0x00000000}},  //   едь_, _shyi, óivé,\n  { {0x44200aa3, 0x20090687, 0x2d91013e, 0x00000000}},  //   _pmi_, kkai_, _meze_,\n  { {0xafdb0030, 0x246c00b9, 0x44200c62, 0x00000000}},  //   _skøn, _němu_, _qmi_,\n  { {0xe29703c8, 0xb3b1006e, 0xddc60655, 0x00000000}},  //   ная_, _झारख, _lukš,\n  { {0xd25204e8, 0x00000000, 0x00000000, 0x00000000}},  //   انس_,   ,   ,\n  { {0x76410010, 0x44200052, 0x00000000, 0x00000000}},  //   moly, _tmi_,   ,\n  { {0x442001a3, 0x76410039, 0x251a0104, 0x00000000}},  //   _umi_, loly, _מוצא,\n  { {0xddc6010a, 0xbea30256, 0xee0a00e2, 0x00000000}},  // [46a0] _aukš, латк, пеал_,\n  { {0x6e4606b4, 0x76410232, 0x2cba0022, 0x00000000}},  //   رنام, noly, ttpd_,\n  { {0x2d910662, 0x6f160046, 0xa3e50061, 0x00000000}},  //   _deze_, szyc, नाच_,\n  { {0x61fe00ca, 0x207b0049, 0x601100ea, 0x00000000}},  //   _hopl, _מאטא, _påme,\n  { {0xd12f007a, 0x76410039, 0x00000000, 0x00000000}},  //   _نمی_, koly,   ,\n  { {0x61fe0253, 0x00000000, 0x00000000, 0x00000000}},  //   _jopl,   ,   ,\n  { {0x76410016, 0x9f59009d, 0x00000000, 0x00000000}},  //   doly, _rosé_,   ,\n  { {0x2fc01e3c, 0xd6d00025, 0x2d910023, 0x00000000}},  //   nfig_, لقب_, _zeze_,\n  { {0x27fd0038, 0x87e3007c, 0x76410010, 0x00000000}},  //   _down_, ующе, foly,\n  { {0xb9060044, 0x76411e3d, 0x61fe01c5, 0x00000000}},  //   _পথ_, goly, _nopl,\n  { {0x545505f6, 0xe4e3007e, 0x3e76000c, 0x00000000}},  //   квот, гіян, _læt_,\n  { {0x27fd103f, 0x38ba0065, 0x893700b3, 0x00000000}},  //   _gown_, mër_, _ארבע_,\n  { {0x8c1b00b3, 0x3ebb0009, 0x645d0edb, 0x00000000}},  //   לוטי, xtqt_, rmsi,\n  { {0x61fe0035, 0x69da002d, 0x24521db2, 0x00000000}},  //   _copl, _jate, ráma_,\n  { {0x61fe004f, 0x2fc00016, 0xc0c8003b, 0x00000000}},  //   _dopl, ffig_, нуте_,\n  { {0x69da05d0, 0x20090006, 0x657a0051, 0x00000000}},  //   _late, ukai_, lcth,\n  { {0x4034007c, 0xfe730137, 0x2d9101aa, 0x00000000}},  // [46b0] уетс, ادر_, _peze_,\n  { {0xe45f0039, 0x2fd9018e, 0x2009008f, 0x00000000}},  //   lmö_, _wasg_, skai_,\n  { {0x2a7f011c, 0x463b0049, 0x2d910059, 0x00000000}},  //   _stub_, לעמע, _veze_,\n  { {0x38ba0065, 0x2d210061, 0x249c0190, 0x00000000}},  //   dër_, _मधील_, _mvvm_,\n  { {0x69da0756, 0x2d911053, 0x3f8904be, 0x00000000}},  //   _bate, _teze_, mbau_,\n  { {0x3ea900ce, 0xddc60089, 0x38ba0023, 0x00000000}},  //   mrat_, _tukš, fër_,\n  { {0x6b750a94, 0x69da03a1, 0x00000000, 0x00000000}},  //   _албу, _date,   ,\n  { {0x3f89010f, 0x3ea900d4, 0x60d70050, 0x00000000}},  //   nbau_, orat_, _msxm,\n  { {0x69da0016, 0x76411cbc, 0xf1b20204, 0x00000000}},  //   _fate, toly, _जालन,\n  { {0xfbd0026c, 0x38ba0065, 0xe475007e, 0x00000000}},  //   _پتہ_, bër_, кумэ,\n  { {0x27fd00ab, 0xa8020276, 0x7bdb00e0, 0x00000000}},  //   _town_, ğırm, _kauu,\n  { {0x69da011f, 0x3ea901d9, 0xe29a0887, 0x00000000}},  //   _zate, krat_, мам_,\n  { {0x61fe0387, 0x69da00e7, 0x7bdb011c, 0x00000000}},  //   _popl, _yate, _mauu,\n  { {0x3ea904c7, 0x6d550026, 0xd25200a1, 0x00000000}},  //   drat_, _ozza, شنز_,\n  { {0x27f400a1, 0x3e760f4b, 0x3f89010f, 0x00000000}},  //   _شہید_, _sæt_, fbau_,\n  { {0x3ea900af, 0x7bdb011c, 0xa3b900e8, 0x00000000}},  //   frat_, _nauu, _चाय_,\n  { {0x61fe011f, 0x6d551e3e, 0x1f660121, 0x00000000}},  // [46c0] _topl, _azza, ткам,\n  { {0xee37019d, 0x628601d6, 0x9f590010, 0x00000000}},  //   вну_, mpko, _alsó_,\n  { {0x69da00ab, 0xa3d60204, 0x3ea901a3, 0x00000000}},  //   _rate, _हसा_, arat_,\n  { {0xdca301be, 0x3ea900b9, 0x3e760030, 0x00000000}},  //   раци, brat_, _tæt_,\n  { {0x69da010a, 0x3ea9189d, 0x2f56007e, 0x00000000}},  //   _pate, crat_, _штос,\n  { {0x38ba008d, 0x19580641, 0x69da0066, 0x00000000}},  //   tër_, налы_, _qate,\n  { {0xc21300b6, 0x69da1582, 0x29071e3f, 0x00000000}},  //   שהו_, _vate, gyna_,\n  { {0xc7c6007c, 0xf09300b6, 0x7d030039, 0x00000000}},  //   тски, בנה_, änse,\n  { {0x38ba0065, 0x69da01a2, 0x15aa005e, 0x00000000}},  //   sër_, _tate, мъни_,\n  { {0x38ba008d, 0x7bc20112, 0x35f401ee, 0x00000000}},  //   për_, lfou, упор,\n  { {0x43950594, 0x2618006e, 0x7ae21e40, 0x00000000}},  //   ланс, योगी_, lvot,\n  { {0x972300a1, 0x657a0051, 0x7bc20133, 0x00000000}},  //   افیو, scth, nfou,\n  { {0x9f590198, 0x26d80089, 0x6d580161, 0x00000000}},  //   _così_, āros_, ývaj,\n  { {0x3ea90161, 0x6594003b, 0x00000000, 0x00000000}},  //   vrat_, _саку,   ,\n  { {0x628601c3, 0x3f8901a2, 0x00000000, 0x00000000}},  //   apko, tbau_,   ,\n  { {0x3ea90314, 0xe3bf027b, 0xdcfc012d, 0x00000000}},  //   trat_, miño_, _nerđ,\n  { {0x9f550d68, 0x3f8901a3, 0x3ea900d4, 0x00000000}},  // [46d0] увач, rbau_, urat_,\n  { {0x3ea90129, 0x644f1460, 0x3f8912dc, 0x00000000}},  //   rrat_, llci, sbau_,\n  { {0x629d03ed, 0x3ea91e41, 0x7bdb0058, 0x00000000}},  //   lsso, srat_, _pauu,\n  { {0x3ea90065, 0x00000000, 0x00000000, 0x00000000}},  //   prat_,   ,   ,\n  { {0x629d091a, 0x7e5502fd, 0x62520190, 0x00000000}},  //   nsso, _منحص, kæol,\n  { {0xf2d40049, 0x629d0dd9, 0x201e0089, 0x00000000}},  //   שעס_, isso, ītie_,\n  { {0x6d55012d, 0x9f40000c, 0xac190e82, 0x00000000}},  //   _uzza, ljið_, _зову_,\n  { {0x315800b6, 0x629d03ed, 0xe3bf0e65, 0x00000000}},  //   כיון_, ksso, diño_,\n  { {0xf9930426, 0x7ae20026, 0x98be007f, 0x00000000}},  //   _نبض_, cvot, _rytą_,\n  { {0x629d04d3, 0xba550025, 0x32010161, 0x00000000}},  //   dsso, _صناع, _nohy_,\n  { {0xdb0010cf, 0x629d00f8, 0x00000000, 0x00000000}},  //   _admè, esso,   ,\n  { {0x629d03ed, 0x225a0023, 0x00000000, 0x00000000}},  //   fsso, _shpk_,   ,\n  { {0x2bc5001c, 0xd90f026c, 0xafdb00ea, 0x00000000}},  //   ळ्या, _دیں_, _uhøy,\n  { {0x644f016c, 0x9f5900d4, 0x00000000, 0x00000000}},  //   alci, _cosí_,   ,\n  { {0x8fa6008b, 0xf65200b6, 0x629d00f8, 0x00000000}},  //   лаве, _הצג_, asso,\n  { {0x629d074d, 0x27ef0022, 0x62861e42, 0x00000000}},  //   bsso, _jngn_, ppko,\n  { {0x823600a2, 0x6446007f, 0x63a4011c, 0x00000000}},  // [46e0] _مردا, moki, _idin,\n  { {0xdcfc016c, 0xa37b00c4, 0x7bc20133, 0x00000000}},  //   _serđ, rdõe, wfou,\n  { {0x6446055e, 0x61fa0443, 0x7ae2004a, 0x00000000}},  //   ooki, ötlu, wvot,\n  { {0x64461e43, 0xdb190036, 0x09bd0044, 0x00000000}},  //   noki, jewó, _আফগা,\n  { {0x69c301a2, 0x63a413e1, 0x7bc2009d, 0x00000000}},  //   ffne, _mdin, rfou,\n  { {0x69bf0164, 0x82d70049, 0x7bc2046a, 0x00000000}},  //   ल्ली, טונג_, sfou,\n  { {0x2002008f, 0x64460205, 0x63a40a64, 0x00000000}},  //   _koki_, koki, _odin,\n  { {0x63a40020, 0x20020089, 0x8c460153, 0x00000000}},  //   _ndin, _joki_, _себе,\n  { {0x64460fec, 0xa614013b, 0x32180281, 0x00000000}},  //   doki, имич, khry_,\n  { {0x63a4002d, 0x20021e44, 0xf48600ed, 0x00000000}},  //   _adin, _loki_, лумн,\n  { {0x69c801f3, 0xdcfc0089, 0x13f51e45, 0x00000000}},  //   _ibde, _ierē, азня,\n  { {0x64461e46, 0x629d03ed, 0xe3bf0ea1, 0x00000000}},  //   goki, tsso, riño_,\n  { {0xe60f007a, 0x63a4018e, 0x2d9a01aa, 0x00000000}},  //   زشی_, _ddin, kape_,\n  { {0x629d091a, 0xd576007c, 0x62840051, 0x00000000}},  //   rsso, _судь, _dtio,\n  { {0x25dd001c, 0x628400ea, 0x20021547, 0x00000000}},  //   _कोटी_, _etio, _boki_,\n  { {0x63a4016c, 0xb344006b, 0xb27500c0, 0x00000000}},  //   _gdin, zaçə, _клиш,\n  { {0x442b1e47, 0x69c80059, 0xddab0c96, 0x00000000}},  // [46f0] mic_, _obde, етел_,\n  { {0x68e81e48, 0xdb190036, 0x629b007f, 0x00000000}},  //   _ordd, zewó, šuos,\n  { {0x5c070822, 0x63a4175c, 0xdcf50089, 0x00000000}},  //   ляда, _ydin, _iezī,\n  { {0x69c81e49, 0x24b70049, 0x00000000, 0x00000000}},  //   _abde, רהאן_,   ,\n  { {0xfaa7004c, 0x68e8018e, 0x3ec400b9, 0x00000000}},  //   ушен, _ardd, ěstí_,\n  { {0xa2ad006e, 0x627c0049, 0x2d9a0498, 0x00000000}},  //   _जिन्, ענונ, cape_,\n  { {0x442b0107, 0x6ce401fb, 0x5ce4007e, 0x00000000}},  //   kic_, _літе, _люта,\n  { {0x442b003b, 0x69c80061, 0x64460288, 0x00000000}},  //   jic_, _ebde, xoki,\n  { {0x442b001a, 0x64460006, 0x7c2b01cb, 0x00000000}},  //   dic_, voki, migr,\n  { {0x7c2b0211, 0xe9d800a1, 0x7ae90d44, 0x00000000}},  //   ligr, _مذمت_, _iret,\n  { {0x64461e4a, 0x442b0824, 0xa8a400e1, 0x00000000}},  //   toki, fic_, _грчк,\n  { {0x7c2b049a, 0x0446003b, 0x442b03db, 0x00000000}},  //   nigr, ремн, gic_,\n  { {0x64460a77, 0x20020059, 0xe356007e, 0x00000000}},  //   roki, _roki_, ртнэ,\n  { {0x64461e4b, 0x00000000, 0x00000000, 0x00000000}},  //   soki,   ,   ,\n  { {0x442b1e4c, 0x64461658, 0x00000000, 0x00000000}},  //   bic_, poki,   ,\n  { {0x3075004c, 0x442b1547, 0x7c2b0209, 0x00000000}},  //   сурс, cic_, jigr,\n  { {0xa0670265, 0x6d4e04d2, 0x5ea60025, 0x00000000}},  // [4700] рата_, _syba, شمال,\n  { {0x6603021e, 0x7bc90146, 0x7c2b01c3, 0x00000000}},  //   _jonk, _abeu, eigr,\n  { {0xeb9a1e4d, 0x2d9a0bbb, 0x7ae91635, 0x00000000}},  //   вие_, rape_, _aret,\n  { {0x7ae91e4e, 0x6d4e004f, 0xa2ad006e, 0x00000000}},  //   _bret, _vyba, _जिम्,\n  { {0x2459028c, 0x7ae90420, 0x60180010, 0x00000000}},  //   néma_, _cret, _címe,\n  { {0x7ae91e4f, 0x1a8900a1, 0x66030022, 0x00000000}},  //   _dret, ائنٹ_, _nonk,\n  { {0x8ccd006e, 0x7ae9065d, 0x24591e50, 0x00000000}},  //   _सहयो, _eret, héma_,\n  { {0x2d981e51, 0x442b041d, 0x57f41e52, 0x00000000}},  //   _here_, xic_, спит,\n  { {0x7ae90006, 0x2d981209, 0x442b0e81, 0x00000000}},  //   _gret, _kere_, vic_,\n  { {0x9a6a031d, 0x2d9801aa, 0x3ea0089e, 0x00000000}},  //   _شمال_, _jere_, isit_,\n  { {0x2d9805ec, 0x442b1e53, 0x660306b2, 0x00000000}},  //   _mere_, tic_, _donk,\n  { {0x3ea01198, 0x2d981e54, 0x00000000, 0x00000000}},  //   ksit_, _lere_,   ,\n  { {0x660304cd, 0x442b1e55, 0x00000000, 0x00000000}},  //   _fonk, ric_,   ,\n  { {0x442b0038, 0x2d981e56, 0x7c2b04eb, 0x00000000}},  //   sic_, _nere_, zigr,\n  { {0xe4530426, 0x3ea00065, 0x76480675, 0x00000000}},  //   _وضع_, esit_, mody,\n  { {0x34fb01f8, 0x660300bb, 0x764814a6, 0x00000000}},  //   _יהוד, _zonk, lody,\n  { {0x2d981e57, 0x442901d9, 0x66030173, 0x00000000}},  // [4710] _bere_, _ima_, _yonk,\n  { {0x2733001d, 0x7ae9008d, 0x2d98001a, 0x00000000}},  //   ảng_, _rret, _cere_,\n  { {0x7ae90363, 0x2d981e58, 0xd5b80089, 0x00000000}},  //   _sret, _dere_, igā_,\n  { {0x7ae9049c, 0x37ac0044, 0x1b050044, 0x00000000}},  //   _pret, ক্তর, _শেষে_,\n  { {0x3ea00047, 0xf1ec00e8, 0x3f990016, 0x00000000}},  //   csit_, _छोड़_, _iesu_,\n  { {0x2ba7001d, 0x2d98185b, 0x7ae9001a, 0x00000000}},  //   ốc_, _gere_, _vret,\n  { {0x44290cfc, 0xb7bd001a, 0x9f4b008e, 0x00000000}},  //   _oma_, liţi, _tocó_,\n  { {0x0138019b, 0x2d810707, 0x44290058, 0x00000000}},  //   ירות_, lche_, _nma_,\n  { {0x7ae9002d, 0x7c3b1e59, 0x2d98014a, 0x00000000}},  //   _uret, _ijur, _yere_,\n  { {0x4429011f, 0x2d811e5a, 0x644d0020, 0x00000000}},  //   _ama_, nche_, _akai,\n  { {0x2d811e5b, 0x44290544, 0x386f0087, 0x00000000}},  //   iche_, _bma_, _tigr_,\n  { {0x44290007, 0xc20900a0, 0x3f990006, 0x00000000}},  //   _cma_, _אה_, _nesu_,\n  { {0xa3b902fb, 0x76480019, 0xd7c80014, 0x00000000}},  //   _चार_, body, _خونه_,\n  { {0x27ff002b, 0x661a054e, 0x644d022b, 0x00000000}},  //   ljun_, chtk, _ekai,\n  { {0x2d981e5c, 0x3f99070c, 0x00000000, 0x00000000}},  //   _rere_, _besu_,   ,\n  { {0x4429011c, 0x2d9801aa, 0x601800d6, 0x00000000}},  //   _gma_, _sere_, _símb,\n  { {0x2d9801b9, 0xee3a026b, 0x3f9901c5, 0x00000000}},  // [4720] _pere_, гна_, _desu_,\n  { {0x823600a2, 0x3ea00632, 0xc3330097, 0x00000000}},  //   _دربا, rsit_, _מוח_,\n  { {0x4429018e, 0x2d980292, 0x3ea000b0, 0x00000000}},  //   _yma_, _vere_, ssit_,\n  { {0x2d980038, 0x3f990afb, 0x3ea0001a, 0x00000000}},  //   _were_, _gesu_, psit_,\n  { {0x7c3b0039, 0x2d981583, 0xcc880014, 0x00000000}},  //   _djur, _tere_, انچه_,\n  { {0x2d810207, 0x2000016c, 0x00000000, 0x00000000}},  //   cche_, ljii_,   ,\n  { {0x3f991e5d, 0x81cb0044, 0x7c3b002b, 0x00000000}},  //   _yesu_, _রোড_, _fjur,\n  { {0x6c361847, 0x7c3b1e5e, 0x00000000, 0x00000000}},  //   _افرا, _gjur,   ,\n  { {0xa3cb03d7, 0xe9a602be, 0x44290253, 0x00000000}},  //   र्फ_, _газп, _rma_,\n  { {0x645f048a, 0x644d0a5c, 0x4429023a, 0x00000000}},  //   _shqi, _skai, _sma_,\n  { {0x7648010a, 0xb7bd000d, 0x799a040f, 0x00000000}},  //   rody, ziţi, _ietw,\n  { {0x6b82001b, 0xa2ad0316, 0x661a00e7, 0x00000000}},  //   ncog, _जिद्, shtk,\n  { {0x44291e5f, 0x3f99025e, 0xdb0001dc, 0x00000000}},  //   _vma_, _resu_, _odmí,\n  { {0x44290082, 0x799a1e60, 0x779202fd, 0x00000000}},  //   _wma_, _jetw, _بیکا,\n  { {0x95830046, 0x6aa20022, 0x799a10e3, 0x00000000}},  //   łącz, hsof, _metw,\n  { {0x44290fb3, 0xb7bd001a, 0x9055007e, 0x00000000}},  //   _uma_, tiţi, івац,\n  { {0x4439098e, 0x6aa200bb, 0x6d5c0095, 0x00000000}},  // [4730] mns_, jsof, _azra,\n  { {0x44391e61, 0x7c290027, 0x2d81101a, 0x00000000}},  //   lns_, _smer, uche_,\n  { {0x4439062a, 0x2d811e62, 0x226400b9, 0x00000000}},  //   ons_, rche_, řské_,\n  { {0x44390073, 0x2d8104e5, 0xafdb00ea, 0x00000000}},  //   nns_, sche_, _sjøf,\n  { {0xa3cb02fb, 0x799a0038, 0x44391e63, 0x00000000}},  //   र्य_, _betw, ins_,\n  { {0x79e700a1, 0xe29c0049, 0x44391e64, 0x00000000}},  //   صوبہ_, נשור, hns_,\n  { {0xf8a9007a, 0x799a01aa, 0x6d4a006b, 0x00000000}},  //   شگاه_, _detw, üfat,\n  { {0x7c291b5b, 0x6b820207, 0xa3cb007d, 0x00000000}},  //   _umer, ccog, र्म_,\n  { {0xe61900aa, 0x27ff09f6, 0xd706007c, 0x00000000}},  //   иди_, rjun_, жные_,\n  { {0xdce50180, 0xf62501fb, 0x799a0116, 0x00000000}},  //   lahı, ідно, _getw,\n  { {0xbf9b009d, 0xdb1901a2, 0xafdb00ea, 0x00000000}},  //   _poêl, gewö, _gjøg,\n  { {0xd7e40245, 0x799a01aa, 0x6b9b01b5, 0x00000000}},  //   _нічо, _zetw, _jeug,\n  { {0x7c390675, 0x2fc900ea, 0x363400a1, 0x00000000}},  //   inwr, dfag_, _کرنس,\n  { {0x44390541, 0x6b9b00bb, 0xca7a0097, 0x00000000}},  //   ans_, _leug, ינשט,\n  { {0x7d030039, 0xaf9a142c, 0x6aa4002b, 0x00000000}},  //   änsl, итах_, ġifi,\n  { {0x6b9b1e65, 0xdddc014a, 0xdfd2006d, 0x00000000}},  //   _neug, _birş, بير_,\n  { {0x3e7f0035, 0x6aa200d2, 0x00000000, 0x00000000}},  // [4740] _cît_, xsof,   ,\n  { {0x7e5601e1, 0x8d56005c, 0x00000000, 0x00000000}},  //   ітац, отеч,   ,\n  { {0x6b9b0270, 0x6aa202d4, 0x799a060b, 0x00000000}},  //   _beug, wsof, _retw,\n  { {0x799a0022, 0x6aa20052, 0x2743007f, 0x00000000}},  //   _setw, tsof, _kūną_,\n  { {0x799a0173, 0x6b9b1e66, 0x6b8201c5, 0x00000000}},  //   _petw, _deug, rcog,\n  { {0x6aa2001e, 0x13e30044, 0x48aa003b, 0x00000000}},  //   rsof, যায়, атим_,\n  { {0xa3cb02d2, 0x6d5c0089, 0xdca601ee, 0x00000000}},  //   र्ड_, _uzra, _фаби,\n  { {0x32c4014a, 0xafdb00ea, 0x799a0145, 0x00000000}},  //   köy_, _gjød, _wetw,\n  { {0x44390030, 0xdcfc0006, 0x00000000, 0x00000000}},  //   vns_, _perė,   ,\n  { {0x6b9b010f, 0x44391e67, 0xd6260025, 0x00000000}},  //   _zeug, wns_, تعبي,\n  { {0xd7fa01ff, 0x7d7b009b, 0x69d80cfd, 0x00000000}},  //   _вул_, יניו, meve,\n  { {0x69d81e68, 0xd7ef0054, 0x44391aff, 0x00000000}},  //   leve, _لكم_, uns_,\n  { {0x78750006, 0xc2b80088, 0x69ca1e69, 0x00000000}},  //   _išva, оляє_, offe,\n  { {0x69d80e69, 0x443901c5, 0x9f4001a2, 0x00000000}},  //   neve, sns_, weiß_,\n  { {0xcf9b00e1, 0x6018000c, 0xdce5006b, 0x00000000}},  //   ија_, _síma, yahı,\n  { {0x69d81dcd, 0x351b00a0, 0xdc3a0477, 0x00000000}},  //   heve, _כוונ, kçıs,\n  { {0xa3cb0201, 0xd83801aa, 0x69d80292, 0x00000000}},  // [4750] र्ण_, _avčk_, keve,\n  { {0x69d8016e, 0x63bd0006, 0x9f42000a, 0x00000000}},  //   jeve, lgsn, _makè_,\n  { {0x69d80129, 0x6b9b048d, 0xa3cb0309, 0x00000000}},  //   deve, _peug, र्थ_,\n  { {0x6018009f, 0x69ca02e7, 0x3eb215b3, 0x00000000}},  //   _tíma, effe, bryt_,\n  { {0x7ccc0089, 0x9a871e6a, 0x3ffa009b, 0x00000000}},  //   vērš, цуел, _הפרע,\n  { {0x69d802ae, 0x628f0009, 0xa3cb0309, 0x00000000}},  //   geve, ipco, र्त_,\n  { {0x5ba700aa, 0x7e7d0190, 0xdcee002b, 0x00000000}},  //   _мраз, _husp, _rebħ,\n  { {0x97d90088, 0x7e75002d, 0x00000000, 0x00000000}},  //   ську_, _hizp,   ,\n  { {0x69d800b5, 0x2be00061, 0xb6a30082, 0x00000000}},  //   beve, _नसता, _giấ,\n  { {0x69d81017, 0x80d20055, 0x61e50428, 0x00000000}},  //   ceve, হিত্, _nahl,\n  { {0x7aeb001c, 0x7e7d070d, 0x7e750288, 0x00000000}},  //   lvgt, _lusp, _mizp,\n  { {0x888300a1, 0x7e7d004a, 0x00000000, 0x00000000}},  //   _ٹیکن, _ousp,   ,\n  { {0x7e7d1a72, 0x5ed30044, 0xb77a009b, 0x00000000}},  //   _nusp, সিডে, _האנש,\n  { {0x61e500e5, 0xa1870ab6, 0x00000000, 0x00000000}},  //   _cahl, збра_,   ,\n  { {0x7e7d010f, 0xe3b20025, 0xc5e10044, 0x00000000}},  //   _ausp, _كرة_, বাদপ,\n  { {0x7e7d0190, 0x7e751e6b, 0xafdb0190, 0x00000000}},  //   _busp, _aizp, _skør,\n  { {0x7e7d0051, 0xd0071662, 0x61e51e6c, 0x00000000}},  // [4760] _cusp, чете_, _fahl,\n  { {0x6d550062, 0x0ea7007e, 0x9f4200b9, 0x00000000}},  //   _byza, якуй_, _jaké_,\n  { {0xdcfc0089, 0x69d8068f, 0xb33b00c4, 0x00000000}},  //   _ierī, veve, maça,\n  { {0x61e5001f, 0x69d80038, 0xb33b100d, 0x00000000}},  //   _zahl, weve, laça,\n  { {0x69d800ab, 0x7e7d00f6, 0x37c30044, 0x00000000}},  //   teve, _gusp, ্যার,\n  { {0x69ca05f2, 0xb33b1e6d, 0xceb4006b, 0x00000000}},  //   uffe, naça, mrə_,\n  { {0x69d80378, 0x69ca018e, 0x7bd91955, 0x00000000}},  //   reve, rffe, bewu,\n  { {0xa2ad04da, 0xebe301a4, 0x60110c72, 0x00000000}},  //   _जिल्, _посп, _påmi,\n  { {0xc6f70147, 0x8c43005e, 0xba3d00b9, 0x00000000}},  //   зных_, _чете, _kvůl,\n  { {0x69d80065, 0x69c10048, 0x6018004a, 0x00000000}},  //   qeve, _gcle, _oímo,\n  { {0x9f4700b9, 0x61e50059, 0xb33b06c0, 0x00000000}},  //   ěné_, _rahl, daça,\n  { {0x61e51e6e, 0x49170104, 0xd838012d, 0x00000000}},  //   _sahl, _מקבל_, _ovči_,\n  { {0x61e5135f, 0xf3ff00c4, 0x00000000, 0x00000000}},  //   _pahl, smão_,   ,\n  { {0x27e60a87, 0x7e7d1e6f, 0xdcfc0089, 0x00000000}},  //   _haon_, _rusp, _cerī,\n  { {0x27e61d8b, 0xdcfc0089, 0x2b520036, 0x00000000}},  //   _kaon_, _derī, żych_,\n  { {0x61e5010f, 0xd3db0025, 0x7e7d01a3, 0x00000000}},  //   _wahl, _طبعا_, _pusp,\n  { {0x644f049a, 0x63ad01aa, 0x02a4007e, 0x00000000}},  // [4770] moci, _idan, _прэм,\n  { {0x628d1e70, 0xb33b00c4, 0x27e60068, 0x00000000}},  //   _itao, caça, _laon_,\n  { {0x63ad0085, 0x00000000, 0x00000000, 0x00000000}},  //   _kdan,   ,   ,\n  { {0x644f0219, 0x79880116, 0x00000000, 0x00000000}},  //   noci, _afdw,   ,\n  { {0x7e7d0103, 0x63ad0258, 0x9f4b00fa, 0x00000000}},  //   _uusp, _mdan, _cocô_,\n  { {0x2d850004, 0x200b0142, 0x660a0023, 0x00000000}},  //   _üle_, _hoci_, _nofk,\n  { {0xa3dd02d2, 0x08d4008b, 0x27e60058, 0x00000000}},  //   ड़ा_, ецыя, _baon_,\n  { {0x63ad000b, 0xd0f8009b, 0x200b0035, 0x00000000}},  //   _ndan, למות_, _joci_,\n  { {0x644f00b4, 0x27e60a49, 0x660a00d9, 0x00000000}},  //   doci, _daon_, _bofk,\n  { {0x63ad0c2c, 0xa3cb02d2, 0x7b740025, 0x00000000}},  //   _adan, र्स_, _أطفا,\n  { {0x04460805, 0x644f00d4, 0x64471ae3, 0x00000000}},  //   денн, foci, čkin,\n  { {0x644f0219, 0x200b040d, 0x60180010, 0x00000000}},  //   goci, _noci_, _címl,\n  { {0x9f4201c8, 0x0cba03d7, 0xe2970783, 0x00000000}},  //   _také_, _उम्म, мая_,\n  { {0x628d0051, 0x63ad002d, 0x2bff0061, 0x00000000}},  //   _dtao, _edan, ळाडू_,\n  { {0xb33b0a0a, 0x6b891e71, 0x644f0036, 0x00000000}},  //   raça, _ofeg, boci,\n  { {0x644f008e, 0x63ad1e72, 0xdb1b004a, 0x00000000}},  //   coci, _gdan, _acuí,\n  { {0x200b0091, 0x6da6003b, 0xb33b1e73, 0x00000000}},  // [4780] _doci_, диза, paça,\n  { {0x6b8904bd, 0x63ad0832, 0x9f49000c, 0x00000000}},  //   _afeg, _zdan, rjað_,\n  { {0xa3cb0316, 0x614600d7, 0x200b0010, 0x00000000}},  //   र्व_, _цена, _foci_,\n  { {0x387e0022, 0x44220f02, 0x00000000, 0x00000000}},  //   _rutr_, nhk_,   ,\n  { {0x27e60051, 0x7bc61e74, 0x0a6a007c, 0x00000000}},  //   _raon_, _ökum, орки_,\n  { {0x2bae001d, 0x09e3012b, 0x2a650082, 0x00000000}},  //   ộc_, вољн, _chlb_,\n  { {0x644f004a, 0x00000000, 0x00000000, 0x00000000}},  //   yoci,   ,   ,\n  { {0x2fc00c7a, 0xb8d601f5, 0x00000000, 0x00000000}},  //   ngig_, _जि_,   ,\n  { {0x644f037e, 0x19c600ed, 0x7c221625, 0x00000000}},  //   voci, _обам, mhor,\n  { {0x7c2202d5, 0xb9930025, 0x63ad0022, 0x00000000}},  //   lhor, _للكب, _sdan,\n  { {0xf9c7089d, 0x27e6006a, 0x628d1e75, 0x00000000}},  //   _تحقی, _taon_, _stao,\n  { {0x7c220181, 0x00000000, 0x00000000, 0x00000000}},  //   nhor,   ,   ,\n  { {0xa3cb006e, 0x3866012d, 0x60180010, 0x00000000}},  //   र्ष_, _ihor_, _címm,\n  { {0x200b01e8, 0x9f590051, 0x32180007, 0x00000000}},  //   _soci_, _tosú_, gkry_,\n  { {0x644f05e1, 0xdfd50a78, 0xdb000030, 0x00000000}},  //   poci, новы, _udmæ,\n  { {0xa3cb0316, 0x63ad01a3, 0xe3d00011, 0x00000000}},  //   र्श_, _udan, _hằng_,\n  { {0x200b1e76, 0x7c220065, 0x628d0020, 0x00000000}},  // [4790] _voci_, dhor, _utao,\n  { {0x78650181, 0x6b890026, 0x7c220203, 0x00000000}},  //   móve, _sfeg, ehor,\n  { {0x2919005f, 0x6aa9000c, 0x7c84003b, 0x00000000}},  //   _əsas_, _svef, вуче,\n  { {0x7c220016, 0xe0d20049, 0xdea101b2, 0x00000000}},  //   ghor, _גײט_, _میری,\n  { {0x2444005a, 0x1dc7013d, 0x3f890022, 0x00000000}},  //   nıma_, _लापत, mcau_,\n  { {0x3ea908a8, 0x00000000, 0x00000000, 0x00000000}},  //   msat_,   ,   ,\n  { {0x3ea91e77, 0x8bc70900, 0x00000000, 0x00000000}},  //   lsat_, _осад,   ,\n  { {0x38660e93, 0x7c221e78, 0x3f8904aa, 0x00000000}},  //   _chor_, chor, ncau_,\n  { {0xe3d0001d, 0x3ea91825, 0x3b5401e0, 0x00000000}},  //   _bằng_, nsat_, _актр,\n  { {0xe3b202fd, 0x2444013f, 0x00000000, 0x00000000}},  //   گرد_, dıma_,   ,\n  { {0x44220146, 0xb33b009d, 0x00000000, 0x00000000}},  //   thk_, faço,   ,\n  { {0xccf2007b, 0x3ea90110, 0x765a1e79, 0x00000000}},  //   אכט_, ksat_, alty,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x386d02e1, 0x3ea90030, 0x44220065, 0x00000000}},  //   lmer_, dsat_, shk_,\n  { {0x25a51446, 0x361a0097, 0x32180007, 0x00000000}},  //   mall_, _מוסד, rkry_,\n  { {0xd0071e6a, 0xafe3003b, 0x386d1e7a, 0x00000000}},  //   несе_, лосл, nmer_,\n  { {0x4420000b, 0x9f420263, 0x63a6096f, 0x00000000}},  // [47a0] _ili_, _ankò_, makn,\n  { {0x386d010f, 0xa3c00309, 0x25a50048, 0x00000000}},  //   hmer_, ुभव_, nall_,\n  { {0x44e1010a, 0x7c220038, 0x319b034e, 0x00000000}},  //   _jų_, thor, _מבינ,\n  { {0xf7670380, 0xc5f80089, 0x386d0095, 0x00000000}},  //   _ما_, nmēr_, jmer_,\n  { {0x7c2209f6, 0xa3b8013d, 0x386d0678, 0x00000000}},  //   rhor, _चयन_, dmer_,\n  { {0x7c220ac7, 0xc333061e, 0x63a60169, 0x00000000}},  //   shor, נוג_, hakn,\n  { {0x44200368, 0xeb9a01f9, 0xe3d0001d, 0x00000000}},  //   _oli_, _нив_, _rằng_,\n  { {0xc6f819f1, 0x6444016c, 0x386d00eb, 0x00000000}},  //   дних_, _njii, gmer_,\n  { {0x25a50002, 0x63a610ed, 0x09bf0044, 0x00000000}},  //   fall_, dakn, _ইসরা,\n  { {0x442017fd, 0xceb300b6, 0x443201a3, 0x00000000}},  //   _ali_, נית_, _amy_,\n  { {0x439502be, 0x4420067e, 0x60180010, 0x00000000}},  //   канс, _bli_, _címk,\n  { {0x7bc2009d, 0x63a6008a, 0x44320554, 0x00000000}},  //   ngou, gakn, _cmy_,\n  { {0x25a504bd, 0xe298008b, 0xb33b1b9e, 0x00000000}},  //   ball_, наў_, raço,\n  { {0x4420021e, 0x171b007b, 0x7af600b0, 0x00000000}},  //   _eli_, _צוגע, äyty,\n  { {0x9f470224, 0xb33b153d, 0x506700ed, 0x00000000}},  //   ění_, paço, етаа,\n  { {0x442005d3, 0x3ea900f8, 0x00000000, 0x00000000}},  //   _gli_, tsat_,   ,\n  { {0x50640269, 0x5fe20204, 0x3f891e7b, 0x00000000}},  // [47b0] утра, _पसरल, rcau_,\n  { {0x645d0065, 0x6ca70106, 0x3ea9014a, 0x00000000}},  //   llsi, ердж, rsat_,\n  { {0x09bf0055, 0x3ea904bd, 0x4420021e, 0x00000000}},  //   _ইসলা, ssat_, _yli_,\n  { {0x2eed0107, 0x3ea900b9, 0xdb1b008e, 0x00000000}},  //   _šefu_, psat_, _acuá,\n  { {0x645d0051, 0x25a50009, 0x00000000, 0x00000000}},  //   ilsi, yall_,   ,\n  { {0xdc13027d, 0xdb000065, 0xf2d40049, 0x00000000}},  //   rşıs, _zemë, רעס_,\n  { {0x25a51cde, 0x63a610ed, 0x6d42001a, 0x00000000}},  //   vall_, yakn, şoar,\n  { {0x200908b3, 0x386d0146, 0x00000000, 0x00000000}},  //   njai_, umer_,   ,\n  { {0x25a50292, 0x3a7505f6, 0x63a60039, 0x00000000}},  //   tall_, _алар, vakn,\n  { {0x386d1c95, 0x645d037f, 0x644400d9, 0x00000000}},  //   smer_, elsi, _sjii,\n  { {0x442001aa, 0x63a6016e, 0x25a5192b, 0x00000000}},  //   _pli_, takn, rall_,\n  { {0x25a50203, 0x66b5091b, 0xe7870b21, 0x00000000}},  //   sall_, _абду, _чужо,\n  { {0xe3b801f6, 0x27ed014a, 0x63a613ef, 0x00000000}},  //   ğı_, mden_, rakn,\n  { {0xe3b80279, 0x27ed1e7c, 0x44e10006, 0x00000000}},  //   şı_, lden_, _tų_,\n  { {0x69c31e7d, 0x44200066, 0x2056005e, 0x00000000}},  //   igne, _tli_, втар,\n  { {0x27ed1e7e, 0x78480224, 0x4420011c, 0x00000000}},  //   nden_, pěve, _uli_,\n  { {0x27ed021e, 0x26cd008e, 0x63a40e3f, 0x00000000}},  // [47c0] iden_, nteo_, _iein,\n  { {0x63a40e53, 0x27ed021e, 0x764102e1, 0x00000000}},  //   _hein, hden_, nnly,\n  { {0x63a4001f, 0x6018029a, 0xdb000065, 0x00000000}},  //   _kein, _lími, _temë,\n  { {0x27ed02ae, 0x61ee123c, 0x69c40061, 0x00000000}},  //   jden_, ldbl, _राही,\n  { {0x63a40109, 0x27ed1e7f, 0xa3d40201, 0x00000000}},  //   _mein, dden_, स्य_,\n  { {0xbda505d4, 0x61ee0210, 0x27ed1e80, 0x00000000}},  //   _محفو, ndbl, eden_,\n  { {0x7d030073, 0x27ed00bb, 0x885800e2, 0x00000000}},  //   änst, fden_, никс_,\n  { {0x63a41e81, 0x6b850054, 0x27ed13ea, 0x00000000}},  //   _nein, _مشكل, gden_,\n  { {0x7e7c0ecb, 0x6d5c1e82, 0x661a012d, 0x00000000}},  //   _kirp, _hyra, tktk,\n  { {0x4b550265, 0x27ed0e9e, 0xdb001e83, 0x00000000}},  //   _съст, aden_, _remè,\n  { {0x63a40953, 0x24e3008b, 0xdb0001aa, 0x00000000}},  //   _bein, ацяг, _semè,\n  { {0x61fe0263, 0x63a41e84, 0x6d5c02e1, 0x00000000}},  //   _anpl, _cein, _myra,\n  { {0x63a4001f, 0x59c90164, 0x6d5c0203, 0x00000000}},  //   _dein, _रामर, _lyra,\n  { {0x752d00b9, 0xe717009b, 0x24590161, 0x00000000}},  //   _řaze, _בחדר_, vému_,\n  { {0x63a40d72, 0xdb0000d4, 0x2fd20016, 0x00000000}},  //   _fein, _demé, ffyg_,\n  { {0x63a400b5, 0x61fe1635, 0x7e7c00ab, 0x00000000}},  //   _gein, _enpl, _airp,\n  { {0x4439010a, 0x62840919, 0x7e7c0032, 0x00000000}},  // [47d0] mis_, _guio, _birp,\n  { {0x27ed011f, 0x63a4002d, 0x6d5c0145, 0x00000000}},  //   zden_, _zein, _byra,\n  { {0x6b8b001c, 0x27ed0943, 0x7e7c0016, 0x00000000}},  //   tcgg, yden_, _dirp,\n  { {0x44391750, 0xc4d3007b, 0x6d5c0039, 0x00000000}},  //   nis_, יגע_, _dyra,\n  { {0x4439129a, 0x7e7c0555, 0x6d5c000c, 0x00000000}},  //   iis_, _firp, _eyra,\n  { {0x27ed02c2, 0xa969003b, 0xdd94007e, 0x00000000}},  //   wden_, нила_, _вары,\n  { {0x44391b18, 0x69c31e85, 0x6d5c0675, 0x00000000}},  //   kis_, rgne, _gyra,\n  { {0x27ed0dcd, 0x44391e86, 0x317c00b6, 0x00000000}},  //   uden_, jis_, ורומ,\n  { {0x27ed15a6, 0x9f4200c4, 0x6d5c0065, 0x00000000}},  //   rden_, _kaká_, _zyra,\n  { {0x63a40109, 0xf9930151, 0x27ed010f, 0x00000000}},  //   _sein, _ضبط_, sden_,\n  { {0x44391987, 0xf992012f, 0x63a400f4, 0x00000000}},  //   fis_, _הרב_, _pein,\n  { {0x6018000c, 0x00000000, 0x00000000, 0x00000000}},  //   _tími,   ,   ,\n  { {0x8c1a00b6, 0x62841a34, 0x63bb000c, 0x00000000}},  //   גורי, _quio, óuna,\n  { {0x63a4014f, 0x44391049, 0x7ae90020, 0x00000000}},  //   _wein, ais_, _mset,\n  { {0x443904be, 0x63a40004, 0x412a0e75, 0x00000000}},  //   bis_, _tein, хово_,\n  { {0x44391e87, 0xd5cf001c, 0x7ae9003b, 0x00000000}},  //   cis_, त्रज, _oset,\n  { {0x2d9601ee, 0x6d5c0aa4, 0x00000000, 0x00000000}},  // [47e0] грес, _syra,   ,\n  { {0x6d5c0142, 0x61fe0133, 0xee37003b, 0x00000000}},  //   _pyra, _unpl, гну_,\n  { {0xa3cb0164, 0x7ae9021e, 0x27330011, 0x00000000}},  //   र्क_, _aset, ảnh_,\n  { {0x6d5c1e88, 0xc1780006, 0x201e0089, 0x00000000}},  //   _vyra, žės_, ītis_,\n  { {0x6d5c0036, 0x1b170044, 0x7e7c0006, 0x00000000}},  //   _wyra, _দেবে_, _tirp,\n  { {0xa3d402f4, 0x6447016c, 0xb8850142, 0x00000000}},  //   स्त_, čkii, zlíš,\n  { {0x7ae90047, 0x44391566, 0x98a3003b, 0x00000000}},  //   _eset, yis_, бије,\n  { {0x4439010f, 0x7981018e, 0xb81400ec, 0x00000000}},  //   xis_, _eglw, рдиј,\n  { {0x44391e89, 0xdd3a00e5, 0x00000000, 0x00000000}},  //   vis_, _făţa,   ,\n  { {0x4439018e, 0x68ed0036, 0xdb231430, 0x00000000}},  //   wis_, łada, _órái,\n  { {0x4439010a, 0x97c6023c, 0xdb090d7a, 0x00000000}},  //   tis_, _مقاو, _ideá,\n  { {0x443908ea, 0x661d0023, 0x00000000, 0x00000000}},  //   uis_, ëskr,   ,\n  { {0xa3cb007d, 0x00000000, 0x00000000, 0x00000000}},  //   र्ग_,   ,   ,\n  { {0x65940783, 0xf773009b, 0x00000000, 0x00000000}},  //   _таку, _פקס_,   ,\n  { {0xa159003b, 0x66710014, 0x00000000, 0x00000000}},  //   таву_, _بگير,   ,\n  { {0x44390023, 0x9f4b004a, 0x00000000, 0x00000000}},  //   qis_, _hacé_,   ,\n  { {0x9f5900f6, 0x1e35007e, 0x00000000, 0x00000000}},  // [47f0] _rosó_, анаў,   ,\n  { {0xafdb00ea, 0x7ae90022, 0x23690173, 0x00000000}},  //   _kjøk, _rset, _izaj_,\n  { {0x7ae90066, 0x9f59004a, 0xa8070095, 0x00000000}},  //   _sset, _posó_, ngıç,\n  { {0xf41f00b0, 0xac740014, 0x1dc70061, 0x00000000}},  //   nkä_, مانش, _लावत,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xa3cc007d, 0x48b51192, 0x9f49102e, 0x00000000}},  //   _लाभ_, ащит, ndaí_,\n  { {0x6d430051, 0xf41f0052, 0x00000000, 0x00000000}},  //   únad, kkä_,   ,\n  { {0xc8880025, 0xb8cd006e, 0xa8020279, 0x00000000}},  //   دخول_, _कब_, şınm,\n  { {0xf745004c, 0x78a40091, 0x2a7e0022, 0x00000000}},  //   репо, ćiva, _fitb_,\n  { {0xe61601ab, 0x00000000, 0x00000000, 0x00000000}},  //   иды_,   ,   ,\n  { {0x998406ea, 0x64a51e8a, 0xa446004d, 0x00000000}},  //   _المو, јама, инод,\n  { {0xf77004e1, 0xdcfc002b, 0x7bc6000c, 0x00000000}},  //   _کام_, _jerġ, _ökut,\n  { {0x2bd70365, 0x72c30930, 0x32130471, 0x00000000}},  //   ण्या, обяз, _boxy_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x463a007b, 0x505a01ab, 0x00000000, 0x00000000}},  //   _בעסע, вшая_,   ,\n  { {0xdb0b000c, 0xd3ba007e, 0x09af0044, 0x00000000}},  //   yggð, _рукі_, চ্চা,\n\n  { {0xe5a30011, 0x27ef000c, 0x321304d2, 0x00000000}},  // [4800] _điệ, _magn_, _foxy_,\n  { {0x2eeb0203, 0xbda50025, 0x9f590026, 0x00000000}},  //   _dscf_, محمو, _posò_,\n  { {0xdddd001a, 0xdcfc01f3, 0x91bb009b, 0x00000000}},  //   _susţ, _berġ, _במיי,\n  { {0xf1d201f5, 0x60de00e7, 0x2a7e0009, 0x00000000}},  //   द्रन, _ippm, _sitb_,\n  { {0xa3cb02d2, 0x64460dde, 0xe809006e, 0x00000000}},  //   र्ट_, inki, वाना_,\n  { {0xca56003b, 0x7c96005e, 0x3ceb00b0, 0x00000000}},  //   штењ, _врац, äivä_,\n  { {0x2b4d001c, 0x68ed0036, 0x2c67006c, 0x00000000}},  //   _exec_, ładn, sõda_,\n  { {0xf093009b, 0x6018000c, 0x22580288, 0x00000000}},  //   חנה_, _tímu, hork_,\n  { {0x25a70061, 0x60de0022, 0xafdb00ea, 0x00000000}},  //   _benl_, _lppm, _sjøk,\n  { {0x7afd000c, 0x225801ee, 0x644600b0, 0x00000000}},  //   _ásta, jork_, enki,\n  { {0xf41f00b0, 0x77ca007e, 0x00000000, 0x00000000}},  //   tkä_, _алег_,   ,\n  { {0x38600051, 0x27ef1e8b, 0x00000000, 0x00000000}},  //   _óir_, _gagn_,   ,\n  { {0xe6940025, 0x63b60016, 0x69cd0061, 0x00000000}},  //   _التد, _ddyn, _सामी,\n  { {0x200214fe, 0xa3cb0316, 0x27e41e8c, 0x00000000}},  //   _anki_, र्ज_, lemn_,\n  { {0x26c40006, 0x9f490051, 0x6296042a, 0x00000000}},  //   lumo_, rdaí_, _etyo,\n  { {0xcf98012b, 0x02a70057, 0x63b60036, 0x00000000}},  //   ију_, _кром, _gdyn,\n  { {0xf7730049, 0xe4d800a1, 0x26c40006, 0x00000000}},  // [4810] ַקע_, _شوکت_, numo_,\n  { {0x225800f6, 0x6018000c, 0x20021e8d, 0x00000000}},  //   cork_, _símt, _enki_,\n  { {0x63b60016, 0xa3d40164, 0x00000000, 0x00000000}},  //   _ydyn, स्व_,   ,\n  { {0xa3cb0164, 0x69da010f, 0xccf8003b, 0x00000000}},  //   र्च_, _abte, шћу_,\n  { {0x2ef4008b, 0xe21400d3, 0x784800b9, 0x00000000}},  //   _дзяр, _طبیع, těvn,\n  { {0x9ce700a1, 0xa802005a, 0xafdb00ea, 0x00000000}},  //   _پورے_, şılm, _sjøh,\n  { {0x601800b9, 0x2b8d0051, 0xdcfc002b, 0x00000000}},  //   _tímt, _cócó_, _terġ,\n  { {0x9f950004, 0x26c41c5e, 0x68ed0036, 0x00000000}},  //   _nüüd_, fumo_, łado,\n  { {0x26c40006, 0x27ef1e8e, 0x2258004a, 0x00000000}},  //   gumo_, _vagn_, york_,\n  { {0x7afb002d, 0x2480006c, 0x06090152, 0x00000000}},  //   _irut, _siim_, унок_,\n  { {0xedf90044, 0x24960014, 0x2480010e, 0x00000000}},  //   _আকাশ_, ینید_, _piim_,\n  { {0xe29a03e0, 0x225800ab, 0x2e24000c, 0x00000000}},  //   лам_, work_, _nöfn_,\n  { {0x225807f9, 0x00000000, 0x00000000, 0x00000000}},  //   tork_,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x01660888, 0x444700a1, 0x14db0061, 0x00000000}},  //   скво, _گروہ, _बहिण,\n  { {0xdfd20380, 0x442b00f6, 0xa3ba083e, 0x00000000}},  //   ثير_, chc_, _صابر_,\n  { {0xa06700e3, 0x92b60b03, 0xc4480014, 0x00000000}},  // [4820] сата_, _احبا, _میگن_,\n  { {0xe8090204, 0xdcfc0089, 0x60180010, 0x00000000}},  //   वाडा_, _agrā, _címr,\n  { {0xa63a007b, 0x7afb006c, 0x60de0039, 0x00000000}},  //   נגער, _arut, _uppm,\n  { {0x7afb09c8, 0xd00a017f, 0x00000000, 0x00000000}},  //   _brut, _семе_,   ,\n  { {0x7afb002a, 0xdb000325, 0xdb0b009d, 0x00000000}},  //   _crut, _temí, nagè,\n  { {0xed5a012b, 0x6d43002a, 0x291c0006, 0x00000000}},  //   _бог_, únac, tyva_,\n  { {0x442201a3, 0x6da30478, 0x7afb010e, 0x00000000}},  //   kkk_, _хиса, _erut,\n  { {0x7afb0a15, 0x26c40006, 0x69cd0204, 0x00000000}},  //   _frut, tumo_, _साथी,\n  { {0xfaa30887, 0x7afb1e8f, 0x00000000, 0x00000000}},  //   _нато, _grut,   ,\n  { {0x26c4010a, 0xba23025f, 0x20f81e90, 0x00000000}},  //   rumo_, _едук, _oči_,\n  { {0x26c40181, 0x8afd00b9, 0xba3d00b9, 0x00000000}},  //   sumo_, _vyře, _tvůr,\n  { {0x69d80007, 0x00000000, 0x00000000, 0x00000000}},  //   lfve,   ,   ,\n  { {0xcc3b007b, 0xb8570025, 0x25080014, 0x00000000}},  //   רעכט, _النص_, _چربی_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x463b007b, 0x2444006b, 0x765a0a3d, 0x00000000}},  //   _געגע, zımi_, moty,\n  { {0x44220145, 0x7c2200b4, 0x00000000, 0x00000000}},  //   ckk_, jkor,   ,\n  { {0x4429000b, 0x7c220059, 0x63af0036, 0x00000000}},  // [4830] _ila_, dkor, macn,\n  { {0x629d1e91, 0x765a0133, 0x3e6f006c, 0x00000000}},  //   mpso, noty, küte_,\n  { {0x44290007, 0x7afb0051, 0x443b0026, 0x00000000}},  //   _kla_, _srut, _kmq_,\n  { {0x63af037e, 0x7afb011c, 0x442900ca, 0x00000000}},  //   nacn, _prut, _jla_,\n  { {0xd90f00d3, 0x5ba8008b, 0x6e950242, 0x00000000}},  //   کیا_, скім_, _фигу,\n  { {0x6e9401e0, 0x442900b0, 0xe9d8007e, 0x00000000}},  //   _хиру, _lla_, йкі_,\n  { {0x44291e92, 0x1b170055, 0x44221e93, 0x00000000}},  //   _ola_, _দেশে_, ykk_,\n  { {0x7c220039, 0xe739007c, 0x1bd4005e, 0x00000000}},  //   ckor, ией_, _нося,\n  { {0x7afb0169, 0x7c29014a, 0x63af0107, 0x00000000}},  //   _urut, _iler, dacn,\n  { {0xc8ab0265, 0x765a0dbf, 0x9f4b008e, 0x00000000}},  //   _бъде_, goty, _nací_,\n  { {0x4429002b, 0xf3e601be, 0x7c291e94, 0x00000000}},  //   _bla_, ожно, _kler,\n  { {0x7bcb020c, 0xc20900b6, 0x443b0207, 0x00000000}},  //   nggu, _בה_, _cmq_,\n  { {0x44290df0, 0x61e70010, 0x44220943, 0x00000000}},  //   _dla_, fejl, rkk_,\n  { {0x442902d5, 0x7c290b32, 0xdb0b00f4, 0x00000000}},  //   _ela_, _ller, gagé,\n  { {0x7c29002d, 0x25ee0061, 0x60c7016c, 0x00000000}},  //   _oler, _असती_, gujm,\n  { {0x41db0061, 0xff260131, 0x00000000, 0x00000000}},  //   म्बस, омбо,   ,\n  { {0xf99f0011, 0xfe05013d, 0x7c220056, 0x00000000}},  // [4840] _đèn_, रांस_, vkor,\n  { {0xdb000428, 0x7c3b0032, 0x26c20091, 0x00000000}},  //   _nemá, _amur, škog_,\n  { {0x7c291e95, 0x4177025a, 0x20f80825, 0x00000000}},  //   _bler, _واپس, _uči_,\n  { {0xab660a27, 0x228f0279, 0x656301d6, 0x00000000}},  //   овел, _yük_, _mynh,\n  { {0x7c220039, 0x65631e96, 0x3ce60142, 0x00000000}},  //   rkor, _lynh, ňov_,\n  { {0xceb4006b, 0x7c29060a, 0x00000000, 0x00000000}},  //   msə_, _eler,   ,\n  { {0x7c29044f, 0x082a0d03, 0xdb000211, 0x00000000}},  //   _fler, иции_, _demá,\n  { {0xd6da00aa, 0xdb000129, 0x7c29000c, 0x00000000}},  //   ато_, _temà, _gler,\n  { {0x6996005e, 0xceb4006b, 0x00000000, 0x00000000}},  //   _дрех, nsə_,   ,\n  { {0x442900bb, 0x7c3b012d, 0x19c30088, 0x00000000}},  //   _sla_, _zmur, _обум,\n  { {0x442904bd, 0x6563018e, 0x61e70030, 0x00000000}},  //   _pla_, _cynh, vejl,\n  { {0xceb4013f, 0x00000000, 0x00000000, 0x00000000}},  //   ksə_,   ,   ,\n  { {0x2813031d, 0xdb0900d9, 0x00000000, 0x00000000}},  //   _تونس, _reeë,   ,\n  { {0xe5340783, 0x4429011c, 0x601800d4, 0x00000000}},  //   _нель, _wla_, _símp,\n  { {0x6563018e, 0x44290059, 0x63af0ed9, 0x00000000}},  //   _gynh, _tla_, pacn,\n  { {0x60c7003b, 0x36340014, 0x6f0d0129, 0x00000000}},  //   rujm, _برچس, txac,\n  { {0x645d09cf, 0x628f0009, 0x2328003b, 0x00000000}},  // [4850] mosi, qqco, _моћи_,\n  { {0x645d000d, 0x7c3b0006, 0xdd9b0088, 0x00000000}},  //   losi, _smur, рша_,\n  { {0x63ad0169, 0x69c4007d, 0x12780025, 0x00000000}},  //   _kean, _राजी, _بحيث_,\n  { {0x645d0091, 0x515a009b, 0xdb000b33, 0x00000000}},  //   nosi, _לכתו, _semá,\n  { {0x7c291e97, 0xfaa50265, 0x63ad0038, 0x00000000}},  //   _vler, чало, _mean,\n  { {0x645d018e, 0x7e79007b, 0x628500b9, 0x00000000}},  //   hosi, _לאָז, _jiho,\n  { {0x645d00b0, 0xa3cc007d, 0x201900ca, 0x00000000}},  //   kosi, _लाल_, _kosi_,\n  { {0x1bb8004b, 0x7c3b0061, 0x63ad0207, 0x00000000}},  //   _واقع_, _umur, _nean,\n  { {0x645d10d9, 0xdb000489, 0xd706007c, 0x00000000}},  //   dosi, _temá, зные_,\n  { {0x80e10055, 0xdb000030, 0x628501ed, 0x00000000}},  //   _পছন্, _bemæ, _niho,\n  { {0x63ad05c6, 0x6fcb0061, 0x1ddd0309, 0x00000000}},  //   _bean, िलां, न्यत,\n  { {0x63ad002a, 0x645d04be, 0x20190091, 0x00000000}},  //   _cean, gosi, _nosi_,\n  { {0x63ad1e98, 0x62851e99, 0x050b0044, 0x00000000}},  //   _dean, _biho, শনের_,\n  { {0x1dc7001c, 0xf675007b, 0xf77004e8, 0x00000000}},  //   _लागत, _צײַט_, _شان_,\n  { {0x7641006a, 0x20190020, 0x645d01c5, 0x00000000}},  //   mily, _bosi_, bosi,\n  { {0xa3ad03d7, 0x20190207, 0x6b890093, 0x00000000}},  //   गरण_, _cosi_, _ngeg,\n  { {0x20191e9a, 0x1b200044, 0x6285002b, 0x00000000}},  // [4860] _dosi_, _মেনে_, _fiho,\n  { {0xceb4006b, 0x99c60044, 0x63ad0032, 0x00000000}},  //   rsə_, _এস্ক, _zean,\n  { {0xceb4006b, 0x20190066, 0x00000000, 0x00000000}},  //   ssə_, _fosi_,   ,\n  { {0x6285002d, 0x00000000, 0x00000000, 0x00000000}},  //   _ziho,   ,   ,\n  { {0x76411e9b, 0x00000000, 0x00000000, 0x00000000}},  //   kily,   ,   ,\n  { {0x78480224, 0x69d5011f, 0xa8a601fb, 0x00000000}},  //   pěvk, _özel, прик,\n  { {0xfce3012b, 0x645d0020, 0x20190058, 0x00000000}},  //   _поро, yosi, _yosi_,\n  { {0xafdb0637, 0x00000000, 0x00000000, 0x00000000}},  //   _hjør,   ,   ,\n  { {0x2bd1001c, 0x63ad003b, 0x6aa9018e, 0x00000000}},  //   _हाता, _rean, _gwef,\n  { {0x63ad002a, 0x764101aa, 0x3ea01e9c, 0x00000000}},  //   _sean, gily, ipit_,\n  { {0xa96a004b, 0x645d083a, 0x63ad0d29, 0x00000000}},  //   _امام_, tosi, _pean,\n  { {0xb8650151, 0x9f400211, 0x69dc0039, 0x00000000}},  //   _قانو, ndió_, _öreb,\n  { {0xe80903d7, 0x7641014a, 0xa6fa0a4f, 0x00000000}},  //   वारा_, bily, _دعاء_,\n  { {0x321a1e9d, 0x645d006b, 0xdcf7006b, 0x00000000}},  //   _copy_, sosi, zaxı,\n  { {0x63ad002a, 0x20191460, 0x92cd0044, 0x00000000}},  //   _tean, _posi_, রবে_,\n  { {0xc5f80089, 0x2d98000a, 0x248e009d, 0x00000000}},  //   ldē_, _afre_, _iufm_,\n  { {0x62850d5d, 0xafdb1e9e, 0x3ea0011c, 0x00000000}},  // [4870] _tiho, _bjør, gpit_,\n  { {0xc5f80089, 0x6b8900d9, 0x00000000, 0x00000000}},  //   ndē_, _sgeg,   ,\n  { {0x201900b0, 0xa3d4006e, 0xa298009e, 0x00000000}},  //   _tosi_, स्क_, _وئیر_,\n  { {0x22430662, 0x764104cd, 0x92030089, 0x00000000}},  //   lijk_, zily, žādi,\n  { {0xdcf7006b, 0xafdb00ea, 0xb6a30082, 0x00000000}},  //   raxı, _fjør, _chấ,\n  { {0x9b04008b, 0xafdb0292, 0x00000000, 0x00000000}},  //   эзід, _gjør,   ,\n  { {0x61f70061, 0xe8090309, 0x23bf013d, 0x00000000}},  //   _maxl, वाला_, ्लाद,\n  { {0xccf200b6, 0xdb000210, 0x76410016, 0x00000000}},  //   _בכל_, _bemä, wily,\n  { {0x224302ae, 0x997e000d, 0x76410058, 0x00000000}},  //   kijk_, tăţi_, tily,\n  { {0x20d7005a, 0x7a2f00ea, 0x00000000, 0x00000000}},  //   kçi_, _bøte,   ,\n  { {0x7641011c, 0xa25b02d5, 0xa3ea007e, 0x00000000}},  //   rily, trôn, одна_,\n  { {0x4ad101f5, 0x76411bd3, 0xe894007e, 0x00000000}},  //   _समाव, sily, _чаць,\n  { {0xdb00010f, 0x76410058, 0x00000000, 0x00000000}},  //   _gemä, pily,   ,\n  { {0xb77a00b3, 0x14c5013d, 0x052900e2, 0x00000000}},  //   _ואנש, _विपण, _молк_,\n  { {0x3f990146, 0x987d1d83, 0x7a2f0146, 0x00000000}},  //   _bfsu_, lçın_, _gøte,\n  { {0x98a70036, 0xafdb068f, 0x3ea000e0, 0x00000000}},  //   czną_, _amøb, tpit_,\n  { {0x850500a1, 0x44770049, 0x3ea0013e, 0x00000000}},  // [4880] _روکن, _קעפל_, upit_,\n  { {0xae0e013d, 0x3ea00ff8, 0xdddc0006, 0x00000000}},  //   साधन_, rpit_, _birš,\n  { {0x3ea0014a, 0x00000000, 0x00000000, 0x00000000}},  //   spit_,   ,   ,\n  { {0x6fb2013d, 0x3ea00a74, 0xd8380173, 0x00000000}},  //   _ज़िं, ppit_, _jwčt_,\n  { {0x8db601fb, 0x9f40008e, 0x25ee0309, 0x00000000}},  //   _осві, rdió_, _असली_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xda650379, 0x2611007d, 0x35a7006e, 0x00000000}},  //   راهي, तानी_, _ग़ज़,\n  { {0x7d030030, 0xb6f4025f, 0xb6a30082, 0x00000000}},  //   ænse, езиј, _thấ,\n  { {0xc6f70147, 0x6b6302be, 0x78ad0091, 0x00000000}},  //   дных_, _акта, ćava,\n  { {0x6aa20197, 0x7c290066, 0x00000000, 0x00000000}},  //   mpof, _ċeri,   ,\n  { {0x994a039d, 0x6e20001a, 0x00000000, 0x00000000}},  //   _بلال_, _îmbu,   ,\n  { {0x61f7005f, 0x224300b5, 0x69da006e, 0x00000000}},  //   _saxl, wijk_, प्री,\n  { {0xe298008b, 0xd8380173, 0x00000000, 0x00000000}},  //   маў_, _dwčt_,   ,\n  { {0x20d7005d, 0x7d030afc, 0x78530035, 0x00000000}},  //   tçi_, ånsk, măva,\n  { {0x224302ae, 0xd01b01ee, 0x00000000, 0x00000000}},  //   rijk_, офа_,   ,\n  { {0x4ea702a8, 0x1af40044, 0x20d71e9f, 0x00000000}},  //   држа, _আপনে_, rçi_,\n  { {0x20d70477, 0x799a00d9, 0x00000000, 0x00000000}},  // [4890] sçi_, _oftw,   ,\n  { {0xff04007c, 0xbd6b007c, 0x7c3a0006, 0x00000000}},  //   ъясн, орее_, _įtra,\n  { {0x644f0026, 0x2489000a, 0x22410288, 0x00000000}},  //   onci, _kiam_, _imhk_,\n  { {0xdddc010a, 0x447c007b, 0xdfa70025, 0x00000000}},  //   _virš, ַנגע, _تحدي,\n  { {0xa3d40164, 0xd6c6002c, 0x644f0051, 0x00000000}},  //   स्ट_, _حق_, inci,\n  { {0x24890051, 0x9f4200b9, 0x644f0009, 0x00000000}},  //   _liam_, _jaký_, hnci,\n  { {0x1b170055, 0x9f40009f, 0xe94600a1, 0x00000000}},  //   _দেখে_, ldið_, ٹروی,\n  { {0x3e74010f, 0xa25b00fa, 0x00000000, 0x00000000}},  //   räte_, drôm,   ,\n  { {0xf62501e0, 0x9f40009f, 0x0a6b025f, 0x00000000}},  //   едпо, ndið_, _држи_,\n  { {0xa3e202d2, 0x644f0211, 0xe6110025, 0x00000000}},  //   न्न_, enci, اشة_,\n  { {0xd46a0cee, 0x00000000, 0x00000000, 0x00000000}},  //   зине_,   ,   ,\n  { {0x644f0045, 0x00000000, 0x00000000, 0x00000000}},  //   gnci,   ,   ,\n  { {0xe72e10d8, 0x27ed1ea0, 0x87270774, 0x00000000}},  //   _се_, meen_, _تعام,\n  { {0x27ed02ae, 0x200b0197, 0x2369000a, 0x00000000}},  //   leen_, _anci_, _dyaj_,\n  { {0xafe60373, 0x42d00044, 0xc076003b, 0x00000000}},  //   новл, িবেশ, ећањ,\n  { {0x27ed021e, 0x24890011, 0xdfd20025, 0x00000000}},  //   neen_, _giam_, طيط_,\n  { {0x64460149, 0x00000000, 0x00000000, 0x00000000}},  // [48a0] miki,   ,   ,\n  { {0x64461a71, 0xe0da012b, 0xd12f00a1, 0x00000000}},  //   liki, _ево_, جمہ_,\n  { {0x61d700bd, 0x27ed1ea1, 0x61ee1ea2, 0x00000000}},  //   _אויף_, keen_, mebl,\n  { {0x6446000b, 0xdb1b008e, 0x27ed1ea3, 0x00000000}},  //   niki, _acuñ, jeen_,\n  { {0xa3e20201, 0x27ed1ea4, 0x59f80ae0, 0x00000000}},  //   न्य_, deen_, деля_,\n  { {0x61ee0190, 0x64461158, 0x78ad012d, 0x00000000}},  //   nebl, hiki, ćavn,\n  { {0x644611ad, 0x27ed0190, 0x2ef20016, 0x00000000}},  //   kiki, feen_, lwyf_,\n  { {0x683e001e, 0x27ed1cbf, 0x64460020, 0x00000000}},  //   līdz, geen_, jiki,\n  { {0xc5f8001e, 0x6446033b, 0x61ee01d6, 0x00000000}},  //   klēt_, diki, kebl,\n  { {0x2c75044f, 0x248901a3, 0x60180010, 0x00000000}},  //   råde_, _siam_, _címz,\n  { {0x64461ea5, 0xa3cc02fb, 0x27ed044a, 0x00000000}},  //   fiki, _लाख_, been_,\n  { {0x64461ea6, 0x27ed0c67, 0x00000000, 0x00000000}},  //   giki, ceen_,   ,\n  { {0x61ee01c3, 0x644f00bb, 0x248900fa, 0x00000000}},  //   febl, rnci, _viam_,\n  { {0x61ee010f, 0x00000000, 0x00000000, 0x00000000}},  //   gebl,   ,   ,\n  { {0x2bd103d7, 0x644600e7, 0x248900e5, 0x00000000}},  //   _हाला, biki, _tiam_,\n  { {0x6446013f, 0x7a2f00ea, 0x68fc00c4, 0x00000000}},  //   ciki, _møta, _árdu,\n  { {0xe7e20204, 0xc275025f, 0x9f420142, 0x00000000}},  // [48b0] क्या_, _илиј, _taký_,\n  { {0x04b7026c, 0x6b9b0197, 0x27ed0032, 0x00000000}},  //   _تھیں_, _sfug, zeen_,\n  { {0x27ed0a18, 0x00000000, 0x00000000, 0x00000000}},  //   yeen_,   ,   ,\n  { {0x09c90061, 0x683e0006, 0x27ed0032, 0x00000000}},  //   रल्य, būdi, xeen_,\n  { {0x27ed1ea7, 0x9f590065, 0x00000000, 0x00000000}},  //   veen_, _masë_,   ,\n  { {0x7bc00089, 0xceb2007b, 0x64460006, 0x00000000}},  //   _edmu, _דיך_, ziki,\n  { {0x27ed021e, 0xed15026c, 0x644601aa, 0x00000000}},  //   teen_, _جہاں_, yiki,\n  { {0x6446002d, 0x6e20001a, 0xac77025a, 0x00000000}},  //   xiki, _îmbr, _سازش,\n  { {0x27ed0f12, 0x6b8400ca, 0x28cf01f5, 0x00000000}},  //   reen_, žigr, संहि,\n  { {0x27ed021e, 0x26c30059, 0x644604fd, 0x00000000}},  //   seen_, čjo_, wiki,\n  { {0x6446010a, 0x61ee0146, 0x853c0006, 0x00000000}},  //   tiki, vebl, lbėj,\n  { {0x61ee011c, 0x29051ea8, 0xa3cc013d, 0x00000000}},  //   webl, _irla_, _लाओ_,\n  { {0x386d011f, 0x61ee037f, 0x26cd008e, 0x00000000}},  //   mler_, tebl, queo_,\n  { {0x6446000b, 0x6682026c, 0x387f1ea9, 0x00000000}},  //   siki, _پیپل, lmur_,\n  { {0x386d00eb, 0xa06a00e3, 0x4f9600ed, 0x00000000}},  //   oler_, дава_, врзу,\n  { {0x386d011f, 0x61ee0343, 0x7ae9021e, 0x00000000}},  //   nler_, sebl, _opet,\n  { {0xc7b2007b, 0xa06708d6, 0x60ce0061, 0x00000000}},  // [48c0] יבן_, тата_, subm,\n  { {0x44201eaa, 0x386d001f, 0xdee3004d, 0x00000000}},  //   _hoi_, hler_, рофи,\n  { {0x386d011f, 0x387f0169, 0xdd8f05f3, 0x00000000}},  //   kler_, kmur_, زون_,\n  { {0x351a007b, 0x69c10016, 0x386d0030, 0x00000000}},  //   ווענ, _adle, jler_,\n  { {0x44201eab, 0x386d05b7, 0x80e203d7, 0x00000000}},  //   _moi_, dler_, _पहुं,\n  { {0x44201eac, 0x386d010f, 0xa3e2007d, 0x00000000}},  //   _loi_, eler_, न्त_,\n  { {0x386d1ead, 0x61e3014a, 0x44320010, 0x00000000}},  //   fler_, _önle, _oly_,\n  { {0x4420061a, 0x386d0cb2, 0xc6f8019d, 0x00000000}},  //   _noi_, gler_, ених_,\n  { {0xf76f0025, 0xa3cc0164, 0xe9da003b, 0x00000000}},  //   ياً_, _लाज_, _ока_,\n  { {0x386d0302, 0xceb3009b, 0x44200051, 0x00000000}},  //   aler_, סית_, _aoi_,\n  { {0x386d0030, 0x44320343, 0x2c750039, 0x00000000}},  //   bler_, _bly_, låda_,\n  { {0x44200011, 0x07a6012b, 0x6d430051, 0x00000000}},  //   _coi_, _радн, únai,\n  { {0x44201eae, 0x27e61eaf, 0x442b0087, 0x00000000}},  //   _doi_, _ibon_, rkc_,\n  { {0x442002ac, 0x00000000, 0x00000000, 0x00000000}},  //   _eoi_,   ,   ,\n  { {0x4432022d, 0x44200907, 0x76480f99, 0x00000000}},  //   _fly_, _foi_, midy,\n  { {0xceb4005f, 0xa3e202d2, 0x44321eb0, 0x00000000}},  //   yyət_, न्द_, _gly_,\n  { {0xda02001c, 0x09ca0055, 0xcddb003b, 0x00000000}},  // [48d0] लयात_, ল্যা, дње_,\n  { {0x386d011f, 0xe7e2006e, 0x442001ee, 0x00000000}},  //   zler_, क्ता_, _zoi_,\n  { {0x7ae91eb1, 0x2d87050d, 0x386d014a, 0x00000000}},  //   _spet, äne_, yler_,\n  { {0xd0110025, 0x386d05af, 0x13b70044, 0x00000000}},  //   _الح_, xler_, _ঝাড়,\n  { {0x7c2b00bb, 0x386d1eb2, 0x39e9004d, 0x00000000}},  //   rkgr, vler_, едло_,\n  { {0x386d002b, 0x27e60093, 0x853c0006, 0x00000000}},  //   wler_, _abon_, rbėj,\n  { {0x386d0483, 0x18691eb3, 0x00000000, 0x00000000}},  //   tler_, наки_,   ,\n  { {0xb8db02d2, 0x386d009d, 0x387f01e5, 0x00000000}},  //   _अब_, uler_, umur_,\n  { {0x386d011f, 0x44201eb4, 0x3b550822, 0x00000000}},  //   rler_, _roi_, _скар,\n  { {0x386d1eb5, 0x44201eb6, 0x69c10030, 0x00000000}},  //   sler_, _soi_, _udle,\n  { {0xc329007b, 0x44200198, 0xb7d50151, 0x00000000}},  //   _צו_, _poi_, _مقاب,\n  { {0x889a009b, 0x26110316, 0x00000000, 0x00000000}},  //   _טבעי, ताही_,   ,\n  { {0x4420021e, 0x27fd018e, 0xe2970783, 0x00000000}},  //   _voi_, _iawn_, лая_,\n  { {0x27fd01d5, 0x27ff002d, 0x425500c0, 0x00000000}},  //   _hawn_, ldun_, атст,\n  { {0x44201684, 0x27fd0145, 0xd838000a, 0x00000000}},  //   _toi_, _kawn_, _otčl_,\n  { {0x27ff1eb7, 0x62491eb8, 0x6444011c, 0x00000000}},  //   ndun_, ržoa, _umii,\n  { {0x67291eb9, 0x7d030030, 0x00000000, 0x00000000}},  // [48e0] nyej, ænsn,   ,\n  { {0xc33300b6, 0x63b6021f, 0x7c201eba, 0x00000000}},  //   _לוח_, _heyn, _somr,\n  { {0x63b60784, 0x645d1ebb, 0x7c2004eb, 0x00000000}},  //   _keyn, érig, _pomr,\n  { {0x61fe163c, 0x62961ebc, 0xeaba0581, 0x00000000}},  //   _hapl, _kuyo, ейд_,\n  { {0x61fe020d, 0x4af81ac0, 0x6296000a, 0x00000000}},  //   _kapl, телю_, _juyo,\n  { {0x63b6000c, 0x2ee00093, 0x62960009, 0x00000000}},  //   _leyn, mtif_, _muyo,\n  { {0x6f040035, 0x76480173, 0xb33b006b, 0x00000000}},  //   lvic, vidy, rbçi,\n  { {0x61fe01aa, 0x76aa16c4, 0x26c20091, 0x00000000}},  //   _lapl, нтов_, škom_,\n  { {0x963401bd, 0x2ee0033b, 0x9f59008e, 0x00000000}},  //   иниц, ntif_, _pasé_,\n  { {0x14ca0057, 0xa3e20164, 0x00000000, 0x00000000}},  //   ными_, न्स_,   ,\n  { {0x63b602b9, 0xb99301b7, 0x87e61ebd, 0x00000000}},  //   _beyn, _المب, _бюле,\n  { {0x2ee0020c, 0x62960019, 0xd7f700ed, 0x00000000}},  //   ktif_, _buyo, _буш_,\n  { {0x05140055, 0x0464008b, 0xfe04006e, 0x00000000}},  //   ানের_, стэм, रयास_,\n  { {0x6f0400ca, 0x9f4b0051, 0x69d5014a, 0x00000000}},  //   dvic, _tacú_, _özet,\n  { {0xd5b8001e, 0xe8090061, 0xa3e20164, 0x00000000}},  //   skās_, वाचा_, न्ह_,\n  { {0x2ee00022, 0x62960145, 0x645d0068, 0x00000000}},  //   ftif_, _fuyo, érid,\n  { {0x3da7003b, 0x62960068, 0x2ca300fa, 0x00000000}},  // [48f0] греб, _guyo, _stjd_,\n  { {0x443900d4, 0x63b6005d, 0x61fe0022, 0x00000000}},  //   lhs_, _zeyn, _gapl,\n  { {0x2ee0003f, 0x82340014, 0x6f040026, 0x00000000}},  //   atif_, _دريا, avic,\n  { {0x61fe0161, 0xaed51020, 0x3e97006d, 0x00000000}},  //   _zapl, _комш, _مؤسس,\n  { {0x2ee000f4, 0x26c20091, 0x69da0009, 0x00000000}},  //   ctif_, škoj_, _bcte,\n  { {0x3ea9020c, 0x27fd0085, 0x00000000, 0x00000000}},  //   mpat_, _sawn_,   ,\n  { {0x27fd01d0, 0x3ea90052, 0x00000000, 0x00000000}},  //   _pawn_, lpat_,   ,\n  { {0x26df0026, 0xec680517, 0x00000000, 0x00000000}},  //   ttuo_, _брук_,   ,\n  { {0x63b6009f, 0xdb26026c, 0x7d05001c, 0x00000000}},  //   _reyn, _پولی, lvhs,\n  { {0x673b013e, 0x63b6009d, 0x3ea90a16, 0x00000000}},  //   rzuj, _seyn, ipat_,\n  { {0x62961d42, 0x67290065, 0x61fe1ebe, 0x00000000}},  //   _suyo, syej, _rapl,\n  { {0xe29a1963, 0x6386026b, 0x629606c2, 0x00000000}},  //   кам_, игна, _puyo,\n  { {0x61fe0dec, 0x63bb000c, 0x8c1a00b3, 0x00000000}},  //   _papl, ðuna, דורי,\n  { {0x6f040ec0, 0x09b50049, 0x00000000, 0x00000000}},  //   vvic, יפֿט_,   ,\n  { {0x60260c4e, 0x216a07e1, 0x443900d9, 0x00000000}},  //   адва, тиви_, bhs_,\n  { {0x32040046, 0x4439010f, 0x62961ebf, 0x00000000}},  //   śmy_, chs_, _tuyo,\n  { {0x645d00f4, 0x00000000, 0x00000000, 0x00000000}},  // [4900] érie,   ,   ,\n  { {0xee370bbd, 0x2ee01ec0, 0xb2bb0104, 0x00000000}},  //   ану_, rtif_, _שמיר,\n  { {0x7afb01c2, 0x2ee0009d, 0x3ea90058, 0x00000000}},  //   _asut, stif_, apat_,\n  { {0xa3d902d2, 0x115b0104, 0x2ee01ec1, 0x00000000}},  //   ालय_, _ידיע, ptif_,\n  { {0x539b009b, 0x00000000, 0x00000000, 0x00000000}},  //   דינו,   ,   ,\n  { {0x98c6013b, 0xa2ce01f5, 0x26c2007f, 0x00000000}},  //   асил, _तिन्, škok_,\n  { {0x7a3400f6, 0x00000000, 0x00000000, 0x00000000}},  //   _càta,   ,   ,\n  { {0x4814003b, 0xa5d8006e, 0x6835013e, 0x00000000}},  //   смис, _माहौ, _rádc,\n  { {0xe7e202f4, 0xfaa3013b, 0x00000000, 0x00000000}},  //   क्षा_, _мато,   ,\n  { {0xb3b00044, 0x7ae21ec2, 0x00000000, 0x00000000}},  //   _কাগজ, mtot,   ,\n  { {0x0d9700b6, 0x44390133, 0x7ae21ec3, 0x00000000}},  //   יכים_, ths_, ltot,\n  { {0x66e6026b, 0x26cd1ebf, 0x69d8037f, 0x00000000}},  //   _вода, breo_, lgve,\n  { {0x7ae20687, 0x26cd1ec4, 0x66e301ee, 0x00000000}},  //   ntot, creo_, _моца,\n  { {0x05dd0061, 0xb7e20309, 0x44391ec5, 0x00000000}},  //   _मायब, क्रम_, shs_,\n  { {0x38950089, 0x443900ab, 0x661c000c, 0x00000000}},  //   _pāri_, phs_, örku,\n  { {0xdb00010f, 0x5f450025, 0x3ea91ec6, 0x00000000}},  //   _bemü, منزل, tpat_,\n  { {0xe7f90164, 0x63bd0107, 0xdb001665, 0x00000000}},  // [4910] ्यता_, masn, _memó,\n  { {0x31350200, 0x3ea901c5, 0x8e140517, 0x00000000}},  //   _геор, rpat_, одуц,\n  { {0x8d6800ed, 0xdd9801ff, 0x3ea90b4a, 0x00000000}},  //   ајца_, ршу_, spat_,\n  { {0x63bd037e, 0xa2ce013d, 0x3ea91dfb, 0x00000000}},  //   nasn, _तिम्, ppat_,\n  { {0x09df0055, 0xee871001, 0xdb00010f, 0x00000000}},  //   _যোগা, _выво, _gemü,\n  { {0x6ca70088, 0x63bd0271, 0x69d81ec7, 0x00000000}},  //   _враж, hasn, ggve,\n  { {0x2ef5006b, 0x63bd0091, 0xd90f0167, 0x00000000}},  //   şafı_, kasn, بیا_,\n  { {0x63bd01cd, 0x9b8906b4, 0x26cd00fa, 0x00000000}},  //   jasn, _منزل_, treo_,\n  { {0x63bd037e, 0xdb000f18, 0xfbd200b3, 0x00000000}},  //   dasn, _demó, _מתן_,\n  { {0x26cd0819, 0x63bb000c, 0xa2ce013d, 0x00000000}},  //   rreo_, ðunn, _तिब्,\n  { {0xd5490407, 0x63bd0145, 0x26cd11af, 0x00000000}},  //   упне_, fasn, sreo_,\n  { {0x60d50107, 0x63bd1ec8, 0xd7950025, 0x00000000}},  //   duzm, gasn, _الإخ,\n  { {0x686600a1, 0x3a2501f3, 0x06d50044, 0x00000000}},  //   _اپنے, _kolp_, _তৈরি,\n  { {0xc6920049, 0xf3ff00c4, 0xdb00000a, 0x00000000}},  //   _זאג_, boão_, _kemò,\n  { {0x645d0249, 0x6587007e, 0x63bd1ec9, 0x00000000}},  //   éric, _тыдз, basn,\n  { {0xdb000129, 0x63bd0716, 0x7ae2009d, 0x00000000}},  //   _memò, casn, ytot,\n  { {0xe7e9001c, 0x63a41eca, 0x00000000, 0x00000000}},  // [4920] झ्या_, _ifin,   ,\n  { {0x60c90089, 0x00000000, 0x00000000, 0x00000000}},  //   ņema,   ,   ,\n  { {0x2480000a, 0x7ae20048, 0x00000000, 0x00000000}},  //   _khim_, wtot,   ,\n  { {0x7ae20dc9, 0xdee60cb3, 0x00000000, 0x00000000}},  //   ttot, _ломи,   ,\n  { {0xa3d903d7, 0x853c0006, 0x63a40258, 0x00000000}},  //   ालत_, lbėt, _mfin,\n  { {0x2002000b, 0x7ae21ecb, 0x3e360167, 0x00000000}},  //   _haki_, rtot, _افسر,\n  { {0x7ae20059, 0xa8a3008b, 0x200204cb, 0x00000000}},  //   stot, прык, _kaki_,\n  { {0x6d57007b, 0x20020036, 0x7d57009b, 0x00000000}},  //   _הילף_, _jaki_, _הילד_,\n  { {0x3b071ecc, 0x20020760, 0x63bd08a4, 0x00000000}},  //   _лето_, _maki_, vasn,\n  { {0x20020390, 0x63a40181, 0x63bd1ecd, 0x00000000}},  //   _laki_, _afin, wasn,\n  { {0xe85300d3, 0x63bd10ed, 0x69c81d34, 0x00000000}},  //   _کنند, tasn, _idde,\n  { {0x491700b6, 0x24800011, 0x16160061, 0x00000000}},  //   _לקבל_, _chim_, ताहर_,\n  { {0x63bd11e4, 0xb8650a4f, 0x00000000, 0x00000000}},  //   rasn, _بالو,   ,\n  { {0x60d50061, 0xe534085f, 0x63a400ea, 0x00000000}},  //   tuzm, _мель, _efin,\n  { {0xdddc17dc, 0x20021ece, 0x63a41ecf, 0x00000000}},  //   _birž, _baki_, _ffin,\n  { {0xf48500a1, 0x290c0107, 0x16160061, 0x00000000}},  //   _باتی, _mrda_, तावर_,\n  { {0x69c80465, 0x20020cd8, 0x629d0009, 0x00000000}},  // [4930] _odde, _daki_, qqso,\n  { {0x644f081d, 0x290c1ed0, 0x877b0049, 0x00000000}},  //   lici, _orda_, ראמי,\n  { {0x59d20061, 0x2ca71ed1, 0x7f9504dd, 0x00000000}},  //   _साजर, ënd_, _манх,\n  { {0x69db001c, 0x69c80038, 0xfbd00558, 0x00000000}},  //   _नाही, _adde, فته_,\n  { {0xdc3901d5, 0x290c014a, 0x7a3400f6, 0x00000000}},  //   għġb, _arda_, _càto,\n  { {0x8cbb05f3, 0x69c800f6, 0x644f096a, 0x00000000}},  //   _مدرس_, _cdde, hici,\n  { {0xa3d90201, 0x20020085, 0xdbf200b9, 0x00000000}},  //   ाला_, _yaki_, _zříz,\n  { {0x09ca0055, 0x644f0107, 0x69c808e0, 0x00000000}},  //   ল্লা, jici, _edde,\n  { {0xba5500ed, 0x4e0d006e, 0x7a3400f6, 0x00000000}},  //   _двај, _सफाई_, _gàto,\n  { {0x63a4001a, 0x24800061, 0x0a6b098c, 0x00000000}},  //   _sfin, _shim_, _срби_,\n  { {0x248000ad, 0x6e2712d6, 0xe5710025, 0x00000000}},  //   _phim_, _mojb, بطة_,\n  { {0x644f028c, 0x546a007c, 0x787e0065, 0x00000000}},  //   gici, рамм_, tëve,\n  { {0xe29a1ed2, 0x67d40245, 0x38690645, 0x00000000}},  //   раг_, _хочу, čard_,\n  { {0x20021ed3, 0xa509007c, 0x6e27016c, 0x00000000}},  //   _saki_, _века_, _nojb,\n  { {0xf41f021e, 0x2002011c, 0x9103004d, 0x00000000}},  //   mmän_, _paki_, мпре,\n  { {0x6603021e, 0xf41f04ee, 0xdbf200b9, 0x00000000}},  //   _hank, lmän_, _příz,\n  { {0x3e6f0010, 0x26c20087, 0x1ea90379, 0x00000000}},  // [4940] yütt_, škov_, مالي_,\n  { {0x66030142, 0x7bc90d7b, 0x44220f46, 0x00000000}},  //   _jank, _adeu, ljk_,\n  { {0x20020046, 0x6835015f, 0x9f4b00f6, 0x00000000}},  //   _taki_, _nádo, _bacó_,\n  { {0x6603010a, 0x717b00b6, 0x2aaa0072, 0x00000000}},  //   _lank, _כניס, атко_,\n  { {0xda660265, 0xd83805fa, 0x7bc90016, 0x00000000}},  //   овди, _juče_, _ddeu,\n  { {0x683c00f4, 0x66030890, 0x3b0d0023, 0x00000000}},  //   _méde, _nank, _dreq_,\n  { {0x2d980059, 0x644f1ed4, 0x00000000, 0x00000000}},  //   _igre_, yici,   ,\n  { {0x6603049b, 0x2fc00058, 0x644f0133, 0x00000000}},  //   _aank, naig_, xici,\n  { {0x644f1cae, 0xb5fc01d5, 0x69c80009, 0x00000000}},  //   vici, loġi, _tdde,\n  { {0x644f0036, 0x66031ed5, 0x69c801bf, 0x00000000}},  //   wici, _cank, _udde,\n  { {0x660303a8, 0x644f0781, 0x2918012d, 0x00000000}},  //   _dank, tici, _šraf_,\n  { {0x7c221ed6, 0xd838050f, 0xd6d90036, 0x00000000}},  //   njor, _buče_, szła_,\n  { {0x2d980089, 0x6756035b, 0x66030142, 0x00000000}},  //   _ogre_, _بخار, _fank,\n  { {0x644f0c1f, 0x7e04007d, 0x2d980023, 0x00000000}},  //   sici, रयोग_, _ngre_,\n  { {0x9f590026, 0x925801ee, 0x00000000, 0x00000000}},  //   _sasà_, царт_,   ,\n  { {0x660300ca, 0x60c90089, 0x20c50089, 0x00000000}},  //   _zank, ņemo, rķi_,\n  { {0xdd9b04f9, 0x9f4b0129, 0x260f0164, 0x00000000}},  // [4950] аше_, _racó_, _थोडी_,\n  { {0x4429001d, 0x26c40e32, 0x9f4b008e, 0x00000000}},  //   _hoa_, ismo_, _sacó_,\n  { {0x6aa9009f, 0x4429002d, 0x765a1ed7, 0x00000000}},  //   _stef, _koa_, inty,\n  { {0x442906aa, 0x1c0b0309, 0x26c4088e, 0x00000000}},  //   _joa_, _सोशल_, ksmo_,\n  { {0x442900f8, 0x3b09005e, 0xe47c0049, 0x00000000}},  //   _moa_, село_, בראכ,\n  { {0xceb2061e, 0x44291ed8, 0x6f0f0026, 0x00000000}},  //   _איך_, _loa_, _ircc,\n  { {0x66031ed9, 0x644d00b0, 0x5d3300a1, 0x00000000}},  //   _rank, _omai, _تہائ,\n  { {0x59d70201, 0x9f400181, 0x44290032, 0x00000000}},  //   _ठाकर, ceió_, _noa_,\n  { {0x660303b6, 0x7c3b0fc3, 0x00000000, 0x00000000}},  //   _pank, _ilur,   ,\n  { {0x644d022b, 0x3eb9010f, 0x7c290168, 0x00000000}},  //   _amai, _mwst_, _hoer,\n  { {0x44290907, 0x7c291eda, 0x66030ac1, 0x00000000}},  //   _boa_, _koer, _vank,\n  { {0x4429049a, 0x7c290215, 0x660301d6, 0x00000000}},  //   _coa_, _joer, _wank,\n  { {0x66030263, 0x7c290168, 0x44290653, 0x00000000}},  //   _tank, _moer, _doa_,\n  { {0x2496007a, 0x683c0010, 0x7c3b0129, 0x00000000}},  //   _کنيد_, _véde, _llur,\n  { {0x7c3b047f, 0x3eb9018e, 0x44290190, 0x00000000}},  //   _olur, _awst_, _foa_,\n  { {0x44290460, 0x7c290022, 0x644d0322, 0x00000000}},  //   _goa_, _noer, _gmai,\n  { {0x2fc00fb8, 0x7d0e0b41, 0xe7e3007d, 0x00000000}},  // [4960] raig_, _srbs, _गाना_,\n  { {0x2fc00129, 0x3ea00065, 0xd6bd0044, 0x00000000}},  //   saig_, rqit_, _আমায,\n  { {0x7c2906b2, 0x7c3b016e, 0x7c221edb, 0x00000000}},  //   _boer, _blur, tjor,\n  { {0x7c29060c, 0xd6d90036, 0x44290082, 0x00000000}},  //   _coer, kuł_, _xoa_,\n  { {0x08e60044, 0x6e3e00f6, 0x386d0146, 0x00000000}},  //   কিছু_, phpb, doer_,\n  { {0x38a30279, 0x7c3b023e, 0x7c220ed6, 0x00000000}},  //   _sıra_, _elur, sjor,\n  { {0x7c3b01a2, 0x60c80048, 0x00000000, 0x00000000}},  //   _flur, ádmh,   ,\n  { {0x97141364, 0xd6da0088, 0x386d1edc, 0x00000000}},  //   дмиц, бто_, goer_,\n  { {0x7a3d01aa, 0x26c4007f, 0x00000000, 0x00000000}},  //   _sète, usmo_,   ,\n  { {0xba291edd, 0x644d0089, 0xceb3009b, 0x00000000}},  //   _وسلم_, _smai, עית_,\n  { {0x386d0bcb, 0x645d0181, 0x44291ede, 0x00000000}},  //   boer_, ério, _poa_,\n  { {0x897b007b, 0x889b01f8, 0x644d01f3, 0x00000000}},  //   _פראצ, _הבאי, _qmai,\n  { {0x288b01ef, 0x442901aa, 0xd050006b, 0x00000000}},  //   _اصلی_, _voa_, _ödəy,\n  { {0x26c20006, 0x44290082, 0x00000000, 0x00000000}},  //   škos_, _woa_,   ,\n  { {0x0cd70055, 0x44290020, 0x7bc200e7, 0x00000000}},  //   _সন্ত, _toa_, kaou,\n  { {0x644d01a3, 0x7a2f00ea, 0x656f01a2, 0x00000000}},  //   _umai, _høtt, ßche,\n  { {0xd01000a1, 0x7c290112, 0x92080089, 0x00000000}},  // [4970] ھلے_, _roer, _brāļ,\n  { {0xd35800b6, 0x7c2904d4, 0xb2bc009b, 0x00000000}},  //   _משחק_, _soer, _המזר,\n  { {0xd7dc0365, 0x7c290093, 0xfe700025, 0x00000000}},  //   _यांच, _poer, ادق_,\n  { {0x645d1edf, 0x628500e0, 0x98c4013e, 0x00000000}},  //   nnsi, _hhho, štěn_,\n  { {0x25dd0201, 0x7c2901b5, 0x386d00c7, 0x00000000}},  //   _खाली_, _voer, voer_,\n  { {0xae0a001c, 0x2009010a, 0x7c291a0f, 0x00000000}},  //   _होऊन_, ldai_, _woer,\n  { {0x2ee9009f, 0x7c290100, 0xa8890ae0, 0x00000000}},  //   ltaf_, _toer, ойка_,\n  { {0x77f90201, 0x20091ee0, 0xd6d90036, 0x00000000}},  //   ्येक_, ndai_, tuł_,\n  { {0xfaf00380, 0x2ee9018e, 0xd706007c, 0x00000000}},  //   _مثل_, ntaf_, дные_,\n  { {0x62971ee1, 0xd6d90036, 0x645d0052, 0x00000000}},  //   _nixo, szło_, ensi,\n  { {0x69c31ee2, 0x01e30044, 0x91e30044, 0x00000000}},  //   mane, য়াদ, য়াখ,\n  { {0x69c31406, 0x9f40000c, 0x62850010, 0x00000000}},  //   lane, keið_, _ahho,\n  { {0x2009018e, 0x69c30035, 0x62971ee3, 0x00000000}},  //   ddai_, oane, _bixo,\n  { {0x2019000c, 0x27ed010f, 0x69c30142, 0x00000000}},  //   _ansi_, lfen_, nane,\n  { {0xafe60088, 0x6b9b0107, 0x409602dc, 0x00000000}},  //   мовл, _ogug, драт,\n  { {0x62971052, 0x69c308a7, 0x27ed1c1a, 0x00000000}},  //   _eixo, hane, nfen_,\n  { {0x69c30343, 0xf41300b6, 0x27ed010f, 0x00000000}},  // [4980] kane, _יפה_, ifen_,\n  { {0x69c3000c, 0x201900b0, 0xd12f00a1, 0x00000000}},  //   jane, _ensi_, دمہ_,\n  { {0x621b007b, 0x69c31ee4, 0x61fc05cd, 0x00000000}},  //   _וויק, dane, merl,\n  { {0x61fc1907, 0xeb9a0545, 0x61ee0168, 0x00000000}},  //   lerl, цид_, lfbl,\n  { {0xdb0b1ee5, 0x69c30c56, 0xdb000027, 0x00000000}},  //   dagó, fane, _nemô,\n  { {0x320a0030, 0x69c31ee6, 0x27ed063c, 0x00000000}},  //   ndby_, gane, efen_,\n  { {0x26f8024c, 0x27ed04e5, 0xafdb05b7, 0x00000000}},  //   ्ट्र_, ffen_, _flød,\n  { {0x27ed0016, 0xd8380087, 0x61fc1469, 0x00000000}},  //   gfen_, _buča_, herl,\n  { {0x69c3004e, 0x61fc1ee7, 0xa3e2007d, 0x00000000}},  //   bane, kerl, न्छ_,\n  { {0x645d0016, 0x38690ce4, 0xdb0000c4, 0x00000000}},  //   wnsi, čara_, _demô,\n  { {0x61fc02ae, 0x7bc01ee8, 0x6aa000e7, 0x00000000}},  //   derl, _kemu, _humf,\n  { {0x7bc00061, 0x6aa00020, 0xb8650025, 0x00000000}},  //   _jemu, _kumf, _كانو,\n  { {0x645d1ee9, 0x7bc01eea, 0x61fc1402, 0x00000000}},  //   rnsi, _memu, ferl,\n  { {0xc5d50044, 0x60dc002b, 0x00000000, 0x00000000}},  //   ত্বপ, furm,   ,\n  { {0xe5f7009b, 0xa2940088, 0xf7080082, 0x00000000}},  //   _חזור_, тарі, _hủ_,\n  { {0x7bc001ca, 0x20090006, 0x7a3d000a, 0x00000000}},  //   _nemu, udai_, _mèta,\n  { {0x61fc011f, 0x69c30148, 0x20091eeb, 0x00000000}},  // [4990] berl, yane, rdai_,\n  { {0x6f0d049a, 0x61fc0211, 0xab5d0046, 0x00000000}},  //   rvac, cerl, _jeże,\n  { {0x69c31eec, 0x7bc00010, 0x2ee900f8, 0x00000000}},  //   vane, _bemu, staf_,\n  { {0x69c30046, 0x09d70061, 0xdb0b0129, 0x00000000}},  //   wane, ठल्य, dagò,\n  { {0xa3e7024c, 0x7bc01632, 0x44390089, 0x00000000}},  //   _पान_, _demu, iks_,\n  { {0xd33800b6, 0x683c00f4, 0x53380049, 0x00000000}},  //   ורדה_, _réda, ונדן_,\n  { {0xdb0b002a, 0x27ed011f, 0x3e740039, 0x00000000}},  //   tagó, tfen_, rätt_,\n  { {0x7bc00390, 0x27ed010f, 0x443900b5, 0x00000000}},  //   _gemu, ufen_, jks_,\n  { {0x27ed010f, 0x69c31eed, 0xf7080011, 0x00000000}},  //   rfen_, pane, _củ_,\n  { {0x44391eee, 0x7bc005fa, 0x60dc019a, 0x00000000}},  //   eks_, _zemu, yurm,\n  { {0x61fc05c6, 0xc8c906c6, 0x27ed010f, 0x00000000}},  //   verl, _روشن_, pfen_,\n  { {0x69c102ae, 0x29050211, 0x61e50016, 0x00000000}},  //   _hele, _isla_, _achl,\n  { {0x2bd00061, 0x7a3400f6, 0x00000000, 0x00000000}},  //   हणता, _sàti,   ,\n  { {0x69c10047, 0x975600b6, 0x60dc00b0, 0x00000000}},  //   _jele, _אינו_, turm,\n  { {0x69c1020c, 0x463a0049, 0x61fc04fb, 0x00000000}},  //   _mele, _מעסע, rerl,\n  { {0x44391eef, 0x61fc0016, 0x1de20061, 0x00000000}},  //   cks_, serl, _पाहत,\n  { {0x7bc00181, 0x68350211, 0x61fc0971, 0x00000000}},  // [49a0] _remu, _cádi, perl,\n  { {0x7bc0020c, 0x69c11109, 0x2d9c05b7, 0x00000000}},  //   _semu, _nele, øve_,\n  { {0x1636007b, 0x7bc00149, 0x41bb009b, 0x00000000}},  //   ענער_, _pemu, _מציע,\n  { {0x09c80061, 0xdd8f004b, 0x3a3e0093, 0x00000000}},  //   रण्य, حوم_, _sltp_,\n  { {0x2905014a, 0x7a3d01aa, 0x94210061, 0x00000000}},  //   _asla_, _sèta, यातच_,\n  { {0xfce6189f, 0x78a10142, 0xf7080011, 0x00000000}},  //   _пого, _bulv, _rủ_,\n  { {0x69c10c46, 0x7bc00169, 0xf1b30104, 0x00000000}},  //   _dele, _temu, נסה_,\n  { {0x6e2e0161, 0x628e0288, 0x69c1010e, 0x00000000}},  //   _hobb, hmbo, _eele,\n  { {0x69c10047, 0xc6f700a5, 0x6e2e101b, 0x00000000}},  //   _fele, еных_, _kobb,\n  { {0x69c10334, 0x6e2e1ef0, 0x3a06026c, 0x00000000}},  //   _gele, _jobb, _سکتی_,\n  { {0x6e2e002b, 0x78a10030, 0x3ea21ef1, 0x00000000}},  //   _mobb, _gulv, _lukt_,\n  { {0x61e5001f, 0xf708001d, 0x628e02c2, 0x00000000}},  //   _schl, _tủ_, embo,\n  { {0x44391ef2, 0x27e61ef3, 0xa3e7007d, 0x00000000}},  //   rks_, _icon_, _पाठ_,\n  { {0x44391ef4, 0x171b00b6, 0x6e2e00f8, 0x00000000}},  //   sks_, _מודע, _nobb,\n  { {0x44390093, 0x68350325, 0x316800e2, 0x00000000}},  //   pks_, _sádi, ешто_,\n  { {0x4ea70805, 0xaf3402fd, 0x683c009d, 0x00000000}},  //   ержа, گرفت, _médo,\n  { {0x63ad018e, 0x660a0095, 0x63bb000c, 0x00000000}},  // [49b0] _ifan, _kafk, ðunu,\n  { {0x5d67041f, 0x7f5817a4, 0x6e2e0133, 0x00000000}},  //   нтез, хаус_, _cobb,\n  { {0x6e2e1ef5, 0x69c10038, 0xf653007b, 0x00000000}},  //   _dobb, _rele, נצע_,\n  { {0x3ea21d43, 0x447c0049, 0x00000000, 0x00000000}},  //   _fukt_, ִנגע,   ,\n  { {0x69c104cb, 0x63ad000b, 0x09e50893, 0x00000000}},  //   _pele, _mfan, волн,\n  { {0x6e2e0197, 0x53380049, 0x9f490051, 0x00000000}},  //   _gobb, ענגן_, nfaí_,\n  { {0x63ad000c, 0xecf80245, 0x200b1ef6, 0x00000000}},  //   _ofan, _перш_, _kaci_,\n  { {0x200b0107, 0x69c11ef7, 0x78a11815, 0x00000000}},  //   _jaci_, _wele, _vulv,\n  { {0xdb00009f, 0xdcfc0089, 0x200b0232, 0x00000000}},  //   _afmæ, _izrā, _maci_,\n  { {0x63ad1ef8, 0x27e6016b, 0x69c10020, 0x00000000}},  //   _afan, _econ_, _uele,\n  { {0xd46a012b, 0x04460057, 0x55890eec, 0x00000000}},  //   дине_, венн, ьбом_,\n  { {0x200b037e, 0x24890082, 0x387a0014, 0x00000000}},  //   _naci_, _cham_, _قشنگ_,\n  { {0xe72e1ef9, 0x66051efa, 0x66e500e2, 0x00000000}},  //   _те_, _апла, _рола,\n  { {0xe29703c8, 0x7a3d0129, 0x2d9c0027, 0x00000000}},  //   кая_, _mèto, ľvek_,\n  { {0xe2971efb, 0x200b0197, 0x63ad0016, 0x00000000}},  //   тар_, _baci_, _ffan,\n  { {0x200b001a, 0x6e2e0197, 0xdfd20025, 0x00000000}},  //   _caci_, _sobb, شيط_,\n  { {0x59d10061, 0x200b11c9, 0x00000000, 0x00000000}},  // [49c0] सणार, _daci_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x200b1efc, 0x27ff0022, 0x248900e0, 0x00000000}},  //   _faci_, keun_, _yham_,\n  { {0x92e40044, 0x7a3d0173, 0x64460082, 0x00000000}},  //   নবী_, _bèto, nhki,\n  { {0x7c6500f9, 0x6e2e002b, 0x20000035, 0x00000000}},  //   دالل, _tobb, meii_,\n  { {0x6f041780, 0x683c009d, 0x200b012d, 0x00000000}},  //   mwic, _pédo, _zaci_,\n  { {0x98c3008b, 0xdcf5009e, 0x27e600d9, 0x00000000}},  //   асыл, _مہلت_, _pcon_,\n  { {0xd838012d, 0x27ff0022, 0x00000000, 0x00000000}},  //   _vučo_, geun_,   ,\n  { {0x6f0400bb, 0xc053009b, 0xe3d80044, 0x00000000}},  //   nwic, יזה_, তভাব,\n  { {0x2489103f, 0x63ad001a, 0x44ea0026, 0x00000000}},  //   _sham_, _sfan, tù_,\n  { {0x24891efd, 0xd5b80089, 0x63ad01a2, 0x00000000}},  //   _pham_, rbā_, _pfan,\n  { {0x2ee00007, 0x00000000, 0x00000000, 0x00000000}},  //   kuif_,   ,   ,\n  { {0x200b1efe, 0x44ea0026, 0x2ee00068, 0x00000000}},  //   _raci_, sù_, juif_,\n  { {0x7df30224, 0x200b0035, 0xab5d0066, 0x00000000}},  //   _měsí, _saci_, _jeża,\n  { {0x2489001d, 0x6f040036, 0xdfd50a78, 0x00000000}},  //   _tham_, ewic, ловы,\n  { {0x63ad0020, 0x2ee001c3, 0x44ce093c, 0x00000000}},  //   _ufan, fuif_, mę_,\n  { {0x44ce0a67, 0x22840039, 0x0f15007e, 0x00000000}},  // [49d0] lę_, söka_, ымаю,\n  { {0xf1b702fb, 0x61e9016c, 0x7a3d00d4, 0x00000000}},  //   _अभिन, đels, _rèto,\n  { {0x44ce06dc, 0x3cd50ae0, 0x72340025, 0x00000000}},  //   nę_, ужес, _خريط,\n  { {0x1c1d013d, 0x442b1eff, 0xfbd0067a, 0x00000000}},  //   फाइल_, njc_, قته_,\n  { {0x44fa0044, 0x00000000, 0x00000000, 0x00000000}},  //   েমিক_,   ,   ,\n  { {0x44ce0a67, 0x2fc90112, 0x38660085, 0x00000000}},  //   kę_, laag_, _ajor_,\n  { {0x44ce1f00, 0x27ff01bb, 0xe8f50025, 0x00000000}},  //   ję_, teun_, استخ,\n  { {0xd70910a9, 0x44ce0fed, 0xdcfc0089, 0x00000000}},  //   ение_, dę_, _uzrā,\n  { {0xe5a500e2, 0x27ff0288, 0x00000000, 0x00000000}},  //   липи, reun_,   ,\n  { {0x9a870783, 0x27ff01d6, 0x2fc901d6, 0x00000000}},  //   _рубл, seun_, haag_,\n  { {0x44ce0fed, 0x38661bea, 0x00000000, 0x00000000}},  //   gę_, _fjor_,   ,\n  { {0xc20900b6, 0x2fc90007, 0xb8090025, 0x00000000}},  //   _מה_, jaag_, _سيتم_,\n  { {0x2fc90007, 0x2e360190, 0x00000000, 0x00000000}},  //   daag_, _kæft_,   ,\n  { {0x6446008d, 0x387f0028, 0x6fe10164, 0x00000000}},  //   shki, llur_, _फाउं,\n  { {0x44ce0036, 0x213e1f01, 0x61430072, 0x00000000}},  //   cę_, áth_, бера,\n  { {0x6f04001f, 0x0495007e, 0x1fb50849, 0x00000000}},  //   twic, _крыў, исур,\n  { {0x44200149, 0x3326005f, 0x64560009, 0x00000000}},  // [49e0] _ini_, _çox_, _imyi,\n  { {0x44321f02, 0xa20614ec, 0x6f041459, 0x00000000}},  //   _hoy_, _спод, rwic,\n  { {0x4432066b, 0x644401c2, 0x63a9198a, 0x00000000}},  //   _koy_, _klii, žene,\n  { {0xf767007a, 0xdd8f00b8, 0x0b4601be, 0x00000000}},  //   _ها_, سون_, лнен,\n  { {0xa3e7062e, 0xa09b007b, 0x60c9001e, 0x00000000}},  //   _पास_, _ריכט, ņemt,\n  { {0xa2d7006e, 0xf41f00b0, 0x44320145, 0x00000000}},  //   _बिस्, lmät_, _loy_,\n  { {0x660101d9, 0x629e0087, 0x644401b1, 0x00000000}},  //   delk, _mipo, _olii,\n  { {0xc6f8019d, 0x387f1f03, 0x44321f04, 0x00000000}},  //   вних_, glur_, _noy_,\n  { {0xab660265, 0x44ce0036, 0x81dc0044, 0x00000000}},  //   _свал, wę_, ণ্য_,\n  { {0x44201f05, 0x44ce0bd7, 0x64440020, 0x00000000}},  //   _ani_, tę_, _alii,\n  { {0x7ae21e43, 0x4420023a, 0x387f04e2, 0x00000000}},  //   luot, _bni_, blur_,\n  { {0x69ca00d4, 0x2b9a005a, 0x44320300, 0x00000000}},  //   lafe, _gücü_, _coy_,\n  { {0x44201f06, 0x44ce0a67, 0x44320211, 0x00000000}},  //   _dni_, sę_, _doy_,\n  { {0xe298008b, 0x44200059, 0x629e0197, 0x00000000}},  //   лаў_, _eni_, _cipo,\n  { {0x629e0169, 0xbe0500a1, 0x765a00b0, 0x00000000}},  //   _dipo, یورٹ, mity,\n  { {0x765a1f07, 0xa2ce001c, 0x7ae20006, 0x00000000}},  //   lity, _तिच्, kuot,\n  { {0xcddb02a8, 0x147a026c, 0x2fc900c1, 0x00000000}},  // [49f0] ење_, _ججوں_, raag_,\n  { {0x59e002f4, 0x765a0052, 0x7ae2010a, 0x00000000}},  //   _नागर, nity, duot,\n  { {0x2d870afc, 0x44320022, 0x7afb0213, 0x00000000}},  //   åne_, _yoy_, _sput,\n  { {0x78b8001c, 0x5b15003b, 0x66010046, 0x00000000}},  //   dpvv, имет, zelk,\n  { {0x34c102f4, 0x7ae20006, 0x998c00b9, 0x00000000}},  //   _शब्द, guot, _bodů_,\n  { {0x50b800d3, 0x08d5046c, 0x683501ca, 0x00000000}},  //   _جدید_, ация, _nádr,\n  { {0x1a6800a1, 0x765a0022, 0x3238009b, 0x00000000}},  //   دیلی_, dity, רטון_,\n  { {0x66010d31, 0x2bbb0025, 0x00000000, 0x00000000}},  //   welk, _سارة_,   ,\n  { {0x7bcb0725, 0x7afb1f08, 0x44200022, 0x00000000}},  //   magu, _uput, _rni_,\n  { {0x44320219, 0x7bcb022b, 0x44201f09, 0x00000000}},  //   _soy_, lagu, _sni_,\n  { {0x99670888, 0x629e1f0a, 0xb466007c, 0x00000000}},  //   _стал, _ripo, икол,\n  { {0x68e314ce, 0x7bcb011c, 0x2aab0018, 0x00000000}},  //   mund, nagu, _køb_,\n  { {0x68e3011f, 0x44320211, 0x6601002d, 0x00000000}},  //   lund, _voy_, pelk,\n  { {0x7bcb000b, 0x44200093, 0x44320173, 0x00000000}},  //   hagu, _wni_, _woy_,\n  { {0x68e3038c, 0x2056008b, 0x4420023a, 0x00000000}},  //   nund, атар, _tni_,\n  { {0x645d1729, 0x7bcb0093, 0xf09f0026, 0x00000000}},  //   érit, jagu, _cià_,\n  { {0x7bcb1f0b, 0xd00705f6, 0x6b890dfc, 0x00000000}},  // [4a00] dagu, шете_, _nzeg,\n  { {0x68e3022b, 0x7ae2042c, 0x7e23003b, 0x00000000}},  //   kund, vuot, одуж,\n  { {0x68e3006c, 0x6b890026, 0x7bcb0145, 0x00000000}},  //   jund, _azeg, fagu,\n  { {0xdee60113, 0xf09f1f0c, 0x68e3002d, 0x00000000}},  //   _коми, _già_, dund,\n  { {0x69ca0016, 0x6b890036, 0xc5fe0044, 0x00000000}},  //   tafe, _czeg, ্ঞতা_,\n  { {0x68e305de, 0x7ae2010a, 0xaa530451, 0x00000000}},  //   fund, ruot, овіш,\n  { {0x68e30df9, 0x765a00b0, 0x7bcb0503, 0x00000000}},  //   gund, vity, bagu,\n  { {0x63a40058, 0xa2d7007d, 0x69ca014a, 0x00000000}},  //   _ngin, _बिल्, safe,\n  { {0x09e6007c, 0x765a1f0d, 0x68350051, 0x00000000}},  //   _возн, tity, _pádr,\n  { {0x68e3000c, 0x63a4022b, 0xd83810f7, 0x00000000}},  //   bund, _agin, _muči_,\n  { {0x24420219, 0x69c802ae, 0x765a0943, 0x00000000}},  //   _cómo_, _iede, rity,\n  { {0x765a021e, 0x69c8014a, 0x290c011c, 0x00000000}},  //   sity, _hede, _isda_,\n  { {0x69c80475, 0x59ba0204, 0xe87500a1, 0x00000000}},  //   _kede, _उभार, _اننگ,\n  { {0x69c8001f, 0x63a4022b, 0x7bcb002d, 0x00000000}},  //   _jede, _egin, zagu,\n  { {0x69c80fcf, 0x645d00f4, 0x7bcb0093, 0x00000000}},  //   _mede, éris, yagu,\n  { {0x69c81e68, 0xd8380087, 0x78a804a5, 0x00000000}},  //   _lede, _buči_, _mudv,\n  { {0x69c800bb, 0x9df902b3, 0x68e31f0e, 0x00000000}},  // [4a10] _oede, лнат_, zund,\n  { {0x3869037e, 0x7bcb1f0f, 0x683c00f4, 0x00000000}},  //   čari_, wagu, _dédi,\n  { {0x7bcb011c, 0x6b890047, 0x68e31f10, 0x00000000}},  //   tagu, _szeg, xund,\n  { {0x68e31f11, 0x69c81f12, 0x62950026, 0x00000000}},  //   vund, _aede, lmzo,\n  { {0x290c0ca4, 0xd838016c, 0x68e3010f, 0x00000000}},  //   _asda_, _guči_, wund,\n  { {0x69c8027b, 0x7bcb10a4, 0xa969003b, 0x00000000}},  //   _cede, sagu, лила_,\n  { {0x7bcb002d, 0x69c81f13, 0x9915007e, 0x00000000}},  //   pagu, _dede, сьлі,\n  { {0xccf200b6, 0x645d0453, 0x8c3d014a, 0x00000000}},  //   _מכל_, jisi, _bişe,\n  { {0x69c800d6, 0x63a400f6, 0x00000000, 0x00000000}},  //   _fede, _rgin,   ,\n  { {0x69c801b5, 0x68e3013f, 0x00000000, 0x00000000}},  //   _gede, pund,   ,\n  { {0x645d1f14, 0xda7a0049, 0x63a400f6, 0x00000000}},  //   fisi, _ענער, _pgin,\n  { {0x6aa1001f, 0x645d011c, 0xafdb00ea, 0x00000000}},  //   _hilf, gisi, _bløm,\n  { {0xd8740025, 0x69c8014a, 0x7bc90328, 0x00000000}},  //   _بالب, _yede, _meeu,\n  { {0x7bc901b5, 0x683c00f4, 0x69c8002d, 0x00000000}},  //   _leeu, _rédi, _xede,\n  { {0x6143008b, 0x6aa10061, 0x64b50137, 0x00000000}},  //   пера, _milf, _احتر,\n  { {0x44f100b9, 0x683c009d, 0x63a41f15, 0x00000000}},  //   má_, _pédi, _ugin,\n  { {0x44f11f16, 0xef1a1f17, 0x76410133, 0x00000000}},  // [4a20] lá_, ыма_, okly,\n  { {0x76410146, 0x6aa10146, 0x2d96007c, 0x00000000}},  //   nkly, _nilf, брес,\n  { {0x44f10428, 0x69c80f12, 0x9f59004a, 0x00000000}},  //   ná_, _rede, _basó_,\n  { {0x9f59008e, 0x683c00fa, 0x1eaa0025, 0x00000000}},  //   _casó_, _tédi, _ماسي_,\n  { {0x7ff700a2, 0x6aa10239, 0x44f10161, 0x00000000}},  //   _اسپا, _bilf, há_,\n  { {0x645d027d, 0x2fc006be, 0x29180010, 0x00000000}},  //   zisi, lbig_, _árak_,\n  { {0x69c81d22, 0x645d08af, 0xa3d8007d, 0x00000000}},  //   _vede, yisi, ाणा_,\n  { {0x69c8037f, 0xdd8f0025, 0x44f11f18, 0x00000000}},  //   _wede, _سوق_, dá_,\n  { {0x69c81f19, 0x2ee00016, 0x44270082, 0x00000000}},  //   _tede, nrif_, _đn_,\n  { {0x645d0016, 0x7bc90376, 0x6aa10544, 0x00000000}},  //   wisi, _zeeu, _gilf,\n  { {0x645d0d2a, 0x998601b7, 0xd7fa05f6, 0x00000000}},  //   tisi, _الاو, _бул_,\n  { {0x3d0003d7, 0x2ee00935, 0x225a0c7d, 0x00000000}},  //   _रहने_, krif_, _ampk_,\n  { {0xd79606ea, 0x645d1f1a, 0x073a0318, 0x00000000}},  //   _الشخ, risi, _حساب_,\n  { {0x2ee016a7, 0x76410203, 0xa7850389, 0x00000000}},  //   drif_, ckly, _بشمو,\n  { {0x6e350721, 0x645d0091, 0xd25801ff, 0x00000000}},  //   _rozb, pisi, сця_,\n  { {0x2ee0018e, 0xdbf100b9, 0x8c3d001a, 0x00000000}},  //   frif_, _přík, _mişc,\n  { {0x9412006b, 0x4034007c, 0x6e3515b1, 0x00000000}},  // [4a30] _niyə_, четс, _pozb,\n  { {0x3dd81f1b, 0x00000000, 0x00000000, 0x00000000}},  //   _cdrw_,   ,   ,\n  { {0x9f590211, 0x6e35012d, 0x64b30035, 0x00000000}},  //   _pasó_, _vozb, _tăie,\n  { {0xd1b8025a, 0xbebb0065, 0x6aa11f1c, 0x00000000}},  //   _پایا_, _rrëf, _silf,\n  { {0x79810610, 0xab2903dc, 0x44f10211, 0x00000000}},  //   _sylw, рола_, zá_,\n  { {0x6ca70242, 0x6e350107, 0x683c0299, 0x00000000}},  //   _граж, _uozb, _médu,\n  { {0x44f100c4, 0x6aa11f1d, 0x768f00ea, 0x00000000}},  //   xá_, _vilf, nøye,\n  { {0x81c10055, 0x44f10428, 0xeaf800d3, 0x00000000}},  //   ুলি_, vá_, _گرفت_,\n  { {0x6aa10374, 0xb8d00309, 0x2d830023, 0x00000000}},  //   _tilf, _टू_, _hyje_,\n  { {0xe81e0061, 0x44f10027, 0x8f9c0049, 0x00000000}},  //   _मोठा_, tá_, ניזי,\n  { {0x2fc00009, 0x386a0048, 0x44f100fa, 0x00000000}},  //   ybig_, úiré_, uá_,\n  { {0x78a20198, 0x225a04be, 0x00000000, 0x00000000}},  //   _giov, _smpk_,   ,\n  { {0x6842008b, 0x683c1f1e, 0xd6290aed, 0x00000000}},  //   _інша, _cédu, _воле_,\n  { {0x38690107, 0x44f10181, 0x683c1f1f, 0x00000000}},  //   čaru_, pá_, _dédu,\n  { {0x6f1d14c3, 0xc05a003b, 0xd6780025, 0x00000000}},  //   _arsc, арац_, _احنا_,\n  { {0x44d5001e, 0xe3b201fa, 0xe2e6073b, 0x00000000}},  //   mā_, _غرب_, _джип,\n  { {0x44d5001e, 0x44c70010, 0x3ea30a5b, 0x00000000}},  // [4a40] lā_, lő_, _bijt_,\n  { {0x22570025, 0x3eab0133, 0x2ee00fd1, 0x00000000}},  //   _وليد_, _duct_, rrif_,\n  { {0x44d5001e, 0x6f1d010f, 0x2ee0012d, 0x00000000}},  //   nā_, _ersc, srif_,\n  { {0x984c00b9, 0xb4fa0049, 0x00000000, 0x00000000}},  //   věď_, ילער,   ,\n  { {0xb6050e0d, 0x3eb900bb, 0x3f82014a, 0x00000000}},  //   _kršč, _gtst_, _uyku_,\n  { {0x44d5001e, 0x24800145, 0x00000000, 0x00000000}},  //   kā_, _lkim_,   ,\n  { {0x44d5001e, 0x7c060025, 0xbea3008b, 0x00000000}},  //   jā_, _وبرك, _царк,\n  { {0x44d50089, 0x473401fc, 0xec770364, 0x00000000}},  //   dā_, знис, _дпс_,\n  { {0xf09301f8, 0x7bc200f4, 0x466a0437, 0x00000000}},  //   ונה_, mbou, иром_,\n  { {0x683c00f4, 0x7bc21f20, 0x248001a3, 0x00000000}},  //   _rédu, lbou, _akim_,\n  { {0x683c00f4, 0xe45f00b0, 0x44d50089, 0x00000000}},  //   _sédu, tiö_, gā_,\n  { {0x7bc21f21, 0x80b10204, 0xd838012d, 0x00000000}},  //   nbou, _आंबे, _puču_,\n  { {0xfbd300b6, 0x63a90466, 0xe45f00b0, 0x00000000}},  //   ותר_, ženo, riö_,\n  { {0xa3e702d2, 0x2480014a, 0x46140879, 0x00000000}},  //   _पाक_, _ekim_, _روبر,\n  { {0x63b60016, 0xa2d7006e, 0x7ae201a2, 0x00000000}},  //   _ffyn, _बिक्, hrot,\n  { {0x7ae20036, 0x1eab0389, 0x00000000, 0x00000000}},  //   krot, لائي_,   ,\n  { {0xddab1666, 0x7bc200d9, 0x69da0235, 0x00000000}},  // [4a50] ател_, dbou, _odte,\n  { {0x291e0279, 0x7ae21543, 0x325501ff, 0x00000000}},  //   _orta_, drot, _хвор,\n  { {0x61f8006b, 0x62870091, 0x30f700a1, 0x00000000}},  //   _övla, mljo, _بوجھ_,\n  { {0x69da1f22, 0x7bc200bb, 0x7ae200f2, 0x00000000}},  //   _adte, gbou, frot,\n  { {0x44c70047, 0x7ae200c7, 0x291e001a, 0x00000000}},  //   ző_, grot, _arta_,\n  { {0x6f0d0020, 0xab5d002b, 0x00000000, 0x00000000}},  //   mwac, _jeżi,   ,\n  { {0xa3eb006e, 0x7ae20026, 0x6f0d0270, 0x00000000}},  //   मला_, arot, lwac,\n  { {0x44d50089, 0x3d00013d, 0x2bcc0061, 0x00000000}},  //   vā_, _रहते_, ारणा,\n  { {0x787e0023, 0x78ba00ea, 0x291e0145, 0x00000000}},  //   tëvr, _ettv, _erta_,\n  { {0x44d5001e, 0x44c70047, 0xe649003b, 0x00000000}},  //   tā_, tő_, спод_,\n  { {0x69c30059, 0x6f0d010f, 0x64b30035, 0x00000000}},  //   mbne, hwac, _băia,\n  { {0x44d50089, 0x78fa009b, 0x764a005b, 0x00000000}},  //   rā_, _לפעו, _elfy,\n  { {0x44d50089, 0x93430a1e, 0x38b1000c, 0x00000000}},  //   sā_, еняе, _hár_,\n  { {0x27ed0270, 0x44d50089, 0x76ba00b3, 0x00000000}},  //   lgen_, pā_, _המספ,\n  { {0x20d701d5, 0x38b10010, 0x7bc202c2, 0x00000000}},  //   għi_, _jár_, ybou,\n  { {0x38b10010, 0x216700ed, 0x644f1f23, 0x00000000}},  //   _már_, чиси_, chci,\n  { {0x27ed059b, 0x62871217, 0x38b10051, 0x00000000}},  // [4a60] igen_, bljo, _lár_,\n  { {0x2d96003b, 0x644600b0, 0x7bc200d9, 0x00000000}},  //   прес, lkki, wbou,\n  { {0x60261f24, 0x7bc20dda, 0x38b10af6, 0x00000000}},  //   _една, tbou, _nár_,\n  { {0x27ed02ae, 0xeb9a1f25, 0x6446021e, 0x00000000}},  //   jgen_, бие_, nkki,\n  { {0x291e004a, 0x27ed113b, 0x7bc20f12, 0x00000000}},  //   _srta_, dgen_, rbou,\n  { {0x7ae2002d, 0x38b10047, 0x27ed05c6, 0x00000000}},  //   rrot, _bár_, egen_,\n  { {0xdd8600a1, 0x66081f26, 0x7ae20048, 0x00000000}},  //   _رجسٹ, vedk, srot,\n  { {0x27ed02ae, 0x7e7e028c, 0x7ae20213, 0x00000000}},  //   ggen_, lopp, prot,\n  { {0xab5d0036, 0x00000000, 0x00000000, 0x00000000}},  //   _odży,   ,   ,\n  { {0x7e7e0056, 0x0f57009b, 0x291e00ee, 0x00000000}},  //   nopp, פיים_, _trta_,\n  { {0xab5d1f27, 0x320a032e, 0x66080142, 0x00000000}},  //   _reżi, deby_, redk,\n  { {0x33200646, 0x27ed00e5, 0x6f0d00b4, 0x00000000}},  //   _brix_, cgen_, ywac,\n  { {0xafdb068f, 0x00000000, 0x00000000, 0x00000000}},  //   _kløv,   ,   ,\n  { {0x56b700a0, 0x644f004a, 0x00000000, 0x00000000}},  //   _צפון_, shci,   ,\n  { {0xd5fb00b6, 0x7e7e0056, 0x64b31f28, 0x00000000}},  //   _הפור, dopp, _tăia,\n  { {0xd468045e, 0xb4d8001c, 0x11f70014, 0x00000000}},  //   _није_, ाळी_, _کودک_,\n  { {0x44291f29, 0x7a3d1f2a, 0x645f0066, 0x00000000}},  // [4a70] _ina_, _mètr, _imqi,\n  { {0x6f0d1f2b, 0x9f40009f, 0x3f870089, 0x00000000}},  //   rwac, rfið_, ānu_,\n  { {0x644d1750, 0x6abb00ab, 0x27ed00ab, 0x00000000}},  //   _klai, _stuf, ygen_,\n  { {0x4429037e, 0x26d91f2c, 0x27ed01f3, 0x00000000}},  //   _jna_, ások_, xgen_,\n  { {0x44290142, 0x38b11f2d, 0x7e7e00ea, 0x00000000}},  //   _mna_, _sár_, bopp,\n  { {0x38b113aa, 0x7e7e0197, 0x644d0016, 0x00000000}},  //   _pár_, copp, _llai,\n  { {0x4429005f, 0x27ed00d4, 0x644d1f2e, 0x00000000}},  //   _ona_, tgen_, _olai,\n  { {0x63a90f3a, 0xccf20104, 0x442900ea, 0x00000000}},  //   ženj, _שכן_, _nna_,\n  { {0x7c290207, 0xf1bf0309, 0x64b300e5, 0x00000000}},  //   _iner, ्रान, _căin,\n  { {0x4429011f, 0x7c3b0038, 0x27ed005b, 0x00000000}},  //   _ana_, _hour, sgen_,\n  { {0x644d018e, 0x7c3b0263, 0x240a0401, 0x00000000}},  //   _blai, _kour, онни_,\n  { {0x3320028c, 0x7c3b030a, 0x644d0549, 0x00000000}},  //   _prix_, _jour, _clai,\n  { {0x7c3b0263, 0x6446021e, 0x442900ab, 0x00000000}},  //   _mour, rkki, _dna_,\n  { {0x7c3b0f07, 0x4429040e, 0x644d0c61, 0x00000000}},  //   _lour, _ena_, _elai,\n  { {0x386d033d, 0xa3e7001c, 0x7c29065d, 0x00000000}},  //   oner_, _पाच_, _oner,\n  { {0x386d04d3, 0x7c3b00f4, 0x644d1189, 0x00000000}},  //   nner_, _nour, _glai,\n  { {0x386d010f, 0xa0670745, 0x09e50044, 0x00000000}},  // [4a80] iner_, фата_, প্যা,\n  { {0x44290119, 0x387f0b8b, 0x386d010f, 0x00000000}},  //   _zna_, hour_, hner_,\n  { {0x4429018e, 0x7e7e133a, 0x386d1f2f, 0x00000000}},  //   _yna_, ropp, kner_,\n  { {0x7c3b030a, 0x387f00f4, 0x7e7e0056, 0x00000000}},  //   _cour, jour_, sopp,\n  { {0x7c3b0181, 0x386d01e7, 0x387f009d, 0x00000000}},  //   _dour, dner_, dour_,\n  { {0x386d006c, 0xf6470025, 0xa6e2000c, 0x00000000}},  //   ener_, _شئ_, _æðis,\n  { {0x387f027b, 0x7c3b032c, 0x7aeb0006, 0x00000000}},  //   four_, _four, augt,\n  { {0xd6da0200, 0x386d1f30, 0x7c3b00f4, 0x00000000}},  //   ото_, gner_, _gour,\n  { {0x6e3c023a, 0xd90e026c, 0x63a90161, 0x00000000}},  //   _korb, _چیت_, ženk,\n  { {0x4429002a, 0x644d1f31, 0xdb1901aa, 0x00000000}},  //   _sna_, _slai, pawò,\n  { {0x6e3c0207, 0x386d0302, 0x644d028a, 0x00000000}},  //   _morb, bner_, _plai,\n  { {0x6e3c01c3, 0x2121008e, 0x387f0f8e, 0x00000000}},  //   _lorb, _rrhh_, cour_,\n  { {0x6e3c07a5, 0x644d0b94, 0x44290082, 0x00000000}},  //   _oorb, _vlai, _vna_,\n  { {0x6e3c022b, 0x4429005b, 0x6aa80066, 0x00000000}},  //   _norb, _wna_, _jidf,\n  { {0x6aa80719, 0x30a7017f, 0x00000000, 0x00000000}},  //   _midf, драв,   ,\n  { {0x442908d3, 0x44f81f32, 0x672204eb, 0x00000000}},  //   _una_, mé_, _kroj,\n  { {0x6e3c0363, 0x44f81d1f, 0x63ad13d2, 0x00000000}},  // [4a90] _borb, lé_, _igan,\n  { {0x7c3b030a, 0x3ea71f33, 0x7c29000c, 0x00000000}},  //   _sour, önt_, _sner,\n  { {0x44f8004f, 0x7c3b032c, 0x2d870030, 0x00000000}},  //   né_, _pour, æne_,\n  { {0x22840039, 0x7aeb0c23, 0x67221f34, 0x00000000}},  //   sökt_, tugt, _oroj,\n  { {0x6e3c1f35, 0x44f801ca, 0xfbd0007a, 0x00000000}},  //   _forb, hé_, شتن_,\n  { {0x2019022b, 0x386d0675, 0x44f80062, 0x00000000}},  //   _hasi_, wner_, ké_,\n  { {0x2019006a, 0x386d0c53, 0x387f028c, 0x00000000}},  //   _kasi_, tner_, tour_,\n  { {0x67220119, 0x44f807e4, 0x63ad1f36, 0x00000000}},  //   _broj, dé_, _ngan,\n  { {0x20190093, 0xd706007c, 0x6d450516, 0x00000000}},  //   _masi_, еные_, lyha,\n  { {0x386d0190, 0x20191f37, 0x63ad094f, 0x00000000}},  //   sner_, _lasi_, _agan,\n  { {0x44f800f4, 0x66181a2d, 0x20191f38, 0x00000000}},  //   gé_, _davk, _oasi_,\n  { {0x20190727, 0xa01b0039, 0x67221f39, 0x00000000}},  //   _nasi_, _skön, _froj,\n  { {0x67220006, 0x64ba0066, 0x00000000, 0x00000000}},  //   _groj, _rċie,   ,\n  { {0x63ad027b, 0x44f80161, 0xe60500b0, 0x00000000}},  //   _egan, bé_, ärää,\n  { {0x2019000b, 0x7d020046, 0x44f800f4, 0x00000000}},  //   _basi_, łosz, cé_,\n  { {0x20190e1d, 0x6e3c0010, 0x543609bc, 0x00000000}},  //   _casi_, _sorb, _سربر,\n  { {0x64960051, 0x20190093, 0x2cbf0091, 0x00000000}},  // [4aa0] ráid, _dasi_, _čuda_,\n  { {0x64960051, 0x09e50044, 0x63ad1f3a, 0x00000000}},  //   sáid, প্তা, _zgan,\n  { {0x6e3c1f3b, 0x09d80044, 0x20190197, 0x00000000}},  //   _vorb, সলমা, _fasi_,\n  { {0xfbd200f3, 0x2019001a, 0xeb9a1548, 0x00000000}},  //   اتا_, _gasi_, пие_,\n  { {0x98a70006, 0x76480006, 0x20570049, 0x00000000}},  //   lynė_, ykdy, _טיטל_,\n  { {0x44f800f4, 0xb8660014, 0x67220023, 0x00000000}},  //   yé_, کاتو, _rroj,\n  { {0x321a067f, 0x44f81f3c, 0x64b300e5, 0x00000000}},  //   _mapy_, xé_, _băim,\n  { {0x44f80428, 0x63a90027, 0x660300e0, 0x00000000}},  //   vé_, ženi, _abnk,\n  { {0xd5bd02fb, 0x6aa800ea, 0xb6a50082, 0x00000000}},  //   ोरंज, _tidf, _thậ,\n  { {0x44f81f3d, 0x63ad1f3e, 0x64401bf0, 0x00000000}},  //   té_, _sgan, ömin,\n  { {0x44f8009d, 0x63ad0026, 0x3a2c00f6, 0x00000000}},  //   ué_, _pgan, _indp_,\n  { {0x44f80428, 0xe73a007c, 0xe7ea007d, 0x00000000}},  //   ré_, _нее_, _टाटा_,\n  { {0x44f800f4, 0x2019007f, 0x0614007e, 0x00000000}},  //   sé_, _rasi_, _адлю,\n  { {0x20190307, 0xbebb0023, 0x00000000, 0x00000000}},  //   _sasi_, _brën,   ,\n  { {0x2019008d, 0xdfd50147, 0xc693071c, 0x00000000}},  //   _pasi_, ковы, _גאס_,\n  { {0x63ad0020, 0x8c3d014a, 0x244201e5, 0x00000000}},  //   _ugan, _pişm, _dóms_,\n  { {0x20190059, 0x747c0097, 0x7d150087, 0x00000000}},  // [4ab0] _vasi_, _מנהג, _sszs,\n  { {0x44390039, 0x20191f3f, 0xbebb0023, 0x00000000}},  //   ljs_, _wasi_, _frën,\n  { {0x7059007c, 0x27ff0095, 0x00000000, 0x00000000}},  //   _жанр_, yfun_,   ,\n  { {0x20191b6f, 0x2d8a0190, 0x443901c5, 0x00000000}},  //   _uasi_, _dybe_, njs_,\n  { {0x2fc9011c, 0x7de70088, 0xee3f0011, 0x00000000}},  //   mbag_, _півд, _buýt_,\n  { {0x3eaa001f, 0xd2b800b3, 0x2fc9013e, 0x00000000}},  //   _gibt_, עלות_, lbag_,\n  { {0xdd9407d0, 0x7ae4002b, 0x99d40439, 0x00000000}},  //   _бары, ġita, اتها,\n  { {0x2fc90a5e, 0x00000000, 0x00000000, 0x00000000}},  //   nbag_,   ,   ,\n  { {0x39490580, 0x443900d2, 0x00000000, 0x00000000}},  //   ņas_, djs_,   ,\n  { {0x9f400197, 0xa01b092e, 0xe6450256, 0x00000000}},  //   ggiù_, _sköl, теоп,\n  { {0x2ee91f40, 0x57f502dc, 0x00000000, 0x00000000}},  //   hraf_, _апет,   ,\n  { {0xbebb0065, 0xb9360049, 0x99641c0a, 0x00000000}},  //   _rrën, _ברעג_, _стул,\n  { {0x321a009d, 0xae02006e, 0x00000000, 0x00000000}},  //   _papy_, र्डन_,   ,\n  { {0x2ee91f41, 0x00000000, 0x00000000, 0x00000000}},  //   draf_,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x3eaa002b, 0x2fc90058, 0x88e30044, 0x00000000}},  //   _sibt_, gbag_, _মহাক,\n  { {0xf4870123, 0xdfcf0379, 0x10a30264, 0x00000000}},  // [4ac0] _جاوی, زيل_, ритн,\n  { {0xc33300a0, 0x78ab1f42, 0x394701e5, 0x00000000}},  //   _כוח_, _ligv, kyns_,\n  { {0x2fc91f43, 0x777901f3, 0x00000000, 0x00000000}},  //   bbag_, _lxwx,   ,\n  { {0x0b4601e1, 0xee3f0082, 0x628e124c, 0x00000000}},  //   кнен, _suýt_, llbo,\n  { {0x768f0056, 0x628e01c3, 0x00000000, 0x00000000}},  //   tøyl, olbo,   ,\n  { {0xee3f0082, 0xdb0900d9, 0x00000000, 0x00000000}},  //   _quýt_, _egeï,   ,\n  { {0x9e6303f3, 0x628e00d9, 0x00000000, 0x00000000}},  //   _тврд, ilbo,   ,\n  { {0xb81407d8, 0xdd8f1095, 0xa9270088, 0x00000000}},  //   удиј, _ذوق_, тіше_,\n  { {0xae02006e, 0xc6f7007c, 0xe5c602d3, 0x00000000}},  //   र्थन_, вных_, ксно,\n  { {0x8f9b01ce, 0x953800ed, 0x44ce013e, 0x00000000}},  //   ויפי, езот_, tř_,\n  { {0x39581a95, 0x499300a1, 0xa01b000c, 0x00000000}},  //   _års_, _پیٹر, _sköm,\n  { {0x69d8009f, 0x443f009f, 0xae02006e, 0x00000000}},  //   lave, ðu_, र्तन_,\n  { {0x38b8009f, 0xc458007c, 0x00000000, 0x00000000}},  //   _hér_, тиях_,   ,\n  { {0xe298008b, 0x69d81f44, 0xdb090068, 0x00000000}},  //   каў_, nave, énég,\n  { {0x44391f45, 0x2cbf0091, 0x2fc91f46, 0x00000000}},  //   pjs_, _čudo_, tbag_,\n  { {0x38b80359, 0x69d805b7, 0x628e013e, 0x00000000}},  //   _mér_, have, albo,\n  { {0x2fc90142, 0x69d81f47, 0x2d8e010f, 0x00000000}},  // [4ad0] rbag_, kave, üfen_,\n  { {0x2ee91f48, 0x1d6b01f7, 0x5dd500a1, 0x00000000}},  //   rraf_, وصاً_, اقائ,\n  { {0xf3ff02d5, 0x3da7008b, 0x94170061, 0x00000000}},  //   nião_, траб, _तसाच_,\n  { {0x8c3d047f, 0x321108d2, 0x24890085, 0x00000000}},  //   _kişi, lezy_, _jkam_,\n  { {0x81d60055, 0x69d81edb, 0x99850035, 0x00000000}},  //   _হাত_, fave, _balş_,\n  { {0xfe71089d, 0x69d8068f, 0xf41f021e, 0x00000000}},  //   _اگر_, gave, hdä_,\n  { {0x08d4008b, 0xdddc0521, 0x1ce900a1, 0x00000000}},  //   ацыя, _ukrš, _سکاٹ_,\n  { {0x39470c73, 0x22411013, 0x768f0056, 0x00000000}},  //   ryns_, _lohk_, røym,\n  { {0x69d8004f, 0xfc64005e, 0x64560065, 0x00000000}},  //   bave, _търн, ëzim,\n  { {0x996701e0, 0x69d800d4, 0x69ca0316, 0x00000000}},  //   _ител, cave, _स्पी,\n  { {0xf3ff02d5, 0x04460264, 0x6fd30061, 0x00000000}},  //   gião_, генн, तरां,\n  { {0x8c3d0276, 0x26d90010, 0x36d501ab, 0x00000000}},  //   _bişi, ásos_, _бодр,\n  { {0x66e50517, 0x6f070089, 0x00000000, 0x00000000}},  //   _сола, nībā,   ,\n  { {0x2cad063c, 0x09e50044, 0x41a50164, 0x00000000}},  //   _lied_, প্রা, _गृहस,\n  { {0x50b5012b, 0x09d80055, 0xe297003b, 0x00000000}},  //   исту, _সামা, уар_,\n  { {0x3dcd0044, 0x69d81f49, 0x8c3d1f4a, 0x00000000}},  //   _লাগল, zave, _fişi,\n  { {0x7afd01a2, 0x7bd90022, 0x00000000, 0x00000000}},  // [4ae0] _ästh, dawu,   ,\n  { {0x533700a3, 0xed5a06e7, 0x2bcc007d, 0x00000000}},  //   _ענין_, ноз_, ार्थ,\n  { {0x01fb012f, 0x2cad1f4b, 0x69d80181, 0x00000000}},  //   _אפיל, _bied_, vave,\n  { {0x3ce60027, 0x69d80472, 0x00000000, 0x00000000}},  //   čov_, wave,   ,\n  { {0x38b8009f, 0x69d81f4c, 0x20121f4d, 0x00000000}},  //   _sér_, tave, meyi_,\n  { {0x20120180, 0xd37b0049, 0x2ab9000a, 0x00000000}},  //   leyi_, ערסט, _dèb_,\n  { {0xdd920167, 0x69d801ca, 0xf41f00b0, 0x00000000}},  //   _طور_, rave, ydä_,\n  { {0x06c80044, 0x2ab901aa, 0x6456008f, 0x00000000}},  //   _শিবি, _fèb_, ūzij,\n  { {0xd5b00054, 0xc9f60379, 0x6f070089, 0x00000000}},  //   يفة_, _مساع, cībā,\n  { {0x24891beb, 0x6aca0044, 0x38b80010, 0x00000000}},  //   _skam_, _রিপো, _tér_,\n  { {0x2ab901aa, 0xbebb0065, 0x24590088, 0x00000000}},  //   _zèb_, _rrëm, вань_,\n  { {0xf99300a0, 0x8c3d005d, 0xf3ff00fa, 0x00000000}},  //   _הרע_, _pişi, rião_,\n  { {0x41e7008b, 0xf3ff0181, 0xf64f00a1, 0x00000000}},  //   ліва, sião_, زئی_,\n  { {0xa54600a1, 0xd627012b, 0x51870478, 0x00000000}},  //   _مضبو, _боље_, губа,\n  { {0x64960a87, 0x7bd90045, 0x00000000, 0x00000000}},  //   máin, yawu,   ,\n  { {0x60180245, 0x64960051, 0x00000000, 0x00000000}},  //   лося_, láin,   ,\n  { {0xe8060204, 0x2cad0bdf, 0x93f6006b, 0x00000000}},  // [4af0] व्या_, _ried_, şəcə,\n  { {0x63a90161, 0x2cad1f4e, 0x290c04a5, 0x00000000}},  //   žens, _sied_, _opda_,\n  { {0x2cad00f4, 0x61e50869, 0x201206af, 0x00000000}},  //   _pied_, _idhl, beyi_,\n  { {0x62870145, 0x3d05007d, 0x6f070089, 0x00000000}},  //   lojo, _रहीं_, tībā,\n  { {0x1614013d, 0x649d0051, 0x69d9013d, 0x00000000}},  //   तजार_, méid, _नजदी,\n  { {0x38661261, 0xeab0007a, 0x628708ad, 0x00000000}},  //   _amor_, سعه_, nojo,\n  { {0xa3c5013d, 0x6f070089, 0x2ab901aa, 0x00000000}},  //   एडा_, sībā, _wèb_,\n  { {0xaae700b8, 0xa6e5003b, 0x00000000, 0x00000000}},  //   _مسئو, ажил,   ,\n  { {0xfd10026c, 0x62870089, 0x869901f9, 0x00000000}},  //   _وجہ_, kojo, ктот_,\n  { {0xe7080025, 0x60c50518, 0x7b741f4f, 0x00000000}},  //   اتين_, _othm, _اطفا,\n  { {0x48150680, 0x6f160036, 0x628708ad, 0x00000000}},  //   _вмес, zwyc, dojo,\n  { {0xd46a0d68, 0x61e50048, 0x00000000, 0x00000000}},  //   тиме_, _adhl,   ,\n  { {0xd6c301ef, 0x62870a15, 0x64960a87, 0x00000000}},  //   _امتی, fojo, báin,\n  { {0x35a5007e, 0xe5a50364, 0x64960051, 0x00000000}},  //   _калг, _кили, cáin,\n  { {0xa06a0467, 0x2012014a, 0x649d0048, 0x00000000}},  //   вава_, teyi_, féid,\n  { {0x7643005b, 0x00000000, 0x00000000, 0x00000000}},  //   _hony,   ,   ,\n  { {0x764318cf, 0x6287040d, 0x3329008e, 0x00000000}},  // [4b00] _kony, bojo, _grax_,\n  { {0x44201f50, 0x76431f51, 0x44320085, 0x00000000}},  //   _hai_, _jony, _hny_,\n  { {0x4420010a, 0x7643008a, 0x44321f52, 0x00000000}},  //   _kai_, _mony, _kny_,\n  { {0x44200f0d, 0x09d80055, 0x649d0051, 0x00000000}},  //   _jai_, _সাধা, réig,\n  { {0x442007c8, 0x2b16007c, 0xee3f0082, 0x00000000}},  //   _mai_, рьер, _tuýp_,\n  { {0x44201f53, 0xae0202fb, 0x38660645, 0x00000000}},  //   _lai_, र्शन_, _smor_,\n  { {0x09cf0044, 0x44200082, 0xfce3041f, 0x00000000}},  //   _রাখা, _oai_, _моро,\n  { {0x44201f54, 0xd90d0167, 0x64440026, 0x00000000}},  //   _nai_, عین_, _noii,\n  { {0x04f20055, 0x2ee00169, 0xa2b202f4, 0x00000000}},  //   _জনের_, nsif_, _इंग्,\n  { {0x44320a2c, 0x7c22010f, 0x76430d62, 0x00000000}},  //   _any_, ldor, _cony,\n  { {0x4420022b, 0x7c20002b, 0x76430058, 0x00000000}},  //   _bai_, _kamr, _dony,\n  { {0x7c220710, 0x442002d4, 0x4432175b, 0x00000000}},  //   ndor, _cai_, _cny_,\n  { {0x44200198, 0x628708ad, 0x443200b9, 0x00000000}},  //   _dai_, tojo, _dny_,\n  { {0x1779008b, 0xb287007e, 0x44320093, 0x00000000}},  //   _ёсць_, рымк, _eny_,\n  { {0x44201f55, 0x62870027, 0xd5af0140, 0x00000000}},  //   _fai_, rojo, _фс_,\n  { {0x44201f56, 0x7c200059, 0x76430173, 0x00000000}},  //   _gai_, _namr, _zony,\n  { {0x7c22018e, 0x81d60044, 0x76430009, 0x00000000}},  // [4b10] ddor, _হার_, _yony,\n  { {0x7d010039, 0xe3b00025, 0x44201f57, 0x00000000}},  //   _älsk, _ترى_, _zai_,\n  { {0x2cb8098e, 0x442000a9, 0x2ee00022, 0x00000000}},  //   _curd_, _yai_, asif_,\n  { {0x7c200082, 0x8c3d001a, 0x4c95007c, 0x00000000}},  //   _camr, _nişt, щиес,\n  { {0x69c1010f, 0xa2cb0061, 0x64960051, 0x00000000}},  //   _pfle, तीच्, dáil,\n  { {0x98e50054, 0x7c220325, 0x27e60022, 0x00000000}},  //   مكتو, ador, _adon_,\n  { {0x7643096b, 0x94170061, 0xf09f0082, 0x00000000}},  //   _rony, _तसंच_, _khà_,\n  { {0x764300b0, 0x64960051, 0x3eb91f58, 0x00000000}},  //   _sony, gáil, _kust_,\n  { {0x3eb91f59, 0x44201f5a, 0x764301aa, 0x00000000}},  //   _just_, _rai_, _pony,\n  { {0x44200004, 0x3eb90038, 0x27e601aa, 0x00000000}},  //   _sai_, _must_, _edon_,\n  { {0xb9950054, 0x671c02fb, 0x44201f5b, 0x00000000}},  //   _الاب, _बैठक_, _pai_,\n  { {0xf09f00ad, 0x645d0006, 0x64960051, 0x00000000}},  //   _nhà_, ūrin, cáil,\n  { {0x44200580, 0x386d028c, 0x47a50044, 0x00000000}},  //   _vai_, mier_, _গ্রী,\n  { {0x386d028c, 0x44201f5c, 0x6146013b, 0x00000000}},  //   lier_, _wai_, бега,\n  { {0x44201082, 0x3eb90056, 0x6f1d1e2e, 0x00000000}},  //   _tai_, _aust_, _assc,\n  { {0x386d0685, 0xe3b205d4, 0x3eb90061, 0x00000000}},  //   nier_, _عرب_, _bust_,\n  { {0x44e301f6, 0x3eb91042, 0x8fa310a9, 0x00000000}},  // [4b20] lı_, _cust_, зате,\n  { {0x7c20009f, 0x386d009d, 0x3eb90133, 0x00000000}},  //   _samr, hier_, _dust_,\n  { {0x44e301f6, 0x2ee01184, 0x9f400197, 0x00000000}},  //   nı_, ssif_, ggiò_,\n  { {0xaae60054, 0xa01b00f8, 0xb4fa0049, 0x00000000}},  //   مستو, _sköv, טלער,\n  { {0x7c22008d, 0x09cf0055, 0x3eb905f7, 0x00000000}},  //   rdor, _রাজা, _gust_,\n  { {0x44e3005f, 0x4df500c5, 0x09d80055, 0x00000000}},  //   kı_, _мяст, _সাহা,\n  { {0x6f040089, 0x386d028c, 0xa3d80164, 0x00000000}},  //   ltic, fier_, िरा_,\n  { {0x44e301f6, 0x6f040387, 0x00000000, 0x00000000}},  //   dı_, otic,   ,\n  { {0x2bce001c, 0x6f04051b, 0x64960051, 0x00000000}},  //   _ह्या, ntic, ráil,\n  { {0x59cf024c, 0xb8fe0044, 0x386d0116, 0x00000000}},  //   _स्पर, _তম_, aier_,\n  { {0x69da001e, 0x386d002d, 0x994a002c, 0x00000000}},  //   _iete, bier_, _حلال_,\n  { {0x7bc2028c, 0x69da1ef0, 0x6f040161, 0x00000000}},  //   ncou, _hete, ktic,\n  { {0x7ae4002a, 0x69da0149, 0x136b044b, 0x00000000}},  //   áith, _kete, ушни_,\n  { {0x69da008d, 0x3eb900b5, 0x44e3005a, 0x00000000}},  //   _jete, _rust_, bı_,\n  { {0x44e301df, 0x6f040197, 0x7ea90006, 0x00000000}},  //   cı_, etic, _užpi,\n  { {0x69da04c8, 0x6f040061, 0x7ae20205, 0x00000000}},  //   _lete, ftic, ksot,\n  { {0x2557005f, 0x7bc201a3, 0x2ca600e0, 0x00000000}},  // [4b30] vələ_, dcou, dmod_,\n  { {0x386d00b5, 0x69da0006, 0x291e0cfc, 0x00000000}},  //   zier_, _nete, _osta_,\n  { {0xdd9b017a, 0xf09f0082, 0x93780bb6, 0x00000000}},  //   уша_, _thà_, _نصیر_,\n  { {0xfebb0014, 0x2ca6098e, 0xa01b18f7, 0x00000000}},  //   _ماست_, gmod_, _sjöf,\n  { {0x291e000d, 0x6f041e47, 0x7055007a, 0x00000000}},  //   _asta_, ctic, _هنگا,\n  { {0x44e30676, 0x2557006b, 0x291e0058, 0x00000000}},  //   yı_, sələ_, _bsta_,\n  { {0x386d1f5d, 0x69da1e53, 0xd942005e, 0x00000000}},  //   tier_, _dete, дещи,\n  { {0xd6d10a4f, 0x7bc205f2, 0x5c74005e, 0x00000000}},  //   وقع_, ccou, _елст,\n  { {0x291e1f5e, 0x386d04d7, 0x9f40009f, 0x00000000}},  //   _esta_, rier_, ngið_,\n  { {0x69da0141, 0x44e3027d, 0x386d00fe, 0x00000000}},  //   _gete, tı_, sier_,\n  { {0xe806001c, 0xa509003b, 0x64a6007e, 0x00000000}},  //   व्हा_, шена_, жана,\n  { {0x44e301f6, 0x69da00bb, 0x6abb0020, 0x00000000}},  //   rı_, _zete, _kuuf,\n  { {0x44e301f6, 0x69da011f, 0x8c1a0104, 0x00000000}},  //   sı_, _yete, בורי,\n  { {0x59cf0164, 0x26cd054f, 0x44e3014a, 0x00000000}},  //   _स्मर, mpeo_, pı_,\n  { {0x69c30051, 0x67290190, 0x645d0048, 0x00000000}},  //   icne, lvej, bhsi,\n  { {0x6f040207, 0x645d010f, 0xa9270006, 0x00000000}},  //   ttic, chsi, mažė,\n  { {0x67290030, 0x9f40000c, 0xc61c0044, 0x00000000}},  // [4b40] nvej, ggið_, তারা_,\n  { {0xee3702e9, 0xa01b092e, 0x7bc20019, 0x00000000}},  //   ону_, _sköt, wcou,\n  { {0x69da000d, 0x32180410, 0x09d80044, 0x00000000}},  //   _rete, mery_, _সালা,\n  { {0x6f040209, 0x69da0149, 0x32181f5f, 0x00000000}},  //   ptic, _sete, lery_,\n  { {0x7bc200f4, 0xbb430147, 0x2ca60016, 0x00000000}},  //   rcou, мецк, rmod_,\n  { {0x1ad9008b, 0x98c60264, 0x7bc20549, 0x00000000}},  //   сьць_, осил, scou,\n  { {0x7ae2002b, 0x69da071e, 0x7bc20009, 0x00000000}},  //   ssot, _vete, pcou,\n  { {0xe8e0001d, 0x69da1f60, 0x00000000, 0x00000000}},  //   hiệp_, _wete,   ,\n  { {0x69da0010, 0x645d0065, 0x32180aba, 0x00000000}},  //   _tete, ërim, kery_,\n  { {0x78ba0004, 0x93f6006b, 0x00000000, 0x00000000}},  //   _tutv, şələ,   ,\n  { {0x680200b9, 0x291e0213, 0x32180fb6, 0x00000000}},  //   _půjč, _usta_, dery_,\n  { {0x2ef20007, 0xafdb00ea, 0x00000000, 0x00000000}},  //   kryf_, _fløy,   ,\n  { {0x321800b4, 0xafdb0056, 0x00000000, 0x00000000}},  //   fery_, _gløy,   ,\n  { {0x2ef20007, 0x32180a68, 0x00000000, 0x00000000}},  //   dryf_, gery_,   ,\n  { {0x306b0098, 0x768f00ea, 0x00000000, 0x00000000}},  //   ајан_, røyt,   ,\n  { {0x6295004a, 0x768f00ea, 0x00000000, 0x00000000}},  //   slzo, søyt,   ,\n  { {0x32180142, 0x2a6c0087, 0x69c30133, 0x00000000}},  // [4b50] bery_, _omdb_, ycne,\n  { {0x551e013d, 0x9f40000c, 0x32181f61, 0x00000000}},  //   _बनाए_, rgið_, cery_,\n  { {0x8d6800ed, 0x7d050544, 0x3b1f0066, 0x00000000}},  //   ојца_, uths, _ssuq_,\n  { {0x7d050ca4, 0x21210145, 0x00000000, 0x00000000}},  //   rths, _ishh_,   ,\n  { {0x2cbf0ec4, 0x00000000, 0x00000000, 0x00000000}},  //   _čudu_,   ,   ,\n  { {0xdcfb007a, 0x01d90044, 0x76b20036, 0x00000000}},  //   _پرسش_, _তাঁদ, _słyn,\n  { {0x76b20036, 0x768f0056, 0x69c31f62, 0x00000000}},  //   _płyn, køyr, rcne,\n  { {0x78a201ca, 0x787e0089, 0xd6c30014, 0x00000000}},  //   _chov, tīva, ومبی,\n  { {0xf7710054, 0x78a20022, 0x321801c3, 0x00000000}},  //   عاب_, _dhov, yery_,\n  { {0x67291f63, 0x0565007c, 0x38b10087, 0x00000000}},  //   rvej, звон, _išrm_,\n  { {0x321800ab, 0xceb40097, 0x26cd01ee, 0x00000000}},  //   very_, ויץ_, speo_,\n  { {0x32181f64, 0x59cf0309, 0x00000000, 0x00000000}},  //   wery_, _स्तर,   ,\n  { {0x32180036, 0x29070066, 0x3a25014a, 0x00000000}},  //   tery_, ltna_, _kalp_,\n  { {0x78a90023, 0x768f00ea, 0x00000000, 0x00000000}},  //   lmev, røys,   ,\n  { {0x29070213, 0x753c01a2, 0xe3b200a6, 0x00000000}},  //   ntna_, ärzt, برگ_,\n  { {0xa01b092e, 0x649d00c4, 0x32180652, 0x00000000}},  //   _skör, péia, sery_,\n  { {0x32180387, 0x823601fa, 0x00000000, 0x00000000}},  // [4b60] pery_, _فردا,   ,\n  { {0x29070a0f, 0xbebb0023, 0x00000000, 0x00000000}},  //   ktna_, _arës,   ,\n  { {0x628e016e, 0xc1bb009b, 0x00000000, 0x00000000}},  //   mobo, _למיש,   ,\n  { {0x628e0466, 0xdd8f0188, 0x78a90065, 0x00000000}},  //   lobo, دوم_, jmev,\n  { {0x2007006b, 0x2a6c0181, 0x2905002b, 0x00000000}},  //   əni_, _pmdb_, _aqla_,\n  { {0x78a20e0a, 0x19940605, 0x3a2500f6, 0x00000000}},  //   _shov, маля, _calp_,\n  { {0xa3ac0309, 0x3a2500f6, 0x692300e2, 0x00000000}},  //   केत_, _dalp_, емја,\n  { {0x24800295, 0x628e1f65, 0xc8660088, 0x00000000}},  //   _njim_, hobo, ятли,\n  { {0x628e016e, 0x29071f66, 0x649d1059, 0x00000000}},  //   kobo, atna_, féin,\n  { {0x78a20009, 0xc87f006b, 0x20020022, 0x00000000}},  //   _whov, ışam_, _lcki_,\n  { {0xd7ef1867, 0x186a0184, 0x00000000, 0x00000000}},  //   _пу_, _лажи_,   ,\n  { {0xf8aa012b, 0x00000000, 0x00000000, 0x00000000}},  //   _увек_,   ,   ,\n  { {0x628e0061, 0xd90e0014, 0xa3be013d, 0x00000000}},  //   fobo, _شیک_, ेड़_,\n  { {0x672200b0, 0x00000000, 0x00000000, 0x00000000}},  //   _isoj,   ,   ,\n  { {0x06b100b9, 0x00000000, 0x00000000, 0x00000000}},  //   řící_,   ,   ,\n  { {0x661a0010, 0x5597009b, 0xa01b0039, 0x00000000}},  //   letk, _מדוע_, _sjöb,\n  { {0xead70055, 0x628e1f67, 0xbebb0023, 0x00000000}},  // [4b70] _সম্ম, bobo, _rrës,\n  { {0x0378009b, 0x672d0521, 0x628e0253, 0x00000000}},  //   _מתחת_, _šajk, cobo,\n  { {0x55bb0104, 0x8c3d014a, 0xef1f0095, 0x00000000}},  //   צמאו, _ahşa, _eyüp_,\n  { {0x69c81f68, 0xfc64005e, 0x661a0103, 0x00000000}},  //   _afde, нъчн, hetk,\n  { {0x0dcb017a, 0xcfab0014, 0xbebb0023, 0x00000000}},  //   _губи_, _دادم_, _erër,\n  { {0x661a047c, 0x2296000c, 0x290718f7, 0x00000000}},  //   jetk, tæki_, ttna_,\n  { {0x661a07a0, 0x649d0051, 0xed4e00a1, 0x00000000}},  //   detk, véin, _پھل_,\n  { {0x29070059, 0x97d901e1, 0xfbd303ab, 0x00000000}},  //   rtna_, цьку_, _ستر_,\n  { {0x628e0061, 0x260103d7, 0x29070059, 0x00000000}},  //   yobo, _शादी_, stna_,\n  { {0x7ae90142, 0x00000000, 0x00000000, 0x00000000}},  //   _ivet,   ,   ,\n  { {0x628e1556, 0xa7870014, 0x7ae9000c, 0x00000000}},  //   vobo, _کشاو, _hvet,\n  { {0x628e1f69, 0x7ae90f6c, 0x00000000, 0x00000000}},  //   wobo, _kvet,   ,\n  { {0x628e00b5, 0x4463005e, 0x661a1f6a, 0x00000000}},  //   tobo, твяв, betk,\n  { {0x6e2701d9, 0x661a037e, 0x764a018e, 0x00000000}},  //   _najb, cetk, _gofy,\n  { {0xe7d10164, 0x27ff1f6b, 0x661c010e, 0x00000000}},  //   _सभाप, ogun_, õrke,\n  { {0x27ff0149, 0x10a306e3, 0x628e0142, 0x00000000}},  //   ngun_, висн, sobo,\n  { {0xdee3017f, 0x628e1b5f, 0x27ff0032, 0x00000000}},  // [4b80] коти, pobo, igun_,\n  { {0xe29201fa, 0x649d0048, 0x64460ecc, 0x00000000}},  //   _جذب_, héil, ljki,\n  { {0x7ae90412, 0xdbc60004, 0x8c460088, 0x00000000}},  //   _avet, _mööd, меже,\n  { {0xed570088, 0x00000000, 0x00000000, 0x00000000}},  //   ьох_,   ,   ,\n  { {0x7ae91f6c, 0x671c03d7, 0xb5e30044, 0x00000000}},  //   _cvet, _बैंक_, _মানচ,\n  { {0x6e270107, 0xbe16007a, 0x27ff0032, 0x00000000}},  //   _gajb, _توسع, egun_,\n  { {0x661a0047, 0xdd9200a6, 0x24760089, 0x00000000}},  //   vetk, _شور_, nāms_,\n  { {0x764a1f6d, 0x200001d1, 0x33320146, 0x00000000}},  //   _sofy, ngii_, _oryx_,\n  { {0x59cf02f4, 0xf09300b6, 0x2d981f6e, 0x00000000}},  //   _स्वर, כנה_, _hyre_,\n  { {0x7afd1d43, 0x00000000, 0x00000000, 0x00000000}},  //   _åsta,   ,   ,\n  { {0xe01e0754, 0x984c0036, 0x661a016e, 0x00000000}},  //   _पसंद_, jść_, retk,\n  { {0x7ae91f6f, 0x628016ff, 0x24760089, 0x00000000}},  //   _yvet, émon, dāms_,\n  { {0xe666026b, 0x984c0036, 0xd62a1f70, 0x00000000}},  //   _отко, eść_, _моде_,\n  { {0xe56f02fd, 0x27e400e0, 0x00000000, 0x00000000}},  //   اطی_, lamn_,   ,\n  { {0x6e270305, 0x00000000, 0x00000000, 0x00000000}},  //   _rajb,   ,   ,\n  { {0x6e271f71, 0x27e4093b, 0x3eb80048, 0x00000000}},  //   _sajb, namn_, _airt_,\n  { {0x44290cea, 0x3eb8000c, 0x442b012d, 0x00000000}},  // [4b90] _iaa_, _birt_, mdc_,\n  { {0x5ec80055, 0x8009026c, 0x27e40039, 0x00000000}},  //   _লিখে, _کردہ_, hamn_,\n  { {0x44290089, 0x649d0051, 0x3eb8032c, 0x00000000}},  //   _kaa_, héim, _dirt_,\n  { {0x442900b0, 0x260e0164, 0xfbd00379, 0x00000000}},  //   _jaa_, त्ती_, لته_,\n  { {0x442903b6, 0x6e2701d5, 0x38a1000c, 0x00000000}},  //   _maa_, _tajb, jóra_,\n  { {0xf2d40049, 0x442901a3, 0x2d980190, 0x00000000}},  //   דעס_, _laa_, _fyre_,\n  { {0x2d9804a5, 0x27ff0133, 0xdbd901e5, 0x00000000}},  //   _gyre_, tgun_, _fæðu,\n  { {0x44290be4, 0xf8a80025, 0x98a2005e, 0x00000000}},  //   _naa_, وديه_, лище,\n  { {0x7c3b1f72, 0x2b9000a2, 0x7ae91f73, 0x00000000}},  //   _inur, _پیوس, _uvet,\n  { {0x44290161, 0x7c2b01e5, 0x7c291f74, 0x00000000}},  //   _aaa_, ldgr, _haer,\n  { {0xa90700a6, 0x44290020, 0x442b1f75, 0x00000000}},  //   _زبان, _baa_, fdc_,\n  { {0xc20900b6, 0x7c2b0039, 0x3d07013d, 0x00000000}},  //   _לה_, ndgr, _हमने_,\n  { {0x7c2905a6, 0x44291f76, 0x7c3b0022, 0x00000000}},  //   _maer, _daa_, _mnur,\n  { {0x66f600b6, 0x7c290007, 0x44290052, 0x00000000}},  //   _נמצא_, _laer, _eaa_,\n  { {0xf992007b, 0x44290190, 0x7c3b1b01, 0x00000000}},  //   ָרן_, _faa_, _onur,\n  { {0xe3da0055, 0x387f000c, 0x3eb80066, 0x00000000}},  //   _থাকব, nnur_, _sirt_,\n  { {0x20000667, 0x3f860181, 0xa3ac013d, 0x00000000}},  // [4ba0] rgii_, çou_, केश_,\n  { {0x63a4014a, 0x7c3b0048, 0x44290258, 0x00000000}},  //   _izin, _anur, _zaa_,\n  { {0x44291f77, 0x3eb801e5, 0x7c290e42, 0x00000000}},  //   _yaa_, _virt_, _baer,\n  { {0x7c29018e, 0x3eb811f0, 0x64960051, 0x00000000}},  //   _caer, _wirt_, máis,\n  { {0x7c290149, 0x64960051, 0xc3330049, 0x00000000}},  //   _daer, láis, ָוו_,\n  { {0x2d98008d, 0x63a400e7, 0x7c290032, 0x00000000}},  //   _tyre_, _mzin, _eaer,\n  { {0x6da31f78, 0x387f01e5, 0x00000000, 0x00000000}},  //   _бира, fnur_,   ,\n  { {0x3b0a0175, 0x7c290016, 0x38a11f79, 0x00000000}},  //   _небо_, _gaer, tóra_,\n  { {0x44290943, 0x00000000, 0x00000000, 0x00000000}},  //   _raa_,   ,   ,\n  { {0x44290ac2, 0x6280049a, 0xb6020224, 0x00000000}},  //   _saa_, émol, _část,\n  { {0x442916e7, 0xa3d50a78, 0x63a40041, 0x00000000}},  //   _paa_, конч, _azin,\n  { {0x6aba0095, 0x00000000, 0x00000000, 0x00000000}},  //   _hitf,   ,   ,\n  { {0x44290052, 0x442b0068, 0x00000000, 0x00000000}},  //   _vaa_, rdc_,   ,\n  { {0x63a40089, 0x6726000c, 0x44290145, 0x00000000}},  //   _dzin, ækju, _waa_,\n  { {0x6aba0bdf, 0x44291f7a, 0x63a41f7b, 0x00000000}},  //   _mitf, _taa_, _ezin,\n  { {0x759b0c9f, 0x645f1f7c, 0x44290093, 0x00000000}},  //   _מיוח, _ulqi, _uaa_,\n  { {0x187b0097, 0x09e60044, 0x64960051, 0x00000000}},  // [4bb0] פטמב, _নানা, ráit,\n  { {0x38a1009f, 0x765a0006, 0x7c3b00f8, 0x00000000}},  //   jórn_, nkty, _snur,\n  { {0x64960051, 0x5ff5013b, 0x7c2900d4, 0x00000000}},  //   cáis, _изну, _paer,\n  { {0x64960051, 0x2fcb00fa, 0x61e70095, 0x00000000}},  //   láir, _ufcg_, lajl,\n  { {0x7c291f7d, 0x7c2b1f7e, 0x09d80044, 0x00000000}},  //   _vaer, rdgr, _সাজা,\n  { {0x50d400a6, 0x64960048, 0xd5b80089, 0x00000000}},  //   _جزیر, náir, ndās_,\n  { {0x6f0d052e, 0x26cf004a, 0xf41f00b0, 0x00000000}},  //   ltac, _stgo_, keä_,\n  { {0x61e71f7f, 0x64960051, 0x7c3b002b, 0x00000000}},  //   hajl, háir, _unur,\n  { {0x387f023a, 0xd706007c, 0xc6250044, 0x00000000}},  //   rnur_, вные_, বাসা_,\n  { {0x6f0d004a, 0x387f1372, 0x00000000, 0x00000000}},  //   itac, snur_,   ,\n  { {0xc959089d, 0x63a40047, 0x69ca006e, 0x00000000}},  //   _تلاش_, _szin, _स्टी,\n  { {0x6f0d0036, 0xa01b0039, 0x00000000, 0x00000000}},  //   ktac, _sjön,   ,\n  { {0x03230088, 0xa3ac013d, 0xa856009b, 0x00000000}},  //   адян, कें_, _שינה_,\n  { {0x765a0190, 0x64961f80, 0x00000000, 0x00000000}},  //   ckty, gáir,   ,\n  { {0x4096003b, 0x09e60044, 0x26c20027, 0x00000000}},  //   врат, _নামা, íkov_,\n  { {0x20c70011, 0x645d0065, 0x3e640274, 0x00000000}},  //   _dõi_, ërit, _möte_,\n  { {0x6b9b0047, 0x63a40020, 0x61e7012d, 0x00000000}},  // [4bc0] _nyug, _uzin, bajl,\n  { {0x3f9c0089, 0x02fb01ce, 0x00000000, 0x00000000}},  //   āvu_, _קלימ,   ,\n  { {0xa01b000c, 0x99870010, 0x00000000, 0x00000000}},  //   _kjöl, kenő_,   ,\n  { {0xf536007b, 0x6f0d00f6, 0x00000000, 0x00000000}},  //   כטער_, btac,   ,\n  { {0xa01b0039, 0x6f0d1f81, 0xafdb00ea, 0x00000000}},  //   _mjöl, ctac, _snøg,\n  { {0x9f420065, 0x00000000, 0x00000000, 0x00000000}},  //   _lekë_,   ,   ,\n  { {0xda65006d, 0x6b890716, 0xc27b0104, 0x00000000}},  //   داني, _exeg, ורסי,\n  { {0xd7f00025, 0x00000000, 0x00000000, 0x00000000}},  //   حكة_,   ,   ,\n  { {0xe3e10055, 0x9f49009f, 0x6aba0066, 0x00000000}},  //   _ভালব, ngað_, _titf,\n  { {0x6aba01d6, 0x00000000, 0x00000000, 0x00000000}},  //   _uitf,   ,   ,\n  { {0x4e35007b, 0x765a1f82, 0x3a3e0253, 0x00000000}},  //   אָרן_, rkty, _intp_,\n  { {0x89790049, 0x99790049, 0x6f0d1f83, 0x00000000}},  //   _אָנה, _אָנפ, ytac,\n  { {0x61e71f84, 0x00000000, 0x00000000, 0x00000000}},  //   tajl,   ,   ,\n  { {0x1757009b, 0x07a3003b, 0xc7a3003b, 0x00000000}},  //   _בסדר_, _тачн, _тичк,\n  { {0xc69300bd, 0xa01b009f, 0x645d0065, 0x00000000}},  //   _דאס_, _fjöl, ëris,\n  { {0x20c7061f, 0x260e02fb, 0x61e7011f, 0x00000000}},  //   _või_, त्री_, sajl,\n  { {0x53350b11, 0xc6250044, 0xe81401f5, 0x00000000}},  // [4bd0] _септ, বারা_, थ्या_,\n  { {0x20c7006c, 0x3a3e0026, 0x752f0036, 0x00000000}},  //   _tõi_, _nntp_, łcze,\n  { {0x6f0d095e, 0x7bf901fc, 0xc7b90010, 0x00000000}},  //   stac, енер_, ndőr_,\n  { {0x645d008d, 0xda05007d, 0x00000000, 0x00000000}},  //   nksi, _राहत_,   ,\n  { {0x9f9d000c, 0x61e501a2, 0x200e013f, 0x00000000}},  //   _gæði_, _kehl, əfi_,\n  { {0x61e5013e, 0x60c51c3b, 0x00000000, 0x00000000}},  //   _jehl, _kuhm,   ,\n  { {0x645d000c, 0xa3e30164, 0xf4bd0044, 0x00000000}},  //   kksi, धरा_, _আব্ব,\n  { {0xccf200b6, 0x7af6010a, 0x39490091, 0x00000000}},  //   _לכל_, šyta, ćas_,\n  { {0x62950047, 0x60c51f85, 0x00000000, 0x00000000}},  //   kozo, _luhm,   ,\n  { {0xb7bd001a, 0x645d00bb, 0xe9d30025, 0x00000000}},  //   deţe, eksi, _ضغط_,\n  { {0x69c11433, 0xf3e616c4, 0xdd120276, 0x00000000}},  //   _igle, лжно, _müşr,\n  { {0x38850089, 0xd6d900b4, 0x00000000, 0x00000000}},  //   mēro_, zyły_,   ,\n  { {0x81d508b7, 0xc87915ec, 0x61e5019a, 0x00000000}},  //   _হয়_, miş_, _behl,\n  { {0x412a0373, 0xc8790279, 0x43750900, 0x00000000}},  //   ного_, liş_, руют,\n  { {0x61e50190, 0x216a04cf, 0x00000000, 0x00000000}},  //   _dehl, хиви_,   ,\n  { {0xc8790279, 0x787e0089, 0x645d03a1, 0x00000000}},  //   niş_, tīvi, cksi,\n  { {0x44221baf, 0x69c101d9, 0xee3a0780, 0x00000000}},  // [4be0] mek_, _ogle, нна_,\n  { {0x44220047, 0xb226005e, 0xc879006b, 0x00000000}},  //   lek_, _смол, hiş_,\n  { {0xdca6026b, 0xc879014a, 0x2d9c0030, 0x00000000}},  //   гажи, kiş_, æve_,\n  { {0x44221bc0, 0x1613007d, 0x61e51f86, 0x00000000}},  //   nek_, त्तर_, _zehl,\n  { {0x6d430039, 0x4422002d, 0xc8791f87, 0x00000000}},  //   änar, iek_, diş_,\n  { {0x90e500a6, 0x44221f88, 0x31e20044, 0x00000000}},  //   _حسین, hek_, _বাঁশ,\n  { {0x44221f89, 0x645d00b0, 0x09e60044, 0x00000000}},  //   kek_, yksi, _নাদা,\n  { {0x44220aa5, 0xb6f40098, 0xd6da0517, 0x00000000}},  //   jek_, азиј, нто_,\n  { {0x44221f8a, 0x2057007b, 0x6e2e002b, 0x00000000}},  //   dek_, טיקל_, _kabb,\n  { {0x6e2e1f8b, 0x09b90044, 0x7c22001a, 0x00000000}},  //   _jabb, ঁড়া, leor,\n  { {0x629500b9, 0x44221f8c, 0x6e2e01a3, 0x00000000}},  //   vozo, fek_, _mabb,\n  { {0x44220047, 0x6e2e1f8d, 0x69c10059, 0x00000000}},  //   gek_, _labb, _zgle,\n  { {0x62950232, 0x645d1f8e, 0xb8930025, 0x00000000}},  //   tozo, rksi, _النع,\n  { {0x442d0119, 0xae03006e, 0x6d41000c, 0x00000000}},  //   že_, _लाइन_, _álag,\n  { {0xd49b0256, 0x4422011f, 0x62950010, 0x00000000}},  //   _при_, bek_, rozo,\n  { {0x4422011f, 0x629500ea, 0x4fd50cee, 0x00000000}},  //   cek_, sozo, ржат,\n  { {0x7c221f8f, 0xf3ff0181, 0x62950065, 0x00000000}},  // [4bf0] deor, lhão_, pozo,\n  { {0xe45f0510, 0xc879006b, 0x2bba0061, 0x00000000}},  //   lkö_, ziş_, ेशना,\n  { {0xf3ff0181, 0xfbd60055, 0xc8790180, 0x00000000}},  //   nhão_, _হয়ত, yiş_,\n  { {0x7c220c53, 0x27e60051, 0x69c1005b, 0x00000000}},  //   geor, _neon_, _sgle,\n  { {0x6e2e1a64, 0xab2901f9, 0xbb4509e8, 0x00000000}},  //   _fabb, тола_, релк,\n  { {0x2bd5007d, 0x27e91531, 0x27e60145, 0x00000000}},  //   _ड्रा, _žan_, _aeon_,\n  { {0x44221f90, 0x6845005e, 0x3258009b, 0x00000000}},  //   yek_, инка, רסום_,\n  { {0x5d840054, 0x7ccc005a, 0x6e2e0066, 0x00000000}},  //   _الفل, _uğra, _zabb,\n  { {0xc879005a, 0x27e60007, 0x5746005e, 0x00000000}},  //   riş_, _deon_, изъм_,\n  { {0x44221f91, 0x69c10213, 0x00000000, 0x00000000}},  //   wek_, _ugle,   ,\n  { {0x44221f92, 0xd46a0e82, 0xe5a5007c, 0x00000000}},  //   tek_, вине_, рини,\n  { {0x6f1d1f93, 0x76b20036, 0x3e640039, 0x00000000}},  //   _opsc, _błys, _möta_,\n  { {0x44221f94, 0x76b20036, 0x00000000, 0x00000000}},  //   rek_, _płyt,   ,\n  { {0x44220047, 0x368b02dc, 0x200b004a, 0x00000000}},  //   sek_, _ясен_, _acci_,\n  { {0x44220047, 0xc0e609c0, 0x64a60679, 0x00000000}},  //   pek_, робк, _кака,\n  { {0x6e2e1f95, 0x251a034e, 0x7cc50006, 0x00000000}},  //   _sabb, _יוצא, _gėri,\n\n  { {0x6e2e000c, 0x7d1c0521, 0x00000000, 0x00000000}},  // [4c00] _pabb, _sprs,   ,\n  { {0x2bde0164, 0x6e2e002b, 0x2cbf0035, 0x00000000}},  //   मर्थ, _qabb, _aiud_,\n  { {0x716a003b, 0x6e2e0197, 0x10a602d3, 0x00000000}},  //   _ранг_, _vabb, _винн,\n  { {0x6e2e0066, 0xe3bf004a, 0x213a00f6, 0x00000000}},  //   _wabb, señe_, _irph_,\n  { {0x6e2e00bb, 0x7e60001a, 0x7bc40006, 0x00000000}},  //   _tabb, _împo, žiuo,\n  { {0x7c22027e, 0xb8f40025, 0xe9df0011, 0x00000000}},  //   seor, مكتب, _đúc_,\n  { {0x672b008d, 0x6f040051, 0x7c22008e, 0x00000000}},  //   _asgj, luic, peor,\n  { {0x649d07cb, 0xc5f00044, 0x9cd700b3, 0x00000000}},  //   néit, জ্ঞা_, _כולה_,\n  { {0x44f101d5, 0x76aa007c, 0xbebb0065, 0x00000000}},  //   eġ_, ктов_, _rrëz,\n  { {0x649d009d, 0x27e6004a, 0x24890023, 0x00000000}},  //   héit, _weon_, _sjam_,\n  { {0x994a06b4, 0x76b20036, 0xe45f00b0, 0x00000000}},  //   _جلال_, _słys, tkö_,\n  { {0x7d030129, 0x291e01a3, 0x00000000, 0x00000000}},  //   ànsi, _ipta_,   ,\n  { {0x6f04008e, 0x3d080204, 0x38660035, 0x00000000}},  //   juic, ांडे_, _ilor_,\n  { {0x3d07013d, 0x3866016c, 0x291e0022, 0x00000000}},  //   _हमले_, _hlor_, _kpta_,\n  { {0x20190022, 0x248900fa, 0x313502dc, 0x00000000}},  //   _pbsi_, _tjam_, щевр,\n  { {0x61e20107, 0x4e19006e, 0xc1040025, 0x00000000}},  //   _đole, न्नई_, توفي,\n  { {0x6f040197, 0x3e6400f8, 0x2cbf00f6, 0x00000000}},  // [4c10] guic, _söta_, _riud_,\n  { {0x291e0035, 0x7e60001a, 0xb7fe0044, 0x00000000}},  //   _opta_, _împl, ্জিত_,\n  { {0x38660efe, 0x9f4000c4, 0x00000000, 0x00000000}},  //   _olor_, raiá_,   ,\n  { {0xbd440025, 0x62800161, 0x6f0400fa, 0x00000000}},  //   تنمي, émov, buic,\n  { {0x291e1505, 0x6f1d0a60, 0x00000000, 0x00000000}},  //   _apta_, _upsc,   ,\n  { {0xa3ac02d2, 0x386601a3, 0x20090fec, 0x00000000}},  //   केट_, _alor_, lgai_,\n  { {0xceb2007b, 0x649d1f96, 0x5c070a7c, 0x00000000}},  //   _מיך_, néis, _вяза,\n  { {0x20091f97, 0x6c850054, 0x3829003b, 0x00000000}},  //   ngai_, _الرم, ужио_,\n  { {0xf7490014, 0xdd380089, 0x09e60044, 0x00000000}},  //   اجعه_, māša, _নারা,\n  { {0xd4d9008b, 0x62870107, 0x1a6500a1, 0x00000000}},  //   льмі_, jnjo, _دیتی_,\n  { {0x386600d6, 0x62870091, 0xc3290097, 0x00000000}},  //   _flor_, dnjo, _רו_,\n  { {0xdd38001e, 0x44e30010, 0xe77800a1, 0x00000000}},  //   nāša, rű_, الیں_,\n  { {0x38a1000c, 0x27ed0016, 0x00000000, 0x00000000}},  //   jóri_, maen_,   ,\n  { {0x27ed018e, 0x628701ee, 0x00000000, 0x00000000}},  //   laen_, gnjo,   ,\n  { {0x76430046, 0xa06a0265, 0xa3ac007d, 0x00000000}},  //   _inny, гава_, केज_,\n  { {0x320c0036, 0x20091f98, 0x27ed1f99, 0x00000000}},  //   żdy_, ggai_, naen_,\n  { {0x6444011c, 0x649d0051, 0x3fcb00a2, 0x00000000}},  // [4c20] _inii, réit, ادفی_,\n  { {0x44321f9a, 0xf76700a1, 0xf41f00b0, 0x00000000}},  //   _hay_, _ہا_, nnän_,\n  { {0x44321f9b, 0x61ee00f4, 0x5bc60379, 0x00000000}},  //   _kay_, mabl, مقال,\n  { {0xdd8f06dd, 0x61ee00f4, 0xe3bf008e, 0x00000000}},  //   رون_, labl, leña_,\n  { {0x44321f9c, 0x64560263, 0x6f040b33, 0x00000000}},  //   _may_, _moyi, quic,\n  { {0x523a007b, 0x649d0051, 0x320a1f9d, 0x00000000}},  //   רײַנ, néir, ngby_,\n  { {0x629e1489, 0x27ed1506, 0xdd380089, 0x00000000}},  //   _mkpo, faen_, bāša,\n  { {0xc6f8058f, 0x76430047, 0x62870107, 0x00000000}},  //   аних_, _anny, znjo,\n  { {0x61ee00f8, 0x6d5e0006, 0x254e006b, 0x00000000}},  //   kabl, lypa, məli_,\n  { {0xbb3b007b, 0x7e7e0bf3, 0x44f40364, 0x00000000}},  //   _געמי, nipp, опос,\n  { {0x44321f9e, 0x61ee0781, 0xe3bf004a, 0x00000000}},  //   _bay_, dabl, deña_,\n  { {0x76431f9f, 0x44320011, 0x629e0093, 0x00000000}},  //   _enny, _cay_, _akpo,\n  { {0x44320038, 0x61ee0919, 0xa3b3013d, 0x00000000}},  //   _day_, fabl, झें_,\n  { {0x61ee0efe, 0x649d0051, 0xa6b6005e, 0x00000000}},  //   gabl, téis, _усещ,\n  { {0x44320173, 0x62870247, 0x7e7e1254, 0x00000000}},  //   _fay_, rnjo, dipp,\n  { {0x62871aa8, 0x44320472, 0x6d5e0240, 0x00000000}},  //   snjo, _gay_, dypa,\n  { {0x6235178d, 0x61ee00ab, 0x200901a3, 0x00000000}},  // [4c30] _депу, babl, rgai_,\n  { {0x61ee0682, 0x63ad0756, 0x518702be, 0x00000000}},  //   cabl, _izan, _гума,\n  { {0x4432006b, 0x601904dd, 0x254e006b, 0x00000000}},  //   _yay_, _коня_, fəli_,\n  { {0xac190269, 0x44320011, 0x6e2501a2, 0x00000000}},  //   роду_, _xay_, sehb,\n  { {0x3de80055, 0xdea4025a, 0x6d5e0009, 0x00000000}},  //   _পারল, _کیلی, aypa,\n  { {0x6d5e00bb, 0x7a07007e, 0xdcf4005a, 0x00000000}},  //   bypa, сядж, _çağl,\n  { {0x27ed00b0, 0x00000000, 0x00000000, 0x00000000}},  //   taen_,   ,   ,\n  { {0x61ee192f, 0x63ad0095, 0x00000000, 0x00000000}},  //   zabl, _ozan,   ,\n  { {0x27ed0ee6, 0x61ee0549, 0x00000000, 0x00000000}},  //   raen_, yabl,   ,\n  { {0x44320038, 0x06960025, 0xe6160131, 0x00000000}},  //   _say_, ينية_, одь_,\n  { {0x61ee006b, 0x443200ab, 0x63ad006b, 0x00000000}},  //   vabl, _pay_, _azan,\n  { {0xccf20049, 0x61ee0133, 0x6fd90204, 0x00000000}},  //   וכט_, wabl, _फ्लू,\n  { {0xd6db064b, 0x6d5e0046, 0x44321fa0, 0x00000000}},  //   _сте_, zypa, _vay_,\n  { {0x44320038, 0x386d02d5, 0x95cb1fa1, 0x00000000}},  //   _way_, lher_, _суда_,\n  { {0x61ee1fa2, 0x4432001d, 0x29070279, 0x00000000}},  //   rabl, _tay_, nuna_,\n  { {0xe3bf0219, 0xd12f00a1, 0x205500c0, 0x00000000}},  //   seña_, کمہ_, птур,\n  { {0x8fa31fa3, 0xa0670200, 0x29070058, 0x00000000}},  // [4c40] дате, цата_, huna_,\n  { {0x2907000b, 0xa3af001c, 0x6d5e1fa4, 0x00000000}},  //   kuna_, _करत_, typa,\n  { {0x7e7e0541, 0x29071fa5, 0x629c1fa6, 0x00000000}},  //   ripp, juna_, moro,\n  { {0x629c0395, 0x2907002d, 0x6d5e0009, 0x00000000}},  //   loro, duna_, rypa,\n  { {0x386d01d5, 0x9d0a0044, 0x254e006b, 0x00000000}},  //   dher_, রবেন_, rəli_,\n  { {0x290719bd, 0x63a41fa7, 0xeaaf00a1, 0x00000000}},  //   funa_, _myin, نٹن_,\n  { {0xa967025f, 0xed5a0088, 0x20e8001a, 0x00000000}},  //   жија_, _тов_, nşi_,\n  { {0x386d00ab, 0x629c1fa8, 0x63a40045, 0x00000000}},  //   gher_, horo, _oyin,\n  { {0x63a4000b, 0x629c10fa, 0x29071fa9, 0x00000000}},  //   _nyin, koro, auna_,\n  { {0x629c0023, 0xda66006d, 0x00000000, 0x00000000}},  //   joro, _باري,   ,\n  { {0x29070cff, 0x629c1fa8, 0x63ad0ef2, 0x00000000}},  //   cuna_, doro, _szan,\n  { {0x386d1faa, 0x6f160036, 0x63a40061, 0x00000000}},  //   cher_, ktyc, _byin,\n  { {0x629c0016, 0x63a40045, 0x2ca600f6, 0x00000000}},  //   foro, _cyin, ilod_,\n  { {0x63a40133, 0x67221fab, 0xcfe70044, 0x00000000}},  //   _dyin, _ipoj, _ফাইন,\n  { {0x2ca60058, 0xc0cb17da, 0xc7ad00a1, 0x00000000}},  //   klod_, руге_, _لڑی_,\n  { {0x200f006c, 0x439501e1, 0x63ad01c3, 0x00000000}},  //   ügi_, _найс, _tzan,\n  { {0x629c0142, 0x2907022b, 0x63ad005d, 0x00000000}},  // [4c50] boro, zuna_, _uzan,\n  { {0x629c0a9c, 0xe3bf008e, 0x317101f3, 0x00000000}},  //   coro, leño_, pzzz_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xa3af0183, 0x29070020, 0x69c800ea, 0x00000000}},  //   _करा_, vuna_, _agde,\n  { {0x386d014a, 0xfe7301fa, 0xcfab0355, 0x00000000}},  //   vher_, _قدس_, _خادم_,\n  { {0xdc55026c, 0x5ba8007e, 0x00000000, 0x00000000}},  //   _کرسک, цкім_,   ,\n  { {0x386d0038, 0x6b8d001a, 0x2ca602e7, 0x00000000}},  //   ther_, _ţigă, blod_,\n  { {0x629c0142, 0x25ed0061, 0xbd440025, 0x00000000}},  //   zoro, _आजही_, _تنفي,\n  { {0x2907022b, 0x386d010f, 0x629c0020, 0x00000000}},  //   suna_, rher_, yoro,\n  { {0x2907037e, 0x386d192b, 0x6e3500d0, 0x00000000}},  //   puna_, sher_, _jazb,\n  { {0x629c167a, 0xe9d00774, 0x386d00ab, 0x00000000}},  //   voro, _شغل_, pher_,\n  { {0x7ae91fac, 0x629c1fad, 0xdb00009d, 0x00000000}},  //   _kwet, woro, _symé,\n  { {0x629c0027, 0x87040318, 0x888c0049, 0x00000000}},  //   toro, _قبول, _דראַ,\n  { {0xf77002fd, 0x70b400e8, 0x2f140039, 0x00000000}},  //   _جام_, ंग्ल, väg_,\n  { {0x629c1fae, 0x213e0051, 0xe5a2007c, 0x00000000}},  //   roro, íth_, _пиши,\n  { {0x629c10fa, 0x3de80044, 0xe3bf004a, 0x00000000}},  //   soro, _পাইল, ceño_,\n  { {0x629c01d9, 0x44200061, 0x00000000, 0x00000000}},  // [4c60] poro, _ibi_,   ,\n  { {0x6f160036, 0x38850089, 0xa01b1faf, 0x00000000}},  //   rtyc, mēru_, _sjöt,\n  { {0x6f160046, 0x0c2601fc, 0x44201f66, 0x00000000}},  //   styc, змен, _kbi_,\n  { {0x3d1c03d7, 0x9b6a0245, 0x7ae900de, 0x00000000}},  //   _नहीं_, йшла_, _bwet,\n  { {0x4420008d, 0xfaa6072b, 0x2ca61fb0, 0x00000000}},  //   _mbi_, падо, rlod_,\n  { {0x8d66007c, 0x44201fb1, 0xe9940014, 0x00000000}},  //   _евге, _lbi_, وهشگ,\n  { {0x6722047c, 0x6f0401a2, 0x00000000, 0x00000000}},  //   _spoj, lric,   ,\n  { {0xdca3017a, 0x44200b57, 0xa01b000c, 0x00000000}},  //   _заси, _nbi_, _hjör,\n  { {0x07f70054, 0x6f041fb2, 0xa01b000c, 0x00000000}},  //   سريع_, nric, _kjör,\n  { {0x44200004, 0xe67801fb, 0x6f040051, 0x00000000}},  //   _abi_, ійні_, iric,\n  { {0x7ae9054e, 0x442001a3, 0x47960014, 0x00000000}},  //   _zwet, _bbi_, _کجاس,\n  { {0x2b2003d7, 0x60c604cb, 0x6f0401ed, 0x00000000}},  //   _यहाँ_, _nikm, kric,\n  { {0xe3bf04de, 0x44200253, 0xa5f81649, 0x00000000}},  //   reño_, _dbi_, _делу_,\n  { {0xe3bf0219, 0xf7bb009b, 0x7afd0190, 0x00000000}},  //   seño_, _הזדמ, _æste,\n  { {0x442000ca, 0x6e350091, 0x6f041fb3, 0x00000000}},  //   _fbi_, _razb, eric,\n  { {0x6f040211, 0x3eba00e0, 0x30a40457, 0x00000000}},  //   fric, empt_, ерув,\n  { {0xa01b1fb4, 0xbfab1036, 0x442b05d2, 0x00000000}},  // [4c70] _björ, стве_, mec_,\n  { {0x442b0c06, 0x44391fb5, 0x7bc90009, 0x00000000}},  //   lec_, lds_, _sgeu,\n  { {0x7ae901aa, 0x6e3501dc, 0x6f040026, 0x00000000}},  //   _swet, _vazb, aric,\n  { {0xc0ab06dd, 0x442b07e4, 0x7ae909d7, 0x00000000}},  //   _داخل_, nec_, _pwet,\n  { {0x44390bd3, 0x6f04049a, 0x1a6500d3, 0x00000000}},  //   ids_, cric, ویری_,\n  { {0x442b1fb6, 0xbb4201fc, 0xa01b000c, 0x00000000}},  //   hec_, тешк, _gjör,\n  { {0x442b0027, 0x63a800b4, 0x00000000, 0x00000000}},  //   kec_, ędni,   ,\n  { {0x673b0107, 0xba7700d3, 0x443915ff, 0x00000000}},  //   tvuj, _کارت, jds_,\n  { {0x442b00b9, 0x7c2b0133, 0x00000000, 0x00000000}},  //   dec_, megr,   ,\n  { {0x4439049b, 0x7c2b1fb7, 0x78a203c9, 0x00000000}},  //   eds_, legr, _ekov,\n  { {0xb579007c, 0x442b00d4, 0x44201fb8, 0x00000000}},  //   ющих_, fec_, _pbi_,\n  { {0x6f041352, 0x44390f4a, 0x78a20087, 0x00000000}},  //   yric, gds_, _gkov,\n  { {0x08760049, 0xe7380088, 0x78a902e7, 0x00000000}},  //   _קענט_, _неї_, mlev,\n  { {0x78a901e8, 0x7c2b00e0, 0x6f0400ca, 0x00000000}},  //   llev, hegr, vric,\n  { {0x442b0161, 0x3d0c03d7, 0x6f0400bb, 0x00000000}},  //   bec_, _हमें_, wric,\n  { {0x78a900b5, 0x26c700c4, 0x442b05bd, 0x00000000}},  //   nlev, _hino_, cec_,\n  { {0x26c71fb9, 0xaec600e1, 0x7c2b0056, 0x00000000}},  // [4c80] _kino_, дбал, degr,\n  { {0x26c71fba, 0x2fcb19a7, 0x7c3901c3, 0x00000000}},  //   _jino_, _egcg_, edwr,\n  { {0x26cf049a, 0x6f04010f, 0x60c60485, 0x00000000}},  //   _lugo_, sric, _tikm,\n  { {0x50b60099, 0x06e30044, 0x78a900b9, 0x00000000}},  //   _існу, _মিনি, jlev,\n  { {0x628e0045, 0x78a91fbb, 0xa01b1fbc, 0x00000000}},  //   onbo, dlev, _tjör,\n  { {0x26c7027b, 0x78a20030, 0x442b0d0a, 0x00000000}},  //   _nino_, _skov, zec_,\n  { {0x44390007, 0x628e021f, 0x7c2b05c6, 0x00000000}},  //   yds_, inbo, begr,\n  { {0x7c2b0061, 0x6c3100a1, 0x8b2600ed, 0x00000000}},  //   cegr, _مہما, _одбе,\n  { {0x442b086e, 0x26c70058, 0x61fe07ac, 0x00000000}},  //   vec_, _bino_, _odpl,\n  { {0x7ae20035, 0x26cf011c, 0x26c70026, 0x00000000}},  //   mpot, _dugo_, _cino_,\n  { {0x78a900b5, 0x7ae21fbd, 0x26c7016e, 0x00000000}},  //   blev, lpot, _dino_,\n  { {0x27ef009f, 0x628e00bb, 0x4439028a, 0x00000000}},  //   _gegn_, enbo, uds_,\n  { {0x26c70198, 0x442b1d15, 0x7ae21635, 0x00000000}},  //   _fino_, rec_, npot,\n  { {0x442b11e6, 0x26c70197, 0x6d41007f, 0x00000000}},  //   sec_, _gino_, _šlam,\n  { {0x442b0142, 0x44390300, 0x6d5800b0, 0x00000000}},  //   pec_, pds_, äval,\n  { {0x628e00bb, 0x3de80044, 0x26c70006, 0x00000000}},  //   anbo, _পাগল, _zino_,\n  { {0x69da11d1, 0x7c2b0d22, 0xeb0d013d, 0x00000000}},  // [4c90] _ofte, vegr, _समेत_,\n  { {0x26c700f6, 0x00000000, 0x00000000, 0x00000000}},  //   _xino_,   ,   ,\n  { {0x8c3d014a, 0x61f5005d, 0x78a9017b, 0x00000000}},  //   _akşa, mazl, ylev,\n  { {0x1ddf02f4, 0x69da1fbe, 0x1bd51ac0, 0x00000000}},  //   _प्रत, _afte, ходя,\n  { {0x27ef03bd, 0x7c3900d9, 0xd9e60044, 0x00000000}},  //   _regn_, rdwr, _নাজম,\n  { {0xdcfb007a, 0x26cf0009, 0x27ef0292, 0x00000000}},  //   _ورزش_, _rugo_, _segn_,\n  { {0x6f0d0779, 0x26cf011c, 0x78a9006c, 0x00000000}},  //   luac, _sugo_, tlev,\n  { {0x69da033d, 0x26c70ac6, 0x61f501df, 0x00000000}},  //   _efte, _sino_, hazl,\n  { {0x78a90047, 0x6f0d0779, 0x26c70555, 0x00000000}},  //   rlev, nuac, _pino_,\n  { {0x9967007c, 0x78a900bb, 0x5b3400a6, 0x00000000}},  //   _отел, slev, _جعفر,\n  { {0x78a91fbf, 0x27ef01e3, 0x6d41016c, 0x00000000}},  //   plev, _tegn_, _šlaj,\n  { {0xa7750259, 0x6f0d09cc, 0x26c71fc0, 0x00000000}},  //   _плеч, kuac, _wino_,\n  { {0x3ea10004, 0x2f230089, 0xe3b20644, 0x00000000}},  //   koht_, nīgā_, طرح_,\n  { {0xd774031d, 0x6f0d1fc1, 0x7afb0020, 0x00000000}},  //   _جامع, duac, _mvut,\n  { {0x628e000c, 0xe2970887, 0x7ae200ca, 0x00000000}},  //   rnbo, хар_, zpot,\n  { {0xa40a0061, 0x7afb00d9, 0x7ae21fc2, 0x00000000}},  //   _वाटप_, _ovut, ypot,\n  { {0x06e30044, 0x61f51fc3, 0x6f0d08d3, 0x00000000}},  // [4ca0] _মিডি, bazl, guac,\n  { {0xa2d50164, 0xee3706e7, 0x337700b3, 0x00000000}},  //   _यंत्, нну_, _נעים_,\n  { {0x9f42021e, 0x7afb0207, 0x5bba007d, 0x00000000}},  //   _sekä_, _avut, ेश्व,\n  { {0xdee60216, 0x7ae20203, 0x00000000, 0x00000000}},  //   _поми, tpot,   ,\n  { {0x7ae205fa, 0x29070039, 0x6f0d0efe, 0x00000000}},  //   upot, erna_, cuac,\n  { {0x9f5201aa, 0x7ae20169, 0x00000000, 0x00000000}},  //   vayè_, rpot,   ,\n  { {0xdd920054, 0x0903008b, 0x7ae20142, 0x00000000}},  //   _صور_, гчым, spot,\n  { {0x7ae21fc4, 0x9d1b0104, 0x6da30140, 0x00000000}},  //   ppot, _מולט, _сиса,\n  { {0x29070051, 0x78a001a2, 0x61f5005a, 0x00000000}},  //   arna_, romv, yazl,\n  { {0x3b83003b, 0x57b3007e, 0x00000000, 0x00000000}},  //   _слуг, ыбыт,   ,\n  { {0x659400ed, 0xf76f0cd9, 0xc58a007c, 0x00000000}},  //   тану, لای_, ящие_,\n  { {0x7ccc0180, 0x15f20061, 0xd90f009e, 0x00000000}},  //   _uğru, _आजवर_, _ایٹ_,\n  { {0x7eb000f8, 0x00000000, 0x00000000, 0x00000000}},  //   väpn,   ,   ,\n  { {0x1ee700a1, 0x00000000, 0x00000000, 0x00000000}},  //   ہوری_,   ,   ,\n  { {0xe4a7007c, 0xe29f000c, 0x644000c4, 0x00000000}},  //   _прио, nuði_, ômic,\n  { {0x6f0d1fc5, 0xd498008b, 0x00000000, 0x00000000}},  //   tuac, _пры_,   ,\n  { {0x644d000d, 0x9e07005e, 0x3eb8012d, 0x00000000}},  // [4cb0] _inai, ечел, _bhrt_,\n  { {0x290e0020, 0x290701e5, 0x6f0d0048, 0x00000000}},  //   kufa_, yrna_, ruac,\n  { {0x443b008d, 0x62870006, 0xdd910a4f, 0x00000000}},  //   _kaq_, mijo, جوا_,\n  { {0x62870042, 0xfbd00025, 0x788701aa, 0x00000000}},  //   lijo, مته_, _mèvè,\n  { {0x6f0d00d4, 0x201c006b, 0xdd9000a1, 0x00000000}},  //   quac, əvi_, لوے_,\n  { {0x6287010a, 0x2f230089, 0x29070087, 0x00000000}},  //   nijo, rīgā_, trna_,\n  { {0x644d0032, 0x290e0045, 0x00000000, 0x00000000}},  //   _onai, gufa_,   ,\n  { {0x7e60001a, 0x62871fc6, 0x00000000, 0x00000000}},  //   _împr, hijo,   ,\n  { {0x5b15007e, 0x6287042c, 0xead5007e, 0x00000000}},  //   _шмат, kijo, _розь,\n  { {0x7c3b0d89, 0x644d120e, 0x7bd20089, 0x00000000}},  //   _haur, _anai, ājuš,\n  { {0x6287010a, 0x7c3b1fc7, 0x443b00f6, 0x00000000}},  //   dijo, _kaur, _baq_,\n  { {0x7c3b022b, 0xddce00b9, 0x9f5200f4, 0x00000000}},  //   _jaur, _dobř, sayé_,\n  { {0x7c3b0a15, 0xe7390113, 0x987a0476, 0x00000000}},  //   _maur, _цел_, _קאנט,\n  { {0xd2520025, 0x6287010a, 0x412a041f, 0x00000000}},  //   جنس_, gijo, мого_,\n  { {0x7fd601e1, 0xc616009b, 0x644d0068, 0x00000000}},  //   візі, _יחסי_, _fnai,\n  { {0x7c3b00b0, 0xc00300e2, 0x6aa30090, 0x00000000}},  //   _naur, ипск, honf,\n  { {0x62870ff9, 0x98450089, 0xef1a1fc8, 0x00000000}},  // [4cc0] bijo, dēļ_, ьма_,\n  { {0x628719f0, 0x6aa30056, 0x00000000, 0x00000000}},  //   cijo, jonf,   ,\n  { {0x5fa7001c, 0x7c3b1fc9, 0x68e11fca, 0x00000000}},  //   _कुठल, _baur, _ntld,\n  { {0x7c3b1fcb, 0x81d90044, 0x3f84012d, 0x00000000}},  //   _caur, ারণ_, _žmuu_,\n  { {0x7c3b0129, 0x6aa300f8, 0x6a6f0190, 0x00000000}},  //   _daur, fonf, _søfa,\n  { {0xe18900e9, 0x290e1343, 0x291c01c5, 0x00000000}},  //   _آئین_, tufa_, ttva_,\n  { {0x6e3c0fff, 0x7c3b009d, 0x3e6400f8, 0x00000000}},  //   _iarb, _faur, _dött_,\n  { {0x628719f0, 0x7c3b1fcc, 0x290e002b, 0x00000000}},  //   zijo, _gaur, rufa_,\n  { {0x291c01cd, 0x00000000, 0x00000000, 0x00000000}},  //   stva_,   ,   ,\n  { {0x7c2205b7, 0x644d007f, 0xb9080044, 0x00000000}},  //   lfor, _snai, _বি_,\n  { {0xa96a035b, 0xb7bd001a, 0x6e3c0b25, 0x00000000}},  //   _تمام_, deţu, _marb,\n  { {0xb97b00a3, 0x70be006e, 0x6e3c1fcd, 0x00000000}},  //   _קנאי, ्दोल, _larb,\n  { {0x62870006, 0x63b60036, 0xa3e2013d, 0x00000000}},  //   tijo, _czyn, धड़_,\n  { {0x7c220061, 0x86730088, 0x3e6400f8, 0x00000000}},  //   hfor, _кліє, _möts_,\n  { {0x6287010a, 0x7c220056, 0x236d0027, 0x00000000}},  //   rijo, kfor, šej_,\n  { {0x6287010a, 0x6d410051, 0x644d0020, 0x00000000}},  //   sijo, _álai, _unai,\n  { {0x7c220606, 0xdef803c8, 0x62870006, 0x00000000}},  // [4cd0] dfor, вых_, pijo,\n  { {0x7c220c95, 0x7c3b00f4, 0x6e3c1e53, 0x00000000}},  //   efor, _saur, _carb,\n  { {0x6e3c0ebc, 0x7c22018e, 0x7c3b0207, 0x00000000}},  //   _darb, ffor, _paur,\n  { {0x7c220030, 0x63ad1fce, 0xd577009b, 0x00000000}},  //   gfor, _kyan, כתבה_,\n  { {0x6e3c1fcf, 0x201900ca, 0x16020061, 0x00000000}},  //   _farb, _icsi_, लणार_,\n  { {0x63ad0051, 0x6e3c1fd0, 0xddde0035, 0x00000000}},  //   _myan, _garb, ripţ,\n  { {0x7c3b0006, 0x7c2215c9, 0x63ad0173, 0x00000000}},  //   _taur, bfor, _lyan,\n  { {0x81d90055, 0xf8a90014, 0x7c221fd1, 0x00000000}},  //   ারি_, رگاه_, cfor,\n  { {0x63ad181b, 0x628502ae, 0x7c84004c, 0x00000000}},  //   _nyan, _omho, _туре,\n  { {0x3d08001c, 0xdb000146, 0x6e3c0066, 0x00000000}},  //   ांचे_, _bymæ, _xarb,\n  { {0x3945020f, 0x63ad1fd2, 0x81d90055, 0x00000000}},  //   _urls_, _ayan, ারা_,\n  { {0x63ad1fd3, 0xf2c90049, 0xf8b000a1, 0x00000000}},  //   _byan, _זע_, _وکٹ_,\n  { {0x63ad1fd4, 0xd7f80245, 0x00000000, 0x00000000}},  //   _cyan, _рух_,   ,\n  { {0x386d05af, 0xd29501fb, 0x4545035b, 0x00000000}},  //   lker_, арсь, _منتق,\n  { {0x7c220792, 0x7eab010f, 0x63ad0022, 0x00000000}},  //   yfor, nüpu, _eyan,\n  { {0x6e3c04f8, 0x388c00b9, 0x7c221c7e, 0x00000000}},  //   _sarb, běru_, xfor,\n  { {0x386d015c, 0x6d470f99, 0x6e3c07c8, 0x00000000}},  // [4ce0] iker_, _arja, _parb,\n  { {0x7c220857, 0xd045013f, 0x00000000, 0x00000000}},  //   wfor, _muhə,   ,\n  { {0x386d0374, 0x6e3c001e, 0x85f60049, 0x00000000}},  //   kker_, _varb, רמעס_,\n  { {0xeb9a10a9, 0x386d00b5, 0x7c220145, 0x00000000}},  //   ние_, jker_, ufor,\n  { {0x6e3c0004, 0x7c220038, 0xab62006b, 0x00000000}},  //   _tarb, rfor, _şübh,\n  { {0x7c220018, 0x386d00b5, 0x00000000, 0x00000000}},  //   sfor, eker_,   ,\n  { {0x7c220056, 0x14cf0204, 0xe9df0082, 0x00000000}},  //   pfor, _संगण, _đút_,\n  { {0x63a90046, 0x66030197, 0xb4ae01f5, 0x00000000}},  //   żeni, _adnk, कतो_,\n  { {0x6a160137, 0x44f1010a, 0x2ca6017b, 0x00000000}},  //   _مبار, eš_, mood_,\n  { {0x386d00ab, 0x2ca6010e, 0x388c013e, 0x00000000}},  //   aker_, lood_, věru_,\n  { {0x63ad130b, 0x38ba01d6, 0x48e6004d, 0x00000000}},  //   _syan, eëre_, _соев,\n  { {0x386d1fd5, 0x2ca6006a, 0x65680023, 0x00000000}},  //   cker_, nood_, rydh,\n  { {0x6d41008e, 0x657a0010, 0x00000000, 0x00000000}},  //   _álav, szth,   ,\n  { {0x63ad1896, 0x20190145, 0x2ca600ab, 0x00000000}},  //   _vyan, _scsi_, hood_,\n  { {0x69ce0b32, 0x2ca6006c, 0x9f4b00d4, 0x00000000}},  //   _úbed, kood_, _secà_,\n  { {0x63ad020e, 0x9f4b00f6, 0x00000000, 0x00000000}},  //   _tyan, _pecà_,   ,\n  { {0x44291fd6, 0x26ce0020, 0x2ca607a5, 0x00000000}},  // [4cf0] _iba_, _kifo_, dood_,\n  { {0x442905ae, 0xdd9b0088, 0x261c007d, 0x00000000}},  //   _hba_, нше_, _माफी_,\n  { {0x386d0007, 0xbc190451, 0x00000000, 0x00000000}},  //   yker_, вілі_,   ,\n  { {0x44290ee1, 0x26ce005b, 0x7a1e0173, 0x00000000}},  //   _jba_, _lifo_, _lņtč,\n  { {0x44291fd7, 0x447c0049, 0x291e0066, 0x00000000}},  //   _mba_, ענדע, _aqta_,\n  { {0xaa450a27, 0x386d1fd8, 0xcb661fd9, 0x00000000}},  //   рекл, wker_, раше_,\n  { {0x386d0170, 0x60cf0107, 0xe509013d, 0x00000000}},  //   tker_, _kicm, _विधि_,\n  { {0x6f0d0051, 0x7c8701fc, 0x00000000, 0x00000000}},  //   orac, _суге,   ,\n  { {0x386d004e, 0x7c290885, 0x6f0d0051, 0x00000000}},  //   rker_, _iber, nrac,\n  { {0x4429011c, 0x386d02cc, 0xa5250264, 0x00000000}},  //   _aba_, sker_, амод,\n  { {0x44290145, 0x6f0d19ad, 0xc9840545, 0x00000000}},  //   _bba_, hrac, _луци,\n  { {0x6f0d1fda, 0x64a603e0, 0x60cf00b9, 0x00000000}},  //   krac, рама, _nicm,\n  { {0x44290030, 0x27ed0047, 0x7c291dcb, 0x00000000}},  //   _dba_, mben_, _mber,\n  { {0x27ed138a, 0x44291fdb, 0x877a01ce, 0x00000000}},  //   lben_, _eba_, _באני,\n  { {0x7c291fdc, 0x44290b69, 0xdd19002b, 0x00000000}},  //   _ober, _fba_, għże,\n  { {0x3fe61fdd, 0x6f0d001a, 0x4429008e, 0x00000000}},  //   ржав, frac, _gba_,\n  { {0x27ed001f, 0x1e860088, 0x7eb000b0, 0x00000000}},  // [4d00] iben_, алам, läpi,\n  { {0x7c291fde, 0x2ca600ab, 0xe0da1281, 0x00000000}},  //   _aber, wood_, _иво_,\n  { {0x27ed0047, 0x61fc014a, 0x6f0d1fdf, 0x00000000}},  //   kben_, marl, arac,\n  { {0x61fc049d, 0x0b460264, 0x6f0d1e7c, 0x00000000}},  //   larl, инен, brac,\n  { {0x6f0d049a, 0x2ca6109a, 0xa01b0039, 0x00000000}},  //   crac, rood_, _omöj,\n  { {0x61fc000c, 0x27ed001f, 0x7c290109, 0x00000000}},  //   narl, eben_, _eber,\n  { {0xfa6706e3, 0x2ca6006c, 0xe2a7000c, 0x00000000}},  //   рајк_, pood_, úðir_,\n  { {0xec1600a2, 0x27ed0010, 0x5838004d, 0x00000000}},  //   _خورد, gben_, узия_,\n  { {0x61fc1fe0, 0xc6f7008b, 0x44291fe1, 0x00000000}},  //   karl, аных_, _rba_,\n  { {0x61fc1fe2, 0xa3bd013d, 0x442903c9, 0x00000000}},  //   jarl, _अरब_, _sba_,\n  { {0x27ed0376, 0x61fc1fe3, 0x44290058, 0x00000000}},  //   bben_, darl, _pba_,\n  { {0x746b09e8, 0x61f70193, 0x6f0d0016, 0x00000000}},  //   тров_, _sexl, yrac,\n  { {0xec71007b, 0x61fc00eb, 0x4429101a, 0x00000000}},  //   פֿט_, farl, _vba_,\n  { {0x443f04a3, 0x6f0d0235, 0x61fc0ee4, 0x00000000}},  //   žu_, vrac, garl,\n  { {0x6f0d0036, 0x787501e5, 0x44290133, 0x00000000}},  //   wrac, _háva, _tba_,\n  { {0x61ee0003, 0x44291588, 0x38a10036, 0x00000000}},  //   abbl, _uba_, wórz_,\n  { {0x248901d9, 0x6f0d0c0f, 0x61fc1ece, 0x00000000}},  // [4d10] _imam_, urac, barl,\n  { {0x61fc0e1d, 0x27ed0047, 0xe45f0039, 0x00000000}},  //   carl, zben_, ljö_,\n  { {0x27ed0010, 0x6f0d0051, 0x00000000, 0x00000000}},  //   yben_, srac,   ,\n  { {0x6f0d0161, 0xa136012f, 0x88bc00b9, 0x00000000}},  //   prac, _פארק_, _zpěv,\n  { {0x27ed08fe, 0x78751539, 0x00000000, 0x00000000}},  //   vben_, _náva,   ,\n  { {0x53380049, 0x7f3a0049, 0x00000000, 0x00000000}},  //   ינדן_, _געשו,   ,\n  { {0x27ed0047, 0x7c290066, 0xaa56003b, 0x00000000}},  //   tben_, _tber, сију_,\n  { {0x61fc1fe4, 0x7c290181, 0x27ed010f, 0x00000000}},  //   zarl, _uber, uben_,\n  { {0x27ed196d, 0xbb850054, 0x61fc1fe5, 0x00000000}},  //   rben_, _الذي, yarl,\n  { {0x27ed0010, 0x60c40107, 0xe8190164, 0x00000000}},  //   sben_, zmim, _धावा_,\n  { {0x61fc030e, 0xb658007e, 0x764100eb, 0x00000000}},  //   varl, ршых_, rdly,\n  { {0x2545001e, 0x3e76000c, 0x00000000, 0x00000000}},  //   _vēl_, _mæta_,   ,\n  { {0xb7da0049, 0xd6291fe6, 0x7eb00052, 0x00000000}},  //   _עקסי, _боле_, säpi,\n  { {0x91e3017f, 0x2cbf0066, 0x00000000, 0x00000000}},  //   зоре, _lhud_,   ,\n  { {0x61fc011f, 0x787501ca, 0xceb4006b, 0x00000000}},  //   rarl, _záva, stək_,\n  { {0x61fc1fe7, 0x3493025f, 0x00000000, 0x00000000}},  //   sarl, _најр,   ,\n  { {0x60c40065, 0x61fc014a, 0x63a90ddb, 0x00000000}},  // [4d20] rmim, parl, üent,\n  { {0x3e76009f, 0xc7b200a3, 0xe29f000c, 0x00000000}},  //   _bæta_, לבן_, yrði_,\n  { {0xa0a6007e, 0x63a901d5, 0x628e1fe8, 0x00000000}},  //   _ганд, żent, mibo,\n  { {0x628e011c, 0x31570049, 0x78a9016c, 0x00000000}},  //   libo, _היטן_, joev,\n  { {0x38ba0065, 0x78a91fe9, 0x00000000, 0x00000000}},  //   jëra_, doev,   ,\n  { {0xdee300d7, 0x2cbf013f, 0x2ce800a2, 0x00000000}},  //   _хори, _ehud_, _نظری_,\n  { {0xb50902fb, 0x649601d5, 0x3e76000c, 0x00000000}},  //   _विषय_, rġij, _gæta_,\n  { {0xe45f0039, 0x628e07b1, 0x38c800a1, 0x00000000}},  //   xjö_, hibo, جاتی_,\n  { {0x628e01aa, 0x1ddc007d, 0xe819006e, 0x00000000}},  //   kibo, _बलात, _धारा_,\n  { {0x8c44001a, 0xda650379, 0xbdf60044, 0x00000000}},  //   ăşur, _والي, _চাঁদ_,\n  { {0xd7ef1fea, 0x499a005e, 0xa96a05f3, 0x00000000}},  //   _ну_, _стая_, _حمام_,\n  { {0x7d03008e, 0x6aaa0116, 0x7eab010e, 0x00000000}},  //   ánsi, loff, hüpp,\n  { {0x628e18d9, 0x938b02dc, 0x6a6f0146, 0x00000000}},  //   fibo, усна_, _bøfh,\n  { {0x38660100, 0x3f800006, 0x171b0049, 0x00000000}},  //   _hoor_, dziu_, _עווע,\n  { {0x54e606b4, 0x9f590343, 0x3866109a, 0x00000000}},  //   _استق, _gesê_, _koor_,\n  { {0x439501a4, 0x760200b9, 0x81d90044, 0x00000000}},  //   _майс, bízí, ারই_,\n  { {0x386601d6, 0x6aaa0240, 0x628e0009, 0x00000000}},  // [4d30] _moor_, koff, bibo,\n  { {0x88bc00b9, 0x394c00ea, 0x7aeb0009, 0x00000000}},  //   _zpět, _ords_, vpgt,\n  { {0x6aaa005b, 0xe2a7000c, 0x00000000, 0x00000000}},  //   doff, úður_,   ,\n  { {0x38661feb, 0x2a6500e0, 0xf3ff00c4, 0x00000000}},  //   _noor_, _solb_, naã_,\n  { {0x501a00a0, 0x629a04bb, 0x6d5816af, 0x00000000}},  //   _דורו, čtov, ävar,\n  { {0x6aaa1915, 0xbebb0023, 0xdea400a1, 0x00000000}},  //   goff, _epër, _ٹیمی,\n  { {0x48790401, 0xeab0006d, 0x38660112, 0x00000000}},  //   исия_, رعه_, _boor_,\n  { {0xd7090589, 0x2cbf1fec, 0x201b01f3, 0x00000000}},  //   ание_, _uhud_, ngqi_,\n  { {0x38660f12, 0x78a91fed, 0x869900ed, 0x00000000}},  //   _door_, roev, итот_,\n  { {0x78a410f7, 0x69a401f5, 0x394c00e5, 0x00000000}},  //   čiva, _चुकी, _frds_,\n  { {0x628e18d9, 0x7ae90521, 0x2d810051, 0x00000000}},  //   vibo, _htet, nzhe_,\n  { {0x38660112, 0x00000000, 0x00000000, 0x00000000}},  //   _goor_,   ,   ,\n  { {0x628e082c, 0x63ba0036, 0x28df0309, 0x00000000}},  //   tibo, ętno, _पंडि,\n  { {0x479a0049, 0x27ff000c, 0x7ae900e7, 0x00000000}},  //   _דינס, laun_, _mtet,\n  { {0x628e1fee, 0x9f590065, 0x76430127, 0x00000000}},  //   ribo, _fesë_, _iany,\n  { {0x76430149, 0x7ae900b0, 0x628e19be, 0x00000000}},  //   _hany, _otet, sibo,\n  { {0x76430811, 0x4420028c, 0x6d411fef, 0x00000000}},  // [4d40] _kany, _ici_, _šlap,\n  { {0x3f800f04, 0xaec30088, 0x6aaa0019, 0x00000000}},  //   rziu_, дбул, xoff,\n  { {0x7643018e, 0x78750161, 0x64440058, 0x00000000}},  //   _many, _návo, _kaii,\n  { {0x9b6a0175, 0x614300b9, 0x6aaa0009, 0x00000000}},  //   ишла_, sílá, woff,\n  { {0x6aaa1440, 0x2b4d0129, 0x44201ff0, 0x00000000}},  //   toff, _crec_, _mci_,\n  { {0x6f0401d6, 0x76431ff1, 0x4420009d, 0x00000000}},  //   msic, _nany, _lci_,\n  { {0x6aaa1c95, 0x44201ff2, 0x1d07003b, 0x00000000}},  //   roff, _oci_, _мери_,\n  { {0x6aaa00f8, 0x6444006a, 0x44200095, 0x00000000}},  //   soff, _naii, _nci_,\n  { {0x3866017c, 0x76430149, 0x6f04010f, 0x00000000}},  //   _voor_, _bany, nsic,\n  { {0xf76f0379, 0x0f57009b, 0x64560969, 0x00000000}},  //   ضاً_, קיים_, _anyi,\n  { {0x76430036, 0x2fc70011, 0x9f590065, 0x00000000}},  //   _dany, ̀ng_, _pesë_,\n  { {0x629e0129, 0x4420009d, 0x9f59000a, 0x00000000}},  //   _ajpo, _cci_, _fesè_,\n  { {0x76430016, 0x787501ca, 0x27e601aa, 0x00000000}},  //   _fany, _závo, _ifon_,\n  { {0x787c028c, 0x7643006a, 0x6d4e0e57, 0x00000000}},  //   _déve, _gany, _orba,\n  { {0x442000ca, 0x867b009b, 0x6f060087, 0x00000000}},  //   _fci_, _דרגו, _avkc,\n  { {0xa2bb02d2, 0x44201ff3, 0x6f0401a2, 0x00000000}},  //   _शीर्, _gci_, fsic,\n  { {0xcddb03f3, 0x6d4e0006, 0x76431c39, 0x00000000}},  // [4d50] ање_, _arba, _yany,\n  { {0x44391ff4, 0xc33400a0, 0x6d4e016c, 0x00000000}},  //   les_, _חוץ_, _brba,\n  { {0x7ae91ff5, 0x443900fa, 0x27e60761, 0x00000000}},  //   _stet, oes_, _ofon_,\n  { {0x44391718, 0x2b4d1ff6, 0x6f041ff7, 0x00000000}},  //   nes_, _prec_, bsic,\n  { {0x09e51ae1, 0x443900f4, 0x6d4e169c, 0x00000000}},  //   полн, ies_, _erba,\n  { {0x27e60016, 0x38970035, 0x27ff005b, 0x00000000}},  //   _afon_, mări_, waun_,\n  { {0xc27c009b, 0x76430173, 0x38970035, 0x00000000}},  //   שרוי, _rany, lări_,\n  { {0x4439004a, 0x76431ff8, 0x2b4d001a, 0x00000000}},  //   jes_, _sany, _trec_,\n  { {0x764301aa, 0x7ae9000b, 0x27ff0f30, 0x00000000}},  //   _pany, _utet, raun_,\n  { {0x673b1ff9, 0x78750010, 0x787c1ffa, 0x00000000}},  //   rwuj, _távo, _réve,\n  { {0x764301aa, 0x442b0009, 0x44391ffb, 0x00000000}},  //   _vany, ffc_, fes_,\n  { {0x4439032c, 0x6f040038, 0x76430020, 0x00000000}},  //   ges_, ysic, _wany,\n  { {0xe72e008b, 0x76430127, 0x387f1d7d, 0x00000000}},  //   _яе_, _tany, mhur_,\n  { {0x11da0054, 0x20000133, 0x200b0026, 0x00000000}},  //   صورة_, waii_, _adci_,\n  { {0x95cb007c, 0x6b820197, 0x6601003f, 0x00000000}},  //   _туда_, zzog, malk,\n  { {0x53a60099, 0x44200107, 0x73060aa2, 0x00000000}},  //   _найб, _uci_, _епиз,\n  { {0x27fd0bc4, 0x6d4e0645, 0xa067005e, 0x00000000}},  // [4d60] _mewn_, _srba, чата_,\n  { {0x6f04001f, 0x660104cb, 0x59cb0164, 0x00000000}},  //   rsic, nalk, ाधार,\n  { {0x6f040912, 0x44e10047, 0x8ebb0044, 0x00000000}},  //   ssic, _jó_, _অংশগ,\n  { {0x44e1002a, 0x3897001a, 0x660101a2, 0x00000000}},  //   _mó_, bări_, halk,\n  { {0x387f008d, 0x660101a3, 0x3897001a, 0x00000000}},  //   dhur_, kalk, cări_,\n  { {0x44391ffc, 0x63b6021e, 0x66011d9c, 0x00000000}},  //   zes_, _myyn, jalk,\n  { {0x44e11ffd, 0x44390e76, 0xa96700e1, 0x00000000}},  //   _nó_, yes_, зија_,\n  { {0x8c4310df, 0x44390b25, 0x0d7700a2, 0x00000000}},  //   _песе, xes_, _عینک_,\n  { {0x443903db, 0x76aa007c, 0xbb98009e, 0x00000000}},  //   ves_, йтов_, _بچاؤ_,\n  { {0x5574029b, 0x44391ffe, 0x61fe0161, 0x00000000}},  //   дгот, wes_, _nepl,\n  { {0x44e100ad, 0x27fd018e, 0x3897001a, 0x00000000}},  //   _có_, _fewn_, zări_,\n  { {0x44e1002a, 0x443900cc, 0x387f0051, 0x00000000}},  //   _dó_, ues_, chur_,\n  { {0x61fe0007, 0x66010723, 0x69da00e0, 0x00000000}},  //   _bepl, balk, _kgte,\n  { {0x442b0066, 0x61fe0059, 0x17570097, 0x00000000}},  //   sfc_, _cepl, _מסדר_,\n  { {0x61fe1fff, 0xa5d702fd, 0xf1a40264, 0x00000000}},  //   _depl, _عبور_, ертн,\n  { {0x44390a61, 0x3897001a, 0x629c02d4, 0x00000000}},  //   qes_, tări_, anro,\n  { {0x60de00f6, 0xe2aa0014, 0x69da00d9, 0x00000000}},  // [4d70] _eupm, _ژاپن_, _ogte,\n  { {0x61fe17cc, 0xdcfc01f6, 0x76480016, 0x00000000}},  //   _gepl, _ayrı, nddy,\n  { {0x705500a1, 0x200b0253, 0x06e30044, 0x00000000}},  //   _ہنگا, _tdci_, _মিছি,\n  { {0x69da0343, 0x254c0224, 0x81d90044, 0x00000000}},  //   _agte, _měl_, ারও_,\n  { {0xfebb0014, 0xdb1b0082, 0xed600089, 0x00000000}},  //   _هاست_, _nguô, āžas_,\n  { {0x52da0044, 0x00000000, 0x00000000, 0x00000000}},  //   বীকৃ,   ,   ,\n  { {0x387f0675, 0x66010059, 0x6d3400d7, 0x00000000}},  //   thur_, valk, _перф,\n  { {0x315800b6, 0x69da0343, 0x46e901c0, 0x00000000}},  //   ליון_, _egte, один_,\n  { {0x44e10907, 0x00000000, 0x00000000, 0x00000000}},  //   _só_,   ,   ,\n  { {0x387f008d, 0x2caf00b5, 0x44e100c4, 0x00000000}},  //   shur_, logd_, _pó_,\n  { {0x61fe2000, 0xd9990054, 0x660100ca, 0x00000000}},  //   _repl, _بنات_, ralk,\n  { {0x69c1011f, 0x9507026c, 0xc20900b3, 0x00000000}},  //   _izle, _ہفتے_, _כה_,\n  { {0xf74502b0, 0xae1e0316, 0x66012001, 0x00000000}},  //   _цело, _पालन_, palk,\n  { {0x44e10010, 0x2caf00ea, 0x00000000, 0x00000000}},  //   _tó_, hogd_,   ,\n  { {0x91e30256, 0x67290087, 0x00000000, 0x00000000}},  //   тосе, ltej,   ,\n  { {0x63a4002d, 0x63b60052, 0x00000000, 0x00000000}},  //   _txin, _tyyn,   ,\n  { {0xe4c701ef, 0x67290129, 0x61fe004f, 0x00000000}},  // [4d80] _تصوی, ntej, _tepl,\n  { {0x290700d0, 0xee370407, 0xb8810802, 0x00000000}},  //   ksna_, мну_, _šíle,\n  { {0xa06a012b, 0xa01b0210, 0xf41f0039, 0x00000000}},  //   _дана_, _blöd, miär_,\n  { {0xe819007d, 0x78750161, 0x00000000, 0x00000000}},  //   _धागा_, _dávk,   ,\n  { {0x7648018e, 0x7c650025, 0x00000000, 0x00000000}},  //   yddy, عامل,   ,\n  { {0x9f400062, 0x00000000, 0x00000000, 0x00000000}},  //   ncií_,   ,   ,\n  { {0xa01b0039, 0x44321d85, 0xb05b00f8, 0x00000000}},  //   _flöd, _oby_, _ohäl,\n  { {0x807b007b, 0xc07b0049, 0x907b0049, 0x00000000}},  //   ַניצ, ַטיש, ַטיי,\n  { {0x6f160016, 0x69da0026, 0xba26003b, 0x00000000}},  //   nryc, _tgte, _одак,\n  { {0x44320ce2, 0x787c2002, 0x77910014, 0x00000000}},  //   _aby_, _déva, دیها,\n  { {0xc58a007c, 0x6d5a0010, 0x6f16005b, 0x00000000}},  //   ющие_, _átad, hryc,\n  { {0x7ae0000b, 0x6f160036, 0x291c010e, 0x00000000}},  //   _kumt, kryc, muva_,\n  { {0x44320009, 0x7ae00089, 0x291c0142, 0x00000000}},  //   _dby_, _jumt, luva_,\n  { {0xf7d700a0, 0x44322003, 0xeb910049, 0x00000000}},  //   _חודש_, _eby_, אָל_,\n  { {0x7ae00065, 0x403500ed, 0x306b01fc, 0x00000000}},  //   _lumt, невс, ојан_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7ae00e9b, 0x00000000, 0x00000000, 0x00000000}},  // [4d90] _numt,   ,   ,\n  { {0x291c00b0, 0x752f0036, 0x290701d6, 0x00000000}},  //   kuva_, ńcze, ysna_,\n  { {0xe3b00123, 0xdd910025, 0x60c9002b, 0x00000000}},  //   _مری_, دوا_, ċemb,\n  { {0x62952004, 0x6f160036, 0x291c2005, 0x00000000}},  //   lizo, bryc, duva_,\n  { {0x60cd0740, 0xefcb02e9, 0xceb4006b, 0x00000000}},  //   mmam, _функ_, rtər_,\n  { {0x60cd014a, 0xceb4006b, 0x388c00b9, 0x00000000}},  //   lmam, stər_, měry_,\n  { {0x63ba0036, 0x291c0089, 0x08d50401, 0x00000000}},  //   ętni, guva_, нция,\n  { {0x60cd005a, 0x672900b0, 0x29072006, 0x00000000}},  //   nmam, ttej, rsna_,\n  { {0x29070039, 0x6fdc009b, 0xb906007d, 0x00000000}},  //   ssna_, חחחח, _यू_,\n  { {0x672900d4, 0x44320762, 0x629500e7, 0x00000000}},  //   rtej, _sby_, jizo,\n  { {0x6729021e, 0x69c10107, 0x291c041a, 0x00000000}},  //   stej, _uzle, cuva_,\n  { {0x67292007, 0x6a7400f6, 0x60cd0142, 0x00000000}},  //   ptej, _ràfi, jmam,\n  { {0x68e12008, 0x78bb01dc, 0x62950065, 0x00000000}},  //   _huld, mluv, fizo,\n  { {0x68e111ef, 0x62952009, 0x78bb044e, 0x00000000}},  //   _kuld, gizo, lluv,\n  { {0x205600d7, 0xa5640025, 0xe6b40014, 0x00000000}},  //   нтар, _لدين, _جلوگ,\n  { {0x6f160ae1, 0x68e1200a, 0x60cd006a, 0x00000000}},  //   tryc, _muld, gmam,\n  { {0xaec6098c, 0x91e601fb, 0x1fa70726, 0x00000000}},  // [4da0] ебал, _попе, екти_,\n  { {0x7a3301df, 0x60cd0197, 0x7875200b, 0x00000000}},  //   nıtı, amam, _dávi,\n  { {0xe8200061, 0x6d5a200c, 0x24800007, 0x00000000}},  //   _याला_, _štab, _klim_,\n  { {0x44220460, 0x60cd009d, 0x388c013e, 0x00000000}},  //   ngk_, cmam, běry_,\n  { {0xfe1e001c, 0x8b660025, 0x2a7e0145, 0x00000000}},  //   _पाऊस_, عاصم, _pltb_,\n  { {0x291c010a, 0x78a2200d, 0x68e1014a, 0x00000000}},  //   tuva_, _sjov, _buld,\n  { {0xa3d001f5, 0xbea300ed, 0x78750161, 0x00000000}},  //   वेत_, _сарк, _závi,\n  { {0xb5090309, 0x291c00f8, 0x62950bb2, 0x00000000}},  //   _विजय_, ruva_, zizo,\n  { {0x9f40200e, 0x7d1e0030, 0x8626007e, 0x00000000}},  //   ncià_, lups, ньне,\n  { {0x68e10030, 0x2480200f, 0x7e6e0190, 0x00000000}},  //   _fuld, _alim_, _jobp,\n  { {0x68e10193, 0x04b800a1, 0x60cd049d, 0x00000000}},  //   _guld, کھوں_, ymam,\n  { {0x20022010, 0x7c2201a3, 0x62950036, 0x00000000}},  //   _neki_, ngor, wizo,\n  { {0x62950142, 0x00000000, 0x00000000, 0x00000000}},  //   tizo,   ,   ,\n  { {0x20020022, 0x24800095, 0x64960006, 0x00000000}},  //   _aeki_, _elim_, ršia,\n  { {0x3e76009f, 0x64960521, 0xc1770151, 0x00000000}},  //   _gæti_, mšin, ردست,\n  { {0x7c222011, 0x62950020, 0x248001c3, 0x00000000}},  //   jgor, sizo, _glim_,\n  { {0x7c22016c, 0x2002014a, 0x00000000, 0x00000000}},  // [4db0] dgor, _deki_,   ,\n  { {0x60cd2012, 0x62950023, 0x764a000a, 0x00000000}},  //   smam, qizo, _jafy,\n  { {0x9873000d, 0x60cd014a, 0x200200e7, 0x00000000}},  //   nţă_, pmam, _feki_,\n  { {0x6d5a1b84, 0x764a0173, 0x6ac9006e, 0x00000000}},  //   _štac, _lafy, िग्र,\n  { {0xbb4500e3, 0x68e1002b, 0x290c0efe, 0x00000000}},  //   телк, _suld, _avda_,\n  { {0xc3340104, 0x7c220032, 0x2002014a, 0x00000000}},  //   רוס_, agor, _zeki_,\n  { {0xecbb0123, 0x00000000, 0x00000000, 0x00000000}},  //   _فطرت_,   ,   ,\n  { {0x787c00f4, 0xccf2009b, 0x64960006, 0x00000000}},  //   _dévo, _ככל_, ešin,\n  { {0x3e76000c, 0x7b18005e, 0x66150010, 0x00000000}},  //   _sæti_, _потр_, ózko,\n  { {0x68e10be4, 0x78bb12de, 0x24800aba, 0x00000000}},  //   _tuld, sluv, _slim_,\n  { {0xe5a5003b, 0x24802013, 0x764a0016, 0x00000000}},  //   тини, _plim_, _dafy,\n  { {0xf7700063, 0x39580048, 0x00000000, 0x00000000}},  //   _گام_, _ársa_,   ,\n  { {0xe3b20025, 0x20022014, 0x98730035, 0x00000000}},  //   شرح_, _reki_, aţă_,\n  { {0x09d50055, 0xf770031d, 0x67d42015, 0x00000000}},  //   _স্যা, _دام_, _сочу,\n  { {0x2b91001d, 0x9987010a, 0x9103003b, 0x00000000}},  //   ạch_, menų_, ипре,\n  { {0x6603021e, 0xa3e80164, 0x38ba0023, 0x00000000}},  //   _henk, मुख_, tëri_,\n  { {0x6d470004, 0x3fe317b9, 0x66030ecb, 0x00000000}},  // [4dc0] _asja, ржув, _kenk,\n  { {0x660300b0, 0x6d552016, 0x2b5800b9, 0x00000000}},  //   _jenk, _brza, _črc_,\n  { {0x66032017, 0x200200b0, 0x7c220544, 0x00000000}},  //   _menk, _teki_, tgor,\n  { {0x6d55021d, 0x38ba008d, 0x66032018, 0x00000000}},  //   _drza, përi_, _lenk,\n  { {0x4fa301fb, 0x38ba0065, 0x787c000a, 0x00000000}},  //   _вияв, qëri_, _dévl,\n  { {0x7c220b36, 0x290c00b5, 0x66030023, 0x00000000}},  //   sgor, _pvda_, _nenk,\n  { {0x09d50055, 0x81b40055, 0x7d53026c, 0x00000000}},  //   _স্বা, জের_, _پہنچ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xf09301f8, 0x1ae601fb, 0x66030020, 0x00000000}},  //   ינה_, _розм, _benk,\n  { {0x78ad0091, 0x64960006, 0x99870006, 0x00000000}},  //   čava, ušin, genų_,\n  { {0x66031440, 0x64961a72, 0xf76f007a, 0x00000000}},  //   _denk, ršin, مای_,\n  { {0x7d030181, 0x66030007, 0x98730035, 0x00000000}},  //   ânsi, _eenk, rţă_,\n  { {0x64962019, 0x16340256, 0x00000000, 0x00000000}},  //   pšin, _беля,   ,\n  { {0x66030030, 0x261c0164, 0x00000000, 0x00000000}},  //   _genk, _माटी_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6603007f, 0x43850025, 0xb42700a1, 0x00000000}},  //   _zenk, _ملعق, _شعبو,\n  { {0x4429201a, 0xd904026c, 0x6603000a, 0x00000000}},  // [4dd0] _ica_, _ڈی_, _yenk,\n  { {0xd90406c6, 0x249900ab, 0x44290ee6, 0x00000000}},  //   _وی_, lism_, _hca_,\n  { {0xf1ab0014, 0x44290bca, 0x644d0168, 0x00000000}},  //   _زاده_, _kca_, _kaai,\n  { {0x261c001c, 0x24990e5f, 0x644f00d9, 0x00000000}},  //   _माझी_, nism_, ndci,\n  { {0x644d08b2, 0x44290145, 0xff04007e, 0x00000000}},  //   _maai, _mca_, _вясн,\n  { {0x6e9513e7, 0x26dc01aa, 0x20090007, 0x00000000}},  //   _сигу, _nivo_, laai_,\n  { {0x261c0061, 0x6603201b, 0xceb2009b, 0x00000000}},  //   _माजी_, _renk, _הים_,\n  { {0x6603121b, 0x644d201c, 0x44290792, 0x00000000}},  //   _senk, _naai, _nca_,\n  { {0x60dd201d, 0x66030f38, 0x249911f2, 0x00000000}},  //   _mism, _penk, dism_,\n  { {0x44290211, 0x66030065, 0x645f01f3, 0x00000000}},  //   _aca_, _qenk, _anqi,\n  { {0x660300b9, 0x44290093, 0x3e76000c, 0x00000000}},  //   _venk, _bca_, _gætu_,\n  { {0x09d50055, 0x60dd0119, 0x442907e4, 0x00000000}},  //   _স্থা, _nism, _cca_,\n  { {0x66030056, 0x442902c1, 0xddce0006, 0x00000000}},  //   _tenk, _dca_, _pobū,\n  { {0x479a0097, 0x81bf0044, 0x442912dd, 0x00000000}},  //   _אינס, েশন_, _eca_,\n  { {0x60dd0091, 0x24990e4e, 0x76410010, 0x00000000}},  //   _bism, bism_, mely,\n  { {0x26dc0107, 0x249900ab, 0x76411b18, 0x00000000}},  //   _zivo_, cism_, lely,\n  { {0xa3d00316, 0x60dd201e, 0x6f0d00f6, 0x00000000}},  // [4de0] वेश_, _dism, gsac,\n  { {0xe1fa008b, 0x7c29201f, 0x60dd0006, 0x00000000}},  //   _яго_, _acer, _eism,\n  { {0x8d760025, 0x60dd2020, 0x20090007, 0x00000000}},  //   داءا, _fism, baai_,\n  { {0x76412021, 0xac250088, 0x60dd1a3a, 0x00000000}},  //   hely, ифік, _gism,\n  { {0x7c2901ca, 0x7f76003b, 0x3e76000c, 0x00000000}},  //   _dcer, _сунц, _bætt_,\n  { {0x7c29023a, 0x24990203, 0x76410374, 0x00000000}},  //   _ecer, zism_, jely,\n  { {0x7641174d, 0x24992022, 0xe5670025, 0x00000000}},  //   dely, yism_, _اط_,\n  { {0x320a1a0b, 0x7521004a, 0xe45f000c, 0x00000000}},  //   haby_, dulz, mlög_,\n  { {0x26dc016e, 0xb6060088, 0x644d07a5, 0x00000000}},  //   _pivo_, лянк, _raai,\n  { {0x76410007, 0x442900f8, 0x644d0116, 0x00000000}},  //   gely, _sca_, _saai,\n  { {0x26dc029d, 0x2499121e, 0x649605fa, 0x00000000}},  //   _vivo_, tism_, mšij,\n  { {0x69c81710, 0x6f0d0544, 0x00000000, 0x00000000}},  //   _izde, ysac,   ,\n  { {0x2499001a, 0x66080046, 0xe6c4000c, 0x00000000}},  //   rism_, padk, þjóð,\n  { {0x60dd0e32, 0x249900f8, 0x20090116, 0x00000000}},  //   _sism, sism_, waai_,\n  { {0x44290173, 0x6486002a, 0x6d5a0142, 0x00000000}},  //   _tca_, _dóib, _štan,\n  { {0x60dd006b, 0x6f0d010f, 0x4429006b, 0x00000000}},  //   _qism, tsac, _uca_,\n  { {0x60dd001e, 0x200907a5, 0x657a005b, 0x00000000}},  // [4df0] _vism, raai_, lyth,\n  { {0x6f0d2023, 0x81b40044, 0x291c0107, 0x00000000}},  //   rsac, জেই_, krva_,\n  { {0x60dd2024, 0x62852025, 0x6f0d00ab, 0x00000000}},  //   _tism, _ilho, ssac,\n  { {0x3b5502dc, 0xac1902d3, 0x3e7601e5, 0x00000000}},  //   икер, тоду_, _sætt_,\n  { {0x69c801ee, 0x6f0f00e7, 0x2ee9002b, 0x00000000}},  //   _azde, _uvcc, qqaf_,\n  { {0x78750428, 0xfbd00014, 0xfaa502ea, 0x00000000}},  //   _návr, ستن_, јако,\n  { {0x76410ff8, 0x27ed0032, 0x00000000, 0x00000000}},  //   vely, tcen_,   ,\n  { {0x7af50088, 0x76410016, 0x69d50161, 0x00000000}},  //   _взає, wely, _územ,\n  { {0x0685012b, 0x62850181, 0x764100b0, 0x00000000}},  //   игин, _olho, tely,\n  { {0xbb840025, 0x27ed001a, 0x7a5700f3, 0x00000000}},  //   _الكي, scen_, _حضرا,\n  { {0x81eb0044, 0x657a0016, 0x38ba0023, 0x00000000}},  //   মরা_, gyth, tërt_,\n  { {0x62852026, 0x752f0036, 0x764100b0, 0x00000000}},  //   _alho, ńczo, sely,\n  { {0x386d0243, 0x7521006b, 0xa01b01e5, 0x00000000}},  //   mjer_, sulz, _plön,\n  { {0x386d05cc, 0x471a007b, 0x36690184, 0x00000000}},  //   ljer_, _יונג, _јако_,\n  { {0x62850142, 0x3aeb00ea, 0x38ba0023, 0x00000000}},  //   _dlho, _løp_, përt_,\n  { {0xe0df0207, 0x386d0292, 0x64a3005e, 0x00000000}},  //   _ciò_, njer_, _маща,\n  { {0xe3b8006b, 0x4e060072, 0x386d00bb, 0x00000000}},  // [4e00] şıb_, изаб, ijer_,\n  { {0x7c3d0095, 0x22930025, 0x00000000, 0x00000000}},  //   _ısra, _وليس,   ,\n  { {0x387f009f, 0x386d05e3, 0x629c0091, 0x00000000}},  //   kkur_, kjer_, miro,\n  { {0xf536007b, 0xe5360049, 0xe0580123, 0x00000000}},  //   יטער_, יטעט_, _حیرت_,\n  { {0x63ad2027, 0x386d016e, 0xf4170049, 0x00000000}},  //   _xxan, djer_, בֿות_,\n  { {0x291c2028, 0xd35700b3, 0x00000000, 0x00000000}},  //   trva_, ייני_,   ,\n  { {0x64962029, 0x38ba0023, 0x00000000, 0x00000000}},  //   ršij, dërr_,   ,\n  { {0x69c8202a, 0x386d0056, 0x787c0068, 0x00000000}},  //   _vzde, gjer_, _kévi,\n  { {0xe6660603, 0x629c202b, 0x657a0016, 0x00000000}},  //   атно, kiro, wyth,\n  { {0x291c11af, 0x657a02d4, 0x00000000, 0x00000000}},  //   prva_, tyth,   ,\n  { {0xd7ef0954, 0x629c202c, 0x69c80089, 0x00000000}},  //   _му_, diro, _uzde,\n  { {0x657a0edd, 0x2ca60016, 0x629c1690, 0x00000000}},  //   ryth, nnod_, eiro,\n  { {0x68e800f8, 0x6d5a04eb, 0x00000000, 0x00000000}},  //   _hudd, _štal,   ,\n  { {0x629c202d, 0x68e80a74, 0x877b0097, 0x00000000}},  //   giro, _kudd, _באדי,\n  { {0x80070d11, 0x00000000, 0x00000000, 0x00000000}},  //   ичае,   ,   ,\n  { {0x68e80190, 0x63ad002d, 0x629c01c3, 0x00000000}},  //   _mudd, _txan, airo,\n  { {0x629c202e, 0x68e800f8, 0x0eeb0088, 0x00000000}},  // [4e10] biro, _ludd, тьби_,\n  { {0x629c01ee, 0x787c009d, 0x387f007f, 0x00000000}},  //   ciro, _dévi, zkur_,\n  { {0x2ca6018e, 0xab62014a, 0x6d5a0010, 0x00000000}},  //   fnod_, _şüph, _átal,\n  { {0xa5d90049, 0xe5370049, 0x940b006b, 0x00000000}},  //   אַני, שטאט_, ticə_,\n  { {0x7bc0018e, 0x64860181, 0xb7c10044, 0x00000000}},  //   _cymu, _jóia, _উল্ট,\n  { {0x68e8202f, 0x7bc00016, 0x8e850025, 0x00000000}},  //   _budd, _dymu, _السه,\n  { {0x68e80016, 0x386d00ea, 0x00000000, 0x00000000}},  //   _cudd, tjer_,   ,\n  { {0x629c0091, 0x68e82030, 0xbca51095, 0x00000000}},  //   ziro, _dudd, _امري,\n  { {0x387f000c, 0x7bc0018e, 0x6a7d01aa, 0x00000000}},  //   rkur_, _gymu, _lèfi,\n  { {0xba740054, 0xca740025, 0x387f000c, 0x00000000}},  //   _والت, _والغ, skur_,\n  { {0x629c0c03, 0xe820001c, 0xb34801d5, 0x00000000}},  //   viro, _याचा_, _maħż,\n  { {0x7ae1002d, 0xb4e7007d, 0x00000000, 0x00000000}},  //   _hilt, _बढी_,   ,\n  { {0x7ae12031, 0x629c0016, 0x7c3b0065, 0x00000000}},  //   _kilt, tiro, _mbur,\n  { {0x412a004c, 0x6d5a05fa, 0x69c100f8, 0x00000000}},  //   лого_, _štam, _kyle,\n  { {0x7ae10ef7, 0x7ae900b0, 0xd1790088, 0x00000000}},  //   _milt, _luet, асті_,\n  { {0x629c010a, 0x69c1007f, 0x27ff0022, 0x00000000}},  //   siro, _myle, nbun_,\n  { {0xee3a1281, 0xa01b0073, 0x6446006c, 0x00000000}},  // [4e20] лна_, _glöm, meki,\n  { {0x64462032, 0xcf250025, 0x7c3b04f3, 0x00000000}},  //   leki, ترفي, _abur,\n  { {0x7bc012a7, 0x69c10056, 0x7ae90315, 0x00000000}},  //   _symu, _nyle, _auet,\n  { {0xa06a013b, 0x1d070893, 0x6446022b, 0x00000000}},  //   _сама_, сеци_, neki,\n  { {0x7ae1002d, 0x7d1e0107, 0x20000035, 0x00000000}},  //   _bilt, srps, mbii_,\n  { {0x60c42033, 0x68e80606, 0x7ae90391, 0x00000000}},  //   llim, _pudd, _duet,\n  { {0x5d860054, 0x68e801d5, 0x7ae10065, 0x00000000}},  //   _الأل, _qudd, _dilt,\n  { {0x6d5c1692, 0x60c40922, 0x69c112a7, 0x00000000}},  //   _irra, nlim, _dyle,\n  { {0x69c1014a, 0xc6f70783, 0x661c1530, 0x00000000}},  //   _eyle, бных_, órko,\n  { {0x7ae1002d, 0x60c4010f, 0x7c3b2034, 0x00000000}},  //   _gilt, hlim, _zbur,\n  { {0xe72f06c6, 0x60c401a3, 0x6d5a0059, 0x00000000}},  //   وصی_, klim, _štaj,\n  { {0x64460217, 0x996400b9, 0xab5d0036, 0x00000000}},  //   geki, _kůže_, _wyże,\n  { {0x60c40062, 0xdc9b009b, 0x7ae900f6, 0x00000000}},  //   dlim, ריכל, _xuet,\n  { {0x99640224, 0x442d0036, 0x6d5c0032, 0x00000000}},  //   _může_, że_, _orra,\n  { {0x7e750ce2, 0x64460b79, 0x9f490051, 0x00000000}},  //   _rozp, beki, rcaí_,\n  { {0x64a403f3, 0x9f490051, 0x60c413bf, 0x00000000}},  //   _наја, scaí_, glim,\n  { {0x6d5c0238, 0x6d4e008a, 0x68e200b4, 0x00000000}},  // [4e30] _arra, _asba, _miod,\n  { {0x44390100, 0x60c40052, 0x7c3b00e5, 0x00000000}},  //   lfs_, alim, _sbur,\n  { {0x7ae901d6, 0x9f59000c, 0x60c401cb, 0x00000000}},  //   _suet, _jesú_, blim,\n  { {0x7ae12035, 0x71f8026c, 0x27e60011, 0x00000000}},  //   _silt, _پریس_, _ngon_,\n  { {0x6d5c022b, 0x6d4e2036, 0x7ae10004, 0x00000000}},  //   _erra, _esba, _pilt,\n  { {0x64462037, 0x3cf80009, 0x27e60f86, 0x00000000}},  //   zeki, _ftrv_, _agon_,\n  { {0x68e2027b, 0x7ae1025c, 0x644600e7, 0x00000000}},  //   _biod, _vilt, yeki,\n  { {0x7c3b0061, 0x645a0089, 0x4739007e, 0x00000000}},  //   _ubur, ētik, ачоў_,\n  { {0x68e20016, 0x7c24002a, 0x7b670077, 0x00000000}},  //   _diod, óire, _утве,\n  { {0x24892038, 0x69c10019, 0x27e6022b, 0x00000000}},  //   _alam_, _tyle, _egon_,\n  { {0x64460e33, 0x24892039, 0x443903ce, 0x00000000}},  //   teki, _blam_, ffs_,\n  { {0x7c2b04d4, 0xf992009b, 0x2ee300bb, 0x00000000}},  //   nggr, _קרא_, _lijf_,\n  { {0xe60e03f3, 0x6446203a, 0x78bb0370, 0x00000000}},  //   _од_, reki, mouv,\n  { {0x64460fa8, 0x78bb00b9, 0x2489203b, 0x00000000}},  //   seki, louv, _elam_,\n  { {0x78a90065, 0x644601e5, 0x2cbf012d, 0x00000000}},  //   onev, peki, _okud_,\n  { {0x200b00f4, 0x78a91603, 0x78bb0e16, 0x00000000}},  //   _ceci_, nnev, nouv,\n  { {0x200b000d, 0x60c401a3, 0x3eba00bb, 0x00000000}},  // [4e40] _deci_, rlim, topt_,\n  { {0x60c4008d, 0x245f021e, 0x66cf0056, 0x00000000}},  //   slim, _tämä_, bøke,\n  { {0x0d86008b, 0x60c40571, 0x78bb01aa, 0x00000000}},  //   ўлен, plim, kouv,\n  { {0x5f2a007c, 0x00000000, 0x00000000, 0x00000000}},  //   _комм_,   ,   ,\n  { {0x78a90825, 0x69c5050d, 0x2cad0243, 0x00000000}},  //   dnev, ühen, _djed_,\n  { {0x200b001a, 0x6d5c1089, 0x442b0009, 0x00000000}},  //   _zeci_, _trra, zgc_,\n  { {0x6d5c203c, 0xcb1c0061, 0x6d4e00e0, 0x00000000}},  //   _urra, _निवड_, _usba,\n  { {0xdd8f05d4, 0x26c5203d, 0x78a90010, 0x00000000}},  //   _شوق_, ello_, gnev,\n  { {0xa01b000c, 0x920a007d, 0x76aa007c, 0x00000000}},  //   _slök, वराज_, итов_,\n  { {0xd6d0039d, 0x00000000, 0x00000000, 0x00000000}},  //   عقد_,   ,   ,\n  { {0xceb3007b, 0x994a0054, 0x286a012b, 0x00000000}},  //   ויז_, _خلال_, _врло_,\n  { {0x66e6203e, 0x78bb028c, 0xe3b801f6, 0x00000000}},  //   _дода, couv, ğın_,\n  { {0x200b01cd, 0x4439000c, 0xe3b801f6, 0x00000000}},  //   _reci_, rfs_, şın_,\n  { {0x9f590207, 0x628e00ab, 0x44390203, 0x00000000}},  //   _gesù_, ghbo, sfs_,\n  { {0x31c40069, 0xd258008b, 0x7cf301d5, 0x00000000}},  //   дств, цця_, _oħra,\n  { {0x7648047a, 0x24891084, 0x00000000, 0x00000000}},  //   ledy, _ulam_,   ,\n  { {0x200b0027, 0x66cf0292, 0x9f340088, 0x00000000}},  // [4e50] _veci_, søke, меті,\n  { {0x2cbf0286, 0x628e0fd6, 0x78a9203f, 0x00000000}},  //   _skud_, chbo, znev,\n  { {0x92b40054, 0x2ee300b5, 0x38662040, 0x00000000}},  //   _تحيا, _vijf_, _onor_,\n  { {0x7c84003b, 0x76480058, 0xfcda00a1, 0x00000000}},  //   муче, hedy, مانڈ_,\n  { {0x7c2b00f8, 0x26c5005b, 0xdb070279, 0x00000000}},  //   rggr, yllo_, _ömür,\n  { {0x78bb01aa, 0x76480036, 0x38660150, 0x00000000}},  //   wouv, jedy, _anor_,\n  { {0x7f4d01d5, 0x6ca7003b, 0x76480190, 0x00000000}},  //   lwaq, _драж, dedy,\n  { {0x2cad016c, 0x00000000, 0x00000000, 0x00000000}},  //   _ujed_,   ,   ,\n  { {0x32112041, 0x78bb009d, 0x00000000, 0x00000000}},  //   kazy_, rouv,   ,\n  { {0x78bb00b9, 0x26c50026, 0x7afb011c, 0x00000000}},  //   souv, ullo_, _itut,\n  { {0xc8ab0265, 0x64860051, 0x78a92042, 0x00000000}},  //   _къде_, _fóil, pnev,\n  { {0xc86401e0, 0x3f4d01ed, 0x00000000, 0x00000000}},  //   _отчи, _ožu_,   ,\n  { {0x69c70030, 0x75280089, 0x00000000, 0x00000000}},  //   _øjeb, audz,   ,\n  { {0x75280871, 0x7afb00e7, 0x00000000, 0x00000000}},  //   budz, _mtut,   ,\n  { {0xd1320025, 0xa06a0893, 0xe2972043, 0x00000000}},  //   عمر_, бава_, чар_,\n  { {0x628e1cf6, 0x2b5f006b, 0xb4ba00a1, 0x00000000}},  //   shbo, _oruc_, _دُعا_,\n  { {0x03a613e7, 0x1e86007e, 0x44321e55, 0x00000000}},  // [4e60] _хипо, плам, _icy_,\n  { {0xef170451, 0x6456014a, 0x6496007f, 0x00000000}},  //   яму_, _hayi, ršiu,\n  { {0x6456014a, 0x1c460143, 0x7afb00b4, 0x00000000}},  //   _kayi, знем, _atut,\n  { {0x2b5f2044, 0xdee60069, 0x6456000a, 0x00000000}},  //   _bruc_, _номи, _jayi,\n  { {0x64860051, 0x6f6305b8, 0x64562045, 0x00000000}},  //   _nóim, _звяз, _mayi,\n  { {0x6456005f, 0x787c1152, 0x2b5f00e5, 0x00000000}},  //   _layi, _névr, _druc_,\n  { {0xd90d02fd, 0x64860051, 0xadc30082, 0x00000000}},  //   لیل_, _póil, _trạc,\n  { {0x64562046, 0x20122047, 0x236000d9, 0x00000000}},  //   _nayi, nayi_, _orij_,\n  { {0x64860048, 0x3b070072, 0x672900f6, 0x00000000}},  //   _cóim, _нето_, guej,\n  { {0x44322048, 0xbafb009b, 0x9f9700b3, 0x00000000}},  //   _acy_, _להמש, פדיה_,\n  { {0x76482049, 0x6456014a, 0x2fc70011, 0x00000000}},  //   redy, _bayi, ́ng_,\n  { {0x629e0fdb, 0x3866000d, 0x236000d9, 0x00000000}},  //   _ampo, _unor_, _brij_,\n  { {0x787c00f4, 0x7648204a, 0x64560263, 0x00000000}},  //   _févr, pedy, _dayi,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xe63b00b6, 0x32110ce2, 0x64560173, 0x00000000}},  //   _התוכ, razy_, _fayi,\n  { {0x629e0129, 0x95530025, 0xa2cd0309, 0x00000000}},  //   _empo, _أخوا, _दीर्,\n  { {0xa2b50f97, 0xe8d7009b, 0xddeb0439, 0x00000000}},  // [4e70] _обич, לולר_, مراه_,\n  { {0x6456204b, 0x00000000, 0x00000000, 0x00000000}},  //   _zayi,   ,   ,\n  { {0x7afb00db, 0x6456014a, 0x201214b2, 0x00000000}},  //   _stut, _yayi, bayi_,\n  { {0x317e010f, 0x76840173, 0x00000000, 0x00000000}},  //   ätze_, _bòyk,   ,\n  { {0x2d871470, 0x61ec0047, 0xfc300439, 0x00000000}},  //   šne_, _állá, احم_,\n  { {0x64860048, 0x62870146, 0x00000000, 0x00000000}},  //   _róim, nkjo,   ,\n  { {0xa2a00061, 0x6d5a0ebe, 0x00000000, 0x00000000}},  //   _ऑगस्, _štav,   ,\n  { {0x2b5f0d35, 0xa3ad00e8, 0x08d4007e, 0x00000000}},  //   _truc_, कपा_, нцыя,\n  { {0x64560173, 0x6605010e, 0x00000000, 0x00000000}},  //   _rayi, _õhkk,   ,\n  { {0x645615a4, 0x64960471, 0x00000000, 0x00000000}},  //   _sayi, jšir,   ,\n  { {0x6aa31073, 0xe3b8005a, 0x20120a44, 0x00000000}},  //   minf, ğım_, yayi_,\n  { {0xe3b80676, 0x03a60741, 0x6aa31c9d, 0x00000000}},  //   şım_, димо, linf,\n  { {0x6729204c, 0x2012204d, 0x79830016, 0x00000000}},  //   quej, vayi_, lynw,\n  { {0xa50901b3, 0x236000b5, 0x6aa3010f, 0x00000000}},  //   _дека_, _vrij_, ninf,\n  { {0x2012204e, 0x2d1c007d, 0x6456014a, 0x00000000}},  //   tayi_, _पटेल_, _tayi,\n  { {0x39450300, 0x23600925, 0x2055005c, 0x00000000}},  //   _mpls_, _trij_, нтур,\n  { {0x8fa30057, 0x20120284, 0x44f3204f, 0x00000000}},  // [4e80] вате, rayi_, _hã_,\n  { {0x20120173, 0x629e00e7, 0xc3c901af, 0x00000000}},  //   sayi_, _umpo, _عظيم_,\n  { {0x6aa3010e, 0x6f160253, 0x00000000, 0x00000000}},  //   dinf, ssyc,   ,\n  { {0x44f3001d, 0x6aa3010e, 0x00000000, 0x00000000}},  //   _mã_, einf,   ,\n  { {0x4bda0123, 0x44f3204f, 0xcce50025, 0x00000000}},  //   آباد_, _lã_, رسمي,\n  { {0x6aa32050, 0x39450022, 0x00000000, 0x00000000}},  //   ginf, _bpls_,   ,\n  { {0xa96703f3, 0x9f4b000c, 0x44f3204f, 0x00000000}},  //   дија_, élög_, _nã_,\n  { {0xd90d0014, 0x64960465, 0x00000000, 0x00000000}},  //   صیه_, zšir,   ,\n  { {0x7e7c0127, 0xb05b0039, 0x6aa30232, 0x00000000}},  //   _korp, _okän, binf,\n  { {0xda66006d, 0xceb4006b, 0x44f30082, 0x00000000}},  //   _تاري, qsəd_, _bã_,\n  { {0x7e7c00ab, 0x99861095, 0x98a7013e, 0x00000000}},  //   _morp, _تلاو, ntně_,\n  { {0x9f40200e, 0x25fe02fb, 0x44f30011, 0x00000000}},  //   nció_, _श्री_, _dã_,\n  { {0x69c80016, 0xddce0036, 0xbf9b01c3, 0x00000000}},  //   _hyde, _jabł, _leêr,\n  { {0x44f30181, 0x09d50044, 0x81d80044, 0x00000000}},  //   _fã_, _স্টা, িশন_,\n  { {0x7ae805b7, 0x9f400010, 0x44f30011, 0x00000000}},  //   _midt, kció_, _gã_,\n  { {0x76582051, 0x62872052, 0x69c81091, 0x00000000}},  //   _havy, skjo, _myde,\n  { {0x69c82053, 0x6aa300d2, 0x00000000, 0x00000000}},  // [4e90] _lyde, yinf,   ,\n  { {0x765a130a, 0x2348007a, 0x6aa300f6, 0x00000000}},  //   ndty, _کلیپ_, xinf,\n  { {0x44f3001d, 0x7e7c00c7, 0x69c82054, 0x00000000}},  //   _xã_, _dorp, _nyde,\n  { {0x7e7c002a, 0x6aa32055, 0x6ab9007d, 0x00000000}},  //   _eorp, winf, ेत्र,\n  { {0x7e7c01e3, 0x9098005e, 0x3b092056, 0x00000000}},  //   _forp, _цвят_, чело_,\n  { {0x9f400129, 0x7e7c002d, 0x69c82057, 0x00000000}},  //   ació_, _gorp, _byde,\n  { {0xa01b2058, 0x7ae8011c, 0x69c80675, 0x00000000}},  //   _flöt, _didt, _cyde,\n  { {0x9f4004bd, 0x6aa30056, 0x44f31155, 0x00000000}},  //   cció_, sinf, _rã_,\n  { {0x6aa300df, 0xe7a9022a, 0x44f300c4, 0x00000000}},  //   pinf, явил_, _sã_,\n  { {0xb6cc047f, 0xe3b8014a, 0x00000000, 0x00000000}},  //   şünü, şık_,   ,\n  { {0x76582059, 0x9f400197, 0x69c8205a, 0x00000000}},  //   _davy, nciò_, _gyde,\n  { {0xb05b0274, 0x44f31155, 0xe79500e2, 0x00000000}},  //   _skän, _vã_, _пиењ,\n  { {0xf7450057, 0x7dee0010, 0x69c804a5, 0x00000000}},  //   _чело, nősí, _zyde,\n  { {0x27390263, 0x09e30044, 0xf770004b, 0x00000000}},  //   mèn_, _ন্যা, _خام_,\n  { {0x64a6008b, 0x673b0052, 0x21670745, 0x00000000}},  //   _пака, ltuj, нири_,\n  { {0xafe60326, 0xa0b5003b, 0x645a0089, 0x00000000}},  //   еобл, вљуј, ētis,\n  { {0x44200477, 0x7e7c0093, 0x673b0395, 0x00000000}},  // [4ea0] _idi_, _porp, ntuj,\n  { {0x4420205b, 0x00000000, 0x00000000, 0x00000000}},  //   _hdi_,   ,   ,\n  { {0xa01b205c, 0x7e7c010f, 0x9f59004a, 0x00000000}},  //   _plöt, _vorp, _besó_,\n  { {0x673b0387, 0x273901aa, 0x6d5e006c, 0x00000000}},  //   ktuj, kèn_, rvpa,\n  { {0x7e7c005f, 0x9f40200e, 0x98a700b9, 0x00000000}},  //   _torp, rció_, stně_,\n  { {0xada60265, 0x273901aa, 0xa01b01e5, 0x00000000}},  //   _загл, dèn_, _flös,\n  { {0x9f40205d, 0x6f04008e, 0x291a01cc, 0x00000000}},  //   pció_, lpic, épa_,\n  { {0x7ae80365, 0x7762049a, 0x4420011c, 0x00000000}},  //   _widt, _prox, _ndi_,\n  { {0x7658010a, 0x656300b5, 0xc6a6019d, 0x00000000}},  //   _pavy, _arnh, ерни,\n  { {0x4420006b, 0x69c81aef, 0x6996109e, 0x00000000}},  //   _adi_, _tyde, _прех,\n  { {0x44200065, 0x765a00ea, 0x00000000, 0x00000000}},  //   _bdi_, rdty,   ,\n  { {0x442000f4, 0xd5b7007e, 0xc9b70104, 0x00000000}},  //   _cdi_, эсы_, _אהבת_,\n  { {0x366a0057, 0xa88701e0, 0x44200016, 0x00000000}},  //   _надо_, _яйца_, _ddi_,\n  { {0xa6aa031d, 0x44200065, 0x6f0407e7, 0x00000000}},  //   _عاشق_, _edi_, dpic,\n  { {0xe5f700b6, 0x44200785, 0xf1240900, 0x00000000}},  //   _אזור_, _fdi_, льто,\n  { {0x78a20022, 0xceb4006b, 0x00000000, 0x00000000}},  //   _jmov, zrət_,   ,\n  { {0x6d47009f, 0x644f007f, 0x7ff40014, 0x00000000}},  // [4eb0] _spja, meci, اسفا,\n  { {0x644f02d5, 0x442018e1, 0x645d01e5, 0x00000000}},  //   leci, _zdi_, ldsi,\n  { {0x44200016, 0x273901aa, 0x6d5a0134, 0x00000000}},  //   _ydi_, zèn_, _štar,\n  { {0x645d000c, 0x644f0926, 0x9f400207, 0x00000000}},  //   ndsi, neci, rciò_,\n  { {0x2009205e, 0x60cd005a, 0x645d00bb, 0x00000000}},  //   mbai_, mlam, idsi,\n  { {0x60cd0010, 0xaa4500ed, 0xcb66003b, 0x00000000}},  //   llam, текл, таше_,\n  { {0x60cd0026, 0x644f008a, 0xf2d40049, 0x00000000}},  //   olam, keci, װעק_,\n  { {0x644f0036, 0x673b021e, 0x60cd014a, 0x00000000}},  //   jeci, ttuj, nlam,\n  { {0x644f0249, 0x75280036, 0x60cd0b33, 0x00000000}},  //   deci, erdz, ilam,\n  { {0x2d850004, 0x673b205f, 0x27391d81, 0x00000000}},  //   _üles_, rtuj, rèn_,\n  { {0x673b0428, 0x44200093, 0x20f8012d, 0x00000000}},  //   stuj, _pdi_, _ačin_,\n  { {0x64a6008b, 0x6f042060, 0x644f008e, 0x00000000}},  //   тама, ypic, geci,\n  { {0x60cd2061, 0x96b5003b, 0x289a00a3, 0x00000000}},  //   dlam, _искљ, _קינא,\n  { {0x67292062, 0x645d0007, 0x68eb00e0, 0x00000000}},  //   mrej, adsi, _higd,\n  { {0x60cd014a, 0x44200142, 0xa5640054, 0x00000000}},  //   flam, _tdi_, _مدين,\n  { {0x68fc0047, 0x44202062, 0x7641032e, 0x00000000}},  //   _érde, _udi_, lfly,\n  { {0x68eb0129, 0xc0e32063, 0x7d1c0091, 0x00000000}},  // [4ec0] _migd, ротк, _svrs,\n  { {0x60cd161f, 0xaefb0011, 0x68eb0120, 0x00000000}},  //   alam, _trùn, _ligd,\n  { {0xe0da012b, 0x60cd2064, 0x321800ab, 0x00000000}},  //   _ово_, blam, mary_,\n  { {0x68eb2065, 0x3218077a, 0x6f0401a2, 0x00000000}},  //   _nigd, lary_, ppic,\n  { {0x26c707ac, 0x03e40044, 0x2ca60133, 0x00000000}},  //   _okno_, কুরী_, riod_,\n  { {0x644f0046, 0x321800ab, 0xba18006d, 0x00000000}},  //   zeci, nary_, ريبا_,\n  { {0x7d1c01ae, 0x7641011b, 0x6da601fc, 0x00000000}},  //   _uvrs, dfly, _рива,\n  { {0x7d570476, 0x60c40052, 0x32180253, 0x00000000}},  //   _בילד_, noim, hary_,\n  { {0x67290de5, 0x644f0035, 0x68eb000a, 0x00000000}},  //   grej, veci, _digd,\n  { {0x60c40051, 0x3aeb0014, 0x60cd0823, 0x00000000}},  //   hoim, _قبلی_, zlam,\n  { {0x644f1bae, 0x60cd1811, 0x2455067a, 0x00000000}},  //   teci, ylam, هندس,\n  { {0x52bd0164, 0x60cd006b, 0x61fe101b, 0x00000000}},  //   ोत्स, xlam, _afpl,\n  { {0x644f0977, 0x24840039, 0x00000000, 0x00000000}},  //   reci, ömma_,   ,\n  { {0x644f0a0f, 0xc7d7009b, 0x46a3005e, 0x00000000}},  //   seci, _סוגי_, _качв,\n  { {0x61141020, 0x60cd083a, 0xb6d90049, 0x00000000}},  //   идру, tlam, _אַקט,\n  { {0xf0b405b8, 0x64860048, 0x00000000, 0x00000000}},  //   айсь, _sóiv,   ,\n  { {0x2009010a, 0x9ed905f6, 0x6d5a0091, 0x00000000}},  // [4ed0] rbai_, емат_, _štap,\n  { {0xd251007a, 0x60cd000b, 0xa2c40061, 0x00000000}},  //   _اند_, slam, ळवण्,\n  { {0x60cd014a, 0x67290f6c, 0x69a20061, 0x00000000}},  //   plam, zrej, _केली,\n  { {0x1b19007c, 0x672908e0, 0x60cd006b, 0x00000000}},  //   ежды_, yrej, qlam,\n  { {0x0c2401e1, 0xa09a0049, 0x291e00ca, 0x00000000}},  //   рмін, _נישט, _avta_,\n  { {0x672905fa, 0xbbd3013d, 0x68eb00ea, 0x00000000}},  //   vrej, _तरीक, _sigd,\n  { {0x98ac0180, 0x3f89005b, 0x127c0049, 0x00000000}},  //   _ardı_, lyau_, ואגע,\n  { {0xc17400b6, 0x67291f49, 0x88c500b9, 0x00000000}},  //   שחק_, trej, _ověř,\n  { {0x64860051, 0x67292066, 0xf09400a0, 0x00000000}},  //   _móit, urej, ינק_,\n  { {0x67292067, 0x60c40bb2, 0x249201c3, 0x00000000}},  //   rrej, zoim, _slym_,\n  { {0x34aa0517, 0x764102e7, 0x32180161, 0x00000000}},  //   евно_, rfly, vary_,\n  { {0x67290208, 0x76410cf5, 0x321800b4, 0x00000000}},  //   prej, sfly, wary_,\n  { {0x32182068, 0x60c400b0, 0x61e9006b, 0x00000000}},  //   tary_, voim, əmlə,\n  { {0x78a909dd, 0xb6071662, 0x3ced00e5, 0x00000000}},  //   liev, _рядк, _liev_,\n  { {0x60c4021e, 0x26c50197, 0x321800ab, 0x00000000}},  //   toim, molo_, rary_,\n  { {0x78a90065, 0x32180784, 0x26c50416, 0x00000000}},  //   niev, sary_, lolo_,\n  { {0xddd5004f, 0x64860051, 0x60c40705, 0x00000000}},  // [4ee0] _rozš, _dóit, roim,\n  { {0x9419006b, 0x78a900ab, 0x26c50919, 0x00000000}},  //   disə_, hiev, nolo_,\n  { {0x60c40181, 0xa2c101f5, 0x26c52069, 0x00000000}},  //   poim, लकर्, iolo_,\n  { {0x20561b89, 0x317b007b, 0x628e02ab, 0x00000000}},  //   _стор, _נאכד, lkbo,\n  { {0x26c512a8, 0xa3aa007d, 0xb4370049, 0x00000000}},  //   kolo_, _गेम_, אָוו_,\n  { {0xc333019b, 0x628e018d, 0x98a00059, 0x00000000}},  //   מוד_, nkbo, čič_,\n  { {0x26c5206a, 0x78a90026, 0x2ca40022, 0x00000000}},  //   dolo_, fiev, _tmmd_,\n  { {0x7d0306f4, 0x78a90afd, 0x00000000, 0x00000000}},  //   ínse, giev,   ,\n  { {0x64860051, 0x26c50026, 0xfa360879, 0x00000000}},  //   _lóis, folo_, _مراد,\n  { {0x0f5700b6, 0x9b930054, 0x26c50207, 0x00000000}},  //   ניים_, _الكت, golo_,\n  { {0x88c5013e, 0x6475206b, 0x00000000, 0x00000000}},  //   _svěř, агну,   ,\n  { {0x6aaa1fa8, 0x628e0168, 0xceb4006b, 0x00000000}},  //   liff, ekbo, xsən_,\n  { {0x26c50142, 0xe8b20061, 0x752f0036, 0x00000000}},  //   bolo_, ुकीच, ącza,\n  { {0x26c50198, 0x39ae006b, 0xb05b00b0, 0x00000000}},  //   colo_, _kəs_, _ikäi,\n  { {0x661a206c, 0xa194007e, 0x64860048, 0x00000000}},  //   matk, барч, _cóis,\n  { {0x661a0047, 0x6aaa010f, 0x88bc00b9, 0x00000000}},  //   latk, hiff, _uvěd,\n  { {0xb4c302fb, 0xceb4006b, 0x2ba401f5, 0x00000000}},  // [4ef0] ्ती_, rsən_, _खेला,\n  { {0x628e001c, 0x661a0010, 0x78a90026, 0x00000000}},  //   ckbo, natk, ziev,\n  { {0x5d5501f9, 0xf1ab0014, 0x6aaa06e2, 0x00000000}},  //   ркет, _ساده_, diff,\n  { {0x44fa048a, 0x3af90263, 0x23690387, 0x00000000}},  //   _më_, _pèp_, _kraj_,\n  { {0x09dd001c, 0x661a020c, 0x44fa0065, 0x00000000}},  //   मध्य, katk, _lë_,\n  { {0x2ba4001c, 0x44fa0343, 0x39ae006b, 0x00000000}},  //   _खेळा, _oë_, _bəs_,\n  { {0x44fa048a, 0x661a14d4, 0x78a902ae, 0x00000000}},  //   _në_, datk, tiev,\n  { {0x7d0100e5, 0x00000000, 0x00000000, 0x00000000}},  //   _cârţ,   ,   ,\n  { {0x26c50198, 0x6c840025, 0x78a91c71, 0x00000000}},  //   tolo_, _القم, riev,\n  { {0x44fa0065, 0x78a900bb, 0x443b0026, 0x00000000}},  //   _bë_, siev, _acq_,\n  { {0x26c50197, 0xb4c301f5, 0x78a901c5, 0x00000000}},  //   rolo_, ्तू_, piev,\n  { {0x26c50724, 0xe3660184, 0x29050066, 0x00000000}},  //   solo_, акми, _itla_,\n  { {0x6486002a, 0x26c50207, 0x661a04cb, 0x00000000}},  //   _sóis, polo_, batk,\n  { {0x412a0373, 0x64860051, 0x27ff0197, 0x00000000}},  //   кого_, _cóir, lcun_,\n  { {0x91e601f9, 0x7c3b0211, 0x6b8b1dab, 0x00000000}},  //   рове, _ocur, hygg,\n  { {0x27ff206d, 0x7bcd0089, 0x23690087, 0x00000000}},  //   ncun_, ļauj, _fraj_,\n  { {0xb4d2007d, 0xee3a072b, 0x44fa0065, 0x00000000}},  // [4f00] वती_, кна_, _zë_,\n  { {0x7c3b0a16, 0x27e00045, 0x00000000, 0x00000000}},  //   _acur, _ùine_,   ,\n  { {0xc27b00b6, 0x2b4d206e, 0x127b0049, 0x00000000}},  //   _סרטי, _apec_, _סאטע,\n  { {0xdd8f06f1, 0x8c460069, 0xeb06003b, 0x00000000}},  //   بوم_, реде, ачко,\n  { {0x39ae006b, 0x661a003f, 0xbb43206f, 0x00000000}},  //   _səs_, yatk, жечк,\n  { {0x7c3b1176, 0x394c1a0b, 0x00000000, 0x00000000}},  //   _ecur, _ppds_,   ,\n  { {0x6aaa08ed, 0x661a0ec6, 0x00000000, 0x00000000}},  //   riff, vatk,   ,\n  { {0x6b8b01bf, 0x20002070, 0x798a0007, 0x00000000}},  //   bygg, ncii_, ryfw,\n  { {0x44fa048a, 0xd6da046c, 0x661a0010, 0x00000000}},  //   _së_, кто_, tatk,\n  { {0x7afd008e, 0x3cf80030, 0x752f00b4, 0x00000000}},  //   _ésta, _kurv_, ączn,\n  { {0x44fa048a, 0xb05b00b0, 0x20000142, 0x00000000}},  //   _që_, _ikäv, kcii_,\n  { {0xb4c30309, 0x69da2071, 0x44fa0065, 0x00000000}},  //   ्ते_, _izte, _vë_,\n  { {0x661a020c, 0x645f006b, 0x00000000, 0x00000000}},  //   patk, _vaqi,   ,\n  { {0x44fa2072, 0x171b019b, 0x6d4e0030, 0x00000000}},  //   _të_, _יודע, _opba,\n  { {0x30a7007e, 0xa0a72073, 0x443b00f6, 0x00000000}},  //   арав, ашал, _tcq_,\n  { {0x64a40143, 0xe3b8019a, 0x00000000, 0x00000000}},  //   _маја, ğır_,   ,\n  { {0xe3b80279, 0x6d5c2074, 0x44390009, 0x00000000}},  // [4f10] şır_, _asra, mgs_,\n  { {0xde1901f7, 0x4255035b, 0x44390190, 0x00000000}},  //   اقات_, _اندر, lgs_,\n  { {0x2b4d2075, 0xc212009b, 0x2d872076, 0x00000000}},  //   _spec_, _מהי_, âne_,\n  { {0x44390b8d, 0x31560049, 0x6722050f, 0x00000000}},  //   ngs_, _פירן_, _ovoj,\n  { {0x69da022b, 0x62852077, 0x6b65007e, 0x00000000}},  //   _azte, _koho, скла,\n  { {0x62852078, 0x6b8b000c, 0x5a47007e, 0x00000000}},  //   _joho, rygg, рэда,\n  { {0x2019000b, 0x62852079, 0x8d950025, 0x00000000}},  //   _kesi_, _moho, _الأش,\n  { {0x20190091, 0x9601006e, 0xb4c3006e, 0x00000000}},  //   _jesi_, ोर्ट_, ्तो_,\n  { {0xb8fe03d7, 0x20190198, 0xd706007c, 0x00000000}},  //   _दी_, _mesi_, бные_,\n  { {0x27ff01e8, 0x4439136b, 0x628505d2, 0x00000000}},  //   scun_, egs_, _noho,\n  { {0x752f0036, 0x79a700ed, 0x27e900fa, 0x00000000}},  //   ączo, _трае, _ºano_,\n  { {0x443906a1, 0x6486002a, 0xb4d20061, 0x00000000}},  //   ggs_, _cóip, वते_,\n  { {0x26d904bd, 0x62850142, 0xe60e0245, 0x00000000}},  //   ïsos_, _boho, _нд_,\n  { {0xcb1200b6, 0xd2950088, 0x44390328, 0x00000000}},  //   הלך_, орсь, ags_,\n  { {0x4096007c, 0x6285207a, 0x20190169, 0x00000000}},  //   брат, _doho, _besi_,\n  { {0x387f207b, 0x10a3025f, 0x20190c56, 0x00000000}},  //   njur_, писн, _cesi_,\n  { {0xa0670265, 0x2019001a, 0x2000175b, 0x00000000}},  // [4f20] щата_, _desi_, rcii_,\n  { {0x62850059, 0x1fb503e8, 0xdc10006e, 0x00000000}},  //   _goho, істр, ार्ड_,\n  { {0x629c0051, 0x387f207c, 0x7bdb00d9, 0x00000000}},  //   mhro, kjur_, _azuu,\n  { {0xeb9a09da, 0x20190020, 0xa5da0049, 0x00000000}},  //   лие_, _gesi_, אַדי,\n  { {0x387f0039, 0x69da0010, 0x38c800a2, 0x00000000}},  //   djur_, _szte, یابی_,\n  { {0x6e960054, 0x6d5c0051, 0x20100036, 0x00000000}},  //   _السا, _tsra, łnić_,\n  { {0x67220cce, 0x5fac001c, 0x3e8500b9, 0x00000000}},  //   _svoj, _घेतल, _dítě_,\n  { {0xceb4005f, 0x8c430256, 0x387f0028, 0x00000000}},  //   ksək_, _несе, gjur_,\n  { {0x7f44207d, 0xdddc001a, 0x6618207e, 0x00000000}},  //   ntiq, _forţ, _pevk,\n  { {0x44390c6a, 0x1f5b0104, 0x3ce60134, 0x00000000}},  //   wgs_, נדיא, lmov_,\n  { {0x69da207f, 0x69960088, 0x984a005e, 0x00000000}},  //   _uzte, _урах, _бяла_,\n  { {0xc97701f8, 0x44390089, 0xfbdc013d, 0x00000000}},  //   _לגבי_, ugs_, _बराम,\n  { {0x4439138f, 0x62850428, 0x20192080, 0x00000000}},  //   rgs_, _poho, _resi_,\n  { {0x201901a3, 0x6594030d, 0x629c0048, 0x00000000}},  //   _sesi_, _малу, ghro,\n  { {0x20190197, 0xc69301ce, 0xe3b8014a, 0x00000000}},  //   _pesi_, _מאס_, şıp_,\n  { {0x62852081, 0x3eaa00bb, 0x00000000, 0x00000000}},  //   _woho, _ambt_,   ,\n  { {0x628501ca, 0x4429006c, 0x644d002d, 0x00000000}},  // [4f30] _toho, _ida_, _ibai,\n  { {0x43d4006d, 0x68fa00ab, 0x4155203e, 0x00000000}},  //   _عزيز, _outd, _двос,\n  { {0x20190207, 0x7f4400f4, 0x44292082, 0x00000000}},  //   _tesi_, atiq, _kda_,\n  { {0x425500a1, 0x3e8500b9, 0x442910d4, 0x00000000}},  //   _انگر, _sítě_, _jda_,\n  { {0xa03a007b, 0x644d002a, 0x7f442083, 0x00000000}},  //   _דערפ, _mbai, ctiq,\n  { {0x44290181, 0x660d0166, 0x00000000, 0x00000000}},  //   _lda_, _đako,   ,\n  { {0x644d002a, 0x44292084, 0x09e20d11, 0x00000000}},  //   _obai, _oda_, мошн,\n  { {0xa3aa001c, 0x4429014a, 0x7afd0211, 0x00000000}},  //   _गइल_, _nda_, _ésto,\n  { {0x6d450232, 0x660401f6, 0x6f0d01a2, 0x00000000}},  //   ltha, _şika, npac,\n  { {0x44290149, 0x644d0b0c, 0xda02006e, 0x00000000}},  //   _ada_, _abai, रुआत_,\n  { {0x6d452085, 0x7afb00b0, 0xe4520025, 0x00000000}},  //   ntha, _huut, وضح_,\n  { {0x6d45018e, 0x442900b5, 0x7afb0929, 0x00000000}},  //   itha, _cda_, _kuut,\n  { {0x4429018e, 0x629c0531, 0x4393007e, 0x00000000}},  //   _dda_, thro, даўс,\n  { {0x7afb0368, 0x44290095, 0x6d4500f8, 0x00000000}},  //   _muut, _eda_, ktha,\n  { {0x04460265, 0xa18700da, 0x44290133, 0x00000000}},  //   _дейн, обра_, _fda_,\n  { {0x7c29008d, 0x6f0d00d9, 0x629c0133, 0x00000000}},  //   _nder, fpac, shro,\n  { {0x7afb0343, 0x6d45018e, 0x2caf00b5, 0x00000000}},  // [4f40] _nuut, etha, digd_,\n  { {0x6d450030, 0x44292086, 0x7c29060c, 0x00000000}},  //   ftha, _zda_, _ader,\n  { {0x7f442087, 0xed5a007c, 0x225801bb, 0x00000000}},  //   stiq, рое_, merk_,\n  { {0x823604e1, 0xa3be0309, 0x44290082, 0x00000000}},  //   _ارکا, _आशा_, _xda_,\n  { {0xdee608f3, 0x6d450051, 0x7c29018e, 0x00000000}},  //   _моми, atha, _dder,\n  { {0x7c290612, 0x752f0036, 0x60d61241, 0x00000000}},  //   _eder, ńczy, llym,\n  { {0xdd9200a1, 0xdddc0089, 0x6d452088, 0x00000000}},  //   _غور_, _forš, ctha,\n  { {0xf8ba0055, 0xd90d0014, 0x00000000, 0x00000000}},  //   ুষ্ঠ, این_,   ,\n  { {0xda0b024c, 0x225801bb, 0xa3aa0164, 0x00000000}},  //   _स्वत_, kerk_, _गेल_,\n  { {0x44292089, 0x09e600ec, 0x68fa006b, 0x00000000}},  //   _sda_, _дозн, _tutd,\n  { {0x7c290018, 0xa806007e, 0x6f0d00b4, 0x00000000}},  //   _yder, _дзел, zpac,\n  { {0xe4a703e8, 0x290e208a, 0xbfa30082, 0x00000000}},  //   ірно, mpfa_, _biể,\n  { {0x443f0089, 0x44290873, 0x00000000, 0x00000000}},  //   ļu_, _vda_,   ,\n  { {0x6d450016, 0x443f208b, 0x4429208c, 0x00000000}},  //   ytha, żu_, _wda_,\n  { {0x26cc1ad2, 0x3495005e, 0x4429005b, 0x00000000}},  //   modo_, _накр, _tda_,\n  { {0xd5b901fb, 0x212d089f, 0x644d033b, 0x00000000}},  //   _усі_, čeh_, _ubai,\n  { {0x68e20051, 0x2258208d, 0xdddc012d, 0x00000000}},  // [4f50] _mhod, berk_, _rorš,\n  { {0x6f0d0e22, 0xa2b40057, 0x7afb03b6, 0x00000000}},  //   rpac, _обыч, _ruut,\n  { {0x6f0d0365, 0x7afb03b6, 0x6d45208e, 0x00000000}},  //   spac, _suut, utha,\n  { {0x6d45002a, 0x7afb0b3e, 0x26cc0022, 0x00000000}},  //   rtha, _puut, hodo_,\n  { {0x0f79007b, 0x3f790049, 0x00000000, 0x00000000}},  //   _האָב, _האָס,   ,\n  { {0xda6201ab, 0x5338009b, 0x60cd0258, 0x00000000}},  //   евши, קנון_, loam,\n  { {0x26cc0093, 0x752f00b4, 0x00000000, 0x00000000}},  //   dodo_, ączk,   ,\n  { {0x68e20395, 0x60cd0211, 0x248900f6, 0x00000000}},  //   _chod, noam, _noam_,\n  { {0x64ab013e, 0xe7310025, 0x00000000, 0x00000000}},  //   přij, رصة_,   ,\n  { {0x2cad012d, 0x60cd1414, 0x00000000, 0x00000000}},  //   _hmed_, hoam,   ,\n  { {0x2258208f, 0xd46a0e82, 0x60cd0052, 0x00000000}},  //   verk_, бине_, koam,\n  { {0x22582090, 0x2a650eaa, 0x649a0256, 0x00000000}},  //   werk_, _halb_, стор_,\n  { {0x68e9068f, 0x22580007, 0x26cc2091, 0x00000000}},  //   mmed, terk_, bodo_,\n  { {0x68e9014a, 0x2cbf0039, 0x98a00006, 0x00000000}},  //   lmed, _ljud_, čią_,\n  { {0x40960200, 0x24890133, 0x66cf0056, 0x00000000}},  //   прат, _foam_, søks,\n  { {0x032618ea, 0xb05b0039, 0x68e9014a, 0x00000000}},  //   _един, _skär, nmed,\n  { {0x4422011f, 0x2d870706, 0x225800c7, 0x00000000}},  // [4f60] mak_, änen_, perk_,\n  { {0x44221964, 0x68e90107, 0x60d60023, 0x00000000}},  //   lak_, hmed, slym,\n  { {0x4422022b, 0x68360180, 0x68e90095, 0x00000000}},  //   oak_, nüdü, kmed,\n  { {0x442207ef, 0xa3b10164, 0x60cd00c4, 0x00000000}},  //   nak_, _टेड_, coam,\n  { {0x68e2018e, 0x4422022b, 0x68e900f8, 0x00000000}},  //   _rhod, iak_, dmed,\n  { {0x4422027e, 0x68e200b9, 0x68e90020, 0x00000000}},  //   hak_, _shod, emed,\n  { {0x44222092, 0x20070046, 0xceb30049, 0x00000000}},  //   kak_, śnie_, _טיש_,\n  { {0x44222093, 0x68e90190, 0x7ce3006c, 0x00000000}},  //   jak_, gmed, võrg,\n  { {0x4422020c, 0x68e2031f, 0x2ca701d6, 0x00000000}},  //   dak_, _vhod, ënde_,\n  { {0x7bcd0089, 0x7c2200e0, 0x24570082, 0x00000000}},  //   ļaut, laor, _ầm_,\n  { {0x1dbe0201, 0x26cc010a, 0x4422014a, 0x00000000}},  //   ्थित, rodo_, fak_,\n  { {0x4422034d, 0x26cc00ca, 0x7c222094, 0x00000000}},  //   gak_, sodo_, naor,\n  { {0xb4bd01f5, 0x60cd0511, 0x00000000, 0x00000000}},  //   _आदी_, voam,   ,\n  { {0x1dbe007d, 0xcfc40044, 0x7ce3010e, 0x00000000}},  //   ्थात, ্ধান, põrg,\n  { {0x765a0052, 0x60cd00b0, 0x629500bb, 0x00000000}},  //   mety, toam, rkzo,\n  { {0x4422011f, 0x765a093a, 0x753a1b99, 0x00000000}},  //   cak_, lety, mutz,\n  { {0x290c0181, 0x60cd0211, 0xf3ff00c4, 0x00000000}},  // [4f70] _ltda_, roam, ldão_,\n  { {0x765a0639, 0x2cad06d9, 0x60cd004a, 0x00000000}},  //   nety, _smed_, soam,\n  { {0x753a001f, 0xf3ff0181, 0x68e90016, 0x00000000}},  //   nutz, ndão_, ymed,\n  { {0x765a00b0, 0x00000000, 0x00000000, 0x00000000}},  //   hety,   ,   ,\n  { {0x753a010f, 0x765a00ea, 0x68e92095, 0x00000000}},  //   hutz, kety, vmed,\n  { {0x44221e3a, 0x9f9600b6, 0x2a65002b, 0x00000000}},  //   zak_, _חדשה_, _qalb_,\n  { {0x4422170b, 0x68e9014a, 0x64ab00b9, 0x00000000}},  //   yak_, tmed, přih,\n  { {0x4422002d, 0x753a15ed, 0x2cad0035, 0x00000000}},  //   xak_, dutz, _umed_,\n  { {0x765a12fe, 0xcb340265, 0x44221d7a, 0x00000000}},  //   fety, _петъ, vak_,\n  { {0x68e901bf, 0x44221312, 0x765a0009, 0x00000000}},  //   smed, wak_, gety,\n  { {0x44220d01, 0x68e92096, 0x753a022b, 0x00000000}},  //   tak_, pmed, gutz,\n  { {0x4422002d, 0x7e672097, 0x6836019a, 0x00000000}},  //   uak_, _lajp, rüdü,\n  { {0x442212d9, 0x765a0dbf, 0xd629003b, 0x00000000}},  //   rak_, bety, _доле_,\n  { {0x7ea0145c, 0x753a0032, 0x6d5500d9, 0x00000000}},  //   _köpe, butz, _opza,\n  { {0x44222098, 0xaca30011, 0x2d47006c, 0x00000000}},  //   pak_, _chừn, jõe_,\n  { {0x98a001cd, 0x25d60049, 0xe0da05b8, 0x00000000}},  //   čić_, _קוקן_, іва_,\n  { {0x4420001a, 0x7ea000f8, 0x2484000c, 0x00000000}},  // [4f80] _iei_, _löpe, ömmu_,\n  { {0xf76706c6, 0x44200e67, 0x00000000, 0x00000000}},  //   _یا_, _hei_,   ,\n  { {0x442000bb, 0x629e0026, 0x7c220145, 0x00000000}},  //   _kei_, _ilpo, taor,\n  { {0x4420010a, 0x80dc0044, 0x00000000, 0x00000000}},  //   _jei_, _মূর্,   ,\n  { {0x7c2201bc, 0x00000000, 0x00000000, 0x00000000}},  //   raor,   ,   ,\n  { {0x44202099, 0x3866002a, 0x34bb0309, 0x00000000}},  //   _lei_, _saor_, _उद्द,\n  { {0xd90d01ef, 0x2f040039, 0x442000bb, 0x00000000}},  //   میل_, _hög_, _oei_,\n  { {0x4420086f, 0x00000000, 0x00000000, 0x00000000}},  //   _nei_,   ,   ,\n  { {0x6f020195, 0x765a209a, 0xb6f4025f, 0x00000000}},  //   íoch, tety, нзиј,\n  { {0x6996004d, 0x753a209b, 0x7c2000f8, 0x00000000}},  //   _орех, tutz, _hemr,\n  { {0x4420209c, 0xf76f0a90, 0x2f04000c, 0x00000000}},  //   _bei_, های_, _lög_,\n  { {0x4420000d, 0x753a002d, 0xf3ff0181, 0x00000000}},  //   _cei_, rutz, rdão_,\n  { {0x4420209d, 0x4992026c, 0x7d09057c, 0x00000000}},  //   _dei_, _سیکر, _česm,\n  { {0x80dc0044, 0x7d03209e, 0x753a0dab, 0x00000000}},  //   _মূল্, ínsk, putz,\n  { {0xd5af003b, 0xd6570104, 0x7e67209f, 0x00000000}},  //   _рс_, _חיות_, _rajp,\n  { {0x7c2020a0, 0x629e01c5, 0x442017b4, 0x00000000}},  //   _nemr, _elpo, _gei_,\n  { {0x645d1109, 0x7e6720a1, 0x00000000, 0x00000000}},  // [4f90] mesi, _pajp,   ,\n  { {0x442000b5, 0xaca30082, 0x00000000, 0x00000000}},  //   _zei_, _thừn,   ,\n  { {0x75280089, 0x21270082, 0x00000000, 0x00000000}},  //   nsdz, _ình_,   ,\n  { {0x645d20a2, 0x8b6b001e, 0xdfd10025, 0x00000000}},  //   nesi, ņēmē, _ميج_,\n  { {0x7e670066, 0x511f01f5, 0x660a0085, 0x00000000}},  //   _tajp, _बबुआ_, _offk,\n  { {0xa9690265, 0x2d470181, 0x645d00ab, 0x00000000}},  //   зика_, põe_, hesi,\n  { {0x7c20008d, 0x645d014a, 0xac190088, 0x00000000}},  //   _femr, kesi, _нову_,\n  { {0x645d20a3, 0xe3b8005a, 0x6e2500e0, 0x00000000}},  //   jesi, ğız_, lahb,\n  { {0x44200a0a, 0x59e1013d, 0xbb190025, 0x00000000}},  //   _rei_, _फरवर, _رياض_,\n  { {0x4420038b, 0x45850849, 0x7c20008d, 0x00000000}},  //   _sei_, егов, _zemr,\n  { {0x04460500, 0x44200145, 0x4815007e, 0x00000000}},  //   ненн, _pei_, _змес,\n  { {0x64ca0204, 0xf77101af, 0x7ea000f8, 0x00000000}},  //   रवेश, _مات_, _köpc,\n  { {0xe72e20a4, 0xaca3001d, 0x5695008b, 0x00000000}},  //   _ще_, _chứn, _падт,\n  { {0x442001a3, 0xa7640088, 0x00000000, 0x00000000}},  //   _wei_, _шкід,   ,\n  { {0x44200035, 0x81d80044, 0x76410009, 0x00000000}},  //   _tei_, ়েন_, mgly,\n  { {0x645d0845, 0xf41f00b0, 0x20e801a2, 0x00000000}},  //   cesi, ljän_, ißig_,\n  { {0x672920a5, 0x8fa3007c, 0x00000000, 0x00000000}},  // [4fa0] nsej, гате,   ,\n  { {0x6da608d6, 0x76410dba, 0x7c201454, 0x00000000}},  //   низа, ngly, _semr,\n  { {0x7c20023a, 0x20070036, 0xe0da025f, 0x00000000}},  //   _pemr, śnia_, _нво_,\n  { {0x61e1169c, 0x0ca90025, 0xac0702dc, 0x00000000}},  //   ülle, وطني_, енца_,\n  { {0xc5f8001e, 0xeb97007c, 0x7cfa013e, 0x00000000}},  //   ldēt_, ниц_, _důra,\n  { {0x99660175, 0x645d20a6, 0xef110049, 0x00000000}},  //   етил, zesi, _כּל_,\n  { {0x645d20a7, 0xed57007c, 0x672b15c5, 0x00000000}},  //   yesi, _пор_, _avgj,\n  { {0xbf6300a1, 0xd90d0014, 0x00000000, 0x00000000}},  //   _جگہو, زیه_,   ,\n  { {0xb907024c, 0xdca3003b, 0x645d1047, 0x00000000}},  //   _मी_, _сати, vesi,\n  { {0x645d0007, 0xa96a0098, 0x95ca1fe6, 0x00000000}},  //   wesi, _низа_, зума_,\n  { {0x7d09004f, 0x645d20a7, 0xf99f00ed, 0x00000000}},  //   _česk, tesi, _сè_,\n  { {0x7afa02e1, 0x7792007a, 0xddc70089, 0x00000000}},  //   _hitt, _میبا, _sajū,\n  { {0x645d20a8, 0x0877007b, 0xddc70964, 0x00000000}},  //   resi, _רעדט_, _pajū,\n  { {0x645d14b2, 0x7afa01d5, 0x877b00a3, 0x00000000}},  //   sesi, _jitt, _מאדי,\n  { {0x7afa20a9, 0x645d1089, 0xf09f00f6, 0x00000000}},  //   _mitt, pesi, _plà_,\n  { {0x7afa20aa, 0x7bde0036, 0x645d0065, 0x00000000}},  //   _litt, ępuj, qesi,\n  { {0xe3bf008e, 0x00000000, 0x00000000, 0x00000000}},  // [4fb0] baña_,   ,   ,\n  { {0x7afa002b, 0xa3aa007d, 0x3f8704eb, 0x00000000}},  //   _nitt, _गेट_, ćnu_,\n  { {0xeab100a6, 0x81d80044, 0x69da0479, 0x00000000}},  //   یعت_, ়েব_, _nyte,\n  { {0x7c84005c, 0x7afa014a, 0x61e50087, 0x00000000}},  //   луче, _aitt, _izhl,\n  { {0x7afa001f, 0x5fe401ff, 0xdcee0087, 0x00000000}},  //   _bitt, _бірж, _grbč,\n  { {0x69da0039, 0x7afa0198, 0xc5f80089, 0x00000000}},  //   _byte, _citt, ndēs_,\n  { {0x7afa0a19, 0x7f4d12d7, 0xa9660aef, 0x00000000}},  //   _ditt, ltaq, вища_,\n  { {0x7afa009f, 0x672920ab, 0xa3c3007d, 0x00000000}},  //   _eitt, tsej, ्था_,\n  { {0x7afa086a, 0x69c800f6, 0x81d70044, 0x00000000}},  //   _fitt, _exde, িধি_,\n  { {0x7afa011f, 0xd6ce13d9, 0x7ea00039, 0x00000000}},  //   _gitt, يقي_, _köpa,\n  { {0x64a6008b, 0x67290129, 0x9aa400a1, 0x00000000}},  //   вана, ssej, _حملو,\n  { {0x7afa02ae, 0x7bdb0022, 0x6729179a, 0x00000000}},  //   _zitt, _kyuu, psej,\n  { {0xccf20049, 0x386d04d3, 0xe3bf008e, 0x00000000}},  //   יכט_, mder_, taña_,\n  { {0x64410006, 0x00000000, 0x00000000, 0x00000000}},  //   ėlia,   ,   ,\n  { {0xaca300ad, 0xa01b0039, 0xe5a20088, 0x00000000}},  //   _nhữn, _onöd, _вищи,\n  { {0x92b20044, 0xe3bf004a, 0x3a270058, 0x00000000}},  //   টকে_, saña_, hanp_,\n  { {0xe3bf0958, 0xb05b0073, 0x64560061, 0x00000000}},  // [4fc0] paña_, _tjän, _ibyi,\n  { {0xb05b0073, 0x386d0016, 0xee37003b, 0x00000000}},  //   _hjäl, hder_, кну_,\n  { {0x44320224, 0x7afa010f, 0x2d9c0027, 0x00000000}},  //   _kdy_, _ritt, áve_,\n  { {0x7afa20ac, 0x386d1e68, 0x6aa113f7, 0x00000000}},  //   _sitt, jder_, _allf,\n  { {0xef170057, 0x8c43026b, 0x386d0905, 0x00000000}},  //   _имя_, рече, dder_,\n  { {0x386d00b5, 0x63890065, 0x61e900b9, 0x00000000}},  //   eder_, _hënë, řele,\n  { {0x69da008d, 0x7afa0207, 0x00000000, 0x00000000}},  //   _qyte, _vitt,   ,\n  { {0xfce601fb, 0x7afa0270, 0x386d02e1, 0x00000000}},  //   _робо, _witt, gder_,\n  { {0x7afa01e2, 0xc6f80805, 0x4734012b, 0x00000000}},  //   _titt, нних_, ћнос,\n  { {0x386d0857, 0x7afa16db, 0x44320d9f, 0x00000000}},  //   ader_, _uitt, _ady_,\n  { {0xceb300b6, 0x2294006c, 0xb866009e, 0x00000000}},  //   שית_, _läks_, _لاشو,\n  { {0x79b700b6, 0x63890065, 0x629c20ad, 0x00000000}},  //   _בלבד_, _nënë, ekro,\n  { {0x78a220ae, 0xf7430088, 0x44320544, 0x00000000}},  //   _ilov, _вечо, _ddy_,\n  { {0x443204d4, 0xf2c4007c, 0x64560009, 0x00000000}},  //   _edy_, ассн, _ebyi,\n  { {0xb05b0039, 0x403508d6, 0xe2f80088, 0x00000000}},  //   _fjäl, левс, тері_,\n  { {0x44320046, 0x30a420af, 0x3a270263, 0x00000000}},  //   _gdy_, арув, zanp_,\n  { {0xe3bf0211, 0x26de20b0, 0x2d8e01a2, 0x00000000}},  // [4fd0] maño_, olto_, äfen_,\n  { {0x78a2008e, 0xa3e80164, 0xe3bf004a, 0x00000000}},  //   _llov, _भरत_, laño_,\n  { {0x386d05a6, 0x7f4d20b1, 0x78a2016e, 0x00000000}},  //   yder_, staq, _olov,\n  { {0x27e61aef, 0xe7e20309, 0x23690023, 0x00000000}},  //   _ozon_, _परंप, _ksaj_,\n  { {0x6f020051, 0x386d068f, 0x00000000, 0x00000000}},  //   íoct, vder_,   ,\n  { {0x386d00ab, 0x78a220b2, 0x00000000, 0x00000000}},  //   wder_, _alov,   ,\n  { {0x27e60010, 0x79a7005e, 0x6aa10045, 0x00000000}},  //   _azon_, ърде, _vllf,\n  { {0x2ca6004f, 0x78a20142, 0x386d00b5, 0x00000000}},  //   chod_, _clov, uder_,\n  { {0x386d0365, 0x00000000, 0x00000000, 0x00000000}},  //   rder_,   ,   ,\n  { {0xb05b0073, 0x27e601ee, 0x55890140, 0x00000000}},  //   _själ, _dzon_, ебом_,\n  { {0x2369008d, 0x3915005c, 0x69c40035, 0x00000000}},  //   _asaj_, _смер, şier,\n  { {0x3a250038, 0xe3bf008e, 0x79b600b3, 0x00000000}},  //   _help_, gaño_, _גלעד_,\n  { {0x2905011c, 0x2007013e, 0x00000000, 0x00000000}},  //   _hula_, ěnil_,   ,\n  { {0x29050020, 0x2d7304eb, 0x2ebf0309, 0x00000000}},  //   _kula_, _oće_, ्वोत,\n  { {0x2905003b, 0xe3bf008e, 0x00000000, 0x00000000}},  //   _jula_, baño_,   ,\n  { {0x629c0039, 0x29051312, 0xa067132e, 0x00000000}},  //   skro, _mula_, ласа_,\n  { {0x29050181, 0xc0e30b52, 0x3fe60999, 0x00000000}},  // [4fe0] _lula_, сотк, ужав,\n  { {0xa3c3006e, 0x98a7013e, 0x11d60379, 0x00000000}},  //   ्थर_, trně_, _متجد,\n  { {0x2176008b, 0x88bc0224, 0x2ca620b3, 0x00000000}},  //   _супр, _květ, thod_,\n  { {0x6446020c, 0x673b185c, 0xb5fa0049, 0x00000000}},  //   ngki, kruj, גלעכ,\n  { {0x290509f7, 0x60c400ca, 0x6ab820b4, 0x00000000}},  //   _aula_, mnim, tivf,\n  { {0x78a20c30, 0xaa5820b5, 0x60c40059, 0x00000000}},  //   _slov, тику_, lnim,\n  { {0x2905037e, 0x24800091, 0xa01b01c3, 0x00000000}},  //   _cula_, _onim_, _koöp,\n  { {0x4734025f, 0x60c40051, 0x2905011c, 0x00000000}},  //   анис, nnim, _dula_,\n  { {0x7c930054, 0xec13026c, 0x86261280, 0x00000000}},  //   _القص, _چوہد, льне,\n  { {0x2480011c, 0x290500f8, 0x23690022, 0x00000000}},  //   _anim_, _fula_, _rsaj_,\n  { {0x290504cb, 0x60c401e5, 0xe3bf008e, 0x00000000}},  //   _gula_, knim, taño_,\n  { {0x60c41e8d, 0x13f50088, 0x78a220b6, 0x00000000}},  //   jnim, изня, _ulov,\n  { {0x60c40627, 0x3a250133, 0x2480012d, 0x00000000}},  //   dnim, _yelp_, _dnim_,\n  { {0x236901d9, 0xc6270044, 0x24801553, 0x00000000}},  //   _vsaj_, _মাথা_, _enim_,\n  { {0x6eeb0fb5, 0x81dd0044, 0x30eb00aa, 0x00000000}},  //   nübe, তেন_, ефан_,\n  { {0x60c420b7, 0x301500ed, 0x00000000, 0x00000000}},  //   gnim, рдар,   ,\n  { {0x442b037e, 0x6d5c20b8, 0xe4500a4f, 0x00000000}},  // [4ff0] mac_, _apra, _رضي_,\n  { {0x32550822, 0x442b037e, 0x88bc00b9, 0x00000000}},  //   _твор, lac_, _zvět,\n  { {0x60c40059, 0x7cd900a1, 0x00000000, 0x00000000}},  //   bnim, نڈرز_,   ,\n  { {0x442b0119, 0x60c410c1, 0xb19a009b, 0x00000000}},  //   nac_, cnim, _ייתכ,\n  { {0x29050051, 0xcb69003b, 0x765801ca, 0x00000000}},  //   _sula_, тале_, _obvy,\n  { {0x2905027e, 0xeb96005e, 0x7c2d01e5, 0x00000000}},  //   _pula_, риш_, ðarb,\n  { {0x0dc801fb, 0xe509001d, 0xa2d6007d, 0x00000000}},  //   _бути_, _mặc_, णवत्,\n  { {0x38ba0dec, 0x442b0213, 0x673b09b6, 0x00000000}},  //   tūra_, jac_, truj,\n  { {0x8b5806dd, 0x6d5c0224, 0x7c2b01f4, 0x00000000}},  //   _مجلس_, _zpra, magr,\n  { {0x88bc0224, 0x2905006a, 0x60c40059, 0x00000000}},  //   _svět, _tula_, znim,\n  { {0x442b0035, 0xda7a009b, 0xd5e50088, 0x00000000}},  //   fac_, _שנער, ржни,\n  { {0x7c2b0036, 0x442b14da, 0x6e2701f3, 0x00000000}},  //   nagr, gac_, _lejb,\n  { {0x60c40059, 0x87e70827, 0x2480012d, 0x00000000}},  //   vnim, _сюже, _vnim_,\n  { {0x6e2700b9, 0x7ea0014a, 0x442b0045, 0x00000000}},  //   _nejb, _röpo, aac_,\n  { {0x60c40627, 0x442b0091, 0x6f060036, 0x00000000}},  //   tnim, bac_, _sukc,\n  { {0x442b001c, 0x8066025f, 0x7c2b20b9, 0x00000000}},  //   cac_, јваж, jagr,\n\n  { {0xb4c40183, 0xa0670113, 0x6d5c1fa6, 0x00000000}},  // [5000] ्वी_, шата_, _spra,\n  { {0x2d9a0056, 0x60c4006c, 0x7d070023, 0x00000000}},  //   type_, snim, _bujs,\n  { {0x3eba0365, 0x69da0061, 0x60c400ca, 0x00000000}},  //   ript_, _पुढी, pnim,\n  { {0xeb9a0057, 0x7d090119, 0x6d5c0059, 0x00000000}},  //   кие_, _čest, _vpra,\n  { {0x7e6e0009, 0x78bb0197, 0x6d5c00b4, 0x00000000}},  //   _tabp, diuv, _wpra,\n  { {0x442b08c5, 0x3d280014, 0x6e270087, 0x00000000}},  //   zac_, _متری_, _gejb,\n  { {0x6d5c07ac, 0x67220046, 0x81d80055, 0x00000000}},  //   _upra, _swoj, ়ের_,\n  { {0x8c430200, 0x67220263, 0x6eeb010f, 0x00000000}},  //   _месе, _pwoj, rübe,\n  { {0x442b0119, 0xcb670256, 0x6eeb01a2, 0x00000000}},  //   vac_, _кате_, sübe,\n  { {0xf70800ad, 0x442b0036, 0x7d0000ab, 0x00000000}},  //   _của_, wac_, _hims,\n  { {0x442b006b, 0x7d0020ba, 0xe5c6004d, 0x00000000}},  //   tac_, _kims, рспо,\n  { {0x67220046, 0x78a90197, 0x08fa0188, 0x00000000}},  //   _twoj, chev, _شراب_,\n  { {0x442b0119, 0xbf9b0181, 0x20070036, 0x00000000}},  //   rac_, _agên, śnik_,\n  { {0x7c2b1827, 0x395e0093, 0x442b08c5, 0x00000000}},  //   zagr, _kpts_, sac_,\n  { {0x45440084, 0xddce0089, 0x6440008e, 0x00000000}},  //   _انعق, _dabū, ómic,\n  { {0xd251007a, 0xd5fb00b6, 0x8d870123, 0x00000000}},  //   _کند_, _בפור, یشان,\n  { {0xe5090082, 0x9e070545, 0x7c2b007f, 0x00000000}},  // [5010] _tặc_, ачел, vagr,\n  { {0x7d00002a, 0x44290004, 0x4fc40ee0, 0x00000000}},  //   _aims, _hea_, іста,\n  { {0x5d55005e, 0x442920bb, 0x6e2707c4, 0x00000000}},  //   скет, _kea_, _vejb,\n  { {0x442912e0, 0x321100b4, 0x00000000, 0x00000000}},  //   _jea_, lczy_,   ,\n  { {0xa3dd03d7, 0x4429000d, 0x395e0319, 0x00000000}},  //   _तुम_, _mea_, _apts_,\n  { {0x442904f8, 0x3e5700b9, 0x6e350521, 0x00000000}},  //   _lea_, _dětí_, _udzb,\n  { {0x442901aa, 0xec6b0893, 0x78a90065, 0x00000000}},  //   _oea_, _ирак_, thev,\n  { {0xc31d0055, 0x6d45011c, 0xb7bd000d, 0x00000000}},  //   _তিনি_, muha, laţi,\n  { {0x6d4520bc, 0x7c2900e0, 0x78a920bd, 0x00000000}},  //   luha, _ieer, rhev,\n  { {0x7d0000ee, 0x7c2901b5, 0x78a90065, 0x00000000}},  //   _zims, _heer, shev,\n  { {0x442904f5, 0x7c29006c, 0x6d4520be, 0x00000000}},  //   _bea_, _keer, nuha,\n  { {0x4429000d, 0x443e010f, 0x7c290e4e, 0x00000000}},  //   _cea_, ßt_, _jeer,\n  { {0x7c2920bf, 0x4429094e, 0x6d450058, 0x00000000}},  //   _meer, _dea_, huha,\n  { {0x7c290100, 0xb7bd0035, 0x00000000, 0x00000000}},  //   _leer, jaţi,   ,\n  { {0x91e6051f, 0x4429008e, 0x6d45006c, 0x00000000}},  //   сове, _fea_, juha,\n  { {0x7c2900c7, 0x644d0051, 0x3eb8018b, 0x00000000}},  //   _neer, _gcai, _smrt_,\n  { {0x7d000213, 0x7f4a0025, 0x4fea003b, 0x00000000}},  // [5020] _rims, طلاق_, уман_,\n  { {0x7d000089, 0xb7bd001a, 0x44290032, 0x00000000}},  //   _sims, gaţi, _zea_,\n  { {0x6d4509f3, 0x69150066, 0x2b5f0035, 0x00000000}},  //   guha, _jġed, _apuc_,\n  { {0x30860025, 0x69150066, 0x14d80061, 0x00000000}},  //   _الحف, _mġed, ठविण,\n  { {0x7c2901d6, 0x7c2d000c, 0x00000000, 0x00000000}},  //   _deer, ðara,   ,\n  { {0xb7bd000d, 0x6d4520c0, 0x427a0049, 0x00000000}},  //   caţi, buha, ראַג,\n  { {0xfce602b8, 0x7c2906c5, 0x6d450022, 0x00000000}},  //   _гово, _feer, cuha,\n  { {0x7c290dda, 0x3ae90051, 0x26dc016c, 0x00000000}},  //   _geer, rúpa_, _skvo_,\n  { {0x4429119c, 0x4fbb0049, 0x4c35007e, 0x00000000}},  //   _rea_, ָציא, _фэст,\n  { {0xed4f009c, 0x44290781, 0x644d0051, 0x00000000}},  //   _تھے_, _sea_, _scai,\n  { {0x44290004, 0x2fc70082, 0x6aa8068f, 0x00000000}},  //   _pea_, ̃ng_, _ildf,\n  { {0xf1c00011, 0xb7bd001a, 0x23600022, 0x00000000}},  //   _ương_, zaţi, _bpij_,\n  { {0x442920c1, 0xc6270044, 0x6d451b8a, 0x00000000}},  //   _vea_, _মারা_, zuha,\n  { {0x46f6007c, 0x4429008e, 0x6d45011c, 0x00000000}},  //   _учет, _wea_, yuha,\n  { {0x5184005c, 0x30a70265, 0x32110036, 0x00000000}},  //   пута, брав, rczy_,\n  { {0xfd4d001d, 0x442900d4, 0xddc70142, 0x00000000}},  //   _thoạ, _uea_, _najš,\n  { {0xb7bd001a, 0x59df0309, 0x9f8a010f, 0x00000000}},  // [5030] taţi, _पुनर, röße_,\n  { {0x6d450390, 0x7c29109a, 0x2fc7001d, 0x00000000}},  //   tuha, _seer, ăng_,\n  { {0x6285049b, 0xb7bd000d, 0xe5090082, 0x00000000}},  //   _inho, raţi, _lặn_,\n  { {0x6d45027e, 0xa3bd006e, 0x6aa800d9, 0x00000000}},  //   ruha, _आधा_, _aldf,\n  { {0x7c29017b, 0x2aab0030, 0x6d45027c, 0x00000000}},  //   _veer, _løbe_, suha,\n  { {0x7c29049b, 0xbdfb00a1, 0xab64007e, 0x00000000}},  //   _weer, _مرزا_, явіл,\n  { {0x9d18005e, 0x62970288, 0xb05b00f8, 0x00000000}},  //   _гост_, _moxo, _djäv,\n  { {0x98bc0089, 0xddc70087, 0x00000000, 0x00000000}},  //   tuvā_, _gajš,   ,\n  { {0xdddc011f, 0x628501d6, 0xe5090082, 0x00000000}},  //   _karş, _onho, _cặn_,\n  { {0xe5090082, 0x628500ea, 0x00000000, 0x00000000}},  //   _dặn_, _nnho,   ,\n  { {0xaca30011, 0xdddc0279, 0x00000000, 0x00000000}},  //   _chủn, _marş,   ,\n  { {0x2b400027, 0x62850030, 0x394709f7, 0x00000000}},  //   šice_, _anho, muns_,\n  { {0x394700f6, 0x62970253, 0x00000000, 0x00000000}},  //   luns_, _boxo,   ,\n  { {0xe5a503f3, 0xe0df01aa, 0x629700fa, 0x00000000}},  //   _мили, _akò_, _coxo,\n  { {0x4096026b, 0xc616009b, 0x00000000, 0x00000000}},  //   орат, _וחצי_,   ,\n  { {0xd0070001, 0x62850b32, 0x6ab6007d, 0x00000000}},  //   жете_, _enho, _अग्र,\n  { {0xddc700ca, 0xdd0100b9, 0x00000000, 0x00000000}},  // [5040] _rajš, štěs,   ,\n  { {0x62970032, 0x539b0097, 0x7ea000f8, 0x00000000}},  //   _goxo, _כיפו, _köpi,\n  { {0x39470035, 0xa01b04ce, 0x00000000, 0x00000000}},  //   juns_, _knöl,   ,\n  { {0x23770167, 0x44220085, 0x1cba0025, 0x00000000}},  //   _امید_, nbk_, جائب_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x5f27004c, 0x629720c2, 0xbab7007e, 0x00000000}},  //   _форм_, _xoxo, огіх_,\n  { {0xa2cd0201, 0x39470ca7, 0xdca6003b, 0x00000000}},  //   _सदस्, guns_, _дави,\n  { {0x7cf101bf, 0x29020039, 0xbc6308d6, 0x00000000}},  //   gård, öka_, _овск,\n  { {0xdb240167, 0xb86600a1, 0xe666007c, 0x00000000}},  //   _روای, ماکو, отно,\n  { {0x7c220018, 0x39470181, 0xb50b0164, 0x00000000}},  //   lbor, buns_, _संशय_,\n  { {0x394720c3, 0x291a01ca, 0x00000000, 0x00000000}},  //   cuns_, ípad_,   ,\n  { {0x7c22022b, 0x1b1d0055, 0x8afd013e, 0x00000000}},  //   nbor, _নিতে_, _vpře,\n  { {0x04b800a1, 0x290c00ca, 0x7c2201c3, 0x00000000}},  //   تھوں_, _huda_, ibor,\n  { {0x290c04cb, 0xaca30082, 0xc1a702ea, 0x00000000}},  //   _kuda_, _thủn, ојби,\n  { {0x290c11de, 0x7c2200b5, 0x8afd00b9, 0x00000000}},  //   _juda_, kbor, _upře,\n  { {0x290c0d92, 0x1f15007e, 0x213e20c4, 0x00000000}},  //   _muda_, змаў, átha_,\n  { {0x9f5902cc, 0x7c220039, 0x290c0166, 0x00000000}},  // [5050] _også_, dbor, _luda_,\n  { {0xdddc005f, 0x51870121, 0xf3ff00c4, 0x00000000}},  //   _qarş, _дума, leão_,\n  { {0x7af8001c, 0x802701b7, 0xbc190451, 0x00000000}},  //   dmvt, _ورحم, білі_,\n  { {0x7c220145, 0x3ce600ca, 0xfe1b007d, 0x00000000}},  //   gbor, glov_, _प्रस_,\n  { {0x7cf10039, 0x443b00d9, 0x290c20c5, 0x00000000}},  //   vård, _mdq_, _auda_,\n  { {0x290c0095, 0xfbd00879, 0x8f9a0104, 0x00000000}},  //   _buda_, ختم_, _הישי,\n  { {0x81dd0055, 0x7c220c0d, 0x290c1547, 0x00000000}},  //   তের_, bbor, _cuda_,\n  { {0x290c0211, 0x39470181, 0x81d80044, 0x00000000}},  //   _duda_, runs_, ়েক_,\n  { {0x7c3b20c6, 0x00000000, 0x00000000, 0x00000000}},  //   _idur,   ,   ,\n  { {0x443b00f6, 0xca740025, 0x7545004d, 0x00000000}},  //   _adq_, _يالغ, пноз,\n  { {0x6d57002d, 0x290c0032, 0x44220032, 0x00000000}},  //   ntxa, _guda_, tbk_,\n  { {0x895a00b3, 0x7c3b0066, 0x00000000, 0x00000000}},  //   _לדעת, _jdur,   ,\n  { {0xb4ac0061, 0x4422007f, 0x00000000, 0x00000000}},  //   _गती_, rbk_,   ,\n  { {0xb77a009b, 0x290c0557, 0x7c220091, 0x00000000}},  //   _לאנש, _yuda_, zbor,\n  { {0xd179103e, 0x64a60920, 0x703a0057, 0x00000000}},  //   ості_, _нака, йчас_,\n  { {0x7c2d000c, 0x7c22098e, 0x7c3b01d1, 0x00000000}},  //   ðarl, xbor, _ndur,\n  { {0x60c101aa, 0x7c2220c7, 0x9f58006b, 0x00000000}},  // [5060] èlma, vbor, _özüm_,\n  { {0x7c3b11a8, 0xee3a007e, 0x7c220133, 0x00000000}},  //   _adur, ёне_, wbor,\n  { {0x929b00b6, 0xe29b009b, 0x7c220fcf, 0x00000000}},  //   _היית, _השיר, tbor,\n  { {0x2fcd016c, 0x290c00b4, 0xdcb90088, 0x00000000}},  //   _žege_, _ruda_, ощі_,\n  { {0x3ce6032e, 0x200700b9, 0x752f0036, 0x00000000}},  //   rlov_, ěnit_, ączy,\n  { {0x7c2200eb, 0x3ce601d9, 0x7c3b0032, 0x00000000}},  //   sbor, slov_, _edur,\n  { {0x3ce601ed, 0xe5090082, 0x00000000, 0x00000000}},  //   plov_, _bặm_,   ,\n  { {0x6e2e02ae, 0xb05b0039, 0x7e7520c8, 0x00000000}},  //   _hebb, _hjär, _zazp,\n  { {0xd6da0265, 0x7f440181, 0xbb430954, 0x00000000}},  //   йто_, nriq, _петк,\n  { {0x7cf10030, 0x953800e2, 0x00000000, 0x00000000}},  //   råre, озот_,   ,\n  { {0x94d51618, 0xe6d9000c, 0x2bc00061, 0x00000000}},  //   донц, þráð, _शेता,\n  { {0x8ec40044, 0x443b0b32, 0xe5090082, 0x00000000}},  //   ্তিগ, _qdq_, _gặm_,\n  { {0x8387007e, 0xd7e30088, 0xe45f0010, 0x00000000}},  //   чыне, _пішо, lnök_,\n  { {0x27e6006a, 0x6e2e1d1d, 0x7f4420c9, 0x00000000}},  //   _iyon_, _nebb, driq,\n  { {0x26de0020, 0x7e7501d9, 0xe81301f5, 0x00000000}},  //   moto_, _razp, णुका_,\n  { {0x61e5004f, 0x26de029d, 0xc7b90010, 0x00000000}},  //   _vyhl, loto_, kből_,\n  { {0xb4d9013d, 0xc43c009b, 0x7c2d000c, 0x00000000}},  // [5070] ़की_, _התחי, ðarm,\n  { {0x26de0089, 0xc3320049, 0x61e5013e, 0x00000000}},  //   noto_, _שוי_, _tyhl,\n  { {0x6e2e0a19, 0x27e600f4, 0x26cc0181, 0x00000000}},  //   _debb, _lyon_, indo_,\n  { {0x26de01ca, 0x7f4400f4, 0x6d57002d, 0x00000000}},  //   hoto_, briq, rtxa,\n  { {0x6e2e0198, 0xb05b0039, 0x60cd006b, 0x00000000}},  //   _febb, _fjär, mnam,\n  { {0xe9a90014, 0x68e20173, 0xfe710123, 0x00000000}},  //   يگان_, _akod, _جگر_,\n  { {0x27e6006a, 0xac190245, 0x26de01c5, 0x00000000}},  //   _ayon_, _мову_, doto_,\n  { {0x60cd006c, 0x26cc20ca, 0x645d00b5, 0x00000000}},  //   nnam, endo_, jfsi,\n  { {0x60cd0181, 0x26de0142, 0xa806004a, 0x00000000}},  //   inam, foto_, _riñó,\n  { {0x6f0f0197, 0x26de00c4, 0x248920cb, 0x00000000}},  //   _mucc, goto_, _anam_,\n  { {0x044603c8, 0x6f0f0207, 0x60cd00f8, 0x00000000}},  //   менн, _lucc, knam,\n  { {0x26cc20cc, 0x98bc0006, 0x89340025, 0x00000000}},  //   ando_, tuvą_, _أعلا,\n  { {0x7ea00039, 0x26de0059, 0x68e901e3, 0x00000000}},  //   _köpt, boto_, mled,\n  { {0x65c50264, 0x68e90018, 0x248920cd, 0x00000000}},  //   _обла, lled, _enam_,\n  { {0x91e301fb, 0x81e60055, 0x2cad0004, 0x00000000}},  //   воре, বেন_, _oled_,\n  { {0x60cd0207, 0x6f0f0026, 0x6e2e0197, 0x00000000}},  //   gnam, _bucc, _sebb,\n  { {0x7d0e20ce, 0x6f0f0ef1, 0x7d1c20cf, 0x00000000}},  // [5080] _subs, _cucc, _strs,\n  { {0x248901cd, 0x68e90224, 0x81dd0055, 0x00000000}},  //   _znam_, hled, তেই_,\n  { {0xd00a02e9, 0x602620d0, 0x2cad0059, 0x00000000}},  //   _мене_, _одна, _bled_,\n  { {0x6e2e0007, 0x68e90018, 0x6e3c0061, 0x00000000}},  //   _webb, jled, _wdrb,\n  { {0x68e90ee6, 0xeb9700ed, 0x26de004a, 0x00000000}},  //   dled, миц_, yoto_,\n  { {0x6d43002a, 0x68e20142, 0x26de00c4, 0x00000000}},  //   ánac, _skod, xoto_,\n  { {0xde0309ae, 0x6d45018e, 0x6f0f0207, 0x00000000}},  //   _апри, crha, _zucc,\n  { {0x68e90119, 0xa7740242, 0x88bc00b9, 0x00000000}},  //   gled, елич, _hvěz,\n  { {0x26de20d1, 0x9646007e, 0x00000000, 0x00000000}},  //   toto_, мэнд,   ,\n  { {0x60cd0387, 0xd6d90036, 0x26cc00fa, 0x00000000}},  //   znam, kułu_, undo_,\n  { {0x68e907b5, 0x26de061c, 0x60cd00b4, 0x00000000}},  //   bled, roto_, ynam,\n  { {0x68e91014, 0x26de00fa, 0x3f82000c, 0x00000000}},  //   cled, soto_, _orku_,\n  { {0x2508026c, 0x26de00ca, 0x60cd013e, 0x00000000}},  //   _کرتی_, poto_, vnam,\n  { {0x45d420d2, 0x60cd20d3, 0x00000000, 0x00000000}},  //   _полс, wnam,   ,\n  { {0x60cd001d, 0x6f0f051b, 0x7c2d000c, 0x00000000}},  //   tnam, _succ, ðark,\n  { {0x6f0f0197, 0x2489008e, 0x60cd007f, 0x00000000}},  //   _pucc, _unam_, unam,\n  { {0x2bde0204, 0xa3c2007d, 0xbfab007e, 0x00000000}},  // [5090] _फुला, ्पण_, цтве_,\n  { {0x60cd20d4, 0x2cad1958, 0xf09f0082, 0x00000000}},  //   snam, _sled_, _giàn_,\n  { {0x40350088, 0x60cd046a, 0x68e920d5, 0x00000000}},  //   _пенс, pnam, yled,\n  { {0x3f820107, 0x6f0f0026, 0x20c50089, 0x00000000}},  //   _frku_, _tucc, rķis_,\n  { {0x68e9177a, 0x00000000, 0x00000000, 0x00000000}},  //   vled,   ,   ,\n  { {0x68e900ab, 0xfaa702d3, 0xef1f014a, 0x00000000}},  //   wled, ьшен, _itü_,\n  { {0x68e9006c, 0x00000000, 0x00000000, 0x00000000}},  //   tled,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x68e90168, 0x68fb04cb, 0x291e20d6, 0x00000000}},  //   rled, rmud, _etta_,\n  { {0x68e90428, 0x7d0920d7, 0xef1f006c, 0x00000000}},  //   sled, _hies, _mtü_,\n  { {0x7d0900b5, 0x68e90190, 0x7ea0138d, 0x00000000}},  //   _kies, pled, _köpr,\n  { {0x7c2d000c, 0x00000000, 0x00000000, 0x00000000}},  //   ðarh,   ,   ,\n  { {0x7d0920d8, 0x386d0168, 0x850b006e, 0x00000000}},  //   _mies, meer_, _संकट_,\n  { {0x386d00c7, 0x78a920d9, 0xd6d90036, 0x00000000}},  //   leer_, lkev, tułu_,\n  { {0x60c401b1, 0x00000000, 0x00000000, 0x00000000}},  //   tiim,   ,   ,\n  { {0xef1a013b, 0x7d091551, 0x78a90995, 0x00000000}},  //   зма_, _nies, nkev,\n  { {0x64560061, 0xff2400a1, 0x60c401b1, 0x00000000}},  // [50a0] _icyi, ئبری, riim,\n  { {0x386d01b5, 0x60c40006, 0x3fe317b9, 0x00000000}},  //   heer_, siim, ужув,\n  { {0x443200ab, 0x386d20da, 0x8c46142c, 0x00000000}},  //   _key_, keer_, ееее,\n  { {0x7d090871, 0x26c50058, 0xfb1900a1, 0x00000000}},  //   _cies, hilo_, ڈروں_,\n  { {0x7d0908ba, 0x386d0007, 0x629e1892, 0x00000000}},  //   _dies, deer_, _kopo,\n  { {0x44320211, 0xc33300b6, 0x2b460129, 0x00000000}},  //   _ley_, רוג_, rroc_,\n  { {0x7d090211, 0x26c50340, 0x386d123c, 0x00000000}},  //   _fies, dilo_, feer_,\n  { {0x386d01b5, 0xa3c20164, 0x7d090171, 0x00000000}},  //   geer_, ्पा_, _gies,\n  { {0x26c50198, 0x68e000f8, 0xc6f8019d, 0x00000000}},  //   filo_, romd, мних_,\n  { {0xc6f70eb1, 0x0f57009b, 0x26c520db, 0x00000000}},  //   нных_, עיים_, gilo_,\n  { {0xceb3019b, 0x386d06b2, 0x4432014a, 0x00000000}},  //   רית_, beer_, _bey_,\n  { {0x38ba0089, 0x78a9007f, 0x386d00bb, 0x00000000}},  //   tūru_, ckev, ceer_,\n  { {0xdcf50046, 0x7c2d000c, 0x46a6007e, 0x00000000}},  //   _urzą, ðari, _падв,\n  { {0x629e0adb, 0x26c5041a, 0xda1002f4, 0x00000000}},  //   _copo, cilo_, ाशित_,\n  { {0x629e07e4, 0x44320173, 0xd5af017f, 0x00000000}},  //   _dopo, _fey_, _сс_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7d090555, 0x84640265, 0x8c3d014a, 0x00000000}},  // [50b0] _ries, _съще, _hoşg,\n  { {0x752d0036, 0x386d00bb, 0x00000000, 0x00000000}},  //   _łazi, zeer_,   ,\n  { {0x7d0920dc, 0x443200e0, 0x56370049, 0x00000000}},  //   _pies, _yey_, גאבע_,\n  { {0x38b10010, 0xef1f010e, 0x7d090066, 0x00000000}},  //   _márc_, _ttü_, _qies,\n  { {0x7d0920dd, 0x386d01b5, 0x7e2b007e, 0x00000000}},  //   _vies, veer_, _ніва_,\n  { {0x7d0920de, 0xf09f0011, 0x386d00c7, 0x00000000}},  //   _wies, _hoà_, weer_,\n  { {0x7d090ebc, 0x26c501d9, 0x386d01bb, 0x00000000}},  //   _ties, vilo_, teer_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x386d0343, 0x44320211, 0x78a920df, 0x00000000}},  //   reer_, _rey_, rkev,\n  { {0x386d0944, 0x78a900b0, 0x443220e0, 0x00000000}},  //   seer_, skev, _sey_,\n  { {0x26c50027, 0x386d01d6, 0x443217cf, 0x00000000}},  //   rilo_, peer_, _pey_,\n  { {0x26c520e1, 0x7ae303e2, 0x629e0211, 0x00000000}},  //   silo_, lont, _sopo,\n  { {0xcc3a007b, 0x26c50466, 0x69dc0190, 0x00000000}},  //   וערט, pilo_, _ører,\n  { {0x7ae301a3, 0x7cf8008e, 0x63a607c4, 0x00000000}},  //   nont, míre, rykn,\n  { {0x2056008b, 0x91e6005e, 0xc7b90010, 0x00000000}},  //   ктар, тове, lző_,\n  { {0x205506e1, 0xe3b200a2, 0x7ae30023, 0x00000000}},  //   лтур, _نرخ_, hont,\n  { {0x7ae30292, 0x629e0027, 0xb22600ed, 0x00000000}},  // [50c0] kont, _topo, _импл,\n  { {0x3f8005ea, 0xd0f40061, 0x7ae30065, 0x00000000}},  //   rviu_, _आठवण_, jont,\n  { {0x7ae30110, 0xf09f0026, 0xdb08000c, 0x00000000}},  //   dont, _foà_, _ólét,\n  { {0x673b00b0, 0xdd8f0f8b, 0x00000000, 0x00000000}},  //   ksuj, توم_,   ,\n  { {0x7ae30007, 0x7cf8013e, 0xdca30545, 0x00000000}},  //   font, jíre, јачи,\n  { {0x7ae320e2, 0x81dd0044, 0xda6316e8, 0x00000000}},  //   gont, তেও_, ивчи,\n  { {0xa96701fc, 0x987d006b, 0x00000000, 0x00000000}},  //   вија_, _açıb_,   ,\n  { {0x7e7c022b, 0xdca302dc, 0xd90d0014, 0x00000000}},  //   _harp, _каси, سیه_,\n  { {0xb50c007d, 0x7ae30010, 0x6d5e20e3, 0x00000000}},  //   _संजय_, bont, ltpa,\n  { {0x7ae320e4, 0xa3e60164, 0x41db013d, 0x00000000}},  //   cont, _बुध_, _मुझस,\n  { {0x6d5e0061, 0x7e7c013e, 0x6b82101b, 0x00000000}},  //   ntpa, _marp, lvog,\n  { {0x249f009f, 0x69da002d, 0xd5b80089, 0x00000000}},  //   ðum_, _ixte, rzā_,\n  { {0x6b8220e5, 0x6d5e015b, 0x00000000, 0x00000000}},  //   nvog, htpa,   ,\n  { {0x63a000f8, 0x2d85012d, 0x00000000, 0x00000000}},  //   ämna, _šlem_,   ,\n  { {0x623420e6, 0xf1a4007e, 0x6d5c01f3, 0x00000000}},  //   ресу, артн, _nqra,\n  { {0x7ae30181, 0x5455013b, 0x6d5e0109, 0x00000000}},  //   zont, _свит, dtpa,\n  { {0x44390736, 0x7e7c0146, 0x6d5e01d6, 0x00000000}},  // [50d0] mas_, _barp, etpa,\n  { {0x717920e7, 0x7e7c20e8, 0x6d5e06d3, 0x00000000}},  //   _збор_, _carp, ftpa,\n  { {0x7e7c018e, 0xf09f0011, 0x7ae30ae4, 0x00000000}},  //   _darp, _toà_, vont,\n  { {0xac1901a4, 0x7ae30173, 0x7afa00f6, 0x00000000}},  //   ходу_, wont, _ahtt,\n  { {0x7ae30efc, 0x44390181, 0x6d5e00d9, 0x00000000}},  //   tont, ias_, atpa,\n  { {0xeb9003ab, 0xddce0010, 0x7e7c20e9, 0x00000000}},  //   تظم_, _ebbő, _garp,\n  { {0x443920ea, 0x7ae30207, 0xdd94008b, 0x00000000}},  //   kas_, ront, _кары,\n  { {0x44390580, 0x48d10055, 0x7ae320eb, 0x00000000}},  //   jas_, াত্র, sont,\n  { {0x44390576, 0xe50a001d, 0x7ae320ec, 0x00000000}},  //   das_, _mặt_, pont,\n  { {0xc7b90010, 0x1ab700e8, 0xaab7007d, 0x00000000}},  //   rző_, _अतिथ, _अतिक,\n  { {0x64a601a4, 0xe45f00b0, 0x00000000, 0x00000000}},  //   гана, riön_,   ,\n  { {0xb4de0204, 0x0446007e, 0xa90702fd, 0x00000000}},  //   तके_, ыемн, _شبان,\n  { {0x889a061e, 0xf745026b, 0x387f20ed, 0x00000000}},  //   _רבני, _село, mdur_,\n  { {0x387f009f, 0x6e3501ca, 0x386620ee, 0x00000000}},  //   ldur_, _nezb, _zbor_,\n  { {0x44391e86, 0xa06a01f9, 0x6aa10eba, 0x00000000}},  //   bas_, нава_, _molf,\n  { {0x44390df9, 0x387f20ef, 0x7e7c20f0, 0x00000000}},  //   cas_, ndur_, _sarp,\n  { {0x6e35037e, 0x0e660517, 0xa4fb00b6, 0x00000000}},  // [50e0] _bezb, лкан, _אלקט,\n  { {0x387d0016, 0x6aa100f6, 0x4256004d, 0x00000000}},  //   _lawr_, _nolf, _стит,\n  { {0x6e35001a, 0x7e7c0d96, 0x16360049, 0x00000000}},  //   _dezb, _varp, רנער_,\n  { {0x6d5e00b5, 0x387d0016, 0x6b8220f1, 0x00000000}},  //   rtpa, _nawr_, tvog,\n  { {0x7e7c1082, 0xfaa60245, 0x6d5e0056, 0x00000000}},  //   _tarp, ладо, stpa,\n  { {0x4439082b, 0x6b8206ce, 0x44200ba5, 0x00000000}},  //   zas_, rvog, _lfi_,\n  { {0x81e60055, 0x44391433, 0x44200173, 0x00000000}},  //   বের_, yas_, _ofi_,\n  { {0xfce60f13, 0xa9670025, 0x443914dc, 0x00000000}},  //   _собо, اميم_, xas_,\n  { {0x4439081d, 0x7d0213d7, 0x00000000, 0x00000000}},  //   vas_, mmos,   ,\n  { {0x4439001f, 0x4420000c, 0xba1a0025, 0x00000000}},  //   was_, _afi_, _أيضا_,\n  { {0xa92620f2, 0x387d018e, 0x8b0300b9, 0x00000000}},  //   _сдел, _fawr_, ířen,\n  { {0xd5b70b87, 0x6f0e00d2, 0x6aa10026, 0x00000000}},  //   усь_, _libc, _zolf,\n  { {0x44200146, 0x442b0087, 0x00000000, 0x00000000}},  //   _dfi_, rbc_,   ,\n  { {0x78a2006c, 0x44200145, 0x8c3d006b, 0x00000000}},  //   _hoov, _efi_, _xoşb,\n  { {0x443920f3, 0x2b400161, 0x44200016, 0x00000000}},  //   pas_, šich_, _ffi_,\n  { {0x443901d5, 0xd468012b, 0x30a400ed, 0x00000000}},  //   qas_, _биће_, брув,\n  { {0xe50a001d, 0x611c0059, 0x81e60044, 0x00000000}},  // [50f0] _vặt_, _včla, বেল_,\n  { {0xd2510123, 0x78a2006c, 0x387f0276, 0x00000000}},  //   _بند_, _loov, zdur_,\n  { {0xd0111298, 0x2d8720f4, 0x6aa100ea, 0x00000000}},  //   _ولد_, íne_, _rolf,\n  { {0x387f005f, 0x6aa120f5, 0x78a20087, 0x00000000}},  //   xdur_, _solf, _noov,\n  { {0x2d9c01e3, 0x6aa100ca, 0x00000000, 0x00000000}},  //   øver_, _polf,   ,\n  { {0x7d020205, 0x00000000, 0x00000000, 0x00000000}},  //   amos,   ,   ,\n  { {0x9ed800ed, 0x7c2d000c, 0x59df01f5, 0x00000000}},  //   _смрт_, ðars, _पुखर,\n  { {0x6aa1010f, 0x00000000, 0x00000000, 0x00000000}},  //   _wolf,   ,   ,\n  { {0x387f20f6, 0x4420009d, 0x78a2012d, 0x00000000}},  //   rdur_, _rfi_, _doov,\n  { {0x46f500ec, 0x442000f8, 0xb05b0039, 0x00000000}},  //   јчит, _sfi_, _smäl,\n  { {0x996201ca, 0x44200675, 0x00000000, 0x00000000}},  //   píše_, _pfi_,   ,\n  { {0x385803ec, 0x6b8900b5, 0x00000000, 0x00000000}},  //   _مشهد_, _kreg,   ,\n  { {0xa3e6007d, 0x76430022, 0x00000000, 0x00000000}},  //   _बुश_, _tdny,   ,\n  { {0x76430030, 0x290f0058, 0x7d021431, 0x00000000}},  //   _udny, _higa_, zmos,\n  { {0x7d02007f, 0x6f0e0087, 0xe2970269, 0x00000000}},  //   ymos, _ribc, шар_,\n  { {0xdd2f00b9, 0x6b8909dd, 0x7f4d00c4, 0x00000000}},  //   _běžn, _oreg, fraq,\n  { {0x1fa71c9b, 0xaec6007e, 0x290f1c2e, 0x00000000}},  // [5100] акти_, абал, _miga_,\n  { {0x2480025e, 0x00000000, 0x00000000, 0x00000000}},  //   _haim_,   ,   ,\n  { {0x6b891163, 0xed5a0783, 0x290f004a, 0x00000000}},  //   _areg, тое_, _oiga_,\n  { {0x6b8920f7, 0xab2a0175, 0xb4c4001c, 0x00000000}},  //   _breg, вода_, _एगो_,\n  { {0x6b89063e, 0x7d020781, 0x1be70478, 0x00000000}},  //   _creg, rmos, адци_,\n  { {0x78a20004, 0x7d0206aa, 0x6b89000c, 0x00000000}},  //   _soov, smos, _dreg,\n  { {0x8c96008b, 0x7d0220f8, 0x2245000c, 0x00000000}},  //   _краі, pmos, ólki_,\n  { {0x6b890a15, 0x7afd0089, 0x24800f7c, 0x00000000}},  //   _freg, _īste, _naim_,\n  { {0x290f00d6, 0x7c2d0e65, 0x00000000, 0x00000000}},  //   _diga_, ñare,   ,\n  { {0x290f0635, 0x1b1d0044, 0x27ef0039, 0x00000000}},  //   _eiga_, _নিচে_, _dygn_,\n  { {0x290f0724, 0x24800022, 0x78a2010e, 0x00000000}},  //   _figa_, _baim_, _toov,\n  { {0x290f0093, 0xe786003b, 0x7f4d006b, 0x00000000}},  //   _giga_, _вуко, yraq,\n  { {0xe8d700b6, 0x2480006b, 0x29040087, 0x00000000}},  //   _דואר_, _daim_, mmma_,\n  { {0x17570049, 0x2d8a06d2, 0x00000000, 0x00000000}},  //   _כסדר_, _orbe_,   ,\n  { {0x6ac4024c, 0x26cc0489, 0x4de60061, 0x00000000}},  //   _वगैर, mido_, _जुलै_,\n  { {0x26cc0325, 0x7435025f, 0x24800288, 0x00000000}},  //   lido_, _униф, _gaim_,\n  { {0x2d8a00eb, 0x7eb200ea, 0x00000000, 0x00000000}},  // [5110] _arbe_, _væpn,   ,\n  { {0x26cc0219, 0x6b89008d, 0x7f4d00d4, 0x00000000}},  //   nido_, _rreg, rraq,\n  { {0xa184007e, 0x3ea3002b, 0x00000000, 0x00000000}},  //   _дыял, _vojt_,   ,\n  { {0x40950025, 0x8c3d005d, 0x88bc00b9, 0x00000000}},  //   _الحر, _boşa, _stěn,\n  { {0x290f0089, 0x60cd0006, 0x2d8a185d, 0x00000000}},  //   _riga_, miam, _erbe_,\n  { {0x60cd0006, 0x290f0181, 0x26cc008e, 0x00000000}},  //   liam, _siga_, jido_,\n  { {0x26cc20f9, 0x290f0509, 0x00000000, 0x00000000}},  //   dido_, _piga_,   ,\n  { {0x60cd06dc, 0x6b89008d, 0x394906b8, 0x00000000}},  //   niam, _treg, čas_,\n  { {0x290f006c, 0x26cc20fa, 0x6b891285, 0x00000000}},  //   _viga_, fido_, _ureg,\n  { {0x26cc0489, 0x60cd0207, 0xa4f900a1, 0x00000000}},  //   gido_, hiam, یکٹر_,\n  { {0x672920fb, 0x60cd010a, 0x290f020c, 0x00000000}},  //   spej, kiam, _tiga_,\n  { {0xe50a0011, 0x60cd0020, 0x672900b0, 0x00000000}},  //   _cặp_, jiam, ppej,\n  { {0x26cc0b76, 0x60cd20fc, 0x68e920fd, 0x00000000}},  //   bido_, diam, moed,\n  { {0x26cc0977, 0x68e920fe, 0x26c70127, 0x00000000}},  //   cido_, loed, _umno_,\n  { {0x60cd0724, 0x248020ff, 0x00000000, 0x00000000}},  //   fiam, _taim_,   ,\n  { {0xe50a001d, 0x60cd0006, 0x672d01d5, 0x00000000}},  //   _gặp_, giam, _ħajj,\n  { {0x2d8a05fa, 0xddd50059, 0xff2700a1, 0x00000000}},  // [5120] _srbe_, _razš, مبلی,\n  { {0x68e9018e, 0xee3709c0, 0x44220190, 0x00000000}},  //   hoed, йну_, lck_,\n  { {0x60cd0198, 0xc27b0476, 0x2bc00061, 0x00000000}},  //   biam, _גריי, _शेजा,\n  { {0x60cd2100, 0x442200f4, 0x26cc0181, 0x00000000}},  //   ciam, nck_, zido_,\n  { {0x4427005f, 0x68e92101, 0x00000000, 0x00000000}},  //   _ən_, doed,   ,\n  { {0x26cc004a, 0xd37b009b, 0x00000000, 0x00000000}},  //   xido_, טרנט,   ,\n  { {0x26cc0181, 0x2d8a2102, 0x68e90016, 0x00000000}},  //   vido_, _urbe_, foed,\n  { {0xa3b80164, 0x68e92103, 0x6cd601f7, 0x00000000}},  //   चना_, goed, _اقرا,\n  { {0x26cc029d, 0xf09f0011, 0x2fc0010f, 0x00000000}},  //   tido_, _giàu_, nzig_,\n  { {0x60cd0207, 0x6e3e1892, 0xda6603ec, 0x00000000}},  //   ziam, napb, _داري,\n  { {0x26cc029d, 0xa5f81344, 0x7c220026, 0x00000000}},  //   rido_, рену_, ocor,\n  { {0x7c220a15, 0x7aea0007, 0x6d430051, 0x00000000}},  //   ncor, loft, ánai,\n  { {0x60cd0207, 0x26cc0325, 0x2fc000b5, 0x00000000}},  //   viam, pido_, jzig_,\n  { {0x60cd0036, 0x4422009d, 0x7aea0ede, 0x00000000}},  //   wiam, ack_, noft,\n  { {0x60cd0026, 0x3f8b0059, 0x00000000, 0x00000000}},  //   tiam, _srcu_,   ,\n  { {0x44220288, 0x7aea00d9, 0x00000000, 0x00000000}},  //   cck_, hoft,   ,\n  { {0x60cd2104, 0x4034007c, 0x2aab0030, 0x00000000}},  // [5130] riam, яетс, _købt_,\n  { {0x765a2105, 0x60cd0006, 0x4255036d, 0x00000000}},  //   ngty, siam, _بندر,\n  { {0x443b008d, 0x60cd05fc, 0x257a0089, 0x00000000}},  //   _keq_, piam, _jūl_,\n  { {0xaca30011, 0x00000000, 0x00000000, 0x00000000}},  //   _miện,   ,   ,\n  { {0xeb9918ea, 0xfd1005f3, 0x68e901bb, 0x00000000}},  //   рил_, رجم_, voed,\n  { {0x93fc01ce, 0x7c222106, 0xd35800a0, 0x00000000}},  //   אלדי, acor, מידי_,\n  { {0x44220039, 0xaa56012b, 0x7c22121e, 0x00000000}},  //   yck_, цију_, bcor,\n  { {0x81fb0055, 0x7c221017, 0xd0fb007d, 0x00000000}},  //   _আলাপ_, ccor, ्षिण_,\n  { {0x68e90016, 0x78bb0039, 0xcb3402dc, 0x00000000}},  //   roed, rhuv, _нетъ,\n  { {0x7c3b2107, 0x68e92108, 0x611c01aa, 0x00000000}},  //   _heur, soed, _sčlm,\n  { {0x7c3b00b5, 0x68e90116, 0x2aab0190, 0x00000000}},  //   _keur, poed, _døbt_,\n  { {0x7c3b00e7, 0x44220068, 0x00000000, 0x00000000}},  //   _jeur, uck_,   ,\n  { {0x7c3b00f4, 0x7cf80010, 0x00000000, 0x00000000}},  //   _meur, zíro,   ,\n  { {0x7c3b028c, 0x67d80049, 0x00000000, 0x00000000}},  //   _leur, _פֿײג,   ,\n  { {0x64a6005e, 0x7e7700bb, 0xa3e60061, 0x00000000}},  //   _мака, dexp, _बँक_,\n  { {0x7c3b1624, 0x92da0044, 0x8066007e, 0x00000000}},  //   _neur, ়তে_, ўваж,\n  { {0x3eb80022, 0x611c0173, 0x26050061, 0x00000000}},  // [5140] _plrt_, _kčlk, हेरी_,\n  { {0x7e772109, 0x7c220009, 0x2fc001a2, 0x00000000}},  //   gexp, wcor, rzig_,\n  { {0x7c3b0168, 0xa06a1867, 0x00000000, 0x00000000}},  //   _beur, _кана_,   ,\n  { {0x61fe066e, 0x2fc0010f, 0x7afd0089, 0x00000000}},  //   _izpl, pzig_, _īsta,\n  { {0x7c3b210a, 0x7c220c16, 0x7aea0190, 0x00000000}},  //   _deur, rcor, toft,\n  { {0x7c220207, 0x7cf80d7f, 0x3a25000a, 0x00000000}},  //   scor, píro, _cflp_,\n  { {0x7aea0023, 0x6e3c0035, 0x00000000, 0x00000000}},  //   roft, _ierb,   ,\n  { {0xbebb008d, 0x7c3b210b, 0x00000000, 0x00000000}},  //   _atëh, _geur,   ,\n  { {0xd6da0265, 0xd7fa0099, 0x7d1c059f, 0x00000000}},  //   ито_, шук_, _hurs,\n  { {0x7aea0065, 0x7c3b210c, 0x6e3c0166, 0x00000000}},  //   qoft, _zeur, _jerb,\n  { {0x69150224, 0x7d1c145e, 0x6e3c01a3, 0x00000000}},  //   _všec, _jurs, _merb,\n  { {0x92da0055, 0x7d1c0059, 0xef1f010f, 0x00000000}},  //   ়তো_, _murs, _früh_,\n  { {0x7d1c210d, 0x443b0065, 0x7bc2210e, 0x00000000}},  //   _lurs, _veq_, nzou,\n  { {0xd6d90036, 0x6e3c082c, 0x7d1c210f, 0x00000000}},  //   kuły_, _nerb, _ours,\n  { {0x7d1c00ab, 0x30a7003b, 0x27200011, 0x00000000}},  //   _nurs, орав, _hòn_,\n  { {0x27202110, 0x92bd0044, 0xa3e6006e, 0x00000000}},  //   _kòn_, েকে_, _बुक_,\n  { {0x6e3c2111, 0x7c3b00d4, 0x200f006c, 0x00000000}},  // [5150] _berb, _reur, ägi_,\n  { {0x7c3b021e, 0x27202110, 0x6e3c0016, 0x00000000}},  //   _seur, _mòn_, _cerb,\n  { {0x7d1c081d, 0x6e3c02f1, 0x7c3b2112, 0x00000000}},  //   _curs, _derb, _peur,\n  { {0x645d0292, 0x6aba2113, 0x317a007b, 0x00000000}},  //   ngsi, _altf, _פארד,\n  { {0x798a001c, 0x7c3b04bd, 0x6285011c, 0x00000000}},  //   evfw, _veur, _kaho,\n  { {0x6e3c0fdd, 0x7d1c0020, 0x628700ea, 0x00000000}},  //   _gerb, _furs, ndjo,\n  { {0xf2d4007b, 0x62850020, 0x7c3b2114, 0x00000000}},  //   ועס_, _maho, _teur,\n  { {0x6e3c022b, 0x6d450020, 0x27202115, 0x00000000}},  //   _zerb, msha, _bòn_,\n  { {0x2720001d, 0x6e3c008e, 0x6f1d0ab2, 0x00000000}},  //   _còn_, _yerb, _jusc,\n  { {0x628501c8, 0x869901e0, 0x6aa803ef, 0x00000000}},  //   _naho, стит_, _godf,\n  { {0x6d45004e, 0xf3e90097, 0x6e2501a2, 0x00000000}},  //   nsha, _עף_, ichb,\n  { {0xf2c9007b, 0x7f4400f4, 0x6d4500e7, 0x00000000}},  //   _גע_, ysiq, isha,\n  { {0x27200011, 0x56950245, 0x6285010e, 0x00000000}},  //   _gòn_, _надт, _baho,\n  { {0x0cb802f4, 0x6d450030, 0x6285009d, 0x00000000}},  //   _आत्म, ksha, _caho,\n  { {0x27200263, 0x6285011c, 0xdddc001a, 0x00000000}},  //   _zòn_, _daho, _marţ,\n  { {0x6f1d0219, 0x6e3c008d, 0x6d450611, 0x00000000}},  //   _busc, _serb, dsha,\n  { {0x6e3c2116, 0x7d1c000d, 0xef1701e1, 0x00000000}},  // [5160] _perb, _surs, зму_,\n  { {0x1fb501fb, 0x6f1d03a9, 0x62850922, 0x00000000}},  //   єстр, _dusc, _gaho,\n  { {0x6e3c19fa, 0xc27b00b6, 0x7f4400f4, 0x00000000}},  //   _verb, _פרטי, ssiq,\n  { {0x13b00055, 0x6e3c001f, 0x62850235, 0x00000000}},  //   _চেয়, _werb, _zaho,\n  { {0x62852117, 0x6e3c020c, 0xfe70026c, 0x00000000}},  //   _yaho, _terb, _لگا_,\n  { {0x9d460fa6, 0x7d1c0091, 0xff07007e, 0x00000000}},  //   _негд, _turs, _неяк_,\n  { {0x6f1d010f, 0x76411a9d, 0xfe550123, 0x00000000}},  //   _zusc, daly, _زینب_,\n  { {0x4ddb009b, 0xc8790035, 0xc1731881, 0x00000000}},  //   _החלו, geş_, גחה_,\n  { {0xb6050087, 0x00000000, 0x00000000, 0x00000000}},  //   _lušč,   ,   ,\n  { {0x35b4041f, 0x95d800e2, 0x76412118, 0x00000000}},  //   дбор, ждот_, galy,\n  { {0x69c30046, 0x628500b0, 0xc8790a4b, 0x00000000}},  //   czne, _raho, beş_,\n  { {0x6285011c, 0xbec30089, 0xdcfc0087, 0x00000000}},  //   _saho, _ķīmi, _osrč,\n  { {0x62852001, 0xd706007c, 0x76412119, 0x00000000}},  //   _paho, _езди, baly,\n  { {0x6d450052, 0x764a0030, 0x6f1d211a, 0x00000000}},  //   ysha, _udfy, _rusc,\n  { {0x6f1d0845, 0x291e0149, 0x62870093, 0x00000000}},  //   _susc, _juta_, rdjo,\n  { {0x55770049, 0x62850246, 0x6f1d0035, 0x00000000}},  //   _זעהן_, _waho, _pusc,\n  { {0x6285211b, 0x291e0181, 0x4429006b, 0x00000000}},  // [5170] _taho, _luta_, _ifa_,\n  { {0x6d450302, 0x6e2501a2, 0x7cf8013e, 0x00000000}},  //   tsha, uchb, bírk,\n  { {0x3f82002d, 0x6e2500ac, 0x6f150553, 0x00000000}},  //   _esku_, rchb, _vizc,\n  { {0x7bf900ed, 0x6e25010f, 0x44290093, 0x00000000}},  //   онер_, schb, _jfa_,\n  { {0x6d450039, 0x291e0387, 0x2d9c0039, 0x00000000}},  //   ssha, _auta_, äver_,\n  { {0x69c30109, 0x291e033b, 0x1ee700a2, 0x00000000}},  //   tzne, _buta_, _روزی_,\n  { {0x7641075a, 0x644d0adb, 0x442900e7, 0x00000000}},  //   valy, _odai, _ofa_,\n  { {0xfc3306dd, 0x7cf105b7, 0x291e04cb, 0x00000000}},  //   _سحر_, rårs, _duta_,\n  { {0xf7080011, 0x69c30c59, 0xc8791f4a, 0x00000000}},  //   _hủy_, szne, reş_,\n  { {0x4429000c, 0x644d0020, 0x291e0f3e, 0x00000000}},  //   _afa_, _adai, _futa_,\n  { {0x7641211c, 0xb05b0039, 0x291e0b94, 0x00000000}},  //   raly, _kläd, _guta_,\n  { {0x2d910107, 0xb605211d, 0x4429009d, 0x00000000}},  //   _mrze_, _rušč, _cfa_,\n  { {0xdddc0d90, 0xaca3001d, 0x291e0107, 0x00000000}},  //   _marš, _chỉn, _zuta_,\n  { {0x44290fd1, 0x77690c3f, 0x386d010f, 0x00000000}},  //   _efa_, mtex, lfer_,\n  { {0x7769211e, 0x44291625, 0xa187003b, 0x00000000}},  //   ltex, _ffa_, мбра_,\n  { {0xf1b801d5, 0xdddc0006, 0x7c2d008e, 0x00000000}},  //   ġġ_, _narš, ñarl,\n  { {0x98a60107, 0x386d01a2, 0x4de6013d, 0x00000000}},  // [5180] žiće_, ifer_, _जुड़े_,\n  { {0x7c291717, 0xb6050006, 0x2d910091, 0x00000000}},  //   _afer, _tušč, _brze_,\n  { {0xdddc1288, 0x77690009, 0x6449000c, 0x00000000}},  //   _barš, htex, ðeig,\n  { {0x291e029a, 0x2d910107, 0x386d00b5, 0x00000000}},  //   _ruta_, _drze_, jfer_,\n  { {0x69150626, 0x291e001a, 0x3f82211f, 0x00000000}},  //   _pšen, _suta_, _usku_,\n  { {0x2bd2001c, 0x386d002b, 0x77690387, 0x00000000}},  //   _देणा, efer_, dtex,\n  { {0x7c29018e, 0x77690009, 0xe2a7000c, 0x00000000}},  //   _ffer, etex, æðir_,\n  { {0x52bb0201, 0xb05b0039, 0xdddc0089, 0x00000000}},  //   _उत्स, _gläd, _garš,\n  { {0x77692120, 0x78ab012d, 0xc7c6007c, 0x00000000}},  //   gtex, _dogv, ьски,\n  { {0x291e013f, 0x44290675, 0xc6f70783, 0x00000000}},  //   _tuta_, _sfa_, мных_,\n  { {0x2bd20061, 0x44292121, 0x186a00ed, 0x00000000}},  //   _देता, _pfa_, _мажи_,\n  { {0x77690050, 0xb8930025, 0x7cf80051, 0x00000000}},  //   btex, _للمع, fíri,\n  { {0x77690009, 0x442902d4, 0x00000000, 0x00000000}},  //   ctex, _vfa_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x2906001d, 0x22430096, 0x26de0555, 0x00000000}},  //   _khoa_, rajk_, mnto_,\n  { {0xd788001d, 0xe45f0210, 0x92cf0044, 0x00000000}},  //   _kể_, riös_, ষকে_,\n  { {0xa2950ee0, 0x332000d4, 0x7c2d004a, 0x00000000}},  // [5190] _запі, _guix_, ñarm,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7c29010f, 0x6d5a0039, 0x386d0abb, 0x00000000}},  //   _pfer, _åtal, yfer_,\n  { {0x6fd00061, 0x77690009, 0xfc300439, 0x00000000}},  //   _ठेवू, ytex, لحه_,\n  { {0x77690061, 0x225800a6, 0x24890058, 0x00000000}},  //   xtex, _عجیب_, _maam_,\n  { {0x77690009, 0x29062122, 0xf7080082, 0x00000000}},  //   vtex, _ahoa_, _tủy_,\n  { {0x77690061, 0xd940007e, 0x7c290066, 0x00000000}},  //   wtex, ацыi_, _tfer,\n  { {0x2489049b, 0x26de0211, 0x77692123, 0x00000000}},  //   _naam_, ento_, ttex,\n  { {0x386d0abe, 0x68e2012d, 0xd76400a1, 0x00000000}},  //   rfer_, _djod, نچوی,\n  { {0xd7060057, 0x7769211e, 0x8aa7007e, 0x00000000}},  //   нные_, rtex, _ўрад,\n  { {0x68e201ee, 0x386d010f, 0x776905b4, 0x00000000}},  //   _fjod, pfer_, stex,\n  { {0x26de0aa3, 0x77690009, 0x332000d4, 0x00000000}},  //   anto_, ptex, _puix_,\n  { {0x2cad01bb, 0xa3f5007e, 0x68fb014a, 0x00000000}},  //   _moed_, вярш, mlud,\n  { {0x290d2124, 0x00000000, 0x00000000, 0x00000000}},  //   lmea_,   ,   ,\n  { {0xf6520097, 0x11d50088, 0x24890116, 0x00000000}},  //   _עצה_, вітр, _faam_,\n  { {0x205501fb, 0x7cf800f7, 0xb05b0039, 0x00000000}},  //   ктур, píri, _smär,\n  { {0x6446020c, 0x48fa0049, 0xaf06030d, 0x00000000}},  // [51a0] maki, פּלא, епал,\n  { {0x6446006a, 0x2a651cdc, 0x611c000a, 0x00000000}},  //   laki, _nclb_, _bčlt,\n  { {0xd00f00a1, 0x68fb0292, 0x6e170025, 0x00000000}},  //   للہ_, klud, فيكس_,\n  { {0x64462125, 0x8fa603c8, 0x2cad0016, 0x00000000}},  //   naki, _заме, _coed_,\n  { {0xfbd20063, 0x00000000, 0x00000000, 0x00000000}},  //   دتا_,   ,   ,\n  { {0x6446000b, 0x60c400c4, 0xd7880082, 0x00000000}},  //   haki, lhim, _rể_,\n  { {0x64462126, 0x317a0049, 0x00000000, 0x00000000}},  //   kaki, לאַד,   ,\n  { {0x2cad01b5, 0x7e7e006c, 0x7d0300c1, 0x00000000}},  //   _goed_, lepp, ïnst,\n  { {0x6d5e04bd, 0x64462127, 0xe66600ed, 0x00000000}},  //   lupa, daki, нтно,\n  { {0x24890343, 0x2906103f, 0x26de0207, 0x00000000}},  //   _saam_, _whoa_, unto_,\n  { {0xd5b70eec, 0x49ba00f3, 0x26de0009, 0x00000000}},  //   еся_, _عائد_, rnto_,\n  { {0x68fb0038, 0x7e7e00bb, 0x94d5013b, 0x00000000}},  //   clud, hepp, томц,\n  { {0x60c41ac5, 0x7e7e000c, 0x6d5e044e, 0x00000000}},  //   dhim, kepp, hupa,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x64462128, 0x2bd20164, 0x31c417a4, 0x00000000}},  //   baki, _देसा, гств,\n  { {0x6d5e020c, 0xd5fb00b3, 0x60c42129, 0x00000000}},  //   dupa, _מפור, ghim,\n  { {0xf1b9001e, 0x44390339, 0x00000000, 0x00000000}},  // [51b0] ņš_, mbs_,   ,\n  { {0xdd950057, 0xaca30011, 0xb05b0039, 0x00000000}},  //   казы, _thịn, _bläc,\n  { {0xe2a7000c, 0x44390f36, 0x2cad006c, 0x00000000}},  //   æður_, obs_, _poed_,\n  { {0xec150014, 0x60c400e4, 0xc5f30049, 0x00000000}},  //   نواد, chim, אדע_,\n  { {0x2cad01d6, 0xbc180088, 0x00000000, 0x00000000}},  //   _voed_, ніші_,   ,\n  { {0x6446212a, 0x6d5e0390, 0xb05b0a35, 0x00000000}},  //   zaki, bupa, _fläc,\n  { {0x64460169, 0x2cad0003, 0x6d5e051b, 0x00000000}},  //   yaki, _toed_, cupa,\n  { {0xa3c10365, 0x394c0181, 0x2bd201f5, 0x00000000}},  //   ंना_, _dvds_, _देवा,\n  { {0x64460027, 0x7d09002d, 0x290d212b, 0x00000000}},  //   vaki, _ihes, rmea_,\n  { {0x64460258, 0xa6950098, 0x60c40065, 0x00000000}},  //   waki, триј, zhim,\n  { {0x644604ff, 0x7d1b212c, 0x442b0009, 0x00000000}},  //   taki, _kius, fcc_,\n  { {0x89340025, 0x60c40065, 0x7e7e0066, 0x00000000}},  //   _إعلا, xhim, zepp,\n  { {0x64460f42, 0x7d090020, 0x387f00f4, 0x00000000}},  //   raki, _mhes, meur_,\n  { {0x387f028c, 0x480401fb, 0x78a90213, 0x00000000}},  //   leur_, _спів, ljev,\n  { {0x6446006a, 0xf09f001d, 0x60c4212d, 0x00000000}},  //   paki, _chào_, thim,\n  { {0x78a90627, 0x387f00f4, 0x8c3d011f, 0x00000000}},  //   njev, neur_, _koşu,\n  { {0x76430596, 0x44201fae, 0x60c4003f, 0x00000000}},  // [51c0] _keny, _igi_, rhim,\n  { {0x60c406b7, 0x6d5e011c, 0x06e30044, 0x00000000}},  //   shim, tupa, _নীতি,\n  { {0x2b4d0a8d, 0x7643020c, 0x629e002d, 0x00000000}},  //   _avec_, _meny, _inpo,\n  { {0x6d5e0149, 0x7e7e0207, 0x628e0030, 0x00000000}},  //   rupa, sepp, ldbo,\n  { {0x2bd204da, 0x78a9037e, 0x387f193b, 0x00000000}},  //   _देशा, djev, deur_,\n  { {0x628e0286, 0x3866212e, 0xc882006b, 0x00000000}},  //   ndbo, _scor_, mişə_,\n  { {0xada30216, 0x387f1de2, 0x6df60025, 0x00000000}},  //   _карл, feur_, _شكرا,\n  { {0x7d1b0198, 0x68e00061, 0x78a9212f, 0x00000000}},  //   _gius, unmd, gjev,\n  { {0x6f1c010f, 0xaca3001d, 0x76432130, 0x00000000}},  //   _kirc, _giốn, _beny,\n  { {0x752300d9, 0x6f1c0066, 0x7d092131, 0x00000000}},  //   _bunz, _jirc, _zhes,\n  { {0x764301aa, 0x387f0343, 0x6f1c001a, 0x00000000}},  //   _deny, beur_, _mirc,\n  { {0x44202132, 0xb8650014, 0x628e2133, 0x00000000}},  //   _cgi_, _ماهو, edbo,\n  { {0x4439001e, 0x7c2d027b, 0x317a0846, 0x00000000}},  //   rbs_, ñari, _appz_,\n  { {0x76430607, 0x75230409, 0x6b9d000c, 0x00000000}},  //   _geny, _funz, _ásge,\n  { {0x76480b9a, 0x44390022, 0x442b005b, 0x00000000}},  //   mady, pbs_, pcc_,\n  { {0x76430020, 0x629e01aa, 0x628e01c3, 0x00000000}},  //   _zeny, _enpo, adbo,\n  { {0x7d09018e, 0x7643000b, 0x7d1b0207, 0x00000000}},  // [51d0] _rhes, _yeny, _rius,\n  { {0xfe7001b7, 0x539a009b, 0x7d090065, 0x00000000}},  //   قدم_, _ניתו, _shes,\n  { {0x387f00f4, 0x6f1c0810, 0x7d1b2134, 0x00000000}},  //   yeur_, _dirc, _pius,\n  { {0x8c3d001a, 0x387f009d, 0x6f1c2135, 0x00000000}},  //   _noşt, xeur_, _eirc,\n  { {0x387f00f4, 0x7d090022, 0x76480058, 0x00000000}},  //   veur_, _vhes, kady,\n  { {0x69150006, 0x6d580161, 0x00000000, 0x00000000}},  //   _išei, ávac,   ,\n  { {0x387f028c, 0x7d090038, 0x80ba0061, 0x00000000}},  //   teur_, _thes, _एकमे,\n  { {0x76432136, 0xf91300a1, 0x7d0900e7, 0x00000000}},  //   _seny, جستھ, _uhes,\n  { {0x7643020c, 0x78a90059, 0x387f00f4, 0x00000000}},  //   _peny, rjev, reur_,\n  { {0x6b892137, 0xb7bd000d, 0x387f00f4, 0x00000000}},  //   _iseg, ncţi, seur_,\n  { {0x044606e7, 0x211f0061, 0x78a9016e, 0x00000000}},  //   ленн, _मंगळ_, pjev,\n  { {0x7643000b, 0x3f4f001e, 0x26c50066, 0x00000000}},  //   _weny, kļu_, shlo_,\n  { {0x765c0046, 0xe91801fb, 0x7e9b001e, 0x00000000}},  //   óryc, _році_, _kāpē,\n  { {0x7eb20030, 0xf09f00d4, 0x291d011c, 0x00000000}},  //   _næpp, _anà_, _hiwa_,\n  { {0x2729009f, 0x67290065, 0x11da0025, 0x00000000}},  //   _hún_, lqej, رورة_,\n  { {0xdfd20025, 0x6f1c016c, 0x291d04cb, 0x00000000}},  //   ميز_, _sirc, _jiwa_,\n  { {0x3f4f0089, 0x27292138, 0x6f1c0089, 0x00000000}},  // [51e0] gļu_, _jún_, _pirc,\n  { {0x291d0093, 0x27290011, 0x21a601ee, 0x00000000}},  //   _liwa_, _mún_, _биом,\n  { {0x6b8904a8, 0x224a0009, 0x27292139, 0x00000000}},  //   _aseg, mabk_, _lún_,\n  { {0x5fd5001c, 0x9b6a017a, 0x1b4a213a, 0x00000000}},  //   _ठेवल, ешка_, езди_,\n  { {0xb05b0a5d, 0x2d870030, 0xc882006b, 0x00000000}},  //   _klän, æner_, qişə_,\n  { {0x408600a1, 0x69ca01a2, 0x00000000, 0x00000000}},  //   _جھڑپ_, tzfe,   ,\n  { {0x27290211, 0xa96700e1, 0x6b89213b, 0x00000000}},  //   _aún_, гија_, _eseg,\n  { {0x37e80055, 0x7ae30051, 0x27290082, 0x00000000}},  //   _পরবর, annt, _bún_,\n  { {0xd90d0014, 0x291d011c, 0x76480a81, 0x00000000}},  //   ذیه_, _diwa_, tady,\n  { {0x557401e0, 0x27290051, 0x00000000, 0x00000000}},  //   агот, _dún_,   ,\n  { {0x76480a77, 0x65610181, 0xdef70049, 0x00000000}},  //   rady, gulh, רמיט_,\n  { {0x26d9009d, 0xf8ad0014, 0x7648011c, 0x00000000}},  //   ésor_, _يکي_, sady,\n  { {0xf09f0011, 0x9cd7009b, 0xb05b00f8, 0x00000000}},  //   _giày_, רוכה_, _blän,\n  { {0x248d04a3, 0x291d0020, 0x65940256, 0x00000000}},  //   žem_, _ziwa_, _ваку,\n  { {0x5a9b0049, 0x61fe07c0, 0x6234030d, 0x00000000}},  //   עשלא, _cypl, сесу,\n  { {0x95530426, 0x61fe0036, 0xb05b0c43, 0x00000000}},  //   _اخوا, _dypl, _elän,\n  { {0x1ee7007a, 0x2d98213c, 0x7ae3000c, 0x00000000}},  // [51f0] هوری_, _arre_, ynnt,\n  { {0xaca30011, 0x32670081, 0xb05b09b0, 0x00000000}},  //   _phỏn, _стив, _glän,\n  { {0x9e0712ab, 0x6b890066, 0x00000000, 0x00000000}},  //   учал, _sseg,   ,\n  { {0x2007005f, 0x00000000, 0x00000000, 0x00000000}},  //   ənin_,   ,   ,\n  { {0x2d980047, 0x90980265, 0x20c7006c, 0x00000000}},  //   _erre_, _свят_, _võid_,\n  { {0x27291573, 0x6b890059, 0x00000000, 0x00000000}},  //   _rún_, _vseg,   ,\n  { {0x6115010a, 0x20c7010e, 0x291d00b4, 0x00000000}},  //   _sąly, _tõid_, _piwa_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6a6702fd, 0x2903001e, 0x7e9b001e, 0x00000000}},  //   _مطال, ēja_, _tāpē,\n  { {0x81bb0044, 0x681b0089, 0x65611824, 0x00000000}},  //   _আইন_, _rādī, tulh,\n  { {0x27e0000c, 0x291d0f65, 0x81c30089, 0x00000000}},  //   _þinn_, _tiwa_, šēji,\n  { {0x65610181, 0xb05b0039, 0x00000000, 0x00000000}},  //   rulh, _slän,   ,\n  { {0xf74500da, 0xb05b01a2, 0x2aab0374, 0x00000000}},  //   _тело, _plän, _søby_,\n  { {0x61fe11de, 0x00000000, 0x00000000, 0x00000000}},  //   _pypl,   ,   ,\n  { {0xa3e20316, 0x61460478, 0xe2970143, 0x00000000}},  //   _दशक_, реба, јас_,\n  { {0x92d60055, 0x61fe0428, 0x91e30088, 0x00000000}},  //   িকে_, _vypl, іоте,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  // [5200]   ,   ,   ,\n  { {0xee3720b5, 0x00000000, 0x00000000, 0x00000000}},  //   ину_,   ,   ,\n  { {0x720602fd, 0x5d6a007c, 0x3f990026, 0x00000000}},  //   _خودم, тием_, _ersu_,\n  { {0x3f8b01c3, 0x00000000, 0x00000000, 0x00000000}},  //   _fscu_,   ,   ,\n  { {0x9abc002b, 0x60c30035, 0x92e80044, 0x00000000}},  //   _liċe, _înma, বতী_,\n  { {0xd9540a4f, 0x27e00006, 0x00000000, 0x00000000}},  //   منتخ, _žino_,   ,\n  { {0x27e00035, 0x8c460072, 0x2d98213d, 0x00000000}},  //   _ţin_, _вебе, _urre_,\n  { {0xfce60437, 0xf4c10044, 0x7c2d004a, 0x00000000}},  //   _тобо, _উদ্ব, ñart,\n  { {0xc6a600ed, 0x7d02021f, 0xab2a0256, 0x00000000}},  //   арни, mlos, _роза_,\n  { {0x6d5e0692, 0x00000000, 0x00000000, 0x00000000}},  //   orpa,   ,   ,\n  { {0x7aed00f4, 0x7d02213e, 0x3ce60087, 0x00000000}},  //   éate, olos, onov_,\n  { {0x7d02010f, 0x9abc002b, 0x66c4000a, 0x00000000}},  //   nlos, _diċe, _dòka,\n  { {0x44320045, 0xd407213f, 0x00000000, 0x00000000}},  //   _dfy_, ряни,   ,\n  { {0x7d02001f, 0x60c600bb, 0xc7d70104, 0x00000000}},  //   hlos, _alkm, _דודי_,\n  { {0x8546008b, 0x7d022140, 0x2d85004a, 0x00000000}},  //   _тэле, klos, _álex_,\n  { {0x30a400ed, 0x7d02016c, 0x63a218c5, 0x00000000}},  //   орув, jlos, _šone,\n  { {0x7d020471, 0x3ce60059, 0x6d580f6c, 0x00000000}},  // [5210] dlos, dnov_, ávan,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x20c70004, 0x63bd2141, 0x78a21fed, 0x00000000}},  //   _võib_, lysn, _onov,\n  { {0xf3ff00c4, 0x61fb1a6f, 0xb05b00f8, 0x00000000}},  //   ngão_, ğuld, _kläm,\n  { {0x307a007b, 0x2a6c012d, 0x799a0133, 0x00000000}},  //   _גארנ, _bcdb_, _artw,\n  { {0x78a21ee1, 0x3ce60087, 0xe8e00082, 0x00000000}},  //   _anov, anov_, ướt_,\n  { {0x6ca70441, 0xfc67005e, 0x7d02014a, 0x00000000}},  //   _краж, _възн, blos,\n  { {0x9abc01d5, 0x7d0212a0, 0xb05b00f8, 0x00000000}},  //   _riċe, clos, _oläm,\n  { {0xcb34005e, 0x6c6a00a1, 0xf09f0082, 0x00000000}},  //   _метъ, _حلقہ_, _chài_,\n  { {0x78a218e1, 0x38b811ea, 0x6b9b0032, 0x00000000}},  //   _enov, _sért_, _irug,\n  { {0x8afa0049, 0x00000000, 0x00000000, 0x00000000}},  //   _עפעק,   ,   ,\n  { {0x6b9b0213, 0x3915007c, 0xe799002c, 0x00000000}},  //   _krug, _умер, _مختص_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x78a211b0, 0x673b0052, 0x232700d7, 0x00000000}},  //   _znov, mpuj, сори_,\n  { {0xb05b021e, 0x7d020197, 0x3ce62142, 0x00000000}},  //   _eläm, ylos, ynov_,\n  { {0x2571009f, 0x92e80044, 0xb05b0210, 0x00000000}},  //   mál_, বতে_, _fläm,\n  { {0x543b007b, 0x8fa3007c, 0x4fa3005e, 0x00000000}},  // [5220] _געפא, пате, питв,\n  { {0x52860054, 0x6d5e0091, 0x00000000, 0x00000000}},  //   _الدك, trpa,   ,\n  { {0x257113a5, 0x7d020166, 0x3ce600b9, 0x00000000}},  //   nál_, tlos, tnov_,\n  { {0x6b9b05ec, 0xab2a004c, 0x6d5e2143, 0x00000000}},  //   _brug, года_, rrpa,\n  { {0x7d020007, 0x3ce6013e, 0x2bd20164, 0x00000000}},  //   rlos, rnov_, _देखा,\n  { {0x6b9b0490, 0x7d020161, 0x78a20ecc, 0x00000000}},  //   _drug, slos, _snov,\n  { {0xf41f0210, 0x6b9b00f6, 0x00000000, 0x00000000}},  //   ndär_, _erug,   ,\n  { {0x6b9b0030, 0x4734003b, 0x00000000, 0x00000000}},  //   _frug, онис,   ,\n  { {0x6b9b01f4, 0x3198000a, 0x00000000, 0x00000000}},  //   _grug, _lčz_,   ,\n  { {0x8c3d005d, 0x7e7c000a, 0x00000000, 0x00000000}},  //   _inşa, _jbrp,   ,\n  { {0x7c2d016c, 0xf76f0014, 0xb7d800a1, 0x00000000}},  //   žare, وای_, _ھوتا_,\n  { {0x241901ab, 0x68eb0288, 0x00000000, 0x00000000}},  //   ионы_, _gjgd,   ,\n  { {0x691513a1, 0x38cb00a2, 0x2f0f01a2, 0x00000000}},  //   _všet, _حالی_, lüge_,\n  { {0x7ae40051, 0x29040f2e, 0xa49b00f6, 0x00000000}},  //   éith, llma_, clòn,\n  { {0x26de01ca, 0x225f014a, 0x6d580d7f, 0x00000000}},  //   mito_, ğuk_, ával,\n  { {0x764a018e, 0x26de0207, 0x69150161, 0x00000000}},  //   _hefy, lito_, _ušet,\n  { {0x644f2144, 0x6d58001e, 0x29040cfc, 0x00000000}},  // [5230] maci, šval, ilma_,\n  { {0x644f0845, 0x6b9b008d, 0xdddc0006, 0x00000000}},  //   laci, _rrug, _darž,\n  { {0x6287008e, 0x60c30035, 0x6b9b012d, 0x00000000}},  //   mejo, _înmo, _srug,\n  { {0xe9a9007a, 0xd5fb007b, 0x62870871, 0x00000000}},  //   یگان_, נפאר, lejo,\n  { {0x26de0d94, 0x60cd0051, 0x61ef0082, 0x00000000}},  //   kito_, mham, ânlư,\n  { {0x60cd0181, 0x8f341020, 0x26de0fa4, 0x00000000}},  //   lham, _херц, jito_,\n  { {0x644f01d9, 0x26de0207, 0x00000000, 0x00000000}},  //   kaci, dito_,   ,\n  { {0x644f2145, 0x60cd1cd6, 0x6b9b0056, 0x00000000}},  //   jaci, nham, _trug,\n  { {0x644f2146, 0x6b9b0211, 0x26de002b, 0x00000000}},  //   daci, _urug, fito_,\n  { {0x2571139d, 0x60cd0146, 0x00000000, 0x00000000}},  //   tál_, hham,   ,\n  { {0x644f0d46, 0x34aa01fc, 0x764a2147, 0x00000000}},  //   faci, авно_, _defy,\n  { {0x644f0c1f, 0x673b00b0, 0x62950089, 0x00000000}},  //   gaci, ppuj, edzo,\n  { {0x26de0198, 0x60cd0020, 0x98f401f7, 0x00000000}},  //   bito_, dham, _عثما,\n  { {0x68fb00b0, 0x68e90c73, 0xb05b0039, 0x00000000}},  //   loud, lned, _fläk,\n  { {0x644f2148, 0x7641007f, 0xdd1c01ca, 0x00000000}},  //   baci, mbly, vážn,\n  { {0x644f2149, 0x3366058e, 0x60cd0b57, 0x00000000}},  //   caci, _двиг, gham,\n  { {0x6723016c, 0x2f0f01a2, 0x62871472, 0x00000000}},  // [5240] _kinj, züge_, bejo,\n  { {0x68fb017c, 0x67230066, 0xdddc0006, 0x00000000}},  //   houd, _jinj, _varž,\n  { {0xc27b0476, 0x527b0104, 0x2d9c0d7a, 0x00000000}},  //   _דריי, _דניא, íve_,\n  { {0x60cd000b, 0x26de0c33, 0x672302c0, 0x00000000}},  //   cham, zito_, _linj,\n  { {0x26de0e7f, 0x60c40416, 0x6603214a, 0x00000000}},  //   yito_, mkim, _lynk,\n  { {0x60c400b0, 0x539b0104, 0x26de04f3, 0x00000000}},  //   lkim, יינו, xito_,\n  { {0x26de016e, 0x765c0036, 0x7c2f0b41, 0x00000000}},  //   vito_, órym, _širš,\n  { {0x764a018e, 0x644f00d4, 0x60c4010a, 0x00000000}},  //   _sefy, xaci, nkim,\n  { {0x26de0211, 0xb05b0039, 0x6723214b, 0x00000000}},  //   tito_, _släk, _binj,\n  { {0x672305fa, 0x60c41256, 0xddde001a, 0x00000000}},  //   _cinj, hkim, cepţ,\n  { {0x644f0682, 0x672301d5, 0x6287214c, 0x00000000}},  //   taci, _dinj, vejo,\n  { {0x26de00d6, 0x69d30061, 0x26cc0065, 0x00000000}},  //   sito_, _भेटी, shdo_,\n  { {0x26de08a6, 0x6d580161, 0x672300ea, 0x00000000}},  //   pito_, ávaj, _finj,\n  { {0x25470047, 0xe572031d, 0x644f15e5, 0x00000000}},  //   ből_, _قطع_, saci,\n  { {0x644f201e, 0x60cd0020, 0x6295214d, 0x00000000}},  //   paci, tham, rdzo,\n  { {0x62870181, 0x22b401df, 0x68e0026d, 0x00000000}},  //   sejo, _aşkı_, nimd,\n  { {0x3eb81f82, 0x44290004, 0x60cd01a3, 0x00000000}},  // [5250] _bort_, _iga_, rham,\n  { {0xdd9b012b, 0x60cd000b, 0x67231864, 0x00000000}},  //   ише_, sham, _xinj,\n  { {0x68e9018e, 0x3eb8001f, 0x44291372, 0x00000000}},  //   yned, _dort_, _kga_,\n  { {0x4429008a, 0x00000000, 0x00000000, 0x00000000}},  //   _jga_,   ,   ,\n  { {0x4429084e, 0x65680020, 0x644d0051, 0x00000000}},  //   _mga_, hudh, _meai,\n  { {0xda7b081e, 0x68fb214e, 0x65680162, 0x00000000}},  //   ряд_, woud, kudh,\n  { {0xceb2007b, 0x6994007e, 0x67230065, 0x00000000}},  //   _אים_, дрых, _rinj,\n  { {0x4429214f, 0x67232150, 0xa3cb02d2, 0x00000000}},  //   _nga_, _sinj, लना_,\n  { {0x7641018e, 0x68e90030, 0x68fb00b5, 0x00000000}},  //   tbly, rned, roud,\n  { {0x44290004, 0x25470047, 0x68e900bb, 0x00000000}},  //   _aga_, től_, sned,\n  { {0x67230089, 0x76412151, 0xe5a5003b, 0x00000000}},  //   _vinj, rbly, чини,\n  { {0x25470047, 0x81e90044, 0x644d2152, 0x00000000}},  //   ről_, _বরং_, _ceai,\n  { {0x6723008a, 0x6603052b, 0x00000000, 0x00000000}},  //   _tinj, _wynk,   ,\n  { {0xf675007b, 0x386d02cc, 0x44292153, 0x00000000}},  //   _זײַט_, lger_, _ega_,\n  { {0x2f140901, 0x60c4021e, 0x20c7006c, 0x00000000}},  //   lägg_, tkim, _võin_,\n  { {0x386d02cc, 0xf99200bd, 0x55ba00b6, 0x00000000}},  //   nger_, ערן_, _למצו,\n  { {0x60c42154, 0x3eb8032c, 0x386d059b, 0x00000000}},  // [5260] rkim, _port_, iger_,\n  { {0x7c29022b, 0xd00f0025, 0x60c4044e, 0x00000000}},  //   _ager, الك_, skim,\n  { {0x3eb80190, 0x3f8f000c, 0x68e00276, 0x00000000}},  //   _vort_, ægur_, yimd,\n  { {0x3eb8010f, 0xf5360049, 0x386d00bb, 0x00000000}},  //   _wort_, לטער_, jger_,\n  { {0x3eb801eb, 0x6e3b014a, 0x386d0aa4, 0x00000000}},  //   _tort_, _şube, dger_,\n  { {0x386d07eb, 0x7c290010, 0x3eab01d5, 0x00000000}},  //   eger_, _eger, ċità_,\n  { {0x24800107, 0x68e001df, 0x26dc01c3, 0x00000000}},  //   _obim_, timd, _rmvo_,\n  { {0x386d00eb, 0x63a20066, 0x00000000, 0x00000000}},  //   gger_, _ġonn,   ,\n  { {0x644d0181, 0x7b09000c, 0x68e0005d, 0x00000000}},  //   _reai, ðstö, rimd,\n  { {0x692a101c, 0x68e02155, 0x644d0048, 0x00000000}},  //   _před, simd, _seai,\n  { {0x44290193, 0xceb300b6, 0x6aa80030, 0x00000000}},  //   _pga_, תית_, _indf,\n  { {0x6aba0051, 0xc9850025, 0x65680023, 0x00000000}},  //   _hotf, _تشكي, rudh,\n  { {0x46a61227, 0x44290011, 0x28a9006e, 0x00000000}},  //   _надв, _vga_, कारि,\n  { {0x44290bca, 0x97130245, 0x60dd00d2, 0x00000000}},  //   _wga_, _зміц, _smsm,\n  { {0x44290058, 0x27320011, 0x867b009b, 0x00000000}},  //   _tga_, _hân_, _הרוו,\n  { {0x44290729, 0x116a0014, 0x00000000, 0x00000000}},  //   _uga_, تلفی_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  // [5270]   ,   ,   ,\n  { {0x6aba2156, 0x27320031, 0x386d00d9, 0x00000000}},  //   _notf, _mân_, zger_,\n  { {0x386d0039, 0x2732130d, 0x5c75007e, 0x00000000}},  //   yger_, _lân_, длет,\n  { {0xd01000a1, 0x6aa81fbc, 0x00000000, 0x00000000}},  //   ئلے_, _andf,   ,\n  { {0x05de007d, 0x7aed009d, 0xa09a009b, 0x00000000}},  //   _फेसब, éato, _וירט,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x386d2157, 0x62970387, 0x7c290066, 0x00000000}},  //   tger_, _maxo, _tger,\n  { {0x7c292158, 0xbca50439, 0xb05b00b0, 0x00000000}},  //   _uger, _تمري, _eläv,\n  { {0x27322159, 0xcd020036, 0x63a20066, 0x00000000}},  //   _cân_, _dość_, _ġono,\n  { {0x2732001d, 0x05750054, 0x62970197, 0x00000000}},  //   _dân_, واجد, _naxo,\n  { {0x7ae31082, 0x386d00f8, 0x00000000, 0x00000000}},  //   mint, pger_,   ,\n  { {0x7ae31082, 0xcd020046, 0x69c30016, 0x00000000}},  //   lint, _gość_, myne,\n  { {0x1e0a02d2, 0x7e0a0316, 0x69c30010, 0x00000000}},  //   _वर्ष_, _वर्ग_, lyne,\n  { {0x7ae30006, 0x069300a1, 0x629706c2, 0x00000000}},  //   nint, _ساتھ, _caxo,\n  { {0xb0c901f5, 0xdb26006b, 0x00000000, 0x00000000}},  //   रसंग, şqçi,   ,\n  { {0x7ae30176, 0x9fca00e2, 0x00000000, 0x00000000}},  //   hint, огба_,   ,\n  { {0x7ae30047, 0xd007017f, 0x31780036, 0x00000000}},  // [5280] kint, дете_, strz_,\n  { {0x9d4601e0, 0x7ae30006, 0x69c3215a, 0x00000000}},  //   дежд, jint, kyne,\n  { {0x7ae30713, 0x6aba00f8, 0x00000000, 0x00000000}},  //   dint, _rotf,   ,\n  { {0x69c30036, 0x7c83007c, 0x04040044, 0x00000000}},  //   dyne, вуше, রেণী_,\n  { {0xe7e80055, 0x6d67010a, 0x7ae30039, 0x00000000}},  //   _পর্য, _įraš, fint,\n  { {0x7ae3215b, 0x6d57006b, 0x7bc2007f, 0x00000000}},  //   gint, bsxa, ryou,\n  { {0x2732001d, 0x7bc21cdc, 0x00000000, 0x00000000}},  //   _sân_, syou,   ,\n  { {0x7bc2000a, 0xcc872015, 0x692a00b9, 0x00000000}},  //   pyou, _обсе_, _přeb,\n  { {0x7ae31e4a, 0x692a00b9, 0xb05b01a2, 0x00000000}},  //   bint, _břec, _gläu,\n  { {0x2732001d, 0xcaa6006d, 0x00000000, 0x00000000}},  //   _vân_, _تصري,   ,\n  { {0x27e9009f, 0xb05b0039, 0x62970032, 0x00000000}},  //   _þann_, _klät, _raxo,\n  { {0x2732215c, 0x692a0224, 0x2246016c, 0x00000000}},  //   _tân_, _třeb, _đoka_,\n  { {0xd91b012f, 0x00000000, 0x00000000, 0x00000000}},  //   _וואל,   ,   ,\n  { {0x05760d3a, 0x20c7010e, 0x00000000, 0x00000000}},  //   _قاعد, _võim_,   ,\n  { {0xdb000065, 0x41e40245, 0x26ce000a, 0x00000000}},  //   _armë, віта, _ilfo_,\n  { {0x7ae3000d, 0x00000000, 0x00000000, 0x00000000}},  //   zint,   ,   ,\n  { {0x7ae30010, 0x00000000, 0x00000000, 0x00000000}},  // [5290] yint,   ,   ,\n  { {0x20c70004, 0x44390010, 0x7ae30288, 0x00000000}},  //   _kõik_, lcs_, xint,\n  { {0x7ae316c7, 0x25780047, 0xb05b010f, 0x00000000}},  //   vint, nél_, _blät,\n  { {0x7ae30fd5, 0x213e0051, 0x4439215d, 0x00000000}},  //   wint, íthe_, ncs_,\n  { {0x60d6019b, 0x7ae30006, 0x443900d4, 0x00000000}},  //   _נושא_, tint, ics_,\n  { {0xdb250010, 0x69c3042c, 0x49951023, 0x00000000}},  //   _épül, tyne, ешит,\n  { {0x7ae30390, 0x64460036, 0x9f040025, 0x00000000}},  //   rint, ybki, _شوفو,\n  { {0x7ae3215e, 0x2f14001f, 0x69c3215f, 0x00000000}},  //   sint, räge_, ryne,\n  { {0x7ae30006, 0x692a00b9, 0x69c3113b, 0x00000000}},  //   pint, _přec, syne,\n  { {0xcf920104, 0x657a0173, 0xb659007c, 0x00000000}},  //   נטי_, ftth, чших_,\n  { {0xa50a0780, 0x4aac0204, 0x00000000, 0x00000000}},  //   зена_, चारव,   ,\n  { {0x92bc0055, 0xcdda0049, 0xdb0000f6, 0x00000000}},  //   _আগে_, פֿיר, _armè,\n  { {0x61fb014a, 0x78ab06a1, 0x692a00b9, 0x00000000}},  //   şull, _ingv, _třec,\n  { {0x387f000c, 0x60cf01f3, 0xf6790049, 0x00000000}},  //   lfur_, _alcm, _זאַמ,\n  { {0xd1320426, 0x7c3b000c, 0x00000000, 0x00000000}},  //   امر_, _ofur,   ,\n  { {0xa2c10204, 0x602600ed, 0x44390232, 0x00000000}},  //   रॉब्, едба, ccs_,\n  { {0xd00f0054, 0x6e3b014a, 0x6fd60088, 0x00000000}},  // [52a0] ملف_, _şuba, хівц,\n  { {0x7c3b2160, 0x63a40937, 0x4df6007c, 0x00000000}},  //   _afur, _irin, няет,\n  { {0x628e0857, 0x63a4009f, 0xb05b010f, 0x00000000}},  //   mebo, _hrin, _plät,\n  { {0x628e0a2e, 0x63a42161, 0x629c02f1, 0x00000000}},  //   lebo, _krin, ldro,\n  { {0xaaac01f5, 0x00000000, 0x00000000, 0x00000000}},  //   चालक,   ,   ,\n  { {0x629c2162, 0xb05b0b75, 0x7d0b010e, 0x00000000}},  //   ndro, _fläs, algs,\n  { {0x7c3b0016, 0x629c2163, 0x9c830bf8, 0x00000000}},  //   _ffur, idro, ščar,\n  { {0x2578134d, 0x63a4157e, 0xf1b3009b, 0x00000000}},  //   vél_, _orin, רסה_,\n  { {0xb05b01a2, 0x63a400e0, 0x628e0322, 0x00000000}},  //   _klär, _nrin, kebo,\n  { {0x7d02109a, 0x628e2164, 0x78ab2165, 0x00000000}},  //   loos, jebo, _engv,\n  { {0x63a4002d, 0x628e06da, 0x629c0ee6, 0x00000000}},  //   _arin, debo, ddro,\n  { {0x443902d0, 0x629c02ab, 0x7d02044e, 0x00000000}},  //   ucs_, edro, noos,\n  { {0x44390129, 0x63a40035, 0xdb002166, 0x00000000}},  //   rcs_, _crin, _armé,\n  { {0x628e001f, 0x69a40309, 0x6d5c2167, 0x00000000}},  //   gebo, किपी, _ovra,\n  { {0x63a40004, 0x30a7007c, 0x44390232, 0x00000000}},  //   _erin, нрав, pcs_,\n  { {0x629c1904, 0x69d80213, 0x00000000, 0x00000000}},  //   adro, izve,   ,\n  { {0x2906000b, 0x6d5c0207, 0xe31500ed, 0x00000000}},  // [52b0] _mkoa_, _avra, _имињ,\n  { {0xdef803c8, 0x798801c3, 0x7c3b0066, 0x00000000}},  //   ных_, _opdw, _sfur,\n  { {0x2d872168, 0xf6530049, 0x63a4016e, 0x00000000}},  //   ïne_, רצע_, _zrin,\n  { {0x69d82169, 0x00000000, 0x00000000, 0x00000000}},  //   dzve,   ,   ,\n  { {0x6d5c014a, 0x00000000, 0x00000000, 0x00000000}},  //   _evra,   ,   ,\n  { {0x68e2018e, 0xda62007c, 0x212b0022, 0x00000000}},  //   _amod, авши, _hich_,\n  { {0xdef4216a, 0x212b216b, 0x69ce01a2, 0x00000000}},  //   _спры, _kich_, _übel,\n  { {0x629c0036, 0x628e0036, 0x212b00b9, 0x00000000}},  //   zdro, zebo, _jich_,\n  { {0x212b001f, 0x387f19bd, 0x629c0b78, 0x00000000}},  //   _mich_, rfur_, ydro,\n  { {0x2cad01ca, 0x212b0011, 0x2cbf00b5, 0x00000000}},  //   _hned_, _lich_, _houd_,\n  { {0xb9b50447, 0x628e01e3, 0x2cbf216c, 0x00000000}},  //   _جماع, vebo, _koud_,\n  { {0x212b1712, 0x6285010f, 0x32cf014a, 0x00000000}},  //   _nich_, _abho, _rüya_,\n  { {0x7565026c, 0x65680168, 0x62850026, 0x00000000}},  //   ریکہ_, ardh, _bbho,\n  { {0x63a401d6, 0xa24800a1, 0x6b890203, 0x00000000}},  //   _vrin, ڈیکل_, _mpeg,\n  { {0x232700d7, 0x628e216d, 0x212b0082, 0x00000000}},  //   тори_, rebo, _bich_,\n  { {0x628e05d5, 0x55f6009b, 0x7c2d00ca, 0x00000000}},  //   sebo, _במצב_, žarj,\n  { {0x6d5c037e, 0x212b216e, 0x6e3b0107, 0x00000000}},  // [52c0] _svra, _dich_, _đubr,\n  { {0x212b0bc4, 0x7f440065, 0xa1c6007e, 0x00000000}},  //   _eich_, rpiq, _абод,\n  { {0x6b890b33, 0x212b0173, 0x7d020ac2, 0x00000000}},  //   _apeg, _fich_, toos,\n  { {0x0b8a06e1, 0xcb6a0a94, 0xbb46007e, 0x00000000}},  //   дски_, даде_, ведк,\n  { {0x6bd606b4, 0x2bb70061, 0x290d0035, 0x00000000}},  //   ختار, _आपणा, dlea_,\n  { {0x212b02ae, 0xdd9200a6, 0x6e4300ec, 0x00000000}},  //   _zich_, _پور_, _верз,\n  { {0x610c010f, 0xd91a007c, 0x7d020052, 0x00000000}},  //   eßli, мьи_, poos,\n  { {0x2cbf216f, 0x5886007e, 0x0798003b, 0x00000000}},  //   _goud_, тыка, евић_,\n  { {0x6c7b007b, 0x00000000, 0x00000000, 0x00000000}},  //   _קאמפ,   ,   ,\n  { {0x2b460129, 0x291f0020, 0x68e20009, 0x00000000}},  //   mpoc_, amua_, _wmod,\n  { {0xd5b701fb, 0x290d2170, 0x22582171, 0x00000000}},  //   вся_, blea_, dark_,\n  { {0x290d060c, 0x77ca041f, 0x68e20146, 0x00000000}},  //   clea_, _олег_, _umod,\n  { {0x212b2172, 0x29040e0d, 0x212000ca, 0x00000000}},  //   _rich_, moma_, dmih_,\n  { {0x212b08ba, 0x29040059, 0x66e300ed, 0x00000000}},  //   _sich_, loma_, _коча,\n  { {0x7aed028c, 0x31c4078d, 0x212b1b43, 0x00000000}},  //   éati, аств, _pich_,\n  { {0x2904010a, 0xe4d90014, 0x2f140894, 0x00000000}},  //   noma_, _سوخت_, väga_,\n  { {0x212b00f6, 0x30150140, 0x00000000, 0x00000000}},  // [52d0] _vich_, удар,   ,\n  { {0x2cbf00b9, 0x290d002d, 0x29040339, 0x00000000}},  //   _soud_, zlea_, homa_,\n  { {0xa3e7001c, 0x29040006, 0x6e9400ed, 0x00000000}},  //   _येत_, koma_, риху,\n  { {0x0ce10055, 0x60d62173, 0x290401c5, 0x00000000}},  //   যক্ত, chym, joma_,\n  { {0x29042174, 0xfbd00379, 0x692a00b9, 0x00000000}},  //   doma_, يته_, _přen,\n  { {0x499901e0, 0x3f99009d, 0x2cbf040f, 0x00000000}},  //   етия_, _issu_, _woud_,\n  { {0x49bb007a, 0x6d58007f, 0xc8790279, 0x00000000}},  //   باشد_, švar, lişi_,\n  { {0x60cd010a, 0x29040020, 0x2cad0016, 0x00000000}},  //   nkam, goma_, _uned_,\n  { {0x2fc92175, 0x290d1424, 0x291f0023, 0x00000000}},  //   nyag_, rlea_, rmua_,\n  { {0x60cd0127, 0x290d002d, 0x77690032, 0x00000000}},  //   hkam, slea_, rrex,\n  { {0x7d1b0149, 0x60cd0961, 0xf875023c, 0x00000000}},  //   _khus, kkam, _مهاج,\n  { {0xc32900b6, 0xaca30082, 0x60cd0091, 0x00000000}},  //   _זו_, _khốn, jkam,\n  { {0x7d0913e1, 0x225803e1, 0x7d1b2176, 0x00000000}},  //   _mkes, tark_, _mhus,\n  { {0x68e9001f, 0xb05b0039, 0xe6890025, 0x00000000}},  //   lied, _släp, _أنثى_,\n  { {0x60d61241, 0x7d1b006c, 0x60cd0168, 0x00000000}},  //   thym, _ohus, fkam,\n  { {0x68e91031, 0x60cd011c, 0x7d090045, 0x00000000}},  //   nied, gkam, _nkes,\n  { {0xef1a012b, 0x212008f0, 0x10a30242, 0x00000000}},  // [52e0] ема_, rmih_, щитн,\n  { {0x68e9111d, 0x539b00b6, 0x93b700b6, 0x00000000}},  //   hied, _טיפו, _עליו_,\n  { {0xc27b007b, 0x2904107e, 0x6456014a, 0x00000000}},  //   _אריי, yoma_, _keyi,\n  { {0x629e011c, 0x7d1b2177, 0x60cd0253, 0x00000000}},  //   _hapo, _chus, ckam,\n  { {0x629e1dbb, 0xaca3001d, 0x78bb2178, 0x00000000}},  //   _kapo, _chốn, djuv,\n  { {0x67210ce4, 0x7d0900e0, 0x99850087, 0x00000000}},  //   jmlj, _ekes, _sglš_,\n  { {0x68e92179, 0x29040006, 0x4432217a, 0x00000000}},  //   fied, toma_, _ogy_,\n  { {0x6d5e002d, 0x26d90023, 0x68e9005b, 0x00000000}},  //   mspa, ëson_, gied,\n  { {0x6d5e001c, 0x290401d9, 0x3f80217b, 0x00000000}},  //   lspa, roma_, ntiu_,\n  { {0x2904000b, 0xcaa60054, 0x60cd09b6, 0x00000000}},  //   soma_, _حصري, zkam,\n  { {0x68e9217c, 0x752d0207, 0x6d5e217d, 0x00000000}},  //   bied, _piaz, nspa,\n  { {0x68e9217e, 0x799a0263, 0x2ec1007d, 0x00000000}},  //   cied, _istw, _शक्त,\n  { {0x645602b9, 0x60cd0142, 0x752d217f, 0x00000000}},  //   _deyi, vkam, _viaz,\n  { {0x44321bc0, 0x629e0207, 0x53340088, 0x00000000}},  //   _egy_, _capo, серт,\n  { {0x765a1d6e, 0x629e0093, 0x403500ed, 0x00000000}},  //   maty, _dapo, иевс,\n  { {0x64560279, 0x765a014a, 0x60cd007f, 0x00000000}},  //   _geyi, laty, ukam,\n  { {0xce6b004c, 0x3e6b00e3, 0x7aea05fe, 0x00000000}},  // [52f0] еред_, ешен_, kift,\n  { {0x9e15008b, 0xc87901df, 0x7d1b0020, 0x00000000}},  //   адзі, rişi_, _shus,\n  { {0x999e010a, 0x3d9500e3, 0xdd9105f3, 0x00000000}},  //   _metų_, риер, توا_,\n  { {0x629e01d9, 0x6456006b, 0x1df5013d, 0x00000000}},  //   _zapo, _xeyi, _आशीष_,\n  { {0x3f8004bd, 0xeb992180, 0x629e2181, 0x00000000}},  //   ctiu_, тил_, _yapo,\n  { {0x68e90df0, 0x7aea05fe, 0xa96900ed, 0x00000000}},  //   wied, gift, вика_,\n  { {0x68e92182, 0x08d501e0, 0x7d090066, 0x00000000}},  //   tied, иция, _tkes,\n  { {0xaca3001d, 0x7d1b0020, 0x2d8102d4, 0x00000000}},  //   _thốn, _uhus, mthe_,\n  { {0x68e92183, 0x64560263, 0x2d810146, 0x00000000}},  //   ried, _reyi, lthe_,\n  { {0xfaf304e8, 0x68e90036, 0x4585003b, 0x00000000}},  //   _اثر_, sied, агов,\n  { {0x629e000d, 0x68e92184, 0x2d811250, 0x00000000}},  //   _rapo, pied, nthe_,\n  { {0x2d810195, 0x629e0207, 0x03a60242, 0x00000000}},  //   ithe_, _sapo, аимо,\n  { {0x629e027b, 0x64562185, 0x81e30044, 0x00000000}},  //   _papo, _veyi, _ফুল_,\n  { {0xdb000181, 0x6d5e16e5, 0xe5a5005c, 0x00000000}},  //   _irmã, yspa, _вики,\n  { {0x273b2186, 0x7bcb00f6, 0x00000000, 0x00000000}},  //   _hên_, hygu,   ,\n  { {0x6d5e2187, 0x629e2188, 0x6b9b012d, 0x00000000}},  //   vspa, _wapo, _osug,\n  { {0x629e006a, 0x6d5e0866, 0x4127026b, 0x00000000}},  // [5300] _tapo, wspa, рото_,\n  { {0x3f800a01, 0x6d5e1440, 0x20c7010e, 0x00000000}},  //   rtiu_, tspa, _sõit_,\n  { {0x273b001d, 0x2d810051, 0x6d5e0052, 0x00000000}},  //   _lên_, gthe_, uspa,\n  { {0x692a00b9, 0xeb0e0204, 0x00000000, 0x00000000}},  //   _přem, ित्त_,   ,\n  { {0x273b001d, 0x7aea0039, 0x20c7006c, 0x00000000}},  //   _nên_, tift, _võit_,\n  { {0x9966013b, 0x6d5e0b38, 0x4ed5007e, 0x00000000}},  //   атил, pspa, _люст,\n  { {0x7aea0292, 0xaca3001d, 0x2d810051, 0x00000000}},  //   rift, _chồn, cthe_,\n  { {0x273b001d, 0x291d2189, 0x692a218a, 0x00000000}},  //   _bên_, _chwa_, _zřej,\n  { {0x69d50047, 0x765a010a, 0xd90d007a, 0x00000000}},  //   _üzen, taty, ریه_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xdcfc0bd7, 0x765a0006, 0x248900e0, 0x00000000}},  //   _sprę, raty, _pbam_,\n  { {0xf48500a6, 0xdb000035, 0x00000000, 0x00000000}},  //   حادی, _urmâ,   ,\n  { {0x765a131c, 0x38660288, 0x00000000, 0x00000000}},  //   paty, _idor_,   ,\n  { {0x81e80055, 0x00000000, 0x00000000, 0x00000000}},  //   _বড়_,   ,   ,\n  { {0x171b007b, 0xf1a40364, 0x925800ed, 0x00000000}},  //   _שווע, ортн, раст_,\n  { {0x273b001d, 0x4034007c, 0x6b820a76, 0x00000000}},  //   _yên_, жетс, ktog,\n  { {0x645d010a, 0x692a0224, 0x765800b0, 0x00000000}},  // [5310] masi, _přej, _kevy,\n  { {0x427503f4, 0x539c009b, 0xfda7003b, 0x00000000}},  //   _угос, _ייחו, ијем,\n  { {0x20070036, 0x62870190, 0xf1a4004d, 0x00000000}},  //   łni_, mfjo, _дрян,\n  { {0x645d218b, 0x765800b0, 0x2d81218c, 0x00000000}},  //   nasi, _levy, rthe_,\n  { {0x2d8100ea, 0x7ae80022, 0x61fb0180, 0x00000000}},  //   sthe_, _bmdt, ğulu,\n  { {0x645d0149, 0x62950211, 0x76580428, 0x00000000}},  //   hasi, nezo, _nevy,\n  { {0x49930167, 0xceb20049, 0x2d9c0030, 0x00000000}},  //   تیار, _ציל_, ævet_,\n  { {0x645d218d, 0x6b9b0058, 0x39450145, 0x00000000}},  //   jasi, _tsug, _vtls_,\n  { {0xa49b0263, 0x6b821de2, 0x645d095c, 0x00000000}},  //   vlòp, ctog, dasi,\n  { {0x4ec50044, 0x00000000, 0x00000000, 0x00000000}},  //   _এগুল,   ,   ,\n  { {0x645d218e, 0xdb2600d3, 0x09e50044, 0x00000000}},  //   fasi, _اولی, _পুরা,\n  { {0x645d218f, 0x6aa10168, 0x273b001d, 0x00000000}},  //   gasi, _half, _tên_,\n  { {0x6aa106af, 0xb05b0039, 0x39812190, 0x00000000}},  //   _kalf, _poän, lós_,\n  { {0x629507eb, 0x8c1a00b6, 0x6d470022, 0x00000000}},  //   gezo, טורי, _otja,\n  { {0x6aa101aa, 0xf8db03d7, 0x3981042f, 0x00000000}},  //   _malf, _बताय, nós_,\n  { {0x645d06e2, 0xaca30011, 0xc0e315c4, 0x00000000}},  //   casi, _khổn, поск,\n  { {0x6295054e, 0x6d47001e, 0xdb0900b5, 0x00000000}},  // [5320] bezo, _atja, _creë,\n  { {0x692a0224, 0xe45f000c, 0xe29a00aa, 0x00000000}},  //   _přek, gjöf_, _сао_,\n  { {0x0d86012b, 0x3981000c, 0x6b820544, 0x00000000}},  //   слен, jós_, wtog,\n  { {0x6b822191, 0xdd8f0647, 0x26d90023, 0x00000000}},  //   ttog, عون_, ësoj_,\n  { {0xdb0007e4, 0x8c3d014a, 0x6b740088, 0x00000000}},  //   _armá, _başb, ілку,\n  { {0x645d006b, 0x39a70011, 0x2d9c0030, 0x00000000}},  //   zasi, _bđs_, æves_,\n  { {0x6b820006, 0x645d006b, 0xdca60216, 0x00000000}},  //   stog, yasi, _лави,\n  { {0x1d0a012b, 0x6b8200c4, 0x62952192, 0x00000000}},  //   _себи_, ptog, zezo,\n  { {0x645d2193, 0xbb8b009e, 0x00000000, 0x00000000}},  //   vasi, _محلے_,   ,\n  { {0x645d000b, 0x6aa10a18, 0x39811715, 0x00000000}},  //   wasi, _galf, bós_,\n  { {0x645d0004, 0x62950059, 0x39811374, 0x00000000}},  //   tasi, vezo, cós_,\n  { {0xf79a039d, 0xa9262194, 0x00000000, 0x00000000}},  //   _منصب_, _удел,   ,\n  { {0x645d2195, 0x629504eb, 0x00000000, 0x00000000}},  //   rasi, tezo,   ,\n  { {0xadfa006e, 0x80db0061, 0x2f0f01a2, 0x00000000}},  //   ्थान_, नसभे, nügt_,\n  { {0x62952004, 0x645d0f42, 0x692a0224, 0x00000000}},  //   rezo, pasi, _přeh,\n  { {0x957c0046, 0x3ddf0044, 0x316c0027, 0x00000000}},  //   rząd, _বুঝল, ádza_,\n  { {0x78a20020, 0x6d4703b4, 0xcf270025, 0x00000000}},  // [5330] _maov, _stja, مرئي,\n  { {0x63ad005f, 0xf44800a1, 0xd25100a2, 0x00000000}},  //   _iran, _پلیٹ_, _تند_,\n  { {0x4035008b, 0x6aa101c5, 0x00000000, 0x00000000}},  //   _менс, _ralf,   ,\n  { {0x63ad1e1c, 0x78a20107, 0x00000000, 0x00000000}},  //   _kran, _naov,   ,\n  { {0x2d9c0030, 0x25630279, 0x2f0f010f, 0x00000000}},  //   æver_, zıl_, fügt_,\n  { {0x63ad188a, 0x39810010, 0x25630477, 0x00000000}},  //   _mran, tós_, yıl_,\n  { {0xfd13031d, 0x6aa10039, 0x2563006b, 0x00000000}},  //   _فجر_, _valf, xıl_,\n  { {0x63ad020c, 0x3981060d, 0x69d50010, 0x00000000}},  //   _oran, rós_, _üzem,\n  { {0x6aa10090, 0x3ea30087, 0x00000000, 0x00000000}},  //   _talf, _kajt_,   ,\n  { {0x7d0b068f, 0x66e50088, 0x46e90088, 0x00000000}},  //   logs, іона, рдон_,\n  { {0xceb40104, 0x9abc0066, 0x8c3d00e5, 0x00000000}},  //   ליץ_, _tiċr, _gaşc,\n  { {0x81c10055, 0xa50a0072, 0x7d0b00ea, 0x00000000}},  //   ্ছা_, рема_, nogs,\n  { {0x2563011f, 0x68eb0009, 0x63ad0531, 0x00000000}},  //   sıl_, _imgd, _cran,\n  { {0x63ad00c7, 0x78a20645, 0xe5710445, 0x00000000}},  //   _dran, _zaov, _قطب_,\n  { {0x63ad2196, 0xd765026c, 0x33330066, 0x00000000}},  //   _eran, _انڈی, _dixx_,\n  { {0x63ad0a8d, 0xddc70036, 0x2f14006c, 0x00000000}},  //   _fran, _wejś, mägi_,\n  { {0xa3e70061, 0x80ca01f5, 0x04040044, 0x00000000}},  // [5340] _येऊ_, _रवीं, রেজী_,\n  { {0xafdb01e3, 0x26c7007f, 0xd048006b, 0x00000000}},  //   _iføl, _jono_, _əməy,\n  { {0xa2a30061, 0x63ad2041, 0x14af0061, 0x00000000}},  //   _छोट्, _zran, _जोडण,\n  { {0xa3c10061, 0x2eea0066, 0x00000000, 0x00000000}},  //   ूनच_, _wmbf_,   ,\n  { {0x78a20011, 0x7ed60088, 0x69c52197, 0x00000000}},  //   _raov, _дівч, ähen,\n  { {0x4402013d, 0xf96a0764, 0x29002198, 0x00000000}},  //   _लखनऊ_, арий_, čiam_,\n  { {0xa3e70204, 0x00000000, 0x00000000, 0x00000000}},  //   _येई_,   ,   ,\n  { {0x478a0872, 0x1d071376, 0x6cd60025, 0x00000000}},  //   асом_, _деси_, _بقرا,\n  { {0x26c7008e, 0xd6d00025, 0x29180089, 0x00000000}},  //   _bono_, فقة_, ēra_,\n  { {0x63ad0ea9, 0x26c72199, 0x8574007c, 0x00000000}},  //   _rran, _cono_, плох,\n  { {0x957c0036, 0xd6d701fb, 0x26c7219a, 0x00000000}},  //   dząc, іть_, _dono_,\n  { {0x63ad16cf, 0xd05f006b, 0x2ca60544, 0x00000000}},  //   _pran, biqə, ndod_,\n  { {0x26c7157e, 0x63ad006b, 0x18180014, 0x00000000}},  //   _fono_, _qran, _اراک_,\n  { {0x24800023, 0x8c3d026d, 0x00000000, 0x00000000}},  //   _ecim_, _maşa,   ,\n  { {0x63ad0016, 0x692a0224, 0x3ea3219b, 0x00000000}},  //   _wran, _dřev, _rajt_,\n  { {0x63ad00ad, 0x3ea3219c, 0x00000000, 0x00000000}},  //   _tran, _sajt_,   ,\n  { {0x26c70093, 0x7d0b000c, 0x2ca6005b, 0x00000000}},  // [5350] _yono_, vogs, ddod_,\n  { {0xddab219d, 0x957c0046, 0x7f4d006b, 0x00000000}},  //   ител_, cząc, rpaq,\n  { {0x80c70044, 0x26d90023, 0x00000000, 0x00000000}},  //   রোগ্, ësoi_,   ,\n  { {0x8c3d011f, 0x8f350269, 0xd25100a6, 0x00000000}},  //   _başa, _немц, _تنگ_,\n  { {0x21290145, 0x7d0b219e, 0x3ea3219f, 0x00000000}},  //   mmah_, rogs, _tajt_,\n  { {0x7f3a00b6, 0xdbd8000c, 0x21290145, 0x00000000}},  //   _לעשו, ræða, lmah_,\n  { {0x7c970025, 0x00000000, 0x00000000, 0x00000000}},  //   _وشرا,   ,   ,\n  { {0x26c705d3, 0x26de00b0, 0x01fc009b, 0x00000000}},  //   _sono_, ehto_, יפול,\n  { {0xacda0049, 0xf7710025, 0x26c721a0, 0x00000000}},  //   _פֿלי, راة_, _pono_,\n  { {0x212905cd, 0xd05f013f, 0x00000000, 0x00000000}},  //   hmah_, riqə,   ,\n  { {0x38350594, 0x212921a1, 0x5afa0049, 0x00000000}},  //   _енер, kmah_, _פלעצ,\n  { {0x8c3d01f6, 0x656e0051, 0x64410036, 0x00000000}},  //   _yaşa, ábha, ślin,\n  { {0xf74906ea, 0x69ce001f, 0x692a0224, 0x00000000}},  //   _التي_, _über, _přev,\n  { {0x26de0428, 0x68fb010e, 0x00000000, 0x00000000}},  //   chto_, lnud,   ,\n  { {0x76ba009b, 0x957c00b4, 0x00000000, 0x00000000}},  //   _למספ, rząc,   ,\n  { {0x68fb000c, 0xa507005e, 0x2480016c, 0x00000000}},  //   nnud, _неща_, _ucim_,\n  { {0x8e3a0257, 0x75240288, 0x2ca401a3, 0x00000000}},  // [5360] مسار_, _ihiz, _ramd_,\n  { {0x6fb30025, 0x2ca407c8, 0x3ced00d9, 0x00000000}},  //   عملا, _samd_, _amev_,\n  { {0x68fb0190, 0x00000000, 0x00000000, 0x00000000}},  //   knud,   ,   ,\n  { {0x64460fed, 0x8c3d21a2, 0x00000000, 0x00000000}},  //   ncki, _paşa,   ,\n  { {0x2ca621a3, 0xdb0900d4, 0x3cdd013d, 0x00000000}},  //   rdod_, _creï, _खतरे_,\n  { {0x60c40091, 0x05cb013d, 0x442000d9, 0x00000000}},  //   ljim, ाहाब, _mzi_,\n  { {0xd9100123, 0x75240032, 0x61ba0061, 0x00000000}},  //   پیش_, _ohiz, _उपोष,\n  { {0x60c40213, 0x60d60ecb, 0x57b4173a, 0x00000000}},  //   njim, nkym, дбит,\n  { {0x442021a4, 0x3eb80022, 0x00000000, 0x00000000}},  //   _nzi_, _knrt_,   ,\n  { {0xfa6702d3, 0x64460036, 0x75241f34, 0x00000000}},  //   _наук_, ecki, _ahiz,\n  { {0x4420001a, 0xceb3009b, 0xd5ae00a1, 0x00000000}},  //   _azi_, גית_, اہب_,\n  { {0x26de003b, 0x48e3017f, 0x493b00a0, 0x00000000}},  //   shto_, _похв, _הגאו,\n  { {0x60c40107, 0xa81a00a1, 0x00000000, 0x00000000}},  //   djim, _اتار_,   ,\n  { {0xa195007e, 0x7524002d, 0x236d0059, 0x00000000}},  //   магч, _ehiz, šejo_,\n  { {0x44200095, 0x26dc00d9, 0x2f14010e, 0x00000000}},  //   _ezi_, _ilvo_, nägu_,\n  { {0xd5fb00b6, 0x60c40065, 0x657a0145, 0x00000000}},  //   _לפור, gjim, muth,\n  { {0x212921a5, 0x657a154f, 0x00000000, 0x00000000}},  // [5370] rmah_, luth,   ,\n  { {0x692a218a, 0x3f1421a6, 0x290d0020, 0x00000000}},  //   _křes, едус, zoea_,\n  { {0x645f0065, 0x657a0203, 0x00000000, 0x00000000}},  //   _keqi, nuth,   ,\n  { {0x645f0066, 0x60d60253, 0x00000000, 0x00000000}},  //   _jeqi, ckym,   ,\n  { {0xfaa500ed, 0x6f02009d, 0x0b440088, 0x00000000}},  //   дало, éocc, енін,\n  { {0x4fd6009b, 0x657a00e7, 0x00000000, 0x00000000}},  //   _חושב_, kuth,   ,\n  { {0x3f890c0e, 0xdd94007e, 0x644621a7, 0x00000000}},  //   ltau_, _пары, ycki,\n  { {0x23690119, 0x26dc0181, 0x00000000, 0x00000000}},  //   _ovaj_, _alvo_,   ,\n  { {0x68fb0089, 0x3f8901a3, 0x66e5004d, 0x00000000}},  //   rnud, ntau_, допа,\n  { {0x68fb1526, 0x60c4016c, 0x2b4d00fa, 0x00000000}},  //   snud, zjim, _itec_,\n  { {0xf7710167, 0x23690521, 0x692a00b9, 0x00000000}},  //   راک_, _avaj_, _přet,\n  { {0xf9900025, 0x661d00b9, 0x00000000, 0x00000000}},  //   _حبك_, řsko,   ,\n  { {0x366902e9, 0x94d3007e, 0x78a901c5, 0x00000000}},  //   _дало_, тоўц, mdev,\n  { {0xc72401fb, 0x78a9018d, 0xe8e00011, 0x00000000}},  //   _здій, ldev, ượt_,\n  { {0x692a00b9, 0x7c3b16bf, 0x60c40925, 0x00000000}},  //   _třet, _ogur, tjim,\n  { {0x387f009f, 0x78a90065, 0x6ee00a35, 0x00000000}},  //   ngur_, ndev, _möbe,\n  { {0x3f89003b, 0x60d60006, 0x442021a8, 0x00000000}},  // [5380] gtau_, rkym, _uzi_,\n  { {0x63a4006a, 0x2900010a, 0x7c3b002d, 0x00000000}},  //   _isin, čiai_, _agur,\n  { {0xdb09008e, 0xc0e6007e, 0x6ee0014a, 0x00000000}},  //   _creí, _жонк, _nöbe,\n  { {0xdb000010, 0x628e21a9, 0x63a400e0, 0x00000000}},  //   _ismé, lfbo, _ksin,\n  { {0xab9a0167, 0xbb4300ed, 0x3f890016, 0x00000000}},  //   تخار_, вечк, ctau_,\n  { {0x629c0142, 0x63a4000b, 0xed5a21aa, 0x00000000}},  //   nero, _msin, _мог_,\n  { {0x78a9040f, 0x60dd0009, 0x7c3b0066, 0x00000000}},  //   fdev, _ylsm, _fgur,\n  { {0x2b58026c, 0x63a421ab, 0x387f21ac, 0x00000000}},  //   _فیصد_, _osin, ggur_,\n  { {0x63a40d33, 0x00000000, 0x00000000, 0x00000000}},  //   _nsin,   ,   ,\n  { {0x629c19da, 0x692a0224, 0x66cd0027, 0x00000000}},  //   jero, _přes, _súkr,\n  { {0x629c21ad, 0x9e7700b6, 0x63a4033b, 0x00000000}},  //   dero, וגיה_, _asin,\n  { {0x657a002a, 0x6aa8005b, 0x00000000, 0x00000000}},  //   ruth, _hadf,   ,\n  { {0x629c21ae, 0x63a40047, 0x2b4d00d4, 0x00000000}},  //   fero, _csin, _xtec_,\n  { {0x81cd0055, 0xf793008b, 0x7f44006b, 0x00000000}},  //   _শেষ_, _рашэ, dqiq,\n  { {0x8c3d01f6, 0x63a421af, 0x23c50065, 0x00000000}},  //   _başl, _esin, _bëjë_,\n  { {0x629c0288, 0xe7d20316, 0x00000000, 0x00000000}},  //   aero, _तथाप,   ,\n  { {0x6d4e001e, 0x629c21b0, 0x6aba040f, 0x00000000}},  // [5390] _atba, bero, _ontf,\n  { {0xdef803c8, 0xbf150025, 0x78a90089, 0x00000000}},  //   мых_, رواب, zdev,\n  { {0x3f890016, 0x2d8700f4, 0x84e80123, 0x00000000}},  //   stau_, îne_, _رفیق_,\n  { {0xd010026c, 0x3f890035, 0x200f010e, 0x00000000}},  //   الے_, ptau_, ügis_,\n  { {0x0076009b, 0xdcfc0089, 0x6aa80203, 0x00000000}},  //   _אתרי_, _aprē, _badf,\n  { {0x2b4d01a3, 0x6aa8005b, 0x21390145, 0x00000000}},  //   _vtec_, _cadf, _hish_,\n  { {0x8c3d038c, 0xf9910879, 0x6d5c018e, 0x00000000}},  //   _yaşl, ابت_, _gwra,\n  { {0x6aba010f, 0x764a0190, 0x78a90026, 0x00000000}},  //   _entf, _affy, udev,\n  { {0x78a90089, 0x62850142, 0x629c21b1, 0x00000000}},  //   rdev, _ocho, yero,\n  { {0x629c002d, 0x78a9004a, 0x21390d28, 0x00000000}},  //   xero, sdev, _lish_,\n  { {0x63a40061, 0x78a900d4, 0x67380059, 0x00000000}},  //   _ssin, pdev, _divj,\n  { {0x628521b2, 0x629c0036, 0x21390ede, 0x00000000}},  //   _acho, wero, _nish_,\n  { {0x36d501fe, 0x9343007c, 0xdcf50089, 0x00000000}},  //   _подр, лняе, _apzī,\n  { {0xe0df01aa, 0x7ae321b3, 0x21390d28, 0x00000000}},  //   _alò_, nhnt, _aish_,\n  { {0x629c1632, 0x91e60517, 0x412a0920, 0x00000000}},  //   rero, хове, зово_,\n  { {0x63a4011c, 0xe45f0c49, 0x67381922, 0x00000000}},  //   _tsin, ljön_, _zivj,\n  { {0x63a40038, 0x213921b4, 0x629c04cb, 0x00000000}},  // [53a0] _usin, _dish_, pero,\n  { {0xef1721b5, 0x629c0065, 0x213901d6, 0x00000000}},  //   ему_, qero, _eish_,\n  { {0x213900ab, 0x8c3d014a, 0x6aa801a2, 0x00000000}},  //   _fish_, _taşl, _radf,\n  { {0x71a3007e, 0x63f70014, 0x16360049, 0x00000000}},  //   _саюз, _آفیس_, גנער_,\n  { {0x7bdd006b, 0xbc67023c, 0x6aa801c3, 0x00000000}},  //   _üsul, رمون_, _padf,\n  { {0x61050006, 0x39a61649, 0x77690203, 0x00000000}},  //   mėla, ешив, dsex,\n  { {0x7c960822, 0x6ee00047, 0x00000000, 0x00000000}},  //   _прац, _több,   ,\n  { {0x3eaa010f, 0x673821b6, 0x38af0010, 0x00000000}},  //   _habt_, _sivj, yörű_,\n  { {0xfce3007c, 0xdb0900f6, 0xa09b00a3, 0x00000000}},  //   _сото, _freà, ליקט,\n  { {0xc66a007c, 0x00000000, 0x00000000, 0x00000000}},  //   чшие_,   ,   ,\n  { {0xd90f009e, 0x00000000, 0x00000000, 0x00000000}},  //   _گیٹ_,   ,   ,\n  { {0x628505af, 0x26d90065, 0x26c300f8, 0x00000000}},  //   _scho, ësor_, öjor_,\n  { {0x2139000a, 0x00000000, 0x00000000, 0x00000000}},  //   _rish_,   ,   ,\n  { {0x2900010a, 0x24710011, 0x00000000, 0x00000000}},  //   čiau_, ễm_,   ,\n  { {0x59a6013d, 0xd627003b, 0x21390023, 0x00000000}},  //   _कैमर, _поље_, _pish_,\n  { {0x62850036, 0x00000000, 0x00000000, 0x00000000}},  //   _wcho,   ,   ,\n  { {0x2d9821b7, 0x62850e6d, 0xd2510014, 0x00000000}},  // [53b0] _apre_, _tcho, _پنج_,\n  { {0x62850016, 0x2139180b, 0x4ed40088, 0x00000000}},  //   _ucho, _wish_, люєт,\n  { {0x26ce21b8, 0x21390ede, 0x00000000, 0x00000000}},  //   _mofo_, _tish_,   ,\n  { {0x2b490285, 0xbc19007e, 0x776900fa, 0x00000000}},  //   íaco_, мілі_, ysex,\n  { {0x5c140a78, 0xdb0921b9, 0x00000000, 0x00000000}},  //   льшу, _areá,   ,\n  { {0xb4ce0204, 0xbb520025, 0x60cf0082, 0x00000000}},  //   _शक्_, جنوب, _hocm,\n  { {0x692a00b9, 0xdb09004a, 0x00000000, 0x00000000}},  //   _přep, _creá,   ,\n  { {0x0c720014, 0x7769053d, 0x6b89002b, 0x00000000}},  //   _نگهد, tsex, _tqeg,\n  { {0x2d04008b, 0x3a3e0009, 0x00000000, 0x00000000}},  //   _сярг, _fgtp_,   ,\n  { {0x644d0191, 0x776902ec, 0x60cf21ba, 0x00000000}},  //   _afai, rsex, _locm,\n  { {0xa50a026b, 0x776900c4, 0xb8950025, 0x00000000}},  //   дена_, ssex, _للاع,\n  { {0x434600e3, 0x81e00044, 0xe45f00f8, 0x00000000}},  //   кемв, _দখল_, sjön_,\n  { {0xe72e00ed, 0x26ce088a, 0x6ec40204, 0x00000000}},  //   _ве_, _fofo_, रामु,\n  { {0x8c3d011f, 0xd25200a1, 0xf1aa0014, 0x00000000}},  //   _başk, شنر_, وازه_,\n  { {0x45d2098c, 0x644d0016, 0x3f99012d, 0x00000000}},  //   _војс, _ffai, _apsu_,\n  { {0xdd1c007f, 0x8c3d013f, 0x00000000, 0x00000000}},  //   ršūn, _daşk,   ,\n  { {0x1e860256, 0x2d98000d, 0x7ae10048, 0x00000000}},  // [53c0] клам, _spre_, _ollt,\n  { {0xd37b00a3, 0xdfcf0025, 0x321a197c, 0x00000000}},  //   _קריט, غيل_, _typy_,\n  { {0xdca6007c, 0x254c013e, 0x181e006e, 0x00000000}},  //   кажи, _těle_, _पर्व_,\n  { {0x7ae1091a, 0x78ab01d6, 0x3ce00048, 0x00000000}},  //   _allt, _nagv, óiv_,\n  { {0x3eaa0030, 0x3eab00b0, 0x00000000, 0x00000000}},  //   _tabt_, öitä_,   ,\n  { {0x5b13007e, 0xdb0903fd, 0x00000000, 0x00000000}},  //   аміт, _preá,   ,\n  { {0x3f8000c4, 0xa9c3005e, 0x78ab0190, 0x00000000}},  //   luiu_, исък, _bagv,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xbb460a1e, 0x3f8000c4, 0x00000000, 0x00000000}},  //   _резк, nuiu_,   ,\n  { {0xb9960025, 0x00000000, 0x00000000, 0x00000000}},  //   _للطب,   ,   ,\n  { {0x24f900a5, 0x63b60022, 0x00000000, 0x00000000}},  //   енны_, _aryn,   ,\n  { {0x7d0221bb, 0x63b6056d, 0x29000006, 0x00000000}},  //   nnos, _bryn, čias_,\n  { {0x69d5011f, 0x63b60016, 0x5694007e, 0x00000000}},  //   _üzer, _cryn, _балт,\n  { {0x7d0221bc, 0x60cf04df, 0x78ab01ed, 0x00000000}},  //   hnos, _socm, _zagv,\n  { {0x69d80047, 0x68e20146, 0x7d020b79, 0x00000000}},  //   nyve, _klod, knos,\n  { {0x7d020161, 0x63b60ee6, 0x863700b3, 0x00000000}},  //   jnos, _fryn, _ברוב_,\n  { {0x3f80153d, 0x63b60fdd, 0xb4df013d, 0x00000000}},  // [53d0] guiu_, _gryn, णसी_,\n  { {0x64490006, 0x628911af, 0x8c3d00e5, 0x00000000}},  //   žeid, đeos, _iaşi,\n  { {0x60cf001a, 0x63ba0089, 0x68e200fa, 0x00000000}},  //   _tocm, ātne, _olod,\n  { {0x3f8000c4, 0x657a0048, 0x69b80204, 0x00000000}},  //   buiu_, irth, ्मनी,\n  { {0x64410036, 0x24890145, 0x00000000, 0x00000000}},  //   śliw, _mcam_,   ,\n  { {0x8c3d21bd, 0xa9270027, 0x28c50316, 0x00000000}},  //   _maşi, _obľú, वाभि,\n  { {0x7d021d15, 0x69d80429, 0x5f100061, 0x00000000}},  //   bnos, gyve, तकर्_,\n  { {0x3ea10004, 0x7d020027, 0x68e20016, 0x00000000}},  //   leht_, cnos, _clod,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x68e2009d, 0x248900fa, 0x00000000, 0x00000000}},  //   _elod, _acam_,   ,\n  { {0x2cbf08c8, 0xb955005e, 0x2d810087, 0x00000000}},  //   _knud_, _свещ, nuhe_,\n  { {0x63b6018e, 0x78a000f6, 0x2a650288, 0x00000000}},  //   _pryn, cemv, _helb_,\n  { {0x657a0051, 0x2d81010f, 0x2a65002b, 0x00000000}},  //   arth, huhe_, _kelb_,\n  { {0x6449049a, 0xa6b4005e, 0x877a01ce, 0x00000000}},  //   ñeir, _всъщ, _נאצי,\n  { {0x7d02157e, 0x91e300ed, 0xdb0900fa, 0x00000000}},  //   ynos, боре, _ereç,\n  { {0xc48602a8, 0x205501e0, 0x63b6007f, 0x00000000}},  //   _слик, итур, _tryn,\n  { {0xd36f0025, 0x291f21be, 0x8c3d019a, 0x00000000}},  // [53e0] _فهي_, ilua_, _faşi,\n  { {0x3ea1010f, 0x7d02026e, 0x3f8000fa, 0x00000000}},  //   geht_, wnos, ruiu_,\n  { {0xd83e0006, 0x6b9b00f6, 0x3945009d, 0x00000000}},  //   ščio_, _apug, _nuls_,\n  { {0x0b8a0265, 0x5c060878, 0x00000000, 0x00000000}},  //   ески_, ляла,   ,\n  { {0x62810489, 0x254c00b9, 0x7af800b9, 0x00000000}},  //   ólog, _měla_, tivt,\n  { {0x7d02041a, 0x68e221bf, 0x69d8205a, 0x00000000}},  //   snos, _slod, tyve,\n  { {0x7d020387, 0x39450a39, 0x78a000ea, 0x00000000}},  //   pnos, _culs_, temv,\n  { {0x58d40001, 0xd90d02fd, 0x00000000, 0x00000000}},  //   роит, ویل_,   ,\n  { {0x657a005b, 0x68e200d9, 0x00000000, 0x00000000}},  //   wrth, _vlod,   ,\n  { {0xd9460140, 0x2a6501a2, 0x6b821b50, 0x00000000}},  //   _бежи, _gelb_, muog,\n  { {0x6b821f5a, 0x9e7b0049, 0x21200f3a, 0x00000000}},  //   luog, ענטפ, klih_,\n  { {0xdb0902d5, 0x657a0051, 0x2db70049, 0x00000000}},  //   _preç, rrth, אלטן_,\n  { {0xf3ff00c4, 0x21200e0d, 0x6b82007f, 0x00000000}},  //   raão_, dlih_, nuog,\n  { {0xf41f00f8, 0x00000000, 0x00000000, 0x00000000}},  //   ffär_,   ,   ,\n  { {0x31c40001, 0x8c3d006b, 0x290401d6, 0x00000000}},  //   бств, _vaşi, onma_,\n  { {0x6ad10061, 0x905509b2, 0x2489004a, 0x00000000}},  //   _तक्र, рвац, _ucam_,\n  { {0x81cd0055, 0x3ea1010f, 0x42550014, 0x00000000}},  // [53f0] _শেখ_, teht_, _پنجر,\n  { {0x3866002a, 0x212013e1, 0x26de21c0, 0x00000000}},  //   _leor_, alih_, nkto_,\n  { {0x7127004b, 0x7095008b, 0x2cbf0173, 0x00000000}},  //   _مرحل, _канф, _pnud_,\n  { {0x4c9515c4, 0x644f003b, 0x629521c1, 0x00000000}},  //   ридс, ncci, lfzo,\n  { {0xfb35007e, 0x60cd0943, 0xda65051f, 0x00000000}},  //   андэ, mjam, авли,\n  { {0x450b0055, 0x628700f8, 0x60cd21c2, 0x00000000}},  //   রতিক_, ngjo, ljam,\n  { {0x60cd010a, 0x6ee021c3, 0x09e50920, 0x00000000}},  //   ojam, _möbl, ройн,\n  { {0x60cd04cb, 0x6d55002d, 0x4429000a, 0x00000000}},  //   njam, _itza, _oza_,\n  { {0x7d1b022b, 0x6d4721c4, 0x442921c5, 0x00000000}},  //   _ikus, _huja, _nza_,\n  { {0x6d47195b, 0x59670265, 0x8c3d011f, 0x00000000}},  //   _kuja, _бъда, _başv,\n  { {0x442901aa, 0xe4c60f71, 0x28c5013d, 0x00000000}},  //   _aza_, айни, वादि,\n  { {0x38690359, 0x6d47006c, 0x6aa31297, 0x00000000}},  //   _þar_, _muja, lenf,\n  { {0x7d090243, 0x8934002c, 0x68e921c6, 0x00000000}},  //   _mjes, _اعلا, mhed,\n  { {0x60cd001e, 0x6aa308db, 0x7e6700b9, 0x00000000}},  //   ejam, nenf, _nejp,\n  { {0xa06a0c4e, 0x7d1b02db, 0x4429002d, 0x00000000}},  //   кава_, _okus, _eza_,\n  { {0x752d002b, 0x68e91244, 0x7d090065, 0x00000000}},  //   _ghaz, nhed, _njes,\n\n  { {0x0e6601f9, 0x27ed21c7, 0x7c2921c8, 0x00000000}},  // [5400] икан, nzen_, _nzer,\n  { {0x4420011f, 0x63a9011f, 0x2120092f, 0x00000000}},  //   _iyi_, çene, slih_,\n  { {0x7c29005f, 0x6aa321c9, 0xc27b00a3, 0x00000000}},  //   _azer, denf, _בריי,\n  { {0x44201fdb, 0xf76706dd, 0x6d47007f, 0x00000000}},  //   _kyi_, _وا_, _duja,\n  { {0x7c290046, 0x27ed02ae, 0x6f170061, 0x00000000}},  //   _czer, jzen_, boxc,\n  { {0x6aa31582, 0x7c290089, 0x27ed21ca, 0x00000000}},  //   genf, _dzer, dzen_,\n  { {0x38660211, 0x7c291a19, 0x27ed00b5, 0x00000000}},  //   _peor_, _ezer, ezen_,\n  { {0x68e921cb, 0x68fb0207, 0xa3e6007d, 0x00000000}},  //   ghed, giud, पना_,\n  { {0x6d400058, 0xb5fc002b, 0x656301f3, 0x00000000}},  //   _iima, maġi, _awnh,\n  { {0x6d4021cc, 0x7d1b00b9, 0x752d0c6a, 0x00000000}},  //   _hima, _zkus, _shaz,\n  { {0x6d40000b, 0x386600c4, 0x752d0085, 0x00000000}},  //   _kima, _teor_, _phaz,\n  { {0x68e90016, 0x6d4001a3, 0x68fb21cd, 0x00000000}},  //   ched, _jima, ciud,\n  { {0xdcfc001e, 0x6d40014a, 0x645d007f, 0x00000000}},  //   _aprī, _mima, rbsi,\n  { {0x6d40011c, 0x35f70014, 0xc207003b, 0x00000000}},  //   _lima, ارید_, аџби,\n  { {0x60cd0129, 0xc1050025, 0x628716aa, 0x00000000}},  //   tjam, موسي, rgjo,\n  { {0x6d4001d9, 0x6d470209, 0x9553007a, 0x00000000}},  //   _nima, _ruja, _بخوا,\n  { {0x44290526, 0x60cd21ce, 0x692a00b9, 0x00000000}},  // [5410] _uza_, rjam, _břez,\n  { {0x63ad0811, 0x6d4704bd, 0x6d4021cf, 0x00000000}},  //   _isan, _puja, _aima,\n  { {0x7c29182e, 0x7d0921d0, 0x6d400093, 0x00000000}},  //   _szer, _pjes, _bima,\n  { {0xbd1801fb, 0x6d40023a, 0x6d4701ee, 0x00000000}},  //   ації_, _cima, _vuja,\n  { {0x7c200bc4, 0x6d400149, 0x8c3d001a, 0x00000000}},  //   _cymr, _dima, _naşt,\n  { {0x63ad0020, 0x6d40007f, 0x6d4700e7, 0x00000000}},  //   _msan, _eima, _tuja,\n  { {0xa3a9013d, 0x7d090243, 0x6aa321d1, 0x00000000}},  //   _गैस_, _tjes, renf,\n  { {0x27ed09ce, 0x7d1b21d2, 0x6d40023a, 0x00000000}},  //   tzen_, _ukus, _gima,\n  { {0x7c20018e, 0x8aa701f9, 0x68e91650, 0x00000000}},  //   _gymr, _вред, rhed,\n  { {0x39b5001e, 0x27ed010f, 0x06c90783, 0x00000000}},  //   _tās_, rzen_, угой_,\n  { {0x63ad097e, 0x4426001e, 0x99d90054, 0x00000000}},  //   _asan, _šo_, _حواء_,\n  { {0x6d4021d3, 0x7d190036, 0x03a6022a, 0x00000000}},  //   _xima, nows, бимо,\n  { {0x386d05b7, 0x69cc0035, 0x00000000, 0x00000000}},  //   maer_, ăneş,   ,\n  { {0x386d01d6, 0x63ad0022, 0x8c1a00b3, 0x00000000}},  //   laer_, _dsan, רושי,\n  { {0x63ad21d4, 0x41b50265, 0x69dc011f, 0x00000000}},  //   _esan, остт, _üret,\n  { {0x6f1c012d, 0xe3b21739, 0x8c3d0095, 0x00000000}},  //   _skrc, _فرخ_, _yaşt,\n  { {0x6d4021d5, 0x4426001d, 0x692a00b9, 0x00000000}},  // [5420] _rima, _áo_, _přez,\n  { {0x52aa012b, 0x386d005b, 0x00000000, 0x00000000}},  //   _свом_, haer_,   ,\n  { {0x6d400173, 0xdd8f0439, 0x00000000, 0x00000000}},  //   _pima, فول_,   ,\n  { {0x237f0b41, 0xfb1900a1, 0x61e10190, 0x00000000}},  //   šuje_, یروں_, ølle,\n  { {0x6d400145, 0x00000000, 0x00000000, 0x00000000}},  //   _vima,   ,   ,\n  { {0x3eb10032, 0x6e3a000c, 0x6f1c11af, 0x00000000}},  //   _gazt_, _útbo, _ukrc,\n  { {0xa96700e1, 0x6d4021d6, 0x7d1900b4, 0x00000000}},  //   бија_, _tima, bows,\n  { {0x6d4021d7, 0xa3a90061, 0x386d21d8, 0x00000000}},  //   _uima, _गईल_, gaer_,\n  { {0x7b0721d9, 0x00000000, 0x00000000, 0x00000000}},  //   órtá,   ,   ,\n  { {0xb6c60057, 0x67530054, 0x6d41009d, 0x00000000}},  //   ссий, أخير, _élar,\n  { {0x63ad00b4, 0x00000000, 0x00000000, 0x00000000}},  //   _ssan,   ,   ,\n  { {0x6fc801f5, 0x63ad00b9, 0x499000a1, 0x00000000}},  //   रमां, _psan, _فیڈر,\n  { {0x254c00b9, 0x6354013e, 0x28c5006e, 0x00000000}},  //   _tělo_, věný, वारि,\n  { {0x3f801460, 0x61050006, 0x248d0036, 0x00000000}},  //   driu_, mėli, żem_,\n  { {0x31c400e1, 0xa3a9006e, 0x61050006, 0x00000000}},  //   пств, _गैर_, lėli,\n  { {0x63ad08e3, 0x3f8000f6, 0x00000000, 0x00000000}},  //   _tsan, friu_,   ,\n  { {0x2ca6006c, 0x61050006, 0xa49b0129, 0x00000000}},  // [5430] deod_, nėli, riòd,\n  { {0xfbc30044, 0x00000000, 0x00000000, 0x00000000}},  //   ্নমত,   ,   ,\n  { {0x957c0046, 0xf5490082, 0x7d1900b4, 0x00000000}},  //   cząt, _lấn_, tows,\n  { {0x3f8000c4, 0x2d93002d, 0x61050006, 0x00000000}},  //   briu_, rtxe_, kėli,\n  { {0x7d190036, 0x3f800129, 0xa2be0061, 0x00000000}},  //   rows, criu_, शाच्,\n  { {0x61050006, 0x386d0016, 0x3ea50325, 0x00000000}},  //   dėli, waer_, _últ_,\n  { {0xda7809b5, 0x28c500e8, 0x272b00ea, 0x00000000}},  //   сяч_, वालि, jøna_,\n  { {0xa3a9013d, 0xf5490082, 0x00000000, 0x00000000}},  //   _गईं_, _bấn_,   ,\n  { {0x386d004e, 0x98be001a, 0xf5490082, 0x00000000}},  //   raer_, _sută_, _cấn_,\n  { {0x81c20044, 0x0a6800e2, 0xf5490082, 0x00000000}},  //   ্নত_, _грци_, _dấn_,\n  { {0x64a60264, 0x7ac401ab, 0x00000000, 0x00000000}},  //   оана, _эсте,   ,\n  { {0xf2c900b6, 0x657c11ea, 0x399300c4, 0x00000000}},  //   _בע_, árha, mãs_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7b1f00c4, 0x55e5014c, 0xe75601fa, 0x00000000}},  //   cêut, _молб, _بلوغ_,\n  { {0xc5d50822, 0x00000000, 0x00000000, 0x00000000}},  //   _філь,   ,   ,\n  { {0x3f800c56, 0xafe60194, 0x957c0036, 0x00000000}},  //   triu_, ообл, rząt,\n  { {0x254501c5, 0x00000000, 0x00000000, 0x00000000}},  // [5440] _vēlu_,   ,   ,\n  { {0x3f8000c4, 0x00000000, 0x00000000, 0x00000000}},  //   rriu_,   ,   ,\n  { {0x412a0088, 0x6da60025, 0x00000000, 0x00000000}},  //   _воно_, تمام,   ,\n  { {0x0c2600aa, 0x3f8021da, 0xc7b90010, 0x00000000}},  //   омен, priu_, kvő_,\n  { {0x8c3d005f, 0x00000000, 0x00000000, 0x00000000}},  //   _başq,   ,   ,\n  { {0xe81d013d, 0x61050006, 0x00000000, 0x00000000}},  //   _पड़ा_, vėli,   ,\n  { {0xfce6013b, 0x8c3d006b, 0x00000000, 0x00000000}},  //   _дово, _daşq,   ,\n  { {0x6d5e00b0, 0x1d0a003b, 0x394221db, 0x00000000}},  //   mppa, _теби_, öks_,\n  { {0xc6f801fb, 0x629e00ca, 0x6d5e0052, 0x00000000}},  //   йних_, _obpo, lppa,\n  { {0xf549001d, 0xd6da1447, 0x35f407e1, 0x00000000}},  //   _vấn_, рти_, зпор,\n  { {0x81df0055, 0x9405006b, 0xbb3b0049, 0x00000000}},  //   _দেন_, ələ_, _כעמי,\n  { {0xf549001d, 0x98a6013b, 0x98be0006, 0x00000000}},  //   _tấn_, _фиде, _butą_,\n  { {0x25a90521, 0x7b1f00c4, 0x629e0022, 0x00000000}},  //   _ćale_, pêut, _bbpo,\n  { {0x050b0044, 0xdb00010f, 0x00000000, 0x00000000}},  //   রতের_, _ermö,   ,\n  { {0xb5fc002b, 0x6b82088f, 0x306b01fc, 0x00000000}},  //   taġu, hrog, ијан_,\n  { {0x6ab70061, 0x394c00f6, 0xb97b0097, 0x00000000}},  //   _आफ्र, _muds_, ינלי,\n  { {0xd8d70049, 0x00000000, 0x00000000, 0x00000000}},  // [5450] קומט_,   ,   ,\n  { {0x394c01d6, 0x623500c0, 0x00000000, 0x00000000}},  //   _ouds_, _непу,   ,\n  { {0x6d5e00e0, 0xde190025, 0x00000000, 0x00000000}},  //   gppa, حقات_,   ,\n  { {0x6f0e0022, 0x272b00ea, 0x00000000, 0x00000000}},  //   _ejbc, jønn_,   ,\n  { {0xef9300e9, 0x7ba70025, 0x6b82060d, 0x00000000}},  //   _زیاد, تصام, grog,\n  { {0x399300c4, 0x394c21dc, 0x00000000, 0x00000000}},  //   tãs_, _buds_,   ,\n  { {0x26c90011, 0xc27c01ce, 0x3ebe01e5, 0x00000000}},  //   _đao_, ברוי, _ótta_,\n  { {0xab9500ed, 0x9d1801ab, 0x88c91ba8, 0x00000000}},  //   _набљ, _дост_, слив_,\n  { {0x236901aa, 0x6b820133, 0x00000000, 0x00000000}},  //   _nwaj_, crog,   ,\n  { {0xb05b0039, 0x00000000, 0x00000000, 0x00000000}},  //   _snäl,   ,   ,\n  { {0x394c1861, 0xd7c90014, 0x7d0b0082, 0x00000000}},  //   _guds_, _گوشه_, ongs,\n  { {0xa50a00ed, 0x499a009b, 0x00000000, 0x00000000}},  //   сема_, _לשעב,   ,\n  { {0xddd50010, 0x7d0b21dd, 0x00000000, 0x00000000}},  //   _mező, ings,   ,\n  { {0x78a900ea, 0xfbd2034e, 0x8c1a00b3, 0x00000000}},  //   leev, עתם_, מורי,\n  { {0x26c721de, 0x52b9007e, 0x81df0044, 0x00000000}},  //   _inno_, цыяў_, _দেব_,\n  { {0x6b821a90, 0x00000000, 0x00000000, 0x00000000}},  //   yrog,   ,   ,\n  { {0x8fa301ab, 0x00000000, 0x00000000, 0x00000000}},  // [5460] нате,   ,   ,\n  { {0x63a421df, 0x00000000, 0x00000000, 0x00000000}},  //   _ipin,   ,   ,\n  { {0x32db009b, 0x6b820696, 0xfbd200a1, 0x00000000}},  //   _החינ, wrog, کتا_,\n  { {0x3157007b, 0x6b820209, 0x629c0168, 0x00000000}},  //   _מיטן_, trog, lfro,\n  { {0xaac7013d, 0x26c71372, 0x394c005b, 0x00000000}},  //   लांक, _onno_, _suds_,\n  { {0x628e0039, 0x63a40020, 0x629c051b, 0x00000000}},  //   ngbo, _mpin, nfro,\n  { {0xf5490011, 0xa96700ec, 0x6da30069, 0x00000000}},  //   _bấm_, пија_, _пира,\n  { {0x26c70198, 0x6b820056, 0x6d5c00bb, 0x00000000}},  //   _anno_, prog, _itra,\n  { {0x6d4e011c, 0x7d021ac4, 0x629c0203, 0x00000000}},  //   _huba, mios, kfro,\n  { {0x6d4e000b, 0x7d020020, 0x3ce61a2d, 0x00000000}},  //   _kuba, lios, lkov_,\n  { {0x6d4e21e0, 0x63a40052, 0x18a6007c, 0x00000000}},  //   _juba, _apin, _нажм,\n  { {0x7d020036, 0x3ce621e1, 0x6aaa0052, 0x00000000}},  //   nios, nkov_, leff,\n  { {0xa8470318, 0x6d4e0004, 0x629c074e, 0x00000000}},  //   _علوم_, _luba, ffro,\n  { {0x569302a8, 0x6d5c21e2, 0xa77b00b6, 0x00000000}},  //   _зашт, _otra, _פרופ,\n  { {0x63a421e3, 0xa69b009b, 0x39460093, 0x00000000}},  //   _epin, _השופ, _kios_,\n  { {0x6aaa00bb, 0x7d020032, 0x7bc001e5, 0x00000000}},  //   heff, jios, _ormu,\n  { {0x6d5c1ffc, 0x7d02006b, 0x8498006d, 0x00000000}},  // [5470] _atra, dios, _رئيس_,\n  { {0x629c00d9, 0x6aaa0146, 0x39460eb3, 0x00000000}},  //   cfro, jeff, _lios_,\n  { {0x6d4e21e4, 0x7bc0006c, 0x7d020197, 0x00000000}},  //   _cuba, _armu, fios,\n  { {0xe81d0061, 0x6d5c0048, 0x39460048, 0x00000000}},  //   _पडला_, _dtra, _nios_,\n  { {0x6d5c21e5, 0x21290149, 0x6f1e00f6, 0x00000000}},  //   _etra, mlah_, bopc,\n  { {0x21290127, 0x6d5c0009, 0x99d40014, 0x00000000}},  //   llah_, _ftra, کتها,\n  { {0x7bc00b7c, 0x6d4e09f3, 0x78a901c3, 0x00000000}},  //   _ermu, _guba, teev,\n  { {0x7d020211, 0x2129027e, 0x8c3d006b, 0x00000000}},  //   cios, nlah_, _abşe,\n  { {0x39460ac6, 0x78a90146, 0x6d5c01dc, 0x00000000}},  //   _dios_, reev, _ztra,\n  { {0x212921e6, 0x6d4e0f00, 0x6b8b04ce, 0x00000000}},  //   hlah_, _yuba, mugg,\n  { {0x34aa0264, 0x6d5c071b, 0x394621e7, 0x00000000}},  //   овно_, _xtra, _fios_,\n  { {0x59a6013d, 0x69c10032, 0x63a410e8, 0x00000000}},  //   _कैटर, _irle, _ppin,\n  { {0x4c9a00b3, 0x6b8b0433, 0x2129013e, 0x00000000}},  //   חברו, nugg, dlah_,\n  { {0x7d020207, 0x66050735, 0x6d5a00f4, 0x00000000}},  //   zios, _опла, _étag,\n  { {0x6b8b032e, 0x290d0cb6, 0x3ced006c, 0x00000000}},  //   hugg, onea_, _olev_,\n  { {0x2d7821e8, 0x629c01d6, 0x290d043a, 0x00000000}},  //   vče_, sfro, nnea_,\n  { {0x6d4e21e9, 0xd24f026c, 0x3ce60cce, 0x00000000}},  // [5480] _suba, انہ_, vkov_,\n  { {0x3ced014a, 0x21290145, 0x6d4e21ea, 0x00000000}},  //   _alev_, alah_, _puba,\n  { {0x3ced05fe, 0x3ce60b9f, 0x6f1e0146, 0x00000000}},  //   _blev_, tkov_, ropc,\n  { {0x25d600bd, 0x7e6e00b5, 0x2d780107, 0x00000000}},  //   ווען_, _webp, rče_,\n  { {0x69c10f75, 0x394621eb, 0x3ce60142, 0x00000000}},  //   _arle, _rios_, rkov_,\n  { {0x45060055, 0x6d4e006c, 0x7d02042c, 0x00000000}},  //   ৈতিক_, _tuba, sios,\n  { {0x6d5c092c, 0x7d020052, 0xf98f006d, 0x00000000}},  //   _utra, pios, لبي_,\n  { {0x3eb80343, 0x57b40265, 0xdd8f03ab, 0x00000000}},  //   _hart_, ебит, _خوف_,\n  { {0x69c114b4, 0x3eb821ec, 0xb7be0044, 0x00000000}},  //   _erle, _kart_, েন্ট,\n  { {0xddce0ebc, 0x75240244, 0x98a30089, 0x00000000}},  //   _nebū, _akiz, ējā_,\n  { {0x3eb821ed, 0xceb300b6, 0x39461d66, 0x00000000}},  //   _mart_, דית_, _tios_,\n  { {0x3eb80065, 0xa4d50088, 0x67230087, 0x00000000}},  //   _lart_, хомі, _eknj,\n  { {0x44320046, 0xd943003b, 0x29040091, 0x00000000}},  //   _czy_, _реци, mima_,\n  { {0x2904010a, 0x752421ee, 0x00000000, 0x00000000}},  //   lima_, _ekiz,   ,\n  { {0x98a60036, 0x2129003f, 0xf2040b52, 0x00000000}},  //   _choć_, tlah_, вято,\n  { {0x29041adc, 0x4395012b, 0xe4a700ed, 0x00000000}},  //   nima_, _заис, _црко,\n  { {0x3eb821ef, 0x26dc0006, 0x21291444, 0x00000000}},  // [5490] _bart_, _kovo_, rlah_,\n  { {0x442918a8, 0x26dc01ee, 0x3eb80133, 0x00000000}},  //   _iya_, _jovo_, _cart_,\n  { {0x3eb80061, 0x61e10039, 0x2904016e, 0x00000000}},  //   _dart_, älld, kima_,\n  { {0x29040119, 0xd251089d, 0x4429011c, 0x00000000}},  //   jima_, _جنگ_, _kya_,\n  { {0x29040119, 0x3eb81bea, 0xcb69007c, 0x00000000}},  //   dima_, _fart_, чале_,\n  { {0x26dc21f0, 0x78a200ab, 0x44290a18, 0x00000000}},  //   _novo_, _abov, _mya_,\n  { {0x442921f1, 0x6b8b00bb, 0xdb0201a2, 0x00000000}},  //   _lya_, sugg, stoß,\n  { {0x290d000d, 0x29040213, 0x644d0051, 0x00000000}},  //   unea_, gima_, _ngai,\n  { {0x442921f2, 0x290d001a, 0x60dd0065, 0x00000000}},  //   _nya_, rnea_, _mosm,\n  { {0x644d21f3, 0x60dd01d6, 0x26dc0026, 0x00000000}},  //   _agai, _losm, _covo_,\n  { {0x2904037e, 0x44290020, 0x69c10311, 0x00000000}},  //   bima_, _aya_, _urle,\n  { {0x290421f4, 0x44290061, 0xd75600a2, 0x00000000}},  //   cima_, _bya_, بلیت_,\n  { {0x44290061, 0x644d00f6, 0x00000000, 0x00000000}},  //   _cya_, _dgai,   ,\n  { {0x68e90010, 0x67230107, 0x44290058, 0x00000000}},  //   lked, _uknj, _dya_,\n  { {0x5692025f, 0x60dd0501, 0x28d3006e, 0x00000000}},  //   _сајт, _bosm, थापि,\n  { {0x69dc0129, 0x78bb21f5, 0x60dd0585, 0x00000000}},  //   _àree, nduv, _cosm,\n  { {0x7c290047, 0x3eb821f6, 0x60dd00ca, 0x00000000}},  // [54a0] _nyer, _part_, _dosm,\n  { {0x29040258, 0x139b009b, 0x63b60203, 0x00000000}},  //   zima_, _צביע, _isyn,\n  { {0x68e90030, 0x3eb815c5, 0x7c292045, 0x00000000}},  //   kked, _vart_, _ayer,\n  { {0x61e121f7, 0x7c2904b3, 0x3eb81134, 0x00000000}},  //   älle, _byer, _wart_,\n  { {0x29040119, 0x3eb80010, 0x28d301f5, 0x00000000}},  //   vima_, _tart_, थानि,\n  { {0x9404006b, 0x7c290065, 0x60dd18d9, 0x00000000}},  //   ümə_, _dyer, _zosm,\n  { {0xfbd80055, 0x672121f8, 0x291801e5, 0x00000000}},  //   _দেখত, dolj, _írak_,\n  { {0x7c290023, 0x26dc0087, 0x63b600f8, 0x00000000}},  //   _fyer, _sovo_, _osyn,\n  { {0x7c290047, 0x6d5a00f4, 0x26dc0181, 0x00000000}},  //   _gyer, _étab, _povo_,\n  { {0x672121f9, 0x29040091, 0x442921fa, 0x00000000}},  //   golj, sima_, _rya_,\n  { {0x442921fb, 0x2360008d, 0x29041080, 0x00000000}},  //   _sya_, _atij_, pima_,\n  { {0x68e90240, 0x399a0065, 0x78a20c8e, 0x00000000}},  //   cked, mës_, _ubov,\n  { {0x66e601fb, 0x67210bf8, 0x2480018e, 0x00000000}},  //   _пода, bolj, _ddim_,\n  { {0x4429000b, 0xd5b0007a, 0x26dc0197, 0x00000000}},  //   _vya_, _نفت_, _uovo_,\n  { {0x399a008d, 0x60dd21fc, 0x6aba00f8, 0x00000000}},  //   nës_, _posm, _matf,\n  { {0x88bd0046, 0x644d0246, 0x657a00ea, 0x00000000}},  //   mośc, _ugai, msth,\n  { {0x81df0055, 0x399a0065, 0xff530464, 0x00000000}},  // [54b0] _দেশ_, hës_, اخر_,\n  { {0x399a008d, 0x7c2921fd, 0x68e90010, 0x00000000}},  //   kës_, _ryer, zked,\n  { {0x88bd0046, 0xe3140054, 0x399a0065, 0x00000000}},  //   nośc, _حبيب, jës_,\n  { {0x3079007b, 0x672121fe, 0x399a0065, 0x00000000}},  //   _קאָנ, zolj, dës_,\n  { {0x06b70044, 0x2d570066, 0x6ef21f7d, 0x00000000}},  //   জাতি, _għen_, _sæbe,\n  { {0x88bd0046, 0x399a0023, 0xdb09004a, 0x00000000}},  //   kośc, fës_, _preñ,\n  { {0x67210c1e, 0x399a0065, 0x6ca7007e, 0x00000000}},  //   volj, gës_, _праж,\n  { {0xdddc014a, 0x657a0030, 0x88bd0036, 0x00000000}},  //   _herş, dsth, dośc,\n  { {0x68e902cc, 0x672121ff, 0x78bb006c, 0x00000000}},  //   rked, tolj, rduv,\n  { {0x68e906a5, 0x0ab40879, 0x2caf00b5, 0x00000000}},  //   sked, _محمد, legd_,\n  { {0x940c005f, 0x67210010, 0x399a0065, 0x00000000}},  //   ədə_, rolj, cës_,\n  { {0xe945007a, 0x672102bb, 0x9f400026, 0x00000000}},  //   _شرای, solj, nziò_,\n  { {0x6721037e, 0x6c7a0049, 0x00000000, 0x00000000}},  //   polj, וארפ,   ,\n  { {0x3f892200, 0x00000000, 0x00000000, 0x00000000}},  //   drau_,   ,   ,\n  { {0x4096008b, 0x412a07e1, 0x6b9b0066, 0x00000000}},  //   крат, дово_, _lqug,\n  { {0x3f890abe, 0x2fc008e0, 0x00000000, 0x00000000}},  //   frau_, tvig_,   ,\n  { {0x3f8912fe, 0xd0070265, 0x4127026b, 0x00000000}},  // [54c0] grau_, вете_, тото_,\n  { {0x2fc02201, 0x45140044, 0xddc70521, 0x00000000}},  //   rvig_, _সঠিক_, _sejš,\n  { {0xdd8f0647, 0x127b0049, 0x9d46005e, 0x00000000}},  //   قول_, _קאטע, вежд,\n  { {0x399a008d, 0x13e60055, 0x7afd010a, 0x00000000}},  //   vës_, _পেয়, _įsta,\n  { {0x8b96007c, 0xe4570049, 0x88bd00b4, 0x00000000}},  //   треч, דינט_, zośc,\n  { {0x399a008d, 0x6e960076, 0x9f400010, 0x00000000}},  //   tës_, _جلسا, rzió_,\n  { {0xf54a0082, 0x00000000, 0x00000000, 0x00000000}},  //   _hấu_,   ,   ,\n  { {0x399a008d, 0xfce300e1, 0x52df03d7, 0x00000000}},  //   rës_, _косо, _नक्स,\n  { {0x88bd0046, 0x8afd0224, 0x399a0065, 0x00000000}},  //   wośc, _stře, sës_,\n  { {0x399a0065, 0x95d80423, 0x88bd0036, 0x00000000}},  //   pës_, едот_, tośc,\n  { {0x7bc22202, 0x399a0065, 0x00000000, 0x00000000}},  //   lvou, qës_,   ,\n  { {0x657a2203, 0x3f89005b, 0x88bd00b4, 0x00000000}},  //   rsth, yrau_, rośc,\n  { {0x7bc201b5, 0xf54a0011, 0x657a00ea, 0x00000000}},  //   nvou, _nấu_, ssth,\n  { {0x2caf00b5, 0x213902d4, 0x00000000, 0x00000000}},  //   zegd_, _shsh_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x3b07006b, 0x3f892204, 0x00000000, 0x00000000}},  //   zinq_, trau_,   ,\n  { {0xf54a001d, 0xdddc014a, 0xab5d0066, 0x00000000}},  // [54d0] _cấu_, _perş, _arżn,\n  { {0xf54a001d, 0x3f892205, 0x00000000, 0x00000000}},  //   _dấu_, rrau_,   ,\n  { {0x7bc200d9, 0x00000000, 0x00000000, 0x00000000}},  //   evou,   ,   ,\n  { {0x50640088, 0x273900f4, 0x645d0010, 0x00000000}},  //   _втра, mène_, ncsi,\n  { {0xceeb035b, 0x273900f4, 0xf54a0011, 0x00000000}},  //   _قرآن_, lène_, _gấu_,\n  { {0x8f9a00b6, 0xd9d70044, 0x62950232, 0x00000000}},  //   _אישי, তনসম, ngzo,\n  { {0xf2d4007b, 0x3b07006b, 0x39b7013f, 0x00000000}},  //   יעס_, rinq_, _kəsə_,\n  { {0xa5020061, 0x26ce0026, 0x00000000, 0x00000000}},  //   _लगेच_, _anfo_,   ,\n  { {0xf54a001d, 0xf7710647, 0x6d551658, 0x00000000}},  //   _mất_, حاب_, _huza,\n  { {0x6d550020, 0xc987005c, 0x00000000, 0x00000000}},  //   _kuza, _ауди,   ,\n  { {0x66052206, 0x6d550066, 0x7e750288, 0x00000000}},  //   упна, _juza, _mezp,\n  { {0x6d551e54, 0x26ce01aa, 0xa8790049, 0x00000000}},  //   _muza, _enfo_, _װאַר,\n  { {0x6d55002d, 0x7ae1014a, 0x06df0044, 0x00000000}},  //   _luza, _kolt, যোগি,\n  { {0x81df0044, 0xc7b2009b, 0x7ae10052, 0x00000000}},  //   _দেই_, _לבד_, _jolt,\n  { {0x7ae12207, 0xf54a0011, 0x273900f4, 0x00000000}},  //   _molt, _bất_, gène_,\n  { {0x61e10039, 0xb4db0129, 0xf54a0011, 0x00000000}},  //   älla, rmàc, _cất_,\n  { {0x7e7513c2, 0xb348002b, 0xc54200a1, 0x00000000}},  // [54e0] _bezp, _agħż, _پڑھی,\n  { {0x4df60057, 0x6d55001a, 0x00000000, 0x00000000}},  //   ляет, _buza,   ,\n  { {0x4bda0752, 0x80d30044, 0x91e6007e, 0x00000000}},  //   کباد_, _সতর্, _соне,\n  { {0x2d87008e, 0x6d550107, 0xf54a0011, 0x00000000}},  //   ánea_, _duza, _tấu_,\n  { {0x7ae10daf, 0xc87901df, 0x1bd407d0, 0x00000000}},  //   _bolt, daş_, роля,\n  { {0x7bc20f12, 0x7ae11d28, 0x6d551049, 0x00000000}},  //   rvou, _colt, _fuza,\n  { {0x13ad0044, 0xee3703f6, 0xea95007e, 0x00000000}},  //   খিয়, _бнр_, ршчэ,\n  { {0x8c4608f3, 0x00000000, 0x00000000, 0x00000000}},  //   _бебе,   ,   ,\n  { {0x3f92014a, 0x7ae10232, 0x6d5504bb, 0x00000000}},  //   nuyu_, _folt, _zuza,\n  { {0x7ae100ca, 0x7f4e002b, 0x00000000, 0x00000000}},  //   _golt, _jibq,   ,\n  { {0x97d7026c, 0xd8840014, 0x645a00b9, 0x00000000}},  //   نظیر_, _نهای, ětin,\n  { {0x7ae10010, 0x27391259, 0x3f9215dc, 0x00000000}},  //   _zolt, vène_, kuyu_,\n  { {0xf54a001d, 0x090600a1, 0x2bc7006e, 0x00000000}},  //   _rất_, _لڑکی_, लिया,\n  { {0x88bd0036, 0x27391339, 0x7f4e002b, 0x00000000}},  //   nośn, tène_, _nibq,\n  { {0xd13b017f, 0x68e22208, 0x00000000, 0x00000000}},  //   еха_, _kood,   ,\n  { {0x68e22209, 0x2739009d, 0x555100a1, 0x00000000}},  //   _jood, rène_, _گھیر,\n  { {0x68e2006c, 0x6d550213, 0xf54a0082, 0x00000000}},  // [54f0] _mood, _suza, _vất_,\n  { {0x200d009f, 0x68e20004, 0xdef80147, 0x00000000}},  //   _þeim_, _lood, лых_,\n  { {0xf54a001d, 0x7ae101d6, 0x628501f3, 0x00000000}},  //   _tất_, _rolt, _idho,\n  { {0x68e200c7, 0xf54a0082, 0x6e2e0190, 0x00000000}},  //   _nood, _uất_, _dybb,\n  { {0x69c802a4, 0x7ae11414, 0x6d5a00f4, 0x00000000}},  //   _arde, _polt, _étan,\n  { {0xdefb008b, 0x63ad000b, 0x6d550095, 0x00000000}},  //   _чым_, _mpan, _tuza,\n  { {0x7ae1220a, 0x68e20100, 0xdb000030, 0x00000000}},  //   _volt, _bood, _opmæ,\n  { {0x77850081, 0x7ae105af, 0x63ad0821, 0x00000000}},  //   ализ, _wolt, _opan,\n  { {0x68e2220b, 0xccf2009b, 0x69c82084, 0x00000000}},  //   _dood, _וכן_, _erde,\n  { {0x7d0b01e3, 0xe739003b, 0xa3b0013d, 0x00000000}},  //   ligs, ђен_, _टैग_,\n  { {0xa2d90309, 0x63ad00c4, 0x68e200ab, 0x00000000}},  //   मान्, _apan, _food,\n  { {0x7bc9010f, 0x7d0b010f, 0x68e200ab, 0x00000000}},  //   _kreu, nigs, _good,\n  { {0x61e10073, 0x2cbf0946, 0x63ad0133, 0x00000000}},  //   älln, _maud_, _cpan,\n  { {0xf770007a, 0x386d010f, 0xcb120049, 0x00000000}},  //   _راه_, lber_, ַלן_,\n  { {0x11d50088, 0x7d0b220c, 0x63ad220d, 0x00000000}},  //   бітр, kigs, _epan,\n  { {0x63ad0009, 0x386d01e5, 0x2fcd0087, 0x00000000}},  //   _fpan, nber_, _šega_,\n  { {0x386d010f, 0x7d0b037f, 0xaf06007e, 0x00000000}},  // [5500] iber_, digs, апал,\n  { {0x543b0049, 0x386d014a, 0x00000000, 0x00000000}},  //   _בעפא, hber_,   ,\n  { {0x386d002b, 0x7d0b010f, 0xdcff00b9, 0x00000000}},  //   kber_, figs, _úvěr,\n  { {0x0b8a031b, 0xdca6025f, 0x7bc903cd, 0x00000000}},  //   вски_, ради, _breu,\n  { {0x7bc9220e, 0x69c8220f, 0x68e200c7, 0x00000000}},  //   _creu, _srde, _rood,\n  { {0x6d42002d, 0x68e2006c, 0x69c80062, 0x00000000}},  //   smoa, _sood, _prde,\n  { {0x68e2006c, 0xf9e90044, 0xf2890049, 0x00000000}},  //   _pood, _কেবল_, אָפֿ,\n  { {0x7bc9001f, 0xa7740726, 0x394f0026, 0x00000000}},  //   _freu, блич, _cigs_,\n  { {0x68e2006c, 0x7bc91825, 0x6fc9013d, 0x00000000}},  //   _vood, _greu, रियं,\n  { {0x68e200ab, 0x81bc0044, 0x69c800ca, 0x00000000}},  //   _wood, _আপন_, _trde,\n  { {0xd5b72210, 0x386d068f, 0x68e20004, 0x00000000}},  //   ася_, bber_, _tood,\n  { {0x186a0805, 0x394f0016, 0x2ca6018e, 0x00000000}},  //   _ради_, _gigs_, nfod_,\n  { {0xda780027, 0x8af9006b, 0x07da0431, 0x00000000}},  //   _keď_, bləğ, _جذاب_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xb6cb026c, 0x31c4007e, 0x00000000, 0x00000000}},  //   _جانے_, оств,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x63ad11ad, 0x3eb32211, 0x2cbf2212, 0x00000000}},  // [5510] _upan, text_, _raud_,\n  { {0xf54a0011, 0x6e67007e, 0x2d87008e, 0x00000000}},  //   _hấp_, ртаж, áneo_,\n  { {0x8af9006b, 0x7d0b010f, 0x2cbf0093, 0x00000000}},  //   nləş, tigs, _paud_,\n  { {0x7c87012b, 0x7bc90466, 0x6728016c, 0x00000000}},  //   руже, _preu, hodj,\n  { {0x67282213, 0x752d0020, 0x7d0b00ea, 0x00000000}},  //   kodj, _mkaz, rigs,\n  { {0x7bc92214, 0x7d0b021f, 0xf54a0011, 0x00000000}},  //   _vreu, sigs, _lấp_,\n  { {0x752d2215, 0xceb200b6, 0x7db40025, 0x00000000}},  //   _okaz, _מים_, _وصفا,\n  { {0x7bc90129, 0xc9150044, 0xac94041f, 0x00000000}},  //   _treu, াত্ত_, _масш,\n  { {0x7d092216, 0x394f0007, 0x7bc90022, 0x00000000}},  //   _imes, _vigs_, _ureu,\n  { {0x67280107, 0x752d0cd1, 0x7d1b01ee, 0x00000000}},  //   godj, _akaz, _hjus,\n  { {0x25ae00fa, 0x00000000, 0x00000000, 0x00000000}},  //   _cpfl_,   ,   ,\n  { {0xf54a001d, 0x3f800006, 0xda78013e, 0x00000000}},  //   _cấp_, ysiu_, _zeď_,\n  { {0x67280107, 0xa856009b, 0x7d0900e7, 0x00000000}},  //   bodj, _הינה_, _mmes,\n  { {0x7d1b2217, 0x7c3b0020, 0x6263007c, 0x00000000}},  //   _ljus, _mzur, звра,\n  { {0x27ed2218, 0xf5950025, 0x7d092219, 0x00000000}},  //   lyen_, _العج, _omes,\n  { {0xf54a001d, 0xa564023c, 0x09bc0044, 0x00000000}},  //   _gấp_, _بدون, _অপমা,\n  { {0x27ed0607, 0x7c3b000b, 0x3f800006, 0x00000000}},  // [5520] nyen_, _nzur, usiu_,\n  { {0x7e56008b, 0x7d09000b, 0x7d1b0325, 0x00000000}},  //   стац, _ames, _ajus,\n  { {0xe1f20014, 0x3f80221a, 0x27ed0f82, 0x00000000}},  //   _رسد_, ssiu_, hyen_,\n  { {0xa13602fd, 0x27ed0173, 0xf54a0082, 0x00000000}},  //   _درخش, kyen_, _xấp_,\n  { {0x2ca6018e, 0x27ed04cd, 0x7d1b016c, 0x00000000}},  //   rfod_, jyen_, _djus,\n  { {0x27ed01aa, 0x6441005f, 0x7d0916a3, 0x00000000}},  //   dyen_, əlid, _emes,\n  { {0x6728221b, 0xa2d9007d, 0xf967007c, 0x00000000}},  //   vodj, मात्, брый_,\n  { {0x60c4008d, 0x2a7c01ee, 0x44200082, 0x00000000}},  //   ndim, savb_, _oxi_,\n  { {0x27ed0047, 0xda7800b9, 0x20000f04, 0x00000000}},  //   gyen_, _teď_, nzii_,\n  { {0xf76f0a4f, 0x8b26008b, 0xc6f700a5, 0x00000000}},  //   راً_, _удзе, йных_,\n  { {0x6728003b, 0x7d090016, 0x7c3b0026, 0x00000000}},  //   rodj, _ymes, _zzur,\n  { {0x27ed0263, 0x8af9005f, 0x68fb0036, 0x00000000}},  //   byen_, rləş, chud,\n  { {0x7e7e0343, 0x6b8200f6, 0xf54a0011, 0x00000000}},  //   kapp, nsog, _vấp_,\n  { {0x64560047, 0x2d810065, 0xd7650014, 0x00000000}},  //   _egyi, yshe_, _بنوی,\n  { {0x249900e0, 0x7e7e0397, 0xf54a0082, 0x00000000}},  //   pgsm_, dapp, _tấp_,\n  { {0x39ae006b, 0x7e7e0f46, 0x2d81012d, 0x00000000}},  //   _kəsb_, eapp, vshe_,\n  { {0x14d60164, 0x6133014a, 0xe1f000a1, 0x00000000}},  // [5530] धारण, nçli, وسہ_,\n  { {0x9e15008b, 0x6d4004be, 0x2bc7001c, 0x00000000}},  //   одзі, _ahma, लिसा,\n  { {0x27ed0f5c, 0x7c3b0010, 0x60c4093e, 0x00000000}},  //   zyen_, _szur, bdim,\n  { {0x7a420010, 0x2d810023, 0x8d74221c, 0x00000000}},  //   zíté, rshe_, ساما,\n  { {0x7e7e0197, 0x7d09221d, 0x00000000, 0x00000000}},  //   bapp, _vmes,   ,\n  { {0x7e7e221e, 0x2d8101ee, 0xa8a70279, 0x00000000}},  //   capp, pshe_, şmüş_,\n  { {0x6d580027, 0xdd9400a5, 0x9cf5013a, 0x00000000}},  //   ívat, _нары, _дзві,\n  { {0x7d09221f, 0x27ed01aa, 0x27ff002d, 0x00000000}},  //   _umes, tyen_, tzun_,\n  { {0xe8f60245, 0x7c3b0020, 0x68fb04d3, 0x00000000}},  //   іль_, _uzur, rhud,\n  { {0x458500c0, 0x27ed01aa, 0xd709007c, 0x00000000}},  //   огов, ryen_, рное_,\n  { {0x27ed1dbf, 0x443200b0, 0x7a420344, 0x00000000}},  //   syen_, _syy_, ríté,\n  { {0x7a420047, 0x03a6007c, 0x89370076, 0x00000000}},  //   síté, оимо, _اعطا,\n  { {0xdd0c0036, 0x7a420010, 0x7ccd0089, 0x00000000}},  //   _późn, píté, mērķ,\n  { {0x3669012b, 0x61ee00d4, 0x387f0035, 0x00000000}},  //   _тако_, tybl, laur_,\n  { {0xd5ac026c, 0x23692220, 0x2cad0142, 0x00000000}},  //   _یہی_, _etaj_, _obed_,\n  { {0x60c40006, 0x463a0049, 0x44202221, 0x00000000}},  //   udim, _דעצע, _txi_,\n  { {0x60c42222, 0x7e7e01b5, 0x8fa30264, 0x00000000}},  // [5540] rdim, tapp, мате,\n  { {0x6d400065, 0xa3e7013d, 0x63ab00f8, 0x00000000}},  //   _shma, पहर_, _ägna,\n  { {0x7e7e2223, 0xbc6a035b, 0x049300a1, 0x00000000}},  //   rapp, لمان_, _علیح,\n  { {0x629c00d9, 0x2bca00ed, 0x60c4006b, 0x00000000}},  //   lgro, илеп_, qdim,\n  { {0x7e7e0039, 0x8bb603ec, 0x387f0022, 0x00000000}},  //   papp, تصاص, daur_,\n  { {0x6b82049a, 0x99660cb7, 0x2fcf0030, 0x00000000}},  //   rsog, отил, ægge_,\n  { {0x6b820066, 0x14ca013d, 0x629c01c3, 0x00000000}},  //   ssog, ियाण, igro,\n  { {0x6d5c2224, 0x629c005b, 0x00000000, 0x00000000}},  //   _iura, hgro,   ,\n  { {0x629c046a, 0x28a6007d, 0x6d5c01a3, 0x00000000}},  //   kgro, क्षि, _hura,\n  { {0x6bd70025, 0x7e7c00f6, 0x00000000, 0x00000000}},  //   _بوكس_, _jerp,   ,\n  { {0x6d5c0142, 0x2489023a, 0xa01b010f, 0x00000000}},  //   _jura, _pdam_, _geöf,\n  { {0x6d5c04d4, 0x5507008b, 0x30c50055, 0x00000000}},  //   _mura, ічна, _এক্স,\n  { {0x38cb00a6, 0x6d5c2225, 0x81af0044, 0x00000000}},  //   _خالی_, _lura, ওয়া_,\n  { {0x2d870224, 0x28a6007d, 0x629c01c3, 0x00000000}},  //   ánek_, क्रि, ggro,\n  { {0x7ae80018, 0x6d5c2226, 0x38660065, 0x00000000}},  //   _modt, _nura, _kfor_,\n  { {0x63a40065, 0x2489016c, 0x7ae80179, 0x00000000}},  //   _fqin, _udam_, _lodt,\n  { {0x6d5c2227, 0x7e7c020c, 0xdced0089, 0x00000000}},  // [5550] _aura, _berp, ākļo,\n  { {0x6d5c01f6, 0x539a009b, 0xfe70023c, 0x00000000}},  //   _bura, _פיתו, ندم_,\n  { {0x6d5c001a, 0x7e7c2228, 0x7bc00006, 0x00000000}},  //   _cura, _derp, _asmu,\n  { {0xd7bc0309, 0x7afa1047, 0x00000000, 0x00000000}},  //   ्टाच, _altt,   ,\n  { {0x6aaa0061, 0x7f5f0ea9, 0x3af50a78, 0x00000000}},  //   ffff, qqqq, зяйс,\n  { {0x6d5c0937, 0x9b68007e, 0x00000000, 0x00000000}},  //   _fura, ішча_,   ,\n  { {0x6d5c002d, 0x7f5d0197, 0x7bc000d4, 0x00000000}},  //   _gura, _husq, _esmu,\n  { {0x629c0035, 0xddc70087, 0x621c08cd, 0x00000000}},  //   zgro, _kejž, יווק,\n  { {0x7f5d028c, 0x2d9e0039, 0x6d5c0b55, 0x00000000}},  //   _jusq, _äter_, _zura,\n  { {0x7e650bca, 0x7ae82229, 0x6d5c01a3, 0x00000000}},  //   nchp, _godt, _yura,\n  { {0xe8550025, 0x00000000, 0x00000000, 0x00000000}},  //   _فناد,   ,   ,\n  { {0x69c1222a, 0x629c222b, 0x26c300ca, 0x00000000}},  //   _isle, wgro, žjo_,\n  { {0x629c00bb, 0x08760049, 0x81e80044, 0x00000000}},  //   tgro, _זענט_, _মেং_,\n  { {0x254d00b9, 0xfbbd0044, 0x36c40088, 0x00000000}},  //   _měly_, _আপাত, _обіг,\n  { {0x629c01b5, 0x867a009b, 0x91e60954, 0x00000000}},  //   rgro, _הרצו, чове,\n  { {0x6d5a028c, 0x7f5d222c, 0x629c01b5, 0x00000000}},  //   _étai, _busq, sgro,\n  { {0x6d5c0149, 0x7e7c033b, 0x629c00d4, 0x00000000}},  // [5560] _sura, _perp, pgro,\n  { {0x6d5c01a3, 0xdfcf0025, 0x543600a1, 0x00000000}},  //   _pura, ديك_, _ورکر,\n  { {0x7e7c0cac, 0xfc660265, 0x6d5c005f, 0x00000000}},  //   _verp, пълн, _qura,\n  { {0x4096007c, 0x6d5c005d, 0x7e7c0328, 0x00000000}},  //   _эрот, _vura, _werp,\n  { {0x7e7c020c, 0x92e900d3, 0x20570104, 0x00000000}},  //   _terp, _طریق_, _מיכל_,\n  { {0x6d5c002a, 0x60c61a03, 0x386601ee, 0x00000000}},  //   _tura, _hakm, _sfor_,\n  { {0x2bb8013d, 0x00000000, 0x00000000, 0x00000000}},  //   _इनका,   ,   ,\n  { {0x61e1222d, 0xc8fc0044, 0xae1b009b, 0x00000000}},  //   älli, ুক্ত_, _הולכ,\n  { {0x2d9a008e, 0x69c1002d, 0x60c604cb, 0x00000000}},  //   lupe_, _esle, _makm,\n  { {0xd6da222e, 0x86260230, 0x60c60023, 0x00000000}},  //   сти_, зьме, _lakm,\n  { {0x2fc70011, 0xcfb70044, 0x2d9a00e0, 0x00000000}},  //   ̉ng_, ুৎপন, nupe_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x395e002d, 0x3eba0173, 0x00000000, 0x00000000}},  //   _huts_, kept_,   ,\n  { {0x66e301fb, 0xa1590816, 0x2d9a0465, 0x00000000}},  //   _поча, жаву_, kupe_,\n  { {0x60c6014a, 0x2d9a02d0, 0x7f5d222f, 0x00000000}},  //   _bakm, jupe_, _susq,\n  { {0x6ab90164, 0xd2500084, 0x395e2230, 0x00000000}},  //   _इस्र, انِ_, _muts_,\n  { {0x60c600e0, 0x7e650133, 0x00000000, 0x00000000}},  // [5570] _dakm, tchp,   ,\n  { {0x395e0f12, 0x00000000, 0x00000000, 0x00000000}},  //   _outs_,   ,   ,\n  { {0x7e65106a, 0x00000000, 0x00000000, 0x00000000}},  //   rchp,   ,   ,\n  { {0x7e6501a2, 0xbd180088, 0x00000000, 0x00000000}},  //   schp, пції_,   ,\n  { {0xfbab07ca, 0x00000000, 0x00000000, 0x00000000}},  //   стей_,   ,   ,\n  { {0x3eba2231, 0x395e009d, 0x3dc60036, 0x00000000}},  //   cept_, _buts_, łowa_,\n  { {0xa9c40025, 0x2d9a009d, 0xceb20049, 0x00000000}},  //   فزيو, cupe_, _שיל_,\n  { {0x6ca4003b, 0x25611a43, 0x395e00d4, 0x00000000}},  //   _пруж, _ról_, _duts_,\n  { {0x25611530, 0x752f0036, 0x29030006, 0x00000000}},  //   _sól_, docz, ėja_,\n  { {0x09bc0055, 0xca480014, 0x55892232, 0x00000000}},  //   _অপরা, _کلمه_, обом_,\n  { {0x395e0ace, 0x69c105fa, 0xf212013d, 0x00000000}},  //   _guts_, _usle, _डेढ़_,\n  { {0x3eba010f, 0x6b8900ea, 0x00000000, 0x00000000}},  //   zept_, _kveg,   ,\n  { {0x60c62233, 0x00000000, 0x00000000, 0x00000000}},  //   _rakm,   ,   ,\n  { {0x2561134d, 0x853d0006, 0x60c61de7, 0x00000000}},  //   _tól_, ntėj, _sakm,\n  { {0x26c70026, 0x752f0036, 0xb0c9013d, 0x00000000}},  //   _iano_, bocz, ाएंग,\n  { {0x78bb00b0, 0x26c70009, 0x69ce0204, 0x00000000}},  //   neuv, _hano_, थिती,\n  { {0x26c71f72, 0x0326041f, 0x3eba001a, 0x00000000}},  // [5580] _kano_, _один, tept_,\n  { {0x2480009f, 0x2d9a0142, 0x290f01d6, 0x00000000}},  //   _heim_, tupe_, _lmga_,\n  { {0x26c7010a, 0x60c60027, 0x6b89061d, 0x00000000}},  //   _mano_, _takm, _aveg,\n  { {0x2d9a2234, 0x3eba2235, 0x2d8700c4, 0x00000000}},  //   rupe_, sept_, ânea_,\n  { {0x1ab401ab, 0x00000000, 0x00000000, 0x00000000}},  //   ебля,   ,   ,\n  { {0x26c70065, 0x27e001d5, 0x78a20197, 0x00000000}},  //   _nano_, _ħin_, _scov,\n  { {0x200d009f, 0x68eb001a, 0x2fc001d6, 0x00000000}},  //   _þeir_, _bogd, lwig_,\n  { {0x478a11a6, 0x98a3003b, 0x7cde0035, 0x00000000}},  //   осом_, виће, _dărâ,\n  { {0x2004006b, 0x7d020146, 0x00000000, 0x00000000}},  //   _ümid_, mhos,   ,\n  { {0x7d020181, 0x26c70325, 0x752f0036, 0x00000000}},  //   lhos, _cano_, wocz,\n  { {0x2480001f, 0x26c70181, 0x1515007c, 0x00000000}},  //   _beim_, _dano_, едня,\n  { {0x7d0200c4, 0x78bb00f6, 0x00000000, 0x00000000}},  //   nhos, ceuv,   ,\n  { {0x26c70197, 0x27e0005d, 0x752f0036, 0x00000000}},  //   _fano_, _çin_, rocz,\n  { {0xe60f00a6, 0xf54a001d, 0x26c71ebf, 0x00000000}},  //   اشی_, _mấy_, _gano_,\n  { {0xf54a001d, 0x925808fc, 0x752f0036, 0x00000000}},  //   _lấy_, дарт_, pocz,\n  { {0x26c7016c, 0x6441006b, 0xd25805b8, 0x00000000}},  //   _zano_, əlin, ьця_,\n  { {0x26c700e0, 0xf54a0082, 0x4ea70216, 0x00000000}},  // [5590] _yano_, _nấy_, дреа,\n  { {0xf3ff0181, 0x26c700f6, 0x8afd013e, 0x00000000}},  //   lcão_, _xano_, _kuře,\n  { {0x6b892236, 0x7d020e93, 0xe2a7000c, 0x00000000}},  //   _sveg, fhos, áður_,\n  { {0x7d020010, 0xf54a0082, 0xf3ff00fa, 0x00000000}},  //   ghos, _bấy_, ncão_,\n  { {0x3f9b006b, 0xf54a0082, 0x6ac80044, 0x00000000}},  //   ququ_, _cấy_, লানো,\n  { {0xdb1b0051, 0x68eb0058, 0x539c00a3, 0x00000000}},  //   _tsuí, _sogd, קסוא,\n  { {0x7d020161, 0x26c70871, 0xfe54007e, 0x00000000}},  //   bhos, _rano_, _акрэ,\n  { {0x7d022237, 0xc7c8001d, 0x6b891d6a, 0x00000000}},  //   chos, _bố_, _tveg,\n  { {0xc7c8001d, 0x26c7011c, 0x78bb1a5a, 0x00000000}},  //   _cố_, _pano_, reuv,\n  { {0xeab00025, 0x3ea10020, 0x6e2a0023, 0x00000000}},  //   _نعم_, nght_, _ëmbë,\n  { {0x3ea10857, 0x6d5a00f4, 0x26c70e32, 0x00000000}},  //   ight_, _état, _vano_,\n  { {0xed590224, 0x673a0112, 0x26c70009, 0x00000000}},  //   _již_, altj, _wano_,\n  { {0x394d028c, 0xdd0c0046, 0x26c70020, 0x00000000}},  //   mmes_, _różn, _tano_,\n  { {0x394d1665, 0x00000000, 0x00000000, 0x00000000}},  //   lmes_,   ,   ,\n  { {0x394d0129, 0x00000000, 0x00000000, 0x00000000}},  //   omes_,   ,   ,\n  { {0x7d0201d6, 0x250800a1, 0x0446073b, 0x00000000}},  //   xhos, _زرعی_, _пейн,\n  { {0x14dd0164, 0x1e960152, 0xc952009b, 0x00000000}},  // [55a0] यारण, ерер, רמן_,\n  { {0x394d0efd, 0x2fc01996, 0x00000000, 0x00000000}},  //   hmes_, rwig_,   ,\n  { {0x7d02001c, 0xf54a0011, 0x394d0d90, 0x00000000}},  //   thos, _sấy_, kmes_,\n  { {0xa6de001d, 0xfd660011, 0x91360088, 0x00000000}},  //   _nhưn, _khuấ, _їхні,\n  { {0x99bc0044, 0x28c3007d, 0x7d021747, 0x00000000}},  //   _অপেক, वजनि, rhos,\n  { {0x2120092f, 0xada6007e, 0x7d020023, 0x00000000}},  //   lnih_, _пагл, shos,\n  { {0xc7c800ad, 0x7d02002a, 0x6e4300ed, 0x00000000}},  //   _số_, phos, _берз,\n  { {0x394d009d, 0xa6de0082, 0x3cff016c, 0x00000000}},  //   gmes_, _chưn, _gluv_,\n  { {0xf76f007a, 0xf7720379, 0x7d00006c, 0x00000000}},  //   یای_, داع_, _ilms,\n  { {0x09e60216, 0x394d2238, 0x2f0401e5, 0x00000000}},  //   _позн, ames_, _dögg_,\n  { {0xceb3009b, 0x00000000, 0x00000000, 0x00000000}},  //   אית_,   ,   ,\n  { {0xc7c8001d, 0x21200f3a, 0x3f890016, 0x00000000}},  //   _tố_, jnih_, ysau_,\n  { {0x21200f3a, 0x25860802, 0xf7f303ab, 0x00000000}},  //   dnih_, _bílá_, _مسود,\n  { {0x6441006b, 0xf3ff00c4, 0x644401c5, 0x00000000}},  //   əlil, scão_, _dzii,\n  { {0x212000d0, 0x72280088, 0x00000000, 0x00000000}},  //   fnih_, ецтв_,   ,\n  { {0xa63b009b, 0xd1382239, 0xe63b009b, 0x00000000}},  //   _מגור, еху_, _מתוכ,\n  { {0x1017007a, 0x69170035, 0xed5900ca, 0x00000000}},  // [55b0] ربرد, nţea, _riž_,\n  { {0x3ea100ab, 0x61e10039, 0x26cc0016, 0x00000000}},  //   ught_, älls, nddo_,\n  { {0x21201034, 0x3f8901a2, 0x394d0838, 0x00000000}},  //   bnih_, ssau_, ymes_,\n  { {0x21201279, 0x5ce4005c, 0x3f89223a, 0x00000000}},  //   cnih_, люча, psau_,\n  { {0x60cd006a, 0xfaa5004c, 0x2cbd01f3, 0x00000000}},  //   mdam, вало, rewd_,\n  { {0x60cd0004, 0x62870142, 0x386903b2, 0x00000000}},  //   ldam, najo, _żar_,\n  { {0x60cd010a, 0xf2d40049, 0x394d223b, 0x00000000}},  //   odam, טעס_, tmes_,\n  { {0x60cd0114, 0xe8bd0061, 0x6f17004a, 0x00000000}},  //   ndam, ्येच, lixc,\n  { {0x394d03d5, 0xf77101d8, 0x20090026, 0x00000000}},  //   rmes_, جاب_, nzai_,\n  { {0x2120092f, 0x394d0bdb, 0x62870059, 0x00000000}},  //   znih_, smes_, jajo,\n  { {0x62870d0a, 0x44290716, 0x60cd0006, 0x00000000}},  //   dajo, _axa_, kdam,\n  { {0xb815025f, 0xdb1b002d, 0x290405eb, 0x00000000}},  //   _идеј, _iruñ, chma_,\n  { {0x2120092f, 0x6d49002a, 0x60cd0197, 0x00000000}},  //   vnih_, _mhea, ddam,\n  { {0xe61100d3, 0x60dd0173, 0x68e9016e, 0x00000000}},  //   _پشت_, _ansm, ljed,\n  { {0x2120092f, 0x5eca0055, 0x442900fa, 0x00000000}},  //   tnih_, রামে, _exa_,\n  { {0x60cd13b1, 0x68fb1e17, 0x2f0401a2, 0x00000000}},  //   gdam, nkud, _möge_,\n  { {0x62870211, 0x21200340, 0xb4db0129, 0x00000000}},  // [55c0] bajo, rnih_, rmàt,\n  { {0x21200295, 0x6d4900ab, 0x656300b0, 0x00000000}},  //   snih_, _ahea, _kunh,\n  { {0x6d49002a, 0x656302d5, 0x2120092f, 0x00000000}},  //   _bhea, _junh, pnih_,\n  { {0x6d49223c, 0x68e916d0, 0x7bc20173, 0x00000000}},  //   _chea, jjed, twou,\n  { {0x6d49223d, 0x26cc018e, 0x6d5b0022, 0x00000000}},  //   _dhea, yddo_, _diua,\n  { {0x6d490b3d, 0x7bc20112, 0x00000000, 0x00000000}},  //   _ehea, rwou,   ,\n  { {0xe567004b, 0x6563027b, 0x6d49002a, 0x00000000}},  //   _خط_, _nunh, _fhea,\n  { {0x6d49002a, 0x68e90065, 0x2004000c, 0x00000000}},  //   _ghea, gjed, _ýmis_,\n  { {0xaae20309, 0x7c3b0010, 0x6e3c00f8, 0x00000000}},  //   पादक, _gyur, _hyrb,\n  { {0x81b90055, 0x60cd0091, 0x29040f3e, 0x00000000}},  //   চিত_, zdam, shma_,\n  { {0xdb1b223e, 0x68e90209, 0x65630181, 0x00000000}},  //   _usuá, bjed, _cunh,\n  { {0x6563049a, 0xdddc0119, 0x26ca0059, 0x00000000}},  //   _dunh, _održ, žbo_,\n  { {0xd7060ad9, 0x62870089, 0x60cd1793, 0x00000000}},  //   _изди, tajo, vdam,\n  { {0xd5b00014, 0x6563223f, 0x69170035, 0x00000000}},  //   _هفت_, _funh, nţen,\n  { {0x30a701e1, 0x60cd0146, 0x363300a6, 0x00000000}},  //   крав, tdam, _پروس,\n  { {0x44290ab4, 0x62870052, 0x60cd007f, 0x00000000}},  //   _txa_, sajo, udam,\n  { {0x628700ca, 0x6d5b00f6, 0x14190025, 0x00000000}},  // [55d0] pajo, _riua, _سيدة_,\n  { {0x60cd0006, 0xdf390025, 0x7f5c009d, 0x00000000}},  //   sdam, ركات_, _cirq,\n  { {0x6d490051, 0x24920016, 0x7f5c0009, 0x00000000}},  //   _phea, _ydym_, _dirq,\n  { {0xdd94008b, 0x20092240, 0xada40088, 0x00000000}},  //   рацы, pzai_, раїл,\n  { {0x68e90243, 0x62852241, 0xeab90401, 0x00000000}},  //   vjed, _keho, ейл_,\n  { {0x628500b9, 0x93fc01ce, 0x6d490133, 0x00000000}},  //   _jeho, ולדי, _whea,\n  { {0x3c9301ef, 0x6d490122, 0x443e0082, 0x00000000}},  //   _نیاز, _thea, ́t_,\n  { {0x6d5a00f4, 0x17c9047d, 0x7c29002d, 0x00000000}},  //   _étap, егии_, _txer,\n  { {0x69c80129, 0x68e90010, 0x7b990014, 0x00000000}},  //   _esde, rjed, _سپاس_,\n  { {0x68e90243, 0x62850161, 0x656300c4, 0x00000000}},  //   sjed, _neho, _punh,\n  { {0x941e005f, 0xdddc00e5, 0x00000000, 0x00000000}},  //   ətə_, _ierţ,   ,\n  { {0xf2c9061e, 0x5a0c0049, 0x97c5002c, 0x00000000}},  //   _מע_, _קלאַ, _مقصو,\n  { {0x9cd60104, 0x6441006b, 0x48e0013d, 0x00000000}},  //   אורה_, əlik, कारो_,\n  { {0xe363003b, 0x386d003b, 0x62851140, 0x00000000}},  //   скри, lcer_, _ceho,\n  { {0x021901fb, 0x62852242, 0xd04f006b, 0x00000000}},  //   віть_, _deho, _incə,\n  { {0x386d2243, 0x00000000, 0x00000000, 0x00000000}},  //   ncer_,   ,   ,\n  { {0x6143025f, 0x7f5c004a, 0x00000000, 0x00000000}},  // [55e0] сета, _pirq,   ,\n  { {0x62850fe2, 0x82360879, 0x6d43009d, 0x00000000}},  //   _geho, _مرجا, înan,\n  { {0x386d0022, 0x00000000, 0x00000000, 0x00000000}},  //   kcer_,   ,   ,\n  { {0x1636007b, 0x7e4b00a1, 0x00000000, 0x00000000}},  //   אנער_, رسلہ_,   ,\n  { {0x925a007a, 0xaff5026c, 0xdddc01ca, 0x00000000}},  //   _تشکر_, _پہلا_, _udrž,\n  { {0x386d00c4, 0xbb830025, 0x6e3c16f5, 0x00000000}},  //   ecer_, حلوي, _tyrb,\n  { {0x14aa0061, 0x5f030c27, 0x7bc90035, 0x00000000}},  //   _काढण, _узра, _eseu,\n  { {0xdbca010e, 0x3dca00d9, 0x6b4400d4, 0x00000000}},  //   _sõõr, _isbw_, cògn,\n  { {0x1d07007c, 0x99470025, 0x28b30025, 0x00000000}},  //   _сети_, دليل_, صحيح,\n  { {0x5694025f, 0x35b4007e, 0x00000000, 0x00000000}},  //   јант, абор,   ,\n  { {0xdbca006c, 0xe814013d, 0x62850142, 0x00000000}},  //   _võõr, _तेरा_, _reho,\n  { {0x6917001a, 0x2ca6011c, 0x386d00ab, 0x00000000}},  //   nţel, ngod_, ccer_,\n  { {0x62852244, 0xab00000c, 0x63af0045, 0x00000000}},  //   _peho, _þjóð_, utcn,\n  { {0xf53f080a, 0x00000000, 0x00000000, 0x00000000}},  //   slå_,   ,   ,\n  { {0x62851978, 0x2b5e0145, 0xd5a208d4, 0x00000000}},  //   _veho, _mitc_, _العی,\n  { {0x2eff009d, 0x212d013e, 0x63ad0066, 0x00000000}},  //   _œuf_, čeho_, _tqan,\n  { {0x62852245, 0xa29501e1, 0x2ca6016c, 0x00000000}},  // [55f0] _teho, _капі, dgod_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x8afc0046, 0x7bc901c3, 0x84e808d4, 0x00000000}},  //   _międ, _sseu, _شفیق_,\n  { {0x7bc900f4, 0x00000000, 0x00000000, 0x00000000}},  //   _pseu,   ,   ,\n  { {0x92e70044, 0x00000000, 0x00000000, 0x00000000}},  //   পসী_,   ,   ,\n  { {0x60cf1841, 0x49950216, 0xff04007e, 0x00000000}},  //   _hacm, ашит, _лясн,\n  { {0x7e74026c, 0x53380049, 0x1af90044, 0x00000000}},  //   _چاہئ, אנגן_, ্চলে_,\n  { {0x60cf18d9, 0x00000000, 0x00000000, 0x00000000}},  //   _jacm,   ,   ,\n  { {0x2f040039, 0x2ca021e7, 0x39430089, 0x00000000}},  //   _höga_, óide_, ējs_,\n  { {0xc9871b49, 0x386d0181, 0x60cf00f6, 0x00000000}},  //   _буди, scer_, _lacm,\n  { {0xa50a0794, 0x2fcb012d, 0x8afc0036, 0x00000000}},  //   вена_, _lscg_, _sięg,\n  { {0x69dc029d, 0x27e0016c, 0x7dd00010, 0x00000000}},  //   _área, _šine_, lósá,\n  { {0x888c0049, 0x261501f5, 0x66e50bb8, 0x00000000}},  //   _טראַ, _फेरी_, _вола,\n  { {0x39ae006b, 0x00000000, 0x00000000, 0x00000000}},  //   _səsi_,   ,   ,\n  { {0x2ca6005b, 0x00000000, 0x00000000, 0x00000000}},  //   ygod_,   ,   ,\n  { {0x61e10039, 0x60262246, 0x6448006b, 0x00000000}},  //   ålla, адба, ədin,\n  { {0x8fa600e3, 0x1e8610e1, 0x8e86007c, 0x00000000}},  // [5600] разе, илам, игае,\n  { {0xbe850054, 0x2fcb0115, 0x27e00048, 0x00000000}},  //   مجمو, _dscg_, _áine_,\n  { {0x127b0049, 0x729b009b, 0xe29b009b, 0x00000000}},  //   _שאטע, _בסיס, _בשיר,\n  { {0x8fa6008b, 0x33380061, 0xdddc0087, 0x00000000}},  //   _каме, lorx_, _cerš,\n  { {0x69170035, 0x2ca60048, 0x60c40924, 0x00000000}},  //   rţel, rgod_, meim,\n  { {0x2ca60016, 0x60c400e7, 0x99d60025, 0x00000000}},  //   sgod_, leim, لتعا,\n  { {0x79450046, 0x2ca600e0, 0x00000000, 0x00000000}},  //   równ, pgod_,   ,\n  { {0x60c40052, 0xdca30364, 0x940c006b, 0x00000000}},  //   neim, _маси, şdə_,\n  { {0xfaa602dc, 0x082a005e, 0x6d42016b, 0x00000000}},  //   _вазо, ъцки_, mloa,\n  { {0x60c400db, 0xd6da2247, 0x6d420032, 0x00000000}},  //   heim, тти_, lloa,\n  { {0x3ed9007b, 0xa3a90164, 0x4ed90049, 0x00000000}},  //   אַרא, खून_, אַרנ,\n  { {0x69da002d, 0x6d421a8d, 0x25090014, 0x00000000}},  //   _irte, nloa, اردی_,\n  { {0x68e2008e, 0x442d0023, 0x60c4005b, 0x00000000}},  //   _inod, çe_, deim,\n  { {0x81c3001e, 0x6566012b, 0x2fcb0009, 0x00000000}},  //   ņēmu, _књиж, _rscg_,\n  { {0x316800ec, 0x6d42002d, 0xdbd1000c, 0x00000000}},  //   ишто_, kloa, _lýðr,\n  { {0x6d42001a, 0x69da17d8, 0x00000000, 0x00000000}},  //   jloa, _mrte,   ,\n  { {0x6e67004c, 0x6d422248, 0xa1580a27, 0x00000000}},  // [5610] атеж, dloa, рату_,\n  { {0x69da06d3, 0xa857009b, 0x6d420146, 0x00000000}},  //   _orte, שימה_, eloa,\n  { {0xdddc0b4d, 0x23690065, 0x6d422249, 0x00000000}},  //   _perš, _huaj_, floa,\n  { {0x60c41e3c, 0x657a0048, 0x00000000, 0x00000000}},  //   ceim, ipth,   ,\n  { {0x69da15cd, 0xee870057, 0x23690065, 0x00000000}},  //   _arte, _выбо, _juaj_,\n  { {0x68e20016, 0x23690065, 0x8d7700a6, 0x00000000}},  //   _anod, _muaj_, _نارا,\n  { {0x6ef30224, 0xa3a9006e, 0xdd94007e, 0x00000000}},  //   _výbě, खंड_, _мары,\n  { {0x77850088, 0x6d4201a2, 0x24890035, 0x00000000}},  //   близ, cloa, _neam_,\n  { {0x69da014a, 0x2369000a, 0xe0df0082, 0x00000000}},  //   _erte, _nuaj_, _chòi_,\n  { {0x68e200ca, 0xd706007c, 0x7c240048, 0x00000000}},  //   _enod, йные_, úire,\n  { {0x24892082, 0x00000000, 0x00000000, 0x00000000}},  //   _beam_,   ,   ,\n  { {0x7bdb03b6, 0x00000000, 0x00000000, 0x00000000}},  //   _kruu,   ,   ,\n  { {0x387f1105, 0xb4c8013d, 0x61e10039, 0x00000000}},  //   mbur_, _उसी_, ålln,\n  { {0xa2ad0061, 0x6448006b, 0x78a9224a, 0x00000000}},  //   _जाण्, ədil, lgev,\n  { {0x60c4001b, 0x00000000, 0x00000000, 0x00000000}},  //   teim,   ,   ,\n  { {0x78a900b5, 0xf0660818, 0x24890035, 0x00000000}},  //   ngev, скап, _geam_,\n  { {0x60c400b0, 0x939603ec, 0x00000000, 0x00000000}},  // [5620] reim, _اجبا,   ,\n  { {0xb33b011f, 0x26c501ee, 0x2cad00f6, 0x00000000}},  //   nuçl, nelo_, _aced_,\n  { {0x628e082c, 0xa3ba0123, 0x25a51c95, 0x00000000}},  //   mabo, _شاکر_, null_,\n  { {0x7bdb08e0, 0x26c5008e, 0x2f04000c, 0x00000000}},  //   _bruu, helo_, _gögn_,\n  { {0x78a90112, 0x25a50023, 0x6d420133, 0x00000000}},  //   dgev, hull_, rloa,\n  { {0x26c50209, 0x628e0016, 0x25a50065, 0x00000000}},  //   jelo_, nabo, kull_,\n  { {0x26c5049a, 0x00000000, 0x00000000, 0x00000000}},  //   delo_,   ,   ,\n  { {0x69da0618, 0x78a9046a, 0x628e011c, 0x00000000}},  //   _vrte, ggev, habo,\n  { {0x7d021a20, 0x628e224b, 0x7bdb224c, 0x00000000}},  //   mkos, kabo, _gruu,\n  { {0x25a505ad, 0x26c50026, 0x628e01ee, 0x00000000}},  //   full_, gelo_, jabo,\n  { {0xd6d704af, 0x69da022b, 0x25a50ac7, 0x00000000}},  //   сты_, _urte, gull_,\n  { {0x7d020006, 0x68e20af2, 0x387f0180, 0x00000000}},  //   nkos, _unod, cbur_,\n  { {0x26c5224d, 0x38660c30, 0x14aa0309, 0x00000000}},  //   belo_, _igor_, _कारण,\n  { {0x26c5049a, 0x628e01aa, 0x25a500ea, 0x00000000}},  //   celo_, gabo, bull_,\n  { {0x248901ac, 0x41e401ff, 0x25a50129, 0x00000000}},  //   _team_, піта, cull_,\n  { {0x2369008d, 0x673a0129, 0xa2d9007d, 0x00000000}},  //   _tuaj_, lotj, _फोर्,\n  { {0x752d0145, 0x7d020142, 0x00000000, 0x00000000}},  // [5630] _ijaz, dkos,   ,\n  { {0x2fc90007, 0x644d01c5, 0x628e0197, 0x00000000}},  //   rwag_, _izai, cabo,\n  { {0x7d020116, 0x00000000, 0x00000000, 0x00000000}},  //   fkos,   ,   ,\n  { {0x30a70057, 0x7bdb006c, 0x26c5013e, 0x00000000}},  //   _уров, _pruu, zelo_,\n  { {0x752d0202, 0x25a50023, 0x26c500e0, 0x00000000}},  //   _mjaz, zull_, yelo_,\n  { {0x3866018e, 0x49990ae0, 0xe0df000a, 0x00000000}},  //   _agor_, атия_, _chòv_,\n  { {0x26c5037e, 0x78a9015c, 0x28da0164, 0x00000000}},  //   velo_, tgev, _मोहि,\n  { {0xb4c803d7, 0x14d90061, 0x672800bb, 0x00000000}},  //   _उसे_, _बोलण, endj,\n  { {0x78a900b5, 0x26c508d3, 0x628e0058, 0x00000000}},  //   rgev, telo_, yabo,\n  { {0x80d20055, 0x78a900c7, 0x25a50065, 0x00000000}},  //   হায্, sgev, tull_,\n  { {0x8afc0046, 0x628e1732, 0x26c50181, 0x00000000}},  //   _więc, vabo, relo_,\n  { {0x63a60aa5, 0x25a501b8, 0x6f1e0009, 0x00000000}},  //   tukn, rull_, zipc,\n  { {0x80d20055, 0x26c50059, 0x752d01aa, 0x00000000}},  //   হাম্, pelo_, _djaz,\n  { {0x25a50065, 0x63a6224e, 0x7d09224f, 0x00000000}},  //   pull_, rukn, _lles,\n  { {0x628e1591, 0x39ae006b, 0x7d1b0061, 0x00000000}},  //   rabo, _həsr_, _omus,\n  { {0x628e011c, 0xb1460245, 0x69c12250, 0x00000000}},  //   sabo, інал, _mple,\n  { {0xef1a0269, 0x628e0058, 0x00000000, 0x00000000}},  // [5640] ама_, pabo,   ,\n  { {0x7d092251, 0x69c11e68, 0x27ed04bd, 0x00000000}},  //   _ales, _ople, ixen_,\n  { {0x6f1e095e, 0x7d0200b0, 0x656400b0, 0x00000000}},  //   ripc, tkos, _kiih,\n  { {0xf767006d, 0x76430016, 0x7d0907b9, 0x00000000}},  //   _يا_, _myny, _cles,\n  { {0x7d0200b0, 0x6b4404bd, 0x69c12252, 0x00000000}},  //   rkos, lògi, _aple,\n  { {0x60d6010a, 0x1af3007e, 0x69c10048, 0x00000000}},  //   ldym, мпія, _bple,\n  { {0xa2ad001c, 0xf98f0379, 0xd90d00a6, 0x00000000}},  //   _जास्, نبي_, گین_,\n  { {0xd7c80558, 0x60d60006, 0x44320082, 0x00000000}},  //   موعه_, ndym, _oxy_,\n  { {0xd90d06c6, 0x69c100ea, 0x752d1962, 0x00000000}},  //   دین_, _eple, _rjaz,\n  { {0x7d1b0036, 0x2ef80068, 0x00000000, 0x00000000}},  //   _zmus, _jorf_,   ,\n  { {0x76430016, 0x752d002b, 0x673a0059, 0x00000000}},  //   _cyny, _pjaz, rotj,\n  { {0x290d0937, 0xe9ff0011, 0x37e6007c, 0x00000000}},  //   chea_, _hiếm_, _моег,\n  { {0xe9ff001d, 0x8d5b007b, 0x60d60016, 0x00000000}},  //   _kiếm_, יכטי, ddym,\n  { {0x76430016, 0x9943014a, 0x00000000, 0x00000000}},  //   _fyny, _kış_,   ,\n  { {0x32050d7f, 0x21292253, 0x764310fd, 0x00000000}},  //   ály_, tnah_, _gyny,\n  { {0x77630023, 0x644d0032, 0x752d1f3f, 0x00000000}},  //   _zinx, _tzai, _ujaz,\n  { {0xc05b01fb, 0x2129020c, 0x644d0089, 0x00000000}},  // [5650] рів_, rnah_, _uzai,\n  { {0x79450036, 0x753d2254, 0x7d0901c6, 0x00000000}},  //   tówk, losz, _sles,\n  { {0x2d870e16, 0x7d090209, 0x2ef82255, 0x00000000}},  //   ène_, _ples, _dorf_,\n  { {0x753d0ef2, 0x79450036, 0x2d4700c4, 0x00000000}},  //   nosz, rówk, põem_,\n  { {0x69c12256, 0x999e00b9, 0xe9ff0082, 0x00000000}},  //   _sple, _bytů_, _biếm_,\n  { {0x79450046, 0x6d4000f8, 0xeb9600c0, 0x00000000}},  //   mówi, _ekma, чиш_,\n  { {0x290d018d, 0x7d09002b, 0x753d0f88, 0x00000000}},  //   thea_, _tles, kosz,\n  { {0x6ca42257, 0x7d1b1bf2, 0x9943014a, 0x00000000}},  //   _оруж, _umus, _dış_,\n  { {0x47c2007c, 0x65640052, 0x6d591a91, 0x00000000}},  //   ебыв, _riih, mmwa,\n  { {0x6564021e, 0xd7091001, 0x290d00e7, 0x00000000}},  //   _siih, сное_, shea_,\n  { {0x27ff0058, 0x60d6005b, 0x69c101ed, 0x00000000}},  //   syun_, ydym, _uple,\n  { {0x753d0010, 0x6b890009, 0x9cf90044, 0x00000000}},  //   gosz, _kweg, _আগুন_,\n  { {0x437500ed, 0x656400b0, 0x77631347, 0x00000000}},  //   дуст, _viih, _tinx,\n  { {0xe6890025, 0xd066006b, 0x00000000, 0x00000000}},  //   _انثى_, əqəl,   ,\n  { {0x67210f86, 0xcaf40061, 0x753d2258, 0x00000000}},  //   milj, _अवघड_, bosz,\n  { {0x672102d8, 0x016301ab, 0x00000000, 0x00000000}},  //   lilj, ексо,   ,\n  { {0x442600c4, 0x60d610fd, 0x5c260044, 0x00000000}},  // [5660] _ão_, rdym, _বর্গ_,\n  { {0x672120d6, 0xe0df000a, 0x9f5f000c, 0x00000000}},  //   nilj, _akòd_, órða_,\n  { {0x02fb00b3, 0x660100ea, 0x42fb009b, 0x00000000}},  //   _הלימ, nylk, _ההיס,\n  { {0xccf90046, 0x61e10030, 0x656e0051, 0x00000000}},  //   _coś_, ælle, íbhi,\n  { {0x67212259, 0xead40878, 0x2ef81156, 0x00000000}},  //   kilj, доль, _torf_,\n  { {0x67210521, 0x291d000a, 0x660106d5, 0x00000000}},  //   jilj, _amwa_, kylk,\n  { {0x67210091, 0x99d30025, 0x9943006b, 0x00000000}},  //   dilj, فتيا, _qış_,\n  { {0x8b6606b4, 0x97a60216, 0x2d98009d, 0x00000000}},  //   _فاطم, прол, _ivre_,\n  { {0x67210337, 0x6b89005b, 0xed57034b, 0x00000000}},  //   filj, _gweg, _хот_,\n  { {0x9f9b010f, 0x660105ed, 0x95ca02dc, 0x00000000}},  //   _läßt_, fylk, бума_,\n  { {0xd90f008b, 0x7ae80018, 0xe947026c, 0x00000000}},  //   _зь_, _indt, _کرلی,\n  { {0x7afa0133, 0x00000000, 0x00000000, 0x00000000}},  //   _hott,   ,   ,\n  { {0x67210119, 0x753d0c59, 0x7afa225a, 0x00000000}},  //   bilj, rosz, _kott,\n  { {0x67210209, 0x7afa00b0, 0x2d980190, 0x00000000}},  //   cilj, _jott, _ovre_,\n  { {0x2d9c02d5, 0x7afa0292, 0x76bb009b, 0x00000000}},  //   ável_, _mott, _המופ,\n  { {0xd5b80089, 0x00000000, 0x00000000, 0x00000000}},  //   mtā_,   ,   ,\n  { {0x4034007c, 0x88bd0036, 0xd5b80089, 0x00000000}},  // [5670] еетс, liśc, ltā_,\n  { {0x7afa0207, 0x6b890e92, 0x42750581, 0x00000000}},  //   _nott, _rweg, _югос,\n  { {0xd5b80089, 0x6b890036, 0x2cbf0022, 0x00000000}},  //   ntā_, _sweg, _pbud_,\n  { {0x7ae8225b, 0xd5b80089, 0x00000000, 0x00000000}},  //   _andt, itā_,   ,\n  { {0x7afa0472, 0x2d981ed5, 0x00000000, 0x00000000}},  //   _bott, _evre_,   ,\n  { {0xd5b80089, 0xaa880025, 0x7afa085d, 0x00000000}},  //   ktā_, كنهم_, _cott,\n  { {0x7afa1340, 0x6721225c, 0x68f900ab, 0x00000000}},  //   _dott, vilj, _powd,\n  { {0x7ae80030, 0x2cbf0093, 0x6b89225d, 0x00000000}},  //   _endt, _ubud_, _tweg,\n  { {0x2d9e0039, 0x7afa0197, 0x67210091, 0x00000000}},  //   _åter_, _fott, tilj,\n  { {0x7afa1153, 0x6673007a, 0xd75600a1, 0x00000000}},  //   _gott, رگتر, وليت_,\n  { {0x64a6007e, 0xcb12009b, 0x00000000, 0x00000000}},  //   мана, _שלב_,   ,\n  { {0x67210c1e, 0x92ea0044, 0x00000000, 0x00000000}},  //   silj, _মতে_,   ,\n  { {0x6721022e, 0x00000000, 0x00000000, 0x00000000}},  //   pilj,   ,   ,\n  { {0xf62501fc, 0x88bd0036, 0x2bc0013d, 0x00000000}},  //   _одло, biśc, _एहसा,\n  { {0x6146138c, 0xc5d50088, 0xc7b90010, 0x00000000}},  //   дева, _ціль, ltő_,\n  { {0x70a80061, 0xd01200a1, 0xdb02225e, 0x00000000}},  //   गलेल, نلز_, troë,\n  { {0xc7b90010, 0x4aae0061, 0x61430131, 0x00000000}},  // [5680] ntő_, _घालव, тета,\n  { {0x3f800006, 0x00000000, 0x00000000, 0x00000000}},  //   rpiu_,   ,   ,\n  { {0x7afa0692, 0x8236026c, 0xdd8f0380, 0x00000000}},  //   _rott, _زردا, لول_,\n  { {0x0c260057, 0x7afa0409, 0x69dc000c, 0x00000000}},  //   ммен, _sott, _árei,\n  { {0xe7d80055, 0xeb9701fc, 0x7afa124c, 0x00000000}},  //   _তথ্য, дич_, _pott,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x2d68011f, 0x7afa000c, 0x2d980068, 0x00000000}},  //   _eğer_, _vott, _uvre_,\n  { {0x92ea0055, 0xa022014a, 0x00000000, 0x00000000}},  //   _মতো_, _şöyl,   ,\n  { {0xb8d60164, 0x629e0395, 0x7afa00b0, 0x00000000}},  //   _जा_, _odpo, _tott,\n  { {0x35f409ae, 0x6b82225f, 0x7ae80030, 0x00000000}},  //   епор, mpog, _undt,\n  { {0xda650025, 0x00000000, 0x00000000, 0x00000000}},  //   _كامي,   ,   ,\n  { {0xd5b80089, 0x629e01cf, 0x63a600d0, 0x00000000}},  //   rtā_, _adpo, frkn,\n  { {0xd5b8001e, 0x80a20061, 0x00000000, 0x00000000}},  //   stā_, गणने,   ,\n  { {0x17540e09, 0x65940364, 0xd703005e, 0x00000000}},  //   _явля, _заку, _изчи,\n  { {0x26cc008e, 0x399a0089, 0x00000000, 0x00000000}},  //   medo_, nīs_,   ,\n  { {0x26cc0211, 0x6907004a, 0x656e0048, 0x00000000}},  //   ledo_, _añej, íbhu,\n  { {0x6b820746, 0x6133002b, 0x9f552260, 0x00000000}},  // [5690] jpog, għla, евач,\n  { {0x3ed50025, 0x629e0026, 0x6b8200ca, 0x00000000}},  //   عقار, _gdpo, dpog,\n  { {0xdb020068, 0x00000000, 0x00000000, 0x00000000}},  //   croé,   ,   ,\n  { {0x62952261, 0x399a0089, 0xa2bb01f5, 0x00000000}},  //   lazo, dīs_, श्र्,\n  { {0x50640780, 0x60cd0020, 0x3f790049, 0x00000000}},  //   _атра, meam, _מאָס,\n  { {0x6295000b, 0x60cd002a, 0x26cc01ed, 0x00000000}},  //   nazo, leam, jedo_,\n  { {0x8d7403d9, 0x00000000, 0x00000000, 0x00000000}},  //   _لاقا,   ,   ,\n  { {0x60cd002a, 0x62952262, 0xc7b90010, 0x00000000}},  //   neam, hazo, ttő_,\n  { {0x62950142, 0xf77106dd, 0x7d0400b0, 0x00000000}},  //   kazo, داب_, öise,\n  { {0x6d4b1c77, 0x60cd0051, 0x6b9b0009, 0x00000000}},  //   llga, heam, _ivug,\n  { {0x62952263, 0x2d73016c, 0x60cd00b0, 0x00000000}},  //   dazo, _oćem_, keam,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xe72e03dc, 0x60cd2264, 0x26cc008e, 0x00000000}},  //   _бе_, deam, bedo_,\n  { {0x26cc00c4, 0x62950010, 0x6b9b0009, 0x00000000}},  //   cedo_, gazo, _mvug,\n  { {0xa18a0265, 0xa50a00e3, 0x6b8200ca, 0x00000000}},  //   ябва_, _нека_, zpog,\n  { {0x61e10030, 0x6441010f, 0x6440006c, 0x00000000}},  //   ælla, ßlic, ümis,\n  { {0x4fa3003b, 0x8fa30c96, 0xb4cc01f5, 0x00000000}},  // [56a0] литв, лате, रजी_,\n  { {0x6d4b014f, 0x29d11cfc, 0x6295004a, 0x00000000}},  //   elga, _oša_, cazo,\n  { {0x6b9b0061, 0x60cd021f, 0x7bde0089, 0x00000000}},  //   _avug, beam, āpum,\n  { {0xe5720049, 0x26cc012d, 0x00000000, 0x00000000}},  //   אַס_, zedo_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x399a001e, 0x290f154c, 0x6d4b0ddc, 0x00000000}},  //   tīs_, _alga_, alga,\n  { {0x26cc0181, 0x13c90044, 0x6b820089, 0x00000000}},  //   vedo_, শিয়, spog,\n  { {0xa9670080, 0xdb022265, 0xdcfe0089, 0x00000000}},  //   нија_, croî, rspē,\n  { {0x399a0089, 0x62950d06, 0xeab20647, 0x00000000}},  //   sīs_, yazo, _معا_,\n  { {0x8afc0036, 0xb33b014a, 0x68eb0239, 0x00000000}},  //   _mięk, nuçt, _engd,\n  { {0x26cc0a15, 0x62952266, 0x60cd00e7, 0x00000000}},  //   redo_, vazo, yeam,\n  { {0x26cc2267, 0x2ca00051, 0x62951f3f, 0x00000000}},  //   sedo_, óidh_, wazo,\n  { {0x04670057, 0x62950471, 0x26cc04a5, 0x00000000}},  //   этом, tazo, pedo_,\n  { {0x6d42010e, 0xdc12013f, 0x00000000, 0x00000000}},  //   hooa, nğıc,   ,\n  { {0x60cd0056, 0xdb0204f3, 0x00000000, 0x00000000}},  //   team, ntoñ,   ,\n  { {0x6295013e, 0x69c80022, 0x00000000, 0x00000000}},  //   sazo, _mpde,   ,\n  { {0x6d4b001c, 0x6295027b, 0x60cd0122, 0x00000000}},  // [56b0] vlga, pazo, ream,\n  { {0x60cd001a, 0x63af0107, 0x69c80190, 0x00000000}},  //   seam, mucn, _opde,\n  { {0x60cd2268, 0x63bd0c3f, 0x6b9b0091, 0x00000000}},  //   peam, ltsn, _svug,\n  { {0xeb090164, 0x764a018e, 0xc0ab0025, 0x00000000}},  //   वस्त_, _myfy, _عاجل_,\n  { {0x4ea70080, 0x69c80e07, 0x63bd0146, 0x00000000}},  //   _прва, _apde, ntsn,\n  { {0x9f3501fb, 0xfe70023c, 0x4ea70f62, 0x00000000}},  //   _регі, _هدف_, _ярма,\n  { {0xae1e0061, 0x8f340088, 0x9f340088, 0x00000000}},  //   _येऊन_, _серц, _сері,\n  { {0x22450861, 0x00000000, 0x00000000, 0x00000000}},  //   ýlky_,   ,   ,\n  { {0x63af0e00, 0x6b9b0117, 0x00000000, 0x00000000}},  //   jucn, _uvug,   ,\n  { {0x63af0ebe, 0x55e50594, 0x394600fa, 0x00000000}},  //   ducn, вооб, _ekos_,\n  { {0x764a0016, 0x290f011c, 0x8afa0049, 0x00000000}},  //   _cyfy, _tlga_, _קלעז,\n  { {0x68eb0b16, 0x2f040039, 0xb4ac01f5, 0x00000000}},  //   _ungd, _högt_, खले_,\n  { {0x63af037e, 0x2d470181, 0x394d2269, 0x00000000}},  //   gucn, lões_, mles_,\n  { {0x394d02b6, 0x395f0a0e, 0x764a0016, 0x00000000}},  //   lles_, lmus_, _fyfy,\n  { {0x764a0016, 0x320c04bb, 0x63bd00bb, 0x00000000}},  //   _gyfy, ády_, atsn,\n  { {0x394d049a, 0xdddc010a, 0x8afc0036, 0x00000000}},  //   nles_, _perž, _pięk,\n  { {0x394d00f4, 0x2d4700c4, 0x75241b75, 0x00000000}},  // [56c0] iles_, hões_, _imiz,\n  { {0x395f226a, 0xdddc226b, 0x00000000, 0x00000000}},  //   hmus_, _verž,   ,\n  { {0x8afc0046, 0x394d0006, 0xe0df000a, 0x00000000}},  //   _więk, kles_, _ikòn_,\n  { {0x6da3226c, 0x2d4700c4, 0x6026007e, 0x00000000}},  //   рица, dões_, _адма,\n  { {0x2f04000c, 0xdd0c0036, 0x394d1d9f, 0x00000000}},  //   _sögu_, _półn, dles_,\n  { {0x394d0181, 0xf9c60152, 0x3946226d, 0x00000000}},  //   eles_, вщин, _skos_,\n  { {0x2d4700c4, 0x6c860025, 0x394d0dcb, 0x00000000}},  //   gões_, _للأم, fles_,\n  { {0x394d0322, 0x3ced0521, 0x3cff0bf2, 0x00000000}},  //   gles_, _gnev_, _gouv_,\n  { {0xab6606b6, 0xb4db00f6, 0x00000000, 0x00000000}},  //   _авал, ilàt,   ,\n  { {0x394d226e, 0x7d000ff4, 0x75240377, 0x00000000}},  //   ales_, _homs, _amiz,\n  { {0x394d1da8, 0xceb300b6, 0x7d00226f, 0x00000000}},  //   bles_, בית_, _koms,\n  { {0x394d028a, 0x98a30794, 0x63bd02e1, 0x00000000}},  //   cles_, _вице, ttsn,\n  { {0x7d00032e, 0x39440006, 0x27e005d7, 0x00000000}},  //   _moms, moms_, _éin_,\n  { {0x63af2270, 0x63bd0056, 0x39442271, 0x00000000}},  //   rucn, rtsn, loms_,\n  { {0x5757009b, 0x67281300, 0x92942272, 0x00000000}},  //   _שבוע_, midj, расц,\n  { {0x39442273, 0x75240a11, 0x26dc00bb, 0x00000000}},  //   noms_, _gmiz, _havo_,\n  { {0x2d470181, 0x26dc09ca, 0x93470025, 0x00000000}},  // [56d0] zões_, _kavo_, _لخدم,\n  { {0x3f9b19f3, 0x395f1db8, 0x752401ca, 0x00000000}},  //   rsqu_, zmus_, _zmiz,\n  { {0x8d740647, 0x39440343, 0x395f0006, 0x00000000}},  //   لانا, koms_, ymus_,\n  { {0x7d001cf6, 0x39440d90, 0x27e600f8, 0x00000000}},  //   _coms, joms_, _oron_,\n  { {0x39440e07, 0x21290169, 0xfaa50451, 0x00000000}},  //   doms_, miah_, гало,\n  { {0x21290169, 0xf1c70061, 0x2d4700c4, 0x00000000}},  //   liah_, _लहान, tões_,\n  { {0x27e62274, 0x60dd0006, 0x394d109b, 0x00000000}},  //   _aron_, _kasm, tles_,\n  { {0x27e62275, 0x60dd01a3, 0xdb02000c, 0x00000000}},  //   _bron_, _jasm, stoð,\n  { {0x2d470181, 0x2009003f, 0x7cd40036, 0x00000000}},  //   sões_, nyai_, _wśró,\n  { {0x395f0a3a, 0x394d007f, 0x26dc0207, 0x00000000}},  //   smus_, sles_, _cavo_,\n  { {0x88bd0046, 0x394d0549, 0x26dc04c6, 0x00000000}},  //   liśm, ples_, _davo_,\n  { {0x60dd0213, 0x3944009d, 0x27e60016, 0x00000000}},  //   _nasm, coms_, _fron_,\n  { {0x2129027e, 0x67282276, 0xef280279, 0x00000000}},  //   diah_, bidj, lmüş_,\n  { {0x68fb017b, 0x26dc0006, 0x6b4d00c4, 0x00000000}},  //   ljud, _gavo_, fúgi,\n  { {0x25be0061, 0x6d492277, 0x60dd014a, 0x00000000}},  //   cttl_, _okea, _basm,\n  { {0xdd00001e, 0xdddc002b, 0x60dd00fa, 0x00000000}},  //   ītīb, _verż, _casm,\n  { {0x2d830065, 0x2f160030, 0x60dd0065, 0x00000000}},  // [56e0] _atje_, _læge_, _dasm,\n  { {0x63a9050f, 0x6d5b00fa, 0xf063007e, 0x00000000}},  //   šenc, _ahua, скуп,\n  { {0x6d5b002a, 0x7c3b2278, 0x127b0049, 0x00000000}},  //   _bhua, _axur, _ראטע,\n  { {0x6d5b002a, 0x672810f5, 0x00000000, 0x00000000}},  //   _chua, zidj,   ,\n  { {0x5b26007e, 0xac970076, 0xda7a007e, 0x00000000}},  //   лька, انها_, няй_,\n  { {0x9e660014, 0x6d5b0288, 0x00000000, 0x00000000}},  //   _مازن, _ehua,   ,\n  { {0x67280107, 0x60dd01a3, 0x2fc00a35, 0x00000000}},  //   vidj, _yasm, ltig_,\n  { {0x26dc010a, 0x60c401aa, 0x6d5b0048, 0x00000000}},  //   _savo_, nfim, _ghua,\n  { {0x2fc00168, 0x3944007f, 0xabaa03ec, 0x00000000}},  //   ntig_, roms_, _سهام_,\n  { {0x2fc0010f, 0x6d5b2279, 0xf77f00c4, 0x00000000}},  //   itig_, _zhua, íça_,\n  { {0x68fb0073, 0x6441005f, 0xceb3009b, 0x00000000}},  //   bjud, əliy, זית_,\n  { {0x27e6227a, 0x2ed102fb, 0x2fc0067e, 0x00000000}},  //   _tron_, _हस्त, ktig_,\n  { {0x60dd227b, 0x26dc010a, 0x212901d6, 0x00000000}},  //   _rasm, _tavo_, viah_,\n  { {0xe81d007d, 0x3dc60036, 0x59b80309, 0x00000000}},  //   _बेटा_, łowy_, _इमार,\n  { {0x60dd049a, 0x2fc00007, 0x21290022, 0x00000000}},  //   _pasm, etig_, tiah_,\n  { {0xdbd1006c, 0x70af0061, 0x69da0146, 0x00000000}},  //   _püüa, टलेल, _mste,\n  { {0x2fc00caf, 0x212904cb, 0x200f0010, 0x00000000}},  // [56f0] gtig_, riah_, ági_,\n  { {0x69da022b, 0x6d5b0065, 0x2129008a, 0x00000000}},  //   _oste, _shua, siah_,\n  { {0x212910ed, 0x5c750887, 0x69da0270, 0x00000000}},  //   piah_, алет, _nste,\n  { {0x60dd0051, 0xdb1b004a, 0x00000000, 0x00000000}},  //   _uasm, _iqué,   ,\n  { {0x69da227c, 0x2ba7003b, 0xec780088, 0x00000000}},  //   _aste, ујев, упі_,\n  { {0x3f89227d, 0x00000000, 0x00000000, 0x00000000}},  //   mpau_,   ,   ,\n  { {0x6d5b227e, 0xd2b8009b, 0xf2d40049, 0x00000000}},  //   _thua, אלות_, מעס_,\n  { {0x6297008d, 0x7c3b002d, 0xef28019a, 0x00000000}},  //   _lexo, _txur, rmüş_,\n  { {0xf719008b, 0x68fb01a3, 0x290d21be, 0x00000000}},  //   віны_, rjud, rkea_,\n  { {0x6297049a, 0xd709007c, 0x81cc0044, 0x00000000}},  //   _nexo, тное_, লিত_,\n  { {0x28c20061, 0xdce9227f, 0x69940088, 0x00000000}},  //   व्हि, _lieč, _гріх,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xd456005e, 0xdb1b00dc, 0xdce90027, 0x00000000}},  //   ртнь, _aqué, _nieč,\n  { {0x69da2280, 0x00000000, 0x00000000, 0x00000000}},  //   _yste,   ,   ,\n  { {0xe29706b6, 0xd5e8006d, 0xa2a20309, 0x00000000}},  //   рас_, _معين_, कृष्,\n  { {0x2fc02281, 0x387f04cb, 0x7bdb00b0, 0x00000000}},  //   ttig_, ncur_, _osuu,\n  { {0x21670a27, 0xd0070589, 0x06d80055, 0x00000000}},  // [5700] рити_, аете_, তারি,\n  { {0xef17008b, 0x2fc004fb, 0x26c50203, 0x00000000}},  //   аму_, rtig_, nflo_,\n  { {0x2fc00343, 0x629c147e, 0x00000000, 0x00000000}},  //   stig_, maro,   ,\n  { {0xad65023c, 0x00000000, 0x00000000, 0x00000000}},  //   مانه,   ,   ,\n  { {0x3f5401a2, 0x00000000, 0x00000000, 0x00000000}},  //   läum_,   ,   ,\n  { {0x629c016c, 0x39a61f70, 0x00000000, 0x00000000}},  //   naro, ашив,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x629c0016, 0x3b860242, 0xed5a142c, 0x00000000}},  //   haro, _влаг, _роб_,\n  { {0x629c2282, 0xc60e0164, 0xe0df1e60, 0x00000000}},  //   karo, ान्य_, _chòy_,\n  { {0xa9a60265, 0x629c0211, 0xe6660264, 0x00000000}},  //   _вижд, jaro, итно,\n  { {0x69da2283, 0x629c0006, 0x6297027b, 0x00000000}},  //   _uste, daro, _rexo,\n  { {0x7bc20116, 0xd7e60088, 0x7c35000c, 0x00000000}},  //   otou, _віко, _áfrý,\n  { {0x7bc216c6, 0x629c0350, 0x00000000, 0x00000000}},  //   ntou, faro,   ,\n  { {0x629c0211, 0x823715dd, 0x20e30082, 0x00000000}},  //   garo, لرزا, _ổi_,\n  { {0x012700e2, 0x7bc20943, 0x00000000, 0x00000000}},  //   аќам, htou,   ,\n  { {0x09c30044, 0x00000000, 0x00000000, 0x00000000}},  //   ্মচা,   ,   ,\n  { {0x25de013d, 0x00000000, 0x00000000, 0x00000000}},  // [5710] गिकी_,   ,   ,\n  { {0x629c0211, 0x02a71662, 0x8afc0036, 0x00000000}},  //   caro, _трим, _mięs,\n  { {0xdcfc001e, 0xa3df0309, 0x00000000, 0x00000000}},  //   _strā, णिक_,   ,\n  { {0xdb0b008e, 0xc5790049, 0x00000000, 0x00000000}},  //   rugí, אָסט,   ,\n  { {0x2bda0164, 0x00000000, 0x00000000, 0x00000000}},  //   _मैदा,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x4998007e, 0x3e3300a1, 0x29d80082, 0x00000000}},  //   атыя_, _بہار, _cũa_,\n  { {0x629c04f3, 0xf77f00c4, 0x00000000, 0x00000000}},  //   zaro, íço_,   ,\n  { {0x629c006b, 0x6133002b, 0x7c240051, 0x00000000}},  //   yaro, għli, úirt,\n  { {0x629c002d, 0x46f5007c, 0x387f2284, 0x00000000}},  //   xaro, счит, scur_,\n  { {0x629c01d9, 0x160e007d, 0x00000000, 0x00000000}},  //   varo, ानगर_,   ,\n  { {0x7ae1010f, 0x629c039b, 0x25aa2285, 0x00000000}},  //   _halt, waro, ábla_,\n  { {0x629c16b9, 0x7ae12286, 0x08760049, 0x00000000}},  //   taro, _kalt, _הענט_,\n  { {0x4463005e, 0x2bfa0061, 0x00000000, 0x00000000}},  //   явяв, ्हतं_,   ,\n  { {0x7ae101d5, 0x7b320046, 0x629c0211, 0x00000000}},  //   _malt, sług, raro,\n  { {0x645a005f, 0x629c183d, 0xd1320025, 0x00000000}},  //   ətin, saro, أمر_,\n  { {0x629c20e3, 0x00000000, 0x00000000, 0x00000000}},  // [5720] paro,   ,   ,\n  { {0x1ea90380, 0x93fb00b3, 0x7ae10023, 0x00000000}},  //   لامي_, _עליי, _nalt,\n  { {0x6146007e, 0x69c3012d, 0xd00f009e, 0x00000000}},  //   _гена, jtne, ولہ_,\n  { {0xdca30f40, 0x63a4044f, 0x7ae100b0, 0x00000000}},  //   заци, _kvin, _aalt,\n  { {0x5c97008b, 0xd9e00164, 0x7bc20319, 0x00000000}},  //   скія_, पट्ट, utou,\n  { {0x7bc2028c, 0x7ae10197, 0x60d62287, 0x00000000}},  //   rtou, _calt, leym,\n  { {0x7bc200b9, 0x7ae10051, 0xf2d300b3, 0x00000000}},  //   stou, _dalt, פעה_,\n  { {0x63a400ca, 0x61e105b7, 0x636005ee, 0x00000000}},  //   _ovin, ælli, lönd,\n  { {0xfaa610f3, 0xaaba01fa, 0x17fa0025, 0x00000000}},  //   _газо, _مدار_, ارعة_,\n  { {0xd6da019d, 0x7ae115cd, 0xbb560439, 0x00000000}},  //   ути_, _galt, _انطب,\n  { {0x63a42288, 0x8626007e, 0x60d600d9, 0x00000000}},  //   _avin, сьпе, keym,\n  { {0x7ae12289, 0x2d730166, 0xf48400e2, 0x00000000}},  //   _zalt, _kćer_, зурн,\n  { {0x443f00c4, 0x07e900a1, 0x7ae10276, 0x00000000}},  //   çu_, _پرنٹ_, _yalt,\n  { {0x63a900b9, 0xdc37007b, 0x6594008b, 0x00000000}},  //   šeno, מאכט_, _даку,\n  { {0x63a4005d, 0x00000000, 0x00000000, 0x00000000}},  //   _evin,   ,   ,\n  { {0x8637009b, 0x60d601e5, 0x4155007e, 0x00000000}},  //   _לרוב_, geym, івас,\n  { {0x752f0036, 0x6e9900ed, 0x00000000, 0x00000000}},  // [5730] micz, ивар_,   ,\n  { {0x752f0046, 0x68e20082, 0x00000000, 0x00000000}},  //   licz, _laod,   ,\n  { {0xf3cb007a, 0x2d87228a, 0xa2820014, 0x00000000}},  //   _شبکه_, ëne_, _آیفو,\n  { {0x7ae1049a, 0x752f0046, 0x81cc0055, 0x00000000}},  //   _salt, nicz, লিশ_,\n  { {0x7ae1006b, 0xdcfc001a, 0x5ee10044, 0x00000000}},  //   _palt, _stră, নাবে,\n  { {0x69c30039, 0x539c071c, 0x81cc0044, 0x00000000}},  //   ttne, ניוו, লির_,\n  { {0x7ae1021e, 0x68e20082, 0x2d73012d, 0x00000000}},  //   _valt, _baod, _ećer_,\n  { {0x7ae1010f, 0x2bd900a6, 0x17850140, 0x00000000}},  //   _walt, _پارک_, огим,\n  { {0x6d4b0047, 0x69c320dc, 0x61fc0009, 0x00000000}},  //   moga, stne, zxrl,\n  { {0x6d4b07bc, 0x6b89228b, 0x00000000, 0x00000000}},  //   loga, _iteg,   ,\n  { {0xceb20476, 0x752f0036, 0x6f070059, 0x00000000}},  //   ויי_, ficz, _mojc,\n  { {0x752f0046, 0x6d4b1e2d, 0x62850030, 0x00000000}},  //   gicz, noga, _afho,\n  { {0xe72e05c7, 0x6360010f, 0x39a50089, 0x00000000}},  //   _же_, höne, lēs_,\n  { {0x6d4b228c, 0x68e20107, 0xe297007e, 0x00000000}},  //   hoga, _zaod, жар_,\n  { {0x6d4b0059, 0x39a50089, 0x00000000, 0x00000000}},  //   koga, nēs_,   ,\n  { {0x63a405ad, 0x6b890032, 0x78bb006c, 0x00000000}},  //   _tvin, _oteg, nguv,\n  { {0x6d4b0016, 0xaf06003b, 0x6b890807, 0x00000000}},  // [5740] doga, опал, _nteg,\n  { {0x0cd60044, 0x60d60ee1, 0x27e201e5, 0x00000000}},  //   _সচেত, seym, ækni_,\n  { {0x6d4b08fe, 0x6b890016, 0xec7a0641, 0x00000000}},  //   foga, _ateg, апе_,\n  { {0xa3ce03d7, 0xf09f001d, 0x92b60167, 0x00000000}},  //   _रहा_, _hoàn_, _احکا,\n  { {0x6133002b, 0x653b0049, 0xdb1b228d, 0x00000000}},  //   għlu, סענד, _equí,\n  { {0x63600047, 0xf76701fa, 0x00000000, 0x00000000}},  //   lönb, _زا_,   ,\n  { {0xddc3003b, 0x9cb60025, 0x8ad5007e, 0x00000000}},  //   _обри, _ومست, яюцц,\n  { {0x984f0279, 0x8c4601c0, 0x9f4000d4, 0x00000000}},  //   _ağır_, _дебе, lvià_,\n  { {0x79e800a1, 0x8afc00b4, 0x00000000, 0x00000000}},  //   _گواہ_, _chęc,   ,\n  { {0xe5c60057, 0x752f0036, 0x15ea0088, 0x00000000}},  //   осмо, wicz, аємо_,\n  { {0xd5b700c2, 0x6d4300f4, 0x88ac0044, 0x00000000}},  //   ося_, énag, ক্ষক,\n  { {0x7d020059, 0xb865025a, 0x3ce60142, 0x00000000}},  //   njos, _کامو, ndov_,\n  { {0xdce200ca, 0x66e600aa, 0x18360439, 0x00000000}},  //   jmoč, _мода, _براح,\n  { {0x672a000c, 0x00000000, 0x00000000, 0x00000000}},  //   _umfj,   ,   ,\n  { {0x31c4008b, 0x3983011f, 0x645a006b, 0x00000000}},  //   мств, _kısa_, ətim,\n  { {0x2eed228e, 0x3ce60925, 0x2ee3002b, 0x00000000}},  //   _şef_, jdov_, _sajf_,\n  { {0x6d4b0181, 0x752d0065, 0x7d020107, 0x00000000}},  // [5750] voga, _imaz, djos,\n  { {0x7c220305, 0x6d4b228f, 0x6fac0316, 0x00000000}},  //   dzor, woga, _चिरं,\n  { {0x57b7001c, 0x673a00c7, 0x6f070d9b, 0x00000000}},  //   _आम्ह, intj, _vojc,\n  { {0x7bf9004d, 0x6f070036, 0x7d020023, 0x00000000}},  //   йнер_, _wojc, gjos,\n  { {0x2bbb0025, 0x8c4500e2, 0x00000000, 0x00000000}},  //   شاشة_, џеле,   ,\n  { {0x37c20055, 0x31692290, 0x673a00bb, 0x00000000}},  //   ্টার, lmaz_, jntj,\n  { {0x5ee10055, 0xeab00025, 0x6d4b1833, 0x00000000}},  //   নাদে, ئعه_, poga,\n  { {0x31690279, 0x2919000c, 0x39a50089, 0x00000000}},  //   nmaz_, ósa_, rēs_,\n  { {0x7d1b006c, 0x63a90825, 0x6b8900d0, 0x00000000}},  //   _ilus, šenj, _uteg,\n  { {0x752d0335, 0x7d1b000c, 0x7d0900bb, 0x00000000}},  //   _amaz, _hlus, _hoes,\n  { {0x7d1b2291, 0x7d090b36, 0x6448006b, 0x00000000}},  //   _klus, _koes, ədiy,\n  { {0x673a0116, 0x7d090052, 0x00000000, 0x00000000}},  //   antj, _joes,   ,\n  { {0x7d0900b5, 0x8c46006b, 0x987a0104, 0x00000000}},  //   _moes, _peşə, _האנט,\n  { {0x394d00c4, 0x752d002d, 0x7d1b005b, 0x00000000}},  //   loes_, _emaz, _llus,\n  { {0x6263007c, 0xf7700014, 0x7c220197, 0x00000000}},  //   евра, _شاه_, zzor,\n  { {0x0446005e, 0x64430036, 0x394d0133, 0x00000000}},  //   _нейн, _śnie, noes_,\n  { {0xf09f001d, 0xa06700e3, 0x65642292, 0x00000000}},  // [5760] _toàn_, зата_, _ihih,\n  { {0x7d1b08b2, 0x394d0386, 0x8c3d014a, 0x00000000}},  //   _alus, hoes_, _keşf,\n  { {0x7d090007, 0xf297034e, 0x78ab012d, 0x00000000}},  //   _boes, _מכיר_, _odgv,\n  { {0xdd8f0151, 0x7c22022b, 0x7d091f3e, 0x00000000}},  //   اون_, tzor, _coes,\n  { {0x394d0436, 0x98a4010a, 0x629e10ed, 0x00000000}},  //   does_, nimą_, _kepo,\n  { {0xada6003b, 0x7d1b142b, 0x7c2200b5, 0x00000000}},  //   _нагл, _elus, rzor,\n  { {0x7c220010, 0x394d0016, 0x7d1b2293, 0x00000000}},  //   szor, foes_, _flus,\n  { {0xfce30001, 0x629e01d9, 0x3983006b, 0x00000000}},  //   _посо, _lepo, _qısa_,\n  { {0x98a40006, 0xeb972294, 0x00000000, 0x00000000}},  //   jimą_, _нит_,   ,\n  { {0x752d00b9, 0x98a40006, 0x65640058, 0x00000000}},  //   _smaz, dimą_, _ahih,\n  { {0x2720001d, 0x78a00061, 0x6448006b, 0x00000000}},  //   _lòng_, pamv, şdil,\n  { {0x6564008e, 0x394d00c4, 0xe9950014, 0x00000000}},  //   _chih, coes_, _آهنگ,\n  { {0x399a0006, 0x27200082, 0x656400e7, 0x00000000}},  //   lūs_, _nòng_, _dhih,\n  { {0x629e0190, 0x00000000, 0x00000000, 0x00000000}},  //   _cepo,   ,   ,\n  { {0x629e0325, 0x658800b9, 0xd765025a, 0x00000000}},  //   _depo, _běhe, _تنوی,\n  { {0x752d00ca, 0xe63b009b, 0x25d70049, 0x00000000}},  //   _umaz, _לתוכ, _זוהן_,\n  { {0xc05b01fb, 0x7d0900bb, 0x224d0036, 0x00000000}},  // [5770] сів_, _roes, łek_,\n  { {0x629e2295, 0x2720001d, 0x3169001e, 0x00000000}},  //   _gepo, _dòng_, smaz_,\n  { {0x7d1b028c, 0x753d01a2, 0x00000000, 0x00000000}},  //   _plus, onsz,   ,\n  { {0x629e0173, 0x65640023, 0xdb0b01a2, 0x00000000}},  //   _zepo, _xhih, zugä,\n  { {0xdb1b0181, 0xaf370014, 0xed580088, 0x00000000}},  //   _aquá, _فرست, чої_,\n  { {0x7d0907a5, 0x60cd00d4, 0x62870036, 0x00000000}},  //   _woes, lfam, ncjo,\n  { {0x2fc90c53, 0x7d0901b5, 0xe9d901fb, 0x00000000}},  //   ltag_, _toes, іки_,\n  { {0xa3ce001c, 0x7d1b014a, 0x9be7007e, 0x00000000}},  //   _रहल_, _ulus, _нізк,\n  { {0x2fc90a35, 0xb8d50309, 0x394d0dcb, 0x00000000}},  //   ntag_, _जय_, roes_,\n  { {0x65640a61, 0x05a90057, 0x2fc9010f, 0x00000000}},  //   _shih, овой_, itag_,\n  { {0xdb26007a, 0x6aa30169, 0xdbd700b0, 0x00000000}},  //   _تولی, manf, säät,\n  { {0x629e04d4, 0xdbd700b0, 0x78ab0009, 0x00000000}},  //   _sepo, päät, _udgv,\n  { {0x629e0020, 0xe3b20025, 0x00000000, 0x00000000}},  //   _pepo, خرج_,   ,\n  { {0x63a61861, 0x6aa304b2, 0x06e10044, 0x00000000}},  //   rskn, nanf, বাহি,\n  { {0x60cd2296, 0x27200082, 0xa50a05f6, 0x00000000}},  //   ffam, _sòng_, _мека_,\n  { {0x68e90977, 0x4f9600ed, 0x6e25012d, 0x00000000}},  //   nded, држу, dzhb,\n  { {0x27ed0870, 0x8fa30069, 0x2fc901d6, 0x00000000}},  // [5780] nven_, кате, gtag_,\n  { {0x2720001d, 0xfe720137, 0x27ed00bb, 0x00000000}},  //   _vòng_, ندا_, iven_,\n  { {0x6aa30635, 0x6ce60088, 0xa3e6006e, 0x00000000}},  //   danf, діле, फिक_,\n  { {0x68e90030, 0x27200082, 0x2cad0045, 0x00000000}},  //   jded, _tòng_, _cded_,\n  { {0x27ed02ae, 0x68e90016, 0x9b6a01fc, 0x00000000}},  //   jven_, dded, ошка_,\n  { {0x27ed0173, 0x6d5900d9, 0x399a0006, 0x00000000}},  //   dven_, alwa, tūs_,\n  { {0x81cc0055, 0x27ed00b5, 0x999e0006, 0x00000000}},  //   লিক_, even_, _rytų_,\n  { {0x63a90027, 0xa96701fc, 0x399a0006, 0x00000000}},  //   šeni, мија_, rūs_,\n  { {0x5ee10044, 0x6aa3012d, 0x00000000, 0x00000000}},  //   নারে, banf,   ,\n  { {0x291d0016, 0x00000000, 0x00000000, 0x00000000}},  //   _elwa_,   ,   ,\n  { {0x27ed00d4, 0xc94f007e, 0x60cd014a, 0x00000000}},  //   aven_, _аў_, yfam,\n  { {0x249f000c, 0x6b8000e7, 0x291d0173, 0x00000000}},  //   úum_, _kumg, _glwa_,\n  { {0x7a130224, 0x2fc90541, 0x7ae80058, 0x00000000}},  //   _větš, xtag_, _kadt,\n  { {0xbcfd0011, 0x2720000a, 0xdb0b00f8, 0x00000000}},  //   _nhũn, _bòne_, stgö,\n  { {0x7ae80146, 0x88c30044, 0x69ca2297, 0x00000000}},  //   _madt, ্যরক, ntfe,\n  { {0x2fc90a35, 0x2d550190, 0x00000000, 0x00000000}},  //   ttag_, nået_,   ,\n  { {0x40340057, 0xe7bc0044, 0x6360000c, 0x00000000}},  // [5790] ветс, _অনুয, mönn,\n  { {0x60cd06d3, 0x2fc901a2, 0x067b0049, 0x00000000}},  //   sfam, rtag_, ַנדל,\n  { {0x7cd90242, 0x68e92298, 0xc1750735, 0x00000000}},  //   змер_, yded, _площ,\n  { {0xdd94007e, 0x7afa00b0, 0x27ed00ea, 0x00000000}},  //   тацы, _antt, yven_,\n  { {0xeb99051f, 0x7ae81fe8, 0x6aa30232, 0x00000000}},  //   чил_, _badt, tanf,\n  { {0xa3d70164, 0xdcf50035, 0x7afa00f6, 0x00000000}},  //   _सहन_, _buză, _cntt,\n  { {0x6d590263, 0x636011ea, 0x6aa30808, 0x00000000}},  //   plwa, könn, ranf,\n  { {0x63bd0091, 0x7afa01a2, 0x7d0400b0, 0x00000000}},  //   kusn, _entt, öist,\n  { {0x68e92299, 0x7ae8229a, 0x69c80066, 0x00000000}},  //   rded, _fadt, _eqde,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x777805f0, 0x8c3d0035, 0x4c990049, 0x00000000}},  //   _divx, _deşe, ּבֿו,\n  { {0x6aa1147c, 0x672101ee, 0x8996009b, 0x00000000}},  //   _helf, shlj, _נכנס_,\n  { {0x61e50857, 0x74160076, 0x2d9c0211, 0x00000000}},  //   _ashl, روسا, ávez_,\n  { {0x5ecf0055, 0xe9ff001d, 0x2d5c0129, 0x00000000}},  //   _হোসে, _giảm_, víem_,\n  { {0x6aa109f9, 0x76580006, 0x216a0f93, 0x00000000}},  //   _melf, _gyvy, зиви_,\n  { {0x7bcb1c8c, 0x63bd02db, 0xc57a009b, 0x00000000}},  //   ktgu, busn, _צרפת,\n  { {0xc5690076, 0x9f4000b0, 0x6f66003b, 0x00000000}},  // [57a0] _تحول_, yviä_, еваз,\n  { {0xe9e5001d, 0x6fb30188, 0x2d5c0129, 0x00000000}},  //   _đúng_, املا, ríem_,\n  { {0xdd8f06b4, 0x2d9c0e16, 0x82360167, 0x00000000}},  //   مول_, ève_, _سردا,\n  { {0x2ca00051, 0xb81f0061, 0x7ae801c3, 0x00000000}},  //   úid_, यनाम_, _sadt,\n  { {0x6aa10010, 0x80c90061, 0x7ae801d6, 0x00000000}},  //   _belf, _हॉटे, _padt,\n  { {0x853d0006, 0x6aa10016, 0x69ca0056, 0x00000000}},  //   gsėj, _celf, ttfe,\n  { {0x6aa11263, 0x3f82000b, 0x2d550637, 0x00000000}},  //   _delf, _huku_, tået_,\n  { {0x2c570046, 0x3f8216c3, 0xdcfc0b4a, 0x00000000}},  //   _będą_, _kuku_, _kurč,\n  { {0x0b460264, 0x6aa10010, 0x69ca00ea, 0x00000000}},  //   _знан, _felf, stfe,\n  { {0x6f0e0030, 0x2ca60058, 0x6aa10016, 0x00000000}},  //   _jobc, laod_, _gelf,\n  { {0x3f8200b0, 0x613b00b0, 0x6f0e229b, 0x00000000}},  //   _luku_, nälä, _mobc,\n  { {0x6aa102ae, 0x81c80044, 0x00000000, 0x00000000}},  //   _zelf, োটা_,   ,\n  { {0x8c3d011f, 0x3f821256, 0x00000000, 0x00000000}},  //   _teşe, _nuku_,   ,\n  { {0x63bd027e, 0x6123006c, 0x613b00b0, 0x00000000}},  //   rusn, _mõle, kälä,\n  { {0x63bd0169, 0xf09f0011, 0x26de0325, 0x00000000}},  //   susn, _hoài_, meto_,\n  { {0x26de00d6, 0x365b00b6, 0x3f82020c, 0x00000000}},  //   leto_, _מכונ, _buku_,\n  { {0xb4dd02d2, 0x64a4003b, 0x00000000, 0x00000000}},  // [57b0] ड़ी_, _сања,   ,\n  { {0x63ad0119, 0xc43c00b6, 0xce6b0f97, 0x00000000}},  //   _ivan, _מתחי, пред_,\n  { {0xf09f0011, 0x6123006c, 0x61e5012d, 0x00000000}},  //   _loài_, _põld, _ushl,\n  { {0x6aa10343, 0x78a20738, 0x7db40688, 0x00000000}},  //   _self, _neov, اصلا,\n  { {0x6aa10544, 0x7981229c, 0x00000000, 0x00000000}},  //   _pelf, _sulw,   ,\n  { {0x26de02d5, 0x3ce90059, 0x501800ed, 0x00000000}},  //   jeto_, žav_, _џорџ_,\n  { {0x9412005f, 0x7bcb00d4, 0x6aa1229d, 0x00000000}},  //   _deyə_, stgu, _velf,\n  { {0x63ad02e1, 0x6aa1229e, 0x9875003b, 0x00000000}},  //   _ovan, _welf, купљ,\n  { {0x6aa11a8f, 0x6123010e, 0x2d8300ca, 0x00000000}},  //   _telf, _kõlb, _huje_,\n  { {0x26de229f, 0x3cff0061, 0x00000000, 0x00000000}},  //   geto_, ळावे_,   ,\n  { {0x63ad22a0, 0x64c60061, 0x2d830173, 0x00000000}},  //   _avan, _वादळ, _juje_,\n  { {0x33330051, 0x63ad00d9, 0xf9880025, 0x00000000}},  //   _amxx_, _bvan, _أنني_,\n  { {0x26de22a1, 0x7784007e, 0x290f22a2, 0x00000000}},  //   beto_, _бліз, _ioga_,\n  { {0x3f820091, 0x26de00fa, 0xe73303ab, 0x00000000}},  //   _ruku_, ceto_, _حصص_,\n  { {0x290f0dbd, 0x3f8222a3, 0xdcfc012d, 0x00000000}},  //   _koga_, _suku_, _surč,\n  { {0x216700c0, 0x290f00c4, 0xddc70036, 0x00000000}},  //   виси_, _joga_, _wyjś,\n  { {0x68eb006a, 0x290f016e, 0x82fa00a1, 0x00000000}},  // [57c0] _magd, _moga_, _ہرگز_,\n  { {0xfbe70044, 0x290f22a4, 0x68eb004e, 0x00000000}},  //   পমাত, _loga_, _lagd,\n  { {0x63ad1a47, 0x1b200044, 0x2d5500d8, 0x00000000}},  //   _zvan, _বদলে_, våer_,\n  { {0x290f22a5, 0x26de0107, 0x6123006c, 0x00000000}},  //   _noga_, zeto_, _põle,\n  { {0xe7bc0055, 0x99410036, 0x78a2010e, 0x00000000}},  //   _অন্য, kół_, _reov,\n  { {0x60c41d79, 0xf09f0082, 0x3ea30066, 0x00000000}},  //   lgim, _roài_, _gejt_,\n  { {0x290f05c9, 0x13db0044, 0x6da6004d, 0x00000000}},  //   _boga_, দিয়, _шива,\n  { {0x60c422a6, 0x23b203d7, 0x26de0007, 0x00000000}},  //   ngim, _जिंद, weto_,\n  { {0x26de0042, 0xf803008b, 0x68eb011c, 0x00000000}},  //   teto_, ачэн, _dagd,\n  { {0xd6da22a7, 0x24800065, 0xd5b80089, 0x00000000}},  //   фти_, _agim_, trā_,\n  { {0x26de00fa, 0xc9d50123, 0x5ebb009b, 0x00000000}},  //   reto_, _مملک, וזיק,\n  { {0xb4dd02d2, 0x69da023a, 0x439501fc, 0x00000000}},  //   ड़े_, _ipte, ламс,\n  { {0x26de0709, 0xe72f007a, 0xa0120044, 0x00000000}},  //   peto_, صصی_, _সেসব_,\n  { {0x2d871580, 0x68e0014a, 0x59c6007d, 0x00000000}},  //   ínek_, lemd, रंपर,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x741501fa, 0x63ad22a8, 0x60c40197, 0x00000000}},  //   _موبا, _tvan, ggim,\n  { {0x691c00f4, 0x2fc00319, 0x63ad0056, 0x00000000}},  // [57d0] _réel, guig_, _uvan,\n  { {0x63a90161, 0x4fc4025f, 0x69da0091, 0x00000000}},  //   šens, јста, _opte,\n  { {0x39460211, 0x3cff0061, 0x02a4007e, 0x00000000}},  //   _ojos_, ळाले_, _трым,\n  { {0xa3d70061, 0x2fc022a9, 0x705500a1, 0x00000000}},  //   _सहा_, buig_, _منجا,\n  { {0x68eb22aa, 0x69da13db, 0x8bc700ed, 0x00000000}},  //   _ragd, _apte, тсед,\n  { {0xe1f0026c, 0x6b65008b, 0x68eb0030, 0x00000000}},  //   _اسی_, ыкла, _sagd,\n  { {0x68eb006a, 0x1cbb0025, 0x38660173, 0x00000000}},  //   _pagd, _يارب_, _azor_,\n  { {0x89d6035b, 0xa96606c4, 0x7c8706e3, 0x00000000}},  //   اوير_, лища_, _јуве,\n  { {0x6eca013d, 0x00000000, 0x00000000, 0x00000000}},  //   स्कु,   ,   ,\n  { {0x290f00e7, 0x060901ab, 0x68eb01c3, 0x00000000}},  //   _woga_, енок_, _wagd,\n  { {0x290f22ab, 0x64a60269, 0x9f9b00b0, 0x00000000}},  //   _toga_, лана, _häät_,\n  { {0x2f16009f, 0xdcfc0089, 0x442b0009, 0x00000000}},  //   _hægt_, _kurā, fzc_,\n  { {0xf7f404e1, 0x9f40008e, 0x7c2b01a2, 0x00000000}},  //   _پسند, rviú_, nzgr,\n  { {0x395f00b0, 0x78a9006c, 0x3ced010e, 0x00000000}},  //   llus_, laev, _laev_,\n  { {0x321e0161, 0x395f010e, 0x200f010e, 0x00000000}},  //   áty_, olus_, ägin_,\n  { {0x2fc001bb, 0x78a90087, 0x46cf0316, 0x00000000}},  //   tuig_, naev, त्रह,\n  { {0x60c40065, 0xe3b200f3, 0x752416fc, 0x00000000}},  // [57e0] rgim, _ارب_, _iliz,\n  { {0xa2e600ed, 0x139b00b3, 0x693a002b, 0x00000000}},  //   _соод, _רביע, nċer,\n  { {0x629c0489, 0x75240091, 0x78a9010e, 0x00000000}},  //   mbro, _kliz, kaev,\n  { {0xe45f0039, 0x629c09b0, 0xd00a00ed, 0x00000000}},  //   mför_, lbro, _земе_,\n  { {0x6d420032, 0x395f006c, 0xdb5a181f, 0x00000000}},  //   rnoa, dlus_, нюк_,\n  { {0xbda60151, 0xdb0b00d4, 0x395f010e, 0x00000000}},  //   _محرو, nsgè, elus_,\n  { {0xe45f0039, 0xe6070558, 0xfc3f000c, 0x00000000}},  //   nför_, _اش_, _þín_,\n  { {0x391401f9, 0x395f0016, 0x6123006c, 0x00000000}},  //   рмир, glus_, _kõla,\n  { {0x68e001d6, 0x629c22ac, 0x00000000, 0x00000000}},  //   remd, kbro,   ,\n  { {0x47340265, 0x68e022ad, 0x75240020, 0x00000000}},  //   рнос, semd, _aliz,\n  { {0x75240119, 0x629c032e, 0x0f5700b3, 0x00000000}},  //   _bliz, dbro, ריים_,\n  { {0x64750081, 0x395f10ff, 0x6aaa22ae, 0x00000000}},  //   игну, clus_, laff,\n  { {0xb796012b, 0x658800b9, 0x7bc200ab, 0x00000000}},  //   _срећ, _těho, nuou,\n  { {0x75241cc0, 0x6aaa02e5, 0x629c22af, 0x00000000}},  //   _eliz, naff, gbro,\n  { {0x673a00d4, 0x2259007c, 0x00000000, 0x00000000}},  //   mitj, тивы_,   ,\n  { {0x6aaa010f, 0x31601d69, 0x6360010f, 0x00000000}},  //   haff, gliz_, hönh,\n  { {0x6aaa22b0, 0x629c0376, 0xf1b8002b, 0x00000000}},  // [57f0] kaff, bbro, ġġa_,\n  { {0x656d1346, 0x673a0009, 0x78a90095, 0x00000000}},  //   _hhah, nitj, zaev,\n  { {0x395f0016, 0x6aaa00ea, 0xddc70089, 0x00000000}},  //   ylus_, daff, _izjū,\n  { {0x61fa000c, 0x8d741289, 0xdb02004a, 0x00000000}},  //   ætle, مانا, droñ,\n  { {0xd7e60025, 0x63af0051, 0x673a0d61, 0x00000000}},  //   _بك_, nscn, kitj,\n  { {0x645a001a, 0x6aaa0203, 0x673a0023, 0x00000000}},  //   ştig, gaff, jitj,\n  { {0x395f006c, 0x2f160698, 0xaa49005e, 0x00000000}},  //   tlus_, _vægt_, ъпка_,\n  { {0xe8f900ed, 0xc27c0049, 0x63bd0243, 0x00000000}},  //   тли_, ערהי, krsn,\n  { {0x629c0145, 0x7bdb00e7, 0x395f010e, 0x00000000}},  //   ybro, _upuu, rlus_,\n  { {0x656d011c, 0x6aaa00ea, 0xaa880025, 0x00000000}},  //   _ahah, caff, _منكم_,\n  { {0x395f00b0, 0x75240263, 0xf506003b, 0x00000000}},  //   plus_, _pliz, азно,\n  { {0x7ae30047, 0x69c3018e, 0x696706dd, 0x00000000}},  //   lent, mune, _صداق,\n  { {0x289a0049, 0x656d0020, 0x69c30052, 0x00000000}},  //   _סיסא, _dhah, lune,\n  { {0x661a08e2, 0x68440088, 0x8c1a0097, 0x00000000}},  //   bytk, _уніа, דושי,\n  { {0x69c30c51, 0x63bd22b1, 0x7ae3005b, 0x00000000}},  //   nune, arsn, ient,\n  { {0xe45f0073, 0x752422b2, 0x291f0d17, 0x00000000}},  //   rför_, _uliz, nkua_,\n\n  { {0x7ae3021e, 0x69c308b5, 0x27290d09, 0x00000000}},  // [5800] kent, hune, _cúng_,\n  { {0x7ae30d6b, 0x69c30358, 0x6d5b01a3, 0x00000000}},  //   jent, kune, _akua,\n  { {0x7208026c, 0x69c3006c, 0x291f00b0, 0x00000000}},  //   _صفحہ_, june, kkua_,\n  { {0xeb9a00e3, 0x47dc0044, 0x69c3002d, 0x00000000}},  //   вид_, বিতী, dune,\n  { {0x7ae3001f, 0x6aaa1864, 0xb92a001d, 0x00000000}},  //   fent, taff, _thuế_,\n  { {0x7ae322b3, 0x63a4000b, 0x6d5b1d35, 0x00000000}},  //   gent, _mwin, _ekua,\n  { {0x69c322b4, 0x888400a6, 0x673a0065, 0x00000000}},  //   gune, میان, vitj,\n  { {0x21200e0d, 0x6aaa21ba, 0x7ae30026, 0x00000000}},  //   nkih_, saff, aent,\n  { {0x673a0065, 0x00000000, 0x00000000, 0x00000000}},  //   titj,   ,   ,\n  { {0x656d1bd2, 0x69c30b50, 0x63bd0091, 0x00000000}},  //   _shah, bune, vrsn,\n  { {0x673a0065, 0x6d9301d5, 0xceb3009b, 0x00000000}},  //   ritj, _għad, חית_,\n  { {0x673a0129, 0x63a40009, 0x6aa80016, 0x00000000}},  //   sitj, _bwin, _hedf,\n  { {0xd7940025, 0x673a00d4, 0x21200059, 0x00000000}},  //   _التخ, pitj, dkih_,\n  { {0x63a400c7, 0x186700ed, 0x673a0065, 0x00000000}},  //   _dwin, _тачи_, qitj,\n  { {0x6aa805fe, 0x27290011, 0x5187013b, 0x00000000}},  //   _medf, _súng_, руга,\n  { {0xdb1901aa, 0xd3a70b52, 0x767b009b, 0x00000000}},  //   ntwò, _кроп, _בטוח,\n  { {0xc05b01fb, 0x7ae3011c, 0x6448005f, 0x00000000}},  // [5810] тів_, yent, şdir,\n  { {0x7ae3027b, 0x332a0061, 0x6d5b22b5, 0x00000000}},  //   xent, chbx_, _skua,\n  { {0x7ae322b6, 0xe2a7000c, 0x63a422b7, 0x00000000}},  //   vent, íður_, _zwin,\n  { {0x2120037e, 0x7ae3006a, 0x753d0047, 0x00000000}},  //   ckih_, went, nisz,\n  { {0x2d9a0026, 0x06ac0044, 0x6aa80133, 0x00000000}},  //   appe_, _খানি, _bedf,\n  { {0x69c300b0, 0x8ccc013d, 0x62850066, 0x00000000}},  //   tune, _हाथो, _jgho,\n  { {0xd2b8009b, 0x6aa822b8, 0xdb0900c4, 0x00000000}},  //   בלות_, _dedf, _uveí,\n  { {0x69c31cc7, 0xe0df01aa, 0x6d5b0020, 0x00000000}},  //   rune, _akòz_, _ukua,\n  { {0x7ae304cb, 0x6d590046, 0x69c3022b, 0x00000000}},  //   pent, mowa, sune,\n  { {0x69c3001a, 0x291f0e33, 0x62850016, 0x00000000}},  //   pune, skua_, _ngho,\n  { {0x99850054, 0xa2ce0061, 0x63a4112b, 0x00000000}},  //   _الصو, _ताब्, _swin,\n  { {0x753d0047, 0x6d590046, 0x6b810f30, 0x00000000}},  //   gisz, nowa, _hilg,\n  { {0x6b890219, 0xdcf5001e, 0x6b81017b, 0x00000000}},  //   _jueg, _atzī, _kilg,\n  { {0x6b8101d5, 0xe69501b7, 0x6d930066, 0x00000000}},  //   _jilg, _الغد, _mħab,\n  { {0x6d590046, 0x6b890219, 0x2120092f, 0x00000000}},  //   kowa, _lueg, tkih_,\n  { {0x63a40168, 0x62850190, 0x753d2258, 0x00000000}},  //   _twin, _egho, cisz,\n  { {0x6d590046, 0x2120050f, 0x612a000c, 0x00000000}},  // [5820] dowa, rkih_, _nýle,\n  { {0x21200f3a, 0xbeaa0014, 0x2fd20039, 0x00000000}},  //   skih_, اهان_, rtyg_,\n  { {0xc333007b, 0x248d0161, 0x21200fd0, 0x00000000}},  //   _מוז_, žeme_, pkih_,\n  { {0x2d5c027b, 0x6d590046, 0x6b810016, 0x00000000}},  //   víes_, gowa, _ailg,\n  { {0x6b811355, 0x4c560025, 0xdcfc0089, 0x00000000}},  //   _bilg, حضار, _strē,\n  { {0x6b8100a4, 0x79a619a2, 0x00000000, 0x00000000}},  //   _cilg, брие,   ,\n  { {0x3eaa049a, 0xbea3005e, 0x6d590036, 0x00000000}},  //   _iebt_, _хаск, bowa,\n  { {0x3eaa02ae, 0x6d590046, 0x6b890211, 0x00000000}},  //   _hebt_, cowa, _fueg,\n  { {0x6b81002b, 0x3eb80093, 0x5ecf0044, 0x00000000}},  //   _filg, _kdrt_, _হোটে,\n  { {0x95d801f9, 0x6b810173, 0x35b422b9, 0x00000000}},  //   адот_, _gilg, обор,\n  { {0x9f400211, 0x2f5b00a3, 0x753d0010, 0x00000000}},  //   lvió_, רדינ, tisz,\n  { {0x5559007e, 0x38cb0014, 0x2fc02141, 0x00000000}},  //   рамя_, _ماهی_, krig_,\n  { {0x48e3013d, 0x6d43009d, 0x753d0010, 0x00000000}},  //   _फ़ोटो_, énai, risz,\n  { {0x2fc0033d, 0x6d5922ba, 0xa5f822bb, 0x00000000}},  //   drig_, zowa, _веку_,\n  { {0x2d8a0211, 0x6d590020, 0x6f1513c2, 0x00000000}},  //   _nube_, yowa, _rozc,\n  { {0x2fc01e28, 0x9099005e, 0x00000000, 0x00000000}},  //   frig_, рват_,   ,\n  { {0x2d8a009d, 0x2d9800f6, 0x12e701e1, 0x00000000}},  // [5830] _aube_, _atre_, _лінг,\n  { {0x6b89008e, 0x6d590036, 0x6d4a01e5, 0x00000000}},  //   _rueg, wowa, éfan,\n  { {0x6d590046, 0xa2ce01f5, 0xe7ea013d, 0x00000000}},  //   towa, _तात्, _जैसा_,\n  { {0x20c700ed, 0x2fc00090, 0x2d8a1080, 0x00000000}},  //   _усог, brig_, _dube_,\n  { {0x6d590046, 0x2d9800f4, 0x6b890197, 0x00000000}},  //   rowa, _etre_, _queg,\n  { {0x6d590046, 0x612a01ca, 0x6ed8006e, 0x00000000}},  //   sowa, _výle, न्दु,\n  { {0x80ac0055, 0x6d590036, 0x2d8a0ecc, 0x00000000}},  //   _ছাত্, powa, _gube_,\n  { {0x3f8b037e, 0x6b8122bc, 0xf41f00b0, 0x00000000}},  //   _kucu_, _wilg, kyä_,\n  { {0x6b8122bd, 0x2d8a0091, 0xe0df000a, 0x00000000}},  //   _tilg, _zube_, _ajòk_,\n  { {0x2caf01c9, 0xeab100a1, 0x2d980374, 0x00000000}},  //   lagd_, _آٹا_, _ytre_,\n  { {0x36690517, 0x3f8b10ed, 0x61230004, 0x00000000}},  //   рано_, _lucu_, _põll,\n  { {0x27e0001a, 0xe0df000a, 0x00000000, 0x00000000}},  //   _ţine_, _djòk_,   ,\n  { {0x442422be, 0xe4570088, 0x9cd6009b, 0x00000000}},  //   ám_, жжя_, חורה_,\n  { {0x59dd024c, 0x60dd001c, 0x60cf00f6, 0x00000000}},  //   _महार, _absm, _accm,\n  { {0x63720030, 0x63600010, 0xdddc0087, 0x00000000}},  //   hæng, dönt, _ogrš,\n  { {0x09be0044, 0x2fc022bf, 0x602600ed, 0x00000000}},  //   _আহমা, trig_, одба,\n  { {0x78ab0047, 0x2fc00cac, 0x2d8a0211, 0x00000000}},  // [5840] _megv, urig_, _sube_,\n  { {0xe6b702fb, 0x2fc01915, 0xdfcf0426, 0x00000000}},  //   _आयोज, rrig_, ئيل_,\n  { {0xee3a003b, 0x00000000, 0x00000000, 0x00000000}},  //   јне_,   ,   ,\n  { {0xed5a007c, 0x3f8b016c, 0xdca3003b, 0x00000000}},  //   шое_, _fucu_, даци,\n  { {0xed4f00a1, 0xfbcf023c, 0x0b930688, 0x00000000}},  //   ڑھے_, نتو_, وجود,\n  { {0xada622c0, 0x0efa007e, 0x2d8a028a, 0x00000000}},  //   _магл, _тэмы_, _tube_,\n  { {0xcebf00b9, 0xdd920167, 0x63720190, 0x00000000}},  //   _úřad_, _آور_, mænd,\n  { {0x4814092b, 0x63720030, 0x14c60061, 0x00000000}},  //   змис, lænd, _वागण,\n  { {0xc17300b3, 0x78ab0089, 0xeb97017f, 0x00000000}},  //   וחה_, _degv, _мит_,\n  { {0xf41f0052, 0x00000000, 0x00000000, 0x00000000}},  //   vyä_,   ,   ,\n  { {0x7bc20270, 0x2d850010, 0x6123006c, 0x00000000}},  //   lrou, _élet_, _sõlm,\n  { {0xe4e701fb, 0xf41f00b0, 0xd7fa003b, 0x00000000}},  //   ціон, tyä_, _вук_,\n  { {0x636022c1, 0x39490ecc, 0x00000000, 0x00000000}},  //   yönt, čast_,   ,\n  { {0x7c2f011f, 0x2d840322, 0xe1f300a1, 0x00000000}},  //   _ücre, _lime_, وسز_,\n  { {0xd13b0265, 0x3f83016c, 0xf41f00b0, 0x00000000}},  //   аха_, _riju_, syä_,\n  { {0x2d840004, 0x3f830107, 0x7bc2013e, 0x00000000}},  //   _nime_, _siju_, krou,\n  { {0x63600c94, 0x3f8304eb, 0x00000000, 0x00000000}},  // [5850] tönt, _piju_,   ,\n  { {0x2d8400f4, 0x7bc222c2, 0x26cc016b, 0x00000000}},  //   _aime_, drou, ngdo_,\n  { {0x8c3d22c3, 0x27290142, 0xb4db00f6, 0x00000000}},  //   _ieşi, _júna_, ciàc,\n  { {0x2d84016c, 0x62950036, 0x7bc2005b, 0x00000000}},  //   _cime_, lczo, frou,\n  { {0x7bc20541, 0x799a002b, 0x78ab22c4, 0x00000000}},  //   grou, _attw, _regv,\n  { {0xdefb008b, 0x60cd22c5, 0x63720030, 0x00000000}},  //   _тым_, lgam, ræng,\n  { {0x2729009f, 0x13e40044, 0x8a02005e, 0x00000000}},  //   _núna_, মিয়, езще,\n  { {0x60cd020c, 0x7bc2009d, 0x63720190, 0x00000000}},  //   ngam, brou, mæne,\n  { {0xd90c007a, 0x853d010a, 0x7bc20035, 0x00000000}},  //   شیو_, ipėd, crou,\n  { {0x2489002a, 0x78ab0116, 0xaad201f5, 0x00000000}},  //   _agam_, _wegv, _सायक,\n  { {0xf9f904e8, 0x63600010, 0x6d4b0082, 0x00000000}},  //   _دفاع_, zöns, onga,\n  { {0x60cd0065, 0x01d10044, 0x691c22c6, 0x00000000}},  //   jgam, াবাদ, _dées,\n  { {0x60cd16f8, 0x8c3d01df, 0x2cad0606, 0x00000000}},  //   dgam, _beşi, _meed_,\n  { {0xe297026b, 0x2cad22c7, 0x27ed01aa, 0x00000000}},  //   зар_, _leed_, mwen_,\n  { {0xc692007b, 0x11d5007e, 0x61312229, 0x00000000}},  //   _טאג_, мітр, _målf,\n  { {0x399122c8, 0x2cad1eed, 0x55ba00b6, 0x00000000}},  //   _más_, _need_, _המקו,\n  { {0x63720030, 0x69c301a2, 0x27ed005b, 0x00000000}},  // [5860] tænd, hrne, nwen_,\n  { {0x93fb0097, 0x7bc200b5, 0x6d4b186c, 0x00000000}},  //   _פליי, vrou, enga,\n  { {0x39910428, 0x44220007, 0x0d8600ed, 0x00000000}},  //   _nás_, lyk_, член,\n  { {0x7bc222c9, 0x6d4b0058, 0x60cd0253, 0x00000000}},  //   trou, gnga, cgam,\n  { {0x8c3d014a, 0x27ed01aa, 0x4422007f, 0x00000000}},  //   _yeşi, jwen_, nyk_,\n  { {0x6d4b0475, 0xf767025a, 0x6b9b0051, 0x00000000}},  //   anga, _سا_, _dtug,\n  { {0x2d8408ef, 0xdca60072, 0x39910051, 0x00000000}},  //   _time_, _нави, _cás_,\n  { {0x0798012b, 0x442222c4, 0x7bc2009d, 0x00000000}},  //   овић_, kyk_, prou,\n  { {0x6d42001a, 0xba3c0006, 0xb8d400e8, 0x00000000}},  //   mioa, _neįv, _जज_,\n  { {0x6d4222ca, 0x39910051, 0x103700b3, 0x00000000}},  //   lioa, _fás_, פטים_,\n  { {0x7c2201aa, 0x39910b0c, 0xba9b009b, 0x00000000}},  //   lyor, _gás_, _הסבי,\n  { {0x68e900ab, 0x7aea22cb, 0x6d421b90, 0x00000000}},  //   ceed, left, nioa,\n  { {0x7c220129, 0x645a22cc, 0xf76f0014, 0x00000000}},  //   nyor, ştin, ضای_,\n  { {0x6123006c, 0x6d4200e5, 0x00000000, 0x00000000}},  //   _tõlk, hioa,   ,\n  { {0xe9ff00ad, 0x69d80039, 0x41e401e1, 0x00000000}},  //   _phẩm_, ntve, ніта,\n  { {0x6131044f, 0x6d420032, 0x60cd007f, 0x00000000}},  //   _målg, jioa, ugam,\n  { {0x2cad020f, 0x6d42002d, 0x60cd0207, 0x00000000}},  // [5870] _reed_, dioa, rgam,\n  { {0x5187008b, 0x7aea0107, 0x60cd01e5, 0x00000000}},  //   _нума, jeft, sgam,\n  { {0x27ed0263, 0xe9ff0011, 0x6b9b0039, 0x00000000}},  //   zwen_, _thẩm_, _stug,\n  { {0x6d4222cd, 0x399122ce, 0x6d4b00e7, 0x00000000}},  //   gioa, _rás_, unga,\n  { {0x6d930f68, 0x68e90211, 0x6d4b04be, 0x00000000}},  //   _għan, veed, rnga,\n  { {0x69d80010, 0x7aea0030, 0x68e90068, 0x00000000}},  //   ftve, geft, weed,\n  { {0x44220a32, 0x68e922cf, 0x2cad006c, 0x00000000}},  //   zyk_, teed, _teed_,\n  { {0x3991004f, 0x6d42001a, 0xc2e90044, 0x00000000}},  //   _vás_, cioa, খাটি_,\n  { {0x68e900c7, 0x27ed02ae, 0xf1b801d5, 0x00000000}},  //   reed, uwen_, ġġi_,\n  { {0x7d1b0038, 0x752d0061, 0x7bcb0058, 0x00000000}},  //   _hous, _alaz, mugu,\n  { {0x752d0d0a, 0x7d1b00b9, 0x7bcb01e5, 0x00000000}},  //   _blaz, _kous, lugu,\n  { {0xc329061e, 0x7d1b0128, 0x44221091, 0x00000000}},  //   _דו_, _jous, tyk_,\n  { {0x394d04bd, 0xd90f026c, 0x395f00ab, 0x00000000}},  //   mnes_, _لیں_, mous_,\n  { {0x395f22d0, 0x6d42022b, 0x4422018d, 0x00000000}},  //   lous_, zioa, ryk_,\n  { {0x394d0219, 0x7d0922d1, 0x7bcb22d2, 0x00000000}},  //   ones_, _ones, hugu,\n  { {0x394d22d3, 0x752d0209, 0x7d1b021e, 0x00000000}},  //   nnes_, _glaz, _nous,\n  { {0xef1a012b, 0x394d22d4, 0xa0670113, 0x00000000}},  // [5880] ома_, ines_, дата_,\n  { {0xe7e503d7, 0x7bcb014a, 0xe9ff0011, 0x00000000}},  //   _कहना_, dugu, _nhắm_,\n  { {0x7d1b1e83, 0x2d9c008d, 0x394d0089, 0x00000000}},  //   _bous, ëve_, knes_,\n  { {0x7d1b00f4, 0x395f04bd, 0x2d9c0089, 0x00000000}},  //   _cous, jous_, īve_,\n  { {0x6d4222d5, 0x7d1b01aa, 0x7bcb0760, 0x00000000}},  //   rioa, _dous, gugu,\n  { {0x394d0211, 0x7d0922d6, 0x6d42002d, 0x00000000}},  //   enes_, _enes, sioa,\n  { {0x7aea0193, 0x7bcb0089, 0x6d420a51, 0x00000000}},  //   reft, augu, pioa,\n  { {0x394d02b6, 0x69d80343, 0x69ca010f, 0x00000000}},  //   gnes_, rtve, rufe,\n  { {0x6d400409, 0x6f1c0065, 0x2ca612e8, 0x00000000}},  //   _imma, _korc, mbod_,\n  { {0x752d05fa, 0x394d00f6, 0x65640020, 0x00000000}},  //   _slaz, anes_, _akih,\n  { {0x7d1b22d7, 0x6f1c00f4, 0x395f22d8, 0x00000000}},  //   _yous, _morc, bous_,\n  { {0x2ca60250, 0x394d0107, 0x6f1c008e, 0x00000000}},  //   nbod_, cnes_, _lorc,\n  { {0x248d0ce4, 0x2732001d, 0x6d40012d, 0x00000000}},  //   žemo_, _nâng_, _mmma,\n  { {0x6d930f68, 0x6f1c00ca, 0x6131044f, 0x00000000}},  //   _bħal, _norc, _måle,\n  { {0x7bcb0032, 0x200200b0, 0x9294007e, 0x00000000}},  //   zugu, _arki_, тасц,\n  { {0x752d0119, 0x39442273, 0x645a009d, 0x00000000}},  //   _ulaz, nims_, écié,\n  { {0x6f1c22d9, 0x5184007e, 0x7d1b00f4, 0x00000000}},  // [5890] _borc, тура, _rous,\n  { {0xce6b0a94, 0x7d1b00b9, 0x6d40021e, 0x00000000}},  //   оред_, _sous, _amma,\n  { {0x7d1b0e6d, 0x6d930f68, 0x394d0675, 0x00000000}},  //   _pous, _għal, ynes_,\n  { {0x63ad000b, 0x7bcb22da, 0x6d5a000c, 0x00000000}},  //   _kwan, tugu, _ítal,\n  { {0x6f1c22db, 0xbbeb002c, 0x61310039, 0x00000000}},  //   _forc, ترام_, _våld,\n  { {0x63ad0be3, 0x26e30055, 0x7bcb0311, 0x00000000}},  //   _mwan, _কোনো_, rugu,\n  { {0x7d1b1e83, 0x394d001e, 0x7bcb0004, 0x00000000}},  //   _tous, tnes_, sugu,\n  { {0x394d00f4, 0x7bcb22dc, 0x2129033b, 0x00000000}},  //   unes_, pugu, nkah_,\n  { {0x394d068f, 0x8b6701b7, 0x395f22dd, 0x00000000}},  //   rnes_, _قائم, rous_,\n  { {0x395f22de, 0x394d1419, 0x25720051, 0x00000000}},  //   sous_, snes_, dála_,\n  { {0x63ad22df, 0x21290085, 0x394d01c5, 0x00000000}},  //   _awan, kkah_, pnes_,\n  { {0x63ad1e5d, 0x2d9122e0, 0x67b90d0b, 0x00000000}},  //   _bwan, _muze_, _فاتح_,\n  { {0x78270644, 0x25720051, 0x2d91002d, 0x00000000}},  //   _تعال, gála_, _luze_,\n  { {0x2732000d, 0x68f90016, 0x63ad22e1, 0x00000000}},  //   _când_, _hawd, _dwan,\n  { {0x2ca6018e, 0xc7b90047, 0xc0e60077, 0x00000000}},  //   ybod_, lső_, новк,\n  { {0x68fb020c, 0x6f1c0c3c, 0xe9ff0082, 0x00000000}},  //   ndud, _sorc, _nhậm_,\n  { {0x63ad0016, 0xdb0b000c, 0x291d0036, 0x00000000}},  // [58a0] _gwan, yrgð, _mowa_,\n  { {0x2d91031a, 0x68fb006b, 0x273222e2, 0x00000000}},  //   _buze_, hdud, _vâng_,\n  { {0xaac90201, 0x63ad22e3, 0x61312141, 0x00000000}},  //   _राजक, _zwan, _såle,\n  { {0x8fa6008b, 0x6f1c0436, 0x2d91099b, 0x00000000}},  //   _паме, _worc, _duze_,\n  { {0x6f1c22e4, 0xdb97008b, 0xead416c1, 0x00000000}},  //   _torc, евіч_, воль,\n  { {0x45160044, 0xdd92023c, 0x5ec70044, 0x00000000}},  //   াসিক_, _موس_, র্বে,\n  { {0x39440129, 0x27e60093, 0x63bb002b, 0x00000000}},  //   tims_, _spon_, ġuni,\n  { {0x4ddb0097, 0x6d4001a3, 0x8c3d1f4a, 0x00000000}},  //   _מחלו, _umma, _peşt,\n  { {0x39440006, 0x20000026, 0x6b8801f3, 0x00000000}},  //   rims_, nvii_, _tidg,\n  { {0x63ad22e5, 0x3f8a000b, 0x394400d4, 0x00000000}},  //   _rwan, _jibu_, sims_,\n  { {0x63ad0007, 0x68e2001c, 0x18a617be, 0x00000000}},  //   _swan, _tbod, _заем,\n  { {0x80e008b7, 0x7afa22e6, 0x63ad0d16, 0x00000000}},  //   _পোস্, _hatt, _pwan,\n  { {0x7afa0047, 0x27e600ab, 0x657d22e7, 0x00000000}},  //   _katt, _upon_, rmsh,\n  { {0x257222e8, 0x7afa002b, 0x9388007c, 0x00000000}},  //   rála_, _jatt, есса_,\n  { {0x31c400e3, 0x0697009b, 0x5ec70044, 0x00000000}},  //   лств, _אדום_, র্ডে,\n  { {0x3f8a0020, 0x7afa191c, 0x212909e4, 0x00000000}},  //   _aibu_, _latt, ukah_,\n  { {0x6d9301d5, 0x63ad000b, 0x2d910091, 0x00000000}},  // [58b0] _għaj, _uwan, _suze_,\n  { {0x7afa0239, 0x212922e9, 0xa857009b, 0x00000000}},  //   _natt, skah_, תימה_,\n  { {0x7e28007e, 0xbf9b01c3, 0x443901c5, 0x00000000}},  //   ніца_, _grên, lzs_,\n  { {0x7afa0052, 0x00000000, 0x00000000, 0x00000000}},  //   _aatt,   ,   ,\n  { {0x25560089, 0x00000000, 0x00000000, 0x00000000}},  //   nāla_,   ,   ,\n  { {0xbbd102d2, 0x68f9002b, 0x0c24007e, 0x00000000}},  //   _समीक, _sawd, ымін,\n  { {0xbe650076, 0x7afa068f, 0xe9ff0011, 0x00000000}},  //   _شهري, _datt, _thậm_,\n  { {0xdb0b00f8, 0x00000000, 0x00000000, 0x00000000}},  //   dsgå,   ,   ,\n  { {0x7afa0198, 0x68fb22ea, 0x69ce0030, 0x00000000}},  //   _fatt, rdud, _åben,\n  { {0x7afa0207, 0x00000000, 0x00000000, 0x00000000}},  //   _gatt,   ,   ,\n  { {0x64a6008b, 0x68f90544, 0x00000000, 0x00000000}},  //   кана, _tawd,   ,\n  { {0xe894008b, 0x7afa0026, 0x2fc90007, 0x00000000}},  //   _баць, _zatt, krag_,\n  { {0x78a922eb, 0x20000288, 0x7afa0095, 0x00000000}},  //   mbev, xvii_, _yatt,\n  { {0x03a30057, 0x2b4708f0, 0x20000026, 0x00000000}},  //   риро, ninc_, vvii_,\n  { {0x80e00055, 0x3f8a0169, 0xe2970545, 0x00000000}},  //   _পোষ্, _ribu_, тас_,\n  { {0x2fc921b3, 0x78a90250, 0x3f8a01a3, 0x00000000}},  //   frag_, nbev, _sibu_,\n  { {0xf8b20476, 0x21670407, 0x54a50025, 0x00000000}},  // [58c0] ישן_, тити_, _صحيف,\n  { {0x6123006c, 0x6d930066, 0x798b01d6, 0x00000000}},  //   _sõlt, _għak, _ligw,\n  { {0x7afa006c, 0x4256025f, 0xb606008e, 0x00000000}},  //   _ratt, _штит, _ibáñ,\n  { {0x7afa0d3c, 0x80e00044, 0x00000000, 0x00000000}},  //   _satt, _পোর্,   ,\n  { {0xeb97004c, 0x7afa00ab, 0x78a917f1, 0x00000000}},  //   вич_, _patt, dbev,\n  { {0x7afa002b, 0x00000000, 0x00000000, 0x00000000}},  //   _qatt,   ,   ,\n  { {0x7afa0073, 0x798b0173, 0xe45f22ae, 0x00000000}},  //   _vatt, _bigw, ngör_,\n  { {0x7afa0343, 0x5ec70044, 0x1bea00e2, 0x00000000}},  //   _watt, র্দে, _одби_,\n  { {0x798b018e, 0x7afa086a, 0x8c6612c0, 0x00000000}},  //   _digw, _tatt, _شطرن,\n  { {0x6131093b, 0x25560089, 0x00000000, 0x00000000}},  //   _måla, vāla_,   ,\n  { {0xa37b00c4, 0x2d8c0010, 0x00000000, 0x00000000}},  //   ntõe, _édes_,   ,\n  { {0x77920123, 0x25560089, 0x18a6025f, 0x00000000}},  //   _پیدا, tāla_, _радм,\n  { {0xd6d200a2, 0xe9ff0011, 0x00000000, 0x00000000}},  //   _نقش_, _thảm_,   ,\n  { {0x2d870779, 0x5693007e, 0x443922ec, 0x00000000}},  //   ínez_, _кашт, rzs_,\n  { {0x442d01cd, 0x673d0023, 0x3205013e, 0x00000000}},  //   še_, ësje, íly_,\n  { {0x2fc922ed, 0x3998120d, 0x69ca22ee, 0x00000000}},  //   trag_, _més_, irfe,\n  { {0xaad203d7, 0xa075003b, 0x6d930066, 0x00000000}},  // [58d0] _सांक, угач, _tħak,\n  { {0x61f9007e, 0x9855006b, 0xa2f522ef, 0x00000000}},  //   _зноў_, _ləğv_, _споч,\n  { {0x3998009d, 0x656f22f0, 0xe8df0082, 0x00000000}},  //   _nés_, olch, hiền_,\n  { {0xdcfc006b, 0xf653009b, 0xd01000a1, 0x00000000}},  //   _vurğ, בצע_, حلے_,\n  { {0x798b002b, 0xc05b0088, 0xfc30006d, 0x00000000}},  //   _rigw, _цін_, يحه_,\n  { {0xab64008b, 0xc5e90044, 0x798b00e0, 0x00000000}},  //   авіл, গিতা_, _sigw,\n  { {0xa96902e9, 0x2b470232, 0x00000000, 0x00000000}},  //   ника_, rinc_,   ,\n  { {0x6c8500f3, 0xe9ff0011, 0x2b4700ea, 0x00000000}},  //   _ملزم, _chạm_, sinc_,\n  { {0x78a90030, 0x2b490051, 0xc6200044, 0x00000000}},  //   rbev, éacs_, _ফেলা_,\n  { {0x46f5007c, 0x39980129, 0x78a901bf, 0x00000000}},  //   учит, _fés_, sbev,\n  { {0x45861663, 0x2b4500f6, 0x78a906ec, 0x00000000}},  //   лгов, _imlc_, pbev,\n  { {0xaadf0164, 0x03a6013b, 0x629c0009, 0x00000000}},  //   प्रक, лимо, wcro,\n  { {0x290f0073, 0xc3d6007e, 0x00000000, 0x00000000}},  //   _inga_, ыўны,   ,\n  { {0xcc3a007b, 0xdc3a0049, 0xe3e700a1, 0x00000000}},  //   געשט, געשר, اکين_,\n  { {0x6d9301f3, 0x00000000, 0x00000000, 0x00000000}},  //   _iħaw,   ,   ,\n  { {0x629c009d, 0x217600ed, 0x255601c5, 0x00000000}},  //   scro, ѓувр, mālo_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  // [58e0]   ,   ,   ,\n  { {0x63a4006a, 0xd2aa007e, 0xbf9b0181, 0x00000000}},  //   _itin, _якое_, _grêm,\n  { {0x25560089, 0x290f0058, 0x6d930066, 0x00000000}},  //   nālo_, _onga_, _mħaw,\n  { {0xa37b0181, 0x3998060d, 0xac970014, 0x00000000}},  //   rtõe, _rés_, هنما_,\n  { {0x77f2024c, 0xa37b0181, 0x60d60016, 0x00000000}},  //   _अनेक_, stõe, mgym,\n  { {0x81c90055, 0x63a40020, 0x39980181, 0x00000000}},  //   োবর_, _mtin, _pés_,\n  { {0xe9ff001d, 0x829700b6, 0x656f0016, 0x00000000}},  //   _phạm_, נדקס_, ylch,\n  { {0xa96701fc, 0x69ca01f3, 0x399800d4, 0x00000000}},  //   лија_, rrfe, _vés_,\n  { {0x3d11001c, 0xfaa6109f, 0x4734013b, 0x00000000}},  //   णारे_, _базо, инис,\n  { {0x5837007c, 0x290f22f1, 0x26d801a2, 0x00000000}},  //   узья_, _enga_, üro_,\n  { {0x63a422f2, 0x49ca0113, 0xa2ce0204, 0x00000000}},  //   _atin, _член_, _ताज्,\n  { {0x9f49009f, 0xd6ac0044, 0x7bcd000c, 0x00000000}},  //   hvað_, _খাওয, áaug,\n  { {0xbf9b0181, 0x78bd01e5, 0xe72a22f3, 0x00000000}},  //   _prêm, ðsve, _подд_,\n  { {0x6d93002b, 0x00000000, 0x00000000, 0x00000000}},  //   _għaw,   ,   ,\n  { {0x2d9c02d5, 0x5fc70061, 0x63a4049d, 0x00000000}},  //   ível_, _लिहल, _etin,\n  { {0xddcb01d5, 0x00000000, 0x00000000, 0x00000000}},  //   ċiżj,   ,   ,\n  { {0x3ecb003b, 0x00000000, 0x00000000, 0x00000000}},  // [58f0] ећем_,   ,   ,\n  { {0x63600010, 0x00000000, 0x00000000, 0x00000000}},  //   köny,   ,   ,\n  { {0x442b004a, 0x60ce1d83, 0x00000000, 0x00000000}},  //   lyc_, _şimş,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xfe7000a1, 0x7bcb01c3, 0x8d740025, 0x00000000}},  //   _ہدف_, urgu, حالا,\n  { {0xa3d6024c, 0x3eba22f4, 0xeb9600c0, 0x00000000}},  //   ांत_, capt_, шиш_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xa925013b, 0x5ec70044, 0x61311bea, 0x00000000}},  //   рдил, র্শে, _målo,\n  { {0x6d4b011c, 0xead50783, 0x64c80006, 0x00000000}},  //   miga, _возь, nčių,\n  { {0x57450245, 0xe9ff0011, 0x3946008e, 0x00000000}},  //   рноб, _nhầm_, _emos_,\n  { {0xbb840054, 0x65660010, 0x7ae5006c, 0x00000000}},  //   _اللي, tokh, õhtu,\n  { {0x6d4b13b1, 0x290f22f5, 0xe9d0006d, 0x00000000}},  //   niga, _unga_, _رغم_,\n  { {0xe72e01fb, 0x7c2b005b, 0x6d930066, 0x00000000}},  //   _де_, nygr, _tħaw,\n  { {0x46a502a8, 0x05160044, 0x6d4b1b85, 0x00000000}},  //   _такв, াসের_, higa,\n  { {0x6d4b22f6, 0xa2d70309, 0x00000000, 0x00000000}},  //   kiga, _बार्,   ,\n  { {0x6d4b00ee, 0x10a60242, 0x00000000, 0x00000000}},  //   jiga, риан,   ,\n  { {0x6d4b1568, 0x672322f7, 0xdfa50025, 0x00000000}},  // [5900] diga, _konj, محلي,\n  { {0x61310073, 0x3f8e000c, 0x60d622f8, 0x00000000}},  //   _håll, öfu_, sgym,\n  { {0x67230b32, 0x6138008e, 0x75241293, 0x00000000}},  //   _monj, _píld, _koiz,\n  { {0xb64c007b, 0x672301aa, 0x4d66007e, 0x00000000}},  //   עגאָ, _lonj, шкев,\n  { {0x2ca90211, 0x613800b9, 0x69c11ab8, 0x00000000}},  //   ñada_, _cíle, _avle,\n  { {0x613822f9, 0xa9c60d15, 0xf7670025, 0x00000000}},  //   _díle, асик, _ذا_,\n  { {0x6d4b22fa, 0xd6bb0055, 0xd90d02fd, 0x00000000}},  //   biga, ংলায, کین_,\n  { {0x6d4b106f, 0x7524002d, 0x7c2b22fb, 0x00000000}},  //   ciga, _noiz, bygr,\n  { {0x6723028c, 0x14a701f5, 0x69c1014a, 0x00000000}},  //   _bonj, _क्षण, _evle,\n  { {0x672306c0, 0x7d00002b, 0x473400da, 0x00000000}},  //   _conj, _hams, снос,\n  { {0x3eb80047, 0x67230166, 0x2d980059, 0x00000000}},  //   _mert_, _donj, _jure_,\n  { {0x7d02008d, 0x2d980160, 0x35470088, 0x00000000}},  //   ndos, _mure_, рхов,\n  { {0xb796012b, 0x7d020052, 0xe9ff0082, 0x00000000}},  //   _трећ, idos, _phầm_,\n  { {0x6d4b0e49, 0x7d0200b0, 0x2fc00146, 0x00000000}},  //   ziga, hdos, dsig_,\n  { {0x6d4b0009, 0x2fc001c3, 0x00000000, 0x00000000}},  //   yiga, esig_,   ,\n  { {0x7524002d, 0x44b501fc, 0x67230065, 0x00000000}},  //   _goiz, _убис, _zonj,\n  { {0x6d4b10f0, 0x3eb800b5, 0xe9ff0011, 0x00000000}},  // [5910] viga, _bert_, _thầm_,\n  { {0x3eb80129, 0x2d9822fc, 0x6d4b22fd, 0x00000000}},  //   _cert_, _bure_, wiga,\n  { {0x7d000190, 0x6d4b22fe, 0x2d9806da, 0x00000000}},  //   _bams, tiga, _cure_,\n  { {0xe1f000e9, 0x7d000fc1, 0x2d9805f2, 0x00000000}},  //   _کسی_, _cams, _dure_,\n  { {0x6d4b02d5, 0xfc050517, 0x2d9822ff, 0x00000000}},  //   riga, спло, _eure_,\n  { {0x3eb82300, 0x6d4b2301, 0x3da700ed, 0x00000000}},  //   _gert_, siga, _враб,\n  { {0x2d98022b, 0x6d4b0020, 0xdef8008b, 0x00000000}},  //   _gure_, piga, _тыя_,\n  { {0x672301aa, 0xe9a80054, 0x200b0022, 0x00000000}},  //   _sonj, جدون_, _krci_,\n  { {0x6d492302, 0xb8ff0201, 0x2d98022b, 0x00000000}},  //   _imea, _ता_, _zure_,\n  { {0x49b800a1, 0x3f990006, 0x2572000c, 0x00000000}},  //   _چاند_, _musu_, máli_,\n  { {0x3ea1001f, 0x67230880, 0x1e3a0049, 0x00000000}},  //   icht_, _vonj, ָגרא,\n  { {0xc32900b6, 0xb8950054, 0x2fc0018e, 0x00000000}},  //   _או_, _الإع, ysig_,\n  { {0x394d1d2c, 0x3f990020, 0x291f0d16, 0x00000000}},  //   mies_, _nusu_, mjua_,\n  { {0x673a00b5, 0x3f9110ec, 0x6d930066, 0x00000000}},  //   chtj, _nizu_, _jħas,\n  { {0x4343026b, 0x200b2303, 0x2bd1013d, 0x00000000}},  //   черв, _arci_, _समझा,\n  { {0x3eb80670, 0x394d12a0, 0x3f4f0089, 0x00000000}},  //   _sert_, nies_, kļus_,\n  { {0x4e9606ea, 0x2d982304, 0xb4b4007d, 0x00000000}},  // [5920] مشار, _sure_, टरी_,\n  { {0x2d980207, 0x3f99037e, 0x6d4901d7, 0x00000000}},  //   _pure_, _dusu_, _amea,\n  { {0x394d22b0, 0x3eb80292, 0x2fc004b2, 0x00000000}},  //   kies_, _vert_, ssig_,\n  { {0x3ea1002a, 0x394d2305, 0x7d020066, 0x00000000}},  //   acht_, jies_, udos,\n  { {0x394d0038, 0x7d022306, 0xe6070167, 0x00000000}},  //   dies_, rdos, _کش_,\n  { {0x8fa30265, 0x2d981d2f, 0x63b6018e, 0x00000000}},  //   _харе, _ture_, _mwyn,\n  { {0x394d2307, 0x79a3008b, 0x7d000006, 0x00000000}},  //   fies_, прые, _tams,\n  { {0x212001ae, 0x6d5b0065, 0xfce301ab, 0x00000000}},  //   njih_, _gjua, _носо,\n  { {0x98a3003b, 0x00000000, 0x00000000, 0x00000000}},  //   чиње,   ,   ,\n  { {0x19ba2308, 0xfe6f026c, 0x7bc20173, 0x00000000}},  //   _будь_, _آگے_, msou,\n  { {0x394d002b, 0xb9960d75, 0x7bc22309, 0x00000000}},  //   bies_, _الصب, lsou,\n  { {0x673a008d, 0x394d01cb, 0x26c7016c, 0x00000000}},  //   shtj, cies_, _edno_,\n  { {0xdb09009f, 0x21200e00, 0x63b60016, 0x00000000}},  //   _kveð, djih_, _cwyn,\n  { {0x6aba00eb, 0x799a0020, 0x3f9913bd, 0x00000000}},  //   _jetf, _kutw, _rusu_,\n  { {0x6aba0066, 0x4177023c, 0x3f9904cb, 0x00000000}},  //   _metf, مارس, _susu_,\n  { {0x2904006c, 0x3f99014a, 0x799a230a, 0x00000000}},  //   ndma_, _pusu_, _mutw,\n  { {0x645a011f, 0x63b6018e, 0x61fe1733, 0x00000000}},  // [5930] ştir, _gwyn, _espl,\n  { {0x394d21bf, 0x3ea1010f, 0x6d49230b, 0x00000000}},  //   zies_, ucht_, _smea,\n  { {0x2ca90211, 0x3f910107, 0xcc9903e0, 0x00000000}},  //   ñado_, _vizu_, авец_,\n  { {0x394d1a86, 0x3ea1010f, 0x200b0107, 0x00000000}},  //   xies_, scht_, _trci_,\n  { {0x394d0fe8, 0xb6070428, 0xeab90ae0, 0x00000000}},  //   vies_, _koší, айл_,\n  { {0x9abc0066, 0x2009230c, 0xc9a90cee, 0x00000000}},  //   _doċo, mvai_, авке_,\n  { {0x394d230d, 0xf2d40049, 0x6d5b00ea, 0x00000000}},  //   ties_, לעס_, _tjua,\n  { {0x5d5400d7, 0x6d49117b, 0x9ce700a1, 0x00000000}},  //   _екст, _umea, _دورے_,\n  { {0xf719008b, 0xe8df0011, 0xdcff007f, 0x00000000}},  //   аіны_, hiện_, _žvėr,\n  { {0x394d230e, 0x6aba0061, 0x6d93230f, 0x00000000}},  //   sies_, _getf, _għar,\n  { {0xab84008b, 0x799a0009, 0x394d00fe, 0x00000000}},  //   _хутк, _gutw, pies_,\n  { {0x2903001e, 0x6b9b2134, 0x63b60016, 0x00000000}},  //   ējas_, _kuug, _pwyn,\n  { {0x69c30030, 0x25560089, 0x6d5901a2, 0x00000000}},  //   lsne, nāli_, inwa,\n  { {0x68e92310, 0x6b9b2134, 0xcb9a0049, 0x00000000}},  //   lfed, _muug, יסשט,\n  { {0xcb12019b, 0x21200059, 0x320c0802, 0x00000000}},  //   ולם_, tjih_, ídy_,\n  { {0x6138000c, 0x236a0045, 0x69c30094, 0x00000000}},  //   _bíla, sobj_, isne,\n  { {0xfe78010a, 0x21200059, 0x69c30240, 0x00000000}},  // [5940] _šį_, rjih_, hsne,\n  { {0xef170373, 0x6d590253, 0x69c306ed, 0x00000000}},  //   ому_, enwa, ksne,\n  { {0x6aba2311, 0xe4d30167, 0x7bc2000a, 0x00000000}},  //   _retf, _عقید, wsou,\n  { {0x7bc20403, 0x69c3000c, 0x6aba0019, 0x00000000}},  //   tsou, dsne, _setf,\n  { {0x2d8601d6, 0x68e92312, 0x00000000, 0x00000000}},  //   rmoe_, dfed,   ,\n  { {0xaff90049, 0x39a6007c, 0x79a60326, 0x00000000}},  //   _פּרי, ошив, орие,\n  { {0x7bc2032c, 0x68e90190, 0x69c32313, 0x00000000}},  //   ssou, ffed, gsne,\n  { {0x7bc200d4, 0x63a9001a, 0x20070036, 0x00000000}},  //   psou, ţeni, łnie_,\n  { {0x29040b1b, 0x6d93002b, 0x320a0045, 0x00000000}},  //   rdma_, _għaq, hvby_,\n  { {0x29020165, 0x6a1601b7, 0xf7720d3a, 0x00000000}},  //   žka_, _وبار, باع_,\n  { {0xff7b0049, 0x5ec70044, 0x7e9b009b, 0x00000000}},  //   שטימ, র্কে, יסיו,\n  { {0x20090006, 0x00000000, 0x00000000, 0x00000000}},  //   yvai_,   ,   ,\n  { {0x69d8000c, 0x2bd2006e, 0x6933007e, 0x00000000}},  //   luve, _सिफा, _іншу,\n  { {0xdcfc010a, 0x2fd201c3, 0x00000000, 0x00000000}},  //   _turė, dryg_,   ,\n  { {0xf5b30025, 0x929400ed, 0x61380325, 0x00000000}},  //   _قصيد, дарц, _síla,\n  { {0x6edd0061, 0x9099005e, 0x00000000, 0x00000000}},  //   _पाहु, сват_,   ,\n  { {0xe57200bd, 0x442f0637, 0xa49b0026, 0x00000000}},  // [5950] _אַז_, _æg_, ndòm,\n  { {0xeeab003b, 0x61312314, 0x69d8000c, 0x00000000}},  //   ртак_, _måli, kuve,\n  { {0x69d8000c, 0x68e90016, 0x20090006, 0x00000000}},  //   juve, yfed, svai_,\n  { {0x69c30146, 0x6b9b010e, 0x00000000, 0x00000000}},  //   vsne, _puug,   ,\n  { {0x69c30016, 0xeb990a1e, 0xfaa5007e, 0x00000000}},  //   wsne, щил_, пало,\n  { {0x69c32315, 0x25720010, 0x68e9005b, 0x00000000}},  //   tsne, lált_, wfed,\n  { {0x69d801c5, 0x69c30133, 0x28dc0061, 0x00000000}},  //   guve, usne, _याशि,\n  { {0x69c300b5, 0x25720010, 0x79820075, 0x00000000}},  //   rsne, nált_, _chow,\n  { {0x69c3000c, 0x1bd5007c, 0x68e9005b, 0x00000000}},  //   ssne, _хозя, rfed,\n  { {0x61310039, 0x28ab006e, 0x7af800ca, 0x00000000}},  //   _dåli, _ट्रि, cevt,\n  { {0xb9e701fb, 0xa50a1281, 0x366902b8, 0x00000000}},  //   _фізи, бена_, сано_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xc952009b, 0x889a009b, 0x6138000c, 0x00000000}},  //   _אמא_, _הבני, _bíln,\n  { {0x443e0036, 0x00000000, 0x00000000, 0x00000000}},  //   ąt_,   ,   ,\n  { {0xd252025a, 0x613801dc, 0x661c09b0, 0x00000000}},  //   رنر_, _díln, ärkt,\n  { {0x25aa008e, 0x3f83010e, 0x00000000, 0x00000000}},  //   íble_, _ahju_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  // [5960]   ,   ,   ,\n  { {0x37bd0055, 0xdfcf0380, 0x2fd20190, 0x00000000}},  //   _আমার, ايل_, rryg_,\n  { {0x6edd0164, 0xe29b009b, 0x2d9c0068, 0x00000000}},  //   _पारु, _לשיר, êve_,\n  { {0xbf9b00f4, 0xdca3025f, 0xdd8f006d, 0x00000000}},  //   _prêt, еаци, هول_,\n  { {0x79820016, 0x628300b9, 0x00000000, 0x00000000}},  //   _rhow, _únor,   ,\n  { {0x79820038, 0x69d80089, 0x20022316, 0x00000000}},  //   _show, tuve, _iski_,\n  { {0x7d7a0014, 0xdce90066, 0x00000000, 0x00000000}},  //   _همسر_, _wieġ,   ,\n  { {0x61310cb2, 0x00000000, 0x00000000, 0x00000000}},  //   _påli,   ,   ,\n  { {0x25560089, 0x7af800ca, 0x2d8400b0, 0x00000000}},  //   nālu_, pevt, _ihme_,\n  { {0x6b660147, 0x9b46023c, 0x25720010, 0x00000000}},  //   _экза, _عناو, zált_,\n  { {0x3d110061, 0x46dd0061, 0x2572000c, 0x00000000}},  //   णाचे_, _मारह, jáls_,\n  { {0x4a7b007b, 0xa806008e, 0xda650025, 0x00000000}},  //   _פראב, _cañó, _غالي,\n  { {0x5ec70044, 0x25720010, 0x00000000, 0x00000000}},  //   র্টে, vált_,   ,\n  { {0x3b05005f, 0x661c0a5d, 0x9abc01d5, 0x00000000}},  //   _xalq_, ärks, _soċj,\n  { {0x2002002d, 0x61310479, 0x6138013e, 0x00000000}},  //   _aski_, _målv, _cílo,\n  { {0x59dd0061, 0x672a00d9, 0x00000000, 0x00000000}},  //   नंतर, _hofj,   ,\n  { {0xb4d90164, 0x656f0046, 0x5f9501e0, 0x00000000}},  // [5970] ाली_, moch, диат,\n  { {0xd24e026c, 0x63ad011c, 0x09b20055, 0x00000000}},  //   اچی_, _itan, _ঘটনা,\n  { {0x2002011f, 0xdce901d5, 0x00000000, 0x00000000}},  //   _eski_, _jieħ,   ,\n  { {0x23610082, 0x00000000, 0x00000000, 0x00000000}},  //   _hjhj_,   ,   ,\n  { {0x69c801c9, 0xc1720123, 0x220700b9, 0x00000000}},  //   _avde, _شگفت, bíhá_,\n  { {0x63ad000b, 0x212b010f, 0x68e22317, 0x00000000}},  //   _mtan, _hoch_, _acod,\n  { {0x656f1dff, 0x2bc9007d, 0x212b010f, 0x00000000}},  //   koch, _रिका, _koch_,\n  { {0x63ad0d2a, 0x26de0089, 0xf1c0013e, 0x00000000}},  //   _otan, egto_, ýšit_,\n  { {0x63ad0117, 0x1bd4004c, 0x212b0016, 0x00000000}},  //   _ntan, _потя, _moch_,\n  { {0x68e200d4, 0x212b0e93, 0x2bd2013d, 0x00000000}},  //   _ecod, _loch_, _सिता,\n  { {0x63ad0263, 0x7a350025, 0x6f070091, 0x00000000}},  //   _atan, _تفاص, _majc,\n  { {0x212b001f, 0x656f00bb, 0xdce9002b, 0x00000000}},  //   _noch_, goch, _dieħ,\n  { {0x394f0061, 0x68fb0190, 0xa2b2013d, 0x00000000}},  //   _imgs_, meud, _अभद्,\n  { {0x6f070036, 0x68fb0190, 0x25560089, 0x00000000}},  //   _najc, leud, vālu_,\n  { {0xe2970269, 0x63ad0056, 0x656f0173, 0x00000000}},  //   дар_, _etan, boch,\n  { {0x656f2318, 0x2ca60061, 0x212b0016, 0x00000000}},  //   coch, xcod_, _coch_,\n  { {0x212b001f, 0xa494007a, 0x1b040044, 0x00000000}},  // [5980] _doch_, _سیست, লাতে_,\n  { {0x03d701ce, 0x638605b8, 0x394f01f3, 0x00000000}},  //   _קוים_, _ігна, _lmgs_,\n  { {0x614600aa, 0x831b0049, 0x68fb021e, 0x00000000}},  //   _жена, _וויז, keud,\n  { {0x212b2319, 0xec7a0140, 0x20070036, 0x00000000}},  //   _goch_, опе_, łnia_,\n  { {0x0b8a00ed, 0x68fb0f03, 0x2cbf0016, 0x00000000}},  //   оски_, deud, _deud_,\n  { {0x656f00b5, 0x8f75007e, 0x68e2231a, 0x00000000}},  //   zoch, _зусі, _scod,\n  { {0x62980161, 0x656f0020, 0x68fb00f6, 0x00000000}},  //   _úvod, yoch, feud,\n  { {0x3f98022b, 0x60c40051, 0x6f0700ca, 0x00000000}},  //   _hiru_, naim, _zajc,\n  { {0x656f00d9, 0x3f98231b, 0xdce9002b, 0x00000000}},  //   voch, _kiru_, _sieħ,\n  { {0x64460036, 0x60c40085, 0x63ad016c, 0x00000000}},  //   dzki, haim, _rtan,\n  { {0x656f0036, 0xd5b70783, 0x3f980c1e, 0x00000000}},  //   toch, мся_, _miru_,\n  { {0xb4d902d2, 0x2bd20061, 0x63ad0d9b, 0x00000000}},  //   ाले_, सळपा, _ptan,\n  { {0xdce901d5, 0x656f010f, 0x212b0173, 0x00000000}},  //   _wieħ, roch, _roch_,\n  { {0xf64f04e1, 0xc87f010f, 0xdce9002b, 0x00000000}},  //   ائی_, üße_, _tieħ,\n  { {0x656f0161, 0x4394007e, 0x6f070062, 0x00000000}},  //   poch, тарс, _rajc,\n  { {0x60c4231c, 0x613806c2, 0x777a0009, 0x00000000}},  //   gaim, _fílm, lltx,\n  { {0x3f9804cb, 0xbf9b009d, 0xe811007d, 0x00000000}},  // [5990] _biru_, _crêp, ़िया_,\n  { {0xc808001d, 0xfd64001d, 0x63ad0089, 0x00000000}},  //   _mở_, _thuộ, ķinā,\n  { {0x212b02ae, 0x3f98022b, 0x7bc90a1c, 0x00000000}},  //   _toch_, _diru_, _sveu,\n  { {0xd9f80061, 0x27ff0016, 0x60c4231d, 0x00000000}},  //   ंबईत_, ywun_, caim,\n  { {0xc8080011, 0x6f070107, 0x60cf00f6, 0x00000000}},  //   _nở_, _tajc, _idcm,\n  { {0xfbd00a90, 0x394f01f3, 0x3f980087, 0x00000000}},  //   شته_, _smgs_, _giru_,\n  { {0x644600d9, 0x00000000, 0x00000000, 0x00000000}},  //   zzki,   ,   ,\n  { {0x6d42231e, 0xb4d90164, 0xc8080082, 0x00000000}},  //   choa, ालो_, _bở_,\n  { {0x68fb0c53, 0x0bd50025, 0x2919006b, 0x00000000}},  //   reud, _سياح, ısa_,\n  { {0xc8080011, 0x68fb00b0, 0x7c84231f, 0x00000000}},  //   _dở_, seud, _русе,\n  { {0x752d2320, 0x7d1b0374, 0x68fb0bac, 0x00000000}},  //   _boaz, _knus, peud,\n  { {0x6131044f, 0x25560089, 0x752d0026, 0x00000000}},  //   _måls, vāls_, _coaz,\n  { {0xd90f024a, 0x7d090e1d, 0x752d2321, 0x00000000}},  //   _میں_, _maes, _doaz,\n  { {0xa856009b, 0x78a901ee, 0xd34200a1, 0x00000000}},  //   _אינה_, lcev, اہدی,\n  { {0x26c50091, 0x60c40ac2, 0x64460ef2, 0x00000000}},  //   malo_, taim, szki,\n  { {0x395f021e, 0x752d002d, 0x7d090146, 0x00000000}},  //   nnus_, _goaz, _naes,\n  { {0x60c42322, 0x03960735, 0x01630404, 0x00000000}},  // [59a0] raim, _проя, укто,\n  { {0x26c5011c, 0x60c40089, 0x752d0032, 0x00000000}},  //   nalo_, saim, _zoaz,\n  { {0x3f98006c, 0xb3450065, 0x3ce40146, 0x00000000}},  //   _viru_, saçë, _pcmv_,\n  { {0xdd11006b, 0x9f400129, 0x7c22002d, 0x00000000}},  //   rüşd, stià_, txor,\n  { {0x7d090c3b, 0xe0df0173, 0x3f980145, 0x00000000}},  //   _daes, _blòf_, _tiru_,\n  { {0xdd31005f, 0x06d50044, 0x26c50340, 0x00000000}},  //   _təşk, ত্তি, jalo_,\n  { {0xc808001d, 0x26c5049c, 0x7d092323, 0x00000000}},  //   _sở_, dalo_, _faes,\n  { {0x65640213, 0x395f0039, 0x7d1b01ee, 0x00000000}},  //   _njih, gnus_, _gnus,\n  { {0xb9080183, 0x6d400b3e, 0x9a6a0167, 0x00000000}},  //   _बा_, _ilma, _کمال_,\n  { {0x26c51a16, 0x78a90197, 0xc8080011, 0x00000000}},  //   galo_, acev, _vở_,\n  { {0x0f5700b6, 0x61311367, 0xf5210451, 0x00000000}},  //   תיים_, _målr, аннi_,\n  { {0x07a60242, 0x69ca01e5, 0x26c5016c, 0x00000000}},  //   _задн, msfe, aalo_,\n  { {0x26c5016c, 0x2957007b, 0xdb000065, 0x00000000}},  //   balo_, _אסאך_, _numë,\n  { {0xdb000039, 0x6b9a002b, 0x26c50091, 0x00000000}},  //   _utmä, _jitg, calo_,\n  { {0x6d4001f6, 0x6b9a001f, 0x9268005e, 0x00000000}},  //   _olma, _mitg, ерта_,\n  { {0x867b009b, 0x6f1c00e5, 0xab6600b4, 0x00000000}},  //   _מרוו, _anrc, leżą,\n  { {0x629e0061, 0x7d0900f6, 0x69d801a2, 0x00000000}},  // [59b0] _fgpo, _raes, hrve,\n  { {0x6d402324, 0x7d09018e, 0x657d2325, 0x00000000}},  //   _alma, _saes, llsh,\n  { {0x7d090198, 0x2fc90190, 0x69ca01ee, 0x00000000}},  //   _paes, ssag_, jsfe,\n  { {0x26c50059, 0x69ca032e, 0x62850059, 0x00000000}},  //   zalo_, dsfe, _izho,\n  { {0x69d800bb, 0x78a9016c, 0x7d09006c, 0x00000000}},  //   erve, vcev, _vaes,\n  { {0x6d400994, 0xdf47007e, 0x212900ca, 0x00000000}},  //   _elma, _чэмп, ljah_,\n  { {0x78a9001a, 0x6b9a0085, 0x00000000, 0x00000000}},  //   tcev, _ditg,   ,\n  { {0x212900ca, 0x7d1b109b, 0x6d580299, 0x00000000}},  //   njah_, _unus, évat,\n  { {0x26c501d9, 0x395f1be3, 0x78a90370, 0x00000000}},  //   talo_, rnus_, rcev,\n  { {0x78a90197, 0x657600f8, 0xdb0000d4, 0x00000000}},  //   scev, _skyh, _numè,\n  { {0x99d4002c, 0x26c50091, 0x78a9012d, 0x00000000}},  //   _متنا, ralo_, pcev,\n  { {0x21291b28, 0x26c50091, 0xf09f0082, 0x00000000}},  //   jjah_, salo_, _ngà_,\n  { {0x26c50091, 0x21292326, 0x7bcb00f8, 0x00000000}},  //   palo_, djah_, nsgu,\n  { {0xc7d6012f, 0x290d022b, 0x4375007c, 0x00000000}},  //   _יוני_, ldea_, густ,\n  { {0x27ed001f, 0x27320035, 0x11d5013a, 0x00000000}},  //   lten_, _vânt_, літр,\n  { {0x290d2327, 0x27ed0f30, 0x6285012d, 0x00000000}},  //   ndea_, oten_, _dzho,\n  { {0x27ed2328, 0xd5ac00a1, 0x31600885, 0x00000000}},  // [59c0] nten_, _وہی_, rniz_,\n  { {0x27ed1626, 0x127a0025, 0x45240044, 0x00000000}},  //   iten_, _يحدث_, _পতিক_,\n  { {0x200d001e, 0x27ed010f, 0x333b0104, 0x00000000}},  //   _šeit_, hten_, _חתימ,\n  { {0x63a4094d, 0x6b9a0129, 0x6dac0279, 0x00000000}},  //   _kuin, _sitg, _ağac,\n  { {0x27ed0f86, 0x69ca01a3, 0xead42329, 0x00000000}},  //   jten_, wsfe, голь,\n  { {0x63a40ddc, 0x27ed01e3, 0x6ec501d8, 0x00000000}},  //   _muin, dten_, _متفق,\n  { {0x27ed18a6, 0x61ee00d4, 0x69d80112, 0x00000000}},  //   eten_, ntbl, urve,\n  { {0x27ed0109, 0x69ca0007, 0x69d8232a, 0x00000000}},  //   ften_, rsfe, rrve,\n  { {0x27ed232b, 0x1be7007c, 0xd7c70439, 0x00000000}},  //   gten_, _идти_, نويه_,\n  { {0x6b9a049b, 0x77910167, 0x77920014, 0x00000000}},  //   _uitg, مینا, جیتا,\n  { {0xdb00028c, 0x27ed010f, 0x2cad0016, 0x00000000}},  //   _numé, aten_, _yfed_,\n  { {0xa9270006, 0x27ed010f, 0x291d0058, 0x00000000}},  //   gužė, bten_, _gnwa_,\n  { {0x27ed02ae, 0x63a40129, 0x67d40ceb, 0x00000000}},  //   cten_, _cuin, _солу,\n  { {0x63a4002a, 0x61ee232c, 0x00000000, 0x00000000}},  //   _duin, ftbl,   ,\n  { {0x35a300ed, 0x61310146, 0x00000000, 0x00000000}},  //   _кајг, _bålp,   ,\n  { {0x63a40051, 0x12e30044, 0xe8070061, 0x00000000}},  //   _fuin, য়েদ, वटचा_,\n  { {0x40340057, 0x212901a3, 0xc05b0088, 0x00000000}},  // [59d0] аетс, rjah_, фів_,\n  { {0x443900b0, 0xdb00009d, 0x02b7007d, 0x00000000}},  //   mys_, _fumé, _अभिभ,\n  { {0x27ed022b, 0x4439010a, 0xb05b010f, 0x00000000}},  //   zten_, lys_, _geän,\n  { {0xc5f30452, 0x27ed0007, 0x7bcb00f8, 0x00000000}},  //   ידע_, yten_, tsgu,\n  { {0x4439232d, 0x27ed03a2, 0x50da009b, 0x00000000}},  //   nys_, xten_, _אקרא,\n  { {0x7bcb0203, 0xc43c0049, 0x00000000, 0x00000000}},  //   rsgu, ותדי,   ,\n  { {0x2b890027, 0x61380051, 0x7bcb06d3, 0x00000000}},  //   júce_, _síli, ssgu,\n  { {0x09f60054, 0x44390006, 0x68480089, 0x00000000}},  //   افية_, kys_, kūdī,\n  { {0x290d002d, 0x6d590058, 0x27ed232e, 0x00000000}},  //   rdea_, miwa, uten_,\n  { {0x27ed001f, 0x6d5911ad, 0x44390006, 0x00000000}},  //   rten_, liwa, dys_,\n  { {0x63a40d96, 0xa01b00b0, 0x61ee0009, 0x00000000}},  //   _suin, _hyöd, xtbl,\n  { {0x6d59006a, 0x6e210129, 0x4439232f, 0x00000000}},  //   niwa, _àlbu, fys_,\n  { {0x63a40a15, 0xd4560088, 0x44392330, 0x00000000}},  //   _quin, утнь, gys_,\n  { {0x6d59011c, 0x03a32331, 0x91e60256, 0x00000000}},  //   hiwa, сиро, логе,\n  { {0x6d590046, 0xc5d5111f, 0x00000000, 0x00000000}},  //   kiwa, _сіль,   ,\n  { {0x63a401b5, 0x6d5904be, 0x78bb0006, 0x00000000}},  //   _tuin, jiwa, nbuv,\n  { {0x61ee0a5e, 0x6d590020, 0xe816007d, 0x00000000}},  // [59e0] stbl, diwa, तिया_,\n  { {0x06d50044, 0x7306003b, 0x61ee0203, 0x00000000}},  //   ত্রি, _споз, ptbl,\n  { {0x6d59004a, 0x00000000, 0x00000000, 0x00000000}},  //   fiwa,   ,   ,\n  { {0x869a0049, 0x6d590036, 0xa37b006c, 0x00000000}},  //   גיעז, giwa, stõt,\n  { {0x9f4000b0, 0xafe30581, 0x00000000, 0x00000000}},  //   ttiä_, _лоял,   ,\n  { {0x60c62332, 0x69c10016, 0xe0df0173, 0x00000000}},  //   _hekm, _bwle, _glòb_,\n  { {0x4439007f, 0x7ec80089, 0x00000000, 0x00000000}},  //   zys_, rūpē,   ,\n  { {0x9f4000b0, 0xaea10279, 0x443900b0, 0x00000000}},  //   stiä_, ğışl, yys_,\n  { {0x3b8600c0, 0xbc66012b, 0x6b46009f, 0x00000000}},  //   _благ, _свак, _aðge,\n  { {0x17f70054, 0x37060f98, 0xbb76007c, 0x00000000}},  //   ارية_, учив, _субъ,\n  { {0x44392333, 0xab930054, 0xb52102d2, 0x00000000}},  //   wys_, _اللغ, यालय_,\n  { {0x44392334, 0x98a6022a, 0xd1bb00a1, 0x00000000}},  //   tys_, _сиде, ہارا_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x4439010a, 0x6d5900e7, 0x237a0066, 0x00000000}},  //   rys_, ziwa, _ckpj_,\n  { {0x443f001e, 0x44390006, 0xa29505b8, 0x00000000}},  //   šu_, sys_, раві,\n  { {0x4439007f, 0xb35700a1, 0x00000000, 0x00000000}},  //   pys_, ئیگا_,   ,\n  { {0x7d02014a, 0x9f5500e3, 0x9099005e, 0x00000000}},  // [59f0] deos, авач, тват_,\n  { {0x3e6b005e, 0x00000000, 0x00000000, 0x00000000}},  //   ншен_,   ,   ,\n  { {0x6d59011c, 0x539a009b, 0xa01b00b0, 0x00000000}},  //   tiwa, _שיתו, _syöd,\n  { {0x61382335, 0x7d020146, 0x55bb00b3, 0x00000000}},  //   _sílv, geos, גמאו,\n  { {0x9f49002a, 0x6d590fe7, 0x6f0e09e0, 0x00000000}},  //   ltaí_, riwa, _fabc,\n  { {0x6d590e1a, 0xbe0500a1, 0x78a200bb, 0x00000000}},  //   siwa, _پورٹ, _agov,\n  { {0xdea400d3, 0x2d870129, 0x69251548, 0x00000000}},  //   _ایمی, ïnes_, имка,\n  { {0x7c392336, 0x8cc803ec, 0x2019016c, 0x00000000}},  //   pywr, _موفق_, _krsi_,\n  { {0x9f49002a, 0xaae70151, 0x78a2016c, 0x00000000}},  //   htaí_, _مساو, _dgov,\n  { {0x7a1c0035, 0xdceb0035, 0xe7392337, 0x00000000}},  //   _bătă, bogă, тео_,\n  { {0x3669003b, 0x24892338, 0x8af7006b, 0x00000000}},  //   тано_, _azam_, şəsi,\n  { {0xf8b000a1, 0x20192339, 0x7a1c00e5, 0x00000000}},  //   _ٹکٹ_, _orsi_, _dătă,\n  { {0x5ed00055, 0x61380051, 0x03a602ea, 0x00000000}},  //   স্টে, _mílt, риго,\n  { {0x290f0211, 0x60c6233a, 0x66e2003b, 0x00000000}},  //   _haga_, _sekm, _доша,\n  { {0x290f0093, 0xf6790049, 0xd75602fd, 0x00000000}},  //   _kaga_, _באַמ, _خلوت_,\n  { {0x290f01a3, 0x2bc60204, 0x26c70016, 0x00000000}},  //   _jaga_, रीडा, _heno_,\n  { {0x290f0010, 0x26c707e7, 0xa49b00f6, 0x00000000}},  // [5a00] _maga_, _keno_, leòn,\n  { {0x290f0635, 0xdce90142, 0x20190087, 0x00000000}},  //   _laga_, _cieľ, _drsi_,\n  { {0x26c7233b, 0x3869009f, 0x60c601d9, 0x00000000}},  //   _meno_, _þarf_, _tekm,\n  { {0x290f1577, 0xe5f60049, 0x2d8d0145, 0x00000000}},  //   _naga_, יזער_, _chee_,\n  { {0x7d0213d8, 0x6f0e0009, 0x2d9f00f6, 0x00000000}},  //   reos, _tabc, _diue_,\n  { {0x26c70020, 0xc60c0044, 0x7d021389, 0x00000000}},  //   _neno_, ষমতা_, seos,\n  { {0xe60700f3, 0x290f233c, 0xf2d3009b, 0x00000000}},  //   _بش_, _baga_, קעה_,\n  { {0x2d8d0203, 0x290f0919, 0xf98f0380, 0x00000000}},  //   _ghee_, _caga_, وبي_,\n  { {0x1ae60057, 0x8ad60b03, 0x8c431023, 0x00000000}},  //   _возм, _نتائ, _дете,\n  { {0xaae00164, 0x26c70059, 0x61fe0292, 0x00000000}},  //   _नाटक, _ceno_, _oppl,\n  { {0x3333233d, 0x63b6233e, 0x290f00ea, 0x00000000}},  //   _roxx_, _atyn, _faga_,\n  { {0x78a20ce4, 0xd5b80089, 0xa37b00fa, 0x00000000}},  //   _ugov, rpā_, irõe,\n  { {0x290400f6, 0x7d1d00c4, 0x25720161, 0x00000000}},  //   mema_, _ósse, nály_,\n  { {0x2904006c, 0x21221a3a, 0x290f00c4, 0x00000000}},  //   lema_, _ankh_, _zaga_,\n  { {0x26cc0489, 0x27e400ab, 0x25720344, 0x00000000}},  //   mado_, lumn_, hály_,\n  { {0x26cc0682, 0xa37b0181, 0x9f490051, 0x00000000}},  //   lado_, drõe, rtaí_,\n  { {0x9f490051, 0x83870147, 0x2d8d02c2, 0x00000000}},  // [5a10] staí_, _выне, _rhee_,\n  { {0x26cc0977, 0x20190107, 0x26c70197, 0x00000000}},  //   nado_, _vrsi_, _xeno_,\n  { {0x2904002b, 0xadf502b0, 0x394601ee, 0x00000000}},  //   kema_, спеш, _olos_,\n  { {0x2904233f, 0x26cc0325, 0x12160049, 0x00000000}},  //   jema_, hado_, _פֿיר_,\n  { {0x26cc011c, 0x29042340, 0x290f023a, 0x00000000}},  //   kado_, dema_, _raga_,\n  { {0x290f000c, 0x26cc0b76, 0x394601aa, 0x00000000}},  //   _saga_, jado_, _alos_,\n  { {0x290f002b, 0x26cc0489, 0xd20a0049, 0x00000000}},  //   _paga_, dado_, ָלפֿ,\n  { {0x26c7086f, 0x2904006c, 0x3946009d, 0x00000000}},  //   _seno_, gema_, _clos_,\n  { {0x290f153d, 0x26cc0285, 0x25a009e4, 0x00000000}},  //   _vaga_, fado_, _riil_,\n  { {0x26cc2341, 0xbb850054, 0x60cd2342, 0x00000000}},  //   gado_, _الطي, haam,\n  { {0x290f14f7, 0x60cd03b6, 0x49da00a1, 0x00000000}},  //   _taga_, kaam, _مانگ_,\n  { {0x60cd03b6, 0x26c70efe, 0x29042343, 0x00000000}},  //   jaam, _weno_, cema_,\n  { {0xe72e0057, 0x68e90b36, 0x6dac1a6f, 0x00000000}},  //   _ее_, mged, _ağal,\n  { {0x26cc16be, 0x9f400051, 0x26c70022, 0x00000000}},  //   cado_, stiú_, _ueno_,\n  { {0x5ede0044, 0x9f4000c4, 0x60cd17e3, 0x00000000}},  //   ন্ডে, quié_, faam,\n  { {0x661c0030, 0xa37b00c4, 0x60cd007f, 0x00000000}},  //   ærke, vrõe, gaam,\n  { {0x75242344, 0x20090085, 0x644f00b4, 0x00000000}},  // [5a20] _iniz, gwai_, czci,\n  { {0x32460088, 0x290400b4, 0x2bab013d, 0x00000000}},  //   _геог, zema_, _चढ़ा,\n  { {0xa75a007b, 0x61fe05ce, 0x75240062, 0x00000000}},  //   נדער, _uppl, _kniz,\n  { {0x26cc0df9, 0x0c2601e1, 0xeabf0011, 0x00000000}},  //   zado_, ймен, _đùa_,\n  { {0x26cc2345, 0x6b46000c, 0x68e90116, 0x00000000}},  //   yado_, _aðga, dged,\n  { {0xf7670014, 0x26cc2346, 0x2572139d, 0x00000000}},  //   _را_, xado_, rály_,\n  { {0x26cc0977, 0x29040066, 0x68e9021f, 0x00000000}},  //   vado_, tema_, fged,\n  { {0x68e905b7, 0x57b40088, 0x6d4b2347, 0x00000000}},  //   gged, обит, chga,\n  { {0x26cc0df9, 0x290401d9, 0xdb0100c4, 0x00000000}},  //   tado_, rema_, _milê,\n  { {0x29040be3, 0x3ae8007a, 0x60cd00b5, 0x00000000}},  //   sema_, _خبری_, zaam,\n  { {0x26cc0977, 0x290406cc, 0x60cd00e7, 0x00000000}},  //   rado_, pema_, yaam,\n  { {0x26cc2348, 0x6d42002d, 0x394600b0, 0x00000000}},  //   sado_, nkoa, _ulos_,\n  { {0xb8960054, 0x26cc0489, 0x6d42002d, 0x00000000}},  //   _الشع, pado_, ikoa,\n  { {0x60cd0020, 0x5ede0044, 0x16590014, 0x00000000}},  //   waam, ন্তে, اسیک_,\n  { {0x60cd2349, 0x644f1072, 0xdce90089, 0x00000000}},  //   taam, szci, _pieļ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x60cd01c2, 0x00000000, 0x00000000, 0x00000000}},  // [5a30] raam,   ,   ,\n  { {0x60cd234a, 0x9f5201aa, 0x0cba0044, 0x00000000}},  //   saam, ntyè_, ুলোত,\n  { {0x6d4b0016, 0x60cd234b, 0x2bc60067, 0x00000000}},  //   thga, paam, रीसा,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x777a002d, 0x00000000, 0x00000000, 0x00000000}},  //   kotx,   ,   ,\n  { {0xeb99234c, 0x7ae70245, 0x6ef2000c, 0x00000000}},  //   шил_, сюдж, rðbó,\n  { {0x68e90b10, 0xdb00008e, 0x00000000, 0x00000000}},  //   tged, _atmó,   ,\n  { {0x5ede0044, 0x05240044, 0x00000000, 0x00000000}},  //   ন্দে, _পত্র_,   ,\n  { {0x68e90016, 0x6d491b90, 0xfbe00309, 0x00000000}},  //   rged, _ilea, _नियम,\n  { {0xf7710355, 0x68e90090, 0x777a0032, 0x00000000}},  //   باب_, sged, gotx,\n  { {0xa2ba0309, 0x68e900d9, 0x00000000, 0x00000000}},  //   ्रस्, pged,   ,\n  { {0xc32900b6, 0x2f0a0036, 0x2bc6007d, 0x00000000}},  //   _בו_, mógł_, रीवा,\n  { {0x395f007f, 0x656d0022, 0x00000000, 0x00000000}},  //   mius_, _djah,   ,\n  { {0x395f07bc, 0x394d0181, 0x6d42022b, 0x00000000}},  //   lius_, lhes_, zkoa,\n  { {0xe29a02e9, 0x69dc05cb, 0x2be0006e, 0x00000000}},  //   рав_, _året, _निभा,\n  { {0x395f234d, 0x656d0023, 0x00000000, 0x00000000}},  //   nius_, _gjah,   ,\n  { {0xdb01008d, 0x00000000, 0x00000000, 0x00000000}},  // [5a40] _cilë,   ,   ,\n  { {0x6d49049a, 0x6d5b1126, 0xe3b200a1, 0x00000000}},  //   _alea, _amua, _ٹرک_,\n  { {0x395f010a, 0x6d490133, 0x10a6004d, 0x00000000}},  //   kius_, _blea, _минн,\n  { {0x6d490038, 0x4c86013b, 0x395f0022, 0x00000000}},  //   _clea, олев, jius_,\n  { {0xa01b234e, 0xdb0101aa, 0x6d42002d, 0x00000000}},  //   _szöv, _kilè, rkoa,\n  { {0x6d42002d, 0x6d49234f, 0xdb01000a, 0x00000000}},  //   skoa, _elea, _jilè,\n  { {0x8fa301c0, 0x6d491c7e, 0xc3330104, 0x00000000}},  //   _царе, _flea, ווג_,\n  { {0x394d0016, 0x6d490051, 0x68400051, 0x00000000}},  //   ghes_, _glea, _nádú,\n  { {0xdb02049a, 0xd7c40061, 0x870602dc, 0x00000000}},  //   spoñ, लींच, ояне,\n  { {0x656d0093, 0x9abc01f3, 0x2d860288, 0x00000000}},  //   _sjah, _inċo, lloe_,\n  { {0x395f01a3, 0xd0130044, 0xceb300b3, 0x00000000}},  //   bius_, সময়_, וית_,\n  { {0x395f1be5, 0xe9b7026c, 0xd90e00e9, 0x00000000}},  //   cius_, _بچوں_, _شیخ_,\n  { {0xd7ef0054, 0xb7180aa2, 0x00000000, 0x00000000}},  //   _لكن_, _голф_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x656d2350, 0xdb01000a, 0x00000000, 0x00000000}},  //   _tjah, _dilè,   ,\n  { {0x61f52351, 0x656d0a6e, 0x00000000, 0x00000000}},  //   rtzl, _ujah,   ,\n  { {0x657d0e06, 0x9055007e, 0x00000000, 0x00000000}},  // [5a50] mosh, чвац,   ,\n  { {0xa29502f0, 0x657d0065, 0x6d490051, 0x00000000}},  //   _напі, losh, _slea,\n  { {0x6d490038, 0x63ad0020, 0xa01b0010, 0x00000000}},  //   _plea, _huan, _gyön,\n  { {0x63ad000b, 0x395f0129, 0xd5fb0049, 0x00000000}},  //   _kuan, xius_, שפאר,\n  { {0x63ad2352, 0x395f0006, 0xdb0012dd, 0x00000000}},  //   _juan, vius_, _sumá,\n  { {0x657d070d, 0x63ad0020, 0xdb010010, 0x00000000}},  //   hosh, _muan, _kilé,\n  { {0x2bd7024c, 0x395f04bd, 0xeaf80054, 0x00000000}},  //   _ठिका, tius_, ترنت_,\n  { {0x2139003b, 0x628501a3, 0x657d2353, 0x00000000}},  //   _josh_, _myho, josh,\n  { {0x395f1b18, 0x657d0023, 0x21390f77, 0x00000000}},  //   rius_, dosh, _mosh_,\n  { {0x395f010a, 0x67380166, 0x394d166d, 0x00000000}},  //   sius_, _covj, shes_,\n  { {0x394d00f4, 0x657d0190, 0x395f007f, 0x00000000}},  //   phes_, fosh, pius_,\n  { {0xa3d703d7, 0x63ad0085, 0x657d0023, 0x00000000}},  //   ाओं_, _buan, gosh,\n  { {0x63ad0219, 0x9fd60055, 0x00000000, 0x00000000}},  //   _cuan, _সঙ্গ,   ,\n  { {0x63ad01a3, 0x7bc90020, 0x6f15004a, 0x00000000}},  //   _duan, _mweu, _nazc,\n  { {0x6285018e, 0x21390023, 0x3cff0161, 0x00000000}},  //   _cyho, _bosh_, _obuv_,\n  { {0x55da007b, 0x25e0001c, 0x63ad229c, 0x00000000}},  //   _פֿונ, _किती_, _fuan,\n  { {0x63ad04bd, 0x2139034a, 0xb4d80309, 0x00000000}},  // [5a60] _guan, _dosh_, ाणी_,\n  { {0x4420006b, 0xdce90209, 0xa01b021e, 0x00000000}},  //   _iri_, _dječ, _työn,\n  { {0x6285018e, 0x44200c8a, 0x76410544, 0x00000000}},  //   _gyho, _hri_, nyly,\n  { {0x21390058, 0x44200059, 0x63ad0022, 0x00000000}},  //   _gosh_, _kri_, _yuan,\n  { {0x60c42354, 0x7c26050f, 0x63ad0082, 0x00000000}},  //   mbim, _škrb, _xuan,\n  { {0x60c4010a, 0x7bc9018e, 0x657d00e7, 0x00000000}},  //   lbim, _dweu, zosh,\n  { {0x657d0020, 0x68fb005b, 0x60c4012d, 0x00000000}},  //   yosh, ffud, obim,\n  { {0x4420000d, 0x67380056, 0x4ddb009b, 0x00000000}},  //   _ori_, _sovj, _לחלו,\n  { {0xebe302a8, 0x67380243, 0x44201f66, 0x00000000}},  //   _потп, _povj, _nri_,\n  { {0x4427001d, 0x63ad020c, 0x95d800ed, 0x00000000}},  //   _ăn_, _ruan, одот_,\n  { {0x44202355, 0x657d000b, 0x63ad2356, 0x00000000}},  //   _ari_, tosh, _suan,\n  { {0x63ad011f, 0x44201987, 0xe0df000a, 0x00000000}},  //   _puan, _bri_, _elòj_,\n  { {0x44200e4b, 0x9f40008e, 0x4ad0006e, 0x00000000}},  //   _cri_, ntió_, _सजाव,\n  { {0x44200016, 0xa3a401fc, 0xdce90243, 0x00000000}},  //   _dri_, ејск, _rječ,\n  { {0x44200f80, 0xb909001d, 0x21392357, 0x00000000}},  //   _eri_, _nghề_, _posh_,\n  { {0x44200030, 0x60f9008b, 0x63ad1d2a, 0x00000000}},  //   _fri_, ўная_, _tuan,\n  { {0xf48502fd, 0x63a500e5, 0x628500b4, 0x00000000}},  // [5a70] _تاثی, _tihn, _wyho,\n  { {0xdce91a84, 0xeeab16b6, 0x26ce0173, 0x00000000}},  //   _vječ, стак_, _jefo_,\n  { {0x8cf5008b, 0x7c200190, 0x21390675, 0x00000000}},  //   дзец, _armr, _tosh_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xfc460011, 0x1be90088, 0x6dac0035, 0x00000000}},  //   _đích_, ідки_, _aşad,\n  { {0xdb09005a, 0x4ad700a1, 0x00000000, 0x00000000}},  //   _önün, ساتھ_,   ,\n  { {0xa3b40164, 0x60cf2358, 0x6b4f0190, 0x00000000}},  //   _जून_, _kecm, _nøge,\n  { {0x3a3a0039, 0x673c00f8, 0x00000000, 0x00000000}},  //   äppa_, örjn,   ,\n  { {0x24c50055, 0x3eaa0045, 0x25ae01a2, 0x00000000}},  //   ্লাহ, _ygbt_, _aufl_,\n  { {0x6b4f0018, 0xb4e6007d, 0x44201d5b, 0x00000000}},  //   _bøge, कल्प_, _rri_,\n  { {0x442001a3, 0x26ce0173, 0x6ad30044, 0x00000000}},  //   _sri_, _defo_, _সাপো,\n  { {0x44200cce, 0xb4d8001c, 0x637f013e, 0x00000000}},  //   _pri_, ाणे_, háně,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x79890016, 0x889a009b, 0x9f40009d, 0x00000000}},  //   llew, _ובני, prié_,\n  { {0x03a30057, 0x26c51e2d, 0x798900e7, 0x00000000}},  //   тиро, mblo_, olew,\n  { {0x61e10010, 0xa01b00b0, 0x00000000, 0x00000000}},  //   álla, _työl,   ,\n  { {0x4420006a, 0x7d0b001c, 0x60c408c0, 0x00000000}},  // [5a80] _uri_, degs, rbim,\n  { {0x25790010, 0x2fc00a5e, 0x00000000, 0x00000000}},  //   dély_, rpig_,   ,\n  { {0xe29a00da, 0x25bc00f6, 0x00000000, 0x00000000}},  //   _фан_, _xtvl_,   ,\n  { {0x25e003d7, 0x7d0b001c, 0xe8df0011, 0x00000000}},  //   _किसी_, gegs, _trộm_,\n  { {0xdca3007c, 0x798900b4, 0x00000000, 0x00000000}},  //   ваци, dlew,   ,\n  { {0x9f400211, 0x79890020, 0xe4570049, 0x00000000}},  //   rtió_, elew, וינט_,\n  { {0x9f402359, 0x2be0007d, 0xdee3025f, 0x00000000}},  //   stió_, _निवा, _јоси,\n  { {0xa8141364, 0xb81400ec, 0x5fb50061, 0x00000000}},  //   едиш, едиј, _अंमल,\n  { {0x6b4f0018, 0x36d40920, 0x1b030044, 0x00000000}},  //   _søge, нопр, লয়ে_,\n  { {0x4b260076, 0xeeeb001d, 0x7bc2235a, 0x00000000}},  //   _تعرف, _đừng_, mpou,\n  { {0x7989235b, 0x7bc20173, 0x00000000, 0x00000000}},  //   blew, lpou,   ,\n  { {0xc8660680, 0xc5f80089, 0x69d81652, 0x00000000}},  //   _отли, rtē_, msve,\n  { {0x69d806a1, 0x24920036, 0x7bc20e6d, 0x00000000}},  //   lsve, _czym_, npou,\n  { {0x69d8016c, 0x6b4f0190, 0x00000000, 0x00000000}},  //   osve, _tøge,   ,\n  { {0x69d8037d, 0xd13b005e, 0xf1a70545, 0x00000000}},  //   nsve, оха_, дран,\n  { {0x5ec80055, 0x69d8010f, 0x00000000, 0x00000000}},  //   _লাগে, isve,   ,\n  { {0xa01b00b0, 0x60cf0089, 0x25a9010e, 0x00000000}},  // [5a90] _työm, _vecm, _iial_,\n  { {0xa91d0059, 0x64400cba, 0x69d80056, 0x00000000}},  //   može, ämie, ksve,\n  { {0xa91d004f, 0x69d800b5, 0x7d0b235c, 0x00000000}},  //   lože, jsve, tegs,\n  { {0x69d8093b, 0x656f235d, 0x2be0006e, 0x00000000}},  //   dsve, nnch, _निशा,\n  { {0x7bc4000d, 0x656f235e, 0x7d0b0007, 0x00000000}},  //   ţiun, inch, regs,\n  { {0x98af0046, 0x2be00309, 0x69d81642, 0x00000000}},  //   _mogą_, _निरा, fsve,\n  { {0x53380049, 0x798901d6, 0xbdc700a1, 0x00000000}},  //   ונגן_, tlew, _آگئے_,\n  { {0x6e941523, 0x25a9098e, 0x9f4001e5, 0x00000000}},  //   _рису, _nial_, ltið_,\n  { {0x7989235f, 0x2d9d0009, 0xa0e30089, 0x00000000}},  //   rlew, mmwe_, dēļā_,\n  { {0x656f0181, 0xe7310025, 0x05d30164, 0x00000000}},  //   ench, اصة_, _दबदब,\n  { {0x248904cb, 0x2b890027, 0x25a900fa, 0x00000000}},  //   _ayam_, júci_, _bial_,\n  { {0x92c10055, 0xdb010285, 0x69c301a2, 0x00000000}},  //   ুলো_, _milí, mpne,\n  { {0xf99200a3, 0x3f810065, 0xab5d0066, 0x00000000}},  //   _ערד_, kohu_, _awżi,\n  { {0x212b0207, 0x883a00b3, 0x656f0048, 0x00000000}},  //   _anch_, _מתנו, anch,\n  { {0x27ed002d, 0x25a90048, 0x00000000, 0x00000000}},  //   luen_, _fial_,   ,\n  { {0xa91d2360, 0x290d0035, 0xa01b0010, 0x00000000}},  //   ložb, neea_, _gyök,\n  { {0xd007017f, 0x27ed2361, 0x69c30061, 0x00000000}},  // [5aa0] нете_, nuen_, hpne,\n  { {0xe1fa0057, 0x65662362, 0xa01b00b0, 0x00000000}},  //   _его_, likh, _myöh,\n  { {0xb6410009, 0x64461ec2, 0xdb010919, 0x00000000}},  //   _ｍｓ_, lyki, _cilí,\n  { {0x7bc201d6, 0x27ed002d, 0xa2ba0164, 0x00000000}},  //   tpou, kuen_, ्रक्,\n  { {0x61ee000c, 0xdb012363, 0x60d600e0, 0x00000000}},  //   lubl, _eilí, maym,\n  { {0x69d8010f, 0x27ed002d, 0xdb012364, 0x00000000}},  //   tsve, duen_, _filí,\n  { {0xfce60175, 0x7bc2115e, 0x61ee013f, 0x00000000}},  //   _пово, spou, nubl,\n  { {0xeeeb001d, 0x69d82315, 0x64460006, 0x00000000}},  //   _đứng_, rsve, kyki,\n  { {0x27ed029a, 0x69d8030e, 0x7980002b, 0x00000000}},  //   guen_, ssve, romw,\n  { {0xd6da0242, 0x64462365, 0xa91d089f, 0x00000000}},  //   чти_, dyki, vože,\n  { {0x79801725, 0x24892366, 0xa3d30309, 0x00000000}},  //   pomw, _syam_, हीन_,\n  { {0xb4eb03d7, 0x656f0c6a, 0xf992004b, 0x00000000}},  //   मले_, unch, _صبا_,\n  { {0x25a90efe, 0xd4040581, 0x9f40000c, 0x00000000}},  //   _vial_, ляри, ytið_,\n  { {0x61e10010, 0x00000000, 0x00000000, 0x00000000}},  //   állo,   ,   ,\n  { {0x61ee0295, 0xa01b00b0, 0x41e40245, 0x00000000}},  //   gubl, _työk, літа,\n  { {0xfc460011, 0x8ecd0044, 0xa91d11af, 0x00000000}},  //   _đính_, _লাইগ, pože,\n  { {0x7a13005f, 0x752d2367, 0x9f40000c, 0x00000000}},  // [5ab0] _vətə, _inaz, ttið_,\n  { {0x20e10011, 0xdb0100c4, 0x6d910056, 0x00000000}},  //   ỗi_, _milã, gåan,\n  { {0x3f810065, 0x27ed002d, 0x9f40000c, 0x00000000}},  //   rohu_, zuen_, rtið_,\n  { {0x9f40000c, 0x3f812368, 0x6dac1a6f, 0x00000000}},  //   stið_, sohu_, _ağas,\n  { {0x752d0020, 0x9f40000c, 0x27ed0032, 0x00000000}},  //   _mnaz, ptið_, xuen_,\n  { {0x7bc00061, 0x8c4200da, 0x6d4a0023, 0x00000000}},  //   _dtmu, реше, ëfar,\n  { {0x7ceb2369, 0x64460036, 0xdb010048, 0x00000000}},  //   görü, zyki, _uilí,\n  { {0x27ed022b, 0xdb080173, 0x00000000, 0x00000000}},  //   tuen_, _lidè,   ,\n  { {0x5b15137c, 0x69c3121e, 0xa91d0059, 0x00000000}},  //   _имат, spne, tožb,\n  { {0x7d1b0109, 0x7c8416b6, 0x752d0020, 0x00000000}},  //   _haus, _сусе, _anaz,\n  { {0x7d1b236a, 0x6b83023a, 0x27ed0032, 0x00000000}},  //   _kaus, mong, suen_,\n  { {0x7d1b0006, 0x6446236b, 0xd46a00ed, 0x00000000}},  //   _jaus, tyki, диме_,\n  { {0x27ed16f9, 0x7d1b0706, 0x65660fc1, 0x00000000}},  //   quen_, _maus, rikh,\n  { {0x7d1b00cd, 0x6566032e, 0x6b830145, 0x00000000}},  //   _laus, sikh, nong,\n  { {0x6446236c, 0xd6ce0025, 0x6b8300e7, 0x00000000}},  //   syki, _بقى_, iong,\n  { {0x6b83236d, 0x00000000, 0x00000000, 0x00000000}},  //   hong,   ,   ,\n  { {0xa0670a94, 0x6b830127, 0xef1a007c, 0x00000000}},  // [5ac0] вата_, kong, мма_,\n  { {0x6b830010, 0x03a6013b, 0xdb08000a, 0x00000000}},  //   jong, _шипо, _gidè,\n  { {0x7d1b236e, 0xf2d30104, 0x6b83236f, 0x00000000}},  //   _baus, _דעת_, dong,\n  { {0xfce6004c, 0xdb000637, 0x61460364, 0x00000000}},  //   тодо, _humø, _рема,\n  { {0x7d1b19be, 0x3f980133, 0x6d98004a, 0x00000000}},  //   _daus, _thru_, víad,\n  { {0x6b830020, 0x7ceb014a, 0xef1f00b4, 0x00000000}},  //   gong, törü, ążce_,\n  { {0x6f1c0048, 0x2b890142, 0xdce2012d, 0x00000000}},  //   _iarc, júcu_, lioč,\n  { {0x6f1c165e, 0x7d1b0006, 0xdce20091, 0x00000000}},  //   _harc, _gaus, dnoć,\n  { {0x6d400051, 0x6f1c108d, 0x3d170061, 0x00000000}},  //   _ioma, _karc, _नसते_,\n  { {0x6d400e0a, 0x7d1b0ce4, 0x98af0036, 0x00000000}},  //   _homa, _zaus, _mogę_,\n  { {0xd00b0055, 0xa4d501e1, 0x00000000, 0x00000000}},  //   রিয়_, лоні,   ,\n  { {0x7d022370, 0x6d400089, 0xdb080173, 0x00000000}},  //   nfos, _joma, _sidè,\n  { {0x6d402371, 0x1836023c, 0x7c222372, 0x00000000}},  //   _moma, _جراح, nvor,\n  { {0x52bf0201, 0x6d4000b0, 0x36d416c4, 0x00000000}},  //   ्रेस, _loma, _сокр,\n  { {0xa91d0f3a, 0x96f701f7, 0x7c2201e5, 0x00000000}},  //   loža, _شعور_, hvor,\n  { {0x6d400089, 0x6b8300bb, 0xdb010161, 0x00000000}},  //   _noma, zong, _milá,\n  { {0x6f1c04bd, 0x7d1b010f, 0x6b830ea6, 0x00000000}},  // [5ad0] _barc, _raus, yong,\n  { {0x6f1c1f5a, 0x7d1b030b, 0xdb082373, 0x00000000}},  //   _carc, _saus, _fidé,\n  { {0x3ea70073, 0x6f1c0142, 0x6b832374, 0x00000000}},  //   änt_, _darc, vong,\n  { {0x6d4004bd, 0x68e2008d, 0x6b830390, 0x00000000}},  //   _coma, _ndod, wong,\n  { {0x6f1c0016, 0x6b832375, 0x7c222376, 0x00000000}},  //   _farc, tong, gvor,\n  { {0x6f1c0779, 0x68e200e0, 0x7d1b0048, 0x00000000}},  //   _garc, _adod, _waus,\n  { {0x7d1b00f2, 0xa3d3001c, 0x6d4001aa, 0x00000000}},  //   _taus, हीत_, _foma,\n  { {0x6d401cfa, 0x31692377, 0xe8f91c31, 0x00000000}},  //   _goma, niaz_, хли_,\n  { {0x6b832378, 0x5c75025f, 0x68e2005b, 0x00000000}},  //   pong, _слат, _ddod,\n  { {0xdce20521, 0x6d4000b5, 0x6f1c00f6, 0x00000000}},  //   tnoć, _zoma, _xarc,\n  { {0x8c42011f, 0x69c110e9, 0x6d401fb8, 0x00000000}},  //   _öğre, _utle, _yoma,\n  { {0x20190052, 0x6b5400f6, 0x673a0023, 0x00000000}},  //   _ossi_, _vàge, ajtj,\n  { {0x2d8f002a, 0x5ede0044, 0x6d98004a, 0x00000000}},  //   ilge_, ন্টে, líac,\n  { {0x291d2379, 0x291f002d, 0x6d5a0006, 0x00000000}},  //   _hawa_, ldua_, _įtam,\n  { {0x20190766, 0xc0e6237a, 0x291d00b4, 0x00000000}},  //   _assi_, ловк, _kawa_,\n  { {0xdb08237b, 0x291f2128, 0x291d0390, 0x00000000}},  //   _vidé, ndua_, _jawa_,\n  { {0x6d40000d, 0x27ff01a3, 0xe0df237c, 0x00000000}},  // [5ae0] _roma, ntun_, _alòs_,\n  { {0x6d4000e4, 0x6b4f0018, 0xdfcf05f3, 0x00000000}},  //   _soma, _søgn, سيم_,\n  { {0x20190207, 0x6f1c237d, 0x63b60011, 0x00000000}},  //   _essi_, _varc, _huyn,\n  { {0x7c2204a3, 0x6f1c0cb4, 0x291d011c, 0x00000000}},  //   tvor, _warc, _nawa_,\n  { {0x0b8a0794, 0x7d02027b, 0x6f1c120c, 0x00000000}},  //   нски_, rfos, _tarc,\n  { {0x7c220e42, 0x6d400339, 0x256b01aa, 0x00000000}},  //   rvor, _woma, _kòlè_,\n  { {0x2be002fb, 0x7c22010f, 0x274100b9, 0x00000000}},  //   _निका, svor, _méně_,\n  { {0xdb010047, 0xdca6003b, 0x2120237e, 0x00000000}},  //   _vilá, _баби, ndih_,\n  { {0xcaf60076, 0x2000000d, 0x291d0020, 0x00000000}},  //   _مساب, ntii_, _dawa_,\n  { {0x3169002d, 0xa01b00b0, 0xb4bf0061, 0x00000000}},  //   ziaz_, _työv, ेर्_,\n  { {0xd5b70057, 0xa37b0181, 0x6440021e, 0x00000000}},  //   лся_, nsõe, ämin,\n  { {0xa91d0268, 0x291d011c, 0x63b6237f, 0x00000000}},  //   ložn, _gawa_, _buyn,\n  { {0x765a2380, 0x00000000, 0x00000000, 0x00000000}},  //   szty,   ,   ,\n  { {0x77f700b6, 0x6b4f0030, 0xa01b00b0, 0x00000000}},  //   _עמוד_, _nøgl, _myöt,\n  { {0x31c401be, 0xf3ff00c4, 0x6595007c, 0x00000000}},  //   йств, stã_, _каку,\n  { {0x3869050f, 0x20190093, 0x9f5200b0, 0x00000000}},  //   _žari_, _pssi_, htyä_,\n  { {0xc05b01fb, 0x3169002d, 0xceeb0f8b, 0x00000000}},  // [5af0] хів_, riaz_, فران_,\n  { {0x7a0a005f, 0x31690032, 0x00000000, 0x00000000}},  //   _mətb, siaz_,   ,\n  { {0xc33200bd, 0xc20804e1, 0x442901ca, 0x00000000}},  //   _ווי_, _یقین_, _hra_,\n  { {0x442900c4, 0xdb2600a6, 0xa37b006c, 0x00000000}},  //   _kra_, یونی, ssõd,\n  { {0x2000001a, 0x60cd0020, 0x291d2381, 0x00000000}},  //   ctii_, mbam, _rawa_,\n  { {0x291d000b, 0x60cd0006, 0x2fc900e0, 0x00000000}},  //   _sawa_, lbam, mpag_,\n  { {0xba770014, 0x442911c2, 0x394d06aa, 0x00000000}},  //   داشت, _lra_, tkes_,\n  { {0x4429139c, 0x27ff014a, 0x6d9800d6, 0x00000000}},  //   _ora_, ttun_, ríac,\n  { {0x394d014a, 0x44290089, 0x291f01a3, 0x00000000}},  //   rkes_, _nra_, rdua_,\n  { {0x753d0046, 0x27ff023a, 0x394d0030, 0x00000000}},  //   ejsz, rtun_, skes_,\n  { {0x44292382, 0x27ff2383, 0x291d2384, 0x00000000}},  //   _ara_, stun_, _tawa_,\n  { {0x44290073, 0x6e21029d, 0x27ff0035, 0x00000000}},  //   _bra_, _álbu, ptun_,\n  { {0x99840054, 0x7d090065, 0xa01b00b0, 0x00000000}},  //   _النو, _mbes, _myös,\n  { {0x3319008b, 0x44291aef, 0x27ed0065, 0x00000000}},  //   ліся_, _dra_, mren_,\n  { {0x29d3000d, 0xc5d501fb, 0x82a60088, 0x00000000}},  //   nţa_, _тіль, равж,\n  { {0x44292385, 0x92d60055, 0x256b01aa, 0x00000000}},  //   _fra_, হলে_, _vòlè_,\n  { {0x44290036, 0x657d0047, 0x1f66007e, 0x00000000}},  // [5b00] _gra_, érhe, акам,\n  { {0x20002386, 0x7d09002d, 0x862200a1, 0x00000000}},  //   rtii_, _abes, _اکیل,\n  { {0x27ed001f, 0x20002387, 0xa01b00b0, 0x00000000}},  //   hren_, stii_, _syöt,\n  { {0x44290736, 0x0c260057, 0xa37b0181, 0x00000000}},  //   _yra_, имен, rsõe,\n  { {0xa37b0181, 0x9f5200b0, 0x27ed15a9, 0x00000000}},  //   ssõe, ttyä_, jren_,\n  { {0xe9e601be, 0x27ed05a6, 0xd90d00a1, 0x00000000}},  //   ацио, dren_, ہیم_,\n  { {0x27ed001f, 0x12e90049, 0xa91d0059, 0x00000000}},  //   eren_, אַפּ, rožn,\n  { {0xa01b00b0, 0x7c29147f, 0x7d0900ea, 0x00000000}},  //   _työt, _frer, _gbes,\n  { {0x7afa001c, 0x27ed0039, 0xdce90182, 0x00000000}},  //   _tctt, gren_, _sjeć,\n  { {0x44292388, 0x9abc0066, 0x957d00b4, 0x00000000}},  //   _rra_, _baċe, zsąd,\n  { {0xe8fa0822, 0x27ed15cd, 0x442900d6, 0x00000000}},  //   _але_, aren_, _sra_,\n  { {0x44292389, 0x99750057, 0x27ed0b32, 0x00000000}},  //   _pra_, _лучш, bren_,\n  { {0x75c10089, 0x53470605, 0x27ed0288, 0x00000000}},  //   _rēze, ахва, cren_,\n  { {0x4429238a, 0x389b00a3, 0x00000000, 0x00000000}},  //   _vra_, _סיגנ,   ,\n  { {0xe167012b, 0x6dac014a, 0xdcfb04eb, 0x00000000}},  //   ађан, _aşam, _ukuć,\n  { {0x4429238b, 0x76570104, 0x74f902b3, 0x00000000}},  //   _tra_, _כבוד_, _сеир_,\n  { {0x60cd0006, 0x4429238c, 0x909908f3, 0x00000000}},  // [5b10] rbam, _ura_, уват_,\n  { {0x7d090796, 0xa49b0173, 0xbf02013d, 0x00000000}},  //   _sbes, nfòm, र्लभ_,\n  { {0xa3d3001c, 0x2d7800ca, 0x27ed0065, 0x00000000}},  //   हीर_, rčen_, zren_,\n  { {0x27ed0016, 0x00000000, 0x00000000, 0x00000000}},  //   yren_,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6d59238d, 0x27ed0b79, 0xab6403e8, 0x00000000}},  //   shwa, vren_, овіл,\n  { {0xa01b0ae4, 0x27ed01f3, 0x00000000, 0x00000000}},  //   _työs, wren_,   ,\n  { {0x27ed0ab3, 0x991501fb, 0x7d090030, 0x00000000}},  //   tren_, ські, _ubes,\n  { {0x27ed095d, 0xccf2009b, 0x2d8d025e, 0x00000000}},  //   uren_, _מכן_, _ikee_,\n  { {0x27ed022b, 0x9abc0066, 0x6d5a007f, 0x00000000}},  //   rren_, _paċe, _įtai,\n  { {0xaa950025, 0xe81c013d, 0x27ed238e, 0x00000000}},  //   _الاث, _बैठा_, sren_,\n  { {0x05560242, 0x27ed0023, 0x61f5006b, 0x00000000}},  //   стоя, pren_, duzl,\n  { {0x6c79007b, 0xa3d301f5, 0x00000000, 0x00000000}},  //   ראָפ, हील_,   ,\n  { {0x2be00061, 0x1c1e0061, 0x61f5006b, 0x00000000}},  //   _निघा, _मैफल_, fuzl,\n  { {0x450d0044, 0x1546004d, 0x661c0190, 0x00000000}},  //   ষয়ক_, _гейм, ærkt,\n  { {0xdb0810af, 0x31bc0344, 0x216700e2, 0x00000000}},  //   _ridí, _víz_, биси_,\n  { {0x41270265, 0x6143238f, 0x7d010010, 0x00000000}},  // [5b20] щото_, чета, záró,\n  { {0xa01b021e, 0x798901bb, 0x31bc0010, 0x00000000}},  //   _pyör, hoew, _tíz_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x2d9f228b, 0xd5fa0049, 0xb5fa0049, 0x00000000}},  //   _chue_, טפער, טלעכ,\n  { {0xdd8f0439, 0x9f4000b0, 0x1ab40e1b, 0x00000000}},  //   روه_, triä_, обля,\n  { {0xdfcf0379, 0xa01b00b0, 0x00000000, 0x00000000}},  //   _سيف_, _työr,   ,\n  { {0x0f5701ce, 0x00000000, 0x00000000, 0x00000000}},  //   _פילם_,   ,   ,\n  { {0xa517001c, 0xed570517, 0xa3d801f5, 0x00000000}},  //   _तसेच_, _лос_, ाठा_,\n  { {0xeafa0025, 0x64a70164, 0x37aa00ed, 0x00000000}},  //   _مرات_, _गणेश, лтон_,\n  { {0x501b009b, 0x25a02390, 0x9f49000c, 0x00000000}},  //   נויו, _ahil_, ntað_,\n  { {0x248000d2, 0x15150930, 0x00000000, 0x00000000}},  //   _axim_, одня,   ,\n  { {0x9f4706b8, 0x61f51d83, 0x00000000, 0x00000000}},  //   čné_, vuzl,   ,\n  { {0x5896035b, 0xa3d301f5, 0x25a00058, 0x00000000}},  //   _اجاز, हीं_, _dhil_,\n  { {0x96ba2391, 0x661c0030, 0x9f4000c4, 0x00000000}},  //   _суду_, ærks, ssiê_,\n  { {0x26de06bd, 0x39461db7, 0x6d98008e, 0x00000000}},  //   mato_, _koos_, vían,\n  { {0x26de0198, 0x7a0a006b, 0x394601c3, 0x00000000}},  //   lato_, _xəta, _joos_,\n  { {0x656f1425, 0x9ed909da, 0x39460cba, 0x00000000}},  // [5b30] mich, имат_, _moos_,\n  { {0x656f08ba, 0x26de0198, 0x3946095c, 0x00000000}},  //   lich, nato_, _loos_,\n  { {0x644f007f, 0x26de0026, 0x00000000, 0x00000000}},  //   lyci, iato_,   ,\n  { {0x7ae80f60, 0x656f0207, 0x9f490051, 0x00000000}},  //   _addt, nich, mraí_,\n  { {0x26de0020, 0x69c801c5, 0x00000000, 0x00000000}},  //   kato_, _atde,   ,\n  { {0x656f001f, 0xdea400a6, 0x26de013e, 0x00000000}},  //   hich, _کیمی, jato_,\n  { {0x9f49002a, 0x2d9f0011, 0x656f0e74, 0x00000000}},  //   nraí_, _thue_, kich,\n  { {0x656f2392, 0x47c500d7, 0x39460b3d, 0x00000000}},  //   jich, обив, _coos_,\n  { {0x5fe203d7, 0xf8ae007a, 0xc8b300a1, 0x00000000}},  //   _पिछल, نکه_, _ہلاک,\n  { {0x26de0198, 0x060900ed, 0x7b770070, 0x00000000}},  //   gato_, анок_, _اطرا,\n  { {0xb8ff0055, 0x656f2393, 0xe57a005e, 0x00000000}},  //   _তা_, fich, изо_,\n  { {0x656f0207, 0x9f490051, 0x394600d9, 0x00000000}},  //   gich, draí_, _goos_,\n  { {0x66e5012b, 0x26de0207, 0x00000000, 0x00000000}},  //   _дола, bato_,   ,\n  { {0x26de0198, 0x7a0a005f, 0x16390025, 0x00000000}},  //   cato_, _mətn, _نسبة_,\n  { {0x9f49002a, 0x656f2394, 0xe77800a1, 0x00000000}},  //   graí_, bich, _دلوں_,\n  { {0x68fb01b9, 0x644f0036, 0x67232395, 0x00000000}},  //   ngud, byci, _hanj,\n  { {0x0fda007c, 0x9f492396, 0x00000000, 0x00000000}},  // [5b40] рьбы_, araí_,   ,\n  { {0x44201c56, 0xb358026c, 0x67232397, 0x00000000}},  //   _isi_, _ایسا_, _janj,\n  { {0x67230263, 0x614601f9, 0x44200145, 0x00000000}},  //   _manj, _дена, _hsi_,\n  { {0x6723020c, 0x629e01d9, 0xa01b00b0, 0x00000000}},  //   _lanj, _izpo, _työp,\n  { {0x60c4037e, 0x75241f2e, 0x39460168, 0x00000000}},  //   mcim, _maiz, _roos_,\n  { {0x39461273, 0x656f2398, 0x67230059, 0x00000000}},  //   _soos_, zich, _nanj,\n  { {0x26de0198, 0x2d781a2d, 0x644f0036, 0x00000000}},  //   vato_, nček_, zyci,\n  { {0x75242399, 0xdb08029d, 0x60c40091, 0x00000000}},  //   _naiz, _didá, ncim,\n  { {0x6723023a, 0x656f01aa, 0x44201a9b, 0x00000000}},  //   _banj, vich, _nsi_,\n  { {0x656f05c6, 0x67231aa3, 0x1037009b, 0x00000000}},  //   wich, _canj, קטים_,\n  { {0x26de0198, 0x6723239a, 0x656f1f55, 0x00000000}},  //   rato_, _danj, tich,\n  { {0x26de0207, 0xe7f30061, 0x6d420035, 0x00000000}},  //   sato_, _आमचा_, njoa,\n  { {0x656f15a6, 0x26de1c5e, 0x6d98008e, 0x00000000}},  //   rich, pato_, víal,\n  { {0x656f239b, 0x672304cb, 0x60c400c4, 0x00000000}},  //   sich, _ganj, ecim,\n  { {0x44200dec, 0x75240b1e, 0x9f400051, 0x00000000}},  //   _esi_, _faiz, briú_,\n  { {0x9f49002a, 0x67230059, 0x7524002d, 0x00000000}},  //   rraí_, _zanj, _gaiz,\n  { {0x67230009, 0x656d011c, 0x26dc016c, 0x00000000}},  // [5b50] _yanj, _imah, _kevo_,\n  { {0x7524022b, 0x68e0003f, 0x3dd80016, 0x00000000}},  //   _zaiz, hamd, _bwrw_,\n  { {0x7bc9239c, 0xe135007c, 0x777a0032, 0x00000000}},  //   _steu, _енны, intx,\n  { {0x26dc239d, 0x6d980f08, 0x00000000, 0x00000000}},  //   _levo_, bíam,   ,\n  { {0x9f40008e, 0x44200009, 0x7a0a006b, 0x00000000}},  //   guió_, _xsi_, _qətn,\n  { {0x8b22022a, 0x3dd8005b, 0x4fd6009b, 0x00000000}},  //   едше, _fwrw_, _מושב_,\n  { {0xa91d0161, 0x656d0275, 0x7de00047, 0x00000000}},  //   loži, _omah, _vásá,\n  { {0x67230e00, 0x627c0476, 0x777a002d, 0x00000000}},  //   _sanj, ינונ, entx,\n  { {0x60dd239e, 0x67232375, 0x7bc90020, 0x00000000}},  //   _mesm, _panj, _uteu,\n  { {0x656d1dc0, 0x442000ca, 0x75241126, 0x00000000}},  //   _amah, _rsi_, _saiz,\n  { {0x26dc239f, 0x672323a0, 0x4420156f, 0x00000000}},  //   _devo_, _vanj, _ssi_,\n  { {0x60dd0161, 0x4420016e, 0x2d781cfb, 0x00000000}},  //   _nesm, _psi_, vček_,\n  { {0x7524010a, 0x60c40091, 0x395f0039, 0x00000000}},  //   _vaiz, vcim, mhus_,\n  { {0x442001d9, 0x395f07c4, 0x6d980325, 0x00000000}},  //   _vsi_, lhus_, víam,\n  { {0x60dd037e, 0x75240089, 0xe29a0088, 0x00000000}},  //   _besm, _taiz, сав_,\n  { {0x4420002b, 0x2167007c, 0x27e601aa, 0x00000000}},  //   _tsi_, писи_, _yvon_,\n  { {0x60dd1e8f, 0x55770049, 0x442004b4, 0x00000000}},  // [5b60] _desm, _מעקן_, _usi_,\n  { {0x60c40181, 0xc2ea025a, 0x60dd0004, 0x00000000}},  //   scim, _اعظم_, _eesm,\n  { {0x395f0d32, 0x60c40091, 0x6d420009, 0x00000000}},  //   khus_, pcim, tjoa,\n  { {0x60dd00c7, 0x6d5b0051, 0xeeeb0011, 0x00000000}},  //   _gesm, _clua, _đụng_,\n  { {0x6d4200b0, 0x395f02e7, 0x6d490abb, 0x00000000}},  //   rjoa, dhus_, _doea,\n  { {0x6d5b006c, 0x6f0e00f6, 0xa09b00a3, 0x00000000}},  //   _elua, _ubbc, _ליכט,\n  { {0x26dc0093, 0x68e0014a, 0x6d5b0048, 0x00000000}},  //   _revo_, tamd, _flua,\n  { {0x6d5b002a, 0x6d490066, 0xd91a0088, 0x00000000}},  //   _glua, _goea, ськ_,\n  { {0x68e0006a, 0x7c200253, 0xf803007e, 0x00000000}},  //   ramd, _usmr, нчэн,\n  { {0x68e023a1, 0x00000000, 0x00000000, 0x00000000}},  //   samd,   ,   ,\n  { {0x26dc004a, 0xd6d7007c, 0xe7e80061, 0x00000000}},  //   _vevo_, чты_, _टटका_,\n  { {0x395f005b, 0xd5b7007c, 0xc7c6007c, 0x00000000}},  //   chus_, ясь_, _ески,\n  { {0x60dd05fb, 0x1b1f0055, 0x5454007e, 0x00000000}},  //   _resm, পারে_, евят,\n  { {0xda20001c, 0x7c2d006b, 0x60dd00ca, 0x00000000}},  //   _मनात_, çirə, _sesm,\n  { {0x60dd23a2, 0xa1950088, 0x5693007e, 0x00000000}},  //   _pesm, давч, _пашт,\n  { {0x9f4713c7, 0xf67b009b, 0x6b4f0056, 0x00000000}},  //   ční_, _לאומ, _høgt,\n  { {0x60dd0161, 0x00000000, 0x00000000, 0x00000000}},  // [5b70] _vesm,   ,   ,\n  { {0x6d5b23a3, 0xa91d1238, 0x00000000, 0x00000000}},  //   _slua, roži,   ,\n  { {0xe0d000a1, 0x7a0a006b, 0x6d5a0006, 0x00000000}},  //   ئزہ_, _qətl, _įtar,\n  { {0x657d0292, 0xcc990745, 0xd01000a1, 0x00000000}},  //   nnsh, овец_, خلے_,\n  { {0x45270044, 0x69da002b, 0x7d191459, 0x00000000}},  //   যাপক_, _awte, rews,\n  { {0x20090006, 0x657d01f3, 0x6d9100ea, 0x00000000}},  //   mtai_, hnsh, tåas,\n  { {0x395f0bd8, 0xf4130044, 0x20090006, 0x00000000}},  //   thus_, িটির_, ltai_,\n  { {0x17c90589, 0x2129020c, 0xdce90059, 0x00000000}},  //   огии_, ndah_, _kmeč,\n  { {0x395f0030, 0xf53f23a4, 0x98bd0036, 0x00000000}},  //   rhus_, rmål_, _nową_,\n  { {0x2d8f0059, 0x20090006, 0x21290093, 0x00000000}},  //   loge_, itai_, hdah_,\n  { {0x7ae3191c, 0x395f00ea, 0xdb030048, 0x00000000}},  //   mant, phus_, nmní,\n  { {0x2009010a, 0x61f5016c, 0x2d8f089f, 0x00000000}},  //   ktai_, drzl, noge_,\n  { {0x26c7049a, 0x21290145, 0xc9740647, 0x00000000}},  //   _tfno_, ddah_, _ثالث,\n  { {0x7ae323a5, 0x657d23a6, 0x629700f8, 0x00000000}},  //   nant, ansh, _byxo,\n  { {0xa2b30061, 0xdb010399, 0x6dbe0027, 0x00000000}},  //   _आणण्, _chlé, _vďak,\n  { {0x7ae30127, 0x2d1c0061, 0x63bf0066, 0x00000000}},  //   hant, _नसेल_, _fuqn,\n  { {0x7ae323a7, 0x6285038e, 0xd007003b, 0x00000000}},  // [5b80] kant, _exho, мете_,\n  { {0x7ae3010a, 0xef17007c, 0x3ced00e5, 0x00000000}},  //   jant, мму_, _adev_,\n  { {0x7ae30181, 0x44320428, 0xdb010048, 0x00000000}},  //   dant, _hry_, _ghlé,\n  { {0x44320343, 0x2d8f037f, 0x61fc005d, 0x00000000}},  //   _kry_, goge_, murl,\n  { {0x6c1a06dd, 0x7ae323a8, 0x9abc002b, 0x00000000}},  //   تتاح_, fant, _faċl,\n  { {0xd04f006b, 0x00000000, 0x00000000, 0x00000000}},  //   _necə,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xbea3008b, 0x2d8f008e, 0x6b540129, 0x00000000}},  //   _раск, coge_, _màgi,\n  { {0x7ae31577, 0xdb0800b0, 0x79a3005e, 0x00000000}},  //   bant, _pidä, ърше,\n  { {0xddc9001a, 0x61fc002d, 0x212900ca, 0x00000000}},  //   _înţe, kurl, zdah_,\n  { {0x7bc00058, 0x443223a9, 0xdceb0089, 0x00000000}},  //   _humu, _ary_, ligā,\n  { {0x7bc01bc6, 0x61f50107, 0x443200f8, 0x00000000}},  //   _kumu, vrzl, _bry_,\n  { {0x7bc00020, 0x21290107, 0xdb0123aa, 0x00000000}},  //   _jumu, vdah_, _shlé,\n  { {0x289b00b6, 0x7bc00058, 0xd04f006b, 0x00000000}},  //   _וידא, _mumu, _gecə,\n  { {0x7bc00760, 0xa2940088, 0xdce90e83, 0x00000000}},  //   _lumu, варі, _smeč,\n  { {0x7ae323ab, 0x20090232, 0x443202f1, 0x00000000}},  //   zant, ttai_, _fry_,\n  { {0x44320046, 0x7ae3023a, 0x7bc0001e, 0x00000000}},  // [5b90] _gry_, yant, _numu,\n  { {0x7ae30fdb, 0x200923ac, 0xdce901ed, 0x00000000}},  //   xant, rtai_, _rjeđ,\n  { {0x2009010a, 0x8af7006b, 0xa2b00061, 0x00000000}},  //   stai_, şəki, ंधण्,\n  { {0xe5100011, 0x7bc0011c, 0x20090006, 0x00000000}},  //   _lặng_, _bumu, ptai_,\n  { {0x7ae31596, 0xa3d30061, 0x515a00a0, 0x00000000}},  //   tant, हीच_, _זכרו,\n  { {0xe5100011, 0xfaa501e0, 0x7bc0011c, 0x00000000}},  //   _nặng_, нало, _dumu,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xd2b8019b, 0xa49b01aa, 0x7bc00035, 0x00000000}},  //   ולות_, nfòs, _fumu,\n  { {0x7bc0011c, 0x6d590969, 0x00000000, 0x00000000}},  //   _gumu, mkwa,   ,\n  { {0xd7090057, 0x6d590082, 0x399a0065, 0x00000000}},  //   чное_, lkwa, hësh_,\n  { {0xcf9200b3, 0x6dac005a, 0x7ae10011, 0x00000000}},  //   רטי_, _işar, _ielt,\n  { {0x6d59054e, 0x7bc023ad, 0x443223ae, 0x00000000}},  //   nkwa, _yumu, _pry_,\n  { {0x7ae10ff8, 0x69c1170e, 0x44320045, 0x00000000}},  //   _kelt, _hule, _qry_,\n  { {0x69c106d0, 0x61fc00eb, 0x6b5404bd, 0x00000000}},  //   _kule, turl, _pàgi,\n  { {0x69c101e3, 0xf6790049, 0xa59610f3, 0x00000000}},  //   _jule, _מאַמ, _прищ,\n  { {0x64400bac, 0x44320838, 0x69c102c0, 0x00000000}},  //   ämis, _try_, _mule,\n  { {0x69c123af, 0x61fc014a, 0x320a23b0, 0x00000000}},  // [5ba0] _lule, surl, stby_,\n  { {0x6d590116, 0xdceb0089, 0x7ae10810, 0x00000000}},  //   ekwa, vigā, _nelt,\n  { {0x7bc0006a, 0x17560049, 0x69c10006, 0x00000000}},  //   _sumu, עסער_, _nule,\n  { {0x9f4706b8, 0x7bc0006a, 0xedd30014, 0x00000000}},  //   čná_, _pumu, ايند,\n  { {0xdca300d7, 0x7ae115cd, 0x69c1202d, 0x00000000}},  //   гаци, _belt, _aule,\n  { {0x69c1065c, 0xbb43034b, 0x7ae1191c, 0x00000000}},  //   _bule, лечк, _celt,\n  { {0x7ae100eb, 0x69c1001a, 0x399a0065, 0x00000000}},  //   _delt, _cule, lësi_,\n  { {0x7bc0006a, 0xd90e00a6, 0x69c123b1, 0x00000000}},  //   _tumu, صیت_, _dule,\n  { {0x7ae10047, 0x7c240279, 0x69c10065, 0x00000000}},  //   _felt, çird, _eule,\n  { {0x7c2201d0, 0x7a0a006b, 0x999c007f, 0x00000000}},  //   mwor, _ləti, tyvų_,\n  { {0x69c10193, 0xa4d50088, 0x399a0023, 0x00000000}},  //   _gule, коні, hësi_,\n  { {0x7a0a005f, 0x7d02018e, 0x7ae123b2, 0x00000000}},  //   _nəti, ngos, _zelt,\n  { {0xf4840954, 0xe510001d, 0x69c1010f, 0x00000000}},  //   гурн, _tặng_, _zule,\n  { {0xdbc70004, 0xb4bb02fd, 0x69c10258, 0x00000000}},  //   _tööt, _کاغذ_, _yule,\n  { {0xd056005f, 0x399a0065, 0x225801dc, 0x00000000}},  //   mayə, tësh_, _čeká_,\n  { {0xd056006b, 0x00000000, 0x00000000, 0x00000000}},  //   layə,   ,   ,\n  { {0x442f0359, 0x7d020036, 0x399a0065, 0x00000000}},  // [5bb0] _ég_, dgos, rësh_,\n  { {0xd056005f, 0x2d840243, 0x399a0023, 0x00000000}},  //   nayə, _ajme_, sësh_,\n  { {0x7c2201c3, 0xf7730049, 0x399a0023, 0x00000000}},  //   ewor, נקע_, pësh_,\n  { {0x7ae123b3, 0x7a0a005f, 0x69c100ab, 0x00000000}},  //   _selt, _gəti, _rule,\n  { {0x6d5900c7, 0x69c1006c, 0xd056006b, 0x00000000}},  //   rkwa, _sule, kayə,\n  { {0x6f1e0779, 0x69c1013f, 0x20190022, 0x00000000}},  //   cepc, _pule, _ipsi_,\n  { {0x7ae108d5, 0xda620077, 0xc33400b3, 0x00000000}},  //   _velt, ивши, טוס_,\n  { {0x7ae1001f, 0x7c220061, 0x99150088, 0x00000000}},  //   _welt, bwor, тькі,\n  { {0x68e223b4, 0x7ae123b5, 0x212b010f, 0x00000000}},  //   _deod, _telt, _mach_,\n  { {0x69c108b2, 0x25a9022b, 0x7c24014a, 0x00000000}},  //   _tule, _ahal_, çire,\n  { {0xdb0123b6, 0x39150014, 0x25a9002b, 0x00000000}},  //   _filò, _لواز, _bhal_,\n  { {0x212b23b7, 0x25a90173, 0x20190093, 0x00000000}},  //   _nach_, _chal_, _opsi_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x987a0049, 0x03a60081, 0x2d7800d0, 0x00000000}},  //   _קאסט, тиго, nčer_,\n  { {0xe297025f, 0x212b018e, 0xf796031d, 0x00000000}},  //   вар_, _bach_, _جنوب_,\n  { {0x7c220866, 0x25a901d5, 0x399a0065, 0x00000000}},  //   ywor, _ghal_, tësi_,\n  { {0xf5770054, 0x7c2223b8, 0x212b06f2, 0x00000000}},  // [5bc0] _جميع_, xwor, _dach_,\n  { {0x93fb061e, 0x212b0038, 0xd36f0054, 0x00000000}},  //   _קליי, _each_, _وهي_,\n  { {0x212b0abe, 0x7d020093, 0x7a0a013f, 0x00000000}},  //   _fach_, tgos, _təti,\n  { {0x212b0195, 0x7c2223b9, 0x27ff021e, 0x00000000}},  //   _gach_, twor, kuun_,\n  { {0x0b8a09ae, 0x7d020065, 0x399a0065, 0x00000000}},  //   мски_, rgos, qësi_,\n  { {0x9f400211, 0x7d0200d6, 0x6713007d, 0x00000000}},  //   rrió_, sgos, त्मक_,\n  { {0x212b0093, 0x394f0606, 0x7db6007e, 0x00000000}},  //   _yach_, _bogs_, _асац,\n  { {0xdb090211, 0xf98f0379, 0x2d95007e, 0x00000000}},  //   _dueñ, يبي_, _брус,\n  { {0xc173019b, 0x6dac005f, 0x394f00ab, 0x00000000}},  //   יחה_, _uşaq, _dogs_,\n  { {0x95d800ed, 0x394f0190, 0x00000000, 0x00000000}},  //   ндот_, _eogs_,   ,\n  { {0xb9080055, 0x68e2001a, 0x0f57009b, 0x00000000}},  //   _বা_, _teod, דיים_,\n  { {0xd6da0044, 0x8a790049, 0x00000000, 0x00000000}},  //   _দাওয, _אָנק,   ,\n  { {0x212b0173, 0x161e013d, 0x00000000, 0x00000000}},  //   _rach_, _बनकर_,   ,\n  { {0x212b23ba, 0x98a3022a, 0x6b5400f6, 0x00000000}},  //   _sach_, _тиче, _tàgu,\n  { {0x31c4092b, 0xab5d002b, 0x9abc0066, 0x00000000}},  //   иств, _juża, _baċi,\n  { {0xfba90061, 0xf3ff00c4, 0x65660082, 0x00000000}},  //   _चीनम, puã_, chkh,\n  { {0x212b135a, 0x20000026, 0xf3ff00fa, 0x00000000}},  // [5bd0] _vach_, guii_, quã_,\n  { {0x4429006a, 0xdb1a008d, 0x2ee30065, 0x00000000}},  //   _isa_, _ditë, _qejf_,\n  { {0x733a007b, 0x212b0016, 0x9abc002b, 0x00000000}},  //   _װערס, _tach_, _faċi,\n  { {0x442900e0, 0xff5f0035, 0x212b004a, 0x00000000}},  //   _ksa_, _atît_, _uach_,\n  { {0xdb090211, 0xed59066c, 0x752d00e7, 0x00000000}},  //   _sueñ, _niže_, _maaz,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x442901c5, 0x291f0020, 0x00000000, 0x00000000}},  //   _lsa_, teua_,   ,\n  { {0x442908b2, 0xa9250175, 0xc879001a, 0x00000000}},  //   _osa_, удил, laşi_,\n  { {0x44290058, 0x7d0900d9, 0x60cd01c5, 0x00000000}},  //   _nsa_, _ices, icam,\n  { {0x7c2916df, 0xed5904eb, 0x75c800b9, 0x00000000}},  //   _iser, _diže_, _vězn,\n  { {0x4429000d, 0xa50a0c4e, 0x394f0039, 0x00000000}},  //   _asa_, нена_, _togs_,\n  { {0x442905ae, 0xd76300a6, 0x7c2900b4, 0x00000000}},  //   _bsa_, انگی, _kser,\n  { {0x7c29002b, 0xe72e0545, 0xd90f00a1, 0x00000000}},  //   _jser, _ле_, _هیں_,\n  { {0x27ed0240, 0x752f0046, 0x4429211e, 0x00000000}},  //   msen_, adcz, _dsa_,\n  { {0x44290219, 0x27ed0374, 0x6b5d0e16, 0x00000000}},  //   _esa_, lsen_, _règl,\n  { {0x442923bb, 0x7c2900f8, 0xc879001a, 0x00000000}},  //   _fsa_, _oser, eaşi_,\n  { {0x27ed1dc6, 0xa067026b, 0x7a0a006b, 0x00000000}},  // [5be0] nsen_, гата_, _hətt,\n  { {0x7d0923bc, 0x27ed0e53, 0x3246012b, 0x00000000}},  //   _aces, isen_, _беог,\n  { {0x2776007b, 0x60cd0129, 0x68e923bd, 0x00000000}},  //   נגען_, bcam, kaed,\n  { {0x27ed23be, 0xc27b00a0, 0x60cd0197, 0x00000000}},  //   ksen_, _טריי, ccam,\n  { {0x5ee30055, 0x7c290047, 0x67210065, 0x00000000}},  //   _পারে, _cser, kelj,\n  { {0x27ed0018, 0x6be30025, 0x67210091, 0x00000000}},  //   dsen_, حكوم, jelj,\n  { {0x672123bf, 0x7c2923c0, 0xa3b503d7, 0x00000000}},  //   delj, _eser, जगत_,\n  { {0x68e9001c, 0x6374006b, 0x61ee0007, 0x00000000}},  //   gaed, _dünə, isbl,\n  { {0x6d40001a, 0x27ed0190, 0x31570049, 0x00000000}},  //   _inma, gsen_, טיקן_,\n  { {0x44291c83, 0x656416c3, 0x25620010, 0x00000000}},  //   _rsa_, _alih, _róla_,\n  { {0x49060647, 0x44290943, 0x27ed0190, 0x00000000}},  //   _مواق, _ssa_, asen_,\n  { {0x44290142, 0x27ed01e3, 0xc5f80089, 0x00000000}},  //   _psa_, bsen_, dzēt_,\n  { {0xb99301b7, 0xc9930054, 0xc7c80011, 0x00000000}},  //   _النب, _النظ, _dốc_,\n  { {0x442923c1, 0x67210107, 0x660100b9, 0x00000000}},  //   _vsa_, celj, bulk,\n  { {0xdb1a023f, 0x6d400168, 0xd627003b, 0x00000000}},  //   _cité, _onma, _боје_,\n  { {0x7aea001f, 0x29ca001d, 0xc7c8001d, 0x00000000}},  //   haft, _mùa_, _gốc_,\n  { {0x60cd0211, 0x9f4023c2, 0x765a00b0, 0x00000000}},  // [5bf0] rcam, ksiä_, lyty,\n  { {0x60cd008e, 0x7d090ec0, 0xb2750478, 0x00000000}},  //   scam, _sces, _влош,\n  { {0x7a0a006b, 0x7c290066, 0x539c009b, 0x00000000}},  //   _xətt, _sser, _איזו,\n  { {0x7c290032, 0x67212012, 0x00000000, 0x00000000}},  //   _pser, zelj,   ,\n  { {0x1aee0055, 0x8c450081, 0x777a0032, 0x00000000}},  //   চ্ছে_, реле, kitx,\n  { {0x6d40008e, 0x29ca0082, 0x27ed0190, 0x00000000}},  //   _enma, _bùa_, vsen_,\n  { {0xdb010051, 0x67210059, 0x06e30044, 0x00000000}},  //   _chlá, velj, _মালি,\n  { {0x27ed23c3, 0x7d09003b, 0x7c29010e, 0x00000000}},  //   tsen_, _uces, _tser,\n  { {0x67210e3b, 0x7c290038, 0x27ed010f, 0x00000000}},  //   telj, _user, usen_,\n  { {0x27ed23c4, 0xf7710879, 0xc7c80011, 0x00000000}},  //   rsen_, تاب_, _sốc_,\n  { {0x27ed1e7e, 0x672112ac, 0xcb6803ec, 0x00000000}},  //   ssen_, relj, _حمله_,\n  { {0x67210340, 0x27ed00b0, 0x66010066, 0x00000000}},  //   selj, psen_, rulk,\n  { {0x67210059, 0xa3b10061, 0x6601023a, 0x00000000}},  //   pelj, _ओळख_, sulk,\n  { {0x394d23c5, 0x395f007f, 0x61ee01a2, 0x00000000}},  //   ljes_, lkus_, tsbl,\n  { {0xe29a0407, 0xc7c8001d, 0x386d01a2, 0x00000000}},  //   тав_, _tốc_, lzer_,\n  { {0x395f0006, 0x394d23c6, 0x629e0161, 0x00000000}},  //   nkus_, njes_, _vypo,\n\n  { {0x629e0046, 0x386d23c7, 0x3fc8025a, 0x00000000}},  // [5c00] _wypo, nzer_, ادری_,\n  { {0x629e05fd, 0x386d010f, 0x394d0065, 0x00000000}},  //   _typo, izer_, hjes_,\n  { {0x394d23c8, 0x395f0004, 0xdd8f00a1, 0x00000000}},  //   kjes_, kkus_, ڈول_,\n  { {0xf1bf00ad, 0x29ca0011, 0x394d002b, 0x00000000}},  //   _giá_, _rùa_, jjes_,\n  { {0x394d23c9, 0xead41001, 0x386d00b5, 0x00000000}},  //   djes_, боль, jzer_,\n  { {0xdce6005d, 0x395f0089, 0x386d0790, 0x00000000}},  //   ımın, ekus_, dzer_,\n  { {0x7aea014a, 0xca480014, 0x394d0a5b, 0x00000000}},  //   raft, العه_, fjes_,\n  { {0x7aea0030, 0xb4b60061, 0x394d0ca5, 0x00000000}},  //   saft, _जणू_, gjes_,\n  { {0xed57007c, 0x777a05b3, 0x3160002d, 0x00000000}},  //   _тот_, titx, ikiz_,\n  { {0xab5c0089, 0x394d008e, 0x765a0052, 0x00000000}},  //   _biļe, ajes_, tyty,\n  { {0x5694003b, 0x777a23ca, 0xf76f023c, 0x00000000}},  //   сант, ritx, باي_,\n  { {0x395f0d94, 0x69c80035, 0x6b9806ec, 0x00000000}},  //   ckus_, _iude, lovg,\n  { {0xb7d40b03, 0x69c800b9, 0x636b23cb, 0x00000000}},  //   _اقتب, _hude, _jüng,\n  { {0x69c8022b, 0x9388007c, 0x23650010, 0x00000000}},  //   _kude, асса_, ólj_,\n  { {0x69c8000d, 0x7ae80059, 0x96b7003b, 0x00000000}},  //   _jude, _medt, _кућу_,\n  { {0x69c823cc, 0xeeeb0011, 0x7ae8032e, 0x00000000}},  //   _mude, _đựng_, _ledt,\n  { {0x657d000b, 0x69c80302, 0xb4e3007d, 0x00000000}},  // [5c10] mish, _lude, धरी_,\n  { {0x69c8015c, 0x657d23cd, 0x394d0065, 0x00000000}},  //   _oude, lish, zjes_,\n  { {0x645d0038, 0x69c80c3f, 0x75d3001a, 0x00000000}},  //   lysi, _nude, _găzd,\n  { {0x657d23ce, 0x386d23cf, 0x00000000, 0x00000000}},  //   nish, yzer_,   ,\n  { {0xac27005e, 0x69c814ac, 0x013600a0, 0x00000000}},  //   рфек, _aude, _פרשת_,\n  { {0x657d0020, 0x7dd3002b, 0x636b01a2, 0x00000000}},  //   hish, _aħse, _düng,\n  { {0x657d1ea5, 0x394d07fa, 0x9f490051, 0x00000000}},  //   kish, tjes_, nsaí_,\n  { {0x386d1359, 0x248d0036, 0x636b23d0, 0x00000000}},  //   tzer_, żemy_, _hünd,\n  { {0x25620219, 0x657d000b, 0x394d0065, 0x00000000}},  //   _sólo_, dish, rjes_,\n  { {0x395f0368, 0x394d23c8, 0x386d010f, 0x00000000}},  //   skus_, sjes_, rzer_,\n  { {0x69c80190, 0x386d0047, 0x394d23d1, 0x00000000}},  //   _gude, szer_, pjes_,\n  { {0x7a7a007b, 0x657d0061, 0x645d01aa, 0x00000000}},  //   _גרעס, gish, fysi,\n  { {0x7bc113b1, 0x7d1b0065, 0x69c8010f, 0x00000000}},  //   _kilu, _mbus, _zude,\n  { {0x27ff0066, 0xd88600a1, 0x04fa0044, 0x00000000}},  //   mrun_, _چھین_, েজের_,\n  { {0x657d000b, 0x7bc1099d, 0xf53f032e, 0x00000000}},  //   bish, _milu, rmår_,\n  { {0x657d0009, 0x7bc10032, 0x7c3b23d2, 0x00000000}},  //   cish, _lilu, _orur,\n  { {0xef1a044b, 0x80aa1534, 0x9f400051, 0x00000000}},  // [5c20] лма_, ував_, msiú_,\n  { {0x9f400051, 0x7306003b, 0x7bc1011c, 0x00000000}},  //   lsiú_, _упоз, _nilu,\n  { {0xb3bb00b6, 0x7ae814c6, 0xb7ff0044, 0x00000000}},  //   _תמיכ, _redt, ্বিত_,\n  { {0x69c80995, 0xdb1b009f, 0x442004d4, 0x00000000}},  //   _rude, _stuð, _kpi_,\n  { {0x69c80006, 0x9f400051, 0x75260032, 0x00000000}},  //   _sude, isiú_, iekz,\n  { {0x636b01f6, 0x7d1b0066, 0x657d1b1c, 0x00000000}},  //   _günd, _ebus, zish,\n  { {0x7bc104cb, 0x442000d4, 0x7ae801e3, 0x00000000}},  //   _dilu, _lpi_, _vedt,\n  { {0x44200052, 0x636b010f, 0xafdb01e3, 0x00000000}},  //   _opi_, _zünd, _drøf,\n  { {0x96ea00c2, 0x657d1ac5, 0x7bc900f4, 0x00000000}},  //   льна_, vish, _gueu,\n  { {0x657d09df, 0x35f4019d, 0x69c8006c, 0x00000000}},  //   wish, опор, _tude,\n  { {0x657d1ea5, 0x442004cb, 0x69c8021e, 0x00000000}},  //   tish, _api_, _uude,\n  { {0xd567107f, 0x6b5d0129, 0x443b0c61, 0x00000000}},  //   стоп, _règi, _prq_,\n  { {0x657d0714, 0x4420204f, 0x636b01a2, 0x00000000}},  //   rish, _cpi_, _lüne,\n  { {0x657d23d3, 0x645d0006, 0xdb0801aa, 0x00000000}},  //   sish, rysi, _zidò,\n  { {0x44200607, 0x657d000b, 0xdce90107, 0x00000000}},  //   _epi_, pish, _umeć,\n  { {0x636b0004, 0x657d0065, 0x9f490051, 0x00000000}},  //   _sünd, qish, rsaí_,\n  { {0x9f550216, 0xd32702d3, 0x2d8700b9, 0x00000000}},  // [5c30] овач, _льни, énem_,\n  { {0x80d90316, 0x00000000, 0x00000000, 0x00000000}},  //   _फ्रे,   ,   ,\n  { {0x7bc10026, 0xeeab0c27, 0x20000035, 0x00000000}},  //   _rilu, утак_, arii_,\n  { {0x9c3900d7, 0xa69b0049, 0x7c3b1c28, 0x00000000}},  //   ипет_, נשאפ, _prur,\n  { {0x7bc923d4, 0x6aa10016, 0xfe9300a1, 0x00000000}},  //   _queu, _sylf, _کیاج,\n  { {0x7645000c, 0xc1ed0164, 0x00000000, 0x00000000}},  //   _áhyg, _जबाब_,   ,\n  { {0x636b047f, 0x81cb0055, 0x27e60058, 0x00000000}},  //   _güne, রীর_, _awon_,\n  { {0x7d1b1dc0, 0xc7c8001d, 0x7c3b0065, 0x00000000}},  //   _ubus, _vốn_, _trur,\n  { {0x7d040051, 0x69c2002d, 0x7c3b0d3f, 0x00000000}},  //   óise, _dioe, _urur,\n  { {0xe61900ed, 0xc7c80011, 0x27ff002d, 0x00000000}},  //   адо_, _tốn_, rrun_,\n  { {0x44200059, 0xaa670184, 0xc7c80082, 0x00000000}},  //   _spi_, _утак, _uốn_,\n  { {0x69c20026, 0x27e60173, 0x7d0b0082, 0x00000000}},  //   _gioe, _fwon_, nggs,\n  { {0x333301d5, 0x78a200e5, 0x00000000, 0x00000000}},  //   _baxx_, _gyov,   ,\n  { {0x437502b8, 0x442001c3, 0x69c2002d, 0x00000000}},  //   пуст, _vpi_, _zioe,\n  { {0x6b840051, 0x44200145, 0x798923d5, 0x00000000}},  //   éigi, _wpi_, onew,\n  { {0xe0da00e3, 0x20000035, 0x4420008a, 0x00000000}},  //   рва_, trii_, _tpi_,\n  { {0x88bd0046, 0x291d0020, 0x3f9a00ca, 0x00000000}},  // [5c40] ześn, _mbwa_, topu_,\n  { {0x7c24038c, 0x799b00b5, 0x2d8d23d6, 0x00000000}},  //   çirm, houw, _ajee_,\n  { {0x79890093, 0x4e2a09da, 0x64410089, 0x00000000}},  //   knew, роен_, ālie,\n  { {0x68eb0119, 0xcbd50055, 0x2000001a, 0x00000000}},  //   _negd, _হয়েছ, prii_,\n  { {0xead41280, 0x09d20061, 0x79890554, 0x00000000}},  //   поль, सऱ्य, dnew,\n  { {0x798923d7, 0x636b0cca, 0x69c2005b, 0x00000000}},  //   enew, _tüne, _sioe,\n  { {0xbea30175, 0x79890016, 0x6b8d0051, 0x00000000}},  //   _жарк, fnew, éaga,\n  { {0xfafa00a6, 0xa37b00c4, 0x1d070478, 0x00000000}},  //   _چراغ_, mpõe, _меси_,\n  { {0x6da301be, 0x274a004c, 0x0d7700a1, 0x00000000}},  //   _цита, ачно_, _بینک_,\n  { {0x2562009f, 0x636b010f, 0x798906b1, 0x00000000}},  //   _fólk_, _münc, anew,\n  { {0x799b00c1, 0x798901a2, 0xdb1a00fa, 0x00000000}},  //   bouw, bnew, _titâ,\n  { {0x69da002b, 0x44391325, 0xe45f00b0, 0x00000000}},  //   _itte, tvs_, työ_,\n  { {0xd5b80194, 0xccf3009b, 0x94ab0745, 0x00000000}},  //   юсь_, וכר_, ртна_,\n  { {0x44390190, 0x79800020, 0x39461aa3, 0x00000000}},  //   rvs_, limw, _hnos_,\n  { {0x672823d8, 0x2d870047, 0x623400e2, 0x00000000}},  //   medj, ének_, меру,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x656f002a, 0x660823d9, 0x50670c18, 0x00000000}},  // [5c50] mhch, ludk, цтва,\n  { {0x67280209, 0x69da1015, 0x64400030, 0x00000000}},  //   nedj, _otte, æmie,\n  { {0x798923da, 0x6608006c, 0x5f740025, 0x00000000}},  //   ynew, nudk, ذاكر,\n  { {0x8d7405f3, 0xf65300b3, 0x656f0082, 0x00000000}},  //   وانا, וצע_, nhch,\n  { {0x636b011f, 0x60d60049, 0x68eb01d6, 0x00000000}},  //   _günc, _מורא_, _regd,\n  { {0x39461160, 0xab2900e3, 0x21290b3d, 0x00000000}},  //   _anos_, сока_, leah_,\n  { {0x7989001a, 0x1df80147, 0x660804cb, 0x00000000}},  //   tnew, _меры_, judk,\n  { {0xab5d01d5, 0x00000000, 0x00000000, 0x00000000}},  //   _mużi,   ,   ,\n  { {0x69da23db, 0x02a8007d, 0xa91d0ce4, 0x00000000}},  //   _ette, _गर्न, jiže,\n  { {0x79890016, 0x25a0021a, 0x2d9d23dc, 0x00000000}},  //   snew, _skil_, lowe_,\n  { {0x63700002, 0xe5a602dc, 0x00000000, 0x00000000}},  //   _häng, зини,   ,\n  { {0x2d9d0036, 0x63701e6c, 0x291d0dfc, 0x00000000}},  //   nowe_, _käng, _ubwa_,\n  { {0x672801a1, 0xed590059, 0x33d50088, 0x00000000}},  //   bedj, _mož_, діст,\n  { {0x63700dac, 0x69da093b, 0x69d6000c, 0x00000000}},  //   _mäng, _ytte, _ógeð,\n  { {0x6370127c, 0x2d9d0036, 0x61460175, 0x00000000}},  //   _läng, kowe_, пева,\n  { {0x9f4706b8, 0x290d1423, 0xc692009b, 0x00000000}},  //   čný_, ngea_, _ראה_,\n  { {0x2d9d0046, 0x20090181, 0xdb010048, 0x00000000}},  // [5c60] dowe_, guai_, _dhlú,\n  { {0x161f007d, 0x798000e7, 0x00000000, 0x00000000}},  //   _बहार_, zimw,   ,\n  { {0x7bdb00e5, 0xed59016c, 0x00000000, 0x00000000}},  //   _atuu, _bož_,   ,\n  { {0xed5900b9, 0x1d0a0517, 0x2d9d0036, 0x00000000}},  //   _což_, седи_, gowe_,\n  { {0x3218042e, 0x850a0061, 0xa37b00c4, 0x00000000}},  //   ltry_, _वाईट_, spõe,\n  { {0x88bd0046, 0xdb1a008e, 0x6c830025, 0x00000000}},  //   reśl, _bitá, علوم,\n  { {0xfce60057, 0x32180038, 0x2d9d23dd, 0x00000000}},  //   _ново, ntry_, bowe_,\n  { {0x637023de, 0x636b005f, 0x660802e1, 0x00000000}},  //   _händ, _müna, vudk,\n  { {0x637023df, 0x39460059, 0x79800e9c, 0x00000000}},  //   _gäng, _vnos_, rimw,\n  { {0xa7730f62, 0x00000000, 0x00000000, 0x00000000}},  //   ельч,   ,   ,\n  { {0xaadb00b6, 0x672805fa, 0x656f0051, 0x00000000}},  //   _החבר, redj, thch,\n  { {0x39460219, 0x2c2003d7, 0x637003a9, 0x00000000}},  //   _unos_, _यहां_, _länd,\n  { {0x3218184d, 0x9f52004a, 0x637000f8, 0x00000000}},  //   etry_, nuyó_, _oänd,\n  { {0x656f1706, 0x4acc0164, 0xa91d00ca, 0x00000000}},  //   shch, ाशिव, riže,\n  { {0x656f0026, 0x321800e0, 0x171b009b, 0x00000000}},  //   phch, gtry_, _הווע,\n  { {0x2009003f, 0x63a7012d, 0x636b010e, 0x00000000}},  //   tuai_, sljn, _düna,\n  { {0x637023e0, 0x656d049d, 0xed5900ca, 0x00000000}},  // [5c70] _bänd, _ilah, _rož_,\n  { {0xfe7100a1, 0x2d9d0036, 0x29030006, 0x00000000}},  //   نگز_, wowe_, ėjai_,\n  { {0x7bdb049b, 0x20090149, 0x637017c4, 0x00000000}},  //   _stuu, suai_, _säng,\n  { {0x6b5d0068, 0x00000000, 0x00000000, 0x00000000}},  //   _nègr,   ,   ,\n  { {0xa15601f8, 0x2d9d0046, 0xac090cf2, 0x00000000}},  //   _חברה_, rowe_, інка_,\n  { {0x656d23e1, 0x7c94007a, 0x2d9d0036, 0x00000000}},  //   _llah, رشنا, sowe_,\n  { {0x656d04fa, 0x89d60025, 0x80c20044, 0x00000000}},  //   _olah, ووور_, ষুদ্,\n  { {0x7d55007e, 0x9f52008e, 0xdb1a0a50, 0x00000000}},  //   _ўвах, buyó_, _vitá,\n  { {0x6370021e, 0xdd94007e, 0x290d0035, 0x00000000}},  //   _häne, _чаты, rgea_,\n  { {0x656d0760, 0x636200fa, 0x668300a1, 0x00000000}},  //   _alah, _tôni, ٹیبل,\n  { {0x6d490c0d, 0x656d23e2, 0x6370006c, 0x00000000}},  //   _knea, _blah, _jäne,\n  { {0x44321712, 0x6d5b009d, 0x00000000, 0x00000000}},  //   _psy_, _joua,   ,\n  { {0x75360009, 0x2eaa0309, 0x63700039, 0x00000000}},  //   _vayz, _कर्त, _läne,\n  { {0x7c2402b9, 0x3669005c, 0x6d5b009d, 0x00000000}},  //   çiri, _мало_, _loua,\n  { {0x656d0066, 0xc7b2009b, 0x6d490032, 0x00000000}},  //   _flah, _שבו_, _onea,\n  { {0x6b830475, 0x63700039, 0x321801c3, 0x00000000}},  //   hing, _sänd, rtry_,\n  { {0x32180038, 0xb4ea006e, 0x3a250022, 0x00000000}},  // [5c80] stry_, यरी_, _lplp_,\n  { {0x6b8304a5, 0xf09f00f6, 0x656d1a7d, 0x00000000}},  //   jing, _acàs_, _zlah,\n  { {0x6b8323e3, 0x63700274, 0xf2d300a0, 0x00000000}},  //   ding, _vänd, _בעת_,\n  { {0xbc6a006d, 0x9f52008e, 0x637001a2, 0x00000000}},  //   يمان_, tuyó_, _wänd,\n  { {0x6b8300db, 0x6370152c, 0x6d5b23e4, 0x00000000}},  //   fing, _tänd, _doua,\n  { {0x6b83177d, 0x7c2d23e5, 0x6d4915cd, 0x00000000}},  //   ging, çara, _enea,\n  { {0xfb1900a1, 0x7f5c00c4, 0x3a2500c4, 0x00000000}},  //   سروں_, _iorq, _cplp_,\n  { {0x38340256, 0xed4301fc, 0xc7c80011, 0x00000000}},  //   енир, _инсп, _hối_,\n  { {0xc2f40055, 0x3ce61332, 0x872a007e, 0x00000000}},  //   _জানি_, mbov_, оўна_,\n  { {0xf4140055, 0x7f5c23e6, 0xb905013d, 0x00000000}},  //   িবার_, _jorq, _ब्_,\n  { {0x656d1609, 0xc7c80011, 0xc956007c, 0x00000000}},  //   _plah, _mối_, _отды,\n  { {0x7bc8020c, 0xc7c80011, 0x7f5c0068, 0x00000000}},  //   _hidu, _lối_, _lorq,\n  { {0x9f400129, 0xe73a005e, 0x7bc80020, 0x00000000}},  //   nsió_, _мед_, _kidu,\n  { {0xb4af01f5, 0x7f5c1fec, 0xa91d00d0, 0x00000000}},  //   _करी_, _norq, miža,\n  { {0xc7c8001d, 0x7bc8107e, 0x656d218e, 0x00000000}},  //   _nối_, _midu, _tlah,\n  { {0x6b83000b, 0xdb010173, 0x26180a39, 0x00000000}},  //   zing, _eklè, méo_,\n  { {0xa29f0164, 0xfe700014, 0x6d5b15a3, 0x00000000}},  // [5c90] _खुर्, یدم_, _roua,\n  { {0x6d491b82, 0xc7c80011, 0x2fc70538, 0x00000000}},  //   _snea, _bối_, öng_,\n  { {0x6b830292, 0xdb1a021e, 0xc33201ce, 0x00000000}},  //   ving, _mitä, _גוי_,\n  { {0x6b830007, 0xc7c80011, 0x63700a3c, 0x00000000}},  //   wing, _dối_, _väne,\n  { {0x7f5c1052, 0xdce9014a, 0xa91d0091, 0x00000000}},  //   _forq, _emeğ, jiža,\n  { {0x7bc80022, 0x6b8301d6, 0x3a250022, 0x00000000}},  //   _cidu, uing, _pplp_,\n  { {0x6b830c64, 0x7bc8023a, 0x21390f65, 0x00000000}},  //   ring, _didu, _kash_,\n  { {0x2618028c, 0xb4af0183, 0xdb1a006c, 0x00000000}},  //   déo_, _करू_, _aitä,\n  { {0x6b8323e7, 0x7bc801bc, 0x21390023, 0x00000000}},  //   ping, _fidu, _mash_,\n  { {0x636b23e8, 0xdce9089f, 0x81e50044, 0x00000000}},  //   _sünn, _mleč, _নিন_,\n  { {0xa29f0164, 0xb81c0044, 0x00000000, 0x00000000}},  //   _खुल्, তিগত_,   ,\n  { {0x213901a3, 0x7bc80035, 0xe9190088, 0x00000000}},  //   _nash_, _zidu, _ході_,\n  { {0x2d8f0048, 0x00000000, 0x00000000, 0x00000000}},  //   inge_,   ,   ,\n  { {0x29030006, 0x00000000, 0x00000000, 0x00000000}},  //   ėjau_,   ,   ,\n  { {0xdce9012d, 0x41b602dc, 0x213923e9, 0x00000000}},  //   _aleč, есат, _bash_,\n  { {0xc7c80011, 0x67380243, 0x213900ab, 0x00000000}},  //   _rối_, _zavj, _cash_,\n  { {0x7f5c23ea, 0x75241068, 0x600a0cab, 0x00000000}},  // [5ca0] _porq, _ibiz, янам_,\n  { {0xe3b20025, 0x31690032, 0x395d0133, 0x00000000}},  //   _حرب_, akaz_, _lows_,\n  { {0xe8ac0201, 0xdce20209, 0x7bc80207, 0x00000000}},  //   _चर्च, skoč, _ridu,\n  { {0x644403b6, 0x7bc8006c, 0xafe600ed, 0x00000000}},  //   _krii, _sidu, _помл,\n  { {0x7bc8006c, 0x752423eb, 0x6aa80190, 0x00000000}},  //   _pidu, _mbiz, _sydf,\n  { {0xc7c8001d, 0x9f4004bd, 0xafdb06ec, 0x00000000}},  //   _tối_, rsió_, _krøn,\n  { {0x7bc80a5c, 0x9f4004bd, 0xf9c605c7, 0x00000000}},  //   _vidu, ssió_, нщин,\n  { {0x67380363, 0xdca6041f, 0x2d870010, 0x00000000}},  //   _savj, _заби, énet_,\n  { {0xdb1a021e, 0xb4af02fb, 0x7bc804cb, 0x00000000}},  //   _pitä, _करे_, _tidu,\n  { {0x261800f4, 0x752423ec, 0x7bdf004a, 0x00000000}},  //   téo_, _abiz, íque,\n  { {0x5694003b, 0x644423ed, 0xa91d007f, 0x00000000}},  //   тант, _arii, siža,\n  { {0xe4a723ee, 0xa91d0091, 0x644401c5, 0x00000000}},  //   ерго, ližn, _brii,\n  { {0xe7860184, 0x21390133, 0x00000000, 0x00000000}},  //   _пуко, _rash_,   ,\n  { {0x636b01f6, 0xafdb0737, 0x65b600b9, 0x00000000}},  //   _günl, _brøn, váhe,\n  { {0xb5a723ef, 0xa5d70025, 0xdcfb0059, 0x00000000}},  //   _прий, _كبير_, _smuč,\n  { {0x644405ad, 0xdce92066, 0xafdb0190, 0x00000000}},  //   _frii, _pleč, _drøn,\n  { {0xc05b0088, 0xaf0700ed, 0x5ee20044, 0x00000000}},  // [5cb0] чів_, ечек, _পয়ে,\n  { {0x44290b9a, 0xa91d0059, 0xdce90d0a, 0x00000000}},  //   _ipa_, jižn, _vleč,\n  { {0x21390065, 0xafdb02cc, 0x442901a3, 0x00000000}},  //   _tash_, _grøn, _hpa_,\n  { {0x753d0047, 0x44290093, 0x2d8f0197, 0x00000000}},  //   ndsz, _kpa_, unge_,\n  { {0xb4af013d, 0x442901a3, 0xc2f40044, 0x00000000}},  //   _करो_, _jpa_, _জাতি_,\n  { {0x996c00b9, 0x98ad002b, 0x6f1500b4, 0x00000000}},  //   měř_, jjeġ_, _uczc,\n  { {0x2d870211, 0x5338009b, 0x6995005e, 0x00000000}},  //   énes_, גנון_, крих,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x44290f91, 0x00000000, 0x00000000, 0x00000000}},  //   _npa_,   ,   ,\n  { {0x7c290207, 0x75240026, 0xe645005e, 0x00000000}},  //   _iper, _sbiz, веоп,\n  { {0x391501f9, 0x442904be, 0xa50a013b, 0x00000000}},  //   _амер, _apa_, мена_,\n  { {0x644423f0, 0x2009010a, 0x29030006, 0x00000000}},  //   _prii, krai_, ėjas_,\n  { {0x442900ca, 0xe72e00ed, 0x68e904cb, 0x00000000}},  //   _cpa_, _ке_, mbed,\n  { {0x20090006, 0x4429010f, 0x7c290009, 0x00000000}},  //   drai_, _dpa_, _mper,\n  { {0x44290020, 0x69cb09df, 0xcb120097, 0x00000000}},  //   _epa_, _kige, ילם_,\n  { {0x6444006c, 0x00000000, 0x00000000, 0x00000000}},  //   _trii,   ,   ,\n  { {0x69cb0032, 0x64440be4, 0x64a6003b, 0x00000000}},  // [5cc0] _mige, _urii, _јапа,\n  { {0x69cb0018, 0xafdb0056, 0xdee601ab, 0x00000000}},  //   _lige, _trøn, тожи,\n  { {0x7c291f55, 0x81dc0055, 0xd3570097, 0x00000000}},  //   _aper, _ঠিক_, _סיטי_,\n  { {0x69cb0020, 0xc7c80082, 0xafdb0190, 0x00000000}},  //   _nige, _hốt_, _krøl,\n  { {0x0ffa004b, 0x68e923f1, 0x00000000, 0x00000000}},  //   _تعجب_, dbed,   ,\n  { {0x752f0046, 0x68e9054e, 0x7c290022, 0x00000000}},  //   zecz, ebed, _dper,\n  { {0x69cb1ce1, 0x7c290145, 0xc7c80011, 0x00000000}},  //   _bige, _eper, _mốt_,\n  { {0x68e923f2, 0xd90e00a6, 0x583805bb, 0x00000000}},  //   gbed, زیت_, езия_,\n  { {0x69cb04cb, 0x36d402e9, 0xdb0123f3, 0x00000000}},  //   _dige, лопр, _chló,\n  { {0x69cb23f4, 0xdb1a1b0f, 0xc7c80011, 0x00000000}},  //   _eige, _litú, _nốt_,\n  { {0x752f0046, 0x68e90bc7, 0x69cb0253, 0x00000000}},  //   tecz, bbed, _fige,\n  { {0x79820046, 0x7c2923f5, 0x69cb0035, 0x00000000}},  //   _umow, _yper, _gige,\n  { {0x69c001ee, 0xc458007c, 0x94a8041f, 0x00000000}},  //   mmme, виях_, втра_,\n  { {0xd90e009c, 0x4429049a, 0xa5c7000c, 0x00000000}},  //   _ایک_, _vpa_, _bjóð,\n  { {0x44290145, 0x69cb23f6, 0x2d840190, 0x00000000}},  //   _wpa_, _yige, _omme_,\n  { {0x44290093, 0x2009086f, 0x0eeb007d, 0x00000000}},  //   _tpa_, trai_, टर्स_,\n  { {0x7ff40a4f, 0x442923f7, 0x909923f8, 0x00000000}},  // [5cd0] لسلا, _upa_, хват_,\n  { {0x637023f9, 0x68e9003b, 0x20090e46, 0x00000000}},  //   _täna, zbed, rrai_,\n  { {0x63700a3c, 0xf41f021e, 0x4fc4013b, 0x00000000}},  //   _känn, ltä_, рста,\n  { {0x637023fa, 0x7c290066, 0x20090026, 0x00000000}},  //   _jänn, _pper, prai_,\n  { {0x6370127c, 0x69cb23fb, 0xf41f021e, 0x00000000}},  //   _männ, _rige, ntä_,\n  { {0x69cb068f, 0xf41f021e, 0x2d840103, 0x00000000}},  //   _sige, itä_, _emme_,\n  { {0x69cb23fc, 0xdb030023, 0xdcfb0089, 0x00000000}},  //   _pige, lonë, _emuā,\n  { {0x64410089, 0xe9a900a2, 0xba22007e, 0x00000000}},  //   ālij, رگان_, ёдык,\n  { {0x68e923fd, 0xccf2009b, 0x9c640014, 0x00000000}},  //   rbed, _לכן_, _پهلو,\n  { {0x68e90c0c, 0xc2e90044, 0x69cb23fe, 0x00000000}},  //   sbed, কৃতি_, _wige,\n  { {0xcb68007a, 0x8f9c009b, 0x391506dd, 0x00000000}},  //   _جمله_, ויזי, _مواز,\n  { {0xc7c80011, 0x973c0521, 0xc98400ed, 0x00000000}},  //   _sốt_, roća, _кучи,\n  { {0xa5c7000c, 0x973c0091, 0x394f1a90, 0x00000000}},  //   _sjóð, moćn, _ings_,\n  { {0xdb1a008e, 0x79890116, 0x66e22180, 0x00000000}},  //   _sitú, liew, _лоша,\n  { {0x412a017f, 0xafdb0737, 0x679a0049, 0x00000000}},  //   ново_, _drøm, _אױסג,\n  { {0x79890036, 0x00e40014, 0x973c04eb, 0x00000000}},  //   niew, شتری, noćn,\n  { {0xc7c8001d, 0xafdb0146, 0x00000000, 0x00000000}},  // [5ce0] _tốt_, _frøm,   ,\n  { {0xe0df01aa, 0xdb03000c, 0x00000000, 0x00000000}},  //   _efò_, llnæ,   ,\n  { {0x69c01382, 0x9d46005e, 0xdb0300c4, 0x00000000}},  //   ymme, лежд, ponê,\n  { {0xdb031d81, 0x0cd20044, 0x00000000, 0x00000000}},  //   lonè, ার্ত,   ,\n  { {0x2d9e19bf, 0x79890168, 0x1af401e1, 0x00000000}},  //   _ítem_, diew, апля,\n  { {0x394f01d6, 0x00000000, 0x00000000, 0x00000000}},  //   _angs_,   ,   ,\n  { {0xbf100309, 0x2cad0133, 0x39a602dc, 0x00000000}},  //   ालीन_, _eyed_, лшив,\n  { {0xdd92024a, 0x6e930a4f, 0xf41f021e, 0x00000000}},  //   _اور_, _الفا, ytä_,\n  { {0xd6d00054, 0xa774017f, 0xdb0301aa, 0x00000000}},  //   يقة_, илич, konè,\n  { {0x25a92165, 0x1037009b, 0x61e200ca, 0x00000000}},  //   _skal_, נטים_, _čoln,\n  { {0xdb0300f6, 0x0f57009b, 0x00000000, 0x00000000}},  //   donè, איים_,   ,\n  { {0x1a9b00bd, 0xf41f021e, 0xafdb0146, 0x00000000}},  //   _איבע, ttä_, _drøj,\n  { {0x63700039, 0x69da0061, 0xf76f0014, 0x00000000}},  //   _vänn, _पंडी, زای_,\n  { {0xa66601fa, 0xdb030129, 0xd6cf0076, 0x00000000}},  //   _مطبو, gonè, _فقه_,\n  { {0xf41f0f3c, 0x637000b0, 0x5f1a0044, 0x00000000}},  //   stä_, _tänn, ড়াও_,\n  { {0x3f98002b, 0x65b6000c, 0x3981007f, 0x00000000}},  //   _ajru_, páha, tųsi_,\n  { {0x2ef500e2, 0xdb010861, 0xdb0300f6, 0x00000000}},  // [5cf0] изар, _sklí, bonè,\n  { {0x20071032, 0xdb030129, 0x3dcd0145, 0x00000000}},  //   čni_, conè, _siew_,\n  { {0x2cad01a3, 0x63a70065, 0xa7fd0010, 0x00000000}},  //   _syed_, mojn, gyűj,\n  { {0x656f23ff, 0x63a70065, 0x973c11af, 0x00000000}},  //   nkch, lojn, koćo,\n  { {0x3dcd0038, 0x79892400, 0xdca5025f, 0x00000000}},  //   _view_, view, јали,\n  { {0x63a70065, 0xfbd003ec, 0xab29013b, 0x00000000}},  //   nojn, سته_, тока_,\n  { {0x79891f4b, 0xdd9b008b, 0xc33400b3, 0x00000000}},  //   tiew, _зша_, מוס_,\n  { {0xa805003b, 0x7c3e0036, 0x63a70065, 0x00000000}},  //   азил, łpra, hojn,\n  { {0x63a703c4, 0x23a502fb, 0x79890007, 0x00000000}},  //   kojn, ओवाद, riew,\n  { {0x79890a77, 0x63a70065, 0x7c3b002d, 0x00000000}},  //   siew, jojn, _isur,\n  { {0x63a70065, 0x61e2016c, 0x7bc301f3, 0x00000000}},  //   dojn, _čolo, mmnu,\n  { {0xe5a60216, 0xdb030387, 0xd46a00ed, 0x00000000}},  //   рими, doné, виме_,\n  { {0x7d040051, 0x68fb2401, 0x3775007e, 0x00000000}},  //   óisi, maud, _выйс,\n  { {0x63a72402, 0x27ff014a, 0xafdb0030, 0x00000000}},  //   gojn, msun_, _trøj,\n  { {0x0cb20316, 0xdb1a008d, 0x443b05f0, 0x00000000}},  //   _जर्म, _shtë, _esq_,\n  { {0x00e600c0, 0x68fb010a, 0xdb032403, 0x00000000}},  //   ржан, naud, sonè,\n  { {0x63a70627, 0x27ff01e5, 0x7c3b00e5, 0x00000000}},  // [5d00] bojn, nsun_, _nsur,\n  { {0x7d1b00d6, 0xc3fb00b3, 0xfe720025, 0x00000000}},  //   _acus, _שליש, يدا_,\n  { {0x7c3b023a, 0x68fb00b0, 0x1fb50147, 0x00000000}},  //   _asur, kaud, сстр,\n  { {0x61460265, 0xe29b00b6, 0x27ff115d, 0x00000000}},  //   _тема, _ישיר, ksun_,\n  { {0x68fb1f2e, 0x442200ca, 0x20da00ca, 0x00000000}},  //   daud, ntk_, ršič_,\n  { {0xc5eb0044, 0x7d1b2404, 0x00000000, 0x00000000}},  //   _কিনা_, _ecus,   ,\n  { {0x6b8a01d6, 0x3f8f009d, 0xa3dd0061, 0x00000000}},  //   rifg, ègue_, _तून_,\n  { {0xada3008b, 0x63a70065, 0x7d1b0051, 0x00000000}},  //   _дасл, zojn, _gcus,\n  { {0xa3b60164, 0x4973111f, 0x2000001a, 0x00000000}},  //   जता_, ільс, nsii_,\n  { {0xe56800bd, 0x6d40022b, 0x7763049a, 0x00000000}},  //   _אַ_, _hama, _conx,\n  { {0x6d40006a, 0x2d9e028c, 0x7c22029d, 0x00000000}},  //   _kama, _êtes_, ltor,\n  { {0x6d402405, 0x6d422406, 0x68fb008e, 0x00000000}},  //   _jama, ndoa, caud,\n  { {0x6d4003b0, 0x7c220292, 0x63a7008d, 0x00000000}},  //   _mama, ntor, tojn,\n  { {0x6d401312, 0x7c2208e1, 0xd6d00076, 0x00000000}},  //   _lama, itor, _عقب_,\n  { {0x63a71e8d, 0x60cc006b, 0x92680256, 0x00000000}},  //   rojn, ənmə, арта_,\n  { {0x6d400811, 0x63a70065, 0x44f50184, 0x00000000}},  //   _nama, sojn, _упис,\n  { {0xdefb0057, 0x7c220065, 0xdfd10025, 0x00000000}},  // [5d10] вые_, jtor, سيا_,\n  { {0x7d1b0207, 0xdb032407, 0xd9d70044, 0x00000000}},  //   _scus, poné, _সবসম,\n  { {0x6d40006b, 0x7c220951, 0x2ef8004a, 0x00000000}},  //   _bama, etor, _derf_,\n  { {0x6d40049a, 0x29060020, 0xbd180088, 0x00000000}},  //   _cama, _ndoa_, иції_,\n  { {0x8d74026c, 0x8c4501fb, 0x92d90055, 0x00000000}},  //   غاما, селе, ারী_,\n  { {0xa03a0049, 0x6d400f2f, 0xdf47007e, 0x00000000}},  //   _געשפ, _eama, _тэмп,\n  { {0x7c220d60, 0xf1bf001d, 0x6d40002d, 0x00000000}},  //   ator, _khá_, _fama,\n  { {0x6d40009f, 0x27ff0052, 0x7c3b004a, 0x00000000}},  //   _gama, tsun_, _tsur,\n  { {0x68fb11e8, 0x67550025, 0x00000000, 0x00000000}},  //   raud, مخدر,   ,\n  { {0x6d402408, 0x8aa701fb, 0xfbd00188, 0x00000000}},  //   _zama, _кред, _قتل_,\n  { {0x6d40163c, 0x4439084d, 0x27ff2409, 0x00000000}},  //   _yama, ews_, ssun_,\n  { {0xf1bf0011, 0x29020010, 0x6d4005aa, 0x00000000}},  //   _nhá_, ókat_, _xama,\n  { {0xc8da0049, 0x65b60010, 0x63be240a, 0x00000000}},  //   _עקסט, sáho, _phpn,\n  { {0x43750264, 0x395f240b, 0x386d006b, 0x00000000}},  //   оуст, ljus_, myer_,\n  { {0x386d0023, 0x442200ca, 0xf6750049, 0x00000000}},  //   lyer_, stk_, _לײַט_,\n  { {0x659301fc, 0xf1bf0181, 0x44220093, 0x00000000}},  //   _нају, _chá_, ptk_,\n  { {0x6d400127, 0xf1bf002a, 0x75d3001a, 0x00000000}},  // [5d20] _rama, _dhá_, _văzu,\n  { {0x395f0004, 0x65bd0353, 0x7c2200ca, 0x00000000}},  //   hjus_, réhe, vtor,\n  { {0x6d400811, 0x63700073, 0x386d0065, 0x00000000}},  //   _pama, _länk, hyer_,\n  { {0x7c22240c, 0x2ef80007, 0x68f90009, 0x00000000}},  //   ttor, _werf_, _newd,\n  { {0x0b8a064b, 0xdb0101ca, 0x6d40001a, 0x00000000}},  //   лски_, _sklá, _vama,\n  { {0x6d400020, 0x68e20026, 0x386d0058, 0x00000000}},  //   _wama, _sfod, dyer_,\n  { {0x5a340088, 0xba2a0014, 0x27e60203, 0x00000000}},  //   інит, استم_, _ston_,\n  { {0x7c220129, 0x637004ce, 0x8d9601b7, 0x00000000}},  //   ptor, _bänk, _الرش,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x8b6506ea, 0xdce00166, 0x7d04000c, 0x00000000}},  //   _والم, _momč, ðisf,\n  { {0x4a9a007e, 0xdb0101dc, 0x636b006b, 0x00000000}},  //   _стаў_, _uklá, _münt,\n  { {0x68e00061, 0x7afa0039, 0xd5b81fea, 0x00000000}},  //   qcmd, _hett, йся_,\n  { {0x7afa0010, 0x44390376, 0x69da0020, 0x00000000}},  //   _kett, uws_, _hute,\n  { {0x7afa22d7, 0x69da04ff, 0x3255005e, 0x00000000}},  //   _jett, _kute, овгр,\n  { {0x7afa0e8d, 0xf1bf001d, 0x69da02c8, 0x00000000}},  //   _mett, _phá_, _jute,\n  { {0x7afa0198, 0x92d90055, 0x69da01c5, 0x00000000}},  //   _lett, ারে_, _mute,\n  { {0x69da0c01, 0x657d002a, 0x7ff70025, 0x00000000}},  // [5d30] _lute, mhsh, إسرا,\n  { {0x7afa0292, 0x644d022b, 0x69da112b, 0x00000000}},  //   _nett, _irai, _oute,\n  { {0x69da0006, 0x2eff009d, 0xa91d0006, 0x00000000}},  //   _nute, _œufs_, siži,\n  { {0x3f8a1335, 0x644d0036, 0xd5b90089, 0x00000000}},  //   _embu_, _krai, ktām_,\n  { {0x69da0602, 0x7afa0038, 0x752d1d7c, 0x00000000}},  //   _aute, _bett, _mbaz,\n  { {0x7afa028c, 0x69da0bd7, 0x661d0046, 0x00000000}},  //   _cett, _bute, ński,\n  { {0x7afa067e, 0x63700a3c, 0x2e48005e, 0x00000000}},  //   _dett, _sänk, _лято_,\n  { {0x69da022b, 0x644d022b, 0x636b010f, 0x00000000}},  //   _dute, _orai, _küns,\n  { {0x7d09145d, 0xb90100e8, 0x657d0065, 0x00000000}},  //   _ides, _दल_, dhsh,\n  { {0x2d8f0018, 0x69da240d, 0x7afa00ab, 0x00000000}},  //   lige_, _fute, _gett,\n  { {0x69da001f, 0x644d0051, 0x386d1089, 0x00000000}},  //   _gute, _arai, syer_,\n  { {0x63700073, 0x2d8f001f, 0x7afa00b5, 0x00000000}},  //   _tänk, nige_, _zett,\n  { {0x69da022b, 0x644d240e, 0x798b0009, 0x00000000}},  //   _zute, _crai, _imgw,\n  { {0x752d002d, 0x7bdb0325, 0x644d00ab, 0x00000000}},  //   _ebaz, _muuu, _drai,\n  { {0x644d0c54, 0x27ed02ae, 0x7d0900b9, 0x00000000}},  //   _erai, lpen_, _odes,\n  { {0x644d028c, 0x7d090065, 0x2d8f01d9, 0x00000000}},  //   _frai, _ndes, jige_,\n  { {0x42d60ee0, 0x644d240f, 0x27ed0288, 0x00000000}},  // [5d40] _міну, _grai, npen_,\n  { {0x7d092410, 0xdb030211, 0x27ed2411, 0x00000000}},  //   _ades, foní, ipen_,\n  { {0x7afa02cc, 0xee3a02e9, 0x2d8f0e93, 0x00000000}},  //   _rett, рне_, fige_,\n  { {0x7afa0198, 0x69da2412, 0x7bc10697, 0x00000000}},  //   _sett, _rute, _ahlu,\n  { {0x69da010a, 0x636b1582, 0x27ed00b5, 0x00000000}},  //   _sute, _güns, jpen_,\n  { {0x69da12e9, 0x7bc12413, 0x09b40183, 0x00000000}},  //   _pute, _chlu, ुष्य,\n  { {0x7e2302a8, 0x7afa0010, 0x27ed00b5, 0x00000000}},  //   _одрж, _vett, epen_,\n  { {0x7afa001f, 0x63701ff7, 0xb4db00f6, 0x00000000}},  //   _wett, _däni, gdàl,\n  { {0x7afa2414, 0xfc032415, 0xbdc900a1, 0x00000000}},  //   _tett, _опто, _اگلے_,\n  { {0xd6da2416, 0x69da0207, 0xdb1a0181, 0x00000000}},  //   шти_, _tute, _vitó,\n  { {0x657d008d, 0x644d2417, 0x69da003c, 0x00000000}},  //   thsh, _srai, _uute,\n  { {0x644d0181, 0x758b007c, 0x7bdb0022, 0x00000000}},  //   _prai, рсов_, _yuuu,\n  { {0xdb03004a, 0x00000000, 0x00000000, 0x00000000}},  //   zoní,   ,   ,\n  { {0x644d028c, 0xe73700ed, 0x2d8f095d, 0x00000000}},  //   _vrai, _меч_, zige_,\n  { {0x644d0016, 0xdce9012d, 0x44320026, 0x00000000}},  //   _wrai, _uleć, _epy_,\n  { {0x59ca0204, 0xab5d0036, 0xa91d0006, 0x00000000}},  //   ागिर, _duży, sižv,\n  { {0x644d1f0f, 0x2d8f2418, 0x6441001e, 0x00000000}},  // [5d50] _urai, vige_, ālis,\n  { {0x2d8f0007, 0xdb030861, 0x9f49000c, 0x00000000}},  //   wige_, toní, gsað_,\n  { {0x2d8f1440, 0x636b010f, 0x27ed002d, 0x00000000}},  //   tige_, _wüns, zpen_,\n  { {0xb23a007b, 0xf5380049, 0x27ed0c7a, 0x00000000}},  //   _פערז, ַטור_, ypen_,\n  { {0x2d8f2419, 0x7d090065, 0x515a009b, 0x00000000}},  //   rige_, _vdes, _הכרו,\n  { {0x2d8f0240, 0xdb030919, 0x69c213d2, 0x00000000}},  //   sige_, poní, _ahoe,\n  { {0xef230089, 0x69c200d9, 0x00000000, 0x00000000}},  //   _ceļš_, _bhoe,   ,\n  { {0x7d090496, 0x9d1801fc, 0x69c20016, 0x00000000}},  //   _udes, _мост_, _choe,\n  { {0x2d8d1449, 0x27ed0032, 0xafdb0056, 0x00000000}},  //   _imee_, upen_, _grøt,\n  { {0x27ed241a, 0x63700039, 0x06850641, 0x00000000}},  //   rpen_, _hänv, згон,\n  { {0x27ed002d, 0x3ce00b54, 0x29d10091, 0x00000000}},  //   spen_, žive_, _ušao_,\n  { {0x7aba009b, 0x24820009, 0x69c20168, 0x00000000}},  //   _הצעו, tzkm_, _ghoe,\n  { {0x69c9224a, 0x7d1d000c, 0x2d9f00e7, 0x00000000}},  //   mmee, _össu, _mjue_,\n  { {0x3218241b, 0xe820007d, 0x00000000, 0x00000000}},  //   tury_, _ममता_,   ,\n  { {0xaacb007d, 0x00000000, 0x00000000, 0x00000000}},  //   ाधिक,   ,   ,\n  { {0xe0da005e, 0x69c901d6, 0xe2970b81, 0x00000000}},  //   сва_, nmee, час_,\n  { {0x2167019d, 0x33382077, 0x00000000, 0x00000000}},  // [5d60] чити_, perx_,   ,\n  { {0x2d9f00e7, 0x00000000, 0x00000000, 0x00000000}},  //   _ajue_,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x69c900d9, 0x2d9f00e5, 0x00000000, 0x00000000}},  //   jmee, _cjue_,   ,\n  { {0x69c2005b, 0x00000000, 0x00000000, 0x00000000}},  //   _rhoe,   ,   ,\n  { {0x2b4514c7, 0xdce0001e, 0x69c200ab, 0x00000000}},  //   _calc_, _domā, _shoe,\n  { {0x7c2d00fa, 0xafdb0190, 0x00000000, 0x00000000}},  //   çarr, _frøs,   ,\n  { {0xd90d00e9, 0x69c912e8, 0x7c2d002b, 0x00000000}},  //   لیم_, gmee, ħarr,\n  { {0xd823003b, 0xec7a0088, 0x00000000, 0x00000000}},  //   едњи, _упа_,   ,\n  { {0x25a00f65, 0x69c20a6b, 0x7d02241c, 0x00000000}},  //   _ajil_, _whoe, laos,\n  { {0x69c901d6, 0x00000000, 0x00000000, 0x00000000}},  //   bmee,   ,   ,\n  { {0x7d020020, 0x3ce60027, 0x21220082, 0x00000000}},  //   naos, ncov_, _nckh_,\n  { {0x94ab0ae0, 0x63ae013e, 0x00000000, 0x00000000}},  //   стна_, fobn,   ,\n  { {0x63ae0c29, 0x7bdf06f4, 0x3946241d, 0x00000000}},  //   gobn, íqui, _haos_,\n  { {0x39460390, 0x82a4098c, 0xf64f00a1, 0x00000000}},  //   _kaos_, еште, _مئي_,\n  { {0x673a241e, 0xb5a4008b, 0xdb0a0039, 0x00000000}},  //   letj, _прый, llfä,\n  { {0x661a241f, 0xa06800ed, 0x8c3d006b, 0x00000000}},  // [5d70] lutk, паѓа_, _oxşa,\n  { {0x3946160f, 0xdb0306b8, 0x673a1aef, 0x00000000}},  //   _laos_, koná, netj,\n  { {0x661a00ee, 0xb4bd006e, 0x00000000, 0x00000000}},  //   nutk, _अरु_,   ,\n  { {0x8c3d006b, 0x9f490051, 0xac95007c, 0x00000000}},  //   _axşa, mpaí_, маеш,\n  { {0x673a2420, 0xcb6900ec, 0xbb4516c4, 0x00000000}},  //   ketj, жале_, делк,\n  { {0x673a00ca, 0x661a01a3, 0x65bd015f, 0x00000000}},  //   jetj, kutk, kého,\n  { {0x673a2421, 0x69c9006c, 0x661a003f, 0x00000000}},  //   detj, tmee, jutk,\n  { {0xeeeb00ad, 0x637000b0, 0x2d9f00e7, 0x00000000}},  //   _động_, _hänt, _ujue_,\n  { {0xfc3001fa, 0x69c90277, 0x799b0007, 0x00000000}},  //   _محل_, rmee, rnuw,\n  { {0x69c9006c, 0xeaf80014, 0x37890088, 0x00000000}},  //   smee, _فرمت_, ібно_,\n  { {0xe5a6012b, 0xf1bf0061, 0x637000b0, 0x00000000}},  //   дини, ्षान, _mänt,\n  { {0x2d9d2422, 0x201b0023, 0x6abe01a2, 0x00000000}},  //   nnwe_, kuqi_, üpfe,\n  { {0x673a0637, 0xc3270044, 0x186900e2, 0x00000000}},  //   betj, য়নি_, _фали_,\n  { {0x661a10ed, 0x81e50044, 0x291f0032, 0x00000000}},  //   butk, _নিজ_, lgua_,\n  { {0x63ae047c, 0x232702dc, 0x00000000, 0x00000000}},  //   robn, ьори_,   ,\n  { {0x291f081d, 0x00000000, 0x00000000, 0x00000000}},  //   ngua_,   ,   ,\n  { {0x291f000a, 0x3ce60142, 0x6fd80316, 0x00000000}},  // [5d80] igua_, vcov_, _भूखं,\n  { {0x2be1006e, 0x00000000, 0x00000000, 0x00000000}},  //   _पढ़ा,   ,   ,\n  { {0xdb1a0010, 0x7d020c43, 0x67230085, 0x00000000}},  //   _kitö, taos, _mcnj,\n  { {0x6d910161, 0xdb030010, 0x00000000, 0x00000000}},  //   sťan, voná,   ,\n  { {0x67230645, 0x7d0200b0, 0xdd8f006d, 0x00000000}},  //   _ocnj, raos, جون_,\n  { {0x3ce60d0a, 0x39460022, 0x6370006c, 0x00000000}},  //   scov_, _saos_, _tänu,\n  { {0x63700039, 0x673a0059, 0x7d0200e0, 0x00000000}},  //   _häns, vetj, paos,\n  { {0xd910007a, 0x63700039, 0xdb031c3e, 0x00000000}},  //   ایش_, _käns, roná,\n  { {0xb4bd0309, 0x673a0065, 0x00000000, 0x00000000}},  //   _अरे_, tetj,   ,\n  { {0x7d000073, 0x661a00b0, 0x63700039, 0x00000000}},  //   _hems, tutk, _mäns,\n  { {0x637009f0, 0x39462423, 0x7d00000c, 0x00000000}},  //   _läns, _taos_, _kems,\n  { {0x673a2424, 0x661a2425, 0x00000000, 0x00000000}},  //   setj, rutk,   ,\n  { {0x7d0000fa, 0x661a08f8, 0x00000000, 0x00000000}},  //   _mems, sutk,   ,\n  { {0x661a2426, 0xf77200a1, 0x7d000023, 0x00000000}},  //   putk, _جاؤ_, _lems,\n  { {0xd848001d, 0x6595008b, 0x64442427, 0x00000000}},  //   _họ_, _паку, _esii,\n  { {0x29040119, 0x200f00c4, 0x7d000232, 0x00000000}},  //   nama_, ágio_, _nems,\n  { {0x03c700ed, 0x6ab90044, 0x00000000, 0x00000000}},  // [5d90] _осом, েখযো,   ,\n  { {0x29040020, 0x753d0010, 0xcebb003b, 0x00000000}},  //   hama_, lesz, оље_,\n  { {0x2904000b, 0x63700073, 0xd8480082, 0x00000000}},  //   kama_, _vänt, _lọ_,\n  { {0x29d1004f, 0x29040213, 0x3eb80c7b, 0x00000000}},  //   _však_, jama_, _dyrt_,\n  { {0x201b006b, 0xed580088, 0x7d001a92, 0x00000000}},  //   quqi_, ьої_, _dems,\n  { {0x7d0000d9, 0x44290145, 0x00000000, 0x00000000}},  //   _eems, _mqa_,   ,\n  { {0x628701d5, 0x2d8700f4, 0x7d0000eb, 0x00000000}},  //   nzjo, ènes_, _fems,\n  { {0x29040091, 0xd8480082, 0x291f00e7, 0x00000000}},  //   gama_, _bọ_, ugua_,\n  { {0xb4ae0067, 0xc7951001, 0x753d115b, 0x00000000}},  //   _कडे_, ерны, desz,\n  { {0x6d4b02e7, 0x6d490016, 0x7d000387, 0x00000000}},  //   ldga, _haea, _zems,\n  { {0x290418a7, 0x7de50006, 0x00000000, 0x00000000}},  //   bama_, _mėso,   ,\n  { {0xc32900b6, 0x29040119, 0x753d1297, 0x00000000}},  //   _לו_, cama_, gesz,\n  { {0x7c2b0129, 0x200f0285, 0x6d4900e0, 0x00000000}},  //   ntgr, ágil_, _maea,\n  { {0x68e9008e, 0x6b830011, 0x76430022, 0x00000000}},  //   lced, nhng, _tsny,\n  { {0x69d900e7, 0x753d0010, 0x069400a1, 0x00000000}},  //   _kiwe, besz, _لاٹھ,\n  { {0x68e91f5b, 0x69d900e7, 0x4fea00e2, 0x00000000}},  //   nced, _jiwe, зман_,\n  { {0x7d000c4c, 0x644400e7, 0x69d90146, 0x00000000}},  // [5da0] _rems, _usii, _miwe,\n  { {0x29040a6e, 0x63700039, 0x7d00000c, 0x00000000}},  //   zama_, _väns, _sems,\n  { {0x29040453, 0x200904cb, 0x27760049, 0x00000000}},  //   yama_, asai_, עגען_,\n  { {0x69d92428, 0x2ac600b9, 0xfce6007c, 0x00000000}},  //   _niwe, _líbí_, ходо,\n  { {0x29040091, 0x4f3400a1, 0x320a0c2d, 0x00000000}},  //   vama_, _لڑائ, lsby_,\n  { {0x753d0036, 0x290400f0, 0x6d491e59, 0x00000000}},  //   zesz, wama_, _eaea,\n  { {0x29041be1, 0x3ebe009f, 0x81e20055, 0x00000000}},  //   tama_, _átt_, নীর_,\n  { {0x6d490016, 0xb4db00f6, 0x00000000, 0x00000000}},  //   _gaea, ldàv,   ,\n  { {0x62870f68, 0x69d9018e, 0x753d0010, 0x00000000}},  //   zzjo, _diwe, vesz,\n  { {0x2904006a, 0x6d620107, 0x69d901a2, 0x00000000}},  //   sama_, štač, _eiwe,\n  { {0x29042429, 0x753d0010, 0x00000000, 0x00000000}},  //   pama_, tesz,   ,\n  { {0x442b001c, 0x68e90207, 0x7bda023a, 0x00000000}},  //   ttc_, cced, _hitu,\n  { {0x753d0047, 0x7bda242a, 0x321800f4, 0x00000000}},  //   resz, _kitu, erry_,\n  { {0x442b01c5, 0x644f0089, 0x69d900e7, 0x00000000}},  //   rtc_, rvci, _ziwe,\n  { {0x7bda0bd5, 0x320a00f8, 0x4789007e, 0x00000000}},  //   _mitu, gsby_, _ўсім_,\n  { {0xb6bb00b6, 0x61d80783, 0x05770379, 0x00000000}},  //   _מצוי, емся_, _ساعد,\n  { {0x7c2b0c3f, 0x2009007f, 0x00000000, 0x00000000}},  // [5db0] xtgr, usai_,   ,\n  { {0xa309026c, 0x2009010a, 0x7bda002d, 0x00000000}},  //   _کرکے_, rsai_, _nitu,\n  { {0x20090232, 0xe71700b3, 0xcfa400e2, 0x00000000}},  //   ssai_, תחבר_, ушти,\n  { {0x5c7500c0, 0x7c2b0635, 0x7bda0bb2, 0x00000000}},  //   клет, ttgr, _aitu,\n  { {0x8c450057, 0x7bda011c, 0x6d4b0116, 0x00000000}},  //   теле, _bitu, rdga,\n  { {0x7bda0dec, 0x9f94010f, 0x69d90020, 0x00000000}},  //   _citu, mäß_, _siwe,\n  { {0x7bda0756, 0x7c2b0129, 0x3da7008b, 0x00000000}},  //   _ditu, stgr, _зраб,\n  { {0x7bda242b, 0x00000000, 0x00000000, 0x00000000}},  //   _eitu,   ,   ,\n  { {0x7bda242c, 0xf7710137, 0xdb030961, 0x00000000}},  //   _fitu, لاد_, tonä,\n  { {0x7bda188a, 0xd5b90089, 0x1a6500a1, 0x00000000}},  //   _gitu, ktās_, _لیتی_,\n  { {0xcfe80044, 0xab840783, 0x6721242d, 0x00000000}},  //   _পিছন, _сутк, rglj,\n  { {0xa3e602fb, 0x7bda022b, 0x7bc80065, 0x00000000}},  //   _बंद_, _zitu, _zhdu,\n  { {0xe81803d7, 0x394d0a74, 0x00000000, 0x00000000}},  //   _दिया_, mdes_,   ,\n  { {0xc88301f6, 0x394d1a3a, 0x97240076, 0x00000000}},  //   ığı_, ldes_, _مفهو,\n  { {0x69dc0010, 0x00000000, 0x00000000, 0x00000000}},  //   _éret,   ,   ,\n  { {0x320a00f8, 0x00000000, 0x00000000, 0x00000000}},  //   rsby_,   ,   ,\n  { {0x394d0089, 0xdb1a00b0, 0xd0070aed, 0x00000000}},  // [5dc0] ides_, _yhtä, кете_,\n  { {0xef1700ed, 0xd5b90089, 0x13a80014, 0x00000000}},  //   кму_, stāt_, _سنجی_,\n  { {0x7bda0b25, 0x394d0022, 0x00000000, 0x00000000}},  //   _ritu, kdes_,   ,\n  { {0x6b81001f, 0x394d242e, 0xdb0a0056, 0x00000000}},  //   _allg, jdes_, llfø,\n  { {0x3d07001c, 0x7bda00b0, 0x394d0039, 0x00000000}},  //   हणजे_, _pitu, ddes_,\n  { {0xdee6012b, 0x394d01c5, 0x00000000, 0x00000000}},  //   _јови, edes_,   ,\n  { {0x7bda242f, 0x79a60893, 0x394d0007, 0x00000000}},  //   _vitu, крие, fdes_,\n  { {0x2902000c, 0x394d04d1, 0x00000000, 0x00000000}},  //   úka_, gdes_,   ,\n  { {0xebe601fb, 0xa3b20164, 0x57b40478, 0x00000000}},  //   _розп, टका_, лбит,\n  { {0x394d0129, 0x00000000, 0x00000000, 0x00000000}},  //   ades_,   ,   ,\n  { {0xf53f0039, 0x6ad00044, 0xb763007e, 0x00000000}},  //   teå_, _স্রো, ртый,\n  { {0xceb300b6, 0xd946012b, 0x9f420023, 0x00000000}},  //   יית_, _једи, _bukë_,\n  { {0x48130088, 0x64560133, 0x89d70014, 0x00000000}},  //   _вміс, _cryi, _شوهر_,\n  { {0x64560133, 0x00000000, 0x00000000, 0x00000000}},  //   _dryi,   ,   ,\n  { {0xdcfb0119, 0x79820173, 0xd5b90089, 0x00000000}},  //   _sluč, _klow, utās_,\n  { {0xc6d90049, 0xd5b90089, 0x00000000, 0x00000000}},  //   _אַפר, rtās_,   ,\n  { {0xd5b90089, 0x2d8600d9, 0x636b01a2, 0x00000000}},  // [5dd0] stās_, dhoe_, _münz,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x394d0030, 0x645a0089, 0x79820146, 0x00000000}},  //   ydes_, ātie, _olow,\n  { {0x63b50107, 0xd25600a0, 0x96240044, 0x00000000}},  //   lozn, _עשרה_, _বনাম_,\n  { {0xe4ff00b9, 0x394d00f8, 0x00000000, 0x00000000}},  //   _štěň, vdes_,   ,\n  { {0x447c0049, 0x399a0089, 0x1a2910dc, 0x00000000}},  //   ונדע, zīst_, ежки_,\n  { {0x61e500b0, 0x79820339, 0x00000000, 0x00000000}},  //   _juhl, _blow,   ,\n  { {0x394d2430, 0x2b4c0009, 0x63b50010, 0x00000000}},  //   udes_, _eadc_, hozn,\n  { {0x63b50010, 0x66e50930, 0x00000000, 0x00000000}},  //   kozn, лопа,   ,\n  { {0x394d0b36, 0x7c3b2431, 0x79820022, 0x00000000}},  //   sdes_, _ipur, _elow,\n  { {0xf771007a, 0x63b5037e, 0x798200ab, 0x00000000}},  //   لاگ_, dozn, _flow,\n  { {0x78a4037a, 0x7a7a0049, 0xda7a0049, 0x00000000}},  //   _žive, _ארעס, _אנער,\n  { {0x68fb04d4, 0x1b060044, 0x81ac0044, 0x00000000}},  //   mbud, _রাতে_, গতম_,\n  { {0x68fb0637, 0x289a0049, 0x636b014a, 0x00000000}},  //   lbud, _אינא, _küny,\n  { {0xafdb00ea, 0xdb0a0325, 0x00000000, 0x00000000}},  //   _esøk, nofá,   ,\n  { {0x645600ab, 0x68fb0093, 0x7c3b00e0, 0x00000000}},  //   _tryi, nbud, _opur,\n  { {0xefca007c, 0x7dda00b9, 0x7d04000c, 0x00000000}},  // [5de0] елал_, _důsl, ðism,\n  { {0x44220390, 0x7dda00b9, 0x7dec013f, 0x00000000}},  //   muk_, _půso, _ağsa,\n  { {0x442215df, 0x7c3b1983, 0x7e56007e, 0x00000000}},  //   luk_, _apur, ытац,\n  { {0xac0a007c, 0x2b4c00e7, 0x3f830066, 0x00000000}},  //   енда_, _sadc_, _elju_,\n  { {0xdca3003b, 0x44222432, 0x68fb0059, 0x00000000}},  //   баци, nuk_, dbud,\n  { {0xdee3005e, 0x636b005a, 0x0eba0641, 0x00000000}},  //   _гори, _büny, _зубы_,\n  { {0xb4db0129, 0x7ed50088, 0x7c3b2433, 0x00000000}},  //   ndàr, _вітч, _epur,\n  { {0x636b038c, 0x44220357, 0xd7fa003b, 0x00000000}},  //   _düny, kuk_, нуо_,\n  { {0x44221211, 0xc1730104, 0xba180014, 0x00000000}},  //   juk_, מחה_, ريکا_,\n  { {0x44220149, 0x9f400b32, 0x3f9a003f, 0x00000000}},  //   duk_, mpió_, nipu_,\n  { {0x63b5018b, 0x06d70055, 0x3ce901d9, 0x00000000}},  //   vozn, _দ্বি, žave_,\n  { {0x61e50279, 0x44220062, 0x6d420032, 0x00000000}},  //   _ruhl, fuk_, neoa,\n  { {0xa877031d, 0x44222434, 0x7c220052, 0x00000000}},  //   _محور_, guk_, nuor,\n  { {0xb8650167, 0x69cb0065, 0x69c02435, 0x00000000}},  //   _خامو, _zhge, llme,\n  { {0x63b511b7, 0xd5bb2436, 0x27e600e5, 0x00000000}},  //   rozn, _пси_, _huon_,\n  { {0x44220085, 0xeeeb0011, 0x50f50893, 0x00000000}},  //   buk_, _đống_, рзат,\n  { {0x63b50119, 0x44222437, 0x6d420347, 0x00000000}},  // [5df0] pozn, cuk_, deoa,\n  { {0x27e60011, 0x68fb1091, 0x2d840026, 0x00000000}},  //   _muon_, zbud, _alme_,\n  { {0x4fc41001, 0x68fb0016, 0x7c3b124c, 0x00000000}},  //   сста, ybud, _spur,\n  { {0x7147004c, 0x7c220026, 0x69c02438, 0x00000000}},  //   _схож, fuor, jlme,\n  { {0x27e62439, 0x7c220026, 0xab29243a, 0x00000000}},  //   _nuon_, guor, вола_,\n  { {0xaa15025f, 0x447c0049, 0xab62005d, 0x00000000}},  //   афиј, ענגע, şünm,\n  { {0x4422002d, 0x68fb1a85, 0x25a9004a, 0x00000000}},  //   zuk_, tbud, _ojal_,\n  { {0x27e60207, 0x4422049d, 0xfaf80089, 0x00000000}},  //   _buon_, yuk_, _vnīa_,\n  { {0x778500da, 0x4b270084, 0x7d0b011c, 0x00000000}},  //   илиз, _معاف, mags,\n  { {0x7d0b009f, 0x6c840054, 0x78a40209, 0x00000000}},  //   lags, _الكم, _živc,\n  { {0x39150167, 0x44220093, 0xc796009e, 0x00000000}},  //   _نواز, wuk_, جھنا_,\n  { {0x44220149, 0x7d0b011c, 0x38600091, 0x00000000}},  //   tuk_, nags, _šire_,\n  { {0x25a90023, 0x660b007f, 0x00000000, 0x00000000}},  //   _djal_, _šokė,   ,\n  { {0x68e20305, 0x4422020c, 0x7d0b000c, 0x00000000}},  //   _zgod, ruk_, hags,\n  { {0xd19601f9, 0x4422020c, 0x25a90065, 0x00000000}},  //   ашањ, suk_, _fjal_,\n  { {0x44220169, 0x394f01d6, 0x27e600e0, 0x00000000}},  //   puk_, _jags_, _yuon_,\n  { {0x55bb00b6, 0x394f00d4, 0x7d0b141a, 0x00000000}},  // [5e00] _במקו, _mags_, dags,\n  { {0x7c2200b0, 0xa3ba0647, 0x00000000, 0x00000000}},  //   vuor, _جابر_,   ,\n  { {0xcd060fa0, 0xdcfb0066, 0x00000000, 0x00000000}},  //   ачли, _xjuħ,   ,\n  { {0x1636007b, 0x3dcd0784, 0x7c221449, 0x00000000}},  //   ינער_, _chew_, tuor,\n  { {0xcb6a00ed, 0x6c54026b, 0xdca6243b, 0x00000000}},  //   каде_, склу, шади,\n  { {0xe45701ce, 0x6d420e3a, 0x7c22002d, 0x00000000}},  //   יינט_, seoa, ruor,\n  { {0x80db0055, 0xbea30545, 0x7d0b011c, 0x00000000}},  //   যুদ্, _дарк, bags,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xab660a30, 0x394f03ed, 0xad1b0104, 0x00000000}},  //   _квал, _dags_, _שומר,\n  { {0x1037009b, 0x27e60082, 0x00000000, 0x00000000}},  //   סטים_, _vuon_,   ,\n  { {0x9a6a00f9, 0x394f243c, 0x0f57009b, 0x00000000}},  //   _جمال_, _fags_, ביים_,\n  { {0xd5b801fb, 0x68e20627, 0x27e600b0, 0x00000000}},  //   ися_, _ugod, _tuon_,\n  { {0x0f110044, 0x28d2007d, 0x00000000, 0x00000000}},  //   স্টঃ_, देशि,   ,\n  { {0xf7430153, 0x394401c5, 0x00000000, 0x00000000}},  //   _мечо, lems_,   ,\n  { {0xdce000b9, 0x56930816, 0x41e70088, 0x00000000}},  //   _pomě, _машт, ріга,\n  { {0x3f980697, 0x3944007f, 0x26db009b, 0x00000000}},  //   _amru_, nems_, _בקומ,\n  { {0x752d006b, 0xc31c0044, 0x0f1501e1, 0x00000000}},  // [5e10] _icaz, দ্ধি_, ймаю,\n  { {0x7d1d0047, 0xeeeb00ad, 0x644d0058, 0x00000000}},  //   _össz, _đồng_, _isai,\n  { {0x7d0b0a5d, 0xdfd8005e, 0xe3b00257, 0x00000000}},  //   tags, рът_, _تري_,\n  { {0xb6d90049, 0x644d0022, 0x8d740379, 0x00000000}},  //   אַנט, _ksai, يانا,\n  { {0x394400bb, 0xa3ae006e, 0x7d0b0304, 0x00000000}},  //   dems_, _कदम_, rags,\n  { {0x7f850054, 0xdb0300f4, 0x3dcd243d, 0x00000000}},  //   _السن, onné, _whew_,\n  { {0x752d001a, 0x394f008e, 0x7d0b011c, 0x00000000}},  //   _ocaz, _pags_, pags,\n  { {0x78a401d9, 0x21290149, 0xe818007d, 0x00000000}},  //   _živa, ngah_, _दिशा_,\n  { {0x798918b7, 0x2d9d047b, 0x74220044, 0x00000000}},  //   rhew, miwe_, _ফন্ট_,\n  { {0xab740054, 0x9b740054, 0x2d9d0e74, 0x00000000}},  //   _والإ, _والص, liwe_,\n  { {0xd90f009c, 0xf1c7007d, 0x7d0901a3, 0x00000000}},  //   _ہیں_, लतान, _kees,\n  { {0xaca30011, 0x7bc304f2, 0x7d09003c, 0x00000000}},  //   _ngừn, llnu, _jees,\n  { {0x7d09243e, 0x3f810093, 0xe7391abd, 0x00000000}},  //   _mees, kkhu_, _бел_,\n  { {0x7d0901b5, 0xafdb00ea, 0xd8d600b3, 0x00000000}},  //   _lees, _trøy, _פוסט_,\n  { {0xa2bb0164, 0x15f501f7, 0x27ed0065, 0x00000000}},  //   _शुद्, _استح, lqen_,\n  { {0x7d09001e, 0x21290173, 0x2d9d00e7, 0x00000000}},  //   _nees, ggah_, jiwe_,\n  { {0xa0670113, 0xa3d8007d, 0x6564011c, 0x00000000}},  // [5e20] бата_, िषद_, _inih,\n  { {0xdfcf0379, 0x00000000, 0x00000000, 0x00000000}},  //   فيق_,   ,   ,\n  { {0x65640428, 0x7d0900c7, 0xa91d0006, 0x00000000}},  //   _knih, _bees, sižy,\n  { {0xe818024c, 0x10a6003b, 0x2d9d0117, 0x00000000}},  //   _दिला_, _гимн, giwe_,\n  { {0x7d090007, 0xe3bf0211, 0xdca30517, 0x00000000}},  //   _dees, luña_, паци,\n  { {0xdd920167, 0x543b0049, 0xe9f80451, 0x00000000}},  //   _کور_, רעסא, анкі_,\n  { {0x3ce90295, 0x7d0901b5, 0x8e860025, 0x00000000}},  //   žava_, _fees, _الأه,\n  { {0x7d0906b2, 0x2d9d04c4, 0x57f4005c, 0x00000000}},  //   _gees, ciwe_, опит,\n  { {0x39441a35, 0xdb180023, 0x4c86004d, 0x00000000}},  //   rems_, novë, _улав,\n  { {0x5eab0044, 0x752d001a, 0xd90c00a1, 0x00000000}},  //   _করতে, _scaz, ریڈ_,\n  { {0x6ac60318, 0x657602d4, 0xe3bf004a, 0x00000000}},  //   _اقام, _boyh, juña_,\n  { {0x26c20089, 0x6576004a, 0xdb180023, 0x00000000}},  //   āko_, _coyh, kovë,\n  { {0x32110036, 0xd49b00e2, 0x00000000, 0x00000000}},  //   wszy_, урн_,   ,\n  { {0xf41f00b0, 0x2d9d0036, 0x00000000, 0x00000000}},  //   rrä_, ziwe_,   ,\n  { {0x1b7b0049, 0x43940072, 0x00000000, 0x00000000}},  //   נטלע, чарс,   ,\n  { {0x35a400e1, 0x60f90783, 0x32110036, 0x00000000}},  //   _најг, рная_, rszy_,\n  { {0x7d0900d6, 0x644d2367, 0xdb180023, 0x00000000}},  // [5e30] _rees, _usai, govë,\n  { {0x7d09006c, 0x32110036, 0x9f40000c, 0x00000000}},  //   _sees, pszy_, upið_,\n  { {0x9f40000c, 0xf3eb0044, 0x2d9d047b, 0x00000000}},  //   rpið_, _কবির_, tiwe_,\n  { {0xa159243f, 0x05c9007d, 0xeeeb0082, 0x00000000}},  //   _таму_, रतिब, _đổng_,\n  { {0x2d9d0cd1, 0x78a40161, 0x7d09006c, 0x00000000}},  //   riwe_, _živn, _vees,\n  { {0x7d090112, 0x2d9d0020, 0x00000000, 0x00000000}},  //   _wees, siwe_,   ,\n  { {0x7d092440, 0x00000000, 0x00000000, 0x00000000}},  //   _tees,   ,   ,\n  { {0xa3e90201, 0x09e201e0, 0x7de50006, 0x00000000}},  //   यदा_, мощн, _dėst,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xbca4057d, 0x00000000, 0x00000000, 0x00000000}},  //   _عملي,   ,   ,\n  { {0x2b472044, 0x65bd01dc, 0x05aa007c, 0x00000000}},  //   menc_, véhr, ивой_,\n  { {0xe8210061, 0x959603e8, 0x2b471686, 0x00000000}},  //   _मिपा_, ішні, lenc_,\n  { {0x98c70054, 0x2ec6007d, 0x00000000, 0x00000000}},  //   _اغان, _वर्त,   ,\n  { {0xd3ba0088, 0x2b4700d4, 0x7e7e0052, 0x00000000}},  //   румі_, nenc_, yypp,\n  { {0xe7960014, 0x2b4700f6, 0x00000000, 0x00000000}},  //   _بانک, ienc_,   ,\n  { {0xe3bf0c34, 0x649a00ed, 0x65c3022a, 0x00000000}},  //   ruña_, _втор_, _обща,\n  { {0x387f04be, 0x00000000, 0x00000000, 0x00000000}},  // [5e40] nyur_,   ,   ,\n  { {0xbc6a00a6, 0x386d00f6, 0x00000000, 0x00000000}},  //   یمان_, ixer_,   ,\n  { {0xdb18008d, 0x2b472044, 0x63bc016e, 0x00000000}},  //   sovë, denc_, morn,\n  { {0x63bc22a5, 0x302a004c, 0xa63a0049, 0x00000000}},  //   lorn, _комп_, יגער,\n  { {0xdb181539, 0x973c0091, 0x00000000, 0x00000000}},  //   lové, liće,   ,\n  { {0x63bc00f8, 0xdb97007e, 0x5fc50061, 0x00000000}},  //   norn, овіч_, वतःल,\n  { {0xdb182441, 0x973c04eb, 0xdd920257, 0x00000000}},  //   nové, niće, _قوس_,\n  { {0x63bc000c, 0xdb030ef2, 0x00000000, 0x00000000}},  //   horn, fonó,   ,\n  { {0x7d02008a, 0xd90d0014, 0xdb030253, 0x00000000}},  //   mbos, ایه_, gonó,\n  { {0x3dc60038, 0xdb1801ca, 0x63bc2442, 0x00000000}},  //   llow_, kové, jorn,\n  { {0x63bc0039, 0x2956005e, 0x00000000, 0x00000000}},  //   dorn, _мъдр,   ,\n  { {0x973c0107, 0x7d0201bb, 0xdb180161, 0x00000000}},  //   diće, nbos, dové,\n  { {0x63bc00ab, 0x3dc600e0, 0x27f80014, 0x00000000}},  //   forn, ilow_, _افتد_,\n  { {0x63bc0039, 0x00000000, 0x00000000, 0x00000000}},  //   gorn,   ,   ,\n  { {0x44220056, 0x00000000, 0x00000000, 0x00000000}},  //   ark_,   ,   ,\n  { {0xdb180039, 0x3f8a2443, 0x35f703ec, 0x00000000}},  //   llvä, _albu_, _برود_,\n  { {0x63bc0428, 0x6aa601f5, 0x00000000, 0x00000000}},  // [5e50] born, गपुर,   ,\n  { {0x973c0107, 0x24840637, 0xa3b70061, 0x00000000}},  //   biće, ømme_, जवळ_,\n  { {0x78a401d9, 0xdea1026c, 0xc3320097, 0x00000000}},  //   _živl, ریری, _אוי_,\n  { {0xf1a7007e, 0x7c2201a2, 0x00000000, 0x00000000}},  //   _фрон, fror,   ,\n  { {0xdfdb0265, 0xe3b001ef, 0x661d0046, 0x00000000}},  //   _във_, _سری_, ąski,\n  { {0x9f430065, 0x92bf0044, 0x50da009b, 0x00000000}},  //   _mijë_, েশী_, _לקרא,\n  { {0x2b470010, 0x7d02001b, 0x31791072, 0x00000000}},  //   renc_, bbos, _kosz_,\n  { {0xdb032444, 0x63bc0428, 0x386d0129, 0x00000000}},  //   tonó, zorn, txer_,\n  { {0x7c2200c4, 0xdb180062, 0x00000000, 0x00000000}},  //   cror, zové,   ,\n  { {0xdb032445, 0x6a6701b7, 0x00000000, 0x00000000}},  //   ronó, _وطال,   ,\n  { {0x63bc00ee, 0x98ab005a, 0xa2bb006e, 0x00000000}},  //   vorn, ıcı_, _शुल्,\n  { {0x973c037e, 0x7c240051, 0xdb030051, 0x00000000}},  //   viće, áirg, inní,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x27ff206c, 0x4422130e, 0xdb180161, 0x00000000}},  //   mpun_, rrk_, tové,\n  { {0x7d1b0091, 0x63bc0039, 0x7d022446, 0x00000000}},  //   _odus, rorn, ybos,\n  { {0x63bc00f8, 0x31660553, 0xdb180161, 0x00000000}},  //   sorn, ñoz_, rové,\n  { {0x53a6007c, 0x1423007e, 0xa0671281, 0x00000000}},  // [5e60] _наиб, _здым, пата_,\n  { {0x7d1b001a, 0xdb0a0039, 0x7c220328, 0x00000000}},  //   _adus, llfö, vror,\n  { {0xee3a012d, 0xdd8f00a2, 0x8a590089, 0x00000000}},  //   сне_, گون_, šējā,\n  { {0x7c220307, 0xdd990088, 0x932500a1, 0x00000000}},  //   tror, оші_, _ٹرین,\n  { {0x7d020181, 0xdd8f0380, 0x7c22109a, 0x00000000}},  //   rbos, دون_, uror,\n  { {0x7d1b00b0, 0x69dc0010, 0x7d0213ea, 0x00000000}},  //   _edus, _érez, sbos,\n  { {0xdb030129, 0xed5a08fc, 0x00000000, 0x00000000}},  //   tonò, _лов_,   ,\n  { {0x7bc100f8, 0x7c22129e, 0x645a0089, 0x00000000}},  //   _eklu, pror, ātij,\n  { {0x61e6009f, 0xdb032447, 0x7dda013e, 0x00000000}},  //   _mikl, ronò, _důst,\n  { {0x1b0f0055, 0xdcfb0166, 0x9ac30009, 0x00000000}},  //   _সাথে_, _pluć, ŋŋaa,\n  { {0xb34700c4, 0x7bdf009d, 0x7c240006, 0x00000000}},  //   _liçõ, ïque, šird,\n  { {0xb7d7026c, 0x61e6083f, 0xc7b90010, 0x00000000}},  //   _ہونا_, _nikl, lről_,\n  { {0x6fbe0164, 0x00000000, 0x00000000, 0x00000000}},  //   ्तां,   ,   ,\n  { {0x7dda00b9, 0x9f430065, 0x466a005e, 0x00000000}},  //   _zůst, _vijë_, _грим_,\n  { {0x6d400107, 0x200704eb, 0x00000000, 0x00000000}},  //   _obma, ćnim_,   ,\n  { {0x5eab0055, 0x31c400ed, 0x59dc0061, 0x00000000}},  //   _করলে, есув, मगिर,\n  { {0x92bf0055, 0x78a40bd9, 0x61e6023a, 0x00000000}},  // [5e70] েশে_, _živj, _dikl,\n  { {0x44390089, 0x7dca000c, 0x442b0e98, 0x00000000}},  //   mts_, sýsl, muc_,\n  { {0x443903db, 0xa195007e, 0x59dc01f5, 0x00000000}},  //   lts_, _жанч, मगार,\n  { {0x7bc10a14, 0x7d1b0066, 0x00000000, 0x00000000}},  //   _sklu, _qdus,   ,\n  { {0x4439028a, 0x657d0065, 0x442b0095, 0x00000000}},  //   nts_, ërhy, nuc_,\n  { {0x44392448, 0x61e6002d, 0xbb42005e, 0x00000000}},  //   its_, _zikl, вешк,\n  { {0x4439192b, 0x1b060044, 0xdce8014a, 0x00000000}},  //   hts_, _রাখে_, _çoğa,\n  { {0x4439001e, 0x9f4301aa, 0xe818013d, 0x00000000}},  //   kts_, _sijè_, _दिखा_,\n  { {0x6d4b04cb, 0x4439002b, 0x27ff04cb, 0x00000000}},  //   mega, jts_, upun_,\n  { {0x442b0bc0, 0x443902e7, 0x27ff01a3, 0x00000000}},  //   duc_, dts_, rpun_,\n  { {0x27ff175f, 0x442b009d, 0x25a2016e, 0x00000000}},  //   spun_, euc_, tikl_,\n  { {0x6d4b2449, 0x6d59010f, 0x443900ab, 0x00000000}},  //   nega, ndwa, fts_,\n  { {0x61e601d5, 0x7c2b244a, 0x44391120, 0x00000000}},  //   _rikl, nugr, gts_,\n  { {0x69c9021e, 0x61e61987, 0x6d4b00c4, 0x00000000}},  //   llee, _sikl, hega,\n  { {0x0caa03d7, 0x6d4b00ea, 0x44390f12, 0x00000000}},  //   _कश्म, kega, ats_,\n  { {0x6d4b244b, 0x27e70c8d, 0x69c9002d, 0x00000000}},  //   jega, _hinn_, nlee,\n  { {0x44390038, 0x6d4b0016, 0x69c9002d, 0x00000000}},  // [5e80] cts_, dega, ilee,\n  { {0x6d590190, 0x78a41c3a, 0x290f20fc, 0x00000000}},  //   edwa, _živk, _lega_,\n  { {0x27e7244c, 0x61e6014a, 0x27ef0039, 0x00000000}},  //   _minn_, _tikl, _lugn_,\n  { {0x27e7244d, 0x3ea7002a, 0x6d4b22d8, 0x00000000}},  //   _linn_, únta_, gega,\n  { {0x69c901c3, 0xc7b90010, 0x25a0010e, 0x00000000}},  //   dlee, tről_, _mmil_,\n  { {0x290f0004, 0xaa58244e, 0x69c2244f, 0x00000000}},  //   _aega_, зику_, _skoe,\n  { {0x6d4b0079, 0x6da60175, 0x69c90168, 0x00000000}},  //   bega, _жива, flee,\n  { {0x2d8d011c, 0xd90d00a6, 0x6d4b1b00, 0x00000000}},  //   _glee_, میم_, cega,\n  { {0x274a0057, 0x290f000a, 0x6da30072, 0x00000000}},  //   очно_, _dega_, _рита,\n  { {0x27e7002a, 0xf69806e3, 0x80db0044, 0x00000000}},  //   _cinn_, звој_, যুক্,\n  { {0x69c90b20, 0xdce0001e, 0xe5351734, 0x00000000}},  //   blee, _tomē, нень,\n  { {0x7bca0c0d, 0x27e7009f, 0x443901a6, 0x00000000}},  //   llfu, _einn_, tts_,\n  { {0x443908f7, 0x27e70056, 0x200711af, 0x00000000}},  //   uts_, _finn_, ćnik_,\n  { {0x25a01a3d, 0xf8ad00a1, 0x27e704a5, 0x00000000}},  //   _emil_, _چکی_, _ginn_,\n  { {0x44391da6, 0xeb91007b, 0x26c70740, 0x00000000}},  //   sts_, אָן_, _gyno_,\n  { {0x69c00f12, 0x44390339, 0xd5b90089, 0x00000000}},  //   nome, pts_, irāk_,\n  { {0x6d4b049a, 0x4fd500d7, 0x9099005e, 0x00000000}},  // [5e90] vega, ежат, чват_,\n  { {0x32550793, 0x69c9002d, 0x2d8d123b, 0x00000000}},  //   _звор, zlee, _slee_,\n  { {0x6d4b0016, 0x6fcb01a2, 0x69c90943, 0x00000000}},  //   tega, lück, ylee,\n  { {0x69c00036, 0x00000000, 0x00000000, 0x00000000}},  //   jome,   ,   ,\n  { {0x69c0066e, 0x6d4b0219, 0x290f0145, 0x00000000}},  //   dome, rega, _rega_,\n  { {0x6d4b0059, 0x290f010e, 0x7c2b046a, 0x00000000}},  //   sega, _sega_, rugr,\n  { {0x290f029d, 0x69c900c7, 0x6d4b04d4, 0x00000000}},  //   _pega_, tlee, pega,\n  { {0x27e7009f, 0x69c02450, 0x26c701d6, 0x00000000}},  //   _sinn_, gome, _ryno_,\n  { {0x290f16b9, 0x69c90168, 0xb7bd001a, 0x00000000}},  //   _vega_, rlee, luţi,\n  { {0x69c9022b, 0xe739003b, 0x25a0068f, 0x00000000}},  //   slee, чео_, _smil_,\n  { {0x290f01d9, 0x27e71ce3, 0xaa950025, 0x00000000}},  //   _tega_, _vinn_, _ثلاث,\n  { {0x69c02451, 0x6a53005f, 0xceb200a0, 0x00000000}},  //   come, _nəfə, ריט_,\n  { {0x394d0004, 0x61fe016c, 0x27e72452, 0x00000000}},  //   mees_, _stpl, _tinn_,\n  { {0x394d0343, 0x33d50245, 0x987a0049, 0x00000000}},  //   lees_, віст, _מאנט,\n  { {0x3243007c, 0x61460930, 0x00000000, 0x00000000}},  //   лерг, нева,   ,\n  { {0x394d0007, 0x78a40340, 0x6a53006b, 0x00000000}},  //   nees_, _živi, _cəfə,\n  { {0xf992007b, 0xe3b201ef, 0x8c9f013d, 0x00000000}},  // [5ea0] ארן_, _مرد_, _खेलो,\n  { {0xa2bb02fb, 0x6fb60025, 0x69c000e7, 0x00000000}},  //   _शुक्, رمضا, zome,\n  { {0xdb0301aa, 0xd3370104, 0x7dca000c, 0x00000000}},  //   minè, _אריה_, lýsi,\n  { {0xdb0300f6, 0x00000000, 0x00000000, 0x00000000}},  //   linè,   ,   ,\n  { {0x8ba6005e, 0x6fcb01a2, 0x7dec013f, 0x00000000}},  //   нидж, küch, _ağst,\n  { {0x69c00e9e, 0xdb1801dc, 0xb7bd001a, 0x00000000}},  //   wome, poví, buţi,\n  { {0x394d0007, 0xc33301ce, 0x1c1c006e, 0x00000000}},  //   fees_, אוו_, _निकल_,\n  { {0x394d0436, 0x00000000, 0x00000000, 0x00000000}},  //   gees_,   ,   ,\n  { {0xdcef0091, 0x57a600e3, 0x00000000, 0x00000000}},  //   _šeće, ешна,   ,\n  { {0x69c0238d, 0x5a9600ed, 0x65ab00b0, 0x00000000}},  //   some, _преф, köhä,\n  { {0x69c00a14, 0x394d01c3, 0x6456003f, 0x00000000}},  //   pome, bees_, _asyi,\n  { {0xceb300b6, 0x394d0145, 0x6fcb01a2, 0x00000000}},  //   טית_, cees_, tück,\n  { {0x6fcb010f, 0x1754237a, 0xa3bd013d, 0x00000000}},  //   büch, _авля, इकल_,\n  { {0x6a53005f, 0x6fcb001f, 0xdb030023, 0x00000000}},  //   _səfə, rück, vinë,\n  { {0x0d1001f5, 0x21670216, 0xf7730049, 0x00000000}},  //   ाराष_, нтаг, _תקצ_,\n  { {0xdb030065, 0x3ce90e3b, 0xf1a401e1, 0x00000000}},  //   tinë, žavi_, грун,\n  { {0x656d09bd, 0xd6df00b4, 0x00000000, 0x00000000}},  // [5eb0] _inah, ąłem_,   ,\n  { {0xb7bd001a, 0xdb030023, 0x00000000, 0x00000000}},  //   tuţi, rinë,   ,\n  { {0x1b0f0055, 0xa2950245, 0x394d00ab, 0x00000000}},  //   _সালে_, _рані, yees_,\n  { {0xe82103d7, 0xdb032453, 0x63a710ae, 0x00000000}},  //   _मिला_, miné, lijn,\n  { {0x2fd90025, 0xd116009b, 0x394d14ac, 0x00000000}},  //   _يوجد_, _בקרה_, vees_,\n  { {0x394d0007, 0x63a71dff, 0xc4d400a3, 0x00000000}},  //   wees_, nijn, נגס_,\n  { {0xbd0500f4, 0x00000000, 0x00000000, 0x00000000}},  //   _créé,   ,   ,\n  { {0x63a700b5, 0x7c2411cc, 0x00000000, 0x00000000}},  //   hijn, šira,   ,\n  { {0x79890093, 0x394d0133, 0x6fcb01a2, 0x00000000}},  //   rkew, rees_, tüch,\n  { {0xfd4d001d, 0x656d1102, 0x6f170061, 0x00000000}},  //   _ngoạ, _anah, naxc,\n  { {0x394d2157, 0x6d5b0103, 0x6fcb010f, 0x00000000}},  //   pees_, _kaua, rüch,\n  { {0x7bc32005, 0x81b60044, 0xdb032454, 0x00000000}},  //   lonu, _চীন_, diné,\n  { {0x6d5b000b, 0x399a007b, 0xdb181580, 0x00000000}},  //   _maua, _קינד, lová,\n  { {0x6d5b2455, 0x7bc30052, 0x8c130044, 0x00000000}},  //   _laua, nonu, _সমান_,\n  { {0xdb1800b9, 0x45d60478, 0x7dd81122, 0x00000000}},  //   nová, _ицит, líse,\n  { {0x38600825, 0xfe7200a6, 0x6d5b19be, 0x00000000}},  //   _širi_, یدا_, _naua,\n  { {0xdb1801ca, 0x7bc31091, 0x91e30264, 0x00000000}},  // [5ec0] hová, konu, роте,\n  { {0xe0d7012b, 0xcfb50055, 0xdb1800b9, 0x00000000}},  //   тву_, _জীবন, ková,\n  { {0xe3b200a2, 0x7bc3007f, 0x6d5b010f, 0x00000000}},  //   _مرگ_, donu, _baua,\n  { {0xdb1801dc, 0x68fb016c, 0x5bca01f5, 0x00000000}},  //   dová, jcud, ित्व,\n  { {0x6d5b0032, 0xa3e60061, 0x9f4901e5, 0x00000000}},  //   _daua, _फळा_, ppað_,\n  { {0x7bc30951, 0x661a1938, 0xdb18013e, 0x00000000}},  //   gonu, ystk, fová,\n  { {0x5ee00055, 0xcb67003b, 0xdb182456, 0x00000000}},  //   _প্রে, таје_, gová,\n  { {0x69d9018e, 0x63a72457, 0x6d5b2458, 0x00000000}},  //   _chwe, zijn, _gaua,\n  { {0xdb3400e9, 0x2e3c000c, 0x4813007e, 0x00000000}},  //   _مذاک, líf_, амыс,\n  { {0x81d80055, 0x7f5c06c2, 0x656d0161, 0x00000000}},  //   াদি_, _jarq, _snah,\n  { {0x7f5c028c, 0xdb180802, 0xdce00006, 0x00000000}},  //   _marq, cová, _pomė,\n  { {0x891a06c6, 0x661a10ae, 0x63a700b5, 0x00000000}},  //   _آغاز_, rstk, wijn,\n  { {0x81d80044, 0x6dbc016e, 0x26c20036, 0x00000000}},  //   াদা_, mčad, łko_,\n  { {0x62352459, 0xdb03009d, 0x39460544, 0x00000000}},  //   легу, tiné, _hbos_,\n  { {0x63a70dc1, 0x20020022, 0x00000000, 0x00000000}},  //   rijn, _atki_,   ,\n  { {0x7bc3149f, 0xe5c40088, 0x656d09bd, 0x00000000}},  //   zonu, _всьо, _unah,\n  { {0x7bc3027d, 0xdb1800b9, 0xdb030ea5, 0x00000000}},  // [5ed0] yonu, zová, siné,\n  { {0x2fc700ad, 0x24840c94, 0x442b245a, 0x00000000}},  //   ông_, ämme_, mrc_,\n  { {0x7f5c02d0, 0x7bc30992, 0x2002014a, 0x00000000}},  //   _darq, vonu, _etki_,\n  { {0xdb18093f, 0x9f4a0173, 0x00000000, 0x00000000}},  //   vová, _libè_,   ,\n  { {0xa3b8007a, 0x7c2410ec, 0x68fb0477, 0x00000000}},  //   _سایر_, širn, vcud,\n  { {0x442b0051, 0xdb18245b, 0x3946245c, 0x00000000}},  //   irc_, tová, _abos_,\n  { {0x7bc3013f, 0xa9a5245d, 0x6d5b00fa, 0x00000000}},  //   ronu, ликд, _taua,\n  { {0xdb180224, 0x38661aec, 0x7f5c00d9, 0x00000000}},  //   rová, _bror_, _zarq,\n  { {0x7bc30036, 0xf771031d, 0xdb1800b9, 0x00000000}},  //   ponu, ماد_, sová,\n  { {0x68fb00d4, 0xdb1801dc, 0xdcfb013e, 0x00000000}},  //   scud, pová, _mouč,\n  { {0x6f15245e, 0x38661886, 0x00000000, 0x00000000}},  //   _mezc, _eror_,   ,\n  { {0x3ce9037e, 0x6b8105b4, 0x6f1505d2, 0x00000000}},  //   žavu_, _holg, _lezc,\n  { {0xf745007c, 0x28f8007c, 0xaaa70204, 0x00000000}},  //   _бело, _речь_, _केतक,\n  { {0xf7731095, 0x395f245f, 0x6dbc016c, 0x00000000}},  //   _خاص_, ldus_, pčag,\n  { {0x442b0048, 0xe29a16e8, 0x00000000, 0x00000000}},  //   arc_, хав_,   ,\n  { {0x395f0004, 0x7d190036, 0x442b0087, 0x00000000}},  //   ndus_, jaws, brc_,\n  { {0x7f5c0489, 0xdb010047, 0xdfd201af, 0x00000000}},  // [5ee0] _parq, _emlé, مير_,\n  { {0xe3b2023c, 0x395d00ab, 0x7f5c08b6, 0x00000000}},  //   _درب_, _laws_, _qarq,\n  { {0x11d60123, 0x6fd00039, 0x44200d22, 0x00000000}},  //   _متحد, läck, _hvi_,\n  { {0x7bda0065, 0x427b0049, 0x51560478, 0x00000000}},  //   _shtu, _נאכג, _стоу,\n  { {0x395f018e, 0x6b812460, 0x7f5c0197, 0x00000000}},  //   ddus_, _bolg, _tarq,\n  { {0x6b810211, 0x8f760c50, 0x31602461, 0x00000000}},  //   _colg, _сумі, ldiz_,\n  { {0x6b812462, 0x2d9c00f4, 0x26110059, 0x00000000}},  //   _dolg, èves_, jšo_,\n  { {0x316009ac, 0x7d0d009f, 0x44200052, 0x00000000}},  //   ndiz_, ðast, _ovi_,\n  { {0x6b81001f, 0x5b360d3a, 0x442000fa, 0x00000000}},  //   _folg, _معار, _nvi_,\n  { {0x6aba0009, 0x2ca7003b, 0x75240032, 0x00000000}},  //   _txtf, _скуп_, _adiz,\n  { {0x9f4a0051, 0xd6d00380, 0x35b50f13, 0x00000000}},  //   _cibé_, تقد_, ибор,\n  { {0x38660cb2, 0xd6d70147, 0x4420018d, 0x00000000}},  //   _tror_, ыты_, _bvi_,\n  { {0x5eab0044, 0x00000000, 0x00000000, 0x00000000}},  //   _করছে,   ,   ,\n  { {0x75242463, 0x44200006, 0x7d190036, 0x00000000}},  //   _ediz, _dvi_, zaws,\n  { {0xdcfb0224, 0x442b0009, 0x44200279, 0x00000000}},  //   _souč, src_, _evi_,\n  { {0x442b0061, 0x6fd02464, 0x00000000, 0x00000000}},  //   prc_, läch,   ,\n  { {0x0f150077, 0x7ff70355, 0x00000000, 0x00000000}},  // [5ef0] имаю, اسرا,   ,\n  { {0x6fd0010f, 0x98af016c, 0x644d0058, 0x00000000}},  //   näch, šaće_, _ipai,\n  { {0x644e0059, 0x442000d2, 0x98af0066, 0x00000000}},  //   čniš, _zvi_, _tagħ_,\n  { {0x6b81068f, 0x7d0e0082, 0x644d0022, 0x00000000}},  //   _solg, _đbsc, _kpai,\n  { {0xf41f021e, 0x6b810010, 0x61f700ea, 0x00000000}},  //   nsä_, _polg, _huxl,\n  { {0x2009020c, 0x395d0bd8, 0xda65023c, 0x00000000}},  //   mpai_, _saws_, لاعي,\n  { {0x6b81049b, 0x83380049, 0x6fd001a2, 0x00000000}},  //   _volg, טאגס_, däch,\n  { {0x395f0995, 0x9f4a00f6, 0x00000000, 0x00000000}},  //   udus_, _ribé_,   ,\n  { {0x395f0089, 0x5d8401b7, 0x6604200c, 0x00000000}},  //   rdus_, _القل, _čika,\n  { {0x44202465, 0x00000000, 0x00000000, 0x00000000}},  //   _rvi_,   ,   ,\n  { {0x44200119, 0x644d1983, 0xe8150316, 0x00000000}},  //   _svi_, _apai, _दौरा_,\n  { {0x657d0065, 0x629c0059, 0x8afc0036, 0x00000000}},  //   gjsh, vzro, _wnęt,\n  { {0x6d49002a, 0x290d000b, 0xdb031c37, 0x00000000}},  //   _mbea, mbea_, minâ,\n  { {0x66e52466, 0x6fd00039, 0x889a009b, 0x00000000}},  //   _кола, räck, _בבני,\n  { {0x644d022b, 0xf53f0030, 0x629c04eb, 0x00000000}},  //   _epai, rnår_, uzro,\n  { {0x61ef04bd, 0xd1320379, 0x60260088, 0x00000000}},  //   _cicl, تمر_, идба,\n  { {0xcef601fc, 0x20870088, 0x3f830247, 0x00000000}},  // [5f00] ачењ, айти_, _boju_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xed5a01fb, 0xee3a012b, 0x76412467, 0x00000000}},  //   кож_, тне_, ntly,\n  { {0x61ef009d, 0x2b5e0203, 0x00000000, 0x00000000}},  //   _gicl, _satc_,   ,\n  { {0x61e42468, 0xdb0300c4, 0x798200d9, 0x00000000}},  //   mmil, dinâ, _roow,\n  { {0x61e400b0, 0xca2602b3, 0x8c43003b, 0x00000000}},  //   lmil, афии, цеље,\n  { {0xdce90066, 0x00000000, 0x00000000, 0x00000000}},  //   _vleġ,   ,   ,\n  { {0x61e405eb, 0x6fd001a2, 0x66080045, 0x00000000}},  //   nmil, wäch, vpdk,\n  { {0x61e4000c, 0x5817007e, 0x00000000, 0x00000000}},  //   imil, ажыў_,   ,\n  { {0x2d840038, 0x61e42469, 0x00000000, 0x00000000}},  //   _home_, hmil,   ,\n  { {0x6fd0010f, 0x2d840056, 0x61e4246a, 0x00000000}},  //   räch, _kome_, kmil,\n  { {0x6fd001a2, 0x61e40466, 0xf41f00b0, 0x00000000}},  //   säch, jmil, tsä_,\n  { {0xb447008b, 0x61e4099d, 0x94a8246b, 0x00000000}},  //   шэнк, dmil, атра_,\n  { {0x24840039, 0xa5c7000c, 0x61e4010e, 0x00000000}},  //   ämma_, _blóð, emil,\n  { {0xf41f0f3c, 0xf1a7007e, 0x3f83016c, 0x00000000}},  //   ssä_, аран, _roju_,\n  { {0x2d84220a, 0x3d1003d7, 0xdb03246c, 0x00000000}},  //   _nome_, ारों_, viní,\n  { {0xc1040054, 0x69c70061, 0x533501ee, 0x00000000}},  // [5f10] توقي, ावती, _лепт,\n  { {0x68f500b9, 0x6e67005e, 0x99510161, 0x00000000}},  //   ězdi, итеж, _máš_,\n  { {0x2d84246d, 0xede7007e, 0x61ef246e, 0x00000000}},  //   _bome_, аўдн, _ticl,\n  { {0x2d84085d, 0x61e40bd3, 0xdb0a246f, 0x00000000}},  //   _come_, cmil, lifè,\n  { {0x99510161, 0x2d842470, 0xab2900e2, 0x00000000}},  //   _náš_, _dome_, гола_,\n  { {0x2bbb0054, 0xdb0a156c, 0x09af0061, 0x00000000}},  //   خاصة_, nifè, जच्य,\n  { {0xfee50055, 0x5e950025, 0xb222000c, 0x00000000}},  //   _প্রধ, _الأط, _áætl,\n  { {0xd2b8019b, 0x7dd80027, 0x7e620036, 0x00000000}},  //   ילות_, písa, łopc,\n  { {0xf8a9007a, 0x290d1b90, 0xf719007e, 0x00000000}},  //   دگاه_, rbea_, ліны_,\n  { {0x25a9003f, 0x61e421ff, 0x00000000, 0x00000000}},  //   _amal_, zmil,   ,\n  { {0x61e409c8, 0x00000000, 0x00000000, 0x00000000}},  //   ymil,   ,   ,\n  { {0xceb20097, 0x857a00ed, 0x764101d6, 0x00000000}},  //   ליי_, усот_, rtly,\n  { {0xa5c7000c, 0xc79800a1, 0x7641005b, 0x00000000}},  //   _slóð, _چھپا_, stly,\n  { {0x25a92471, 0x00000000, 0x00000000, 0x00000000}},  //   _emal_,   ,   ,\n  { {0xe2972472, 0x412a005e, 0x61e40232, 0x00000000}},  //   бар_, лово_, tmil,\n  { {0xc2432473, 0x973c0107, 0x61e4182d, 0x00000000}},  //   янск, vići, umil,\n  { {0xe0da01b3, 0x2d841e3c, 0x61e420a0, 0x00000000}},  // [5f20] ува_, _rome_, rmil,\n  { {0x2d840038, 0xe47b00b6, 0x442204d3, 0x00000000}},  //   _some_, _עריכ, msk_,\n  { {0x442201e3, 0xc7d6009b, 0xdb030129, 0x00000000}},  //   lsk_, צועי_, dinà,\n  { {0x628e0006, 0x4422141a, 0x00000000, 0x00000000}},  //   mybo, osk_,   ,\n  { {0x44220374, 0x996c00b9, 0x653b0049, 0x00000000}},  //   nsk_, těž_, רענד,\n  { {0x44220056, 0xd00f03e6, 0xdb0300d4, 0x00000000}},  //   isk_, _سلف_, ginà,\n  { {0x2d840119, 0x628e007f, 0x7d0d004a, 0x00000000}},  //   _tome_, nybo, ñasc,\n  { {0xed5a01fb, 0xd90d02fd, 0x6f1e04bb, 0x00000000}},  //   _щоб_, نیم_, lapc,\n  { {0x628e0161, 0x00000000, 0x00000000, 0x00000000}},  //   hybo,   ,   ,\n  { {0x7d020207, 0x99510428, 0x7c2d0107, 0x00000000}},  //   lcos, _váš_, šarc,\n  { {0x7c220010, 0x9f9400b0, 0x00000000, 0x00000000}},  //   lsor, mää_,   ,\n  { {0xdb032474, 0x628e0006, 0x7d020059, 0x00000000}},  //   miná, dybo, ncos,\n  { {0xdb0310d3, 0x6f1e0010, 0x94ab0545, 0x00000000}},  //   liná, kapc, утна_,\n  { {0x569410d8, 0x7bca0c7d, 0x63ae0e0d, 0x00000000}},  //   _малт, nofu, gibn,\n  { {0x1b1d0055, 0xdb0a2475, 0x7c2222cb, 0x00000000}},  //   _নামে_, rifè, hsor,\n  { {0x44220179, 0x7c220f3f, 0x25a9012d, 0x00000000}},  //   bsk_, ksor, _umal_,\n  { {0x9f9400b0, 0x7c2200eb, 0x69ab013d, 0x00000000}},  // [5f30] kää_, jsor, _जगसी,\n  { {0x3255003b, 0x7c22032e, 0x628e0a75, 0x00000000}},  //   _двор, dsor, bybo,\n  { {0xdfd8005e, 0x7c220146, 0x2bdc013d, 0x00000000}},  //   сът_, esor, यतना,\n  { {0xfe700054, 0xdb032474, 0x3cd50242, 0x00000000}},  //   عدل_, diná, ожес,\n  { {0x913a0049, 0x7c2201e3, 0xcfc30044, 0x00000000}},  //   _דערק, gsor, ্গবন,\n  { {0x7e620036, 0x7bca0b69, 0xeb96017f, 0x00000000}},  //   łopa, gofu, жиш_,\n  { {0x4999022a, 0xdb030161, 0xfbd00379, 0x00000000}},  //   ития_, giná, رته_,\n  { {0xe8f90f13, 0xe9d900ec, 0x7d02001b, 0x00000000}},  //   шли_, јки_, ccos,\n  { {0x6a4a006b, 0x7c2208a4, 0x628e00b4, 0x00000000}},  //   _vəfa, csor, zybo,\n  { {0x6dbc0209, 0x799b0e9c, 0x99800213, 0x00000000}},  //   nčan, shuw, čiš_,\n  { {0x98b901f6, 0x7d1b0935, 0xcb1200b3, 0x00000000}},  //   ısı_, _keus, _חלב_,\n  { {0x4422068f, 0x24ea2476, 0x00000000, 0x00000000}},  //   tsk_, имни_,   ,\n  { {0x44240978, 0x628e1496, 0x7d1b009d, 0x00000000}},  //   ém_, wybo, _meus,\n  { {0x44220292, 0x628e0006, 0x7d1b046a, 0x00000000}},  //   rsk_, tybo, _leus,\n  { {0x6d93014a, 0x63ae0145, 0x7d020133, 0x00000000}},  //   _açam, ribn, ycos,\n  { {0x7c221e3d, 0x7c240166, 0x628e046e, 0x00000000}},  //   ysor, širi, rybo,\n  { {0xef1a045e, 0xc9520104, 0xdb0300b9, 0x00000000}},  // [5f40] има_, ומן_, ziná,\n  { {0xafdb0378, 0x59b00061, 0x65640052, 0x00000000}},  //   _spør, _जगभर, _haih,\n  { {0xa2e601fb, 0x9f94021e, 0x9f5101aa, 0x00000000}},  //   _фонд, vää_, _mizè_,\n  { {0x7c22010f, 0xdb030161, 0x6446016c, 0x00000000}},  //   tsor, viná, otki,\n  { {0x9f94021e, 0x7d020d87, 0x7d1b2477, 0x00000000}},  //   tää_, rcos, _deus,\n  { {0x7c222478, 0x7d020207, 0x656400b0, 0x00000000}},  //   rsor, scos, _laih,\n  { {0x6446006c, 0x7bca03d1, 0x9f9400b0, 0x00000000}},  //   htki, rofu, rää_,\n  { {0x9f94021e, 0x6f1c0466, 0xdb030387, 0x00000000}},  //   sää_, _herc, riná,\n  { {0x6f1c0065, 0xa3da013d, 0x9f94003c, 0x00000000}},  //   _kerc, ़ता_, pää_,\n  { {0x6c330014, 0x77630082, 0x5edd0044, 0x00000000}},  //   _آفلا, _canx, _বলতে,\n  { {0x4efb007b, 0x65641307, 0x9f51000a, 0x00000000}},  //   יליג, _baih, _dizè_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x656404e9, 0x6d400784, 0x69c70061, 0x00000000}},  //   _daih, _mcma, ावरी,\n  { {0x77630129, 0x8c480477, 0x65760010, 0x00000000}},  //   _ganx, mağı, _enyh,\n  { {0x6dbc2479, 0x92681023, 0x8c480279, 0x00000000}},  //   včan, орта_, lağı,\n  { {0x65c402a8, 0x60f90147, 0x6b8800ab, 0x00000000}},  //   _обја, сная_, _lodg,\n  { {0x7d1b0956, 0x6f1c0127, 0x8c48019a, 0x00000000}},  // [5f50] _reus, _berc, nağı,\n  { {0x44390995, 0x6f1c108c, 0xdfd10054, 0x00000000}},  //   mus_, _cerc, ريا_,\n  { {0x4439247a, 0x7d1b247b, 0xdb03014a, 0x00000000}},  //   lus_, _peus, linç,\n  { {0x753d1582, 0xdce0005d, 0x443900ab, 0x00000000}},  //   ngsz, _almı, ous_,\n  { {0x6f1c0016, 0x6dbc016e, 0x6b9a0009, 0x00000000}},  //   _ferc, pčan, _bltg,\n  { {0xf1bf009f, 0x2d9d14a5, 0x291f0020, 0x00000000}},  //   _hjá_, shwe_, waua_,\n  { {0x44390018, 0x69c42198, 0x776300f6, 0x00000000}},  //   hus_, čien, _ranx,\n  { {0x6dbc0059, 0x7763247c, 0x00000000, 0x00000000}},  //   nčal, _sanx,   ,\n  { {0x44390995, 0x7763247d, 0x291f002d, 0x00000000}},  //   jus_, _panx, raua_,\n  { {0x44390f81, 0x6d4b010f, 0x6f050009, 0x00000000}},  //   dus_, lfga, nchc,\n  { {0x443901d6, 0xb9010055, 0x6dbc012d, 0x00000000}},  //   eus_, _দল_, kčal,\n  { {0x44390670, 0x8c480477, 0x6d590a6b, 0x00000000}},  //   fus_, bağı, newa,\n  { {0x8c4801f6, 0x6564021e, 0xe72e003b, 0x00000000}},  //   cağı, _vaih, _пе_,\n  { {0x2444247e, 0x291d0020, 0xd7590a4f, 0x00000000}},  //   röm_, _hewa_, _طلعت_,\n  { {0x64460046, 0xf770035b, 0x4439010a, 0x00000000}},  //   stki, _جان_, aus_,\n  { {0x6f1c0036, 0xdb0301b1, 0x00000000, 0x00000000}},  //   _serc, linä,   ,\n  { {0x6f1c247f, 0x6d590ea4, 0x21200169, 0x00000000}},  // [5f60] _perc, dewa, raih_,\n  { {0x672116eb, 0x00000000, 0x00000000, 0x00000000}},  //   nalj,   ,   ,\n  { {0x6f1c0197, 0x5ee10061, 0xa13700a1, 0x00000000}},  //   _verc, _करण्_, _کرپش,\n  { {0x6d59063c, 0x7e620036, 0x0d86007e, 0x00000000}},  //   gewa, łopo, ялен,\n  { {0x0b8a0265, 0x6b9a0022, 0x25fd013d, 0x00000000}},  //   йски_, _pltg, _रूसी_,\n  { {0x67210645, 0xa1360014, 0x2c5d000a, 0x00000000}},  //   jalj, _برگش, _dňd_,\n  { {0x672100bf, 0x9ea701f9, 0x6d590168, 0x00000000}},  //   dalj, _евра_, bewa,\n  { {0x8c460407, 0x44390093, 0x6d59003f, 0x00000000}},  //   _небе, yus_, cewa,\n  { {0x44391962, 0xdb0a0051, 0xdca3012b, 0x00000000}},  //   xus_, lifí, _зати,\n  { {0x44391d36, 0x67210066, 0x8c480276, 0x00000000}},  //   vus_, galj, rağı,\n  { {0x4439123d, 0xe53507d0, 0x9f4b0026, 0x00000000}},  //   wus_, мень, _cucù_,\n  { {0x4439061f, 0xdb0300c4, 0xa2cd0309, 0x00000000}},  //   tus_, tinç, _दुष्,\n  { {0x67212480, 0x00000000, 0x00000000, 0x00000000}},  //   balj,   ,   ,\n  { {0x44390149, 0xf1bf009f, 0x6d590036, 0x00000000}},  //   rus_, _sjá_, zewa,\n  { {0x61fe001a, 0xf2c40069, 0x6d590d16, 0x00000000}},  //   _cupl, естн, yewa,\n  { {0x443904bd, 0x59cc0061, 0xdb1a014a, 0x00000000}},  //   pus_, ाविर, _aktü,\n  { {0xa2cd02fb, 0x752d022b, 0x3f8a050f, 0x00000000}},  // [5f70] _दुर्, _idaz, _bobu_,\n  { {0x442901bc, 0xa857009b, 0x6d590045, 0x00000000}},  //   _iva_, הימה_, wewa,\n  { {0x3f8a01ca, 0xb81e013d, 0x6f050061, 0x00000000}},  //   _dobu_, _मौसम_, rchc,\n  { {0xf1a700ed, 0xdb1a2481, 0x44290292, 0x00000000}},  //   _хрон, _októ, _kva_,\n  { {0x6b650088, 0x5067007e, 0x6c85009e, 0x00000000}},  //   дкла, _этна, بلشم,\n  { {0x6d5904be, 0x291d003f, 0x9f8f010e, 0x00000000}},  //   sewa, _sewa_, nüü_,\n  { {0x67210091, 0x752d0166, 0x44291478, 0x00000000}},  //   valj, _odaz, _lva_,\n  { {0x442901ee, 0x3f8a0089, 0x7d04004a, 0x00000000}},  //   _ova_, _zobu_, ñist,\n  { {0x7c24002a, 0xf53f0737, 0xf7710879, 0x00000000}},  //   áirt, dgå_, ناد_,\n  { {0x386f00d9, 0x00000000, 0x00000000, 0x00000000}},  //   _vrgr_,   ,   ,\n  { {0x672101d5, 0x7c29191d, 0x4429006c, 0x00000000}},  //   ralj, _hver, _ava_,\n  { {0x6721037e, 0x44290946, 0x2627016c, 0x00000000}},  //   salj, _bva_, rđo_,\n  { {0x61fe2482, 0x6fbf04da, 0x89340025, 0x00000000}},  //   _supl, ्वां, _أعما,\n  { {0x44290387, 0x61fe0ea9, 0x99800027, 0x00000000}},  //   _dva_, _pupl, čiť_,\n  { {0x44290142, 0x386d0781, 0x61460ab7, 0x00000000}},  //   _eva_, lver_, мева,\n  { {0x7c290c95, 0x386d0061, 0xdb1801ca, 0x00000000}},  //   _over, over_, dový,\n  { {0x798b00e0, 0x4429177d, 0x386d0133, 0x00000000}},  // [5f80] _mogw, _gva_, nver_,\n  { {0x61fe00b0, 0x386d00d9, 0xdb0a0285, 0x00000000}},  //   _tupl, iver_, tifí,\n  { {0xdfcf06ea, 0x7c29051b, 0xdb1a01aa, 0x00000000}},  //   جيل_, _aver, _oktò,\n  { {0x386d012d, 0x7bc100e5, 0x7c2901a2, 0x00000000}},  //   kver_, _ajlu, _bver,\n  { {0x386d00b5, 0x7dd81261, 0x41970014, 0x00000000}},  //   jver_, nísi, _آشپز,\n  { {0x7d0901d6, 0xdb1801ca, 0x7c290027, 0x00000000}},  //   _efes, bový, _dver,\n  { {0x7c290038, 0x394d03be, 0x7d090016, 0x00000000}},  //   _ever, ffes_, _ffes,\n  { {0xd91a0088, 0x3942006c, 0xdee302dc, 0x00000000}},  //   цьк_, üks_, _роси,\n  { {0x7c2901d5, 0x660d0235, 0x386d00ca, 0x00000000}},  //   _gver, _čaka, gver_,\n  { {0x7dd811c4, 0x00000000, 0x00000000, 0x00000000}},  //   dísi,   ,   ,\n  { {0x44290059, 0x7c290027, 0xe5b50147, 0x00000000}},  //   _sva_, _zver, ейны,\n  { {0x7dd80325, 0x5693041f, 0x7c2903be, 0x00000000}},  //   físi, тают, _yver,\n  { {0xf8e2013d, 0x2edb013d, 0x9abc0066, 0x00000000}},  //   _परिय, _भर्त, _deċe,\n  { {0x237a00c4, 0x442900f6, 0x75fe0089, 0x00000000}},  //   _cnpj_, _vva_, _līzi,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x44291b0a, 0x5edd0044, 0x6448001a, 0x00000000}},  //   _tva_, _বললে, ădir,\n  { {0x44290851, 0x3169004a, 0x00000000, 0x00000000}},  // [5f90] _uva_, rdaz_,   ,\n  { {0xdb180161, 0x00000000, 0x00000000, 0x00000000}},  //   tový,   ,   ,\n  { {0x7c2902e1, 0x63b5133f, 0x00000000, 0x00000000}},  //   _sver, mizn,   ,\n  { {0x386d0190, 0x63b50036, 0xdb180161, 0x00000000}},  //   yver_, lizn, rový,\n  { {0x61ed00b0, 0x8027002c, 0x3b0901ee, 0x00000000}},  //   mmal, _ترجم, пело_,\n  { {0x61ed049d, 0x63b52483, 0x69c200fa, 0x00000000}},  //   lmal, nizn, _ajoe,\n  { {0xd90f0167, 0x69c20056, 0x61ed00b0, 0x00000000}},  //   لیا_, _bjoe, omal,\n  { {0x9f59004f, 0x61ed005d, 0xa2d6013d, 0x00000000}},  //   _musí_, nmal, _मुफ्,\n  { {0x386d028c, 0xa3df0164, 0x7c292484, 0x00000000}},  //   uver_, तता_, _uver,\n  { {0x61ed01a2, 0x7dd805a3, 0xa68502ea, 0x00000000}},  //   hmal, vísi, елод,\n  { {0x61ed08a9, 0x7d0400ca, 0x81d60044, 0x00000000}},  //   kmal, žise, িগত_,\n  { {0xb8e508b7, 0x7dd8008e, 0x386d0009, 0x00000000}},  //   _এর_, tísi, pver_,\n  { {0x61ed0089, 0x00000000, 0x00000000, 0x00000000}},  //   dmal,   ,   ,\n  { {0x69db0065, 0xf74500ed, 0x7dd80f3b, 0x00000000}},  //   llue, _чеко, rísi,\n  { {0x217601fc, 0x7dd8008e, 0x9f5900f6, 0x00000000}},  //   нуар, sísi, _cusí_,\n  { {0x61ed011c, 0x600a09ae, 0x7dd8004a, 0x00000000}},  //   gmal, знам_, písi,\n  { {0x3fe601c0, 0x69db02f6, 0x63b50142, 0x00000000}},  // [5fa0] ежав, ilue, bizn,\n  { {0x2d9f00b0, 0x63b50091, 0x61ed00b0, 0x00000000}},  //   _alue_, cizn, amal,\n  { {0x2d9f00ab, 0xdee62485, 0x00000000, 0x00000000}},  //   _blue_, хожи,   ,\n  { {0xbd670088, 0xd2b701ce, 0x2d9f0133, 0x00000000}},  //   ерше_, _טלית_, _clue_,\n  { {0x2004001a, 0x7f1a007e, 0x9ac30066, 0x00000000}},  //   _îmi_, _ніву_, _ċċar,\n  { {0x9f58008d, 0xaa660364, 0x69c200bb, 0x00000000}},  //   _mirë_, етик, _sjoe,\n  { {0xdee31ef9, 0x9f580065, 0x2d9f2486, 0x00000000}},  //   _бори, _lirë_, _flue_,\n  { {0x20020202, 0x2122012d, 0x2d9f0322, 0x00000000}},  //   _kuki_, _jekh_, _glue_,\n  { {0xa3c00183, 0x6bda00a1, 0x75260032, 0x00000000}},  //   ंचा_, _فورس_, dakz,\n  { {0x27f806a1, 0x999f0089, 0x61ed019a, 0x00000000}},  //   örn_, ārši_, zmal,\n  { {0x63b500b9, 0x69db0009, 0x61ed0036, 0x00000000}},  //   vizn, blue, ymal,\n  { {0x6d42022b, 0xba9b00a0, 0x69db15a3, 0x00000000}},  //   ngoa, _מסבי, clue,\n  { {0x19b70049, 0x58930167, 0x00000000, 0x00000000}},  //   _אפאר_, _مجوز,   ,\n  { {0x386600f6, 0x00000000, 0x00000000, 0x00000000}},  //   _isor_,   ,   ,\n  { {0x667300b8, 0x7cf6005a, 0x20021f47, 0x00000000}},  //   _مدير, _yürü, _auki_,\n  { {0x26db019b, 0x25090014, 0x62950832, 0x00000000}},  //   _מקומ, _غربی_, ryzo,\n  { {0x69c000ab, 0x403402ea, 0x00000000, 0x00000000}},  // [5fb0] inme, летс,   ,\n  { {0x7c2d092f, 0x61ed00b0, 0x200f001e, 0x00000000}},  //   šark, smal, īgi_,\n  { {0x4fc4003b, 0x44390009, 0x88bd0036, 0x00000000}},  //   уста, lrs_, jaśn,\n  { {0x442b0129, 0x386600f6, 0x4439112b, 0x00000000}},  //   osc_, _osor_, ors_,\n  { {0x442b01ee, 0xdce00089, 0xcb690545, 0x00000000}},  //   nsc_, _pamā, дале_,\n  { {0x7cf601f6, 0x6d42002d, 0x44390549, 0x00000000}},  //   _sürü, agoa, irs_,\n  { {0xdb0a000c, 0xab2801b7, 0xdddc0010, 0x00000000}},  //   kifæ, رسول_, _errő,\n  { {0x20020ca9, 0x44390166, 0x69c02304, 0x00000000}},  //   _yuki_, krs_, gnme,\n  { {0x442b2487, 0x00000000, 0x00000000, 0x00000000}},  //   jsc_,   ,   ,\n  { {0x44390089, 0x39460b33, 0xfaa72488, 0x00000000}},  //   drs_, _ecos_, _пшен,\n  { {0x443900cc, 0xe5a6026b, 0x442b001a, 0x00000000}},  //   ers_, вини, esc_,\n  { {0x383502be, 0x9f580023, 0x442b00d2, 0x00000000}},  //   _андр, _pirë_, fsc_,\n  { {0x395f1566, 0x7dd800b9, 0x6fd10061, 0x00000000}},  //   meus_, míst, तकां,\n  { {0x33d502f0, 0x6a4a005f, 0x7dd80285, 0x00000000}},  //   гіст, _səfi, líst,\n  { {0x25e3013d, 0x20020058, 0x442b0051, 0x00000000}},  //   _टीवी_, _suki_, asc_,\n  { {0x7dd82489, 0x395f010d, 0x2002011c, 0x00000000}},  //   níst, neus_, _puki_,\n  { {0x66030215, 0x000400a1, 0xf5930025, 0x00000000}},  // [5fc0] _hunk, اثری, _خليج,\n  { {0x6723023a, 0x395f005b, 0x7524010f, 0x00000000}},  //   _jenj, heus_, _heiz,\n  { {0x6723020c, 0x752400bb, 0x395f00b0, 0x00000000}},  //   _menj, _keiz, keus_,\n  { {0x6603121b, 0x44200036, 0x200200b0, 0x00000000}},  //   _munk, _kwi_, _tuki_,\n  { {0x7dd8248a, 0x442001aa, 0x66030190, 0x00000000}},  //   díst, _jwi_, _lunk,\n  { {0x3946001a, 0x44200022, 0x75240032, 0x00000000}},  //   _scos_, _mwi_, _leiz,\n  { {0x39460066, 0x26060061, 0x395f00d4, 0x00000000}},  //   _pcos_, _संधी_, feus_,\n  { {0x7524001e, 0x7dd80b76, 0x443901d6, 0x00000000}},  //   _neiz, gíst, yrs_,\n  { {0x6723248b, 0xf1b3019b, 0x69c0248c, 0x00000000}},  //   _benj, יסה_, rnme,\n  { {0x66030142, 0x6723248d, 0xdb1a22ae, 0x00000000}},  //   _bunk, _cenj, _aktö,\n  { {0xa3d60164, 0x4420248e, 0x44390016, 0x00000000}},  //   िकन_, _awi_, wrs_,\n  { {0x9f580b32, 0x44390089, 0x6603010f, 0x00000000}},  //   _diré_, trs_, _dunk,\n  { {0x4439028c, 0x442d00f4, 0x3866001a, 0x00000000}},  //   urs_, ée_, _usor_,\n  { {0x4420018e, 0x67230065, 0x225a0093, 0x00000000}},  //   _dwi_, _genj, _bppk_,\n  { {0xa2d602fb, 0xf77200a1, 0x7dd81374, 0x00000000}},  //   _मुद्, _ماں_, níss,\n  { {0x7c2d0627, 0x442001aa, 0x672821ff, 0x00000000}},  //   šari, _fwi_, ladj,\n  { {0x10750930, 0x225a0288, 0x00000000, 0x00000000}},  // [5fd0] ылаю, _eppk_,   ,\n  { {0x6728037e, 0xcebb012b, 0x656d03b0, 0x00000000}},  //   nadj, мље_, _haah,\n  { {0xdfd80265, 0xa29503e8, 0x229504dd, 0x00000000}},  //   тът_, _сані, _синя,\n  { {0x7c2b06d3, 0xf6530097, 0x656f05af, 0x00000000}},  //   tsgr, יצע_, ndch,\n  { {0x656d00b0, 0x395f00d4, 0x212904cb, 0x00000000}},  //   _maah, veus_, maah_,\n  { {0xdd03038c, 0x21290557, 0x61fd019a, 0x00000000}},  //   ırıl, laah_, _hisl,\n  { {0x7dd82444, 0x61fd02bb, 0x6723002b, 0x00000000}},  //   tíst, _kisl, _renj,\n  { {0x672304cb, 0x656d248f, 0x660300b0, 0x00000000}},  //   _senj, _naah, _runk,\n  { {0x61fd0213, 0x75242490, 0x6723020c, 0x00000000}},  //   _misl, _reiz, _penj,\n  { {0x67282491, 0x395f0a0a, 0x656d0058, 0x00000000}},  //   gadj, seus_, _aaah,\n  { {0x6723000c, 0x44200e9e, 0xcb12009b, 0x00000000}},  //   _venj, _swi_, _הלב_,\n  { {0x2d9d01d5, 0x44202492, 0xe81e006e, 0x00000000}},  //   nkwe_, _pwi_, _मौका_,\n  { {0x67282493, 0xd6d40044, 0x69d92494, 0x00000000}},  //   badj, _হৃদয, _ikwe,\n  { {0x61fd2495, 0x290d001a, 0x9f582496, 0x00000000}},  //   _aisl, lcea_, _tiré_,\n  { {0x61fd010f, 0xdb030051, 0x00000000, 0x00000000}},  //   _bisl, ghné,   ,\n  { {0x290d001a, 0x442000ea, 0x76412497, 0x00000000}},  //   ncea_, _twi_, muly,\n  { {0x6a4a005f, 0x31600089, 0x4420011c, 0x00000000}},  // [5fe0] _həft, reiz_, _uwi_,\n  { {0x6d49000d, 0x3366019d, 0x6aa90044, 0x00000000}},  //   _acea, _свог, _কখনো,\n  { {0x3f910bbb, 0x69d90009, 0x656d0020, 0x00000000}},  //   _dozu_, _okwe, _yaah,\n  { {0x69d92498, 0x7dd81396, 0x67282499, 0x00000000}},  //   _nkwe, víss, zadj,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x4376007b, 0x0a6a0797, 0x09cc0061, 0x00000000}},  //   רײַן_, ерии_, ाव्य,\n  { {0x6728249a, 0xad5a02dc, 0x00000000, 0x00000000}},  //   vadj, _прах_,   ,\n  { {0x6d49002a, 0x7bc3249b, 0x7dd81396, 0x00000000}},  //   _gcea, annu, ríss,\n  { {0xa2d6007d, 0x6728002b, 0x656d00b0, 0x00000000}},  //   _मुस्, tadj, _raah,\n  { {0x38570025, 0x69d90066, 0x656d07a4, 0x00000000}},  //   اشيد_, _ekwe, _saah,\n  { {0x6728249c, 0x7fd70049, 0x00000000, 0x00000000}},  //   radj, רויס_,   ,\n  { {0xceb300b6, 0x6728249d, 0xdb01009d, 0x00000000}},  //   מית_, sadj, _allè,\n  { {0xa3c00061, 0x589601f7, 0xdb1800c4, 0x00000000}},  //   ंचं_, _حجاز, vivê,\n  { {0x656d249e, 0x644f0d9f, 0x00000000, 0x00000000}},  //   _waah, rtci,   ,\n  { {0x61fd006b, 0xc677023c, 0xdb970049, 0x00000000}},  //   _pisl, _محيط_, נדלט_,\n  { {0x80d30055, 0x00000000, 0x00000000, 0x00000000}},  //   _দৃষ্,   ,   ,\n  { {0x60f90a78, 0x61fd0089, 0x7bda011c, 0x00000000}},  // [5ff0] тная_, _visl, _oktu,\n  { {0x9f410051, 0x6d4907cd, 0x2fc70082, 0x00000000}},  //   lmhú_, _scea, õng_,\n  { {0x62670774, 0x61fd0ba0, 0x80d30044, 0x00000000}},  //   _صادق, _tisl, _দৃশ্,\n  { {0x61fd0020, 0x531400d3, 0xac19007c, 0x00000000}},  //   _uisl, _پذیر, воду_,\n  { {0x8b250242, 0x7a110089, 0x6dbc0f6c, 0x00000000}},  //   адле, _māte, včat,\n  { {0x69d913a7, 0x0ed00061, 0x764106ec, 0x00000000}},  //   _skwe, _तुकड, yuly,\n  { {0xf9910025, 0x00000000, 0x00000000, 0x00000000}},  //   قبة_,   ,   ,\n  { {0x7a0a0036, 0x00000000, 0x00000000, 0x00000000}},  //   _tętn,   ,   ,\n  { {0xf092007b, 0x290d001a, 0x0fb90164, 0x00000000}},  //   ַנט_, rcea_, _आषाढ,\n  { {0x998500a1, 0xe1ff00d4, 0x00000000, 0x00000000}},  //   الکو, _lió_,   ,\n  { {0x66e50139, 0xdb18000c, 0x00000000, 0x00000000}},  //   рона, fnvæ,   ,\n  { {0x58d50265, 0x69d9000b, 0x28750147, 0x00000000}},  //   _коет, _ukwe, _выкр,\n  { {0xdb01249f, 0x61e9002b, 0xdd140142, 0x00000000}},  //   _allé, ċell, núši,\n  { {0x7641006b, 0xe73902b0, 0x6dbc016e, 0x00000000}},  //   puly, _рек_, nčar,\n  { {0x412a0088, 0xa2d6006e, 0x41b602b0, 0x00000000}},  //   ково_, _मुश्, асат,\n  { {0xe1ff00d4, 0xdb180023, 0x00000000, 0x00000000}},  //   _ció_, tivë,   ,\n\n  { {0x2167019d, 0xe1ff077b, 0x02db013d, 0x00000000}},  // [6000] шити_, _dió_, _मुठभ,\n  { {0x44320784, 0xef1724a0, 0x2d800089, 0x00000000}},  //   _ivy_, иму_, ķiem_,\n  { {0x63bc0166, 0x433b0097, 0x00000000, 0x00000000}},  //   mirn, _בעיב,   ,\n  { {0xe1ff001d, 0x6b81000a, 0x63bc24a1, 0x00000000}},  //   _gió_, _anlg, lirn,\n  { {0x2ca0002a, 0x7d040089, 0x93cb00a1, 0x00000000}},  //   áid_, žiso, _سایہ_,\n  { {0x63bc000c, 0xc477009b, 0x399801e5, 0x00000000}},  //   nirn, יתנו_, _lést_,\n  { {0xead8007e, 0xeb971e8a, 0x00000000, 0x00000000}},  //   ымкі_, риј_,   ,\n  { {0x7c6604e1, 0x63bc020c, 0xdce0012d, 0x00000000}},  //   _پارل, hirn, _namć,\n  { {0xa3d602fb, 0xbee6001c, 0x629c005b, 0x00000000}},  //   िका_, _करुन_, hyro,\n  { {0x473401e0, 0x3dc601f3, 0x7bc8016c, 0x00000000}},  //   щнос, lnow_, _ujdu,\n  { {0xeb97012b, 0xc9860088, 0x6f790049, 0x00000000}},  //   _њих_, _вули, אָרג,\n  { {0x9980010a, 0x629c0145, 0x7bd808f4, 0x00000000}},  //   čių_, dyro, lovu,\n  { {0x5edd0044, 0xdb0300d6, 0xe1ff004a, 0x00000000}},  //   _বলছে, cinó, _rió_,\n  { {0xbee6001c, 0x7bd82142, 0xe1ff24a2, 0x00000000}},  //   _करून_, novu, _sió_,\n  { {0x79820038, 0xe5c7007c, 0x3dc601d0, 0x00000000}},  //   _know, _вспо, know_,\n  { {0x200f00c4, 0x7bd80387, 0x00000000, 0x00000000}},  //   ígio_, hovu,   ,\n  { {0x20980783, 0x644004bd, 0x88d80044, 0x00000000}},  // [6010] акты_, àmit, দেরক,\n  { {0x63bc24a3, 0x00000000, 0x00000000, 0x00000000}},  //   cirn,   ,   ,\n  { {0x6dbc050f, 0xdb1800b0, 0x7bd809ab, 0x00000000}},  //   včar, invä, dovu,\n  { {0x7db4007e, 0x00000000, 0x00000000, 0x00000000}},  //   осіц,   ,   ,\n  { {0x65a6000c, 0x6dbc012d, 0x8d7404b1, 0x00000000}},  //   _jóha, tčar, تالا,\n  { {0xda650379, 0x1b49007c, 0x3e170014, 0x00000000}},  //   ماعي, узки_, _نظرس,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x26c90107, 0x63bc016e, 0xdb0324a4, 0x00000000}},  //   _ćao_, zirn, tinó,\n  { {0x629c0036, 0xe8f9007c, 0x6d5b0022, 0x00000000}},  //   zyro, ыли_, _ibua,\n  { {0x3998000c, 0xf745003b, 0x00000000, 0x00000000}},  //   _sést_, љено,   ,\n  { {0x63bc0059, 0xb8fe0164, 0xdce00243, 0x00000000}},  //   virn, _दु_, _pamć,\n  { {0xdb0300f6, 0x00000000, 0x00000000, 0x00000000}},  //   cinò,   ,   ,\n  { {0x291f000b, 0x63bc000c, 0x7ae10203, 0x00000000}},  //   mbua_, tirn, _hylt,\n  { {0x629c0065, 0xa01b000c, 0xdb1800f4, 0x00000000}},  //   tyro, _kröf, tivé,\n  { {0xd29901fb, 0x3dc60009, 0x63bc24a5, 0x00000000}},  //   атті_, ynow_, rirn,\n  { {0xdb1800f4, 0x7bd824a6, 0xa06a00e2, 0x00000000}},  //   rivé, zovu, лаба_,\n  { {0x351b009b, 0x7bd824a7, 0x629c00f8, 0x00000000}},  // [6020] _גופנ, yovu, syro,\n  { {0x64460b9a, 0x6d5b0022, 0x4477009b, 0x00000000}},  //   muki, _abua, _פעיל_,\n  { {0x3dc60066, 0xe29a00ed, 0x6446206c, 0x00000000}},  //   tnow_, _сан_, luki,\n  { {0x60c90006, 0x00000000, 0x00000000, 0x00000000}},  //   _žeme,   ,   ,\n  { {0x98a40089, 0x64460020, 0x61e40095, 0x00000000}},  //   kamā_, nuki, mlil,\n  { {0x2a6c0181, 0x798207fc, 0x6d5b0022, 0x00000000}},  //   _psdb_, _snow, _ebua,\n  { {0x6e9601f7, 0x7bd80a89, 0x64460020, 0x00000000}},  //   _الزا, rovu, huki,\n  { {0xd90e00e9, 0x481401fb, 0xa8140216, 0x00000000}},  //   ریت_, омис, одиш,\n  { {0xc1730104, 0xa01b010f, 0x644600bf, 0x00000000}},  //   לחה_, _eröf, juki,\n  { {0x6446006c, 0x61e4104a, 0xc3010044, 0x00000000}},  //   duki, hlil, ্রতি_,\n  { {0xdb180039, 0x61e4014a, 0x9f5800f6, 0x00000000}},  //   rnvä, klil, _mirà_,\n  { {0x6f011261, 0x758b007c, 0x644600e7, 0x00000000}},  //   _úlce, усов_, fuki,\n  { {0xe894132a, 0x88940b86, 0x644600e7, 0x00000000}},  //   _фаль, _филх, guki,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xf1a7017a, 0xb284007c, 0xa01b0210, 0x00000000}},  //   бран, пытк, _krög,\n  { {0x61f60061, 0x6446011c, 0x61e4006a, 0x00000000}},  //   gmyl, buki, glil,\n  { {0x752f0036, 0x644624a8, 0x32020062, 0x00000000}},  // [6030] macz, cuki, _diky_,\n  { {0xdb030051, 0xb17b0039, 0x752f0036, 0x00000000}},  //   thní, _skåd, lacz,\n  { {0x9f580c42, 0x00000000, 0x00000000, 0x00000000}},  //   _dirà_,   ,   ,\n  { {0x752f0046, 0xcd2b007a, 0x61e4004a, 0x00000000}},  //   nacz, اسان_, clil,\n  { {0x6738016e, 0x7ae105d5, 0x660a0b14, 0x00000000}},  //   _odvj, _sylt, _lufk,\n  { {0x7ae101c3, 0xc5cf0044, 0x29060258, 0x00000000}},  //   _pylt, রতিপ, _agoa_,\n  { {0x6446002d, 0x68e20300, 0x1989007c, 0x00000000}},  //   zuki, _ayod, ибки_,\n  { {0x200b037e, 0x4859008b, 0x00000000, 0x00000000}},  //   _kuci_, ароў_,   ,\n  { {0x9f470011, 0x660a010f, 0x212b0324, 0x00000000}},  //   _điên_, _aufk, _mech_,\n  { {0x61e4011f, 0x6d4a005d, 0x20030020, 0x00000000}},  //   zlil, ılaş, _jiji_,\n  { {0x200b0e1c, 0x8aa70c27, 0x20030020, 0x00000000}},  //   _luci_, _урад, _miji_,\n  { {0x6d4b24a9, 0x6446000b, 0x20190004, 0x00000000}},  //   ngga, tuki, _otsi_,\n  { {0x92e60055, 0x69c90944, 0xdb0a0210, 0x00000000}},  //   _ফলে_, mnee, rnfö,\n  { {0xb6a5007c, 0x69c907a5, 0x20030022, 0x00000000}},  //   _милл, lnee, _niji_,\n  { {0x752f0036, 0x64462301, 0x61e4014a, 0x00000000}},  //   bacz, suki, tlil,\n  { {0x69c924aa, 0x64460020, 0xa3ba00a6, 0x00000000}},  //   nnee, puki, _چادر_,\n  { {0x69c900b0, 0xa3ba06dd, 0xb886000c, 0x00000000}},  // [6040] inee, _نادر_, mtíð,\n  { {0x200305fa, 0x61e40213, 0x69db07f3, 0x00000000}},  //   _ciji_, slil, houe,\n  { {0x201900b0, 0x66040ac2, 0x00000000, 0x00000000}},  //   _etsi_, _kiik,   ,\n  { {0xed5a04af, 0x6d4b001c, 0xec7a24ab, 0x00000000}},  //   род_, ggga, ипе_,\n  { {0x0b8a1079, 0x200b1c70, 0x66040052, 0x00000000}},  //   иски_, _guci_, _miik,\n  { {0x660408b2, 0xdce00224, 0x212b0c10, 0x00000000}},  //   _liik, _zamě, _zech_,\n  { {0xada6007c, 0xee3700ed, 0x387d005b, 0x00000000}},  //   _давл, _мнр_, _arwr_,\n  { {0x8c4609da, 0xa9c30088, 0xd90d0014, 0x00000000}},  //   _мебе, дськ, هیم_,\n  { {0x80dc0055, 0x995800b9, 0x3f9824ac, 0x00000000}},  //   _মৃত্, _též_, _koru_,\n  { {0x81d00044, 0x752f0036, 0x00000000, 0x00000000}},  //   ষতি_, wacz,   ,\n  { {0xf09f0011, 0x3f982479, 0x7a110089, 0x00000000}},  //   _ngàn_, _moru_, _tāta,\n  { {0x69db009d, 0x00000000, 0x00000000, 0x00000000}},  //   coue,   ,   ,\n  { {0xf76f007a, 0x69c000b0, 0x212b01ee, 0x00000000}},  //   رای_, mime, _rech_,\n  { {0x67ef0030, 0x200b0091, 0x212b061d, 0x00000000}},  //   tøje, _ruci_, _sech_,\n  { {0x200b24ad, 0x212b054e, 0xdce000b9, 0x00000000}},  //   _suci_, _pech_, _pamě,\n  { {0xdb1824ae, 0x660400e0, 0x76480022, 0x00000000}},  //   diví, _giik, mudy,\n  { {0x9abc01d5, 0x3f9822d9, 0x859c009b, 0x00000000}},  // [6050] _deċi, _boru_, _כשהו,\n  { {0xa2d602fb, 0x4429107e, 0x69c00715, 0x00000000}},  //   _मुक्, _iwa_, hime,\n  { {0x69c00065, 0x69c900b0, 0x442924af, 0x00000000}},  //   kime, ynee, _hwa_,\n  { {0x44290be3, 0xdd9100a1, 0x200b0107, 0x00000000}},  //   _kwa_, رڈز_, _tuci_,\n  { {0x3f98022b, 0x0c2401fb, 0x800900a1, 0x00000000}},  //   _foru_, дмін, _درجہ_,\n  { {0x44290f59, 0xb09a00b6, 0x3f980107, 0x00000000}},  //   _mwa_, _הישר, _goru_,\n  { {0x44290263, 0x69c024b0, 0x69c9040f, 0x00000000}},  //   _lwa_, fime, tnee,\n  { {0x69c00238, 0xdb030051, 0x3f9804eb, 0x00000000}},  //   gime, ghná, _zoru_,\n  { {0x69c90007, 0x44290263, 0x66040004, 0x00000000}},  //   rnee, _nwa_, _riik,\n  { {0x7c290016, 0x69c924b1, 0x660424b2, 0x00000000}},  //   _iwer, snee, _siik,\n  { {0x4429011c, 0x69c00ab1, 0x672102aa, 0x00000000}},  //   _awa_, bime, rblj,\n  { {0x69c002d5, 0x44290263, 0x7c290009, 0x00000000}},  //   cime, _bwa_, _kwer,\n  { {0x6604021e, 0x31690032, 0xd4da007e, 0x00000000}},  //   _viik, deaz_, сьні_,\n  { {0x442924b3, 0x394d0030, 0xf7710b03, 0x00000000}},  //   _dwa_, lges_, _سات_,\n  { {0xa2d60201, 0x66e2012b, 0x386d1ffe, 0x00000000}},  //   _मुख्, _поша, lwer_,\n  { {0x44290263, 0x394d0038, 0x3f98011f, 0x00000000}},  //   _fwa_, nges_, _soru_,\n  { {0x442924a8, 0x799901c3, 0x6ed4006e, 0x00000000}},  // [6060] _gwa_, _moww, _बुजु,\n  { {0xe457007b, 0x69c024b4, 0xe3b200a6, 0x00000000}},  //   _צייט_, zime, _سرخ_,\n  { {0x3f98009f, 0xdfcf0379, 0x386d010f, 0x00000000}},  //   _voru_, ديل_, hwer_,\n  { {0x24801097, 0x69c01a50, 0x21020006, 0x00000000}},  //   _krim_, xime, _ačiū_,\n  { {0xdca3025f, 0x69c00851, 0x3f9824b5, 0x00000000}},  //   наци, vime, _toru_,\n  { {0x7fd601ff, 0x7c290112, 0x69c001c3, 0x00000000}},  //   _хімі, _dwer, wime,\n  { {0x89d80076, 0x386d10c5, 0x7c290168, 0x00000000}},  //   يوتر_, ewer_, _ewer,\n  { {0x394d01e3, 0x00000000, 0x00000000, 0x00000000}},  //   gges_,   ,   ,\n  { {0x7c29056a, 0x8c43007c, 0xbb46005e, 0x00000000}},  //   _gwer, _пете, _неак,\n  { {0x69c00993, 0x44290045, 0x6c330025, 0x00000000}},  //   sime, _rwa_, _أفلا,\n  { {0x45d501f9, 0x442901aa, 0x6b880030, 0x00000000}},  //   донс, _swa_, _indg,\n  { {0x2480088f, 0x442901aa, 0x6b9a1820, 0x00000000}},  //   _brim_, _pwa_, _hotg,\n  { {0x248000d4, 0xd7fa01c0, 0x18670256, 0x00000000}},  //   _crim_, _лук_, _наци_,\n  { {0x083b00b6, 0x75ff001e, 0xb4bd0164, 0x00000000}},  //   _פעול, _mūzi, _आधी_,\n  { {0xcfc40044, 0xd6cf005c, 0x3169002d, 0x00000000}},  //   ্তান, _чт_, teaz_,\n  { {0x44290263, 0x6b9a24b6, 0x24800145, 0x00000000}},  //   _twa_, _lotg, _frim_,\n  { {0x24800875, 0x442921a4, 0x31691424, 0x00000000}},  // [6070] _grim_, _uwa_, reaz_,\n  { {0xdefb007c, 0x7c290045, 0x06fd013e, 0x00000000}},  //   бые_, _rwer, čívá_,\n  { {0x7c29095b, 0x3ea70010, 0xc7d7009b, 0x00000000}},  //   _swer, ánt_, לומי_,\n  { {0x23490123, 0x386d0007, 0x7c291a62, 0x00000000}},  //   _اسکی_, ywer_, _pwer,\n  { {0x7c290082, 0xeb9910f2, 0x799901d6, 0x00000000}},  //   _qwer, жил_, _roww,\n  { {0x1af10044, 0x92580123, 0x00000000, 0x00000000}},  //   _চলবে_, _بشیر_,   ,\n  { {0x394d04bd, 0x00000000, 0x00000000, 0x00000000}},  //   tges_,   ,   ,\n  { {0xcda9007a, 0x394d2271, 0x7c290066, 0x00000000}},  //   _بهره_, uges_, _twer,\n  { {0x386d00bb, 0x65760145, 0x6b9a0203, 0x00000000}},  //   uwer_, _rayh, _fotg,\n  { {0xdb010010, 0x394d009d, 0x79990085, 0x00000000}},  //   _ellá, sges_, _woww,\n  { {0x386d00ab, 0x0f5800a3, 0xc9870216, 0x00000000}},  //   swer_, ליזם_, _нуди,\n  { {0x248023b4, 0x63be0022, 0x00000000, 0x00000000}},  //   _prim_, _smpn,   ,\n  { {0xe7390423, 0x00000000, 0x00000000, 0x00000000}},  //   _дел_,   ,   ,\n  { {0xdb0a1889, 0x7bc3006c, 0x98140025, 0x00000000}},  //   lifò, ninu, _أبنا,\n  { {0x91e6005e, 0x98a40006, 0x21760878, 0x00000000}},  //   дове, ramą_, муар,\n  { {0x24800bd3, 0x7bc30058, 0xf8e10061, 0x00000000}},  //   _trim_, hinu, _पडाय,\n  { {0x91e3003b, 0x7bc3179b, 0x6283004a, 0x00000000}},  // [6080] тоте, kinu, _ánon,\n  { {0xdfcf0054, 0x7bc30704, 0x249f010f, 0x00000000}},  //   ليق_, jinu, äume_,\n  { {0x7bc324b7, 0x7e562329, 0xe12600e2, 0x00000000}},  //   dinu, ьтац, _омни,\n  { {0x26130181, 0x00000000, 0x00000000, 0x00000000}},  //   _mão_,   ,   ,\n  { {0x3ea6001e, 0x26130011, 0x6b9a0007, 0x00000000}},  //   ņot_, _lão_, _potg,\n  { {0x7bc30004, 0xbf9b009d, 0x09d60061, 0x00000000}},  //   ginu, _quêt, डक्य,\n  { {0x261302d5, 0x00000000, 0x00000000, 0x00000000}},  //   _não_,   ,   ,\n  { {0xc8080082, 0xa8a610f3, 0x00000000, 0x00000000}},  //   _hởi_, дрок,   ,\n  { {0x7bc3006c, 0x00000000, 0x00000000, 0x00000000}},  //   binu,   ,   ,\n  { {0x26130011, 0x6b881c8c, 0x7bc30035, 0x00000000}},  //   _bão_, _undg, cinu,\n  { {0x7c220051, 0x26130181, 0x00000000, 0x00000000}},  //   lpor, _cão_,   ,\n  { {0xf64f026c, 0x26130181, 0xfaa30072, 0x00000000}},  //   گئی_, _dão_, _шахо,\n  { {0x7c22002d, 0x79fb009b, 0xe4e40088, 0x00000000}},  //   npor, _ולאח, вірн,\n  { {0xf1bf009f, 0x29020006, 0x1af10044, 0x00000000}},  //   _smá_, žkas_, _চলতে_,\n  { {0x644606d5, 0xdce20095, 0x00000000, 0x00000000}},  //   arki, ydoğ,   ,\n  { {0x260703d7, 0x250900a6, 0x7bc309e3, 0x00000000}},  //   _सूची_, _عربی_, zinu,\n  { {0x765a24b8, 0x00000000, 0x00000000, 0x00000000}},  // [6090] ltty,   ,   ,\n  { {0xc808001d, 0x7c220387, 0x44391b5a, 0x00000000}},  //   _bởi_, dpor, mss_,\n  { {0x4439001e, 0x7c2224b9, 0x2bdd0309, 0x00000000}},  //   lss_, epor, यवसा,\n  { {0x386624ba, 0x7c2201c3, 0x4439004a, 0x00000000}},  //   _opor_, fpor, oss_,\n  { {0x44391263, 0x7bc324bb, 0x7c22118a, 0x00000000}},  //   nss_, tinu, gpor,\n  { {0xdb1807fd, 0x765a0109, 0x5ba90204, 0x00000000}},  //   tivá, ktty, कसेव,\n  { {0xc808001d, 0x7bc3127b, 0xbed5003b, 0x00000000}},  //   _gởi_, rinu, _човј,\n  { {0x4439001e, 0x7bc30b1a, 0xceb20104, 0x00000000}},  //   kss_, sinu, _עין_,\n  { {0x26130fb3, 0x31790046, 0xf77100b8, 0x00000000}},  //   _são_, _masz_, هاد_,\n  { {0x26130181, 0x44390087, 0x765a068f, 0x00000000}},  //   _pão_, dss_, ftty,\n  { {0x65c600d7, 0x443b006b, 0x60c90c8a, 0x00000000}},  //   ебна, _avq_, _žeml,\n  { {0x26130181, 0xb17b0d32, 0x99840025, 0x00000000}},  //   _vão_, _skån, _للمو,\n  { {0xa8a701ef, 0x798b06be, 0x160b013d, 0x00000000}},  //   _تصاو, _ingw, _संकर_,\n  { {0x26130181, 0x889a009b, 0x00000000, 0x00000000}},  //   _tão_, _מבני,   ,\n  { {0x36660265, 0x80ec0044, 0x765a24bc, 0x00000000}},  //   _защо_, _কলেজ_, ctty,\n  { {0x7d1b002b, 0x395f0068, 0x443906ed, 0x00000000}},  //   _nfus, nfus_, bss_,\n  { {0xa0670200, 0x65640061, 0x44392123, 0x00000000}},  // [60a0] ната_, _ibih, css_,\n  { {0x4420000d, 0x7d1b24bd, 0x00000000, 0x00000000}},  //   _iti_, _afus,   ,\n  { {0x44200093, 0x6da6017f, 0x2f150010, 0x00000000}},  //   _hti_, нижа, _súgó_,\n  { {0x442004d4, 0x7c22016e, 0xd1ba00a1, 0x00000000}},  //   _kti_, tpor, _راجا_,\n  { {0x61e601d5, 0x442000e5, 0x00000000, 0x00000000}},  //   _ikkl, _jti_,   ,\n  { {0x442013df, 0xa01b03a2, 0x798b0173, 0x00000000}},  //   _mti_, _krön, _angw,\n  { {0x3866011f, 0x6905005f, 0xed6301dc, 0x00000000}},  //   _spor_, ərdə, íží_,\n  { {0x443902e1, 0xfce60088, 0xdbd2006c, 0x00000000}},  //   yss_, _зобо, lüüs,\n  { {0x6d40005f, 0xc7c6025f, 0x442024be, 0x00000000}},  //   _idma, есни, _nti_,\n  { {0x67e6000c, 0x65640c4a, 0x7ae801c3, 0x00000000}},  //   yðju, _abih, _tydt,\n  { {0x44201567, 0xffb7007b, 0xa9260216, 0x00000000}},  //   _ati_, גליש_, _здел,\n  { {0x7bc10027, 0x200a24bf, 0x798b00e0, 0x00000000}},  //   _zmlu, _libi_, _gngw,\n  { {0x443901c5, 0x765a24c0, 0x69c20022, 0x00000000}},  //   uss_, stty, _imoe,\n  { {0x443911ef, 0x44200253, 0x75f6013e, 0x00000000}},  //   rss_, _dti_, váze,\n  { {0x6d400119, 0x442024c1, 0xa785007a, 0x00000000}},  //   _odma, _eti_, _جشنو,\n  { {0x44200fa2, 0x44390145, 0xdb180103, 0x00000000}},  //   _fti_, pss_, livä,\n  { {0x656f0020, 0x200a0020, 0x00000000, 0x00000000}},  // [60b0] mech, _bibi_,   ,\n  { {0xdb01021e, 0x6d4000b5, 0x75f600b9, 0x00000000}},  //   _yllä, _adma, ráze,\n  { {0x644f0c2e, 0xa01b0039, 0x645d006c, 0x00000000}},  //   luci, _grön, ltsi,\n  { {0x657d008d, 0x656f0161, 0x7bc100b9, 0x00000000}},  //   ndsh, nech, _smlu,\n  { {0x644f24c2, 0x645d24c3, 0x2129020c, 0x00000000}},  //   nuci, ntsi, mbah_,\n  { {0x61ed0047, 0x200a011f, 0xcb660794, 0x00000000}},  //   llal, _gibi_, ваше_,\n  { {0x9e350088, 0x645d006c, 0x656f00e7, 0x00000000}},  //   _шевч, htsi, kech,\n  { {0x645d0004, 0x9f410065, 0x644f007f, 0x00000000}},  //   ktsi, kohë_, kuci,\n  { {0x644f041a, 0x656f137e, 0x61ed0fd5, 0x00000000}},  //   juci, dech, ilal,\n  { {0x644f20e8, 0x81d70044, 0xb17b1a96, 0x00000000}},  //   duci, িতি_, _skål,\n  { {0x4420001a, 0x61ed01ee, 0x2d9f0007, 0x00000000}},  //   _sti_, klal, _koue_,\n  { {0x644f027b, 0x2d9f0e16, 0x4420009d, 0x00000000}},  //   fuci, _joue_, _pti_,\n  { {0x81d70055, 0x644f0107, 0xe4e5007e, 0x00000000}},  //   িতা_, guci, гіён,\n  { {0xf74508d6, 0xf8b6009b, 0x2d9f009d, 0x00000000}},  //   _реко, _בפני_, _loue_,\n  { {0x645d17c6, 0xf770002c, 0x39980010, 0x00000000}},  //   atsi, _دان_, _rész_,\n  { {0x644f049a, 0x61ed24c4, 0x200a01aa, 0x00000000}},  //   buci, glal, _sibi_,\n  { {0x644f24c5, 0x44201335, 0x6285010f, 0x00000000}},  // [60c0] cuci, _uti_, _erho,\n  { {0x61ed011c, 0x00000000, 0x00000000, 0x00000000}},  //   alal,   ,   ,\n  { {0x25a00022, 0xdb1802e1, 0x21290145, 0x00000000}},  //   _koil_, nivå, bbah_,\n  { {0x90c6008b, 0x290f10ed, 0x00000000, 0x00000000}},  //   _абме, _ngga_,   ,\n  { {0x61e400b0, 0x2d9f00d4, 0x200a20e3, 0x00000000}},  //   moil, _doue_, _tibi_,\n  { {0x656f0046, 0x69c200bb, 0x61e400b0, 0x00000000}},  //   zech, _smoe, loil,\n  { {0x644f0036, 0x656f00e7, 0xdce00089, 0x00000000}},  //   zuci, yech, _pamē,\n  { {0xf2d3009b, 0x497417da, 0x61e400b0, 0x00000000}},  //   יעו_, улис, noil,\n  { {0x656f0211, 0x645d0203, 0xdb180bac, 0x00000000}},  //   vech, xtsi, tivä,\n  { {0x656f12dc, 0x644f016e, 0x61e40c7f, 0x00000000}},  //   wech, vuci, hoil,\n  { {0xe5350eec, 0x61e400b0, 0x8f370049, 0x00000000}},  //   лень, koil, כטיג_,\n  { {0x644f049a, 0xa01b0039, 0xb5a70242, 0x00000000}},  //   tuci, _bröl, трой,\n  { {0x656f24c6, 0x657d0ff3, 0x645d0009, 0x00000000}},  //   rech, rdsh, utsi,\n  { {0x645d022b, 0x656f0211, 0xc7b000a1, 0x00000000}},  //   rtsi, sech, _چڑھ_,\n  { {0x645d24c7, 0x656f2061, 0x764f0036, 0x00000000}},  //   stsi, pech, ącyc,\n  { {0x628500ee, 0x644f24c8, 0x645d050d, 0x00000000}},  //   _vrho, puci, ptsi,\n  { {0x61ed0149, 0x2d9f009d, 0x21291087, 0x00000000}},  // [60d0] rlal, _roue_, rbah_,\n  { {0x21290145, 0x4ea70216, 0x2d8d00d9, 0x00000000}},  //   sbah_, креа, _snee_,\n  { {0xdbdc000c, 0x660d1658, 0xe45f00b0, 0x00000000}},  //   _ráðh, _kiak, ltö_,\n  { {0x61e40051, 0x9c5924c9, 0x1c391001, 0x00000000}},  //   coil, ешку_, езды_,\n  { {0x660d000b, 0xfeb80014, 0x60090006, 0x00000000}},  //   _miak, _یافت_, _užmo,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x68eb0030, 0x75f60010, 0xaa56003b, 0x00000000}},  //   _sygd, háza, гију_,\n  { {0x1619006e, 0x75f606b8, 0x99f5007e, 0x00000000}},  //   _नंबर_, káza, ыялі,\n  { {0x76b3006b, 0xf1b400a0, 0x00000000, 0x00000000}},  //   məyə, יסק_,   ,\n  { {0x76b3006b, 0x25a024ca, 0x660d1968, 0x00000000}},  //   ləyə, _soil_, _aiak,\n  { {0xadc30011, 0x25a0009d, 0x660d0022, 0x00000000}},  //   _giản, _poil_, _biak,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x660d0169, 0xa7850318, 0x61e424cb, 0x00000000}},  //   _diak, _مشغو, voil,\n  { {0xb88201ca, 0x69c90abf, 0x00000000, 0x00000000}},  //   čítk, liee,   ,\n  { {0x614600da, 0xa01b0039, 0x61e400b0, 0x00000000}},  //   лева, _dröm, toil,\n  { {0x69c90116, 0xa01b01e5, 0x00000000, 0x00000000}},  //   niee, _tröl,   ,\n  { {0x61e400b0, 0x75f6004a, 0x1f660888, 0x00000000}},  // [60e0] roil, cáza, лкам,\n  { {0xb35800a1, 0x6497009b, 0x61e40358, 0x00000000}},  //   _جیسا_, _עדיף_, soil,\n  { {0x443224cc, 0x4d4a0aa2, 0x69c924cd, 0x00000000}},  //   _hwy_, епен_, kiee,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xac9402ea, 0x00000000, 0x00000000, 0x00000000}},  //   ралш,   ,   ,\n  { {0x4432018e, 0xeb970264, 0x9bc80025, 0x00000000}},  //   _mwy_, лич_, ضوعك_,\n  { {0x69c90328, 0x00000000, 0x00000000, 0x00000000}},  //   fiee,   ,   ,\n  { {0xdb080039, 0x69c9006c, 0x60c90006, 0x00000000}},  //   _omdö, giee, _žemi,\n  { {0x44320016, 0x660d1166, 0x00000000, 0x00000000}},  //   _nwy_, _riak,   ,\n  { {0x473400ed, 0x660d05cd, 0x75f61f92, 0x00000000}},  //   шнос, _siak, váza,\n  { {0x80cb01f5, 0x17f70025, 0x7bca0203, 0x00000000}},  //   _सेने, درية_, mifu,\n  { {0xe9da0088, 0x7bca0020, 0x69c900bb, 0x00000000}},  //   _яке_, lifu, ciee,\n  { {0xe973007a, 0x2bdb013d, 0x81ab0044, 0x00000000}},  //   _دهند, _बदमा, কোড_,\n  { {0x44320016, 0x7bca24ce, 0x75f60010, 0x00000000}},  //   _dwy_, nifu, ráza,\n  { {0x171b007b, 0x62351534, 0xe45f00b0, 0x00000000}},  //   _אווע, ребу, stö_,\n  { {0x1619001c, 0x4432018e, 0x27fc0082, 0x00000000}},  //   _नंतर_, _fwy_, _hhvn_,\n  { {0x7bca0020, 0x2a6c0022, 0x2f1901ab, 0x00000000}},  // [60f0] kifu, _lpdb_, возь_,\n  { {0x7bca000b, 0x24890173, 0x673a24cf, 0x00000000}},  //   jifu, _iram_, natj,\n  { {0x76b3006b, 0x0dcb00ec, 0x248904eb, 0x00000000}},  //   təyə, нуди_, _hram_,\n  { {0x24890039, 0x673a0010, 0xd657009b, 0x00000000}},  //   _kram_, hatj, ריאת_,\n  { {0xa91d07a6, 0x00000000, 0x00000000, 0x00000000}},  //   ndže,   ,   ,\n  { {0x673a0023, 0x7bca1233, 0x00000000, 0x00000000}},  //   jatj, gifu,   ,\n  { {0x3f910009, 0x69c914e0, 0x00000000, 0x00000000}},  //   _inzu_, tiee,   ,\n  { {0x629a00b0, 0x395902fa, 0x24890048, 0x00000000}},  //   ätoi, üss_, _oram_,\n  { {0xc7950147, 0x69c900b5, 0xa91d04eb, 0x00000000}},  //   арны, riee, jdže,\n  { {0x3f8124d0, 0x44320016, 0x69c901d6, 0x00000000}},  //   ndhu_, _rwy_, siee,\n  { {0x7bfa007b, 0x2c1d0044, 0x69c900b5, 0x00000000}},  //   _ספעצ, _নিয়ে_, piee,\n  { {0x4432018e, 0x69330167, 0x248910ae, 0x00000000}},  //   _pwy_, _اکثر, _bram_,\n  { {0x673a01d6, 0x27e500ca, 0xb4c20316, 0x00000000}},  //   batj, poln_, ्पे_,\n  { {0xf7710644, 0xa01b0039, 0xd3480014, 0x00000000}},  //   _ذات_, _tröj, دیده_,\n  { {0x24891f5b, 0xa01b18f7, 0x75360095, 0x00000000}},  //   _eram_, _frök, _teyz,\n  { {0x248924d1, 0xdb010181, 0x2b45009d, 0x00000000}},  //   _fram_, _polê, _ldlc_,\n  { {0x7bca0009, 0x00000000, 0x00000000, 0x00000000}},  // [6100] yifu,   ,   ,\n  { {0x6d5b24d2, 0xee0e0309, 0xc43b009b, 0x00000000}},  //   _acua, िद्ध_, _שתיי,\n  { {0xdb010023, 0x00000000, 0x00000000, 0x00000000}},  //   _dolë,   ,   ,\n  { {0x93250014, 0x4c860081, 0x22db08cd, 0x00000000}},  //   _پرین, илев, _יחיא,\n  { {0x272200b9, 0x7bca0197, 0x6e290059, 0x00000000}},  //   nční_, tifu, _čebe,\n  { {0x6d5b0211, 0xdb0101aa, 0x2a6c0093, 0x00000000}},  //   _ecua, _kolè, _ppdb_,\n  { {0x2d960121, 0x7bca000c, 0x00000000, 0x00000000}},  //   _крас, rifu,   ,\n  { {0xdca60069, 0x272201dc, 0x3869001a, 0x00000000}},  //   _каби, kční_, _ţara_,\n  { {0x673a0010, 0xb997007c, 0x1d0700ed, 0x00000000}},  //   tatj, рвых_, _вети_,\n  { {0x07b806ea, 0x2c600173, 0x00000000, 0x00000000}},  //   اهدة_, mòd_,   ,\n  { {0x673a00d4, 0x24890213, 0xdce0007f, 0x00000000}},  //   ratj, _sram_, _pamė,\n  { {0x5886008b, 0xa01b01a2, 0xc8c700a2, 0x00000000}},  //   _выка, _fröh, اوین_,\n  { {0x5454007c, 0x39460978, 0x00000000, 0x00000000}},  //   овят, _idos_,   ,\n  { {0x9f580b32, 0x533424d3, 0x60c9013f, 0x00000000}},  //   _miró_, жерт, _ümmə,\n  { {0x31c7008b, 0xdb01009d, 0x2722093f, 0x00000000}},  //   асав, _colè, ační_,\n  { {0x24890129, 0xa535007c, 0x00000000, 0x00000000}},  //   _tram_, _унич,   ,\n  { {0x753d115b, 0x40590070, 0x00000000, 0x00000000}},  // [6110] masz, طلاح_,   ,\n  { {0x753d0047, 0x2fc7001d, 0xdf390054, 0x00000000}},  //   lasz, òng_, اكات_,\n  { {0x39460006, 0x3ea71a5e, 0x3f810145, 0x00000000}},  //   _odos_, ânt_, rdhu_,\n  { {0x753d0010, 0x2b450022, 0xac190131, 0x00000000}},  //   nasz, _sdlc_, году_,\n  { {0xbc4800ed, 0x442b0082, 0x63a50994, 0x00000000}},  //   ачје_, npc_, _kohn,\n  { {0x67380243, 0x394624d4, 0x753d0010, 0x00000000}},  //   _nevj, _ados_, hasz,\n  { {0xe1ff001d, 0x21390065, 0x753d0c59, 0x00000000}},  //   _khó_, _kesh_, kasz,\n  { {0x2011000b, 0x21390065, 0x63a5010f, 0x00000000}},  //   _hizi_, _jesh_, _lohn,\n  { {0xdb0124d5, 0x39460082, 0x213900ab, 0x00000000}},  //   _molé, _ddos_, _mesh_,\n  { {0x20190036, 0x2795007c, 0xdcfb0006, 0x00000000}},  //   _musi_, сшир, _jauč,\n  { {0x6b9c0129, 0x201100ca, 0x67380066, 0x00000000}},  //   _òrga, _mizi_, _devj,\n  { {0x6d590503, 0x21390065, 0x753d0010, 0x00000000}},  //   ngwa, _nesh_, gasz,\n  { {0xdb010263, 0x6b810058, 0xdd7a0049, 0x00000000}},  //   _solè, _kalg, נטשל,\n  { {0x6b810004, 0xdcfb0119, 0x272200b9, 0x00000000}},  //   _jalg, _nauč, rční_,\n  { {0x6b810e6d, 0x213924d6, 0x2c6001aa, 0x00000000}},  //   _malg, _besh_, zòd_,\n  { {0xdb010181, 0xe1ff0011, 0x20191750, 0x00000000}},  //   _colé, _chó_, _busi_,\n  { {0x2011022b, 0x2120014a, 0x3ff60025, 0x00000000}},  // [6120] _bizi_, rcih_, مكرر,\n  { {0x6b81008e, 0xc49b009b, 0x2a690036, 0x00000000}},  //   _nalg, _עשית, łaby_,\n  { {0x2011011f, 0x764102b4, 0x91e60517, 0x00000000}},  //   _dizi_, nsly, _гоне,\n  { {0x7e4b00a1, 0x20190197, 0x2c6001aa, 0x00000000}},  //   اسلہ_, _fusi_, tòd_,\n  { {0x20110173, 0x9f580197, 0x2019008a, 0x00000000}},  //   _fizi_, _dirò_, _gusi_,\n  { {0x6b8124d7, 0x6fb61019, 0x09d00061, 0x00000000}},  //   _calg, _امسا, तच्य,\n  { {0x7524022b, 0x37cd0044, 0xdce8006b, 0x00000000}},  //   _ofiz, রকার, ılıq,\n  { {0x9f5808d3, 0x00000000, 0x00000000, 0x00000000}},  //   _tiró_,   ,   ,\n  { {0xa3c903d7, 0x6b8100d4, 0x753d0010, 0x00000000}},  //   लोड_, _falg, vasz,\n  { {0xbb430140, 0xe7d60044, 0x907b00a0, 0x00000000}},  //   _неук, হত্য, נטיי,\n  { {0x7bdf00f4, 0x753d0c59, 0x63a507e7, 0x00000000}},  //   éque, tasz, _rohn,\n  { {0xd6d707ca, 0xceb300a0, 0x644f016c, 0x00000000}},  //   сть_, פיר_, trci,\n  { {0x753d108d, 0x8b0300b9, 0xe4e703e8, 0x00000000}},  //   rasz, ěřen, сінн,\n  { {0x9f580051, 0x38cb0167, 0xdb0324d8, 0x00000000}},  //   _bhrí_, _حامی_, chnó,\n  { {0xdb0124d9, 0x2019011c, 0xe1ff0011, 0x00000000}},  //   _polé, _susi_, _phó_,\n  { {0x63a5001f, 0x2011005d, 0xdcfb0521, 0x00000000}},  //   _wohn, _sizi_, _sauč,\n  { {0x270e005f, 0x64400841, 0xa91d016c, 0x00000000}},  // [6130] lən_, ámit, ndža,\n  { {0x44290197, 0x201901c3, 0x00000000, 0x00000000}},  //   _ita_, _vusi_,   ,\n  { {0x270e005f, 0x201124da, 0xdb01009d, 0x00000000}},  //   nən_, _vizi_, _tolé,\n  { {0x6b810030, 0x4ac30061, 0x20110020, 0x00000000}},  //   _salg, _वेगव, _wizi_,\n  { {0xa3bd024c, 0x64440129, 0x20190368, 0x00000000}},  //   _आता_, _xvii, _uusi_,\n  { {0x1ae20055, 0x270e006b, 0x44290232, 0x00000000}},  //   গেছে_, kən_, _mta_,\n  { {0xb16e000c, 0x44290052, 0x9f580026, 0x00000000}},  //   _þýði, _lta_, _tirò_,\n  { {0x270e005f, 0x6b810007, 0x442900b0, 0x00000000}},  //   dən_, _walg, _ota_,\n  { {0x44290061, 0x6b8112e8, 0x2b5e0022, 0x00000000}},  //   _nta_, _talg, _fctc_,\n  { {0x656d0061, 0x75240197, 0x7c2924db, 0x00000000}},  //   _abah, _sfiz, _iter,\n  { {0x4429008d, 0x69e7008b, 0x366901f9, 0x00000000}},  //   _ata_, _людз, шано_,\n  { {0x7c29101c, 0xc329012f, 0x3f8301a3, 0x00000000}},  //   _kter, _יו_, _laju_,\n  { {0xf74503f3, 0x7641093b, 0x69cb0095, 0x00000000}},  //   _дело, ssly, _imge,\n  { {0x3f8300ca, 0x270e006b, 0x7c2900e7, 0x00000000}},  //   _naju_, bən_, _mter,\n  { {0x442924dc, 0x613a24dd, 0x7c2900ea, 0x00000000}},  //   _eta_, ичар_, _lter,\n  { {0x7c2901ee, 0x6d490051, 0x00000000, 0x00000000}},  //   _oter, _ndea,   ,\n  { {0x3f830d7e, 0x20870077, 0x4dcf0044, 0x00000000}},  // [6140] _baju_, ойти_, িকাং,\n  { {0x2480014a, 0x75f601dc, 0x3f831690, 0x00000000}},  //   _isim_, kázk, _caju_,\n  { {0x3f8310b5, 0x7c29022b, 0x69cb01b5, 0x00000000}},  //   _daju_, _ater, _omge,\n  { {0xf53f05b7, 0x442924de, 0x80cb0061, 0x00000000}},  //   lkår_, _yta_, _सेवे,\n  { {0xdca301fc, 0x270e006b, 0x6d490016, 0x00000000}},  //   маци, zən_, _ddea,\n  { {0x270e005f, 0x1c3901e1, 0xa01b0039, 0x00000000}},  //   yən_, сяць_, _pröv,\n  { {0x0ef9008b, 0x6d490009, 0x2258006c, 0x00000000}},  //   _гэты_, _fdea, nurk_,\n  { {0x24800119, 0x298a09bb, 0xdd920014, 0x00000000}},  //   _osim_, рско_, _تور_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x270e006b, 0x37aa00d7, 0x2d840f82, 0x00000000}},  //   tən_, ртин_, _hame_,\n  { {0x44291dae, 0x2d84070d, 0x24800583, 0x00000000}},  //   _sta_, _kame_, _asim_,\n  { {0x270e005f, 0x2d8624df, 0x2d840006, 0x00000000}},  //   rən_, ndoe_, _jame_,\n  { {0x270e005f, 0x2d8409fc, 0xf9d90049, 0x00000000}},  //   sən_, _mame_, _פֿעל,\n  { {0x98a3003b, 0x442902d4, 0x2d84060b, 0x00000000}},  //   _циље, _vta_, _lame_,\n  { {0xf1a70256, 0xd13b0265, 0x2480021e, 0x00000000}},  //   оран, иха_, _esim_,\n  { {0x2d840866, 0x224d1504, 0x44291978, 0x00000000}},  //   _name_, ček_, _tta_,\n  { {0x44290035, 0x2bdb007d, 0x1af10044, 0x00000000}},  // [6150] _uta_, _बदला, _চলছে_,\n  { {0x4e8b0131, 0x316900fa, 0x00000000, 0x00000000}},  //   ищем_, sfaz_,   ,\n  { {0x7c290168, 0xdb0724e0, 0x00000000, 0x00000000}},  //   _ster, ülün,   ,\n  { {0x427a007b, 0x127a007b, 0x2d8400ab, 0x00000000}},  //   _פארג, _פארע, _came_,\n  { {0x50640242, 0xdce90066, 0xf41f00f8, 0x00000000}},  //   _отра, _mneħ, kväm_,\n  { {0x447c007b, 0x61ed06d5, 0x32090173, 0x00000000}},  //   ינדע, loal, lmay_,\n  { {0x8d7701f7, 0x2d84051b, 0x00000000, 0x00000000}},  //   _وارا, _fame_,   ,\n  { {0x2d841b2a, 0x75f60428, 0xd90f00a6, 0x00000000}},  //   _game_, rázk, نیا_,\n  { {0x7c29175b, 0x00000000, 0x00000000, 0x00000000}},  //   _uter,   ,   ,\n  { {0x2d840059, 0x61ed0032, 0xdb010142, 0x00000000}},  //   _zame_, hoal, _holí,\n  { {0xdb0101ca, 0x2c0a00a1, 0x61ed0052, 0x00000000}},  //   _kolí, _اٹلی_, koal,\n  { {0x69cb084a, 0x67ef0030, 0x25a924e1, 0x00000000}},  //   _umge, tøjs, _coal_,\n  { {0x60020181, 0x61ed00fa, 0xa3e80164, 0x00000000}},  //   lôme, doal, यकल_,\n  { {0x2258014a, 0x23270745, 0x00000000, 0x00000000}},  //   turk_, зори_,   ,\n  { {0x60020181, 0x41b6005e, 0x69db24e2, 0x00000000}},  //   nôme, псат, onue,\n  { {0xd5b90089, 0x61ed002d, 0x25a900ab, 0x00000000}},  //   spār_, goal, _goal_,\n  { {0x55bb009b, 0x2d840213, 0x248001a3, 0x00000000}},  // [6160] _למקו, _rame_, _usim_,\n  { {0x2d8424e3, 0xdee6004c, 0x27460048, 0x00000000}},  //   _same_, пози, míní_,\n  { {0x64460046, 0xdb010489, 0xa01b0039, 0x00000000}},  //   lski, _bolí, _brös,\n  { {0x61ed24e4, 0xdb0100c4, 0x1ea90025, 0x00000000}},  //   coal, _colí, غالي_,\n  { {0x644600ee, 0x27460048, 0x2d8600fa, 0x00000000}},  //   nski, níní_, rdoe_,\n  { {0x64460006, 0x1af40069, 0x600200fa, 0x00000000}},  //   iski, мпля, fôme,\n  { {0xd357007b, 0x6604002d, 0xa01b04ce, 0x00000000}},  //   ליסי_, _ohik, _frös,\n  { {0xa01b0002, 0xa9c30088, 0x6446010e, 0x00000000}},  //   _tröt, еськ, kski,\n  { {0x60c424e5, 0xf98f0025, 0xa3dc0061, 0x00000000}},  //   nzim, طبي_, ढचा_,\n  { {0x25a90169, 0x600200c4, 0x644618a7, 0x00000000}},  //   _soal_, lômb, dski,\n  { {0xb8f30183, 0x66040093, 0x32090058, 0x00000000}},  //   _हे_, _bhik, ymay_,\n  { {0x66041560, 0x18a6005e, 0x1a9b0049, 0x00000000}},  //   _chik, _наем, _ליבע,\n  { {0xafdb0737, 0x64462008, 0x66040162, 0x00000000}},  //   _svøm, gski, _dhik,\n  { {0x60c424e6, 0x07a3007e, 0xc7a32337, 0x00000000}},  //   dzim, _пачн, _пичк,\n  { {0x61ed0027, 0xdce9002b, 0xd3780088, 0x00000000}},  //   toal, _tneħ, ччя_,\n  { {0x521401be, 0x65bf008d, 0x777a002d, 0x00000000}},  //   едст, _bëhe, letx,\n  { {0x765a1570, 0x3209014a, 0x27460048, 0x00000000}},  // [6170] luty, rmay_, cíní_,\n  { {0x32091904, 0xdb0119d5, 0x61ed0c79, 0x00000000}},  //   smay_, _solí, soal,\n  { {0xdb0103d1, 0x4fc4007c, 0x3d0f0061, 0x00000000}},  //   _polí, хста, तेने_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x69c004ea, 0x8ccd013d, 0xf3ff0181, 0x00000000}},  //   dhme, _देशो, ntão_,\n  { {0xeb96017f, 0x6002009d, 0xdb0100fa, 0x00000000}},  //   диш_, tôme, _rolâ,\n  { {0xa01b04ce, 0x00000000, 0x00000000, 0x00000000}},  //   _trös,   ,   ,\n  { {0xdb08023f, 0x69c0002b, 0x3eae010f, 0x00000000}},  //   _modè, ghme, äfte_,\n  { {0xdb0100c4, 0x69db0032, 0x00000000, 0x00000000}},  //   _bolã, rnue,   ,\n  { {0x6604008d, 0x69c0012d, 0x00000000, 0x00000000}},  //   _shik, ahme,   ,\n  { {0x64460046, 0x60c40026, 0x9be40088, 0x00000000}},  //   wski, zzim, _чітк,\n  { {0x69c00c0d, 0x64460091, 0xd7f8001a, 0x00000000}},  //   chme, tski, ală_,\n  { {0xb4b8006e, 0x64460006, 0x777a002d, 0x00000000}},  //   चने_, uski, betx,\n  { {0x64460046, 0x765a1b27, 0x395f006c, 0x00000000}},  //   rski, buty, lgus_,\n  { {0x6446000c, 0xe2f800a1, 0x66040023, 0x00000000}},  //   sski, سورڈ_, _thik,\n  { {0x6446037e, 0x395f24e7, 0x7d1b0065, 0x00000000}},  //   pski, ngus_, _ngus,\n  { {0xa0670200, 0xa7c60014, 0x60c40091, 0x00000000}},  // [6180] мата_, _رژیم_, uzim,\n  { {0x7d1b023a, 0x60c40440, 0xe4570097, 0x00000000}},  //   _agus, rzim, _קייט_,\n  { {0x4420028c, 0xa2060088, 0x21490051, 0x00000000}},  //   _hui_, _опод, áthú_,\n  { {0x4420061f, 0x602607d8, 0x00000000, 0x00000000}},  //   _kui_, _одма,   ,\n  { {0x75e8005d, 0x442000f4, 0x0c7a0076, 0x00000000}},  //   mızd, _jui_, تصاب_,\n  { {0x442024e8, 0x6fc0014a, 0x7d1b0288, 0x00000000}},  //   _mui_, _böce, _egus,\n  { {0x442024e9, 0x69c008ea, 0x7c3b00e7, 0x00000000}},  //   _lui_, thme, _ewur,\n  { {0x4420028c, 0x75e8005a, 0x201824ea, 0x00000000}},  //   _oui_, nızd, _hiri_,\n  { {0xf4d90055, 0x6d4024eb, 0xdb0800f4, 0x00000000}},  //   _সর্ব, _iema, _modé,\n  { {0x69c021b4, 0x909b00a3, 0xa09b01ce, 0x00000000}},  //   shme, קסיק, קייט,\n  { {0x6d4024ec, 0x0f5700b6, 0x201810c3, 0x00000000}},  //   _kema, ויים_, _miri_,\n  { {0x6d4024ed, 0xadc30011, 0x201824ee, 0x00000000}},  //   _jema, _miến, _liri_,\n  { {0x44200198, 0x6d40020c, 0xf9c700a2, 0x00000000}},  //   _cui_, _mema, _تحلی,\n  { {0xa3c903d7, 0x44200007, 0x6d400169, 0x00000000}},  //   लों_, _dui_, _lema,\n  { {0xf3ff02d5, 0x442000f6, 0xe1f3002c, 0x00000000}},  //   stão_, _eui_, نسر_,\n  { {0x6d4001cd, 0x4420029d, 0x3944008f, 0x00000000}},  //   _nema, _fui_, nams_,\n  { {0x7c2024ef, 0x2018038c, 0xdbd617f9, 0x00000000}},  // [6190] _numr, _biri_, _kään,\n  { {0x657d0065, 0x645d24f0, 0x6b8800d0, 0x00000000}},  //   lesh, musi, _nadg,\n  { {0x6d400007, 0x2018027e, 0x39440964, 0x00000000}},  //   _bema, _diri_, kams_,\n  { {0x657d0020, 0x3944030b, 0xdbd60cfc, 0x00000000}},  //   nesh, jams_, _lään,\n  { {0x6d40032c, 0x394408ad, 0x7c200051, 0x00000000}},  //   _dema, dams_, _cumr,\n  { {0x657d23d3, 0x20180207, 0x6d40006c, 0x00000000}},  //   hesh, _giri_, _eema,\n  { {0x645d000b, 0x6d4024f1, 0xadc30082, 0x00000000}},  //   husi, _fema, _giến,\n  { {0x6d40046a, 0x657d0714, 0x645d24f2, 0x00000000}},  //   _gema, jesh, kusi,\n  { {0x395f24f3, 0x657d238d, 0x645d0d90, 0x00000000}},  //   rgus_, desh, jusi,\n  { {0x6b880056, 0x645d0a0e, 0x44200559, 0x00000000}},  //   _gadg, dusi, _rui_,\n  { {0x44200198, 0xf1bf0181, 0x62850020, 0x00000000}},  //   _sui_, _olá_, _nsho,\n  { {0x3944136b, 0x4420001a, 0x657d016e, 0x00000000}},  //   cams_, _pui_, gesh,\n  { {0x44200a8d, 0x645d022b, 0x62851bb7, 0x00000000}},  //   _qui_, gusi, _asho,\n  { {0x4420001d, 0x66e505a4, 0x43750954, 0x00000000}},  //   _vui_, _пола, куст,\n  { {0xf770025a, 0x645d010a, 0xdb0824f4, 0x00000000}},  //   _خان_, ausi, _podé,\n  { {0x20180518, 0x442024f5, 0x62851add, 0x00000000}},  //   _siri_, _tui_, _dsho,\n  { {0x6d4024f6, 0x62850161, 0x394f0093, 0x00000000}},  // [61a0] _rema, _esho, _mdgs_,\n  { {0x6d40020c, 0x0479007a, 0x628501cf, 0x00000000}},  //   _sema, _کلیک_, _fsho,\n  { {0x6d40020c, 0x20180059, 0x6b880c8a, 0x00000000}},  //   _pema, _viri_, _radg,\n  { {0x10a601e0, 0x2018002b, 0x6d400065, 0x00000000}},  //   _зимн, _wiri_, _qema,\n  { {0x6b8801d6, 0x39440006, 0x201816d5, 0x00000000}},  //   _padg, vams_, _tiri_,\n  { {0xf09f00ad, 0xadc3001d, 0xdb0124f7, 0x00000000}},  //   _ngày_, _tiến, _solá,\n  { {0x6d4024f8, 0x6b8a001c, 0x657d1ea5, 0x00000000}},  //   _tema, rdfg, yesh,\n  { {0xdbd6021e, 0xc5f90089, 0x75fd0010, 0x00000000}},  //   _sään, ntēt_, tézm,\n  { {0x39440d90, 0x657d0065, 0xdb0105d2, 0x00000000}},  //   rams_, vesh, _volá,\n  { {0x7bc3001f, 0x645d0006, 0x76480039, 0x00000000}},  //   chnu, vusi, tsdy,\n  { {0x657d0065, 0xd6da0152, 0xab690076, 0x00000000}},  //   tesh, яти_, _تحقق_,\n  { {0x645d24f9, 0x3f8a24fa, 0x76480022, 0x00000000}},  //   tusi, _labu_, rsdy,\n  { {0x657d24fb, 0x7afa113b, 0xc8b30014, 0x00000000}},  //   resh, _hytt, _مصوب,\n  { {0x5ea60055, 0x645d24e7, 0x657d0e06, 0x00000000}},  //   _গেছে, rusi, sesh,\n  { {0x645d1544, 0x657d0a9e, 0x61e1004a, 0x00000000}},  //   susi, pesh, éllo,\n  { {0x645d13b1, 0x657d0065, 0x61e90c8a, 0x00000000}},  //   pusi, qesh, čelo,\n  { {0x7afa0637, 0x3f8a24fc, 0x62850009, 0x00000000}},  // [61b0] _lytt, _babu_, _wsho,\n  { {0x644d0006, 0x628501c3, 0x600200c4, 0x00000000}},  //   _ivai, _tsho, tôma,\n  { {0x7afa198e, 0x62850ea6, 0x8e990025, 0x00000000}},  //   _nytt, _usho, بناء_,\n  { {0x644d0006, 0x3eae00f8, 0x00000000, 0x00000000}},  //   _kvai, äfta_,   ,\n  { {0x628a01e5, 0x00000000, 0x00000000, 0x00000000}},  //   _áfor,   ,   ,\n  { {0x7afa24fd, 0x82340014, 0x3f8a0ea9, 0x00000000}},  //   _bytt, _جریا, _gabu_,\n  { {0xa91d0006, 0x68fc006b, 0xf9910025, 0x00000000}},  //   ldži, ərdi, لبة_,\n  { {0x5975008b, 0x644d1003, 0xa91d0006, 0x00000000}},  //   тыку, _ovai, odži,\n  { {0xa91d010a, 0x3f8a00e0, 0x00000000, 0x00000000}},  //   ndži, _yabu_,   ,\n  { {0xa91d0006, 0xd047006b, 0xd7ee0025, 0x00000000}},  //   idži, çməs, يكي_,\n  { {0x644d24fe, 0xd7090057, 0x7bc12293, 0x00000000}},  //   _avai, ьное_, _illu,\n  { {0x2b470048, 0x00000000, 0x00000000, 0x00000000}},  //   lanc_,   ,   ,\n  { {0x81d70044, 0xa91d003b, 0x00000000, 0x00000000}},  //   াকা_, jdži,   ,\n  { {0x2b47133d, 0xa6950184, 0x386d05b4, 0x00000000}},  //   nanc_, _ариј, mter_,\n  { {0x3f8a0169, 0x386d03a1, 0x4343005e, 0x00000000}},  //   _rabu_, lter_, ресв,\n  { {0x3f8a24ff, 0x75f60010, 0x26880025, 0x00000000}},  //   _sabu_, rázs, _أخوي_,\n  { {0x386d2500, 0x7bc1021e, 0xc5f90089, 0x00000000}},  // [61c0] nter_, _ollu, rtēt_,\n  { {0x386d010f, 0x798b2501, 0xe29a003b, 0x00000000}},  //   iter_, _lagw, _жао_,\n  { {0x386d02ae, 0x644d0e3f, 0x75f6008e, 0x00000000}},  //   hter_, _zvai, lázq,\n  { {0x7bc101d5, 0x0696007b, 0x7afa0193, 0x00000000}},  //   _allu, כדעם_, _rytt,\n  { {0x386d0039, 0xdb01006b, 0xa3c9007d, 0x00000000}},  //   jter_, _yolç, लोक_,\n  { {0x4432004a, 0x75fd0010, 0x386d0287, 0x00000000}},  //   _mty_, tézk, dter_,\n  { {0xe9e601e0, 0x0a6a00ed, 0x29000006, 0x00000000}},  //   кцио, фрли_, _šia_,\n  { {0x386d00eb, 0xa967012b, 0x7bc1006c, 0x00000000}},  //   fter_, вића_, _ellu,\n  { {0xbc6a03ec, 0x386d2502, 0xa3c2006e, 0x00000000}},  //   _زمان_, gter_, ंसा_,\n  { {0x2cc40279, 0x7afa00b0, 0xdb080142, 0x00000000}},  //   ırdı_, _tytt, _hodí,\n  { {0x4432008d, 0x06d50055, 0x386d00ab, 0x00000000}},  //   _aty_, _সুবি, ater_,\n  { {0x443200e0, 0x386d01a2, 0x00000000, 0x00000000}},  //   _bty_, bter_,   ,\n  { {0x386d028c, 0x44320011, 0xdb18006c, 0x00000000}},  //   cter_, _cty_, rivõ,\n  { {0x9f9a0004, 0xa91d016c, 0x7bd80883, 0x00000000}},  //   _jääb_, vdži, nivu,\n  { {0x24180783, 0x69c20112, 0x26da006c, 0x00000000}},  //   торы_, _kloe, _äpo_,\n  { {0x11d90054, 0x31c40918, 0xe7170097, 0x00000000}},  //   روءة_, асув, _בחור_,\n  { {0x3495008b, 0x7bd82503, 0xa91d0006, 0x00000000}},  // [61d0] _сапр, kivu, udži,\n  { {0xa91d2029, 0x69c2018e, 0xa28300a6, 0x00000000}},  //   rdži, _lloe, _پیرو,\n  { {0xa91d2504, 0x7e2805b8, 0x386d0e49, 0x00000000}},  //   leže, віча_, zter_,\n  { {0x386d01c9, 0x1eea0167, 0xdb03010f, 0x00000000}},  //   yter_, رونی_, rknü,\n  { {0x386d0039, 0xf1a4007e, 0x6adb0164, 0x00000000}},  //   xter_, _трэн, यप्र,\n  { {0xadc3001d, 0x7aed0279, 0x8f6700a1, 0x00000000}},  //   _thắn, şatm, _جلسے_,\n  { {0x69c20100, 0x2b4700ca, 0x798b011c, 0x00000000}},  //   _bloe, ranc_, _pagw,\n  { {0xceb2052f, 0x69c22505, 0x24890091, 0x00000000}},  //   _פין_, _cloe, _osam_,\n  { {0x386d028c, 0x5c99008b, 0x7bd82506, 0x00000000}},  //   uter_, _якая_, bivu,\n  { {0x798b0343, 0x1db90061, 0xa91d0059, 0x00000000}},  //   _wagw, _आवडत, deže,\n  { {0x24890169, 0x44320036, 0xb8fa007d, 0x00000000}},  //   _asam_, _sty_, _डे_,\n  { {0x386d0549, 0xf41f021e, 0x69c20116, 0x00000000}},  //   pter_, yvät_, _gloe,\n  { {0x3a2501b5, 0xa01b0047, 0x44240011, 0x00000000}},  //   _hulp_, _csök, êm_,\n  { {0xf74501f9, 0x4852025a, 0x3f811a84, 0x00000000}},  //   _секо, _اپوز, jehu_,\n  { {0x24890089, 0x00000000, 0x00000000, 0x00000000}},  //   _esam_,   ,   ,\n  { {0x44320052, 0xa3c20061, 0x63bc012d, 0x00000000}},  //   _tty_, ंसह_, skrn,\n  { {0x10a301fc, 0x7bd80009, 0x91061001, 0x00000000}},  // [61e0] битн, yivu, упае,\n  { {0x351b00b6, 0x728a012b, 0xf2a60326, 0x00000000}},  //   _אופנ, _због_, _биоп,\n  { {0xdb082507, 0x79801519, 0x7a27013f, 0x00000000}},  //   _podí, yemw, _qıtl,\n  { {0x65662508, 0x2b4500f6, 0xddc8012d, 0x00000000}},  //   ngkh, _aelc_, šožd,\n  { {0x7bd8001a, 0x61e42509, 0x653b0049, 0x00000000}},  //   tivu, mnil, גענד,\n  { {0x61e4250a, 0x69c20328, 0xa91d01ed, 0x00000000}},  //   lnil, _sloe, ndžu,\n  { {0xed5a01fb, 0x69c200b5, 0x79800dfc, 0x00000000}},  //   _пов_, _ploe, temw,\n  { {0x48aa0902, 0x61e4250b, 0x7bd8021e, 0x00000000}},  //   етом_, nnil, sivu,\n  { {0x69c200c7, 0x61e41041, 0x76aa006b, 0x00000000}},  //   _vloe, inil, məyi,\n  { {0x2bf6008b, 0x76aa005f, 0x61e4006c, 0x00000000}},  //   _сябр, ləyi, hnil,\n  { {0xa91d0e0f, 0x61e42014, 0x00000000, 0x00000000}},  //   veže, knil,   ,\n  { {0x25a0009d, 0x9f5f000c, 0x00000000, 0x00000000}},  //   _cnil_, ðrún_,   ,\n  { {0x61e40471, 0x2fda00e0, 0xa91d1032, 0x00000000}},  //   dnil, kipg_, teže,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xa91d1332, 0x61e4000c, 0x7bdf009d, 0x00000000}},  //   reže, fnil, équi,\n  { {0xa91d0059, 0x61e40059, 0x11d40025, 0x00000000}},  //   seže, gnil, متقد,\n  { {0x4fd5250c, 0x248900c4, 0x2d8d0026, 0x00000000}},  // [61f0] ажат, _usam_, _raee_,\n  { {0xb4c10365, 0x443923a8, 0x600b014a, 0x00000000}},  //   ंनी_, mps_, küme,\n  { {0x660d0640, 0x443900ab, 0xa3c2013d, 0x00000000}},  //   _khak, lps_, ंसर_,\n  { {0xf653009b, 0x2b450126, 0x44390aba, 0x00000000}},  //   מצע_, _selc_, ops_,\n  { {0xdca500ed, 0xcb6901fc, 0x6e2900ca, 0x00000000}},  //   рали, вале_, _čebu,\n  { {0x44390129, 0x644f0051, 0x645d0048, 0x00000000}},  //   ips_, isci, irsi,\n  { {0xdce90091, 0xadc30082, 0x00000000, 0x00000000}},  //   _obeć, _chản,   ,\n  { {0x76aa006b, 0x645d0521, 0x644f0006, 0x00000000}},  //   cəyi, krsi, ksci,\n  { {0x6d4b0a71, 0x60cd0211, 0xc9a6007c, 0x00000000}},  //   maga, nzam, рвые_,\n  { {0x6d4b1084, 0x443904a5, 0x7c390016, 0x00000000}},  //   laga, dps_, mpwr,\n  { {0x6b830982, 0x660d0093, 0x61e4011c, 0x00000000}},  //   meng, _bhak, ynil,\n  { {0x6d4b250d, 0x6b8304d4, 0x660d000b, 0x00000000}},  //   naga, leng, _chak,\n  { {0xe72e0f97, 0x660d0066, 0xdb080051, 0x00000000}},  //   _ме_, _dhak, _iodá,\n  { {0x6b830288, 0x60cd0089, 0x6d4b250e, 0x00000000}},  //   neng, dzam, haga,\n  { {0x6d4b149a, 0x67230521, 0x61e40b4a, 0x00000000}},  //   kaga, _ignj, tnil,\n  { {0x6b83250f, 0x61e4001a, 0x6d4b01a3, 0x00000000}},  //   heng, unil, jaga,\n  { {0x61e42510, 0x6b830052, 0x44390146, 0x00000000}},  // [6200] rnil, keng, cps_,\n  { {0x6b832511, 0x61e400ee, 0xe80b006e, 0x00000000}},  //   jeng, snil, _सीमा_,\n  { {0x76aa005f, 0x6b830643, 0x6d4b11c3, 0x00000000}},  //   təyi, deng, faga,\n  { {0x6d4b006a, 0xed5a0264, 0x3e6e00b9, 0x00000000}},  //   gaga, тод_, rýt_,\n  { {0x7d090036, 0x4c940d11, 0x6b8304f2, 0x00000000}},  //   _czes, силс, feng,\n  { {0x6b83000c, 0x78bb004a, 0xdb1a22be, 0x00000000}},  //   geng, dyuv, _altá,\n  { {0x6d4b0149, 0x2fd80022, 0x7d092512, 0x00000000}},  //   baga, _imrg_, _ezes,\n  { {0x6d4b001c, 0x69c900d9, 0x644f0a62, 0x00000000}},  //   caga, ghee, ysci,\n  { {0xdb080428, 0x57a600ed, 0x2d99008e, 0x00000000}},  //   _dodá, ашна, _ósea_,\n  { {0x645d037e, 0x6b8312fe, 0x6e200433, 0x00000000}},  //   vrsi, ceng, _himb,\n  { {0x6e20000b, 0x60cd17f4, 0x7bdf009d, 0x00000000}},  //   _kimb, zzam, èque,\n  { {0x44392513, 0x6e200020, 0x69c900bb, 0x00000000}},  //   tps_, _jimb, chee,\n  { {0xb4c103d7, 0x443900ab, 0x6e200020, 0x00000000}},  //   ंने_, ups_, _mimb,\n  { {0x443900f4, 0x13a7026c, 0x6d4b002d, 0x00000000}},  //   rps_, جنسی_, zaga,\n  { {0xd627045e, 0x6d4b011c, 0x88e80044, 0x00000000}},  //   _које_, yaga, _পরিক,\n  { {0x4439001f, 0xa91d041a, 0x660d0020, 0x00000000}},  //   pps_, leža, _uhak,\n  { {0x6d4b00b0, 0x6b830065, 0x00000000, 0x00000000}},  // [6210] vaga, yeng,   ,\n  { {0x60cd00b5, 0x6d4b011c, 0x6671007a, 0x00000000}},  //   rzam, waga, _بگیر,\n  { {0x6d4b006a, 0x6b8305fc, 0x6e202514, 0x00000000}},  //   taga, veng, _bimb,\n  { {0x6b83008a, 0x6e200145, 0x44290020, 0x00000000}},  //   weng, _cimb, _kua_,\n  { {0x6b831cce, 0x44292515, 0x442112cc, 0x00000000}},  //   teng, _jua_, _kih_,\n  { {0x44292516, 0x442118e1, 0x69c90c0d, 0x00000000}},  //   _mua_, _jih_, whee,\n  { {0x0d670265, 0x442903c7, 0x69c900b5, 0x00000000}},  //   _възм, _lua_, thee,\n  { {0x2bd9007d, 0x4998007c, 0x44290035, 0x00000000}},  //   _भगवा, атья_, _oua_,\n  { {0x4429002a, 0x3f91037e, 0x69c92517, 0x00000000}},  //   _nua_, _kazu_, rhee,\n  { {0x6e20050c, 0x69c9001c, 0x442104cb, 0x00000000}},  //   _zimb, shee, _nih_,\n  { {0x7c29008e, 0xe61a0893, 0x3f910089, 0x00000000}},  //   _huer, лдо_, _mazu_,\n  { {0xc9840902, 0xc3290097, 0x44290051, 0x00000000}},  //   _мучи, _טו_, _bua_,\n  { {0x442101cd, 0x44292518, 0x69d9002b, 0x00000000}},  //   _bih_, _cua_, _imwe,\n  { {0x44290281, 0x7c290219, 0xf77100f3, 0x00000000}},  //   _dua_, _muer, _رات_,\n  { {0x44292519, 0x4421251a, 0x21a600e2, 0x00000000}},  //   _eua_, _dih_, бивм,\n  { {0x7c290343, 0xafdb00ea, 0x394d0810, 0x00000000}},  //   _ouer, _svøp, naes_,\n  { {0x0ce20055, 0x6e2020fc, 0x4421002b, 0x00000000}},  // [6220] _বর্ত, _rimb, _fih_,\n  { {0x43860025, 0x31690032, 0x61fd104e, 0x00000000}},  //   _الدق, agaz_, _eksl,\n  { {0x3f91001f, 0x60020181, 0x69d901aa, 0x00000000}},  //   _dazu_, nômi, _omwe,\n  { {0x237f0091, 0x44290022, 0xa3be0061, 0x00000000}},  //   đuje_, _yua_, _आवड_,\n  { {0x7c290219, 0x89d8007a, 0x6e20251b, 0x00000000}},  //   _cuer, یوتر_, _vimb,\n  { {0x6e200020, 0xac2501e1, 0x69d9065e, 0x00000000}},  //   _wimb, іфік, _amwe,\n  { {0x6e200127, 0xc33300b6, 0xa91d251c, 0x00000000}},  //   _timb, לוג_, veža,\n  { {0x7c290219, 0x383400d7, 0xadc30011, 0x00000000}},  //   _fuer, онир, _thạn,\n  { {0x69c0014a, 0x7c2100ea, 0x00000000, 0x00000000}},  //   rkme, _filr,   ,\n  { {0x442902d5, 0x7c2f00f4, 0x75e8019a, 0x00000000}},  //   _rua_, _écra, sızl,\n  { {0x4429251d, 0x7c29010f, 0x44211347, 0x00000000}},  //   _sua_, _zuer, _rih_,\n  { {0xceb300b6, 0x6fc00039, 0x4421023a, 0x00000000}},  //   לית_, _böck, _sih_,\n  { {0x4429001d, 0xa91d251e, 0xdb01000a, 0x00000000}},  //   _qua_, ležn, _anlè,\n  { {0x44290011, 0x600b014a, 0x24800145, 0x00000000}},  //   _vua_, küma, _dpim_,\n  { {0x442101aa, 0x69d9018e, 0x3f910036, 0x00000000}},  //   _vih_, _ymwe, _razu_,\n  { {0x44290198, 0x463b007b, 0x6fc0010f, 0x00000000}},  //   _tua_, _געהע, _höch,\n  { {0x7bc801f6, 0xc60502fb, 0xb3eb0054, 0x00000000}},  // [6230] _oldu, रतीय_, _معدل_,\n  { {0x2fc7001d, 0x00000000, 0x00000000, 0x00000000}},  //   óng_,   ,   ,\n  { {0x6fc0001f, 0x7c2904a8, 0xa91d0243, 0x00000000}},  //   _möch, _suer, ježn,\n  { {0x7c290219, 0x7bc8251f, 0x29d3001a, 0x00000000}},  //   _puer, _aldu, nţat_,\n  { {0x7c290576, 0x6d490abf, 0x7bc60006, 0x00000000}},  //   _quer, _veea, _įkur,\n  { {0x403416e8, 0xeb990069, 0x00000000, 0x00000000}},  //   _херс, рик_,   ,\n  { {0x7c2901a2, 0x2d99004a, 0x00000000, 0x00000000}},  //   _wuer, _óseo_,   ,\n  { {0x08c50999, 0x7c290249, 0x7bc82520, 0x00000000}},  //   жбин, _tuer, _eldu,\n  { {0x394d0181, 0x7c212521, 0x48c70044, 0x00000000}},  //   raes_, _tilr, শপ্র,\n  { {0xeb9b0167, 0x29030089, 0xaa59007c, 0x00000000}},  //   _حضرت_, āja_, _вижу_,\n  { {0x6b9c0211, 0x95860326, 0x6d5e0006, 0x00000000}},  //   _órga, олне, ėpav,\n  { {0x69d9010f, 0x7bc300ea, 0x78a4012d, 0x00000000}},  //   _umwe, lknu, _šive,\n  { {0xb8fe0055, 0xe9190088, 0xf795007e, 0x00000000}},  //   _দু_, _тоді_, _мадэ,\n  { {0xe73900ed, 0x7d06068f, 0x7bc32315, 0x00000000}},  //   _тек_, _økse, nknu,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xf8c9006e, 0x7bc3000c, 0xe1f70245, 0x00000000}},  // [6240] िनिय, kknu, ігу_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xd37b0049, 0x00000000, 0x00000000, 0x00000000}},  //   _דריט,   ,   ,\n  { {0x2c720016, 0xa3c2013d, 0x600b014a, 0x00000000}},  //   tâd_, ंसक_, rüma,\n  { {0xf1b300b3, 0x00000000, 0x00000000, 0x00000000}},  //   _חסר_,   ,   ,\n  { {0xa91d00ee, 0x68e4047c, 0x2ac6003b, 0x00000000}},  //   težn, _žido, жљив,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xa91d0059, 0xea95007e, 0x6e3e0022, 0x00000000}},  //   režn, яшчэ, mppb,\n  { {0xa91d00ee, 0xc213009b, 0x6d420035, 0x00000000}},  //   sežn, והה_, mboa,\n  { {0xc07b0049, 0x7bc8006b, 0x6d420403, 0x00000000}},  //   סטיש, _uldu, lboa,\n  { {0xa91d0089, 0x600b006c, 0x00000000, 0x00000000}},  //   bežo, kümn,   ,\n  { {0x6d422085, 0x6fc001a2, 0xe4a70131, 0x00000000}},  //   nboa, _wöch, орго,\n  { {0x629e0052, 0x6fc001a2, 0x00000000, 0x00000000}},  //   _arpo, _töch,   ,\n  { {0xbf0a0061, 0x00000000, 0x00000000, 0x00000000}},  //   _वरून_,   ,   ,\n  { {0x623400ed, 0x00000000, 0x00000000, 0x00000000}},  //   десу,   ,   ,\n  { {0x225e01ca, 0xc0350184, 0x600b010e, 0x00000000}},  //   átka_, знај, gümn,\n  { {0x6d420319, 0x00000000, 0x00000000, 0x00000000}},  // [6250] dboa,   ,   ,\n  { {0xdb18009f, 0xdb2101ca, 0x6d420062, 0x00000000}},  //   mkvæ, _štít, eboa,\n  { {0x68e400b9, 0x00000000, 0x00000000, 0x00000000}},  //   _židl,   ,   ,\n  { {0x6d421588, 0xb17b1fbf, 0x12fa009b, 0x00000000}},  //   gboa, _småf, _להתב,\n  { {0xd59c007b, 0xa1360097, 0x1c4401e1, 0x00000000}},  //   יבאל, _מארק_, днім,\n  { {0x443b00f6, 0x00ba009b, 0x2005000c, 0x00000000}},  //   _mtq_, _המשמ, _óli_,\n  { {0xf1bf0011, 0x6d420c10, 0x00000000, 0x00000000}},  //   _giác_, bboa,   ,\n  { {0x3e750039, 0x7bc305d2, 0x7c2f009d, 0x00000000}},  //   måt_, sknu, _écro,\n  { {0x443b0009, 0x00000000, 0x00000000, 0x00000000}},  //   _ntq_,   ,   ,\n  { {0x7c3b022b, 0x77f70061, 0xf77109b9, 0x00000000}},  //   _itur, ुतेक_, راخ_,\n  { {0x38ca0014, 0x443b2522, 0x3a2c0146, 0x00000000}},  //   لایی_, _atq_, _gudp_,\n  { {0xca96009b, 0x69dc0006, 0x00000000, 0x00000000}},  //   _מדעי_, _įreg,   ,\n  { {0xe8ee0265, 0x69cb12ca, 0x3d0f0061, 0x00000000}},  //   _чл_, _ilge, तेचे_,\n  { {0x9f5a0065, 0xf8b6009b, 0x889a009b, 0x00000000}},  //   ropë_, _מפני_, _לבני,\n  { {0x515a007e, 0x00000000, 0x00000000, 0x00000000}},  //   йшаў_,   ,   ,\n  { {0x7c3b047f, 0x3e7500f8, 0x6d5b0048, 0x00000000}},  //   _otur, dåt_, _ndua,\n  { {0x7c3b0c99, 0x3cdb006e, 0x00000000, 0x00000000}},  // [6260] _ntur, _खेले_,   ,\n  { {0x6d420161, 0x6d5b01a3, 0x629e0087, 0x00000000}},  //   wboa, _adua, _trpo,\n  { {0x7c3b15ee, 0x20e2002b, 0x03bb009b, 0x00000000}},  //   _atur, _sħiħ_, _הציל,\n  { {0x600b014a, 0xf09f0026, 0x16360049, 0x00000000}},  //   lüml, _frà_, לנער_,\n  { {0x6d420133, 0x629c01d6, 0x00000000, 0x00000000}},  //   rboa, lvro,   ,\n  { {0x69cb02ae, 0x6d5b029d, 0x6d420f30, 0x00000000}},  //   _alge, _edua, sboa,\n  { {0x6d420133, 0x7c3b0052, 0x9d460088, 0x00000000}},  //   pboa, _etur, _невд,\n  { {0x89d80b03, 0x3e5801aa, 0x9e770104, 0x00000000}},  //   توبر_, mčt_, _מגלה_,\n  { {0x6e2e01a3, 0xe8b80061, 0x600b014a, 0x00000000}},  //   _hubb, ेनेच, küml,\n  { {0x69c5008d, 0x37aa189f, 0xdb010b33, 0x00000000}},  //   ëher, стин_, _coló,\n  { {0xb886000c, 0x3e5801aa, 0x32020093, 0x00000000}},  //   fsíð, nčt_, _okky_,\n  { {0xd6d700a5, 0x3dc62523, 0x00000000, 0x00000000}},  //   яты_, nkow_,   ,\n  { {0x6e2e00bb, 0x629c01ee, 0x07a602dc, 0x00000000}},  //   _lubb, evro, _надн,\n  { {0x649205fa, 0x481301fb, 0x3e580173, 0x00000000}},  //   džić, _зміс, kčt_,\n  { {0xa77b009b, 0x6e2e0203, 0x3a26000a, 0x00000000}},  //   _הרופ, _nubb, _kiop_,\n  { {0xf09f0026, 0xdb010173, 0x00000000, 0x00000000}},  //   _prà_, _kolò,   ,\n  { {0x600b014a, 0x81c10044, 0x00000000, 0x00000000}},  // [6270] büml, ্চল_,   ,\n  { {0x32020022, 0xdb012524, 0xa2b50316, 0x00000000}},  //   _ekky_, _polü, _उपप्,\n  { {0x7c3b00b5, 0x6e2e2525, 0x51f9060e, 0x00000000}},  //   _stur, _cubb, _мною_,\n  { {0x21670057, 0x62850a60, 0xf09f0011, 0x00000000}},  //   _этог, _ipho, _trà_,\n  { {0x61ed001a, 0xf09f00f6, 0x32090058, 0x00000000}},  //   mnal, _urà_, mlay_,\n  { {0x3e750039, 0x61ff006b, 0x2ade0061, 0x00000000}},  //   påt_, loql, _केहु_,\n  { {0x61ed0198, 0x6e2e0039, 0x62850009, 0x00000000}},  //   onal, _gubb, _jpho,\n  { {0x61ed110a, 0x78a4050f, 0x3dc62526, 0x00000000}},  //   nnal, _šiva, ckow_,\n  { {0x7c3b14a5, 0xdb012527, 0x3a2607c9, 0x00000000}},  //   _utur, _colò, _diop_,\n  { {0x25a9001c, 0x62850286, 0x600b050d, 0x00000000}},  //   _anal_, _opho, kümm,\n  { {0x32090058, 0x00000000, 0x00000000, 0x00000000}},  //   klay_,   ,   ,\n  { {0xceb2009b, 0xdbd701b1, 0x61ed0010, 0x00000000}},  //   דיט_, sääs, jnal,\n  { {0xb886009f, 0x395d2528, 0xdbd703b6, 0x00000000}},  //   rsíð, _idws_, pääs,\n  { {0x660e0027, 0x629c01d6, 0x3dcd005b, 0x00000000}},  //   _ďaku, tvro, _llew_,\n  { {0xe297007e, 0xe1c90061, 0x628e00b5, 0x00000000}},  //   мар_, रसंघ, uwbo,\n  { {0x61ed2529, 0xb686026c, 0x629c252a, 0x00000000}},  //   gnal, _کھیل_, rvro,\n  { {0x41df0061, 0x629c0116, 0xe45f0010, 0x00000000}},  // [6280] _नगरस, svro, ször_,\n  { {0x6e2e0409, 0x4095008b, 0x25a900d0, 0x00000000}},  //   _pubb, эрст, _znal_,\n  { {0x3dcd0ca4, 0x32090058, 0x412a013b, 0x00000000}},  //   _blew_, blay_, _моно_,\n  { {0x7f4e0c2f, 0xa91d0059, 0x3e5801aa, 0x00000000}},  //   _webq, režj, rčt_,\n  { {0x61e4001a, 0x361b01ce, 0x6604252b, 0x00000000}},  //   miil, קונד, _mkik,\n  { {0xdb210027, 0x6e2e0fd5, 0x3dc6252c, 0x00000000}},  //   _štát, _tubb, skow_,\n  { {0xa9340783, 0x3dcd0133, 0x3f98252d, 0x00000000}},  //   нейш, _flew_, _iaru_,\n  { {0xa9c301fb, 0x61e4001a, 0x66040922, 0x00000000}},  //   вськ, niil, _nkik,\n  { {0x60c4252e, 0x3f98006c, 0x00000000, 0x00000000}},  //   nyim, _karu_,   ,\n  { {0x8c430264, 0x660413df, 0x61ed0091, 0x00000000}},  //   _рефе, _akik, znal,\n  { {0x61ed252f, 0x32091544, 0xdb1a0023, 0x00000000}},  //   ynal, ylay_, _motë,\n  { {0x2bbe0061, 0xdb1a0023, 0xdb1800f8, 0x00000000}},  //   ्सवा, _lotë, rkvä,\n  { {0x3a3e0365, 0x657d12e6, 0x61e4001a, 0x00000000}},  //   _http_, rfsh, diil,\n  { {0x7c282530, 0x660411a8, 0x2ba40164, 0x00000000}},  //   _jidr, _ekik, _गोमा,\n  { {0x61e42531, 0x7c2801d6, 0x53340242, 0x00000000}},  //   fiil, _midr, тест,\n  { {0x78a20006, 0xdb1a0181, 0x61e4001a, 0x00000000}},  //   _krov, _potê, giil,\n  { {0x3f98020c, 0x752d0047, 0xdb1a008d, 0x00000000}},  // [6290] _baru_, _igaz, _botë,\n  { {0xed590119, 0x3f98005b, 0xf1bf0011, 0x00000000}},  //   _može_, _caru_, _gián_,\n  { {0x61e40cfc, 0x79820036, 0x3f98002b, 0x00000000}},  //   biil, _obow, _daru_,\n  { {0x61e4001a, 0xafdb0030, 0x699e0204, 0x00000000}},  //   ciil, _stød, _खोली,\n  { {0x7c2805cb, 0x394f0007, 0x60d60036, 0x00000000}},  //   _bidr, _regs_, czym,\n  { {0x644d0020, 0x394f0b33, 0x3f9821bc, 0x00000000}},  //   _mwai, _segs_, _garu_,\n  { {0x7c2800ea, 0x37e40044, 0x00000000, 0x00000000}},  //   _didr, নকার,   ,\n  { {0x752d2532, 0xa91d0428, 0xed590091, 0x00000000}},  //   _ngaz, leži, _bože_,\n  { {0xb4be001c, 0xdb1a01aa, 0x78a20026, 0x00000000}},  //   _इथे_, _lotè, _crov,\n  { {0xdce905fa, 0x660400ea, 0x61e4001a, 0x00000000}},  //   _ubeđ, _skik, ziil,\n  { {0x2bac01f5, 0xd5e600ed, 0x78a200bb, 0x00000000}},  //   चारा, ежни, _erov,\n  { {0x58d50920, 0xaa640986, 0x5a44007e, 0x00000000}},  //   _поет, _штук, _рэфа,\n  { {0x61e4003c, 0x69c92533, 0xdb08000a, 0x00000000}},  //   viil, mkee, _andè,\n  { {0x6e29001f, 0x69c9021e, 0x764101c9, 0x00000000}},  //   _lieb, lkee, pply,\n  { {0x61e42534, 0x386d00f4, 0x9694007e, 0x00000000}},  //   tiil, luer_, _арыш,\n  { {0x6e290036, 0x3f98002b, 0xdb1a0065, 0x00000000}},  //   _nieb, _saru_, _sotë,\n  { {0x644d018e, 0x61e4000d, 0xe0da0265, 0x00000000}},  // [62a0] _gwai, riil, чва_,\n  { {0x60d60046, 0xe47b00b6, 0x61e410fb, 0x00000000}},  //   rzym, _צריכ, siil,\n  { {0xf1bf001d, 0x4432001d, 0x61e4001a, 0x00000000}},  //   _giáo_, _huy_, piil,\n  { {0x6e290036, 0x3f980093, 0x7c282535, 0x00000000}},  //   _cieb, _waru_, _sidr,\n  { {0xdb0800f4, 0xdca309ae, 0x6e2901a2, 0x00000000}},  //   _indé, лаци, _dieb,\n  { {0x44320219, 0xdb1a0181, 0x7d090058, 0x00000000}},  //   _muy_, _hoté, _dyes,\n  { {0x7c2800d6, 0x78a22536, 0x6e2924c6, 0x00000000}},  //   _vidr, _srov, _fieb,\n  { {0x69c900c7, 0x68ed24f2, 0x799b00e0, 0x00000000}},  //   gkee, _žada, gduw,\n  { {0x386d1e3b, 0xdb1a00c4, 0x3b86007c, 0x00000000}},  //   guer_, _moté, _плаг,\n  { {0x8b26007e, 0x6e2904a5, 0xdb1a0cd3, 0x00000000}},  //   _здзе, _zieb, _loté,\n  { {0xa5f90bff, 0x00000000, 0x00000000, 0x00000000}},  //   дену_,   ,   ,\n  { {0x78a20198, 0x44320866, 0xdce0005f, 0x00000000}},  //   _trov, _buy_, _hamı,\n  { {0xb4cb03d7, 0xc458007c, 0x94a80783, 0x00000000}},  //   लने_, ниях_, нтра_,\n  { {0x7bca010f, 0x4432001d, 0x26c500b9, 0x00000000}},  //   nkfu, _duy_, bylo_,\n  { {0xd6cf01fb, 0xa91d09f4, 0x44320093, 0x00000000}},  //   _ст_, veži, _euy_,\n  { {0x6b9a0089, 0x9b17009b, 0x752d0892, 0x00000000}},  //   _latg, תחלה_, _ugaz,\n  { {0x765a010a, 0x6e292537, 0xdb1a009d, 0x00000000}},  // [62b0] lsty, _rieb, _doté,\n  { {0x7c2f028c, 0x6e292538, 0x69c9002d, 0x00000000}},  //   _écri, _sieb, zkee,\n  { {0x69c90007, 0x6e290089, 0x765a2539, 0x00000000}},  //   ykee, _pieb, nsty,\n  { {0x7d090065, 0x765a253a, 0xa2b600b3, 0x00000000}},  //   _pyes, isty, _ספרד_,\n  { {0xeb990769, 0x24890145, 0x00000000, 0x00000000}},  //   дил_, _jpam_,   ,\n  { {0xf1bf001d, 0x765a0006, 0xf3ff00c4, 0x00000000}},  //   _hoá_, ksty, irão_,\n  { {0x6b9a018e, 0x6e2909d0, 0xc334009b, 0x00000000}},  //   _datg, _tieb, נוק_,\n  { {0x765a0030, 0x799901d5, 0x386d253b, 0x00000000}},  //   dsty, _qaww, tuer_,\n  { {0x69c9049b, 0x780c0061, 0x87f9007e, 0x00000000}},  //   rkee, हतूक_, дэнт_,\n  { {0x2d8f0292, 0x765a253c, 0xf3ff0181, 0x00000000}},  //   lege_, fsty, drão_,\n  { {0x44320011, 0x4975007e, 0x24891659, 0x00000000}},  //   _suy_, _алес, _apam_,\n  { {0x89370025, 0x2d8f015b, 0x4432009d, 0x00000000}},  //   _أعضا, nege_, _puy_,\n  { {0x386d0be0, 0x4432001d, 0x88c403ec, 0x00000000}},  //   quer_, _quy_, _متول,\n  { {0xd705005e, 0x44320009, 0x00000000, 0x00000000}},  //   _изли, _vuy_,   ,\n  { {0x765a0009, 0x63be000c, 0xf3ff00fa, 0x00000000}},  //   csty, _vopn, arão_,\n  { {0x20180719, 0x4432001d, 0x01630d51, 0x00000000}},  //   _shri_, _tuy_, иксо,\n  { {0xe45a008b, 0x63be1375, 0xf1bf001d, 0x00000000}},  // [62c0] _ўжо_, _topn, _giám_,\n  { {0x64460133, 0x00000000, 0x00000000, 0x00000000}},  //   mpki,   ,   ,\n  { {0x6b9a010f, 0x661600b9, 0xdb1a013e, 0x00000000}},  //   _ratg, ůzku, _toté,\n  { {0x6b9a0093, 0x1ea90379, 0x6b4e0036, 0x00000000}},  //   _satg, عالي_, _mógł,\n  { {0x2c0e0061, 0x6b9a00d4, 0x6c330025, 0x00000000}},  //   ितलं_, _patg, لفنا,\n  { {0x765a0036, 0x64460006, 0x7bca0045, 0x00000000}},  //   ysty, ipki, ukfu,\n  { {0x6b9a0011, 0xa50f006e, 0x00000000, 0x00000000}},  //   _vatg, _सर्च_,   ,\n  { {0x1e970452, 0xa2b50164, 0xf1bf0011, 0x00000000}},  //   _בכלל_, _उपस्, _xoá_,\n  { {0x0c26025f, 0x3e7c1c59, 0x60100203, 0x00000000}},  //   _аман, lít_, hämm,\n  { {0x765a0056, 0xf3ff00fa, 0x00000000, 0x00000000}},  //   tsty, vrão_,   ,\n  { {0x6ae00044, 0xdb010030, 0xa01b00f8, 0x00000000}},  //   _পুরো, _anlæ, _spök,\n  { {0xd946005e, 0x3ce70061, 0xed590733, 0x00000000}},  //   _реди, जपचे_, _koža_,\n  { {0x765a0193, 0xe0df0045, 0x66cb0010, 0x00000000}},  //   ssty, _leòr_, tökö,\n  { {0xf3ff00c4, 0x765a0a59, 0xed5900ca, 0x00000000}},  //   rrão_, psty, _moža_,\n  { {0xf2c401be, 0x3e7c0224, 0xed5900ca, 0x00000000}},  //   астн, jít_, _loža_,\n  { {0x6440253d, 0xa3cf0316, 0x00000000, 0x00000000}},  //   ímic, _शतक_,   ,\n  { {0x21f701d5, 0x24890059, 0x2d8f253e, 0x00000000}},  // [62d0] għha_, _upam_, vege_,\n  { {0xceeb0070, 0x2d8f01a2, 0x645d00f8, 0x00000000}},  //   وران_, wege_, mssi,\n  { {0xc3320104, 0x69dc010a, 0x2d8f0b33, 0x00000000}},  //   _לוי_, _įren, tege_,\n  { {0xdb080036, 0xed590087, 0x00000000, 0x00000000}},  //   _lodó, _boža_,   ,\n  { {0x645d021e, 0x50f4041f, 0x2d8f002d, 0x00000000}},  //   nssi, _взят, rege_,\n  { {0x645d1684, 0x2d8f253f, 0x3e7c013e, 0x00000000}},  //   issi, sege_, bít_,\n  { {0x09e52540, 0x2d8f0190, 0xbed5003b, 0x00000000}},  //   локн, pege_, _совј,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6d59011c, 0x6ce70088, 0x00000000, 0x00000000}},  //   mawa, _ріве,   ,\n  { {0x6d590831, 0x645d0190, 0xe45f00b0, 0x00000000}},  //   lawa, dssi, työn_,\n  { {0x645d00d4, 0xdb010181, 0x7f55008e, 0x00000000}},  //   essi, _colô, _mezq,\n  { {0x6d59008a, 0x04460920, 0x7bc10387, 0x00000000}},  //   nawa, лемн, _holu,\n  { {0x645d00ea, 0x98790049, 0xa8790049, 0x00000000}},  //   gssi, _נאַט, _נאַר,\n  { {0xadc30011, 0x387f0065, 0x6d592541, 0x00000000}},  //   _khẳn, mtur_, hawa,\n  { {0x6d5909f3, 0x7bc10058, 0x29c3008e, 0x00000000}},  //   kawa, _molu, _uñas_,\n  { {0xdb010901, 0x6d592542, 0x601000f8, 0x00000000}},  //   _inlä, jawa, rämm,\n  { {0xa0670200, 0x6d590046, 0x387f010f, 0x00000000}},  // [62e0] лата_, dawa, ntur_,\n  { {0x6606009f, 0xa4b700b3, 0x3e7c245b, 0x00000000}},  //   lokk, _עליה_, tít_,\n  { {0x6da6013b, 0x25b70014, 0x91e60918, 0x00000000}},  //   лижа, _شهید_, _боне,\n  { {0x6d592543, 0x660619ae, 0x00000000, 0x00000000}},  //   gawa, nokk,   ,\n  { {0x7bc1009f, 0x387f008d, 0xf64700a1, 0x00000000}},  //   _bolu, jtur_, _گئ_,\n  { {0xafe60f40, 0x660600b0, 0x6e35089f, 0x00000000}},  //   _согл, hokk, _fuzb,\n  { {0xadc3001d, 0x6d592544, 0x6564001a, 0x00000000}},  //   _chẳn, bawa, _odih,\n  { {0x6564008d, 0x387f000c, 0xd90d00a1, 0x00000000}},  //   _ndih, ftur_, ڈیم_,\n  { {0xdb082545, 0xdb010a5d, 0xdca3003b, 0x00000000}},  //   _indí, _anlä, _лати,\n  { {0x7bc1016c, 0xa0970049, 0x807b0049, 0x00000000}},  //   _golu, נדיק_, עניצ,\n  { {0xe5b50147, 0x387f06be, 0x3c3901aa, 0x00000000}},  //   айны, atur_, _zèv_,\n  { {0xd6d7004c, 0x645d0c7a, 0xceb3009b, 0x00000000}},  //   уть_, tssi, ציר_,\n  { {0x7bc1038c, 0xdb1a1c59, 0xdb080048, 0x00000000}},  //   _yolu, _motí, _todó,\n  { {0x645d021e, 0x6d5909cc, 0x00000000, 0x00000000}},  //   rssi, zawa,   ,\n  { {0x45d52546, 0x6d590058, 0xcb37009b, 0x00000000}},  //   _войс, yawa, ראלי_,\n  { {0xdb1a0ca7, 0x29d80051, 0x66060f4c, 0x00000000}},  //   _notí, _déag_, cokk,\n  { {0x9f552547, 0x6d592548, 0x6e220082, 0x00000000}},  // [62f0] ивач, vawa, dmob,\n  { {0xdefb222e, 0x6d59011c, 0x6aa817db, 0x00000000}},  //   ные_, wawa, _ordf,\n  { {0x6d591084, 0x7bc11aba, 0x93150014, 0x00000000}},  //   tawa, _rolu, _خودش,\n  { {0x387f12e2, 0x00000000, 0x00000000, 0x00000000}},  //   ytur_,   ,   ,\n  { {0x7bc10119, 0x6d59027c, 0x6aa80048, 0x00000000}},  //   _polu, rawa, _ardf,\n  { {0x6d5904d4, 0x6e350064, 0xadc30011, 0x00000000}},  //   sawa, _tuzb, _phẳn,\n  { {0x6d590058, 0x6e220026, 0x00000000, 0x00000000}},  //   pawa, bmob,   ,\n  { {0x387f03da, 0xc9a90242, 0xdb1a00c4, 0x00000000}},  //   ttur_, твие_, _botâ,\n  { {0xa9220265, 0x7bc1008e, 0x66060052, 0x00000000}},  //   одъл, _tolu, vokk,\n  { {0xadc30011, 0x387f000c, 0x7782007c, 0x00000000}},  //   _thẳn, rtur_, ольз,\n  { {0x387f2549, 0x644410fb, 0x66060010, 0x00000000}},  //   stur_, _stii, tokk,\n  { {0x29d80051, 0x387f01e5, 0x7d160036, 0x00000000}},  //   _céad_, ptur_, żyse,\n  { {0x893406dd, 0x660600b5, 0x394d00f4, 0x00000000}},  //   _اعما, rokk, mbes_,\n  { {0x394d06be, 0xb6a501fb, 0x46a500ed, 0x00000000}},  //   lbes_, _викл, _вакв,\n  { {0x764301c9, 0x00000000, 0x00000000, 0x00000000}},  //   _utny,   ,   ,\n  { {0xb14602be, 0x386d00f4, 0x78a400ca, 0x00000000}},  //   рнал, orer_, _šivi,\n  { {0x3fe60726, 0x386d032e, 0x200a0022, 0x00000000}},  // [6300] ажав, nrer_, _pkbi_,\n  { {0x8236007a, 0x25a00a18, 0xb4c20204, 0x00000000}},  //   _پردا, _hail_, ंही_,\n  { {0x386d010f, 0xed5a1001, 0x6e2200f8, 0x00000000}},  //   hrer_, вое_, tmob,\n  { {0x386d0637, 0x25a00133, 0x7bc5254a, 0x00000000}},  //   krer_, _jail_, öhun,\n  { {0x6e22254b, 0x386d0190, 0xadc30082, 0x00000000}},  //   rmob, jrer_, _chằn,\n  { {0x386d254c, 0x6e2200ca, 0x764800ea, 0x00000000}},  //   drer_, smob, ypdy,\n  { {0x160603d7, 0x386d254d, 0xf1ca007d, 0x00000000}},  //   रवार_, erer_, _रवान,\n  { {0x298a0072, 0x386d0181, 0xdea400a6, 0x00000000}},  //   тско_, frer_, _پیچی,\n  { {0xb9c30054, 0xdb1a0181, 0x386d14b3, 0x00000000}},  //   تقيي, _botã, grer_,\n  { {0x1ae608f3, 0xc6a6005e, 0xf7b8003b, 0x00000000}},  //   _козм, арми, угој_,\n  { {0x25a008f7, 0x386d0186, 0x00000000, 0x00000000}},  //   _bail_, arer_,   ,\n  { {0x386d04bd, 0x2918006b, 0x998c0087, 0x00000000}},  //   brer_, əran_, _fudš_,\n  { {0x25a0254e, 0x386d009d, 0x2246016c, 0x00000000}},  //   _dail_, crer_, _čoka_,\n  { {0x3f8a00d9, 0x00000000, 0x00000000, 0x00000000}},  //   _nbbu_,   ,   ,\n  { {0x29d80051, 0x25a00a6b, 0x00000000, 0x00000000}},  //   _téad_, _fail_,   ,\n  { {0x3ead0de0, 0xdce0000a, 0x25a00322, 0x00000000}},  //   _čet_, _admč, _gail_,\n  { {0x660d0213, 0x7a350006, 0x00000000, 0x00000000}},  // [6310] _ikak, _ište,   ,\n  { {0x53991192, 0x33750088, 0x25a00032, 0x00000000}},  //   _своя_, _угор, _zail_,\n  { {0x394d0006, 0xa195017f, 0x00000000, 0x00000000}},  //   ybes_, _ланч,   ,\n  { {0xf2d2007b, 0x237f0091, 0x386d043e, 0x00000000}},  //   _זעט_, đuju_, yrer_,\n  { {0x61ed00b0, 0xdca5003b, 0x660d254f, 0x00000000}},  //   mial, сали, _mkak,\n  { {0x823401ef, 0xf77801d5, 0x386d009d, 0x00000000}},  //   _دریا, jgħ_, vrer_,\n  { {0x60cd0047, 0xaa56012b, 0x7a35016e, 0x00000000}},  //   lyam, бију_, _ošte,\n  { {0x61ed0e68, 0xadc30011, 0x386d19a3, 0x00000000}},  //   nial, _thằn, trer_,\n  { {0x60cd020c, 0x394d00f4, 0x3cd51023, 0x00000000}},  //   nyam, rbes_, _ужас,\n  { {0x386d04bd, 0x25a00016, 0x61ed08a6, 0x00000000}},  //   rrer_, _sail_, hial,\n  { {0x61ed0dc7, 0x8698004d, 0x60cd0009, 0x00000000}},  //   kial, атят_, hyam,\n  { {0x60cd00e0, 0xed5900b9, 0x00000000, 0x00000000}},  //   kyam, _jež_,   ,\n  { {0x61ed0142, 0x60cd0061, 0x18690eaf, 0x00000000}},  //   dial, jyam, _сали_,\n  { {0x60cd163c, 0xa5bb004a, 0x00000000, 0x00000000}},  //   dyam, lmól,   ,\n  { {0xa3e9006e, 0x216a026b, 0x2ca60142, 0x00000000}},  //   _मगर_, ливи_, zvod_,\n  { {0xed5901c8, 0x463a007b, 0x61ed0197, 0x00000000}},  //   _než_, _געקע, gial,\n  { {0xe3b20070, 0xc2e60044, 0x60cd2119, 0x00000000}},  // [6320] _فرد_, _খুশি_, gyam,\n  { {0xdd8f00a1, 0x00000000, 0x00000000, 0x00000000}},  //   ہوم_,   ,   ,\n  { {0x61ed0303, 0x7d1b1575, 0x00000000, 0x00000000}},  //   bial, _azus,   ,\n  { {0x629e0119, 0xed5a006d, 0xdb1a2550, 0x00000000}},  //   _ispo, اشات_, _notá,\n  { {0x69db0065, 0x447b0049, 0xed5900ca, 0x00000000}},  //   dhue, ָנצע, _dež_,\n  { {0x8f75007e, 0x629e00ea, 0xdb1a00f6, 0x00000000}},  //   _мусі, _kspo, _potà,\n  { {0x6da6142c, 0xdb1a02f9, 0x7d1b0032, 0x00000000}},  //   _лива, _botá, _ezus,\n  { {0x26cc007f, 0x00000000, 0x00000000, 0x00000000}},  //   vydo_,   ,   ,\n  { {0x660d0022, 0x6d4200d9, 0xb17b1afa, 0x00000000}},  //   _rkak, mcoa, _småk,\n  { {0x61ed2551, 0x660d0343, 0x6d420035, 0x00000000}},  //   zial, _skak, lcoa,\n  { {0xadc30082, 0x5986007e, 0x4fbb0049, 0x00000000}},  //   _chặn, _глеб, אזיצ,\n  { {0xca370097, 0x69db008e, 0x61ed0668, 0x00000000}},  //   _הנאה_, chue, xial,\n  { {0x629e0027, 0x5fb90061, 0x7a351a7d, 0x00000000}},  //   _aspo, _उचलल, _všte,\n  { {0x07a30783, 0x64560016, 0xc7a301ee, 0x00000000}},  //   _начн, _dwyi, _ничк,\n  { {0xd7f8001a, 0xd9ec0061, 0x98a4014a, 0x00000000}},  //   mnă_, _जगात_, mamı_,\n  { {0x98a4005d, 0x7a350091, 0x521503e8, 0x00000000}},  //   lamı_, _ušte, ідат,\n  { {0x629e06c0, 0xa2b501f5, 0x35f80167, 0x00000000}},  // [6330] _espo, _उपक्, _درود_,\n  { {0x60cd2552, 0xdb1f0010, 0x00000000, 0x00000000}},  //   ryam, űvés,   ,\n  { {0x6e99007c, 0x629e0320, 0x61ed13db, 0x00000000}},  //   рвер_, _gspo, pial,\n  { {0x443b0065, 0x44332553, 0xdb0100c4, 0x00000000}},  //   _kuq_, _hix_, _falê,\n  { {0xe0e4007e, 0x4433109a, 0x61fd00bb, 0x00000000}},  //   _еўро, _kix_, _ijsl,\n  { {0xaa4900ed, 0x00000000, 0x00000000, 0x00000000}},  //   апка_,   ,   ,\n  { {0xdab9007e, 0x69db0023, 0xdb1a2554, 0x00000000}},  //   рылі_, thue, _potá,\n  { {0x44332555, 0x49c9026b, 0x3eae0030, 0x00000000}},  //   _lix_, рлин_, æfte_,\n  { {0x44210525, 0xf771006d, 0xc7950783, 0x00000000}},  //   _ohh_, واد_, орны,\n  { {0x4433010f, 0x166502d3, 0xf1bf0051, 0x00000000}},  //   _nix_, овом, _fhág_,\n  { {0x6d5b0390, 0x7c3b0250, 0xdb010065, 0x00000000}},  //   _keua, _huur, _malë,\n  { {0x44210487, 0x8c3d011f, 0x4433009d, 0x00000000}},  //   _ahh_, _arşi, _aix_,\n  { {0x7c3b08b2, 0x395f0be1, 0xdffb0164, 0x00000000}},  //   _juur, maus_, ्वाद_,\n  { {0x395f025c, 0x7c3b2556, 0x6d420d48, 0x00000000}},  //   laus_, _muur, zcoa,\n  { {0x443300f4, 0x232a017a, 0xe29a034b, 0x00000000}},  //   _dix_, рови_, шав_,\n  { {0x443b0f68, 0x395f021e, 0x6d5b068a, 0x00000000}},  //   _fuq_, naus_, _neua,\n  { {0xdfd20379, 0x6ab602d2, 0x629e0036, 0x00000000}},  // [6340] وير_, _अप्र, _wspo,\n  { {0x395f010f, 0xdb0100c4, 0x00000000, 0x00000000}},  //   haus_, _valê,   ,\n  { {0x35af03d7, 0x629e0466, 0x6d42062c, 0x00000000}},  //   _जोड़, _uspo, tcoa,\n  { {0x7c3b0250, 0x2cad05fe, 0x395f2557, 0x00000000}},  //   _buur, _bred_, jaus_,\n  { {0x2cad000d, 0x395f0006, 0xdb010065, 0x00000000}},  //   _cred_, daus_, _falë,\n  { {0xe0fb00b6, 0x7c3b00b5, 0x6d421541, 0x00000000}},  //   _כלכל, _duur, scoa,\n  { {0x98a4038c, 0x69d90022, 0x8e8301ee, 0x00000000}},  //   vamı_, _blwe, _огре,\n  { {0x395f010a, 0x31600032, 0x6e3c0032, 0x00000000}},  //   gaus_, naiz_, _iurb,\n  { {0x6e3c2558, 0x61410010, 0x2cad01a3, 0x00000000}},  //   _hurb, _háló, _gred_,\n  { {0x6e3c014a, 0xd7f8001a, 0xa5bb008e, 0x00000000}},  //   _kurb, ună_, rmóm,\n  { {0x443b01d5, 0x21270011, 0x4433002b, 0x00000000}},  //   _suq_, ̀nh_, _rix_,\n  { {0x44330549, 0x395f0a16, 0x6e3c2559, 0x00000000}},  //   _six_, caus_, _murb,\n  { {0x7bc80004, 0x4433255a, 0x6fda0061, 0x00000000}},  //   _kodu, _pix_, णसां,\n  { {0xdb011259, 0x6e3c1f4e, 0x00000000, 0x00000000}},  //   _balè, _ourb,   ,\n  { {0x7bc8022b, 0x3866068f, 0x6e3c0ec1, 0x00000000}},  //   _modu, _hvor_, _nurb,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xdb010065, 0x7f5c0066, 0x41b500a1, 0x00000000}},  // [6350] _palë, _berq, _ہمدر,\n  { {0x6e3c1f51, 0x7bc80035, 0x7f5c0a0a, 0x00000000}},  //   _burb, _nodu, _cerq,\n  { {0x7c3b08b2, 0x2cad12d6, 0x6e3c0035, 0x00000000}},  //   _suur, _sred_, _curb,\n  { {0x6e3c0007, 0x2cad0cce, 0x4035005e, 0x00000000}},  //   _durb, _pred_, _немс,\n  { {0x2fc7001d, 0x395f042c, 0x6e3c0145, 0x00000000}},  //   ưng_, vaus_, _eurb,\n  { {0x7bc8001a, 0x7c3b00c7, 0x6e3c0197, 0x00000000}},  //   _codu, _vuur, _furb,\n  { {0x7bc8037e, 0x63a5006b, 0x395f0ecb, 0x00000000}},  //   _dodu, _mahn, taus_,\n  { {0x63a50cba, 0x7c3b255b, 0x7e650023, 0x00000000}},  //   _lahn, _tuur, mshp,\n  { {0x395f255c, 0xb4ea0061, 0x6e3c0032, 0x00000000}},  //   raus_, _मधे_, _zurb,\n  { {0x7bc81875, 0x7afc0059, 0x395f0d96, 0x00000000}},  //   _godu, _žrte, saus_,\n  { {0x395f255d, 0xe5a60088, 0x78a90056, 0x00000000}},  //   paus_, пини, svev,\n  { {0xdb0100b9, 0x7bc3012d, 0x69d901c3, 0x00000000}},  //   _nalé, ljnu, _ulwe,\n  { {0x63a5010f, 0x993a00b3, 0xb9c40025, 0x00000000}},  //   _bahn, _התנה, _تقني,\n  { {0xc879005d, 0x63a50022, 0xdb0100f6, 0x00000000}},  //   muş_, _cahn, _palè,\n  { {0x63a5255e, 0xc879255f, 0x8c1a009b, 0x00000000}},  //   _dahn, luş_, מושי,\n  { {0xdb012560, 0x0563005e, 0x629c0b04, 0x00000000}},  //   _valè, _звън, rwro,\n  { {0x7f5c04bd, 0x63a501a2, 0x31600032, 0x00000000}},  // [6360] _perq, _fahn, raiz_,\n  { {0x2b8f011f, 0x6e3c0169, 0xdb1801e5, 0x00000000}},  //   nıcı_, _purb, mkvö,\n  { {0x6e3c006b, 0xe3570097, 0x7bc80052, 0x00000000}},  //   _qurb, _משיח_, _rodu,\n  { {0x63a52561, 0xdb011b6d, 0x568c0049, 0x00000000}},  //   _zahn, _galé, שטאַ,\n  { {0x7bc8154d, 0xc17300b6, 0xa1160014, 0x00000000}},  //   _podu, _אחר_, _روست,\n  { {0x6e3c2562, 0x442a000a, 0x00000000, 0x00000000}},  //   _turb, nmb_,   ,\n  { {0x80d10055, 0x29d8002a, 0x7e650061, 0x00000000}},  //   _সেপ্, _déan_, cshp,\n  { {0xada3008b, 0x6da301fe, 0x3f9a0036, 0x00000000}},  //   _пасл, _писа, lepu_,\n  { {0x29022563, 0x7bc80022, 0xeb3600a2, 0x00000000}},  //   çka_, _todu, _فراخ,\n  { {0xf1bf00ad, 0xfaa606b6, 0x442a0022, 0x00000000}},  //   _khác_, _назо, jmb_,\n  { {0xf119013d, 0xadf3007d, 0x04f90044, 0x00000000}},  //   _दर्द_, _आगमन_, _ঘরের_,\n  { {0x63a5085e, 0x39461b34, 0xaa3b0097, 0x00000000}},  //   _sahn, _ufos_, _התאח,\n  { {0x80d10044, 0x7df50006, 0x63a50087, 0x00000000}},  //   _সেন্, mąst, _pahn,\n  { {0x78a200b0, 0x3f9a0166, 0xdb01009d, 0x00000000}},  //   _isov, jepu_, _salé,\n  { {0x61e10065, 0xdb01009d, 0x7a010089, 0x00000000}},  //   ëllo, _palé, lēta,\n  { {0xc2c40025, 0x067b0104, 0x63a501a2, 0x00000000}},  //   ريقي, _הנהל, _wahn,\n  { {0x628701d5, 0xdb01009d, 0x7a010089, 0x00000000}},  // [6370] stjo, _valé, nēta,\n  { {0x644d2564, 0xe9e20036, 0x78a20045, 0x00000000}},  //   _itai, leźć_, _msov,\n  { {0x7f450c3f, 0x3a3e0145, 0x00000000, 0x00000000}},  //   rchq, _nutp_,   ,\n  { {0xfe700076, 0xf1bf0011, 0x7e650023, 0x00000000}},  //   ادل_, _giáp_, rshp,\n  { {0x0db80025, 0x2b8f005a, 0x656d00e7, 0x00000000}},  //   ثالث_, yıcı_, _mdah,\n  { {0x660f06d3, 0xc8790276, 0x3f9a0035, 0x00000000}},  //   hock, vuş_, cepu_,\n  { {0x78a20107, 0xfaa2005e, 0xf41f00b0, 0x00000000}},  //   _asov, ващо, ytän_,\n  { {0x656d0065, 0xfaf003ec, 0x660f141b, 0x00000000}},  //   _ndah, دثه_, jock,\n  { {0x2b8f01df, 0xc8c90014, 0x6d490c97, 0x00000000}},  //   tıcı_, زودن_, _ifea,\n  { {0xe6450ae0, 0x656d0009, 0xc879026d, 0x00000000}},  //   меоп, _adah, ruş_,\n  { {0x9f840004, 0x38ca007a, 0x2b8f0180, 0x00000000}},  //   _töö_, مایی_, rıcı_,\n  { {0xb8f30044, 0x00000000, 0x00000000, 0x00000000}},  //   _হই_,   ,   ,\n  { {0x45d3007e, 0x60102565, 0x7a010089, 0x00000000}},  //   тоўс, kämp, cēta,\n  { {0xe787081e, 0x69cb2566, 0x644d0051, 0x00000000}},  //   _худо, _hoge, _dtai,\n  { {0x69cb006c, 0x644d00f4, 0x601009b0, 0x00000000}},  //   _koge, _etai, dämp,\n  { {0xed592567, 0x3f9a0020, 0xe45f00b0, 0x00000000}},  //   _kožu_, wepu_, työt_,\n  { {0x69cb0376, 0x3eb12568, 0x20070059, 0x00000000}},  // [6380] _moge, _arzt_, čnin_,\n  { {0x2497007a, 0x6f1a2569, 0x69cb00f4, 0x00000000}},  //   _کنید_, оцес_, _loge,\n  { {0x29d80051, 0x7a010089, 0x0d86007c, 0x00000000}},  //   _béal_, zēta, длен,\n  { {0x69cb0018, 0x00000000, 0x00000000, 0x00000000}},  //   _noge,   ,   ,\n  { {0xdca303f3, 0x8c4301e0, 0x95880006, 0x00000000}},  //   каци, вече, _grąž,\n  { {0xdb08153d, 0xf1bf0011, 0xa91d0006, 0x00000000}},  //   _indú, _thác_, igžd,\n  { {0x69cb256a, 0xb17b06d9, 0x00000000, 0x00000000}},  //   _boge, _flåd,   ,\n  { {0x78a2037e, 0x69cb1965, 0x1d0a00e2, 0x00000000}},  //   _psov, _coge, _деби_,\n  { {0xfcaa0167, 0x7a35251b, 0x00000000, 0x00000000}},  //   _بازو_, _ešto,   ,\n  { {0x7a010089, 0x29180089, 0x6d440027, 0x00000000}},  //   rēta, āra_, žiad,\n  { {0x644d002a, 0x69cb00eb, 0x656d0022, 0x00000000}},  //   _stai, _foge, _pdah,\n  { {0xafdb0056, 0x644d0022, 0x00000000, 0x00000000}},  //   _utøv, _ptai,   ,\n  { {0xd943025f, 0x443f001d, 0x3a260039, 0x00000000}},  //   _речи, êu_, _ihop_,\n  { {0x69cb111d, 0xacd90049, 0x00000000, 0x00000000}},  //   _zoge, פֿרי,   ,\n  { {0x2607025f, 0xa1950088, 0xdb082396, 0x00000000}},  //   _очиг, навч, _andú,\n  { {0x656d0166, 0xdb1a0051, 0x00000000, 0x00000000}},  //   _udah, _botú,   ,\n  { {0x92c10055, 0x644d12bd, 0xb17b256b, 0x00000000}},  // [6390] ্ছে_, _utai, _smås,\n  { {0x25a901bb, 0x7a25256c, 0x00000000, 0x00000000}},  //   _haal_, móte,   ,\n  { {0x25a9256d, 0xd356009b, 0xf3ff00c4, 0x00000000}},  //   _kaal_, _איתי_, lsão_,\n  { {0x41d30061, 0x201a0026, 0xc05b03e8, 0x00000000}},  //   _सविस, alpi_, _міг_,\n  { {0xf3ff0181, 0x25a9256e, 0x644b0068, 0x00000000}},  //   nsão_, _maal_, _égid,\n  { {0x7afc037e, 0x69cb0dcc, 0x6a8500e3, 0x00000000}},  //   _žrta, _soge, елка,\n  { {0xb6060802, 0x69c00061, 0x8d770439, 0x00000000}},  //   _hláš, वाढी, _يارا,\n  { {0x3a260133, 0xb6060161, 0xb17b0146, 0x00000000}},  //   _chop_, _kláš, _flåe,\n  { {0x69cb060f, 0xe8f90764, 0x2d9d09df, 0x00000000}},  //   _voge, яли_, mewe_,\n  { {0x2d9d14d2, 0xeb90002c, 0x612a0010, 0x00000000}},  //   lewe_, _نظم_, lölé,\n  { {0x25a901aa, 0x69cb00ab, 0x7ac4256f, 0x00000000}},  //   _baal_, _toge, _исце,\n  { {0xa95401fb, 0x2d9d0117, 0xa50a00e2, 0x00000000}},  //   _акці, newe_, зема_,\n  { {0x67d5007c, 0xdb010062, 0x25a901d6, 0x00000000}},  //   _поду, _malí, _daal_,\n  { {0xbf1f0061, 0x3dcd02d4, 0xa91d0006, 0x00000000}},  //   _भरून_, _loew_, rgžd,\n  { {0xcb120049, 0xb7da009b, 0x2d9d00e7, 0x00000000}},  //   ָלן_, _מקסי, kewe_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x69c00061, 0x34b30025, 0x602600ed, 0x00000000}},  // [63a0] वाती, _مميز, едаа,\n  { {0x65660058, 0xdee60c96, 0x25a900bb, 0x00000000}},  //   lakh, нози, _zaal_,\n  { {0xee3a0407, 0x2446001d, 0xb17b011b, 0x00000000}},  //   чне_, _hôm_, _slåe,\n  { {0xafdb02cc, 0x2d9d0007, 0x65660145, 0x00000000}},  //   _støt, gewe_, nakh,\n  { {0xf1bf0011, 0x61f601df, 0x443a2570, 0x00000000}},  //   _khán_, miyl, _kip_,\n  { {0x443a01d6, 0xfaa60216, 0x61f62571, 0x00000000}},  //   _jip_, ешин, liyl,\n  { {0xed5a0113, 0x7980049a, 0x2d96008b, 0x00000000}},  //   _нов_, tgmw, _прас,\n  { {0x61f6014a, 0xdb0100d4, 0x61e40da6, 0x00000000}},  //   niyl, _galí, nhil,\n  { {0x7e7e13f0, 0x75240009, 0x6566008a, 0x00000000}},  //   lupp, _nziz, dakh,\n  { {0x25a92572, 0x443a2573, 0x7a0101c5, 0x00000000}},  //   _saal_, _nip_, bēto,\n  { {0xd6d70e85, 0x752412d9, 0x9f5a0d62, 0x00000000}},  //   етя_, _aziz, lopó_,\n  { {0x7c3a01d9, 0xaadb0104, 0x48e6026b, 0x00000000}},  //   _hitr, _מחבר, _поев,\n  { {0x99e91826, 0x61e40020, 0x25a90007, 0x00000000}},  //   _تعلق_, dhil, _vaal_,\n  { {0xf3ff02d5, 0xf8b3012f, 0xf1bf0011, 0x00000000}},  //   rsão_, _תשס_, _chán_,\n  { {0xf3ff02d5, 0x25a90100, 0xdce90059, 0x00000000}},  //   ssão_, _taal_, _rdeč,\n  { {0x20070295, 0xda10006e, 0x7a2500f7, 0x00000000}},  //   čnim_, ावित_, póte,\n  { {0x20980930, 0x24890068, 0x00000000, 0x00000000}},  // [63b0] нкты_, _uqam_,   ,\n  { {0x7c3a0027, 0x251c007b, 0x661d0039, 0x00000000}},  //   _nitr, _צוזא, llsk,\n  { {0x2d9d2574, 0x63ad0089, 0x61f601df, 0x00000000}},  //   tewe_, ļinā, biyl,\n  { {0x61e402ae, 0xdb1a2575, 0x00000000, 0x00000000}},  //   chil, _intè,   ,\n  { {0xdca5013b, 0x2d9d2576, 0x7c3a0253, 0x00000000}},  //   тали, rewe_, _bitr,\n  { {0xeb960331, 0x443a00d4, 0xdb080173, 0x00000000}},  //   виш_, _xip_, _kadè,\n  { {0x7c3a04be, 0x2fc7000c, 0x2d9d00e7, 0x00000000}},  //   _ditr, öngu_, pewe_,\n  { {0x7c3a2313, 0x00000000, 0x00000000, 0x00000000}},  //   _eitr,   ,   ,\n  { {0x7c3a0169, 0xdb0100c4, 0x6d5900e7, 0x00000000}},  //   _fitr, _balã, mbwa,\n  { {0x61e401ee, 0x7dfc01aa, 0xdb0100c4, 0x00000000}},  //   zhil, včsi, _calã,\n  { {0x65660169, 0xba74035b, 0xe73900ed, 0x00000000}},  //   takh, _مانت, ќен_,\n  { {0x7c3a01a2, 0xdd990173, 0x75e60036, 0x00000000}},  //   _zitr, _akňz_, _mózg,\n  { {0x65660149, 0xf1bf0011, 0x60c40066, 0x00000000}},  //   rakh, _phán_, xxim,\n  { {0x6b832577, 0x65660056, 0x6e3b007f, 0x00000000}},  //   ngng, sakh, _liub,\n  { {0x443a001d, 0x61e4010f, 0xf1bf0082, 0x00000000}},  //   _vip_, thil, _cháo_,\n  { {0x443a01d6, 0x69c900ea, 0x24460011, 0x00000000}},  //   _wip_, njee, _tôm_,\n  { {0xa0670113, 0xdb1a0263, 0x61f6014a, 0x00000000}},  // [63c0] ката_, _entè, riyl,\n  { {0x61e42578, 0x3fe30457, 0xafdb02cc, 0x00000000}},  //   shil, ажув, _stør,\n  { {0x7c3a2579, 0x7d1b011c, 0x69db00b0, 0x00000000}},  //   _ritr, _ayus, kkue,\n  { {0x7e7e0292, 0x76430020, 0x6e29257a, 0x00000000}},  //   rupp, _muny, _cheb,\n  { {0xdb1a257b, 0xdd8f06dd, 0x7e7e0039, 0x00000000}},  //   _inté, تون_, supp,\n  { {0x6564257c, 0x387f108a, 0xdb0100f6, 0x00000000}},  //   _leih, duur_, _balà,\n  { {0x7c3a00f4, 0x628e1b0d, 0x7d0906c2, 0x00000000}},  //   _vitr, ntbo, _exes,\n  { {0xdb010181, 0x225e01ca, 0x6e3b0197, 0x00000000}},  //   _salã, átky_, _giub,\n  { {0x7c3a028c, 0x387f257d, 0x61e10023, 0x00000000}},  //   _titr, guur_, ëlli,\n  { {0x7c3a00c7, 0x764301a3, 0x00000000, 0x00000000}},  //   _uitr, _buny,   ,\n  { {0xdce90089, 0x69c6003c, 0x973c0166, 0x00000000}},  //   _ideā, ökes, jeće,\n  { {0x973c0091, 0x7a250036, 0x764306df, 0x00000000}},  //   deće, rótc, _duny,\n  { {0x661d0039, 0x628e008e, 0x2955005e, 0x00000000}},  //   rlsk, etbo, _съхр,\n  { {0x200702aa, 0xdb1a257e, 0x628e0d33, 0x00000000}},  //   čnik_, _anté, ftbo,\n  { {0x56940057, 0x6d4001aa, 0x179b009b, 0x00000000}},  //   _сайт, _ogma, _חיוב,\n  { {0x2918257f, 0xd6d90088, 0x6d400058, 0x00000000}},  //   ğraf_, _яті_, _ngma,\n  { {0xdb010253, 0xa5bb2285, 0x00000000, 0x00000000}},  // [63d0] _malá, rlód,   ,\n  { {0xa5bb002a, 0xdefb0057, 0xdb1a2580, 0x00000000}},  //   slód, мые_, _enté,\n  { {0x6d4b001c, 0xf7730097, 0x6d400022, 0x00000000}},  //   tcga, שקע_, _bgma,\n  { {0x20180263, 0xf1bf0011, 0x44310146, 0x00000000}},  //   _ekri_, _khám_, lmz_,\n  { {0xbc19008b, 0x6d4000d4, 0x7a25000c, 0x00000000}},  //   нікі_, _dgma, jóta,\n  { {0xe504013d, 0x7a350006, 0x387f01bb, 0x00000000}},  //   रपति_, _išti, vuur_,\n  { {0xfb84008b, 0xbe88003b, 0xab84012c, 0x00000000}},  //   рычн, _исте_, ручк,\n  { {0x387f1787, 0xc3340104, 0x76430541, 0x00000000}},  //   tuur_, סוק_, _runy,\n  { {0x6564010f, 0xf1bf2581, 0x69c900b0, 0x00000000}},  //   _reih, _mná_, rjee,\n  { {0x68e90046, 0x7643020c, 0x47c500aa, 0x00000000}},  //   rzed, _puny, убов,\n  { {0x2007092f, 0x628e0857, 0xaa550098, 0x00000000}},  //   čnih_, xtbo, _свеш,\n  { {0x2619028c, 0xdb012582, 0x7a25000c, 0x00000000}},  //   déos_, _galá, bóta,\n  { {0x973c0107, 0x69c00204, 0x6444004a, 0x00000000}},  //   veće, वारी, _quii,\n  { {0x6564010f, 0x394d12b9, 0x628e00ea, 0x00000000}},  //   _weih, lces_, ttbo,\n  { {0x386d2141, 0xb80500a1, 0x973c0166, 0x00000000}},  //   lser_, _لکھے_, teće,\n  { {0x394d032c, 0x386d05af, 0x00000000, 0x00000000}},  //   nces_, oser_,   ,\n  { {0x628e0039, 0x386d067e, 0x973c0091, 0x00000000}},  // [63e0] stbo, nser_, reće,\n  { {0xd84800ad, 0x973c0107, 0x53a6003b, 0x00000000}},  //   _học_, seće, _саоб,\n  { {0x973c016c, 0x6d4000e0, 0x394d0036, 0x00000000}},  //   peće, _pgma, kces_,\n  { {0xc27b007b, 0x386d01e3, 0xa155005e, 0x00000000}},  //   _ארטי, kser_, _върш,\n  { {0x386d0018, 0xd8480011, 0x291d00e7, 0x00000000}},  //   jser_, _mọc_, _nywa_,\n  { {0xdb012583, 0x394d01c5, 0x386d0030, 0x00000000}},  //   _salá, eces_, dser_,\n  { {0xdb0114aa, 0x386d0240, 0x3f98016c, 0x00000000}},  //   _palá, eser_, _ibru_,\n  { {0xdd920151, 0x98740072, 0xef17007c, 0x00000000}},  //   _دور_, алиц, _смс_,\n  { {0x443123cf, 0xcd06004d, 0x00000000, 0x00000000}},  //   ymz_, _спай,   ,\n  { {0x089706ea, 0x18970025, 0x97a6013b, 0x00000000}},  //   اضيع_, اضية_, урил,\n  { {0xdb010047, 0x6c330025, 0x386d00d2, 0x00000000}},  //   _talá, _افلا, aser_,\n  { {0x394d0382, 0xd94601fc, 0xd8480011, 0x00000000}},  //   cces_, _седи, _cọc_,\n  { {0xd8480011, 0xa8560143, 0x00000000, 0x00000000}},  //   _dọc_, _стеј,   ,\n  { {0x25ad00b9, 0xdce00235, 0x6036000a, 0x00000000}},  //   žel_, _nemč, _fņmi,\n  { {0x268a0025, 0x752800b4, 0x00000000, 0x00000000}},  //   _أختي_, ędza,   ,\n  { {0xf1bf0011, 0x7a010089, 0x3f9801f3, 0x00000000}},  //   _thám_, vētk, _abru_,\n  { {0x3f9801c3, 0xb17b0146, 0x00000000, 0x00000000}},  // [63f0] _bbru_, _flån,   ,\n  { {0x1e0d013d, 0x00000000, 0x00000000, 0x00000000}},  //   िक्ष_,   ,   ,\n  { {0x7a35007f, 0xa195007e, 0xb5c80014, 0x00000000}},  //   _ištv, _канч, _شویم_,\n  { {0x386d0007, 0x0dc81666, 0x6d442198, 0x00000000}},  //   yser_, лучи_, žian,\n  { {0xd264001e, 0x55780049, 0xdb08014a, 0x00000000}},  //   _viņš_, רעדן_, _endü,\n  { {0xeb99005c, 0x207a0049, 0xdb1a00c4, 0x00000000}},  //   тик_, _באשא, _notó,\n  { {0x7a010089, 0x543c0049, 0x2bc70316, 0x00000000}},  //   lēti, געגא, लाबा,\n  { {0x386d2584, 0x00000000, 0x00000000, 0x00000000}},  //   tser_,   ,   ,\n  { {0x394d030a, 0xdb1a0211, 0x386d068d, 0x00000000}},  //   rces_, _botó, user_,\n  { {0x386d01bf, 0x2cb8004b, 0xa76501e1, 0x00000000}},  //   rser_, _حافظ_, шкод,\n  { {0x7bc10336, 0xe9750014, 0x7d1600b4, 0x00000000}},  //   _inlu, _نهاد, żyst,\n  { {0x195900a5, 0x386d0302, 0xdb0800d6, 0x00000000}},  //   _рады_, pser_, _endó,\n  { {0xdb1a0047, 0xb17b00f8, 0xa5bb00fa, 0x00000000}},  //   _fotó, _plån, rmóp,\n  { {0xdb01153d, 0xa4060044, 0xdb1a0036, 0x00000000}},  //   _calç, োগ্য_, _gotó,\n  { {0x98140025, 0xdce00173, 0x00000000, 0x00000000}},  //   _ابنا, _remč,   ,\n  { {0x65bb021e, 0xd848001d, 0x24f60088, 0x00000000}},  //   _vähä, _họa_, _вчор,\n\n  { {0x1f660b9d, 0x7bc10197, 0x973c0166, 0x00000000}},  // [6400] икам, _onlu, meća,\n  { {0x65bb021e, 0x7a350391, 0x00000000, 0x00000000}},  //   _tähä, _ištu,   ,\n  { {0xd37b012f, 0xe37b00a0, 0x1eca005e, 0x00000000}},  //   _בריט, _בריר, ължи_,\n  { {0x629e17f4, 0x06960049, 0x7a010089, 0x00000000}},  //   _ippo, ידעם_, bēti,\n  { {0xf3c90014, 0x9cf6003b, 0xdb1a00f6, 0x00000000}},  //   _شبیه_, јчеш, _notò,\n  { {0x629e0022, 0x635300b9, 0xdb01006b, 0x00000000}},  //   _kppo, mění, _xalç,\n  { {0x6da60140, 0x09af0044, 0x00000000, 0x00000000}},  //   _кива, কানা,   ,\n  { {0x973c0182, 0xf41f04ec, 0x7bc10068, 0x00000000}},  //   jeća, ltät_, _enlu,\n  { {0xc7c6058f, 0xfce30478, 0x629e0022, 0x00000000}},  //   асни, _дото, _lppo,\n  { {0x5fc901f5, 0x38790010, 0x2ca9009d, 0x00000000}},  //   रायल, ásra_, çade_,\n  { {0x09e60822, 0xd8480011, 0x8c1b009b, 0x00000000}},  //   _кожн, _dọa_, _יומי,\n  { {0xdb1a00d4, 0x00000000, 0x00000000, 0x00000000}},  //   _fotò,   ,   ,\n  { {0x629e16df, 0x5347012b, 0x4dc80044, 0x00000000}},  //   _appo, ихва, _শতাং,\n  { {0x26f70123, 0x61e601c3, 0xdb1a00e5, 0x00000000}},  //   اریخ_, _alkl, _intâ,\n  { {0x69c20112, 0x61e60022, 0x25b000b0, 0x00000000}},  //   _knoe, _blkl, öllä_,\n  { {0x31c401fb, 0x518700ed, 0xf1bf0011, 0x00000000}},  //   осув, јува, _khái_,\n  { {0x629e0026, 0x00000000, 0x00000000, 0x00000000}},  // [6410] _eppo,   ,   ,\n  { {0x7a01001e, 0x3d1a03d7, 0xdb1a06c2, 0x00000000}},  //   rēti, _बड़े_, _antí,\n  { {0x442300d0, 0x98bd0066, 0x00000000, 0x00000000}},  //   mlj_, _mewġ_,   ,\n  { {0x6e22027b, 0x442301e5, 0x7a0101c5, 0x00000000}},  //   glob, llj_, pēti,\n  { {0x6aba0253, 0xf1bf0011, 0xf3f00014, 0x00000000}},  //   _artf, _nhái_, _رأی_,\n  { {0x69c2044a, 0x3b091867, 0x92b401b2, 0x00000000}},  //   _anoe, лело_, _احیا,\n  { {0x6e221ec6, 0x7eb00010, 0xddab01ee, 0x00000000}},  //   blob, rópá, _итал_,\n  { {0xf9910025, 0x3ebe000c, 0xf53f03b1, 0x00000000}},  //   سبب_, _átta_, ndås_,\n  { {0x973c0091, 0x5ef90044, 0x68f6007f, 0x00000000}},  //   veća, _অডিও_, _žydr,\n  { {0x7d040051, 0x7d1e0036, 0xdb0101a2, 0x00000000}},  //   úise, ępst, _palä,\n  { {0x38ca007a, 0x7cfd08c8, 0xdce00089, 0x00000000}},  //   نایی_, _færø, _iemā,\n  { {0x1a6400a1, 0x8afa0049, 0x00000000, 0x00000000}},  //   _بیٹی_, _גלעז,   ,\n  { {0x49b80a4f, 0xd8480011, 0x79890bed, 0x00000000}},  //   _خالد_, _tọa_, mgew,\n  { {0xf8b600b6, 0x973c0521, 0xb05b03a9, 0x00000000}},  //   _לפני_, seća, _kräf,\n  { {0xd5ad026c, 0x12b80044, 0x973c2585, 0x00000000}},  //   رہی_, ীন্দ, lećn,\n  { {0xa5bb027b, 0x68ec005d, 0x395f00bb, 0x00000000}},  //   llón, _öldü, nbus_,\n  { {0xb4db0129, 0x25fd013d, 0x44230087, 0x00000000}},  // [6420] scàr, _लगती_, blj_,\n  { {0xe0df0173, 0x6d56014a, 0x798901a2, 0x00000000}},  //   _afòs_, ıyam, hgew,\n  { {0x6e220059, 0x6d440006, 0xa1360014, 0x00000000}},  //   tlob, žiam, _گردش,\n  { {0x798900b5, 0xf41f0844, 0x49180061, 0x00000000}},  //   jgew, stät_, _पडलो_,\n  { {0x798901d6, 0xa1360025, 0x395f00d9, 0x00000000}},  //   dgew, _دردش, dbus_,\n  { {0x62810682, 0x69c200c7, 0xd8480011, 0x00000000}},  //   álog, _snoe, _bọn_,\n  { {0x224205ed, 0x79892586, 0x200f009d, 0x00000000}},  //   _kikk_, fgew, égie_,\n  { {0xf1bf0011, 0x7989172d, 0x201a00ca, 0x00000000}},  //   _phái_, ggew, lopi_,\n  { {0xdd8f0752, 0x2242006c, 0x8b96189c, 0x00000000}},  //   _سول_, _mikk_, _греч,\n  { {0x22420056, 0x201a0145, 0x37aa01ee, 0x00000000}},  //   _likk_, nopi_, утин_,\n  { {0xd8480011, 0x501b009b, 0x4423050f, 0x00000000}},  //   _gọn_, רויו, vlj_,\n  { {0xdb1a02d5, 0xf1bf001d, 0x35e7008b, 0x00000000}},  //   _entã, _thái_, сцов,\n  { {0x999f005d, 0x81de0044, 0x3946020e, 0x00000000}},  //   lmuş_, তফা_, _igos_,\n  { {0xf64f00a1, 0x29d80048, 0x22420085, 0x00000000}},  //   بئی_, _géar_, _aikk_,\n  { {0x999f027d, 0x201a2587, 0x7a350006, 0x00000000}},  //   nmuş_, dopi_, _ištr,\n  { {0x22420047, 0x2a8e006b, 0x3ebf0e3d, 0x00000000}},  //   _cikk_, _həbs_, _čut_,\n  { {0x656f001f, 0x7a0800b9, 0x2fc30085, 0x00000000}},  // [6430] mach, větl, _pnjg_,\n  { {0x656f002a, 0x752d0091, 0x53990d99, 0x00000000}},  //   lach, _izaz, _твоя_,\n  { {0x543c007b, 0x61e3001a, 0x22420056, 0x00000000}},  //   _געזא, _înlo, _fikk_,\n  { {0x656f0b0e, 0x63a70046, 0x645d00d9, 0x00000000}},  //   nach, lejn, opsi,\n  { {0x61ed0a96, 0x6295002d, 0x7a352588, 0x00000000}},  //   mhal, ltzo, _oštr,\n  { {0x656f0051, 0x61ed23c5, 0xdb032589, 0x00000000}},  //   hach, lhal, lené,\n  { {0x7989172d, 0xdce901a8, 0x656f0020, 0x00000000}},  //   tgew, _odeć, kach,\n  { {0x61ed0292, 0x32090bf2, 0x656f00e7, 0x00000000}},  //   nhal, nnay_, jach,\n  { {0x656f07eb, 0x798915d0, 0x2cad0038, 0x00000000}},  //   dach, rgew, _used_,\n  { {0xb05b0073, 0x660d0004, 0x7989258a, 0x00000000}},  //   _träf, _ajak, sgew,\n  { {0x63a7258b, 0x060a1320, 0x7afc0825, 0x00000000}},  //   dejn, инок_, _žrtv,\n  { {0x656f0051, 0x62871013, 0x67e40173, 0x00000000}},  //   gach, dujo, _fòjo,\n  { {0x61ed000b, 0x3e48011f, 0x660d01aa, 0x00000000}},  //   dhal, _işte_, _djak,\n  { {0x66e5258c, 0x316007e7, 0x682f06ec, 0x00000000}},  //   _мола, wbiz_, føde,\n  { {0xc74406f1, 0x656f1af8, 0x752d002d, 0x00000000}},  //   _عضوي, bach, _ezaz,\n  { {0x61ed258d, 0x660d0065, 0x3209011c, 0x00000000}},  //   ghal, _gjak, gnay_,\n  { {0x201a00ca, 0x31600032, 0x63a70023, 0x00000000}},  // [6440] topi_, rbiz_, bejn,\n  { {0xb4e602d2, 0x62870211, 0x63a700b9, 0x00000000}},  //   पनी_, bujo, cejn,\n  { {0x6146258e, 0x5ea6023c, 0x201a02db, 0x00000000}},  //   _мена, تمال, ropi_,\n  { {0x4444120d, 0x61ed0fd6, 0xdb0801ca, 0x00000000}},  //   _hi_, chal, _nadá,\n  { {0x4444258f, 0xf1bf0011, 0xa6de0011, 0x00000000}},  //   _ki_, _cháu_, _ngưn,\n  { {0x4444257a, 0x2ca90a0a, 0x61e40fa8, 0x00000000}},  //   _ji_, çada_, lkil,\n  { {0x44440119, 0xb05b0210, 0x656f1519, 0x00000000}},  //   _mi_, _präg, yach,\n  { {0x44442590, 0xdb082591, 0x7a250051, 0x00000000}},  //   _li_, _cadá, nóth,\n  { {0x44440181, 0x656f2592, 0x2fd82593, 0x00000000}},  //   _oi_, vach, _korg_,\n  { {0x44440be3, 0xc7b805fa, 0x656f2594, 0x00000000}},  //   _ni_, kođe_, wach,\n  { {0x656f038f, 0xb05b0788, 0xf1bf0011, 0x00000000}},  //   tach, _träg, _khát_,\n  { {0x2fd8223d, 0x75240009, 0x61ed2595, 0x00000000}},  //   _lorg_, _byiz, xhal,\n  { {0x44440213, 0x656f0270, 0xf772026c, 0x00000000}},  //   _bi_, rach, _ہاں_,\n  { {0x44442596, 0x656f0a48, 0xdb0801ca, 0x00000000}},  //   _ci_, sach, _zadá,\n  { {0x44440026, 0x61ed2597, 0x63b52598, 0x00000000}},  //   _di_, thal, rdzn,\n  { {0x44440ac2, 0x244f011f, 0x533400ed, 0x00000000}},  //   _ei_, _tüm_, фест,\n  { {0x44441254, 0x61ed0125, 0x05960014, 0x00000000}},  // [6450] _fi_, rhal, _رايگ,\n  { {0x44440292, 0x661d037e, 0x61ed001f, 0x00000000}},  //   _gi_, losk, shal,\n  { {0x644d0051, 0x656d04cb, 0xaad90061, 0x00000000}},  //   _huai, _keah, _बॅंक,\n  { {0x44442599, 0x6445259a, 0xdb010051, 0x00000000}},  //   _zi_, _hihi, _talú,\n  { {0x4444014a, 0x69ce03d7, 0x6445259b, 0x00000000}},  //   _yi_, थानी, _kihi,\n  { {0x44440f68, 0x2fd8259c, 0x7a2505a3, 0x00000000}},  //   _xi_, _gorg_, móti,\n  { {0x4cd30055, 0x644d002a, 0x644500b0, 0x00000000}},  //   _দেখু, _luai, _mihi,\n  { {0xb05b0073, 0x2fd800b5, 0x6445011c, 0x00000000}},  //   _träd, _zorg_, _lihi,\n  { {0x644d002a, 0xdb080010, 0xafdb00ea, 0x00000000}},  //   _nuai, _vadá, _støy,\n  { {0x61e4002d, 0x6d49006b, 0xe8f6007e, 0x00000000}},  //   zkil, şmağ, ялы_,\n  { {0x4444259d, 0x98ab005d, 0x78a2016c, 0x00000000}},  //   _ri_, ımız_, _epov,\n  { {0x44441305, 0x20010020, 0x644d0051, 0x00000000}},  //   _si_, hihi_, _buai,\n  { {0x44440607, 0x644d002a, 0x6445011c, 0x00000000}},  //   _pi_, _cuai, _bihi,\n  { {0x69d90038, 0x44440065, 0x644d0051, 0x00000000}},  //   _howe, _qi_, _duai,\n  { {0x444400eb, 0x61e4011f, 0x6445259e, 0x00000000}},  //   _vi_, tkil, _dihi,\n  { {0x44440263, 0x644d002a, 0x2fd80007, 0x00000000}},  //   _wi_, _fuai, _sorg_,\n  { {0x61e4259f, 0x644d0a47, 0x44210022, 0x00000000}},  // [6460] rkil, _guai, _fkh_,\n  { {0x61e400eb, 0x69d900ab, 0x644525a0, 0x00000000}},  //   skil, _lowe, _gihi,\n  { {0xf1bf25a1, 0x61e40095, 0x00000000, 0x00000000}},  //   _phát_, pkil,   ,\n  { {0x69d90036, 0x2cbf25a2, 0x5edb0044, 0x00000000}},  //   _nowe, _brud_, _যেহে,\n  { {0x91bb009b, 0xc1bb009b, 0x2cbf25a3, 0x00000000}},  //   _המכי, _המכש, _crud_,\n  { {0xf1bf0048, 0xf0930049, 0x2cbf005b, 0x00000000}},  //   _fhás_, _אנש_, _drud_,\n  { {0xa3cd001c, 0x6fc9007d, 0x69d91e67, 0x00000000}},  //   ळात_, रारं, _bowe,\n  { {0xe0df000a, 0x69d90d29, 0x00000000, 0x00000000}},  //   _ogòl_, _cowe,   ,\n  { {0x69d91eb0, 0x00000000, 0x00000000, 0x00000000}},  //   _dowe,   ,   ,\n  { {0x25a0006c, 0x644d0051, 0x7b070010, 0x00000000}},  //   _abil_, _ruai, ártá,\n  { {0x47340373, 0x661d00b0, 0xdc3b0049, 0x00000000}},  //   ьнос, tosk, _פעבר,\n  { {0x7bda0020, 0x644525a4, 0xa5bb25a5, 0x00000000}},  //   _hotu, _sihi, plóm,\n  { {0x644d0181, 0xd7e60822, 0x44210093, 0x00000000}},  //   _quai, _ніко, _pkh_,\n  { {0x493b019b, 0x69d900b5, 0x7bda01c5, 0x00000000}},  //   _הגדו, _zowe, _jotu,\n  { {0x7bda0058, 0x644525a6, 0x35f500e2, 0x00000000}},  //   _motu, _vihi, _опкр,\n  { {0x644d002a, 0x823403ab, 0xd01100a1, 0x00000000}},  //   _tuai, فرقا, ھلا_,\n  { {0x64450107, 0x7bda006c, 0xc05b0088, 0x00000000}},  // [6470] _tihi, _ootu, сіб_,\n  { {0x4427002a, 0x7bda0a58, 0x09c90061, 0x00000000}},  //   _ón_, _notu, _ाच्य,\n  { {0x2001011f, 0xce5900e2, 0xb05b0a2f, 0x00000000}},  //   rihi_, цаец_, _bräc,\n  { {0x7bc80058, 0x2ca90181, 0x200100f0, 0x00000000}},  //   _andu, çado_, sihi_,\n  { {0xee3801fb, 0x7bda0065, 0x69d90036, 0x00000000}},  //   їні_, _botu, _rowe,\n  { {0x69d9063c, 0x7bda0adb, 0xfaa50269, 0x00000000}},  //   _sowe, _cotu, дако,\n  { {0x69d90038, 0x75280046, 0xb05b00f8, 0x00000000}},  //   _powe, ędzi, _fräc,\n  { {0x08c5025f, 0x6d490030, 0xceb20097, 0x00000000}},  //   дбин, _ugea, _ביל_,\n  { {0xf8a9007a, 0x7bda00d4, 0x80df0044, 0x00000000}},  //   تگاه_, _fotu, _নেত্,\n  { {0xdb0313a5, 0xd709007c, 0xcb68003b, 0x00000000}},  //   lení, жное_, _нађе_,\n  { {0x69d900ab, 0xff56009b, 0x00000000, 0x00000000}},  //   _towe, ובתך_,   ,\n  { {0xf3e9019b, 0xfb1a0049, 0x2d8f0fe7, 0x00000000}},  //   _דף_, _וועמ, ngge_,\n  { {0x7bda0061, 0x6d440dc6, 0xdb1a0052, 0x00000000}},  //   _yotu, žiav, _entä,\n  { {0x33d50099, 0x67d40088, 0xf7710025, 0x00000000}},  //   ніст, _почу, _شات_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xdb0301ca, 0x00000000, 0x00000000, 0x00000000}},  //   jení,   ,   ,\n  { {0xdb030161, 0x41270745, 0x63b725a7, 0x00000000}},  // [6480] dení, дото_, _faxn,\n  { {0xdfa60025, 0x7a25000c, 0x00000000, 0x00000000}},  //   بحري, mótu,   ,\n  { {0x60c90066, 0x00000000, 0x00000000, 0x00000000}},  //   _ġeme,   ,   ,\n  { {0x7bda001a, 0x00000000, 0x00000000, 0x00000000}},  //   _sotu,   ,   ,\n  { {0xa3b203d7, 0x3ead0363, 0x68ed0046, 0x00000000}},  //   _ऐसा_, _ćete_, _żadn,\n  { {0x2d8f0197, 0x2ac6012b, 0x00000000, 0x00000000}},  //   agge_, дљив,   ,\n  { {0x160e02d2, 0x7bda2599, 0xc6e80055, 0x00000000}},  //   ाचार_, _votu, _পশ্চ,\n  { {0x80b5013d, 0xdb0300b9, 0x2d950930, 0x00000000}},  //   _उनमे, cení, _прус,\n  { {0x7bda25a8, 0xad2600a2, 0x973c0521, 0x00000000}},  //   _totu, _آرزو, meći,\n  { {0x7bc80093, 0xdb180023, 0x00000000, 0x00000000}},  //   _undu, ndvë,   ,\n  { {0xd848001d, 0xeb9701fb, 0xcb0a0464, 0x00000000}},  //   _mọi_, _цих_, _بيان_,\n  { {0x7c2a0039, 0x6d440006, 0xf1bf0082, 0x00000000}},  //   llfr, žiau, _nháp_,\n  { {0xdb010161, 0x00000000, 0x00000000, 0x00000000}},  //   _malý,   ,   ,\n  { {0xdb030802, 0x7a13001a, 0xd7c80025, 0x00000000}},  //   zení, măta, _روعه_,\n  { {0x2d8f0c88, 0x7c2a0009, 0xa2940088, 0x00000000}},  //   ygge_, ilfr, карі,\n  { {0x973c0166, 0x00000000, 0x00000000, 0x00000000}},  //   jeći,   ,   ,\n  { {0xc34b008b, 0x60f90147, 0x7a13001a, 0x00000000}},  // [6490] _мяне_, чная_, năta,\n  { {0xceeb0076, 0x7ae300b0, 0x00000000, 0x00000000}},  //   يران_, yynt,   ,\n  { {0xb17b1fbf, 0x00000000, 0x00000000, 0x00000000}},  //   _blåt,   ,   ,\n  { {0x7bde000c, 0x00000000, 0x00000000, 0x00000000}},  //   öpun,   ,   ,\n  { {0x7ae30016, 0x415a0104, 0x61ef0022, 0x00000000}},  //   wynt, _מדרג, _ilcl,\n  { {0xdb0301ca, 0x9f5a00f6, 0x00000000, 0x00000000}},  //   sení, cipà_,   ,\n  { {0xd848001d, 0xd7d20061, 0xb17b06ec, 0x00000000}},  //   _gọi_, तानच, _flåt,\n  { {0xfe430123, 0x7c2a0009, 0xa5bb25a9, 0x00000000}},  //   _شکای, alfr, blói,\n  { {0x7ae300b0, 0x7a25009f, 0xa5bb002a, 0x00000000}},  //   synt, dótt, clói,\n  { {0xb7bf0044, 0x5fd20061, 0x00000000, 0x00000000}},  //   েস্ট, सायल,   ,\n  { {0xd62a25aa, 0x7a08013e, 0x00000000, 0x00000000}},  //   зоне_, větv,   ,\n  { {0x98a0010a, 0x2bc7006e, 0x00000000, 0x00000000}},  //   _šią_, लाका,   ,\n  { {0xe8ee025f, 0x8cc2013d, 0x6d5b00e7, 0x00000000}},  //   _сл_, लियो, _mfua,\n  { {0xe787007e, 0xb60200b9, 0xdd0c00b4, 0x00000000}},  //   _цудо, _žáda, _różo,\n  { {0xf1bf001d, 0x12ce0044, 0x00000000, 0x00000000}},  //   _pháp_, রন্দ,   ,\n  { {0x3ebe009f, 0xdb01004a, 0xd8480082, 0x00000000}},  //   _átti_, _haló, _rọi_,\n  { {0x04570025, 0xbf080164, 0x660605e0, 0x00000000}},  // [64a0] _كلية_, वप्न_, mikk,\n  { {0x660608b2, 0xb17b25ab, 0x61ef004a, 0x00000000}},  //   likk, _blås, _elcl,\n  { {0x69cb046a, 0x0d860256, 0xf1bf0011, 0x00000000}},  //   _onge, елен, _tháp_,\n  { {0x63ae25ac, 0x6606044e, 0x7c2a018e, 0x00000000}},  //   lebn, nikk, wlfr,\n  { {0x629c049a, 0x628e011c, 0xfa150044, 0x00000000}},  //   ltro, lubo, াতাল_,\n  { {0x69cb25ad, 0x660625ae, 0x973c0107, 0x00000000}},  //   _ange, hikk, seći,\n  { {0x628e10e0, 0x69cb0022, 0x7c2a0133, 0x00000000}},  //   nubo, _bnge, rlfr,\n  { {0x7e9b009b, 0xf2d300b3, 0x00000000, 0x00000000}},  //   _מסלו, רעה_,   ,\n  { {0x8c950099, 0x6c86004b, 0x629c0065, 0x00000000}},  //   _архі, _سلام, htro,\n  { {0xdb0100fa, 0x6e2225af, 0x628e05e1, 0x00000000}},  //   _caló, loob, kubo,\n  { {0x660601e3, 0x63ae00b9, 0x031f013d, 0x00000000}},  //   fikk, debn, _मुंह_,\n  { {0xba8b00a1, 0x6606068f, 0x628e01ed, 0x00000000}},  //   _رحمۃ_, gikk, dubo,\n  { {0x37e60081, 0x7a25009f, 0x6fb20061, 0x00000000}},  //   _подг, rótt, ीयां,\n  { {0x63ae001f, 0xb05b0039, 0x629c00ea, 0x00000000}},  //   gebn, _brän, ftro,\n  { {0xdbc7006c, 0x17570104, 0x31c7007e, 0x00000000}},  //   _töös, _אסור_, нсав,\n  { {0xb05b0210, 0xdb010173, 0x6aa800fa, 0x00000000}},  //   _drän, _kalò, _mpdf,\n  { {0xb17b0c73, 0x00000000, 0x00000000, 0x00000000}},  // [64b0] _slås,   ,   ,\n  { {0xa0c40025, 0xb05b09b0, 0x00000000, 0x00000000}},  //   ديكو, _frän,   ,\n  { {0x44230119, 0x63a90091, 0xb05b0039, 0x00000000}},  //   moj_, đend, _grän,\n  { {0x44230091, 0xaf340025, 0x127a0049, 0x00000000}},  //   loj_, اركت, _קארע,\n  { {0x672a000c, 0x973c0521, 0x7e7c012d, 0x00000000}},  //   _lyfj, meću, _evrp,\n  { {0xed15026c, 0x44230119, 0xeab10025, 0x00000000}},  //   _یہاں_, noj_, لعب_,\n  { {0x3da7008b, 0xdea4007a, 0x224b25b0, 0x00000000}},  //   _праб, _میلی, _kick_,\n  { {0x442325b1, 0xdb01113f, 0x63ae0036, 0x00000000}},  //   hoj_, _saló, zebn,\n  { {0x44230119, 0x224b1575, 0x660603b6, 0x00000000}},  //   koj_, _mick_, vikk,\n  { {0x44230119, 0x660601b5, 0x629c013e, 0x00000000}},  //   joj_, wikk, ytro,\n  { {0xdb0125b2, 0x63ae004f, 0x44230c33, 0x00000000}},  //   _való, vebn, doj_,\n  { {0x3ddf02ae, 0x7a13001a, 0xdce000b9, 0x00000000}},  //   _jouw_, măto, _nemě,\n  { {0x660600b0, 0x63ae00b9, 0x7a13001a, 0x00000000}},  //   rikk, tebn, lăto,\n  { {0x629c13f0, 0x6606021e, 0x44230091, 0x00000000}},  //   ttro, sikk, goj_,\n  { {0x23270200, 0xe297005e, 0x7a13001a, 0x00000000}},  //   вори_, кар_, năto,\n  { {0x63ae01ae, 0x629c046a, 0x212b0224, 0x00000000}},  //   sebn, rtro, _bych_,\n  { {0x629c0428, 0x44230059, 0xa3ba0318, 0x00000000}},  // [64c0] stro, boj_, _قادر_,\n  { {0xb05b03a2, 0x4423016c, 0x629c013f, 0x00000000}},  //   _trän, coj_, ptro,\n  { {0x224b0073, 0x6e2225b3, 0x3ddf00b5, 0x00000000}},  //   _fick_, toob, _bouw_,\n  { {0x224b0073, 0x98b100b9, 0x91e602dc, 0x00000000}},  //   _gick_, íběh_, _роме,\n  { {0x2240006c, 0x6fc9013d, 0x6e22010e, 0x00000000}},  //   mmik_, राखं, roob,\n  { {0xdce000b9, 0x224025b4, 0x3a262299, 0x00000000}},  //   _země, lmik_, _skop_,\n  { {0x443a014a, 0x7a13001a, 0x63a30010, 0x00000000}},  //   _mhp_, găto, _önne,\n  { {0x44230065, 0xa93400a5, 0xd8480011, 0x00000000}},  //   zoj_, лейш, _lọt_,\n  { {0xdca601f9, 0xdb1a0065, 0x1c4602e9, 0x00000000}},  //   _јази, _katë, _анам,\n  { {0x66040047, 0x44230065, 0x2240146c, 0x00000000}},  //   _amik, xoj_, hmik_,\n  { {0x44230119, 0x7a13001a, 0xdb1a0023, 0x00000000}},  //   voj_, căto, _matë,\n  { {0x6f0302d5, 0x3ebe000c, 0x672a01c3, 0x00000000}},  //   únci, _áttu_, _vyfj,\n  { {0x442325b5, 0x973c0107, 0x443a0036, 0x00000000}},  //   toj_, veću, _bhp_,\n  { {0x443a014a, 0xdb1a0065, 0x66040009, 0x00000000}},  //   _chp_, _natë, _emik,\n  { {0x44230428, 0xf837009b, 0x224b00ab, 0x00000000}},  //   roj_, _שנות_, _pick_,\n  { {0x5214008b, 0x442325b6, 0xed590825, 0x00000000}},  //   адст, soj_, _kaže_,\n  { {0x443a012d, 0x7a130035, 0x973c04eb, 0x00000000}},  // [64d0] _fhp_, zăto, reću,\n  { {0x973c0645, 0xd8480082, 0xdb080190, 0x00000000}},  //   seću, _gọt_, _fadø,\n  { {0xdb0304bd, 0xdb1a0065, 0x212b0016, 0x00000000}},  //   menç, _datë, _wych_,\n  { {0x212b0832, 0xed5801fb, 0x7c3a25b7, 0x00000000}},  //   _tych_, вої_, _ahtr,\n  { {0x61ed02e7, 0xb05b0210, 0xab07000c, 0x00000000}},  //   mkal, _kräm, _íbúð_,\n  { {0x61ed0148, 0x7a13001a, 0x2b5e0068, 0x00000000}},  //   lkal, tăto, _cftc_,\n  { {0x7c230725, 0x61ed0943, 0xab262337, 0x00000000}},  //   ronr, okal, лоша_,\n  { {0x61ed08af, 0xdb1a25b8, 0x5f7400a1, 0x00000000}},  //   nkal, _matè, _ماہر,\n  { {0x7a13001a, 0x61ed16a6, 0xdb1a000a, 0x00000000}},  //   săto, ikal, _latè,\n  { {0xa7b5098c, 0x61ed25b9, 0x7a130035, 0x00000000}},  //   усиј, hkal, păto,\n  { {0x764d0390, 0x61ed1047, 0xb9950025, 0x00000000}},  //   _biay, kkal, _ملاب,\n  { {0x443a0061, 0x394f00d9, 0x61ed0c55, 0x00000000}},  //   _shp_, _uggs_, jkal,\n  { {0x443a001c, 0x61ed0190, 0xf778002b, 0x00000000}},  //   _php_, dkal, baħ_,\n  { {0xec350049, 0xdb1a01aa, 0xdc350049, 0x00000000}},  //   טאָר_, _batè, טאָט_,\n  { {0x61f600ab, 0xd8480082, 0x443a08f4, 0x00000000}},  //   thyl, _vọt_, _vhp_,\n  { {0x61ed011c, 0x660425ba, 0x69db008e, 0x00000000}},  //   gkal, _umik, njue,\n  { {0xb05b0039, 0x68e9020c, 0xdb1a0065, 0x00000000}},  // [64e0] _främ, nyed, _patë,\n  { {0x6e3b0061, 0xdb030181, 0x61ed25bb, 0x00000000}},  //   _ahub, cenç, akal,\n  { {0xbd8a0025, 0x61f603a1, 0x139b0097, 0x00000000}},  //   فنان_, phyl, _אביע,\n  { {0x8d760025, 0x7c3a008d, 0xed5a0121, 0x00000000}},  //   اااا, _shtr, ход_,\n  { {0x63be0010, 0xa075007c, 0x5c060b52, 0x00000000}},  //   _kapn, _высш, ляка,\n  { {0xdb1a0010, 0x64560009, 0x69a10316, 0x00000000}},  //   _haté, _muyi, क्सी,\n  { {0x60c402d5, 0x66f3006b, 0x75e625bc, 0x00000000}},  //   lvim, bəkə, _józs,\n  { {0x248001cd, 0x5a3400ed, 0x2c7600a1, 0x00000000}},  //   _ovim_, јнит, _مُرس,\n  { {0xdb1a128c, 0x26c70016, 0x68e90010, 0x00000000}},  //   _maté, _arno_, gyed,\n  { {0x26c713c7, 0xed590107, 0xca76007e, 0x00000000}},  //   _brno_, _važe_, _буды,\n  { {0xdb0325bd, 0x26c70091, 0x7fd70049, 0x00000000}},  //   venç, _crno_, אויס_,\n  { {0xdb0a0181, 0x60c405f9, 0x645625be, 0x00000000}},  //   nefí, kvim, _buyi,\n  { {0xdb030181, 0x55070930, 0xb05b01a2, 0x00000000}},  //   tenç, учна, _präm,\n  { {0xe4540147, 0xdb1a25bf, 0x8937007e, 0x00000000}},  //   скры, _patè, _спіс_,\n  { {0xdb030181, 0x61ed1cdb, 0xd6cf003b, 0x00000000}},  //   renç, tkal, _ут_,\n  { {0xdb1a028c, 0xdb030181, 0x67380166, 0x00000000}},  //   _caté, senç, _izvj,\n  { {0x6e3b0f75, 0x9f4a00f6, 0x623400ed, 0x00000000}},  // [64f0] _rhub, _albà_, сету,\n  { {0x61ed119a, 0x6e3b0048, 0xf3ff00c4, 0x00000000}},  //   skal, _shub, mpão_,\n  { {0x60c40006, 0xf3ff00c4, 0x6e990088, 0x00000000}},  //   avim, lpão_, твер_,\n  { {0x63be0161, 0x4431009d, 0x777a002d, 0x00000000}},  //   _zapn, llz_, hatx,\n  { {0x6aba000d, 0xeb9910f2, 0x66f3006b, 0x00000000}},  //   _astf, вил_, rəkə,\n  { {0x3f830107, 0x68fb006b, 0xda6519ea, 0x00000000}},  //   _udju_, vzud, авки,\n  { {0x69c000b5, 0x777a0032, 0x6e3b120e, 0x00000000}},  //   fdme, datx, _thub,\n  { {0x09e50081, 0x6e2900ea, 0x6f0300fa, 0x00000000}},  //   роин, _ukeb, úncu,\n  { {0xf771031d, 0x69a101f5, 0x777a00f6, 0x00000000}},  //   ياد_, क्षी, fatx,\n  { {0xdb0303b6, 0x25a90093, 0x999e0006, 0x00000000}},  //   tenä, _abal_, _butų_,\n  { {0x24800119, 0x68e90173, 0xc30a0044, 0x00000000}},  //   _svim_, syed, _শুনি_,\n  { {0x63be0d90, 0x75e607fd, 0x00000000, 0x00000000}},  //   _sapn, _rózs,   ,\n  { {0xdb030bf4, 0xdb1a009d, 0xf8a90316, 0x00000000}},  //   senä, _raté, _कहिय,\n  { {0xdb1a25c0, 0x44310061, 0x69a10309, 0x00000000}},  //   _saté, glz_, क्री,\n  { {0xdb010224, 0x232a04f9, 0x63be25c1, 0x00000000}},  //   _oblí, тови_, _vapn,\n  { {0xd8480011, 0xe29700ec, 0x71660025, 0x00000000}},  //   _họp_, јат_, شارك,\n  { {0xdfd20380, 0x387f01a3, 0x42230088, 0x00000000}},  // [6500] يير_, nsur_, ідув,\n  { {0x44310061, 0x38600051, 0x60c4010e, 0x00000000}},  //   clz_, _éire_, rvim,\n  { {0xdfcf0464, 0x60c40778, 0x00000000, 0x00000000}},  //   ظيم_, svim,   ,\n  { {0x777a0032, 0x127b0049, 0x00000000, 0x00000000}},  //   zatx, _באטע,   ,\n  { {0xa3cb007d, 0x1c460216, 0xf1bf0082, 0x00000000}},  //   _रोड_, андм, _nháy_,\n  { {0x22b8000a, 0xbd0501c3, 0x9e6602fd, 0x00000000}},  //   _kōk_, _stéé, _نارن,\n  { {0x81b90055, 0x00000000, 0x00000000, 0x00000000}},  //   চার_,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x25a90061, 0xf1bf0011, 0x69c00056, 0x00000000}},  //   _rbal_, _cháy_, rdme,\n  { {0x57f40216, 0xd8480082, 0xdcfb002b, 0x00000000}},  //   спот, _cọp_, _sbuħ,\n  { {0xcf57009b, 0x8f7b0097, 0xdb0100c4, 0x00000000}},  //   יבית_, כניק, _balõ,\n  { {0x777a0032, 0x395f0133, 0x00000000, 0x00000000}},  //   satx, ccus_,   ,\n  { {0x69fb0049, 0x628e00d9, 0xb05b00f8, 0x00000000}},  //   _בלאק, erbo, _vräk,\n  { {0x779200a6, 0x74250044, 0xed590006, 0x00000000}},  //   _بیدا, পষ্ট_, _maža_,\n  { {0xa5c40036, 0xf8b6006e, 0x3e48001a, 0x00000000}},  //   _spół, _अनुप, _eşti_,\n  { {0x33f40039, 0xd4b900c0, 0x11550b21, 0x00000000}},  //   _växa_, _блиц_, скаю,\n  { {0xc058008b, 0x657d0020, 0x628e00d9, 0x00000000}},  // [6510] аіх_, mash, arbo,\n  { {0x657d22cb, 0x908a00a1, 0x1e1f0309, 0x00000000}},  //   lash, املے_, यक्ष_,\n  { {0x63b501d9, 0x656f0161, 0x2cad051b, 0x00000000}},  //   mezn, obch, _sped_,\n  { {0x63b525c2, 0x657d0020, 0x66ea006b, 0x00000000}},  //   lezn, nash, məkd,\n  { {0xfd100380, 0x62950667, 0x71d6009b, 0x00000000}},  //   وجه_, luzo, _הורד_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xd90f026c, 0x657d0020, 0x38660181, 0x00000000}},  //   ڈیا_, kash, _ator_,\n  { {0x657d0065, 0xdb1a0181, 0x9f430065, 0x00000000}},  //   jash, _antó, _lojë_,\n  { {0xd7d20061, 0x657d0065, 0x63b50010, 0x00000000}},  //   तांच, dash, kezn,\n  { {0x31790047, 0x387f25c3, 0xdb0100c4, 0x00000000}},  //   _lesz_, rsur_, _salõ,\n  { {0x387f002b, 0x657d0061, 0x5b3500a1, 0x00000000}},  //   ssur_, fash, _اٹار,\n  { {0x7bc1021e, 0xf3e9019b, 0xd46a00ed, 0x00000000}},  //   _halu, _אף_, лиме_,\n  { {0x7bc125c4, 0x5a0a0049, 0xb343013f, 0x00000000}},  //   _kalu, _גלײַ, əçis,\n  { {0xe70804e1, 0x7bc114f0, 0xe3631662, 0x00000000}},  //   اتین_, _jalu, зкри,\n  { {0x2ba9001c, 0x7bc10b9a, 0xe6950054, 0x00000000}},  //   च्या, _malu, _العد,\n  { {0x628e0039, 0x7bc101a3, 0xf53f0056, 0x00000000}},  //   rrbo, _lalu, reår_,\n  { {0x63b50059, 0x7a13001a, 0x317900d9, 0x00000000}},  // [6520] bezn, găti, _desz_,\n  { {0x7bc1011c, 0x2f561948, 0x9f430023, 0x00000000}},  //   _nalu, стас, _gojë_,\n  { {0x66ea006b, 0x442a00c4, 0x683d009d, 0x00000000}},  //   cəkd, mob_, cède,\n  { {0x442a00d0, 0x7e630010, 0xdb0a1465, 0x00000000}},  //   lob_, ínpa, ánít,\n  { {0x7bc125c5, 0x628101c8, 0x7c83041f, 0x00000000}},  //   _balu, álov, пуще,\n  { {0x7bc1001a, 0x442a0061, 0x657d0b1b, 0x00000000}},  //   _calu, nob_, zash,\n  { {0x3866004e, 0x7bc125c6, 0xdb1a00d4, 0x00000000}},  //   _stor_, _dalu, _antò,\n  { {0xada302a8, 0x6da3012b, 0x63b525c7, 0x00000000}},  //   _насл, _ниса, zezn,\n  { {0x7bc123c5, 0x657d0010, 0xcb6a25c8, 0x00000000}},  //   _falu, vash, _базе_,\n  { {0x442a0c53, 0x657d0020, 0x7bc10006, 0x00000000}},  //   job_, wash, _galu,\n  { {0x63b5016c, 0x657d0727, 0xe5b50783, 0x00000000}},  //   vezn, tash, ойны,\n  { {0xbb3b0049, 0x61e60089, 0xa2cc0164, 0x00000000}},  //   _געבי, _nokl, हिन्,\n  { {0x657d0065, 0xd90e089d, 0x63b50232, 0x00000000}},  //   rash, _سید_, tezn,\n  { {0xb05b0073, 0x67d4005e, 0x63a90091, 0x00000000}},  //   _kräv, _фоку, đeno,\n  { {0xa77b007b, 0x657d25c9, 0x63b520a0, 0x00000000}},  //   _גרופ, pash, rezn,\n  { {0x245d00ad, 0x61e604cb, 0x200a0026, 0x00000000}},  //   _tìm_, _cokl, _ambi_,\n  { {0x660f2041, 0x645d0009, 0x6295013e, 0x00000000}},  // [6530] mick, qqsi, suzo,\n  { {0x660f0161, 0x6009005f, 0xd5a50204, 0x00000000}},  //   lick, _kömə, ग्रज,\n  { {0x41c402f4, 0x7bc1001a, 0x7c2a00ea, 0x00000000}},  //   _लोकस, _ralu, dofr,\n  { {0x7bc102e2, 0x660f0428, 0xa69b0049, 0x00000000}},  //   _salu, nick, רשאפ,\n  { {0x7bc11c0b, 0xdb180030, 0x00000000, 0x00000000}},  //   _palu, ndvæ,   ,\n  { {0xdfdb0265, 0x660f001f, 0x57b70061, 0x00000000}},  //   _съм_, hick, _असेह,\n  { {0x7bc125ca, 0x7bc3010f, 0x660f06d3, 0x00000000}},  //   _valu, rdnu, kick,\n  { {0x7bc10036, 0xf86500ed, 0x2aa10036, 0x00000000}},  //   _walu, овио, rób_,\n  { {0x7bc11d2e, 0x2aa10046, 0x660f0161, 0x00000000}},  //   _talu, sób_, dick,\n  { {0xdb1a25cb, 0x6e2b00ea, 0xa6850152, 0x00000000}},  //   _zatí, logb, олод,\n  { {0xe73900d7, 0x660f0428, 0x38ca007a, 0x00000000}},  //   рен_, fick, هایی_,\n  { {0x660f0428, 0x58d500e3, 0x6e2b012d, 0x00000000}},  //   gick, _моет, nogb,\n  { {0x442a0c2d, 0xb05b01a2, 0x628502e1, 0x00000000}},  //   tob_, _kräu, _avho,\n  { {0x386d0030, 0x2b4000b9, 0x61e60145, 0x00000000}},  //   mper_, řice_, _sokl,\n  { {0x660f00b9, 0xfbd2009b, 0x386d0322, 0x00000000}},  //   bick, ותם_, lper_,\n  { {0x799b25cc, 0x26880025, 0x442a0387, 0x00000000}},  //   nguw, _اخوي_, sob_,\n  { {0x27e70263, 0x3fe613e7, 0x600a007e, 0x00000000}},  // [6540] _konn_, ожав, анам_,\n  { {0x27e725cd, 0x386d009d, 0xdb1a004a, 0x00000000}},  //   _jonn_, iper_, _satí,\n  { {0x91e60072, 0x27e70173, 0x25a00022, 0x00000000}},  //   _доне, _monn_, _kcil_,\n  { {0x5eac0044, 0x27e7000a, 0x00000000, 0x00000000}},  //   ছিলে, _lonn_,   ,\n  { {0xa01b009f, 0x203400a1, 0x7c2a07ec, 0x00000000}},  //   _kvöl, _فہرس, tofr,\n  { {0x660f061b, 0xaa66005c, 0x200a25ce, 0x00000000}},  //   zick, отик, _umbi_,\n  { {0x05ca013d, 0xaab70025, 0x386d0133, 0x00000000}},  //   ियाब, قدير_, eper_,\n  { {0x48aa16e0, 0xab5c001e, 0x7c2a109a, 0x00000000}},  //   атом_, _daļa, sofr,\n  { {0xb7bc001e, 0x27e71274, 0x59a60164, 0x00000000}},  //   loģi, _bonn_, क्षर,\n  { {0x274a017f, 0x27f8009f, 0x660f03de, 0x00000000}},  //   ично_, órn_, wick,\n  { {0x660f0428, 0x1f5b0097, 0x27e725cf, 0x00000000}},  //   tick, ידיא, _donn_,\n  { {0x3dc60866, 0xdb0a0190, 0x00000000, 0x00000000}},  //   ndow_, tefæ,   ,\n  { {0x660f0428, 0xf8ad007a, 0x38cb026c, 0x00000000}},  //   rick, _یکی_, _پانی_,\n  { {0x660f0161, 0x27e70173, 0x798025d0, 0x00000000}},  //   sick, _gonn_, lamw,\n  { {0x3d1103d7, 0x660f0161, 0x03c8007e, 0x00000000}},  //   _देने_, pick, цыяй_,\n  { {0x798000e7, 0xb05b00f8, 0x00000000, 0x00000000}},  //   namw, _orät,   ,\n  { {0xf8bc03d7, 0x27e70263, 0xdcfb0166, 0x00000000}},  // [6550] ्टिय, _yonn_, _iduć,\n  { {0x79800cd1, 0x628101dc, 0x2cbf0093, 0x00000000}},  //   hamw, álos, _rsud_,\n  { {0x798025d1, 0xdd910025, 0xdb180e2b, 0x00000000}},  //   kamw, فوا_, ndvä,\n  { {0x62810091, 0x386d04d3, 0xa91d0091, 0x00000000}},  //   šlos, yper_, laže,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xa91d00b9, 0x224925d2, 0x00000000, 0x00000000}},  //   naže, lmak_,   ,\n  { {0x660d003c, 0xdb1a0129, 0x27e7000a, 0x00000000}},  //   _omak, _catà, _ronn_,\n  { {0xe9d90113, 0xa2cc0201, 0x3f810065, 0x00000000}},  //   ски_, हित्, lahu_,\n  { {0x63a90119, 0xa91d0a0f, 0x2cbf25d3, 0x00000000}},  //   đenj, kaže, _usud_,\n  { {0x660d0061, 0x386d010f, 0x3f81008a, 0x00000000}},  //   _amak, rper_, nahu_,\n  { {0x386d0030, 0xdb0a0002, 0xf52900b3, 0x00000000}},  //   sper_, gefä, _עץ_,\n  { {0x2d9d0020, 0x386d25d4, 0x22490107, 0x00000000}},  //   ngwe_, pper_, jmak_,\n  { {0x27e7000c, 0x22491332, 0xdb1a0048, 0x00000000}},  //   _tonn_, dmak_, _iatá,\n  { {0xdb1a0047, 0x660d25d5, 0x5f010044, 0x00000000}},  //   _hatá, _emak, _এখনও_,\n  { {0x7d020026, 0x3f8e000c, 0x60cf04e7, 0x00000000}},  //   zzos, ófum_, _arcm,\n  { {0x806601e1, 0x7a130035, 0x00000000, 0x00000000}},  //   зваж, pătu,   ,\n  { {0xdb1a0048, 0x00000000, 0x00000000, 0x00000000}},  // [6560] _matá,   ,   ,\n  { {0xd9b8013d, 0x798000e7, 0xa856009b, 0x00000000}},  //   _आस्ट, zamw, פיעה_,\n  { {0x44440119, 0x2ec60054, 0x59bd006e, 0x00000000}},  //   _ih_, ثقاف, ्यार,\n  { {0xdb1a25d6, 0x656600bb, 0xdca60545, 0x00000000}},  //   _natá, nckh, зади,\n  { {0x44440011, 0xdb0a25d7, 0x3f8116c3, 0x00000000}},  //   _kh_, ndfö, bahu_,\n  { {0x444403e1, 0x0fda0025, 0x61f600f8, 0x00000000}},  //   _jh_, _ابحث_, lkyl,\n  { {0x80c402fb, 0x4444000b, 0xb05b0a5d, 0x00000000}},  //   रिके, _mh_, _fräs,\n  { {0xdb1a0489, 0xdca60256, 0x44440011, 0x00000000}},  //   _catá, _наби, _lh_,\n  { {0x444425d8, 0xfc64007a, 0x6b56039d, 0x00000000}},  //   _oh_, _آخری, _فضائ,\n  { {0x6d40001e, 0x660d0ae1, 0x44440011, 0x00000000}},  //   _izma, _smak, _nh_,\n  { {0x660d0022, 0x2249014a, 0xa5bb0048, 0x00000000}},  //   _pmak, ymak_, nnóg,\n  { {0xaadb00b6, 0x76440173, 0xaac20164, 0x00000000}},  //   _לחבר, _chiy, _वैयक,\n  { {0x444425d9, 0x3f8101c3, 0xa91d00b9, 0x00000000}},  //   _bh_, yahu_, taže,\n  { {0x4444018e, 0x69a20061, 0x248d0295, 0x00000000}},  //   _ch_, _गाडी, šemo_,\n  { {0x883b00b6, 0x444401a3, 0xa91d0091, 0x00000000}},  //   _התגו, _dh_, raže,\n  { {0x4444006a, 0xa91d00b9, 0x61e40065, 0x00000000}},  //   _eh_, saže, gjil,\n  { {0x4444000b, 0x2249014a, 0x3f810127, 0x00000000}},  // [6570] _fh_, rmak_, tahu_,\n  { {0xd37b1666, 0x248900f6, 0x61e40883, 0x00000000}},  //   _учи_, _ivam_, ajil,\n  { {0xb05b0a35, 0x2249014a, 0xdddc0c1d, 0x00000000}},  //   _präs, pmak_, _svrš,\n  { {0x661d05c8, 0x3f810161, 0x62950910, 0x00000000}},  //   nnsk, sahu_, mrzo,\n  { {0x444425da, 0x661d0635, 0x62871742, 0x00000000}},  //   _yh_, insk, lsjo,\n  { {0x44440cb5, 0x3d110061, 0xdb1a004a, 0x00000000}},  //   _xh_, _देणे_, _satá,\n  { {0x628725db, 0x60cd006c, 0xdb030161, 0x00000000}},  //   nsjo, lvam, bený,\n  { {0x64570288, 0xdb0325dc, 0xdce0007f, 0x00000000}},  //   _lixi, cený, _nemė,\n  { {0x3a2d01b5, 0xdddc1034, 0x9f5a008e, 0x00000000}},  //   roep_, _uvrš, cipó_,\n  { {0x62870292, 0x64571a7b, 0x661d01d6, 0x00000000}},  //   ksjo, _nixi, ensk,\n  { {0x6b83027c, 0x4ac102fb, 0x3d11006e, 0x00000000}},  //   mang, _शनिव, _देते_,\n  { {0x6b831312, 0x44441b1c, 0x661d0030, 0x00000000}},  //   lang, _sh_, gnsk,\n  { {0x69d90036, 0x66ea006b, 0x65660270, 0x00000000}},  //   _inwe, rəka, rckh,\n  { {0x6b83027c, 0x69c9002d, 0x661d0027, 0x00000000}},  //   nang, ldee, ansk,\n  { {0x444425dd, 0x78a90232, 0x69c900fa, 0x00000000}},  //   _vh_, ltev, odee,\n  { {0x69c925de, 0x645f008d, 0x44440253, 0x00000000}},  //   ndee, _fuqi, _wh_,\n  { {0x78a9049a, 0x44440038, 0x6b83033b, 0x00000000}},  // [6580] ntev, _th_, kang,\n  { {0x4444037e, 0x6d5b0489, 0x61f625df, 0x00000000}},  //   _uh_, _agua, skyl,\n  { {0x6b83033b, 0x78a901d9, 0x63bc0cce, 0x00000000}},  //   dang, htev, mern,\n  { {0x63bc0030, 0xdd8f0d0b, 0x78a90065, 0x00000000}},  //   lern, لوم_, ktev,\n  { {0x6b83010f, 0x629c005b, 0xdbc6006c, 0x00000000}},  //   fang, luro, _mööb,\n  { {0x63bc04d7, 0x69d912dc, 0x0a6a170a, 0x00000000}},  //   nern, _anwe, ории_,\n  { {0xa3df0061, 0x8fa31123, 0x661d0142, 0x00000000}},  //   णात_, _шаре, ynsk,\n  { {0x63a90091, 0x78a925e0, 0x6b8325e1, 0x00000000}},  //   đeni, ftev, aang,\n  { {0x6b832543, 0x63bc01c4, 0xdb1a0181, 0x00000000}},  //   bang, kern, _antô,\n  { {0x63bc0030, 0x629c008d, 0x6b830016, 0x00000000}},  //   jern, kuro, cang,\n  { {0x7bda0657, 0x78a91a48, 0x7bc80035, 0x00000000}},  //   _intu, atev, _iadu,\n  { {0x629c018e, 0xb495003b, 0x645725e2, 0x00000000}},  //   duro, нимљ, _sixi,\n  { {0xe9f701fb, 0x7bc8006c, 0x661d25e3, 0x00000000}},  //   _інші_, _kadu, rnsk,\n  { {0x63bc0018, 0x7bca01a2, 0x62870cfd, 0x00000000}},  //   gern, ndfu, tsjo,\n  { {0x629c0252, 0x5454025f, 0x7a3e0065, 0x00000000}},  //   guro, тврт, nëto,\n  { {0xa91d0107, 0xf1bf0047, 0x7bc80c75, 0x00000000}},  //   laža, _akár_, _ladu,\n  { {0x63bc25e4, 0x628701d5, 0x6b83020c, 0x00000000}},  // [6590] bern, ssjo, yang,\n  { {0x60cd006c, 0x7bc80036, 0x6d5b0207, 0x00000000}},  //   rvam, _nadu, _sgua,\n  { {0x2013005f, 0x629c001a, 0x4431002d, 0x00000000}},  //   rixi_, curo, moz_,\n  { {0x6b831bd2, 0x7bda006c, 0x4431002b, 0x00000000}},  //   wang, _antu, loz_,\n  { {0x7bc825e5, 0xcb690216, 0x00000000, 0x00000000}},  //   _badu, пале_,   ,\n  { {0x7bc80207, 0x6cd200a1, 0x44311b01, 0x00000000}},  //   _cadu, اقوا, noz_,\n  { {0x6b83020c, 0xeab1025a, 0xfb84008b, 0x00000000}},  //   rang, اعت_, тычн,\n  { {0x6b83027c, 0x44310047, 0x78a9006c, 0x00000000}},  //   sang, hoz_, ttev,\n  { {0x6b831bc6, 0x69c9049b, 0xf8c8001d, 0x00000000}},  //   pang, rdee, _cứ_,\n  { {0x7bc80089, 0x78a916b3, 0x44310211, 0x00000000}},  //   _gadu, rtev, joz_,\n  { {0x26d125e6, 0x78a915d6, 0x68110224, 0x00000000}},  //   ízo_, stev, vědě,\n  { {0x6b81009f, 0x7bc8037e, 0x63bc25e7, 0x00000000}},  //   _helg, _zadu, wern,\n  { {0x7bc80009, 0x66ea006b, 0x44310023, 0x00000000}},  //   _yadu, ləkl, foz_,\n  { {0x629c25e8, 0x6b81001e, 0x4431002d, 0x00000000}},  //   turo, _jelg, goz_,\n  { {0x63bc01bf, 0xed590089, 0x044302dc, 0x00000000}},  //   rern, _daži_, уерн,\n  { {0x63bc0193, 0x629c0032, 0xe1ff0051, 0x00000000}},  //   sern, ruro, _cló_,\n  { {0xf8c80011, 0xa3cb013d, 0x629c21ae, 0x00000000}},  // [65a0] _xứ_, _रोक_, suro,\n  { {0x4431008e, 0x7e7c0016, 0xdb0100fa, 0x00000000}},  //   coz_, _pwrp, _eclé,\n  { {0x7bc8016c, 0x22590193, 0x539b00b6, 0x00000000}},  //   _radu, _fisk_, _ציטו,\n  { {0x9cca0783, 0x7bc825e9, 0x9f4a00f6, 0x00000000}},  //   зыка_, _sadu, _jobé_,\n  { {0x6b8108a5, 0x3ebf0521, 0xdce00089, 0x00000000}},  //   _belg, _ćute_, _iemī,\n  { {0x6b810af3, 0x6a670095, 0x00000000, 0x00000000}},  //   _celg, _sıfa,   ,\n  { {0x6b810211, 0xf8c80011, 0x644e25ea, 0x00000000}},  //   _delg, _sứ_, imbi,\n  { {0x7bc825eb, 0x4431057e, 0x225900f6, 0x00000000}},  //   _wadu, zoz_, _xisk_,\n  { {0x0c3a0025, 0xd7db0061, 0x00000000, 0x00000000}},  //   _فكرة_, बांच,   ,\n  { {0x7bda0149, 0x7a3e0065, 0x7bc800e7, 0x00000000}},  //   _untu, pëto, _uadu,\n  { {0x44310c76, 0x290b029d, 0x66ea006b, 0x00000000}},  //   voz_, úcar_, cəkl,\n  { {0x63a5001f, 0xf8c80011, 0xa91d007f, 0x00000000}},  //   _schn, _tứ_, saža,\n  { {0xa91d25ec, 0x22591f59, 0x4431002d, 0x00000000}},  //   paža, _risk_, toz_,\n  { {0xdb011059, 0xe1ff01e5, 0x00000000, 0x00000000}},  //   _sclé, _sló_,   ,\n  { {0xed5905fa, 0x60c6098e, 0x44310091, 0x00000000}},  //   _važi_, _askm, roz_,\n  { {0x644e2378, 0x443125ed, 0x7522012d, 0x00000000}},  //   ambi, soz_, _žoze,\n  { {0x21390065, 0x64a40098, 0x656d00e7, 0x00000000}},  // [65b0] _qysh_, _бања, _ifah,\n  { {0x25df0061, 0x00000000, 0x00000000, 0x00000000}},  //   गावी_,   ,   ,\n  { {0x225925ee, 0xa91d089f, 0x93f4007e, 0x00000000}},  //   _tisk_, jažn, _спэц,\n  { {0x6b8124c7, 0x2eee0039, 0x7982164f, 0x00000000}},  //   _selg, äffa_, _neow,\n  { {0x6b81195d, 0x00000000, 0x00000000, 0x00000000}},  //   _pelg,   ,   ,\n  { {0x52740014, 0xd116009b, 0x261225ef, 0x00000000}},  //   _جایز, _יקרה_, všom_,\n  { {0xe9d10054, 0x63a3009f, 0x6b810292, 0x00000000}},  //   لغة_, _önnu, _velg,\n  { {0x6b810828, 0x9f3401e1, 0x2b5e0066, 0x00000000}},  //   _welg, _сесі, _egtc_,\n  { {0x6c55005e, 0x6b8125f0, 0x3f8325f1, 0x00000000}},  //   _акау, _telg, _keju_,\n  { {0x399a014a, 0x29030006, 0x66050066, 0x00000000}},  //   tüsü_, ąja_, _ċika,\n  { {0xfdf5013d, 0x00000000, 0x00000000, 0x00000000}},  //   _आवास_,   ,   ,\n  { {0x61ef0036, 0x2bd90061, 0x244400f8, 0x00000000}},  //   _nocl, ढाका, döma_,\n  { {0xa91d007f, 0x00000000, 0x00000000, 0x00000000}},  //   mažo,   ,   ,\n  { {0xd3720076, 0xe7870088, 0x69cb0da6, 0x00000000}},  //   شهر_, _чудо, _hage,\n  { {0xa82300a1, 0x644e0056, 0x60c90e54, 0x00000000}},  //   _لکھن, rmbi, _šemp,\n  { {0x61ef0f6a, 0xdb0a068f, 0x00000000, 0x00000000}},  //   _cocl, refø,   ,\n  { {0x69cb154f, 0xed590091, 0x59a60309, 0x00000000}},  // [65c0] _mage, _kažu_, क्टर,\n  { {0x09cd0055, 0x26c70087, 0x00000000, 0x00000000}},  //   িউটা, _ksno_,   ,\n  { {0x0d860764, 0xa3df001c, 0x61ef0051, 0x00000000}},  //   влен, णार_, _focl,\n  { {0x69cb046a, 0xa91d0142, 0xbf22006e, 0x00000000}},  //   _nage, važn, _मशीन_,\n  { {0x6da3137c, 0xdca301e0, 0x38ab00ea, 0x00000000}},  //   рича, иаци, jør_,\n  { {0x26c7016c, 0x38ab08e0, 0x69cb0146, 0x00000000}},  //   _osno_, dør_, _aage,\n  { {0xdee30072, 0x69cb25f2, 0x39400ebc, 0x00000000}},  //   _кори, _bage, _šis_,\n  { {0xa91d25f3, 0xddc90036, 0x69d501f5, 0x00000000}},  //   gažo, _mieś, _मोदी,\n  { {0x7e690fda, 0x38ab0030, 0x81cc0044, 0x00000000}},  //   _čepi, gør_, লাপ_,\n  { {0xdb181db8, 0xa91d01dc, 0x69cb0133, 0x00000000}},  //   leví, mažl, _eage,\n  { {0x69cb0ccc, 0x60c4010f, 0x656d25f4, 0x00000000}},  //   _fage, hwim, _pfah,\n  { {0x60c40020, 0xa3cb0309, 0x69cb009d, 0x00000000}},  //   kwim, _रोज_, _gage,\n  { {0x2d8400f4, 0x69c0014a, 0x39400051, 0x00000000}},  //   _meme_, meme, _áis_,\n  { {0x69c025f5, 0x69cb00bb, 0x2d8425f6, 0x00000000}},  //   leme, _zage, _leme_,\n  { {0xe8e0001d, 0x69cb0009, 0xdb1800c4, 0x00000000}},  //   _đội_, _yage, levâ,\n  { {0xd9e5013d, 0x69c025f7, 0x656d0020, 0x00000000}},  //   कायत_, neme, _ufah,\n  { {0x5184008b, 0x25a910f8, 0x69c00fe4, 0x00000000}},  // [65d0] руса, _ical_, ieme,\n  { {0xcbbd0055, 0x69c0032c, 0x7538009b, 0x00000000}},  //   _ইচ্ছ, heme, _באחד_,\n  { {0x69c001c9, 0x33f400f8, 0x81b80044, 0x00000000}},  //   keme, _växt_, চয়_,\n  { {0x69c00390, 0x78a025f8, 0x6e22009d, 0x00000000}},  //   jeme, kumv, gnob,\n  { {0x69c019cd, 0x69cb002b, 0x66ea006b, 0x00000000}},  //   deme, _rage, fəkk,\n  { {0x69cb04fb, 0x30da0049, 0x60da0049, 0x00000000}},  //   _sage, _אַלע, _אַלג,\n  { {0x69c00299, 0x00000000, 0x00000000, 0x00000000}},  //   feme,   ,   ,\n  { {0x69c002ae, 0x683d0129, 0xb05b0039, 0x00000000}},  //   geme, mèdi, _osäk,\n  { {0xa91d1a0a, 0xdd030089, 0x683d00f6, 0x00000000}},  //   ražo, ārēj, lèdi,\n  { {0x69cb25f9, 0x2d8425fa, 0x38ab08c8, 0x00000000}},  //   _wage, _zeme_, rør_,\n  { {0x69cb1390, 0x69c00c75, 0x38ab0030, 0x00000000}},  //   _tage, beme, sør_,\n  { {0x69c0049a, 0x8afa0097, 0x78a00045, 0x00000000}},  //   ceme, _אלעז, bumv,\n  { {0x81cc08b7, 0xb908023c, 0x20030087, 0x00000000}},  //   লাম_, _لزوم_, _olji_,\n  { {0x3a3f006c, 0xb8920025, 0xd91a0104, 0x00000000}},  //   llup_, _الوع, _אונל,\n  { {0x3ea1006c, 0x75ff0065, 0x23270088, 0x00000000}},  //   juht_, _gëzo, гори_,\n  { {0x60db05c5, 0x25a900e5, 0x00000000, 0x00000000}},  //   _šuma, _gcal_,   ,\n  { {0xc0e3047d, 0x6604000b, 0xb146013b, 0x00000000}},  // [65e0] ботк, _ilik, унал,\n  { {0x69c014a0, 0x2d84002d, 0xdee6031b, 0x00000000}},  //   zeme, _seme_, лози,\n  { {0x660425fb, 0x69c0014a, 0x6e22016c, 0x00000000}},  //   _klik, yeme, tnob,\n  { {0x831b007b, 0x0caa0256, 0x69c004bd, 0x00000000}},  //   _טויז, етки_, xeme,\n  { {0x645e000b, 0x69c0030a, 0x628e0193, 0x00000000}},  //   _kipi, veme, lsbo,\n  { {0x2240005d, 0x2a65122b, 0x3e860025, 0x00000000}},  //   llik_, _bulb_, _مشرف,\n  { {0x660404ee, 0x2d8401d9, 0x628e0030, 0x00000000}},  //   _olik, _teme_, nsbo,\n  { {0x224025fc, 0x200f0089, 0x645e0652, 0x00000000}},  //   nlik_, īgie_, _lipi,\n  { {0x69c001d9, 0x22400007, 0x2df7009b, 0x00000000}},  //   reme, ilik_, _עצמך_,\n  { {0x660403ef, 0x78a0141a, 0x628e018d, 0x00000000}},  //   _alik, rumv, ksbo,\n  { {0x103700b6, 0x224025fd, 0x66040725, 0x00000000}},  //   רטים_, klik_, _blik,\n  { {0x0f57009b, 0x443a014a, 0x628e0239, 0x00000000}},  //   טיים_, _akp_, dsbo,\n  { {0x22401c82, 0x629c2032, 0x645e064e, 0x00000000}},  //   dlik_, erro, _bipi,\n  { {0x22400ff4, 0x6604002d, 0x36d4007c, 0x00000000}},  //   elik_, _elik, _вокр,\n  { {0x224025fe, 0x645e25ff, 0x443a04be, 0x00000000}},  //   flik_, _dipi, _dkp_,\n  { {0xdb0a2600, 0x22401f8c, 0x44f50d99, 0x00000000}},  //   lefó, glik_, _впис,\n  { {0x3015008b, 0x657d0065, 0x4395004d, 0x00000000}},  // [65f0] адар, mbsh, _капс,\n  { {0x645e2601, 0x38660145, 0x48b50049, 0x00000000}},  //   _gipi, _muor_, יִען_,\n  { {0x22402602, 0xdb0a010f, 0x764d0145, 0x00000000}},  //   blik_, gefü, _khay,\n  { {0x7c3a011c, 0x248d1504, 0x443a00ca, 0x00000000}},  //   _aktr, šemu_, _zkp_,\n  { {0xfce500ed, 0x645e0022, 0x764d00e0, 0x00000000}},  //   роло, _yipi, _mhay,\n  { {0xb09a00b6, 0x201a0129, 0x683d04bd, 0x00000000}},  //   _בישר, cipi_, pèdi,\n  { {0x764d1544, 0x66ea006b, 0x61ed2603, 0x00000000}},  //   _ohay, bəki, ojal,\n  { {0xe9d9005c, 0x61ed020c, 0x5c7506e3, 0x00000000}},  //   тки_, njal, _влат,\n  { {0xdb03009d, 0x79890016, 0x38660026, 0x00000000}},  //   igné, raew, _cuor_,\n  { {0x66042604, 0x2240038c, 0x61ed003c, 0x00000000}},  //   _slik, zlik_, hjal,\n  { {0x66040046, 0xd5e602e9, 0x645e0197, 0x00000000}},  //   _plik, ажни, _ripi,\n  { {0x645e023a, 0x7bc3006c, 0x2c6b0030, 0x00000000}},  //   _sipi, lenu, _kød_,\n  { {0x6e3b000b, 0x61ed0107, 0x60db00ca, 0x00000000}},  //   _mkub, djal, _šumn,\n  { {0x7bc3006c, 0x656f0207, 0x46f50088, 0x00000000}},  //   nenu, acch, _вчит,\n  { {0x6e3b0061, 0x645e0020, 0xdb0a10cf, 0x00000000}},  //   _okub, _vipi, lefò,\n  { {0x66042605, 0x628e0039, 0x224001d6, 0x00000000}},  //   _ulik, rsbo, ulik_,\n  { {0x22402606, 0x65642607, 0x628e00f8, 0x00000000}},  // [6600] rlik_, _igih, ssbo,\n  { {0x22401462, 0x6aa3010f, 0x15e40061, 0x00000000}},  //   slik_, kunf, गावर_,\n  { {0x44380390, 0x201a0059, 0x68fb0093, 0x00000000}},  //   mor_, ripi_, hyud,\n  { {0x44381e47, 0x61ed2608, 0x320901aa, 0x00000000}},  //   lor_, cjal, chay_,\n  { {0x0cd4053f, 0xdb0a01a2, 0x7bc300e5, 0x00000000}},  //   солю, sefü, fenu,\n  { {0x7bc3006c, 0x44380aa4, 0x2c6b068f, 0x00000000}},  //   genu, nor_, _død_,\n  { {0x6b8a00b5, 0x443800f6, 0x6d49002d, 0x00000000}},  //   rafg, ior_, _ezea,\n  { {0xada301e0, 0x44380127, 0x6000000c, 0x00000000}},  //   _масл, hor_, _mömm,\n  { {0x44381bc0, 0xed570057, 0x7e600058, 0x00000000}},  //   kor_, _вот_, _iimp,\n  { {0x61ed1a79, 0x44381468, 0x764d00e7, 0x00000000}},  //   zjal, jor_, _shay,\n  { {0x443800d6, 0x4fd90049, 0x7c381a2d, 0x00000000}},  //   dor_, אַרד, movr,\n  { {0x7e60002b, 0xa5bb00fa, 0x7af700f8, 0x00000000}},  //   _jimp, cnól, äxte,\n  { {0x44380056, 0x20180173, 0x7e6004cb, 0x00000000}},  //   for_, _omri_, _mimp,\n  { {0x44380ffd, 0x7e600325, 0x7c380207, 0x00000000}},  //   gor_, _limp, novr,\n  { {0xd83801d9, 0xe6940025, 0x764d2609, 0x00000000}},  //   moč_, _البد, _thay,\n  { {0x7e60097e, 0x20180020, 0x6b880133, 0x00000000}},  //   _nimp, _amri_, _ledg,\n  { {0xc9530049, 0x20180022, 0x2f8b003b, 0x00000000}},  // [6610] ַמע_, _bmri_, вљен_,\n  { {0x661d260a, 0x6e3b0006, 0x61ed115f, 0x00000000}},  //   lisk, _skub, sjal,\n  { {0xe8e0001d, 0x7c380030, 0x6d4000ea, 0x00000000}},  //   _đời_, dovr, _ayma,\n  { {0x661d260b, 0x2018260c, 0x7e60260d, 0x00000000}},  //   nisk, _emri_, _cimp,\n  { {0xbc19008b, 0x7e600035, 0x3d11006e, 0x00000000}},  //   лікі_, _dimp, _देखे_,\n  { {0x7c380e00, 0x00f60104, 0xd8380059, 0x00000000}},  //   govr, _המשך_, joč_,\n  { {0xa91d0006, 0x7bc3260e, 0x661d0981, 0x00000000}},  //   maži, renu, kisk,\n  { {0x44380428, 0x290d022b, 0xa91d00d0, 0x00000000}},  //   zor_, tzea_, laži,\n  { {0x661d09a9, 0x4438260f, 0x7bc3003f, 0x00000000}},  //   disk, yor_, penu,\n  { {0x44380039, 0x30da0049, 0xa91d129d, 0x00000000}},  //   xor_, אַטע, naži,\n  { {0x661d0056, 0x98b80089, 0x00000000, 0x00000000}},  //   fisk, ārā_,   ,\n  { {0x661d04d3, 0xdb010051, 0x2cbf0093, 0x00000000}},  //   gisk, _gclá, _kpud_,\n  { {0x5a0c0049, 0xe9450014, 0xdb180190, 0x00000000}},  //   _בלאַ, _ارای, gevæ,\n  { {0xdd99000a, 0xec350049, 0x00000000, 0x00000000}},  //   _blňk_, מאָר_,   ,\n  { {0x81cc0044, 0x09cb0061, 0x91e600d7, 0x00000000}},  //   লাস_, _ासाठ, бове,\n  { {0x44380ce3, 0x63bb0091, 0x661d1031, 0x00000000}},  //   sor_, đuna, cisk,\n  { {0x443808a9, 0x7e600197, 0x03a600c0, 0x00000000}},  // [6620] por_, _rimp, _липо,\n  { {0x7e690059, 0xa91d016e, 0x600000f8, 0x00000000}},  //   _čepr, gaži, _tömm,\n  { {0x7e60008a, 0x8d1a007a, 0x05dd0061, 0x00000000}},  //   _pimp, گزار_, याचब,\n  { {0x81cc0044, 0x6da602dc, 0xa5bb060d, 0x00000000}},  //   লাহ_, сида, ciód,\n  { {0x7c380091, 0x8c461f25, 0xc173009b, 0x00000000}},  //   tovr, беде, _מחר_,\n  { {0x2018000b, 0xdee6007c, 0x661d2610, 0x00000000}},  //   _umri_, _логи, zisk,\n  { {0x7e601cf1, 0x6d400046, 0x7c380190, 0x00000000}},  //   _timp, _wyma, rovr,\n  { {0x98740920, 0x3f8a0020, 0x187401e0, 0x00000000}},  //   олиц, _hebu_, огия,\n  { {0x661d1962, 0xd838016e, 0x050a0044, 0x00000000}},  //   visk, toč_, রপুর_,\n  { {0x661d0046, 0x7cde001a, 0xdb180190, 0x00000000}},  //   wisk, _cărţ, vevæ,\n  { {0x290201d9, 0x661d001e, 0x442701f6, 0x00000000}},  //   ška_, tisk, _ın_,\n  { {0x6f0900b9, 0xd8380059, 0x3f8a2611, 0x00000000}},  //   _řeck, soč_, _lebu_,\n  { {0x2ca6011c, 0x3f9800ca, 0x05aa0164, 0x00000000}},  //   nuod_, _odru_, _कारब,\n  { {0x661d010a, 0x25ad2612, 0x3f8a0166, 0x00000000}},  //   sisk, żel_, _nebu_,\n  { {0xdb1a001f, 0xa91d0006, 0x00000000, 0x00000000}},  //   _natü, važi,   ,\n  { {0xdb1a0010, 0x7a3e0065, 0x00000000, 0x00000000}},  //   _ható, pëtu,   ,\n  { {0xa5bb0211, 0xdb180bac, 0x609902fd, 0x00000000}},  // [6630] riód, levä, شناس_,\n  { {0x3f6700ed, 0x2007000c, 0x3f8a0a6b, 0x00000000}},  //   стаб, óni_, _cebu_,\n  { {0x2cbf01c3, 0x10480131, 0xdb1800b0, 0x00000000}},  //   _spud_, сяти_, nevä,\n  { {0xdd94008b, 0x8d87007c, 0xa91d0089, 0x00000000}},  //   зацы, сужд, saži,\n  { {0xa91d010a, 0x75ff0065, 0x3eb30009, 0x00000000}},  //   paži, _vëzh, stxt_,\n  { {0x3eb30061, 0xdb1800b0, 0x3f8a0145, 0x00000000}},  //   ptxt_, kevä, _gebu_,\n  { {0x81cc0055, 0x93fc0049, 0xfbd00380, 0x00000000}},  //   লার_, רלוי, عته_,\n  { {0x60dd0521, 0x00000000, 0x00000000, 0x00000000}},  //   _krsm,   ,   ,\n  { {0x2d8f0498, 0x26dc0103, 0x75ff0065, 0x00000000}},  //   mage_, _arvo_, _gëzi,\n  { {0x2d8f2613, 0x2ca0002a, 0x115c007b, 0x00000000}},  //   lage_, áide_, נדזע,\n  { {0x65c60147, 0x00000000, 0x00000000, 0x00000000}},  //   обна,   ,   ,\n  { {0x361601fb, 0xd5aa0061, 0x2d8f0549, 0x00000000}},  //   ієнт, _काळज, nage_,\n  { {0x893705f3, 0x1959008b, 0x67d50069, 0x00000000}},  //   _اعضا, _тады_, _моду,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x2d8f0030, 0xe36301fb, 0x3f8a134e, 0x00000000}},  //   kage_, дкри, _rebu_,\n  { {0x21670931, 0x91e30081, 0xdb1a01aa, 0x00000000}},  //   жити_, мосе, _katò,\n  { {0x2d8f0ba6, 0x81cc0044, 0x614300e2, 0x00000000}},  // [6640] dage_, লাল_, дета,\n  { {0xdfa60025, 0x66ea006b, 0xbfc3004d, 0x00000000}},  //   تحري, cəks, мбук,\n  { {0x2d8f00f4, 0x25df0061, 0x3f8a012d, 0x00000000}},  //   fage_, गाची_, _vebu_,\n  { {0xee3a0269, 0x3f8a01c8, 0x2d8f0549, 0x00000000}},  //   шне_, _webu_, gage_,\n  { {0x61e62614, 0x3f8a04be, 0xdb1801e5, 0x00000000}},  //   _inkl, _tebu_, ndvö,\n  { {0xa91d1288, 0x7d06010e, 0x00000000, 0x00000000}},  //   nažu, _üksm,   ,\n  { {0x3d1a03d7, 0xe8e0001d, 0xdb1a008e, 0x00000000}},  //   _मेरे_, _đối_, _rató,\n  { {0x2d8f009d, 0x0d8602dc, 0x7e7e0058, 0x00000000}},  //   cage_, _флан, mppp,\n  { {0x1d07007c, 0xc7c6005e, 0xdb1a07f0, 0x00000000}},  //   _дети_, осни, _catò,\n  { {0x26dc1000, 0xdb181b97, 0x00000000, 0x00000000}},  //   _prvo_, tevä,   ,\n  { {0xdb1a2615, 0x45d500ed, 0x61e61810, 0x00000000}},  //   _obté, понс, _onkl,\n  { {0x1b130044, 0xa5bb2616, 0xdb182617, 0x00000000}},  //   _ঢুকে_, dióc, revä,\n  { {0xdb181a17, 0x00000000, 0x00000000, 0x00000000}},  //   sevä,   ,   ,\n  { {0x61e60240, 0x998d0036, 0xa91d144f, 0x00000000}},  //   _ankl, kieś_, gažu,\n  { {0x2d8f028c, 0xf4850167, 0x72d40081, 0x00000000}},  //   yage_, _کابی, морф,\n  { {0x200a0a86, 0xceeb0063, 0x96180025, 0x00000000}},  //   _albi_, یران_, _وغير_,\n  { {0x200a0690, 0x2d8f032c, 0x3d1a006e, 0x00000000}},  // [6650] _blbi_, vage_, _मेले_,\n  { {0x61e6093b, 0x2d8f0133, 0x00000000, 0x00000000}},  //   _enkl, wage_,   ,\n  { {0x64470295, 0x9f510197, 0x00000000, 0x00000000}},  //   mlji, _alzò_,   ,\n  { {0x248900b5, 0x7c2a00d9, 0x00000000, 0x00000000}},  //   _kwam_, enfr,   ,\n  { {0x2d8f030a, 0x7c2a000c, 0x4c84007e, 0x00000000}},  //   rage_, fnfr, длів,\n  { {0x798b120b, 0x2d8f00f4, 0x60cd0d16, 0x00000000}},  //   _segw, sage_, mwam,\n  { {0x27e90011, 0x62950f88, 0x2c5d000a, 0x00000000}},  //   _đan_, nszo, _jňdi_,\n  { {0x64470e54, 0x600001a2, 0x629500bb, 0x00000000}},  //   hlji, _römi, iszo,\n  { {0x64470059, 0x60cd002b, 0x2d8d00ab, 0x00000000}},  //   klji, nwam, _ieee_,\n  { {0x798b0cac, 0x62950c59, 0xb17b00f8, 0x00000000}},  //   _wegw, kszo, _snål,\n  { {0xb8f203d7, 0xe7390113, 0x64470295, 0x00000000}},  //   _है_, сен_, dlji,\n  { {0x60cd2618, 0x62952619, 0x2d8d0145, 0x00000000}},  //   kwam, dszo, _jeee_,\n  { {0xa879007b, 0x5fac0061, 0x998d0036, 0x00000000}},  //   _פאַר, _चालल, zieś_,\n  { {0x387f027e, 0x64470e0f, 0x987a0097, 0x00000000}},  //   mpur_, glji, _האסט,\n  { {0x91e6017f, 0x387f000c, 0x824a01b7, 0x00000000}},  //   пове, lpur_, مشرف_,\n  { {0x249f0089, 0xdb120010, 0x2489000a, 0x00000000}},  //   šuma_, égér, _fwam_,\n  { {0x78a90211, 0xdb0a0181, 0x64470825, 0x00000000}},  // [6660] nuev, lefô, blji,\n  { {0x81cc0055, 0x13a806c6, 0xa3d4006e, 0x00000000}},  //   লাই_, _بندی_, _सोच_,\n  { {0x69c9261a, 0x387f01f3, 0x0eb9007e, 0x00000000}},  //   keee, hpur_, жучы_,\n  { {0x7d06006c, 0xed5a0a78, 0x69c909fc, 0x00000000}},  //   _üksk, бое_, jeee,\n  { {0xdd8f023c, 0x75ff0023, 0x1bd402dc, 0x00000000}},  //   اوه_, _gëzu, доля,\n  { {0x6e2b0061, 0x69c9016e, 0x7e7e0011, 0x00000000}},  //   angb, eeee, pppp,\n  { {0x6606101d, 0x7c2a0332, 0x224200c4, 0x00000000}},  //   kkkk, rnfr, _kkkk_,\n  { {0x6447092f, 0x7e9b009b, 0x22420145, 0x00000000}},  //   zlji, _לסלו, _jkkk_,\n  { {0x3ebf0521, 0xdca30072, 0xe8e00011, 0x00000000}},  //   _ćuti_, _пати, _đồi_,\n  { {0x77920123, 0x6e220020, 0xed5f0006, 0x00000000}},  //   ریبا, liob, įžta_,\n  { {0xbb4a0380, 0x64470f3a, 0x7bca0020, 0x00000000}},  //   _الان_, vlji, mefu,\n  { {0x6a1605f3, 0x6aaa16df, 0x6e22008e, 0x00000000}},  //   _عبار, muff, niob,\n  { {0x64470295, 0x7d020010, 0x63a10036, 0x00000000}},  //   tlji, nyos, ólno,\n  { {0x7bca0146, 0x62950010, 0x625300fa, 0x00000000}},  //   nefu, tszo, içoe,\n  { {0x9f580065, 0x64470295, 0xb35401fc, 0x00000000}},  //   _dorë_, rlji, екрш,\n  { {0x64470e0f, 0xe1f300a1, 0xe0df0026, 0x00000000}},  //   slji, رسز_, _prò_,\n  { {0x62950010, 0x64470295, 0x7bca00ea, 0x00000000}},  // [6670] sszo, plji, kefu,\n  { {0x660d000c, 0x60cd261b, 0x6aaa06ec, 0x00000000}},  //   _hlak, rwam, kuff,\n  { {0x660d01e5, 0xd34100a1, 0x4423261c, 0x00000000}},  //   _klak, _شہری, mij_,\n  { {0xe0df001d, 0x442301d9, 0xb8120044, 0x00000000}},  //   _trò_, lij_, িচিত_,\n  { {0x9c59261d, 0x660d016e, 0x23700023, 0x00000000}},  //   ошку_, _mlak, _çojë_,\n  { {0xce6b0200, 0x44230aa9, 0x7bca0302, 0x00000000}},  //   _град_, nij_, gefu,\n  { {0x3946011c, 0x660d0091, 0x6e220026, 0x00000000}},  //   _ayos_, _olak, biob,\n  { {0x22492119, 0x6e2200fd, 0x2ca0012d, 0x00000000}},  //   nlak_, ciob, šida_,\n  { {0x442300ea, 0x7bca0302, 0xdcfb0014, 0x00000000}},  //   kij_, befu, _ارزش_,\n  { {0x660d261e, 0x387f01e5, 0x442300bb, 0x00000000}},  //   _alak, rpur_, jij_,\n  { {0x660d0089, 0x44230627, 0xe5a60069, 0x00000000}},  //   _blak, dij_, мини,\n  { {0x387f261f, 0x660d0022, 0x7c230052, 0x00000000}},  //   ppur_, _clak, linr,\n  { {0x660d10f7, 0x44232620, 0x21010006, 0x00000000}},  //   _dlak, fij_, nčią_,\n  { {0xb05b0039, 0x660d01a3, 0x4423050f, 0x00000000}},  //   _spän, _elak, gij_,\n  { {0x660d2621, 0x7bc1002b, 0x2c7b00e5, 0x00000000}},  //   _flak, _mblu, _hâdă_,\n  { {0x3cee001c, 0x3a2d177d, 0xa5bb0f6c, 0x00000000}},  //   _आपले_, nnep_, lión,\n  { {0x442300b5, 0x7e7c0091, 0x2bae0061, 0x00000000}},  // [6680] bij_, _strp, _घाला,\n  { {0xa5bb027b, 0x442301d9, 0x7d020020, 0x00000000}},  //   nión, cij_, vyos,\n  { {0x44440662, 0x7bca000c, 0x216a0069, 0x00000000}},  //   _ik_, vefu, _мини_,\n  { {0xe9d90046, 0x645c00ea, 0x00000000, 0x00000000}},  //   jdź_, lmri,   ,\n  { {0x09bc0055, 0x444400b0, 0x6e22035e, 0x00000000}},  //   _অফলা, _kk_, riob,\n  { {0x44440020, 0x6aaa0541, 0x7d022622, 0x00000000}},  //   _jk_, tuff, ryos,\n  { {0x44440089, 0xa0670c27, 0x7bca24ca, 0x00000000}},  //   _mk_, _цара_, refu,\n  { {0x44441287, 0x44232623, 0x6aaa2624, 0x00000000}},  //   _lk_, zij_, ruff,\n  { {0xeb9a01f9, 0x6aaa1e5a, 0x2d861fac, 0x00000000}},  //   _миа_, suff, mboe_,\n  { {0x44440127, 0x660d06a1, 0x31570049, 0x00000000}},  //   _nk_, _slak, ויפן_,\n  { {0xe8e0001d, 0x660d0091, 0x442300ca, 0x00000000}},  //   _đổi_, _plak, vij_,\n  { {0x44442625, 0x2fd82626, 0x3a3f2627, 0x00000000}},  //   _ak_, _larg_, coup_,\n  { {0x44232628, 0x224901d6, 0x9f58009d, 0x00000000}},  //   tij_, vlak_, _doré_,\n  { {0xa5bb081d, 0x3fd90055, 0x68e20047, 0x00000000}},  //   ción, _দক্ষ, _irod,\n  { {0x444405ec, 0x44232629, 0x660d0161, 0x00000000}},  //   _dk_, rij_, _tlak,\n  { {0x44441273, 0x442300ca, 0x35f80025, 0x00000000}},  //   _ek_, sij_, _يريد_,\n  { {0x656d262a, 0x2249014a, 0xe7f50061, 0x00000000}},  // [6690] _igah, rlak_, ेसचा_,\n  { {0x4444262b, 0x2fd80146, 0x00000000, 0x00000000}},  //   _gk_, _carg_,   ,\n  { {0x7c2d0051, 0xa195003b, 0x2249014a, 0x00000000}},  //   éarm, _панч, plak_,\n  { {0x68e2262c, 0x1cb90054, 0xa01b092e, 0x00000000}},  //   _orod, كاتب_, _stöd,\n  { {0xdb0901c8, 0x44210145, 0x30790049, 0x00000000}},  //   čníc, _kmh_, _מאָנ,\n  { {0xe9d90036, 0x4444262d, 0x2fd80fd1, 0x00000000}},  //   wdź_, _xk_, _garg_,\n  { {0xbb421e6a, 0x68e20089, 0x6012000c, 0x00000000}},  //   лешк, _arod, _dæmd,\n  { {0xe7d70183, 0x68e20209, 0x2ca6262e, 0x00000000}},  //   _भोजप, _brod, brod_,\n  { {0x3a3f1e55, 0x00000000, 0x00000000, 0x00000000}},  //   roup_,   ,   ,\n  { {0x61fd0506, 0x656d262f, 0x68e20036, 0x00000000}},  //   _losl, _agah, _drod,\n  { {0xf62601f9, 0x3f91002d, 0x99910010, 0x00000000}},  //   едно, _mezu_, őző_,\n  { {0x444413a1, 0x64450149, 0xa5bb049a, 0x00000000}},  //   _sk_, _akhi, sión,\n  { {0x68e22539, 0x7e6900d9, 0x00000000, 0x00000000}},  //   _grod, _miep,   ,\n  { {0x7e690a5c, 0x69d92630, 0x4444002b, 0x00000000}},  //   _liep, _hawe, _qk_,\n  { {0xed45026c, 0x425600e3, 0xa5bb029d, 0x00000000}},  //   _چھ_, етат, gnós,\n  { {0x7e690046, 0x444400b5, 0x69db2631, 0x00000000}},  //   _niep, _wk_, ndue,\n  { {0x78bb2632, 0x44442633, 0x61fd0091, 0x00000000}},  // [66a0] ntuv, _tk_, _dosl,\n  { {0x44441e55, 0x69d90016, 0x2480011c, 0x00000000}},  //   _uk_, _lawe, _itim_,\n  { {0x78bb003c, 0x93b7009b, 0x2fd80f3f, 0x00000000}},  //   htuv, _אליו_, _varg_,\n  { {0x69d92634, 0xa06a012b, 0x7e690036, 0x00000000}},  //   _nawe, _нама_, _ciep,\n  { {0x7e6900c7, 0x1016007e, 0x2d862635, 0x00000000}},  //   _diep, _зьвя, rboe_,\n  { {0x6281004a, 0x2ca60322, 0x2ca0012d, 0x00000000}},  //   ílog, rrod_, šido_,\n  { {0x68e2106c, 0xaa66005c, 0x248000f6, 0x00000000}},  //   _srod, нтик, _ltim_,\n  { {0x2ca60056, 0x6000006b, 0x48aa24a0, 0x00000000}},  //   prod_, _gömr, птом_,\n  { {0x69d90016, 0x3f910009, 0x625300c4, 0x00000000}},  //   _dawe, _yezu_, nçoa,\n  { {0x4c9b00b6, 0x25a004cb, 0x625300c4, 0x00000000}},  //   _משמע, _adil_, içoa,\n  { {0x69db00d4, 0x69bd0061, 0xddc70059, 0x00000000}},  //   bdue, व्ही, _hujš,\n  { {0x7bda000b, 0x68e205fe, 0x69d90007, 0x00000000}},  //   _hatu, _trod, _gawe,\n  { {0x7bda006a, 0x68e20046, 0x61fd01a3, 0x00000000}},  //   _katu, _urod, _rosl,\n  { {0x7c21041d, 0x7bda04cb, 0x69c0037f, 0x00000000}},  //   _xmlr, _jatu, lfme,\n  { {0x7bda0503, 0x69d92636, 0x00000000, 0x00000000}},  //   _matu, _yawe,   ,\n  { {0x7bda1759, 0x80ca0044, 0x656d0045, 0x00000000}},  //   _latu, রিন্, _ugah,\n  { {0x7e690089, 0x1fa70088, 0x25d80049, 0x00000000}},  // [66b0] _riep, ерег, _טוהן_,\n  { {0x320901aa, 0xa01b010f, 0x7e6920b0, 0x00000000}},  //   skay_, _stöb, _siep,\n  { {0x7e69001e, 0x4fc4007e, 0x3f910091, 0x00000000}},  //   _piep, ыста, _vezu_,\n  { {0x78bb0006, 0x7bda0058, 0x09c50044, 0x00000000}},  //   ytuv, _aatu, _শোনা,\n  { {0x7bda0c35, 0x3f910107, 0xddc0001a, 0x00000000}},  //   _batu, _tezu_, _simţ,\n  { {0x99dd00b9, 0x7bda008a, 0xfaa5132e, 0x00000000}},  //   plňk, _catu, вако,\n  { {0xf771089d, 0x69d90036, 0x44310c30, 0x00000000}},  //   یاد_, _pawe, inz_,\n  { {0x78bb00b0, 0x9f580197, 0x00000000, 0x00000000}},  //   ttuv, _morì_,   ,\n  { {0x69db022b, 0x7bda0bf7, 0x290b0027, 0x00000000}},  //   rdue, _fatu, áca_,\n  { {0x69d90e15, 0x78bb0d90, 0x7bda0b23, 0x00000000}},  //   _wawe, rtuv, _gatu,\n  { {0x78bb06aa, 0x2480001a, 0x69d91496, 0x00000000}},  //   stuv, _stim_, _tawe,\n  { {0x44312637, 0x7bda04eb, 0xc3250044, 0x00000000}},  //   enz_, _zatu, _মুভি_,\n  { {0x7bda14a5, 0x59da007d, 0x7d06006c, 0x00000000}},  //   _yatu, _मोटर, _ükst,\n  { {0x33d501e1, 0x2bc40061, 0xbf210061, 0x00000000}},  //   ліст, ल्पा, _मधून_,\n  { {0x78a9121b, 0x41b602dc, 0xd4671649, 0x00000000}},  //   lrev, ксат, тире_,\n  { {0x20110026, 0x7989147c, 0xd1322638, 0x00000000}},  //   _alzi_, nbew, لمز_,\n  { {0xf9920476, 0x41270200, 0x78a900ea, 0x00000000}},  // [66c0] ירן_, вото_, nrev,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7bda04d4, 0x78a900b5, 0x798900d9, 0x00000000}},  //   _ratu, hrev, kbew,\n  { {0x7bda001e, 0x78a90056, 0xf53f0c88, 0x00000000}},  //   _satu, krev, mgår_,\n  { {0x7bda17ca, 0x798900bb, 0x77f10164, 0x00000000}},  //   _patu, dbew, _अचूक_,\n  { {0x6253153c, 0x78a900bb, 0x798900d9, 0x00000000}},  //   nçon, drev, ebew,\n  { {0x3cee03d7, 0x629c00f8, 0x63a10036, 0x00000000}},  //   _आपके_, nsro, ólni,\n  { {0x7bda000b, 0xc333007b, 0x58d801e0, 0x00000000}},  //   _watu, יוו_, едия_,\n  { {0x78a90925, 0xbc660b81, 0x00000000, 0x00000000}},  //   grev, _авак,   ,\n  { {0xad1b009b, 0xa5bb0010, 0x3f85010e, 0x00000000}},  //   _חומר, ciój, _õlut_,\n  { {0xa3c8007d, 0x559500e2, 0x00000000, 0x00000000}},  //   ोजन_, ланѓ,   ,\n  { {0x78a90030, 0xf53f0030, 0x2ca9016c, 0x00000000}},  //   brev, dgår_, šade_,\n  { {0x78a902d5, 0x00000000, 0x00000000, 0x00000000}},  //   crev,   ,   ,\n  { {0x3cf50061, 0xa3a4012b, 0xecc40044, 0x00000000}},  //   ्हते_, ијск, _এছাড,\n  { {0x2bc40183, 0x07a3025f, 0x442d0091, 0x00000000}},  //   ल्या, _тајн, đe_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6b9800f8, 0x00000000, 0x00000000, 0x00000000}},  // [66d0] kavg,   ,   ,\n  { {0x44271038, 0xa3d500ed, 0x629c01c3, 0x00000000}},  //   _ön_, _сооч, bsro,\n  { {0x62670b03, 0x78a92639, 0xaca30082, 0x00000000}},  //   _لاحق, zrev, _trừn,\n  { {0x6287002b, 0x78a90ede, 0x00000000, 0x00000000}},  //   mpjo, yrev,   ,\n  { {0x61ef0b25, 0xfd100076, 0xada4007e, 0x00000000}},  //   _incl, يجه_, раіл,\n  { {0x1c440451, 0xf09f00f6, 0x78a90146, 0x00000000}},  //   анім, _ivà_, vrev,\n  { {0xe4580049, 0x63b50089, 0x6e94263a, 0x00000000}},  //   דיגט_, igzn, _вису,\n  { {0x78a906c0, 0x7f5801ab, 0x00000000, 0x00000000}},  //   trev, _расс_,   ,\n  { {0x79890597, 0x00000000, 0x00000000, 0x00000000}},  //   rbew,   ,   ,\n  { {0x78a91c28, 0x7d04021e, 0x7989263b, 0x00000000}},  //   rrev, äise, sbew,\n  { {0x61ef001c, 0x78a90190, 0x63b80039, 0x00000000}},  //   _oncl, srev, _övni,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xe8ee0256, 0x98a5026b, 0xb05b00b0, 0x00000000}},  //   _ул_, _силе, _epäi,\n  { {0x61ef008e, 0x629c1dcd, 0xe61202fd, 0x00000000}},  //   _ancl, tsro, _گشت_,\n  { {0xdceb01d5, 0x6253263c, 0xe9ff0011, 0x00000000}},  //   bagħ, rçon, _ngẫm_,\n  { {0xb5fb1db8, 0xf53f032e, 0xe61202fd, 0x00000000}},  //   rmác, rgår_, _دشت_,\n  { {0x76460006, 0x6253009d, 0x629c00ab, 0x00000000}},  // [66e0] moky, pçon, ssro,\n  { {0x61ef032c, 0xe0d707d0, 0xb686009e, 0x00000000}},  //   _encl, ыву_, _جھیل_,\n  { {0x0d86005e, 0x442a010e, 0x03d70049, 0x00000000}},  //   глен, mib_, _גוים_,\n  { {0x442a0163, 0xf2d300a3, 0x3ea7263d, 0x00000000}},  //   lib_, _פער_, ánta_,\n  { {0x7bc3010f, 0x4095003b, 0xb6a30082, 0x00000000}},  //   ffnu, _врст, _suấ,\n  { {0x442a1544, 0xd0120025, 0x00000000, 0x00000000}},  //   nib_, _الس_,   ,\n  { {0x47dc0044, 0x00000000, 0x00000000, 0x00000000}},  //   বামী,   ,   ,\n  { {0x442a263e, 0xaa54012b, 0x249f0089, 0x00000000}},  //   hib_, јвиш, šumi_,\n  { {0x442a263f, 0x7e6200f2, 0xdb0800fa, 0x00000000}},  //   kib_, mmop, _abdô,\n  { {0x442a04cb, 0x7e622640, 0x3f9a2641, 0x00000000}},  //   jib_, lmop, napu_,\n  { {0x6fc6001c, 0x442a006b, 0x7c2a00f8, 0x00000000}},  //   र्यं, dib_, mifr,\n  { {0x2456000c, 0x00000000, 0x00000000, 0x00000000}},  //   væma_,   ,   ,\n  { {0x3f9a016a, 0xe8940b5f, 0x27f81fbc, 0x00000000}},  //   kapu_, _таль, örns_,\n  { {0x7c2a00ea, 0x00000000, 0x00000000, 0x00000000}},  //   nifr,   ,   ,\n  { {0x1797019b, 0xd25b0726, 0xa29505b8, 0x00000000}},  //   _גדול_, еца_, рабі,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x442a01d5, 0xaca30011, 0x746b0264, 0x00000000}},  // [66f0] bib_, _trứn, _пров_,\n  { {0x442a006b, 0x2c7901aa, 0x7ae800ea, 0x00000000}},  //   cib_, _rèd_, _ordt,\n  { {0x09ac0044, 0x7c2a2123, 0x2c790173, 0x00000000}},  //   ক্যা, difr, _sèd_,\n  { {0x64472642, 0x7bc80127, 0x61ef00ab, 0x00000000}},  //   loji, _abdu, _uncl,\n  { {0x56380049, 0x7ae80051, 0x9f5800fa, 0x00000000}},  //   נאדע_, _ardt, _porã_,\n  { {0xab2901bd, 0x64470dec, 0xc31c0044, 0x00000000}},  //   кола_, noji, _দুটি_,\n  { {0x3d950920, 0x2003163a, 0x00000000, 0x00000000}},  //   _вибр, _ioji_,   ,\n  { {0x64470020, 0x442a2643, 0x6d57006b, 0x00000000}},  //   hoji, zib_, əxan,\n  { {0x20030119, 0x442a2644, 0x64470dc6, 0x00000000}},  //   _koji_, yib_, koji,\n  { {0x3ae3014a, 0x62852645, 0x442a013f, 0x00000000}},  //   _tıp_, _otho, xib_,\n  { {0xe7390200, 0x99f5008b, 0x64472646, 0x00000000}},  //   тен_, _вялі, doji,\n  { {0x25e60309, 0x22a10006, 0x20030145, 0x00000000}},  //   _जोशी_, dėk_, _loji_,\n  { {0x62852647, 0x76460058, 0x442a200f, 0x00000000}},  //   _atho, roky, tib_,\n  { {0x64470042, 0xa01b1fbc, 0xa6c900e2, 0x00000000}},  //   goji, _stön, _алка_,\n  { {0x442a2648, 0x6e2b00e0, 0x00000000, 0x00000000}},  //   rib_, kigb,   ,\n  { {0xcb120049, 0x799b00bb, 0xb5fb0010, 0x00000000}},  //   קלן_, nauw, lmán,\n  { {0x6285018e, 0x64470006, 0x2003016e, 0x00000000}},  // [6700] _etho, boji, _boji_,\n  { {0x8fa60057, 0x60d60016, 0x442a006b, 0x00000000}},  //   раже, rwym, qib_,\n  { {0x23fb0104, 0x200300ee, 0x81cb0044, 0x00000000}},  //   _ספטמ, _doji_, লয়_,\n  { {0x3f9a0329, 0x9f5800f6, 0x7c2a0544, 0x00000000}},  //   sapu_, _vorà_, wifr,\n  { {0x2ca0002a, 0x66041256, 0x3ddf00d9, 0x00000000}},  //   éid_, _moik, _dauw_,\n  { {0x20030145, 0xfaa6003b, 0x660400b0, 0x00000000}},  //   _goji_, ашин, _loik,\n  { {0x7c2a0039, 0x6e2b0146, 0x443a00f6, 0x00000000}},  //   rifr, bigb, _mjp_,\n  { {0x3f980093, 0xce340123, 0x7c2a012d, 0x00000000}},  //   _heru_, _اورک, sifr,\n  { {0x9a670025, 0x64470020, 0xc7b8016c, 0x00000000}},  //   جميل_, yoji, ziđu_,\n  { {0x9cd7009b, 0xf80602e9, 0x3f9801c3, 0x00000000}},  //   _דומה_, рчин, _jeru_,\n  { {0x64470091, 0x12b10055, 0x3f9801ee, 0x00000000}},  //   voji, _চন্দ, _meru_,\n  { {0x47dc0055, 0xa01b014a, 0xea62009e, 0x00000000}},  //   বাধী, _atöl, _بھتی,\n  { {0x64470089, 0xd628007e, 0x66040288, 0x00000000}},  //   toji, роўе_, _doik,\n  { {0x443a00d9, 0x224b0022, 0x00000000, 0x00000000}},  //   _cjp_, _skck_,   ,\n  { {0x64472649, 0x443a0093, 0x661601c9, 0x00000000}},  //   roji, _djp_, _flyk,\n  { {0x52140069, 0x6604002d, 0x64470059, 0x00000000}},  //   одст, _goik, soji,\n  { {0x644701ca, 0xcf9b00ed, 0x3f981282, 0x00000000}},  // [6710] poji, вје_, _beru_,\n  { {0x3ea7008e, 0xd3a70216, 0x96da006e, 0x00000000}},  //   ánto_, _трип, _बनाउ,\n  { {0x2003016c, 0x628500ea, 0x3ddf00d9, 0x00000000}},  //   _voji_, _utho, _pauw_,\n  { {0x7d0b0039, 0x09ac0044, 0x249f0089, 0x00000000}},  //   tygs, ক্তা, šumu_,\n  { {0x2249002d, 0xfce5030d, 0x00000000, 0x00000000}},  //   moak_, соло,   ,\n  { {0x60dd0009, 0x2249002d, 0x6e2b01d6, 0x00000000}},  //   _issm, loak_, sigb,\n  { {0x764d264a, 0x9f58004a, 0x3e7701f3, 0x00000000}},  //   _okay, _torá_, _oħti_,\n  { {0xe9d90373, 0x2249002d, 0x3f980032, 0x00000000}},  //   уки_, noak_, _zeru_,\n  { {0x2bc40183, 0x9d15007c, 0x6e3b016c, 0x00000000}},  //   ल्हा, _удач, _ijub,\n  { {0x764d0f65, 0x3f8100d4, 0x9610013d, 0x00000000}},  //   _akay, nchu_, ास्ट_,\n  { {0x22490756, 0xb5fb0047, 0x6604021e, 0x00000000}},  //   koak_, rmán, _poik,\n  { {0x645e008d, 0xf409061e, 0x2d9d264b, 0x00000000}},  //   _shpi, _אפ_, nawe_,\n  { {0xb5fb000c, 0x7c280016, 0x2249002d, 0x00000000}},  //   mmál, _ymdr, doak_,\n  { {0x6e3b0f3a, 0x6383005e, 0x2d9d0009, 0x00000000}},  //   _ljub, згра, hawe_,\n  { {0x2d9d0036, 0x22490032, 0x00000000, 0x00000000}},  //   kawe_, foak_,   ,\n  { {0x3f981c2b, 0x2249002d, 0x6616068f, 0x00000000}},  //   _seru_, goak_, _ulyk,\n  { {0x515610a9, 0x3f980211, 0x287a0049, 0x00000000}},  // [6720] ству, _peru_, ָנעמ,\n  { {0x3a2d0011, 0x6e2900e7, 0x799901c3, 0x00000000}},  //   hiep_, _ameb, _leww,\n  { {0x3f98264c, 0xe9ff0011, 0x2249002d, 0x00000000}},  //   _veru_, _ngắm_, boak_,\n  { {0xb05b0598, 0x79990807, 0x44380a5e, 0x00000000}},  //   _spät, _neww, lnr_,\n  { {0x6e3b0521, 0xdd990027, 0xd47a0049, 0x00000000}},  //   _djub, _deň_, נאַל,\n  { {0x69cb001f, 0x60c40065, 0x61e4264d, 0x00000000}},  //   _abge, mtim, ldil,\n  { {0x78a2068f, 0xb05b00b0, 0x9ce800a1, 0x00000000}},  //   _svov, _epäs, _ھوئے_,\n  { {0x61e408a7, 0xa5bb00f6, 0xb5fb000c, 0x00000000}},  //   ndil, niót, gmál,\n  { {0xd90e01ef, 0x9f58014a, 0x26dc01c3, 0x00000000}},  //   عیت_, _borç_, _ssvo_,\n  { {0x473401f9, 0x765f0065, 0x2249002d, 0x00000000}},  //   жнос, _shqy, zoak_,\n  { {0x661d008d, 0x60c401c2, 0x443800e5, 0x00000000}},  //   ërko, htim, dnr_,\n  { {0x60c4008d, 0x0f5700b6, 0x2249002d, 0x00000000}},  //   ktim, מיים_, xoak_,\n  { {0x60c4008d, 0x61e40016, 0x3a5600a1, 0x00000000}},  //   jtim, ddil, _پیکج_,\n  { {0x4438032e, 0x3959010f, 0x61e421de, 0x00000000}},  //   gnr_, üsse_, edil,\n  { {0x60c40006, 0x6b9a0129, 0x9f410065, 0x00000000}},  //   etim, _metg, rdhë_,\n  { {0x533410a9, 0x60c40065, 0x61e40058, 0x00000000}},  //   чест, ftim, gdil,\n  { {0x2249022b, 0x625300f4, 0x60c400e0, 0x00000000}},  // [6730] roak_, nçoi, gtim,\n  { {0x6b9a0006, 0x2249022b, 0x249f0089, 0x00000000}},  //   _netg, soak_, šums_,\n  { {0x3f810016, 0xa5bb0285, 0x61e40066, 0x00000000}},  //   rchu_, biót, bdil,\n  { {0x998d264e, 0x645501a2, 0x60c40045, 0x00000000}},  //   kneš_, llzi, btim,\n  { {0x79990126, 0xfe700014, 0x2d9d264f, 0x00000000}},  //   _reww, ردم_, rawe_,\n  { {0x7999002b, 0x998d09fc, 0x3ea10065, 0x00000000}},  //   _seww, dneš_, psht_,\n  { {0xf9910025, 0xda65026b, 0x6e3b012d, 0x00000000}},  //   وبة_, овки, _tjub,\n  { {0x291f002d, 0x6e291f3f, 0x25a91802, 0x00000000}},  //   tzua_, _umeb, _ndal_,\n  { {0x6b9a00d4, 0x6d5b0035, 0x998d0c1e, 0x00000000}},  //   _fetg, _uzua, gneš_,\n  { {0xd82501fb, 0xb5fb2650, 0xa7fc014a, 0x00000000}},  //   ідни, smál, smın,\n  { {0x09c30055, 0x60c42651, 0x24892652, 0x00000000}},  //   ্যবা, ztim, _atam_,\n  { {0x3ced2653, 0xe0df0173, 0x60c40133, 0x00000000}},  //   _krev_, _osò_, ytim,\n  { {0x955606f1, 0x443806d3, 0x25a90016, 0x00000000}},  //   تخدا, tnr_, _ddal_,\n  { {0xf1bf0211, 0x69c901a0, 0x44380009, 0x00000000}},  //   _acá_, lfee, unr_,\n  { {0x68e90810, 0x443802a9, 0xe29a094b, 0x00000000}},  //   lved, rnr_, раб_,\n  { {0x60c42654, 0x69c900bb, 0x61e41282, 0x00000000}},  //   ttim, nfee, udil,\n  { {0x61e4006b, 0x68e90010, 0x60c4016c, 0x00000000}},  // [6740] rdil, nved, utim,\n  { {0xe29a045e, 0x2f5601fc, 0xb05b04ce, 0x00000000}},  //   _као_, отес, _spär,\n  { {0x69c9040f, 0x3e7701f3, 0x00000000, 0x00000000}},  //   kfee, _oħtu_,   ,\n  { {0x60c40065, 0x6b9a2655, 0x3ced063b, 0x00000000}},  //   ptim, _setg, _brev_,\n  { {0xce34026c, 0x69c9111b, 0x973c0091, 0x00000000}},  //   _ہوسک, dfee, maće,\n  { {0x70d9007b, 0x7a3e0089, 0x3ced05fe, 0x00000000}},  //   _פֿרו, dīta, _drev_,\n  { {0x69c9010f, 0x68e900d9, 0x6b9a0a5e, 0x00000000}},  //   ffee, eved, _vetg,\n  { {0x6b9a00c7, 0xa8a6013b, 0xddc9001a, 0x00000000}},  //   _wetg, орок, _vieţ,\n  { {0xdcf8026c, 0xd7fa00ed, 0x6d400066, 0x00000000}},  //   _دہشت_, аун_, _uxma,\n  { {0x7e7c0089, 0xe1ff0051, 0x6253009d, 0x00000000}},  //   _kurp, _thóg_, rçoi,\n  { {0xdb180004, 0x09ac0055, 0x8f7b00a3, 0x00000000}},  //   tevõ, ক্ষা, יניק,\n  { {0x7e7c1fa8, 0x973c016c, 0x270e006b, 0x00000000}},  //   _murp, jaće, həng_,\n  { {0xa9260025, 0x973c016c, 0x7e7c0032, 0x00000000}},  //   _بعضه, daće, _lurp,\n  { {0x7bd80934, 0x25bf002b, 0x7e7c0253, 0x00000000}},  //   nevu, żul_, _ourp,\n  { {0x7e7c0093, 0x00000000, 0x00000000, 0x00000000}},  //   _nurp,   ,   ,\n  { {0x25a9022b, 0xd628012b, 0x09ac0044, 0x00000000}},  //   _udal_, _моје_, ক্রা,\n  { {0x7e7c002d, 0x64402656, 0xa01b0039, 0x00000000}},  // [6750] _aurp, émic, _utök,\n  { {0x2007000c, 0x7bd800b9, 0x74280025, 0x00000000}},  //   ðni_, jevu, _وكيف_,\n  { {0x443101f6, 0x7bd82657, 0x68e90b41, 0x00000000}},  //   miz_, devu, zved,\n  { {0x3ced00ab, 0xdb0301a2, 0x7c260006, 0x00000000}},  //   _prev_, rgnü, _įkra,\n  { {0xe0df0026, 0xddc90089, 0x00000000, 0x00000000}},  //   _usò_, _cieš,   ,\n  { {0x4431047f, 0x7bd82658, 0x69c90061, 0x00000000}},  //   niz_, gevu, wfee,\n  { {0x60d9005a, 0x7e7c002d, 0xb5fb0010, 0x00000000}},  //   şamı, _gurp, rmáj,\n  { {0xdce80036, 0x4431022b, 0x13e40044, 0x00000000}},  //   _śląs, hiz_, মায়,\n  { {0x69c90116, 0x44312659, 0x7bd80026, 0x00000000}},  //   rfee, kiz_, bevu,\n  { {0x87250242, 0x68e90030, 0x7bd80207, 0x00000000}},  //   змож, rved, cevu,\n  { {0x6c6a009c, 0x4431265a, 0xe9450123, 0x00000000}},  //   _اللہ_, diz_, _کرای,\n  { {0x3ebe0056, 0x00000000, 0x00000000, 0x00000000}},  //   _åtte_,   ,   ,\n  { {0x4431013f, 0x973c0091, 0x00000000, 0x00000000}},  //   fiz_, vaće,   ,\n  { {0x4431265b, 0x00000000, 0x00000000, 0x00000000}},  //   giz_,   ,   ,\n  { {0x366a003b, 0x999f002b, 0x973c0521, 0x00000000}},  //   _лако_, kluż_, taće,\n  { {0x05760445, 0x00000000, 0x00000000, 0x00000000}},  //   _عابد,   ,   ,\n  { {0x443101a3, 0x55bb009b, 0x21670407, 0x00000000}},  // [6760] biz_, _המפו, зити_,\n  { {0x7e7c00ab, 0xddc90027, 0x973c016c, 0x00000000}},  //   _purp, _rieš, saće,\n  { {0x7ae1000a, 0x00000000, 0x00000000, 0x00000000}},  //   _nslt,   ,   ,\n  { {0xddc9265c, 0x644e1b60, 0x7bc100f6, 0x00000000}},  //   _pieš, lobi, _aclu,\n  { {0x20170047, 0x9f4301aa, 0x00000000, 0x00000000}},  //   áció_, _lajè_,   ,\n  { {0x7e7c001e, 0xddc9010a, 0x61e6011f, 0x00000000}},  //   _turp, _vieš, _hakl,\n  { {0x644e0032, 0x62530023, 0x9cfe0044, 0x00000000}},  //   iobi, rçov, ্ছেন_,\n  { {0xddc9001e, 0x4431002d, 0xadb5007c, 0x00000000}},  //   _tieš, ziz_, _ощущ,\n  { {0x61e60127, 0x4431265d, 0x0c2600c0, 0x00000000}},  //   _makl, yiz_, _еман,\n  { {0x644e0107, 0xe1ff0011, 0x7bc10051, 0x00000000}},  //   jobi, _khóc_, _gclu,\n  { {0x61e611d1, 0x644e0cce, 0x200a0011, 0x00000000}},  //   _oakl, dobi, _mobi_,\n  { {0xcb13007b, 0x8afb00b6, 0xf76f0426, 0x00000000}},  //   _אלע_, _להבי, داً_,\n  { {0x443101aa, 0xa9c5007a, 0x2ca60058, 0x00000000}},  //   tiz_, _آزمو, nsod_,\n  { {0xb3470181, 0x68e20203, 0x644e005b, 0x00000000}},  //   _naçõ, _isod, gobi,\n  { {0x61e6011c, 0x4431011f, 0x268a0025, 0x00000000}},  //   _bakl, riz_, _اختي_,\n  { {0x44310497, 0x75480010, 0x69c201c3, 0x00000000}},  //   siz_, észé, _jcoe,\n  { {0x61e60119, 0x4431008e, 0x764f0036, 0x00000000}},  // [6770] _dakl, piz_, mocy,\n  { {0x764f1ee1, 0xdb1a00f6, 0x00000000, 0x00000000}},  //   locy, _actí,   ,\n  { {0x3ea70047, 0x200a265e, 0xe1ff0082, 0x00000000}},  //   ént_, _dobi_, _chóc_,\n  { {0x5d35026c, 0x9f4a00c4, 0x68e20016, 0x00000000}},  //   وفائ, _robô_, _osod,\n  { {0x200a22ae, 0x00000000, 0x00000000, 0x00000000}},  //   _fobi_,   ,   ,\n  { {0x200a0bd6, 0x764f0a88, 0x69c200fa, 0x00000000}},  //   _gobi_, hocy, _acoe,\n  { {0x69c20061, 0x61e6014a, 0xcb6600e3, 0x00000000}},  //   _bcoe, _yakl, маше_,\n  { {0x644e008e, 0x00000000, 0x00000000, 0x00000000}},  //   zobi,   ,   ,\n  { {0x68e20010, 0x320b0036, 0x629a0010, 0x00000000}},  //   _csod, _mocy_, átoz,\n  { {0xe630006b, 0x644e00fa, 0x7d1600ea, 0x00000000}},  //   _bəşə, xobi, øyse,\n  { {0x644e0107, 0xfb150025, 0x366a072b, 0x00000000}},  //   vobi, _تواج, жано_,\n  { {0xcb1200b6, 0x320b0036, 0xc915003b, 0x00000000}},  //   _שלא_, _nocy_, _одећ,\n  { {0x644e2645, 0x3a2f04a5, 0x61e6265f, 0x00000000}},  //   tobi, _imgp_, _rakl,\n  { {0xb4ce03d7, 0x61e6011f, 0xe45f00b0, 0x00000000}},  //   _रही_, _sakl, stön_,\n  { {0x61e60006, 0x644e05fd, 0x200a0036, 0x00000000}},  //   _pakl, robi, _robi_,\n  { {0x27e70359, 0x2d9f001f, 0x644e2660, 0x00000000}},  //   _hann_, _neue_, sobi,\n  { {0x27e7001f, 0x644e0036, 0x6283009d, 0x00000000}},  // [6780] _kann_, pobi, _énon,\n  { {0x25a001e5, 0x27e70173, 0x2ca60059, 0x00000000}},  //   _heil_, _jann_, vsod_,\n  { {0x27e72661, 0x61e6083a, 0x00000000, 0x00000000}},  //   _mann_, _takl,   ,\n  { {0x3eba2662, 0xa3c80164, 0x3ea70035, 0x00000000}},  //   rupt_, ोजक_, ânta_,\n  { {0x3cfa03d7, 0xa06a04b6, 0x25a00004, 0x00000000}},  //   ्हें_, _мама_, _meil_,\n  { {0xb5fb0a87, 0x2d9f0007, 0xa01b00f8, 0x00000000}},  //   rmái, _eeue_, _stöv,\n  { {0xa6e1000c, 0x25a000f4, 0x69db01a2, 0x00000000}},  //   óðle, _oeil_, feue,\n  { {0x25a0006c, 0xe1ff001d, 0xc7ce0011, 0x00000000}},  //   _neil_, _khóa_, _cống_,\n  { {0x27e72663, 0x00000000, 0x00000000, 0x00000000}},  //   _bann_,   ,   ,\n  { {0x3958001e, 0x00000000, 0x00000000, 0x00000000}},  //   ārs_,   ,   ,\n  { {0x27e7001f, 0x764f0a32, 0x5c3700a3, 0x00000000}},  //   _dann_, tocy, _קרבן_,\n  { {0xa01b0039, 0x6e220288, 0x6440009d, 0x00000000}},  //   _utöv, nhob, émin,\n  { {0x764f013e, 0x27e7021a, 0xd90f00a1, 0x00000000}},  //   rocy, _fann_, _نیٹ_,\n  { {0xe630005f, 0xe72f0014, 0x24800116, 0x00000000}},  //   _təşə, اصی_, _duim_,\n  { {0x45070055, 0x6adc02fb, 0x25a00292, 0x00000000}},  //   _লেখক_, _मनोर, _feil_,\n  { {0x69c02664, 0x25a005c6, 0x00000000, 0x00000000}},  //   ngme, _geil_,   ,\n  { {0x48bc0044, 0x3134132e, 0x27e72665, 0x00000000}},  // [6790] _অনুর, ветр, _yann_,\n  { {0x25a0095d, 0x00000000, 0x00000000, 0x00000000}},  //   _zeil_,   ,   ,\n  { {0xb2751deb, 0x6e230007, 0x533500e2, 0x00000000}},  //   _плош, ënbo, _чент,\n  { {0x660d00f8, 0x62531374, 0xf2d20049, 0x00000000}},  //   _joak, rços, _געט_,\n  { {0x2ca9002a, 0x69c000ab, 0x656b0045, 0x00000000}},  //   éad_, dgme, _ùghd,\n  { {0xc7ce001d, 0x2005010e, 0x69c001c3, 0x00000000}},  //   _sống_, _õli_, egme,\n  { {0x27e701aa, 0xdb030065, 0x69db010f, 0x00000000}},  //   _rann_, manë, teue,\n  { {0x3ebe0039, 0x660d01f3, 0x6e2201a2, 0x00000000}},  //   _åtta_, _noak, chob,\n  { {0xb4ce02d2, 0x2919143a, 0x973c1a84, 0x00000000}},  //   _रहे_, ása_, vaća,\n  { {0x24802666, 0x25a02667, 0xddc90027, 0x00000000}},  //   _ruim_, _seil_, _dieť,\n  { {0x98ab011f, 0x27e72668, 0x24800051, 0x00000000}},  //   ğlık_, _vann_, _suim_,\n  { {0xc7ce001d, 0x27e7010f, 0x98ab014a, 0x00000000}},  //   _uống_, _wann_, şlık_,\n  { {0x973c037e, 0x27e70263, 0xdb030065, 0x00000000}},  //   raća, _tann_, kanë,\n  { {0x25a0001f, 0x33d50cf2, 0x7d0400b0, 0x00000000}},  //   _weil_, кіст, äisi,\n  { {0x25a02669, 0x78a904bd, 0x973c012d, 0x00000000}},  //   _teil_, lsev, paća,\n  { {0x91e301bd, 0x79891091, 0x00000000, 0x00000000}},  //   лосе, ncew,   ,\n  { {0x78a90056, 0xdb010030, 0x888c0049, 0x00000000}},  // [67a0] nsev, _udlæ, ַראַ,\n  { {0x78a90052, 0xdb030023, 0x65640045, 0x00000000}},  //   isev, ganë, _izih,\n  { {0x2cbd00bb, 0xdb1a1c8d, 0x7c230048, 0x00000000}},  //   euwd_, _octá, dhnr,\n  { {0x444401a3, 0x645c02e1, 0x6fc20061, 0x00000000}},  //   _hj_, llri, _लावू,\n  { {0x2240266a, 0x98b80089, 0x644101dc, 0x00000000}},  //   mnik_, ārī_, čliv,\n  { {0x224001d9, 0x4444003b, 0x6e220061, 0x00000000}},  //   lnik_, _jj_, shob,\n  { {0x6e220051, 0x63a30004, 0x4444266b, 0x00000000}},  //   phob, _õnne, _mj_,\n  { {0x44440059, 0xfce60175, 0x22400036, 0x00000000}},  //   _lj_, _побо, nnik_,\n  { {0x1c46013b, 0xdd8f05f3, 0xd7f00025, 0x00000000}},  //   _знам, _طول_, لكة_,\n  { {0x2240266c, 0x645c0009, 0x3a3f2082, 0x00000000}},  //   hnik_, jlri, anup_,\n  { {0x2cb00006, 0x659500da, 0xdb0600b0, 0x00000000}},  //   žodį_, кану, ämäl,\n  { {0x444413a1, 0x5fc70061, 0xdb030023, 0x00000000}},  //   _aj_, _लाभल, zanë,\n  { {0xba290025, 0x4444010f, 0x00000000, 0x00000000}},  //   _تسلم_, _bj_,   ,\n  { {0x44440adb, 0xe45f000c, 0x6564016c, 0x00000000}},  //   _cj_, mtök_, _dzih,\n  { {0x444404bd, 0x2456009f, 0x81c50055, 0x00000000}},  //   _dj_, væmt_, _এসব_,\n  { {0x44440073, 0xb5fb0b33, 0x4423012d, 0x00000000}},  //   _ej_, gmát, shj_,\n  { {0x4444107b, 0x661d0023, 0x00000000, 0x00000000}},  // [67b0] _fj_, ërku,   ,\n  { {0x4444164d, 0x765d0039, 0xfd650082, 0x00000000}},  //   _gj_, llsy, _thuẫ,\n  { {0x224001d9, 0xdd910025, 0xdb030065, 0x00000000}},  //   bnik_, لوا_, ranë,\n  { {0x63a71457, 0x78a900d9, 0xfe700426, 0x00000000}},  //   lajn, ysev, مدن_,\n  { {0x61fd22b0, 0x44211f0f, 0x4444016b, 0x00000000}},  //   _insl, _klh_, _yj_,\n  { {0xa136007b, 0x61ed0010, 0x60cd09bd, 0x00000000}},  //   _יארק_, ldal, mtam,\n  { {0x60cd00b0, 0x44210300, 0x9f350088, 0x00000000}},  //   ltam, _mlh_, _реві,\n  { {0x32090e9e, 0x78a903b6, 0x63a70107, 0x00000000}},  //   njay_, tsev, hajn,\n  { {0x9f430224, 0x5c7500ed, 0x60cd01cb, 0x00000000}},  //   _mají_, _алат, ntam,\n  { {0x22400aa9, 0x60cd0181, 0x61ed266d, 0x00000000}},  //   znik_, itam, hdal,\n  { {0x444402d5, 0x63a70465, 0xb5fb01dc, 0x00000000}},  //   _rj_, dajn, klád,\n  { {0x61ed115b, 0x44440142, 0x19950088, 0x00000000}},  //   jdal, _sj_, _радя,\n  { {0x224001d9, 0x61ed0016, 0x8884007e, 0x00000000}},  //   vnik_, ddal, _бліж,\n  { {0x22400046, 0x61fd17db, 0x7bc3266e, 0x00000000}},  //   wnik_, _ansl, ngnu,\n  { {0x224000ee, 0x03a301e0, 0x44330048, 0x00000000}},  //   tnik_, рисо, _dmx_,\n  { {0xc24301f9, 0x61ed011c, 0xb5fb0285, 0x00000000}},  //   анск, gdal, umát,\n  { {0x44440119, 0x22400209, 0xa0a6007e, 0x00000000}},  // [67c0] _tj_, rnik_, тазд,\n  { {0x22400b54, 0xa01b266f, 0x63a70868, 0x00000000}},  //   snik_, _stör, cajn,\n  { {0x4438049a, 0x60cd2670, 0x2240016e, 0x00000000}},  //   mir_, atam, pnik_,\n  { {0x4438049d, 0x7c210538, 0x7e7b001a, 0x00000000}},  //   lir_, _allr, _ciup,\n  { {0x60cd16ca, 0x4438002a, 0x7e7b04be, 0x00000000}},  //   ctam, oir_, _diup,\n  { {0x44382671, 0x3e67006c, 0x1d07003b, 0x00000000}},  //   nir_, võte_, тељи_,\n  { {0xaa582672, 0xbea3003b, 0x7a3e0089, 0x00000000}},  //   нику_, _васк, līti,\n  { {0x443809d4, 0x63a709fc, 0x26140181, 0x00000000}},  //   hir_, zajn, _mãos_,\n  { {0xfce3222e, 0x48c20055, 0x7a3e0089, 0x00000000}},  //   _кото, ্ট্র, nīti,\n  { {0xd7f70783, 0x61ed0059, 0xb5fb0010, 0x00000000}},  //   вую_, zdal, ymás,\n  { {0x44382673, 0x61ed038c, 0xe45f000c, 0x00000000}},  //   dir_, ydal, stök_,\n  { {0x7c380377, 0x7e690023, 0x44380048, 0x00000000}},  //   livr, _xhep, eir_,\n  { {0x4438000c, 0x44210022, 0xdb030161, 0x00000000}},  //   fir_, _plh_, vané,\n  { {0x44382674, 0x9f470428, 0x7a3e0089, 0x00000000}},  //   gir_, žné_, dīti,\n  { {0x7bc801e2, 0xd8380087, 0x682400f6, 0x00000000}},  //   _mcdu, mič_, _còde,\n  { {0x60cd0dc9, 0xd8380059, 0x44380051, 0x00000000}},  //   ttam, lič_, air_,\n  { {0x443802e2, 0x61ed2675, 0xe7cf006e, 0x00000000}},  // [67d0] bir_, rdal, त्वप,\n  { {0x60cd0149, 0x44380845, 0xd8380235, 0x00000000}},  //   rtam, cir_, nič_,\n  { {0x60cd0ac2, 0xd371007a, 0x64551b45, 0x00000000}},  //   stam, _دهد_, mozi,\n  { {0x64550209, 0x60cd000d, 0x661d02e7, 0x00000000}},  //   lozi, ptam, nksk,\n  { {0x91ba034e, 0xd8380059, 0x7a3e0089, 0x00000000}},  //   _אמרי, kič_, cīti,\n  { {0xcb6900ed, 0xd8380059, 0xbfb8007a, 0x00000000}},  //   нале_, jič_, _لطفا_,\n  { {0x49930014, 0x62850142, 0x7bc32676, 0x00000000}},  //   لیار, _juho, rgnu,\n  { {0x44381812, 0x3eda0049, 0x62852677, 0x00000000}},  //   zir_, _אַמא, _muho,\n  { {0x4438005f, 0xe1ff001d, 0x60120030, 0x00000000}},  //   yir_, _nhóm_, _kæmp,\n  { {0x480501e1, 0x63a50027, 0xd8380059, 0x00000000}},  //   упов, _nehn, gič_,\n  { {0x44380489, 0x645511b7, 0x7a3e0089, 0x00000000}},  //   vir_, dozi, zīti,\n  { {0x4438018e, 0x20110107, 0xdb01009d, 0x00000000}},  //   wir_, _lozi_, _relè,\n  { {0x44380fa2, 0xdb0101aa, 0xd8380059, 0x00000000}},  //   tir_, _selè, bič_,\n  { {0x6455064c, 0xd91a007b, 0x6285011c, 0x00000000}},  //   gozi, _רוסל, _buho,\n  { {0x44380359, 0xdb012678, 0x232a0184, 0x00000000}},  //   rir_, _belé, хови_,\n  { {0xe7cf0183, 0x62850213, 0xdb0101ca, 0x00000000}},  //   त्रप, _duho, _celé,\n  { {0x6455001a, 0x4127005e, 0x00000000, 0x00000000}},  // [67e0] bozi, гото_,   ,\n  { {0xdb0104bd, 0x7a3e0089, 0x44380350, 0x00000000}},  //   _telè, rīti, qir_,\n  { {0xdb010010, 0x62850009, 0x2d800089, 0x00000000}},  //   _felé, _guho, žiem_,\n  { {0x1756007b, 0xe1ff002a, 0x52d7007b, 0x00000000}},  //   אסער_, _gnó_, _גוטע_,\n  { {0x7a3e0089, 0x00000000, 0x00000000, 0x00000000}},  //   nūte,   ,   ,\n  { {0x3f9a0123, 0x00000000, 0x00000000, 0x00000000}},  //   _سپرد_,   ,   ,\n  { {0x81e70055, 0xd8380465, 0xdddc0035, 0x00000000}},  //   পার_, vič_, _curţ,\n  { {0x611a001e, 0x64550020, 0x799b0058, 0x00000000}},  //   _tālā, zozi, gbuw,\n  { {0x02e102d2, 0xd83800ca, 0x59d30025, 0x00000000}},  //   _पन्न, tič_, صغير,\n  { {0x6a650d28, 0x00000000, 0x00000000, 0x00000000}},  //   rófa,   ,   ,\n  { {0xd8380235, 0xeb97007c, 0x8c1b0104, 0x00000000}},  //   rič_, _сих_, _רובי,\n  { {0x98a601f9, 0x63a5048e, 0x628518fb, 0x00000000}},  //   _биде, _sehn, _ruho,\n  { {0x661d01c9, 0x64550232, 0xd8380c8a, 0x00000000}},  //   rksk, tozi, pič_,\n  { {0x3cec0164, 0xa7fc1d83, 0x00000000, 0x00000000}},  //   _आईने_, rmıs,   ,\n  { {0x443f0091, 0x2bd60061, 0xa7fc026d, 0x00000000}},  //   đu_, ढ्या, rlıd,\n  { {0x855700a1, 0x64551a28, 0x00000000, 0x00000000}},  //   _میجر_, sozi,   ,\n  { {0x64550704, 0xbf1d007d, 0x2fca18dc, 0x00000000}},  // [67f0] pozi, पन्न_, _bcbg_,\n  { {0x27ee000c, 0x628518ec, 0xa7fc006b, 0x00000000}},  //   _jafn_, _tuho, qlıd,\n  { {0xdb010845, 0x20110213, 0xdb1800f8, 0x00000000}},  //   _telé, _vozi_, ngvä,\n  { {0x5fc70061, 0x6da40426, 0x798200e7, 0x00000000}},  //   _लावल, مممم, _ngow,\n  { {0xfaf80580, 0x201101c3, 0x00000000, 0x00000000}},  //   _arī_, _tozi_,   ,\n  { {0x27ee009f, 0x3dc901d5, 0x2fc500ea, 0x00000000}},  //   _nafn_, żaw_, _ølg_,\n  { {0x1b490265, 0x44fd0044, 0x00000000, 0x00000000}},  //   ъзки_, ুনিক_,   ,\n  { {0x61ef0145, 0x78bb092d, 0x00000000, 0x00000000}},  //   _jacl, truv,   ,\n  { {0xdb0315e3, 0x2d9d21a4, 0xcbc70076, 0x00000000}},  //   maní, mbwe_, _مزاي,\n  { {0x1bab00a1, 0x66db00b0, 0x5c7402dc, 0x00000000}},  //   _سائٹ_, _näkö, _глут,\n  { {0xbb840054, 0x9f5e0011, 0x270f0061, 0x00000000}},  //   _المي, _ôtô_, ाहेर_,\n  { {0xdddc2679, 0x6a65004a, 0x7afc13f5, 0x00000000}},  //   _kurš, mófo, _árta,\n  { {0xe0c00055, 0x5967005e, 0x5a0a0049, 0x00000000}},  //   _উন্ন, _съжа, _בלײַ,\n  { {0xe7870594, 0xdddc0087, 0x00000000, 0x00000000}},  //   _судо, _murš,   ,\n  { {0x6a650325, 0x00000000, 0x00000000, 0x00000000}},  //   nófo,   ,   ,\n  { {0xc486012b, 0x2fd80022, 0x00000000, 0x00000000}},  //   _клик, _sbrg_,   ,\n\n  { {0xddc90089, 0xdb03267a, 0x69d900e7, 0x00000000}},  // [6800] _biež, daní, _mbwe,\n  { {0xcef6003b, 0x9f58000c, 0xb5fb0161, 0x00000000}},  //   ичењ, _borð_, plác,\n  { {0x0d860888, 0x61ef267b, 0x69d90009, 0x00000000}},  //   ален, _facl, _obwe,\n  { {0x764601e5, 0x00000000, 0x00000000, 0x00000000}},  //   nnky,   ,   ,\n  { {0x9d240055, 0x61e40cc7, 0xdb0a04ce, 0x00000000}},  //   বপ্ন_, meil, ngfö,\n  { {0x61e4089e, 0x69d9010f, 0x3dc60133, 0x00000000}},  //   leil, _abwe, sgow_,\n  { {0x7f432308, 0xdb030129, 0x7aed0036, 0x00000000}},  //   _держ, baní, łatn,\n  { {0x78a20263, 0x61e400b0, 0xd90d0014, 0x00000000}},  //   _pwov, neil, کیه_,\n  { {0x973c0091, 0x2d840058, 0x60c4267c, 0x00000000}},  //   maći, _igme_, nuim,\n  { {0x61e4021e, 0x7d280279, 0x69d90045, 0x00000000}},  //   heil, ırsı, _ebwe,\n  { {0x09e60d03, 0x442a002a, 0x61e4021e, 0x00000000}},  //   _воен, dhb_, keil,\n  { {0x7e6200b0, 0x00000000, 0x00000000, 0x00000000}},  //   nlop,   ,   ,\n  { {0xb8940054, 0x61e4267d, 0x61ef009d, 0x00000000}},  //   _التع, deil, _racl,\n  { {0xb4d702d2, 0x6fc20061, 0x32020bca, 0x00000000}},  //   _सही_, _लागू, _anky_,\n  { {0xf1a700d7, 0x61e4018e, 0x3a260007, 0x00000000}},  //   иран, feil, _klop_,\n  { {0xe1ff0011, 0x61e40678, 0xd5e40082, 0x00000000}},  //   _khói_, geil, _thí,\n  { {0x60c4029a, 0x60cf001c, 0x7bda008e, 0x00000000}},  // [6810] guim, _qqcm, _obtu,\n  { {0x25a90c78, 0x9f4701c8, 0x3a2600d4, 0x00000000}},  //   _heal_, žní_, _llop_,\n  { {0x6447037e, 0xa1870147, 0xdb010030, 0x00000000}},  //   mnji, _выгл, _udlø,\n  { {0x7e621c83, 0x2bc90061, 0x60c4004a, 0x00000000}},  //   glop, _राहा, buim,\n  { {0x7afa014a, 0x9ce708fc, 0xdb03267e, 0x00000000}},  //   _artt, рцел, raní,\n  { {0x1ee7026c, 0x25a90285, 0xdb0315e3, 0x00000000}},  //   _پوری_, _leal_, saní,\n  { {0x601300b9, 0x99840006, 0x7e62267f, 0x00000000}},  //   _výmě, jimų_, blop,\n  { {0x09f90025, 0x39e9017f, 0x99840006, 0x00000000}},  //   افظة_, удио_, dimų_,\n  { {0x64470bf8, 0xa5bb0051, 0xe1ff0082, 0x00000000}},  //   knji, chói, _chói_,\n  { {0x08d4007e, 0x998d0027, 0x61e42680, 0x00000000}},  //   іцыя, dieť_, zeil,\n  { {0x64470de0, 0x25a90048, 0x2003012d, 0x00000000}},  //   dnji, _beal_, _mnji_,\n  { {0x08f904e8, 0x69d90117, 0x3a2600f6, 0x00000000}},  //   _مرتب_, _ubwe, _glop_,\n  { {0x61e400b5, 0x25a900ab, 0x7a7a0049, 0x00000000}},  //   veil, _deal_, _ערנס,\n  { {0x61e4001f, 0x24890065, 0x69c9046a, 0x00000000}},  //   weil, _duam_, lgee,\n  { {0x61e42681, 0x68e9018e, 0x232701bd, 0x00000000}},  //   teil, lwed, бори_,\n  { {0x69c900b5, 0x60c400b0, 0x20030022, 0x00000000}},  //   ngee, tuim, _anji_,\n  { {0x61e4089e, 0x7e620263, 0x2489006b, 0x00000000}},  // [6820] reil, vlop, _guam_,\n  { {0x61e4002d, 0x60c40250, 0x26c500fa, 0x00000000}},  //   seil, ruim, oulo_,\n  { {0x443a0066, 0xd00f01b7, 0x68e9010f, 0x00000000}},  //   _imp_, علم_, hwed,\n  { {0xa5bb0051, 0x443a0058, 0xd5ed0082, 0x00000000}},  //   thói, _hmp_, _phả,\n  { {0x27e50a5d, 0x60c412b2, 0x629c0292, 0x00000000}},  //   keln_, quim, lpro,\n  { {0x26c5006a, 0x68e90016, 0x7e6200ca, 0x00000000}},  //   kulo_, dwed, slop,\n  { {0x629c1103, 0x3a2607b9, 0x7e6200f8, 0x00000000}},  //   npro, _plop_, plop,\n  { {0x26c52682, 0xae0c02f4, 0x64470e00, 0x00000000}},  //   dulo_, _सचिन_, znji,\n  { {0x25a90038, 0x270e005f, 0xdca31662, 0x00000000}},  //   _real_, məni_, _нати,\n  { {0x27e52683, 0x629c0056, 0x66040010, 0x00000000}},  //   geln_, kpro, _anik,\n  { {0x26c52684, 0x810402fb, 0xe45f145c, 0x00000000}},  //   gulo_, रमुख_, ktör_,\n  { {0x99840006, 0xe1ff0011, 0x6e2200ea, 0x00000000}},  //   rimų_, _thói_, nkob,\n  { {0x27e50002, 0x629c046a, 0xb8d30014, 0x00000000}},  //   beln_, epro, _فتوش,\n  { {0x443a0061, 0x629c037f, 0x26c50006, 0x00000000}},  //   _cmp_, fpro, bulo_,\n  { {0x752f0046, 0x26c5201f, 0x25a90541, 0x00000000}},  //   szcz, culo_, _teal_,\n  { {0x6447037e, 0x9f5100c4, 0x06ae0044, 0x00000000}},  //   snji, _fazê_, _কমপি,\n  { {0x30150920, 0x7c3a1aef, 0x764d0020, 0x00000000}},  // [6830] одар, _omtr, _ijay,\n  { {0x443a0145, 0x66040036, 0x6440009d, 0x00000000}},  //   _gmp_, _znik, émit,\n  { {0xdb012685, 0x629c0061, 0x4f6b0216, 0x00000000}},  //   _pelí, cpro, ушам_,\n  { {0x7c28141a, 0x68e90016, 0x6e2200ea, 0x00000000}},  //   _aldr, ywed, gkob,\n  { {0x067c0049, 0x22490010, 0x1d090242, 0x00000000}},  //   אנאל, mnak_, рели_,\n  { {0x22490047, 0x27e50210, 0xdb0109af, 0x00000000}},  //   lnak_, xeln_, _relâ,\n  { {0x69c900b5, 0x27e50210, 0x22490032, 0x00000000}},  //   tgee, veln_, onak_,\n  { {0x22490047, 0x7c280d3e, 0x68e9010f, 0x00000000}},  //   nnak_, _eldr, twed,\n  { {0x69c92686, 0x27e50210, 0x2249028d, 0x00000000}},  //   rgee, teln_, inak_,\n  { {0x26c50325, 0x6e291dbe, 0x660401d6, 0x00000000}},  //   tulo_, _hleb, _snik,\n  { {0x22492687, 0x6e29010f, 0x68e900bb, 0x00000000}},  //   knak_, _kleb, swed,\n  { {0x443a023a, 0xb5fb2688, 0x27e52689, 0x00000000}},  //   _smp_, slán, seln_,\n  { {0x2249268a, 0x629c0dd7, 0x9f510065, 0x00000000}},  //   dnak_, wpro, _bazë_,\n  { {0x4add0164, 0x2249002d, 0x26c5011c, 0x00000000}},  //   _महाव, enak_, pulo_,\n  { {0x366a01b3, 0x63ae01d9, 0x6e3b0009, 0x00000000}},  //   _како_, rabn, _omub,\n  { {0x6604268b, 0x9fa3009f, 0x22490010, 0x00000000}},  //   _unik, _síðu_, gnak_,\n  { {0x443a0857, 0x7bdc000c, 0x291f0020, 0x00000000}},  // [6840] _tmp_, _örug, nyua_,\n  { {0x629c01d5, 0x6e2913a1, 0x2249023a, 0x00000000}},  //   ppro, _aleb, anak_,\n  { {0x6e2200ea, 0x270e006b, 0x9f51000a, 0x00000000}},  //   tkob, təni_, _jazè_,\n  { {0xcbc60055, 0x6e29268c, 0xdd9001af, 0x00000000}},  //   _এসেছ, _cleb, روت_,\n  { {0x6e22023a, 0x9f5101aa, 0x9f470142, 0x00000000}},  //   rkob, _lazè_, ľná_,\n  { {0x645c0006, 0x9f47004f, 0x628300f4, 0x00000000}},  //   nori, žná_, _énor,\n  { {0xdb030010, 0x1b1d0044, 0x6e29268d, 0x00000000}},  //   taná, _ভেবে_, _fleb,\n  { {0x2018022b, 0x645c0d97, 0xa2cb0309, 0x00000000}},  //   _hori_, hori, तंत्,\n  { {0x201801c5, 0x60d6268e, 0x67d400e2, 0x00000000}},  //   _kori_, ntym, попу,\n  { {0x22490010, 0x60d60006, 0x4734007c, 0x00000000}},  //   znak_, itym, знос,\n  { {0x645c0c79, 0x2018090a, 0x2249268f, 0x00000000}},  //   dori, _mori_, ynak_,\n  { {0x201801a3, 0x65640009, 0xe5a400e2, 0x00000000}},  //   _lori_, _byih, миџи,\n  { {0x645c2690, 0x61f60016, 0x938b005e, 0x00000000}},  //   fori, ddyl, исва_,\n  { {0x2018010a, 0x9faf0279, 0xd61b00a1, 0x00000000}},  //   _nori_, _işçi_, اتھا_,\n  { {0x22490047, 0xb5fb0010, 0x9294007e, 0x00000000}},  //   tnak_, llám, дасц,\n  { {0x786f0737, 0xdb080173, 0x6fd80061, 0x00000000}},  //   røve, _vedè, न्सू,\n  { {0x645c1a7e, 0x22490010, 0x765d2691, 0x00000000}},  // [6850] bori, rnak_, mosy,\n  { {0x22490ac3, 0x20180197, 0x765d2081, 0x00000000}},  //   snak_, _cori_, losy,\n  { {0x161f0164, 0x2018001a, 0xdb03006b, 0x00000000}},  //   _पवार_, _dori_, manç,\n  { {0xdb030181, 0x765d00f8, 0xfe7003ec, 0x00000000}},  //   lanç, nosy, ندن_,\n  { {0xeb990517, 0x20180197, 0xd9c20044, 0x00000000}},  //   бил_, _fori_, ্জাম,\n  { {0x20180e00, 0xdb030a0a, 0x9f430027, 0x00000000}},  //   _gori_, nanç, _majú_,\n  { {0xfb8500a1, 0x68e2008e, 0x765d0fa8, 0x00000000}},  //   _ہدای, _apod, kosy,\n  { {0x6e3b1bf2, 0x290d002d, 0x20180035, 0x00000000}},  //   _umub, txea_, _zori_,\n  { {0x645c2692, 0xa3dc007d, 0x648b0066, 0x00000000}},  //   yori, ण्ड_, _jżid,\n  { {0x645c0032, 0x68e2004a, 0xdb0306c0, 0x00000000}},  //   xori, _dpod, janç,\n  { {0xdb030181, 0x765d005b, 0xb5fb0010, 0x00000000}},  //   danç, fosy, plál,\n  { {0x765d2693, 0x645c2694, 0x60d600b0, 0x00000000}},  //   gosy, wori, ytym,\n  { {0x645c2695, 0x2bd202fb, 0x280600b9, 0x00000000}},  //   tori, _सामा, ávní_,\n  { {0x5fc7001c, 0xa7fc038c, 0xdb0300c4, 0x00000000}},  //   _लागल, nlıl, ganç,\n  { {0x765d00e0, 0x232700ed, 0x32191163, 0x00000000}},  //   bosy, пори_, _bosy_,\n  { {0x60d600b0, 0x239700b9, 0x3219062a, 0x00000000}},  //   ttym, tějí_, _cosy_,\n  { {0x645c0142, 0x20182696, 0xd259007e, 0x00000000}},  // [6860] pori, _pori_, ццё_,\n  { {0xdb032697, 0x60d60639, 0x645c006b, 0x00000000}},  //   canç, rtym, qori,\n  { {0x60d60ecb, 0x20182698, 0xdfcf0076, 0x00000000}},  //   stym, _vori_, ايم_,\n  { {0xdd8f0076, 0x201800e0, 0x00000000, 0x00000000}},  //   هوم_, _wori_,   ,\n  { {0x20180103, 0x62860058, 0xdb010142, 0x00000000}},  //   _tori_, _iiko, _relá,\n  { {0x28c20061, 0x62860052, 0xdb032699, 0x00000000}},  //   _शिबि, _hiko, kanä,\n  { {0x68e201d9, 0x6286000b, 0xada600e3, 0x00000000}},  //   _spod, _kiko, _навл,\n  { {0xa9c301fb, 0x8cc403d7, 0x6286269a, 0x00000000}},  //   нськ, _रिपो, _jiko,\n  { {0x62861483, 0xdb01008e, 0x68fb0045, 0x00000000}},  //   _miko, _velá, gvud,\n  { {0x62861a7e, 0x60c4002a, 0x2cb700b9, 0x00000000}},  //   _liko, irim, ředí_,\n  { {0xfaa30500, 0xe1ff0051, 0x628600b0, 0x00000000}},  //   _захо, _mhór_, _oiko,\n  { {0x62860119, 0x60c4008d, 0xae020316, 0x00000000}},  //   _niko, krim, _रोमन_,\n  { {0xdb031052, 0x32191ff6, 0x765d013f, 0x00000000}},  //   tanç, _rosy_, rosy,\n  { {0x628600b0, 0x765d224b, 0x60c4269b, 0x00000000}},  //   _aiko, sosy, drim,\n  { {0xdb03269c, 0x6286002d, 0x60c40004, 0x00000000}},  //   ranç, _biko, erim,\n  { {0x6286269d, 0x326417b9, 0x80e10044, 0x00000000}},  //   _ciko, етув, নিস্,\n  { {0x60c40065, 0xdff501fc, 0xa6ae0044, 0x00000000}},  // [6870] grim, мпањ, _কমিট,\n  { {0x44ef269e, 0xd7f8001a, 0x6a6510ef, 0x00000000}},  //   _iż_, ndă_, rófi,\n  { {0x7d00269f, 0x60c40197, 0x6a650b33, 0x00000000}},  //   _arms, arim, sófi,\n  { {0x628601dd, 0x6a650325, 0x00000000, 0x00000000}},  //   _giko, pófi,   ,\n  { {0x60c40412, 0xa7fc026d, 0x00000000, 0x00000000}},  //   crim, tlıl,   ,\n  { {0x62860a65, 0x6f010181, 0xdb060035, 0x00000000}},  //   _ziko, _álco, ămîn,\n  { {0xa7fc005a, 0x6f6401ab, 0x62860045, 0x00000000}},  //   rlıl, _звёз, _yiko,\n  { {0x09e00055, 0x7d000009, 0x68fb006c, 0x00000000}},  //   _মোবা, _frms, tvud,\n  { {0xa7fc014a, 0x7d1600ea, 0x00000000, 0x00000000}},  //   lmıy, øyst,   ,\n  { {0xb8d502d2, 0xa5bb009f, 0x8afc0046, 0x00000000}},  //   _जब_, skól, _częs,\n  { {0x44ef0036, 0x2bd20204, 0xa7fc014a, 0x00000000}},  //   _aż_, _साता, nmıy,\n  { {0x1b1608b7, 0xd7f8001a, 0x60c4131c, 0x00000000}},  //   _থেকে_, adă_, yrim,\n  { {0x628626a0, 0xb8f20044, 0xdb010276, 0x00000000}},  //   _riko, _হৈ_, _belç,\n  { {0x628601aa, 0x60c4014a, 0xa7fc0095, 0x00000000}},  //   _siko, vrim, kmıy,\n  { {0x6286026a, 0x44ef002b, 0x232a0143, 0x00000000}},  //   _piko, _eż_, цови_,\n  { {0x7aed0036, 0x00000000, 0x00000000, 0x00000000}},  //   łatw,   ,   ,\n  { {0x21670bbd, 0x61430888, 0x75460088, 0x00000000}},  // [6880] дити_, вета, _іноз,\n  { {0x60c426a1, 0x2bd20164, 0x443100d2, 0x00000000}},  //   rrim, _साधा, chz_,\n  { {0xdb0a1505, 0x1b1d0044, 0x00000000, 0x00000000}},  //   tafí, _ভেসে_,   ,\n  { {0x60c4049a, 0xf9870879, 0xd5ed0011, 0x00000000}},  //   prim, _لب_, _khá,\n  { {0xa7fc005d, 0xdb0a008e, 0x1fb6025f, 0x00000000}},  //   rmız, rafí, _освр,\n  { {0xdb0a008e, 0xdd990173, 0x00000000, 0x00000000}},  //   safí, _efň_,   ,\n  { {0x15ee013d, 0xb5fb0b33, 0x644e0c4c, 0x00000000}},  //   ज़ार_, noác, inbi,\n  { {0xf2d300b6, 0x80e10044, 0x7d1600ea, 0x00000000}},  //   דעה_, নির্, øyss,\n  { {0x26c50e32, 0x8d6326a2, 0x81e00044, 0x00000000}},  //   erlo_, _авте, _দফা_,\n  { {0xdb010002, 0x629e0091, 0xdca301ee, 0x00000000}},  //   _belä, _otpo, _рафи,\n  { {0xb5fb0a87, 0xd7f8001a, 0x45d50216, 0x00000000}},  //   llái, rdă_, нонс,\n  { {0xa5f90057, 0xa92624ab, 0xdb0126a3, 0x00000000}},  //   чему_, _одел, _selç,\n  { {0x26c50e32, 0xdd31006b, 0x09d70044, 0x00000000}},  //   arlo_, _məşh, _দোকা,\n  { {0xe9470167, 0x69d50010, 0x7d0400b0, 0x00000000}},  //   _ترمی, őzet, äisy,\n  { {0xe7f30061, 0xb5fb0051, 0x98a30006, 0x00000000}},  //   _असता_, hlái, ąją_,\n  { {0x9099005e, 0xa7fc014a, 0x644e00bb, 0x00000000}},  //   зват_, klık, anbi,\n  { {0x26cc0211, 0x682d0051, 0x2284091b, 0x00000000}},  // [6890] ludo_, _húda, тург,\n  { {0xe3c60055, 0x44270011, 0xa3d60309, 0x00000000}},  //   শ্বব, _ôn_, _हाय_,\n  { {0x26cc0211, 0xd2510167, 0xfd100014, 0x00000000}},  //   nudo_, _مند_, یجه_,\n  { {0x63b50091, 0xb425009e, 0x00000000, 0x00000000}},  //   lazn, _آٹھو,   ,\n  { {0x343800a2, 0xeb990534, 0x61ed0048, 0x00000000}},  //   _رسید_, пил_, meal,\n  { {0xeb990827, 0x60cd00e7, 0xdb03000c, 0x00000000}},  //   чик_, muam, manú,\n  { {0x60cd00b0, 0x26cc04f3, 0x00000000, 0x00000000}},  //   luam, judo_,   ,\n  { {0x61ed0122, 0x00000000, 0x00000000, 0x00000000}},  //   neal,   ,   ,\n  { {0x63b50428, 0x60cd0555, 0xd825004d, 0x00000000}},  //   kazn, nuam, едпи,\n  { {0x63b50305, 0x61ed0ba2, 0x699f007d, 0x00000000}},  //   jazn, heal, _ग्री,\n  { {0x366a005e, 0x61ed2420, 0xadc30082, 0x00000000}},  //   зано_, keal, _hoằn,\n  { {0x60cd26a4, 0xd5ed0082, 0x00000000, 0x00000000}},  //   kuam, _phá,   ,\n  { {0x6faf0061, 0x68240173, 0x00000000, 0x00000000}},  //   टरां, _nòdw,   ,\n  { {0x26cc00ca, 0x26c50618, 0xa922000c, 0x00000000}},  //   budo_, prlo_, _óþar,\n  { {0x91e609da, 0x67d200ed, 0x26cc0b33, 0x00000000}},  //   нове, _соју, cudo_,\n  { {0x61ed0e57, 0xd5ed0082, 0x68240173, 0x00000000}},  //   geal, _thá, _bòdw,\n  { {0x60cd197d, 0x63b50091, 0x2bd2007d, 0x00000000}},  // [68a0] guam, bazn, सलमा,\n  { {0x3c2b0637, 0x25dc006e, 0x682400f6, 0x00000000}},  //   _søvn_, ग्री_, _pòdi,\n  { {0xdb08027b, 0xf09f01bc, 0x2bc90164, 0x00000000}},  //   _pedí, _età_, _राजा,\n  { {0x76460a34, 0xe29b009b, 0x61ed26a5, 0x00000000}},  //   niky, _משטר, ceal,\n  { {0x8c4600c0, 0xc3c90167, 0x60cd0026, 0x00000000}},  //   неде, _عظیم_, cuam,\n  { {0xa7fc014a, 0x09c80061, 0x88bd0044, 0x00000000}},  //   rlık, ळल्य, _অহংক,\n  { {0xb5fb0048, 0x00000000, 0x00000000, 0x00000000}},  //   slái,   ,   ,\n  { {0x998d0036, 0x00000000, 0x00000000, 0x00000000}},  //   cież_,   ,   ,\n  { {0x290226a6, 0x6824000a, 0x00000000, 0x00000000}},  //   íka_, _mòdv,   ,\n  { {0x26cc0181, 0x81c90055, 0xdb06001a, 0x00000000}},  //   tudo_, ল্প_, ămân,\n  { {0x63b500b9, 0x28c2013d, 0x00000000, 0x00000000}},  //   vazn, _शिवि,   ,\n  { {0x26c20119, 0x0ae90025, 0x3e580173, 0x00000000}},  //   čko_, _تركي_, bčte_,\n  { {0x61ed00ab, 0x28f8007c, 0x7a3e0006, 0x00000000}},  //   veal, _цель_, jūti,\n  { {0x389b0097, 0x7e6200bb, 0xaad4013d, 0x00000000}},  //   _ציונ, hoop, _धमाक,\n  { {0x63b50161, 0x61ed0035, 0x7e6200bb, 0x00000000}},  //   razn, teal, koop,\n  { {0x60cd027b, 0xfd26001d, 0xa3d602d2, 0x00000000}},  //   tuam, _đình_, _हाथ_,\n  { {0x61ed002d, 0x660d0020, 0x865c00b6, 0x00000000}},  // [68b0] real, _inak, _מדהי,\n  { {0x61ed10fb, 0xc05801e1, 0x60cd26a7, 0x00000000}},  //   seal, ніх_, ruam,\n  { {0xa3d6001c, 0x644701d5, 0x61ed26a8, 0x00000000}},  //   _हात_, miji, peal,\n  { {0x644701d5, 0x09e00044, 0x7a3e008f, 0x00000000}},  //   liji, _মোসা, būti,\n  { {0x60cd0026, 0x660d00e7, 0xdb0300ea, 0x00000000}},  //   quam, _mnak, lanø,\n  { {0x64470f68, 0xb5fb00c4, 0xcb6900e2, 0x00000000}},  //   niji, cláv, мале_,\n  { {0x660d0119, 0x00000000, 0x00000000, 0x00000000}},  //   _onak,   ,   ,\n  { {0x68240129, 0x660d0dfc, 0x64470258, 0x00000000}},  //   _mòdu, _nnak, hiji,\n  { {0x09e00055, 0x64470020, 0x0ec90061, 0x00000000}},  //   _মোহা, kiji, ांकड,\n  { {0x660d0518, 0x64470020, 0x7c2a01a2, 0x00000000}},  //   _anak, jiji, ckfr,\n  { {0xcf9200a0, 0x81c90044, 0x682400f6, 0x00000000}},  //   יטי_, ল্য_, _nòdu,\n  { {0xeab00076, 0xddc2050f, 0x8be60044, 0x00000000}},  //   _طعم_, ološ, _গোপন_,\n  { {0x9f58008d, 0x76460052, 0x00000000, 0x00000000}},  //   _parë_, riky,   ,\n  { {0x660d26a9, 0x64a3007e, 0x2a6d0066, 0x00000000}},  //   _enak, рара, lleb_,\n  { {0xc7d600b3, 0xfbd2009b, 0xb3d30061, 0x00000000}},  //   _יוסי_, יתם_, _तारख,\n  { {0x05b60061, 0x29000006, 0xdb080142, 0x00000000}},  //   _अजिब, _šiai_, _jedá,\n  { {0x7bc10119, 0x6447097f, 0x76440009, 0x00000000}},  // [68c0] _odlu, biji, _imiy,\n  { {0x6447016c, 0x9f58008e, 0x70530025, 0x00000000}},  //   ciji, _haré_, لنقا,\n  { {0x444408ba, 0x00000000, 0x00000000, 0x00000000}},  //   _im_,   ,   ,\n  { {0x44440091, 0x471a0049, 0x78bb01c2, 0x00000000}},  //   _hm_, וועג, ksuv,\n  { {0x7e620cfc, 0x9986016c, 0x9f43008e, 0x00000000}},  //   roop, _ološ_, _bajó_,\n  { {0x4444006c, 0x9f430173, 0x8fa301ab, 0x00000000}},  //   _jm_, _objè_, _варе,\n  { {0x7c2a000c, 0xdddc0066, 0x99d60a4f, 0x00000000}},  //   rkfr, _kurż, نتظا,\n  { {0x64470066, 0xc986017f, 0xda09007d, 0x00000000}},  //   ziji, купи, वागत_,\n  { {0x8e550088, 0x00000000, 0x00000000, 0x00000000}},  //   _стрі,   ,   ,\n  { {0x6e200219, 0x660d01e3, 0x76440f65, 0x00000000}},  //   _homb, _snak, _amiy,\n  { {0x6e20008d, 0x2a6d26aa, 0x64470091, 0x00000000}},  //   _komb, bleb_, viji,\n  { {0x444426ab, 0x2911002a, 0x6e2004be, 0x00000000}},  //   _am_, ónaí_, _jomb,\n  { {0x444426ac, 0xdd110180, 0xe1f3025a, 0x00000000}},  //   _bm_, _müşa, یسر_,\n  { {0x6e2026ad, 0x2a64062a, 0xa5bb0036, 0x00000000}},  //   _lomb, lomb_, yków,\n  { {0x644701d5, 0x44440129, 0x6e200343, 0x00000000}},  //   riji, _dm_, _oomb,\n  { {0x444426ae, 0x6e2026af, 0x6447002b, 0x00000000}},  //   _em_, _nomb, siji,\n  { {0x6447002b, 0x00000000, 0x00000000, 0x00000000}},  // [68d0] piji,   ,   ,\n  { {0x2ca6103f, 0x7d020107, 0x26de0197, 0x00000000}},  //   dpod_, dvos, otto_,\n  { {0x42550123, 0xdd910025, 0x26de0315, 0x00000000}},  //   _مندر, موا_, ntto_,\n  { {0x13b80055, 0x44211449, 0x444418d5, 0x00000000}},  //   _জায়, _hoh_, _zm_,\n  { {0x4444018e, 0x6e200687, 0x5187025f, 0x00000000}},  //   _ym_, _domb, _јуна,\n  { {0x61fd0faa, 0x44210007, 0x27fc02cc, 0x00000000}},  //   _hasl, _joh_, _navn_,\n  { {0xe8160183, 0x44211577, 0x2a6d006c, 0x00000000}},  //   ताना_, _moh_, tleb_,\n  { {0xe8f90265, 0x61fd1c5d, 0x6e200010, 0x00000000}},  //   ели_, _jasl, _gomb,\n  { {0xb5fb06b8, 0x61fd0213, 0x0e44008b, 0x00000000}},  //   hlás, _masl, _тэрм,\n  { {0x44210013, 0x61fd01d6, 0x22490032, 0x00000000}},  //   _noh_, _lasl, hiak_,\n  { {0x44440127, 0x2249022b, 0x6e200dfc, 0x00000000}},  //   _rm_, kiak_, _yomb,\n  { {0x61fd01d9, 0x656d0922, 0xfbdf0061, 0x00000000}},  //   _nasl, _byah, प्रम,\n  { {0x656d0009, 0x37e510f3, 0x7a3516de, 0x00000000}},  //   _cyah, _болг, _cáte,\n  { {0xb744026c, 0x656d26b0, 0xdb0101e3, 0x00000000}},  //   ائیو, _dyah, _belø,\n  { {0x44440193, 0x44210145, 0x61fd014a, 0x00000000}},  //   _vm_, _doh_, _basl,\n  { {0x2249022b, 0x4444010f, 0x443300d4, 0x00000000}},  //   giak_, _wm_, _elx_,\n  { {0x44440011, 0x6e2004cb, 0xb5fb0010, 0x00000000}},  // [68e0] _tm_, _romb, rlát,\n  { {0x444426b1, 0x44210397, 0xb5fb26b2, 0x00000000}},  //   _um_, _goh_, slát,\n  { {0x0dca0057, 0xa565025a, 0x61fd0093, 0x00000000}},  //   елей_, _مدین, _fasl,\n  { {0xed5a0057, 0x7e7b0325, 0xe1f201f7, 0x00000000}},  //   ное_, _chup, _اسد_,\n  { {0x61e403f1, 0x442100e7, 0xadb703ec, 0x00000000}},  //   mfil, _yoh_, اهها_,\n  { {0x7d020010, 0x7c2126b3, 0x70560025, 0x00000000}},  //   rvos, _colr, _إنسا,\n  { {0x78a21af5, 0xd6ae0055, 0x05d4001c, 0x00000000}},  //   _stov, _কম্প, _थांब,\n  { {0x48aa17da, 0x290600d4, 0xdb180023, 0x00000000}},  //   нтом_, _proa_, lavë,\n  { {0x38340517, 0x7c2100d4, 0x88bd00b4, 0x00000000}},  //   инир, _folr, byśm,\n  { {0x2249022b, 0xe45f0039, 0x26de0026, 0x00000000}},  //   ziak_, tröm_, ttto_,\n  { {0x9b930054, 0xab930054, 0x442101a3, 0x00000000}},  //   _المت, _المغ, _roh_,\n  { {0x7a3500b9, 0x1a9b0049, 0x212900ef, 0x00000000}},  //   _páte, _נידע, yyah_,\n  { {0x44210487, 0x78a20056, 0x3495094b, 0x00000000}},  //   _poh_, _utov, рагр,\n  { {0xb4e503d7, 0x61e40b38, 0x224900b4, 0x00000000}},  //   _नही_, efil, wiak_,\n  { {0x61fd010a, 0x0cd102d2, 0x629800f4, 0x00000000}},  //   _pasl, _सम्म, _évol,\n  { {0x533401be, 0x44210487, 0xb5fb0010, 0x00000000}},  //   щест, _woh_, rlás,\n  { {0x7bda16ca, 0x2249022b, 0x44210b9a, 0x00000000}},  // [68f0] _octu, riak_, _toh_,\n  { {0x7e690007, 0xf1bf002a, 0x661d0f3a, 0x00000000}},  //   _skep, _clár_, ljsk,\n  { {0xaca30011, 0x212904be, 0x8db501e1, 0x00000000}},  //   _trịn, syah_, аслі,\n  { {0x661d1034, 0x61fd0051, 0x7c21032e, 0x00000000}},  //   njsk, _uasl, _solr,\n  { {0xddc20046, 0x7c2126b4, 0xb21b0190, 0x00000000}},  //   lnoś, _polr, _diæt,\n  { {0x60cd00d2, 0x00000000, 0x00000000, 0x00000000}},  //   mram,   ,   ,\n  { {0xf9910054, 0x2cbd0c6a, 0x628f016c, 0x00000000}},  //   يبة_, sswd_, _kico,\n  { {0x60cd0207, 0x645501a2, 0x7c2101c3, 0x00000000}},  //   oram, hnzi, _wolr,\n  { {0x26cc0211, 0xa3d602d2, 0x629726b5, 0x00000000}},  //   erdo_, _हाल_, _luxo,\n  { {0x3a2d0007, 0xaae70379, 0xd709007c, 0x00000000}},  //   skep_, _مسؤو, вное_,\n  { {0x2bab001c, 0x60cd014a, 0x7d09000c, 0x00000000}},  //   _घ्या, hram, _hres,\n  { {0x628f0a86, 0x7d090142, 0xddc20036, 0x00000000}},  //   _nico, _kres, dnoś,\n  { {0x26cc0851, 0x60cd0065, 0x99830006, 0x00000000}},  //   ardo_, jram, ėjų_,\n  { {0x61e40009, 0x7d090066, 0x96950b81, 0x00000000}},  //   wfil, _mres, _криш,\n  { {0x61e426b6, 0x628f08eb, 0x41b602b8, 0x00000000}},  //   tfil, _bico, исат,\n  { {0x60cd009f, 0x20110282, 0x98a20006, 0x00000000}},  //   fram, _anzi_, šką_,\n  { {0x60cd26b7, 0x628f26ad, 0xdb030428, 0x00000000}},  // [6900] gram, _dico, vaný,\n  { {0x61e4003a, 0xf09f0011, 0x628f005b, 0x00000000}},  //   sfil, _tràn_, _eico,\n  { {0x91e60f40, 0x628f26b8, 0x60cd26b9, 0x00000000}},  //   _коне, _fico, aram,\n  { {0x7d0903c5, 0x60cd041e, 0x20110020, 0x00000000}},  //   _bres, bram, _enzi_,\n  { {0x7d0924bb, 0x7bda26ba, 0x6284044e, 0x00000000}},  //   _cres, _pctu, mmio,\n  { {0x63bc020c, 0x7d091510, 0x628f0ed9, 0x00000000}},  //   narn, _dres, _zico,\n  { {0x7d091067, 0x661d0036, 0x62840052, 0x00000000}},  //   _eres, yjsk, omio,\n  { {0x628f00d4, 0x2bd20164, 0x63bc068d, 0x00000000}},  //   _xico, _साका, harn,\n  { {0x7d0926bb, 0xdca3003b, 0xa3d626bc, 0x00000000}},  //   _gres, _мати, _हां_,\n  { {0x63bc26bd, 0x29000006, 0x69a6007d, 0x00000000}},  //   jarn, _šias_, _ट्री,\n  { {0x63bc1c95, 0xeb970088, 0xcfcc0044, 0x00000000}},  //   darn, _тих_, র্থন,\n  { {0x60cd038c, 0xc9861023, 0xa7fc01df, 0x00000000}},  //   yram, _кули, tlıs,\n  { {0x628f0198, 0x7af8001c, 0x62840046, 0x00000000}},  //   _rico, lwvt, dmio,\n  { {0x63bc0203, 0xddc20046, 0xcfcc0055, 0x00000000}},  //   garn, tnoś, র্তন,\n  { {0xe1ff00f6, 0x76560010, 0xdb0300f6, 0x00000000}},  //   _paó_, ógyá, lanò,\n  { {0x60cd0207, 0x95cb003b, 0xddc20036, 0x00000000}},  //   tram, _рука_, rnoś,\n  { {0x51871b67, 0x63b7005f, 0x628f0197, 0x00000000}},  // [6910] рува, _texn, _vico,\n  { {0x60cd0682, 0x7d090065, 0x25e3007d, 0x00000000}},  //   rram, _rres, ट्री_,\n  { {0x60cd00d0, 0x628f26be, 0xf09f0011, 0x00000000}},  //   sram, _tico, _trào_,\n  { {0x60cd26bf, 0x7a3c0010, 0x9f5800f6, 0x00000000}},  //   pram, _hétf, _garí_,\n  { {0xaca3001d, 0x60cd005f, 0x787d009d, 0x00000000}},  //   _trọn, qram, lève,\n  { {0x7d0901b5, 0x3e7c0802, 0x8c6702ea, 0x00000000}},  //   _vres, víte_, штед,\n  { {0xad9d0036, 0x7d09077a, 0x3c390173, 0x00000000}},  //   _paźd, _wres, _nève_,\n  { {0x61e90004, 0xa7fc006b, 0x7d0905a9, 0x00000000}},  //   _öeld, dlıq, _tres,\n  { {0x7d090059, 0x7a2e0009, 0x63bc008a, 0x00000000}},  //   _ures, _mùth, yarn,\n  { {0xfc330647, 0x684507d0, 0x7a3526c0, 0x00000000}},  //   _بحر_, ённа, _dáta,\n  { {0x63bc0119, 0x78a9221d, 0x3e7c0161, 0x00000000}},  //   varn, spev, síte_,\n  { {0x80ad0055, 0xb9950025, 0x63bc0169, 0x00000000}},  //   _চিন্, _الإب, warn,\n  { {0x63bc0209, 0x682d1a34, 0x99850025, 0x00000000}},  //   tarn, _lúdi, _الشو,\n  { {0x03a326c1, 0x00000000, 0x00000000, 0x00000000}},  //   зиро,   ,   ,\n  { {0x63bc0332, 0xf48600a1, 0x044308d6, 0x00000000}},  //   rarn, لاڑی, черн,\n  { {0x63bc26c2, 0x984f006b, 0x00000000, 0x00000000}},  //   sarn, _işıq_,   ,\n  { {0xdb1802d5, 0x63bc016e, 0x7a2e0009, 0x00000000}},  // [6920] ravé, parn, _dùth,\n  { {0xdb010010, 0x95880036, 0x3ae10010, 0x00000000}},  //   _belü, _ciąż, kóp_,\n  { {0xd9f9001c, 0x644e26c3, 0x93fb007b, 0x00000000}},  //   ्यात_, mibi, _גליי,\n  { {0x0d86004c, 0x644e1c39, 0x6d03006e, 0x00000000}},  //   блен, libi, लिंग_,\n  { {0xa7fc013f, 0x00000000, 0x00000000, 0x00000000}},  //   zlıq,   ,   ,\n  { {0x644e0198, 0x6fd501fb, 0xdb010010, 0x00000000}},  //   nibi, _місц, _felü,\n  { {0x7bd80250, 0xa3d6013d, 0x00000000, 0x00000000}},  //   rgvu, _हाई_,   ,\n  { {0x3ea70051, 0x61f6019a, 0x648000b0, 0x00000000}},  //   ínte_, neyl, löid,\n  { {0x261c0164, 0x644e0095, 0x2be00316, 0x00000000}},  //   यानी_, kibi, _नापा,\n  { {0x644e0020, 0x74230044, 0xdb010036, 0x00000000}},  //   jibi, _নষ্ট_, _celó,\n  { {0xb05b0039, 0x7bc80066, 0x00000000, 0x00000000}},  //   _ovän, _iddu,   ,\n  { {0xa7fc006b, 0x98c40095, 0x00000000, 0x00000000}},  //   rlıq, ştık_,   ,\n  { {0x644e0885, 0xda65006d, 0x9f5800d4, 0x00000000}},  //   fibi, _بالي, _larà_,\n  { {0x3a260100, 0x644e26c4, 0x648000b0, 0x00000000}},  //   _hoop_, gibi, jöid,\n  { {0x3a26049b, 0xcfde0044, 0x2be001f5, 0x00000000}},  //   _koop_, ড়ান, _नाना,\n  { {0x3a2600bb, 0x7a35134d, 0x926b007c, 0x00000000}},  //   _joop_, _látn, урга_,\n  { {0x644e011c, 0x320700b9, 0xf09f0082, 0x00000000}},  // [6930] bibi, ěny_, _tràm_,\n  { {0x644e0219, 0x764f092c, 0x3a2626c5, 0x00000000}},  //   cibi, licy, _loop_,\n  { {0xe7ea001c, 0xa19500ed, 0x3ea701b5, 0x00000000}},  //   ज्या_, _манч, ënt_,\n  { {0x25e103d7, 0x7bc80016, 0xf1c301d5, 0x00000000}},  //   _काफी_, _addu, _diġà_,\n  { {0x6fb50025, 0x9c7d000a, 0x00000000, 0x00000000}},  //   _ومحا, _opōt,   ,\n  { {0x9f5801e8, 0x9f4a00f6, 0x00000000, 0x00000000}},  //   _farà_, _cabó_,   ,\n  { {0xdb010181, 0x9e35007c, 0xa6fa0044, 0x00000000}},  //   _reló, _девч, ইমুম_,\n  { {0xed15026c, 0x644e001a, 0x200304cb, 0x00000000}},  //   _وہاں_, zibi, _haji_,\n  { {0x3a2607a5, 0x200321e6, 0x644e0101, 0x00000000}},  //   _doop_, _kaji_, yibi,\n  { {0x20030020, 0x9f580211, 0x752f0036, 0x00000000}},  //   _jaji_, _hará_, dycz,\n  { {0x2003000b, 0x869900ed, 0x644e0197, 0x00000000}},  //   _maji_, јтот_, vibi,\n  { {0x366a003b, 0x29180048, 0x3a260203, 0x00000000}},  //   рамо_, ófaí_, _goop_,\n  { {0xf77300a6, 0xdb011819, 0x2be0007d, 0x00000000}},  //   _کاش_, _teló, _नामा,\n  { {0x69db06c0, 0xb05b0039, 0x20030087, 0x00000000}},  //   lgue, _svän, _naji_,\n  { {0x644e1333, 0xe8160309, 0x09e00044, 0x00000000}},  //   ribi, तारा_, _মোটা,\n  { {0x644e049a, 0x69db00f4, 0x3ebe009f, 0x00000000}},  //   sibi, ngue, _ætti_,\n  { {0x9f580198, 0x7a3503b5, 0x80a60014, 0x00000000}},  // [6940] _sarà_, _láto, زمان,\n  { {0x660403ef, 0x9f5816a3, 0x644e013f, 0x00000000}},  //   _haik, _parà_, qibi,\n  { {0x66040f3c, 0x320201c8, 0x20070181, 0x00000000}},  //   _kaik, _taky_, ônia_,\n  { {0x0caa0081, 0x66040032, 0x9f4a26c6, 0x00000000}},  //   атки_, _jaik, _babò_,\n  { {0x6604011c, 0xb05b0073, 0x9f580b33, 0x00000000}},  //   _maik, _kväl, _dará_,\n  { {0x66040ebc, 0x2003027e, 0x7a3c0010, 0x00000000}},  //   _laik, _gaji_, _méte,\n  { {0x752f0046, 0x443a002b, 0x9f580181, 0x00000000}},  //   zycz, _mlp_, _fará_,\n  { {0x1cba0b03, 0x66040728, 0x443a1904, 0x00000000}},  //   _نائب_, _naik, _llp_,\n  { {0x60c40110, 0xe8160204, 0x00000000, 0x00000000}},  //   nsim, ताला_,   ,\n  { {0x443a21b3, 0xdb1a008d, 0x59dc0061, 0x00000000}},  //   _nlp_, _jetë, _यावर,\n  { {0x09e60057, 0x907b012f, 0x6fdd0061, 0x00000000}},  //   _можн, שטיי, _पासू,\n  { {0x752f0046, 0xdb1a0065, 0x09b40044, 0x00000000}},  //   tycz, _letë, _টাকা,\n  { {0x66040006, 0x08fa035b, 0x3ce60cce, 0x00000000}},  //   _daik, _خراب_, ntov_,\n  { {0x7a3c00f4, 0x752f0046, 0xdb080030, 0x00000000}},  //   _déte, rycz, _bedø,\n  { {0x7c280161, 0x43940057, 0x95cb0726, 0x00000000}},  //   _modr, дарс, _купа_,\n  { {0xdb1811ea, 0x6fdd0061, 0x7c281beb, 0x00000000}},  //   javí, _पाहू, _lodr,\n  { {0x7c3a0198, 0xdb180211, 0xcf9b012b, 0x00000000}},  // [6950] _oltr, daví, аје_,\n  { {0x69c010c3, 0x7c28001e, 0x38a00009, 0x00000000}},  //   hame, _nodr, _mòr_,\n  { {0x09e00055, 0x69c002c0, 0x9f580181, 0x00000000}},  //   _মোছা, kame, _pará_,\n  { {0x7c3a108c, 0x69c00181, 0x6e220047, 0x00000000}},  //   _altr, jame, gjob,\n  { {0x7c28014a, 0x43d402fd, 0x60c40232, 0x00000000}},  //   _bodr, _عزیز, csim,\n  { {0xb09a009b, 0x7c28001a, 0x69c026c7, 0x00000000}},  //   _לישר, _codr, eame,\n  { {0x69c020db, 0x7c2826c8, 0xdb1a000a, 0x00000000}},  //   fame, _dodr, _jetè,\n  { {0x69c0220a, 0x6e220061, 0x69db13f6, 0x00000000}},  //   game, cjob, ugue,\n  { {0x69db029a, 0xe8e00011, 0x66040052, 0x00000000}},  //   rgue, _đợi_, _raik,\n  { {0x66040089, 0x7c28005b, 0x764d04f3, 0x00000000}},  //   _saik, _godr, _amay,\n  { {0x6604021e, 0x69c00181, 0xdb230014, 0x00000000}},  //   _paik, bame, _توضی,\n  { {0x7a3c0010, 0x7c2800b5, 0x443a0020, 0x00000000}},  //   _péte, _zodr, _slp_,\n  { {0x660426c9, 0x4a44007e, 0x88de0044, 0x00000000}},  //   _vaik, _ўнів, _বৈঠক,\n  { {0xdb1a01aa, 0x7a3c0010, 0x60c426ca, 0x00000000}},  //   _betè, _véte, vsim,\n  { {0x66040f38, 0x6e3b26cb, 0x63830517, 0x00000000}},  //   _taik, _olub, егра,\n  { {0xdb1a01aa, 0x60c4006c, 0x7a3c0010, 0x00000000}},  //   _detè, tsim, _téte,\n  { {0xf1bf001d, 0x60c4010a, 0xb146026b, 0x00000000}},  // [6960] _toán_, usim, чнал,\n  { {0x88bd0055, 0x61ef0009, 0x443a0022, 0x00000000}},  //   _আমাক, _ebcl, _ulp_,\n  { {0x60c40198, 0xdb1a008d, 0x7c28029d, 0x00000000}},  //   ssim, _vetë, _rodr,\n  { {0x6e3b02d5, 0x69c00a5e, 0x7c2826cc, 0x00000000}},  //   _club, xame, _sodr,\n  { {0x60c4002b, 0x6e2200f8, 0x200c00c4, 0x00000000}},  //   qsim, rjob, _ódio_,\n  { {0x629e0a6e, 0x68e4021e, 0x26c50006, 0x00000000}},  //   _kupo, _äidi, kslo_,\n  { {0xd9f90183, 0x3ce60cce, 0x645c01a2, 0x00000000}},  //   ्यंत_, stov_, inri,\n  { {0xaf5b009b, 0x5fe20061, 0x629e0085, 0x00000000}},  //   _הכלכ, _पाडल, _mupo,\n  { {0xfe450167, 0xa3dd013d, 0x98a40006, 0x00000000}},  //   _تکلی, _डाल_, kymą_,\n  { {0x4734058f, 0x7c3a0472, 0x787d01aa, 0x00000000}},  //   днос, _ultr, tèva,\n  { {0x69c004bd, 0x290f1824, 0x98a40006, 0x00000000}},  //   pame, _erga_, dymą_,\n  { {0x6b7b01ce, 0x0f5700b6, 0x3ebe000c, 0x00000000}},  //   _פראנ, ליים_, _ættu_,\n  { {0xed590f3a, 0x787d01aa, 0xab630036, 0x00000000}},  //   _teže_, sèva, ężen,\n  { {0xdb1a01aa, 0x00000000, 0x00000000, 0x00000000}},  //   _petè,   ,   ,\n  { {0x63be0022, 0xdb1a0010, 0x00000000, 0x00000000}},  //   _depn, _beté,   ,\n  { {0x629e009d, 0x764d0058, 0xeb3b0049, 0x00000000}},  //   _dupo, _umay, זעלש,\n  { {0x236d0036, 0x6e290ace, 0xa3d60061, 0x00000000}},  // [6970] łej_, _roeb, _हाच_,\n  { {0x638701cc, 0x6e2926cd, 0x25a90085, 0x00000000}},  //   géné, _soeb, _hfal_,\n  { {0x02a4041f, 0xbf150025, 0x00000000, 0x00000000}},  //   _прям, بواب,   ,\n  { {0xdd910426, 0x765d06d7, 0x20180617, 0x00000000}},  //   نوا_, nnsy, _enri_,\n  { {0xdb010010, 0xfce50131, 0xb114007e, 0x00000000}},  //   _jelö, фоло, _змяш,\n  { {0x320926ce, 0x61ed010f, 0x00000000, 0x00000000}},  //   lday_, lfal,   ,\n  { {0x6e2901b5, 0x25a90016, 0x00000000, 0x00000000}},  //   _toeb, _ofal_,   ,\n  { {0x61ed26cf, 0x6e3b0036, 0x320900ab, 0x00000000}},  //   nfal, _ulub, nday_,\n  { {0xa3dd0204, 0x3dcd000a, 0xb5fb07fd, 0x00000000}},  //   डला_, _idew_, bláz,\n  { {0x3a3f00ea, 0x320900ab, 0xb5fb008e, 0x00000000}},  //   shup_, hday_, zoát,\n  { {0xfe7000a1, 0xf771083e, 0xe3e30044, 0x00000000}},  //   _شدہ_, ضاد_, য়াব,\n  { {0xddc2167a, 0x7bc30e34, 0x26c5010a, 0x00000000}},  //   zlož, lanu, rslo_,\n  { {0x629e04bd, 0x29030089, 0x61ed00eb, 0x00000000}},  //   _supo, ājas_, dfal,\n  { {0x261c0164, 0xe29a26d0, 0x765d0093, 0x00000000}},  //   याही_, жав_, ansy,\n  { {0xa2e30d68, 0x81e60044, 0x68e90190, 0x00000000}},  //   корд, _যোগ_, lted,\n  { {0x7bc3010e, 0x11da0025, 0x00000000, 0x00000000}},  //   hanu, تورة_,   ,\n  { {0x68e90030, 0xf77801d5, 0xdb01010f, 0x00000000}},  // [6980] nted, mgħa_, _gelö,\n  { {0x7a3c00f4, 0x261c0204, 0x7bc326d1, 0x00000000}},  //   _méta, यावी_, janu,\n  { {0x441b007b, 0x141b007b, 0x7bc3017b, 0x00000000}},  //   _וויס, _וויב, danu,\n  { {0x68e9011f, 0xddc226d2, 0x00000000, 0x00000000}},  //   kted, slož,   ,\n  { {0x7bc30020, 0x25e3007d, 0x8c46011e, 0x00000000}},  //   fanu, ट्टी_, меде,\n  { {0x7bc326d3, 0x2ca926d4, 0x3dcd0173, 0x00000000}},  //   ganu, íada_, _edew_,\n  { {0x5f030072, 0xddc601f9, 0x26ca01d5, 0x00000000}},  //   _изра, _обви, ġbok_,\n  { {0x2be00183, 0x68e90637, 0x7a3c1152, 0x00000000}},  //   _नावा, fted, _béta,\n  { {0x6b9a001c, 0x7bc309e7, 0xf967007e, 0x00000000}},  //   _tgtg, banu, дрэй_,\n  { {0x25e10365, 0x7a3c028c, 0x7a3526d5, 0x00000000}},  //   _काही_, _déta, _láth,\n  { {0x61ed014a, 0x7fd70097, 0x00000000, 0x00000000}},  //   yfal, וויס_,   ,\n  { {0xa4d501ff, 0x68e926d6, 0x00000000, 0x00000000}},  //   номі, bted,   ,\n  { {0x68e90857, 0x765d01e3, 0x61ed26d7, 0x00000000}},  //   cted, rnsy, vfal,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x61ed00db, 0x25a901d5, 0x261c0061, 0x00000000}},  //   tfal, _tfal_, याशी_,\n  { {0xc7ad00a1, 0xf09f0026, 0x7bc30035, 0x00000000}},  //   _پڑی_, _puà_, zanu,\n  { {0xf09f001d, 0x320900ab, 0x261c006e, 0x00000000}},  // [6990] _quà_, rday_, यारी_,\n  { {0x47d00044, 0x61ed010f, 0x443800ab, 0x00000000}},  //   ত্রী, sfal, ckr_,\n  { {0x6455038c, 0x47c30055, 0x2cad01e3, 0x00000000}},  //   mizi, _শামী, _sted_,\n  { {0x200700ee, 0x7bc300e7, 0x648b002b, 0x00000000}},  //   žni_, wanu, _gżir,\n  { {0x7bc30ac2, 0x4fc70aed, 0x628d00d9, 0x00000000}},  //   tanu, _осва, mmao,\n  { {0x09c70061, 0x629800c4, 0x7a3c009d, 0x00000000}},  //   ळण्य, _évor, _réta,\n  { {0x7bc31e81, 0x2be00309, 0xdab9007e, 0x00000000}},  //   ranu, _नारा, чылі_,\n  { {0x68e901e3, 0x6455001a, 0x7bc3006c, 0x00000000}},  //   tted, hizi, sanu,\n  { {0xe8f60a78, 0x2d58007c, 0x7bc30503, 0x00000000}},  //   елы_, _жить_, panu,\n  { {0x68e926d8, 0x6455016c, 0x9bf4007c, 0x00000000}},  //   rted, jizi, _изуч,\n  { {0x645526d9, 0x7a35000c, 0xa7fc026d, 0x00000000}},  //   dizi, _láti, nlıy,\n  { {0xdd12014a, 0x7a3c0068, 0x00000000, 0x00000000}},  //   nüşt, _téta,   ,\n  { {0x6455001f, 0x7bc1020c, 0x7a3507da, 0x00000000}},  //   fizi, _kelu, _ráth,\n  { {0x6286008d, 0xd8d60049, 0x7bc126da, 0x00000000}},  //   _shko, _נוצט_, _jelu,\n  { {0x7bc104cb, 0x00000000, 0x00000000, 0x00000000}},  //   _melu,   ,   ,\n  { {0x7bc116fe, 0x60d626db, 0xf778002b, 0x00000000}},  //   _lelu, trym, qgħa_,\n  { {0xe0da26dc, 0x645526dd, 0xe8140164, 0x00000000}},  // [69a0] ява_, bizi, _थोडा_,\n  { {0x6455001a, 0x3fe300e2, 0x00000000, 0x00000000}},  //   cizi, лжув,   ,\n  { {0x7a350051, 0xa49b0173, 0x671f007d, 0x00000000}},  //   _táth, pwòc, यमिक_,\n  { {0x4d66007e, 0x7a3516b5, 0x5fe20061, 0x00000000}},  //   нкев, _fáti, _पावल,\n  { {0x7bc10149, 0x629800f4, 0x00000000, 0x00000000}},  //   _belu, _évoq,   ,\n  { {0xdee60175, 0x9f580048, 0x6aa10d28, 0x00000000}},  //   _поги, _marú_, _bulf,\n  { {0x7bc10059, 0x3e7501c9, 0x61ef0051, 0x00000000}},  //   _delu, tått_, _éilí,\n  { {0x3f7b0049, 0x6aa100f6, 0x249a0022, 0x00000000}},  //   _זאלס, _dulf, _lipm_,\n  { {0x0d86012b, 0x7bc126de, 0xfe1d0061, 0x00000000}},  //   _члан, _felu, फारस_,\n  { {0x7bc10100, 0x6aa10133, 0x200a0032, 0x00000000}},  //   _gelu, _fulf, _jabi_,\n  { {0x6aa100ea, 0x8ad603ab, 0x998d0087, 0x00000000}},  //   _gulf, _ستائ, rkeš_,\n  { {0x200a13e6, 0x7bc1002d, 0x25e10061, 0x00000000}},  //   _labi_, _zelu, _काळी_,\n  { {0x64550198, 0xda6f00a1, 0x6aa10085, 0x00000000}},  //   tizi, _اُن_, _zulf,\n  { {0x200a04cb, 0xd49800ed, 0x61e6098e, 0x00000000}},  //   _nabi_, ерс_, _ackl,\n  { {0x64550198, 0x7a3500fa, 0x27fe00ca, 0x00000000}},  //   rizi, _sáti, metn_,\n  { {0x64550198, 0x7a3c0489, 0xa3dd013d, 0x00000000}},  //   sizi, _méto, _डाक_,\n  { {0x26de26df, 0x200a01a3, 0x628d26e0, 0x00000000}},  // [69b0] luto_, _babi_, rmao,\n  { {0xd25106c6, 0x78a20625, 0xb88100b9, 0x00000000}},  //   _چند_, _muov, _říze,\n  { {0x26de0198, 0x7bc1001a, 0x78a200b0, 0x00000000}},  //   nuto_, _relu, _luov,\n  { {0x7bc10149, 0x2906002d, 0x69c200f6, 0x00000000}},  //   _selu, _osoa_, _neoe,\n  { {0x78a20198, 0x7bc1020c, 0x6aa10133, 0x00000000}},  //   _nuov, _pelu, _sulf,\n  { {0x2ef506e1, 0x200a006a, 0x8d740084, 0x00000000}},  //   _изгр, _gabi_, داما,\n  { {0x7bc102d8, 0x48bd0044, 0xcb660a94, 0x00000000}},  //   _velu, _আমের, каше_,\n  { {0x26de26e1, 0x7a3c00f4, 0x7a350010, 0x00000000}},  //   duto_, _déto, _látv,\n  { {0x7bc10281, 0xf86500ed, 0x9815025a, 0x00000000}},  //   _telu, квио, نبدا,\n  { {0xe73901be, 0x5d540256, 0x3ea30065, 0x00000000}},  //   део_, _скут, _kujt_,\n  { {0x366a0088, 0x41e1013d, 0xdbf900b4, 0x00000000}},  //   дано_, _फांस, _włók,\n  { {0x69c201d6, 0x61ff0045, 0xe7360152, 0x00000000}},  //   _geoe, jeql, тею_,\n  { {0x26de003c, 0xda1e013d, 0xa3dd0061, 0x00000000}},  //   auto_, भारत_, डलं_,\n  { {0x9879007b, 0x26de0207, 0xa8790049, 0x00000000}},  //   _קאַט, buto_, _קאַר,\n  { {0x200a12cc, 0x00000000, 0x00000000, 0x00000000}},  //   _rabi_,   ,   ,\n  { {0x200a006a, 0xb5fb013e, 0x00000000, 0x00000000}},  //   _sabi_, rnác,   ,\n  { {0x21a309de, 0x2fc30066, 0xdb1a00fa, 0x00000000}},  // [69c0] риум, _bejg_, _retí,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x03d701ce, 0x200a00ca, 0x036a0745, 0x00000000}},  //   _בוים_, _vabi_, _цинк_,\n  { {0xee3a0451, 0xed5a007c, 0x200a05d2, 0x00000000}},  //   ьне_, мое_, _wabi_,\n  { {0x200a1aa0, 0x5ce3007c, 0x442502fd, 0x00000000}},  //   _tabi_, ающа, _شریف,\n  { {0x61e4011f, 0x5c730245, 0x8fa600ed, 0x00000000}},  //   lgil, аліт, _јаве,\n  { {0x7a3505ee, 0xf1bf0082, 0x00000000, 0x00000000}},  //   _látu, _soái_,   ,\n  { {0x61e4022b, 0x26de0207, 0xab5c0089, 0x00000000}},  //   ngil, vuto_, _ceļa,\n  { {0x6c06003b, 0xdca61867, 0x2d840091, 0x00000000}},  //   _изаз, _рази, _uzme_,\n  { {0x7a3c01e6, 0x00000000, 0x00000000, 0x00000000}},  //   _této,   ,   ,\n  { {0xc0150049, 0x7e62055f, 0xdb010190, 0x00000000}},  //   אַרק_, onop, _aflæ,\n  { {0xd00b0055, 0x25a00197, 0xf1e1013d, 0x00000000}},  //   রায়_, _cgil_, _फाइन,\n  { {0x0fe20061, 0xdb18010e, 0x3e7c0010, 0x00000000}},  //   _पांढ, savä, gíti_,\n  { {0x26de0207, 0x7a351b6d, 0x7e62003b, 0x00000000}},  //   puto_, _dátu, hnop,\n  { {0x7e620168, 0x82a401fc, 0xe81f006e, 0x00000000}},  //   knop, иште, बारा_,\n  { {0x454500a1, 0x53341e03, 0x61e4000c, 0x00000000}},  //   _منعق, шест, ggil,\n  { {0x7e620253, 0xf5990088, 0xed590087, 0x00000000}},  // [69d0] dnop, _явищ_, _režo_,\n  { {0x1621001c, 0x7a350092, 0x660d0cc0, 0x00000000}},  //   यावर_, _hátt, _haak,\n  { {0x5335007c, 0x660d0dc7, 0x320b00b4, 0x00000000}},  //   _сент, _kaak, _tacy_,\n  { {0x660d00b0, 0x2ca40093, 0x61e426e2, 0x00000000}},  //   _jaak, _bumd_, cgil,\n  { {0x660d26e3, 0x7a35000c, 0x00000000, 0x00000000}},  //   _maak, _mátt,   ,\n  { {0x7a35134d, 0x60cd010e, 0x660d00b0, 0x00000000}},  //   _látt, msam, _laak,\n  { {0x629d00b0, 0xadbd0451, 0xed5900ca, 0x00000000}},  //   _kiso, _навi, _težo_,\n  { {0x7a35009f, 0x660d00bb, 0x60cd1862, 0x00000000}},  //   _nátt, _naak, osam,\n  { {0x3d9401fb, 0x629d0544, 0x68e026e4, 0x00000000}},  //   _витр, _miso, gumd,\n  { {0x7b0800b0, 0x7d09006c, 0x629d0253, 0x00000000}},  //   ästä, _ises, _liso,\n  { {0x660d26e5, 0x2bc800e2, 0xe73902dc, 0x00000000}},  //   _baak, _шуто_, хен_,\n  { {0x20cf001e, 0x629d00b9, 0x2446009d, 0x00000000}},  //   kļi_, _niso, _môme_,\n  { {0x7d090061, 0x61e4005a, 0x00000000, 0x00000000}},  //   _jses, vgil,   ,\n  { {0x60cd05d5, 0x66e50930, 0x629d0943, 0x00000000}},  //   dsam, _бока, _aiso,\n  { {0x629d26e6, 0x61e400f8, 0x3e7c0010, 0x00000000}},  //   _biso, tgil, síti_,\n  { {0x96950a78, 0x00000000, 0x00000000, 0x00000000}},  //   _крыш,   ,   ,\n  { {0x7644000b, 0x629d2179, 0x7e62041a, 0x00000000}},  // [69e0] _iliy, _diso, vnop,\n  { {0x629d0016, 0x84060088, 0x660d0ae7, 0x00000000}},  //   _eiso, _спож, _zaak,\n  { {0x4444054f, 0x7d0926e7, 0x2a7f26e8, 0x00000000}},  //   _il_, _ases, klub_,\n  { {0x444401ca, 0x5d6a0057, 0x60cd26e9, 0x00000000}},  //   _hl_, нием_, bsam,\n  { {0x444402d8, 0x7e6200ea, 0x5fe20061, 0x00000000}},  //   _kl_, rnop, _पाऊल,\n  { {0x4444023a, 0x7e620052, 0x6a7e0023, 0x00000000}},  //   _jl_, snop, mëfi,\n  { {0xb5fb0f49, 0xa3d50061, 0xa0671867, 0x00000000}},  //   dnán, हणत_, _сара_,\n  { {0x5a3405b5, 0x44440038, 0xdd080027, 0x00000000}},  //   рнит, _ll_, môže,\n  { {0x4444049d, 0x8cdb0164, 0xb05b0039, 0x00000000}},  //   _ol_, _नियो, _tvät,\n  { {0x444402ae, 0x7644000b, 0x68e001f6, 0x00000000}},  //   _nl_, _aliy, rumd,\n  { {0x76440263, 0x7bca0f18, 0x00000000, 0x00000000}},  //   _bliy, mafu,   ,\n  { {0x2a7f0142, 0xdb080039, 0xd6d7007c, 0x00000000}},  //   club_, _bedö, ыть_,\n  { {0x444401d5, 0xb4c1001c, 0x629d0198, 0x00000000}},  //   _bl_, ुळे_, _riso,\n  { {0x7bca000b, 0x44440211, 0x660d26ea, 0x00000000}},  //   nafu, _cl_, _waak,\n  { {0x444404bd, 0x629d029a, 0x4395138c, 0x00000000}},  //   _dl_, _piso, равс,\n  { {0x4444095e, 0xf1270057, 0x60cd0056, 0x00000000}},  //   _el_, льзо, tsam,\n  { {0x629d010a, 0xd49b0805, 0x44440f68, 0x00000000}},  // [69f0] _viso, _про_, _fl_,\n  { {0x60cd020c, 0x7bca00e7, 0x00000000, 0x00000000}},  //   rsam, jafu,   ,\n  { {0x629d1a2d, 0x200100ca, 0x442126eb, 0x00000000}},  //   _tiso, rehi_, _inh_,\n  { {0x60cd014a, 0x44440036, 0xb5fb0f49, 0x00000000}},  //   psam, _zl_, znán,\n  { {0x1d0909da, 0xb05b00f8, 0x644b007f, 0x00000000}},  //   тели_, _dvär, _įgij,\n  { {0xab5c001e, 0xe29f000c, 0x787d01aa, 0x00000000}},  //   _ceļo, _hið_, pèvi,\n  { {0xb5fb00b9, 0x443300d2, 0x44211a58, 0x00000000}},  //   vnán, _mox_, _mnh_,\n  { {0x4df90049, 0x6e2b0045, 0x44210068, 0x00000000}},  //   _שפּא, qjgb, _lnh_,\n  { {0x7a3c00f4, 0xe29f000c, 0x7d090087, 0x00000000}},  //   _méth, _mið_, _uses,\n  { {0x443302a9, 0xe29f000c, 0x7bca0087, 0x00000000}},  //   _nox_, _lið_, cafu,\n  { {0x4444013f, 0xb5fb0211, 0xf6260816, 0x00000000}},  //   _rl_, rnán, адно,\n  { {0x442100ad, 0x7ae3006a, 0x64450020, 0x00000000}},  //   _anh_, munt, _alhi,\n  { {0x44440df0, 0x44331b2a, 0x7ae303c1, 0x00000000}},  //   _pl_, _box_, lunt,\n  { {0x4433006b, 0x7e690182, 0x99840054, 0x00000000}},  //   _cox_, _ljep, _الهو,\n  { {0xb779007b, 0x366a01f9, 0xc5fb0055, 0x00000000}},  //   _באַש, _иако_, ইয়া_,\n  { {0x444426ec, 0x76440020, 0x64450010, 0x00000000}},  //   _wl_, _uliy, _elhi,\n  { {0xe2970265, 0x4444011f, 0x7ae3122b, 0x00000000}},  // [6a00] рат_, _tl_, hunt,\n  { {0x4444000d, 0x7ae326ed, 0x7e7b02a9, 0x00000000}},  //   _ul_, kunt, _akup,\n  { {0xeaf40365, 0x7ae30211, 0x645c0091, 0x00000000}},  //   _आहेत_, junt, miri,\n  { {0x645c011f, 0x7bca09c7, 0x22491a7c, 0x00000000}},  //   liri, wafu, chak_,\n  { {0xcfaa05f3, 0x7bca000b, 0x4433005f, 0x00000000}},  //   _لازم_, tafu, _yox_,\n  { {0x645c26ee, 0x7ae30555, 0x394d0089, 0x00000000}},  //   niri, funt, dzes_,\n  { {0x7ae326ef, 0xaa5826f0, 0x7bca20db, 0x00000000}},  //   gunt, лику_, rafu,\n  { {0xfb19026c, 0x645c000b, 0x7bca0fd1, 0x00000000}},  //   اروں_, hiri, safu,\n  { {0x645c061d, 0x7a350387, 0x8c3d014a, 0x00000000}},  //   kiri, _pátr, _kuşl,\n  { {0x7ae3011c, 0x7a3c00f4, 0x3a3f103f, 0x00000000}},  //   bunt, _méti, akup_,\n  { {0x645c005f, 0xcb6700d7, 0x7ae3004a, 0x00000000}},  //   diri, _кафе_, cunt,\n  { {0x8c3c011f, 0x3a3f00ab, 0x645c00c4, 0x00000000}},  //   _diğe, ckup_, eiri,\n  { {0x7bc80149, 0x645c0041, 0x442126f1, 0x00000000}},  //   _kedu, firi, _pnh_,\n  { {0x645c002d, 0xd7ef0025, 0x00000000, 0x00000000}},  //   giri, _يكن_,   ,\n  { {0xeaf40061, 0x7bc826f2, 0x61f60016, 0x00000000}},  //   _आहोत_, _medu, ffyl,\n  { {0x645c0051, 0x7bc80089, 0x61d8007c, 0x00000000}},  //   airi, _ledu, имся_,\n  { {0xe29f0359, 0x765d099e, 0x22490169, 0x00000000}},  // [6a10] _við_, misy, rhak_,\n  { {0x7e7b01d9, 0x2fc7001d, 0x765d26f3, 0x00000000}},  //   _skup, úng_, lisy,\n  { {0x261c0365, 0x753d0010, 0x394d0133, 0x00000000}},  //   याची_, lysz, zzes_,\n  { {0x765d0263, 0xf1ab03ec, 0x7a3c009d, 0x00000000}},  //   nisy, _جاده_, _féti,\n  { {0x7bc801d6, 0xe450025a, 0x753d0010, 0x00000000}},  //   _bedu, _رضی_, nysz,\n  { {0x7ae300b0, 0xfaa50147, 0xec780088, 0x00000000}},  //   tunt, бако, апі_,\n  { {0x25e8001c, 0x8b94005e, 0x547a0049, 0x00000000}},  //   _झाली_, оръч, נְננ,\n  { {0x7ae30ea4, 0x645c177c, 0x7e7b0091, 0x00000000}},  //   runt, ziri, _ukup,\n  { {0x2011000b, 0x7ae302d5, 0x26de0211, 0x00000000}},  //   _kazi_, sunt, erto_,\n  { {0x7ae30fa1, 0x7bc826f4, 0x3a3f0142, 0x00000000}},  //   punt, _gedu, skup_,\n  { {0x394d0047, 0x44260011, 0x765d01aa, 0x00000000}},  //   szes_, _đo_, fisy,\n  { {0x7d1b1a3a, 0x20110107, 0x645c0016, 0x00000000}},  //   _krus, _lazi_, wiri,\n  { {0x645c038c, 0xa8a726f5, 0xba740025, 0x00000000}},  //   tiri, _трек, _بالت,\n  { {0x20111575, 0x7a3c009d, 0x628f01f3, 0x00000000}},  //   _nazi_, _réti, _ahco,\n  { {0x645c011c, 0x765d110c, 0x7a3c13f6, 0x00000000}},  //   riri, bisy, _séti,\n  { {0x645c010a, 0x7a3c009d, 0xa7fc006b, 0x00000000}},  //   siri, _péti, hnıl,\n  { {0x645c1899, 0x412700ed, 0xda1e0061, 0x00000000}},  // [6a20] piri, бото_, _मोफत_,\n  { {0x22400007, 0x66061267, 0x61f605d5, 0x00000000}},  //   skik_, lekk, sfyl,\n  { {0x7d1b1a0c, 0xb5fb26f6, 0x25ad050f, 0x00000000}},  //   _arus, znám, žele_,\n  { {0x7a3c26f7, 0x8c3d26f8, 0x66060516, 0x00000000}},  //   _hétv, _duşm, nekk,\n  { {0x7bc80169, 0x27170011, 0xf1b300b3, 0x00000000}},  //   _pedu, _lăn_, _מסר_,\n  { {0x7d1b0079, 0x765d0d5b, 0x2011014a, 0x00000000}},  //   _drus, zisy, _gazi_,\n  { {0x753d0046, 0x2458006b, 0xdee30d51, 0x00000000}},  //   zysz, _cümə_, _нори,\n  { {0x9f580197, 0x7f3b0049, 0x2618007d, 0x00000000}},  //   _farò_, _געלו, _बोली_,\n  { {0x7d1b010f, 0xde7700a1, 0xed460098, 0x00000000}},  //   _grus, _اینڈ_, _унап,\n  { {0x6b8122ad, 0x37c80044, 0x27170082, 0x00000000}},  //   _fylg, _শাহর, _băn_,\n  { {0x765d0263, 0x2717001d, 0xbb860054, 0x00000000}},  //   tisy, _căn_, _الاي,\n  { {0xdb1a00b0, 0x00000000, 0x00000000, 0x00000000}},  //   _vetä,   ,   ,\n  { {0xb9960054, 0x765d0173, 0x4a7b0049, 0x00000000}},  //   _الشب, risy, _גראב,\n  { {0x765d006a, 0x26de0059, 0x00000000, 0x00000000}},  //   sisy, prto_,   ,\n  { {0x765d26f9, 0x660601e5, 0xed5916d0, 0x00000000}},  //   pisy, bekk, _veži_,\n  { {0x62840198, 0x79820022, 0x2011229f, 0x00000000}},  //   glio, _kyow, _sazi_,\n  { {0x51871b67, 0xc03500ed, 0x20110ecc, 0x00000000}},  // [6a30] сува, онај, _pazi_,\n  { {0x7d1b0023, 0x62840997, 0x00000000, 0x00000000}},  //   _rrus, alio,   ,\n  { {0x2011003b, 0x5e87008b, 0x9f580197, 0x00000000}},  //   _vazi_, будз, _sarò_,\n  { {0x2011000b, 0x7d1b0036, 0xf1270147, 0x00000000}},  //   _wazi_, _prus, _льго,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x3eb80009, 0x26c20fcd, 0x00000000, 0x00000000}},  //   _ftrt_, ćkoj_,   ,\n  { {0x6aa226fa, 0x447c0049, 0x1a291a02, 0x00000000}},  //   _biof, אנגע, ижки_,\n  { {0x8c090055, 0x7d1b00ab, 0x6aa2060c, 0x00000000}},  //   লাইন_, _trus, _ciof,\n  { {0x7d1b105a, 0xaca30011, 0x27170011, 0x00000000}},  //   _urus, _trốn, _săn_,\n  { {0x66060112, 0x79820058, 0x00000000, 0x00000000}},  //   wekk, _dyow,   ,\n  { {0x1bb8023c, 0x628426fb, 0x61fd067f, 0x00000000}},  //   _طالع_, ylio, _obsl,\n  { {0x271700ad, 0x28f90057, 0x78bb0103, 0x00000000}},  //   _văn_, _ведь_, ppuv,\n  { {0xa5bb009f, 0x64400181, 0xdb010030, 0x00000000}},  //   tjór, êmio, _aflø,\n  { {0x69cb0010, 0x2d8d0020, 0xf745007c, 0x00000000}},  //   _hege, _mzee_, _мело,\n  { {0x69cb26fc, 0x04fa0044, 0x03a3007c, 0x00000000}},  //   _kege, ইটের_, диро,\n  { {0x69cb26fd, 0xcb120104, 0x628404dc, 0x00000000}},  //   _jege, ולל_, ulio,\n  { {0x69cb26fe, 0x62841ed6, 0x3eaa26ff, 0x00000000}},  // [6a40] _mege, rlio, _subt_,\n  { {0x69cb0238, 0x61ef0197, 0x6fd5007e, 0x00000000}},  //   _lege, _eccl, зіцц,\n  { {0x1eda0054, 0x232a00ed, 0xeda60679, 0x00000000}},  //   شباب_, _тони_, ошло,\n  { {0x69cb2700, 0x0d8603e0, 0x9f5e000c, 0x00000000}},  //   _nege, олен, _útí_,\n  { {0xc27b00b6, 0xf653009b, 0x6aa20325, 0x00000000}},  //   _כרטי, וצא_, _riof,\n  { {0x8cdb0164, 0xdfd20014, 0x7a3c000c, 0x00000000}},  //   _निरो, _زير_, _létt,\n  { {0x69cb1440, 0x9f58000c, 0x00000000, 0x00000000}},  //   _bege, _garð_,   ,\n  { {0x69cb2701, 0x00000000, 0x00000000, 0x00000000}},  //   _cege,   ,   ,\n  { {0xed5a01b3, 0x69cb2702, 0x69d90016, 0x00000000}},  //   _тоа_, _dege, _ddwe,\n  { {0x290f0026, 0x291d000a, 0x00000000, 0x00000000}},  //   _dsga_, _drwa_,   ,\n  { {0xd7f80035, 0x00000000, 0x00000000, 0x00000000}},  //   rfă_,   ,   ,\n  { {0x69cb09d6, 0x8b65039d, 0x7a3c000c, 0x00000000}},  //   _gege, _عالم, _pétu,\n  { {0xb5fb002a, 0x7e9b0104, 0xb86502fd, 0x00000000}},  //   nnái, יסטו, _کانو,\n  { {0x69cb00bb, 0x3ea400ea, 0x00000000, 0x00000000}},  //   _zege, _limt_,   ,\n  { {0xd25b2703, 0x2d8402c2, 0x3a2600b5, 0x00000000}},  //   аца_, _lyme_, _knop_,\n  { {0xa2dc01f5, 0x78a300bb, 0xb21b0190, 0x00000000}},  //   _फिर्, _zinv, _skæb,\n  { {0xc6940049, 0x25a9006c, 0x3fab012b, 0x00000000}},  // [6a50] _קאפ_, _igal_, ањем_,\n  { {0x7a3c0010, 0x644e03a1, 0x00000000, 0x00000000}},  //   _kéts, chbi,   ,\n  { {0x6480021e, 0xb5fb2704, 0x94740025, 0x00000000}},  //   röit, enái, _تديا,\n  { {0x9f58009f, 0xf778002b, 0xa247009e, 0x00000000}},  //   _varð_, qgħu_, _بیرل_,\n  { {0x61ed0089, 0xdb1a00c4, 0x5184078e, 0x00000000}},  //   mgal, _getú, _жура,\n  { {0x69cb04d4, 0x61ed2222, 0xfaa5007e, 0x00000000}},  //   _sege, lgal, пако,\n  { {0x81ce08b7, 0xfe73002c, 0x69cb0030, 0x00000000}},  //   _রাত_, _قدر_, _pege,\n  { {0xf77100a1, 0xefc80011, 0x78a30007, 0x00000000}},  //   ہاج_, _đỉnh_, _sinv,\n  { {0x7a3c009f, 0x386e0061, 0x69cb01cb, 0x00000000}},  //   _rétt, _bjfr_, _vege,\n  { {0xa2dc02d2, 0x69cb2705, 0x1bf203d7, 0x00000000}},  //   _फिल्, _wege, _घायल_,\n  { {0x69cb2706, 0x78a30203, 0xed590733, 0x00000000}},  //   _tege, _vinv, _vežu_,\n  { {0x63b50036, 0xaca30011, 0xd0140044, 0x00000000}},  //   eczn, _trồn, সায়_,\n  { {0x04b601e0, 0x61ed0190, 0x28f8007e, 0x00000000}},  //   ясня, dgal, _мець_,\n  { {0x25a92707, 0x00000000, 0x00000000, 0x00000000}},  //   _egal_,   ,   ,\n  { {0x25ad18e1, 0xdb1a00c4, 0x224b0009, 0x00000000}},  //   žela_, _setú, _blck_,\n  { {0xcb12007b, 0x61ed1840, 0x5756009b, 0x00000000}},  //   עלן_, ggal, _מבצע_,\n  { {0x9abc0066, 0x00000000, 0x00000000, 0x00000000}},  // [6a60] _irċe,   ,   ,\n  { {0x3ea4001a, 0xe0d700c2, 0x6616014a, 0x00000000}},  //   _simt_, яву_, _hayk,\n  { {0x645e2708, 0xe457007b, 0x7a3c00f4, 0x00000000}},  //   _impi, _זייט_, _métr,\n  { {0x7a3c0047, 0x2d84008e, 0x290d1519, 0x00000000}},  //   _létr, _pyme_, kwea_,\n  { {0x2ca5051d, 0x443a01bb, 0x6616028e, 0x00000000}},  //   _bild_, _kop_, _mayk,\n  { {0xb5fb2709, 0xed4f00a1, 0x68e9005b, 0x00000000}},  //   rnái, چھے_, dued,\n  { {0x443a0d0a, 0xaab800a6, 0x7f4a0025, 0x00000000}},  //   _mop_, زگار_, _الأق_,\n  { {0x443a0082, 0x6616000a, 0x2d840041, 0x00000000}},  //   _lop_, _nayk, _tyme_,\n  { {0xfce30057, 0x63b50046, 0x68e90016, 0x00000000}},  //   _пото, yczn, gued,\n  { {0x443a01ee, 0x7e620020, 0x61ed016e, 0x00000000}},  //   _nop_, liop, zgal,\n  { {0x7c280030, 0x7a3c00f4, 0x6616014a, 0x00000000}},  //   _indr, _détr, _bayk,\n  { {0x645e270a, 0x60d6270b, 0x7c3a0082, 0x00000000}},  //   _ampi, ksym, _hotr,\n  { {0x7aea01bf, 0xc983013b, 0xab5c0089, 0x00000000}},  //   luft, _пуши, _ceļv,\n  { {0x443a04bd, 0x7e620020, 0xb86606dd, 0x00000000}},  //   _cop_, hiop, _عاشو,\n  { {0x7c3a0065, 0x61ed0dec, 0x443a0007, 0x00000000}},  //   _motr, tgal, _dop_,\n  { {0x623401f9, 0x7c3a0173, 0x645e0781, 0x00000000}},  //   несу, _lotr, _empi,\n  { {0x61ed04e7, 0x764d0111, 0x443a01c3, 0x00000000}},  // [6a70] rgal, _ilay, _fop_,\n  { {0x7c3a270c, 0x443a016b, 0xc879001a, 0x00000000}},  //   _notr, _gop_, tuşi_,\n  { {0x61ed0010, 0x68e9270d, 0x2cad0133, 0x00000000}},  //   pgal, zued, _sued_,\n  { {0x7c2804d3, 0xf2d201ce, 0x7e620253, 0x00000000}},  //   _andr, _בעט_, giop,\n  { {0x2ab1029d, 0x7c3a0010, 0xd5fc0049, 0x00000000}},  //   _sáb_, _botr, מפאר,\n  { {0x7c3a0035, 0xa0a4007e, 0x443a00f6, 0x00000000}},  //   _cotr, _паўд, _xop_,\n  { {0xfbd00054, 0x764d047f, 0x09be0055, 0x00000000}},  //   اته_, _olay, _ইয়া,\n  { {0x7c280c64, 0x2ca500ab, 0xca06005e, 0x00000000}},  //   _endr, _wild_, днъж_,\n  { {0x2cad006c, 0x7a3c1776, 0x7c3a270e, 0x00000000}},  //   _uued_, _pétr, _fotr,\n  { {0xefc8001d, 0x764d0c04, 0x7c3a0022, 0x00000000}},  //   _định_, _alay, _gotr,\n  { {0x6e3b0341, 0x764d01aa, 0x443a00ca, 0x00000000}},  //   _koub, _blay, _rop_,\n  { {0x443a067c, 0x6e3b0007, 0x2b4f014a, 0x00000000}},  //   _sop_, _joub, ımcı_,\n  { {0x68e90555, 0x38b20016, 0x7a3c009d, 0x00000000}},  //   qued, _gâr_, _tétr,\n  { {0x6e3b00cc, 0x7d040477, 0x7e620032, 0x00000000}},  //   _loub, çisi, ziop,\n  { {0x64a3008b, 0x6383005e, 0x6e290056, 0x00000000}},  //   тара, вгра, _oneb,\n  { {0xd048005f, 0xe1fa007e, 0x2a6d0ab5, 0x00000000}},  //   ələr, ўга_, nneb_,\n  { {0x443a0866, 0x10a6004d, 0x321c013e, 0x00000000}},  // [6a80] _top_, диан, ěvy_,\n  { {0x645e0dc7, 0x6d420020, 0x6e2900b9, 0x00000000}},  //   _umpi, vyoa, _aneb,\n  { {0xdfcf023c, 0x60d604d3, 0x7e62078b, 0x00000000}},  //   شين_, ssym, tiop,\n  { {0x7c3a00d4, 0x6e3b00c4, 0x93ee00e8, 0x00000000}},  //   _sotr, _coub, _जाँच_,\n  { {0x7e62003b, 0x6e3b0549, 0x6da3005e, 0x00000000}},  //   riop, _doub, вица,\n  { {0x6e2905fe, 0x7e6200e7, 0x7c83007c, 0x00000000}},  //   _eneb, siop, куще,\n  { {0x7c3a0a8d, 0xce4a007e, 0x6e3b0173, 0x00000000}},  //   _votr, _дзве_, _foub,\n  { {0x2018020c, 0x39141074, 0xb5fb000c, 0x00000000}},  //   _hari_, емир, nnát,\n  { {0x93ee03d7, 0x201800b0, 0x3dc600e7, 0x00000000}},  //   _जांच_, _kari_, mbow_,\n  { {0x47340072, 0x7c280203, 0x2018206c, 0x00000000}},  //   енос, _undr, _jari_,\n  { {0x2018000d, 0x764d0038, 0x6e3b08ed, 0x00000000}},  //   _mari_, _play, _youb,\n  { {0x81e40055, 0x2018270f, 0x3dc60133, 0x00000000}},  //   প্ত_, _lari_, nbow_,\n  { {0x06ac0044, 0x25ad18e1, 0x00000000, 0x00000000}},  //   _কৌশি, želo_,   ,\n  { {0x36d40088, 0x201814ad, 0x32bb0025, 0x00000000}},  //   _зокр, _nari_, قدرة_,\n  { {0xddc20bf1, 0xd6cf041f, 0x02a70121, 0x00000000}},  //   znoš, _шт_, драм,\n  { {0x764d000b, 0xd5b80152, 0x9294007e, 0x00000000}},  //   _ulay, _ось_, васц,\n  { {0x20180207, 0x6e3b2710, 0x39442711, 0x00000000}},  // [6a90] _bari_, _roub, nyms_,\n  { {0xdfd12712, 0x6e3b0224, 0x2018027e, 0x00000000}},  //   ايا_, _soub, _cari_,\n  { {0x20180149, 0x6e3b009d, 0x2a6d005b, 0x00000000}},  //   _dari_, _poub, yneb_,\n  { {0xb05b03a9, 0x11eb023c, 0x20180288, 0x00000000}},  //   _städ, _بعدي_, _eari_,\n  { {0xe3a500a6, 0x20182713, 0xfce50081, 0x00000000}},  //   _تشکی, _fari_, холо,\n  { {0x2018000b, 0x6b882714, 0x6e3b01aa, 0x00000000}},  //   _gari_, _bydg, _woub,\n  { {0x6e3b1339, 0x45150044, 0x29061624, 0x00000000}},  //   _toub, ামিক_, _apoa_,\n  { {0xe9d901f9, 0x5f9401bd, 0x20180c4b, 0x00000000}},  //   чки_, _рист, _zari_,\n  { {0x5c750954, 0x20181dc0, 0x32190871, 0x00000000}},  //   _злат, _yari_, _masy_,\n  { {0xc052007b, 0x2a6d006c, 0x9f5800fa, 0x00000000}},  //   ָזט_, sneb_, _tarô_,\n  { {0x6fb20164, 0x22b811b9, 0xb5fb08aa, 0x00000000}},  //   _जलसं, _očka_, rián,\n  { {0xf6520a4f, 0xb21b0190, 0xb5fb2715, 0x00000000}},  //   ائد_, _skæn, sián,\n  { {0xe1ff000c, 0x00000000, 0x00000000, 0x00000000}},  //   _ljós_,   ,   ,\n  { {0x6f150036, 0x291f00e7, 0xd5ed0082, 0x00000000}},  //   _oszc, mvua_, _phạ,\n  { {0x20182716, 0xe29a0088, 0x00000000, 0x00000000}},  //   _rari_, зав_,   ,\n  { {0x2cbf0107, 0xb5fb2717, 0x00000000, 0x00000000}},  //   _otud_, niál,   ,\n  { {0x68fb2346, 0x20182718, 0x66040061, 0x00000000}},  // [6aa0] ntud, _pari_, _ibik,\n  { {0xb4fb00b6, 0x321900ab, 0x7524002d, 0x00000000}},  //   _צפיי, _easy_, _iriz,\n  { {0x20181bb6, 0x68fb006c, 0x7e2a007e, 0x00000000}},  //   _vari_, htud, зіла_,\n  { {0xee3a005e, 0x20181dc0, 0x3ce62719, 0x00000000}},  //   яне_, _wari_, trov_,\n  { {0xb5fb271a, 0x20181c56, 0xac18026b, 0x00000000}},  //   onár, _tari_, долу_,\n  { {0x60c40625, 0x67230087, 0x00000000, 0x00000000}},  //   mpim, _ornj,   ,\n  { {0x68fb06c2, 0x2cbf000a, 0x660400fa, 0x00000000}},  //   etud, _etud_, _obik,\n  { {0x3ce600f8, 0x7524054f, 0xbea3005e, 0x00000000}},  //   prov_, _oriz, _баск,\n  { {0xc8660216, 0x3f8a0016, 0x68fb271b, 0x00000000}},  //   етни, _hybu_, gtud,\n  { {0x1bba0025, 0x6604006c, 0x2a6a0010, 0x00000000}},  //   _رائع_, _abik, őbb_,\n  { {0x67230107, 0x7524271c, 0x442f0082, 0x00000000}},  //   _crnj, _ariz, _đg_,\n  { {0xb5fb0d7f, 0x21200091, 0xd0190044, 0x00000000}},  //   ciál, kvih_, ঠায়_,\n  { {0x7524001a, 0xdb080190, 0x3219271d, 0x00000000}},  //   _criz, _afdø, _rasy_,\n  { {0x62860047, 0x3495008b, 0x6604271e, 0x00000000}},  //   _akko, тагр, _ebik,\n  { {0xddc90209, 0x75240032, 0x00000000, 0x00000000}},  //   _lješ, _eriz,   ,\n  { {0x998d0bf8, 0x7524016e, 0xdb1a0065, 0x00000000}},  //   lješ_, _friz, _aftë,\n  { {0x60f903c8, 0x067c01f8, 0x660f0428, 0x00000000}},  // [6ab0] ьная_, _מנהל, meck,\n  { {0x660f0142, 0xb4dd0061, 0x661d03b4, 0x00000000}},  //   leck, डळी_, ldsk,\n  { {0x2cbf007f, 0xc885010f, 0x661d271f, 0x00000000}},  //   _stud_, äßig_, odsk,\n  { {0x661d004e, 0x660f0161, 0x00000000, 0x00000000}},  //   ndsk, neck,   ,\n  { {0xed58103e, 0x661d0168, 0x64480039, 0x00000000}},  //   ної_, idsk, ödig,\n  { {0x660f1440, 0x628d00b0, 0xdb18010e, 0x00000000}},  //   heck, llao, havõ,\n  { {0x998d0521, 0x6f150036, 0xa7fc006b, 0x00000000}},  //   dješ_, _uszc, hnıs,\n  { {0x660f16d0, 0x25ad050f, 0x661d2720, 0x00000000}},  //   jeck, želj_, jdsk,\n  { {0x660f05d2, 0xb5fb0161, 0x672300d0, 0x00000000}},  //   deck, riál, _srnj,\n  { {0x68fb01a3, 0x661d01d6, 0xb21b1f7d, 0x00000000}},  //   rtud, edsk, _skæl,\n  { {0x68fb009f, 0xdddb0224, 0xd90f00a1, 0x00000000}},  //   stud, _zkuš, شیں_,\n  { {0x672310f5, 0xcb12009b, 0x00000000, 0x00000000}},  //   _vrnj, _כלב_,   ,\n  { {0x69c901a2, 0x00000000, 0x00000000, 0x00000000}},  //   mbee,   ,   ,\n  { {0xe731069f, 0xa2e6007c, 0x69c9046a, 0x00000000}},  //   _نصب_, когд, lbee,\n  { {0xe73901fb, 0x660f0b77, 0x00000000, 0x00000000}},  //   _цей_, beck,   ,\n  { {0x26c50325, 0x69c900bb, 0x628d2721, 0x00000000}},  //   mplo_, nbee, glao,\n  { {0x21670407, 0x68e90213, 0x75240032, 0x00000000}},  // [6ac0] вити_, nred, _uriz,\n  { {0xddc90363, 0xdb1a01aa, 0x68e900c4, 0x00000000}},  //   _rješ, _metò, ired,\n  { {0x68e9018e, 0x7d090181, 0x26c501aa, 0x00000000}},  //   hred, _apes, nplo_,\n  { {0x68e92722, 0xddc90243, 0x60c42723, 0x00000000}},  //   kred, _pješ, ppim,\n  { {0x9cb30025, 0x68e90146, 0x69c901a2, 0x00000000}},  //   لمنت, jred, dbee,\n  { {0xddc90209, 0x68e90030, 0x69c901d6, 0x00000000}},  //   _vješ, dred, ebee,\n  { {0x661d0007, 0x501b0104, 0x67210521, 0x00000000}},  //   ydsk, _קולו, jvlj,\n  { {0x68e91c95, 0xf2d3009b, 0xddc9016e, 0x00000000}},  //   fred, בעה_, _tješ,\n  { {0x660f2724, 0x6da30242, 0x00000000, 0x00000000}},  //   veck, _вита,   ,\n  { {0x63bc0107, 0x8d5b0097, 0x660f2725, 0x00000000}},  //   jcrn, _חכמי, weck,\n  { {0x660f0161, 0x69c900d9, 0x6aab000a, 0x00000000}},  //   teck, bbee, _figf,\n  { {0x68e9068f, 0x3ce9089f, 0x7bd82726, 0x00000000}},  //   bred, šave_, lavu,\n  { {0x660f2727, 0x661d0056, 0x3dd70044, 0x00000000}},  //   reck, rdsk, _হামল,\n  { {0x661d001c, 0x7bd8006c, 0x26d80010, 0x00000000}},  //   sdsk, navu, áros_,\n  { {0xe5c721a6, 0x07f7089d, 0xa3d40061, 0x00000000}},  //   _испо, _شروع_, _हजर_,\n  { {0x35f5005e, 0x3547007e, 0x31c410d6, 0x00000000}},  //   _спир, _ахов, исув,\n  { {0x51871b67, 0x7bd800b0, 0x00000000, 0x00000000}},  // [6ad0] тува, kavu,   ,\n  { {0x88c40044, 0x7bd80142, 0x25be013e, 0x00000000}},  //   _এটাক, javu, ětle_,\n  { {0x1fa701fc, 0x68e9073a, 0xd251023c, 0x00000000}},  //   траг, zred, _هند_,\n  { {0x6d1e007d, 0x68e92728, 0xcf9800e2, 0x00000000}},  //   पिंग_, yred, тју_,\n  { {0xf1bf004a, 0x00000000, 0x00000000, 0x00000000}},  //   _ifá_,   ,   ,\n  { {0x68e9037e, 0xeb99051f, 0x7bd804fe, 0x00000000}},  //   vred, нил_, gavu,\n  { {0x9f3401fb, 0x8c4201e0, 0x69c90116, 0x00000000}},  //   _кері, сеще, tbee,\n  { {0x68e92729, 0x69c90270, 0x00000000, 0x00000000}},  //   tred, ubee,   ,\n  { {0x69c9049b, 0x8cbb007a, 0x7d09272a, 0x00000000}},  //   rbee, _آدرس_, _upes,\n  { {0x3ead00d9, 0x00000000, 0x00000000, 0x00000000}},  //   _hiet_,   ,   ,\n  { {0x68e901d9, 0x69c901d6, 0x628400e7, 0x00000000}},  //   sred, pbee, yoio,\n  { {0x68e90cce, 0x3ead0066, 0x2cac006b, 0x00000000}},  //   pred, _jiet_, _zidd_,\n  { {0x3ead0bdf, 0x00000000, 0x00000000, 0x00000000}},  //   _miet_,   ,   ,\n  { {0xfbe50055, 0x3ead00b5, 0x972513d9, 0x00000000}},  //   প্রত, _liet_, _مفتو,\n  { {0x91e60057, 0xc8a8005e, 0x00000000, 0x00000000}},  //   лове, _ръце_,   ,\n  { {0x3ead0662, 0x42550a27, 0x7bd8007f, 0x00000000}},  //   _niet_, атут, zavu,\n  { {0x7bd8013f, 0x628400e5, 0x00000000, 0x00000000}},  // [6ae0] yavu, roio,   ,\n  { {0x787d01aa, 0x3ead00f6, 0x00000000, 0x00000000}},  //   tèvy, _aiet_,   ,\n  { {0x93fb0476, 0x3ead0011, 0xc3fb0097, 0x00000000}},  //   _אליי, _biet_, _אליש,\n  { {0x221624d3, 0x7bd80020, 0x2d8d004a, 0x00000000}},  //   _сфор, wavu, _byee_,\n  { {0x7bd80387, 0xa076007c, 0x3ead0edd, 0x00000000}},  //   tavu, _бывш, _diet_,\n  { {0x61f60016, 0x644e0a5e, 0xcb1a00e2, 0x00000000}},  //   lgyl, nkbi, еќи_,\n  { {0x7bd80387, 0x81d70044, 0x09c50044, 0x00000000}},  //   ravu, _সাত_, _এয়া,\n  { {0x3ead0066, 0xcb070025, 0x61f6272b, 0x00000000}},  //   _giet_, ايين_, ngyl,\n  { {0x286a0242, 0xc7b00025, 0x644e00ea, 0x00000000}},  //   ерно_, يّة_, kkbi,\n  { {0x0d7504af, 0x3ead02ae, 0x224200ea, 0x00000000}},  //   _тыся, _ziet_, _lokk_,\n  { {0xfd500082, 0x80370049, 0x00000000, 0x00000000}},  //   _nghẽ, אניע_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x2a660bc0, 0x00000000, 0x00000000, 0x00000000}},  //   _imob_,   ,   ,\n  { {0x81ce0044, 0x00000000, 0x00000000, 0x00000000}},  //   _রাগ_,   ,   ,\n  { {0x56950265, 0x0464041f, 0x05150044, 0x00000000}},  //   _какт, стям, ামের_,\n  { {0xea010082, 0x00000000, 0x00000000, 0x00000000}},  //   _đẫy_,   ,   ,\n  { {0x3ead0116, 0x00000000, 0x00000000, 0x00000000}},  // [6af0] _riet_,   ,   ,\n  { {0x26de0dc9, 0x5d35009e, 0x00000000, 0x00000000}},  //   osto_, یفائ,   ,\n  { {0x3ead0168, 0x62580051, 0x22950088, 0x00000000}},  //   _piet_, _bíod, _виня,\n  { {0x518700e1, 0x9f5c00b9, 0x26de00b0, 0x00000000}},  //   _буга, ývá_, isto_,\n  { {0x3ead0011, 0x00000000, 0x00000000, 0x00000000}},  //   _viet_,   ,   ,\n  { {0x26de2301, 0x13d90044, 0xcb6900ed, 0x00000000}},  //   ksto_, _তাড়, кале_,\n  { {0x26de0e0d, 0x15e50061, 0x3ead272c, 0x00000000}},  //   jsto_, कणार_, _tiet_,\n  { {0x2f180088, 0xdb240010, 0x22420066, 0x00000000}},  //   _щось_, ásáh, _xokk_,\n  { {0x26de1ad2, 0x7e6b0058, 0x00000000, 0x00000000}},  //   esto_, migp,   ,\n  { {0x7d1b272d, 0x786500ed, 0x6fe001dc, 0x00000000}},  //   _isus, ркоз, mácí,\n  { {0x6d4b0006, 0xfb150167, 0xb064010f, 0x00000000}},  //   lyga, _خواج, lmäß,\n  { {0x7e6b0058, 0x366a003b, 0x00000000, 0x00000000}},  //   nigp, тамо_,   ,\n  { {0xb06401a2, 0x69db01a2, 0x00000000, 0x00000000}},  //   nmäß, maue,   ,\n  { {0xb05b0b5b, 0x7e6b011c, 0xa8790049, 0x00000000}},  //   _stän, higp, _שאַר,\n  { {0x7d1b0022, 0xb06401a2, 0x9676007e, 0x00000000}},  //   _lsus, hmäß, _выпі,\n  { {0x69db010f, 0x877a0049, 0x7546189c, 0x00000000}},  //   naue, _באצי, _вниз,\n  { {0x61f6032e, 0xe3b20464, 0x00000000, 0x00000000}},  // [6b00] rgyl, _ورد_,   ,\n  { {0x69db010f, 0x7bc101f3, 0x629d0288, 0x00000000}},  //   haue, _nflu, _ehso,\n  { {0x44440198, 0x7d1b0ac2, 0x2fd70014, 0x00000000}},  //   _io_, _asus, شوند_,\n  { {0x7bc106c0, 0xcee7007c, 0x72db009b, 0x00000000}},  //   _aflu, рдце_, _בקטג,\n  { {0x44440811, 0x69db010f, 0x55bb009b, 0x00000000}},  //   _ko_, daue, דמנו,\n  { {0xf1150049, 0x00000000, 0x00000000, 0x00000000}},  //   _פֿרי_,   ,   ,\n  { {0x44440811, 0xdb1a0047, 0xe3e9007b, 0x00000000}},  //   _mo_, _letö, אַפֿ,\n  { {0x4444156d, 0x3ce90091, 0x6d4b0240, 0x00000000}},  //   _lo_, šava_, byga,\n  { {0x4444272e, 0x3eb80133, 0x7bc1005b, 0x00000000}},  //   _oo_, _hurt_, _fflu,\n  { {0x6e20010f, 0xb8fe02d2, 0x7d02272f, 0x00000000}},  //   _hamb, _तब_, mtos,\n  { {0x6e20010a, 0x61e607ac, 0x69db010f, 0x00000000}},  //   _kamb, _odkl, baue,\n  { {0x44440907, 0x6e2006fe, 0xf76f01f7, 0x00000000}},  //   _ao_, _jamb, باً_,\n  { {0x444414d4, 0x7d020047, 0x6e20000b, 0x00000000}},  //   _bo_, ntos, _mamb,\n  { {0x44442730, 0x6e2004cb, 0xea010011, 0x00000000}},  //   _co_, _lamb, _đẩy_,\n  { {0x883b009b, 0x3267007e, 0x7d020052, 0x00000000}},  //   _בתגו, атав, htos,\n  { {0x6e200020, 0x09aa0044, 0xd258007e, 0x00000000}},  //   _namb, _গ্যা, ацу_,\n  { {0x44441cdf, 0x2fd80007, 0xdb1a01a2, 0x00000000}},  // [6b10] _fo_, _berg_, _getö,\n  { {0x44440195, 0x3eb8000c, 0xd7f8001a, 0x00000000}},  //   _go_, _burt_, ngă_,\n  { {0x6e201b3e, 0x3eb80129, 0x62580051, 0x00000000}},  //   _bamb, _curt_, _díob,\n  { {0x444403a6, 0x6e202731, 0x442101a3, 0x00000000}},  //   _zo_, _camb, _hah_,\n  { {0x44441631, 0x6e201f37, 0x442117f6, 0x00000000}},  //   _yo_, _damb, _kah_,\n  { {0x44210004, 0x44440082, 0xb5fb00c4, 0x00000000}},  //   _jah_, _xo_, ciáv,\n  { {0x64450023, 0x38bb0016, 0xb06401a2, 0x00000000}},  //   _mohi, _sêr_, smäß,\n  { {0x6e20020c, 0xe8f9012b, 0x44210127, 0x00000000}},  //   _gamb, гли_, _lah_,\n  { {0x7e690020, 0x69db0fa5, 0x97d90088, 0x00000000}},  //   _imep, raue, льну_,\n  { {0x6e201111, 0x4421023a, 0x69db2732, 0x00000000}},  //   _zamb, _nah_, saue,\n  { {0x4444000d, 0x9b950054, 0xab950054, 0x00000000}},  //   _ro_, _الات, _الاغ,\n  { {0x44442256, 0xb05b0073, 0x0656008b, 0x00000000}},  //   _so_, _stäl, стоў,\n  { {0x44212733, 0x69d90007, 0xc987003b, 0x00000000}},  //   _bah_, _iewe, _тужи,\n  { {0x6e22016e, 0x44210022, 0x2a6d0142, 0x00000000}},  //   zdob, _cah_, lieb_,\n  { {0x44440027, 0x7d020047, 0x44211444, 0x00000000}},  //   _vo_, ztos, _dah_,\n  { {0x4444001f, 0x69d92734, 0x2fd8000a, 0x00000000}},  //   _wo_, _jewe, _serg_,\n  { {0x44442735, 0x6e200149, 0x394d12c2, 0x00000000}},  // [6b20] _to_, _ramb, nyes_,\n  { {0x69d90343, 0x6e202736, 0xd12f0647, 0x00000000}},  //   _lewe, _samb, عمل_,\n  { {0x6e20006a, 0xb5fb03f0, 0x645c03df, 0x00000000}},  //   _pamb, riáv, mhri,\n  { {0x291d0263, 0x7d0201bc, 0x69d900ab, 0x00000000}},  //   _oswa_, ttos, _newe,\n  { {0x6e220211, 0x442110ed, 0x7e7b01c9, 0x00000000}},  //   rdob, _yah_, _djup,\n  { {0x7056004b, 0x7d022737, 0x22402738, 0x00000000}},  //   _انسا, rtos, ljik_,\n  { {0x6e2003d1, 0x69d909d6, 0xa6f20044, 0x00000000}},  //   _tamb, _bewe, _জন্ম_,\n  { {0x7d020e0a, 0x69d90390, 0x22400e0d, 0x00000000}},  //   ptos, _cewe, njik_,\n  { {0xed50009c, 0x3ebf0825, 0x69d900b4, 0x00000000}},  //   _تھا_, _čuti_, _dewe,\n  { {0xd7f8001a, 0x7c212739, 0x711b0049, 0x00000000}},  //   ugă_, _galr, נויפ,\n  { {0x4421273a, 0x3aeb0167, 0xd7f8001a, 0x00000000}},  //   _rah_, _مبنی_, rgă_,\n  { {0x69d90b72, 0x291a0123, 0x44210ea4, 0x00000000}},  //   _gewe, _مقصد_, _sah_,\n  { {0xa9670517, 0x7bda0734, 0xb05b0039, 0x00000000}},  //   _лица_, _ketu, _stäm,\n  { {0xe947026c, 0x7bda0065, 0x645c01a3, 0x00000000}},  //   _درمی, _jetu, ghri,\n  { {0x7bda010a, 0xb86501fa, 0x212b273b, 0x00000000}},  //   _metu, _بانو, _srch_,\n  { {0x44210169, 0x7bda000c, 0x22400065, 0x00000000}},  //   _wah_, _letu, gjik_,\n  { {0x313402d3, 0x62580051, 0x6445006c, 0x00000000}},  // [6b30] петр, _síoc, _tohi,\n  { {0x645c001f, 0x7bda010a, 0x44210035, 0x00000000}},  //   chri, _netu, _uah_,\n  { {0x6aba0022, 0x752d0062, 0x00000000, 0x00000000}},  //   _nutf, _hraz,   ,\n  { {0x752d0263, 0x7bda010e, 0x00000000, 0x00000000}},  //   _kraz, _aetu,   ,\n  { {0x7bda273c, 0x8c450aed, 0x69d90036, 0x00000000}},  //   _betu, желе, _rewe,\n  { {0x69d90007, 0x60cd01a3, 0x752d0161, 0x00000000}},  //   _sewe, mpam, _mraz,\n  { {0x7bda008e, 0x7c2100f8, 0x3cef0009, 0x00000000}},  //   _detu, _valr, srgv_,\n  { {0x7c2100d9, 0x752d0197, 0x7e690e1a, 0x00000000}},  //   _walr, _oraz, _umep,\n  { {0xa3d902fb, 0x2a6d0fd6, 0x60cd1eaf, 0x00000000}},  //   ारा_, rieb_, npam,\n  { {0x7bda273d, 0x60cd273e, 0x660d273f, 0x00000000}},  //   _getu, ipam, _abak,\n  { {0x752d2740, 0x69d90116, 0xa5bb03fd, 0x00000000}},  //   _araz, _tewe, rdón,\n  { {0xd0220055, 0xf5062015, 0x68ee0279, 0x00000000}},  //   নায়_, озмо, ündü,\n  { {0x645c018e, 0x37e50f40, 0x2bc602f4, 0x00000000}},  //   thri, _долг, रुवा,\n  { {0x752d003b, 0x660d0d49, 0x2bcf007d, 0x00000000}},  //   _draz, _ebak, _स्मा,\n  { {0x752d003b, 0x645c000c, 0x225201d6, 0x00000000}},  //   _eraz, rhri, tkyk_,\n  { {0x752d0bd7, 0x645c2741, 0x3160002d, 0x00000000}},  //   _fraz, shri, tziz_,\n  { {0x752d13f0, 0x645c0051, 0xa06a00c0, 0x00000000}},  // [6b40] _graz, phri, аааа_,\n  { {0x22591f7d, 0x00000000, 0x00000000, 0x00000000}},  //   _elsk_,   ,   ,\n  { {0x7bda0498, 0xef1a2742, 0x11d60025, 0x00000000}},  //   _retu, рме_, _وتحد,\n  { {0x7bda04cb, 0xb5fb2743, 0x1ea90380, 0x00000000}},  //   _setu, liár, ماني_,\n  { {0x7bda0169, 0x3ea60516, 0x00000000, 0x00000000}},  //   _petu, rmot_,   ,\n  { {0x98a600b9, 0x3cd9007e, 0x8c43003b, 0x00000000}},  //   _proč_, сьцю_, деље,\n  { {0x7bda000c, 0x2bc601f5, 0x629600e0, 0x00000000}},  //   _vetu, रुषा, olyo,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x998d014a, 0x4974041f, 0x00000000, 0x00000000}},  //   rdeş_, ялис,   ,\n  { {0x31370104, 0x29040a3b, 0xa7fc014a, 0x00000000}},  //   קנים_, rtma_, lnız,\n  { {0x752d2744, 0xb5fb0181, 0x2904010e, 0x00000000}},  //   _sraz, diár, stma_,\n  { {0x752d1de1, 0xe6670088, 0x00000000, 0x00000000}},  //   _praz, ітно,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xc1d3007d, 0xb5fb0e03, 0x752d0253, 0x00000000}},  //   तर्ग, giár, _vraz,\n  { {0x9f47038c, 0x6aa21b87, 0x22b80087, 0x00000000}},  //   ünü_, _khof, _očku_,\n  { {0x752d016c, 0x95cb053c, 0xa75b00b6, 0x00000000}},  //   _traz, _тука_, _כדור,\n  { {0x50f50057, 0x04100044, 0x51f8007e, 0x00000000}},  // [6b50] язат, ায়ী_, ўную_,\n  { {0xb5fb0181, 0x60cd008a, 0xea010082, 0x00000000}},  //   ciár, rpam, _đậy_,\n  { {0xb5fb0a87, 0x60cd00b4, 0x43950140, 0x00000000}},  //   mháb, spam, _ханс,\n  { {0x60cd044e, 0x6f0505ac, 0xa5bb000c, 0x00000000}},  //   ppam, rthc, kdóm,\n  { {0x26000204, 0xddc20036, 0x823a00a3, 0x00000000}},  //   ष्टी_, lkoś, _הערצ,\n  { {0x645500b5, 0x6aa20258, 0x00000000, 0x00000000}},  //   nkzi, _ahof,   ,\n  { {0x62580051, 0x7bc319e4, 0x00000000, 0x00000000}},  //   _míon, rcnu,   ,\n  { {0x6aa22745, 0x6258002a, 0x00000000, 0x00000000}},  //   _chof, _líon,   ,\n  { {0x2bcf02fb, 0x38ca0014, 0x6e940088, 0x00000000}},  //   _स्था, یایی_, _циту,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xb5fb0181, 0xdb1a0146, 0x00000000, 0x00000000}},  //   viár, _aftæ,   ,\n  { {0x62580051, 0x6aa20022, 0x00000000, 0x00000000}},  //   _aíon, _ghof,   ,\n  { {0x62580051, 0xdddb0059, 0x6aa90637, 0x00000000}},  //   _bíon, _okuž, mmef,\n  { {0xddc90209, 0xb5fb0010, 0x00000000, 0x00000000}},  //   _njež, gháb,   ,\n  { {0x4256004d, 0xa49b00f6, 0x00000000, 0x00000000}},  //   птат, ctòm,   ,\n  { {0xb21b0698, 0x56930184, 0x00000000, 0x00000000}},  //   _skær, _пајт,   ,\n  { {0xddc90243, 0x62580048, 0x00000000, 0x00000000}},  // [6b60] _bjež, _fíon,   ,\n  { {0xb4d804da, 0x00000000, 0x00000000, 0x00000000}},  //   ाठी_,   ,   ,\n  { {0x0dca0088, 0x389a0049, 0x00000000, 0x00000000}},  //   були_, ציענ,   ,\n  { {0x9e65023c, 0x00000000, 0x00000000, 0x00000000}},  //   وانن,   ,   ,\n  { {0xe3b200a6, 0xacf803e8, 0x00000000, 0x00000000}},  //   _ترک_, інку_,   ,\n  { {0x6aa20065, 0x00000000, 0x00000000, 0x00000000}},  //   _shof,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x201a0de5, 0x0f7b00a0, 0x9f5800c4, 0x00000000}},  //   lepi_, _האלב, _ecrã_,\n  { {0xd90e06c6, 0xbc660603, 0x15e3013d, 0x00000000}},  //   ایت_, _евак, _ख़बर_,\n  { {0xe78602be, 0x201a0d88, 0xa5bb000c, 0x00000000}},  //   зумо, nepi_, rdóm,\n  { {0x25a000af, 0x09db0044, 0x21270082, 0x00000000}},  //   _azil_, _ধারা, ̉nh_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x09aa0055, 0x3ce600ca, 0xb5fb0048, 0x00000000}},  //   _গ্রা, nsov_, tháb,\n  { {0x201a1a84, 0x00000000, 0x00000000, 0x00000000}},  //   jepi_,   ,   ,\n  { {0x92952746, 0xa295007e, 0xd25b1fa1, 0x00000000}},  //   давц, даві, бца_,\n  { {0xdddb016e, 0x00000000, 0x00000000, 0x00000000}},  //   _skuž,   ,   ,\n  { {0x64410934, 0x212f0048, 0x00000000, 0x00000000}},  // [6b70] ölis, ígh_,   ,\n  { {0x2fc7001d, 0x1fa70954, 0x00000000, 0x00000000}},  //   ùng_, прег,   ,\n  { {0xddc9016e, 0x7f19023c, 0xb5fb01ca, 0x00000000}},  //   _vjež, تياز_, chác,\n  { {0x13e20044, 0x00000000, 0x00000000, 0x00000000}},  //   _বায়,   ,   ,\n  { {0xf1ab007a, 0xece80088, 0x3ce6012d, 0x00000000}},  //   _داده_, зділ_, gsov_,\n  { {0x5fe1013d, 0x201a0035, 0x224b0145, 0x00000000}},  //   _फ़िल, cepi_, _hock_,\n  { {0x9aa500a1, 0x224b04d1, 0x6e67005e, 0x00000000}},  //   ومتو, _kock_, _етаж,\n  { {0x3a2600d9, 0x88c9030d, 0x7ae81fcd, 0x00000000}},  //   _caop_, олив_, _dvdt,\n  { {0x3a261856, 0x6aa9032e, 0x224b0a6b, 0x00000000}},  //   _daop_, rmef, _mock_,\n  { {0x6fb10061, 0x224b0edd, 0x6fdd013d, 0x00000000}},  //   _जणां, _lock_, यरिं,\n  { {0xcb5503ab, 0x00000000, 0x00000000, 0x00000000}},  //   _تناظ,   ,   ,\n  { {0x2cbf006c, 0xf3e9009b, 0x81d30044, 0x00000000}},  //   _kuud_, _כף_, হৃত_,\n  { {0x62580051, 0xb5fb00fa, 0x00000000, 0x00000000}},  //   _díol, riáp,   ,\n  { {0x2cbf006c, 0x68fb2747, 0xe8d6009b, 0x00000000}},  //   _muud_, muud, _חוסר_,\n  { {0x23270072, 0x224b01a2, 0x00000000, 0x00000000}},  //   мори_, _bock_,   ,\n  { {0x09b10044, 0x224b0339, 0xcb12009b, 0x00000000}},  //   _ট্যা, _cock_, כלל_,\n  { {0x201a0f7c, 0x998d002b, 0x224b0aa4, 0x00000000}},  // [6b80] tepi_, jjeż_, _dock_,\n  { {0x394200b0, 0x2bcf0061, 0x752404a5, 0x00000000}},  //   äksi_, सुमा, _isiz,\n  { {0x201a0059, 0x224b0203, 0x645e08a6, 0x00000000}},  //   repi_, _fock_, _ilpi,\n  { {0x90c6081e, 0x64920030, 0xf2d30104, 0x00000000}},  //   _обме, pæis, _שער_,\n  { {0x61e400b0, 0x60c9005f, 0x92d60044, 0x00000000}},  //   mail, _çemp, _সময়_,\n  { {0x13e20055, 0x61e400b0, 0x3dc61575, 0x00000000}},  //   _বাড়, lail, scow_,\n  { {0x443a07ec, 0x09e20044, 0x60c408b6, 0x00000000}},  //   _mnp_, _যাবা, lqim,\n  { {0x8fa3008b, 0x61e40051, 0x00000000, 0x00000000}},  //   _расе, nail,   ,\n  { {0x2bcf02fb, 0x60c2002a, 0x6723008d, 0x00000000}},  //   _स्वा, íomh, _asnj,\n  { {0x61e42748, 0x0c2603e8, 0x62580051, 0x00000000}},  //   hail, _імен, _síol,\n  { {0x7c3a0585, 0x61e4272e, 0x60c40065, 0x00000000}},  //   _intr, kail, hqim,\n  { {0x7c282749, 0x443a0ffb, 0x7e620116, 0x00000000}},  //   _hadr, _anp_, nhop,\n  { {0x61e40006, 0x443a274a, 0xb9560014, 0x00000000}},  //   dail, _bnp_, _تئات,\n  { {0x7c281144, 0x443a0035, 0x7c2a010f, 0x00000000}},  //   _jadr, _cnp_, ndfr,\n  { {0xc6140055, 0x61e40016, 0x7c280781, 0x00000000}},  //   িয়া_, fail, _madr,\n  { {0x7c28027b, 0x61e40fec, 0x645e0093, 0x00000000}},  //   _ladr, gail, _elpi,\n  { {0x7c3a274b, 0xa2940088, 0x7e6200f8, 0x00000000}},  // [6b90] _ontr, таті, dhop,\n  { {0xcf9b012b, 0x443a274c, 0xc1040076, 0x00000000}},  //   оје_, _gnp_, ئولي,\n  { {0x8335007b, 0x03d600b6, 0x61e40051, 0x00000000}},  //   _װאָס_, _אותם_, bail,\n  { {0x7c3a274d, 0x61e4002a, 0x28df0309, 0x00000000}},  //   _antr, cail, पीडि,\n  { {0x7c28274e, 0x644e0746, 0x6468006c, 0x00000000}},  //   _badr, žniš, _äriü,\n  { {0x7c28274f, 0x68fb00b0, 0x661d0052, 0x00000000}},  //   _cadr, vuud, hesk,\n  { {0x661d08b2, 0x60cf008e, 0x7c280678, 0x00000000}},  //   kesk, _htcm, _dadr,\n  { {0xdd9503c8, 0x7e620161, 0xa925013b, 0x00000000}},  //   _забы, chop, едил,\n  { {0x661d0056, 0x20010026, 0x6e3b0058, 0x00000000}},  //   desk, oghi_, _inub,\n  { {0x6258002a, 0x61e4022b, 0x1cb80014, 0x00000000}},  //   _ríom, zail, _قالب_,\n  { {0xe7390200, 0x68fb17f9, 0xd6ce089d, 0x00000000}},  //   чен_, suud, یقی_,\n  { {0x661d0007, 0x7c280091, 0x443a0142, 0x00000000}},  //   gesk, _zadr, _snp_,\n  { {0x61e42750, 0x443a0058, 0x668400a1, 0x00000000}},  //   vail, _pnp_, ٹیکل,\n  { {0x61ef0009, 0x7c2800c4, 0x68e90095, 0x00000000}},  //   _adcl, _xadr, msed,\n  { {0xa69602a8, 0x661d0209, 0x9696007c, 0x00000000}},  //   _приј, besk, _приш,\n  { {0x69c900b5, 0x20010197, 0x661d10f0, 0x00000000}},  //   ncee, eghi_, cesk,\n  { {0x61e4021e, 0x5f4600a1, 0x68e9068f, 0x00000000}},  // [6ba0] rail, کنال, nsed,\n  { {0x61e4022b, 0x443a0093, 0x20010026, 0x00000000}},  //   sail, _unp_, gghi_,\n  { {0x91e6017f, 0x61e400b0, 0x6e2919d2, 0x00000000}},  //   _поне, pail, _baeb,\n  { {0x7c280119, 0x6146025f, 0x68e92370, 0x00000000}},  //   _sadr, _зема, ksed,\n  { {0x7e620039, 0xd4690167, 0x60dd0016, 0x00000000}},  //   rhop, _رحیم_, _gwsm,\n  { {0x69cb049b, 0x68e907ac, 0x8c430069, 0x00000000}},  //   _afge, dsed, лече,\n  { {0x8fa300ed, 0x7e620471, 0x4f950888, 0x00000000}},  //   _баре, phop, _арту,\n  { {0x5a3400e3, 0x89382751, 0x0dc90025, 0x00000000}},  //   тнит, дпис_, _يبقى_,\n  { {0x81e50055, 0x27ee0032, 0x661d0deb, 0x00000000}},  //   _নাম_, _pdfn_, vesk,\n  { {0x473401f9, 0xbc6a0426, 0x7c3a03a1, 0x00000000}},  //   внос, _عمان_, _untr,\n  { {0x45d5189f, 0x661d002d, 0xa5f90269, 0x00000000}},  //   конс, tesk, мену_,\n  { {0xea01001d, 0xa3d30061, 0x69c92752, 0x00000000}},  //   _đầy_, हुन_, ccee,\n  { {0x661d0047, 0x94ab007e, 0x78b8002b, 0x00000000}},  //   resk, зтва_, _tivv,\n  { {0x661d08e0, 0xb5fb2753, 0x00000000, 0x00000000}},  //   sesk, chán,   ,\n  { {0x02a7005c, 0xb4b10061, 0xd25b01ee, 0x00000000}},  //   ерам, _ओळी_, пца_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7aea001c, 0x2cff02d2, 0xddc90035, 0x00000000}},  // [6bb0] hsft, _ईमेल_, _aleş,\n  { {0x6e3b00f8, 0x6e290026, 0x7688026d, 0x00000000}},  //   _snub, _saeb, rıye,\n  { {0x20010207, 0xf412009b, 0xddc900e5, 0x00000000}},  //   rghi_, _דפי_, _cleş,\n  { {0xa3d90164, 0x68e90016, 0xd130009e, 0x00000000}},  //   ारक_, ysed, جمے_,\n  { {0xddc92754, 0xdddb00e5, 0x7c2900e2, 0x00000000}},  //   _eleş, _ajuţ, долг_,\n  { {0x22490209, 0x00f60104, 0xeb9900d7, 0x00000000}},  //   ljak_, _במשך_, мил_,\n  { {0x7aea001c, 0x2bac0164, 0x00000000, 0x00000000}},  //   gsft, टेला,   ,\n  { {0x5f940264, 0x22492755, 0xcd42026c, 0x00000000}},  //   _сист, njak_, _چھوٹ,\n  { {0x69c900bb, 0x87f9007e, 0xee840a7c, 0x00000000}},  //   rcee, мэнт_, _сыро,\n  { {0x69c9001c, 0x68e9020c, 0x245400f8, 0x00000000}},  //   scee, rsed, _jämt_,\n  { {0xf7710084, 0x68e92756, 0x0a1503ab, 0x00000000}},  //   شاد_, ssed, _لواح,\n  { {0x68e905ad, 0xf1bf0048, 0x00000000, 0x00000000}},  //   psed, _ngá_,   ,\n  { {0xceb20476, 0x22492757, 0xb5fb0048, 0x00000000}},  //   ייט_, djak_, mhál,\n  { {0x5ed20055, 0xdb0d000c, 0x290d0035, 0x00000000}},  //   _হিসে, _þjóf, mtea_,\n  { {0x160a0061, 0xe29a0088, 0x91e60745, 0x00000000}},  //   _वापर_, дав_, кове,\n  { {0x3a2d12aa, 0x00000000, 0x00000000, 0x00000000}},  //   ndep_,   ,   ,\n  { {0xe2970265, 0x80c80055, 0x290d26c4, 0x00000000}},  // [6bc0] тат_, _লিঙ্, ntea_,\n  { {0xb21b0018, 0xb05b03a9, 0x290d1b86, 0x00000000}},  //   _hjæl, _stär, itea_,\n  { {0xe813001c, 0x52aa012b, 0x645c05d5, 0x00000000}},  //   त्या_, _овом_, mkri,\n  { {0x75361f00, 0xedf40014, 0x81e50044, 0x00000000}},  //   _kryz, ايشگ, _নাথ_,\n  { {0xb5fb0051, 0x00000000, 0x00000000, 0x00000000}},  //   dhál,   ,   ,\n  { {0x201e11ea, 0xe813007d, 0x00000000, 0x00000000}},  //   _úti_, त्मा_,   ,\n  { {0xbae3008b, 0xdee601ee, 0x00000000, 0x00000000}},  //   ацый, _шови,   ,\n  { {0x645c0065, 0x290d0035, 0xc7b811af, 0x00000000}},  //   hkri, ftea_, jeđa_,\n  { {0xfe91007a, 0x645c000c, 0xac0a00ed, 0x00000000}},  //   _اینج, kkri, _онаа_,\n  { {0xea01001d, 0x2249050f, 0x645c01d6, 0x00000000}},  //   _đấy_, zjak_, jkri,\n  { {0xb5fb0051, 0x3ffb009b, 0x645c17f1, 0x00000000}},  //   bhál, ופיע, dkri,\n  { {0xcf93009b, 0x7b790049, 0x645c01d6, 0x00000000}},  //   יטת_, _אָנצ, ekri,\n  { {0xd048005f, 0xda650379, 0x290d004a, 0x00000000}},  //   şlər, _حالي, ctea_,\n  { {0x645c0116, 0x491700a3, 0x00000000, 0x00000000}},  //   gkri, _סקול_,   ,\n  { {0xa2af0204, 0x20070129, 0x9484007e, 0x00000000}},  //   ंगल्, ònim_, рыяд,\n  { {0x75360036, 0x32640457, 0x31690032, 0x00000000}},  //   _fryz, атув, tzaz_,\n  { {0xe3e20044, 0xdddb0166, 0x75360a3d, 0x00000000}},  // [6bd0] _বারব, _njuš, _gryz,\n  { {0xc058008b, 0x645c03ce, 0x00000000, 0x00000000}},  //   кіх_, ckri,   ,\n  { {0x290d022b, 0x9df900ed, 0x76880276, 0x00000000}},  //   ztea_, енет_, lıya,\n  { {0x765d0263, 0xe0df01aa, 0x20070036, 0x00000000}},  //   nksy, _twò_, żni_,\n  { {0x7688005d, 0xa5bb004a, 0x00000000, 0x00000000}},  //   nıya, cdót,   ,\n  { {0xc1b80245, 0x9f4100f6, 0x00000000, 0x00000000}},  //   _шлях_, lahí_,   ,\n  { {0xeb961984, 0xb5fb0048, 0x00000000, 0x00000000}},  //   лиш_, thál,   ,\n  { {0x645c1701, 0x0b160025, 0x290d0032, 0x00000000}},  //   zkri, اقية_, ttea_,\n  { {0x3a2d0022, 0x00000000, 0x00000000, 0x00000000}},  //   rdep_,   ,   ,\n  { {0x290d22d5, 0xb21b0030, 0xe8f60147, 0x00000000}},  //   rtea_, _sjæl, ыль_,\n  { {0x290d22d5, 0xfc3003ab, 0xddc90235, 0x00000000}},  //   stea_, _بحق_, _zmeš,\n  { {0x290d001a, 0x98ad0059, 0x786400f6, 0x00000000}},  //   ptea_, mveč_, _ròve,\n  { {0x6d592758, 0x09b10044, 0x645c016e, 0x00000000}},  //   nywa, _ট্রা, tkri,\n  { {0x69db002d, 0x68fb00e7, 0x98790049, 0x00000000}},  //   lbue, mrud, _ראַט,\n  { {0x645c00b5, 0xe89800a1, 0x638600aa, 0x00000000}},  //   rkri, _جموں_, угва,\n  { {0x645c0292, 0x68fb1dce, 0x98a601ed, 0x00000000}},  //   skri, orud, _proć_,\n  { {0x645c0006, 0x614302dc, 0xa49b00f6, 0x00000000}},  // [6be0] pkri, бета, dròf,\n  { {0xa5bb000c, 0x7bc10048, 0xf8c80082, 0x00000000}},  //   rdót, _nglu, _hức_,\n  { {0xddc92759, 0xa5bb000c, 0x68fb0093, 0x00000000}},  //   _smeš, sdót, hrud,\n  { {0xe813007d, 0x7bc100d4, 0xdee3007c, 0x00000000}},  //   त्ता_, _aglu, соци,\n  { {0xf8c8001d, 0x68fb0190, 0x9f430173, 0x00000000}},  //   _mức_, jrud, _lejè_,\n  { {0x61e60fd1, 0xac1802e9, 0x68fb02ef, 0x00000000}},  //   _hekl, току_, drud,\n  { {0x260503d7, 0x1fb50057, 0x60c600e7, 0x00000000}},  //   _वाली_, _встр, _hukm,\n  { {0x628400b0, 0x6d590036, 0x7bc104a2, 0x00000000}},  //   nnio, bywa, _eglu,\n  { {0x61e6001e, 0x68fb0107, 0xddc908de, 0x00000000}},  //   _mekl, grud, _umeš,\n  { {0xad1b0104, 0x7d02010a, 0x60c6008a, 0x00000000}},  //   _אומר, muos, _mukm,\n  { {0xb8cb03d7, 0xf8c80011, 0x60c60093, 0x00000000}},  //   _की_, _bức_, _lukm,\n  { {0x69dd000c, 0x68fb0374, 0x6296275a, 0x00000000}},  //   ðset, brud, joyo,\n  { {0x55070642, 0x62840046, 0x4a7b0049, 0x00000000}},  //   ычна, dnio, _אראב,\n  { {0xd7ef012b, 0x62840036, 0x200a275b, 0x00000000}},  //   _ћу_, enio, _ncbi_,\n  { {0x61e6011f, 0x6d590036, 0x2cac0022, 0x00000000}},  //   _bekl, zywa, _mhdd_,\n  { {0x2018009d, 0x7d020006, 0x61e60022, 0x00000000}},  //   _abri_, kuos, _cekl,\n  { {0x61e623ab, 0x7d020006, 0xe6100025, 0x00000000}},  // [6bf0] _dekl, juos, _رشي_,\n  { {0x7d02275c, 0xb604013e, 0x61e600d9, 0x00000000}},  //   duos, rkář, _eekl,\n  { {0x7d1b0209, 0x6d59275d, 0x44230871, 0x00000000}},  //   _spus, wywa, mej_,\n  { {0x61e6275e, 0x44230027, 0xcf98012b, 0x00000000}},  //   _gekl, lej_, ују_,\n  { {0x7d02275f, 0x00000000, 0x00000000, 0x00000000}},  //   guos,   ,   ,\n  { {0x44230620, 0xed56013b, 0x6d590036, 0x00000000}},  //   nej_, рош_, rywa,\n  { {0x6d590036, 0x6e222760, 0x68e2000a, 0x00000000}},  //   sywa, beob, _awod,\n  { {0x68fb2145, 0x7f840054, 0x442303c4, 0x00000000}},  //   trud, _الفن, hej_,\n  { {0x442307e7, 0x0d67005e, 0xe40a006b, 0x00000000}},  //   kej_, _съвм, _çiçə,\n  { {0x7ae701fb, 0xf8c8001d, 0x44230620, 0x00000000}},  //   _бюдж, _sức_, jej_,\n  { {0x44230224, 0x366a004c, 0x62842761, 0x00000000}},  //   dej_, вано_, ynio,\n  { {0x68fb06c2, 0x44310089, 0x212b00d9, 0x00000000}},  //   prud, edz_, _osch_,\n  { {0x9f43008e, 0x249a0022, 0x00000000, 0x00000000}},  //   _dejé_, _pkpm_,   ,\n  { {0x61e6002b, 0x052700ed, 0x38ab01e3, 0x00000000}},  //   _sekl, јорк_, føre_,\n  { {0x46a61364, 0xf8c8001d, 0xf66a03ec, 0x00000000}},  //   _какв, _tức_, _لحظه_,\n  { {0xb22600ed, 0x7688014a, 0xb3470181, 0x00000000}},  //   јмал, mıyo, _seçõ,\n\n  { {0x7688011f, 0x44231a2d, 0x62840205, 0x00000000}},  // [6c00] lıyo, bej_, rnio,\n  { {0x27e701aa, 0xa49b04bd, 0x44232762, 0x00000000}},  //   _jenn_, stòr, cej_,\n  { {0x27e70fdc, 0x26c72467, 0x93fb0097, 0x00000000}},  //   _menn_, _juno_, _בליי,\n  { {0xed5a2763, 0x7d020006, 0xf8c80011, 0x00000000}},  //   кое_, tuos, _lứa_,\n  { {0x1bd4005e, 0x26c700ca, 0x6e220087, 0x00000000}},  //   боля, _luno_, reob,\n  { {0x7c23068a, 0x7d02143d, 0x5c730088, 0x00000000}},  //   genr, ruos, оліт,\n  { {0xb5fb015f, 0x26c700c4, 0x7d020ecb, 0x00000000}},  //   nkác, _nuno_, suos,\n  { {0x44230046, 0x68e20263, 0xeb97003b, 0x00000000}},  //   zej_, _pwod, јић_,\n  { {0x7c232764, 0x48aa0a33, 0x7d020026, 0x00000000}},  //   benr, ктом_, quos,\n  { {0xb5fb0051, 0xe8060061, 0x26c70009, 0x00000000}},  //   mhái, _शाळा_, _buno_,\n  { {0x27e7001f, 0x44230027, 0x2bcf02fb, 0x00000000}},  //   _denn_, vej_, _स्टा,\n  { {0x44230046, 0x6f030129, 0x62580051, 0x00000000}},  //   wej_, ànci, _míos,\n  { {0x44230027, 0x768801df, 0x27e70010, 0x00000000}},  //   tej_, mıyl, _fenn_,\n  { {0x2904001e, 0x27e72765, 0x25a90062, 0x00000000}},  //   muma_, _genn_, _vzal_,\n  { {0x44230cce, 0x29040459, 0x44310142, 0x00000000}},  //   rej_, luma_, rdz_,\n  { {0xd7bb00b6, 0x442301a3, 0x7c2300d9, 0x00000000}},  //   _בצור, sej_, zenr,\n  { {0x4423002b, 0x29042766, 0x00000000, 0x00000000}},  // [6c10] pej_, numa_,   ,\n  { {0xb5fb0051, 0x44230065, 0x3ead18a4, 0x00000000}},  //   dhái, qej_, _shet_,\n  { {0x2904000b, 0x7c2300bb, 0x62580051, 0x00000000}},  //   huma_, venr, _cíos,\n  { {0x2904001e, 0xf2d2009b, 0x62580051, 0x00000000}},  //   kuma_, _מעט_, _díos,\n  { {0x2904001e, 0x61ed0cfc, 0x7c23054e, 0x00000000}},  //   juma_, maal, tenr,\n  { {0x2904000b, 0x61ed1fc7, 0xa3be006e, 0x00000000}},  //   duma_, laal, ुँच_,\n  { {0x2a6621b3, 0x27e700ea, 0x7c2301a2, 0x00000000}},  //   _blob_, _renn_, renr,\n  { {0xb5fb002a, 0x61ed0cfc, 0x3209011c, 0x00000000}},  //   bhái, naal, ngay_,\n  { {0x29041e8f, 0xb5fb002a, 0x7c23021f, 0x00000000}},  //   guma_, chái, penr,\n  { {0x26c7011c, 0x61ed00b5, 0x7688014a, 0x00000000}},  //   _puno_, haal, tıyo,\n  { {0x2bdd02f4, 0x61ed2767, 0x24982768, 0x00000000}},  //   _न्या, kaal, vorm_,\n  { {0x27e7001f, 0x6b7a0049, 0x2904016e, 0x00000000}},  //   _wenn_, _גרענ, buma_,\n  { {0x1e3a007b, 0x29040089, 0x61ed044e, 0x00000000}},  //   אגרא, cuma_, daal,\n  { {0xa3d3007d, 0x7688014a, 0x43f9007c, 0x00000000}},  //   हुल_, pıyo, ихся_,\n  { {0xe79a00b9, 0x9359007e, 0x61ed0dd7, 0x00000000}},  //   _těší, арту_, faal,\n  { {0xe81302d2, 0x5756009b, 0x61ed2769, 0x00000000}},  //   त्रा_, _לבצע_, gaal,\n  { {0x41aa00e3, 0x61430867, 0xc69300a0, 0x00000000}},  // [6c20] уван_, пета, _מאה_,\n  { {0x629d0089, 0x62580051, 0x00000000, 0x00000000}},  //   _ekso, _píos,   ,\n  { {0x61ed05e0, 0x20b9007c, 0xa3b4007d, 0x00000000}},  //   baal, рыть_, जेश_,\n  { {0x4444276a, 0x2904276b, 0xb5fb0051, 0x00000000}},  //   _hn_, yuma_, thái,\n  { {0x44440209, 0x62580051, 0xfff802fd, 0x00000000}},  //   _kn_, _fíor, _نکات_,\n  { {0x444409ac, 0x2904276c, 0x00000000, 0x00000000}},  //   _jn_, vuma_,   ,\n  { {0x44440e6d, 0x907b007b, 0x3a240066, 0x00000000}},  //   _mn_, _עטלי, temp_,\n  { {0x290412bd, 0xb5fb276d, 0x00000000, 0x00000000}},  //   tuma_, phái,   ,\n  { {0x4444167c, 0x768801df, 0x7e620089, 0x00000000}},  //   _on_, rıyl, mkop,\n  { {0x4444225f, 0x768801df, 0x7e620036, 0x00000000}},  //   _nn_, sıyl, lkop,\n  { {0x2904002d, 0xa09b0097, 0xab960025, 0x00000000}},  //   suma_, רייט, _الضغ,\n  { {0x4444276e, 0x656f01a2, 0x00000000, 0x00000000}},  //   _an_, tzch,   ,\n  { {0x444401a3, 0x61ed115d, 0x2c6b0056, 0x00000000}},  //   _bn_, vaal, _fødd_,\n  { {0x81e50055, 0x5ed90055, 0x4444276f, 0x00000000}},  //   _নাই_, _ডিসে, _cn_,\n  { {0x44442770, 0x61ed02ae, 0xa3d800e8, 0x00000000}},  //   _dn_, taal, ाड़_,\n  { {0xe5c7013b, 0x62580048, 0x7e6200bb, 0x00000000}},  //   _уско, _síor, jkop,\n  { {0x61ed003c, 0x7e6200b5, 0x9055017f, 0x00000000}},  // [6c30] raal, dkop, овац,\n  { {0x444414ad, 0x61ed00b0, 0x21290022, 0x00000000}},  //   _gn_, saal, rwah_,\n  { {0x61ed02ae, 0x644500ab, 0x2c6b0056, 0x00000000}},  //   paal, _inhi, _jøde_,\n  { {0x44440161, 0x2c6b0030, 0x443301f3, 0x00000000}},  //   _zn_, _møde_, _hax_,\n  { {0x44442771, 0x62580051, 0xccfb003b, 0x00000000}},  //   _yn_, _tíor, уће_,\n  { {0x443301d6, 0x351c009b, 0x44440082, 0x00000000}},  //   _jax_, טודנ, _xn_,\n  { {0x645704d2, 0xb21b0190, 0x00000000, 0x00000000}},  //   _moxi, _djæv,   ,\n  { {0x44330479, 0x9f430224, 0x7e622772, 0x00000000}},  //   _lax_, _její_, ckop,\n  { {0x4433004a, 0x00000000, 0x00000000, 0x00000000}},  //   _oax_,   ,   ,\n  { {0x64570719, 0xd83801aa, 0x386c0009, 0x00000000}},  //   _noxi, blčm_, ghdr_,\n  { {0xf6260373, 0x44440181, 0x7e690059, 0x00000000}},  //   одно, _rn_, _klep,\n  { {0xa3bf007d, 0x9f4a0181, 0x3cf0013d, 0x00000000}},  //   ेशन_, _bebê_, ुंचे_,\n  { {0x4433006b, 0x1c1e013d, 0x645714f4, 0x00000000}},  //   _bax_, _मॉडल_, _boxi,\n  { {0x66e50265, 0xe739026b, 0x81c10044, 0x00000000}},  //   _дока, _век_, ুরা_,\n  { {0x444400ad, 0xa3b403d7, 0x42560256, 0x00000000}},  //   _vn_, जें_, отат,\n  { {0x4444005b, 0x644500e0, 0xb5fb2773, 0x00000000}},  //   _wn_, _enhi, lkán,\n  { {0x44441287, 0x394d00d4, 0x7e6200ca, 0x00000000}},  // [6c40] _tn_, nxes_, vkop,\n  { {0xa3eb0316, 0x394d0129, 0x00000000, 0x00000000}},  //   मरण_, ixes_,   ,\n  { {0x7e69098e, 0x00000000, 0x00000000, 0x00000000}},  //   _blep,   ,   ,\n  { {0x614600ed, 0x44330035, 0xf3f10082, 0x00000000}},  //   _дема, _zax_, ực_,\n  { {0x7e6200b5, 0xbc4a012b, 0xff0a0044, 0x00000000}},  //   rkop, ичке_, রবেশ_,\n  { {0x7e622774, 0xdee60264, 0x653b0049, 0x00000000}},  //   skop, _моги, יענד,\n  { {0x7e621a85, 0xbb4300e2, 0x00000000, 0x00000000}},  //   pkop, дејк,   ,\n  { {0x2c6b01e3, 0x1fa70088, 0xdb01009d, 0x00000000}},  //   _røde_, _єкти_, _mylè,\n  { {0xf98f00a1, 0x2c6b0030, 0xbe130355, 0x00000000}},  //   ہبی_, _søde_, _توقع,\n  { {0x3ea62775, 0x7d020093, 0x7e690161, 0x00000000}},  //   llot_, mros, _zlep,\n  { {0x7d0200f8, 0xd8380059, 0x7bc800e0, 0x00000000}},  //   lros, joče_, _igdu,\n  { {0x3ea60093, 0x7d020275, 0x8f9b009b, 0x00000000}},  //   nlot_, oros, שיטי,\n  { {0x7d02069a, 0x00000000, 0x00000000, 0x00000000}},  //   nros,   ,   ,\n  { {0x7d0200fa, 0x00000000, 0x00000000, 0x00000000}},  //   iros,   ,   ,\n  { {0xd83801d9, 0x443300f8, 0x23650010, 0x00000000}},  //   goče_, _vax_, álj_,\n  { {0x44f5003b, 0x26de09fb, 0x47890451, 0x00000000}},  //   _епис, mpto_, _усім_,\n  { {0x44331eef, 0x3ea62776, 0x1ad60044, 0x00000000}},  // [6c50] _tax_, dlot_, সওয়া,\n  { {0x30a7007e, 0xd83800ca, 0xa25b0082, 0x00000000}},  //   ірав, ločb_, _giôn,\n  { {0xd25000a1, 0x7d0208a6, 0xa2c40061, 0x00000000}},  //   رنے_, eros, _ांच्,\n  { {0xb5fb0802, 0x3ea601c5, 0x05af0061, 0x00000000}},  //   chát, glot_, _घराब,\n  { {0x7d022777, 0x61e20211, 0xb3bd0044, 0x00000000}},  //   gros, ñole, _অভিজ,\n  { {0xc6270044, 0x00000000, 0x00000000, 0x00000000}},  //   যাটা_,   ,   ,\n  { {0x3ea616cc, 0x7d020026, 0x00000000, 0x00000000}},  //   blot_, aros,   ,\n  { {0x6d5c005f, 0x7e7b2778, 0x7e690c02, 0x00000000}},  //   _əraz, _umup, _ulep,\n  { {0xb5fb245b, 0x13a8007d, 0x225900e0, 0x00000000}},  //   tkán, _गर्भ, _mosk_,\n  { {0x394d0129, 0x9f4a0c42, 0x395f1d8b, 0x00000000}},  //   rxes_, _bebè_, ryus_,\n  { {0xf7450088, 0x786d000c, 0x38ab0030, 0x00000000}},  //   чено, _núve, børn_,\n  { {0xeaae0088, 0xb5fb00b9, 0x00000000, 0x00000000}},  //   _їй_, skán,   ,\n  { {0xd94509bb, 0xe79a00b9, 0x09e20044, 0x00000000}},  //   _хели, _měří, _যাচা,\n  { {0xa7fc014a, 0x00000000, 0x00000000, 0x00000000}},  //   lkın,   ,   ,\n  { {0x69d2001c, 0xb5fb0051, 0x43430745, 0x00000000}},  //   णुकी, thát, нерв,\n  { {0xa7fc0477, 0xb5fb0010, 0xcfe80044, 0x00000000}},  //   nkın, nkál, _পাইন,\n  { {0xdfd20025, 0xf0ba00a1, 0xb5fb05ee, 0x00000000}},  // [6c60] فيذ_, مائش_, rhát,\n  { {0xd3e402fd, 0xb5fb2779, 0x6281009d, 0x00000000}},  //   _تقدی, shát, élor,\n  { {0xa7fc011f, 0xd00f01af, 0xef1a003b, 0x00000000}},  //   kkın, الم_, сме_,\n  { {0x442a1c0b, 0x7d020059, 0x443821b3, 0x00000000}},  //   leb_, tros, ldr_,\n  { {0x61e40145, 0x3ea600ea, 0xdca601fc, 0x00000000}},  //   mbil, rlot_, пади,\n  { {0x7d0200b0, 0x61e4277a, 0x442a165a, 0x00000000}},  //   rros, lbil, neb_,\n  { {0x3ea6277b, 0x7d02277c, 0xb21b00ea, 0x00000000}},  //   plot_, sros, _gjæs,\n  { {0x7d020292, 0x442a277d, 0xdb0f000c, 0x00000000}},  //   pros, heb_, _ódýr,\n  { {0x61e40197, 0xb21b043e, 0x442a0085, 0x00000000}},  //   ibil, _kjær, keb_,\n  { {0x9873007c, 0x6d40065a, 0x645a00b0, 0x00000000}},  //   ельц, _irma, ötil,\n  { {0x1faa03d7, 0x7c2a0606, 0x442a018e, 0x00000000}},  //   _करोड, mefr, deb_,\n  { {0x7c2a0030, 0xfb87026c, 0x7c380116, 0x00000000}},  //   lefr, _عدلی, ldvr,\n  { {0x442a005b, 0x00000000, 0x00000000, 0x00000000}},  //   feb_,   ,   ,\n  { {0x27e900ad, 0x442a01f3, 0x7c2a0197, 0x00000000}},  //   _đang_, geb_, nefr,\n  { {0x75240213, 0x85570014, 0xc5ec0044, 0x00000000}},  //   _epiz, زیگر_, _কারা_,\n  { {0x6d40277e, 0xfbdf001d, 0x61e4011c, 0x00000000}},  //   _orma, _đêm_, gbil,\n  { {0xd49b0805, 0x442a277f, 0x7c2a0190, 0x00000000}},  // [6c70] _грн_, beb_, kefr,\n  { {0x61e40207, 0x81e50044, 0x661d01a2, 0x00000000}},  //   abil, _নাও_, lfsk,\n  { {0x61e401d5, 0x06e00044, 0x7c2a0190, 0x00000000}},  //   bbil, _ভিডি, defr,\n  { {0x8d7400a1, 0x6d400085, 0x00000000, 0x00000000}},  //   کاما, _brma,   ,\n  { {0xc7b80119, 0x44210030, 0x2f150039, 0x00000000}},  //   među_, _kbh_, såg_,\n  { {0x7c2a0c53, 0x60dd00d9, 0x2904016c, 0x00000000}},  //   gefr, _itsm, drma_,\n  { {0xff040783, 0x44212780, 0x2c0e0061, 0x00000000}},  //   _пятн, _mbh_, _सारं_,\n  { {0xac77007a, 0x442a2781, 0x628d006c, 0x00000000}},  //   _کارش, zeb_, nnao,\n  { {0x61ef014a, 0x6d402782, 0xa7fc005a, 0x00000000}},  //   _mecl, _grma, rkın,\n  { {0x60c701aa, 0xa3bf006e, 0x27ee0016, 0x00000000}},  //   _jijm, ेशा_, _cefn_,\n  { {0x752f0046, 0x61e40030, 0x61fd0a0f, 0x00000000}},  //   ewcz, ybil, _odsl,\n  { {0x442a0129, 0x61ef149f, 0x60c700bb, 0x00000000}},  //   web_, _necl, _lijm,\n  { {0x442a2783, 0xe577007e, 0x6aa90009, 0x00000000}},  //   teb_, дзя_, mlef,\n  { {0x6aa90039, 0x60c700b5, 0x61fd004a, 0x00000000}},  //   llef, _nijm, _adsl,\n  { {0x61e42784, 0x44210032, 0x44380146, 0x00000000}},  //   tbil, _dbh_, rdr_,\n  { {0x442a0ab5, 0x6aa90050, 0xd2aa007e, 0x00000000}},  //   seb_, nlef, ікае_,\n  { {0x61e41103, 0x8ffa05d4, 0x61ef0585, 0x00000000}},  // [6c80] rbil, قرار_, _decl,\n  { {0x61e4010f, 0x442100d2, 0x00000000, 0x00000000}},  //   sbil, _gbh_,   ,\n  { {0x69cb2785, 0xee3a0407, 0x68e4002b, 0x00000000}},  //   _ogge, жне_, _ħidm,\n  { {0x0d860425, 0xdee300ed, 0x7c2a0016, 0x00000000}},  //   млен, тоци, wefr,\n  { {0x7c2a010f, 0xdddb012d, 0x6aa90045, 0x00000000}},  //   tefr, _fjuž, dlef,\n  { {0x69cb0207, 0x69d901b5, 0x6aa201d6, 0x00000000}},  //   _agge, _afwe, _skof,\n  { {0x7d0b0006, 0xd8380059, 0x2ea900a1, 0x00000000}},  //   augs, joča_, _کھلی_,\n  { {0x6aa908e0, 0x7d0b149e, 0x26ce0249, 0x00000000}},  //   glef, bugs, _rufo_,\n  { {0x6d402786, 0x00000000, 0x00000000, 0x00000000}},  //   _urma,   ,   ,\n  { {0x69cb000c, 0x6c8604e8, 0x0c231281, 0x00000000}},  //   _egge, _غلام, _имун,\n  { {0xd8380059, 0x6aa92787, 0x78a80145, 0x00000000}},  //   goča_, blef, rldv,\n  { {0x6aa90045, 0x786400f6, 0x00000000, 0x00000000}},  //   clef, _mòvi,   ,\n  { {0x9f410051, 0x661d000c, 0x442100fa, 0x00000000}},  //   rbhé_, rfsk, _pbh_,\n  { {0x26ce0026, 0x61ef032c, 0x00000000, 0x00000000}},  //   _tufo_, _secl,   ,\n  { {0x7d0b2788, 0xb8650426, 0x786400f6, 0x00000000}},  //   zugs, _ثانو, _nòvi,\n  { {0x6aa00039, 0xe5c7025f, 0x96fb009b, 0x00000000}},  //   nomf, _оспо, _ולהת,\n  { {0x61e2008e, 0x00000000, 0x00000000, 0x00000000}},  // [6c90] ñola,   ,   ,\n  { {0xa7fc014a, 0x44212789, 0x00000000, 0x00000000}},  //   kkım, _ubh_,   ,\n  { {0x61ef0325, 0x6aa001a2, 0x60c70023, 0x00000000}},  //   _tecl, komf, _vijm,\n  { {0x7bda009f, 0xd13000a1, 0x61fd0190, 0x00000000}},  //   _aftu, دمے_, _udsl,\n  { {0x26c90058, 0x6aa9000f, 0x60dd278a, 0x00000000}},  //   _miao_, vlef, _utsm,\n  { {0x7d0b0bcb, 0x6aa90009, 0xc6230044, 0x00000000}},  //   rugs, wlef, _বোমা_,\n  { {0x6aa9278b, 0xfaa5041f, 0xa7fc014a, 0x00000000}},  //   tlef, нако, rkıl,\n  { {0xa49b00d4, 0x00000000, 0x00000000, 0x00000000}},  //   dròm,   ,   ,\n  { {0x6aa90009, 0x6abb0146, 0x00000000, 0x00000000}},  //   rlef, rmuf,   ,\n  { {0x6aa900f8, 0x44ed1238, 0x6d8a00a1, 0x00000000}},  //   slef, dž_, _عملہ_,\n  { {0x6aa90061, 0x25a90022, 0x26c90288, 0x00000000}},  //   plef, _ayal_, _biao_,\n  { {0x26c90198, 0x4975003b, 0xd8380059, 0x00000000}},  //   _ciao_, _плес, roča_,\n  { {0x26c90203, 0x46cf0061, 0x6c760082, 0x00000000}},  //   _diao_, _सूरह, _hànộ,\n  { {0xe1ff0010, 0x6c790049, 0x3a2d0aba, 0x00000000}},  //   _adó_, לאָפ, leep_,\n  { {0xe0df01aa, 0xa49b00f6, 0x366a0140, 0x00000000}},  //   _atò_, cròm, _нако_,\n  { {0x26c9001d, 0xe0da0265, 0x09c30044, 0x00000000}},  //   _giao_, зва_, _এ্যা,\n  { {0x41270200, 0xd5b2006d, 0xd12f00a1, 0x00000000}},  // [6ca0] ното_, _حفظ_, یمہ_,\n  { {0x80a60070, 0xfe0d013d, 0x00000000, 0x00000000}},  //   رمان, _हाउस_,   ,\n  { {0xb4be0164, 0x656601d6, 0x6aa000e7, 0x00000000}},  //   ेदी_, lykh, yomf,\n  { {0x2bdd0164, 0x443a278c, 0x35a5013d, 0x00000000}},  //   नुसा, _hap_, _गुड़,\n  { {0x443a0263, 0x3a2d0719, 0xb7bc0089, 0x00000000}},  //   _kap_, deep_, reģi,\n  { {0x443a24d6, 0x61f6014a, 0x645e00ca, 0x00000000}},  //   _jap_, layl, _jopi,\n  { {0xa3b40061, 0x6aa000ea, 0x00000000, 0x00000000}},  //   जेच_, tomf,   ,\n  { {0x443a278d, 0x645e01aa, 0x00000000, 0x00000000}},  //   _lap_, _lopi,   ,\n  { {0x6aa0278e, 0x999800b9, 0xec7a02b3, 0x00000000}},  //   romf, ěrů_, _епа_,\n  { {0x443a278d, 0x645e001e, 0x49730b5f, 0x00000000}},  //   _nap_, _nopi, ульс,\n  { {0x7c3a00e0, 0x25a90093, 0x25ac006b, 0x00000000}},  //   _iatr, _syal_, ədli_,\n  { {0x7c3a278f, 0x443a0116, 0x7688014a, 0x00000000}},  //   _hatr, _aap_, dıys,\n  { {0x7c3a001e, 0xb1120044, 0x443a0093, 0x00000000}},  //   _katr, হবুব_, _bap_,\n  { {0x443a04bd, 0x7c3a1e36, 0x69dc0036, 0x00000000}},  //   _cap_, _jatr, śred,\n  { {0x645e0036, 0x083b00a3, 0x43940849, 0x00000000}},  //   _dopi, _מעגל, гарс,\n  { {0x7c3a10d1, 0x443a2790, 0x32c70016, 0x00000000}},  //   _latr, _eap_, _gŵyl_,\n  { {0x764d000b, 0x443a0f75, 0x9f4a004a, 0x00000000}},  // [6cb0] _inay, _fap_, _debí_,\n  { {0x7c3a12da, 0x249700a1, 0x443a0a60, 0x00000000}},  //   _natr, _سمجھ_, _gap_,\n  { {0xdea1025a, 0x61f60095, 0x00000000, 0x00000000}},  //   لیسی, bayl,   ,\n  { {0xa2d602fb, 0x78a12791, 0x443a00c4, 0x00000000}},  //   _मंत्, zolv, _zap_,\n  { {0x443a2792, 0x7c3a1567, 0x764d00e7, 0x00000000}},  //   _yap_, _batr, _mnay,\n  { {0x7c3a2793, 0xc4d40049, 0x443a0009, 0x00000000}},  //   _catr, אגס_, _xap_,\n  { {0x78a11044, 0x764d014a, 0x7c3a0016, 0x00000000}},  //   volv, _onay, _datr,\n  { {0xcff60044, 0x0b880025, 0x7c3a0048, 0x00000000}},  //   _চায়_, عضوي_, _eatr,\n  { {0x3a2d0116, 0x7c3a15d8, 0xdb0801dc, 0x00000000}},  //   reep_, _fatr, _vzdá,\n  { {0x29032794, 0x764d187c, 0x20130066, 0x00000000}},  //   čja_, _anay, ngxi_,\n  { {0x6e3b2795, 0x443a0011, 0x25c7005f, 0x00000000}},  //   _kaub, _rap_, ətlə_,\n  { {0x443a0129, 0x7c3a2145, 0x645e021e, 0x00000000}},  //   _sap_, _zatr, _sopi,\n  { {0x645e2796, 0x443a0263, 0x6e3b0f91, 0x00000000}},  //   _popi, _pap_, _maub,\n  { {0x232a01fb, 0x68fb2797, 0x6e3b01a2, 0x00000000}},  //   моги_, msud, _laub,\n  { {0x6383008b, 0xf8c8001d, 0x61f6011f, 0x00000000}},  //   агра, _cứu_, tayl,\n  { {0x443a0263, 0x69db0211, 0x6e3b0058, 0x00000000}},  //   _wap_, ncue, _naub,\n  { {0x443a0263, 0x68fb0190, 0x61f6014a, 0x00000000}},  // [6cc0] _tap_, nsud, rayl,\n  { {0x443a0093, 0x3fe32798, 0xa5bb00c4, 0x00000000}},  //   _uap_, ижув, reót,\n  { {0x7c3a0173, 0xdfcf0380, 0x6e3b1d93, 0x00000000}},  //   _ratr, زين_, _baub,\n  { {0xfce6013b, 0x68fb033b, 0x9f510065, 0x00000000}},  //   водо, ksud, _zezë_,\n  { {0xdd8f0054, 0x786d0129, 0x6e3b2799, 0x00000000}},  //   يوم_, _núvo, _daub,\n  { {0x68fb279a, 0x7c3a002b, 0x00000000, 0x00000000}},  //   dsud, _qatr,   ,\n  { {0x7c3a0363, 0x6e3b009d, 0xf8c80082, 0x00000000}},  //   _vatr, _faub, _mứt_,\n  { {0x2bc101f5, 0x6e3b007f, 0x5a340745, 0x00000000}},  //   षेधा, _gaub, унит,\n  { {0x7e60002a, 0x7c3a0027, 0x67d400e2, 0x00000000}},  //   _iomp, _tatr, лопу,\n  { {0x6e3b010f, 0x3ce62782, 0xf8c80082, 0x00000000}},  //   _zaub, mpov_, _nứt_,\n  { {0x81cb0055, 0x00000000, 0x00000000, 0x00000000}},  //   রুপ_,   ,   ,\n  { {0x6489010a, 0x9f5101aa, 0x6b7b01ce, 0x00000000}},  //   džia, _dezè_, _קראנ,\n  { {0x3940002a, 0x7e600129, 0xf8c80082, 0x00000000}},  //   _éis_, _momp, _bứt_,\n  { {0xdddb011f, 0xd7ef0098, 0xf00b0011, 0x00000000}},  //   _oluş, _њу_, _đắng_,\n  { {0x81e40055, 0x47c00044, 0x248d0091, 0x00000000}},  //   _নয়_, _শ্রী, đem_,\n  { {0x764d0e1a, 0x2018060c, 0x39460253, 0x00000000}},  //   _unay, _acri_, _kros_,\n  { {0x2ba903d7, 0xc05b0ee0, 0x81cb0044, 0x00000000}},  // [6cd0] _चुना, між_, রুন_,\n  { {0x6e3b010f, 0x00000000, 0x00000000, 0x00000000}},  //   _saub,   ,   ,\n  { {0x4431014a, 0x2fc70073, 0x7e600197, 0x00000000}},  //   mez_, äng_, _bomp,\n  { {0x4431028c, 0x394600ea, 0xacf9080d, 0x00000000}},  //   lez_, _oros_, енду_,\n  { {0x93c9026c, 0x7e60023a, 0x38b900f4, 0x00000000}},  //   _تاکہ_, _domp, lère_,\n  { {0x4431022b, 0xa3b70309, 0x67380243, 0x00000000}},  //   nez_, _जरा_, _osvj,\n  { {0x4fc40373, 0x3ec7008b, 0x3946018e, 0x00000000}},  //   _вста, _асаб, _aros_,\n  { {0x4431279b, 0x3946023a, 0x68fb279c, 0x00000000}},  //   hez_, _bros_, tsud,\n  { {0x394600d4, 0x38b900f4, 0x4431002d, 0x00000000}},  //   _cros_, hère_, kez_,\n  { {0x3946018e, 0x46e9026b, 0x44310035, 0x00000000}},  //   _dros_, ндон_, jez_,\n  { {0x4431022b, 0x68fb00d4, 0xb7c30044, 0x00000000}},  //   dez_, ssud, োর্ট,\n  { {0x38b9009d, 0xa50a02dc, 0xddc201c5, 0x00000000}},  //   dère_, нема_, lkoš,\n  { {0x394600f4, 0x69da007b, 0xa683279d, 0x00000000}},  //   _gros_, _אַוו, сляд,\n  { {0x4431279e, 0x38b900f4, 0x26d100c4, 0x00000000}},  //   gez_, fère_, ízos_,\n  { {0x38b900f4, 0xf8c80082, 0x291f00b0, 0x00000000}},  //   gère_, _vứt_, ltua_,\n  { {0x20030022, 0x201800e5, 0x3a3f0133, 0x00000000}},  //   _adji_, _scri_, ndup_,\n  { {0x7e601fe2, 0x291f022b, 0x31690061, 0x00000000}},  // [6ce0] _romp, ntua_, gyaz_,\n  { {0x6489024f, 0x44310e5e, 0x291f0f45, 0x00000000}},  //   lžin, cez_, itua_,\n  { {0x441b00bd, 0x141b061e, 0xe2ca142c, 0x00000000}},  //   _אויס, _אויב, _плод_,\n  { {0x291f022b, 0xc60b0055, 0x23650039, 0x00000000}},  //   ktua_, ষ্ঠা_, älje_,\n  { {0xaff800a1, 0x291f0065, 0x127b0049, 0x00000000}},  //   _لہذا_, jtua_, _טאטע,\n  { {0x6d420035, 0xdca30152, 0x2240049d, 0x00000000}},  //   rvoa, бачи, ldik_,\n  { {0x68e2039b, 0x7e6001a3, 0x291d002b, 0x00000000}},  //   _stod, _tomp, _aqwa_,\n  { {0x44310046, 0x2240022b, 0x6604040c, 0x00000000}},  //   zez_, ndik_, _ndik,\n  { {0xa9c301fb, 0x443100f4, 0x2120279f, 0x00000000}},  //   йськ, yez_, ntih_,\n  { {0xb8dc0309, 0x3ea6108a, 0x443127a0, 0x00000000}},  //   _आठ_, loot_, xez_,\n  { {0x4431028c, 0x628627a1, 0x291f002d, 0x00000000}},  //   vez_, _omko, atua_,\n  { {0x1efb007b, 0x3ea600c7, 0x212000ca, 0x00000000}},  //   עלכע, noot_, ktih_,\n  { {0x44311a2e, 0x333a001c, 0x394627a2, 0x00000000}},  //   tez_, _aspx_, _uros_,\n  { {0x66040263, 0x3ea600bb, 0x38b9009d, 0x00000000}},  //   _edik, hoot_, tère_,\n  { {0x4431028c, 0x3ea604fd, 0x2007004a, 0x00000000}},  //   rez_, koot_, ónim_,\n  { {0x4431028c, 0x92b70d75, 0xe61f00fa, 0x00000000}},  //   sez_, احسا, rnôs_,\n  { {0x7c281e34, 0x38b9009d, 0x7d040048, 0x00000000}},  // [6cf0] _obdr, sère_, áisl,\n  { {0x38b900f4, 0x752d0026, 0x9d5500a1, 0x00000000}},  //   père_, _ipaz, ینات,\n  { {0x6368005e, 0x291f002d, 0x63a901a2, 0x00000000}},  //   _бряг_, ztua_, ßend,\n  { {0x63a9014a, 0xddc900ca, 0x4fc4007c, 0x00000000}},  //   ğend, _aleš, ссуа,\n  { {0x61ed033b, 0x2902016c, 0xddc900ca, 0x00000000}},  //   mbal, škaj_, _bleš,\n  { {0x6b6501fb, 0xa3d80061, 0x2003016c, 0x00000000}},  //   икла, िशय_, _udji_,\n  { {0x5c041734, 0xb5fb0010, 0x00000000, 0x00000000}},  //   сяча, nkás,   ,\n  { {0x291f27a3, 0x61ed013f, 0x752d0059, 0x00000000}},  //   ttua_, nbal, _opaz,\n  { {0xe8f61036, 0xddc9016c, 0x6e2900e0, 0x00000000}},  //   алы_, _fleš, _ibeb,\n  { {0xb5fb0224, 0x291f065c, 0x6489010a, 0x00000000}},  //   cház, rtua_, džio,\n  { {0x291f0234, 0x2ca727a4, 0xd90f00a1, 0x00000000}},  //   stua_, mond_, زیں_,\n  { {0x2ca727a5, 0xa6de0011, 0x291f1d35, 0x00000000}},  //   lond_, _trưn, ptua_,\n  { {0x61ed003b, 0xe9ce003b, 0x81cb0044, 0x00000000}},  //   dbal, _фк_, রুত_,\n  { {0x68e927a6, 0x18660bba, 0x61ed01c5, 0x00000000}},  //   mped, _ваши_, ebal,\n  { {0xe36301ee, 0xf8360104, 0x68e90479, 0x00000000}},  //   окри, _כנסת_, lped,\n  { {0x6d490190, 0x61ed011c, 0x2ca701bb, 0x00000000}},  //   _orea, gbal, hond_,\n  { {0x2ca70004, 0x224003fe, 0xa2d6007d, 0x00000000}},  // [6d00] kond_, rdik_, _मूर्,\n  { {0xf00b0011, 0xe0df0011, 0x22400563, 0x00000000}},  //   _đảng_, _tròn_, sdik_,\n  { {0x212001ae, 0x6d4900ab, 0x61ed01e5, 0x00000000}},  //   stih_, _area, bbal,\n  { {0x6d4921f3, 0xa1160014, 0x2120050f, 0x00000000}},  //   _brea, _پوست, ptih_,\n  { {0x3ea62729, 0x2ca700bc, 0xddc9016e, 0x00000000}},  //   root_, fond_, _pleš,\n  { {0x290d06ae, 0x6d490e5f, 0x6e290061, 0x00000000}},  //   drea_, _drea, _ebeb,\n  { {0xe457007b, 0xb5fb0010, 0x290d22cd, 0x00000000}},  //   ייסט_, rház, erea_,\n  { {0x6d49002a, 0x7f3b00b3, 0xd8380059, 0x00000000}},  //   _frea, _בעלו, moči_,\n  { {0x6d4927a7, 0xd8380059, 0x629600f6, 0x00000000}},  //   _grea, loči_, inyo,\n  { {0x2ca70038, 0x61ed04bb, 0xc8660893, 0x00000000}},  //   cond_, zbal, ртии,\n  { {0x752d0198, 0xa2d602d2, 0x290d001a, 0x00000000}},  //   _spaz, _मूल्, area_,\n  { {0x466b013b, 0x290d002d, 0xe818007d, 0x00000000}},  //   тром_, brea_, _दावा_,\n  { {0x290d0048, 0x00000000, 0x00000000, 0x00000000}},  //   crea_,   ,   ,\n  { {0xd8380bf8, 0xa78601b2, 0x00000000, 0x00000000}},  //   koči_, _پشتو,   ,\n  { {0xe28701f9, 0xd8380059, 0x83f8007c, 0x00000000}},  //   аѓан, joči_, ресс_,\n  { {0x2777009b, 0x2ca700b5, 0x78a8016e, 0x00000000}},  //   _כגון_, zond_, lodv,\n  { {0x61ed049a, 0x2ca700ab, 0xd25100a1, 0x00000000}},  // [6d10] rbal, yond_, _ہند_,\n  { {0x6d4927a8, 0x7eb8004a, 0x00000000, 0x00000000}},  //   _rrea, vípa,   ,\n  { {0x2ca700b5, 0x6d490051, 0xd83800ca, 0x00000000}},  //   vond_, _srea, goči_,\n  { {0x6d4927a9, 0x4255004b, 0x2ca70112, 0x00000000}},  //   _prea, _انحر, wond_,\n  { {0x2ca727aa, 0x2cac0022, 0x2c79000a, 0x00000000}},  //   tond_, _bkdd_, _lède_,\n  { {0x68e9001c, 0x6d49000d, 0x628d0026, 0x00000000}},  //   vped, _vrea, liao,\n  { {0x2ca701b5, 0xa3d8013d, 0x6d490133, 0x00000000}},  //   rond_, िशत_, _wrea,\n  { {0x6d490133, 0x2ca70007, 0x290d27ab, 0x00000000}},  //   _trea, sond_, trea_,\n  { {0x2ca700f4, 0x6d99007e, 0xa2ba0164, 0x00000000}},  //   pond_, _сваё_, ्षत्,\n  { {0x290d0f06, 0xa855025f, 0x64890861, 0x00000000}},  //   rrea_, стиј, užil,\n  { {0x68e9029d, 0xa5bb000c, 0x2c1c0061, 0x00000000}},  //   sped, sfól, _नातं_,\n  { {0x68e927ac, 0x60c500f6, 0x00000000, 0x00000000}},  //   pped, hmhm,   ,\n  { {0xe9450014, 0x672127ad, 0x628d0052, 0x00000000}},  //   _درای, stlj, diao,\n  { {0x81bd0044, 0x00000000, 0x00000000, 0x00000000}},  //   ইখা_,   ,   ,\n  { {0x786d27ae, 0x00000000, 0x00000000, 0x00000000}},  //   _núvi,   ,   ,\n  { {0x5693025f, 0xb5fb27af, 0x20cd012d, 0x00000000}},  //   _најт, skár, _džim_,\n  { {0x62960010, 0x00000000, 0x00000000, 0x00000000}},  // [6d20] rnyo,   ,   ,\n  { {0x26d20be3, 0x6aa900c7, 0x2f560077, 0x00000000}},  //   _hiyo_, hoef, йтес,\n  { {0xdfcf0025, 0x00000000, 0x00000000, 0x00000000}},  //   فيك_,   ,   ,\n  { {0x9f58008d, 0x2902010a, 0x786d02d5, 0x00000000}},  //   _herë_, škai_, _dúvi,\n  { {0x6489016c, 0x3ebf0009, 0x26d20173, 0x00000000}},  //   džij, _dhut_, _miyo_,\n  { {0x653b0049, 0x6a75004a, 0x26d2000a, 0x00000000}},  //   טענד, _ráfa, _liyo_,\n  { {0x26c000ab, 0xbc190088, 0x6aa901c3, 0x00000000}},  //   _ohio_, річі_, foef,\n  { {0x6e960054, 0x25ad0046, 0x26d2011c, 0x00000000}},  //   _الرا, żeli_, _niyo_,\n  { {0x81aa0055, 0x6c1a0025, 0xd7fa026b, 0x00000000}},  //   গের_, _متاح_, лун_,\n  { {0x7c650025, 0x96ea1280, 0x7d020093, 0x00000000}},  //   _والل, льма_, msos,\n  { {0xcb090088, 0x7d0227b0, 0x8699012d, 0x00000000}},  //   _вхід_, lsos, икос_,\n  { {0x64891878, 0x26c00145, 0x8f9b009b, 0x00000000}},  //   ržim, _chio_, ריטי,\n  { {0x92d508b7, 0x98a601f9, 0x261a02d2, 0x00000000}},  //   _হবে_, _лиде, _भारी_,\n  { {0xf484005e, 0xa7fc014a, 0x64890802, 0x00000000}},  //   пусн, rkıs, mžik,\n  { {0x25a0220d, 0x9a290082, 0x9f580023, 0x00000000}},  //   _exil_, _hươu_, _derë_,\n  { {0x9f5a009d, 0x7d0227b1, 0x200e01e5, 0x00000000}},  //   capé_, ksos, ófin_,\n  { {0x786d0027, 0x628d044e, 0x81b10044, 0x00000000}},  // [6d30] _súvi, riao, টেন_,\n  { {0x2a6627b2, 0x3ead0d8c, 0x3ebf0133, 0x00000000}},  //   _loob_, _sket_, _shut_,\n  { {0x656f005b, 0x273a0089, 0x2c6b0030, 0x00000000}},  //   lych, _jūn_, _mødt_,\n  { {0x66e10089, 0x81cb0044, 0xe787013e, 0x00000000}},  //   _jēka, রুষ_, náší,\n  { {0xed5900e3, 0x61ff006b, 0x656f0016, 0x00000000}},  //   рол_, maql, nych,\n  { {0x61ff27b3, 0xc05b0088, 0x2c6b0637, 0x00000000}},  //   laql, _сім_, _nødt_,\n  { {0x2a66001c, 0x6aa90112, 0x16090061, 0x00000000}},  //   _boob_, toef, वणार_,\n  { {0x61ff006b, 0x2c4f0089, 0x00000000, 0x00000000}},  //   naql, _sēdē_,   ,\n  { {0x6aa9046a, 0x888200a1, 0x26d20022, 0x00000000}},  //   roef, ڈینن, _riyo_,\n  { {0x26d20020, 0x7c9703e6, 0x26c00093, 0x00000000}},  //   _siyo_, _اشرا, _shio_,\n  { {0x26d2000a, 0x2c6b068f, 0x2ca00048, 0x00000000}},  //   _piyo_, _dødt_, éide_,\n  { {0xe7360088, 0x00000000, 0x00000000, 0x00000000}},  //   цею_,   ,   ,\n  { {0x2c6b068f, 0x9f5a15a3, 0xe7f20061, 0x00000000}},  //   _født_, rapé_, _आजचा_,\n  { {0x7d04002a, 0xb5fb000c, 0x98c70cb3, 0x00000000}},  //   áisi, skáp, _усел,\n  { {0x81b10044, 0x26c00300, 0x3246005e, 0x00000000}},  //   টেম_, _thio_, оевг,\n  { {0x66de0089, 0xd6d20025, 0x7d020052, 0x00000000}},  //   _mīkl, _تقع_, ysos,\n  { {0x80660088, 0x9f410026, 0x25df007d, 0x00000000}},  // [6d40] оваж, lchè_, _गलती_,\n  { {0x1fb60088, 0x6ecc005a, 0x76440085, 0x00000000}},  //   осер, _işbi, _haiy,\n  { {0x4444020c, 0x81cb0055, 0x2242021a, 0x00000000}},  //   _ia_, রুল_, _takk_,\n  { {0x444427b4, 0x61ff006b, 0x87ac0049, 0x00000000}},  //   _ha_, caql, נשאַ,\n  { {0x8cf3008b, 0x76440c3b, 0x61e4014a, 0x00000000}},  //   дзіц, _maiy, mcil,\n  { {0x44440368, 0x7d020065, 0x61e4014a, 0x00000000}},  //   _ja_, rsos, lcil,\n  { {0x44441a64, 0x44380219, 0x7d02002b, 0x00000000}},  //   _ma_, ier_, ssos,\n  { {0x44381e64, 0x61e427b5, 0xead3007c, 0x00000000}},  //   her_, ncil, мощь,\n  { {0x9f5800d4, 0x00000000, 0x00000000, 0x00000000}},  //   _serè_,   ,   ,\n  { {0x6d40005f, 0x44380292, 0x7e620091, 0x00000000}},  //   _isma, jer_, ljop,\n  { {0x2a66006c, 0x673a00b5, 0x656f026e, 0x00000000}},  //   _toob_, uwtj, wych,\n  { {0x444404d2, 0x443801d6, 0x7c3827b6, 0x00000000}},  //   _aa_, eer_, levr,\n  { {0x44440811, 0x443802f1, 0x27fe0022, 0x00000000}},  //   _ba_, fer_, patn_,\n  { {0x443805ec, 0x44441305, 0x6a7c00f4, 0x00000000}},  //   ger_, _ca_, _défe,\n  { {0x444401cd, 0x9f410197, 0x61ff006b, 0x00000000}},  //   _da_, cchè_, taql,\n  { {0x4444000d, 0x6d40011f, 0xd8380059, 0x00000000}},  //   _ea_, _osma, leč_,\n  { {0x444415ae, 0x61ff005f, 0x142b01e1, 0x00000000}},  // [6d50] _fa_, raql, _кіно_,\n  { {0x44440119, 0x661d27b7, 0x7c380ce4, 0x00000000}},  //   _ga_, lgsk, jevr,\n  { {0x442127b8, 0x6d40034d, 0x1eea0167, 0x00000000}},  //   _ich_, _asma, مولی_,\n  { {0x661d004e, 0x9f4127b9, 0x2904006c, 0x00000000}},  //   ngsk, nché_, ksma_,\n  { {0x444427ba, 0x6445006a, 0x61fd0089, 0x00000000}},  //   _ya_, _kahi, _iesl,\n  { {0x61fd004f, 0x4444116d, 0xd8380209, 0x00000000}},  //   _hesl, _xa_, ječ_,\n  { {0x6445006a, 0x6d400004, 0x6d460c8a, 0x00000000}},  //   _mahi, _esma, _škat,\n  { {0x44380978, 0x60d5011f, 0x644504cb, 0x00000000}},  //   zer_, _hizm, _lahi,\n  { {0x442127bb, 0x4438032c, 0x61fd011f, 0x00000000}},  //   _och_, yer_, _mesl,\n  { {0x443804bd, 0x26dc010a, 0x644527bc, 0x00000000}},  //   xer_, _buvo_, _nahi,\n  { {0x443805ec, 0x444400ad, 0x66e80224, 0x00000000}},  //   ver_, _ra_, _někd,\n  { {0x4444084e, 0x44210195, 0x443800fe, 0x00000000}},  //   _sa_, _ach_, wer_,\n  { {0x4444258f, 0x644502d5, 0x200127bd, 0x00000000}},  //   _pa_, _bahi, kahi_,\n  { {0x4438010f, 0x644511a1, 0x2a7f0022, 0x00000000}},  //   uer_, _cahi, lhub_,\n  { {0x44441800, 0x61fd0af1, 0x64450811, 0x00000000}},  //   _va_, _besl, _dahi,\n  { {0x444427ba, 0x60d5001e, 0x61fd0107, 0x00000000}},  //   _wa_, _aizm, _cesl,\n  { {0x444427be, 0x61fd2346, 0x61e41c17, 0x00000000}},  // [6d60] _ta_, _desl, rcil,\n  { {0x44440065, 0x60d51053, 0x8fa60265, 0x00000000}},  //   _ua_, _cizm, пазе,\n  { {0x7e7b00d9, 0x7e6901d6, 0x69d9005b, 0x00000000}},  //   _blup, _boep, _ogwe,\n  { {0x61fd27bf, 0x6445006b, 0x0dca007c, 0x00000000}},  //   _gesl, _zahi, блей_,\n  { {0xa25b00ad, 0x7c3827c0, 0x64450ea6, 0x00000000}},  //   _khôn, tevr, _yahi,\n  { {0x91bb00b6, 0x442127c1, 0x6445006b, 0x00000000}},  //   _למכי, _xch_, _xahi,\n  { {0x8fa3237a, 0x5e960355, 0x394f27c2, 0x00000000}},  //   _заре, _فلسط, _args_,\n  { {0x7e7b0119, 0xb95401fb, 0x26dc0026, 0x00000000}},  //   _glup, двищ, _ruvo_,\n  { {0x6d40008a, 0xc6230044, 0x2d820039, 0x00000000}},  //   _usma, _বোঝা_, _åke_,\n  { {0x6c86002c, 0xb80600a1, 0xf8060088, 0x00000000}},  //   _علام, سکتے_, ччин,\n  { {0x64450518, 0x29040066, 0x394f00d9, 0x00000000}},  //   _rahi, ssma_, _ergs_,\n  { {0x6445047f, 0xd6d707ca, 0xb5fb0010, 0x00000000}},  //   _sahi, ять_, aján,\n  { {0x9f412529, 0x6445006a, 0x661d00f8, 0x00000000}},  //   rché_, _pahi, rgsk,\n  { {0x753d0046, 0x26dc27c3, 0x2902010a, 0x00000000}},  //   rwsz, _tuvo_, škas_,\n  { {0x6445104a, 0x2491005d, 0x64470007, 0x00000000}},  //   _vahi, rizm_, rdji,\n  { {0x2001000b, 0x60f90147, 0x644527c4, 0x00000000}},  //   wahi_, жная_, _wahi,\n  { {0xd250026c, 0x64451084, 0x7e6900c7, 0x00000000}},  // [6d70] ھنے_, _tahi, _roep,\n  { {0x7e6927c5, 0x4421007f, 0xd25000a1, 0x00000000}},  //   _soep, _uch_, پنے_,\n  { {0x61fd014a, 0x7e7b00f4, 0x200116c3, 0x00000000}},  //   _tesl, _plup, rahi_,\n  { {0xddd00006, 0x7bda01c3, 0x20010145, 0x00000000}},  //   _šešt, _agtu, sahi_,\n  { {0x8c450069, 0x6d460733, 0x628f00fa, 0x00000000}},  //   деле, _škar, _imco,\n  { {0x2249014a, 0x69d90016, 0x7e6901c3, 0x00000000}},  //   ldak_, _sgwe, _woep,\n  { {0x660d016c, 0x7e69015c, 0x9f3401fb, 0x00000000}},  //   _odak, _toep, _пері,\n  { {0x2249033b, 0xcf9201ce, 0x660d0095, 0x00000000}},  //   ndak_, _סטן_, _ndak,\n  { {0x2129020c, 0x7d04002a, 0x2a7f0300, 0x00000000}},  //   ntah_, áist, rhub_,\n  { {0x7d0401d5, 0xa88903e8, 0x660d0127, 0x00000000}},  //   ġist, ійна_, _adak,\n  { {0x7d04037e, 0xa25b00f4, 0xb21b158f, 0x00000000}},  //   šist, _rhôn, _klæd,\n  { {0x497527c6, 0x7d09129d, 0x7bc10166, 0x00000000}},  //   _олес, _kves, _izlu,\n  { {0xd94500e3, 0xddc005fa, 0x2902050f, 0x00000000}},  //   _цели, _komš, škar_,\n  { {0x225902d8, 0x00000000, 0x00000000, 0x00000000}},  //   _ansk_,   ,   ,\n  { {0x212901d6, 0x394d1044, 0x91e6005e, 0x00000000}},  //   etah_, lves_, добе,\n  { {0x64890006, 0x7d09095f, 0x212913e1, 0x00000000}},  //   džiu, _oves, ftah_,\n  { {0xa25b00ad, 0x412700e3, 0xad9d0036, 0x00000000}},  // [6d80] _thôn, мото_, _jeźd,\n  { {0x394d0bd3, 0xb5fb000c, 0x00000000, 0x00000000}},  //   ives_, hjál,   ,\n  { {0x7d090207, 0x72c60741, 0x628f0045, 0x00000000}},  //   _aves, _обоз, _fmco,\n  { {0xdddb00b9, 0x11d60025, 0x00000000, 0x00000000}},  //   _kouř, _يتحد,   ,\n  { {0xb21b0698, 0x98bd000a, 0x66e10089, 0x00000000}},  //   _slæg, _aswč_, _sēkl,\n  { {0x394d0047, 0x00000000, 0x00000000, 0x00000000}},  //   dves_,   ,   ,\n  { {0x2ac6003b, 0x64890161, 0x394d0133, 0x00000000}},  //   мљив, mžit, eves_,\n  { {0xb21b0030, 0x2a7d0016, 0xf27b0049, 0x00000000}},  //   _glæd, _clwb_, ַריש,\n  { {0xdb0800b0, 0x7bda0009, 0x00000000, 0x00000000}},  //   _sydä, _tgtu,   ,\n  { {0x6a7c00f4, 0x6489012d, 0x81cb0044, 0x00000000}},  //   _défa, nžit, রুক_,\n  { {0x7d091a2d, 0x00000000, 0x00000000, 0x00000000}},  //   _zves,   ,   ,\n  { {0x787f00f4, 0xdddb00b9, 0x2a7d005b, 0x00000000}},  //   _rêve, _bouř, _glwb_,\n  { {0x61f60009, 0xd05d006b, 0x63a9014a, 0x00000000}},  //   dbyl, _etsə, ğenm,\n  { {0xe1ff0051, 0x6489012d, 0x00000000, 0x00000000}},  //   _seó_, jžit,   ,\n  { {0xa4d401fb, 0x46a70057, 0xf837009b, 0x00000000}},  //   торі, _ошиб, _חנות_,\n  { {0xe0df0198, 0x21290c08, 0x660d1242, 0x00000000}},  //   _può_, ttah_, _udak,\n  { {0x7eb802d5, 0xf1940077, 0x22490095, 0x00000000}},  // [6d90] cípi, вить, rdak_,\n  { {0x224900e0, 0x00000000, 0x00000000, 0x00000000}},  //   sdak_,   ,   ,\n  { {0x7d09021d, 0x212927c7, 0x7a15006b, 0x00000000}},  //   _sves, stah_, nətç,\n  { {0xc332007b, 0x6aa20065, 0x44330009, 0x00000000}},  //   _גוט_, _njof, _hbx_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x394d00eb, 0x6aa20035, 0x00000000, 0x00000000}},  //   vves_, _ajof,   ,\n  { {0x1ee70063, 0x7e780089, 0x8f690025, 0x00000000}},  //   _آوری_, īvpr, _عمرك_,\n  { {0xe8f90069, 0x394d27c8, 0x00000000, 0x00000000}},  //   пли_, tves_,   ,\n  { {0x81b10055, 0x9f41002a, 0xfd1300a1, 0x00000000}},  //   টের_, ichí_, _ججز_,\n  { {0x394d1a82, 0xb5fb0010, 0xe8f60930, 0x00000000}},  //   rves_, ckáz, эль_,\n  { {0x47d20044, 0x394d174d, 0x69c200d9, 0x00000000}},  //   _দ্বী, sves_, _ezoe,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7ae10039, 0xa25b00f4, 0x00000000, 0x00000000}},  //   _hult, _chôm,   ,\n  { {0x443300fa, 0x6abb141a, 0x00000000, 0x00000000}},  //   _cbx_, lluf,   ,\n  { {0x4256017a, 0x7ae10894, 0x7eb8004a, 0x00000000}},  //   нтат, _jult, sípi,\n  { {0x7ae10585, 0x22150745, 0x00000000, 0x00000000}},  //   _mult, кфур,   ,\n  { {0x5637007b, 0x6606178a, 0xa69b009b, 0x00000000}},  // [6da0] _טאקע_, makk, _משקפ,\n  { {0x25d700a0, 0x66060127, 0x3e4c0011, 0x00000000}},  //   _אופן_, lakk, _ớt_,\n  { {0xee3a0931, 0x44e60011, 0x64890c76, 0x00000000}},  //   зне_, _hô_, ržit,\n  { {0x66061198, 0x44e60011, 0xe1f21739, 0x00000000}},  //   nakk, _kô_, _حسد_,\n  { {0x6296011f, 0xdb01014a, 0x62840051, 0x00000000}},  //   miyo, _eylü, mhio,\n  { {0x629627c9, 0x44e6001d, 0x7ae1002d, 0x00000000}},  //   liyo, _mô_, _bult,\n  { {0xc60b0055, 0x44e60011, 0x66060943, 0x00000000}},  //   ষ্টা_, _lô_, kakk,\n  { {0x6296011f, 0x9f5a00c4, 0x660603ba, 0x00000000}},  //   niyo, capá_, jakk,\n  { {0x44e60082, 0x660601a3, 0x261a0204, 0x00000000}},  //   _nô_, dakk, _भाजी_,\n  { {0xd7f70783, 0x6296006a, 0x89330379, 0x00000000}},  //   ную_, hiyo, اعيا,\n  { {0x6296014a, 0x7ae10089, 0xe821007d, 0x00000000}},  //   kiyo, _gult, _मारा_,\n  { {0x6e220d3b, 0x7a15006b, 0x660604cb, 0x00000000}},  //   ngob, rətç, gakk,\n  { {0x44e6001d, 0x6296011f, 0x69c20020, 0x00000000}},  //   _cô_, diyo, _uzoe,\n  { {0x44e60082, 0x00000000, 0x00000000, 0x00000000}},  //   _dô_,   ,   ,\n  { {0xd7f8001a, 0x62840048, 0xa8470025, 0x00000000}},  //   mbă_, fhio, _سليم_,\n  { {0x628427ca, 0xd7bb00b3, 0x67bb009b, 0x00000000}},  //   ghio, _מצור, _ממוק,\n  { {0x51870cbc, 0x68e21b1b, 0x443327cb, 0x00000000}},  // [6db0] хува, _juod, _tbx_,\n  { {0x68e200b0, 0x9f5800f6, 0x28c6013d, 0x00000000}},  //   _muod, _berà_, _रीमि,\n  { {0x26c90011, 0x68e200b0, 0x44e60082, 0x00000000}},  //   _khao_, _luod, _zô_,\n  { {0x62840016, 0x3946058b, 0x00000000, 0x00000000}},  //   chio, _osos_,   ,\n  { {0x44e60011, 0x68e20006, 0x7ae127cc, 0x00000000}},  //   _xô_, _nuod, _sult,\n  { {0xd1160104, 0x224b0a60, 0x00000000, 0x00000000}},  //   _בקשה_, _hack_,   ,\n  { {0x394600f6, 0x0ebb04e8, 0x6abb1e19, 0x00000000}},  //   _asos_, _فارغ_, tluf,\n  { {0x6a7c00f4, 0x3946004a, 0x7ae127cd, 0x00000000}},  //   _défo, _bsos_, _vult,\n  { {0x6606002b, 0x39460022, 0x6abb02d8, 0x00000000}},  //   vakk, _csos_, rluf,\n  { {0x68e20006, 0xeafb02fd, 0x6abb000c, 0x00000000}},  //   _duod, _فرصت_, sluf,\n  { {0x07a50099, 0xf4270055, 0x39460211, 0x00000000}},  //   танн, য়ার_, _esos_,\n  { {0x26c927ce, 0x44e627cf, 0xd7f80035, 0x00000000}},  //   _chao_, _pô_, abă_,\n  { {0x660601a3, 0x6296014a, 0x7d190016, 0x00000000}},  //   rakk, viyo, nrws,\n  { {0x44e6001d, 0x291f0020, 0x62962552, 0x00000000}},  //   _vô_, muua_, wiyo,\n  { {0x6284018e, 0x224b0038, 0x6296011f, 0x00000000}},  //   thio, _back_, tiyo,\n  { {0x44e627d0, 0xcfb70044, 0x25bf002b, 0x00000000}},  //   _tô_, জধান, żula_,\n  { {0x6296011f, 0x9f5804bd, 0xe0da0f97, 0x00000000}},  // [6dc0] riyo, _serà_, два_,\n  { {0x660427d1, 0x6296014a, 0x62841215, 0x00000000}},  //   _heik, siyo, shio,\n  { {0x403301fb, 0x660427d2, 0x6284034a, 0x00000000}},  //   реєс, _keik, phio,\n  { {0x644e000c, 0x6a7c00f4, 0x66040032, 0x00000000}},  //   ldbi, _réfo, _jeik,\n  { {0x6e2201aa, 0x660400b0, 0x6a7c009d, 0x00000000}},  //   rgob, _meik, _défl,\n  { {0x660425df, 0xdb1a0010, 0x3a26001a, 0x00000000}},  //   _leik, _aztá, _scop_,\n  { {0xa03701f8, 0x68e227d3, 0x39460022, 0x00000000}},  //   _שאלה_, _suod, _ssos_,\n  { {0xeaaf0b59, 0x60dc01c2, 0x2498010f, 0x00000000}},  //   يعي_, _hirm, hirm_,\n  { {0x60dc002d, 0x58d80ae0, 0x63a9014a, 0x00000000}},  //   _kirm, ндия_, ğeni,\n  { {0x68e2021e, 0x26c91575, 0x00000000, 0x00000000}},  //   _vuod, _shao_,   ,\n  { {0x25be005f, 0xdc9b009b, 0xba260264, 0x00000000}},  //   ətli_, _קיבל, _адек,\n  { {0x645e0607, 0x6f0327d4, 0xeb9700b3, 0x00000000}},  //   _anpi, ânci, _בדבר_,\n  { {0x394627d5, 0x224b03ca, 0xceb300b3, 0x00000000}},  //   _usos_, _rack_, שיר_,\n  { {0x60dc0022, 0xf7540025, 0x224b01a2, 0x00000000}},  //   _nirm, _منتج, _sack_,\n  { {0x26c9001d, 0x44230065, 0x35c7013d, 0x00000000}},  //   _thao_, rgj_, रेज़,\n  { {0x442d00b9, 0x60dc01a3, 0x645e27d6, 0x00000000}},  //   ře_, _airm, _enpi,\n  { {0x60dc1352, 0x6a7c00f4, 0xd7ce0061, 0x00000000}},  // [6dd0] _birm, _réfl, हेरच,\n  { {0x9f580df9, 0x660400bb, 0x764d0058, 0x00000000}},  //   _será_, _zeik, _haay,\n  { {0x224b0073, 0x60dc0197, 0x764d011c, 0x00000000}},  //   _tack_, _dirm, _kaay,\n  { {0xfe70023c, 0xed590062, 0x12790049, 0x00000000}},  //   يدن_, _lyže_, _נאָע,\n  { {0xed5801fb, 0x764d011c, 0x9f580b33, 0x00000000}},  //   кої_, _maay, _verá_,\n  { {0x66e80224, 0x61ed00d4, 0x60dc005a, 0x00000000}},  //   _něko, lcal, _girm,\n  { {0x9f580181, 0xeb3500a6, 0x61ed0026, 0x00000000}},  //   _terá_, ارتخ, ocal,\n  { {0x61ed014a, 0x66e800b9, 0x764d0058, 0x00000000}},  //   ncal, _pěkn, _naay,\n  { {0x6604010a, 0x6e290190, 0x4c25026c, 0x00000000}},  //   _reik, _iceb, _مظاہ,\n  { {0x6604003c, 0x3a3f077d, 0x79890036, 0x00000000}},  //   _seik, seup_, rzew,\n  { {0xd709008b, 0x79890036, 0x66040056, 0x00000000}},  //   энне_, szew, _peik,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x66040ebc, 0x22400006, 0xceb20097, 0x00000000}},  //   _veik, veik_, מיט_,\n  { {0x399a0452, 0xd8790025, 0x00000000, 0x00000000}},  //   _אינד, _سمعت_,   ,\n  { {0x38780073, 0x8883007a, 0x660420ea, 0x00000000}},  //   örre_, _میکن, _teik,\n  { {0x6d4919ed, 0x61460245, 0x60dc0089, 0x00000000}},  //   _osea, леба, _sirm,\n  { {0x60dc0ebc, 0x22400007, 0x6d4900e5, 0x00000000}},  // [6de0] _pirm, reik_, _nsea,\n  { {0x6e290b32, 0x32090058, 0x61ed0026, 0x00000000}},  //   _aceb, aaay_, acal,\n  { {0x629a01e6, 0x32091544, 0x28960049, 0x00000000}},  //   étos, baay_, נדען_,\n  { {0xdfcf006d, 0x0dca1585, 0x61ed117e, 0x00000000}},  //   سين_, нули_, ccal,\n  { {0x6d490009, 0x672127d7, 0x63a901a2, 0x00000000}},  //   _csea, hulj, ßenv,\n  { {0x67211b03, 0x6d490050, 0xafe3005c, 0x00000000}},  //   kulj, _dsea, _горл,\n  { {0x6d490009, 0x6e290045, 0x00000000, 0x00000000}},  //   _esea, _fceb,   ,\n  { {0x6d490009, 0x3914026b, 0x672127d8, 0x00000000}},  //   _fsea, амир, dulj,\n  { {0x9806008b, 0xf65f0030, 0x00000000, 0x00000000}},  //   лянд, llæg_,   ,\n  { {0x47340a27, 0x7eb806f4, 0x764d01d6, 0x00000000}},  //   анос, cípr, _saay,\n  { {0x290f00f8, 0x61ed077d, 0xf65f0698, 0x00000000}},  //   _evga_, ycal, nlæg_,\n  { {0x7bc827d9, 0x45d500e3, 0x61ed008e, 0x00000000}},  //   _izdu, ионс, xcal,\n  { {0xd90e0167, 0x94ab1281, 0xb21b0190, 0x00000000}},  //   _عید_, етва_, _blæn,\n  { {0x2c790263, 0x67d401fc, 0x98a31666, 0x00000000}},  //   _pèdi_, _колу, _личе,\n  { {0xd25b06b6, 0x02a7005e, 0xa3d50088, 0x00000000}},  //   нца_, грам, ровч,\n  { {0xf65f0018, 0xb713221c, 0x09d80044, 0x00000000}},  //   dlæg_, _ابوش, _ধ্যা,\n  { {0x940a006b, 0x05960014, 0xb21b0190, 0x00000000}},  // [6df0] hibə_, _پايگ, _flæn,\n  { {0x61ed0207, 0xf00b0011, 0x629a009d, 0x00000000}},  //   scal, _đẳng_, étor,\n  { {0x2fc70073, 0x61ed231b, 0x201c00fa, 0x00000000}},  //   ång_, pcal, óvia_,\n  { {0x5d55005e, 0x6d490009, 0x00000000, 0x00000000}},  //   икет, _psea,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x1ee700a6, 0x7bc800b4, 0x00000000, 0x00000000}},  //   _موسی_, _bzdu,   ,\n  { {0x290f1d21, 0x961d0044, 0x00000000, 0x00000000}},  //   _svga_, ধ্যম_,   ,\n  { {0x6d49002a, 0x00000000, 0x00000000, 0x00000000}},  //   _tsea,   ,   ,\n  { {0x6d4900b0, 0x290f0082, 0x7bc80288, 0x00000000}},  //   _usea, _qvga_, _ezdu,\n  { {0x5d840054, 0xdd7400a1, 0x290d0145, 0x00000000}},  //   _الكل, _دھمک, rsea_,\n  { {0x5ba70057, 0xf77104e8, 0x290d16a3, 0x00000000}},  //   _сраз, زاد_, ssea_,\n  { {0xc4c9034e, 0x290d0035, 0x672101ed, 0x00000000}},  //   _חג_, psea_, rulj,\n  { {0x05d00061, 0xb21b0190, 0x92080089, 0x00000000}},  //   सेंब, _plæn, ntāž,\n  { {0xd547003b, 0x18690545, 0x67210213, 0x00000000}},  //   јпре_, _јаки_, pulj,\n  { {0xe29a01fb, 0x00000000, 0x00000000, 0x00000000}},  //   вав_,   ,   ,\n  { {0x63be01ca, 0xa802019a, 0x00000000, 0x00000000}},  //   _vypn, _çıra,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  // [6e00]   ,   ,   ,\n  { {0x7e6027da, 0x2f56058e, 0x2a7f010e, 0x00000000}},  //   _snmp, итес, hkub_,\n  { {0x443a27db, 0x661600b9, 0xd2aa094b, 0x00000000}},  //   _ibp_, _kdyk, _акне_,\n  { {0xb17b0039, 0x2a6d01d5, 0x443a0c70, 0x00000000}},  //   _igån, jjeb_, _hbp_,\n  { {0x9c7c00ca, 0xe3b20014, 0x62860095, 0x00000000}},  //   _liče, _درک_, _ilko,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x2d8027dc, 0xd90d00a1, 0x8fa3005e, 0x00000000}},  //   šie_, ہین_, _даре,\n  { {0x940a006b, 0x7bc8031f, 0x443a1e16, 0x00000000}},  //   ribə_, _vzdu, _lbp_,\n  { {0xc8660cb7, 0x5c160318, 0xd90d0167, 0x00000000}},  //   атни, _نظار, فین_,\n  { {0x9da5007a, 0x6a7c009d, 0x98c60143, 0x00000000}},  //   _اصفه, _méfi, јсил,\n  { {0x7d0d050f, 0xd838016c, 0x4adf0164, 0x00000000}},  //   šast, jiče_, _पंचव,\n  { {0x3ea627dd, 0xd8380802, 0x443a0145, 0x00000000}},  //   nnot_, diče_, _abp_,\n  { {0x443a24ac, 0xe5c70bff, 0x00000000, 0x00000000}},  //   _bbp_, рсно,   ,\n  { {0xb8cb0055, 0x443a00bb, 0x68ed0051, 0x00000000}},  //   _কী_, _cbp_, _éada,\n  { {0x443a0127, 0x3ea61016, 0x66e8013e, 0x00000000}},  //   _dbp_, knot_, _měkk,\n  { {0x3264072b, 0xf00b0011, 0x443a062a, 0x00000000}},  //   отув, _đằng_, _ebp_,\n  { {0x3ea6258b, 0x443a06ed, 0xdddb0087, 0x00000000}},  // [6e10] dnot_, _fbp_, _oluš,\n  { {0x6a7c27de, 0x443a0142, 0x7ae801d6, 0x00000000}},  //   _défi, _gbp_, _oudt,\n  { {0x2fca01ee, 0x657d27df, 0x3f670b52, 0x00000000}},  //   _czbg_, lysh, штаб,\n  { {0xa28300a6, 0x4ea4008b, 0x63bb005d, 0x00000000}},  //   _بیرو, орча, ğund,\n  { {0xefb100a1, 0x067c0049, 0x3e3209b9, 0x00000000}},  //   _کیاگ, כנאל, سفور,\n  { {0x30850025, 0x20850b03, 0x7ae81962, 0x00000000}},  //   _السف, _السّ, _budt,\n  { {0xa3d7006e, 0x2a7f006c, 0x92080089, 0x00000000}},  //   िधि_, tkub_, stāž,\n  { {0x76960006, 0xdb0e013e, 0x00000000, 0x00000000}},  //   ršyk, ídán,   ,\n  { {0xceb20097, 0x6e3b1aa1, 0xe9d9007c, 0x00000000}},  //   _זין_, _ibub, ыки_,\n  { {0xac740054, 0x657d0065, 0x7c2d0091, 0x00000000}},  //   _والش, dysh, đars,\n  { {0xe739003b, 0x00000000, 0x00000000, 0x00000000}},  //   ћем_,   ,   ,\n  { {0x443a0145, 0x8b9a009b, 0x6d5b27e0, 0x00000000}},  //   _sbp_, _גבעת, _krua,\n  { {0x443a0145, 0x69cd0061, 0x959901e1, 0x00000000}},  //   _pbp_, देखी, атру_,\n  { {0xa956012f, 0xd8380091, 0x68fb23ff, 0x00000000}},  //   _לינק_, tiče_, mpud,\n  { {0x6e3b27e1, 0x68fb0190, 0xf719007e, 0x00000000}},  //   _obub, lpud, _сілы_,\n  { {0x27311db2, 0xd8382270, 0xe29701ee, 0x00000000}},  //   mán_, riče_, бас_,\n  { {0x27310047, 0x21670407, 0x2b490036, 0x00000000}},  // [6e20] lán_, бити_, łach_,\n  { {0x76460056, 0x6e3b0729, 0xd83818e2, 0x00000000}},  //   leky, _abub, piče_,\n  { {0x5477009b, 0x3ea600f8, 0xef1a013b, 0x00000000}},  //   _הגיע_, tnot_, уме_,\n  { {0xdddb0119, 0xe821001c, 0x6286021e, 0x00000000}},  //   _sluš, _माझा_, _ulko,\n  { {0x2731002a, 0x6d5b07cb, 0x3ea6101a, 0x00000000}},  //   hán_, _crua, rnot_,\n  { {0xf8a70025, 0x3ea601c5, 0x273127e2, 0x00000000}},  //   _رة_, snot_, kán_,\n  { {0x7f860054, 0x27310092, 0x66df0006, 0x00000000}},  //   _الأن, ján_, _būkl,\n  { {0x273127e3, 0x7bc10016, 0xc333009b, 0x00000000}},  //   dán_, _dylu, פוח_,\n  { {0x6d5b04ea, 0xed570256, 0x00000000, 0x00000000}},  //   _grua, _лот_,   ,\n  { {0x971400e3, 0x7ae80010, 0x7526002d, 0x00000000}},  //   омоц, _tudt, dukz,\n  { {0x273127e4, 0xb8ef006e, 0xb21b000c, 0x00000000}},  //   gán_, _वी_, _slæm,\n  { {0x249a0022, 0x7c2a043e, 0x291f15cd, 0x00000000}},  //   _ampm_, lgfr, brua_,\n  { {0xb5fb000c, 0x00000000, 0x00000000, 0x00000000}},  //   fjár,   ,   ,\n  { {0x657d008d, 0xc91700b6, 0x27310010, 0x00000000}},  //   rysh, _פחות_, bán_,\n  { {0x273127e5, 0x7ae20eac, 0xd5ed0082, 0x00000000}},  //   cán_, _kiot, _toà,\n  { {0x46a4098c, 0x6d4000b5, 0x201801a3, 0x00000000}},  //   _најв, _opma, _adri_,\n  { {0x660f037e, 0x90990200, 0x200a0107, 0x00000000}},  // [6e30] mack, ават_, _bebi_,\n  { {0x660f0142, 0x7ae20bfd, 0x6d5b0023, 0x00000000}},  //   lack, _liot, _rrua,\n  { {0x64470020, 0x6d400e3f, 0x75280036, 0x00000000}},  //   meji, _apma, ądze,\n  { {0x660f219c, 0x64470d48, 0xddc008fb, 0x00000000}},  //   nack, leji, _domž,\n  { {0x628d0051, 0x27310010, 0x9f4106c2, 0x00000000}},  //   mhao, zán_, nchú_,\n  { {0x64551669, 0xf00b0011, 0x64470416, 0x00000000}},  //   ndzi, _đặng_, neji,\n  { {0xdea400a1, 0xb7b30044, 0x660f188c, 0x00000000}},  //   _کینی, _ঘণ্ট, kack,\n  { {0x660f037e, 0x6d5b27e6, 0x27310224, 0x00000000}},  //   jack, _trua, ván_,\n  { {0x7ae2022b, 0x4438018e, 0x3ebf04cb, 0x00000000}},  //   _diot, yfr_, _ikut_,\n  { {0x27311ae2, 0x64550046, 0x48790242, 0x00000000}},  //   tán_, jdzi, рсия_,\n  { {0xe739017a, 0x764604a5, 0x6447007f, 0x00000000}},  //   шен_, teky, deji,\n  { {0x9f580211, 0x68fb010e, 0x7ae20051, 0x00000000}},  //   _perú_, ppud, _giot,\n  { {0x44ef005f, 0x27311a43, 0x3ead27e7, 0x00000000}},  //   _cü_, sán_, _mjet_,\n  { {0x27310010, 0x7ae2002d, 0x7526002d, 0x00000000}},  //   pán_, _ziot, rukz,\n  { {0x660f01d5, 0x44ef0d88, 0x3ebf0022, 0x00000000}},  //   back, _eü_, _okut_,\n  { {0x68e30811, 0x200a0059, 0x2120089f, 0x00000000}},  //   _hind, _sebi_, trih_,\n  { {0xefea0025, 0x0ffa0025, 0x81e20044, 0x00000000}},  // [6e40] لعضو_, لعاب_, নুন_,\n  { {0x4fa60069, 0x68e327e8, 0x3ebf02e7, 0x00000000}},  //   оизв, _jind, _akut_,\n  { {0x68e31bc0, 0x6d4027e9, 0xe3b202fd, 0x00000000}},  //   _mind, _spma, _زرد_,\n  { {0x68e327ea, 0x628d096a, 0x00000000, 0x00000000}},  //   _lind, chao,   ,\n  { {0x7ae2027b, 0x200a0825, 0x2d580088, 0x00000000}},  //   _riot, _tebi_, силь_,\n  { {0x68e3002d, 0x62840d96, 0x6721012d, 0x00000000}},  //   _nind, lkio, krlj,\n  { {0x7ae20036, 0xaff500a1, 0x78ba049c, 0x00000000}},  //   _piot, _رہنا_, votv,\n  { {0x68e302d5, 0x64550036, 0xd8381238, 0x00000000}},  //   _aind, zdzi, diča_,\n  { {0xfe4301fb, 0x660f2270, 0xf2d3019b, 0x00000000}},  //   _інфо, vack, ועה_,\n  { {0x26c005e6, 0xc19b0049, 0x6a7c009d, 0x00000000}},  //   _akio_, ישפי, _réfu,\n  { {0x68e300ef, 0x67210091, 0x7ae200f8, 0x00000000}},  //   _dind, grlj, _tiot,\n  { {0x68e30168, 0x64550046, 0x395d0009, 0x00000000}},  //   _eind, wdzi, _frws_,\n  { {0xd6d801fb, 0x68e327eb, 0x660f0036, 0x00000000}},  //   ють_, _find, rack,\n  { {0x67210107, 0x68e30035, 0xd8382782, 0x00000000}},  //   brlj, _gind, biča_,\n  { {0x64550046, 0x644701aa, 0x628d27ec, 0x00000000}},  //   rdzi, reji, thao,\n  { {0x44ef006c, 0x6aa00009, 0x6447013e, 0x00000000}},  //   _tü_, nimf, seji,\n  { {0x628d160e, 0x67280c6c, 0x68e30009, 0x00000000}},  // [6e50] rhao, ludj, _yind,\n  { {0x628d0060, 0x6ef301d5, 0x660d006c, 0x00000000}},  //   shao, _aħba, _heak,\n  { {0x67280521, 0x660d09e4, 0x6aa027ed, 0x00000000}},  //   nudj, _keak, kimf,\n  { {0x9c7c2679, 0x00000000, 0x00000000, 0x00000000}},  //   _riča,   ,   ,\n  { {0x3ead008d, 0x63ad001e, 0x248c010a, 0x00000000}},  //   _vjet_, šinā, šimų_,\n  { {0xe3df0055, 0x317a00b6, 0x2249022b, 0x00000000}},  //   _ব্যব, _הרשמ, leak_,\n  { {0x68e3154c, 0x68eb0058, 0x6abb009d, 0x00000000}},  //   _rind, _sugd, touf,\n  { {0xd83827dc, 0x2249002d, 0x660d0142, 0x00000000}},  //   viča_, neak_, _neak,\n  { {0x6aa927ee, 0x00000000, 0x00000000, 0x00000000}},  //   rnef,   ,   ,\n  { {0x6284002d, 0x68e30065, 0x6aa9000c, 0x00000000}},  //   zkio, _qind, snef,\n  { {0x660d00f8, 0x629d03bd, 0x68e30f12, 0x00000000}},  //   _beak, _omso, _vind,\n  { {0x7d0927ef, 0x9411006b, 0x6490006c, 0x00000000}},  //   _kwes, mizə_, _käig,\n  { {0x2249022b, 0x660d122f, 0x21290022, 0x00000000}},  //   deak_, _deak, juah_,\n  { {0x9c7c05fa, 0x629d0061, 0x672827f0, 0x00000000}},  //   _ličn, _amso, budj,\n  { {0x93591969, 0x67280107, 0x87040379, 0x00000000}},  //   орту_, cudj, _قبيل,\n  { {0xc7b2019b, 0x2249002d, 0x660d01d6, 0x00000000}},  //   _רבה_, geak_, _geak,\n  { {0x66e800b9, 0x61430545, 0x21670088, 0x00000000}},  // [6e60] _děku, нета, пити_,\n  { {0x823609bc, 0x90c3007c, 0x76561c39, 0x00000000}},  //   _کردا, ебуе, _hayy,\n  { {0x2249002d, 0x7d0900ab, 0x00000000, 0x00000000}},  //   beak_, _awes,   ,\n  { {0x21290149, 0xddcf1890, 0x442500a1, 0x00000000}},  //   buah_, _šeše, _ٹریف,\n  { {0x78a1009f, 0x7d09018e, 0x7afa0093, 0x00000000}},  //   kilv, _cwes, _sttt,\n  { {0x653b0049, 0x9411006b, 0x394d01d6, 0x00000000}},  //   מענד, fizə_, dwes_,\n  { {0x5f27004c, 0x3af10011, 0xdd8f00a1, 0x00000000}},  //   _норм_, _cáp_, نڈے_,\n  { {0x3a2d27f1, 0x00000000, 0x00000000, 0x00000000}},  //   ggep_,   ,   ,\n  { {0x660d047c, 0x7d090016, 0x78a100ea, 0x00000000}},  //   _reak, _gwes, filv,\n  { {0x2249002d, 0x6728002b, 0x8afc0036, 0x00000000}},  //   zeak_, tudj, _pręd,\n  { {0x660d0004, 0x66e80224, 0x99e60242, 0x00000000}},  //   _peak, _někt, _ежед,\n  { {0x2249002d, 0x2a6600e0, 0x394d27f2, 0x00000000}},  //   xeak_, _unob_, bwes_,\n  { {0x67280107, 0x20be0164, 0x78a106d3, 0x00000000}},  //   sudj, ्ताध, bilv,\n  { {0xb9db00b6, 0x649008b2, 0x176a27f3, 0x00000000}},  //   _החדש, _näid, _грип_,\n  { {0x083b01f8, 0x2249022b, 0x883b009b, 0x00000000}},  //   _העול, teak_, _לתגו,\n  { {0xe8df0011, 0x21290093, 0xd1bb0025, 0x00000000}},  //   ược_, tuah_, ماذا_,\n  { {0x2249022b, 0x76960006, 0xe1f00025, 0x00000000}},  // [6e70] reak_, ršyt, اسف_,\n  { {0x2249002d, 0x4f6b007c, 0x212901a3, 0x00000000}},  //   seak_, йшем_, ruah_,\n  { {0x3f870161, 0x212901a3, 0x00000000, 0x00000000}},  //   ánu_, suah_,   ,\n  { {0x3f8f0036, 0x3af10011, 0x645701f3, 0x00000000}},  //   ągu_, _ráp_, _haxi,\n  { {0x3f870091, 0x3af10082, 0x3ce5010e, 0x00000000}},  //   šnu_, _sáp_, _pilv_,\n  { {0xd7e60054, 0x645701c3, 0xea63009e, 0x00000000}},  //   _لك_, _jaxi, کھئی,\n  { {0x6a7c009d, 0x443300d2, 0x999f012d, 0x00000000}},  //   _réfr, _mcx_, deuš_,\n  { {0x9411005f, 0x7d090807, 0x64570068, 0x00000000}},  //   rizə_, _twes, _laxi,\n  { {0x44330c0d, 0x6ba6006b, 0x7e69058b, 0x00000000}},  //   _ocx_, _əsgə, _inep,\n  { {0x7e7b013e, 0x76560d92, 0x9f5a004a, 0x00000000}},  //   _houp, _sayy, capó_,\n  { {0x7e7b1c5c, 0x7e6902e7, 0x00000000, 0x00000000}},  //   _koup, _knep,   ,\n  { {0xe5a609f1, 0xd0160044, 0x7e7b21ab, 0x00000000}},  //   дими, ালয়_, _joup,\n  { {0x6b8327f4, 0x6457006b, 0x7e7b000a, 0x00000000}},  //   lyng, _baxi, _moup,\n  { {0xd9420057, 0x64570181, 0x98f40025, 0x00000000}},  //   _реши, _caxi, _أثنا,\n  { {0x6457005f, 0xa3d803d7, 0x7656005a, 0x00000000}},  //   _daxi, ़ें_, _tayy,\n  { {0x7e7b27f5, 0x00000000, 0x00000000, 0x00000000}},  //   _noup,   ,   ,\n  { {0x00e6008b, 0x64571806, 0x8afc0036, 0x00000000}},  // [6e80] джан, _faxi, _kręc,\n  { {0xf4250055, 0xeb0d013d, 0x00000000, 0x00000000}},  //   ম্বর_, _सबूत_,   ,\n  { {0x6490006c, 0xdd8f02fd, 0x00000000, 0x00000000}},  //   _väid, یوم_,   ,\n  { {0x7e7b030a, 0xdfcf0025, 0x00000000, 0x00000000}},  //   _coup, جيم_,   ,\n  { {0x6490006c, 0x4103005e, 0x7e7b27f6, 0x00000000}},  //   _täid, _изяв, _doup,\n  { {0x44f400b0, 0x6b830016, 0x6fd60309, 0x00000000}},  //   _mä_, fyng, _भरपू,\n  { {0x6b83018e, 0x6490006c, 0x9057009b, 0x00000000}},  //   gyng, _käib, _קבלו_,\n  { {0xf1bf002a, 0x5a34011e, 0x7e7b009d, 0x00000000}},  //   _gcás_, хнит, _goup,\n  { {0x44f40c43, 0xcfb00044, 0xbea32337, 0x00000000}},  //   _nä_, _করিন, _ратк,\n  { {0x7d0227f7, 0x6c3200a1, 0xd7f70454, 0x00000000}},  //   mpos, _شہبا, мую_,\n  { {0x7d0200b0, 0x7e7b009d, 0x44330068, 0x00000000}},  //   lpos, _youp, _rcx_,\n  { {0x64570c95, 0x44331fce, 0x79a600e2, 0x00000000}},  //   _saxi, _scx_, _орле,\n  { {0x7d02002d, 0x64570061, 0xb4e90164, 0x00000000}},  //   npos, _paxi, यदे_,\n  { {0xd7ef0098, 0x7d020087, 0x44f406d3, 0x00000000}},  //   _ју_, ipos, _dä_,\n  { {0xf8b000a1, 0x18330025, 0x22420288, 0x00000000}},  //   _لکھ_, _شروح, _bbkk_,\n  { {0x2738049a, 0x6457016b, 0x320f0010, 0x00000000}},  //   mén_, _waxi, úgy_,\n  { {0x7e7b0181, 0x2738167d, 0x7d02049c, 0x00000000}},  // [6e90] _roup, lén_, jpos,\n  { {0x7e7b27f8, 0x6fa0013d, 0xd011002c, 0x00000000}},  //   _soup, _गेहू, الا_,\n  { {0x7e7b1729, 0x2fc70030, 0x39460009, 0x00000000}},  //   _poup, æng_, _lpos_,\n  { {0x394600d4, 0x7d020240, 0x00000000, 0x00000000}},  //   _opos_, fpos,   ,\n  { {0x7d020e95, 0x84980014, 0x1d0901c0, 0x00000000}},  //   gpos, _رئیس_, чели_,\n  { {0x64900004, 0x443101d0, 0x27380010, 0x00000000}},  //   _täie, ngz_, kén_,\n  { {0x7e7b0263, 0x4fc427f9, 0xce95005e, 0x00000000}},  //   _toup, _аста, _завъ,\n  { {0x7d0200ea, 0x20110032, 0x273827fa, 0x00000000}},  //   bpos, _hezi_, dén_,\n  { {0x7d0202a9, 0x39460085, 0x00000000, 0x00000000}},  //   cpos, _cpos_,   ,\n  { {0x20110263, 0x81b10044, 0xf0920049, 0x00000000}},  //   _jezi_, _ওরা_, ָנט_,\n  { {0x20110224, 0x39460007, 0x27380344, 0x00000000}},  //   _mezi_, _epos_, gén_,\n  { {0x20110107, 0xa9090025, 0x63bb005d, 0x00000000}},  //   _lezi_, _فيصل_, ğunl,\n  { {0x3eaf0051, 0x63bb006b, 0xd914007e, 0x00000000}},  //   ingt_, şunl, _адчы,\n  { {0x2738008e, 0x9f41004a, 0x00000000, 0x00000000}},  //   bén_, nchó_,   ,\n  { {0x22590066, 0x2738008e, 0x7d0227fb, 0x00000000}},  //   _bask_, cén_, zpos,\n  { {0x22590606, 0x44f40bac, 0xd04a006b, 0x00000000}},  //   _cask_, _tä_, ənəv,\n  { {0x95560054, 0x26c2002d, 0x76440009, 0x00000000}},  // [6ea0] _أخبا, moko_, _ibiy,\n  { {0x26c20d58, 0x628f15e3, 0xb21b0030, 0x00000000}},  //   loko_, _elco, _blæs,\n  { {0x03a60088, 0x644e0146, 0x7d1b27fc, 0x00000000}},  //   _чино, mebi, _avus,\n  { {0x81e20055, 0x444401a3, 0x645c27fd, 0x00000000}},  //   নুষ_, _hb_, ldri,\n  { {0x9f5800d4, 0x27380d7f, 0x127b0049, 0x00000000}},  //   _peró_, zén_, _זאכע,\n  { {0xa802005f, 0x98a4001e, 0x7d0200ab, 0x00000000}},  //   _çıxa, kumā_, rpos,\n  { {0x98a4001e, 0x26c202f6, 0x394601ee, 0x00000000}},  //   jumā_, koko_, _spos_,\n  { {0x44441d9e, 0x6564011c, 0x7f3b00a0, 0x00000000}},  //   _lb_, _orih, _מעלו,\n  { {0x444427fe, 0x644e0453, 0x26c2002d, 0x00000000}},  //   _ob_, kebi, doko_,\n  { {0x27380047, 0x4444006c, 0x764404cd, 0x00000000}},  //   tén_, _nb_, _abiy,\n  { {0x5695029b, 0x644e11bd, 0xd7f8001a, 0x00000000}},  //   вант, debi, rcă_,\n  { {0x4444051d, 0x645c125b, 0x9bb7012e, 0x00000000}},  //   _ab_, edri, _אהבה_,\n  { {0x225901e3, 0x656400e5, 0x27380232, 0x00000000}},  //   _rask_, _crih, sén_,\n  { {0x44441134, 0x644e0f4f, 0x645c00d9, 0x00000000}},  //   _cb_, gebi, gdri,\n  { {0x44441233, 0x3267008b, 0x26c20091, 0x00000000}},  //   _db_, нтав, boko_,\n  { {0xd25827ff, 0x201101aa, 0x65640cb2, 0x00000000}},  //   нцу_, _sezi_, _frih,\n  { {0x4444023a, 0x44310061, 0x2b520036, 0x00000000}},  // [6eb0] _fb_, pgz_, łych_,\n  { {0x4444001d, 0x644e0181, 0xd91b00a3, 0x00000000}},  //   _gb_, cebi, פובל,\n  { {0x2011000d, 0xceeb0167, 0x225900ab, 0x00000000}},  //   _vezi_, سران_, _task_,\n  { {0x9f582800, 0x765d0030, 0x531a01ce, 0x00000000}},  //   _però_, ndsy, _קורצ,\n  { {0x3209011c, 0x44442801, 0x760c0049, 0x00000000}},  //   mbay_, _yb_, פּאַ,\n  { {0x7d1c0089, 0x26c21242, 0x21292802, 0x00000000}},  //   _ārst, zoko_, mrah_,\n  { {0x5fc50061, 0x442100d9, 0x26c20020, 0x00000000}},  //   _वडिल, _mdh_, yoko_,\n  { {0x644e2803, 0x98a40089, 0x395f010e, 0x00000000}},  //   zebi, vumā_, tvus_,\n  { {0x6e940264, 0x644e011f, 0xb60400b9, 0x00000000}},  //   _ситу, yebi, ndář,\n  { {0x644e002d, 0x26c22804, 0x6aa20026, 0x00000000}},  //   xebi, woko_, _emof,\n  { {0x4444023a, 0x6c7a0049, 0x3209011c, 0x00000000}},  //   _rb_, _קרעד, kbay_,\n  { {0x65640027, 0x444400b9, 0x2ca7000c, 0x00000000}},  //   _prih, _sb_, lind_,\n  { {0x44440181, 0x26c2022b, 0x644e04db, 0x00000000}},  //   _pb_, roko_, tebi,\n  { {0x61fd0030, 0x2ca7001a, 0x98a40089, 0x00000000}},  //   _afsl, nind_, pumā_,\n  { {0x645c0030, 0x69cb1c83, 0x44210146, 0x00000000}},  //   rdri, _hyge, _ddh_,\n  { {0x2ca72805, 0x644e2806, 0x7afc0047, 0x00000000}},  //   hind_, sebi, _érte,\n  { {0x2ca7063c, 0x21290093, 0x656401f3, 0x00000000}},  // [6ec0] kind_, grah_, _urih,\n  { {0x44440af0, 0x7aeb26c3, 0x42c40044, 0x00000000}},  //   _ub_, _ligt, ্দেশ,\n  { {0xee3a012b, 0x6d49049a, 0xe29a0517, 0x00000000}},  //   дне_, _apea, _жан_,\n  { {0x26c30119, 0x787e00b9, 0x32090082, 0x00000000}},  //   čkog_, _závě, cbay_,\n  { {0x2ca70606, 0x3ea61689, 0x201c00c4, 0x00000000}},  //   find_, riot_, óvis_,\n  { {0x9f58000c, 0x60c70022, 0x2ca72807, 0x00000000}},  //   _ferð_, _gkjm, gind_,\n  { {0x7aeb0058, 0x9f58000c, 0x8fa6004d, 0x00000000}},  //   _bigt, _gerð_, _раве,\n  { {0x69cb0343, 0x67280521, 0xab8300a8, 0x00000000}},  //   _byge, vrdj, рушк,\n  { {0x7aeb2808, 0x2ca701d6, 0x764f00d2, 0x00000000}},  //   _digt, bind_, vecy,\n  { {0x2ca72809, 0x2bbb013d, 0x00000000, 0x00000000}},  //   cind_, _ऊँचा,   ,\n  { {0x3209011c, 0x7aeb0146, 0x9c7c0738, 0x00000000}},  //   ybay_, _figt, _niči,\n  { {0x4421280a, 0x473300a1, 0x752f0036, 0x00000000}},  //   _sdh_, گریز, tucz,\n  { {0x44210300, 0x385700a6, 0x68ea0066, 0x00000000}},  //   _pdh_, رشید_, _tifd,\n  { {0x3af8280b, 0x98a300ed, 0x9c7c0006, 0x00000000}},  //   _kép_, _киче, _biči,\n  { {0xa3dd03d7, 0x44210302, 0xd25b1076, 0x00000000}},  //   तें_, _vdh_, мца_,\n  { {0xd83805d2, 0x212901a3, 0x44210240, 0x00000000}},  //   diči_, trah_, _wdh_,\n  { {0xdddb0428, 0x320915dc, 0x3af8280c, 0x00000000}},  // [6ed0] _služ, rbay_, _lép_,\n  { {0x9418005f, 0x66df0a5c, 0x44211c70, 0x00000000}},  //   kirə_, _tūks, _udh_,\n  { {0x2ca7280d, 0x6d4900ab, 0xdb1e00f4, 0x00000000}},  //   vind_, _spea, _évèn,\n  { {0x2ca70007, 0x9f58009f, 0x21290093, 0x00000000}},  //   wind_, _verð_, prah_,\n  { {0x7aeb280e, 0x2ca7001a, 0x3cec0082, 0x00000000}},  //   _rigt, tind_, _bidv_,\n  { {0x7aeb280f, 0x6490006c, 0x69cb0030, 0x00000000}},  //   _sigt, _läin, _ryge,\n  { {0x447c007b, 0x2ca72810, 0x69cb0030, 0x00000000}},  //   ונגע, rind_, _syge,\n  { {0x3af82811, 0x2ca71dd4, 0x649001c2, 0x00000000}},  //   _dép_, sind_, _näin,\n  { {0x7aeb2812, 0x2ca72813, 0x6d4900b0, 0x00000000}},  //   _vigt, pind_, _upea,\n  { {0xd7090057, 0x7aeb01c3, 0x2ca70023, 0x00000000}},  //   нное_, _wigt, qind_,\n  { {0x16aa0b11, 0x3af80010, 0x69cb00b4, 0x00000000}},  //   евни_, _gép_, _wyge,\n  { {0x69cb04d1, 0xd05c006b, 0xda67009e, 0x00000000}},  //   _tyge, _dirə, _جائي,\n  { {0x5e560049, 0x6aa9095d, 0x07e800a1, 0x00000000}},  //   נישע_, mief, ٹریٹ_,\n  { {0x2eed2814, 0x6aa90dcc, 0x92b00044, 0x00000000}},  //   _lief_, lief, _ওঠে_,\n  { {0xd05c006b, 0x00000000, 0x00000000, 0x00000000}},  //   _girə,   ,   ,\n  { {0xb295012b, 0x6aa90146, 0x628d0058, 0x00000000}},  //   ајућ, nief, gkao,\n  { {0xe0da012b, 0x412703dc, 0x7989000b, 0x00000000}},  // [6ee0] ева_, лото_, nyew,\n  { {0x459b0104, 0x0717007d, 0x6616005d, 0x00000000}},  //   _נסיע, _दबाव_, _heyk,\n  { {0xe457007b, 0x443a0011, 0x9418006b, 0x00000000}},  //   _גייט_, _icp_, xirə_,\n  { {0xdb1e00f4, 0x42560331, 0x443a00f8, 0x00000000}},  //   _évén, _стот, _hcp_,\n  { {0x63b6001e, 0x2eed040f, 0x98a40006, 0x00000000}},  //   šanā, _dief_, lumą_,\n  { {0x10a601e0, 0x6adc02d2, 0x645e0065, 0x00000000}},  //   _сигн, मग्र, _japi,\n  { {0x645e15f4, 0x201a08e3, 0x2ba70164, 0x00000000}},  //   _mapi, mapi_, _केदा,\n  { {0x201a2815, 0xdd1600a6, 0x6f0300d4, 0x00000000}},  //   lapi_, _مورخ, ínce,\n  { {0x443a0048, 0xcc360355, 0x00000000, 0x00000000}},  //   _ocp_, _مراع,   ,\n  { {0x315700b6, 0xfce6005e, 0x8d930025, 0x00000000}},  //   ניין_, _созо, _الكش,\n  { {0xb8660014, 0xc6000044, 0x24810740, 0x00000000}},  //   ناگو, ্ণনা_, _rohm_,\n  { {0x41b40061, 0x645e2816, 0x00000000, 0x00000000}},  //   ंपास, _aapi,   ,\n  { {0x201a0169, 0x443a263c, 0x386e00f6, 0x00000000}},  //   kapi_, _bcp_, _tnfr_,\n  { {0x645e2817, 0x66d611ea, 0x00000000, 0x00000000}},  //   _capi, ráka,   ,\n  { {0x201a04cb, 0xf53f1861, 0x645e2818, 0x00000000}},  //   dapi_, stå_, _dapi,\n  { {0x925803dc, 0x68ed002a, 0x661601c3, 0x00000000}},  //   ласт_, _éadr, _geyk,\n  { {0x7c3a1de2, 0x645e2323, 0x2eed01a2, 0x00000000}},  // [6ef0] _octr, _fapi, _rief_,\n  { {0x645e01d6, 0x201a2819, 0x00000000, 0x00000000}},  //   _gapi, gapi_,   ,\n  { {0x23fa009b, 0x14b80426, 0x20d400b0, 0x00000000}},  //   _בהתא, _حديث_, päin_,\n  { {0x645e281a, 0xed59012d, 0x00000000, 0x00000000}},  //   _zapi, _psž_,   ,\n  { {0x645e055b, 0xed59003b, 0xddc5025f, 0x00000000}},  //   _yapi, тол_, јбли,\n  { {0x99dd00b9, 0x64900bac, 0x201a0145, 0x00000000}},  //   zeňs, _näil, capi_,\n  { {0x6aa907eb, 0x3f87006c, 0x2eed010f, 0x00000000}},  //   tief, änud_, _tief_,\n  { {0xa92501c0, 0x00000000, 0x00000000, 0x00000000}},  //   адил,   ,   ,\n  { {0x6616009f, 0xe9d9005e, 0x8e840025, 0x00000000}},  //   _reyk, ъки_, _القه,\n  { {0xa3b503d7, 0x00000000, 0x00000000, 0x00000000}},  //   जपा_,   ,   ,\n  { {0xe739012b, 0xf745003b, 0x81ce0044, 0x00000000}},  //   њем_, шено, ষেপ_,\n  { {0x6b7a0476, 0x645e26df, 0xd5e60216, 0x00000000}},  //   _ברענ, _sapi, ижни,\n  { {0x2d9d0061, 0x443a281b, 0xc8b40123, 0x00000000}},  //   nzwe_, _pcp_, _گلوک,\n  { {0x2aba0089, 0x37e50131, 0x00000000, 0x00000000}},  //   mība_, _колг,   ,\n  { {0x6383012b, 0x2aba0089, 0xc7a2005e, 0x00000000}},  //   огра, lība_, _мишк,\n  { {0x645e000b, 0x98a40006, 0x60280089, 0x00000000}},  //   _wapi, rumą_, zīmē,\n  { {0x201a027e, 0xe1f701e1, 0x2aba0089, 0x00000000}},  // [6f00] tapi_, ргу_, nība_,\n  { {0x60260c4e, 0x6490006c, 0xa4940014, 0x00000000}},  //   рджа, _käim, _ایست,\n  { {0x6d5b0144, 0xb4c4013d, 0x41d5013d, 0x00000000}},  //   _asua, ौती_, _दरअस,\n  { {0x201a281c, 0xdfcf0054, 0xcd06092b, 0x00000000}},  //   sapi_, ذين_, ачки,\n  { {0x201a010e, 0x00000000, 0x00000000, 0x00000000}},  //   papi_,   ,   ,\n  { {0x2aba0089, 0x4438281d, 0x9b26004d, 0x00000000}},  //   dība_, ngr_, афил,\n  { {0x2018061a, 0x92d80055, 0x66dd0010, 0x00000000}},  //   _ieri_, াদী_, léke,\n  { {0xe8df001d, 0x6490003c, 0x20180258, 0x00000000}},  //   ước_, _säil, _heri_,\n  { {0x7c3a00ea, 0xed570a78, 0x5ecc0044, 0x00000000}},  //   _tctr, _кот_, িষদে,\n  { {0x7e620bc7, 0x7e600971, 0x47340a85, 0x00000000}},  //   ldop, _hamp, бнос,\n  { {0xb8fd03d7, 0x501b00b6, 0x20181553, 0x00000000}},  //   _थी_, כויו, _meri_,\n  { {0x4438018e, 0x7bda1e6b, 0x7e600145, 0x00000000}},  //   egr_, _iztu, _jamp,\n  { {0x7e60020c, 0x2aba001e, 0x6d420e67, 0x00000000}},  //   _mamp, cība_, ntoa,\n  { {0x442d001f, 0x2018064c, 0x7e6009d5, 0x00000000}},  //   ße_, _neri_, _lamp,\n  { {0x93880081, 0x61ec006b, 0xa87b01ce, 0x00000000}},  //   аста_, ənlə, _באגר,\n  { {0x7e600127, 0x2018281e, 0xa8030279, 0x00000000}},  //   _namp, _aeri_, _çırp,\n  { {0x661d1dc7, 0x201814d7, 0x7e620197, 0x00000000}},  // [6f10] mask, _beri_, ddop,\n  { {0xdb1a00f4, 0x6d42281f, 0x29060020, 0x00000000}},  //   _exté, dtoa, _mtoa_,\n  { {0x2018008d, 0x46bb0309, 0x64551c5e, 0x00000000}},  //   _deri_, _उदाह, mezi,\n  { {0x64552820, 0x44fd0011, 0x661d26bd, 0x00000000}},  //   lezi, _kì_, nask,\n  { {0x7e60023a, 0x63bb005a, 0x4e180014, 0x00000000}},  //   _damp, ğunu, شتند_,\n  { {0x64550207, 0x2018049d, 0xaf3700a6, 0x00000000}},  //   nezi, _geri_, _پرست,\n  { {0x1fe50055, 0x2f18008b, 0x661d170d, 0x00000000}},  //   _প্রস, _вось_, kask,\n  { {0x7e60023a, 0x291f002d, 0x13b8009b, 0x00000000}},  //   _gamp, tsua_, יהול_,\n  { {0x6d5b201e, 0x20180279, 0xcaa40025, 0x00000000}},  //   _usua, _yeri_, تصوي,\n  { {0x2001000b, 0x7e600197, 0x2aba0089, 0x00000000}},  //   nchi_, _zamp, rība_,\n  { {0x66dd0010, 0x2aba0089, 0x291f0511, 0x00000000}},  //   zéke, sība_, ssua_,\n  { {0xa50a2821, 0x661d04d4, 0x7e6000d4, 0x00000000}},  //   лема_, gask, _xamp,\n  { {0x64550207, 0xddcb0036, 0x44382822, 0x00000000}},  //   fezi, legł, tgr_,\n  { {0x2a7f003b, 0x66dd0010, 0x645500bb, 0x00000000}},  //   ljub_, véke, gezi,\n  { {0x66e603f3, 0x661d04cb, 0x64a32823, 0x00000000}},  //   _лока, bask, чара,\n  { {0x66dd0047, 0x272301f6, 0x20182824, 0x00000000}},  //   téke, mın_, _seri_,\n  { {0x44fd001d, 0x2ef80142, 0x7e602397, 0x00000000}},  // [6f20] _gì_, _surf_, _ramp,\n  { {0x7e600971, 0x21200169, 0x64550207, 0x00000000}},  //   _samp, rsih_, cezi,\n  { {0x2723038c, 0x201814ce, 0x7e60066d, 0x00000000}},  //   nın_, _veri_, _pamp,\n  { {0xc33300b6, 0x7e6200ea, 0x6d420dc9, 0x00000000}},  //   _צור_, udop, ttoa,\n  { {0xf767009c, 0x7bda0046, 0x763b007b, 0x00000000}},  //   _کا_, _sztu, רענג,\n  { {0x40960054, 0x20010198, 0x27230676, 0x00000000}},  //   _السر, cchi_, kın_,\n  { {0x62860f80, 0xa3e0006e, 0x6d420315, 0x00000000}},  //   _koko, _तरफ_, stoa,\n  { {0x272301f6, 0x6286002d, 0x6d420035, 0x00000000}},  //   dın_, _joko, ptoa,\n  { {0x661d0030, 0x62860006, 0xdee32825, 0x00000000}},  //   vask, _moko, _хоти,\n  { {0x415b0049, 0x09070044, 0x66042826, 0x00000000}},  //   נדיג, _শিশু_, _afik,\n  { {0x661d000c, 0x44fd0438, 0x7bda0089, 0x00000000}},  //   task, _sì_, _uztu,\n  { {0x62860056, 0x645500bb, 0x00000000, 0x00000000}},  //   _noko, wezi,   ,\n  { {0x64550ef1, 0xf1bf008e, 0x66dd0010, 0x00000000}},  //   tezi, _adán_, tékb,\n  { {0x44fd001d, 0x661d2827, 0x2723005d, 0x00000000}},  //   _vì_, sask, bın_,\n  { {0x64552828, 0x7afa0943, 0x661d01a3, 0x00000000}},  //   rezi, _jutt, pask,\n  { {0x7afa0e2d, 0x64552829, 0x44fd0082, 0x00000000}},  //   _mutt, sezi, _tì_,\n  { {0x62860387, 0x6455002d, 0x7afa00f4, 0x00000000}},  // [6f30] _doko, pezi, _lutt,\n  { {0x656d0009, 0x649000b0, 0x64550023, 0x00000000}},  //   _irah, _näih, qezi,\n  { {0x7afa00d9, 0x20010207, 0x6286171f, 0x00000000}},  //   _nutt, rchi_, _foko,\n  { {0x656d008d, 0x7c280038, 0x20010207, 0x00000000}},  //   _krah, _addr, schi_,\n  { {0x823a007b, 0x272301f6, 0x764d000b, 0x00000000}},  //   _דערצ, zın_, _mbay,\n  { {0x272301f6, 0xa3bd001c, 0x7afa0498, 0x00000000}},  //   yın_, _अशा_, _butt,\n  { {0xeb990741, 0x2723005f, 0x543c0049, 0x00000000}},  //   рий_, xın_, טעגא,\n  { {0x7afa0d1a, 0x6490006c, 0xf78a014a, 0x00000000}},  //   _dutt, _päik, _maçı_,\n  { {0xe8f60783, 0xc9850025, 0x23640089, 0x00000000}},  //   олы_, تشغي, āmji_,\n  { {0x3eaf04d7, 0x7d04001e, 0x64900004, 0x00000000}},  //   ligt_, ģist, _väik,\n  { {0xa3a903d7, 0x75240207, 0x656d01a3, 0x00000000}},  //   _खेल_, _sviz, _arah,\n  { {0x2723038c, 0x67210521, 0x3eaf01a2, 0x00000000}},  //   rın_, rslj, nigt_,\n  { {0x62860027, 0x272301f6, 0xdce0000d, 0x00000000}},  //   _roko, sın_, _urmă,\n  { {0x764d001c, 0x62860127, 0x2723014a, 0x00000000}},  //   _ebay, _soko, pın_,\n  { {0x6e290c0f, 0x5ec90061, 0xaca30011, 0x00000000}},  //   _odeb, िकाऱ, _huỳn,\n  { {0xa3a90061, 0xb5fb19ad, 0x6e29282a, 0x00000000}},  //   _खेळ_, ndál, _ndeb,\n  { {0x3eaf033d, 0x61430072, 0xe8000204, 0x00000000}},  // [6f40] digt_, мета, लुका_,\n  { {0x6286282b, 0x00000000, 0x00000000, 0x00000000}},  //   _woko,   ,   ,\n  { {0x6e2900f6, 0x31690320, 0x00000000, 0x00000000}},  //   _bdeb, avaz_,   ,\n  { {0x823602fd, 0x7afa010e, 0x3eaf282c, 0x00000000}},  //   _بردا, _rutt, gigt_,\n  { {0x7afa02e7, 0x7d09282d, 0xdce9002b, 0x00000000}},  //   _sutt, _ctes, _greċ,\n  { {0x6e29011f, 0x26cb004a, 0x00000000, 0x00000000}},  //   _edeb, zoco_,   ,\n  { {0x46ca0164, 0x00000000, 0x00000000, 0x00000000}},  //   रवाह,   ,   ,\n  { {0x7d090065, 0xee371769, 0x2c0a0044, 0x00000000}},  //   _ftes, _мнс_, রণেই_,\n  { {0x26cb0cc2, 0x9c7c0173, 0x1d071534, 0x00000000}},  //   voco_, _chčc, _мети_,\n  { {0x7afa05d3, 0xa49b0263, 0x656d0065, 0x00000000}},  //   _tutt, npòt, _rrah,\n  { {0x7afa00b0, 0xe7580088, 0x00000000, 0x00000000}},  //   _uutt, щині_,   ,\n  { {0x656d0224, 0x569402d3, 0xc7b80166, 0x00000000}},  //   _prah, дают, gađa_,\n  { {0xfaf80089, 0x19b60025, 0x7ae20052, 0x00000000}},  //   _trīs_, _بحاج, _ihot,\n  { {0xfbd100a1, 0x14cb007c, 0xb4db00f6, 0x00000000}},  //   _آتے_, рыми_, ctàl,\n  { {0x7ae20093, 0x2249014a, 0x26cb0555, 0x00000000}},  //   _khot, tfak_, poco_,\n  { {0x656d282e, 0xdce9002b, 0x764d1ff1, 0x00000000}},  //   _trah, _preċ, _ubay,\n  { {0x656d0020, 0x7ae20051, 0x3eaf282f, 0x00000000}},  // [6f50] _urah, _mhot, vigt_,\n  { {0x7ae2013e, 0x8078091b, 0xb5fb140f, 0x00000000}},  //   _lhot, обус_, zdál,\n  { {0x7d092830, 0x3eaf2831, 0xa7fc026d, 0x00000000}},  //   _stes, tigt_, ydın,\n  { {0xe0df01aa, 0x9258007c, 0x82f80123, 0x00000000}},  //   _apòt_, _дают_, _گریز_,\n  { {0x41e70106, 0x3eaf033d, 0x427a0104, 0x00000000}},  //   _фіна, rigt_, _הארג,\n  { {0x4c84008b, 0x3eaf0193, 0x7ae2002d, 0x00000000}},  //   млів, sigt_, _ahot,\n  { {0x2b570014, 0x7ae20048, 0xb18600f8, 0x00000000}},  //   تیاد_, _bhot, _tvåå,\n  { {0x6e292832, 0x7ae20051, 0x7d090066, 0x00000000}},  //   _udeb, _chot, _ttes,\n  { {0xf2d40049, 0xaca30011, 0x7d0901c9, 0x00000000}},  //   ועק_, _quỳn, _utes,\n  { {0x48790057, 0x290d0032, 0x00000000, 0x00000000}},  //   ссия_, rpea_,   ,\n  { {0x7ae22833, 0x6490006c, 0x7b6400aa, 0x00000000}},  //   _fhot, _käiv, _отце,\n  { {0x869a00ed, 0x98ad0059, 0x7ae222d1, 0x00000000}},  //   стот_, mreč_, _ghot,\n  { {0x9f580056, 0x00000000, 0x00000000, 0x00000000}},  //   _ifrå_,   ,   ,\n  { {0x7ae90010, 0x3ebf04eb, 0x07a5137c, 0x00000000}},  //   lmet, _ljut_, _налн,\n  { {0x7ae9013f, 0xccf2009b, 0xe29600ed, 0x00000000}},  //   omet, תכם_, праќ,\n  { {0xd5ad026c, 0x7afe12b2, 0x6abb2834, 0x00000000}},  //   اہی_, ípti, nnuf,\n  { {0x27e20036, 0x7ae92835, 0x8ffa0025, 0x00000000}},  // [6f60] ękne_, imet, مرار_,\n  { {0xd12f0d3a, 0x7ae914ce, 0x3ebf0dd5, 0x00000000}},  //   امل_, hmet, _ajut_,\n  { {0x7ae9006c, 0xd4c50380, 0xe3b20070, 0x00000000}},  //   kmet, _تغيي, _سرد_,\n  { {0xdfcf0380, 0x7ae90c8a, 0xde030589, 0x00000000}},  //   ديم_, jmet, епци,\n  { {0x7ae92836, 0x9c7c0087, 0x00000000, 0x00000000}},  //   dmet, _ahča,   ,\n  { {0xdca3019d, 0x3ead00d4, 0x7ae91768, 0x00000000}},  //   начи, _emet_, emet,\n  { {0x7ae2030a, 0xe81f013d, 0x7ae92586, 0x00000000}},  //   _phot, _मज़ा_, fmet,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x81ce0055, 0x3ea72837, 0x00000000, 0x00000000}},  //   ষের_, ënte_,   ,\n  { {0x26c30119, 0x2db701ce, 0x27f805b7, 0x00000000}},  //   čkom_, _זלמן_, ørn_,\n  { {0x7ae2008d, 0x1635007c, 0x7ae92838, 0x00000000}},  //   _thot, меня, bmet,\n  { {0xba170025, 0xfaa3007e, 0xeb970104, 0x00000000}},  //   _فيما_, _пахо, _מדבר_,\n  { {0x628412d0, 0x00000000, 0x00000000, 0x00000000}},  //   djio,   ,   ,\n  { {0x26d20009, 0x6fbe0061, 0x81e20044, 0x00000000}},  //   _ekyo_, ्थां, দশা_,\n  { {0x67d30099, 0x2a66006c, 0x6e222839, 0x00000000}},  //   _пошу, _kaob_, kaob,\n  { {0xd7bb009b, 0x62840065, 0x66060026, 0x00000000}},  //   _לצור, gjio, cckk,\n  { {0x518701f9, 0xdce901d9, 0x66dd0010, 0x00000000}},  // [6f70] чува, _sreč, léko,\n  { {0x7ae9283a, 0xdce909a9, 0x3ead0a75, 0x00000000}},  //   zmet, _preč, _smet_,\n  { {0x6490021e, 0x44230381, 0x7ae9014a, 0x00000000}},  //   _päiv, maj_, ymet,\n  { {0xdce907a0, 0xcf98003b, 0x00000000, 0x00000000}},  //   _vreč, чју_,   ,\n  { {0xdd94007e, 0x629d0197, 0x00000000, 0x00000000}},  //   нацы, _ilso,   ,\n  { {0x44230381, 0xdce9283b, 0x66dd00b9, 0x00000000}},  //   naj_, _treč, kéko,\n  { {0x26c30363, 0x7ae9006c, 0x66dd0010, 0x00000000}},  //   čkoj_, tmet, jéko,\n  { {0xb3aa0055, 0x68e30065, 0x66dd0010, 0x00000000}},  //   _খুঁজ, _shnd, déko,\n  { {0x442314d4, 0x6efa00b9, 0x6abb004e, 0x00000000}},  //   kaj_, _vůbe, rnuf,\n  { {0x7ae9283c, 0x290b0089, 0x44230213, 0x00000000}},  //   smet, īca_, jaj_,\n  { {0xb90403d7, 0x442305e1, 0x229c009f, 0x00000000}},  //   _भी_, daj_, _líka_,\n  { {0x7a36014a, 0x7c230145, 0x00000000, 0x00000000}},  //   rütü, lanr,   ,\n  { {0xa3e003d7, 0x9583007c, 0x20bf007d, 0x00000000}},  //   _तरह_, вляе, ्वाध,\n  { {0x64900cfc, 0x44230059, 0x629d00b5, 0x00000000}},  //   _näit, gaj_, _also,\n  { {0x6e2200ea, 0x00000000, 0x00000000, 0x00000000}},  //   yaob,   ,   ,\n  { {0x3a3f0145, 0x79960036, 0x7d1b000a, 0x00000000}},  //   ngup_, _żywi, _owus,\n  { {0xd84e0082, 0x00000000, 0x00000000, 0x00000000}},  // [6f80] _mọng_,   ,   ,\n  { {0x4423041a, 0x92be0055, 0x6564012d, 0x00000000}},  //   caj_, ইতে_, _isih,\n  { {0x645c283d, 0xb4da013d, 0xdfcf0025, 0x00000000}},  //   meri, ़ती_, ليك_,\n  { {0x645c1baf, 0x44440161, 0x00000000, 0x00000000}},  //   leri, _hc_,   ,\n  { {0x4444013e, 0xfee90054, 0xfe7900b9, 0x00000000}},  //   _kc_, أعلى_, _dnů_,\n  { {0x6490006c, 0x00000000, 0x00000000, 0x00000000}},  //   _täiu,   ,   ,\n  { {0x444400eb, 0x645c283e, 0xdfd20f8b, 0x00000000}},  //   _mc_, ieri, _شير_,\n  { {0x4423283f, 0x444401a3, 0xa7fc047f, 0x00000000}},  //   zaj_, _lc_, rdım,\n  { {0x4444027b, 0xa802011f, 0x4423204d, 0x00000000}},  //   _oc_, _çıka, yaj_,\n  { {0x6e202840, 0x66dd0010, 0x645c20a3, 0x00000000}},  //   _hemb, téko, jeri,\n  { {0x6e202841, 0x2c140316, 0x44232842, 0x00000000}},  //   _kemb, _न्यू_, vaj_,\n  { {0x44440bc4, 0x6e20023a, 0x7d000020, 0x00000000}},  //   _ac_, _jemb, _kums,\n  { {0x6e20020c, 0x44231191, 0x44440011, 0x00000000}},  //   _memb, taj_, _bc_,\n  { {0x44442843, 0x6e200475, 0x3a2400bb, 0x00000000}},  //   _cc_, _lemb, lamp_,\n  { {0x44442844, 0x442301d9, 0x7d000146, 0x00000000}},  //   _dc_, raj_, _lums,\n  { {0x4423011f, 0x44442845, 0x3867016c, 0x00000000}},  //   saj_, _ec_, _zanr_,\n  { {0x7c230061, 0x442301d9, 0x7d0023bd, 0x00000000}},  // [6f90] yanr, paj_, _nums,\n  { {0x645c062c, 0xfe700014, 0x44230023, 0x00000000}},  //   ceri, یدن_, qaj_,\n  { {0x9f040076, 0x644500b5, 0x3a2418b1, 0x00000000}},  //   نولو, _ichi, kamp_,\n  { {0x765d0016, 0x7d000302, 0x4421016e, 0x00000000}},  //   nesy, _bums, _heh_,\n  { {0x7d000061, 0x64900004, 0x61ad0044, 0x00000000}},  //   _cums, _täit, _কুরআ,\n  { {0xf41d0055, 0x649003b6, 0x8c43001a, 0x00000000}},  //   _তাঁর_, _häir, ăşoa,\n  { {0x44212846, 0xa6d60044, 0x64450020, 0x00000000}},  //   _meh_, _সংঘট, _mchi,\n  { {0xc334009b, 0xd0240044, 0x6e20003f, 0x00000000}},  //   דוק_, _পায়_, _gemb,\n  { {0xd84e001d, 0x645c169c, 0x6445001a, 0x00000000}},  //   _vọng_, yeri, _ochi,\n  { {0x6445000b, 0x645c0039, 0x442104cb, 0x00000000}},  //   _nchi, xeri, _neh_,\n  { {0x765d04cd, 0x645c2847, 0x7e6900e0, 0x00000000}},  //   fesy, veri, _kaep,\n  { {0x64450899, 0xeb96007b, 0x44440181, 0x00000000}},  //   _achi, _אדער_, _sc_,\n  { {0x442106ae, 0x753d0010, 0x2d49008e, 0x00000000}},  //   _beh_, gusz, núe_,\n  { {0x444400f4, 0x442112da, 0xb4da013d, 0x00000000}},  //   _qc_, _ceh_, ़ते_,\n  { {0x444402d5, 0x645c0292, 0xe815001c, 0x00000000}},  //   _vc_, reri, _द्या_,\n  { {0x645c209d, 0x6445000d, 0xdb1a00b0, 0x00000000}},  //   seri, _echi, _tytö,\n  { {0x444402ad, 0x6e2000f4, 0x65640ab9, 0x00000000}},  // [6fa0] _tc_, _remb, _usih,\n  { {0x7d0000eb, 0x645c0065, 0xe0d7003b, 0x00000000}},  //   _rums, qeri, еву_,\n  { {0x6e200149, 0x7d002848, 0xe4c90025, 0x00000000}},  //   _pemb, _sums, _تبين_,\n  { {0x6490006c, 0x1ea90379, 0x20d4003c, 0x00000000}},  //   _täis, واني_, täis_,\n  { {0x3a242849, 0x44210784, 0x69d922fc, 0x00000000}},  //   vamp_, _yeh_, _nywe,\n  { {0x765d0036, 0x6e2011c2, 0x7c2100d4, 0x00000000}},  //   zesy, _wemb, _celr,\n  { {0x6e2004cb, 0x3a240087, 0x6d4b00d9, 0x00000000}},  //   _temb, tamp_, atga,\n  { {0x7d000089, 0x7e7b00d2, 0x69d901c3, 0x00000000}},  //   _tums, _gnup, _bywe,\n  { {0x3a2404d1, 0x7c2108fe, 0x6d4b0203, 0x00000000}},  //   ramp_, _felr, ctga,\n  { {0x69d9018e, 0x3ae1284a, 0xb5fb284b, 0x00000000}},  //   _dywe, rópa_, ndáv,\n  { {0x80370049, 0x21290161, 0x00000000, 0x00000000}},  //   ענטע_, zsah_,   ,\n  { {0x6445284c, 0x6f030b33, 0x4421284d, 0x00000000}},  //   _schi, ínci, _seh_,\n  { {0x765d0263, 0xba170025, 0x44210145, 0x00000000}},  //   resy, _أيها_, _peh_,\n  { {0x753d0036, 0x765d1129, 0xb866284e, 0x00000000}},  //   rusz, sesy, _ساتو,\n  { {0x765d110c, 0x00000000, 0x00000000, 0x00000000}},  //   pesy,   ,   ,\n  { {0x44210ea4, 0x753d0ef2, 0x5575004d, 0x00000000}},  //   _weh_, pusz, _агит,\n  { {0x25b7026c, 0x44210087, 0x60f90147, 0x00000000}},  // [6fb0] _سندھ_, _teh_, дная_,\n  { {0x64450020, 0x2aba0089, 0x7e7b0190, 0x00000000}},  //   _uchi, mību_, _snup,\n  { {0x2aba0089, 0x9c7c000a, 0x32090022, 0x00000000}},  //   lību_, _chčm, pcay_,\n  { {0x752d0107, 0x6d4b010f, 0xb21b000c, 0x00000000}},  //   _kvaz, ttga, _snæf,\n  { {0x2aba001e, 0x8d65007c, 0x660d0066, 0x00000000}},  //   nību_, твле, _mfak,\n  { {0x013600b6, 0x6d4b00ab, 0x7bda0190, 0x00000000}},  //   _ברשת_, rtga, _bytu,\n  { {0x7bda284f, 0x9f4700b0, 0xfaa500a8, 0x00000000}},  //   _cytu, änä_, како,\n  { {0x6d4b001c, 0x6f0901ca, 0x628f0173, 0x00000000}},  //   ptga, _čech, _joco,\n  { {0xfc330167, 0x628f14a6, 0xdce90035, 0x00000000}},  //   _محض_, _moco, _creă,\n  { {0x5ba701fb, 0x628f008e, 0xb4bd0309, 0x00000000}},  //   _през, _loco, ेको_,\n  { {0x7bda0016, 0xddc20089, 0x7af9005b, 0x00000000}},  //   _gytu, mdoš, _tiwt,\n  { {0x969601fc, 0x628f0c8a, 0xe1ff0082, 0x00000000}},  //   трош, _noco, _ngó_,\n  { {0x05630a12, 0x29d20014, 0x00000000, 0x00000000}},  //   авян, _پيوس,   ,\n  { {0x2a6d018e, 0xf7700014, 0xddc00087, 0x00000000}},  //   ldeb_, _گاه_, _jamš,\n  { {0x394d04bd, 0x628f008a, 0x752d001a, 0x00000000}},  //   ltes_, _boco, _evaz,\n  { {0x628f0390, 0xf65f01aa, 0x2a6d0016, 0x00000000}},  //   _coco, ceæ_, ndeb_,\n  { {0x394d2850, 0x41270113, 0x2aba001e, 0x00000000}},  // [6fc0] ntes_, кото_, cību_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x649b0476, 0x394d2851, 0x26c30235, 0x00000000}},  //   _חסיד, htes_, čkov_,\n  { {0x394d063c, 0x65762852, 0x7bda0a62, 0x00000000}},  //   ktes_, _kryh, _rytu,\n  { {0x7bda0036, 0x394d2853, 0x3f9c012d, 0x00000000}},  //   _sytu, jtes_, švu_,\n  { {0x61e62854, 0xdd93007e, 0xb5fb0051, 0x00000000}},  //   _izkl, рашы, leác,\n  { {0x2d80000d, 0x2aba0089, 0xfe460959, 0x00000000}},  //   ţie_, zību_, _инво,\n  { {0x394d0007, 0xdee60088, 0x628f0129, 0x00000000}},  //   ftes_, _роби, _xoco,\n  { {0x394d2855, 0x3ea600e0, 0x00000000, 0x00000000}},  //   gtes_, mhot_,   ,\n  { {0x7bda0046, 0xa786007a, 0x2bc20061, 0x00000000}},  //   _tytu, نشجو, षपदा,\n  { {0x69c40006, 0x752d00b9, 0x394d00ab, 0x00000000}},  //   _žied, _svaz, ates_,\n  { {0x394d0129, 0xc7b8016e, 0x2aba0089, 0x00000000}},  //   btes_, nađi_, tību_,\n  { {0x394d04bd, 0x98c600a8, 0x628f008e, 0x00000000}},  //   ctes_, _искл, _roco,\n  { {0x09e30001, 0x628f0181, 0x2aba0089, 0x00000000}},  //   _точн, _soco, rību_,\n  { {0x628f0211, 0x2aba001e, 0x3ea6033b, 0x00000000}},  //   _poco, sību_, khot_,\n  { {0x752d004a, 0x00000000, 0x00000000, 0x00000000}},  //   _tvaz,   ,   ,\n  { {0x752d14ba, 0x65760146, 0x00000000, 0x00000000}},  // [6fd0] _uvaz, _gryh,   ,\n  { {0x6aa20016, 0x26c30161, 0x673a0112, 0x00000000}},  //   _llof, čkou_, ortj,\n  { {0x25b700a1, 0x44332249, 0x628f00c4, 0x00000000}},  //   _سنگھ_, _idx_, _toco,\n  { {0x394d1b18, 0xdbdc000c, 0x44332856, 0x00000000}},  //   ytes_, _ráði, _hdx_,\n  { {0x394d2857, 0x5184007e, 0xfe7003e6, 0x00000000}},  //   xtes_, _кура, تدل_,\n  { {0x9f0505f3, 0xb5fb0010, 0x00000000, 0x00000000}},  //   _موسو, ldás,   ,\n  { {0xddc227dc, 0x6aa20173, 0xe0d20049, 0x00000000}},  //   rdoš, _blof, _הײם_,\n  { {0x394d02b6, 0x3ea600bb, 0x6aa20ced, 0x00000000}},  //   ttes_, chot_, _clof,\n  { {0x394d00f4, 0x6e940072, 0x2a6d0016, 0x00000000}},  //   utes_, _титу, rdeb_,\n  { {0xddc91088, 0x6aa22858, 0x00000000, 0x00000000}},  //   _knež, _elof,   ,\n  { {0x394d04bd, 0x5b150113, 0x00000000, 0x00000000}},  //   stes_, _смет,   ,\n  { {0x394d1fcb, 0x44330033, 0x6aa2005b, 0x00000000}},  //   ptes_, _adx_, _glof,\n  { {0x44332859, 0x673a0112, 0x00000000, 0x00000000}},  //   _bdx_, artj,   ,\n  { {0x65760007, 0x44330253, 0x3f7311af, 0x00000000}},  //   _vryh, _cdx_, _oću_,\n  { {0x42560113, 0x61e60036, 0x03a3138c, 0x00000000}},  //   лтат, _szkl, биро,\n  { {0xc61e0055, 0x8646007c, 0xb7da01ce, 0x00000000}},  //   _থাকা_, _сниж, _אקצי,\n  { {0x60ea004d, 0x44330133, 0x00000000, 0x00000000}},  // [6fe0] емам_, _fdx_,   ,\n  { {0xb4660057, 0xa91b00e8, 0x00000000, 0x00000000}},  //   _скол, पीएफ_,   ,\n  { {0xb4c0024c, 0xee3a1447, 0xef1a0265, 0x00000000}},  //   ंची_, ене_, хме_,\n  { {0x442a01a3, 0xb4db0129, 0xcd2a007c, 0x00000000}},  //   lab_, gràf, ежде_,\n  { {0x61e60e3f, 0xf653009b, 0x3ea60052, 0x00000000}},  //   _uzkl, מצא_, rhot_,\n  { {0x442a0004, 0x4095025f, 0x6aa2005b, 0x00000000}},  //   nab_, _крст, _slof,\n  { {0x8fa605a4, 0xb5fb285a, 0xddc9012d, 0x00000000}},  //   _саве, ndár, _gnež,\n  { {0x442a006c, 0xbea302be, 0xd91a09f1, 0x00000000}},  //   hab_, _ласк, ньо_,\n  { {0x6e930a4f, 0x442a0018, 0x5e930025, 0x00000000}},  //   _القا, kab_, _القط,\n  { {0x7e620190, 0x442a03f2, 0x78740010, 0x00000000}},  //   leop, jab_, küvő,\n  { {0x442a0004, 0xd7f7285b, 0xda6f007e, 0x00000000}},  //   dab_, лую_, _ля_,\n  { {0x7c2a1182, 0x7e62113b, 0x59af0061, 0x00000000}},  //   lafr, neop, _जेकर,\n  { {0x442a1c95, 0x9c7c0087, 0x00000000, 0x00000000}},  //   fab_, _ahči,   ,\n  { {0x442a285c, 0x44250051, 0x7c2a01e5, 0x00000000}},  //   gab_, úl_, nafr,\n  { {0x7e621a76, 0x78ba012d, 0x7c2a005b, 0x00000000}},  //   keop, mitv, iafr,\n  { {0x78ba0ed8, 0xadf6013d, 0x29060020, 0x00000000}},  //   litv, ेशान_, _kuoa_,\n  { {0x442a285d, 0xddc9179e, 0x443300d4, 0x00000000}},  // [6ff0] bab_, _snež, _tdx_,\n  { {0xdddb0428, 0x78ba0059, 0x442a013f, 0x00000000}},  //   _použ, nitv, cab_,\n  { {0x7ced0d7b, 0x7ae00009, 0x00000000, 0x00000000}},  //   lúrg, klmt,   ,\n  { {0xdce90091, 0x644700ce, 0x7e62285e, 0x00000000}},  //   _kreć, lgji, geop,\n  { {0x80bf08b7, 0x070b006e, 0xa0240044, 0x00000000}},  //   ্তব্, _संभव_, _পারব_,\n  { {0x64470065, 0x78ba0059, 0x7c2a01e5, 0x00000000}},  //   ngji, jitv, gafr,\n  { {0xd49800b6, 0x78ba01d9, 0xdb210279, 0x00000000}},  //   רכות_, ditv, _ötür,\n  { {0x3eb900f8, 0x6d420058, 0x7e620146, 0x00000000}},  //   _öst_, buoa, ceop,\n  { {0x442a130b, 0x6d5b011c, 0x3a2600e5, 0x00000000}},  //   yab_, _upua, _deop_,\n  { {0xc6250055, 0xddc901f3, 0x661d01a2, 0x00000000}},  //   _ভাষা_, _mneż, ebsk,\n  { {0x442a285f, 0x2902000c, 0x2bb80061, 0x00000000}},  //   vab_, íkar_, ेपणा,\n  { {0xfd4c00ad, 0x442a020c, 0x64400006, 0x00000000}},  //   _nhiề, wab_, ėmim,\n  { {0x442a0004, 0x5e560049, 0x78ba0059, 0x00000000}},  //   tab_, סישע_, bitv,\n  { {0xb4c00183, 0x49b806b4, 0x741603e6, 0x00000000}},  //   ंचे_, _حامد_, شورا,\n  { {0x66e60478, 0x6b7c00e5, 0x00000000, 0x00000000}},  //   _кока, _găgă,   ,\n  { {0x442a2860, 0xfd4c001d, 0x9f580051, 0x00000000}},  //   sab_, _chiề, _ngrá_,\n\n  { {0x442a0263, 0x6604169b, 0x799b0093, 0x00000000}},  // [7000] pab_, _igik, nyuw,\n  { {0x7e620007, 0x442a0145, 0x130a007c, 0x00000000}},  //   weop, qab_, _иной_,\n  { {0x09e202f4, 0xa7fc01f6, 0x7e6201a3, 0x00000000}},  //   _पर्य, ldır, teop,\n  { {0x2eed00f4, 0x75242046, 0x17560049, 0x00000000}},  //   _chef_, _kwiz, יסער_,\n  { {0xa7fc038c, 0x7e6207c5, 0x7c2a01e5, 0x00000000}},  //   ndır, reop, tafr,\n  { {0x7524047b, 0x00000000, 0x00000000, 0x00000000}},  //   _mwiz,   ,   ,\n  { {0xf7670014, 0x78ba01d9, 0x7e6206fa, 0x00000000}},  //   _با_, vitv, peop,\n  { {0xf1bf002a, 0x660412eb, 0x7c2a2861, 0x00000000}},  //   _meán_, _ngik, safr,\n  { {0x4c86007c, 0x752401aa, 0x78ba2862, 0x00000000}},  //   _клав, _nwiz, titv,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xdce901cd, 0x78ba01d9, 0x6f000173, 0x00000000}},  //   _sreć, ritv, _kimc,\n  { {0x6aa902e7, 0xdce90107, 0x7ced1b0f, 0x00000000}},  //   chef, _preć, túrg,\n  { {0x2a640059, 0x09e300ec, 0x7c28007f, 0x00000000}},  //   memb_, _доцн, _kedr,\n  { {0x66c8011f, 0x3944001e, 0x7ced1343, 0x00000000}},  //   lıkl, mums_, rúrg,\n  { {0x6447008d, 0x7c280016, 0x53340242, 0x00000000}},  //   rgji, _medr, жест,\n  { {0xdce90119, 0x26c90020, 0x66040093, 0x00000000}},  //   _treć, _ujao_, _ggik,\n  { {0x26d908d3, 0xe4e703e8, 0x7c280016, 0x00000000}},  // [7010] moso_, _вінн, _oedr,\n  { {0x7c280089, 0x26d90a15, 0x656d0058, 0x00000000}},  //   _nedr, loso_, _isah,\n  { {0xfd4c0011, 0xddcb0010, 0x00000000, 0x00000000}},  //   _thiề, vegő,   ,\n  { {0x3944001e, 0x26d90cdf, 0x63ad001e, 0x00000000}},  //   kums_, noso_, ģinā,\n  { {0x7c2802ae, 0x3944001e, 0xee3801ff, 0x00000000}},  //   _bedr, jums_, рні_,\n  { {0x39440089, 0x229c000c, 0x6f070059, 0x00000000}},  //   dums_, _ríki_, _tujc,\n  { {0x6aa91ef7, 0xe4580049, 0x8f3400e3, 0x00000000}},  //   thef, ייגט_, _мерц,\n  { {0x26d91cd9, 0x6f0000d4, 0x22491e3a, 0x00000000}},  //   joso_, _gimc, ngak_,\n  { {0x3944001e, 0x7c280016, 0x26d90b33, 0x00000000}},  //   gums_, _fedr, doso_,\n  { {0x7c280fe2, 0x6aa9164d, 0x75240045, 0x00000000}},  //   _gedr, shef, _rwiz,\n  { {0x656d0058, 0x7d090211, 0x26d90197, 0x00000000}},  //   _asah, _hues, foso_,\n  { {0x7d0105b7, 0xa7fc005f, 0xba740025, 0x00000000}},  //   _hils, tdır, _وانت,\n  { {0x6e290209, 0xceb200a0, 0xf1bf0051, 0x00000000}},  //   _meeb, ליט_, _seán_,\n  { {0x7d090211, 0xa50701ee, 0xb5fb102e, 0x00000000}},  //   _mues, сера_, rdáp,\n  { {0x26d91ebf, 0x7d010048, 0x03a3007c, 0x00000000}},  //   boso_, _mils, пиро,\n  { {0xa206008b, 0x7d0900f4, 0x26d92863, 0x00000000}},  //   спад, _oues, coso_,\n  { {0x7d090219, 0x64412864, 0xb5fb0051, 0x00000000}},  // [7020] _nues, ólic, neál,\n  { {0x7d010039, 0x00000000, 0x00000000, 0x00000000}},  //   _nils,   ,   ,\n  { {0x6e29006c, 0x00000000, 0x00000000, 0x00000000}},  //   _beeb,   ,   ,\n  { {0xdfcf0380, 0x52860054, 0xa3d50204, 0x00000000}},  //   رين_, _الحك, िअर_,\n  { {0x7c2802d5, 0x7d090211, 0x7d012865, 0x00000000}},  //   _pedr, _cues, _bils,\n  { {0xd47a0049, 0x39440089, 0xd5ed0082, 0x00000000}},  //   ראַל, vums_, _hoạ,\n  { {0x7c282866, 0x7d010089, 0x26d908e3, 0x00000000}},  //   _vedr, _dils, yoso_,\n  { {0x3944001e, 0x7d09008e, 0x8f9b009b, 0x00000000}},  //   tums_, _fues, _גילי,\n  { {0x7d090038, 0x7d01216d, 0xd00f00a1, 0x00000000}},  //   _gues, _fils, _آلہ_,\n  { {0xdb030047, 0x6e29016e, 0x7d0100c4, 0x00000000}},  //   szná, _zeeb, _gils,\n  { {0x26d908d3, 0x39440089, 0xa7fc006b, 0x00000000}},  //   toso_, sums_, tdıq,\n  { {0xaae60380, 0xcf93009b, 0x368b00e2, 0x00000000}},  //   _اسطو, לטת_, усон_,\n  { {0x26d908d3, 0xe9ff0011, 0xb5fb0051, 0x00000000}},  //   roso_, _trạm_, ceál,\n  { {0x26d90325, 0x00000000, 0x00000000, 0x00000000}},  //   soso_,   ,   ,\n  { {0x26d9059a, 0x443f047f, 0x81b60044, 0x00000000}},  //   poso_, ğu_, _চুল_,\n  { {0x764d004a, 0x443f2867, 0x00000000, 0x00000000}},  //   _ucay, şu_,   ,\n  { {0x656d020c, 0x6e290471, 0x2249002d, 0x00000000}},  // [7030] _usah, _reeb, rgak_,\n  { {0x7d0900f6, 0x6e2903e1, 0x51f80147, 0x00000000}},  //   _rues, _seeb, сную_,\n  { {0xf709001d, 0x7d0906be, 0xde1900f3, 0x00000000}},  //   _lần_, _sues, لقات_,\n  { {0x7d090211, 0x5187105c, 0x7d01013f, 0x00000000}},  //   _pues, _луга, _sils,\n  { {0x7d09051b, 0x7d01001e, 0x6e290004, 0x00000000}},  //   _ques, _pils, _veeb,\n  { {0xcc89007a, 0x7d090211, 0xa6cf0044, 0x00000000}},  //   شنبه_, _vues, রতিট,\n  { {0x7d0100f8, 0x6e290d78, 0x00000000, 0x00000000}},  //   _vils, _teeb,   ,\n  { {0xdce90521, 0xb5fb0051, 0x27170082, 0x00000000}},  //   _iseč, teál, _hăng_,\n  { {0xf709001d, 0x7d012868, 0x7d09006c, 0x00000000}},  //   _cần_, _tils, _uues,\n  { {0xf7090011, 0xd90c0014, 0xa3e90061, 0x00000000}},  //   _dần_, دیو_, _बरं_,\n  { {0xe9a80167, 0x27170011, 0xb5fb0051, 0x00000000}},  //   لدین_, _măng_, seál,\n  { {0x27170011, 0x1959007e, 0x00000000, 0x00000000}},  //   _lăng_, _вады_,   ,\n  { {0xf709001d, 0xf8bf009d, 0x66dd0010, 0x00000000}},  //   _gần_, éés_, tékr,\n  { {0x2717001d, 0x229c000c, 0xc7a5017f, 0x00000000}},  //   _năng_, _líkt_, _милк,\n  { {0x232a0793, 0x6fd9013d, 0x00000000, 0x00000000}},  //   роби_, _बुलं,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x2717001d, 0x00000000, 0x00000000, 0x00000000}},  // [7040] _băng_,   ,   ,\n  { {0x27170011, 0x2056007e, 0x00000000, 0x00000000}},  //   _căng_, ўтар,   ,\n  { {0xb4d602d2, 0x00000000, 0x00000000, 0x00000000}},  //   िकी_,   ,   ,\n  { {0x7ce40129, 0xa75a0049, 0x443a0471, 0x00000000}},  //   mòri, ידער, _hdp_,\n  { {0x82370014, 0x7ce400d4, 0x00000000, 0x00000000}},  //   _برپا, lòri,   ,\n  { {0xccb701fb, 0x443a012d, 0x27170082, 0x00000000}},  //   огії_, _jdp_, _găng_,\n  { {0x9e660123, 0xf7090082, 0x00000000, 0x00000000}},  //   _وارن, _sần_,   ,\n  { {0x5a3400e3, 0x443a003b, 0x00000000, 0x00000000}},  //   чнит, _ldp_,   ,\n  { {0x80bf0055, 0x6e220b9a, 0xc866004c, 0x00000000}},  //   ্তর্, mbob, отни,\n  { {0x443a0061, 0x27170011, 0xa3bb0067, 0x00000000}},  //   _ndp_, _xăng_, _आइल_,\n  { {0x62861414, 0x6d420133, 0xa714007e, 0x00000000}},  //   _onko, lroa, ямні,\n  { {0x443a006b, 0xf7090011, 0x7ce400f6, 0x00000000}},  //   _adp_, _tần_, dòri,\n  { {0x443a014a, 0x6d4200e7, 0x00000000, 0x00000000}},  //   _bdp_, nroa,   ,\n  { {0x62861384, 0xdc080089, 0x7ce400d4, 0x00000000}},  //   _anko, rēķi, fòri,\n  { {0x27172869, 0x443a0342, 0x7ce400f6, 0x00000000}},  //   _răng_, _ddp_, gòri,\n  { {0x645e0061, 0x6d420006, 0xc1050025, 0x00000000}},  //   _ebpi, kroa, كوري,\n  { {0x35b4005e, 0x20070825, 0x443a01a2, 0x00000000}},  // [7050] _обър, žnim_, _fdp_,\n  { {0x628601aa, 0x6d420032, 0x7ced000c, 0x00000000}},  //   _enko, droa, kúra,\n  { {0x4431286a, 0xdce20521, 0xe9ff0011, 0x00000000}},  //   maz_, jvođ, _trầm_,\n  { {0x2ee6003b, 0x4431286b, 0x7c3a0009, 0x00000000}},  //   glof_, laz_, _adtr,\n  { {0x2717001d, 0x6d420035, 0x6448286c, 0x00000000}},  //   _tăng_, groa, ódig,\n  { {0x4431002d, 0x251c00a3, 0x98aa013e, 0x00000000}},  //   naz_, סווא, čbě_,\n  { {0x7ced286d, 0xeb9919cc, 0x00000000, 0x00000000}},  //   gúra, сий_,   ,\n  { {0x4431014a, 0x7f840014, 0xdcfb002b, 0x00000000}},  //   haz_, _تلفن, _kruċ,\n  { {0x44310428, 0x8d7702fd, 0x6d420133, 0x00000000}},  //   kaz_, _بازا, croa,\n  { {0x78a9012b, 0x29030039, 0x50db0061, 0x00000000}},  //   ског_, öja_, भविष,\n  { {0xd90f026c, 0xbb480054, 0x66e600ed, 0x00000000}},  //   ریں_, _ولكن_, зона,\n  { {0x6441000c, 0x443a286e, 0x00000000, 0x00000000}},  //   ólin, _sdp_,   ,\n  { {0x443a286f, 0x44310181, 0x66dd0010, 0x00000000}},  //   _pdp_, faz_, rékp,\n  { {0x4431002d, 0x7ce404bd, 0xf7090011, 0x00000000}},  //   gaz_, tòri, _hầm_,\n  { {0x63830069, 0x07a502dc, 0x00000000, 0x00000000}},  //   нгра, _хайн,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xb146008b, 0xe29700e3, 0x26c2117b, 0x00000000}},  // [7060] янал, чат_, miko_,\n  { {0xf7090011, 0x6e3b2870, 0xb0630027, 0x00000000}},  //   _lầm_, _adub, jväč,\n  { {0x9e660069, 0x7d1b00e7, 0x00000000, 0x00000000}},  //   звед, _atus,   ,\n  { {0x645c0039, 0x26c2022b, 0x6d42002d, 0x00000000}},  //   lfri, niko_, troa,\n  { {0x6da3026b, 0x2ee62871, 0x6e220537, 0x00000000}},  //   ница, rlof_, rbob,\n  { {0x6d42022b, 0x26c2002d, 0x6e3b002d, 0x00000000}},  //   rroa, hiko_, _edub,\n  { {0x26c2022b, 0x7d1b021e, 0xf7090082, 0x00000000}},  //   kiko_, _etus, _bầm_,\n  { {0x60de0038, 0xf7090011, 0x6d4200ab, 0x00000000}},  //   lopm, _cầm_, proa,\n  { {0xd90d01ef, 0x26c2022b, 0x4431014a, 0x00000000}},  //   لین_, diko_, yaz_,\n  { {0x7c3a0030, 0xb19b0049, 0xe29f000c, 0x00000000}},  //   _udtr, צייכ, _miða_,\n  { {0xf98f00a6, 0x645c1506, 0x26c2002d, 0x00000000}},  //   نبی_, dfri, fiko_,\n  { {0x76ab007c, 0xb5fb0051, 0x26c2002d, 0x00000000}},  //   стов_, leái, giko_,\n  { {0x645c16df, 0x20180263, 0x44312872, 0x00000000}},  //   ffri, _ofri_, taz_,\n  { {0x645c0010, 0xb5fb0051, 0x2418007c, 0x00000000}},  //   gfri, neái, зоры_,\n  { {0x44312873, 0x200707a0, 0x26c20032, 0x00000000}},  //   raz_, žnik_, biko_,\n  { {0x9294008b, 0x66e402a8, 0x645c0209, 0x00000000}},  //   насц, _поја, afri,\n  { {0x4431029d, 0x25a22874, 0x00000000, 0x00000000}},  // [7070] paz_, cykl_,   ,\n  { {0xb21b0030, 0x00000000, 0x00000000, 0x00000000}},  //   _knæk,   ,   ,\n  { {0xb5fb0051, 0x7d1b0943, 0x657d00f6, 0x00000000}},  //   deái, _stus, lvsh,\n  { {0x3ea62875, 0x7ae20943, 0x201801e5, 0x00000000}},  //   gkot_, _nkot, _efri_,\n  { {0xcbfe0044, 0xf7090082, 0x00000000, 0x00000000}},  //   ুরোধ_, _rầm_,   ,\n  { {0x26c212e5, 0x7ae20173, 0xf7090082, 0x00000000}},  //   ziko_, _akot, _sầm_,\n  { {0xfc300025, 0x61e601a2, 0x2fc500f8, 0x00000000}},  //   احه_, _zykl, _älg_,\n  { {0x6e3b04eb, 0x00000000, 0x00000000, 0x00000000}},  //   _udub,   ,   ,\n  { {0x645c0016, 0x6e24027b, 0x3ebf2876, 0x00000000}},  //   yfri, ñibe, _imut_,\n  { {0xb4bc03d7, 0xb5fb002a, 0x7ae20740, 0x00000000}},  //   _आगे_, ceái, _ekot,\n  { {0x26c221d4, 0x6d4b006a, 0xf7090011, 0x00000000}},  //   tiko_, luga, _tầm_,\n  { {0x7e6b0022, 0x3ebf0066, 0x291f00b0, 0x00000000}},  //   negp, _jmut_, ppua_,\n  { {0x26c2022b, 0x7afb03b6, 0x6d59002b, 0x00000000}},  //   riko_, mmut, ntwa,\n  { {0x26c2022b, 0x7ae90e69, 0xa5bb0d95, 0x00000000}},  //   siko_, llet, mból,\n  { {0x6d4b2877, 0x290f000c, 0x7ae921ca, 0x00000000}},  //   huga, _huga_, olet,\n  { {0x645c0030, 0x29072878, 0x7ae9165e, 0x00000000}},  //   sfri, _hina_, nlet,\n  { {0x290f0149, 0x290706d0, 0xd24f026c, 0x00000000}},  // [7080] _juga_, _kina_, شنل_,\n  { {0x2907000b, 0x25fe02fb, 0x290f002d, 0x00000000}},  //   _jina_, रेणी_, _muga_,\n  { {0x290707dc, 0x212b0016, 0xe29a01ee, 0x00000000}},  //   _mina_, _ewch_, _дан_,\n  { {0x29071992, 0x6d4b0020, 0xdcfb016c, 0x00000000}},  //   _lina_, fuga, _druč,\n  { {0xb5fb0051, 0x6d4b04be, 0x3ea60778, 0x00000000}},  //   teái, guga, rkot_,\n  { {0x29072879, 0x7ae9088a, 0x00000000, 0x00000000}},  //   _nina_, elet,   ,\n  { {0x7ae9001a, 0xb5fb002a, 0x3ead0065, 0x00000000}},  //   flet, reái, _flet_,\n  { {0x2907094d, 0xb5fb002a, 0x7ae900f4, 0x00000000}},  //   _aina_, seái, glet,\n  { {0x286a01f9, 0x81e00055, 0xb5fb0051, 0x00000000}},  //   орно_, ধের_, peái,\n  { {0x2907020c, 0x290f016e, 0x7ae9065d, 0x00000000}},  //   _cina_, _duga_, alet,\n  { {0x29070073, 0x291d010f, 0xa7fc014a, 0x00000000}},  //   _dina_, _etwa_, ldız,\n  { {0x2907287a, 0x00000000, 0x00000000, 0x00000000}},  //   _eina_,   ,   ,\n  { {0x29070039, 0xe4e701fb, 0x290f1e8f, 0x00000000}},  //   _fina_, дівн, _guga_,\n  { {0x67d401be, 0x7ae00010, 0xe3b3009e, 0x00000000}},  //   _полу, lomt, نرز_,\n  { {0x7d080aa4, 0x6d4b0dab, 0x386c005b, 0x00000000}},  //   _mids, zuga, medr_,\n  { {0x29071085, 0x7d0800b9, 0xf1a702ea, 0x00000000}},  //   _zina_, _lids, мрзн,\n  { {0x6448287b, 0x50f501e0, 0x6d4b1052, 0x00000000}},  // [7090] ódic, езат, xuga,\n  { {0x3ead0030, 0x6d4b0061, 0x3ebf0190, 0x00000000}},  //   _slet_, vuga, _smut_,\n  { {0x7ae90016, 0x3ead0190, 0x00000000, 0x00000000}},  //   ylet, _plet_,   ,\n  { {0x6d59002b, 0x752d144d, 0x6d4b0169, 0x00000000}},  //   ttwa, _kwaz, tuga,\n  { {0x212b018e, 0x7ae9014a, 0x7d0800eb, 0x00000000}},  //   _uwch_, vlet, _bids,\n  { {0x6d591515, 0x6d4b002d, 0xdce9037e, 0x00000000}},  //   rtwa, ruga, _pređ,\n  { {0x629d008d, 0x7ae91553, 0x6d4b006a, 0x00000000}},  //   _koso, tlet, suga,\n  { {0x29070073, 0x79820038, 0xdce90521, 0x00000000}},  //   _sina_, _brow, _vređ,\n  { {0x2bdf02fb, 0x629d0010, 0x2907148e, 0x00000000}},  //   _पुरा, _moso, _pina_,\n  { {0x7ae90056, 0x660d01a3, 0x629d0036, 0x00000000}},  //   slet, _agak, _loso,\n  { {0xdce90091, 0xf0920104, 0x2907287c, 0x00000000}},  //   _uređ, אני_, _vina_,\n  { {0x629d287d, 0x79820675, 0x67210091, 0x00000000}},  //   _noso, _frow, rplj,\n  { {0xd756026c, 0x798200ab, 0x27e70ca4, 0x00000000}},  //   ولیت_, _grow, _wynn_,\n  { {0x6f090089, 0x6aa9068f, 0xb4ca0061, 0x00000000}},  //   _liec, lkef, लचे_,\n  { {0x7c3e02d5, 0x629d287e, 0x394d00ab, 0x00000000}},  //   ópri, _boso, lues_,\n  { {0x6f090620, 0xe297012b, 0x629d0035, 0x00000000}},  //   _niec, нас_, _coso,\n  { {0x2167019d, 0x394d287f, 0x09e10044, 0x00000000}},  // [70a0] нити_, nues_, মেরা,\n  { {0x9c7c01ca, 0x68e10016, 0x23db013d, 0x00000000}},  //   _akčn, nold, _मुकद,\n  { {0x545700b6, 0x752d01aa, 0x6aa9043e, 0x00000000}},  //   _אביב_, _zwaz, kkef,\n  { {0x68e102cc, 0x7d080018, 0x629d018e, 0x00000000}},  //   hold, _sids, _goso,\n  { {0x6f091ff6, 0x394d0023, 0x7d080022, 0x00000000}},  //   _diec, jues_, _pids,\n  { {0x653b0049, 0x394d2880, 0x68e12881, 0x00000000}},  //   לענד, dues_, jold,\n  { {0x6f09000d, 0x7d080030, 0x629d1fb8, 0x00000000}},  //   _fiec, _vids, _yoso,\n  { {0x79820046, 0x6ee3006c, 0xafe32882, 0x00000000}},  //   _prow, sõbr, _сосл,\n  { {0x68e1018e, 0xf99200b8, 0x7d08080a, 0x00000000}},  //   fold, ابع_, _tids,\n  { {0x68e10047, 0x2d84008e, 0x6ef10190, 0x00000000}},  //   gold, _irme_, nåbn,\n  { {0x752d01d6, 0x09e10044, 0x7ae000e7, 0x00000000}},  //   _swaz, মেলা, pomt,\n  { {0x79820016, 0x752d01aa, 0x29110051, 0x00000000}},  //   _trow, _pwaz, únaí_,\n  { {0x68e10030, 0x629d00f8, 0x1874007e, 0x00000000}},  //   bold, _roso, _агля,\n  { {0x629d023a, 0x752d01aa, 0x68e10026, 0x00000000}},  //   _soso, _vwaz, cold,\n  { {0x629d0059, 0x60c5010e, 0xe28700e2, 0x00000000}},  //   _poso, vihm, нѓан,\n  { {0x752d01aa, 0x2d840197, 0x660d0045, 0x00000000}},  //   _twaz, _orme_, _ugak,\n  { {0x629d0211, 0x752d0e74, 0x673a0abc, 0x00000000}},  // [70b0] _voso, _uwaz, lstj,\n  { {0x6f090046, 0x629d01c3, 0x00000000, 0x00000000}},  //   _siec, _woso,   ,\n  { {0x2d840007, 0x6f09230d, 0xdfd10025, 0x00000000}},  //   _arme_, _piec, جيا_,\n  { {0x6ee70025, 0x52a70025, 0x94000061, 0x00000000}},  //   رسال, _أصدق, ोखरच_,\n  { {0x6f092883, 0x2a6d006c, 0x394d0023, 0x00000000}},  //   _viec, veeb_, xues_,\n  { {0x6f090046, 0xe104007e, 0x394d00f4, 0x00000000}},  //   _wiec, _бясп, vues_,\n  { {0x4433008e, 0x68e100b5, 0xdea10014, 0x00000000}},  //   _mex_, vold, _پیشی,\n  { {0x4433002b, 0x394d0065, 0x68e100bb, 0x00000000}},  //   _lex_, tues_, wold,\n  { {0x6aa9009f, 0xe9d90152, 0xe8f9007c, 0x00000000}},  //   rkef, ьки_, мли_,\n  { {0x7e7b001f, 0x394d2884, 0x6c740070, 0x00000000}},  //   _haup, rues_, _مطمئ,\n  { {0x7e7b0836, 0x394d2885, 0x68e1002d, 0x00000000}},  //   _kaup, sues_, rold,\n  { {0x68e10129, 0x44332886, 0x7cf60035, 0x00000000}},  //   sold, _aex_, râre,\n  { {0x394d053e, 0x7e7b0390, 0x68e12887, 0x00000000}},  //   ques_, _maup, pold,\n  { {0x7e7b006c, 0x443300f6, 0x98a2003b, 0x00000000}},  //   _laup, _cex_, _више,\n  { {0x44330035, 0x6ef80224, 0xa50702b8, 0x00000000}},  //   _dex_, líbe, тера_,\n  { {0xc24302a8, 0x1b130055, 0x7e7b0058, 0x00000000}},  //   инск, _সবাই_, _naup,\n  { {0x25fe0061, 0x26d9004a, 0x00000000, 0x00000000}},  // [70c0] रेशी_, éroe_,   ,\n  { {0xf5370049, 0x44330068, 0x00000000, 0x00000000}},  //   _שניי_, _gex_,   ,\n  { {0x63a70046, 0xe0d501fb, 0x7e7b01a2, 0x00000000}},  //   cyjn, ують, _baup,\n  { {0x44381355, 0xb21b1f7d, 0x7e7b004a, 0x00000000}},  //   lar_, _snæv, _caup,\n  { {0xdce00089, 0x7e7b009d, 0xbea301fc, 0x00000000}},  //   _apmā, _daup, јачк,\n  { {0x55bb009b, 0x442a0068, 0x13c60044, 0x00000000}},  //   ומנו, nbb_, _শুয়,\n  { {0x6d5b00ab, 0xf70a0011, 0x44382888, 0x00000000}},  //   _equa, _hầu_, iar_,\n  { {0x44382889, 0x3a740256, 0xbea3004d, 0x00000000}},  //   har_, улир, _каск,\n  { {0x44380a42, 0xbea30893, 0xdc5402fd, 0x00000000}},  //   kar_, _татк, _مراک,\n  { {0x44380127, 0x7e7b0059, 0xf70a0011, 0x00000000}},  //   jar_, _zaup, _mầu_,\n  { {0xd7f70454, 0xf70a0011, 0x69d90066, 0x00000000}},  //   кую_, _lầu_, _exwe,\n  { {0x44330472, 0x7c3802d5, 0x673a009f, 0x00000000}},  //   _sex_, lavr, rstj,\n  { {0x443820e9, 0x673a009f, 0x44330253, 0x00000000}},  //   far_, sstj, _pex_,\n  { {0x44380359, 0x7d1d0129, 0x25ad002b, 0x00000000}},  //   gar_, _ésse, ġel_,\n  { {0x25ad018b, 0xd6db00ed, 0x443300d9, 0x00000000}},  //   šel_, _оти_, _vex_,\n  { {0xf70a0011, 0x63a70036, 0xd8380466, 0x00000000}},  //   _bầu_, ryjn, lač_,\n  { {0xf70a001d, 0x44330039, 0x63a70036, 0x00000000}},  // [70d0] _cầu_, _tex_, syjn,\n  { {0x2edb02f4, 0xf70a001d, 0xdce9016c, 0x00000000}},  //   यक्त, _dầu_, _iseć,\n  { {0xf41200b6, 0x7e7b0f91, 0x2007021e, 0x00000000}},  //   _לפי_, _paup, äni_,\n  { {0x4ea70265, 0xa2950451, 0xd838040d, 0x00000000}},  //   ърза, _самі, hač_,\n  { {0x7ced004a, 0x7e7b288a, 0x00000000, 0x00000000}},  //   lúri, _vaup,   ,\n  { {0xd838016e, 0x64550232, 0x387c0288, 0x00000000}},  //   jač_, ngzi, _navr_,\n  { {0x7e7b0d90, 0x7ced00f6, 0xd838047c, 0x00000000}},  //   _taup, núri, dač_,\n  { {0xdce9021d, 0xead10044, 0x00000000, 0x00000000}},  //   _oseć, াত্ম,   ,\n  { {0x4438288b, 0x1017013d, 0x7c38012d, 0x00000000}},  //   yar_, _तलाश_, bavr,\n  { {0x44380ca7, 0x6ef80211, 0xd8380c0a, 0x00000000}},  //   xar_, ríbe, gač_,\n  { {0x6ef8049a, 0xa6ca03dc, 0x38a900c4, 0x00000000}},  //   síbe, елна_, _júri_,\n  { {0x4438033b, 0xaca30011, 0xba390049, 0x00000000}},  //   war_, _ruộn, _װײַט,\n  { {0x44380f68, 0xd94500c0, 0xe8ee007e, 0x00000000}},  //   tar_, _сели, _гл_,\n  { {0x628f0198, 0x4438288c, 0x2a7f288d, 0x00000000}},  //   _anco, uar_, ldub_,\n  { {0x395f05a0, 0x6d4b010f, 0xf70a0011, 0x00000000}},  //   ltus_, hrga, _sầu_,\n  { {0x44380149, 0x670c0754, 0x2a7f006c, 0x00000000}},  //   sar_, _सूचक_, ndub_,\n  { {0x4438288e, 0x395f0394, 0x8186007e, 0x00000000}},  // [70e0] par_, ntus_, ыгаж,\n  { {0x628f288f, 0x395f00b0, 0x44382890, 0x00000000}},  //   _enco, itus_, qar_,\n  { {0x44442891, 0x03a6025f, 0x395f006c, 0x00000000}},  //   _id_, _сино, htus_,\n  { {0xd8380209, 0x395f0d90, 0xf70a0082, 0x00000000}},  //   zač_, ktus_, _tầu_,\n  { {0xdca6003b, 0x44441d2a, 0x7c380066, 0x00000000}},  //   лади, _kd_, tavr,\n  { {0x4444033b, 0xfce30088, 0x2731050f, 0x00000000}},  //   _jd_, бочо, kšn_,\n  { {0xd838040d, 0x2a7d0016, 0xe0d700ed, 0x00000000}},  //   vač_, _bawb_, _свр_,\n  { {0x7644000b, 0xdee600a8, 0x7c38016e, 0x00000000}},  //   _ndiy, _соби, savr,\n  { {0x44440119, 0xd83804c8, 0x5eca0044, 0x00000000}},  //   _od_, tač_, িকদে,\n  { {0x2ee606b2, 0x444400ab, 0x2bdf007d, 0x00000000}},  //   loof_, _nd_, _पुका,\n  { {0x2a660017, 0x75242892, 0xd838016e, 0x00000000}},  //   _бълг, _atiz, rač_,\n  { {0x44440198, 0x6f02008e, 0xd83801ed, 0x00000000}},  //   _ad_, nmoc, sač_,\n  { {0x444400f4, 0x64550009, 0x00000000, 0x00000000}},  //   _bd_, tgzi,   ,\n  { {0x44442893, 0x6aa2049b, 0x7644011f, 0x00000000}},  //   _cd_, _hoof, _ediy,\n  { {0x4444001c, 0xb865007a, 0x3267105c, 0x00000000}},  //   _dd_, _خانو, лтав,\n  { {0x44440198, 0xb6c9026c, 0x6e24004a, 0x00000000}},  //   _ed_, _جاتے_, ñibl,\n  { {0x26cb0a15, 0x44440b40, 0x6f02016c, 0x00000000}},  // [70f0] mico_, _fd_, dmoc,\n  { {0x26cb0198, 0x44440011, 0x7ced0129, 0x00000000}},  //   lico_, _gd_, púri,\n  { {0x644500e7, 0x3f872894, 0x6d4000f8, 0x00000000}},  //   _idhi, ínu_, _avma,\n  { {0x26cb0c2e, 0x290e000c, 0x395f0006, 0x00000000}},  //   nico_, _lifa_, ytus_,\n  { {0x4444005b, 0x00000000, 0x00000000, 0x00000000}},  //   _yd_,   ,   ,\n  { {0x44440211, 0x2a7d21b3, 0x212904cb, 0x00000000}},  //   _xd_, _sawb_, mpah_,\n  { {0xeb99004c, 0x2a7d018e, 0x4421012d, 0x00000000}},  //   тий_, _pawb_, _mfh_,\n  { {0xf53f0073, 0x26cb0059, 0x395f006c, 0x00000000}},  //   kså_, jico_, ttus_,\n  { {0x26cb0851, 0x81e70055, 0x395f0275, 0x00000000}},  //   dico_, যের_, utus_,\n  { {0x395f0a0e, 0x229c13c7, 0xe7650088, 0x00000000}},  //   rtus_, _díky_, авоп,\n  { {0x395f0515, 0x26cb2895, 0x444405ac, 0x00000000}},  //   stus_, fico_, _rd_,\n  { {0x4444023a, 0x26cb2896, 0x6445107e, 0x00000000}},  //   _sd_, gico_, _adhi,\n  { {0x290e17ab, 0x6ef806c2, 0xe9a82638, 0x00000000}},  //   _fifa_, níba, _مدون_,\n  { {0x7ae40059, 0x6aa200ea, 0x394d0065, 0x00000000}},  //   čite, _zoof, mres_,\n  { {0x44442770, 0x394d023a, 0x26cb00ca, 0x00000000}},  //   _vd_, lres_, bico_,\n  { {0xb226012b, 0x394d0181, 0x64450022, 0x00000000}},  //   рмал, ores_, _edhi,\n  { {0x44442897, 0x394d027b, 0x78a30292, 0x00000000}},  // [7100] _td_, nres_, _konv,\n  { {0x394d028c, 0x44440018, 0x3d0f013d, 0x00000000}},  //   ires_, _ud_, ादों_,\n  { {0xee3a2898, 0x394d010f, 0x6fd5007e, 0x00000000}},  //   вне_, hres_, біцц,\n  { {0x33db00b3, 0x394d0036, 0xeda6007c, 0x00000000}},  //   _יחיד, kres_, ишло,\n  { {0x6aa20436, 0x2ee60436, 0x394d0190, 0x00000000}},  //   _roof, roof_, jres_,\n  { {0x394d0376, 0x78a30b3d, 0x1d19008b, 0x00000000}},  //   dres_, _nonv, уюць_,\n  { {0x394d0211, 0x9f5c021e, 0x00000000, 0x00000000}},  //   eres_, ävä_,   ,\n  { {0x26cb0219, 0x394d2899, 0x996602be, 0x00000000}},  //   xico_, fres_, атол,\n  { {0x394d0056, 0x26cb01d9, 0x9997005e, 0x00000000}},  //   gres_, vico_, икът_,\n  { {0x78a30b25, 0x61eb01a2, 0x3ce700fa, 0x00000000}},  //   _conv, ügli, conv_,\n  { {0x26cb0cdf, 0x3ea402ae, 0x78a30007, 0x00000000}},  //   tico_, _komt_, _donv,\n  { {0x394d00f6, 0xf53f05b7, 0xbad5008b, 0x00000000}},  //   bres_, tså_, _лічы,\n  { {0x26cb0198, 0x394d04bd, 0x78a30173, 0x00000000}},  //   rico_, cres_, _fonv,\n  { {0x26cb0691, 0x14cb01ab, 0x00000000, 0x00000000}},  //   sico_, тыми_,   ,\n  { {0x26cb02d5, 0xdce901d5, 0x68e800bb, 0x00000000}},  //   pico_, _speċ, modd,\n  { {0x68e81506, 0x3f8d012d, 0x00000000, 0x00000000}},  //   lodd, _čeu_,   ,\n  { {0x26c90119, 0x518700ed, 0x6fd9006e, 0x00000000}},  // [7110] _imao_, јуба, _मशहू,\n  { {0x92d70055, 0x68e80016, 0x64450020, 0x00000000}},  //   িতে_, nodd, _udhi,\n  { {0x61ef01aa, 0x00000000, 0x00000000, 0x00000000}},  //   _wycl,   ,   ,\n  { {0x22950647, 0x394d0190, 0x68e80016, 0x00000000}},  //   _الحس, yres_, hodd,\n  { {0x3cfe012d, 0x3ea401f3, 0x2481012d, 0x00000000}},  //   _bhtv_, _domt_, _kahm_,\n  { {0x394d028c, 0x6ef8289a, 0xb4db0129, 0x00000000}},  //   vres_, ríba, cràt,\n  { {0x7ced0051, 0x3f8a0521, 0x3f85009d, 0x00000000}},  //   dúrt, _grbu_, _élu_,\n  { {0x394d289b, 0x99840006, 0x78a301d6, 0x00000000}},  //   tres_, jamų_, _sonv,\n  { {0x394d289c, 0xdc080089, 0x78a300ca, 0x00000000}},  //   ures_, tēģi, _ponv,\n  { {0x394d04bd, 0xdcf905d4, 0x2481010f, 0x00000000}},  //   rres_, _صفات_, _nahm_,\n  { {0xb69b289d, 0xd70a007c, 0x00000000, 0x00000000}},  //   rmân, лное_,   ,\n  { {0x394d289e, 0x2ca50b65, 0x69cb0061, 0x00000000}},  //   pres_, _hold_, _तेथी,\n  { {0x81ac0055, 0x2ca508e0, 0x7ae9289f, 0x00000000}},  //   _কেন_, _kold_, moet,\n  { {0x78ba07eb, 0x7ae90d49, 0x92d70044, 0x00000000}},  //   chtv, loet, িতো_,\n  { {0x2ca524db, 0x00000000, 0x00000000, 0x00000000}},  //   _mold_,   ,   ,\n  { {0x7ae9002d, 0xdb120010, 0x5724009e, 0x00000000}},  //   noet, ógép, _بروق,\n  { {0x870600a1, 0x290500d9, 0x10160b6c, 0x00000000}},  // [7120] _پڑھے_, omla_, مباد,\n  { {0x2ca50058, 0x7ae90288, 0x3ae10142, 0x00000000}},  //   _nold_, hoet, rópy_,\n  { {0x443a0173, 0x7ae9002d, 0xd5e900a6, 0x00000000}},  //   _iep_, koet, _معین_,\n  { {0x443a014a, 0x80b40061, 0x271700e5, 0x00000000}},  //   _hep_, _इतके, _căni_,\n  { {0x2ca528a0, 0x443a01aa, 0x7ae928a1, 0x00000000}},  //   _bold_, _kep_, doet,\n  { {0x443a28a2, 0x628413ee, 0x2ca500ab, 0x00000000}},  //   _jep_, ldio, _cold_,\n  { {0x3ea41ab8, 0x7ae928a3, 0x798b00d9, 0x00000000}},  //   _tomt_, foet, _argw,\n  { {0x62840c79, 0xd00f0025, 0x443a0059, 0x00000000}},  //   ndio, _ألف_, _lep_,\n  { {0xe29b0049, 0x9c5a00a2, 0x2ca50133, 0x00000000}},  //   רשפר, _مجاز_, _fold_,\n  { {0xad1b009b, 0xb17b0049, 0xa17b0049, 0x00000000}},  //   _עובר, נטיר, נטיט,\n  { {0x68e8018e, 0x7ae90032, 0x15e1013d, 0x00000000}},  //   rodd, boet, _गुजर_,\n  { {0xfaa30057, 0x6e22023a, 0x443a0ec1, 0x00000000}},  //   _нахо, ncob, _aep_,\n  { {0x62840bc4, 0x6d42049a, 0x7c3a0093, 0x00000000}},  //   ddio, nsoa, _ketr,\n  { {0x443a28a4, 0xdcfb0166, 0x7c3a183b, 0x00000000}},  //   _cep_, _vruć, _jetr,\n  { {0x8726004b, 0x443a0011, 0x57260070, 0x00000000}},  //   _اعتم, _dep_, _ارتق,\n  { {0x7c3a0325, 0x443a0288, 0xbb3b0049, 0x00000000}},  //   _letr, _eep_, טעלי,\n  { {0xa1590451, 0xe3b000a1, 0x443a000a, 0x00000000}},  // [7130] разу_, ورہ_, _fep_,\n  { {0x7c3a0c6e, 0x7ae9002d, 0x6284006c, 0x00000000}},  //   _netr, zoet, adio,\n  { {0x83670025, 0xe29f01e5, 0x00000000, 0x00000000}},  //   _ادخل, _siðu_,   ,\n  { {0x2ca500ab, 0x2bc301f5, 0xa159007e, 0x00000000}},  //   _sold_, _वेगा, _каму_,\n  { {0xee380099, 0x5d67005e, 0xdca5013b, 0x00000000}},  //   сні_, стез, жали,\n  { {0x61fd198c, 0x69c0016c, 0x443a02d4, 0x00000000}},  //   _izsl, dzme, _xep_,\n  { {0x7ae9006c, 0x2ca50030, 0x01db0044, 0x00000000}},  //   toet, _vold_, _দরিদ,\n  { {0xa925013b, 0x2ca50190, 0x6e220026, 0x00000000}},  //   одил, _wold_, ccob,\n  { {0x7ae9002d, 0x2ca500ab, 0x7c3a0830, 0x00000000}},  //   roet, _told_, _fetr,\n  { {0x7c3a1955, 0x7ae40119, 0x6abb0022, 0x00000000}},  //   _getr, čita, shuf,\n  { {0x443a011f, 0xe739012b, 0x7ae90376, 0x00000000}},  //   _rep_, јем_, poet,\n  { {0x7d1b21d7, 0x2d8d0173, 0xc878014a, 0x00000000}},  //   _kuus, _kree_, doğu_,\n  { {0x443a0263, 0x6e3b28a5, 0xaca30011, 0x00000000}},  //   _pep_, _meub, _huốn,\n  { {0x7d1b01c2, 0x69dc014a, 0x7d0601aa, 0x00000000}},  //   _muus, ğret, _èkst,\n  { {0x25fe013d, 0xdce00006, 0xd2aa003b, 0x00000000}},  //   रेजी_, _esmė, акве_,\n  { {0x443a0145, 0x6e3b0e42, 0x628426a7, 0x00000000}},  //   _wep_, _neub, udio,\n  { {0x7d1b0007, 0x7d0100f8, 0xaca30082, 0x00000000}},  // [7140] _nuus, _ohls, _luốn,\n  { {0x628401d6, 0x00000000, 0x00000000, 0x00000000}},  //   sdio,   ,   ,\n  { {0x7c3a032c, 0x2d8d0207, 0xf42a00b0, 0x00000000}},  //   _retr, _aree_, _elää_,\n  { {0x6ef800f6, 0x2d8d0253, 0x6d420032, 0x00000000}},  //   ríbo, _bree_, tsoa,\n  { {0x7c3a0c12, 0x2d8d0211, 0x6e22023a, 0x00000000}},  //   _petr, _cree_, rcob,\n  { {0x645c049b, 0x9b260057, 0x6d4228a6, 0x00000000}},  //   ngri, офил, rsoa,\n  { {0x6d4202d5, 0x201811cc, 0xaca30082, 0x00000000}},  //   ssoa, _igri_, _cuốn,\n  { {0x2d8d0866, 0xf413009b, 0x224001a3, 0x00000000}},  //   _free_, ופו_, naik_,\n  { {0x69c00107, 0x7cff0007, 0x7d1b0bca, 0x00000000}},  //   uzme, wêre, _guus,\n  { {0x6f1c0874, 0x22400640, 0x00000000, 0x00000000}},  //   _kurc, haik_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6f1c0211, 0xa96a01e0, 0x7d1b00e7, 0x00000000}},  //   _murc, _вида_, _yuus,\n  { {0x291f28a7, 0x256428a8, 0x672d01ed, 0x00000000}},  //   cqua_, göl_, _čaje,\n  { {0x645c0390, 0x38bb01c3, 0x00000000, 0x00000000}},  //   ggri, _pêre_,   ,\n  { {0x938819ec, 0xaca3001d, 0x02a70f62, 0x00000000}},  //   оста_, _xuốn, орам,\n  { {0x201828a9, 0x3f87000c, 0x7e6000ca, 0x00000000}},  //   _agri_, ænum_, _ncmp,\n  { {0xa2c1006e, 0x00000000, 0x00000000, 0x00000000}},  // [7150] रोग्,   ,   ,\n  { {0x6f1c014a, 0xddc9001a, 0x7d1b28aa, 0x00000000}},  //   _burc, _aceş, _ruus,\n  { {0x2fc7001d, 0x6f1c0035, 0x7d1b01c2, 0x00000000}},  //   àng_, _curc, _suus,\n  { {0x6f1c001f, 0xef18008b, 0x2d8d0173, 0x00000000}},  //   _durc, імі_, _pree_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6f1c28ab, 0x66d600ca, 0xc05801ff, 0x00000000}},  //   _furc, mške, _міс_,\n  { {0x7ae40059, 0x394600fa, 0x394428ac, 0x00000000}},  //   čitn, _avos_, esms_,\n  { {0x2d8d112b, 0x09cc0044, 0x63a80190, 0x00000000}},  //   _tree_, _লড়া, ødni,\n  { {0x291f0003, 0x6f1c012d, 0x3a3f0093, 0x00000000}},  //   uqua_, _zurc, raup_,\n  { {0x3946012d, 0x645c0203, 0x22400232, 0x00000000}},  //   _dvos_, xgri, zaik_,\n  { {0xc5e9019b, 0xf771035b, 0x6d59011c, 0x00000000}},  //   _עד_, راد_, luwa,\n  { {0x1959008b, 0xda7800a5, 0xe1ff00d4, 0x00000000}},  //   _гады_, _мяч_, _ozó_,\n  { {0x6d5928ad, 0xeab00426, 0x645c28ae, 0x00000000}},  //   nuwa, _جعل_, tgri,\n  { {0xa50a026b, 0x2eb80061, 0x256428af, 0x00000000}},  //   сега_, _आत्त, röl_,\n  { {0x291d28b0, 0x645c0210, 0xe29a012b, 0x00000000}},  //   _huwa_, rgri, бав_,\n  { {0x291d0be3, 0xa2cc001c, 0xdbd70b3e, 0x00000000}},  //   _kuwa_, _सगळ्, määr,\n  { {0x6f1c06d2, 0x20180093, 0xa5bb0325, 0x00000000}},  // [7160] _surc, _pgri_, ncól,\n  { {0xe45a008b, 0x6f1c00ab, 0x6d5928b1, 0x00000000}},  //   _ужо_, _purc, duwa,\n  { {0x2721000c, 0xaca30082, 0x212b04d2, 0x00000000}},  //   _jón_, _luồn, _etch_,\n  { {0x272128b2, 0x127a0025, 0x3a240026, 0x00000000}},  //   _món_, _احدث_, xcmp_,\n  { {0x6d590058, 0x27210048, 0x62860288, 0x00000000}},  //   guwa, _lón_, _iako,\n  { {0x6f1c0089, 0x628628b3, 0xdbd705e0, 0x00000000}},  //   _turc, _hako, käär,\n  { {0x628601d9, 0x27210011, 0xe4570097, 0x00000000}},  //   _kako, _nón_, ליסט_,\n  { {0x62860667, 0x3afa0065, 0x5fdb009b, 0x00000000}},  //   _jako, rëpo_, _החלק,\n  { {0x6286000b, 0xaca30011, 0xdee30088, 0x00000000}},  //   _mako, _cuồn, _чоти,\n  { {0x628628b4, 0x27211894, 0xfca9284e, 0x00000000}},  //   _lako, _bón_, _والو_,\n  { {0xf093009b, 0x00000000, 0x00000000, 0x00000000}},  //   גנת_,   ,   ,\n  { {0x62860209, 0x45d50264, 0xa9a600ed, 0x00000000}},  //   _nako, домс, _ниед,\n  { {0xf1bf008e, 0x765d00d9, 0x8bee0044, 0x00000000}},  //   _afán_, rgsy, টেশন_,\n  { {0x27210051, 0x00000000, 0x00000000, 0x00000000}},  //   _fón_,   ,   ,\n  { {0x628628b5, 0xe1ff0344, 0xb4bd013d, 0x00000000}},  //   _bako, _szó_, _आती_,\n  { {0x6d590697, 0xdddb12db, 0xcfc40044, 0x00000000}},  //   yuwa, _lauš, ্থান,\n  { {0xa3cd006e, 0x6286071e, 0x62d40014, 0x00000000}},  // [7170] _शेर_, _dako, رآفر,\n  { {0x55bc009b, 0x752d28b6, 0xdddb01ed, 0x00000000}},  //   _למחו, _itaz, _nauš,\n  { {0x5f7928b7, 0x00000000, 0x00000000, 0x00000000}},  //   تماس_,   ,   ,\n  { {0x7c2800b5, 0x6d5928b8, 0x6286002d, 0x00000000}},  //   _afdr, tuwa, _gako,\n  { {0xdddb129d, 0x7e7900d9, 0x00000000, 0x00000000}},  //   _bauš, rewp,   ,\n  { {0x62860305, 0xeb9901e0, 0x752d0020, 0x00000000}},  //   _zako, жик_, _mtaz,\n  { {0x62860cd1, 0x6d5928b9, 0xdca228ba, 0x00000000}},  //   _yako, suwa, тащи,\n  { {0xdbd701c2, 0x764d0020, 0xfbd0006d, 0x00000000}},  //   väär, _nday, دته_,\n  { {0x272104bd, 0xcda90025, 0x752d0009, 0x00000000}},  //   _són_, _بهذه_, _ntaz,\n  { {0xd90f026c, 0x764d014a, 0x57490437, 0x00000000}},  //   ھیں_, _aday, озом_,\n  { {0x752d002d, 0x66e6013b, 0x9cea00a1, 0x00000000}},  //   _ataz, дона, _بولے_,\n  { {0x291d011c, 0x6441000c, 0xaca30082, 0x00000000}},  //   _tuwa_, ðlin, _tuồn,\n  { {0x628601ca, 0xe8ee0f93, 0x2b400091, 0x00000000}},  //   _rako, _ал_, ćice_,\n  { {0xe73901e0, 0x6286182b, 0x917a0082, 0x00000000}},  //   _дек_, _sako, _lập_,\n  { {0x628600b0, 0x752d0263, 0x31690032, 0x00000000}},  //   _pako, _etaz, etaz_,\n  { {0xe29700ed, 0xdb240010, 0x6e2d008e, 0x00000000}},  //   мас_, éséh, ñabl,\n  { {0x3f83006c, 0x3f910279, 0x61431deb, 0x00000000}},  // [7180] _asju_, _arzu_, кета,\n  { {0x62860020, 0x6e291c88, 0x92ce0044, 0x00000000}},  //   _wako, _afeb, শকে_,\n  { {0x7306025f, 0x6d49001a, 0x1eca00ed, 0x00000000}},  //   _опоз, _avea, олжи_,\n  { {0x917a0082, 0x00000000, 0x00000000, 0x00000000}},  //   _cập_,   ,   ,\n  { {0xdce20142, 0x249a0022, 0xdddb0471, 0x00000000}},  //   stoč, _knpm_, _pauš,\n  { {0x3e4e0011, 0x160300e8, 0x00000000, 0x00000000}},  //   ột_, रेटर_,   ,\n  { {0xeb9700ec, 0x6aab0190, 0x00000000, 0x00000000}},  //   диј_, _bogf,   ,\n  { {0x3e86010a, 0xc4bb0164, 0x00000000, 0x00000000}},  //   _būtų_, _उत्ख,   ,\n  { {0x6aab018e, 0xbc66012b, 0xb5fb00d6, 0x00000000}},  //   _dogf, _овак, nfát,\n  { {0xd90d06c6, 0x47340764, 0xb4e80164, 0x00000000}},  //   مین_, ннос, यको_,\n  { {0x20570049, 0x9057009b, 0xf98f0014, 0x00000000}},  //   וייל_, וסיף_, هبی_,\n  { {0x5694004c, 0x3ea60093, 0x6ef800c4, 0x00000000}},  //   вают, njot_, fíbi,\n  { {0x2d840224, 0x6ef80051, 0x00000000, 0x00000000}},  //   _jsme_, ríbh,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x36d502a8, 0x2cac018e, 0x7ae201ee, 0x00000000}},  //   _покр, _modd_, _kjot,\n  { {0x764d13cd, 0x260c0061, 0x26c21ff5, 0x00000000}},  //   _uday, ठेही_, chko_,\n  { {0x752d0047, 0xf70a0011, 0x00000000, 0x00000000}},  // [7190] _utaz, _nầy_,   ,\n  { {0x316928bb, 0x4427014a, 0x7ae221fc, 0x00000000}},  //   rtaz_, _ün_, _ljot,\n  { {0xdfd101b7, 0x3169002d, 0x6d4900d8, 0x00000000}},  //   ديا_, staz_, _svea,\n  { {0x867c0049, 0xf70a0082, 0x00000000, 0x00000000}},  //   ַרוו, _bầy_,   ,\n  { {0x2cac005b, 0xf70a0082, 0x41e70088, 0x00000000}},  //   _bodd_, _cầy_, _ціна,\n  { {0xf70a0082, 0x00000000, 0x00000000, 0x00000000}},  //   _dầy_,   ,   ,\n  { {0x2cac0ca4, 0x2d84007f, 0x917a0082, 0x00000000}},  //   _dodd_, _esme_, _tập_,\n  { {0xff07007e, 0xc9a917a4, 0x6e94080c, 0x00000000}},  //   _цягн, звие_, _иису,\n  { {0x2cac0016, 0xe9d902d3, 0xf70a0082, 0x00000000}},  //   _fodd_, яки_, _gầy_,\n  { {0xa3c102fb, 0xa3e00164, 0x48cd0044, 0x00000000}},  //   ्छा_, _दखल_, রক্র,\n  { {0x26c20d0a, 0x66d628bc, 0x00000000, 0x00000000}},  //   thko_, eška,   ,\n  { {0xb4e80204, 0xddc0000a, 0x0bb60049, 0x00000000}},  //   यक्_, _bemň, _אלעם_,\n  { {0x3ead0100, 0x249a0093, 0xef190066, 0x00000000}},  //   _moet_, _pnpm_, _miż_,\n  { {0x7afb006c, 0x26c21264, 0xef190066, 0x00000000}},  //   llut, shko_, _liż_,\n  { {0xd5b8001e, 0xe29a28bd, 0xa856009b, 0x00000000}},  //   ņā_, пав_, _טיסה_,\n  { {0xef190046, 0x05660088, 0x7afb21b8, 0x00000000}},  //   _niż_, _звин, nlut,\n  { {0x20560216, 0x4106004d, 0x3afa0049, 0x00000000}},  // [71a0] етер, езав, פּלע,\n  { {0x7afb009f, 0x5f7600a1, 0x660401c3, 0x00000000}},  //   hlut, ٹائر, _izik,\n  { {0x4438005b, 0x3ead28be, 0x7afb0066, 0x00000000}},  //   mbr_, _boet_, klut,\n  { {0x9f580065, 0x764628bf, 0x3ead00f6, 0x00000000}},  //   _hyrë_, naky, _coet_,\n  { {0x3ead02ae, 0x26c000e7, 0xef1901f3, 0x00000000}},  //   _doet_, _mlio_, _diż_,\n  { {0x224201d5, 0x66040020, 0x443816b1, 0x00000000}},  //   _hekk_, _mzik, nbr_,\n  { {0x26c00207, 0x7afb000c, 0x3dc60048, 0x00000000}},  //   _olio_, flut, szow_,\n  { {0x22420f68, 0x7afb011c, 0x2907002b, 0x00000000}},  //   _jekk_, glut, _ahna_,\n  { {0x63b50046, 0x66040045, 0x2cac0133, 0x00000000}},  //   zyzn, _nzik, _todd_,\n  { {0x2918072d, 0x26c01b50, 0x7e6200d9, 0x00000000}},  //   öra_, _alio_, lgop,\n  { {0x6441000c, 0x7e620d16, 0x442a0045, 0x00000000}},  //   ðlim, ogop, dcb_,\n  { {0x7d1a17ce, 0x7e6204be, 0x26c000f4, 0x00000000}},  //   _hits, ngop, _clio_,\n  { {0x7d1a006c, 0x8e2005b8, 0x2b4c00d9, 0x00000000}},  //   _kits, вiк_, _hvdc_,\n  { {0x26c00197, 0x7d1a00c4, 0x66040036, 0x00000000}},  //   _elio_, _jits, _dzik,\n  { {0xf76f007a, 0x2242000c, 0x764600e0, 0x00000000}},  //   _هاي_, _bekk_, baky,\n  { {0x7d1a006c, 0x44380009, 0x26c00026, 0x00000000}},  //   _lits, abr_, _glio_,\n  { {0x645a0489, 0x443800f6, 0x3ead00d9, 0x00000000}},  // [71b0] ótic, bbr_, _roet_,\n  { {0x9028008b, 0x3ebf01bf, 0x7d1a0058, 0x00000000}},  //   ецца_, _slut_, _nits,\n  { {0x3ead28c0, 0x64470089, 0xef19002b, 0x00000000}},  //   _poet_, maji, _piż_,\n  { {0x2242000c, 0x644716a6, 0x7e6200ea, 0x00000000}},  //   _gekk_, laji, ggop,\n  { {0x629d060c, 0x3ead00c7, 0x09b50044, 0x00000000}},  //   _inso, _voet_, _জেনা,\n  { {0xd045005f, 0x644712bd, 0x628d0026, 0x00000000}},  //   yihə, naji, ldao,\n  { {0x7d1a01c3, 0x3ead0168, 0x00000000, 0x00000000}},  //   _dits, _toet_,   ,\n  { {0x7afb003c, 0x628d00e7, 0x1dd2007d, 0x00000000}},  //   ulut, ndao, _देवत,\n  { {0x64470089, 0x2b400091, 0x2d58007c, 0x00000000}},  //   kaji, ćica_, _пить_,\n  { {0x7afb0239, 0x8c3c0279, 0x6d4b141a, 0x00000000}},  //   slut, _boğu, msga,\n  { {0x81d70055, 0x6f1b0020, 0x7afb2034, 0x00000000}},  //   িথি_, _kiuc, plut,\n  { {0x8c3c01f6, 0x6d5900c1, 0x60c500e0, 0x00000000}},  //   _doğu, orwa, hhhm,\n  { {0x6d4b032e, 0x41d0013d, 0x95990cb7, 0x00000000}},  //   nsga, _सेंस, нтру_,\n  { {0x764628c1, 0x64470089, 0x629d010f, 0x00000000}},  //   saky, gaji, _anso,\n  { {0x04430057, 0x64a30072, 0x00000000, 0x00000000}},  //   ресн, шара,   ,\n  { {0x3afa0065, 0x26c00020, 0xd5b2004b, 0x00000000}},  //   tëpi_, _ulio_, _نفع_,\n  { {0x644701a3, 0x69c900bb, 0x395f11e5, 0x00000000}},  // [71c0] baji, nzee, nuus_,\n  { {0x81ac0055, 0x672310ed, 0x64470ade, 0x00000000}},  //   _কেউ_, _kunj, caji,\n  { {0x4444002a, 0x7d1a000c, 0x752400b5, 0x00000000}},  //   _ie_, _rits, _huiz,\n  { {0x44440038, 0x6f090038, 0x67230091, 0x00000000}},  //   _he_, _chec, _munj,\n  { {0x4444033b, 0x7d1a0ac2, 0x752400c4, 0x00000000}},  //   _ke_, _pits, _juiz,\n  { {0x444401cd, 0x8cf3007e, 0x69c90089, 0x00000000}},  //   _je_, азіц, dzee,\n  { {0x4444048a, 0x7d1a0056, 0x75240181, 0x00000000}},  //   _me_, _vits, _luiz,\n  { {0x44440068, 0x7d1a1f98, 0x644701c5, 0x00000000}},  //   _le_, _wits, zaji,\n  { {0xf2d3019b, 0x44442280, 0x66d62198, 0x00000000}},  //   יעה_, _oe_, eško,\n  { {0x7d1a049b, 0xed57005e, 0xe1ff00f6, 0x00000000}},  //   _uits, _шоу_, _ocón_,\n  { {0x644701c5, 0x67230e0d, 0x6aa9004a, 0x00000000}},  //   vaji, _cunj, bjef,\n  { {0x44441d21, 0x6723037e, 0x644707de, 0x00000000}},  //   _ae_, _dunj, waji,\n  { {0x44440a8a, 0x644701d5, 0x67230022, 0x00000000}},  //   _be_, taji, _eunj,\n  { {0x444428c2, 0xa4e4007e, 0x752400b5, 0x00000000}},  //   _ce_, аўск, _duiz,\n  { {0x64470e8b, 0x6723022e, 0xa3cd0164, 0x00000000}},  //   raji, _gunj, _शेख_,\n  { {0x4444061f, 0x64470557, 0xf2c40451, 0x00000000}},  //   _ee_, saji, асун,\n  { {0x444428c3, 0x26d90211, 0x291c00b0, 0x00000000}},  // [71d0] _fe_, miso_, _kiva_,\n  { {0x44440073, 0x26d90052, 0x656f0146, 0x00000000}},  //   _ge_, liso_, mtch,\n  { {0xa5c7000c, 0x15f400a6, 0x6f1b0026, 0x00000000}},  //   _fróð, _مسیح, _piuc,\n  { {0xf773007b, 0x6d4b00eb, 0xa5c7000c, 0x00000000}},  //   יקע_, tsga, _gróð,\n  { {0x444428c4, 0x224907a5, 0x656f1339, 0x00000000}},  //   _ye_, maak_, ntch,\n  { {0x444400ad, 0x6d4b032e, 0x395f00b0, 0x00000000}},  //   _xe_, rsga, vuus_,\n  { {0x6f0919ff, 0x644508b5, 0x44210173, 0x00000000}},  //   _thec, _mehi, _mgh_,\n  { {0x6445022b, 0xc207013d, 0x6d4b032e, 0x00000000}},  //   _lehi, _शराब_, psga,\n  { {0x987e006b, 0x26d90197, 0x6abb0ef8, 0x00000000}},  //   _açıq_, diso_, rkuf,\n  { {0x61fd0428, 0xe0df01aa, 0x67230091, 0x00000000}},  //   _mysl, _dwòg_, _punj,\n  { {0x4444045e, 0x395f021e, 0x291c0142, 0x00000000}},  //   _re_, suus_, _diva_,\n  { {0xcfc50055, 0x672300e7, 0xb5fb167d, 0x00000000}},  //   _এখান, _vunj, rgán,\n  { {0x44441305, 0x644528c5, 0x75240211, 0x00000000}},  //   _pe_, _behi, _quiz,\n  { {0x4444048a, 0x6723003f, 0x44210606, 0x00000000}},  //   _qe_, _tunj, _cgh_,\n  { {0x444428c6, 0xb5fb0047, 0x394d23fc, 0x00000000}},  //   _ve_, lgál, lses_,\n  { {0x44440f44, 0x26d928c7, 0x394d1a86, 0x00000000}},  //   _we_, ciso_, oses_,\n  { {0x394d032c, 0x6445002b, 0x442128c8, 0x00000000}},  // [71e0] nses_, _fehi, _fgh_,\n  { {0x64450756, 0x444423b4, 0x7e690211, 0x00000000}},  //   _gehi, _ue_, _acep,\n  { {0x37d50044, 0x2249063f, 0x00000000, 0x00000000}},  //   _সুতর, baak_,   ,\n  { {0x7126026c, 0x6445014a, 0x00000000, 0x00000000}},  //   _مرسل, _zehi,   ,\n  { {0x31600240, 0x463b0049, 0x394d1beb, 0x00000000}},  //   quiz_, גענע, jses_,\n  { {0x0b8a0d73, 0x00000000, 0x00000000, 0x00000000}},  //   есии_,   ,   ,\n  { {0x394d00d4, 0x291c28c9, 0xd0070088, 0x00000000}},  //   eses_, _riva_, _бере_,\n  { {0xd12f026c, 0x291c00ca, 0x8c3c005d, 0x00000000}},  //   _ذمہ_, _siva_, _coğr,\n  { {0x8c3c047f, 0x26d90207, 0x291c05d2, 0x00000000}},  //   _doğr, viso_, _piva_,\n  { {0x224928ca, 0x00000000, 0x00000000, 0x00000000}},  //   zaak_,   ,   ,\n  { {0x291c0ffb, 0x2902001e, 0x6445011c, 0x00000000}},  //   _viva_, ēka_, _rehi,\n  { {0x64450149, 0x2f970049, 0x44210860, 0x00000000}},  //   _sehi, אכטן_, _sgh_,\n  { {0x25bf0010, 0x442110e0, 0x26d90052, 0x00000000}},  //   ául_, _pgh_, riso_,\n  { {0x224901d6, 0x00000000, 0x00000000, 0x00000000}},  //   waak_,   ,   ,\n  { {0xd6d10188, 0x779200d3, 0x644512a0, 0x00000000}},  //   _وقت_, _ایجا, _vehi,\n  { {0xa6ab0188, 0x66c628cb, 0x1dc40164, 0x00000000}},  //   _سابق_, _póke, वनात,\n  { {0x224924eb, 0xa1580264, 0x60f9007c, 0x00000000}},  // [71f0] raak_, лату_, вная_,\n  { {0x61fd0161, 0x00000000, 0x00000000, 0x00000000}},  //   _vysl,   ,   ,\n  { {0x8007007c, 0x672d0471, 0x00000000, 0x00000000}},  //   учае, _čajk,   ,\n  { {0x66f7006e, 0x67050164, 0xd13000a1, 0x00000000}},  //   ीतिक_, रतिक_, تمے_,\n  { {0xa2ba0164, 0x628f0420, 0x6da50a27, 0x00000000}},  //   _एकत्, _iaco, рила,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x628f02c1, 0xeab10025, 0x00000000, 0x00000000}},  //   _kaco, قعة_,   ,\n  { {0x394d006c, 0x628f25d4, 0xc33400a0, 0x00000000}},  //   tses_, _jaco, זוק_,\n  { {0x628f0a47, 0x394d00f4, 0x08c5134b, 0x00000000}},  //   _maco, uses_, ибин,\n  { {0x394d03db, 0x3f980016, 0x7c9701fa, 0x00000000}},  //   rses_, _yrru_, _حشرا,\n  { {0x394d030a, 0xeaae00a1, 0x00000000, 0x00000000}},  //   sses_, سٹی_,   ,\n  { {0x89d601ef, 0xe1ff004a, 0xd4910082, 0x00000000}},  //   اویر_, _oyó_, ồn_,\n  { {0xcb1200b6, 0xf50600da, 0xd94502dc, 0x00000000}},  //   _ולא_, измо, _тели,\n  { {0xb4c20061, 0x00000000, 0x00000000, 0x00000000}},  //   ्फे_,   ,   ,\n  { {0x98f40b6c, 0x934600e2, 0x00000000, 0x00000000}},  //   _اثنا, рнбе,   ,\n  { {0xd1320025, 0x628f00c4, 0x00000000, 0x00000000}},  //   قمر_, _caco,   ,\n  { {0x225d0036, 0x41270745, 0x6906000c, 0x00000000}},  // [7200] ówka_, иото_, iðen,\n  { {0xe3ba0099, 0xbebd0006, 0x628f0045, 0x00000000}},  //   _або_, _liūd, _eaco,\n  { {0x628f0207, 0x7e260174, 0xb4c2013d, 0x00000000}},  //   _faco, адеж, ंसी_,\n  { {0x539b009b, 0x27760049, 0x628f0082, 0x00000000}},  //   _סיכו, יגען_, _gaco,\n  { {0x628428cc, 0xc878014a, 0xdd920439, 0x00000000}},  //   meio, liğe_, توش_,\n  { {0x61430467, 0x00000000, 0x00000000, 0x00000000}},  //   _фера,   ,   ,\n  { {0x69dd0027, 0x628f28cd, 0xa5bb28ce, 0x00000000}},  //   úsen, _yaco, ncór,\n  { {0x628f004a, 0x628400fa, 0x8f37009b, 0x00000000}},  //   _xaco, neio, _כאלו_,\n  { {0x8d2a0088, 0x394201aa, 0x63bc18f7, 0x00000000}},  //   _розв_, èks_, hyrn,\n  { {0x6f020207, 0x20070036, 0x8c660167, 0x00000000}},  //   lloc, żnie_, _خطرن,\n  { {0x627e0036, 0x00000000, 0x00000000, 0x00000000}},  //   _złoż,   ,   ,\n  { {0x7bdb009b, 0x98ab0089, 0xfaa301ee, 0x00000000}},  //   _בקבו, īcā_, _махо,\n  { {0x993406b4, 0x628f0bdb, 0xe8940228, 0x00000000}},  //   _افتت, _raco, _галь,\n  { {0x628f0181, 0x76560022, 0x6f0200cf, 0x00000000}},  //   _saco, _edyy, hloc,\n  { {0x628f0181, 0xd9e80044, 0x6aa228cf, 0x00000000}},  //   _paco, _পরিম, _knof,\n  { {0x6f02001a, 0x798b0016, 0x6284005b, 0x00000000}},  //   jloc, _ysgw, geio,\n  { {0x518728d0, 0x20050087, 0x7b15012d, 0x00000000}},  // [7210] шува, _šli_, _tšuv,\n  { {0x92d70055, 0xd9e80044, 0xa7fc014a, 0x00000000}},  //   াকে_, _পরাম, ygıl,\n  { {0x33950025, 0x628f05f0, 0x6f0201a2, 0x00000000}},  //   _الجز, _taco, floc,\n  { {0x539a00a0, 0x628400fa, 0x00000000, 0x00000000}},  //   _עירו, ceio,   ,\n  { {0x127a0049, 0x6b9a01a2, 0x00000000, 0x00000000}},  //   _גארע, _artg,   ,\n  { {0x8c420174, 0x44310232, 0x6aa20e66, 0x00000000}},  //   пеше, ncz_, _anof,\n  { {0xde67005e, 0x627e00b4, 0x00000000, 0x00000000}},  //   _възп, _włoż,   ,\n  { {0x6f02059a, 0x3a98007c, 0xa7fc014a, 0x00000000}},  //   cloc, атью_, rgıl,\n  { {0x7e7b0145, 0x44330026, 0x7b23016c, 0x00000000}},  //   _ibup, _ofx_, _ađut,\n  { {0x2d8d0026, 0x00000000, 0x00000000, 0x00000000}},  //   _isee_,   ,   ,\n  { {0x2cf50061, 0x66d6012d, 0x7ae4012d, 0x00000000}},  //   ेतील_, lški, čitr,\n  { {0x5b1528d1, 0x66c6000c, 0x66e628d2, 0x00000000}},  //   _умет, _bóka, сома,\n  { {0x59c40025, 0x66080036, 0xe9d303e6, 0x00000000}},  //   _ويمك, ędko, _بغض_,\n  { {0x66d60006, 0x443300d2, 0x3a3f0022, 0x00000000}},  //   iški, _cfx_, lbup_,\n  { {0x78a30c31, 0x7e7b00ca, 0xdce20166, 0x00000000}},  //   _innv, _obup, stoć,\n  { {0x26150204, 0x44310036, 0xc878014a, 0x00000000}},  //   नेही_, acz_, riğe_,\n  { {0x95560318, 0x463b0049, 0x2d8d00e0, 0x00000000}},  // [7220] _اخبا, _געפע, _nsee_,\n  { {0x44330061, 0xb466012b, 0xb4db0129, 0x00000000}},  //   _gfx_, _укол, ssàr,\n  { {0x644e000c, 0xee3a017a, 0x6f0205af, 0x00000000}},  //   mabi, гне_, tloc,\n  { {0x644e011f, 0x61e907ac, 0xf41300b6, 0x00000000}},  //   labi, _žele, _מפת_,\n  { {0x1dd2013d, 0x22400461, 0x00000000, 0x00000000}},  //   _देखत, mbik_,   ,\n  { {0x644e0284, 0x6f02219a, 0x8fa60256, 0x00000000}},  //   nabi, sloc, _лаге,\n  { {0x6f0200f8, 0x09b50044, 0xdb090161, 0x00000000}},  //   ploc, _জেলা, žnýc,\n  { {0x644e0b25, 0xeb97003b, 0x00000000, 0x00000000}},  //   habi, сић_,   ,\n  { {0x644e28d3, 0xd91a005e, 0x984a005e, 0x00000000}},  //   kabi, льо_, ляна_,\n  { {0xd90d0167, 0xe78600ed, 0xab2a0451, 0x00000000}},  //   نین_, бумо, _божа_,\n  { {0x644e117a, 0xda7a005e, 0x00000000, 0x00000000}},  //   dabi, _бял_,   ,\n  { {0xb5fb0051, 0x6aa20133, 0x00000000, 0x00000000}},  //   lgái, _unof,   ,\n  { {0x644e060c, 0xb5fb0048, 0x00000000, 0x00000000}},  //   fabi, ogái,   ,\n  { {0xb5fb1a1c, 0x3160004a, 0x00000000, 0x00000000}},  //   ngái, driz_,   ,\n  { {0xf8db009b, 0x241907d0, 0x00000000, 0x00000000}},  //   _תחומ, ровы_,   ,\n  { {0x386e009d, 0x7b1501ed, 0x00000000, 0x00000000}},  //   _hcfr_, _ušut,   ,\n  { {0x644e28d4, 0xcfd60044, 0xe0d90088, 0x00000000}},  // [7230] babi, _তুলন, адач_,\n  { {0x644e04b4, 0x660d002d, 0x764f0036, 0x00000000}},  //   cabi, _izak, lacy,\n  { {0x22400010, 0x7bde004a, 0xdea10014, 0x00000000}},  //   bbik_, úpul, ویسی,\n  { {0x395f0006, 0x3160006b, 0xd7fb0049, 0x00000000}},  //   yrus_, briz_, נהאל,\n  { {0x31600197, 0x9cf50088, 0x7b15016c, 0x00000000}},  //   criz_, озді, _ošur,\n  { {0x66d60006, 0x224b0f10, 0x9401006b, 0x00000000}},  //   rški, _heck_, _sahə_,\n  { {0x764f0036, 0x3ec40010, 0x5b32009e, 0x00000000}},  //   kacy, ártó_, وٹور,\n  { {0x644e0a3b, 0xb5fb0051, 0xdcfb0089, 0x00000000}},  //   zabi, agái, _kruī,\n  { {0x644e011f, 0x395f1228, 0x224b01d6, 0x00000000}},  //   yabi, urus_, _meck_,\n  { {0x212b0038, 0xf77105d4, 0x395f010e, 0x00000000}},  //   _much_, واج_, rrus_,\n  { {0x16aa044b, 0x644e0eb5, 0x660d0600, 0x00000000}},  //   авни_, vabi, _azak,\n  { {0x224b00ab, 0x09e80044, 0x644e28d5, 0x00000000}},  //   _neck_, _পররা, wabi,\n  { {0x644e049a, 0xa50a01e0, 0x26c200b0, 0x00000000}},  //   tabi, иема_, rkko_,\n  { {0x7afb089e, 0x7ae90056, 0x65660058, 0x00000000}},  //   lout, lnet, rukh,\n  { {0x212b08ba, 0x36e90752, 0xa5bb0285, 0x00000000}},  //   _auch_, _گروپ_, scóp,\n  { {0x7ae9021e, 0x31600489, 0x212b010f, 0x00000000}},  //   nnet, triz_, _buch_,\n  { {0x644e014a, 0x7ae90ac2, 0x29050052, 0x00000000}},  // [7240] pabi, inet, olla_,\n  { {0x3160022b, 0x7ae907e4, 0x7afb098a, 0x00000000}},  //   rriz_, hnet, hout,\n  { {0x2905021e, 0x212b001f, 0x7ae9016e, 0x00000000}},  //   illa_, _euch_, knet,\n  { {0xe29a0121, 0x31601338, 0x7afb00f4, 0x00000000}},  //   _там_, priz_, jout,\n  { {0x7ae90142, 0x7afb009d, 0x0caa0088, 0x00000000}},  //   dnet, dout, итки_,\n  { {0xd0e80123, 0x764f0036, 0x7ae9002d, 0x00000000}},  //   _اکرم_, zacy, enet,\n  { {0xf76700a2, 0x7afb00bb, 0xb5fb0051, 0x00000000}},  //   _تا_, fout, rgái,\n  { {0x29050108, 0x7afb1339, 0x62960173, 0x00000000}},  //   ella_, gout, ndyo,\n  { {0x764f00b5, 0x68fa28d6, 0x660428d7, 0x00000000}},  //   vacy, totd, _nyik,\n  { {0x1d0a005e, 0xb17b0049, 0x764f0036, 0x00000000}},  //   _тези_, סטיר, wacy,\n  { {0x660d0047, 0xa09b0049, 0x7ae9013e, 0x00000000}},  //   _szak, בייט, bnet,\n  { {0x99e80055, 0x290500b0, 0xd6db0594, 0x00000000}},  //   _পরীক, alla_, рто_,\n  { {0x764f0036, 0x672404be, 0xe9cf0014, 0x00000000}},  //   racy, _diij, _لغو_,\n  { {0xd5b8008b, 0x7ae00e06, 0x212b179f, 0x00000000}},  //   іся_, limt, _ruch_,\n  { {0x57f302a8, 0x212b0038, 0x4394013b, 0x00000000}},  //   _општ, _such_, марс,\n  { {0x25a60059, 0xb88200b9, 0x660d0032, 0x00000000}},  //   _šole_, řídi, _tzak,\n  { {0x69c028d8, 0x660d014a, 0xd52d0082, 0x00000000}},  // [7250] nyme, _uzak, _dựn,\n  { {0xcf9b045e, 0x7ae900b9, 0x7afb28d9, 0x00000000}},  //   ије_, znet, zout,\n  { {0x752d0023, 0x224b08ea, 0x7afb0339, 0x00000000}},  //   _huaz, _teck_, yout,\n  { {0xc7b30104, 0x79820036, 0x23fa009b, 0x00000000}},  //   ובע_, _opow, _להתא,\n  { {0xa3df001c, 0x29050332, 0x7ae908e0, 0x00000000}},  //   _देत_, ylla_, vnet,\n  { {0x91ba009b, 0x69c005aa, 0xd7ca01f5, 0x00000000}},  //   _המשי, dyme, ानाच,\n  { {0x447c007b, 0x7afb00b0, 0x7ae90253, 0x00000000}},  //   ינגע, tout, tnet,\n  { {0xfbd0007a, 0x7ae028da, 0x3f830087, 0x00000000}},  //   خته_, gimt, _ipju_,\n  { {0x7afb00f4, 0x29050129, 0x69c01e3d, 0x00000000}},  //   rout, tlla_, gyme,\n  { {0x88c9012b, 0x7afb11a2, 0x7ae90059, 0x00000000}},  //   слов_, sout, snet,\n  { {0xb8e302fb, 0x07a50451, 0x7ae911b9, 0x00000000}},  //   _एक_, чанн, pnet,\n  { {0x6a940088, 0xa5c201e5, 0x00000000, 0x00000000}},  //   _оріє, _þókn,   ,\n  { {0x6b500051, 0x80bc0061, 0x00000000, 0x00000000}},  //   _tógá, _शकले,   ,\n  { {0x2a6d010e, 0x31690d17, 0x00000000, 0x00000000}},  //   lgeb_, duaz_,   ,\n  { {0x68e128db, 0x7cf60035, 0x03a3007c, 0x00000000}},  //   mild, târz, ниро,\n  { {0x6e29023a, 0xc3230098, 0x2a6d006c, 0x00000000}},  //   _ngeb, емск, ngeb_,\n  { {0x752d28dc, 0xdb0a0010, 0x00000000, 0x00000000}},  // [7260] _guaz, ínés,   ,\n  { {0x68e128dd, 0xb4661001, 0x41032798, 0x00000000}},  //   nild, _экол, езув,\n  { {0x752d28de, 0x69c00133, 0x00000000, 0x00000000}},  //   _zuaz, zyme,   ,\n  { {0x68e10270, 0x2d9f00f6, 0x25a000ca, 0x00000000}},  //   hild, _brue_, _kril_,\n  { {0x68e1049d, 0x1d0a0893, 0x4c940a1e, 0x00000000}},  //   kild, беди_, дилс,\n  { {0x2d9f0146, 0x6e290190, 0x00000000, 0x00000000}},  //   _drue_, _egeb,   ,\n  { {0x6fb60151, 0x79820036, 0x7ae00065, 0x00000000}},  //   _عمرا, _spow, timt,\n  { {0x78b80197, 0x66c6000c, 0x2d9f068f, 0x00000000}},  //   _sovv, _bókm, _frue_,\n  { {0x7ae028df, 0x68e128e0, 0x3914007c, 0x00000000}},  //   rimt, fild, ммир,\n  { {0x7ae00065, 0x48aa0175, 0x02c90164, 0x00000000}},  //   simt, стим_, _रत्न,\n  { {0xdc3b00a0, 0x752d24e2, 0x69c01e11, 0x00000000}},  //   _העבר, _suaz, syme,\n  { {0x25a00112, 0xe0df000a, 0x69c0004a, 0x00000000}},  //   _bril_, _awòl_, pyme,\n  { {0x68e1001e, 0x18a600ed, 0x2b400166, 0x00000000}},  //   bild, _надм, ćicu_,\n  { {0xf53f044f, 0x65600592, 0x00000000, 0x00000000}},  //   rpå_, ámha,   ,\n  { {0x187b009b, 0xa87b009b, 0xe0df01aa, 0x00000000}},  //   _הטוב, _האור, _dwòl_,\n  { {0x316928e1, 0x00000000, 0x00000000, 0x00000000}},  //   tuaz_,   ,   ,\n  { {0x44f501be, 0xc2c40025, 0x25a00062, 0x00000000}},  // [7270] _опис, ريكي, _gril_,\n  { {0x31690032, 0x66f20089, 0x00000000, 0x00000000}},  //   ruaz_, māka,   ,\n  { {0x2fc700ad, 0x201e0df8, 0x66f20089, 0x00000000}},  //   áng_, _útil_, lāka,\n  { {0xd092005f, 0x2d9f00f6, 0x00000000, 0x00000000}},  //   _müəs, _prue_,   ,\n  { {0x3d09001c, 0x66f2001e, 0xfe700151, 0x00000000}},  //   ितले_, nāka, ادم_,\n  { {0x2fc700ad, 0x2bde0061, 0x4e180014, 0x00000000}},  //   ơng_, _केहू_, ستند_,\n  { {0x68e128e2, 0xfc4600b9, 0x00000000, 0x00000000}},  //   vild, _říci_,   ,\n  { {0x6d490606, 0x2d9f0866, 0x68e1107c, 0x00000000}},  //   _twea, _true_, wild,\n  { {0xac27081c, 0x68e1014a, 0x2f18007c, 0x00000000}},  //   _ефек, tild, _хоть_,\n  { {0x57e9007c, 0x00000000, 0x00000000, 0x00000000}},  //   ждом_,   ,   ,\n  { {0x68e101f6, 0xc052009b, 0x00000000, 0x00000000}},  //   rild, כזי_,   ,\n  { {0x25a000ca, 0xddc90066, 0x00000000, 0x00000000}},  //   _pril_, _obeż,   ,\n  { {0x68e10ebc, 0x7bc30161, 0x66f20089, 0x00000000}},  //   pild, lynu, gāka,\n  { {0xa3df0309, 0x00000000, 0x00000000, 0x00000000}},  //   _देह_,   ,   ,\n  { {0x46f61281, 0x00000000, 0x00000000, 0x00000000}},  //   _очит,   ,   ,\n  { {0x66f20089, 0x25760030, 0x00000000, 0x00000000}},  //   bāka, pæl_,   ,\n  { {0xf1de013d, 0x66f20089, 0x91e300e2, 0x00000000}},  // [7280] _नेशन, cāka, воте,\n  { {0xdcfb0091, 0xa3df0309, 0x25bf01a2, 0x00000000}},  //   _osuđ, _देव_, äule_,\n  { {0x443a28e3, 0x00000000, 0x00000000, 0x00000000}},  //   _ifp_,   ,   ,\n  { {0x27330011, 0x6e2d0059, 0x6700007d, 0x00000000}},  //   _mãn_, žabn, ैतिक_,\n  { {0xb5fb28e4, 0x2056004d, 0xdc39014a, 0x00000000}},  //   lgár, _отвр, _açıd,\n  { {0x23650c0a, 0x40950098, 0x4438005b, 0x00000000}},  //   šlje_, _прст, ncr_,\n  { {0x6023008b, 0x9f88000c, 0xaaa90164, 0x00000000}},  //   _адра, _góða_, कांक,\n  { {0x443800e7, 0x260f0061, 0x443a0068, 0x00000000}},  //   hcr_, _ठरली_, _lfp_,\n  { {0x645e28e5, 0xadba0025, 0x225d0036, 0x00000000}},  //   _odpi, _بهذا_, ówki_,\n  { {0x6d420035, 0xb5fb0010, 0x66f20089, 0x00000000}},  //   mpoa, zgás, vāka,\n  { {0x1bf20164, 0xda6f05bb, 0x00000000, 0x00000000}},  //   _अखिल_, _ия_,   ,\n  { {0x443a00f4, 0x25a60059, 0x66f20089, 0x00000000}},  //   _afp_, _šola_, tāka,\n  { {0x443a00d9, 0x6d42002d, 0xceb300b3, 0x00000000}},  //   _bfp_, npoa, דיר_,\n  { {0x66f20089, 0xf4840072, 0x61e91a7d, 0x00000000}},  //   rāka, кусн, _želo,\n  { {0xa3df0164, 0x25ad0035, 0x00000000, 0x00000000}},  //   _देश_, ţel_,   ,\n  { {0x443a0026, 0x2bb6013d, 0x32640cbc, 0x00000000}},  //   _efp_, _अपना, ктув,\n  { {0xa3df00e8, 0xb5fb0010, 0x443a0052, 0x00000000}},  // [7290] _देर_, rgás, _ffp_,\n  { {0x4395025f, 0x443a0133, 0x2fcb0025, 0x00000000}},  //   _заос, _gfp_, يباً_,\n  { {0x645506f9, 0x66c6000c, 0x00000000, 0x00000000}},  //   mazi, _bókh,   ,\n  { {0x7c3a01b5, 0xa25b009d, 0x3ea90032, 0x00000000}},  //   _aftr, _clôt, ñat_,\n  { {0xdd94007e, 0x00000000, 0x00000000, 0x00000000}},  //   кацы,   ,   ,\n  { {0x645528e6, 0xeb9903f3, 0x8b95003b, 0x00000000}},  //   nazi, зик_, ерич,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xfcd900a1, 0xa3c2013d, 0x78aa000a, 0x00000000}},  //   _کارڈ_, ्नत_, _anfv,\n  { {0x6455022b, 0x7bce010f, 0x68ef008e, 0x00000000}},  //   kazi, _übun, écdo,\n  { {0x6d590009, 0xb88101ca, 0xb4be0204, 0x00000000}},  //   mswa, _číse, _आवे_,\n  { {0x645528e7, 0x6d5928e8, 0xdcfb04eb, 0x00000000}},  //   dazi, lswa, _usuđ,\n  { {0xeaae007e, 0x7ac400a8, 0x443a1ad1, 0x00000000}},  //   _ёй_, _исче, _sfp_,\n  { {0x6d5901b5, 0x64550197, 0x6aab0026, 0x00000000}},  //   nswa, fazi, _ingf,\n  { {0xbebd010a, 0x6d590022, 0x2bb6007d, 0x00000000}},  //   _siūl, iswa, _अपमा,\n  { {0x638300ed, 0x443a0026, 0x777a0009, 0x00000000}},  //   лгра, _vfp_, cttx,\n  { {0x44380061, 0x6d590c23, 0x3d16013d, 0x00000000}},  //   scr_, kswa, _पीने_,\n  { {0x6455002d, 0xe1ff0051, 0x443a0203, 0x00000000}},  // [72a0] bazi, _scór_, _tfp_,\n  { {0x64550198, 0xc05901fb, 0x6d590168, 0x00000000}},  //   cazi, дії_, dswa,\n  { {0x9e660d5e, 0xb4cc0309, 0x6d5900d9, 0x00000000}},  //   евед, लसी_, eswa,\n  { {0x4816007b, 0x66c6000c, 0xddc000b9, 0x00000000}},  //   ײַבן_, _bóki, _zemř,\n  { {0x6da3017a, 0x1d0a0918, 0xfce601bd, 0x00000000}},  //   лица, педи_, нодо,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7ac6007c, 0x6d420288, 0x9b260d51, 0x00000000}},  //   еспе, spoa, нфил,\n  { {0x6455022b, 0x3192000a, 0x00000000, 0x00000000}},  //   zazi, _kņz_,   ,\n  { {0x4c860175, 0x6455013f, 0x6d5900e7, 0x00000000}},  //   _плав, yazi, cswa,\n  { {0xeb9a01f9, 0xa3c2006e, 0xd7fa003b, 0x00000000}},  //   _низ_, ्ना_, зум_,\n  { {0x6455086f, 0xa3df013d, 0x2cac1d08, 0x00000000}},  //   vazi, _दें_, _indd_,\n  { {0x6455000b, 0x569402d3, 0x212a0048, 0x00000000}},  //   wazi, гают, _libh_,\n  { {0x645528e9, 0x7ae2016e, 0xc6090044, 0x00000000}},  //   tazi, _imot, রেনা_,\n  { {0xab64010f, 0xdce20161, 0x7ae20161, 0x00000000}},  //   _grüß, kroč, _hmot,\n  { {0x645528ea, 0xa7370025, 0x291e000c, 0x00000000}},  //   razi, _كثير_, mmta_,\n  { {0xdce201d9, 0x6455117a, 0x290c0039, 0x00000000}},  //   droč, sazi, llda_,\n  { {0x645528dc, 0x69d6014a, 0x00000000, 0x00000000}},  // [72b0] pazi, _üyed,   ,\n  { {0xdce9002b, 0x656f00b4, 0x00000000, 0x00000000}},  //   _iseħ, much,   ,\n  { {0x656f28eb, 0x61ea006b, 0x6d440035, 0x00000000}},  //   luch, _əllə, ţial,\n  { {0x6d590007, 0xf412009b, 0x8f34007e, 0x00000000}},  //   tswa, _כפי_, уецц,\n  { {0x657d01e5, 0x224904cb, 0x656f1238, 0x00000000}},  //   ntsh, mbak_, nuch,\n  { {0x6d591915, 0x22490bca, 0x290c012d, 0x00000000}},  //   rswa, lbak_, jlda_,\n  { {0x6d59002b, 0x09c9001c, 0x643c0049, 0x00000000}},  //   sswa, िन्य, לעגנ,\n  { {0x656f1af8, 0xeab10025, 0x2249162d, 0x00000000}},  //   kuch, شعب_, nbak_,\n  { {0x61e910f7, 0x656f28ec, 0x3ead0142, 0x00000000}},  //   _želj, juch, _inet_,\n  { {0x656f0428, 0xa3d1007d, 0x4d98007e, 0x00000000}},  //   duch, वना_, _якую_,\n  { {0x3ebf1993, 0x3a75005e, 0x366a0088, 0x00000000}},  //   _kout_, _алер, мано_,\n  { {0xdb01009d, 0x656f2839, 0x7ae20087, 0x00000000}},  //   _orlé, fuch, _gmot,\n  { {0x3ead01d6, 0x3ebf28ed, 0x63a50146, 0x00000000}},  //   _mnet_, _mout_, _arhn,\n  { {0x7d0328ee, 0x7ae20059, 0x00000000, 0x00000000}},  //   nons, _zmot,   ,\n  { {0xe7b2007a, 0x3ead0036, 0x31690032, 0x00000000}},  //   _نمود, _onet_, eraz_,\n  { {0x656f0b77, 0x212a131d, 0x7d030883, 0x00000000}},  //   buch, _sibh_, hons,\n  { {0x656f0211, 0x657d0541, 0x00000000, 0x00000000}},  // [72c0] cuch, ctsh,   ,\n  { {0x3ebf00f4, 0x7d030056, 0xe0431fd9, 0x00000000}},  //   _aout_, jons, инуи,\n  { {0x7d0311b7, 0x3ebf023f, 0xa3df0204, 0x00000000}},  //   dons, _bout_, _देऊ_,\n  { {0xcfa90054, 0x3ebf009d, 0x3ead00ab, 0x00000000}},  //   عالم_, _cout_, _cnet_,\n  { {0x7d0328ef, 0x290701ca, 0x3ebf01aa, 0x00000000}},  //   fons, _okna_, _dout_,\n  { {0x7d030039, 0x50430072, 0xdce2007f, 0x00000000}},  //   gons, _верб, proč,\n  { {0x3ebf0168, 0x656f0036, 0xc0e3030d, 0x00000000}},  //   _fout_, zuch, _торк,\n  { {0x3ebf0e6d, 0x497400ed, 0xb9980793, 0x00000000}},  //   _gout_, глис, евих_,\n  { {0x0d77007a, 0xeef5008b, 0xc878014a, 0x00000000}},  //   _لینک_, _сярэ, liği_,\n  { {0x52bf02d2, 0x1be303d7, 0x656f012d, 0x00000000}},  //   _एक्स, _केवल_, vuch,\n  { {0x656f010f, 0xc878014a, 0xdb1800b0, 0x00000000}},  //   wuch, niği_, tyvä,\n  { {0x7ae20107, 0x656f008e, 0x7c270010, 0x00000000}},  //   _umot, tuch, _újra,\n  { {0xb8960025, 0x656f004a, 0xd90f009e, 0x00000000}},  //   _للشع, uuch, _ڈیٹ_,\n  { {0x657d0c53, 0x656f0046, 0xdb1800b0, 0x00000000}},  //   rtsh, ruch, syvä,\n  { {0x656f001f, 0x68e802ae, 0x657d281b, 0x00000000}},  //   such, midd, stsh,\n  { {0x63a50627, 0xc878011f, 0x656f008e, 0x00000000}},  //   _vrhn, diği_, puch,\n  { {0x3ebf01aa, 0x7d030b5a, 0x22490032, 0x00000000}},  // [72d0] _rout_, yons, rbak_,\n  { {0x316928f0, 0x3ebf0007, 0x660d0058, 0x00000000}},  //   rraz_, _sout_, _iyak,\n  { {0x3ebf0173, 0x7d03016e, 0x672d00e7, 0x00000000}},  //   _pout_, vons, _kiaj,\n  { {0x660d0022, 0x68e80b1e, 0x672d0066, 0x00000000}},  //   _kyak, hidd, _jiaj,\n  { {0x68e801f3, 0xadbc0088, 0x629d1762, 0x00000000}},  //   kidd, мацi, _iaso,\n  { {0x3ebf0263, 0x629d0047, 0x660d0117, 0x00000000}},  //   _wout_, _haso, _myak,\n  { {0x3ebf11aa, 0x629d1de7, 0x7d0328f1, 0x00000000}},  //   _tout_, _kaso, rons,\n  { {0x629d022b, 0x7d03010f, 0x1a650014, 0x00000000}},  //   _jaso, sons, ایشی_,\n  { {0x7d03028c, 0x660d28f2, 0x629d000b, 0x00000000}},  //   pons, _nyak, _maso,\n  { {0x629d0225, 0x26d90023, 0xe8f6007c, 0x00000000}},  //   _laso, ëron_, ллы_,\n  { {0x660d014a, 0x28d9006e, 0xab940088, 0x00000000}},  //   _ayak, योगि, _вихі,\n  { {0x660d0009, 0x9666007e, 0x00000000, 0x00000000}},  //   _byak, ыкме,   ,\n  { {0x7ae90142, 0x68e8071b, 0xa9790049, 0x00000000}},  //   miet, bidd, _נאַכ,\n  { {0x7ae90ebc, 0x6abb0e0d, 0x660d0c2d, 0x00000000}},  //   liet, ljuf, _dyak,\n  { {0x629d002d, 0x999d0066, 0x660d0045, 0x00000000}},  //   _baso, _lewż_, _eyak,\n  { {0x629d0325, 0xe2970269, 0x7ae91903, 0x00000000}},  //   _caso, лас_, niet,\n  { {0x660d0047, 0x21670407, 0x98a70107, 0x00000000}},  // [72e0] _gyak, лити_, _linč_,\n  { {0x7ae9184e, 0x2905002d, 0xc878014a, 0x00000000}},  //   hiet, nola_, tiği_,\n  { {0x7ae91669, 0x629d0263, 0x2be30061, 0x00000000}},  //   kiet, _faso, _केलं_,\n  { {0x629d0263, 0x2905066e, 0xc878014a, 0x00000000}},  //   _gaso, hola_, riği_,\n  { {0x2905022b, 0x7ae9117a, 0x00000000, 0x00000000}},  //   kola_, diet,   ,\n  { {0x628428f3, 0x629d0036, 0x2f1500f8, 0x00000000}},  //   lfio, _zaso, råga_,\n  { {0x290528f4, 0x629d0dfc, 0x7ae900b5, 0x00000000}},  //   dola_, _yaso, fiet,\n  { {0x61e902aa, 0xa3bc0061, 0x5a340893, 0x00000000}},  //   _želi, _आपन_, шнит,\n  { {0x62840016, 0x2bb60164, 0x6da302ea, 0x00000000}},  //   ifio, _अपवा, _лита,\n  { {0x660d0009, 0x00000000, 0x00000000, 0x00000000}},  //   _ryak,   ,   ,\n  { {0x7ae928f5, 0xbec2008d, 0x68e80479, 0x00000000}},  //   biet, _çësh, ridd,\n  { {0x68e823fb, 0x69c901d6, 0x00000000, 0x00000000}},  //   sidd, byee,   ,\n  { {0x672d201f, 0x29050142, 0x00000000, 0x00000000}},  //   _viaj, bola_,   ,\n  { {0x290506c0, 0x660d0020, 0x629d002d, 0x00000000}},  //   cola_, _vyak, _saso,\n  { {0x629d28f6, 0xa3df02d2, 0xb2ab0364, 0x00000000}},  //   _paso, _देख_, нтаж_,\n  { {0x660d00e0, 0x00000000, 0x00000000, 0x00000000}},  //   _tyak,   ,   ,\n  { {0x629d01ee, 0xdcfb0091, 0xf1bf0082, 0x00000000}},  // [72f0] _vaso, _upuć, _ngát_,\n  { {0x629d0020, 0x7ae9002d, 0x25a90058, 0x00000000}},  //   _waso, ziet, _iral_,\n  { {0x629d00b0, 0x8e55007e, 0x7a2b01df, 0x00000000}},  //   _taso, атлі, _kötü,\n  { {0x29050032, 0xa2830014, 0x25a9005a, 0x00000000}},  //   zola_, _دیرو, _kral_,\n  { {0x7ae9001e, 0xe80b013d, 0x4e7803d6, 0x00000000}},  //   viet, _सुना_, احمد_,\n  { {0x7ae90036, 0xdca500ed, 0x98a70d0a, 0x00000000}},  //   wiet, раки, _pinč_,\n  { {0x7ae9021e, 0x273a008d, 0x29050207, 0x00000000}},  //   tiet, _nën_, vola_,\n  { {0x6457049a, 0x69db022b, 0x2bb6006e, 0x00000000}},  //   _lexi, tzue, _अपरा,\n  { {0x7ae9022b, 0xe8f9003b, 0xc8b50783, 0x00000000}},  //   riet, кли_, асны,\n  { {0x273a0065, 0x69db00dd, 0x64570387, 0x00000000}},  //   _bën_, rzue, _nexi,\n  { {0x290504f4, 0x7ae9082f, 0x25a9011c, 0x00000000}},  //   rola_, piet, _aral_,\n  { {0x290528dc, 0x0656007e, 0x3f810016, 0x00000000}},  //   sola_, штоў, ithu_,\n  { {0x29051144, 0x66f20089, 0x25a90026, 0x00000000}},  //   pola_, nāki, _cral_,\n  { {0xccf2007b, 0x20f4007d, 0x395f28f7, 0x00000000}},  //   ַכן_, _आदेश_, msus_,\n  { {0x4256007c, 0x395f04fe, 0xe29f000c, 0x00000000}},  //   итат, lsus_, _bað_,\n  { {0x7a2b038c, 0xd7fa009b, 0xddd90173, 0x00000000}},  //   _götü, _בהצל, pawň,\n  { {0xe2970174, 0x00e61deb, 0x62840016, 0x00000000}},  // [7300] шат_, ажан, rfio,\n  { {0xe0d7012b, 0xe3e700a1, 0x66c6000c, 0x00000000}},  //   аву_, اکین_, _tóks,\n  { {0x6e4600a2, 0x00000000, 0x00000000, 0x00000000}},  //   لنام,   ,   ,\n  { {0x645c28f8, 0x395f23fc, 0xe0df000a, 0x00000000}},  //   lari, ksus_, _bwòs_,\n  { {0x81e40055, 0xe29709b2, 0x3a3f0082, 0x00000000}},  //   _পুর_, _тая_, dcup_,\n  { {0x645c1902, 0x395f0515, 0x7b6619d4, 0x00000000}},  //   nari, dsus_, атие,\n  { {0x3160019a, 0x645c24ba, 0x7e7b00d9, 0x00000000}},  //   lsiz_, iari, _fcup,\n  { {0x645c28f9, 0x09e70055, 0x8f9b00a3, 0x00000000}},  //   hari, _পড়া, _בילי,\n  { {0x645c022b, 0xee0a00ed, 0x3160005a, 0x00000000}},  //   kari, _реал_, nsiz_,\n  { {0x645c000b, 0x28a602d2, 0x97a600a5, 0x00000000}},  //   jari, _कोशि, армл,\n  { {0x6457049a, 0x1037009b, 0xb03701ce, 0x00000000}},  //   _rexi, יטים_, יניג_,\n  { {0x25a90263, 0x645728fa, 0x28a6006e, 0x00000000}},  //   _pral_, _sexi, _कोरि,\n  { {0x645c1742, 0xe5c4004d, 0x00000000, 0x00000000}},  //   fari, осро,   ,\n  { {0x645c28fb, 0x316028fc, 0x00000000, 0x00000000}},  //   gari, dsiz_,   ,\n  { {0xa3bc001c, 0x64570068, 0xd6db10d6, 0x00000000}},  //   _आपण_, _vexi, _атп_,\n  { {0x66e400ed, 0x39460036, 0x25a9012d, 0x00000000}},  //   _моја, _ktos_, _tral_,\n  { {0x645c28fd, 0x765d1dbf, 0x645728fe, 0x00000000}},  // [7310] bari, masy, _texi,\n  { {0x645c0412, 0x765d28ff, 0x449907ca, 0x00000000}},  //   cari, lasy, _свою_,\n  { {0x2fc70c51, 0x2d8d0270, 0x92950839, 0x00000000}},  //   âng_, _spee_, _ланц,\n  { {0x765d2900, 0x3f81018e, 0x39462901, 0x00000000}},  //   nasy, rthu_, _otos_,\n  { {0x8c450113, 0x6da501fb, 0x395f006b, 0x00000000}},  //   беле, сила, xsus_,\n  { {0x66f20089, 0x395f006c, 0x765d0d25, 0x00000000}},  //   rāki, vsus_, hasy,\n  { {0x765d0d5f, 0x39460181, 0x225921af, 0x00000000}},  //   kasy, _atos_, _kesk_,\n  { {0x2139008d, 0x645c04f4, 0x395f0004, 0x00000000}},  //   _kush_, zari, tsus_,\n  { {0x645c006a, 0xf9910054, 0x765d0f99, 0x00000000}},  //   yari, سبة_, dasy,\n  { {0x395f0127, 0x71d800b6, 0x645c0ddd, 0x00000000}},  //   rsus_, יוחד_, xari,\n  { {0x395f00f4, 0x39461ad9, 0x69d6014a, 0x00000000}},  //   ssus_, _etos_, _üyen,\n  { {0x765d28ff, 0x2b810024, 0x6d4b0b38, 0x00000000}},  //   gasy, móc_, opga,\n  { {0xa96900e3, 0x21390035, 0x00000000, 0x00000000}},  //   _сила_, _nush_,   ,\n  { {0x2ed40164, 0xdb082902, 0x984b01ab, 0x00000000}},  //   _दत्त, _ardè, _ряда_,\n  { {0x656f2903, 0x4adb0061, 0x00000000, 0x00000000}},  //   arch, _बताव,   ,\n  { {0x645c0682, 0x31602904, 0x3d09001c, 0x00000000}},  //   sari, tsiz_, ाकडे_,\n  { {0x645c114e, 0x806601e1, 0x22590133, 0x00000000}},  // [7320] pari, йваж, _desk_,\n  { {0x31600279, 0x21390023, 0x00000000, 0x00000000}},  //   rsiz_, _dush_,   ,\n  { {0x44440038, 0xbbb60164, 0x3160005d, 0x00000000}},  //   _if_, _अपेक, ssiz_,\n  { {0x4444000c, 0xe8e0001d, 0xa77a0049, 0x00000000}},  //   _hf_, _thủy_, טרעפ,\n  { {0x2cea0057, 0x62962905, 0x63f70bb6, 0x00000000}},  //   лько_, meyo, _نفیس_,\n  { {0x44441a20, 0x3ea00224, 0x765d0d5b, 0x00000000}},  //   _jf_, žit_, zasy,\n  { {0x444405d2, 0x765d0263, 0x00000000, 0x00000000}},  //   _mf_, yasy,   ,\n  { {0x656f018e, 0x3946004a, 0xcff70097, 0x00000000}},  //   yrch, _ptos_, _הצלה_,\n  { {0x44442735, 0x765d04cd, 0x66f2001e, 0x00000000}},  //   _of_, vasy, nāku,\n  { {0xdd8f007a, 0xf1b3009b, 0x656f0161, 0x00000000}},  //   _سوم_, פסת_, vrch,\n  { {0x765d2081, 0xa3e802f4, 0x48a70147, 0x00000000}},  //   tasy, _मेल_, стым_,\n  { {0x44442906, 0x7d0a2907, 0x4b370104, 0x00000000}},  //   _af_, lofs, _הראל_,\n  { {0x765d0263, 0x44442908, 0x62960173, 0x00000000}},  //   rasy, _bf_, deyo,\n  { {0x98a30057, 0x44442909, 0x765d290a, 0x00000000}},  //   _ниче, _cf_, sasy,\n  { {0x44440810, 0x765d130b, 0xdceb0035, 0x00000000}},  //   _df_, pasy, lugă,\n  { {0x4444009f, 0x213900ab, 0x7d0a01a2, 0x00000000}},  //   _ef_, _push_, hofs,\n  { {0x4444001c, 0x6aa20020, 0x00000000, 0x00000000}},  // [7330] _ff_, _maof,   ,\n  { {0x92e90044, 0x88bc013e, 0x00000000, 0x00000000}},  //   মকে_, změn,   ,\n  { {0x623500ed, 0x6296042a, 0xdb080010, 0x00000000}},  //   _мену, beyo, _erdé,\n  { {0x4444001a, 0xe0df01aa, 0x6aa20051, 0x00000000}},  //   _zf_, _ewòp_, _naof,\n  { {0xa69c0049, 0x00000000, 0x00000000, 0x00000000}},  //   טשאפ,   ,   ,\n  { {0x1b490f6f, 0x4f5b0380, 0x00000000, 0x00000000}},  //   азки_, _مجرد_,   ,\n  { {0xfd100076, 0xdb090161, 0x00000000, 0x00000000}},  //   رجه_, žníc,   ,\n  { {0xcf9200b3, 0x6d4b0056, 0x66f20089, 0x00000000}},  //   _קטן_, ppga, nākt,\n  { {0x69d6011f, 0x7e6900e0, 0x60c7016c, 0x00000000}},  //   _üyel, _idep, _kojm,\n  { {0x186901fc, 0x6f0b0d4d, 0xe6c50091, 0x00000000}},  //   јани_, logc, _češć,\n  { {0xa3e803d7, 0xb8d1007d, 0x6d44001a, 0x00000000}},  //   _में_, _ऑफ_, ţiat,\n  { {0x44441dd4, 0x60c71338, 0xd62a0175, 0x00000000}},  //   _sf_, _lojm, ионе_,\n  { {0x4444285a, 0x7aeb0009, 0xdd0e005d, 0x00000000}},  //   _pf_, _imgt, nışl,\n  { {0x4444290b, 0x394d1923, 0xf7710014, 0x00000000}},  //   _qf_, mpes_, _قاب_,\n  { {0x394d008e, 0x6296290c, 0xd3720379, 0x00000000}},  //   lpes_, teyo, ظهر_,\n  { {0x8c3c005a, 0x25b50211, 0x7d0a0ecc, 0x00000000}},  //   _mağa, ñaló_, zofs,\n  { {0x64a6008b, 0x444400f4, 0xe0df01aa, 0x00000000}},  // [7340] _дапа, _tf_, _pwòp_,\n  { {0x78a3290d, 0x44440181, 0x0ef4013d, 0x00000000}},  //   _janv, _uf_, ेक्स_,\n  { {0xee3a0017, 0x66f2001e, 0x60c7040d, 0x00000000}},  //   ане_, sāku, _dojm,\n  { {0x78a30173, 0x2fc70039, 0x2498000a, 0x00000000}},  //   _lanv, änga_, lerm_,\n  { {0xe0df01aa, 0x226500b9, 0x26d90065, 0x00000000}},  //   _twòp_, řský_, ëroi_,\n  { {0x6d49002a, 0xdb6a10a9, 0xafe60088, 0x00000000}},  //   _dtea, арил_, _догл,\n  { {0xdfd20379, 0x66f20089, 0x3f671867, 0x00000000}},  //   _غير_, nāks, _миро_,\n  { {0x78a3049b, 0x249800b5, 0x7d0a0521, 0x00000000}},  //   _aanv, herm_, sofs,\n  { {0xdb2400a1, 0xfe4500a1, 0x78a3074d, 0x00000000}},  //   _ہوئی, _رکنی, _banv,\n  { {0x236501d9, 0x320f0010, 0x3982000c, 0x00000000}},  //   šlji_, ügyi_, rðs_,\n  { {0x2a66005e, 0x24980253, 0xc7b00025, 0x00000000}},  //   _дълг, derm_, رّح_,\n  { {0x3ea61892, 0xd6d90036, 0x3ea400ea, 0x00000000}},  //   ndot_, ół_, _jamt_,\n  { {0x2d860007, 0xdb010051, 0x26070088, 0x00000000}},  //   ntoe_, _urlá, ючог,\n  { {0x3ea600b0, 0x98a70035, 0x8c3c0276, 0x00000000}},  //   hdot_, _vină_, _yağa,\n  { {0xd25b0216, 0x92c704f1, 0xf2c701ee, 0x00000000}},  //   ица_, ощад, осан,\n  { {0x290c22ec, 0xdd0e0279, 0x236d290e, 0x00000000}},  //   loda_, yışl, čej_,\n  { {0x78a3005f, 0xdd0e006b, 0x39490023, 0x00000000}},  // [7350] _yanv, xışl, _çast_,\n  { {0xd25000a1, 0x66f20089, 0x3ea6290f, 0x00000000}},  //   ٹنے_, sākt, edot_,\n  { {0x3ea40061, 0x6d490e5f, 0xa6c8025a, 0x00000000}},  //   _bamt_, _stea, _طویل_,\n  { {0x394d020f, 0x539a0104, 0x290c0161, 0x00000000}},  //   ypes_, _פירו, hoda_,\n  { {0x290c2910, 0xdd9b0088, 0x867c009b, 0x00000000}},  //   koda_, рше_, שרדו,\n  { {0xdd0e02b9, 0xece80088, 0x33290387, 0x00000000}},  //   rışl, оділ_, lmax_,\n  { {0x78a31129, 0x600800a5, 0x33290146, 0x00000000}},  //   _ranv, _днём_, omax_,\n  { {0x78a30173, 0x93fc009b, 0x332902d4, 0x00000000}},  //   _sanv, ילוי, nmax_,\n  { {0x394d00f4, 0x7c870679, 0x9915007e, 0x00000000}},  //   upes_, _муже, зьні,\n  { {0x290c1091, 0xdea300a1, 0xedb403ab, 0x00000000}},  //   goda_, _ریڈی, _تحفظ,\n  { {0x78a30190, 0x394d2911, 0x9f4500b0, 0x00000000}},  //   _vanv, spes_, _älä_,\n  { {0x394d006c, 0x2ca500ea, 0x78a301c3, 0x00000000}},  //   ppes_, _hald_, _wanv,\n  { {0x78a3013e, 0x2ca5068f, 0xe0df0173, 0x00000000}},  //   _tanv, _kald_, _atòm_,\n  { {0x290c00d4, 0x628f1dff, 0x26c2012d, 0x00000000}},  //   coda_, _abco, sjko_,\n  { {0x628f0059, 0xe8d60097, 0x2ca52912, 0x00000000}},  //   _bbco, _מוסר_, _mald_,\n  { {0xb1460407, 0x7afb0836, 0x33290146, 0x00000000}},  //   знал, nnut, gmax_,\n  { {0x3ea40030, 0x867b009b, 0x24980023, 0x00000000}},  // [7360] _ramt_, _הרפו, perm_,\n  { {0x3ea42161, 0x7afb0027, 0x628f0009, 0x00000000}},  //   _samt_, hnut, _ebco,\n  { {0x7afb2913, 0x645e001e, 0x443a0acd, 0x00000000}},  //   knut, _iepi, _igp_,\n  { {0x645e014a, 0x290c016e, 0x628f0146, 0x00000000}},  //   _hepi, zoda_, _gbco,\n  { {0x7afb0428, 0x3ea60089, 0x1ea90379, 0x00000000}},  //   dnut, rdot_, تالي_,\n  { {0xeaf6007d, 0x645e1c70, 0x2d8601b5, 0x00000000}},  //   ुक्त_, _jepi, rtoe_,\n  { {0x290c00ee, 0x443a2914, 0x2d8601d6, 0x00000000}},  //   voda_, _mgp_, stoe_,\n  { {0x645e2915, 0x7afb0091, 0x2d8602c2, 0x00000000}},  //   _lepi, gnut, ptoe_,\n  { {0x2ca50030, 0x3cec0082, 0x00000000, 0x00000000}},  //   _fald_, _tmdv_,   ,\n  { {0x81ae08b7, 0x645e001e, 0x6fb3026c, 0x00000000}},  //   _কথা_, _nepi, _تمہا,\n  { {0x290c016c, 0x7afb0802, 0xd7f7007c, 0x00000000}},  //   roda_, bnut, зуя_,\n  { {0xd6db0517, 0x290c0b2e, 0x6724016c, 0x00000000}},  //   сто_, soda_, _chij,\n  { {0x290c00ea, 0x443a016b, 0x645e1555, 0x00000000}},  //   poda_, _bgp_, _bepi,\n  { {0x2937007b, 0x645e097c, 0x61e40871, 0x00000000}},  //   _זאגן_, _cepi, dzil,\n  { {0x645e2916, 0x026b007e, 0x7e622917, 0x00000000}},  //   _depi, йшай_, kaop,\n  { {0x3817019b, 0x443a260d, 0xba3d00b9, 0x00000000}},  //   _מקום_, _egp_, jdůl,\n  { {0x33290846, 0x3ced013d, 0xf1940194, 0x00000000}},  // [7370] rmax_, _अगले_, нить,\n  { {0x645e00bb, 0x7afb0253, 0x7c3a00e0, 0x00000000}},  //   _gepi, znut, _ngtr,\n  { {0x7afb164f, 0xdb08004a, 0x00000000, 0x00000000}},  //   ynut, _ardí,   ,\n  { {0xf4030044, 0x645e2918, 0xadf502ea, 0x00000000}},  //   _এরপর_, _zepi, мпеш,\n  { {0x64d1001c, 0xdca52488, 0x69c600b0, 0x00000000}},  //   _सकाळ, дали, äkel,\n  { {0x777a0032, 0x00000000, 0x00000000, 0x00000000}},  //   kutx,   ,   ,\n  { {0x7afb0142, 0x2ca50cfd, 0x78690010, 0x00000000}},  //   tnut, _vald_, _jövő,\n  { {0xe9d90d99, 0x612200f4, 0x2ca5010f, 0x00000000}},  //   жки_, rôle, _wald_,\n  { {0x7afb0091, 0x2d58007c, 0x672400d9, 0x00000000}},  //   rnut, _нить_, _rhij,\n  { {0x6f19018e, 0x67240065, 0x7afb016e, 0x00000000}},  //   llwc, _shij, snut,\n  { {0x645e01aa, 0x61e40066, 0x7afb0161, 0x00000000}},  //   _repi, zzil, pnut,\n  { {0x645e04cb, 0x443a00bb, 0x6ab4007e, 0x00000000}},  //   _sepi, _sgp_, _псіх,\n  { {0x18690113, 0x443a0107, 0x6aa900fa, 0x00000000}},  //   _дали_, _pgp_, mdef,\n  { {0x6aa90056, 0x6d5b015e, 0x2a7f2919, 0x00000000}},  //   ldef, _mwua, lgub_,\n  { {0xdc450006, 0x672400bb, 0x443a02d4, 0x00000000}},  //   jūči, _thij, _vgp_,\n  { {0x6604291a, 0x2bb60061, 0x6aa90056, 0x00000000}},  //   _txik, _अपघा, ndef,\n  { {0x8c3c038c, 0x443a0061, 0x798900bb, 0x00000000}},  // [7380] _bağl, _tgp_, ntew,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x8c3c0279, 0x130a0783, 0x6d5b0022, 0x00000000}},  //   _dağl, _мной_, _awua,\n  { {0x61e4291b, 0xf42a021e, 0xd8380087, 0x00000000}},  //   pzil, _enää_, meče_,\n  { {0x6aa910a5, 0xdd9004e8, 0x7e6208da, 0x00000000}},  //   ddef, اوت_, raop,\n  { {0x6e3b0032, 0x25ff0204, 0x00000000, 0x00000000}},  //   _egub, रपती_,   ,\n  { {0xf7670123, 0xbb470379, 0x8f750088, 0x00000000}},  //   _جا_, ولون_, _путі,\n  { {0xf96a007c, 0x6aa900ea, 0xff2401b2, 0x00000000}},  //   орой_, gdef, _سبزی,\n  { {0x79890007, 0x8c3c005a, 0x20180065, 0x00000000}},  //   gtew, _yağl, _hyri_,\n  { {0x6e3b291c, 0x7e600145, 0x41bb0049, 0x00000000}},  //   _zgub, _hemp, קציע,\n  { {0x7e6001a3, 0xd838085c, 0x2b4c0022, 0x00000000}},  //   _kemp, ječe_, _utdc_,\n  { {0x6d4000e0, 0x6aa900d4, 0xd8380e0d, 0x00000000}},  //   _kuma, cdef, deče_,\n  { {0x7e60020c, 0x6d40000b, 0x9419006b, 0x00000000}},  //   _memp, _juma, əyən_,\n  { {0x7e60042c, 0x6d400009, 0x777a05aa, 0x00000000}},  //   _lemp, _muma, putx,\n  { {0x6d40006a, 0xa295008b, 0x3d1603d7, 0x00000000}},  //   _luma, наві, _पीछे_,\n  { {0x8c3c0676, 0x9294007e, 0x6d400007, 0x00000000}},  //   _sağl, касц, _ouma,\n  { {0x6d40291d, 0x26d9010a, 0x628d0016, 0x00000000}},  // [7390] _numa, ūros_, rfao,\n  { {0x21380173, 0x6e3b005b, 0x00000000, 0x00000000}},  //   _cirh_, _sgub,   ,\n  { {0x657d0065, 0x7e600022, 0x6d400fd1, 0x00000000}},  //   lush, _bemp, _auma,\n  { {0x6d40006a, 0x7e6004cb, 0x00000000, 0x00000000}},  //   _buma, _cemp,   ,\n  { {0x6d40291e, 0x506701c0, 0xbdf80076, 0x00000000}},  //   _cuma, _отва, ورها_,\n  { {0x6d40006a, 0x00000000, 0x00000000, 0x00000000}},  //   _duma,   ,   ,\n  { {0xeb910167, 0xd6e00036, 0x6d40000a, 0x00000000}},  //   اظت_, ółki_, _euma,\n  { {0x7e600169, 0x2249291f, 0x657d1b1c, 0x00000000}},  //   _gemp, ncak_, kush,\n  { {0x6d40006a, 0x6aa90002, 0xee84007e, 0x00000000}},  //   _guma, rdef, _шыро,\n  { {0x47c5007c, 0x6aa900ea, 0x8c3c005a, 0x00000000}},  //   ебов, sdef, _yağm,\n  { {0x79890007, 0x6d402920, 0x2a7f0022, 0x00000000}},  //   stew, _zuma, pgub_,\n  { {0x657d0526, 0x6d402921, 0x7e600082, 0x00000000}},  //   fush, _yuma, _xemp,\n  { {0xd838003b, 0x58d5007c, 0x15ba007e, 0x00000000}},  //   veče_, _подт, чыны_,\n  { {0x09f6009b, 0x26d90023, 0x00000000, 0x00000000}},  //   _אמנם_, ëror_,   ,\n  { {0xd83800ca, 0x141a0025, 0x232a02dc, 0x00000000}},  //   teče_, سيرة_, зови_,\n  { {0x657d0065, 0x8c3c014a, 0x97d80025, 0x00000000}},  //   bush, _rağm, _تظهر_,\n  { {0x7e601815, 0xd335008b, 0xd8380a0f, 0x00000000}},  // [73a0] _remp, тэры, reče_,\n  { {0x6d40020c, 0xd83812ac, 0x53a600c0, 0x00000000}},  //   _ruma, seče_, _заоб,\n  { {0x6d402922, 0x7e600169, 0x00000000, 0x00000000}},  //   _suma, _pemp,   ,\n  { {0x040b001d, 0x6d40006a, 0x8c150044, 0x00000000}},  //   _lượn, _puma, াধান_,\n  { {0x13d50044, 0x00000000, 0x00000000, 0x00000000}},  //   _হইয়,   ,   ,\n  { {0x5ba60088, 0x66df0065, 0xf1bf0082, 0x00000000}},  //   ериз, _mëka, _ngáy_,\n  { {0x91030867, 0xdb080051, 0x6adb013d, 0x00000000}},  //   _спре, _ardá, बसूर,\n  { {0x6d40006a, 0xa3c10204, 0x657d21a4, 0x00000000}},  //   _tuma, ंमत_, yush,\n  { {0x2a642923, 0xb9970783, 0xd91a007e, 0x00000000}},  //   ramb_, евых_, зьн_,\n  { {0x60ce0240, 0x497307d0, 0x657d010e, 0x00000000}},  //   _jobm, ыльс, vush,\n  { {0x273a0006, 0x5cf50088, 0x040b0082, 0x00000000}},  //   _būna_, _ряту, _dượn,\n  { {0x09e600ec, 0x00000000, 0x00000000, 0x00000000}},  //   _поен,   ,   ,\n  { {0xe9730558, 0x1af7007b, 0x99d300f9, 0x00000000}},  //   _مهند, _אמאל_, _متوا,\n  { {0x657d0020, 0x321923d9, 0x040b0082, 0x00000000}},  //   rush, _rysy_, _gượn,\n  { {0x25bf001a, 0x657d0023, 0xad1b009b, 0x00000000}},  //   ţul_, sush, פולר,\n  { {0x41e70099, 0x657d2924, 0x78aa00f8, 0x00000000}},  //   ніза, push, _hafv,\n  { {0x22490563, 0x60ce0544, 0x00000000, 0x00000000}},  // [73b0] rcak_, _bobm,   ,\n  { {0xd564005e, 0x1007080c, 0x00000000, 0x00000000}},  //   _стъп, няем,   ,\n  { {0xc1040025, 0x00000000, 0x00000000, 0x00000000}},  //   دولي,   ,   ,\n  { {0xd356009b, 0x51870404, 0x6122009d, 0x00000000}},  //   _שירי_, _пуга, rôla,\n  { {0x6da50175, 0xada50a78, 0x60ce0087, 0x00000000}},  //   тила, талл, _fobm,\n  { {0xd3780091, 0xeb99013b, 0x3ea90e3d, 0x00000000}},  //   šće_, дик_, žat_,\n  { {0xe810013d, 0x00000000, 0x00000000, 0x00000000}},  //   _ठुला_,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xceb201f8, 0xf400001a, 0x2f1500f8, 0x00000000}},  //   _דין_, ăţii_, sågs_,\n  { {0xa3c30164, 0xadf42925, 0x2903010e, 0x00000000}},  //   ्हा_, _спуш, õja_,\n  { {0x040b0082, 0x395d0009, 0x66e601a4, 0x00000000}},  //   _vượn, _wwws_, вона,\n  { {0x6134006b, 0x00000000, 0x00000000, 0x00000000}},  //   rülə,   ,   ,\n  { {0x040b001d, 0x00000000, 0x00000000, 0x00000000}},  //   _tượn,   ,   ,\n  { {0xe9d80099, 0x6aab0538, 0x64a6003b, 0x00000000}},  //   _які_, _hagf, њава,\n  { {0x398b0637, 0x6386005e, 0x07a502dc, 0x00000000}},  //   løs_, ъгва, _райн,\n  { {0x06f6007a, 0x00000000, 0x00000000, 0x00000000}},  //   _جستج,   ,   ,\n  { {0xa5260a85, 0xd132009e, 0x00000000, 0x00000000}},  // [73c0] _имид, لمر_,   ,\n  { {0x9ffa03ab, 0x6aab1fbc, 0x00000000, 0x00000000}},  //   وراء_, _lagf,   ,\n  { {0xb4790049, 0x9e660131, 0xdd1c0142, 0x00000000}},  //   _אָרי, введ, _nášh,\n  { {0xde76009e, 0x00000000, 0x00000000, 0x00000000}},  //   ئداع,   ,   ,\n  { {0xdcfb0066, 0x5de602dc, 0xcd2a03ec, 0x00000000}},  //   _ssuġ, ъжда, وستن_,\n  { {0x62840026, 0x2b5e0145, 0x00000000, 0x00000000}},  //   lgio, _pwtc_,   ,\n  { {0x6aab0190, 0x8bc3005e, 0x00000000, 0x00000000}},  //   _bagf, исъд,   ,\n  { {0x62840207, 0x2b550014, 0xbdc600a1, 0x00000000}},  //   ngio, ایند_, _لگتے_,\n  { {0xbd8a007a, 0x6da30069, 0xd8380e0d, 0x00000000}},  //   _زنان_, _кита, deča_,\n  { {0xd7fa00ed, 0x6f0207e4, 0x2ee61955, 0x00000000}},  //   дум_, lnoc, lhof_,\n  { {0x473501e0, 0x88bc00b9, 0x6aab2926, 0x00000000}},  //   лнос, dmět, _fagf,\n  { {0x6f02010f, 0x2cac12d3, 0x2ee6059b, 0x00000000}},  //   nnoc, _hadd_, nhof_,\n  { {0xd90e026c, 0xe8940230, 0x6f02004a, 0x00000000}},  //   _ویب_, _баль, inoc,\n  { {0x6f0200e5, 0x7ae201e5, 0x00000000, 0x00000000}},  //   hnoc, _hlot,   ,\n  { {0x7ae200f8, 0x629f006b, 0x24180a78, 0x00000000}},  //   _klot, teqo, воры_,\n  { {0x62840198, 0xf837009b, 0x291e2927, 0x00000000}},  //   ggio, _בנות_, llta_,\n  { {0x6f020224, 0xc1050025, 0x291e1610, 0x00000000}},  // [73d0] dnoc, هوري, olta_,\n  { {0x7ae22928, 0x273b0006, 0x6b9a0009, 0x00000000}},  //   _llot, _kūno_, _optg,\n  { {0xa3d500ed, 0x291e00b0, 0xdce2016c, 0x00000000}},  //   _сонч, ilta_, jrođ,\n  { {0x8f140245, 0x612b006c, 0x6f020638, 0x00000000}},  //   афіч, külg, gnoc,\n  { {0x6aab2929, 0x00000000, 0x00000000, 0x00000000}},  //   _ragf,   ,   ,\n  { {0x6aab292a, 0x7ae20052, 0x5f4500a1, 0x00000000}},  //   _sagf, _alot, _منسل,\n  { {0x7ae20039, 0x7c840a27, 0xeb990131, 0x00000000}},  //   _blot, руче, хий_,\n  { {0x7ae200ab, 0x6f020197, 0x798000e7, 0x00000000}},  //   _clot, cnoc, fumw,\n  { {0xa91d00b9, 0x7c940014, 0x3f8100e7, 0x00000000}},  //   huže, _چشما, luhu_,\n  { {0x7ae2077b, 0x2cac0203, 0x88bc013e, 0x00000000}},  //   _elot, _gadd_, dměs,\n  { {0x7ae203b4, 0x25a90149, 0x3ebf0056, 0x00000000}},  //   _flot, _asal_, _knut_,\n  { {0x291e292b, 0xa6830242, 0x7ae201e5, 0x00000000}},  //   alta_, блюд, _glot,\n  { {0x3f8101a3, 0x55f60a7c, 0x00000000, 0x00000000}},  //   huhu_, учну,   ,\n  { {0x7ae20036, 0x3b1f006b, 0xd83800ca, 0x00000000}},  //   _zlot, lluq_, seča_,\n  { {0xe29a00ed, 0x7d03292c, 0x78a1292d, 0x00000000}},  //   нав_, inns, melv,\n  { {0x42550088, 0x3b1f006b, 0xe355007e, 0x00000000}},  //   итут, nluq_, ртрэ,\n  { {0x612b0010, 0x62841944, 0x42261606, 0x00000000}},  // [73e0] küld, rgio, удав,\n  { {0x78a100ea, 0xa91d0059, 0x26d2008e, 0x00000000}},  //   nelv, lužb, _hoyo_,\n  { {0x645c292e, 0x6f0201ee, 0x26d2292f, 0x00000000}},  //   mbri, tnoc, _koyo_,\n  { {0x645c2930, 0x79800009, 0x2cac0026, 0x00000000}},  //   lbri, yumw, _sadd_,\n  { {0x26d20020, 0x80c40164, 0x6f020f73, 0x00000000}},  //   _moyo_, रादे, rnoc,\n  { {0x2ee6021f, 0x33200066, 0x7bd80006, 0x00000000}},  //   shof_, llix_, tyvu,\n  { {0x645c0051, 0xafe60423, 0x2d8f0129, 0x00000000}},  //   ibri, _совл, atge_,\n  { {0x4974005c, 0x79800cd1, 0x5fbb009b, 0x00000000}},  //   алис, tumw, _אצלנ,\n  { {0xdce90059, 0xa91d0521, 0x7ae22931, 0x00000000}},  //   _zveč, dužb, _vlot,\n  { {0x78a10479, 0x645c0190, 0x25a90022, 0x00000000}},  //   gelv, jbri, _rsal_,\n  { {0x645c0030, 0x26d2000a, 0x06ae0044, 0x00000000}},  //   dbri, _boyo_, গানি,\n  { {0x7c282932, 0x7c25010f, 0x7ae20639, 0x00000000}},  //   _izdr, ühre, _ulot,\n  { {0x78a101d6, 0x612b18cf, 0xab630036, 0x00000000}},  //   belv, lüle, ążen,\n  { {0x645c01d6, 0xa91d0091, 0x26c021b8, 0x00000000}},  //   gbri, tuže, _enio_,\n  { {0x24190783, 0x612b014a, 0x69c600ea, 0x00000000}},  //   товы_, nüle, åkef,\n  { {0xddc00224, 0x45d5034b, 0x26d2004a, 0x00000000}},  //   _nemů, _воис, _goyo_,\n  { {0xdce9010a, 0x645c1a64, 0x50f50e09, 0x00000000}},  // [73f0] _sveč, bbri, азат,\n  { {0x656f059b, 0xd3780166, 0x7c28016e, 0x00000000}},  //   msch, šća_, _ozdr,\n  { {0x9295008b, 0x656f059b, 0x3ead006c, 0x00000000}},  //   _канц, lsch, _paet_,\n  { {0x7d1a006c, 0xde95012b, 0x628a0010, 0x00000000}},  //   _akts, радњ, őfor,\n  { {0x656f001f, 0x9e640088, 0x78a10010, 0x00000000}},  //   nsch, свід, yelv,\n  { {0x656f010f, 0x88bc00b9, 0x61ed2174, 0x00000000}},  //   isch, změr, mzal,\n  { {0xdce905fa, 0x656f010f, 0xa2dc013d, 0x00000000}},  //   _uveč, hsch, _नवम्,\n  { {0x656f054e, 0x645c04eb, 0x657d012d, 0x00000000}},  //   ksch, zbri, krsh,\n  { {0x9c87006d, 0x61ed2352, 0x26d21fb8, 0x00000000}},  //   _مشاه, nzal, _royo_,\n  { {0x656f07eb, 0xf7710025, 0x7e6b0058, 0x00000000}},  //   dsch, ياج_, lagp,\n  { {0x672d0e9e, 0x656f0253, 0x78a12933, 0x00000000}},  //   _bhaj, esch, relv,\n  { {0x6b830169, 0x672d01aa, 0x656f059b, 0x00000000}},  //   mung, _chaj, fsch,\n  { {0x6b83146c, 0x7ae901c9, 0x9583007c, 0x00000000}},  //   lung, mhet, оляе,\n  { {0x7ae90047, 0x7afb0006, 0x88bc013e, 0x00000000}},  //   lhet, liut, směr,\n  { {0x660d0a5d, 0x26d20487, 0x645c0da6, 0x00000000}},  //   _exak, _toyo_, rbri,\n  { {0x645c049b, 0x656f010f, 0x7ae901c9, 0x00000000}},  //   sbri, bsch, nhet,\n\n  { {0x6b832934, 0x656f0173, 0x612b0148, 0x00000000}},  // [7400] hung, csch, züle,\n  { {0x6b830390, 0x7f470065, 0x6f1b012d, 0x00000000}},  //   kung, _bujq, _akuc,\n  { {0x6b83010a, 0x44440010, 0x6f090283, 0x00000000}},  //   jung, _ig_, _bjec,\n  { {0x6b83010f, 0x65640009, 0x249a00f6, 0x00000000}},  //   dung, _kwih, _hbpm_,\n  { {0x6f090182, 0x6d4b001c, 0x7ae92935, 0x00000000}},  //   _djec, gqga, dhet,\n  { {0x6b83000b, 0x6f090211, 0x44440169, 0x00000000}},  //   fung, _ejec, _jg_,\n  { {0x444402d5, 0x6b832936, 0x2fc70002, 0x00000000}},  //   _mg_, gung, ängt_,\n  { {0x7ae9143e, 0x612b2937, 0x76440922, 0x00000000}},  //   ghet, rüle, _ngiy,\n  { {0x44442938, 0xe1ff0211, 0x612b2939, 0x00000000}},  //   _og_, _león_, süle,\n  { {0x4444084e, 0x6b83020c, 0x612b014a, 0x00000000}},  //   _ng_, bung, püle,\n  { {0x61ed02cf, 0x6b83293a, 0x7d180161, 0x00000000}},  //   zzal, cung, movs,\n  { {0x44440195, 0x656f001f, 0x7ae90a86, 0x00000000}},  //   _ag_, tsch, chet,\n  { {0xd9541847, 0x44440127, 0xca9700b3, 0x00000000}},  //   _انتخ, _bg_, _כדאי_,\n  { {0x656f04e5, 0x4444003b, 0xa4e4008b, 0x00000000}},  //   rsch, _cg_, оўск,\n  { {0x44440129, 0x656f04e5, 0x326701c0, 0x00000000}},  //   _dg_, ssch, итав,\n  { {0xd258102a, 0x44440292, 0x083b00b6, 0x00000000}},  //   ицу_, _eg_, _בעול,\n  { {0x6b83000b, 0x444408ed, 0x6e2000b9, 0x00000000}},  // [7410] zung, _fg_, _nymb,\n  { {0x44441dd3, 0x6b830061, 0x7ae90047, 0x00000000}},  //   _gg_, yung, zhet,\n  { {0x7e6b006a, 0x7ae90039, 0x61ed108d, 0x00000000}},  //   tagp, yhet, szal,\n  { {0x7ae90065, 0x4444016e, 0x00000000, 0x00000000}},  //   xhet, _zg_,   ,\n  { {0x4444027e, 0x6f09293b, 0x6b83293c, 0x00000000}},  //   _yg_, _vjec, wung,\n  { {0x6b83293d, 0x4444020b, 0x7d180059, 0x00000000}},  //   tung, _xg_, govs,\n  { {0x7ae90047, 0x7e6b011c, 0xeeab007c, 0x00000000}},  //   thet, pagp, _итак_,\n  { {0x6b83001f, 0x6f1b0107, 0xa91d0107, 0x00000000}},  //   rung, _ukuc, duža,\n  { {0x60d50027, 0x6b83293e, 0x7ae901e2, 0x00000000}},  //   _kozm, sung, rhet,\n  { {0x644500ad, 0x6b83094d, 0x65640045, 0x00000000}},  //   _nghi, pung, _rwih,\n  { {0x444400c4, 0x7e6900ab, 0x69c609f0, 0x00000000}},  //   _rg_, _keep, äker,\n  { {0x6d411b5c, 0xe5a6005e, 0x64450035, 0x00000000}},  //   _hila, бими, _aghi,\n  { {0x6d4117ca, 0x4444293f, 0x39900129, 0x00000000}},  //   _kila, _pg_, càs_,\n  { {0xdff903d7, 0x6d41002b, 0x3a36009b, 0x00000000}},  //   ्पाद_, _jila, _פרסם_,\n  { {0x6d4104b8, 0x4444000c, 0xd3b50057, 0x00000000}},  //   _mila, _vg_, ость,\n  { {0x4444114b, 0x6b9c23cb, 0x76440009, 0x00000000}},  //   _wg_, _ärge, _ugiy,\n  { {0x4444002a, 0xf1aa007a, 0x6d410032, 0x00000000}},  // [7420] _tg_, دازه_, _oila,\n  { {0x4444006a, 0x6d412940, 0x60d50035, 0x00000000}},  //   _ug_, _nila, _cozm,\n  { {0x823602fd, 0x0019007e, 0x7d1801ed, 0x00000000}},  //   _گردا, аўцы_, vovs,\n  { {0x6d410016, 0xddc00035, 0x7e690146, 0x00000000}},  //   _aila, _nemţ, _ceep,\n  { {0x6d412941, 0x7ce6000c, 0x7e6900ab, 0x00000000}},  //   _bila, _aðra, _deep,\n  { {0x6d41008d, 0xdcb10082, 0x5c97007e, 0x00000000}},  //   _cila, _cả_, йкія_,\n  { {0x6d41020c, 0x7d180161, 0xcec300b9, 0x00000000}},  //   _dila, rovs, áří_,\n  { {0xa3b90316, 0x7d18145e, 0x6d4100c7, 0x00000000}},  //   चित_, sovs, _eila,\n  { {0x6d410da4, 0x7c96004c, 0x7d0d0051, 0x00000000}},  //   _fila, _грец, éasc,\n  { {0x6d4103b0, 0x39900129, 0xd8f80088, 0x00000000}},  //   _gila, ràs_, рної_,\n  { {0xf98f089d, 0x61300210, 0x25a00156, 0x00000000}},  //   وبی_, mäld, _apil_,\n  { {0xa25b0181, 0x6d411eca, 0xf1bf0010, 0x00000000}},  //   _anôn, _zila, _szám_,\n  { {0x2fc70011, 0x6f0306c0, 0xf65f01e5, 0x00000000}},  //   ̣ng_, énci, rbæ_,\n  { {0x4427001d, 0x38c802fd, 0x6448016e, 0x00000000}},  //   _ơn_, _خاصی_, ždin,\n  { {0x60d51c10, 0x36d5003b, 0x56950d99, 0x00000000}},  //   _rozm, _мокр, _дайт,\n  { {0x925901f9, 0x00000000, 0x00000000, 0x00000000}},  //   раат_,   ,   ,\n  { {0x60f9008b, 0x3ea600b0, 0x60d5163d, 0x00000000}},  // [7430] аная_, deot_, _pozm,\n  { {0x7e69095a, 0x3f93002b, 0x00000000, 0x00000000}},  //   _seep, ttxu_,   ,\n  { {0x44272942, 0x6d4101bc, 0x2fc70011, 0x00000000}},  //   _án_, _rila, ãng_,\n  { {0x3ea6048d, 0x52a70025, 0x00000000, 0x00000000}},  //   geot_, _اصدق,   ,\n  { {0x6f190036, 0x80b80044, 0x7e69010e, 0x00000000}},  //   rowc, _আকর্, _veep,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6d4104bd, 0x7e690ac2, 0x09d60044, 0x00000000}},  //   _vila, _teep, _তেলা,\n  { {0x6d412943, 0x78830010, 0x93fc01ce, 0x00000000}},  //   _wila, kívü, טלוי,\n  { {0x6d41021e, 0xed590091, 0x6c75003b, 0x00000000}},  //   _tila, _brže_, _млађ,\n  { {0xb902007e, 0x00000000, 0x00000000, 0x00000000}},  //   дзьк,   ,   ,\n  { {0xeaae026c, 0xa6ca09ae, 0x25a00018, 0x00000000}},  //   رٹی_, ална_, _spil_,\n  { {0x2ca700b5, 0xa91d1556, 0x61302944, 0x00000000}},  //   lend_, drže, mäle,\n  { {0x9404005f, 0x00000000, 0x00000000, 0x00000000}},  //   əmə_,   ,   ,\n  { {0x2ca7147c, 0xdb1a0a39, 0x00000000, 0x00000000}},  //   nend_, _artè,   ,\n  { {0x7d040051, 0x2ca72945, 0x443e00b0, 0x00000000}},  //   éisi, iend_, ät_,\n  { {0x2ca70e4d, 0x032601ff, 0x00000000, 0x00000000}},  //   hend_, ідан,   ,\n  { {0x2ca70f12, 0xdb010210, 0xa56600a1, 0x00000000}},  // [7440] kend_, _islä, _بدعن,\n  { {0x505a008b, 0x6ab6013d, 0x628f0207, 0x00000000}},  //   ршая_, _अफ्र, _ecco,\n  { {0x2ca700c7, 0x232a01fb, 0xe29a0517, 0x00000000}},  //   dend_, _вони_, _кан_,\n  { {0x6da6003b, 0x00000000, 0x00000000, 0x00000000}},  //   жида,   ,   ,\n  { {0xc27b00b3, 0x2ca701ac, 0x00000000, 0x00000000}},  //   _דרכי, fend_,   ,\n  { {0x2ca71a7f, 0xcf5a007c, 0x6ca3005e, 0x00000000}},  //   gend_, _врач_, дръж,\n  { {0x61300073, 0x7d0d0051, 0x823602fd, 0x00000000}},  //   räld, éasa, _درگا,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xc333019b, 0x2ca72946, 0x0c7a1739, 0x00000000}},  //   ווה_, bend_, _نصاب_,\n  { {0x2ca72947, 0xd83800ca, 0x20070036, 0x00000000}},  //   cend_, leči_, źnie_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xa91d1282, 0x274401aa, 0xdb1a2948, 0x00000000}},  //   vrže, vènè_, _orté,\n  { {0xd6270025, 0x6a9b009b, 0x6744009e, 0x00000000}},  //   تعدي, _כשאנ, _کرتے,\n  { {0xe3b30084, 0x395900c4, 0xa91d2949, 0x00000000}},  //   ورز_, ísse_, trže,\n  { {0x926b00ed, 0x628f004a, 0x78a806d4, 0x00000000}},  //   ираа_, _pcco, medv,\n  { {0xd8380243, 0x25b0021e, 0x2ca7054e, 0x00000000}},  //   ječi_, ällä_, zend_,\n  { {0xf19401ab, 0x628f0f02, 0x00000000, 0x00000000}},  // [7450] мить, _vcco,   ,\n  { {0xc79500a1, 0x78a804e7, 0x3f81013e, 0x00000000}},  //   _بھیا_, nedv, trhu_,\n  { {0x2ca723c8, 0xb4e7013d, 0xddc00087, 0x00000000}},  //   vend_, पसी_, _remš,\n  { {0x2ca700c7, 0x628f0009, 0x00000000, 0x00000000}},  //   wend_, _ucco,   ,\n  { {0x7cef0637, 0x2ca725f7, 0xd256009b, 0x00000000}},  //   _jørg, tend_, _משרה_,\n  { {0xf1bf00f7, 0x7d760025, 0x23b80123, 0x00000000}},  //   _irá_, أمور_, _ادیب_,\n  { {0x2ca7294a, 0x81ad0055, 0x8c4200ed, 0x00000000}},  //   rend_, _কপি_, неше,\n  { {0x2ca7063c, 0xdd95007e, 0x628d25e1, 0x00000000}},  //   send_, _набы, ngao,\n  { {0xceb2061e, 0xdd580230, 0xe8f906c4, 0x00000000}},  //   _אין_, _матч_, йли_,\n  { {0xb4ea0061, 0x6d5b00fa, 0x7cef00ea, 0x00000000}},  //   _मते_, _itua, _sørf,\n  { {0x779000a1, 0x66df0065, 0x6f0b0082, 0x00000000}},  //   نیوا, _lëku, ongc,\n  { {0x6602000c, 0x7cef0190, 0x68ea046a, 0x00000000}},  //   _þokk, _børg, _elfd,\n  { {0x63be091d, 0x7aeb0089, 0x69dd010e, 0x00000000}},  //   _srpn, _ilgt, äsed,\n  { {0xa8790049, 0x395f294b, 0x6aa900c1, 0x00000000}},  //   _האַר, mpus_, leef,\n  { {0xe73a044b, 0x7e7b04eb, 0x66e600e2, 0x00000000}},  //   _лек_, _odup, _нока,\n  { {0xdb0101a2, 0xa2cc0061, 0xf1bf01e5, 0x00000000}},  //   _erlö, हाध्, _brá_,\n  { {0x612b0010, 0xa5f7003b, 0x395f0288, 0x00000000}},  // [7460] rüln, _нећу_, npus_,\n  { {0xf617009b, 0x7e7b01c3, 0x6aa900d9, 0x00000000}},  //   _מחפש_, _adup, heef,\n  { {0x6d5b02d5, 0xc2c60054, 0x7c25010f, 0x00000000}},  //   _atua, _فيدي, ührl,\n  { {0x6146012b, 0xf1bf0359, 0x7cef0030, 0x00000000}},  //   _нема, _frá_, _lørd,\n  { {0x63bc001c, 0xf1bf0051, 0xd8381f6c, 0x00000000}},  //   lvrn, _grá_, reči_,\n  { {0x64431195, 0x31601ef5, 0x6d5b0051, 0x00000000}},  //   _únic, mpiz_, _dtua,\n  { {0xab381fea, 0x8fa3007c, 0xb60600d0, 0x00000000}},  //   опку_, _паре, lošč,\n  { {0x6d5b0065, 0x2aaa1fe6, 0x6aa90328, 0x00000000}},  //   _ftua, стко_, geef,\n  { {0xf65f08c8, 0x78a80146, 0x612b294c, 0x00000000}},  //   kjær_, tedv, küll,\n  { {0x6f022924, 0x7aeb0006, 0x47780088, 0x00000000}},  //   lioc, _elgt, обою_,\n  { {0x3f780089, 0x25b21d30, 0x7cef01e3, 0x00000000}},  //   nču_, _asyl_, _sørg,\n  { {0x6f020107, 0x00000000, 0x00000000, 0x00000000}},  //   nioc,   ,   ,\n  { {0x612b010f, 0x7cef0374, 0x255800b9, 0x00000000}},  //   füll, _førd, vělý_,\n  { {0x2ed9007d, 0x6f020026, 0xb60600ca, 0x00000000}},  //   _भक्त, hioc, došč,\n  { {0x291e1958, 0x290c00d8, 0x3cfe0087, 0x00000000}},  //   mota_, mnda_, _mmtv_,\n  { {0x291e002d, 0xf1bf00c4, 0x237f040d, 0x00000000}},  //   lota_, _prá_, čuj_,\n  { {0x7cef068f, 0x867c009b, 0x30a7007c, 0x00000000}},  // [7470] _høre, _הרחו, зрев,\n  { {0x291e1a99, 0x3cf803d7, 0x7cef0018, 0x00000000}},  //   nota_, ्चों_, _køre,\n  { {0x8144025a, 0x6f020026, 0x6d5b0d29, 0x00000000}},  //   رنمن, fioc, _stua,\n  { {0x6f020207, 0xf1bf27ec, 0x291e0142, 0x00000000}},  //   gioc, _trá_, hota_,\n  { {0x291e1c13, 0xd838012d, 0x26c900e7, 0x00000000}},  //   kota_, meču_, _mnao_,\n  { {0x3329294d, 0x69d6014a, 0xdb08294e, 0x00000000}},  //   llax_, _üyey, _ordó,\n  { {0xeb99007c, 0x291e0ba5, 0xed590087, 0x00000000}},  //   ций_, dota_, _drža_,\n  { {0xa91d04a9, 0x290c0198, 0x6f0203d1, 0x00000000}},  //   drža, enda_, cioc,\n  { {0x6aa900bb, 0x386e1f75, 0x290c000c, 0x00000000}},  //   reef, _befr_, fnda_,\n  { {0x291e008e, 0x612b294f, 0xd3780166, 0x00000000}},  //   gota_, külm, šći_,\n  { {0x7d030039, 0x16aa0726, 0x395f001a, 0x00000000}},  //   mins, овни_, spus_,\n  { {0x7d030142, 0x98a2001e, 0x7cef0637, 0x00000000}},  //   lins, ēkā_, _døre,\n  { {0xb8e30055, 0xdce905fa, 0xba7401fa, 0x00000000}},  //   _এক_, _cveć, _سانت,\n  { {0x58d401be, 0x7cef05ba, 0x6f022950, 0x00000000}},  //   _почт, _føre, zioc,\n  { {0x7cef0030, 0x1543030d, 0x38650e69, 0x00000000}},  //   _gøre, терм, mblr_,\n  { {0x3947009f, 0x7d032673, 0x99e30161, 0x00000000}},  //   _hins_, hins, žňuj,\n  { {0x4536007c, 0xb1461c7b, 0x394700f6, 0x00000000}},  // [7480] _охот, днал, _kins_,\n  { {0x26c90091, 0xb6060059, 0x39472951, 0x00000000}},  //   _znao_, rošč, _jins_,\n  { {0x6f02037e, 0x7d030213, 0x4f7a007c, 0x00000000}},  //   tioc, dins, ющая_,\n  { {0x6b98001c, 0x4ea3025f, 0x394700c4, 0x00000000}},  //   vtvg, врша, _lins_,\n  { {0x291e01cf, 0x6f0221e7, 0x7d0300ea, 0x00000000}},  //   yota_, rioc, fins,\n  { {0x7d030007, 0x6f020107, 0xdb0a0737, 0x00000000}},  //   gins, sioc, lvfø,\n  { {0x291e0027, 0x612b006c, 0xe2080036, 0x00000000}},  //   vota_, külj, _wróć_,\n  { {0x291e2952, 0x7cef08c8, 0x394706d2, 0x00000000}},  //   wota_, _røre, _ains_,\n  { {0x60dc2953, 0x7d032954, 0x7cef0737, 0x00000000}},  //   _korm, bins, _søre,\n  { {0x7d0307f9, 0xfbc6022a, 0x67240020, 0x00000000}},  //   cins, _обзо, _akij,\n  { {0x60dc2955, 0x394704bd, 0xdce90166, 0x00000000}},  //   _morm, _dins_, _sveć,\n  { {0x3947009f, 0x6d480169, 0xfbd3009b, 0x00000000}},  //   _eins_, _hida, _שתף_,\n  { {0x394704bd, 0x291e0627, 0x6d480020, 0x00000000}},  //   _fins_, pota_, _kida,\n  { {0x60dc049a, 0x6d480173, 0x22590009, 0x00000000}},  //   _norm, _jida, _sfsk_,\n  { {0x6d480004, 0xdceb01d5, 0x98a3003b, 0x00000000}},  //   _mida, stgħ, _рије,\n  { {0x69c20168, 0x612b2956, 0x6d482957, 0x00000000}},  //   _kroe, rülm, _lida,\n  { {0x60dc0066, 0xde8f0011, 0x3329002d, 0x00000000}},  // [7490] _borm, hịch_, rlax_,\n  { {0x60dc220d, 0x6d482958, 0x27320051, 0x00000000}},  //   _corm, _nida, mána_,\n  { {0xdb1a15ab, 0x656d0022, 0x00000000, 0x00000000}},  //   _artí, _hwah,   ,\n  { {0x80cd0061, 0x6d48006c, 0x7d030376, 0x00000000}},  //   साहे, _aida, wins,\n  { {0x6d482959, 0x7d030091, 0x2d860093, 0x00000000}},  //   _bida, tins, groe_,\n  { {0x6d481160, 0x60dc0016, 0x7c280343, 0x00000000}},  //   _cida, _gorm, _bydr,\n  { {0x6d48033b, 0x75cb001c, 0x7c280016, 0x00000000}},  //   _dida, ामुळ, _cydr,\n  { {0x764d006a, 0x7d030056, 0x69c2295a, 0x00000000}},  //   _ngay, sins, _broe,\n  { {0x7d03023a, 0x69c2018e, 0x6d4828dc, 0x00000000}},  //   pins, _croe, _fida,\n  { {0xe8f60604, 0x6d48295b, 0xf1b20097, 0x00000000}},  //   ель_, _gida, נסי_,\n  { {0x78b80207, 0x3947295c, 0xd70600e2, 0x00000000}},  //   _davv, _vins_, езни,\n  { {0x6d48002d, 0x656d011c, 0x39470aba, 0x00000000}},  //   _zida, _bwah, _wins_,\n  { {0x69c2295d, 0x33200068, 0x7c28007f, 0x00000000}},  //   _groe, voix_, _zydr,\n  { {0x7ae9250f, 0x6e290061, 0x399910cf, 0x00000000}},  //   lket, _myeb, mès_,\n  { {0x3999295e, 0x29050091, 0x03a3007c, 0x00000000}},  //   lès_, mila_, лиро,\n  { {0x7ae9002d, 0x29050091, 0x60dc1198, 0x00000000}},  //   nket, lila_, _sorm,\n  { {0x656d018e, 0x3999295f, 0x60dc011c, 0x00000000}},  // [74a0] _gwah, nès_, _porm,\n  { {0x2905006a, 0x4223072b, 0xb22300d7, 0x00000000}},  //   nila_, удув, умул,\n  { {0x60dc224a, 0x7ae9002b, 0xd00f0025, 0x00000000}},  //   _vorm, kket, ملك_,\n  { {0x6d48067e, 0x29050013, 0x6d5d002b, 0x00000000}},  //   _sida, hila_, _ħsar,\n  { {0x6d482960, 0x2905015e, 0x60dc0c1b, 0x00000000}},  //   _pida, kila_, _torm,\n  { {0xd3780091, 0x39991d81, 0xa91d2961, 0x00000000}},  //   šću_, dès_, buži,\n  { {0x6d4801e2, 0x29050340, 0x3dd80055, 0x00000000}},  //   _vida, dila_, _দেখল,\n  { {0x8f9b0452, 0x69c22962, 0xd00f00f9, 0x00000000}},  //   _מילי, _proe, _الف_,\n  { {0x6d48020c, 0x2905238c, 0x6e930025, 0x00000000}},  //   _tida, fila_, _حلقا,\n  { {0x69c20100, 0x2732093f, 0x7ae90032, 0x00000000}},  //   _vroe, vána_, aket,\n  { {0x28d2013d, 0x656d03ef, 0xad1b01ce, 0x00000000}},  //   ताबि, _swah, _צובר,\n  { {0x69c200b7, 0x7ae900ab, 0x399925bf, 0x00000000}},  //   _troe, cket, bès_,\n  { {0x29050127, 0x3999028c, 0x48e6007c, 0x00000000}},  //   bila_, cès_, _подв,\n  { {0x29050091, 0x7d010019, 0x00000000, 0x00000000}},  //   cila_, _xmls,   ,\n  { {0xd7ef045e, 0xe3b0026c, 0x9f470161, 0x00000000}},  //   _су_, یرہ_, šné_,\n  { {0x656d21a4, 0x212100e0, 0x00000000, 0x00000000}},  //   _twah, wohh_,   ,\n  { {0x02e10316, 0x7f490afb, 0x656d21a4, 0x00000000}},  // [74b0] _नवीन, _rieq, _uwah,\n  { {0x7ae9022b, 0x2d80002b, 0x25a90022, 0x00000000}},  //   zket, ġiel_, _ipal_,\n  { {0x5f952963, 0x613000b0, 0x2d800027, 0x00000000}},  //   тиет, mäll, šiel_,\n  { {0x290500ee, 0x6e2901aa, 0x399901aa, 0x00000000}},  //   zila_, _pyeb, yès_,\n  { {0xb2760049, 0x6ab90146, 0xa3b901f5, 0x00000000}},  //   _בערג_, _rawf, चिक_,\n  { {0x39992964, 0x25a900d4, 0x29050288, 0x00000000}},  //   vès_, _mpal_, xila_,\n  { {0x290500ee, 0x7ae900b0, 0x6114005e, 0x00000000}},  //   vila_, tket, _сдру,\n  { {0x63ba1e14, 0x39992965, 0x29052966, 0x00000000}},  //   ætni, tès_, wila_,\n  { {0x29050119, 0x7ae90238, 0x6abb0146, 0x00000000}},  //   tila_, rket, rduf,\n  { {0x3eaf2967, 0x39992968, 0x7ae90238, 0x00000000}},  //   legt_, rès_, sket,\n  { {0x290500ee, 0x2d8f037e, 0x8ae70088, 0x00000000}},  //   rila_, luge_, _підл,\n  { {0x29050091, 0xb8e8006e, 0x39992964, 0x00000000}},  //   sila_, _लो_, pès_,\n  { {0xd7f8000d, 0x613003a9, 0x29050733, 0x00000000}},  //   ază_, fäll, pila_,\n  { {0x7c240c4f, 0x00000000, 0x00000000, 0x00000000}},  //   şire,   ,   ,\n  { {0x232a0072, 0xb4b203d7, 0xe29a2969, 0x00000000}},  //   дови_, _ऐसी_, мав_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x2d8f0521, 0xdddb001a, 0x9c7c0059, 0x00000000}},  // [74c0] juge_, _reuş, _hoče,\n  { {0x9c7c296a, 0xf0630e82, 0xd059007e, 0x00000000}},  //   _koče, икуп, ерці_,\n  { {0x2732013e, 0x9c7c00ca, 0x00000000, 0x00000000}},  //   náno_, _joče,   ,\n  { {0x2d80001e, 0x2d8f062a, 0x69c40006, 0x00000000}},  //   šiem_, fuge_, _šiem,\n  { {0x2d960072, 0x9c7c0059, 0x2cbc008e, 0x00000000}},  //   трес, _loče, tdvd_,\n  { {0x79890ace, 0x645c005b, 0xed57003b, 0x00000000}},  //   drew, ncri, њој_,\n  { {0x69dd010f, 0x6b9a0009, 0x09df0044, 0x00000000}},  //   äsen, _qqtg, _বেলা,\n  { {0x273200b9, 0x64df013d, 0x501b009b, 0x00000000}},  //   dáno_, _नक्श, _חולו,\n  { {0xbda50318, 0xc866030d, 0x00000000, 0x00000000}},  //   _محلو, ктни,   ,\n  { {0x9c7c296b, 0x777a00ea, 0xd00f009e, 0x00000000}},  //   _boče, tstx, _الہ_,\n  { {0x61300c4d, 0x00000000, 0x00000000, 0x00000000}},  //   väll,   ,   ,\n  { {0x9c7c0091, 0x4bfb00b3, 0xcf93009b, 0x00000000}},  //   _doče, _קלאס, סטר_,\n  { {0x61300073, 0xceb300a0, 0x5963005e, 0x00000000}},  //   täll, ביר_, _къща,\n  { {0x89d70439, 0x27160089, 0x00000000, 0x00000000}},  //   _جوهر_, rāna_,   ,\n  { {0x2458007e, 0x613020d6, 0x00000000, 0x00000000}},  //   тась_, räll,   ,\n  { {0x32640d68, 0x6130021e, 0x3f5701d5, 0x00000000}},  //   итув, säll, _dħul_,\n  { {0x645c0022, 0x00000000, 0x00000000, 0x00000000}},  // [74d0] bcri,   ,   ,\n  { {0x2d8f0009, 0x3eaf01a2, 0x645e0026, 0x00000000}},  //   vuge_, wegt_, _gfpi,\n  { {0x7cef0018, 0x00000000, 0x00000000, 0x00000000}},  //   _børn,   ,   ,\n  { {0x97570104, 0x00000000, 0x00000000, 0x00000000}},  //   דיאו_,   ,   ,\n  { {0x273200b9, 0x3eaf01a2, 0x2bc501f5, 0x00000000}},  //   záno_, regt_, विभा,\n  { {0x2d8f016e, 0x3e710082, 0x00000000, 0x00000000}},  //   ruge_, ạt_,   ,\n  { {0xeab10054, 0xc878005a, 0x7cf400d4, 0x00000000}},  //   معة_, dağ_, _bàrb,\n  { {0x27320224, 0x798901d6, 0x00000000, 0x00000000}},  //   váno_, trew,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x9c7c296c, 0xb4b203d7, 0x79890116, 0x00000000}},  //   _poče, _ऐसे_, rrew,\n  { {0xd70a07d0, 0x81d90055, 0xc5e900a0, 0x00000000}},  //   енне_, ়নি_, _צד_,\n  { {0x7c25010f, 0x7cf40129, 0x00000000, 0x00000000}},  //   ühru, _vàre,   ,\n  { {0xc878005f, 0x98a50256, 0x645c1768, 0x00000000}},  //   bağ_, _биле, tcri,\n  { {0x81d90044, 0xdc4300b9, 0x97c50188, 0x00000000}},  //   ়না_, _léči, _مقتو,\n  { {0x833a17a4, 0x04570025, 0x29360049, 0x00000000}},  //   ечат_, الفة_, _גאסן_,\n  { {0x645c032c, 0xa91d016e, 0x00000000, 0x00000000}},  //   scri, ružu,   ,\n  { {0xf8b70061, 0x00000000, 0x00000000, 0x00000000}},  // [74e0] _असाय,   ,   ,\n  { {0x45fb009b, 0x00000000, 0x00000000, 0x00000000}},  //   _נהיג,   ,   ,\n  { {0x749b00b3, 0x90360245, 0x205502ea, 0x00000000}},  //   _אייפ, ухач, ртур,\n  { {0x249a0085, 0x00000000, 0x00000000, 0x00000000}},  //   _hcpm_,   ,   ,\n  { {0xf767009c, 0xc27b01f8, 0xfce6041f, 0x00000000}},  //   _گا_, _ארכי, лодо,\n  { {0x65640020, 0x412a0088, 0x7cef00ea, 0x00000000}},  //   _mtih, _чого_, _døro,\n  { {0xf76701f7, 0x249a0022, 0x00000000, 0x00000000}},  //   _دا_, _mcpm_,   ,\n  { {0x62960232, 0x6466006b, 0x3af1296d, 0x00000000}},  //   ngyo, əriş, _pápa_,\n  { {0x6130006c, 0x6564296e, 0x99830025, 0x00000000}},  //   välj, _ntih, مليو,\n  { {0xdd8f004b, 0xc19b009b, 0x00000000, 0x00000000}},  //   _روم_, עשיי,   ,\n  { {0x98c30a78, 0x656400e0, 0xd6d50783, 0x00000000}},  //   ссыл, _atih, ажны,\n  { {0x7bc8296f, 0x00000000, 0x00000000, 0x00000000}},  //   _irdu,   ,   ,\n  { {0x15a8005e, 0x7a7b01ce, 0x58d408fc, 0x00000000}},  //   лъри_, _טראס, _волт,\n  { {0x61300039, 0x7d0a002b, 0x249a0026, 0x00000000}},  //   sälj, nifs, _ccpm_,\n  { {0x7ae200b0, 0x15d800a1, 0x00000000, 0x00000000}},  //   _koot, نگیں_,   ,\n  { {0x81ae0044, 0xc7ad00a1, 0x20070036, 0x00000000}},  //   কিন_, _کڑی_, źnik_,\n  { {0x9f470224, 0x7ae20368, 0x612b2970, 0x00000000}},  // [74f0] ání_, _moot, kült,\n  { {0x7bc8022b, 0x7ae2006c, 0x7cef00ea, 0x00000000}},  //   _ordu, _loot, _røro,\n  { {0x9f470802, 0x53350069, 0x7cef0374, 0x00000000}},  //   šní_, _вент, _søro,\n  { {0x7ae2015b, 0x00000000, 0x00000000, 0x00000000}},  //   _noot,   ,   ,\n  { {0x7bc8022b, 0x127a0049, 0x427a0104, 0x00000000}},  //   _ardu, _בארע, _בארג,\n  { {0x81bc0044, 0x394e002b, 0x2cbe00f6, 0x00000000}},  //   _অথচ_, _nifs_, _catd_,\n  { {0x2bc502d2, 0x4c92003b, 0x00000000, 0x00000000}},  //   विधा, цијс,   ,\n  { {0x80c90204, 0x00000000, 0x00000000, 0x00000000}},  //   _होते,   ,   ,\n  { {0x88d5008b, 0x7ae20288, 0x00000000, 0x00000000}},  //   аўні, _doot,   ,\n  { {0x3ebf2971, 0xa85500ec, 0xfd130688, 0x00000000}},  //   _haut_, штиј, _اجر_,\n  { {0x3ebf001e, 0x7ae215a4, 0x65640466, 0x00000000}},  //   _kaut_, _foot, _stih,\n  { {0x7ae2044e, 0xdb0100d4, 0x00000000, 0x00000000}},  //   _goot, _eslò,   ,\n  { {0x99670920, 0x3ebf01a3, 0xdce20161, 0x00000000}},  //   _стел, _maut_, zpoč,\n  { {0x3ebf2972, 0xdb010048, 0x81ae0044, 0x00000000}},  //   _laut_, _tsló, কিম_,\n  { {0xed590c1e, 0x0446007c, 0x68e32973, 0x00000000}},  //   _drži_, ревн, _iond,\n  { {0x160103d7, 0xe355008b, 0xa91d055a, 0x00000000}},  //   _लेकर_, стрэ, drži,\n  { {0x68e32974, 0x8be90055, 0x26d2006a, 0x00000000}},  // [7500] _kond, _কেমন_, _inyo_,\n  { {0x68e30052, 0x26c00085, 0x7cef0146, 0x00000000}},  //   _jond, _haio_, _børm,\n  { {0x68e32975, 0x2d9f19bf, 0x3ebf2976, 0x00000000}},  //   _mond, _aque_, _baut_,\n  { {0xbea607d0, 0x26c0002d, 0x3ebf001a, 0x00000000}},  //   радк, _jaio_, _caut_,\n  { {0x26c01160, 0x8236007a, 0x7ae20114, 0x00000000}},  //   _maio_, _خردا, _root,\n  { {0x68e3002d, 0x6b810253, 0x7ae20114, 0x00000000}},  //   _nond, _bvlg, _soot,\n  { {0x3ebf028c, 0x7d0a000c, 0x26d20020, 0x00000000}},  //   _faut_, rifs, _onyo_,\n  { {0xbab8007c, 0x9c7c2977, 0x68e32978, 0x00000000}},  //   угих_, _doča, _aond,\n  { {0x68e30607, 0xdcfb0091, 0xbb470025, 0x00000000}},  //   _bond, _zvuč, جلين_,\n  { {0x26d2011c, 0x7ae20908, 0x7d0d0048, 0x00000000}},  //   _anyo_, _woot, éast,\n  { {0x68e30219, 0x7ae20004, 0x26c0049a, 0x00000000}},  //   _dond, _toot, _baio_,\n  { {0x6d4f00f4, 0x26c02979, 0x7c3a0b2e, 0x00000000}},  //   _écar, _caio_, _iztr,\n  { {0x6f0304bd, 0x443a0032, 0x26c5013e, 0x00000000}},  //   ènci, _azp_, ělo_,\n  { {0x68e30047, 0x2bbd02f4, 0xd9431376, 0x00000000}},  //   _gond, ्मचा, _дечи,\n  { {0x290c0489, 0x38cb0123, 0x00000000, 0x00000000}},  //   mida_, _جانی_,   ,\n  { {0x68e302ae, 0x290c20c1, 0x8c1b00b3, 0x00000000}},  //   _zond, lida_, דולי,\n  { {0x6d43297a, 0xdddb0091, 0xdcfb016c, 0x00000000}},  // [7510] ymna, _oduš, _svuč,\n  { {0x26c0002d, 0x3ebf009d, 0xdb1800f8, 0x00000000}},  //   _zaio_, _saut_, lvvä,\n  { {0x9028008b, 0x8319221c, 0xf7730049, 0x00000000}},  //   ацца_, _مقدر_, ַקס_,\n  { {0x290c297b, 0x8f6a00a1, 0x9c7c00ca, 0x00000000}},  //   hida_, النے_, _roča,\n  { {0x3ebf00f4, 0xa28200a1, 0x9c7c089f, 0x00000000}},  //   _vaut_, _ریلو, _soča,\n  { {0x9c7c0027, 0x00000000, 0x00000000, 0x00000000}},  //   _poča,   ,   ,\n  { {0x68e30168, 0x3b090902, 0x290c0325, 0x00000000}},  //   _rond, леко_, dida_,\n  { {0x68e307f8, 0xfbd000b8, 0x61300b3e, 0x00000000}},  //   _sond, بته_, väli,\n  { {0x68e30161, 0x290c01eb, 0x26c000c4, 0x00000000}},  //   _pond, fida_, _raio_,\n  { {0x290c0919, 0xe8f61001, 0x672d0020, 0x00000000}},  //   gida_, йлы_, _akaj,\n  { {0xfbd00054, 0x68e30056, 0x26c00207, 0x00000000}},  //   _يتم_, _vond, _paio_,\n  { {0x81ae0055, 0x68e30b8d, 0x61ed297c, 0x00000000}},  //   কিত_, _wond, kyal,\n  { {0x9c7c0059, 0x26c00011, 0x00000000, 0x00000000}},  //   _močn, _vaio_,   ,\n  { {0x290c029d, 0x69cb001f, 0x68fa07eb, 0x00000000}},  //   cida_, _irge, chtd,\n  { {0xf7461123, 0x26c0297d, 0xa8a400e2, 0x00000000}},  //   _леко, _taio_, _фрчк,\n  { {0x9c7c1e34, 0x61e20cba, 0x7cef0190, 0x00000000}},  //   _nočn, äolo, _børk,\n  { {0x61ed0010, 0xd5b10082, 0x00000000, 0x00000000}},  // [7520] gyal, ắc_,   ,\n  { {0x205608fd, 0xdb1a0129, 0x6f090020, 0x00000000}},  //   стар, _estè, _amec,\n  { {0x9c7c0161, 0x287a0049, 0xa3ba0879, 0x00000000}},  //   _bočn, רנעמ, _صادر_,\n  { {0x290c297e, 0x6e930025, 0x69cb0c7a, 0x00000000}},  //   zida_, كلما, _orge,\n  { {0x7d1a0009, 0x7c3a0010, 0x00000000, 0x00000000}},  //   _pjts, _sztr,   ,\n  { {0x290c049a, 0xa3cc006e, 0x2ee401c3, 0x00000000}},  //   xida_, लिप_, _womf_,\n  { {0x69cb1ff4, 0x290c0181, 0xef1a00d7, 0x00000000}},  //   _arge, vida_, _бмв_,\n  { {0xbf1601d8, 0x7c3a0059, 0x7d0d0048, 0x00000000}},  //   _اورب, _vztr, éasr,\n  { {0x290c2888, 0x00000000, 0x00000000, 0x00000000}},  //   tida_,   ,   ,\n  { {0x672d0023, 0x41bb0049, 0x3ce500f8, 0x00000000}},  //   _skaj, נציע, _golv_,\n  { {0xda6f008b, 0x69cb001f, 0x290c0114, 0x00000000}},  //   _ня_, _erge, rida_,\n  { {0x290c0bf3, 0x7afb001f, 0xdc3b007b, 0x00000000}},  //   sida_, chut, _געבר,\n  { {0xeb14013d, 0xfa360151, 0x69cb016c, 0x00000000}},  //   तचीत_, _اراد, _grge,\n  { {0xa99b009b, 0x81de0044, 0x00000000, 0x00000000}},  //   _עבור, তনা_,   ,\n  { {0xdb1a009d, 0x387e0026, 0x7cef0374, 0x00000000}},  //   _asté, matr_, _sørk,\n  { {0x61ed01aa, 0x672d00e7, 0xc9090044, 0x00000000}},  //   tyal, _ukaj, রকৃত_,\n  { {0x9c7c297f, 0x7cef043e, 0x00000000, 0x00000000}},  // [7530] _ročn, _førh,   ,\n  { {0x61ed2980, 0x6f091140, 0x46a5007d, 0x00000000}},  //   ryal, _smec, ग्रह,\n  { {0x9c7c0209, 0xdb1a0325, 0x61ed09e5, 0x00000000}},  //   _počn, _esté, syal,\n  { {0x7cef05b7, 0x61ed014a, 0x3e7d0006, 0x00000000}},  //   _tørk, pyal, kštų_,\n  { {0x7cef0030, 0x2cac167b, 0x44210082, 0x00000000}},  //   _høri, _bbdd_, _hxh_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x09d1001c, 0x9c7c02db, 0x7afb2981, 0x00000000}},  //   तम्य, _točn, thut,\n  { {0x7e620026, 0x6f092982, 0x69db0032, 0x00000000}},  //   ccop, _umec, txue,\n  { {0xe8f9013b, 0x3ce52983, 0x443300f8, 0x00000000}},  //   или_, _tolv_, _lyx_,\n  { {0x7afb0020, 0x77850467, 0xa3cc007d, 0x00000000}},  //   shut, олоз, लिम_,\n  { {0xf092019b, 0x60c50051, 0xf7460088, 0x00000000}},  //   וני_, idhm, жено,\n  { {0x6d5b2984, 0x3dcd22df, 0x6f190016, 0x00000000}},  //   _kuua, _krew_, nnwc,\n  { {0x69cb1954, 0x7c2d005a, 0x3ead0023, 0x00000000}},  //   _urge, şard, _mbet_,\n  { {0x2a7f010f, 0x1869041f, 0x6d5b2985, 0x00000000}},  //   laub_, _таки_, _muua,\n  { {0x69c91263, 0x09df0044, 0x6d411c91, 0x00000000}},  //   lvee, _বেচা, _mhla,\n  { {0xf26a0242, 0x6130010f, 0xb5fb2986, 0x00000000}},  //   риал_, hält, rbár,\n  { {0x69c900bb, 0xb5fb16b8, 0xc05a19d4, 0x00000000}},  // [7540] nvee, lcán, арец_,\n  { {0xe0d701fb, 0x61300c4d, 0x3ead0058, 0x00000000}},  //   ову_, jält, _abet_,\n  { {0x14d7007b, 0x09b60309, 0x00000000, 0x00000000}},  //   _וויל_, _अन्य,   ,\n  { {0x3dcd0719, 0x6d41014a, 0x2d8400f6, 0x00000000}},  //   _brew_, _ahla, _pvme_,\n  { {0x6d26007e, 0x6d410051, 0x613003a9, 0x00000000}},  //   оддз, _bhla, fält,\n  { {0x6d410428, 0x7e620585, 0xc5f3009b, 0x00000000}},  //   _chla, scop, ודד_,\n  { {0x69c90277, 0x00000000, 0x00000000, 0x00000000}},  //   evee,   ,   ,\n  { {0x7e7b095d, 0x00000000, 0x00000000, 0x00000000}},  //   _geup,   ,   ,\n  { {0xaaa60309, 0x3dcd0133, 0xf1bf0010, 0x00000000}},  //   क्षक, _grew_, _száz_,\n  { {0x6d41002a, 0x97a6004c, 0x2d800e3f, 0x00000000}},  //   _ghla, ормл, šies_,\n  { {0xfaa600e2, 0x7cfd00f6, 0xe0b7009b, 0x00000000}},  //   _мажо, _sèrg, חליט_,\n  { {0xb5e60044, 0x7cfd00f6, 0xf76f0014, 0x00000000}},  //   _পেইচ, _pèrg, کای_,\n  { {0xe3b80279, 0x6b550006, 0x7cef00ea, 0x00000000}},  //   çın_, _išga, _søri,\n  { {0x4aa602fb, 0x7c2d2987, 0x00000000, 0x00000000}},  //   क्रव, şare,   ,\n  { {0xd7e601ff, 0x613003a2, 0x69dd01b1, 0x00000000}},  //   _філо, häls, äsev,\n  { {0xd055013f, 0x9c7c00ca, 0x00000000, 0x00000000}},  //   əbəl, _sočl,   ,\n  { {0x67ff0010, 0x7e7b0471, 0x60f90641, 0x00000000}},  // [7550] _tájé, _reup, бная_,\n  { {0xd1310445, 0x7f5c0957, 0x306b0143, 0x00000000}},  //   رما_, _burq, рјан_,\n  { {0x7415004b, 0x7e7b00f4, 0x44270011, 0x00000000}},  //   _روحا, _peup, _ân_,\n  { {0xf8b7013d, 0x7cfd009d, 0x6130010f, 0x00000000}},  //   _अस्प, _mère, wält,\n  { {0x3ead1ac6, 0xbdf80025, 0x6d410fb8, 0x00000000}},  //   _vbet_, يرها_, _phla,\n  { {0x3ac70082, 0x27160089, 0x7cf400d4, 0x00000000}},  //   _ốp_, rāni_, _fàrm,\n  { {0x415400ed, 0x22590085, 0x3dcd0066, 0x00000000}},  //   _цврс, _kgsk_, _wrew_,\n  { {0x6130021e, 0xa3cc006e, 0x81ae0044, 0x00000000}},  //   sält, लित_, কির_,\n  { {0xf9910025, 0xdd9103ab, 0xc334009b, 0x00000000}},  //   ربة_, _سوا_, ווק_,\n  { {0xe8f90242, 0x3d940069, 0x48050088, 0x00000000}},  //   сло_, _цифр, зпов,\n  { {0xf092007b, 0xccf200b6, 0x69c92988, 0x00000000}},  //   ענט_, _רכב_, svee,\n  { {0xa25b009d, 0xd5b10082, 0x9c7c0087, 0x00000000}},  //   _saôn, ắn_, _nočj,\n  { {0xcb1200b6, 0xb5fb10c9, 0x00000000, 0x00000000}},  //   _אלא_, scán,   ,\n  { {0x26c4220f, 0x00000000, 0x00000000, 0x00000000}},  //   žmo_,   ,   ,\n  { {0xfdb80309, 0xa50701ab, 0x395d005b, 0x00000000}},  //   _इन्फ, чера_, _huws_,\n  { {0x877a0049, 0x00000000, 0x00000000, 0x00000000}},  //   _פאפי,   ,   ,\n  { {0xe717009b, 0xc6930049, 0xa7fc026d, 0x00000000}},  // [7560] _מחקר_, _נאז_, ncın,\n  { {0x7bc104eb, 0x00000000, 0x00000000, 0x00000000}},  //   _oslu,   ,   ,\n  { {0x4abd0201, 0xaabd0201, 0x5477009b, 0x00000000}},  //   ्याव, ्याक, _מגיע_,\n  { {0x794d0036, 0x81bb0044, 0x00000000, 0x00000000}},  //   _dźwi, _অপর_,   ,\n  { {0x237f0091, 0x46dd0061, 0x200701e5, 0x00000000}},  //   ćuje_, यातह, únir_,\n  { {0x7f5c0065, 0xd1320025, 0xd7db0061, 0x00000000}},  //   _turq, _أمس_, यमाच,\n  { {0x60230265, 0x00000000, 0x00000000, 0x00000000}},  //   _здра,   ,   ,\n  { {0xada601e0, 0x37d10044, 0x9c7c0802, 0x00000000}},  //   _набл, াহার, _kočk,\n  { {0x7cef068f, 0xd7f80035, 0x3f9a0471, 0x00000000}},  //   _rørv, rcăm_, lupu_,\n  { {0x7cfd009d, 0xfcaa0014, 0x7cef2989, 0x00000000}},  //   _père, _دارو_, _sørv,\n  { {0x5695007e, 0x00000000, 0x00000000, 0x00000000}},  //   мант,   ,   ,\n  { {0x2732049a, 0x7bdb009b, 0x00000000, 0x00000000}},  //   dáns_, _לקבו,   ,\n  { {0x6d4a00d4, 0x9c7c0087, 0x00000000, 0x00000000}},  //   omfa, _nočk,   ,\n  { {0x48e309de, 0x7cef0146, 0x00000000, 0x00000000}},  //   _почв, _føru,   ,\n  { {0x7cfd00f6, 0xf3f30025, 0x00000000, 0x00000000}},  //   _hèrc, رأس_,   ,\n  { {0x78ba0047, 0xf4080025, 0x7cef08c8, 0x00000000}},  //   letv, سيقى_, _hørt,\n  { {0x442d0046, 0x672f0036, 0x7cef0030, 0x00000000}},  // [7570] łe_, mocj, _kørt,\n  { {0x51f80147, 0x78ba0190, 0x656d00e7, 0x00000000}},  //   чную_, netv, _itah,\n  { {0x8fb90025, 0x656d01f3, 0xdb0304bb, 0x00000000}},  //   تهاء_, _htah, stné,\n  { {0x644300d4, 0x8db5007e, 0xff040088, 0x00000000}},  //   _úniq, дскі, нячн,\n  { {0xddab0517, 0x00000000, 0x00000000, 0x00000000}},  //   стел_,   ,   ,\n  { {0x98a50089, 0x7cfd00d4, 0x11da00b3, 0x00000000}},  //   kolā_, _sèrb, _וחשב,\n  { {0xdb1a1343, 0x00000000, 0x00000000, 0x00000000}},  //   _estí,   ,   ,\n  { {0x6b88004a, 0x2b5e004a, 0x7bc100ea, 0x00000000}},  //   _dvdg, _dutc_, _vslu,\n  { {0xceb20452, 0x656d298a, 0x7cfd00f6, 0x00000000}},  //   _בין_, _ntah, _cèrc,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7bc10213, 0xdb010030, 0xb5fb0051, 0x00000000}},  //   _uslu, _oplø, scál,\n  { {0xa3cc0164, 0x60c7008d, 0x672f0770, 0x00000000}},  //   लिस_, _lajm, gocj,\n  { {0x2bc501f5, 0x443c0006, 0x7cef043e, 0x00000000}},  //   विका, _šv_, _ført,\n  { {0x60c70027, 0x7aeb098e, 0x613000f8, 0x00000000}},  //   _najm, _hogt, jälp,\n  { {0xa7fc014a, 0x7cef0030, 0x656d0022, 0x00000000}},  //   ncıl, _hørs, _etah,\n  { {0x7cef0030, 0x656d01f3, 0x7cf400f6, 0x00000000}},  //   _kørs, _ftah, _pàrk,\n  { {0x045a0025, 0xdb1a005b, 0x00000000, 0x00000000}},  // [7580] _وجدت_, _ystâ,   ,\n  { {0x3f9a298b, 0x61eb00f8, 0x27160089, 0x00000000}},  //   tupu_, ägla, rānu_,\n  { {0x60c70253, 0xd12f0025, 0xdee600e2, 0x00000000}},  //   _dajm, جمل_, можи,\n  { {0x9c7c2794, 0xee3a02b8, 0x7aeb01d6, 0x00000000}},  //   _točk, оне_, _nogt,\n  { {0x62840032, 0x00000000, 0x00000000, 0x00000000}},  //   maio,   ,   ,\n  { {0x9c7c040d, 0x6d4a007f, 0x3f9a01a3, 0x00000000}},  //   _koči, umfa, pupu_,\n  { {0x7aeb0a9d, 0x9c7c012d, 0x78ba298c, 0x00000000}},  //   _bogt, _joči, vetv,\n  { {0x60c70036, 0x7cef05b7, 0x9c7c03c9, 0x00000000}},  //   _zajm, _børs, _moči,\n  { {0x7aeb0007, 0x9c7c0059, 0x7c2d019a, 0x00000000}},  //   _dogt, _loči, ğara,\n  { {0x2004006b, 0x7c2d005a, 0x9404006b, 0x00000000}},  //   _əmin_, şara, şmə_,\n  { {0x656d059c, 0x78ba0091, 0x78a30009, 0x00000000}},  //   _stah, retv, _dcnv,\n  { {0x7cef02cc, 0x3cfe0048, 0x69c201d6, 0x00000000}},  //   _førs, _hltv_, _tsoe,\n  { {0xdb1a02d5, 0x77920063, 0x628428dc, 0x00000000}},  //   _estã, ریکا, daio,\n  { {0x9f470051, 0x9c7c01ed, 0x2ee606ec, 0x00000000}},  //   ánú_, _boči, hjof_,\n  { {0x7cf400d4, 0x291e00e0, 0x2b460082, 0x00000000}},  //   _càri, mnta_, _khoc_,\n  { {0x60c70091, 0x628400fa, 0x00000000, 0x00000000}},  //   _sajm, gaio,   ,\n  { {0x291e0048, 0x656d298d, 0x00000000, 0x00000000}},  // [7590] onta_, _utah,   ,\n  { {0x2724005d, 0x291e22ce, 0xa3cc006e, 0x00000000}},  //   mına_, nnta_, लिश_,\n  { {0x291e298e, 0x6f020051, 0x27240279, 0x00000000}},  //   inta_, fhoc, lına_,\n  { {0x7cef0030, 0x2b460082, 0x48150049, 0x00000000}},  //   _nørr, _nhoc_, ײַען_,\n  { {0x2724005d, 0x2cae0009, 0x6b450325, 0x00000000}},  //   nına_, fffd_, nóge,\n  { {0x908700a1, 0x7cef1565, 0xde4600a1, 0x00000000}},  //   _زمرے_, _rørs, ریلو_,\n  { {0xeb99004c, 0x7cef00ea, 0xa1580c27, 0x00000000}},  //   чий_, _sørs, _цару_,\n  { {0x291e0036, 0x6f020258, 0x2b4611b1, 0x00000000}},  //   enta_, choc, _choc_,\n  { {0x628f0009, 0x7aeb0be1, 0x2724014a, 0x00000000}},  //   _mdco, _vogt, jına_,\n  { {0x2eed00c7, 0xdb1a0129, 0x78a9003b, 0x00000000}},  //   _hoef_, _està, чког_,\n  { {0xe73a00e3, 0x2d9d00bb, 0x2eed16c5, 0x00000000}},  //   зен_, luwe_, _koef_,\n  { {0x291e002a, 0x27240180, 0x3af80010, 0x00000000}},  //   anta_, fına_, _lépj_,\n  { {0xe3b100a1, 0xdb0301dc, 0x2d9d298f, 0x00000000}},  //   یرِ_, ntní, nuwe_,\n  { {0x9c7c0340, 0xb0ce03d7, 0x628f0253, 0x00000000}},  //   _poči, _होंग, _adco,\n  { {0xb6020224, 0x62840032, 0x79890168, 0x00000000}},  //   _žádn, taio, lsew,\n  { {0x27240180, 0x35a60216, 0x27f80637, 0x00000000}},  //   bına_, _заиг, ørne_,\n  { {0x409601e0, 0x79892990, 0x62840032, 0x00000000}},  // [75a0] ерет, nsew, raio,\n  { {0x9c7c05d2, 0x628400c4, 0x7cf400f6, 0x00000000}},  //   _toči, saio, _tàri,\n  { {0x6f020678, 0x62840197, 0x9c7c0166, 0x00000000}},  //   thoc, paio, _uoči,\n  { {0x44440213, 0xeda60b81, 0xa856009b, 0x00000000}},  //   _iz_, ешко, גיעה_,\n  { {0x4444014a, 0x2d9d0009, 0x64410089, 0x00000000}},  //   _hz_, guwe_, ļlie,\n  { {0x444400ca, 0x6f020e93, 0x6441002b, 0x00000000}},  //   _kz_, shoc, żlie,\n  { {0x44440087, 0x504304cf, 0x2724005d, 0x00000000}},  //   _jz_, _берб, zına_,\n  { {0x44440142, 0x6e961095, 0xe6ca013d, 0x00000000}},  //   _mz_, _سلطا, ियोज,\n  { {0x25660016, 0x443a2595, 0x00000000, 0x00000000}},  //   _nôl_, _lyp_,   ,\n  { {0xf2df00ad, 0x444401d9, 0x291e0197, 0x00000000}},  //   _nhân_, _oz_, unta_,\n  { {0xdb1a2991, 0x80ca0044, 0x76442992, 0x00000000}},  //   _está, রাপ্, _aziy,\n  { {0x2724038c, 0x6d5a04cb, 0xdbc7006c, 0x00000000}},  //   tına_, _hita, _pöör,\n  { {0x44441bc0, 0x7c3a0016, 0x443a2993, 0x00000000}},  //   _az_, _hytr, _ayp_,\n  { {0x2724038c, 0xf2df001d, 0x4444013f, 0x00000000}},  //   rına_, _chân_, _bz_,\n  { {0x6d5a097e, 0x4444101c, 0x2724038c, 0x00000000}},  //   _mita, _cz_, sına_,\n  { {0x6d5a0020, 0x083b00b6, 0x44440036, 0x00000000}},  //   _lita, _מעול, _dz_,\n  { {0x44442994, 0x325502a8, 0x80ca0055, 0x00000000}},  // [75b0] _ez_, твар, রান্,\n  { {0x6d5a000b, 0x44442995, 0x673d074d, 0x00000000}},  //   _nita, _fz_, llsj,\n  { {0x44440c8a, 0x628f0991, 0x8af7006b, 0x00000000}},  //   _gz_, _tdco, _şəmk,\n  { {0x6d5a24c3, 0x3ee4005e, 0x2d9d00d9, 0x00000000}},  //   _aita, лючв, tuwe_,\n  { {0x6d5a022b, 0x444401c5, 0xa2a603d7, 0x00000000}},  //   _bita, _zz_, _छात्,\n  { {0x2d9d0020, 0xdb03013e, 0x2eed01c3, 0x00000000}},  //   ruwe_, rtní, _woef_,\n  { {0x6d5a0149, 0xdb03004f, 0xed0500a1, 0x00000000}},  //   _dita, stní, _یورپ,\n  { {0xe9d90735, 0x8e840025, 0x6d5a006c, 0x00000000}},  //   дки_, _ملفه, _eita,\n  { {0x6d5a2996, 0x2b4d2997, 0x79890009, 0x00000000}},  //   _fita, rmec_, usew,\n  { {0x25660016, 0xd945003b, 0x67360085, 0x00000000}},  //   _rôl_, ђени, _skyj,\n  { {0x79892998, 0x7cf400f6, 0x7d0101e5, 0x00000000}},  //   ssew, _pàrv, _ills,\n  { {0x6d5a2999, 0x444400b4, 0x443a299a, 0x00000000}},  //   _zita, _rz_, _ryp_,\n  { {0x44440010, 0xf2df001d, 0x7ae9299b, 0x00000000}},  //   _sz_, _phân_, mjet,\n  { {0x7ae9045e, 0x81e70055, 0x44440142, 0x00000000}},  //   ljet, বনা_, _pz_,\n  { {0x28a6024c, 0x29050033, 0x3f870035, 0x00000000}},  //   _खाति, mhla_, ânul_,\n  { {0x44440dc6, 0x61e40ec8, 0x7ae90091, 0x00000000}},  //   _vz_, txil, njet,\n  { {0xf2df001d, 0x4444013e, 0x7d010051, 0x00000000}},  // [75c0] _thân_, _wz_, _olls,\n  { {0x443a0410, 0x4444000b, 0x42550679, 0x00000000}},  //   _typ_, _tz_, утст,\n  { {0x44440580, 0x6d5a299c, 0xb0d703d7, 0x00000000}},  //   _uz_, _rita, ठाजग,\n  { {0x6d5a006b, 0x7d01299d, 0x7f490285, 0x00000000}},  //   _sita, _alls, _cheq,\n  { {0x6d5a01cd, 0x7ae9299e, 0x6e3b0009, 0x00000000}},  //   _pita, djet, _cyub,\n  { {0xb5fb0010, 0x656400b0, 0x1d330245, 0x00000000}},  //   tbáz, _muih, анія,\n  { {0x6d5a1844, 0x9fc70081, 0xb5fb0051, 0x00000000}},  //   _vita, _игра_, rcái,\n  { {0x6d5a0046, 0xab2701f9, 0xb5fb002a, 0x00000000}},  //   _wita, која_, scái,\n  { {0x7c3a0036, 0x973d016c, 0x9c7c00ca, 0x00000000}},  //   _wytr, nuće, _soču,\n  { {0x6d5a000d, 0x7afb0b1b, 0x9c7c0465, 0x00000000}},  //   _uita, akut, _poču,\n  { {0xa09b007b, 0x2739299f, 0x7ae90b33, 0x00000000}},  //   וייט, ként_, bjet,\n  { {0x7ae90066, 0x7d1800f8, 0x00000000, 0x00000000}},  //   cjet, livs,   ,\n  { {0x973d0091, 0xceb30049, 0x29050048, 0x00000000}},  //   juće, סיש_, bhla_,\n  { {0x29050142, 0x973d04eb, 0x00000000, 0x00000000}},  //   chla_, duće,   ,\n  { {0xd7ef012b, 0x9388017f, 0xb607000c, 0x00000000}},  //   _ту_, кста_, _bráð,\n  { {0x7d18021c, 0x00000000, 0x00000000, 0x00000000}},  //   hivs,   ,   ,\n  { {0x45d501f9, 0xdb1a0039, 0x973d0091, 0x00000000}},  // [75d0] _сопс, _istä, guće,\n  { {0xc7ad026c, 0x7f490065, 0x27390062, 0x00000000}},  //   _بڑی_, _sheq, rénu_,\n  { {0x7535002b, 0x64450521, 0x6e3b008a, 0x00000000}},  //   mozz, _uzhi, _syub,\n  { {0x753503f1, 0x395c032e, 0xf2df0082, 0x00000000}},  //   lozz, _livs_, _khâm_,\n  { {0x3da70265, 0x41e4008b, 0x7ae90209, 0x00000000}},  //   треб, _кіра, vjet,\n  { {0x4035034b, 0x6b550006, 0x7ae929a0, 0x00000000}},  //   _бегс, _išgi, wjet,\n  { {0x7ae90d00, 0xa3cc03d7, 0x4fc4007c, 0x00000000}},  //   tjet, लिए_, _кста,\n  { {0x49c929a1, 0x00000000, 0x00000000, 0x00000000}},  //   елин_,   ,   ,\n  { {0x7ae91cec, 0x9c7c0161, 0x7cf400f6, 0x00000000}},  //   rjet, _počt, _càrs,\n  { {0x7afb010a, 0x7ae90209, 0x776300d4, 0x00000000}},  //   skut, sjet, _punx,\n  { {0x395c0c3f, 0x7ae929a2, 0x656400b0, 0x00000000}},  //   _divs_, pjet, _suih,\n  { {0x29050107, 0x6f190016, 0x7aa40088, 0x00000000}},  //   shla_, niwc, _виїз,\n  { {0xf2df0011, 0x80ca0044, 0x7cf400f6, 0x00000000}},  //   _châm_, রাত্, _tàrt,\n  { {0x950600a1, 0xc9920025, 0x75350197, 0x00000000}},  //   اہدے_, _الوظ, gozz,\n  { {0x65640022, 0xf2df005b, 0x00000000, 0x00000000}},  //   _wuih, _thâl_,   ,\n  { {0x3169006b, 0xdd8500a1, 0x395c01c5, 0x00000000}},  //   fqaz_, _وڈ_, _zivs_,\n  { {0x91e30113, 0x6f190016, 0x98ac0089, 0x00000000}},  // [75e0] боте, diwc, lodā_,\n  { {0x26c2119a, 0x27390181, 0x5156041f, 0x00000000}},  //   leko_, béns_, утбу,\n  { {0xdb1a021e, 0x6f190016, 0x7648006b, 0x00000000}},  //   _ystä, fiwc, ədya,\n  { {0x26c2022b, 0x6e460014, 0x973d04eb, 0x00000000}},  //   neko_, هنام, puće,\n  { {0xa3cc02d2, 0x7d1804d3, 0x628601c5, 0x00000000}},  //   लिक_, tivs, _ieko,\n  { {0x26c2002d, 0x6b81005b, 0x00000000, 0x00000000}},  //   heko_, _bwlg,   ,\n  { {0x26c2002d, 0x628601a3, 0x7d1800f8, 0x00000000}},  //   keko_, _keko, rivs,\n  { {0x7cf404bd, 0x6f190696, 0x62860173, 0x00000000}},  //   _càrr, ciwc, _jeko,\n  { {0x26c2022b, 0xbef700b6, 0xd90d00a1, 0x00000000}},  //   deko_, _עצמו_, ڈین_,\n  { {0x57b40d03, 0x62861397, 0xd90d00a6, 0x00000000}},  //   абот, _leko, وین_,\n  { {0xeb971376, 0x3942001e, 0xdb030161, 0x00000000}},  //   _бих_, ēks_, stná,\n  { {0x62860119, 0x26c21786, 0x3ea60b5a, 0x00000000}},  //   _neko, geko_, ngot_,\n  { {0xf2df0011, 0x00000000, 0x00000000, 0x00000000}},  //   _giây_,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x62861359, 0x753529a3, 0x26c2002d, 0x00000000}},  //   _beko, rozz, beko_,\n  { {0x41e70245, 0xf2df0011, 0x80a7006e, 0x00000000}},  //   ліза, _thâm_, _चाहे,\n  { {0x628629a4, 0x161c007d, 0x925900ed, 0x00000000}},  // [75f0] _deko, _पेपर_, таат_,\n  { {0x1007007c, 0x7cfd000a, 0x00000000, 0x00000000}},  //   ляем, _pèrm,   ,\n  { {0x155a009b, 0x997600b4, 0x00000000, 0x00000000}},  //   _שכתב, nęły_,   ,\n  { {0x62862295, 0xa26402dc, 0xa77b01ce, 0x00000000}},  //   _geko, _гърл, גראפ,\n  { {0x6f190016, 0x80d00061, 0x00000000, 0x00000000}},  //   riwc, _डोके,   ,\n  { {0x26c2022b, 0xeb9900ed, 0xe3b00167, 0x00000000}},  //   zeko_, вик_, _بری_,\n  { {0x1d06005e, 0x62860045, 0x26c200e7, 0x00000000}},  //   рещи_, _yeko, yeko_,\n  { {0xdab9007e, 0x26c2002d, 0x2418009b, 0x00000000}},  //   тыкі_, xeko_, טחון_,\n  { {0x6ca706b4, 0x31af01df, 0x09050088, 0x00000000}},  //   _مصال, nüz_, ипин,\n  { {0xbc680054, 0x29030047, 0x6b451261, 0x00000000}},  //   _ممكن_, ója_, cógn,\n  { {0x26c20756, 0x7b17001a, 0x7cf40129, 0x00000000}},  //   teko_, lţum, _tàrr,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xd8f5007a, 0x26c2022b, 0x38ca0014, 0x00000000}},  //   _پزشک, reko_, رایی_,\n  { {0x6286020c, 0x26c2002d, 0x64a601fc, 0x00000000}},  //   _seko, seko_, јава,\n  { {0x07a501e0, 0x26c2002d, 0x62861d9c, 0x00000000}},  //   _тайн, peko_, _peko,\n  { {0x0566034b, 0x69d90d13, 0x973d012d, 0x00000000}},  //   _квин, _krwe, rućc,\n  { {0x62860255, 0x00000000, 0x00000000, 0x00000000}},  // [7600] _veko,   ,   ,\n  { {0xe04601fc, 0xb05a0025, 0xdb03006c, 0x00000000}},  //   анзи, نشاط_, ltnä,\n  { {0x62862001, 0xc05901fb, 0x9e66132e, 0x00000000}},  //   _teko, гії_, авед,\n  { {0xf9870558, 0x69d9005b, 0x88bc00b9, 0x00000000}},  //   _وب_, _orwe, jněn,\n  { {0x3ea600ab, 0x88bc00b9, 0x7b170035, 0x00000000}},  //   rgot_, dněn, rţul,\n  { {0x80ca0055, 0x7cf400d4, 0x3ea6011c, 0x00000000}},  //   রাহ্, _pàrq, sgot_,\n  { {0x69d9018e, 0xb5fb0181, 0x69cb1506, 0x00000000}},  //   _arwe, ncár, _asge,\n  { {0xbea3008b, 0x539b0104, 0x00000000, 0x00000000}},  //   _маск, דיקו,   ,\n  { {0x6c96067a, 0x5ca600e2, 0x38c80014, 0x00000000}},  //   _نشاط, _визб, هادی_,\n  { {0x7f421003, 0xd90e0167, 0x2732139d, 0x00000000}},  //   lloq, بیت_, mány_,\n  { {0x69d9001f, 0x473529a5, 0x60d90049, 0x00000000}},  //   _erwe, йнос, אַרג,\n  { {0x88bc00b9, 0x2bd30061, 0x7bda01f3, 0x00000000}},  //   cněn, थिरा, _irtu,\n  { {0xceb300b6, 0x63be0061, 0x7ae20035, 0x00000000}},  //   חיר_, _appn, _inot,\n  { {0xd90e0014, 0xb0d501f5, 0x63be0022, 0x00000000}},  //   _آید_, _डोंग, _bppn,\n  { {0xd7fa098c, 0x27320047, 0xd79401b7, 0x00000000}},  //   _јул_, hány_, _البخ,\n  { {0xe7050167, 0xdb1a1374, 0x00000000, 0x00000000}},  //   _دستی, _astú,   ,\n  { {0x2067003b, 0x00000000, 0x00000000, 0x00000000}},  // [7610] ађев,   ,   ,\n  { {0x7bda1293, 0x88bc00b9, 0x27321416, 0x00000000}},  //   _ortu, zněn, dány_,\n  { {0xa267005e, 0x31af019a, 0x83f916e8, 0x00000000}},  //   _въгл, süz_, _сенс_,\n  { {0xa857009b, 0xdb1a29a6, 0x80ca0044, 0x00000000}},  //   ביבה_, _estú, রাষ্,\n  { {0xd087007c, 0x88bc00b9, 0x6b6a0036, 0x00000000}},  //   _выби, vněn, _węgl,\n  { {0x7ae20038, 0xfbd10025, 0x6448002b, 0x00000000}},  //   _anot, كتب_, żdie,\n  { {0x7f42009d, 0x88bc00b9, 0x4ea700ed, 0x00000000}},  //   bloq, tněn, _врза,\n  { {0xcac90057, 0xdb030065, 0x7cfd00d4, 0x00000000}},  //   угие_, munë, _mèri,\n  { {0x88bc00b9, 0x80ca0044, 0x7bda29a7, 0x00000000}},  //   rněn, রার্, _ertu,\n  { {0x60c5010f, 0x7ae20059, 0x09050088, 0x00000000}},  //   nehm, _enot, спон,\n  { {0xdab9008b, 0x88bc00b9, 0xd90d0014, 0x00000000}},  //   _былі_, mněl, ویچ_,\n  { {0x6d430039, 0x0a18007a, 0x7ae229a8, 0x00000000}},  //   llna, افیک_, _gnot,\n  { {0xe8ee01c0, 0x69d90009, 0x7cfd00d4, 0x00000000}},  //   _ел_, _urwe, _aèri,\n  { {0x07f906dd, 0x69c929a9, 0x7ae20059, 0x00000000}},  //   _مربع_, mwee, _znot,\n  { {0x68fc06d3, 0xe29a019d, 0x6d4329aa, 0x00000000}},  //   örde, лав_, ilna,\n  { {0x6aa9010f, 0x7cfd00f6, 0xfdf90061, 0x00000000}},  //   ngef, _dèri, ्नास_,\n  { {0x9c82010a, 0x69c90116, 0xb5fb008e, 0x00000000}},  // [7620] ščia, nwee, scár,\n  { {0x26d2000b, 0x343a0188, 0x27320f49, 0x00000000}},  //   _hayo_, _مسجد_, vány_,\n  { {0x26d2006a, 0x63be092e, 0x4aa7006e, 0x00000000}},  //   _kayo_, _uppn, _गांव,\n  { {0x69c90328, 0xbea60259, 0x273229ab, 0x00000000}},  //   kwee, садк, tány_,\n  { {0x26d20219, 0xdd8f0d3a, 0x6da329ac, 0x00000000}},  //   _mayo_, فون_, зича,\n  { {0xd132023c, 0x69c929ad, 0x7ae201d6, 0x00000000}},  //   _رمز_, dwee, _snot,\n  { {0x8fa30072, 0xb60601d9, 0x973d0091, 0x00000000}},  //   _наре, lišč, dućn,\n  { {0x68e301aa, 0x26d20020, 0x49740256, 0x00000000}},  //   _annd, _nayo_, олис,\n  { {0x69c901d6, 0xdce20091, 0x3eb3006b, 0x00000000}},  //   gwee, spođ, əxt_,\n  { {0xa2da02d2, 0x973d0119, 0xdd8f0054, 0x00000000}},  //   _पोस्, gućn, _أول_,\n  { {0x290702a9, 0x26d210d2, 0x06e4006e, 0x00000000}},  //   _dlna_, _bayo_, गांव_,\n  { {0x26d2008e, 0x290724cf, 0x6f020253, 0x00000000}},  //   _cayo_, _elna_, nkoc,\n  { {0xe8940194, 0x7afd29ae, 0x7cfd0129, 0x00000000}},  //   _даль, öste, _sèri,\n  { {0xb60601d9, 0xf76f007a, 0x7cfd00f6, 0x00000000}},  //   dišč, بای_, _pèri,\n  { {0x291e001a, 0x249f005a, 0xf1bf0c38, 0x00000000}},  //   mita_, ğum_, _spá_,\n  { {0x291e29af, 0x26d20058, 0x249f019a, 0x00000000}},  //   lita_, _gayo_, şum_,\n  { {0x7d080056, 0x291e00b0, 0x50f50d73, 0x00000000}},  // [7630] _olds, oita_, озат,\n  { {0x291e0149, 0x764d0173, 0x83190014, 0x00000000}},  //   nita_, _izay, _چقدر_,\n  { {0x26d20009, 0x6f0201a2, 0x291e00e7, 0x00000000}},  //   _yayo_, fkoc, iita_,\n  { {0x291e001a, 0x141a009b, 0x7d1a29b0, 0x00000000}},  //   hita_, _כותב, _amts,\n  { {0x291e006a, 0xdd9b0184, 0x7cfd000a, 0x00000000}},  //   kita_, уше_, _mèrv,\n  { {0x21ba0049, 0xdb03040a, 0x672d01ee, 0x00000000}},  //   _דזשא, muné, _ljaj,\n  { {0x81bb0055, 0xdd9100a1, 0xf53f05fe, 0x00000000}},  //   _আছি_, سوں_, mråd_,\n  { {0x69c90038, 0x7d0829b1, 0x29070082, 0x00000000}},  //   twee, _elds, _slna_,\n  { {0x6aa900db, 0xae160061, 0x26d2008e, 0x00000000}},  //   rgef, _देऊन_, _rayo_,\n  { {0x291e236a, 0x26d229b2, 0x69c900c7, 0x00000000}},  //   gita_, _sayo_, rwee,\n  { {0xb17b0073, 0x69c90007, 0x6f09013e, 0x00000000}},  //   _fråg, swee, _klec,\n  { {0xe73a00ed, 0xf2df0011, 0x7cfd00f6, 0x00000000}},  //   рем_, _khâu_, _cèrv,\n  { {0x291e001a, 0x672d1c70, 0x6f0900b4, 0x00000000}},  //   bita_, _djaj, _mlec,\n  { {0x291e0207, 0x26d20009, 0x6f090016, 0x00000000}},  //   cita_, _wayo_, _llec,\n  { {0x26d2006a, 0xc746023c, 0x764d01aa, 0x00000000}},  //   _tayo_, _وضعي, _ezay,\n  { {0xa22a00e3, 0xb6060059, 0x98ac0a52, 0x00000000}},  //   ажба_, tišč, rodą_,\n  { {0x256f005d, 0x88bc00b9, 0xdce0001a, 0x00000000}},  // [7640] _gül_, dněj, _jumă,\n  { {0x33290061, 0x6f090adb, 0xf53f044f, 0x00000000}},  //   anax_, _alec, står_,\n  { {0x753c29b3, 0x6f0929b4, 0xdfd20025, 0x00000000}},  //   morz, _blec, بيض_,\n  { {0x291e29b5, 0x444424a8, 0x290c29b6, 0x00000000}},  //   zita_, _iy_, zhda_,\n  { {0x44441273, 0xf2df001d, 0x6f0200b5, 0x00000000}},  //   _hy_, _châu_, rkoc,\n  { {0x4444008d, 0x291e022b, 0x6f020036, 0x00000000}},  //   _ky_, xita_, skoc,\n  { {0x44441273, 0x6f0929b7, 0x88bc00b9, 0x00000000}},  //   _jy_, _flec, bněj,\n  { {0x44440b8d, 0xaec304ef, 0x39450129, 0x00000000}},  //   _my_, _обсл, ells_,\n  { {0x291e1825, 0x44440011, 0x753c0046, 0x00000000}},  //   tita_, _ly_, korz,\n  { {0x44441be4, 0xeb9a0265, 0x672d0091, 0x00000000}},  //   _oy_, _виж_, _sjaj,\n  { {0x444404d7, 0x291e020c, 0xe1ff0011, 0x00000000}},  //   _ny_, rita_, _ngón_,\n  { {0x3869014a, 0x76440045, 0xdce000e5, 0x00000000}},  //   _şart_, _byiy, _fumă,\n  { {0x44440811, 0x291e000b, 0x753c2777, 0x00000000}},  //   _ay_, pita_, forz,\n  { {0x44440a8a, 0x657d0023, 0xe4e403e8, 0x00000000}},  //   _by_, rpsh, місн,\n  { {0x444429b8, 0x987b00a3, 0x00000000, 0x00000000}},  //   _cy_, _דרוק,   ,\n  { {0x444429b9, 0xf2df0082, 0x68f80ccc, 0x00000000}},  //   _dy_, _nhât_, _hovd,\n  { {0x44440890, 0x88bc00b9, 0x33290066, 0x00000000}},  // [7650] _ey_, vněj, rnax_,\n  { {0xd49b0081, 0x4444018e, 0x6f0902ae, 0x00000000}},  //   _три_, _fy_, _slec,\n  { {0x6f09000d, 0x44440010, 0x656d29ba, 0x00000000}},  //   _plec, _gy_, _huah,\n  { {0x656d0020, 0xf53f29bb, 0x68f800ea, 0x00000000}},  //   _kuah, sråd_, _lovd,\n  { {0x7bc1184b, 0x237f0091, 0x39450203, 0x00000000}},  //   _splu, ćuju_, ylls_,\n  { {0x44440095, 0x656d0145, 0x88bc00b9, 0x00000000}},  //   _yy_, _muah, sněj,\n  { {0x6b4529bc, 0x4bd9008b, 0xcfb4005e, 0x00000000}},  //   lógi, сьля_, _обръ,\n  { {0xb17b0c73, 0x6f1b0061, 0xf2df0082, 0x00000000}},  //   _tråd, _umuc, _thâu_,\n  { {0x3b0d0023, 0x443300e5, 0x60d50095, 0x00000000}},  //   rheq_, _lxx_, _kazm,\n  { {0x2fc30009, 0x23cb0164, 0x60d5113f, 0x00000000}},  //   _kpjg_, ाबाद, _jazm,\n  { {0x6d41020c, 0x753c29bd, 0x68f8016c, 0x00000000}},  //   _ikla, vorz, _dovd,\n  { {0x444429be, 0x753c0046, 0x656d01a3, 0x00000000}},  //   _ry_, worz, _buah,\n  { {0x444429bf, 0x753c0036, 0x7cfd00f6, 0x00000000}},  //   _sy_, torz, _fèrt,\n  { {0x44440541, 0xb97a034e, 0x60d529c0, 0x00000000}},  //   _py_, _הנסי, _nazm,\n  { {0x638602d9, 0x987a0049, 0x44330009, 0x00000000}},  //   ягва, _פאקט, _cxx_,\n  { {0x444429c1, 0xe363003b, 0xfe6500a1, 0x00000000}},  //   _vy_, екси, _لگ_,\n  { {0x753c0a19, 0x6b4500fd, 0x4444275d, 0x00000000}},  // [7660] porz, gógi, _wy_,\n  { {0x4444001d, 0x3ebf00e0, 0xd24f0025, 0x00000000}},  //   _ty_, _abut_, انك_,\n  { {0x44440011, 0x09b70044, 0x0019007e, 0x00000000}},  //   _uy_, জিটা, оўцы_,\n  { {0x6d41011c, 0xb17b0190, 0xfbc30044, 0x00000000}},  //   _akla, _dråb, ্মাত,\n  { {0x62840845, 0x26c00020, 0x443300f6, 0x00000000}},  //   mbio, _mbio_, _zxx_,\n  { {0x60d500af, 0x29052270, 0x26c000d9, 0x00000000}},  //   _gazm, jkla_, _lbio_,\n  { {0x44330027, 0x69c200c7, 0x68f80c73, 0x00000000}},  //   _xxx_, _spoe, _rovd,\n  { {0x6d410173, 0x79a610f3, 0x62840032, 0x00000000}},  //   _ekla, прое, nbio,\n  { {0x6da30bbd, 0x60d501f6, 0x7afd29c2, 0x00000000}},  //   _пита, _yazm, östa,\n  { {0x290a0c59, 0x26c028dc, 0x80ca0044, 0x00000000}},  //   óba_, _abio_, রাক্,\n  { {0x656d00f6, 0x673d29c3, 0x6c4a0025, 0x00000000}},  //   _suah, tosj, _الاف_,\n  { {0x6d41013e, 0xb34700fa, 0x00000000, 0x00000000}},  //   _zkla, _maçô,   ,\n  { {0xb0ac001c, 0x673d0292, 0xcb1300b3, 0x00000000}},  //   _चांग, rosj, _אלף_,\n  { {0x2ec90183, 0x38c8026c, 0x29050039, 0x00000000}},  //   _रस्त, _ذاتی_, ckla_,\n  { {0x60d5092f, 0x58bb00b6, 0x88bb009b, 0x00000000}},  //   _razm, _המוצ, _המוז,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xd234005e, 0x26cb0082, 0x60f9007e, 0x00000000}},  // [7670] ентъ, meco_, оная_,\n  { {0x26cb0c8f, 0x60d5013f, 0x00000000, 0x00000000}},  //   leco_, _qazm,   ,\n  { {0x62840197, 0x20071db2, 0x7bdc0010, 0x00000000}},  //   bbio, áni_, _áruh,\n  { {0x6d410410, 0x200701d5, 0x26cb12dd, 0x00000000}},  //   _skla, ġni_, neco_,\n  { {0x200701ae, 0x9f5c0f49, 0xa1590140, 0x00000000}},  //   šni_, ává_, _маму_,\n  { {0xee38111f, 0x26cb00fa, 0x628f005b, 0x00000000}},  //   чні_, heco_, _heco,\n  { {0x7af90036, 0x628f003f, 0x6d4104bb, 0x00000000}},  //   _powt, _keco, _vkla,\n  { {0x64410046, 0x7cfd1b43, 0x26cb29c4, 0x00000000}},  //   żliw, _pèrs, jeco_,\n  { {0xc27c009b, 0x00000000, 0x00000000, 0x00000000}},  //   זרחי,   ,   ,\n  { {0x480501fb, 0x27390a50, 0x6d4109fc, 0x00000000}},  //   дпов, mény_, _ukla,\n  { {0x629d018b, 0xa6ca00e3, 0x26cb004a, 0x00000000}},  //   _odso, олна_, feco_,\n  { {0x628f001a, 0xeab00025, 0x3eaf0026, 0x00000000}},  //   _neco, _معه_, nggt_,\n  { {0xdb1a0253, 0xe8f50025, 0xe6170088, 0x00000000}},  //   _estó, _يستخ, ддя_,\n  { {0xd82501fc, 0x628f00f6, 0x629d0133, 0x00000000}},  //   _одли, _aeco, _adso,\n  { {0x04430057, 0x628f0038, 0x62840066, 0x00000000}},  //   верн, _beco, tbio,\n  { {0x26c00091, 0x26cb064e, 0x00000000, 0x00000000}},  //   _ubio_, ceco_,   ,\n  { {0x628f0335, 0xa09a0025, 0x629d012d, 0x00000000}},  // [7680] _deco, قضاء_, _ddso,\n  { {0x629d0181, 0x8cbf013d, 0x628400f8, 0x00000000}},  //   _edso, ल्मो, sbio,\n  { {0x628f0197, 0x6b450010, 0x00000000, 0x00000000}},  //   _feco, lógu,   ,\n  { {0x628f00b5, 0x61e9040d, 0x00000000, 0x00000000}},  //   _geco, _šele,   ,\n  { {0x27390344, 0x00000000, 0x00000000, 0x00000000}},  //   gény_,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x69dd05df, 0x00000000, 0x00000000, 0x00000000}},  //   æsen,   ,   ,\n  { {0x26cb02d0, 0x00000000, 0x00000000, 0x00000000}},  //   xeco_,   ,   ,\n  { {0x26cb0035, 0xbebd0006, 0x00000000, 0x00000000}},  //   veco_, _smūg,   ,\n  { {0xcce6067a, 0x973d016c, 0xc7ba01ab, 0x00000000}},  //   _تسري, mući, оём_,\n  { {0x7c650054, 0x26cb00c4, 0xdb0a0039, 0x00000000}},  //   _كامل, teco_, ttfä,\n  { {0x6d4a0090, 0xdb1a1c88, 0x00000000, 0x00000000}},  //   llfa, _estò,   ,\n  { {0x276802fd, 0xb5fb004a, 0x6b450010, 0x00000000}},  //   _کشتی_, lcáz, gógu,\n  { {0x628f06da, 0xdb0a09b0, 0x629d0087, 0x00000000}},  //   _seco, stfä, _sdso,\n  { {0x628f0197, 0x3eaf092e, 0x273901ca, 0x00000000}},  //   _peco, yggt_, zény_,\n  { {0xe667025f, 0x35b52547, 0x973d0243, 0x00000000}},  //   _отпо, _збир, kući,\n  { {0x443f0036, 0x973d0091, 0x00000000, 0x00000000}},  // [7690] łu_, jući,   ,\n  { {0x7b17001a, 0xc5f2009b, 0x27390010, 0x00000000}},  //   nţur, _עדי_, vény_,\n  { {0x44270073, 0xb4cb0061, 0x35f80167, 0x00000000}},  //   _än_, ळजी_, _فرید_,\n  { {0x629d0030, 0xe0cf0044, 0x8db50088, 0x00000000}},  //   _udso, রাইভ, ескі,\n  { {0x973d0091, 0x31790049, 0x427a0097, 0x00000000}},  //   gući, _מאָד, _מארג,\n  { {0xabd500ec, 0x78710010, 0x00000000, 0x00000000}},  //   ециј, _művé,   ,\n  { {0xac0902be, 0x00000000, 0x00000000, 0x00000000}},  //   янка_,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x1d35005e, 0x00000000, 0x00000000, 0x00000000}},  //   _зная,   ,   ,\n  { {0x3f68005d, 0x00000000, 0x00000000, 0x00000000}},  //   _uğur_,   ,   ,\n  { {0x80ca0044, 0x00000000, 0x00000000, 0x00000000}},  //   রাচ্,   ,   ,\n  { {0x290e0edb, 0x2d8d0022, 0x6448010e, 0x00000000}},  //   _elfa_, _kwee_, üdim,\n  { {0x7e7b0020, 0xaa07023c, 0x7aeb0145, 0x00000000}},  //   _mfup, _تظاه, _ingt,\n  { {0x25740073, 0xa0000044, 0x00000000, 0x00000000}},  //   _väl_, _এইসব_,   ,\n  { {0xa3e7007e, 0xd3720076, 0xdddb0c6e, 0x00000000}},  //   ндра_, اهر_, _neuž,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xcb12007b, 0x05770025, 0x00000000, 0x00000000}},  // [76a0] אלן_, _كمية_,   ,\n  { {0x6606068f, 0x00000000, 0x00000000, 0x00000000}},  //   mykk,   ,   ,\n  { {0x66060030, 0x24b70049, 0xa4b7009b, 0x00000000}},  //   lykk, _אהין_, _אליה_,\n  { {0x216a004c, 0x6710007d, 0x00000000, 0x00000000}},  //   _ними_, ासिक_,   ,\n  { {0x6296020e, 0x6e9303ec, 0xfd79009e, 0x00000000}},  //   mayo, الها, وشوں_,\n  { {0x6296011c, 0x3d1900a1, 0x7aeb00e0, 0x00000000}},  //   layo, وٹنگ_, _angt,\n  { {0x1fb503f3, 0xdb03120f, 0x00000000, 0x00000000}},  //   _истр, stný,   ,\n  { {0xa06717be, 0x6e930054, 0x6296000b, 0x00000000}},  //   _часа_, _ملفا, nayo,\n  { {0x88bc00b9, 0x95ef013d, 0x80d30044, 0x00000000}},  //   knět, _चपेट_, সার্,\n  { {0x629600e0, 0x7b150325, 0x00000000, 0x00000000}},  //   hayo, _náuf,   ,\n  { {0xf53f0039, 0x62960020, 0x60c1014a, 0x00000000}},  //   från_, kayo, _ölme,\n  { {0xca76007e, 0x00000000, 0x00000000, 0x00000000}},  //   _чужы,   ,   ,\n  { {0x6296011c, 0x00000000, 0x00000000, 0x00000000}},  //   dayo,   ,   ,\n  { {0x290e0022, 0x63a129c5, 0x00000000, 0x00000000}},  //   _ulfa_, álno,   ,\n  { {0xa295008b, 0x00000000, 0x00000000, 0x00000000}},  //   каві,   ,   ,\n  { {0x6296011c, 0xdb180142, 0xdce101c5, 0x00000000}},  //   gayo, ftvé, _milā,\n  { {0x4ac2007d, 0x00000000, 0x00000000, 0x00000000}},  // [76b0] व्यव,   ,   ,\n  { {0x3375007c, 0xb17b0039, 0x6b4500d6, 0x00000000}},  //   _игор, _från, nógr,\n  { {0x62960b9a, 0x2d8d0145, 0x394c06ed, 0x00000000}},  //   bayo, _swee_, ilds_,\n  { {0xfe700076, 0x539a00a0, 0x6296004a, 0x00000000}},  //   مده_, _קירו, cayo,\n  { {0xa69c0049, 0x00000000, 0x00000000, 0x00000000}},  //   לשאפ,   ,   ,\n  { {0x313501ee, 0xe1ff0082, 0x00000000, 0x00000000}},  //   _регр, _ngói_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x2d8d0100, 0x2bc2001c, 0x7e7b00e7, 0x00000000}},  //   _twee_, _शहरा, _ufup,\n  { {0x0edd013d, 0x6b450048, 0x7e6411af, 0x00000000}},  //   _नोएड, fógr, žipr,\n  { {0x6296000a, 0xb0c7007e, 0x00000000, 0x00000000}},  //   zayo, дпiс,   ,\n  { {0xe73a0113, 0xab8415c4, 0x3cfa0049, 0x00000000}},  //   ден_, _бучк, _קלענ,\n  { {0x6d430006, 0xfbd200b3, 0x6606004e, 0x00000000}},  //   lona, _כתב_, tykk,\n  { {0xaa880025, 0x62960095, 0x00000000, 0x00000000}},  //   _أنهم_, vayo,   ,\n  { {0x290b001e, 0x2b4d29c6, 0x2b400247, 0x00000000}},  //   īcas_, llec_, čice_,\n  { {0x62960058, 0x6d4300e5, 0xa8480025, 0x00000000}},  //   tayo, iona, _كلهم_,\n  { {0x2d80000d, 0x6d43027e, 0xf772009b, 0x00000000}},  //   ţiei_, hona, _דקה_,\n  { {0x6d4329c7, 0x973d0166, 0x629629c8, 0x00000000}},  // [76c0] kona, guću, rayo,\n  { {0x6d4301d5, 0x62960ee4, 0xb17b00f8, 0x00000000}},  //   jona, sayo, _trån,\n  { {0xf9f90055, 0x3f9c00f4, 0x629609d7, 0x00000000}},  //   েছিল_, évu_, payo,\n  { {0xbe660379, 0xa856009b, 0x8fa3007e, 0x00000000}},  //   نهاي, דיעה_, раце,\n  { {0x6d431b78, 0x9db700b8, 0xdb03005b, 0x00000000}},  //   fona, ندوز_, ernï,\n  { {0x80c102d2, 0x6b550006, 0x30760098, 0x00000000}},  //   र्दे, _išgy, _шумс,\n  { {0x60dc29c9, 0x5edd0061, 0x00000000, 0x00000000}},  //   _iarm, _नोकऱ,   ,\n  { {0x60dc0010, 0x443a0026, 0x24980d78, 0x00000000}},  //   _harm, _mxp_, harm_,\n  { {0x6d430207, 0x6b45029d, 0x6f000051, 0x00000000}},  //   bona, tógr, _iomc,\n  { {0x6d430129, 0x998d0036, 0x00000000, 0x00000000}},  //   cona, dzeń_,   ,\n  { {0x60dc014a, 0x645a000c, 0x394c0133, 0x00000000}},  //   _marm, ýtil, rlds_,\n  { {0x60dc21ba, 0x752700b5, 0x7c3a002b, 0x00000000}},  //   _larm, wijz, _ixtr,\n  { {0x6f0302d5, 0x249801c5, 0xcb6700ed, 0x00000000}},  //   ênci, farm_, _раце_,\n  { {0x06240ae0, 0x00000000, 0x00000000, 0x00000000}},  //   рфюм,   ,   ,\n  { {0x61e60006, 0x752700bb, 0x18a300ec, 0x00000000}},  //   _arkl, rijz, _тајм,\n  { {0x6d4302d5, 0x6f0001ee, 0x237e0010, 0x00000000}},  //   zona, _nomc, ítja_,\n  { {0x443a0011, 0x998d0036, 0x6d4329ca, 0x00000000}},  // [76d0] _exp_, czeń_, yona,\n  { {0x2eff01aa, 0x67240091, 0x6d430288, 0x00000000}},  //   _souf_, _zmij, xona,\n  { {0x60dc0046, 0x6d430010, 0x61e629cb, 0x00000000}},  //   _darm, vona, _erkl,\n  { {0x6d48066b, 0x6d5a2032, 0x224b0039, 0x00000000}},  //   _akda, _ahta, _tyck_,\n  { {0x6d430429, 0x60dc1d7a, 0xddc5007c, 0x00000000}},  //   tona, _farm, убли,\n  { {0x3f47006c, 0x621a0104, 0x00000000, 0x00000000}},  //   tõus_, _טורק,   ,\n  { {0x5f94029b, 0x8b94008b, 0x6f000145, 0x00000000}},  //   _вист, арыч, _fomc,\n  { {0xe9d906c4, 0x6d430238, 0x2ca90477, 0x00000000}},  //   еки_, sona, şad_,\n  { {0x6d4329cc, 0x60dc006b, 0x764d00e7, 0x00000000}},  //   pona, _yarm, _nyay,\n  { {0x67240243, 0x7c3a0066, 0x60dc0032, 0x00000000}},  //   _smij, _fxtr, _xarm,\n  { {0xd825007c, 0x00000000, 0x00000000, 0x00000000}},  //   удни,   ,   ,\n  { {0x249829cd, 0x764d0009, 0x6813006b, 0x00000000}},  //   warm_, _byay, nədə,\n  { {0x6440006b, 0x7d0105ad, 0x764d0009, 0x00000000}},  //   əmiy, _kols, _cyay,\n  { {0x7afb20b9, 0x69d9002b, 0x998d0036, 0x00000000}},  //   ljut, _iswe, rzeń_,\n  { {0xa6c90044, 0x998d0036, 0x6813006b, 0x00000000}},  //   ষয়ট, szeń_, kədə,\n  { {0x7afb0149, 0x672410ec, 0x61e60087, 0x00000000}},  //   njut, _umij, _prkl,\n  { {0x60dc11a1, 0xdb0a29ce, 0x00000000, 0x00000000}},  // [76e0] _parm, énés,   ,\n  { {0x69d9000a, 0x7afb010e, 0x6f0000e5, 0x00000000}},  //   _mswe, hjut, _somc,\n  { {0x60dc021e, 0xdee60069, 0x94bb009b, 0x00000000}},  //   _varm, ложи, _אמית,\n  { {0xee3a008b, 0x69cb049b, 0x6d5a008d, 0x00000000}},  //   нне_, _opge, _shta,\n  { {0x7d010489, 0x7afb05fa, 0x60dc006c, 0x00000000}},  //   _bols, djut, _tarm,\n  { {0x7d01001c, 0x394502d0, 0xfbd20025, 0x00000000}},  //   _cols, jols_, متع_,\n  { {0x61e40ff8, 0x6f000142, 0x79820036, 0x00000000}},  //   lvil, _tomc, _stow,\n  { {0x61e4010e, 0x290300f8, 0x25a0000a, 0x00000000}},  //   ovil, öjan_, _ovil_,\n  { {0xe7e30044, 0x391402b8, 0xee37005e, 0x00000000}},  //   মহোয, имир, _бнт_,\n  { {0x41bb007b, 0xd90e0752, 0x7d010066, 0x00000000}},  //   עציע, ثیت_, _gols,\n  { {0x61e400b0, 0xac970025, 0x3b862194, 0x00000000}},  //   hvil, _إنما_, _слег,\n  { {0x7bda0ac2, 0xd6db0245, 0x61e4000c, 0x00000000}},  //   _istu, хто_, kvil,\n  { {0x776d027b, 0x394529cf, 0xdce819ca, 0x00000000}},  //   _viax, bols_, _lidč,\n  { {0x61e40006, 0x69c00006, 0xdb1a00c4, 0x00000000}},  //   dvil, mtme, _estô,\n  { {0xa87b009b, 0x6813006b, 0x25a000ab, 0x00000000}},  //   _ארוח, yədə, _evil_,\n  { {0x2bac0316, 0x2d840107, 0x69c00007, 0x00000000}},  //   _घटना, _otme_, otme,\n  { {0x69c00129, 0xdb0300c4, 0x764d00e0, 0x00000000}},  // [76f0] ntme, sunç, _uyay,\n  { {0x69c01d9e, 0x926800c0, 0x7bda006c, 0x00000000}},  //   itme, урса_, _ostu,\n  { {0x7d010112, 0x69c0006c, 0xff0702be, 0x00000000}},  //   _rols, htme, лядн,\n  { {0x2d9d0061, 0x00000000, 0x00000000, 0x00000000}},  //   tswe_,   ,   ,\n  { {0x7d010667, 0x7bda03a4, 0x628d015e, 0x00000000}},  //   _pols, _astu, mbao,\n  { {0xfce5004c, 0x69c00302, 0x628d0032, 0x00000000}},  //   роко, dtme, lbao,\n  { {0x7d0100c7, 0x6114003b, 0x20c4007e, 0x00000000}},  //   _vols, _удру, _усяг,\n  { {0x69c029d0, 0x7d0100b4, 0x7bda0085, 0x00000000}},  //   ftme, _wols, _dstu,\n  { {0x7bda0325, 0x7afb0004, 0x7d01016c, 0x00000000}},  //   _estu, rjut, _tols,\n  { {0x2b400247, 0x7afb01c2, 0x61e90066, 0x00000000}},  //   čica_, sjut, _ġell,\n  { {0x69c000ab, 0x394512a0, 0xb17b0039, 0x00000000}},  //   atme, rols_, _bråk,\n  { {0x394500d4, 0xf74601fb, 0x9666003b, 0x00000000}},  //   sols_, ремо, икне,\n  { {0xe7370764, 0x69d921a4, 0x394525e9, 0x00000000}},  //   рея_, _uswe, pols_,\n  { {0x2ed2013d, 0x7c3829d1, 0x00000000, 0x00000000}},  //   _सस्त, _çarç,   ,\n  { {0xe29a012b, 0x232a0143, 0xdb03010e, 0x00000000}},  //   кав_, вови_, punä,\n  { {0x61e40232, 0x25a000ea, 0x628d0058, 0x00000000}},  //   tvil, _tvil_, gbao,\n  { {0x64a6026b, 0x61e4009d, 0xc693009b, 0x00000000}},  // [7700] _капа, uvil, _ואח_,\n  { {0x61e4225c, 0x0ce00044, 0xa0a607e1, 0x00000000}},  //   rvil, _বক্ত, ражд,\n  { {0x98be0089, 0x00000000, 0x00000000, 0x00000000}},  //   notā_,   ,   ,\n  { {0x539b00b6, 0x9c7c0340, 0x00000000, 0x00000000}},  //   _ביטו, _mače,   ,\n  { {0xd8380059, 0x69c0211e, 0x1ea90379, 0x00000000}},  //   mače_, xtme, طاني_,\n  { {0xd838016e, 0x5ba6030d, 0x00000000, 0x00000000}},  //   lače_, ариз,   ,\n  { {0xed57012b, 0x9c7c0340, 0x00000000, 0x00000000}},  //   јој_, _nače,   ,\n  { {0x7bda004f, 0xa3e7006e, 0x2ba7013d, 0x00000000}},  //   _vstu, पित_, _गिरा,\n  { {0xb997216a, 0x69c022b1, 0x3f68005d, 0x00000000}},  //   авых_, utme, _oğuz_,\n  { {0x69c00038, 0xdde9007a, 0x57b4007c, 0x00000000}},  //   rtme, _حرفه_, ббот,\n  { {0x69c024e3, 0x7bda0209, 0xb17b00ea, 0x00000000}},  //   stme, _ustu, _pråk,\n  { {0xd838016c, 0x69c001a2, 0xf53f0479, 0x00000000}},  //   jače_, ptme, pråk_,\n  { {0xd83806fc, 0xef110049, 0x661d00b9, 0x00000000}},  //   dače_, פּט_, uzsk,\n  { {0xf8060088, 0x00000000, 0x00000000, 0x00000000}},  //   _вчин,   ,   ,\n  { {0x68fc006c, 0xb17b0039, 0xe4e4007e, 0x00000000}},  //   ördu, _tråk, ціян,\n  { {0xd8380059, 0x7cfd000a, 0x26c900e7, 0x00000000}},  //   gače_, _dèry, _ubao_,\n  { {0x9c7c01d9, 0xcad7009b, 0x94ab00e2, 0x00000000}},  // [7710] _zače, סומת_, _итна_,\n  { {0x2ba7006e, 0xe4a7017f, 0x00000000, 0x00000000}},  //   _गिला, _трио,   ,\n  { {0xd498008b, 0x2007001a, 0x7cfd0173, 0x00000000}},  //   _тры_, âni_, _gèry,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x8b9500aa, 0x00000000, 0x00000000, 0x00000000}},  //   брич,   ,   ,\n  { {0xab290900, 0x680a013f, 0x00000000, 0x00000000}},  //   лока_, nədd,   ,\n  { {0xd438009b, 0x2bb8013d, 0x00000000, 0x00000000}},  //   יטוי_, _इमरा,   ,\n  { {0xceb201f8, 0x9c7c037e, 0xd5ed0011, 0x00000000}},  //   _מין_, _sače, _ngà,\n  { {0xd8380209, 0x2903009f, 0xe8f9013b, 0x00000000}},  //   zače_, ðja_, уло_,\n  { {0x31710190, 0x80e10044, 0x00000000, 0x00000000}},  //   _mizz_, নাপ্,   ,\n  { {0x27320059, 0x63b50107, 0x3171071b, 0x00000000}},  //   kšne_, duzn, _lizz_,\n  { {0x99850025, 0xd83801ca, 0xda780265, 0x00000000}},  //   _التو, vače_, _тях_,\n  { {0x63ae0087, 0x9c7c0087, 0x63a80062, 0x00000000}},  //   trbn, _tače, ádno,\n  { {0xd8380428, 0x7bc30376, 0xa507073b, 0x00000000}},  //   tače_, ntnu, щера_,\n  { {0xf74309f1, 0x00000000, 0x00000000, 0x00000000}},  //   _нещо,   ,   ,\n  { {0xd8380059, 0x171b009b, 0x7bc3006c, 0x00000000}},  // [7720] rače_, _תופע, htnu,\n  { {0x6448006c, 0xb5fb00a0, 0x7bc306d3, 0x00000000}},  //   üdis, _עליכ, ktnu,\n  { {0xee86007e, 0x4477009b, 0xd838016e, 0x00000000}},  //   было, _לעיל_, pače_,\n  { {0xdfcf0025, 0xf4870014, 0xbda60025, 0x00000000}},  //   عين_, _پایی, محتو,\n  { {0x1d0a00e3, 0x317104a5, 0x00000000, 0x00000000}},  //   леди_, _fizz_,   ,\n  { {0x25a20009, 0x00000000, 0x00000000, 0x00000000}},  //   iskl_,   ,   ,\n  { {0xdee6007c, 0xeb4a02dc, 0x00000000, 0x00000000}},  //   _лови, лчик_,   ,\n  { {0xa037009b, 0xef910014, 0x2b400059, 0x00000000}},  //   _האלה_, _آیند, čico_,\n  { {0xee3a0175, 0x00000000, 0x00000000, 0x00000000}},  //   _сна_,   ,   ,\n  { {0xdce901d5, 0x050a0044, 0x00000000, 0x00000000}},  //   _tweġ, রফুর_,   ,\n  { {0xd6d51001, 0x6d4a00c4, 0x7bc30d4d, 0x00000000}},  //   ожны, mofa, ctnu,\n  { {0xab6629d2, 0x6d4a0020, 0x3057009b, 0x00000000}},  //   _увел, lofa, משיך_,\n  { {0xceb3009b, 0x00000000, 0x00000000, 0x00000000}},  //   היר_,   ,   ,\n  { {0x63b5016c, 0x7ae20c97, 0x00000000, 0x00000000}},  //   tuzn, _haot,   ,\n  { {0x7ae20004, 0x93880057, 0x24180783, 0x00000000}},  //   _kaot, йста_, боры_,\n  { {0xadfa0204, 0x7ae20934, 0xddc90036, 0x00000000}},  //   ्हान_, _jaot, _cześ,\n  { {0x9099005e, 0x6d4a1a91, 0x00000000, 0x00000000}},  // [7730] иват_, kofa,   ,\n  { {0x672f0036, 0x29c2000c, 0x7ae2010e, 0x00000000}},  //   licj, iða_, _laot,\n  { {0x660f0039, 0x6d4a0022, 0x680a006b, 0x00000000}},  //   lyck, dofa, qədd,\n  { {0x31710035, 0x672f0036, 0x3f870089, 0x00000000}},  //   _wizz_, nicj, īnu_,\n  { {0xa6e30044, 0x00000000, 0x00000000, 0x00000000}},  //   যাপট,   ,   ,\n  { {0x212a001f, 0x9ce700a1, 0x6d4a29d3, 0x00000000}},  //   _gmbh_, صوبے_, gofa,\n  { {0xff53039d, 0x7ae21304, 0x00000000, 0x00000000}},  //   _فخر_, _baot,   ,\n  { {0xc9a90265, 0x7bc30056, 0x3eb9068f, 0x00000000}},  //   авие_, rtnu, _øst_,\n  { {0x88d5008b, 0x29c2000c, 0x7ae229d4, 0x00000000}},  //   оўні, gða_, _daot,\n  { {0x660f00b9, 0xb17b00ea, 0x77c9005c, 0x00000000}},  //   dyck, _fråv, алог_,\n  { {0x672f29d5, 0x06e30044, 0xe8f601e1, 0x00000000}},  //   ficj, যানি, ілю_,\n  { {0x7ae20051, 0xfbd0035b, 0x9c7c012d, 0x00000000}},  //   _gaot, _ستم_, _tačc,\n  { {0x18a5003b, 0x629f006b, 0x00000000, 0x00000000}},  //   _далм, daqo,   ,\n  { {0xdd7a0049, 0x98a50089, 0xddc90036, 0x00000000}},  //   יטשל, bilā_, _sześ,\n  { {0x2907093e, 0x629f0023, 0x9c7c04eb, 0x00000000}},  //   _iona_, faqo, _jača,\n  { {0x2907002d, 0x6abb29d6, 0x6d4a0020, 0x00000000}},  //   _hona_, nguf, zofa,\n  { {0x2907000c, 0x6d4a0020, 0xd83802db, 0x00000000}},  // [7740] _kona_, yofa, mača_,\n  { {0x68e301aa, 0xd8380627, 0x290707af, 0x00000000}},  //   _jand, lača_, _jona_,\n  { {0x68e3134e, 0x290700f8, 0x60c301aa, 0x00000000}},  //   _mand, _mona_, ònma,\n  { {0xa3c9001c, 0x645e29d7, 0x29071612, 0x00000000}},  //   ोबर_, _izpi, _lona_,\n  { {0x6d4a0020, 0x68e329d8, 0x00000000, 0x00000000}},  //   tofa, _oand,   ,\n  { {0x68e3011c, 0x7ae20051, 0x62840207, 0x00000000}},  //   _nand, _saot, lcio,\n  { {0x26c00211, 0x332b0009, 0xd83810f7, 0x00000000}},  //   _ocio_, _ymcx_, kača_,\n  { {0x62840219, 0x68e30100, 0xd83810ec, 0x00000000}},  //   ncio, _aand, jača_,\n  { {0x290704bd, 0x80ca001c, 0x6284008e, 0x00000000}},  //   _bona_, स्थे, icio,\n  { {0x29c2009f, 0x291829d9, 0x290729da, 0x00000000}},  //   rða_, óra_, _cona_,\n  { {0x29070129, 0x68e300d6, 0x62840dc6, 0x00000000}},  //   _dona_, _dand, kcio,\n  { {0x660f29db, 0x6f02012d, 0x68e300d9, 0x00000000}},  //   tyck, njoc, _eand,\n  { {0x68e30030, 0xfa360167, 0x9c7c0428, 0x00000000}},  //   _fand, _براد, _zača,\n  { {0x32d5001d, 0x628600d9, 0x660f0039, 0x00000000}},  //   _ấy_, _afko, ryck,\n  { {0x7d080030, 0x394c004a, 0x9c830062, 0x00000000}},  //   _mods, mods_, _účes,\n  { {0x68e329dc, 0x6aa000e7, 0x7d080190, 0x00000000}},  //   _zand, namf, _lods,\n  { {0x672d0213, 0x68e3005d, 0x290700e7, 0x00000000}},  // [7750] _imaj, _yand, _yona_,\n  { {0x68e3002b, 0x62840919, 0x98ac0006, 0x00000000}},  //   _xand, acio, rodė_,\n  { {0x3cfe006e, 0x6aa01725, 0x974311af, 0x00000000}},  //   लाने_, kamf, šćuj,\n  { {0x6284095e, 0x7d1a0378, 0x26d90e20, 0x00000000}},  //   ccio, _alts, neso_,\n  { {0xfe700a90, 0x7d0803b1, 0x291e01a3, 0x00000000}},  //   نده_, _bods, khta_,\n  { {0x8b95003b, 0xd83804eb, 0x9c7c12db, 0x00000000}},  //   прич, zača_, _pača,\n  { {0xeb9905c7, 0x7ed701d8, 0x629d04be, 0x00000000}},  //   щий_, _وزرا, _keso,\n  { {0x2907014a, 0x27320059, 0x398001aa, 0x00000000}},  //   _sona_, kšna_, _bòs_,\n  { {0x68e32824, 0x629d1dad, 0xd8380466, 0x00000000}},  //   _pand, _meso, vača_,\n  { {0x7d080007, 0x2ba5001e, 0x672d05bd, 0x00000000}},  //   _gods, pēc_, _amaj,\n  { {0x6f1b0036, 0x2907000c, 0xd8380626, 0x00000000}},  //   _kluc, _vona_, tača_,\n  { {0x68e329dd, 0x39800263, 0x3ce51861, 0x00000000}},  //   _wand, _fòs_, _halv_,\n  { {0xe9ce0822, 0x68e3248b, 0x29070065, 0x00000000}},  //   _як_, _tand, _tona_,\n  { {0x291e29de, 0x81c10055, 0x6f1b00d4, 0x00000000}},  //   chta_, ংবা_, _lluc,\n  { {0x61ef29df, 0x78a100ea, 0x61200010, 0x00000000}},  //   _arcl, malv, _hölg,\n  { {0x26d90819, 0x98a5001a, 0x26c00107, 0x00000000}},  //   ceso_, bilă_, _ucio_,\n  { {0x28c203d7, 0x62840211, 0x98a50035, 0x00000000}},  // [7760] _शामि, rcio, cilă_,\n  { {0x62840e68, 0x20b9007e, 0x6f1b0325, 0x00000000}},  //   scio, жыць_, _aluc,\n  { {0x62840779, 0x6f0900d9, 0x629d00d4, 0x00000000}},  //   pcio, _boec, _feso,\n  { {0x444401d5, 0x629d0343, 0x78a100b5, 0x00000000}},  //   _ix_, _geso, halv,\n  { {0x5ea30084, 0x78a100b0, 0x00000000, 0x00000000}},  //   رمول, kalv,   ,\n  { {0x44440f02, 0x60220010, 0xac970025, 0x00000000}},  //   _kx_, _címé, كنها_,\n  { {0xe7b60055, 0x79990319, 0x7d0802db, 0x00000000}},  //   _জন্য, _awww, _vods,\n  { {0x612001f6, 0x44440211, 0xdee301fb, 0x00000000}},  //   _bölg, _mx_, _поси,\n  { {0x44440011, 0x291e0023, 0xdb0a0a2f, 0x00000000}},  //   _lx_, thta_, ktfö,\n  { {0x9c7c1b4e, 0x78a1008f, 0x44440082, 0x00000000}},  //   _začn, galv, _ox_,\n  { {0x26d91425, 0xdc75008b, 0x44441fce, 0x00000000}},  //   teso_, _жыць, _nx_,\n  { {0x291e008d, 0x6d58092e, 0x5694004c, 0x00000000}},  //   shta_, llva, нают,\n  { {0x4444002b, 0x26d908d3, 0x78a11f7a, 0x00000000}},  //   _ax_, reso_, balv,\n  { {0x26d9011c, 0x44440082, 0x9c7c1a47, 0x00000000}},  //   seso_, _bx_, _mačo,\n  { {0x629d29e0, 0xccf800b9, 0x26d929e1, 0x00000000}},  //   _peso, _mně_, peso_,\n  { {0x4444049a, 0x083b00b3, 0xd7bb009b, 0x00000000}},  //   _dx_, _לעול, _הצהר,\n  { {0x9f470051, 0x629d0059, 0x6f0900d9, 0x00000000}},  // [7770] íní_, _veso, _roec,\n  { {0x44440030, 0x6f1b012b, 0xe3b000a1, 0x00000000}},  //   _fx_, _sluc, ضرہ_,\n  { {0x629d0a15, 0x3ddd03b0, 0x25a90190, 0x00000000}},  //   _teso, wwww_, _hval_,\n  { {0x63b50c8a, 0x65651346, 0x3ce50066, 0x00000000}},  //   mrzn, _hhhh, _salv_,\n  { {0x444401d6, 0x6f1b00b5, 0xfce50088, 0x00000000}},  //   _zx_, _vluc, доло,\n  { {0x3ddd0009, 0xd83800ca, 0x44440ac2, 0x00000000}},  //   rwww_, jačo_, _yx_,\n  { {0x68e80030, 0x9c7c05fa, 0x78a1006c, 0x00000000}},  //   dddd, _tačn, valv,\n  { {0x7b150027, 0x68f80288, 0x61ed29e2, 0x00000000}},  //   _záuj, _anvd, oval,\n  { {0xe29f0359, 0x61ed00b0, 0x78a10129, 0x00000000}},  //   _með_, nval, talv,\n  { {0xdb030051, 0x68f800d9, 0x61200010, 0x00000000}},  //   isné, _cnvd, _völg,\n  { {0x61ed01cd, 0x79990146, 0x78a101a2, 0x00000000}},  //   hval, _wwww, ralv,\n  { {0x21210760, 0x6565011c, 0x321209d7, 0x00000000}},  //   hhhh_, _ahhh, yyyy_,\n  { {0x78a1021e, 0x7ae90173, 0xdb0a1fbc, 0x00000000}},  //   palv, mdet, ttfö,\n  { {0x44440365, 0x61ed0030, 0x7ae9002d, 0x00000000}},  //   _px_, dval, ldet,\n  { {0x2722001d, 0x25a90061, 0x69c9003c, 0x00000000}},  //   _nóng_, _eval_, ltee,\n  { {0x7ae929e3, 0x680a006b, 0x65650058, 0x00000000}},  //   ndet, qəda, _ehhh,\n  { {0x69c908b2, 0x26d20061, 0xb80500a1, 0x00000000}},  // [7780] ntee, _ibyo_, _رکھے_,\n  { {0x2722001d, 0x3ead014a, 0xc05a0595, 0x00000000}},  //   _bóng_, _adet_, орец_,\n  { {0x69c9021e, 0x28cf0164, 0x3366003b, 0x00000000}},  //   htee, त्यि, _овог,\n  { {0x7ae929e4, 0xa25b00f4, 0x69c9095c, 0x00000000}},  //   jdet, _icôn, ktee,\n  { {0x7ae9153a, 0x8d6a00ec, 0x63bc29e5, 0x00000000}},  //   ddet, ојка_, lurn,\n  { {0x09bc0055, 0x27320059, 0x7ae9185d, 0x00000000}},  //   _অনলা, kšno_, edet,\n  { {0x6120000c, 0x69c900b0, 0x63bc000c, 0x00000000}},  //   _völd, etee, nurn,\n  { {0xf8ce001d, 0x7ae929e6, 0x69c90133, 0x00000000}},  //   _cứng_, gdet, ftee,\n  { {0x63bc0e2f, 0x612001e5, 0x00000000, 0x00000000}},  //   hurn, _töld,   ,\n  { {0x63bc2878, 0x00000000, 0x00000000, 0x00000000}},  //   kurn,   ,   ,\n  { {0x9c8301ca, 0x8c3c011f, 0x61ed0091, 0x00000000}},  //   _účas, _beğe, zval,\n  { {0x63bc000c, 0x872b007e, 0x00000000, 0x00000000}},  //   durn, іўна_,   ,\n  { {0x8c3c011f, 0x69c902ae, 0x6a160647, 0x00000000}},  //   _değe, ctee, _تبار,\n  { {0x61ed001c, 0x63bc01e5, 0x26d20009, 0x00000000}},  //   vval, furn, _ebyo_,\n  { {0xc6070055, 0x63bc0119, 0x7bca05d5, 0x00000000}},  //   _লেখা_, gurn, ntfu,\n  { {0xf8ce0011, 0x14e10061, 0x2d5b00fa, 0x00000000}},  //   _xứng_, _फसवण, vêem_,\n  { {0x80c80055, 0x2722001d, 0xd567078d, 0x00000000}},  // [7790] রজন্, _sóng_, _отоп,\n  { {0x65651a7e, 0x7ae90010, 0x3f8716b5, 0x00000000}},  //   _uhhh, zdet, ínuo_,\n  { {0x61ed010a, 0xf650026c, 0x753501bc, 0x00000000}},  //   sval, _مئی_, mizz,\n  { {0x75350409, 0xd250026c, 0x26dc0049, 0x00000000}},  //   lizz, انے_, ַקומ,\n  { {0x69c90133, 0xb17b0146, 0x00000000, 0x00000000}},  //   xtee, _gråp,   ,\n  { {0x753513f0, 0x7bca0239, 0x7ae90009, 0x00000000}},  //   nizz, ftfu, wdet,\n  { {0x4fc40eaf, 0x7bca0190, 0x9c7c0087, 0x00000000}},  //   _иста, gtfu, _kačj,\n  { {0x69c9021e, 0x7ae916df, 0x75350197, 0x00000000}},  //   ttee, udet, hizz,\n  { {0x7ae90047, 0x63bc0107, 0x25ad0618, 0x00000000}},  //   rdet, zurn, šelj_,\n  { {0x7ae90173, 0x6c6a00a1, 0x69c929e7, 0x00000000}},  //   sdet, _کلمہ_, rtee,\n  { {0x753501d5, 0x69c929e8, 0x7bca0133, 0x00000000}},  //   dizz, stee, ctfu,\n  { {0x69c90f0c, 0x61200010, 0x501a009b, 0x00000000}},  //   ptee, _kölc, פורו,\n  { {0x4a9a007b, 0x6b81006c, 0xe61704dd, 0x00000000}},  //   _זינג, _hulg, едя_,\n  { {0x63bc0e40, 0x6b81006c, 0x80cf0044, 0x00000000}},  //   turn, _kulg, _হোস্,\n  { {0x6b8122c5, 0x680a006b, 0xf8b200b3, 0x00000000}},  //   _julg, nədl, _עשה_,\n  { {0xf7d6009b, 0x6b81006c, 0x00000000, 0x00000000}},  //   _נופש_, _mulg,   ,\n  { {0x753529e9, 0x2aba014a, 0x63bc01e5, 0x00000000}},  // [77a0] bizz, lübü_, surn,\n  { {0x63bc000c, 0x75350207, 0x22590036, 0x00000000}},  //   purn, cizz, _dysk_,\n  { {0x06e30044, 0x1ae60044, 0x6b8100d9, 0x00000000}},  //   যারি, কাতে_, _nulg,\n  { {0x73e3004c, 0x26c229ea, 0x06b20044, 0x00000000}},  //   _союз, ngko_, ট্রি,\n  { {0xed5a003b, 0x127b0049, 0xf2d30049, 0x00000000}},  //   под_, _מאכע, _גער_,\n  { {0x61e60091, 0x09d80044, 0x7bca04ce, 0x00000000}},  //   _iskl, তিমা, ttfu,\n  { {0x99bc0055, 0x7bca0061, 0x6143007e, 0x00000000}},  //   _অনেক, utfu, _сера,\n  { {0x200d0279, 0x75350066, 0x6b810035, 0x00000000}},  //   çmiş_, zizz, _dulg,\n  { {0xf98f0167, 0xa3e7013d, 0x7bca0133, 0x00000000}},  //   یبی_, _मैन_, stfu,\n  { {0x9c7c1144, 0xf1b30104, 0x6b810374, 0x00000000}},  //   _mačk, נסת_, _fulg,\n  { {0x7535002b, 0x3137009b, 0x00000000, 0x00000000}},  //   vizz, תנים_,   ,\n  { {0x09d80044, 0x8c1b009b, 0x29030039, 0x00000000}},  //   তিবা, _מובי, öjar_,\n  { {0x75350a19, 0xd6e30044, 0x9c7c00d0, 0x00000000}},  //   tizz, যালয, _račj,\n  { {0xd90e00a1, 0x2b402588, 0xe4e40088, 0x00000000}},  //   _چیک_, čicu_, лісн,\n  { {0x753513f0, 0xf367005e, 0xd90e0167, 0x00000000}},  //   rizz, етан, _نیک_,\n  { {0x9c7c016c, 0x7535002b, 0x68ea01e5, 0x00000000}},  //   _bačk, sizz, _hafd,\n  { {0x680a006b, 0x7535054f, 0x64430e54, 0x00000000}},  // [77b0] zədl, pizz, _žnid,\n  { {0x98be00b9, 0x68ea0066, 0x6aa2031c, 0x00000000}},  //   votě_, _jafd, _leof,\n  { {0x439500ed, 0x61e629eb, 0x7b1c00f4, 0x00000000}},  //   _шанс, _eskl, _réun,\n  { {0xdb010161, 0x2259080a, 0x290e29ec, 0x00000000}},  //   _ovlá, _tysk_, _lofa_,\n  { {0x6b81006c, 0x64630091, 0x00000000, 0x00000000}},  //   _sulg, štić,   ,\n  { {0x271e02d2, 0x6b810211, 0x7c87007c, 0x00000000}},  //   _पत्र_, _pulg, худе,\n  { {0xfaf10025, 0xbebd08ad, 0x5e950025, 0x00000000}},  //   لثة_, _plūd, _للأط,\n  { {0x6b81033f, 0xe29f000c, 0xb4cd006e, 0x00000000}},  //   _vulg, _boði_, रभु_,\n  { {0x290e1617, 0x00000000, 0x00000000, 0x00000000}},  //   _bofa_,   ,   ,\n  { {0x3f83006c, 0x6b81010e, 0x00000000, 0x00000000}},  //   _kuju_, _tulg,   ,\n  { {0x9783007a, 0x2ca71936, 0x00000000, 0x00000000}},  //   دیبه, mand_,   ,\n  { {0x5a3501ab, 0x00000000, 0x00000000, 0x00000000}},  //   _инет,   ,   ,\n  { {0x290e00c4, 0x7aeb0190, 0xb4cd0316, 0x00000000}},  //   _fofa_, _iagt, रभू_,\n  { {0x2ca70f04, 0x01b90044, 0x69d900fa, 0x00000000}},  //   nand_, ুবাদ, _ipwe,\n  { {0xdb0101ca, 0x64a3007e, 0x3f830022, 0x00000000}},  //   _zvlá, раса, _nuju_,\n  { {0x78a305b7, 0x2ca7029c, 0x7aeb0286, 0x00000000}},  //   _henv, hand_, _jagt,\n  { {0x7aeb29ed, 0x98a50036, 0x2ca71802, 0x00000000}},  // [77c0] _magt, wilę_, kand_,\n  { {0x3f83096f, 0x2ca70a2e, 0x4f9600ed, 0x00000000}},  //   _buju_, jand_, врду,\n  { {0x3f830107, 0x2ca702a6, 0x00000000, 0x00000000}},  //   _cuju_, dand_,   ,\n  { {0xee3a1b2d, 0x9c7c1dbe, 0x7aeb29ee, 0x00000000}},  //   мне_, _tačk, _nagt,\n  { {0x543606c6, 0x61e602db, 0x2ca701a2, 0x00000000}},  //   _سرگر, _uskl, fand_,\n  { {0x9c7c0006, 0x61e40020, 0x614629ef, 0x00000000}},  //   _kači, mwil, _рега,\n  { {0x25a001aa, 0x61e429f0, 0x7aeb0190, 0x00000000}},  //   _lwil_, lwil, _bagt,\n  { {0xdd9206dd, 0x290e000c, 0x9c7c29f1, 0x00000000}},  //   _نور_, _sofa_, _mači,\n  { {0x78a329f2, 0xd8380627, 0x7aeb0190, 0x00000000}},  //   _benv, mači_, _dagt,\n  { {0x2ca7001a, 0x61e4010f, 0x69cb0009, 0x00000000}},  //   cand_, iwil, _dqge,\n  { {0x2d8400d4, 0xdd31006b, 0x61e41e28, 0x00000000}},  //   _hume_, ləşm, hwil,\n  { {0x9c7c0bf8, 0xb8f902f4, 0x78a301b5, 0x00000000}},  //   _nači, _डॉ_, _eenv,\n  { {0x61e400b5, 0xfb1b009b, 0x7ae000e7, 0x00000000}},  //   jwil, _קודמ, memt,\n  { {0x61e40ace, 0x2d840020, 0x78a31f9d, 0x00000000}},  //   dwil, _mume_, _genv,\n  { {0x2d84000d, 0x61e40c3f, 0x24580194, 0x00000000}},  //   _lume_, ewil, варь_,\n  { {0x3ea40030, 0xd8380295, 0x2ca729f3, 0x00000000}},  //   _nemt_, jači_, zand_,\n  { {0x60f90a78, 0x2d84000d, 0x9c7c29f4, 0x00000000}},  // [77d0] нная_, _nume_, _dači,\n  { {0x31c400e1, 0xdce800b9, 0x7bda0091, 0x00000000}},  //   јств, _vidě, _optu,\n  { {0x2ca729f5, 0x69c00b83, 0x00000000, 0x00000000}},  //   vand_, hume,   ,\n  { {0x69c00292, 0x2ca7010f, 0x3cfe0022, 0x00000000}},  //   kume, wand_, _antv_,\n  { {0x7bda0089, 0x69c001c5, 0xd7c40061, 0x00000000}},  //   _aptu, jume, लंडच,\n  { {0x9c7c0027, 0x7aeb0125, 0x3f830513, 0x00000000}},  //   _zači, _sagt, _tuju_,\n  { {0x7aeb006a, 0x3134007c, 0x78a300f4, 0x00000000}},  //   _pagt, _терр, _renv,\n  { {0x7b150285, 0x69c00197, 0x2d84009d, 0x00000000}},  //   _náut, fume, _fume_,\n  { {0x2ca70899, 0x2d840627, 0x7aeb0030, 0x00000000}},  //   pand_, _gume_, _vagt,\n  { {0x80e10044, 0x7aeb01d6, 0xfd100025, 0x00000000}},  //   নাক্, _wagt, _وجل_,\n  { {0xd05c005f, 0xec15023c, 0x628f0016, 0x00000000}},  //   _barə, _حواد, _ofco,\n  { {0x69c004d3, 0x2ca5124c, 0x61e40007, 0x00000000}},  //   bume, _held_, ywil,\n  { {0x69c003db, 0x6d43028c, 0x78a301c3, 0x00000000}},  //   cume, onna, _tenv,\n  { {0x5e560049, 0x27220129, 0x6d431643, 0x00000000}},  //   רישע_, _dóna_, nnna,\n  { {0x68e104fb, 0x2ca500b5, 0x9c7c010a, 0x00000000}},  //   meld, _meld_, _pači,\n  { {0x28cf02f4, 0x27320059, 0x25a0002b, 0x00000000}},  //   त्रि, kšni_, _twil_,\n  { {0x626601f9, 0xfdbe0044, 0xd8380091, 0x00000000}},  // [77e0] уваа, _ইন্ড, vači_,\n  { {0x61e401c3, 0x80a601fa, 0x68e1014a, 0x00000000}},  //   rwil, امان, neld,\n  { {0x672401d5, 0x69c00925, 0x9c7c010a, 0x00000000}},  //   _klij, zume, _tači,\n  { {0x68e1006c, 0x6d430197, 0x91860070, 0x00000000}},  //   held, enna, _مجسم,\n  { {0xdd8f0054, 0x6724016e, 0xd8380166, 0x00000000}},  //   كون_, _mlij, rači_,\n  { {0x9c7c0521, 0x69c028b3, 0xdb18000c, 0x00000000}},  //   _mačv, vume, ruví,\n  { {0xa06701f9, 0x7ae000ca, 0x6724015b, 0x00000000}},  //   _бара_, temt, _olij,\n  { {0x6d4306fb, 0x69c00006, 0x2d840020, 0x00000000}},  //   anna, tume, _tume_,\n  { {0x68e1010f, 0x2ca5010f, 0x7ae029f6, 0x00000000}},  //   feld, _feld_, remt,\n  { {0x69c00624, 0x2ca50b72, 0x680a005f, 0x00000000}},  //   rume, _geld_, lədi,\n  { {0x672402ae, 0x6ac60123, 0x6d5a29f7, 0x00000000}},  //   _blij, _مقام, _ikta,\n  { {0x680a006b, 0x78a80f12, 0x9c7c0fcd, 0x00000000}},  //   nədi, sadv, _bačv,\n  { {0x68e1000c, 0x60c50009, 0x00000000, 0x00000000}},  //   beld, yghm,   ,\n  { {0x67241407, 0x7e7d0027, 0xd94329f8, 0x00000000}},  //   _elij, _úspe, _лечи,\n  { {0x67240023, 0x657e0133, 0x645e0a55, 0x00000000}},  //   _flij, _diph, _cypi,\n  { {0x290c01cd, 0x57fb009b, 0x322b01e1, 0x00000000}},  //   ljda_, _טלוו, нізм_,\n  { {0x6d5a04e7, 0x6d430016, 0x680a006b, 0x00000000}},  // [77f0] _okta, ynna, dədi,\n  { {0xb274013b, 0x672400d0, 0x628d0048, 0x00000000}},  //   слуш, _zlij, scao,\n  { {0x72d50264, 0xa2d0007d, 0x2ca501c3, 0x00000000}},  //   _конф, _डॉक्, _reld_,\n  { {0x6d5a0f68, 0x539a00b6, 0x2ca50635, 0x00000000}},  //   _akta, _שירו, _seld_,\n  { {0xdbde009f, 0x6120000c, 0x00000000, 0x00000000}},  //   _síða, _köll,   ,\n  { {0x68e10009, 0x5bb507e1, 0x8b050036, 0x00000000}},  //   xeld, асиф, _mięś,\n  { {0x68e11bbb, 0x2ca501b5, 0x612029f9, 0x00000000}},  //   veld, _veld_, _möll,\n  { {0xe9d90256, 0x09d5008b, 0x2ca5018e, 0x00000000}},  //   вки_, ацоў, _weld_,\n  { {0x13de0055, 0xaa45007c, 0x291a0066, 0x00000000}},  //   ডিয়, репл, _ċpar_,\n  { {0xe8f6132a, 0x672429fa, 0x7d790167, 0x00000000}},  //   аль_, _slij, _شمار_,\n  { {0x6c840054, 0xd706017f, 0x68e10635, 0x00000000}},  //   _المم, азни, reld,\n  { {0x3989002a, 0x7bc308a7, 0xe73a007c, 0x00000000}},  //   _tús_, munu, тем_,\n  { {0x7b7402fd, 0x7bc3014a, 0x68e105cf, 0x00000000}},  //   _اطلا, lunu, peld,\n  { {0x4a440099, 0xdb0a01a2, 0x291e29fb, 0x00000000}},  //   _унів, zufü, ckta_,\n  { {0x7bc30890, 0xa956034e, 0x00000000, 0x00000000}},  //   nunu, _דיסק_,   ,\n  { {0xf772026c, 0x958609de, 0xc32300e1, 0x00000000}},  //   _بات_, _клие, омск,\n\n  { {0x09b50049, 0x645e0036, 0x7bc31256, 0x00000000}},  // [7800] יפּט_, _wypi, hunu,\n  { {0x201a0065, 0x9c7c0340, 0x41032798, 0x00000000}},  //   typi_, _začu, озув,\n  { {0x7bc3000c, 0x680a006b, 0xd838129d, 0x00000000}},  //   junu, tədi, baču_,\n  { {0x7bc3006c, 0xe806007d, 0xa6e2000c, 0x00000000}},  //   dunu, षमता_, áðhe,\n  { {0xcd0610d8, 0x680a006b, 0x4c94138c, 0x00000000}},  //   ички, rədi, билс,\n  { {0x21a30595, 0x7e690107, 0x7bc329fc, 0x00000000}},  //   _фирм, _dzep, funu,\n  { {0x7bc3000c, 0x5043017a, 0xdee6003b, 0x00000000}},  //   gunu, _дерб, _кови,\n  { {0x3f9a00b0, 0x00000000, 0x00000000, 0x00000000}},  //   mppu_,   ,   ,\n  { {0x9c7c01ae, 0xacea00ed, 0x00000000, 0x00000000}},  //   _raču, _имаа_,   ,\n  { {0x9c7c0091, 0xb4e50061, 0x00000000, 0x00000000}},  //   _saču, _नसे_,   ,\n  { {0x4c36007e, 0x291e141a, 0xe8380088, 0x00000000}},  //   _тэат, rkta_, упні_,\n  { {0xdc3b009b, 0x7e6000b0, 0x00000000, 0x00000000}},  //   _בעבר, _kymp,   ,\n  { {0xb9940025, 0x9f650010, 0x8ccd0061, 0x00000000}},  //   _التب, ítés_, _सामो,\n  { {0x612002b9, 0x80c20183, 0x7c2b0279, 0x00000000}},  //   _bölm, _लागे, _ömrü,\n  { {0x9388012b, 0x92a700e1, 0x80aa006e, 0x00000000}},  //   иста_, ијал, टरने,\n  { {0x6d580428, 0x987b0097, 0xa87b0104, 0x00000000}},  //   hova, _ברוק, _באור,\n  { {0x6d580062, 0x673d2915, 0x7bc3019a, 0x00000000}},  // [7810] kova, misj, zunu,\n  { {0x6d5801ca, 0x673d00bf, 0x7bc3005d, 0x00000000}},  //   jova, lisj, yunu,\n  { {0x6d580027, 0x7e690010, 0x7bc3006b, 0x00000000}},  //   dova, _szep, xunu,\n  { {0x673d0056, 0xef19002b, 0xb17b198e, 0x00000000}},  //   nisj, _biża_, _spåd,\n  { {0x7f490023, 0x6d580142, 0x00000000, 0x00000000}},  //   _vjeq, fova,   ,\n  { {0x7bc30004, 0xeb1f0164, 0x06e30044, 0x00000000}},  //   tunu, बस्त_, যাটি,\n  { {0x2005012d, 0x00000000, 0x00000000, 0x00000000}},  //   _šlif_,   ,   ,\n  { {0x7bc3038c, 0x673d0065, 0xcda90431, 0x00000000}},  //   runu, jisj, _مهره_,\n  { {0x7bc329fd, 0x3d94025f, 0x6d580387, 0x00000000}},  //   sunu, _митр, bova,\n  { {0x6d580428, 0x7bc3006b, 0x661d29fe, 0x00000000}},  //   cova, punu, dysk,\n  { {0xbb850054, 0x753c0089, 0xe1ff0010, 0x00000000}},  //   _الصي, virz, _szól_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xcb12019b, 0xe73707d0, 0x98780089, 0x00000000}},  //   _מלא_, сея_, kšķi_,\n  { {0xf992009b, 0xa5c7000c, 0x00000000, 0x00000000}},  //   _צרו_, _stóð,   ,\n  { {0x61200073, 0x232a092b, 0xc79503ec, 0x00000000}},  //   _följ, гови_, _اشتب,\n  { {0x6d58061b, 0xe7ec02fb, 0x6d5d000c, 0x00000000}},  //   zova, _जनता_, _ísaf,\n  { {0x95c900ed, 0xe0da0ab6, 0x00000000, 0x00000000}},  // [7820] _куќа_, лва_,   ,\n  { {0xd00a026b, 0x7e6001d6, 0xa0a6073b, 0x00000000}},  //   лезе_, _rymp, сажд,\n  { {0x6d580428, 0xa2e6026b, 0x63a9016c, 0x00000000}},  //   vova, _лонд, ćenc,\n  { {0x3f9a0f80, 0x6b8800fa, 0x7e600544, 0x00000000}},  //   rppu_, _rudg, _pymp,\n  { {0x9c7c01d9, 0x60d70045, 0x00000000, 0x00000000}},  //   _načr, bfxm,   ,\n  { {0x40ab00a2, 0xef19002b, 0x00000000, 0x00000000}},  //   _مخفی_, _viża_,   ,\n  { {0x6d580027, 0x661d0036, 0x988800a1, 0x00000000}},  //   rova, zysk, یحدہ_,\n  { {0x6d580027, 0x7e600052, 0x79e6009e, 0x00000000}},  //   sova, _tymp, موعہ_,\n  { {0x6d580387, 0x5e4a0888, 0x673d29ff, 0x00000000}},  //   pova, _спам_, visj,\n  { {0x3f8a008a, 0x00000000, 0x00000000, 0x00000000}},  //   _kubu_,   ,   ,\n  { {0xa3e703d7, 0x415b0049, 0x673d1256, 0x00000000}},  //   _मैं_, רדיג, tisj,\n  { {0x95cb0726, 0x661d00b0, 0x62860058, 0x00000000}},  //   луга_, tysk, _ngko,\n  { {0x673d2a00, 0x2bc60061, 0x00000000, 0x00000000}},  //   risj, रंवा,   ,\n  { {0x92c50055, 0x3f980089, 0x673d0056, 0x00000000}},  //   _এসে_, _otru_, sisj,\n  { {0x9c7c050f, 0x3f8a0045, 0x00000000, 0x00000000}},  //   _začr, _nubu_,   ,\n  { {0x69c00197, 0x1fce0044, 0x6b8200e7, 0x00000000}},  //   orme, রবাস, _jiog,\n  { {0x60870025, 0xb1150072, 0xd7f80035, 0x00000000}},  // [7830] مشاك, омаш, lvă_,\n  { {0x69c00051, 0x3f8a00e7, 0xdb182a01, 0x00000000}},  //   irme, _bubu_, luvä,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x01c9026c, 0x26cb016b, 0x3f8a10d4, 0x00000000}},  //   _پوسٹ_, ngco_, _dubu_,\n  { {0xa227023c, 0xf1ab0025, 0x3f98037a, 0x00000000}},  //   _طرحه, _حاجه_, _etru_,\n  { {0xa1941602, 0x61ef00f6, 0xe3b000a6, 0x00000000}},  //   _харч, _iscl, _تری_,\n  { {0x251c007b, 0xeb99041f, 0x4431012d, 0x00000000}},  //   רווא, ший_, nzz_,\n  { {0x443100fa, 0x61fb0066, 0x00000000, 0x00000000}},  //   izz_, _ġulj,   ,\n  { {0x6b822a02, 0x69c0012d, 0x00000000, 0x00000000}},  //   _diog, grme,   ,\n  { {0x3eaf01e3, 0x92c50044, 0x78a9003b, 0x00000000}},  //   lagt_, _এসো_, шког_,\n  { {0x186905a5, 0xd70a008b, 0x574a0437, 0x00000000}},  //   рани_, анне_, изом_,\n  { {0x81e00044, 0x6b822a03, 0x61ef07da, 0x00000000}},  //   থিত_, _giog, _oscl,\n  { {0x3cfe0061, 0x6a670688, 0x00000000, 0x00000000}},  //   लाचे_, _اطال,   ,\n  { {0xfbdd0164, 0x612001a2, 0x6b820026, 0x00000000}},  //   _महाम, _völk, _ziog,\n  { {0x48ee001c, 0xa879007b, 0x61ef1560, 0x00000000}},  //   _असतो_, _דאַר, _ascl,\n  { {0x7983010f, 0xe29a00ed, 0x3eaf0296, 0x00000000}},  //   _hinw, раа_, jagt_,\n  { {0x6aab0047, 0x61ef0009, 0x798300e0, 0x00000000}},  // [7840] _megf, _cscl, _kinw,\n  { {0x6aab0047, 0x798b0045, 0x00000000, 0x00000000}},  //   _legf, _mugw,   ,\n  { {0x61ef0207, 0x79832a04, 0x4fea02dc, 0x00000000}},  //   _escl, _minw, рмен_,\n  { {0x9e6601fb, 0x57cc0049, 0x00000000, 0x00000000}},  //   овед, רמאַ,   ,\n  { {0x2ee60133, 0x00000000, 0x00000000, 0x00000000}},  //   reof_,   ,   ,\n  { {0x412a07ca, 0x3f8a0066, 0xd65700b3, 0x00000000}},  //   _того_, _tubu_, חינת_,\n  { {0xdcfa001e, 0x2ee6158d, 0x6b820207, 0x00000000}},  //   _citā, peof_, _piog,\n  { {0x798b0009, 0x81bd0044, 0x00000000, 0x00000000}},  //   _bugw, _আহত_,   ,\n  { {0x4431016e, 0x6b820146, 0x69c000d9, 0x00000000}},  //   zzz_, _viog, urme,\n  { {0xdce80089, 0xdddb04eb, 0x00000000, 0x00000000}},  //   _vidē, _uguš,   ,\n  { {0xf093034e, 0xab2a01e0, 0x3f842170, 0x00000000}},  //   ונת_, _кожа_, _kimu_,\n  { {0x7983010f, 0x5694004c, 0xc878014a, 0x00000000}},  //   _einw, мают, neği_,\n  { {0xceb3034e, 0x6d4a0197, 0x2cac0010, 0x00000000}},  //   ויר_, onfa, _kedd_,\n  { {0x6d4a2a05, 0x79830058, 0x2cac0066, 0x00000000}},  //   nnfa, _ginw, _jedd_,\n  { {0x68e80193, 0x442501ca, 0x6d4a01c5, 0x00000000}},  //   medd, ál_, infa,\n  { {0x68e81c95, 0x80d801f5, 0x2cac01e2, 0x00000000}},  //   ledd, न्से, _ledd_,\n  { {0x8c3c1355, 0x2cac018e, 0x00000000, 0x00000000}},  // [7850] _deği, _oedd_,   ,\n  { {0x68e80016, 0x2cac0016, 0x61fd012d, 0x00000000}},  //   nedd, _nedd_, _vrsl,\n  { {0x3eaf010f, 0x00000000, 0x00000000, 0x00000000}},  //   tagt_,   ,   ,\n  { {0x68e80016, 0x6d4a00d9, 0x25a900d9, 0x00000000}},  //   hedd, enfa, _kwal_,\n  { {0x7de70054, 0xc332007b, 0x3eaf0302, 0x00000000}},  //   تسام, _טוט_, ragt_,\n  { {0x3eaf010f, 0x78a10009, 0x61ed2839, 0x00000000}},  //   sagt_, xblv, mwal,\n  { {0x61ed2a06, 0x68e8005b, 0x00000000, 0x00000000}},  //   lwal, dedd,   ,\n  { {0xc878014a, 0x7e7d0161, 0x3ce700c4, 0x00000000}},  //   ceği_, _úspo, senv_,\n  { {0x61ed1796, 0x79830435, 0x7b1c009d, 0x00000000}},  //   nwal, _pinw, _réut,\n  { {0x3ead0250, 0x3f84049c, 0x81e50044, 0x00000000}},  //   _heet_, _zimu_, পটপ_,\n  { {0x25a9020c, 0x09e10044, 0x3f85009d, 0x00000000}},  //   _awal_, বিধা, _élus_,\n  { {0x61ed0168, 0xd5b80089, 0xf7720464, 0x00000000}},  //   kwal, ņām_, عاد_,\n  { {0x2d850020, 0x7ae9006c, 0x3ead00ab, 0x00000000}},  //   _kile_, meet, _meet_,\n  { {0x61ed002b, 0x7ae9002d, 0x25a9002b, 0x00000000}},  //   dwal, leet, _dwal_,\n  { {0x69c900b0, 0x29070036, 0x2d850490, 0x00000000}},  //   luee, _inna_, _mile_,\n  { {0x7ae92032, 0x2d850020, 0x2b910011, 0x00000000}},  //   neet, _lile_, _mác_,\n  { {0x26d20061, 0x61ed0058, 0x7bc301ca, 0x00000000}},  // [7860] _icyo_, gwal, hrnu,\n  { {0x3f84000b, 0x7ae90d6f, 0x2d8503ef, 0x00000000}},  //   _simu_, heet, _nile_,\n  { {0x3ead0116, 0x2cac00ea, 0x7ae92a07, 0x00000000}},  //   _beet_, _redd_, keet,\n  { {0x2d85014a, 0x2cac0909, 0x3ead004a, 0x00000000}},  //   _aile_, _sedd_, _ceet_,\n  { {0x2d85011f, 0x7ae9002d, 0x5dda026b, 0x00000000}},  //   _bile_, deet, сфер_,\n  { {0x2b91001d, 0x6d4a008e, 0x5ba600ed, 0x00000000}},  //   _bác_, unfa, приз,\n  { {0x2b9100ad, 0x3f84000b, 0x6d4a0210, 0x00000000}},  //   _các_, _timu_, rnfa,\n  { {0x2d852a08, 0x29070292, 0xb9980088, 0x00000000}},  //   _eile_, _anna_, ових_,\n  { {0x2d8513ec, 0xdcfa00e5, 0x2cac0232, 0x00000000}},  //   _file_, _cită, _tedd_,\n  { {0xfe4500a6, 0x2918000c, 0x2d850145, 0x00000000}},  //   _تکمی, ðra_, _gile_,\n  { {0x7d080018, 0x61ed0036, 0xbc6a0151, 0x00000000}},  //   _inds, zwal, _امان_,\n  { {0x2d852a09, 0x68e80016, 0x25a901aa, 0x00000000}},  //   _zile_, sedd, _pwal_,\n  { {0x7d1a006a, 0x58d400ed, 0x69c900d9, 0x00000000}},  //   _kots, _жолт, cuee,\n  { {0x58d301f9, 0x61ed01aa, 0x2d8500d4, 0x00000000}},  //   _зошт, vwal, _xile_,\n  { {0x2b91001d, 0x7d1a093b, 0x61ed01f3, 0x00000000}},  //   _xác_, _mots, wwal,\n  { {0x61ed002b, 0xe3b006b4, 0x7d1a002d, 0x00000000}},  //   twal, طرف_, _lots,\n  { {0x8ccd013d, 0x3ead2988, 0x7d0802e7, 0x00000000}},  // [7870] _सालो, _reet_, _onds,\n  { {0x61ed010f, 0x395e0089, 0x7bca06a4, 0x00000000}},  //   rwal, nots_, kufu,\n  { {0x61ed000b, 0x3ead0168, 0x672d0089, 0x00000000}},  //   swal, _peet_, _klaj,\n  { {0x7d080fc7, 0x2b910011, 0x2d850091, 0x00000000}},  //   _ands, _rác_, _sile_,\n  { {0x6e220047, 0x672d2a0a, 0x7d1a0dcc, 0x00000000}},  //   gyob, _mlaj, _bots,\n  { {0x3ead0100, 0x7bca0020, 0x7ae900d9, 0x00000000}},  //   _weet_, fufu, weet,\n  { {0xdd91026c, 0x2d85000b, 0x7ae92a0b, 0x00000000}},  //   روں_, _vile_, teet,\n  { {0x394c0038, 0x69c90cf0, 0x2d852a0c, 0x00000000}},  //   ends_, tuee, _wile_,\n  { {0x1dd102f4, 0xedd50137, 0x7ae90114, 0x00000000}},  //   _समित, _زياد, reet,\n  { {0x2b91001d, 0x2d850051, 0x395e08f7, 0x00000000}},  //   _tác_, _uile_, gots_,\n  { {0x6120009f, 0x6f1b01aa, 0x672d01a3, 0x00000000}},  //   _tölv, _kouc, _blaj,\n  { {0x6d431de7, 0x98ad038c, 0x394c0068, 0x00000000}},  //   lina, ının_, ands_,\n  { {0x395e0056, 0x6f1b2a0d, 0x61200047, 0x00000000}},  //   bots_, _mouc, _költ,\n  { {0x684501be, 0x6f1b0181, 0x6d432a0e, 0x00000000}},  //   _онла, _louc, nina,\n  { {0x3cf003d7, 0x672d0107, 0x00000000, 0x00000000}},  //   _इससे_, _flaj,   ,\n  { {0x6d43006a, 0x6f1b1a40, 0x2b4d009d, 0x00000000}},  //   hina, _nouc, nnec_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  // [7880]   ,   ,   ,\n  { {0x6d4308a9, 0x69c60059, 0x6f09009d, 0x00000000}},  //   jina, škeg, _anec,\n  { {0x6f1b11aa, 0x7d1a1aef, 0xdb0a0065, 0x00000000}},  //   _bouc, _rots, ënës,\n  { {0xf41301f8, 0x7d1a0004, 0x3f9c0089, 0x00000000}},  //   _ספר_, _sots, īvu_,\n  { {0x7d1a0129, 0xdd8f0379, 0x9f650010, 0x00000000}},  //   _pots, لون_, ítás_,\n  { {0x7bca2839, 0x6f0900d9, 0xb0dd006e, 0x00000000}},  //   tufu, _enec, न्दग,\n  { {0xfbcf057d, 0x6f1b02b6, 0x395e01c5, 0x00000000}},  //   لتي_, _fouc, vots_,\n  { {0x7bca2a0f, 0x1b770025, 0x776401f3, 0x00000000}},  //   rufu, وصية_, _nkix,\n  { {0x6d430263, 0x7bd8003b, 0x3ea603b0, 0x00000000}},  //   bina, stvu, mbot_,\n  { {0x6d430325, 0x6120009f, 0x3ea60016, 0x00000000}},  //   cina, _tölu, lbot_,\n  { {0xcb6a0680, 0x672d0a29, 0x395e0089, 0x00000000}},  //   _даже_, _plaj, rots_,\n  { {0x61e60fdf, 0x613218f9, 0x3a26004d, 0x00000000}},  //   _opkl, _fælg, _омег,\n  { {0x672d01ca, 0x7ae22a10, 0x3dc60009, 0x00000000}},  //   _vlaj, _ibot, nrow_,\n  { {0xb3470181, 0xe4e40088, 0x249a0146, 0x00000000}},  //   _opçõ, кісн, _cfpm_,\n  { {0x61e6010a, 0x672d1bf3, 0x3ea60058, 0x00000000}},  //   _apkl, _tlaj, kbot_,\n  { {0x68f80018, 0x6d430006, 0x672d00e7, 0x00000000}},  //   _havd, zina, _ulaj,\n  { {0x291c0ef7, 0x3495007e, 0x25090014, 0x00000000}},  // [7890] _kova_, _папр, _فردی_,\n  { {0x6d43049a, 0xeb1b001c, 0x6f1b2a11, 0x00000000}},  //   xina, _फक्त_, _souc,\n  { {0xa3d603d7, 0x6f1b02d5, 0x6d430213, 0x00000000}},  //   _समय_, _pouc, vina,\n  { {0x291c2a12, 0x6d43023a, 0x68f80065, 0x00000000}},  //   _lova_, wina, _lavd,\n  { {0x6d432a13, 0xf48502fd, 0x6f090082, 0x00000000}},  //   tina, _تاکی, _vnec,\n  { {0x0d8401fb, 0x68f80059, 0x3ea6011c, 0x00000000}},  //   влін, _navd, abot_,\n  { {0x61320018, 0x3ea61233, 0x5ff42a14, 0x00000000}},  //   _sælg, bbot_, _изру,\n  { {0x6d432a15, 0x3dc60541, 0x00000000, 0x00000000}},  //   sina, brow_,   ,\n  { {0x6d43006a, 0x2734001d, 0x61200047, 0x00000000}},  //   pina, _hãng_, _tölt,\n  { {0x61320018, 0x291c06c0, 0x63a90166, 0x00000000}},  //   _vælg, _cova_, ćenj,\n  { {0x6d412a16, 0x31580049, 0x7ae20026, 0x00000000}},  //   _imla, ויזן_, _fbot,\n  { {0x06b00044, 0xe73201d8, 0xdb0a04ce, 0x00000000}},  //   _কাহি, اصد_, gsfä,\n  { {0xa6db009f, 0x27340011, 0x68f80087, 0x00000000}},  //   miðl, _lãng_, _favd,\n  { {0x7afb002d, 0x61320190, 0x69db0023, 0x00000000}},  //   ldut, _kæle, mtue,\n  { {0x394500f6, 0x18750049, 0x3ea61063, 0x00000000}},  //   mils_, _אײַך_, ybot_,\n  { {0x7afb022b, 0x14170025, 0x23b1007d, 0x00000000}},  //   ndut, ريقة_, _जबरद,\n  { {0x6d410056, 0x64620046, 0x3ea601aa, 0x00000000}},  // [78a0] _omla, _świę, vbot_,\n  { {0x25a001aa, 0x20560072, 0x394500d4, 0x00000000}},  //   _itil_, нтер, nils_,\n  { {0x9c7c0165, 0x14d701ce, 0x3ea0008e, 0x00000000}},  //   _obča, _אויל_, ñito_,\n  { {0x66040006, 0x3f91022b, 0x69db002d, 0x00000000}},  //   _krik, _duzu_, ktue,\n  { {0x0cd404ef, 0x69db0065, 0x3ea60b8a, 0x00000000}},  //   волю, jtue, rbot_,\n  { {0x3dc600ab, 0x7ae203c5, 0x00000000, 0x00000000}},  //   rrow_, _sbot,   ,\n  { {0x3f910209, 0x26c00e32, 0xd47a0049, 0x00000000}},  //   _guzu_, _odio_, האַל,\n  { {0x26c0000b, 0x6d41011f, 0x69db0065, 0x00000000}},  //   _ndio_, _emla, ftue,\n  { {0x39452a17, 0x68f80023, 0x25a000f6, 0x00000000}},  //   fils_, _pavd, _ntil_,\n  { {0x26c00035, 0x3945088f, 0xadb70025, 0x00000000}},  //   _adio_, gils_, _أهلا_,\n  { {0x66042a18, 0x26c0016c, 0x3137009b, 0x00000000}},  //   _arik, _bdio_, גנים_,\n  { {0xd6db007c, 0x00000000, 0x00000000, 0x00000000}},  //   что_,   ,   ,\n  { {0xa3d3001c, 0x69db2a19, 0x6d41018e, 0x00000000}},  //   हून_, ctue, _ymla,\n  { {0x66040637, 0x39452a1a, 0x291c0197, 0x00000000}},  //   _drik, cils_, _uova_,\n  { {0x6604021e, 0x06b00044, 0x00000000, 0x00000000}},  //   _erik, _কারি,   ,\n  { {0x66040065, 0x2b09013d, 0x07f70025, 0x00000000}},  //   _frik, वाएँ_, _أروع_,\n  { {0x60f90783, 0x64590036, 0x66042a1b, 0x00000000}},  // [78b0] мная_, _świd, _grik,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xf650026c, 0xf8b300a3, 0x853c009b, 0x00000000}},  //   _نئی_, רשע_, _מגזי,\n  { {0x27340082, 0x7c3d006b, 0xdcb10082, 0x00000000}},  //   _vãng_, _əsrd, _sẻ_,\n  { {0x7afb002b, 0x69db009d, 0x00000000, 0x00000000}},  //   vdut, xtue,   ,\n  { {0xfce501f9, 0x00000000, 0x00000000, 0x00000000}},  //   токо,   ,   ,\n  { {0x7afb00e0, 0x00000000, 0x00000000, 0x00000000}},  //   tdut,   ,   ,\n  { {0x69db0052, 0x7afb0052, 0x00000000, 0x00000000}},  //   ttue, udut,   ,\n  { {0x394500f4, 0x7afb002d, 0xdd950147, 0x00000000}},  //   tils_, rdut, _разы,\n  { {0x6d4101a2, 0xfe6e0014, 0x7afb0026, 0x00000000}},  //   _umla, _بگم_, sdut,\n  { {0xf092019b, 0x39450129, 0x69db002d, 0x00000000}},  //   יני_, rils_, stue,\n  { {0x660411e6, 0x69db0065, 0x628f01c3, 0x00000000}},  //   _prik, ptue, _ngco,\n  { {0x39451b5a, 0x69350517, 0xbb3a0049, 0x00000000}},  //   pils_, _инду, _קעני,\n  { {0x629d244f, 0x628f0026, 0x6aa92a1c, 0x00000000}},  //   _afso, _agco, lbef,\n  { {0x628f0365, 0x6b8b0030, 0x442c0a87, 0x00000000}},  //   _bgco, _kigg, ád_,\n  { {0x6b8b002b, 0x69c92a1d, 0x6aa92a1e, 0x00000000}},  //   _jigg, oree, nbef,\n  { {0x25a0001a, 0x877b0049, 0x69c900d9, 0x00000000}},  // [78c0] _util_, _קאפי, nree,\n  { {0x64590046, 0x45b70049, 0xb5b70097, 0x00000000}},  //   _świe, _שפיל_, _שליח_,\n  { {0x69c902ae, 0x628f0045, 0xd2aa01ab, 0x00000000}},  //   hree, _fgco, _окне_,\n  { {0x25ad001a, 0x69c9010e, 0x00000000, 0x00000000}},  //   ţele_, kree,   ,\n  { {0xf2d300bd, 0xe1ff0036, 0xdce1000a, 0x00000000}},  //   _דער_, _wzór_, _eklč,\n  { {0xa0a300ed, 0x69c9001a, 0x00000000, 0x00000000}},  //   _вард, dree,   ,\n  { {0x6b8b00ab, 0x656e0048, 0x00000000, 0x00000000}},  //   _bigg, ilbh,   ,\n  { {0x7bc5004a, 0x6b8b0203, 0xac25007e, 0x00000000}},  //   áhua, _cigg, ыфік,\n  { {0x7de50084, 0x63a90363, 0x6b8b0aa4, 0x00000000}},  //   _مسلم, ćeni, _digg,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x69c90052, 0x00000000, 0x00000000, 0x00000000}},  //   aree,   ,   ,\n  { {0xfaa6012b, 0x69c90007, 0x6b8b0b04, 0x00000000}},  //   _радо, bree, _gigg,\n  { {0x2d8c002d, 0x69dc0035, 0x6a160f8b, 0x00000000}},  //   _kide_, ăres, _جبار,\n  { {0x2d8c0f65, 0x6b8b00bb, 0x00000000, 0x00000000}},  //   _jide_, _zigg,   ,\n  { {0x2d8c1fe7, 0x290e0093, 0x9f5f0023, 0x00000000}},  //   _mide_, _infa_, ërën_,\n  { {0x2d8c2a1f, 0x656e0051, 0x81e70044, 0x00000000}},  //   _lide_, albh, ভিস_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  // [78d0]   ,   ,   ,\n  { {0x44f507ca, 0x2d8c0087, 0x00000000, 0x00000000}},  //   _спос, _nide_,   ,\n  { {0x628f0197, 0xb4c10309, 0x00000000, 0x00000000}},  //   _tgco, ुली_,   ,\n  { {0x2d8c028c, 0x66020b4d, 0x69c9055f, 0x00000000}},  //   _aide_, _šoki, yree,\n  { {0x6b8b0186, 0x2d8c0a3f, 0xdcb10082, 0x00000000}},  //   _rigg, _bide_, _hỏi_,\n  { {0x6b8b000c, 0x69c901bb, 0xbebd0e3f, 0x00000000}},  //   _sigg, vree, _plūs,\n  { {0x6b8b00f8, 0x00000000, 0x00000000, 0x00000000}},  //   _pigg,   ,   ,\n  { {0x69c90277, 0x2b9800f4, 0x2d8c0056, 0x00000000}},  //   tree, _déc_, _eide_,\n  { {0xc33400b6, 0x6b8b101b, 0x6aa901a2, 0x00000000}},  //   יוק_, _vigg, rbef,\n  { {0x2d8c0173, 0x69c9002d, 0x3f8d0011, 0x00000000}},  //   _gide_, rree, _hieu_,\n  { {0x6b8b1742, 0x7ad50084, 0x3f8d0082, 0x00000000}},  //   _tigg, _مقاص, _kieu_,\n  { {0x69c90181, 0xe5a6003b, 0x28a30061, 0x00000000}},  //   pree, лими, _ख्रि,\n  { {0x26de0036, 0x3f8d2a20, 0x4df90049, 0x00000000}},  //   ęto_, _mieu_, עפֿא,\n  { {0x3f8d028c, 0x98a2007c, 0x00000000, 0x00000000}},  //   _lieu_, _лише,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x3f8d0007, 0xdceb002b, 0x00000000, 0x00000000}},  //   _nieu_, bqgħ,   ,\n  { {0x9f5e028c, 0x0206007e, 0x00000000, 0x00000000}},  // [78e0] _été_, ызан,   ,\n  { {0x98be001a, 0xd5b80089, 0x7981005b, 0x00000000}},  //   mită_, ņās_, nmlw,\n  { {0x25b20016, 0x2d8c0edd, 0x232a2a21, 0x00000000}},  //   _hwyl_, _ride_, _зони_,\n  { {0x2d8c25d4, 0x25b201c3, 0x5fc9007d, 0x00000000}},  //   _side_, _kwyl_, ांजल,\n  { {0x3f8d1eac, 0x2d8c0211, 0x98be001a, 0x00000000}},  //   _dieu_, _pide_, nită_,\n  { {0x61460a94, 0x00000000, 0x00000000, 0x00000000}},  //   _сега,   ,   ,\n  { {0x0b8a00a8, 0x7b6600e2, 0xc4d3009b, 0x00000000}},  //   нсии_, лтие, צגה_,\n  { {0x3cf003d7, 0x2d8c00ab, 0x705301d8, 0x00000000}},  //   _इसके_, _wide_, _انفا,\n  { {0x2d8c004e, 0x5f11001c, 0x094a0751, 0x00000000}},  //   _tide_, णार्_, ечни_,\n  { {0xa6db000c, 0x2b9800fa, 0xc237009b, 0x00000000}},  //   miði, _téc_, טרפו_,\n  { {0x7c930054, 0xa6db000c, 0x5c56004d, 0x00000000}},  //   _المص, liði, _стаф,\n  { {0x6d4a00f0, 0x8c1b0104, 0x9a6a0025, 0x00000000}},  //   lifa, _רואי, _كمال_,\n  { {0xdb0a043e, 0x29180274, 0x7c2a0de7, 0x00000000}},  //   dsfø, öras_, lyfr,\n  { {0x6d4a01d5, 0xdb011a40, 0xb4c1007d, 0x00000000}},  //   nifa, _atlè, ुले_,\n  { {0x78ba01c5, 0xa0240044, 0xd37b0679, 0x00000000}},  //   matv, _যেসব_, еча_,\n  { {0x6d4a0020, 0x78ba1b25, 0x98be0035, 0x00000000}},  //   hifa, latv, bită_,\n  { {0x6d4a0020, 0x7c2a0016, 0xc2f70044, 0x00000000}},  // [78f0] kifa, hyfr, ঙালি_,\n  { {0x6d4a0020, 0xf1c80025, 0x3f8d0082, 0x00000000}},  //   jifa, اولى_, _sieu_,\n  { {0x6d4a1b27, 0x20072a22, 0x7a480089, 0x00000000}},  //   difa, íni_, lītī,\n  { {0x672f0046, 0x63a50085, 0x7c2a005b, 0x00000000}},  //   nkcj, _ithn, dyfr,\n  { {0x386e0016, 0x6d4a0093, 0xdce1002b, 0x00000000}},  //   _lyfr_, fifa, _jilħ,\n  { {0xdce101f3, 0x00000000, 0x00000000, 0x00000000}},  //   _milħ,   ,   ,\n  { {0x3f8d0082, 0x78ba0082, 0x98be0035, 0x00000000}},  //   _tieu_, datv, zită_,\n  { {0x64dc0061, 0x3cfe00e7, 0x21230087, 0x00000000}},  //   _बाभळ, _eatv_, _hojh_,\n  { {0x6d4a2a23, 0xdce10066, 0x00000000, 0x00000000}},  //   bifa, _nilħ,   ,\n  { {0x3945004c, 0x98be001a, 0xbb4400b0, 0x00000000}},  //   рног, vită_, äärä,\n  { {0xe73a0200, 0x2eff010f, 0xb461006b, 0x00000000}},  //   вен_, _kauf_, çülə,\n  { {0xc9f5002c, 0xdce101f3, 0x98be0035, 0x00000000}},  //   _نستع, _bilħ, tită_,\n  { {0x78ba0030, 0x63a50051, 0x00000000, 0x00000000}},  //   batv, _athn,   ,\n  { {0x64590046, 0x6abb010f, 0x98be001a, 0x00000000}},  //   _świa, lauf, rită_,\n  { {0xdb010181, 0xf77300a1, 0x8883007a, 0x00000000}},  //   _atlé, _ڈاٹ_, _دیدن,\n  { {0x97c4007a, 0x6abb010f, 0x6d4a0020, 0x00000000}},  //   _اتوم, nauf, zifa,\n  { {0x63a507be, 0xe0da05a5, 0x4736089d, 0x00000000}},  // [7900] _ethn, ква_, _مرکز,\n  { {0x399b02d5, 0x6abb186a, 0xdb0a00ea, 0x00000000}},  //   _mês_, hauf, ssfø,\n  { {0x6abb010f, 0x61f60016, 0xd00f0025, 0x00000000}},  //   kauf, swyl, ولك_,\n  { {0xdee6012b, 0x7c2e010f, 0x539b0104, 0x00000000}},  //   роди, _übri, _שיכו,\n  { {0x6d4a2a24, 0x3ea9004a, 0x4df601ab, 0x00000000}},  //   tifa, ñata_, ряет,\n  { {0xa6db01e5, 0x00000000, 0x00000000, 0x00000000}},  //   riði,   ,   ,\n  { {0x6d4a0fa2, 0x78ba0be1, 0x80ad0044, 0x00000000}},  //   rifa, vatv, _চাচ্,\n  { {0x6d4a01a3, 0x98a50006, 0xd00f0257, 0x00000000}},  //   sifa, filį_, _تلف_,\n  { {0x3f98000b, 0x3cfe0022, 0x6da3017a, 0x00000000}},  //   _huru_, _tatv_, _мита,\n  { {0x3f98150a, 0x6f002a25, 0x7aa60061, 0x00000000}},  //   _kuru_, _hamc, _ट्रॅ,\n  { {0x3f982a26, 0x6d480066, 0x78ba00eb, 0x00000000}},  //   _juru_, _imda, ratv,\n  { {0x09e60920, 0x6f020724, 0x98a50006, 0x00000000}},  //   _водн, ndoc, bilį_,\n  { {0x09e3007e, 0x29110051, 0x78ba1288, 0x00000000}},  //   _моцн, ánaí_, patv,\n  { {0x200a0b94, 0x7a790049, 0x69c003e3, 0x00000000}},  //   _orbi_, _גרױס, msme,\n  { {0x69c008d5, 0x397b0049, 0x3f980c04, 0x00000000}},  //   lsme, _שטונ, _nuru_,\n  { {0x394c1a86, 0x6f0001ee, 0xdce10066, 0x00000000}},  //   lids_, _namc, _tilħ,\n  { {0x69c00065, 0x6d482a27, 0x6f020016, 0x00000000}},  // [7910] nsme, _omda, ddoc,\n  { {0x2eff00f4, 0x394c041d, 0x3f982a28, 0x00000000}},  //   _sauf_, nids_, _buru_,\n  { {0x3f9800e5, 0x00000000, 0x00000000, 0x00000000}},  //   _curu_,   ,   ,\n  { {0x69c0001e, 0x6d48018e, 0x671a013d, 0x00000000}},  //   ksme, _amda, धायक_,\n  { {0xdef81036, 0xa3d30316, 0x69c0145e, 0x00000000}},  //   рых_, हूर_, jsme,\n  { {0xa3be013d, 0x69c01f8e, 0xee380245, 0x00000000}},  //   ुंच_, dsme, шні_,\n  { {0x3f98020c, 0xadc3001d, 0x6f0200bb, 0x00000000}},  //   _guru_, _trắn, bdoc,\n  { {0x59c201f5, 0x6d480173, 0x545800b3, 0x00000000}},  //   _शिखर, _emda, יבוב_,\n  { {0x6abb010f, 0xdce31332, 0x69c0000c, 0x00000000}},  //   rauf, lonč, gsme,\n  { {0x9be701fb, 0x394c01b5, 0x6abb010f, 0x00000000}},  //   _відк, gids_, sauf,\n  { {0xc6890104, 0xba4500a1, 0x2911005d, 0x00000000}},  //   _נא_, شنگٹ, ıza_,\n  { {0x7d010193, 0xe73a0783, 0x81bd0044, 0x00000000}},  //   _hals, уем_, _ইমন_,\n  { {0xa3da001c, 0x7d012a29, 0x2b4d0036, 0x00000000}},  //   डून_, _kals, miec_,\n  { {0xdce30387, 0x2b4d2a2a, 0x00000000, 0x00000000}},  //   konč, liec_,   ,\n  { {0x7d012a2b, 0x61fd0022, 0x1dd1013d, 0x00000000}},  //   _mals, _assl, _समझत,\n  { {0x2b4d05fd, 0xdce3016c, 0x3f982a2c, 0x00000000}},  //   niec_, donč, _ruru_,\n  { {0x200a021d, 0x61320030, 0x3f980052, 0x00000000}},  // [7920] _srbi_, _fæll, _suru_,\n  { {0x1dd10061, 0xb69b1429, 0x7d010087, 0x00000000}},  //   _समजत, ndân, _nals,\n  { {0x61fd01a2, 0x3f98013f, 0x00000000, 0x00000000}},  //   _essl, _quru_,   ,\n  { {0xee3a012b, 0x1e8602dc, 0x7d0100bb, 0x00000000}},  //   лне_, блем, _aals,\n  { {0x7d010ebc, 0x81e70044, 0x00000000, 0x00000000}},  //   _bals, ভিউ_,   ,\n  { {0x3f9601f9, 0x69c000d8, 0x3f98078f, 0x00000000}},  //   _граѓ, vsme, _turu_,\n  { {0x7d0105e1, 0x78b80436, 0x394c01c5, 0x00000000}},  //   _dals, _revv, vids_,\n  { {0x69c01693, 0x5a341666, 0x61e42a2d, 0x00000000}},  //   tsme, жнит, otil,\n  { {0x7d010406, 0x394c0239, 0x69c01081, 0x00000000}},  //   _fals, tids_, usme,\n  { {0x69c00089, 0xce3700b3, 0xa3d30164, 0x00000000}},  //   rsme, _האמת_, हूँ_,\n  { {0x9c7c086e, 0xab960025, 0x394c02e7, 0x00000000}},  //   _obči, _الصغ, rids_,\n  { {0x3f8601aa, 0x61e4006c, 0x394c00f6, 0x00000000}},  //   nmou_, ktil, sids_,\n  { {0x8b650054, 0xe6670680, 0xe9180451, 0x00000000}},  //   _بالم, стно, _волі_,\n  { {0x61e42a2e, 0x29020089, 0x22400036, 0x00000000}},  //   dtil, ēkas_, dzik_,\n  { {0xa3d3013d, 0x6b9a0129, 0x61e42a2f, 0x00000000}},  //   हूं_, _jutg, etil,\n  { {0xe6160059, 0xdb0300f8, 0x388e006b, 0x00000000}},  //   žišč, ssnö, mər_,\n  { {0x388e0163, 0x61e416ec, 0x61320030, 0x00000000}},  // [7930] lər_, gtil, _tæll,\n  { {0x660d022b, 0x25a90232, 0x3d02013d, 0x00000000}},  //   _irak, _ital_, लयों_,\n  { {0xd01106b4, 0x7d0105d2, 0x273b0065, 0x00000000}},  //   بلا_, _rals, _tënd_,\n  { {0x660d0046, 0x7d010e1d, 0x61e4007f, 0x00000000}},  //   _krak, _sals, btil,\n  { {0x388e005f, 0x7d012a30, 0x00000000, 0x00000000}},  //   hər_, _pals,   ,\n  { {0xc30108b7, 0x2b4d0036, 0x6d58000c, 0x00000000}},  //   _একটি_, wiec_, gnva,\n  { {0x7d010ebc, 0xeab10025, 0xcda90014, 0x00000000}},  //   _vals, وعة_, _چهره_,\n  { {0x388e005f, 0x6d580007, 0x3c070082, 0x00000000}},  //   dər_, anva, _vđv_,\n  { {0x7d0116ae, 0x7e7b0036, 0x28d4013d, 0x00000000}},  //   _tals, _uzup, _दाखि,\n  { {0x388e005f, 0x47c5007c, 0x57e903c0, 0x00000000}},  //   fər_, обов, адом_,\n  { {0x388e005f, 0x25a90c54, 0x660d1b01, 0x00000000}},  //   gər_, _atal_, _arak,\n  { {0x78a1001c, 0x61e40b22, 0x7c3d006b, 0x00000000}},  //   sclv, ytil, _əsrl,\n  { {0xe57a0077, 0xba2b0464, 0x00000000, 0x00000000}},  //   изм_, _حسام_,   ,\n  { {0x388e005f, 0x660d0056, 0x7ae908ed, 0x00000000}},  //   bər_, _drak, lfet,\n  { {0x660d25d5, 0xe7b50054, 0x7bc30479, 0x00000000}},  //   _erak, _بمعد, nsnu,\n  { {0x660d0039, 0xe2970153, 0x7ae91529, 0x00000000}},  //   _frak, жат_, nfet,\n  { {0x6b5e0089, 0x91e300e2, 0x00000000, 0x00000000}},  // [7940] nīga, моте,   ,\n  { {0x29050039, 0x61e42a31, 0xb17b0039, 0x00000000}},  //   ndla_, rtil, _spår,\n  { {0x61e4233f, 0x660d016e, 0x22400010, 0x00000000}},  //   stil, _zrak, szik_,\n  { {0x6b9a020f, 0xd47b0104, 0xdce0006b, 0x00000000}},  //   _rutg, _כאיל, _rumı,\n  { {0x388e005f, 0x3f86271a, 0x6b9a00f6, 0x00000000}},  //   zər_, rmou_, _sutg,\n  { {0x61320030, 0x388e006b, 0xa1160f8b, 0x00000000}},  //   _mælk, yər_, _بوست,\n  { {0x7ae90a19, 0x6d58141a, 0x7bc30146, 0x00000000}},  //   ffet, rnva, gsnu,\n  { {0xdb010181, 0x388e006b, 0xdddb1e00, 0x00000000}},  //   _atlâ, vər_, _uyuş,\n  { {0xb9970783, 0x00000000, 0x00000000, 0x00000000}},  //   овых_,   ,   ,\n  { {0x660d0ea9, 0x388e006b, 0x61200052, 0x00000000}},  //   _rrak, tər_, _pöly,\n  { {0xeb9a01f9, 0x2005009f, 0x80d00044, 0x00000000}},  //   _тие_, _álit_, স্থ্,\n  { {0x388e006b, 0x7bd82a32, 0xa6db01e5, 0x00000000}},  //   rər_, muvu, viðs,\n  { {0x95d8007c, 0xa5070077, 0xb604007e, 0x00000000}},  //   одят_, оявл, мярк,\n  { {0x80d00044, 0xfa77009b, 0x660d0142, 0x00000000}},  //   স্ত্, _ועדת_, _vrak,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xc2990930, 0x26c9016c, 0xd5bb02dc, 0x00000000}},  //   сках_, _udao_, _ксо_,\n  { {0xa2dc006e, 0x660d00b0, 0x00000000, 0x00000000}},  // [7950] _फार्, _urak,   ,\n  { {0xc1780088, 0x7bd82603, 0x00000000, 0x00000000}},  //   оїх_, kuvu,   ,\n  { {0x28dd0316, 0x5f95005e, 0x00000000, 0x00000000}},  //   _मासि, чиет,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xdca502e9, 0xe1ff008e, 0x00000000, 0x00000000}},  //   пали, _usó_,   ,\n  { {0x6b82076d, 0x61f90180, 0xc10b007e, 0x00000000}},  //   _ahog, ğalı, _тэме_,\n  { {0x9c7c0059, 0x7bd82a33, 0x6b820051, 0x00000000}},  //   _obču, guvu, _bhog,\n  { {0x28dd0183, 0x6b820051, 0x6b5e0089, 0x00000000}},  //   _माहि, _chog, tīga,\n  { {0x7ae901bc, 0x7c380107, 0xdcfa0089, 0x00000000}},  //   rfet, _čarš, _citē,\n  { {0x7ae90129, 0xa2cb0309, 0x6b5e0089, 0x00000000}},  //   sfet, तृत्, rīga,\n  { {0x3ea01144, 0x6b820051, 0x2c740051, 0x00000000}},  //   žite_, _fhog, rúdú_,\n  { {0x290301ae, 0x2576000c, 0x6b820066, 0x00000000}},  //   žja_, mæli_, _ghog,\n  { {0x6133014a, 0xdb18000c, 0xa6e3000c, 0x00000000}},  //   _kılı, fsvæ, óðas,\n  { {0xb4d601f5, 0xdb180190, 0x00000000, 0x00000000}},  //   हले_, gsvæ,   ,\n  { {0xf9900076, 0x29360049, 0x00000000, 0x00000000}},  //   _شبه_, _מאסן_,   ,\n  { {0xf1c7013d, 0x00000000, 0x00000000, 0x00000000}},  //   _लिखन,   ,   ,\n  { {0xa823026c, 0x26c2002d, 0x00000000, 0x00000000}},  // [7960] _رکھن, mako_,   ,\n  { {0x26c22a34, 0x6b8901a2, 0x613201e5, 0x00000000}},  //   lako_, hmeg, _kæli,\n  { {0x26c20032, 0x4fea017a, 0x397a0049, 0x00000000}},  //   oako_, смен_, צטענ,\n  { {0x26c2022b, 0x6b8900b5, 0xdce300b9, 0x00000000}},  //   nako_, jmeg, plně,\n  { {0xddcb011f, 0xdce8002b, 0x26c20032, 0x00000000}},  //   ğişi, _jidħ, iako_,\n  { {0x6b822a35, 0xdb0100d4, 0x7bd82a36, 0x00000000}},  //   _shog, _atlà, tuvu,\n  { {0x26c20119, 0x06c70055, 0x00000000, 0x00000000}},  //   kako_, ষ্টি,   ,\n  { {0xd90d007a, 0xd00f00f3, 0x26c20142, 0x00000000}},  //   یین_, _حلف_, jako_,\n  { {0xadc3001d, 0xa3d6013d, 0x26c2002d, 0x00000000}},  //   _trạn, _समझ_, dako_,\n  { {0xd7fa00e3, 0x27340082, 0x69cf004a, 0x00000000}},  //   бум_, _hãnh_, ácea,\n  { {0x6b82131d, 0x37aa00ed, 0x00000000, 0x00000000}},  //   _thog, љтон_,   ,\n  { {0x6c7b007b, 0x26c2002d, 0xdb090439, 0x00000000}},  //   _פראד, gako_, _وزنه_,\n  { {0x6133011f, 0x27340082, 0x00000000, 0x00000000}},  //   _yılı, _mãnh_,   ,\n  { {0x27340011, 0x8afd00b9, 0xb52400a5, 0x00000000}},  //   _lãnh_, voři, ньск,\n  { {0x0fd70055, 0x26c2117b, 0xdb18000c, 0x00000000}},  //   _সন্ধ, bako_, rsvæ,\n  { {0x4431001c, 0xb7db00b3, 0x926b00e2, 0x00000000}},  //   ryz_, _הקהי, брза_,\n  { {0xd047005f, 0x00000000, 0x00000000, 0x00000000}},  // [7970] əməs,   ,   ,\n  { {0x55bc00b3, 0x98be013e, 0x68fa2a37, 0x00000000}},  //   _המזו, vitě_, netd,\n  { {0x389b01ce, 0xe3a500a2, 0x6721007d, 0x00000000}},  //   ציאנ, _تشخی, यापक_,\n  { {0xdb180039, 0x00000000, 0x00000000, 0x00000000}},  //   nsvä,   ,   ,\n  { {0x28dd0309, 0x2fc70011, 0x68fa2a38, 0x00000000}},  //   _मालि, ũng_, ketd,\n  { {0x26c2022b, 0x7ae20efe, 0x6133006b, 0x00000000}},  //   zako_, _acot, _qılı,\n  { {0xbbe80054, 0xdb01008e, 0xdb1800f8, 0x00000000}},  //   كريم_, _atlá, ksvä,\n  { {0xeeb9005e, 0x26c20032, 0xc9a929a1, 0x00000000}},  //   _флаш_, xako_, овие_,\n  { {0x6b8913f4, 0x26c22a39, 0xdb1800f8, 0x00000000}},  //   rmeg, vako_, dsvä,\n  { {0x9f410051, 0x26c200e7, 0x6132000c, 0x00000000}},  //   ithí_, wako_, _pæli,\n  { {0x26c20756, 0xfbd000a2, 0x00000000, 0x00000000}},  //   tako_, _متن_,   ,\n  { {0x2011037e, 0x2d9f006c, 0x7ae20048, 0x00000000}},  //   _mrzi_, _kuue_, _gcot,\n  { {0x26c20756, 0x7bd20089, 0x7afb2a3a, 0x00000000}},  //   rako_, ījuš, meut,\n  { {0x26c21e4a, 0x64a600ed, 0x7afb0da6, 0x00000000}},  //   sako_, ќава, leut,\n  { {0x26c22a3b, 0x212a0009, 0x3ea600d9, 0x00000000}},  //   pako_, _robh_, ycot_,\n  { {0x2907009f, 0x7afb0090, 0xdce801d5, 0x00000000}},  //   _hana_, neut, _tidħ,\n  { {0x2907011c, 0x27340082, 0x69c6008f, 0x00000000}},  // [7980] _kana_, _rãnh_, škev,\n  { {0x29072a3c, 0x66040004, 0x7afb021e, 0x00000000}},  //   _jana_, _isik, heut,\n  { {0x251b007b, 0x29070127, 0x351b061e, 0x00000000}},  //   _וויא, _mana_, _ווינ,\n  { {0x20110107, 0x2907022b, 0x7afb02e1, 0x00000000}},  //   _drzi_, _lana_, jeut,\n  { {0x26c002d5, 0x7afb010f, 0x25a000f4, 0x00000000}},  //   _meio_, deut, _juil_,\n  { {0x290701a3, 0x7ae20531, 0x66040020, 0x00000000}},  //   _nana_, _scot, _msik,\n  { {0x69cf0802, 0x68fa00ca, 0x25a00173, 0x00000000}},  //   ácen, vetd, _luil_,\n  { {0x2ba70082, 0x3ebf01c3, 0xdb1802e1, 0x00000000}},  //   _sđcc_, _geut_, ksvå,\n  { {0x2907011f, 0x7c3d006b, 0x69cf0b18, 0x00000000}},  //   _bana_, _əsri, šcen,\n  { {0x290700c4, 0x81b30044, 0x00000000, 0x00000000}},  //   _cana_, _টিম_,   ,\n  { {0x29070149, 0x7d1a2a3d, 0xdb0a0039, 0x00000000}},  //   _dana_, _ints, dsfö,\n  { {0x81c40055, 0xf093009b, 0x274b0088, 0x00000000}},  //   _এমন_, כנת_, ічно_,\n  { {0xceb3009b, 0x290708f8, 0xdb180039, 0x00000000}},  //   כיר_, _fana_, rsvä,\n  { {0x2907183d, 0xdb0a00f8, 0xf10d006e, 0x00000000}},  //   _gana_, gsfö, _सफेद_,\n  { {0x7d080030, 0x6604003c, 0x26c02a3e, 0x00000000}},  //   _mads, _esik, _feio_,\n  { {0x29070020, 0xe3b00b6c, 0x25a00048, 0x00000000}},  //   _zana_, شرف_, _fuil_,\n  { {0x7d1a049b, 0x2907014a, 0x2011016c, 0x00000000}},  // [7990] _onts, _yana_, _srzi_,\n  { {0x7d080b41, 0xda080011, 0x645a0325, 0x00000000}},  //   _nads, _mỏ_, útic,\n  { {0x3ebf028c, 0x7afb02d4, 0x00000000, 0x00000000}},  //   _peut_, yeut,   ,\n  { {0xf1a702d2, 0x69cf0164, 0x7d1a0f0d, 0x00000000}},  //   _कंपन, _दिली, _ants,\n  { {0x3ebf00f4, 0x31a4005d, 0x7d0800f8, 0x00000000}},  //   _veut_, _göz_, _bads,\n  { {0xdd9100a1, 0x91ba0104, 0xa2160049, 0x00000000}},  //   ھوں_, _ממשי, _אַלס_,\n  { {0x7afb021e, 0xfaa509f1, 0x60c5033b, 0x00000000}},  //   teut, найо, mahm,\n  { {0x29071bc5, 0x7d1a001f, 0x395e0bdb, 0x00000000}},  //   _sana_, _ents, ents_,\n  { {0x2907000d, 0xda080011, 0x7afb0056, 0x00000000}},  //   _pana_, _cỏ_, reut,\n  { {0x60c517d1, 0x7d080089, 0x25a00116, 0x00000000}},  //   nahm, _gads, _ruil_,\n  { {0x7afb00b0, 0x2907006c, 0x6d430051, 0x00000000}},  //   peut, _vana_, mhna,\n  { {0x395e0fdb, 0x2907000b, 0x672d0035, 0x00000000}},  //   ants_, _wana_, _coaj,\n  { {0xf6520b6c, 0x29070093, 0x26c00181, 0x00000000}},  //   ائج_, _tana_, _veio_,\n  { {0x25a000c7, 0x60c505cd, 0xdb1800f8, 0x00000000}},  //   _vuil_, jahm, rsvå,\n  { {0x31a4005d, 0xe73a003b, 0x69c90f81, 0x00000000}},  //   _söz_, _нек_, lsee,\n  { {0x2327025f, 0x660414f7, 0x41aa0140, 0x00000000}},  //   носи_, _tsik, зван_,\n  { {0x66042a3f, 0x69c901b6, 0xe3630920, 0x00000000}},  // [79a0] _usik, nsee, укти,\n  { {0x7cf301df, 0x69c900b0, 0xddcb014a, 0x00000000}},  //   nırı, isee, _şişm,\n  { {0x7d082a40, 0x6d430048, 0x6f09005b, 0x00000000}},  //   _rads, dhna, _baec,\n  { {0x69c9021e, 0x81cf0044, 0x888c0049, 0x00000000}},  //   ksee, _শহর_, קראַ,\n  { {0x7cf3014a, 0x7f420023, 0x23600036, 0x00000000}},  //   kırı, rhoq, mnij_,\n  { {0xafe6012b, 0xdd8f0318, 0x6d43002a, 0x00000000}},  //   _погл, مون_, ghna,\n  { {0x69c900b0, 0x7ac6030d, 0x7cf3019a, 0x00000000}},  //   esee, нспе, dırı,\n  { {0xff26005e, 0x9f4a0c4d, 0x00000000, 0x00000000}},  //   _ямбо, ömän_,   ,\n  { {0x69c901c3, 0xbc6a01b2, 0x00000000, 0x00000000}},  //   gsee, _کمان_,   ,\n  { {0x6d431274, 0xda080011, 0x395e00ab, 0x00000000}},  //   chna, _vỏ_, unts_,\n  { {0xdd8f0879, 0x6bd60070, 0x23600036, 0x00000000}},  //   _اول_, _ستار, knij_,\n  { {0xda080011, 0x69c90009, 0x7bca0479, 0x00000000}},  //   _tỏ_, bsee, msfu,\n  { {0x672d0107, 0x7bca0146, 0x56940131, 0x00000000}},  //   _voaj, lsfu, лают,\n  { {0x68462a41, 0x69c6007f, 0x00000000, 0x00000000}},  //   _cédé, škes,   ,\n  { {0x9982010a, 0x99830025, 0x5ed00061, 0x00000000}},  //   škų_, _حلوو, हणाऱ,\n  { {0x7c25010f, 0xa87b0104, 0xd378007c, 0x00000000}},  //   ähri, _מאור, ечу_,\n  { {0x684600f4, 0x6f090022, 0x291c0173, 0x00000000}},  // [79b0] _fédé, _raec, _knva_,\n  { {0x290c2a42, 0x69d80316, 0x00000000, 0x00000000}},  //   ndda_, _मिनी,   ,\n  { {0xb4dd0164, 0x60c5033b, 0x290c0bdc, 0x00000000}},  //   डली_, rahm, idda_,\n  { {0x7bca0748, 0x7cf30276, 0x00000000, 0x00000000}},  //   dsfu, zırı,   ,\n  { {0xdd9b0057, 0x22840265, 0x6d430051, 0x00000000}},  //   чше_, _бург, thna,\n  { {0x5ff510d8, 0x0638007b, 0x61ed030e, 0x00000000}},  //   _изгу, ענגט_, mtal,\n  { {0x61ed0010, 0xdfd80265, 0x61320030, 0x00000000}},  //   ltal, _път_, _vælt,\n  { {0x5f94012b, 0x69c9006c, 0x6f1b0107, 0x00000000}},  //   _бист, tsee, _unuc,\n  { {0x7cf301f6, 0x22492a43, 0x6aa90133, 0x00000000}},  //   tırı, nzak_, rcef,\n  { {0x69c90128, 0x61ed1d1d, 0x22490032, 0x00000000}},  //   rsee, ital, izak_,\n  { {0x69c900b5, 0x61ed00b0, 0xf746044b, 0x00000000}},  //   ssee, htal, вено,\n  { {0x61ed2a44, 0x00000000, 0x00000000, 0x00000000}},  //   ktal,   ,   ,\n  { {0xcb3600b6, 0x61ed0d22, 0x69c600b9, 0x00000000}},  //   _שאני_, jtal, šker,\n  { {0x61ed0190, 0xa3bf013d, 0x98a2004c, 0x00000000}},  //   dtal, ुओं_, _кише,\n  { {0x61ed01d6, 0x33d50c50, 0x00000000, 0x00000000}},  //   etal, літт,   ,\n  { {0x61ed1ead, 0xdb010039, 0x00000000, 0x00000000}},  //   ftal, _utlä,   ,\n  { {0x6d412a45, 0x61ed04e7, 0x9586026b, 0x00000000}},  // [79c0] _olla, gtal, _илие,\n  { {0xe0d70e82, 0x6d4100f6, 0xb1430b7a, 0x00000000}},  //   кву_, _nlla, анул,\n  { {0x4096004c, 0x838a01fb, 0x04460131, 0x00000000}},  //   трат, _обов_, _ренн,\n  { {0xc29400a6, 0x443802e1, 0x66162a46, 0x00000000}},  //   _میزب, myr_, _kryk,\n  { {0xdee3003b, 0x3ea00e83, 0x44380b69, 0x00000000}},  //   рочи, žito_, lyr_,\n  { {0x62860059, 0x28dd0204, 0x0086041f, 0x00000000}},  //   _izko, _मागि, _алго,\n  { {0xd47a0049, 0x6d410022, 0x7e6906d2, 0x00000000}},  //   ואַל, _dlla, _exep,\n  { {0x6d410211, 0xceea007e, 0x7bca00f8, 0x00000000}},  //   _ella, _ідзе_, rsfu,\n  { {0x44380016, 0x7bca00ab, 0xa25b00fa, 0x00000000}},  //   hyr_, ssfu, _leôn,\n  { {0xd91701ab, 0x6d410023, 0x44382a47, 0x00000000}},  //   вью_, _glla, kyr_,\n  { {0x61ed0010, 0x6d5800b0, 0x313700b3, 0x00000000}},  //   ztal, miva, דריך_,\n  { {0x6d582a48, 0x290a0cce, 0x443821d8, 0x00000000}},  //   liva, žba_, dyr_,\n  { {0x61ed006b, 0x9f47009d, 0x26d20045, 0x00000000}},  //   xtal, îné_, _ddyo_,\n  { {0xb4dd0204, 0x6d580091, 0x6616000c, 0x00000000}},  //   डले_, niva, _dryk,\n  { {0x6286002d, 0x00000000, 0x00000000, 0x00000000}},  //   _azko,   ,   ,\n  { {0x61ed01d5, 0x2249022b, 0x6d58048f, 0x00000000}},  //   ttal, tzak_, hiva,\n  { {0x6d580119, 0x5215007e, 0x20c7007c, 0x00000000}},  // [79d0] kiva, ыдат, всег,\n  { {0x61ed121b, 0x6d580091, 0x44382a49, 0x00000000}},  //   rtal, jiva, byr_,\n  { {0x6674007a, 0x6286002d, 0xa28300a1, 0x00000000}},  //   _مدیر, _ezko, _چیزو,\n  { {0x61ed01e5, 0x6d410065, 0x673d0292, 0x00000000}},  //   ptal, _slla, nksj,\n  { {0x926b01f9, 0x22da00b3, 0x6d410023, 0x00000000}},  //   _црна_, _אחרא, _plla,\n  { {0x6d5803af, 0x63a5007f, 0x00000000, 0x00000000}},  //   giva, _kuhn,   ,\n  { {0x764b0010, 0x6d412a4a, 0xbbf50025, 0x00000000}},  //   _ügyf, _vlla, استث,\n  { {0x7e690032, 0x00000000, 0x00000000, 0x00000000}},  //   _txep,   ,   ,\n  { {0x6d582a4b, 0x2bae0036, 0x00000000, 0x00000000}},  //   biva, _ręce_,   ,\n  { {0x9f5801aa, 0x6d580091, 0xd90f0014, 0x00000000}},  //   _aprè_, civa, زیع_,\n  { {0x25b20578, 0x213111cb, 0x00000000, 0x00000000}},  //   _styl_, _mozh_,   ,\n  { {0x6d460006, 0xe7e4006e, 0x7c2501a2, 0x00000000}},  //   _įkai, _कमरा_, ähru,\n  { {0xcb1200b6, 0x4438018e, 0x7f3a0049, 0x00000000}},  //   _ללא_, wyr_, גערו,\n  { {0x3944008b, 0x44382a4c, 0x18690216, 0x00000000}},  //   _кніг, tyr_, _пали_,\n  { {0x62860046, 0x443e2a4d, 0x0443005c, 0x00000000}},  //   _szko, át_, берн,\n  { {0x6d580119, 0x661605ba, 0x6abb0146, 0x00000000}},  //   ziva, _tryk, nbuf,\n  { {0x44380203, 0xd7df0061, 0xdb1808c8, 0x00000000}},  // [79e0] syr_, पूरच, rsvø,\n  { {0x6d580129, 0x11d70025, 0x88d50044, 0x00000000}},  //   xiva, اولة_, ত্রক,\n  { {0x6d58010a, 0xdfcf0025, 0x00000000, 0x00000000}},  //   viva, كيل_,   ,\n  { {0x69db2a4e, 0x00000000, 0x00000000, 0x00000000}},  //   krue,   ,   ,\n  { {0x6d580b25, 0xd83801aa, 0xed5a0545, 0x00000000}},  //   tiva, zyč_, нод_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6d58021e, 0x69db0026, 0x20180032, 0x00000000}},  //   siva, frue, _irri_,\n  { {0x6d5800b0, 0x9e6600a8, 0x0d860264, 0x00000000}},  //   piva, _свад, _блан,\n  { {0x4dfb0049, 0x090624ab, 0x00000000, 0x00000000}},  //   _אפמא, учим,   ,\n  { {0x3ea9167a, 0x645a0253, 0x00000000, 0x00000000}},  //   žate_, útil,   ,\n  { {0x69db00ea, 0x6f02086f, 0x63a52a4f, 0x00000000}},  //   brue, neoc, _ruhn,\n  { {0x69db062a, 0x2d9e2a50, 0x63a50fdf, 0x00000000}},  //   crue, _kite_, _suhn,\n  { {0x20182a51, 0xe8940b21, 0x6f020048, 0x00000000}},  //   _orri_, _каль, heoc,\n  { {0x7a48001e, 0x2d9e1617, 0x65751539, 0x00000000}},  //   sūtī, _mite_, rozh,\n  { {0x2d9e0073, 0x290e0359, 0x236d0059, 0x00000000}},  //   _lite_, _hafa_, čejo_,\n  { {0x6f02106f, 0x4155007e, 0x26cb0197, 0x00000000}},  // [79f0] deoc, авас, maco_,\n  { {0x2d9e04d2, 0x26cb008e, 0x00000000, 0x00000000}},  //   _nite_, laco_,   ,\n  { {0x6b5e0089, 0x290e00d2, 0x6aa2005b, 0x00000000}},  //   līgu, _mafa_, _ogof,\n  { {0x7ff40054, 0x26cb1003, 0x273b0065, 0x00000000}},  //   إسلا, naco_, _bëni_,\n  { {0x398b0637, 0x2d9e032c, 0x20182a52, 0x00000000}},  //   løse_, _bite_, _erri_,\n  { {0xabd503f3, 0x2d9e00ab, 0xee38007e, 0x00000000}},  //   ациј, _cite_, ыні_,\n  { {0x2d9e008d, 0x00000000, 0x00000000, 0x00000000}},  //   _dite_,   ,   ,\n  { {0xb33b011f, 0x2d9e1760, 0x60c72a53, 0x00000000}},  //   _hiçb, _eite_, _hejm,\n  { {0x26cb0035, 0x2d9e2264, 0x290e0068, 0x00000000}},  //   daco_, _fite_, _bafa_,\n  { {0x69db0252, 0x290e12f0, 0x2d9e117e, 0x00000000}},  //   rrue, _cafa_, _gite_,\n  { {0x1869017f, 0xe7660242, 0x3ad50014, 0x00000000}},  //   тани_, ивоп, _نياز,\n  { {0x7d03009f, 0x61fd2a54, 0xaa5600a6, 0x00000000}},  //   lens, _opsl, الیا_,\n  { {0x80d00044, 0x7d0300c7, 0xe5a60745, 0x00000000}},  //   স্ট্, oens, риги,\n  { {0x7d03069a, 0x60c700b9, 0x290e0048, 0x00000000}},  //   nens, _nejm, _gafa_,\n  { {0xa8790049, 0x98790049, 0x26cb0325, 0x00000000}},  //   _באַר, _באַט, baco_,\n  { {0x7d03010f, 0x200a0093, 0xa3d7013d, 0x00000000}},  //   hens, _rsbi_, _सिर_,\n  { {0xdcfa0224, 0x60c70065, 0xb77b009b, 0x00000000}},  // [7a00] _chtě, _bejm, _שאפש,\n  { {0x7d030161, 0xa63b009b, 0x20180022, 0x00000000}},  //   jens, _סגיר, _prri_,\n  { {0x7d0302a9, 0x6f0200d4, 0x98a7001a, 0x00000000}},  //   dens, teoc, _zonă_,\n  { {0x91e600d7, 0xee3a025f, 0x00000000, 0x00000000}},  //   _коме, кне_,   ,\n  { {0x6f022582, 0x2d9e16d0, 0xcbb20044, 0x00000000}},  //   reoc, _pite_, _ঘটেছ,\n  { {0x7d03001f, 0x764b0010, 0x463b0049, 0x00000000}},  //   gens, _ügye, כענע,\n  { {0x2d9e1689, 0xcc240044, 0x61e42a55, 0x00000000}},  //   _vite_, বন্ধ_, luil,\n  { {0xcfb700b6, 0x60c700b9, 0x8fa300ed, 0x00000000}},  //   _כללי_, _zejm, _фате,\n  { {0x7d03001f, 0xfce62257, 0xcb67003b, 0x00000000}},  //   bens, _возо, јање_,\n  { {0x2d9e001a, 0xa954007e, 0x00000000, 0x00000000}},  //   _uite_, ёкні,   ,\n  { {0xb8ce03d7, 0x61e41902, 0xe7870959, 0x00000000}},  //   _कल_, huil, иумо,\n  { {0x644e1671, 0x290e00e7, 0x61e4010c, 0x00000000}},  //   dzbi, _wafa_, kuil,\n  { {0x3ea40436, 0x26cb00c4, 0x0a1600a6, 0x00000000}},  //   _mgmt_, raco_, _خوشح,\n  { {0x97a6003b, 0x26cb00c4, 0x6b5e0089, 0x00000000}},  //   _крил, saco_, rīgu,\n  { {0xf2c70001, 0x93970025, 0x09290025, 0x00000000}},  //   исан, لجرا, _حسني_,\n  { {0x442d0119, 0x7d030059, 0x61e40051, 0x00000000}},  //   će_, zens, fuil,\n  { {0x443f001e, 0x61e4009d, 0x7d032a56, 0x00000000}},  // [7a10] ņu_, guil, yens,\n  { {0x2b4604bd, 0x867c009b, 0x7d030210, 0x00000000}},  //   _lloc_, _ברחו, xens,\n  { {0x7d0313a1, 0xc67800d3, 0x764b0010, 0x00000000}},  //   vens, _محیط_, _ügyb,\n  { {0x7d032a57, 0x61e400ab, 0xdb010056, 0x00000000}},  //   wens, buil, _utlø,\n  { {0x25a90149, 0x61e400e5, 0x60c70023, 0x00000000}},  //   _jual_, cuil, _tejm,\n  { {0x3209009d, 0x25a904be, 0x660d2a58, 0x00000000}},  //   mway_, _mual_, _msak,\n  { {0x7d03049a, 0x2b4604bd, 0x32090133, 0x00000000}},  //   rens, _bloc_, lway_,\n  { {0x660d044e, 0x99840006, 0x3869012d, 0x00000000}},  //   _osak, kymų_, _ćar_,\n  { {0x32090784, 0x7d030549, 0x660d00e0, 0x00000000}},  //   nway_, pens, _nsak,\n  { {0x5d850054, 0x39450c89, 0x6d4a2a59, 0x00000000}},  //   _الطل, сног, chfa,\n  { {0x2b462a5a, 0xe73a02be, 0x61e42a5b, 0x00000000}},  //   _floc_, ген_, zuil,\n  { {0x2bf600b3, 0xc79800a1, 0x2b460544, 0x00000000}},  //   _למען_, جھتا_, _gloc_,\n  { {0x25a90219, 0x9b740054, 0x3a29005f, 0x00000000}},  //   _cual_, _بالص, _çap_,\n  { {0x61e400b0, 0x9f580197, 0x98a50401, 0x00000000}},  //   vuil, _aprì_, _уике,\n  { {0x04430888, 0x39420089, 0x98b80036, 0x00000000}},  //   перн, īkst_, órą_,\n  { {0x7ae9020c, 0x2905003b, 0x3ea010f7, 0x00000000}},  //   nget, lela_, žiti_,\n  { {0x32090ba7, 0x25a92a5c, 0x67240085, 0x00000000}},  // [7a20] gway_, _gual_, _inij,\n  { {0x442a0009, 0x4096007c, 0x61e400bb, 0x00000000}},  //   pxb_, брет, ruil,\n  { {0x672400bb, 0x32090058, 0x00000000, 0x00000000}},  //   _knij, away_,   ,\n  { {0x2905005b, 0x487a0049, 0x8bff0044, 0x00000000}},  //   hela_, אטעס, ্মান_,\n  { {0x61e40219, 0x29050f45, 0x6d4a0de7, 0x00000000}},  //   quil, kela_, thfa,\n  { {0x29050209, 0x8bc610e2, 0x00000000, 0x00000000}},  //   jela_, бсид,   ,\n  { {0x7ae9010f, 0x3ea90087, 0x00000000, 0x00000000}},  //   fget, žata_,   ,\n  { {0x7ae92a5d, 0x6d4a2a5e, 0x00000000, 0x00000000}},  //   gget, shfa,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x67240065, 0xc9260044, 0x7ae92a5f, 0x00000000}},  //   _anij, যস্ত_, aget,\n  { {0x6c860025, 0x25a9006b, 0x6d5a006b, 0x00000000}},  //   _الام, _sual_, _imta,\n  { {0x09e6142f, 0x99840006, 0xa09b0049, 0x00000000}},  //   _годн, tymų_, טייט,\n  { {0x25a92a60, 0xa3cb006e, 0x25a12a61, 0x00000000}},  //   _qual_, रीन_, _pihl_,\n  { {0x80de0055, 0x29050161, 0x660d01d9, 0x00000000}},  //   ন্ত্, cela_, _vsak,\n  { {0x395e12a0, 0x1829025a, 0x00000000, 0x00000000}},  //   mits_, _نقوی_,   ,\n  { {0x660d011c, 0x67242a62, 0x322b013a, 0x00000000}},  //   _tsak, _gnij, лізм_,\n  { {0x6d480047, 0x6d5a080a, 0x657e0022, 0x00000000}},  // [7a30] _olda, _omta, _fkph,\n  { {0x395e1a86, 0x32092a63, 0xf2df0016, 0x00000000}},  //   nits_, rway_, _glân_,\n  { {0x3f1501e0, 0xe4ee00e8, 0x320901a3, 0x00000000}},  //   ждес, _जाति_, sway_,\n  { {0x6d48022b, 0x2905002d, 0xc7b3007b, 0x00000000}},  //   _alda, zela_, לבע_,\n  { {0xd01000a1, 0x395e0b1a, 0x00000000, 0x00000000}},  //   ولے_, kits_,   ,\n  { {0xfe7003ec, 0x527a009b, 0x29052a64, 0x00000000}},  //   ردن_, _כנרא, xela_,\n  { {0x395e0169, 0x7ae90125, 0x00000000, 0x00000000}},  //   dits_, tget,   ,\n  { {0xa3cb02fb, 0xe9d9012b, 0x80de0055, 0x00000000}},  //   रीय_, аки_, ন্দ্,\n  { {0x2905022b, 0xc9a6007c, 0x7ae90f12, 0x00000000}},  //   tela_, овые_, rget,\n  { {0x395e1cde, 0xe8f60b21, 0x672429fa, 0x00000000}},  //   gits_, оль_, _snij,\n  { {0x2905022b, 0x1cb80355, 0xa3cb006e, 0x00000000}},  //   rela_, _طالب_, रीम_,\n  { {0xbf870011, 0x236902aa, 0x6d4301e5, 0x00000000}},  //   _điền_, jnaj_, lkna,\n  { {0x395e12a0, 0xb4d50061, 0x00000000, 0x00000000}},  //   bits_, हणू_,   ,\n  { {0x395e0bdb, 0x6d4318ee, 0x03a601fc, 0x00000000}},  //   cits_, nkna, живо,\n  { {0x64a3007e, 0x00000000, 0x00000000, 0x00000000}},  //   дара,   ,   ,\n  { {0x67240059, 0x96ba01f9, 0xb33b00fa, 0x00000000}},  //   _unij, _туку_, _piça,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  // [7a40]   ,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x657c00ea, 0x9eaa00e2, 0x00000000, 0x00000000}},  //   morh, авеа_,   ,\n  { {0x1e8601f9, 0x4eba0044, 0x63b301ca, 0x00000000}},  //   олем, ুল্ল, žené,\n  { {0xdd8f0014, 0x00000000, 0x00000000, 0x00000000}},  //   چون_,   ,   ,\n  { {0xdd8f06b4, 0x00000000, 0x00000000, 0x00000000}},  //   نون_,   ,   ,\n  { {0x22400010, 0x395e225c, 0xfbcf0380, 0x00000000}},  //   lyik_, vits_, نتي_,\n  { {0x3ce0011f, 0x5a34026b, 0x98a5007f, 0x00000000}},  //   şiv_, знит, oklė_,\n  { {0x395e1923, 0xa92a007e, 0x6f1d2a65, 0x00000000}},  //   tits_, аіне_, _ósca,\n  { {0x6d430039, 0x23690036, 0x6d5a2967, 0x00000000}},  //   ckna, znaj_, _umta,\n  { {0x395e2a66, 0x00000000, 0x00000000, 0x00000000}},  //   rits_,   ,   ,\n  { {0x395e12a0, 0x2b5f0035, 0x00000000, 0x00000000}},  //   sits_, ciuc_,   ,\n  { {0x657c05b7, 0x395e00f8, 0x8f9b0097, 0x00000000}},  //   forh, pits_, ייטי,\n  { {0x23690036, 0xb4d50061, 0x3f860062, 0x00000000}},  //   wnaj_, हणे_, hlou_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7bdb00a0, 0x00000000, 0x00000000, 0x00000000}},  //   יקלו,   ,   ,\n  { {0x657c00ab, 0x22400010, 0x00000000, 0x00000000}},  // [7a50] borh, gyik_,   ,\n  { {0xdb08004a, 0x00000000, 0x00000000, 0x00000000}},  //   _dudé,   ,   ,\n  { {0x7f490065, 0x6d4300ea, 0x98b800b4, 0x00000000}},  //   _pleq, vkna, órę_,\n  { {0xa3cb0061, 0xbf580088, 0x00000000, 0x00000000}},  //   रीण_, орії_,   ,\n  { {0x7bc8018e, 0x22520036, 0xdd140142, 0x00000000}},  //   _awdu, czyk_, _dĺžk,\n  { {0xddc2013e, 0xfe700025, 0x00000000, 0x00000000}},  //   nzoř, خدم_,   ,\n  { {0x6d43143e, 0x26c20036, 0x3f862a67, 0x00000000}},  //   rkna, ybko_, blou_,\n  { {0x3f860129, 0x6d4302e1, 0x20030022, 0x00000000}},  //   clou_, skna, _ipji_,\n  { {0xa3cb024c, 0x5d55022a, 0x20030022, 0x00000000}},  //   रीत_, _екат, _hpji_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x26c20032, 0x657c0342, 0xb33b0068, 0x00000000}},  //   tbko_, vorh, _niço,\n  { {0xabfa009b, 0xc6150044, 0x00000000, 0x00000000}},  //   _להער, ামনা_,   ,\n  { {0x657c03c2, 0xf5b60088, 0x7afb1be0, 0x00000000}},  //   torh, ясню, mfut,\n  { {0xe9b800a1, 0x5d790049, 0x00000000, 0x00000000}},  //   _بنوں_, מאָק,   ,\n  { {0xf746151c, 0x18660534, 0xdb0200f6, 0x00000000}},  //   _неко, _наши_, _bioè,\n  { {0xd2aa008b, 0x21f4006c, 0x52aa005e, 0x00000000}},  //   скае_, täh_, свам_,\n  { {0xe297026b, 0x6fce0061, 0xe0da0256, 0x00000000}},  // [7a60] зат_, हीनं, йва_,\n  { {0x40960679, 0x66040058, 0xacfd007e, 0x00000000}},  //   прет, _ipik, _авiя,\n  { {0x22520036, 0xb53b009b, 0xdb0a0056, 0x00000000}},  //   szyk_, _הגיש, ppfø,\n  { {0x3f860e6d, 0x2d8705e1, 0x00000000, 0x00000000}},  //   ulou_, elne_,   ,\n  { {0x539b00a3, 0xbb4400b0, 0x00000000, 0x00000000}},  //   _ליטו, äämä,   ,\n  { {0xf987026c, 0x261d0061, 0x00000000, 0x00000000}},  //   _سب_, मिती_,   ,\n  { {0x69dd0027, 0x7afb2a68, 0x00000000, 0x00000000}},  //   ásen, ffut,   ,\n  { {0x2d8704d0, 0x2a6904eb, 0x00000000, 0x00000000}},  //   alne_, _žaba_,   ,\n  { {0x6443011f, 0xdcf80b4a, 0x60dc0085, 0x00000000}},  //   _üniv, lovč, _kdrm,\n  { {0x63a6067e, 0x62860dc6, 0x753a010f, 0x00000000}},  //   _likn, _myko, ötzl,\n  { {0x66041e3a, 0x00000000, 0x00000000, 0x00000000}},  //   _apik,   ,   ,\n  { {0x63a606ed, 0x61e4073a, 0xa5f9007c, 0x00000000}},  //   _nikn, kril, оему_,\n  { {0x62860479, 0x00000000, 0x00000000, 0x00000000}},  //   _nyko,   ,   ,\n  { {0x61e4002d, 0x25a5000c, 0x69c02a69, 0x00000000}},  //   dril, öll_, mpme,\n  { {0x6604011c, 0xd4040827, 0x61e41254, 0x00000000}},  //   _epik, няти, eril,\n  { {0x5334007c, 0x62860007, 0x7d0a01d6, 0x00000000}},  //   нест, _byko, hefs,\n  { {0x63a6023a, 0xd7f8001a, 0xddcb0861, 0x00000000}},  // [7a70] _dikn, ltă_, _žižk,\n  { {0x69c000ab, 0x69c401d5, 0x00000000, 0x00000000}},  //   ipme, _ħiel,   ,\n  { {0xd7f8000d, 0x61e405e0, 0x661d24fd, 0x00000000}},  //   ntă_, aril, lvsk,\n  { {0xd7f80035, 0x2bb501c5, 0x00000000, 0x00000000}},  //   ită_, _nāca_,   ,\n  { {0x61e42582, 0x00000000, 0x00000000, 0x00000000}},  //   cril,   ,   ,\n  { {0xc21200b6, 0x61e20059, 0xf1b200b3, 0x00000000}},  //   _שהם_, šolc, _בסך_,\n  { {0x3b9500ed, 0x00000000, 0x00000000, 0x00000000}},  //   мјит,   ,   ,\n  { {0x44210145, 0x00000000, 0x00000000, 0x00000000}},  //   _mrh_,   ,   ,\n  { {0x6609014a, 0x00000000, 0x00000000, 0x00000000}},  //   çekl,   ,   ,\n  { {0x7afb0325, 0x00000000, 0x00000000, 0x00000000}},  //   sfut,   ,   ,\n  { {0x661d0065, 0x66042a6a, 0x00000000, 0x00000000}},  //   evsk, _spik,   ,\n  { {0xd90f026c, 0x501a009b, 0xa5b2013d, 0x00000000}},  //   ئیں_, קורו, _इंदौ,\n  { {0x6b890635, 0xa3cb0164, 0xe8ee003b, 0x00000000}},  //   mleg, रीस_, _ил_,\n  { {0x6b892a6b, 0x61e40180, 0x6b9b0032, 0x00000000}},  //   lleg, vril, lmug,\n  { {0x63a62a6c, 0xe5a300e3, 0x44212a6d, 0x00000000}},  //   _pikn, тири, _crh_,\n  { {0x6b892a6e, 0x37870265, 0x61e40142, 0x00000000}},  //   nleg, _общо_, tril,\n  { {0x63a62a6f, 0x6f19018e, 0x61e410fb, 0x00000000}},  // [7a80] _vikn, ddwc, uril,\n  { {0x62862a70, 0x92ce0044, 0x61e40238, 0x00000000}},  //   _vyko, রলে_, rril,\n  { {0x62860046, 0xa00a0d3a, 0x6b89009f, 0x00000000}},  //   _wyko, تقال_, kleg,\n  { {0x60ce02c1, 0x61e40091, 0xc4fa00a1, 0x00000000}},  //   _webm, pril, _اٹھا_,\n  { {0x6b890292, 0xf2d30049, 0xdcfa002b, 0x00000000}},  //   dleg, _בער_, _jitħ,\n  { {0x6b8201c9, 0x6b8900ea, 0x4c94007c, 0x00000000}},  //   _skog, eleg, нилс,\n  { {0x6b8900db, 0x656e0048, 0x6443014a, 0x00000000}},  //   fleg, inbh, _ünit,\n  { {0x6b892a6e, 0x7d0a00f8, 0xda14003b, 0x00000000}},  //   gleg, sefs, едињ,\n  { {0x3cfb0164, 0xf1bf0048, 0xe9b700a1, 0x00000000}},  //   ल्हे_, _grád_, وچوں_,\n  { {0xd8f801fb, 0x6b892a71, 0x0d4a0439, 0x00000000}},  //   чної_, aleg, _بشري_,\n  { {0x798800ab, 0x93c50082, 0x00000000, 0x00000000}},  //   rldw, _chắ,   ,\n  { {0xb7d8026c, 0xd7f8001a, 0x6b890036, 0x00000000}},  //   _ہوتا_, rtă_, cleg,\n  { {0xd7f8000d, 0x3cfb0204, 0xdb08073f, 0x00000000}},  //   stă_, ल्वे_, _judí,\n  { {0xd7f8001a, 0x661d0190, 0x6b800fcf, 0x00000000}},  //   ptă_, rvsk, lomg,\n  { {0xe7e50754, 0xdb1a009d, 0x00000000, 0x00000000}},  //   _किया_, _atté,   ,\n  { {0x442101d9, 0x6b802a72, 0x7bd801d6, 0x00000000}},  //   _vrh_, nomg, isvu,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  // [7a90]   ,   ,   ,\n  { {0x290c006c, 0xddc20036, 0xc0ab00a1, 0x00000000}},  //   neda_, szoś, زائل_,\n  { {0xd371023c, 0xdb082a73, 0x00000000, 0x00000000}},  //   _مهد_, _audí,   ,\n  { {0x290c0207, 0xc49a00b3, 0x6b890190, 0x00000000}},  //   heda_, _משתת, xleg,\n  { {0x290c0066, 0x7bda0022, 0x6b890056, 0x00000000}},  //   keda_, _avtu, vleg,\n  { {0x290c0209, 0x61ed01a3, 0x00000000, 0x00000000}},  //   jeda_, mual,   ,\n  { {0x6b8903c2, 0x290c010a, 0x61ed00b0, 0x00000000}},  //   tleg, deda_, lual,\n  { {0x394e0066, 0xe0d000a1, 0x709400e2, 0x00000000}},  //   _alfs_, _مزہ_, _расф,\n  { {0x6b8905ed, 0x61ed2a74, 0x00000000, 0x00000000}},  //   rleg, nual,   ,\n  { {0x6b89009f, 0x290c006c, 0xd102006e, 0x00000000}},  //   sleg, geda_, र्पण_,\n  { {0x6b891646, 0xef1901d5, 0x61ed0145, 0x00000000}},  //   pleg, _każ_, hual,\n  { {0x44260027, 0xb33b0065, 0x61ed002d, 0x00000000}},  //   _čo_, _diçk, kual,\n  { {0x290c003b, 0x61ed0022, 0xef190066, 0x00000000}},  //   beda_, jual, _maż_,\n  { {0x93c50082, 0x00000000, 0x00000000, 0x00000000}},  //   _thắ,   ,   ,\n  { {0xf1bf0195, 0xa3cb001c, 0x232a092b, 0x00000000}},  //   _atá_, रील_, пови_,\n  { {0xdcfa002b, 0x00000000, 0x00000000, 0x00000000}},  //   _titħ,   ,   ,\n  { {0x61ed00d6, 0x91e32882, 0x00000000, 0x00000000}},  // [7aa0] gual, лоте,   ,\n  { {0xdce30006, 0x2d4b0190, 0x96570104, 0x00000000}},  //   monė, _søen_, _נשיא_,\n  { {0xdd990173, 0x505a01ab, 0xdce3007f, 0x00000000}},  //   _epňk_, чшая_, lonė,\n  { {0x60c3005d, 0x79810016, 0x2d852a75, 0x00000000}},  //   ınma, holw, _akle_,\n  { {0x79810036, 0x61ed04cb, 0xef190066, 0x00000000}},  //   kolw, cual, _daż_,\n  { {0x3ead27a1, 0x3cfb0164, 0x7bd800ea, 0x00000000}},  //   _eget_, ल्ले_, tsvu,\n  { {0xdee60594, 0x290c0b9f, 0xd007122e, 0x00000000}},  //   _пови, veda_, _пере_,\n  { {0x2d85011f, 0x26d20b3d, 0x8fa30364, 0x00000000}},  //   _ekle_, _neyo_, _басе,\n  { {0x49740072, 0x290c01ed, 0xdce3007f, 0x00000000}},  //   клис, teda_, jonė,\n  { {0xccf800b9, 0x9e63003b, 0x79812a76, 0x00000000}},  //   _změn_, _свуд, golw,\n  { {0x61ed000d, 0x290c0142, 0x31570049, 0x00000000}},  //   zual, reda_, גיין_,\n  { {0x290c0059, 0x7d1a0968, 0x00000000, 0x00000000}},  //   seda_, _hats,   ,\n  { {0x7d1a0b3e, 0x61ed1632, 0x290c0093, 0x00000000}},  //   _kats, xual, peda_,\n  { {0xd90e007a, 0x6d4a0145, 0xa3b50316, 0x00000000}},  //   _اید_, nkfa, _छंद_,\n  { {0x7d1a06a1, 0xc885010f, 0x23e4007e, 0x00000000}},  //   _mats, ößte_, літв,\n  { {0xb33b006b, 0x3ea910f7, 0xe3b001af, 0x00000000}},  //   _kiçi, žati_, صرف_,\n  { {0xb5a72329, 0x672d0020, 0x00000000, 0x00000000}},  // [7ab0] _прой, _inaj,   ,\n  { {0x7d1a2a77, 0x35f80025, 0x61ed2a78, 0x00000000}},  //   _nats, _أريد_, rual,\n  { {0x61ed051b, 0xdcb10082, 0x7f190088, 0x00000000}},  //   sual, _bản_, ділу_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x5f740355, 0x7d1a0ace, 0x672d00e7, 0x00000000}},  //   دالر, _bats, _mnaj,\n  { {0x7d1a059a, 0xdb0800f6, 0x00000000, 0x00000000}},  //   _cats, _audà,   ,\n  { {0x2ef502a8, 0x1af50044, 0xef19002b, 0x00000000}},  //   _извр, _আসবে_, _taż_,\n  { {0xb33b01df, 0x3eb9005a, 0x6d4a085d, 0x00000000}},  //   _biçi, _üst_, akfa,\n  { {0xfe73025a, 0x7d1a00bb, 0xfe4302fd, 0x00000000}},  //   _صدر_, _fats, _حکای,\n  { {0x39452a79, 0x7cd900e9, 0x98a50c96, 0x00000000}},  //   тног, _آواز_, кипе,\n  { {0x7981005b, 0x1ae30044, 0x00000000, 0x00000000}},  //   rolw, ক্ষে_,   ,\n  { {0x66160193, 0x6f1b0006, 0x7981047a, 0x00000000}},  //   _psyk, _jauc, solw,\n  { {0xd045006b, 0x6f1b06ed, 0xdb2600a1, 0x00000000}},  //   rahə, _mauc, _جونی,\n  { {0x7dd80051, 0x6f1b01c5, 0x672d2a7a, 0x00000000}},  //   _húsá, _lauc, _enaj,\n  { {0xccf200a0, 0x94790269, 0x00000000, 0x00000000}},  //   יכם_, есту_,   ,\n  { {0x6f1b0821, 0x00000000, 0x00000000, 0x00000000}},  //   _nauc,   ,   ,\n  { {0x03a30cb7, 0x69db00f4, 0xe1fa041f, 0x00000000}},  // [7ac0] рито, nsue, ьга_,\n  { {0x672d2a7b, 0x25d7007b, 0xf2130055, 0x00000000}},  //   _znaj, _שוין_, সমূহ_,\n  { {0x7d1a044e, 0x6f1b2a7c, 0xc0590088, 0x00000000}},  //   _rats, _bauc, нії_,\n  { {0xdee601fb, 0x7d1a0039, 0x6f1b1632, 0x00000000}},  //   тоди, _sats, _cauc,\n  { {0x7d1a0f81, 0x7bc10bd3, 0x00000000, 0x00000000}},  //   _pats, _atlu,   ,\n  { {0xde93003b, 0xdb0800f6, 0x00000000, 0x00000000}},  //   јашњ, _sudà,   ,\n  { {0x3f6a00d7, 0x6d4a01e5, 0x7d1a00b0, 0x00000000}},  //   _живо_, rkfa, _vats,\n  { {0x7d1a2a7d, 0x6f1b00f4, 0x5b1400ed, 0x00000000}},  //   _wats, _gauc, умит,\n  { {0x7d1a010f, 0x6f02013e, 0x00000000, 0x00000000}},  //   _tats, mfoc,   ,\n  { {0x672d2480, 0x35dc013d, 0x7764004a, 0x00000000}},  //   _snaj, _बिज़, _amix,\n  { {0x6f1b004a, 0x00000000, 0x00000000, 0x00000000}},  //   _yauc,   ,   ,\n  { {0x69db004a, 0x00000000, 0x00000000, 0x00000000}},  //   bsue,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x1af50044, 0x44250051, 0x8937009b, 0x00000000}},  //   _আসতে_, íl_, _ברגע_,\n  { {0x291c005d, 0x672d2a7e, 0x3a260030, 0x00000000}},  //   _hava_, _unaj, _krop_,\n  { {0x291c1609, 0x6f1b010f, 0x2018008a, 0x00000000}},  // [7ad0] _kava_, _rauc, _asri_,\n  { {0x6f1b08f7, 0xe3b000a1, 0x291e0010, 0x00000000}},  //   _sauc, صرہ_, ndta_,\n  { {0x7ae2021e, 0x6f020197, 0x6b5e0089, 0x00000000}},  //   _odot, ffoc, lūgu,\n  { {0x291c059e, 0x7ae21b1c, 0x26d90026, 0x00000000}},  //   _lava_, _ndot, naso_,\n  { {0xdef804af, 0xfce5041f, 0x6f1b009d, 0x00000000}},  //   тых_, голо, _vauc,\n  { {0x7ae20047, 0x291c058b, 0x0d840245, 0x00000000}},  //   _adot, _nava_, алін,\n  { {0xdb080211, 0x26d90058, 0x6f1b010f, 0x00000000}},  //   _sudá, kaso_, _tauc,\n  { {0xe4e3006e, 0x69db002d, 0xd24e00a1, 0x00000000}},  //   कृति_, tsue, _بچہ_,\n  { {0x22490149, 0xdea100a1, 0xdce30d0a, 0x00000000}},  //   nyak_, _ایشی, linč,\n  { {0x291c059a, 0x7ae2002d, 0x6ce4007e, 0x00000000}},  //   _cava_, _edot, _віце,\n  { {0x69db2a7f, 0x291c014a, 0x3a2600b5, 0x00000000}},  //   ssue, _dava_, _erop_,\n  { {0xf092009b, 0xdb080010, 0x26d908d3, 0x00000000}},  //   מני_, _tudá, gaso_,\n  { {0x6d41011f, 0x09e5007c, 0x291c0026, 0x00000000}},  //   _kola, _солн, _fava_,\n  { {0x6d41002d, 0x22492a80, 0x60d5297f, 0x00000000}},  //   _jola, dyak_, _nezm,\n  { {0x8cca0061, 0x32190300, 0x5faf0309, 0x00000000}},  //   _स्फो, _assy_, _जंगल,\n  { {0x26d9008e, 0x6d412378, 0x7c2e11c3, 0x00000000}},  //   caso_, _lola, _ábre,\n  { {0x60d50089, 0xb226008b, 0x2018006b, 0x00000000}},  // [7ae0] _bezm, ымал, _ssri_,\n  { {0x6d412a81, 0x20560545, 0x00000000, 0x00000000}},  //   _nola, лтер,   ,\n  { {0x6f0208d9, 0xdb0b00c4, 0x60d50035, 0x00000000}},  //   tfoc, _vigê, _dezm,\n  { {0xf1bf2a82, 0x6d410288, 0x201800d9, 0x00000000}},  //   _irán_, _aola, _vsri_,\n  { {0x6d410039, 0xdee300e3, 0x00000000, 0x00000000}},  //   _bola, сочи,   ,\n  { {0x6d410325, 0x3f8f006c, 0xa3cb0309, 0x00000000}},  //   _cola, algu_, रीक_,\n  { {0x6d41069b, 0x69c200c7, 0xab5c0089, 0x00000000}},  //   _dola, _stoe, _atļa,\n  { {0x6d41002a, 0x3a260129, 0x291c0089, 0x00000000}},  //   _eola, _prop_, _sava_,\n  { {0x6d410051, 0x26d90197, 0x32000173, 0x00000000}},  //   _fola, vaso_, ntiy_,\n  { {0x6d410016, 0xa96700ed, 0xdb0b00d4, 0x00000000}},  //   _gola, лиња_, _ligè,\n  { {0x313700b6, 0x291c2a83, 0xb8dc006e, 0x00000000}},  //   אריך_, _vava_, _अल_,\n  { {0x3a26028c, 0x6d412a84, 0x399901aa, 0x00000000}},  //   _trop_, _zola, vèse_,\n  { {0x291c0089, 0x6d41006b, 0x33200066, 0x00000000}},  //   _tava_, _yola, ddix_,\n  { {0x040e0055, 0x6d582a85, 0xf65f0030, 0x00000000}},  //   হিনী_, nhva, lbæk_,\n  { {0x88bb0049, 0x26d90dfb, 0x60d52a86, 0x00000000}},  //   _אזוי, paso_, _rezm,\n  { {0xe315003b, 0xdce3007f, 0x98bc000a, 0x00000000}},  //   јмањ, vinč, _movč_,\n  { {0x23692a87, 0x00000000, 0x00000000, 0x00000000}},  // [7af0] riaj_,   ,   ,\n  { {0x7c281923, 0x23690036, 0x660d011c, 0x00000000}},  //   _ordr, siaj_, _ipak,\n  { {0xd011036d, 0xa3cb007d, 0x60d50161, 0x00000000}},  //   تلا_, रीख_, _vezm,\n  { {0x6d410127, 0xdce30006, 0x398b0030, 0x00000000}},  //   _sola, rinč, løst_,\n  { {0x7c281ca9, 0x8e8500ed, 0x32190022, 0x00000000}},  //   _ardr, јгле, _ussy_,\n  { {0x660d000b, 0x6da517da, 0x644804ec, 0x00000000}},  //   _mpak, шила, ädig,\n  { {0x6d410142, 0xeab10054, 0x8cc1006e, 0x00000000}},  //   _vola, يعة_, रुषो,\n  { {0x660d0209, 0xd5b50204, 0x7e7b0032, 0x00000000}},  //   _opak, ंदाज, _txup,\n  { {0x5f4404e8, 0x6d412098, 0x61ed0276, 0x00000000}},  //   _انقل, _tola, nral,\n  { {0x63af01a8, 0xd90f00a1, 0x6d580161, 0x00000000}},  //   _licn, سیع_, chva,\n  { {0x2d870710, 0x628f0061, 0x660d2a88, 0x00000000}},  //   mone_, _lyco, _apak,\n  { {0x61ed014a, 0x6e29010f, 0x70b20164, 0x00000000}},  //   kral, _kreb, _जल्ल,\n  { {0x7f3a007b, 0x0ab40070, 0xbb840025, 0x00000000}},  //   דערו, _احمد, _الني,\n  { {0x2d870207, 0x69c90112, 0x3dd70044, 0x00000000}},  //   none_, mpee, _সমাল,\n  { {0x64a6008b, 0x6f092a89, 0xdb0b0051, 0x00000000}},  //   рава, _obec, _aigé,\n  { {0x2d870a60, 0x58940025, 0x00000000, 0x00000000}},  //   hone_, _اجهز,   ,\n  { {0x52aa2a8a, 0x2d871747, 0x33200096, 0x00000000}},  // [7b00] твам_, kone_, rdix_,\n  { {0x6f090161, 0x2d870006, 0xe3ba007c, 0x00000000}},  //   _abec, jone_, _ибо_,\n  { {0x2d8701aa, 0x6e292a8b, 0x46ba013d, 0x00000000}},  //   done_, _areb, _इलाह,\n  { {0x61ed2a8c, 0x6e290855, 0xf1bf0062, 0x00000000}},  //   bral, _breb, _král_,\n  { {0x2d8702d5, 0x6d582698, 0x6e2903c5, 0x00000000}},  //   fone_, thva, _creb,\n  { {0xb5fb0047, 0x7c280126, 0xcbe6026b, 0x00000000}},  //   szág, _prdr, ации,\n  { {0x6e2901d6, 0x6ca3005e, 0x317b0049, 0x00000000}},  //   _ereb, оръж, _סאלד,\n  { {0x63a400b5, 0x6d5804eb, 0xa3cb007d, 0x00000000}},  //   nmin, shva, रीट_,\n  { {0x63a40fc9, 0x6e292645, 0x99820224, 0x00000000}},  //   imin, _greb, íků_,\n  { {0x2d870e68, 0x63a4085e, 0x00000000, 0x00000000}},  //   cone_, hmin,   ,\n  { {0x660d0107, 0x63a40006, 0x00000000, 0x00000000}},  //   _spak, kmin,   ,\n  { {0xdce3001e, 0x7bca010f, 0x63a414a8, 0x00000000}},  //   minā, mpfu, jmin,\n  { {0xdce3001e, 0x7bca00ab, 0x63a42a8d, 0x00000000}},  //   linā, lpfu, dmin,\n  { {0x61ed006b, 0xb8660014, 0x229c007f, 0x00000000}},  //   vral, _پاتو, iškį_,\n  { {0xf367003b, 0x6b5512c5, 0x63a4000a, 0x00000000}},  //   атан, _hága, fmin,\n  { {0xe738012b, 0x2d870874, 0x63b70039, 0x00000000}},  //   _већ_, zone_, _vuxn,\n  { {0x2d872a8e, 0xa3cb007d, 0xdcef00b9, 0x00000000}},  // [7b10] yone_, रीज_, _řeče,\n  { {0x61ed24c3, 0x63a40ac0, 0xdb0b00d6, 0x00000000}},  //   rral, amin, _vigé,\n  { {0x63a40129, 0x2d870197, 0x2b810036, 0x00000000}},  //   bmin, vone_, rócz_,\n  { {0x6e290c06, 0xdce3001e, 0x2d8700c7, 0x00000000}},  //   _preb, dinā, wone_,\n  { {0x2d870912, 0xfe7000b8, 0x1af50055, 0x00000000}},  //   tone_, وده_, _আসলে_,\n  { {0x6e2904eb, 0x00000000, 0x00000000, 0x00000000}},  //   _vreb,   ,   ,\n  { {0x2d87051b, 0xa3cb0204, 0xeb020316, 0x00000000}},  //   rone_, रीच_, लभूत_,\n  { {0x2d872a8f, 0x2b150088, 0x9f052a90, 0x00000000}},  //   sone_, ськр, _دورو,\n  { {0x2d871ad2, 0xaa490057, 0x6e290009, 0x00000000}},  //   pone_, уппа_, _ureb,\n  { {0x69c900b0, 0x63a4005d, 0xdce30089, 0x00000000}},  //   rpee, zmin, binā,\n  { {0x1b1f0055, 0x69c900c7, 0xdce3001e, 0x00000000}},  //   ভাবে_, spee, cinā,\n  { {0x63a4006b, 0x69c90e67, 0x6b551a13, 0x00000000}},  //   xmin, ppee, _fága,\n  { {0x4e790049, 0xb5c7009e, 0x00000000, 0x00000000}},  //   ראָצ, یڈیم_,   ,\n  { {0x044600ed, 0x63a4005b, 0x1de00061, 0x00000000}},  //   бегн, wmin, _निघत,\n  { {0x63a40004, 0x8579005e, 0x00000000, 0x00000000}},  //   tmin, рсят_,   ,\n  { {0x6756007a, 0x6b890116, 0x63a4007f, 0x00000000}},  //   _دختر, noeg, umin,\n  { {0xdce3001e, 0x78c60010, 0x6f010010, 0x00000000}},  // [7b20] zinā, _érvé, zábó,\n  { {0x63a40004, 0x1aff0044, 0x00000000, 0x00000000}},  //   smin, ্যিই_,   ,\n  { {0xd8da0049, 0x4fea02dc, 0xd24f009e, 0x00000000}},  //   רקער, умен_, ونہ_,\n  { {0xdce30089, 0x644e0006, 0x656e0058, 0x00000000}},  //   vinā, mybi, libh,\n  { {0x644e04dc, 0xa3d4013d, 0x00000000, 0x00000000}},  //   lybi, सीर_,   ,\n  { {0xdce30089, 0x8e200088, 0x00000000, 0x00000000}},  //   tinā, кiв_,   ,\n  { {0x61f6014a, 0x644e007f, 0x00000000, 0x00000000}},  //   luyl, nybi,   ,\n  { {0xf06303c8, 0xdce3001e, 0x6b5500dc, 0x00000000}},  //   _эксп, rinā, _pága,\n  { {0xdce3001e, 0xfe430140, 0x61f6014a, 0x00000000}},  //   sinā, _енто, nuyl,\n  { {0x26c209aa, 0x644e0006, 0x81ea0044, 0x00000000}},  //   ecko_, kybi, _মহা_,\n  { {0x23810006, 0x61f61811, 0x00000000, 0x00000000}},  //   lėje_, huyl,   ,\n  { {0x644e0006, 0x290200b9, 0x79880016, 0x00000000}},  //   dybi, řka_, sodw,\n  { {0x2381010a, 0x00000000, 0x00000000, 0x00000000}},  //   nėje_,   ,   ,\n  { {0x6d5d0006, 0xdce30035, 0x00000000, 0x00000000}},  //   _įsak, mină,   ,\n  { {0x60de0022, 0xa3d4007d, 0x00000000, 0x00000000}},  //   dapm, सील_,   ,\n  { {0x443f0119, 0xa91c0027, 0x5b7b0049, 0x00000000}},  //   ću_, koľk, ָרמא,\n  { {0xdb080027, 0xe820007d, 0x00000000, 0x00000000}},  // [7b30] _budú, यिका_,   ,\n  { {0x30a709da, 0xba9b009b, 0x1a9b0049, 0x00000000}},  //   брев, רסמי, רימע,\n  { {0x44270047, 0x5fa40061, 0x691e0066, 0x00000000}},  //   _én_, _ओळखल, _għeż,\n  { {0xdddb0428, 0xd7fb0049, 0x00000000, 0x00000000}},  //   _využ, רהאל,   ,\n  { {0x6b8902ae, 0xf127105c, 0x9f580010, 0x00000000}},  //   voeg, _льво, _apró_,\n  { {0x3cfe2a91, 0x629d0089, 0x00000000, 0x00000000}},  //   _cctv_, _izso,   ,\n  { {0xa4fc0049, 0x8c42005e, 0xdca20256, 0x00000000}},  //   אלוט, деще, маши,\n  { {0x1b490478, 0x39e9003b, 0x23810006, 0x00000000}},  //   рзии_, адио_, bėje_,\n  { {0x499000a1, 0xfaf90089, 0x6b8900bb, 0x00000000}},  //   کیور, rgū_, roeg,\n  { {0x764f0036, 0x00000000, 0x00000000, 0x00000000}},  //   dycy,   ,   ,\n  { {0x07a600c2, 0xe73a00e3, 0x6b89010e, 0x00000000}},  //   жанн, аен_, poeg,\n  { {0x16aa09ae, 0xc4c90097, 0x644e2198, 0x00000000}},  //   ивни_, _יג_, vybi,\n  { {0x656e06f6, 0x2bb50089, 0x65a001a2, 0x00000000}},  //   tibh, _vācu_, höhe,\n  { {0x644e0eda, 0xdcf800b9, 0x7afb0881, 0x00000000}},  //   tybi, dově, lgut,\n  { {0xa34a011e, 0x39470133, 0x656e0048, 0x00000000}},  //   азва_, _ions_, ribh,\n  { {0x7afb2a92, 0x644e0006, 0x39470145, 0x00000000}},  //   ngut, rybi, _hons_,\n  { {0xe0da017f, 0xc878005f, 0xcb120104, 0x00000000}},  // [7b40] ива_, mağa_, ולן_,\n  { {0x21a300ed, 0x40960264, 0x67240020, 0x00000000}},  //   диум, орет, _haij,\n  { {0x39470142, 0x67240778, 0x64a60783, 0x00000000}},  //   _mons_, _kaij, _фана,\n  { {0x25b7007a, 0x3cfe04e9, 0x23810006, 0x00000000}},  //   _دهید_, _sctv_, tėje_,\n  { {0x6724001e, 0xeda6003b, 0x2bd70061, 0x00000000}},  //   _maij, ошко, णीसा,\n  { {0x61e4005d, 0x23810006, 0x2b460082, 0x00000000}},  //   msil, rėje_, _sooc_,\n  { {0x6b5c00f4, 0x61e41ad7, 0x3cfe0011, 0x00000000}},  //   _lége, lsil, _vctv_,\n  { {0x60dc0219, 0x8cca007d, 0x67240258, 0x00000000}},  //   _herm, _स्रो, _naij,\n  { {0x39472a93, 0x60dc0dde, 0x6458002b, 0x00000000}},  //   _bons_, _kerm, _żvil,\n  { {0x60dc0022, 0x61e400b0, 0x67360010, 0x00000000}},  //   _jerm, isil, _anyj,\n  { {0x61e40477, 0x6d5a00b0, 0x672401f3, 0x00000000}},  //   hsil, _ilta, _baij,\n  { {0xd6db03f3, 0x61e400b0, 0x6d48016e, 0x00000000}},  //   што_, ksil, _hoda,\n  { {0x6d482a94, 0x39470129, 0x7e6201f3, 0x00000000}},  //   _koda, _fons_, nzop,\n  { {0xd5b8008b, 0x60dc01ee, 0x7ae00232, 0x00000000}},  //   ўся_, _nerm, lamt,\n  { {0x6d48033b, 0x29c0001d, 0x61e602e1, 0x00000000}},  //   _moda, _hòa_, _avkl,\n  { {0x53340517, 0x6d480026, 0x7ae02a95, 0x00000000}},  //   мест, _loda, namt,\n  { {0x6d5a1755, 0x60dc2a96, 0x776d049a, 0x00000000}},  // [7b50] _olta, _berm, _imax,\n  { {0x6d48001e, 0x7d1806ac, 0x60dc04cb, 0x00000000}},  //   _noda, jevs, _cerm,\n  { {0x60dc01e3, 0x7ae0107e, 0xd7f8001a, 0x00000000}},  //   _derm, kamt, nuă_,\n  { {0x441a019b, 0xdcf80224, 0x4421008d, 0x00000000}},  //   _פורס, pově, _ish_,\n  { {0x60dc0e8d, 0x6d480211, 0x433a00b3, 0x00000000}},  //   _ferm, _boda, _הערב,\n  { {0x8d650764, 0xabd501fc, 0x3d0001f5, 0x00000000}},  //   явле, пциј, _राणे_,\n  { {0x6d482a97, 0x394706ed, 0x00000000, 0x00000000}},  //   _doda, _rons_,   ,\n  { {0x442104be, 0xe9d9081e, 0xb5fb0010, 0x00000000}},  //   _msh_, бки_, zzáa,\n  { {0x394700d4, 0x44212a98, 0x7afb010e, 0x00000000}},  //   _pons_, _lsh_, rgut,\n  { {0x395e0038, 0x7d1801ee, 0x6b5c0010, 0x00000000}},  //   ghts_, cevs, _rége,\n  { {0x7d7a0049, 0x442116e7, 0x67240d25, 0x00000000}},  //   _פרעג, _nsh_, _paij,\n  { {0x6d4802ae, 0x6f1922b8, 0xed590091, 0x00000000}},  //   _zoda, newc, _duže_,\n  { {0xe8ee1662, 0x45d3007e, 0x39470133, 0x00000000}},  //   _пл_, ноўс, _tons_,\n  { {0x395e04e5, 0x6b5c0010, 0x88bc00b9, 0x00000000}},  //   chts_, _vége, nděl,\n  { {0x68e1006c, 0x67242641, 0x03a60098, 0x00000000}},  //   mald, _taij, зиво,\n  { {0x68e11804, 0x44210026, 0x97ae006b, 0x00000000}},  //   lald, _dsh_, üşdü,\n  { {0xd29a0088, 0x44210023, 0x6f190016, 0x00000000}},  // [7b60] стві_, _esh_, dewc,\n  { {0x68e1022b, 0x64a60072, 0x61e403f2, 0x00000000}},  //   nald, _напа, rsil,\n  { {0x6d480181, 0x14d70049, 0x6f000253, 0x00000000}},  //   _roda, _מויל_, _pcmc,\n  { {0x6d480343, 0x68e12a99, 0x61e400b0, 0x00000000}},  //   _soda, hald, psil,\n  { {0x6d4814d4, 0x68e10e01, 0xf3f10011, 0x00000000}},  //   _poda, kald, ợc_,\n  { {0x68e1000c, 0x63be0874, 0x61e20059, 0x00000000}},  //   jald, _kupn, šols,\n  { {0x7ae00058, 0x6d5a0802, 0x68e122f6, 0x00000000}},  //   tamt, _vlta, dald,\n  { {0x5a34026b, 0xad660014, 0x207b0049, 0x00000000}},  //   днит, _کاره, _האלא,\n  { {0x6d482a9a, 0x63be0209, 0x7ae00190, 0x00000000}},  //   _toda, _lupn, ramt,\n  { {0x7ae005e9, 0x68e1023e, 0x6d5a2a9b, 0x00000000}},  //   samt, gald, _ulta,\n  { {0x7ae0037e, 0x69d901d5, 0xa91c0027, 0x00000000}},  //   pamt, _ewwe, koľv,\n  { {0x29c00011, 0x68e1010e, 0x44211c96, 0x00000000}},  //   _tòa_, aald, _rsh_,\n  { {0x68e1022b, 0xf1bf001d, 0xe81e01f5, 0x00000000}},  //   bald, _trái_, _बनवा_,\n  { {0x5e57007b, 0x68e116ca, 0x18740152, 0x00000000}},  //   ליכע_, cald, _огля,\n  { {0x439501fb, 0xdb1a008e, 0xbf1c0061, 0x00000000}},  //   давс, _auté, _नसून_,\n  { {0xa87b00b3, 0x187b00a0, 0x88bc00b9, 0x00000000}},  //   _לאור, _לטוב, zděl,\n  { {0x248d0046, 0x7afd0129, 0x23810006, 0x00000000}},  // [7b70] łem_, òsti, gėja_,\n  { {0x92cd0055, 0x60c52a9c, 0x442100e7, 0x00000000}},  //   রণে_, uchm, _tsh_,\n  { {0xb4d902fb, 0x60c52a9d, 0x442122cb, 0x00000000}},  //   ारी_, rchm, _ush_,\n  { {0x60c5010f, 0x68e1002d, 0xdb1a009d, 0x00000000}},  //   schm, zald, _futé,\n  { {0xe2ab007a, 0x7bda01d5, 0xb5fb0010, 0x00000000}},  //   _دادن_, _awtu, zzán,\n  { {0x6280010a, 0x51871123, 0x32090082, 0x00000000}},  //   _žmog, _хума, mtay_,\n  { {0xea00001d, 0x68e11b18, 0xbb451c31, 0x00000000}},  //   _đại_, vald, дейк,\n  { {0x68e12a9e, 0x00000000, 0x00000000, 0x00000000}},  //   wald,   ,   ,\n  { {0x4ea702a8, 0x68e1022b, 0x3209006a, 0x00000000}},  //   _хрва, tald, ntay_,\n  { {0x57e91585, 0xdb0b004a, 0x00000000, 0x00000000}},  //   одом_, _digá,   ,\n  { {0x68e1002d, 0x8cc809b9, 0x2b5f0082, 0x00000000}},  //   rald, _رونق_, phuc_,\n  { {0x68e10004, 0xe73a02e9, 0x63be0087, 0x00000000}},  //   sald, цем_, _rupn,\n  { {0x68e12a9f, 0x80e30044, 0xb4d90164, 0x00000000}},  //   pald, _পান্, ारू_,\n  { {0x64a6007e, 0x68e1006b, 0x63be1869, 0x00000000}},  //   дага, qald, _pupn,\n  { {0x3f8f0004, 0xaad1013d, 0xa50701ab, 0x00000000}},  //   kogu_, _सभाक, ьера_,\n  { {0x130a008b, 0xf7720084, 0x03a300ed, 0x00000000}},  //   ўнай_, _جات_, висо,\n  { {0xe2970113, 0xb5fb0211, 0x2fcd0091, 0x00000000}},  // [7b80] дат_, nzál, _čega_,\n  { {0x6b5c0923, 0x23810006, 0x00000000, 0x00000000}},  //   _méga, rėja_,   ,\n  { {0x6b5c028c, 0x7f46007e, 0x40960478, 0x00000000}},  //   _léga, межж, фрат,\n  { {0x3f8f01c5, 0x2bc4013d, 0x00000000, 0x00000000}},  //   gogu_, _लंबा,   ,\n  { {0x9c7c016c, 0x6b5c00f4, 0xd176007e, 0x00000000}},  //   _meče, _néga, _жывы,\n  { {0xdfd20054, 0x9c7c05fa, 0x1ea905f3, 0x00000000}},  //   _ليس_, _leče, ساني_,\n  { {0xab9401fb, 0x1d19007e, 0x55770049, 0x00000000}},  //   никі, яюць_, ועסן_,\n  { {0x9c7c05c5, 0x2d8e012d, 0xdb020082, 0x00000000}},  //   _neče, sofe_, _khoé,\n  { {0x8bb30025, 0x00000000, 0x00000000, 0x00000000}},  //   خصوص,   ,   ,\n  { {0x6b5c00f4, 0x4cd80044, 0xdb0b00fa, 0x00000000}},  //   _déga, _ঠাকু, _vigá,\n  { {0x9cd7009b, 0xd0f7009b, 0xf1bf093f, 0x00000000}},  //   _חובה_, ומית_, _hrát_,\n  { {0x320912b5, 0xf1bf04bb, 0x1ba900a1, 0x00000000}},  //   ytay_, _krát_, _فانٹ_,\n  { {0x99660404, 0x09c80044, 0x00000000, 0x00000000}},  //   _откл, _শিকা,   ,\n  { {0xb4d902fb, 0xd7fa00ed, 0x88bc00b9, 0x00000000}},  //   ारे_, _дуи_, zděj,\n  { {0x62860288, 0x00000000, 0x00000000, 0x00000000}},  //   _axko,   ,   ,\n  { {0x799a018e, 0x64430129, 0xe3b300a1, 0x00000000}},  //   lltw, _ànim, ئرس_,\n  { {0xf1bf001d, 0x06ad0044, 0x33290066, 0x00000000}},  // [7b90] _quá_, _ক্রি, rdax_,\n  { {0x51f80783, 0x1af50044, 0xa30900a1, 0x00000000}},  //   ьную_, _আসছে_, _کردے_,\n  { {0x320901a3, 0x6d580030, 0x3f8f007f, 0x00000000}},  //   stay_, dkva, togu_,\n  { {0x171c0049, 0x30a4263a, 0x23810006, 0x00000000}},  //   ַווע, трув, mėjo_,\n  { {0x63ad2aa0, 0x23810006, 0x3f8f01c5, 0x00000000}},  //   mman, lėjo_, rogu_,\n  { {0x63ad0ac2, 0x11da019b, 0xdca50265, 0x00000000}},  //   lman, _מחשב, нали,\n  { {0xaf070265, 0x63ad006c, 0x23810006, 0x00000000}},  //   _очак, oman, nėjo_,\n  { {0x63ad04cd, 0xe9d90242, 0x73fa0049, 0x00000000}},  //   nman, пки_, פּצו,\n  { {0x9c7c1279, 0x8cca006e, 0x443e0082, 0x00000000}},  //   _reče, _स्को, ̣t_,\n  { {0x63ad2aa1, 0x9c7c15bc, 0x23810006, 0x00000000}},  //   hman, _seče, kėjo_,\n  { {0x06ad0055, 0x9c7c0b4a, 0x66160007, 0x00000000}},  //   _ক্লি, _peče, _spyk,\n  { {0x2381010a, 0x63ad0213, 0x00000000, 0x00000000}},  //   dėjo_, jman,   ,\n  { {0x63ad0089, 0x9c7c0733, 0x7bc10f7c, 0x00000000}},  //   dman, _veče, _hulu,\n  { {0x7bc1044e, 0x6b9b0066, 0x1869005e, 0x00000000}},  //   _kulu, llug, _нали_,\n  { {0xa8790049, 0xe9460063, 0x9c7c00ca, 0x00000000}},  //   _מאַר, _سروی, _teče,\n  { {0x63ad014a, 0x7bc1003f, 0xc32301fc, 0x00000000}},  //   gman, _mulu, лмск,\n  { {0x7bc10fef, 0xe1fa007e, 0x45150044, 0x00000000}},  // [7ba0] _lulu, яга_, ায়ক_,\n  { {0x63ad0197, 0x7bc100b0, 0x61f62aa2, 0x00000000}},  //   aman, _oulu, rryl,\n  { {0x5ed108b7, 0xdfcf0b59, 0x63ad0190, 0x00000000}},  //   _হয়ে, ميل_, bman,\n  { {0xeaa706ea, 0x5de62aa3, 0xed592aa4, 0x00000000}},  //   _مع_, ежда, _ruža_,\n  { {0xfe720439, 0x7bc10146, 0x6d5800ea, 0x00000000}},  //   ددا_, _aulu, tkva,\n  { {0x7bc1011f, 0xb6060059, 0xac2600e2, 0x00000000}},  //   _bulu, mešč, ефик,\n  { {0x6b9b03b4, 0x6d58006c, 0x6aa20010, 0x00000000}},  //   flug, rkva, _szof,\n  { {0xa3e202d2, 0x67c80224, 0x6d5819f2, 0x00000000}},  //   नीय_, _něja, skva,\n  { {0xc333009b, 0x80e30044, 0x7bc100e5, 0x00000000}},  //   רוח_, _পাত্, _eulu,\n  { {0x63ad27dc, 0x65a0010f, 0x20180093, 0x00000000}},  //   zman, wöhn, _kpri_,\n  { {0x63ad0036, 0xf7100082, 0x00000000, 0x00000000}},  //   yman, _vầng_,   ,\n  { {0xb4d9001c, 0xb5fb0047, 0x63ad0142, 0x00000000}},  //   ार्_, szám, xman,\n  { {0xf710001d, 0x7bc10aa8, 0x28d1007d, 0x00000000}},  //   _tầng_, _zulu, _द्वि,\n  { {0xb52400a5, 0x63630004, 0xd5b8007c, 0x00000000}},  //   льск, _mõne, есс_,\n  { {0x63ad04bd, 0x24e4007e, 0x7f980ddb, 0x00000000}},  //   tman, ыцяг, líqu,\n  { {0x6b550977, 0x291e2aa5, 0x23810006, 0x00000000}},  //   _pági, leta_, rėjo_,\n  { {0x20180197, 0xb5fb0010, 0x7f98008e, 0x00000000}},  // [7bb0] _apri_, zzáj, níqu,\n  { {0x63ad000c, 0x644101b1, 0x00000000, 0x00000000}},  //   sman, älis,   ,\n  { {0x6b5c2aa6, 0x63ad1464, 0x26cb0026, 0x00000000}},  //   _négo, pman, occo_,\n  { {0x7ff40644, 0x7eb500a1, 0x7ae20471, 0x00000000}},  //   اسلا, نماؤ, _neot,\n  { {0x291e022b, 0x7bc101a3, 0x59b2013d, 0x00000000}},  //   keta_, _sulu, ीदार,\n  { {0x291e0209, 0x394e01d5, 0x212a0048, 0x00000000}},  //   jeta_, _nofs_, _gabh_,\n  { {0x291e2aa7, 0xf1bf26b8, 0x7ae20288, 0x00000000}},  //   deta_, _trás_, _beot,\n  { {0x6b5c009d, 0x6e220009, 0x7f98004a, 0x00000000}},  //   _dégo, bwob, fíqu,\n  { {0xdcbb0057, 0xd7f80035, 0x7bc10022, 0x00000000}},  //   _еще_, eră_, _wulu,\n  { {0x7bc1006a, 0xdb1a00fa, 0x69c20146, 0x00000000}},  //   _tulu, _cutâ, _duoe,\n  { {0x6b9b0129, 0xf772031d, 0x8cca006e, 0x00000000}},  //   plug, لاح_, _स्टो,\n  { {0x7ae20253, 0x3a260009, 0x321901d6, 0x00000000}},  //   _geot, _fsop_, _opsy_,\n  { {0x291e0039, 0xd7f8001a, 0x00000000, 0x00000000}},  //   beta_, ară_,   ,\n  { {0x5e56007b, 0x291e0211, 0xb6060059, 0x00000000}},  //   דישע_, ceta_, vešč,\n  { {0xf9900355, 0x79a401fc, 0x212a0051, 0x00000000}},  //   _ابن_, _срце, _rabh_,\n  { {0x6b5c009d, 0x00000000, 0x00000000, 0x00000000}},  //   _négl,   ,   ,\n  { {0x68e30563, 0x98bc00b9, 0x9c7c00d0, 0x00000000}},  // [7bc0] _kend, _nově_, _meča,\n  { {0x20560373, 0x68e32aa8, 0x3ebf00d4, 0x00000000}},  //   ктер, _jend, _agut_,\n  { {0xd12f01f7, 0xb69b0035, 0x00000000, 0x00000000}},  //   تمل_, ngân,   ,\n  { {0x291e07f2, 0x20070129, 0x6363006c, 0x00000000}},  //   zeta_, ània_, _põne,\n  { {0x33200129, 0x291e0058, 0x7ae201f3, 0x00000000}},  //   meix_, yeta_, _reot,\n  { {0x68e30004, 0x7ae20004, 0x291e2aa9, 0x00000000}},  //   _nend, _seot, xeta_,\n  { {0x291e037e, 0x5f060954, 0xad6504b1, 0x00000000}},  //   veta_, _изва, دانه,\n  { {0x33200129, 0x68e30020, 0x1ee8025a, 0x00000000}},  //   neix_, _aend, _سوئی_,\n  { {0x291e037e, 0x1d2610d8, 0x9c7c05fa, 0x00000000}},  //   teta_, _имам, _deča,\n  { {0xdbd90181, 0x68e304cb, 0xd7f8001a, 0x00000000}},  //   _açõe, _cend, tră_,\n  { {0x68e322a1, 0x291e0127, 0x3a261071, 0x00000000}},  //   _dend, reta_, _wsop_,\n  { {0xf09301f8, 0x68e301bb, 0xa5f9007c, 0x00000000}},  //   ינת_, _eend, нему_,\n  { {0x291e011c, 0x33200129, 0xab5c0089, 0x00000000}},  //   peta_, deix_, _guļa,\n  { {0x68e3008a, 0xceb300b3, 0xd8760025, 0x00000000}},  //   _gend, ייר_, _لاعب,\n  { {0x478b003b, 0x68e80145, 0x2ee401c3, 0x00000000}},  //   _осим_, madd, _oemf_,\n  { {0x68e3111a, 0x332004bd, 0x68e8019f, 0x00000000}},  //   _zend, geix_, ladd,\n  { {0x6b5c00f4, 0xc7b100a1, 0x68e32aaa, 0x00000000}},  // [7bd0] _régl, _پڑھ_, _yend,\n  { {0x44312aab, 0x68e30032, 0x00000000, 0x00000000}},  //   pvz_, _xend,   ,\n  { {0xe8d7009b, 0x332b0240, 0x332000d4, 0x00000000}},  //   דובר_, _tacx_, beix_,\n  { {0x68e8002b, 0x672d004a, 0x00000000, 0x00000000}},  //   hadd, _jaaj,   ,\n  { {0x61ff005f, 0x672d0b37, 0x6b5c0010, 0x00000000}},  //   quql, _maaj, _végl,\n  { {0xac09005c, 0x672d021e, 0x68e80022, 0x00000000}},  //   енка_, _laaj, jadd,\n  { {0x61ed0302, 0x4c150054, 0x68e30e69, 0x00000000}},  //   lsal, ابتس, _rend,\n  { {0x61ed010e, 0xdb1a00f6, 0x20010058, 0x00000000}},  //   osal, _cutà, muhi_,\n  { {0x68e30149, 0x61ed00b0, 0x63bd000c, 0x00000000}},  //   _pend, nsal, _misn,\n  { {0x68e3008d, 0x6e2901c3, 0x61ed05af, 0x00000000}},  //   _qend, _iseb, isal,\n  { {0x68e30c5f, 0x9c7c0627, 0x61ed006b, 0x00000000}},  //   _vend, _teča, hsal,\n  { {0x68e3010f, 0x61ed00b0, 0x3ce52aac, 0x00000000}},  //   _wend, ksal, _helv_,\n  { {0x68e80a89, 0xfa3402fd, 0x7ae90032, 0x00000000}},  //   badd, _پرند, maet,\n  { {0x7ae9018e, 0x68e32aad, 0x68e80197, 0x00000000}},  //   laet, _uend, cadd,\n  { {0x63bd04fa, 0x332004bd, 0x49b80380, 0x00000000}},  //   _bisn, teix_, _شاهد_,\n  { {0x7ae90bc4, 0x6e2901d9, 0x63bd2aae, 0x00000000}},  //   naet, _oseb, _cisn,\n  { {0x332004bd, 0xd3870077, 0x61ed006a, 0x00000000}},  // [7be0] reix_, уйте_, gsal,\n  { {0x29c90011, 0x629d0253, 0x7ae90016, 0x00000000}},  //   _múa_, _dyso, haet,\n  { {0x5ecd0055, 0x29c90011, 0x63bd0065, 0x00000000}},  //   ারনে, _lúa_, _fisn,\n  { {0x2fd702fd, 0x42d501ff, 0x68e80045, 0x00000000}},  //   اوند_, _віру, zadd,\n  { {0x7ae90bc4, 0x80e30055, 0x629d0016, 0x00000000}},  //   daet, _পার্, _gyso,\n  { {0x20010e1a, 0x6c5400ed, 0x6f090009, 0x00000000}},  //   buhi_, иклу, _ecec,\n  { {0x50b5004c, 0xcd2700ed, 0x7ae90016, 0x00000000}},  //   _всту, ужје_, faet,\n  { {0x7ae9018e, 0x29c92aaf, 0x3b5400c0, 0x00000000}},  //   gaet, _búa_, ркир,\n  { {0xee3a008b, 0x7f75026b, 0x68e801e5, 0x00000000}},  //   _яна_, _турц, tadd,\n  { {0xd6e10055, 0x672d01c2, 0x481400e2, 0x00000000}},  //   _ভাইয, _saaj, амос,\n  { {0x68e81f5a, 0x77640039, 0xe0fb0049, 0x00000000}},  //   radd, _blix, עלטל,\n  { {0x776400f6, 0x61ed0052, 0x80370049, 0x00000000}},  //   _clix, ysal, אנטע_,\n  { {0x68e80365, 0x6280010a, 0x9b930025, 0x00000000}},  //   padd, _žmon, _النت,\n  { {0x7764027b, 0x672d0020, 0x63bd00fa, 0x00000000}},  //   _elix, _waaj, _sisn,\n  { {0x77642ab0, 0x63bd2ab1, 0x80e30044, 0x00000000}},  //   _flix, _pisn, _পাল্,\n  { {0x61ed002d, 0x256600f4, 0x870900a1, 0x00000000}},  //   tsal, _rôle_, _شعبہ_,\n  { {0x63bd0292, 0x9175007e, 0x61ed01b1, 0x00000000}},  // [7bf0] _visn, агац, usal,\n  { {0x61ed01a3, 0x629d0428, 0x63bd2ab2, 0x00000000}},  //   rsal, _vyso, _wisn,\n  { {0x61ed2ab3, 0x629d0046, 0x7ae90016, 0x00000000}},  //   ssal, _wyso, yaet,\n  { {0x61ed2ab4, 0x200107de, 0x3ce501e3, 0x00000000}},  //   psal, ruhi_, _selv_,\n  { {0x1d09003b, 0x2d760036, 0x51870088, 0x00000000}},  //   вели_, ałem_, _бува,\n  { {0x29c9049a, 0xee38026c, 0x6e2901d9, 0x00000000}},  //   _rúa_, اقوں_, _vseb,\n  { {0x29c9049a, 0x7ae9018e, 0xe0570167, 0x00000000}},  //   _súa_, taet, _حیات_,\n  { {0x9c7c0107, 0x7ae90016, 0x236904be, 0x00000000}},  //   _tečn, uaet, nhaj_,\n  { {0x69252ab5, 0x7ae90016, 0x6e2900d9, 0x00000000}},  //   ампа, raet, _useb,\n  { {0xec6b004d, 0x7ae90032, 0x29050521, 0x00000000}},  //   _прек_, saet, ugla_,\n  { {0x778601fc, 0x6d410aa4, 0x98a500e2, 0x00000000}},  //   илоз, _inla, рине,\n  { {0x29c9049a, 0x27f81539, 0xc7b9007e, 0x00000000}},  //   _túa_, árna_, лёў_,\n  { {0xd945012b, 0x2d760036, 0x00000000, 0x00000000}},  //   _вели, złem_,   ,\n  { {0x2d760036, 0x3ea200ea, 0xe3bf0288, 0x00000000}},  //   yłem_, _økte_, _aiñ_,\n  { {0x63630004, 0x9c7c07ac, 0xb97a009b, 0x00000000}},  //   _sõna, _nečl, _בנסי,\n  { {0xdb02001d, 0x2b4d050f, 0xc3260545, 0x00000000}},  //   _khoá, njec_, јмак,\n\n  { {0x6d41027d, 0x00000000, 0x00000000, 0x00000000}},  // [7c00] _onla,   ,   ,\n  { {0xb17b0073, 0xe0d72ab6, 0x6e460014, 0x00000000}},  //   _svår, иву_, ینام,\n  { {0xb4fb009b, 0xaec61abd, 0x00000000, 0x00000000}},  //   _בפיי, абел,   ,\n  { {0x6d412ab7, 0x23690871, 0xa2d50316, 0x00000000}},  //   _anla, chaj_, युद्,\n  { {0x645c1996, 0xdce1014a, 0x02d20061, 0x00000000}},  //   lyri, _aklı, तडीन,\n  { {0x443a2ab8, 0x91e301ab, 0xa193007e, 0x00000000}},  //   _krp_, _форе, _маўч,\n  { {0x7b660ae0, 0xed57025f, 0x9c7c00d0, 0x00000000}},  //   итие, рој_, _večo,\n  { {0x6d410781, 0x443a0253, 0x6b550048, 0x00000000}},  //   _enla, _mrp_, _ságr,\n  { {0x3f8601ca, 0xdb020082, 0xdb0b0023, 0x00000000}},  //   mnou_, _choá, _zhgë,\n  { {0x3f8601ca, 0x6b5c0010, 0x2918000c, 0x00000000}},  //   lnou_, _mégi, ýra_,\n  { {0x0137009b, 0x6b5c2ab9, 0x3f8600c4, 0x00000000}},  //   ברית_, _légi, onou_,\n  { {0x3f862aba, 0x23690023, 0xdcf8007f, 0x00000000}},  //   nnou_, xhaj_, tovė,\n  { {0x7bc8000b, 0xaac50025, 0x3f8600fa, 0x00000000}},  //   _hudu, _اتمن, inou_,\n  { {0x7bc81ff1, 0x645c2abb, 0xdcf80006, 0x00000000}},  //   _kudu, fyri, rovė,\n  { {0x7bc82abc, 0xdcfa001e, 0xe516006e, 0x00000000}},  //   _judu, _aktī, द्धि_,\n  { {0x3f8601ca, 0x2249002d, 0x443a0145, 0x00000000}},  //   jnou_, txak_, _drp_,\n  { {0x3f86004f, 0x657c00e0, 0x7bc82abd, 0x00000000}},  // [7c10] dnou_, birh, _ludu,\n  { {0xdb090051, 0x23690023, 0x443a2abe, 0x00000000}},  //   imeá, shaj_, _frp_,\n  { {0x2fc7001d, 0x443a2abf, 0x2d760036, 0x00000000}},  //   êng_, _grp_, ałek_,\n  { {0x3f8600fa, 0xbfa80478, 0x00000000, 0x00000000}},  //   gnou_, атче_,   ,\n  { {0x9294007e, 0x7bc81a3a, 0xd33600a3, 0x00000000}},  //   _маюц, _audu, _פרשה_,\n  { {0x7bc80119, 0x645a010f, 0x200e0129, 0x00000000}},  //   _budu, ätig, àfic_,\n  { {0xf1b2009b, 0x3f8601ca, 0x00000000, 0x00000000}},  //   _מסך_, bnou_,   ,\n  { {0x7bc8003f, 0x88e30044, 0xed590161, 0x00000000}},  //   _dudu, _মাইক, _muži_,\n  { {0x5ecd0044, 0x7c3a01a2, 0x00000000, 0x00000000}},  //   ারদে, _ertr,   ,\n  { {0x6d41011c, 0x97d90b5f, 0xf1b20049, 0x00000000}},  //   _unla, льму_, ּסט_,\n  { {0x3158007b, 0x7bc80aa8, 0x6e3b0161, 0x00000000}},  //   ייזן_, _gudu, _hrub,\n  { {0xdb020011, 0x3212021e, 0x2131012d, 0x00000000}},  //   _thoá, ytyy_, _lazh_,\n  { {0x443a013e, 0x98a5011f, 0x2d8700f4, 0x00000000}},  //   _srp_, rklı_, onne_,\n  { {0xceb200b6, 0x6b5c028c, 0x645c1292, 0x00000000}},  //   פים_, _régi, tyri,\n  { {0x6f1b037e, 0x2d87002a, 0x64a6008b, 0x00000000}},  //   _obuc, inne_, сава,\n  { {0x321200b0, 0x6e3b2ac0, 0xed5904eb, 0x00000000}},  //   ttyy_, _orub, _duži_,\n  { {0x52aa0893, 0xa1c300ed, 0x645c2ac1, 0x00000000}},  // [7c20] увам_, збуд, syri,\n  { {0x645c0038, 0x9c7c01a8, 0x6b5c0010, 0x00000000}},  //   pyri, _dečj, _végi,\n  { {0x66060343, 0x443a0197, 0x321200b0, 0x00000000}},  //   lukk, _urp_, styy_,\n  { {0x2d8700f4, 0x6e3b0022, 0x7bc81284, 0x00000000}},  //   enne_, _brub, _rudu,\n  { {0xf2d3007b, 0x63a4198e, 0xb148007a, 0x00000000}},  //   _מער_, mlin, _پیام_,\n  { {0xf9870644, 0x63b6000c, 0x3f862ac2, 0x00000000}},  //   _رب_, lmyn, snou_,\n  { {0x63a41875, 0x3d09007d, 0x38c80123, 0x00000000}},  //   olin, _सारे_, یادی_,\n  { {0x63a4164f, 0x67260065, 0xbf16007a, 0x00000000}},  //   nlin, jekj, _دورب,\n  { {0x6e3b011f, 0x26e70044, 0x66060145, 0x00000000}},  //   _grub, _কালো_, jukk,\n  { {0xb5fb0047, 0x63a40d9a, 0x7bc80127, 0x00000000}},  //   zzás, hlin, _tudu,\n  { {0x63a402d8, 0x319b0049, 0x63b6000c, 0x00000000}},  //   klin, רבינ, kmyn,\n  { {0xb7670888, 0x31af014a, 0x32000022, 0x00000000}},  //   стой, müze_, kriy_,\n  { {0x7a360b03, 0xb8ce0044, 0x65a001a2, 0x00000000}},  //   _دعائ, _কল_, höhu,\n  { {0x63a4046a, 0x9c7c01ee, 0x32000203, 0x00000000}},  //   elin, _rečj, driy_,\n  { {0x7bc20087, 0x00000000, 0x00000000, 0x00000000}},  //   _kiou,   ,   ,\n  { {0x63a4009f, 0x63b6009f, 0xe3b00647, 0x00000000}},  //   glin, gmyn, فرق_,\n  { {0xe800006e, 0x2d8700b4, 0xf1c20089, 0x00000000}},  // [7c30] लंका_, ynne_, košā_,\n  { {0x63a4042c, 0x9c7c01d9, 0xf77f2ac3, 0x00000000}},  //   alin, _večj, liç_,\n  { {0x63a40292, 0x9c7c0209, 0x6e3b0667, 0x00000000}},  //   blin, _dečk, _srub,\n  { {0xceeb0014, 0x2d9e2ac4, 0x2d8c0091, 0x00000000}},  //   اران_, _akte_, _ajde_,\n  { {0x44210022, 0x67c800b9, 0xe0e80044, 0x00000000}},  //   _hph_, _ději, _পারভ,\n  { {0x3d0e0204, 0xabd501fc, 0x44212ac5, 0x00000000}},  //   _ठाणे_, оциј, _kph_,\n  { {0x6b5c1ffa, 0x7afd0325, 0x799a0bde, 0x00000000}},  //   _légu, ósto, dotw,\n  { {0x6f1b2ac6, 0x88bc00b9, 0x2d9e0056, 0x00000000}},  //   _ubuc, vděp, _ekte_,\n  { {0xc8da001c, 0x6e3b2ac7, 0x291c008e, 0x00000000}},  //   _म्हट, _urub, _bbva_,\n  { {0x7d18001c, 0x69db0553, 0x3ead0d61, 0x00000000}},  //   cfvs, rpue, _izet_,\n  { {0x69db0219, 0xfd100025, 0x63a40322, 0x00000000}},  //   spue, _سجل_, ylin,\n  { {0x66060007, 0x63a400f8, 0xae0d007d, 0x00000000}},  //   tukk, xlin, _समान_,\n  { {0x3f9f000b, 0x63a40073, 0xf3f10011, 0x00000000}},  //   _mkuu_, vlin, ận_,\n  { {0x6b8903e9, 0x6b5c00f4, 0x7aeb01d6, 0x00000000}},  //   lneg, _dégu, _hegt,\n  { {0x44210190, 0x660604cb, 0x63a42ac8, 0x00000000}},  //   _cph_, sukk, tlin,\n  { {0x4421004f, 0xf8b200b6, 0x69cb2ac9, 0x00000000}},  //   _dph_, _קשה_, _kuge,\n  { {0x7aeb0047, 0x69cb2aca, 0x00da0b6c, 0x00000000}},  // [7c40] _megt, _juge, لبات_,\n  { {0x63a40292, 0x7aeb1297, 0x8506007a, 0x00000000}},  //   slin, _legt, _بودن,\n  { {0x63a4000d, 0x69c32acb, 0x69cb0004, 0x00000000}},  //   plin, _mine, _luge,\n  { {0xee3a012b, 0x80da02f4, 0xe29a1fea, 0x00000000}},  //   ине_, _प्रे, _вам_,\n  { {0xf77300a0, 0x6b8905c9, 0x69c3002d, 0x00000000}},  //   וקא_, dneg, _oine,\n  { {0xafe6012b, 0x463b0049, 0xc0aa0151, 0x00000000}},  //   _могл, יענע, _نازل_,\n  { {0x69cb010f, 0x69d90146, 0x7bc2013f, 0x00000000}},  //   _auge, _atwe, _piou,\n  { {0x69cb000d, 0x69c30368, 0x0b8a0098, 0x00000000}},  //   _buge, _aine, јски_,\n  { {0x7d0a001c, 0x69c3001a, 0x69cb0035, 0x00000000}},  //   pgfs, _bine, _cuge,\n  { {0x6b5c2acc, 0x9c7c01ee, 0x79880908, 0x00000000}},  //   _régu, _leči, undw,\n  { {0x69c30779, 0xcb6a00d7, 0x6b892acd, 0x00000000}},  //   _dine, _каже_, bneg,\n  { {0x69c308ba, 0x2d9c0091, 0x9c7c0091, 0x00000000}},  //   _eine, love_, _neči,\n  { {0x3a3d0016, 0x69cb0145, 0xf77f0189, 0x00000000}},  //   _grwp_, _guge, riç_,\n  { {0x69c30949, 0x44210093, 0x80da006e, 0x00000000}},  //   _gine, _pph_, _प्ले,\n  { {0xd37b0088, 0x69cb010f, 0x9c7c21e8, 0x00000000}},  //   ача_, _zuge, _beči,\n  { {0x56950057, 0x69c3022b, 0x2d9c0213, 0x00000000}},  //   _найт, _zine, hove_,\n  { {0x2d9c0209, 0x9c7c003b, 0x60f90147, 0x00000000}},  // [7c50] kove_, _deči, йная_,\n  { {0x7bda29e9, 0x290c2ace, 0x69c300d4, 0x00000000}},  //   _ottu, ngda_, _xine,\n  { {0x6f0b001c, 0x2d9c04a9, 0x44210022, 0x00000000}},  //   tggc, dove_, _uph_,\n  { {0x2fc40009, 0x6b5c0010, 0x6b890009, 0x00000000}},  //   _cimg_, _mégs, xneg,\n  { {0x7aeb0343, 0x7bda2acf, 0x6b891d45, 0x00000000}},  //   _regt, _attu, vneg,\n  { {0xa3e203d7, 0x69cb152f, 0x6b890036, 0x00000000}},  //   नीक_, _ruge, wneg,\n  { {0x6b890aa9, 0x80d60061, 0x69c3008e, 0x00000000}},  //   tneg, मुळे, _rine,\n  { {0x69c30563, 0x69cb0fc3, 0x6e2d002b, 0x00000000}},  //   _sine, _puge, ħabb,\n  { {0x6b9b0038, 0x6b890aa9, 0x34a80164, 0x00000000}},  //   roug, rneg, _गर्द,\n  { {0x6b8905c9, 0x290c00f8, 0x2d9c0253, 0x00000000}},  //   sneg, ggda_, cove_,\n  { {0x2fc40061, 0xe73a00e3, 0xc7a601fc, 0x00000000}},  //   _yimg_, бен_, зинк,\n  { {0x69cb006c, 0x69c30133, 0xfb380025, 0x00000000}},  //   _tuge, _wine, _وأنت_,\n  { {0x69c3000d, 0x9c7c003b, 0x656e0051, 0x00000000}},  //   _tine, _reči, thbh,\n  { {0x2eed07a5, 0x9c7c00ca, 0x98ae0173, 0x00000000}},  //   _leef_, _seči, _zafč_,\n  { {0x80aa03d7, 0x98a21023, 0x0443004c, 0x00000000}},  //   _करें, _пише, нерн,\n  { {0x2d9c037e, 0x2eed0112, 0x57fa009b, 0x00000000}},  //   zove_, _neef_, _הלקו,\n  { {0x32090211, 0x020603c8, 0x9c7c01d9, 0x00000000}},  // [7c60] guay_, язан, _veči,\n  { {0xe1f70451, 0xdce30006, 0x2fc40045, 0x00000000}},  //   ягу_, minė, _simg_,\n  { {0x2d9c057c, 0xdce3010a, 0xb4d801f5, 0x00000000}},  //   vove_, linė, ाडी_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xdce3010a, 0x2d9c0091, 0x733b0049, 0x00000000}},  //   ninė, tove_, _העכס,\n  { {0x09da0055, 0x2ca50146, 0xd6ae0044, 0x00000000}},  //   _দিলা, _byld_, _গলায,\n  { {0xdee6107f, 0xfe6f00a1, 0x80e30044, 0x00000000}},  //   _нови, نگے_, _পাচ্,\n  { {0x8fa300e3, 0x2d9c0065, 0x2eed02ae, 0x00000000}},  //   _засе, sove_, _geef_,\n  { {0x0e66008b, 0x2d9c0091, 0x00000000, 0x00000000}},  //   _экан, pove_,   ,\n  { {0x49732ad0, 0xdce30006, 0x6b80002b, 0x00000000}},  //   ельс, dinė, simg,\n  { {0x6d48022b, 0x6b800061, 0x6b5c00f4, 0x00000000}},  //   _inda, pimg, _dégr,\n  { {0x2902011f, 0x6d5a0613, 0x61f62ad1, 0x00000000}},  //   şka_, _hota, ksyl,\n  { {0x6d5a0897, 0xd05c005f, 0xdce30006, 0x00000000}},  //   _kota, _verə, ginė,\n  { {0x6d5a021e, 0xe5c4007c, 0xdb1100f8, 0x00000000}},  //   _jota, ессо, åför,\n  { {0x6d5a002d, 0xb33b0095, 0x00000000, 0x00000000}},  //   _mota, _akça,   ,\n  { {0x63710073, 0x26c92ad2, 0x6d5a00fa, 0x00000000}},  //   _mång, _ugao_, _lota,\n  { {0x6d482ad3, 0x63710073, 0x6d5a0004, 0x00000000}},  // [7c70] _onda, _lång, _oota,\n  { {0x6d5a0e34, 0x6363006c, 0x00000000, 0x00000000}},  //   _nota, _mõni,   ,\n  { {0x776d062a, 0x7feb04b1, 0x00000000, 0x00000000}},  //   _klax, صراف_,   ,\n  { {0x6d481b3e, 0x657e0026, 0x00000000, 0x00000000}},  //   _anda, _zmph,   ,\n  { {0x6d5a0c79, 0x320902d4, 0x00000000, 0x00000000}},  //   _bota, quay_,   ,\n  { {0x6d5a0181, 0xdca500ed, 0x4d640088, 0x00000000}},  //   _cota, мали, нків,\n  { {0x6d5a0224, 0x2eed040f, 0x6b5c01cc, 0x00000000}},  //   _dota, _teef_, _régr,\n  { {0x6d4829f9, 0x92c10044, 0x8d7700a2, 0x00000000}},  //   _enda, ুরী_, _کارا,\n  { {0x6d5a00f8, 0x7f490133, 0x00000000, 0x00000000}},  //   _fota, _ineq,   ,\n  { {0x63712ad4, 0xdce30006, 0xceb200b3, 0x00000000}},  //   _hånd, vinė, _יין_,\n  { {0x63710073, 0x6b5c0010, 0x7c670025, 0x00000000}},  //   _gång, _végr, _عائل,\n  { {0xdce3010a, 0x61f60016, 0x776d0035, 0x00000000}},  //   tinė, ysyl, _clax,\n  { {0x63710039, 0x27e01435, 0x9c7c012d, 0x00000000}},  //   _månd, _čine_, _deču,\n  { {0x1869134b, 0xdce3010a, 0x44330026, 0x00000000}},  //   _мали_, rinė, _bsx_,\n  { {0x64a32ad5, 0x776d0203, 0xdce30006, 0x00000000}},  //   вара, _flax, sinė,\n  { {0x04100044, 0xdce30006, 0x44330a89, 0x00000000}},  //   াবলী_, pinė, _dsx_,\n  { {0x3aba0049, 0x256f006c, 0x00000000, 0x00000000}},  // [7c80] ַמענ, _süle_,   ,\n  { {0x7e620020, 0x61f60016, 0x37e00044, 0x00000000}},  //   vyop, rsyl, _ভিতর,\n  { {0x6d5a2ad6, 0x443c0047, 0x44330253, 0x00000000}},  //   _rota, _év_, _gsx_,\n  { {0x6d5a00b0, 0x1e8601ab, 0x00000000, 0x00000000}},  //   _sota, млем,   ,\n  { {0xf1af02f4, 0x63a901d5, 0x6d5a2ad7, 0x00000000}},  //   _जीवन, ċent, _pota,\n  { {0x9c460088, 0x00000000, 0x00000000, 0x00000000}},  //   дхил,   ,   ,\n  { {0xa2d502fb, 0xa2a202d2, 0x7f5b0068, 0x00000000}},  //   युक्, _कुत्, _fouq,\n  { {0x5a340517, 0xd00f067a, 0xcf2603d6, 0x00000000}},  //   енит, _خلف_, _ترسي,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6d482ad8, 0x588600a5, 0x7c2a0a7c, 0x00000000}},  //   _unda, дыма, _мозг_,\n  { {0x9c7c15bc, 0x3cfe00d9, 0x00000000, 0x00000000}},  //   _peču, _idtv_,   ,\n  { {0x95cb01f9, 0x09e60088, 0x6363006c, 0x00000000}},  //   жува_, _жодн, _tõni,\n  { {0x9f6500f4, 0x644801e2, 0x00000000, 0x00000000}},  //   étés_, ådin,   ,\n  { {0x63712ad9, 0xe8942329, 0x00000000, 0x00000000}},  //   _måne, _паль,   ,\n  { {0x63711861, 0x776d008e, 0x00000000, 0x00000000}},  //   _låne, _tlax,   ,\n  { {0x3a260011, 0x44330203, 0x57fb009b, 0x00000000}},  //   _kpop_, _vsx_, _ולהו,\n  { {0xe1f00b6c, 0x7afd2ada, 0x6d0e01f5, 0x00000000}},  // [7c90] لسل_, ósti, _सांग_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xd7f8001a, 0x7f5b00c4, 0x92c10044, 0x00000000}},  //   nsă_, _pouq, ুরে_,\n  { {0x20df02d2, 0xb0df0309, 0x3cfe00fa, 0x00000000}},  //   _प्रध, _प्रग, _adtv_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xee380822, 0xae110061, 0x3cfe0087, 0x00000000}},  //   ьні_, डंबन_, _cdtv_,\n  { {0xdca2003b, 0x7f5b009d, 0x3cfe00e5, 0x00000000}},  //   лаши, _touq, _ddtv_,\n  { {0x3cfe01c3, 0x7f490133, 0x9c7c0087, 0x00000000}},  //   _edtv_, _uneq, _rečt,\n  { {0x9915007e, 0x3a260082, 0x3f8f00e7, 0x00000000}},  //   ньні, _cpop_, mngu_,\n  { {0xa3b603d7, 0x7d79039d, 0x00000000, 0x00000000}},  //   _चीन_, _عمار_,   ,\n  { {0xe73a00e3, 0x00000000, 0x00000000, 0x00000000}},  //   пен_,   ,   ,\n  { {0xf0920452, 0xe73a0057, 0x00000000, 0x00000000}},  //   רנט_, чем_,   ,\n  { {0x15ba007c, 0xd7f8001a, 0x2b14013d, 0x00000000}},  //   зывы_, asă_, _धातु_,\n  { {0x6363006c, 0x00000000, 0x00000000, 0x00000000}},  //   _mõnu,   ,   ,\n  { {0xa5bb0036, 0x7afd0036, 0x2b5d01f3, 0x00000000}},  //   twór, óstw, _kowc_,\n  { {0x02c6073b, 0x00000000, 0x00000000, 0x00000000}},  //   ейбо,   ,   ,\n  { {0xe29700ed, 0x67240009, 0x3f8e01e5, 0x00000000}},  // [7ca0] еат_, _ibij, éfum_,\n  { {0x764423f6, 0x6b550010, 0x249f0276, 0x00000000}},  //   _iriy, _vágy, şuma_,\n  { {0x80a80044, 0x00000000, 0x00000000, 0x00000000}},  //   কেন্,   ,   ,\n  { {0x44440a5c, 0x764401aa, 0x00000000, 0x00000000}},  //   _ir_, _kriy,   ,\n  { {0x44440209, 0x67240065, 0xb17b05fe, 0x00000000}},  //   _hr_, _mbij, _ståe,\n  { {0x44440018, 0x61e40390, 0x256f006c, 0x00000000}},  //   _kr_, mpil, _küla_,\n  { {0x61e401c5, 0x44441044, 0xcfaa00a1, 0x00000000}},  //   lpil, _jr_, _فارم_,\n  { {0x44442adb, 0x395c2862, 0x61e4010e, 0x00000000}},  //   _mr_, _sovs_, opil,\n  { {0x44440995, 0x61e401c5, 0x6d4b0051, 0x00000000}},  //   _lr_, npil, álaí,\n  { {0x44440a8a, 0xc27b0097, 0xee37005e, 0x00000000}},  //   _or_, פריי, _яну_,\n  { {0xe894008b, 0x76440095, 0x9c7c00ca, 0x00000000}},  //   тань, _ariy, _večs,\n  { {0x61e40190, 0xd7f8001a, 0x7644196c, 0x00000000}},  //   kpil, rsă_, _briy,\n  { {0x44441218, 0x6b820537, 0x00000000, 0x00000000}},  //   _ar_, _imog,   ,\n  { {0x44442adc, 0xd7f80035, 0x224000f8, 0x00000000}},  //   _br_, psă_, dvik_,\n  { {0x4444049a, 0x779306c6, 0xd4040aef, 0x00000000}},  //   _cr_, _میدا, ляти,\n  { {0x6443064d, 0x53340216, 0xe3b30d3a, 0x00000000}},  //   _ánim, лест, ارس_,\n  { {0x444402d8, 0x69ca2add, 0x76442ade, 0x00000000}},  // [7cb0] _er_, _kife, _griy,\n  { {0x4444028c, 0x7c282adf, 0x23690059, 0x00000000}},  //   _fr_, _opdr, skaj_,\n  { {0x4444009f, 0x6b8200ee, 0x63630004, 0x00000000}},  //   _gr_, _omog, _sõnu,\n  { {0x661d2ae0, 0x69ca09dd, 0x61e40089, 0x00000000}},  //   otsk, _life, bpil,\n  { {0x444401c5, 0x63ad014a, 0x7c280e3f, 0x00000000}},  //   _zr_, mlan, _apdr,\n  { {0x44440bc4, 0x69ca018e, 0x63ad114e, 0x00000000}},  //   _yr_, _nife, llan,\n  { {0x32090b3d, 0x98a700b9, 0x63ad0048, 0x00000000}},  //   lray_, _daně_, olan,\n  { {0xdb002ae1, 0x753c0107, 0x3f862ae2, 0x00000000}},  //   nomè, zdrz, ciou_,\n  { {0x63ad006a, 0xdb1a2ae3, 0x660f0107, 0x00000000}},  //   ilan, _autó, juck,\n  { {0x63ad191f, 0x660f041a, 0x6b820026, 0x00000000}},  //   hlan, duck, _emog,\n  { {0x2d87061f, 0x66e603e8, 0x63ad15df, 0x00000000}},  //   mine_, кона, klan,\n  { {0x63ad0313, 0x7644000a, 0x44440181, 0x00000000}},  //   jlan, _priy, _rr_,\n  { {0x44440027, 0x6445253f, 0x2d87002a, 0x00000000}},  //   _sr_, _arhi, oine_,\n  { {0x7ae906d3, 0x61e40089, 0x6b8209f4, 0x00000000}},  //   lbet, vpil, _zmog,\n  { {0x64a6008b, 0x63ad0090, 0x61fd143e, 0x00000000}},  //   тава, flan, _avsl,\n  { {0x672401cd, 0x444400b5, 0x2d872ae4, 0x00000000}},  //   _ubij, _vr_, hine_,\n  { {0x7bcb0325, 0x2d87014a, 0x4444023a, 0x00000000}},  // [7cc0] _migu, kine_, _wr_,\n  { {0x44442ae5, 0x63ad03b0, 0x61e404cb, 0x00000000}},  //   _tr_, alan, rpil,\n  { {0x2d870868, 0x61e42ae6, 0xa2a2007d, 0x00000000}},  //   dine_, spil, _कुर्,\n  { {0x63ad001a, 0x7bcb010e, 0x61e42ae7, 0x00000000}},  //   clan, _nigu, ppil,\n  { {0x63a416c6, 0x7ae90030, 0x2d87085d, 0x00000000}},  //   moin, dbet, fine_,\n  { {0x7bcb2ae8, 0x2d87051b, 0x63a400b0, 0x00000000}},  //   _aigu, gine_, loin,\n  { {0x69ca0409, 0xdb0019cd, 0x7bcb0ed6, 0x00000000}},  //   _rife, lomé, _bigu,\n  { {0x63a400b0, 0xdb1a0129, 0x7bcb26be, 0x00000000}},  //   noin, _autò, _cigu,\n  { {0x2d870059, 0x7bcb020c, 0x69ca00f6, 0x00000000}},  //   bine_, _digu, _pife,\n  { {0x637101c9, 0x63a40c7f, 0x7bcb000c, 0x00000000}},  //   _måna, hoin, _eigu,\n  { {0x63ad21ec, 0x63a400b0, 0x7ae9014a, 0x00000000}},  //   ylan, koin, bbet,\n  { {0x69ca2ae9, 0x63ad006b, 0x661d01c9, 0x00000000}},  //   _wife, xlan, ttsk,\n  { {0x673d0693, 0x63a4055a, 0x69ca002b, 0x00000000}},  //   rdsj, doin, _tife,\n  { {0x58d301fb, 0x63ad275d, 0xdb000489, 0x00000000}},  //   _кошт, wlan, domé,\n  { {0x63ad0047, 0x661d0161, 0x660f0142, 0x00000000}},  //   tlan, stsk, suck,\n  { {0x63a422d0, 0x79880c0d, 0x63ad0197, 0x00000000}},  //   goin, lidw, ulan,\n  { {0xdb000f57, 0x317100e5, 0xc1b90604, 0x00000000}},  // [7cd0] romè, _plzz_, елах_,\n  { {0x63ad0027, 0x2d8700bb, 0xdb0021c3, 0x00000000}},  //   slan, xine_, llmä,\n  { {0x31c40057, 0x7ae9014a, 0x63a40c33, 0x00000000}},  //   рств, ybet, boin,\n  { {0x63ad006b, 0x62080279, 0xa5bb00c4, 0x00000000}},  //   qlan, ürlü, stód,\n  { {0x7bcb0198, 0xfe702aea, 0x128700a6, 0x00000000}},  //   _rigu, يده_, _شمسی_,\n  { {0x2cac0bc4, 0x7ae90016, 0x00000000, 0x00000000}},  //   _bydd_, wbet,   ,\n  { {0x2d87011f, 0x7ae900b5, 0x7bcb0a62, 0x00000000}},  //   rine_, tbet, _pigu,\n  { {0x2d872aeb, 0x2cac018e, 0x00000000, 0x00000000}},  //   sine_, _dydd_,   ,\n  { {0x7ae90073, 0x2d8701d9, 0x7bcb0e4b, 0x00000000}},  //   rbet, pine_, _vigu,\n  { {0x2cac018e, 0x7ae90030, 0x57e9003b, 0x00000000}},  //   _fydd_, sbet, ндом_,\n  { {0x378a026b, 0xfb150076, 0x7bcb20e3, 0x00000000}},  //   ебно_, _مواج, _tigu,\n  { {0xab8402dc, 0x7bcb0203, 0x00000000, 0x00000000}},  //   _кучк, _uigu,   ,\n  { {0x63a400b0, 0x6b890006, 0x7988011c, 0x00000000}},  //   voin, mieg, bidw,\n  { {0x6b89010f, 0x2fcd2aec, 0x39580039, 0x00000000}},  //   lieg, _lieg_, örst_,\n  { {0x63a4089e, 0x69c1010f, 0xe1ff00c4, 0x00000000}},  //   toin, mmle, _avó_,\n  { {0x69c1011f, 0x6b8909a4, 0x05140044, 0x00000000}},  //   lmle, nieg, াজের_,\n  { {0x63a40051, 0x256f0004, 0x63780181, 0x00000000}},  // [7ce0] roin, _küll_, _líng,\n  { {0x63a416c6, 0xdb0000f4, 0x6b89002d, 0x00000000}},  //   soin, romé, hieg,\n  { {0x6b890046, 0x63a400ab, 0xf3f10011, 0x00000000}},  //   kieg, poin, ật_,\n  { {0xdfcf006d, 0x6b89050c, 0x2cac005b, 0x00000000}},  //   سيه_, jieg, _rydd_,\n  { {0x2cac0bc4, 0x6b8901d6, 0xef210089, 0x00000000}},  //   _sydd_, dieg, daļā_,\n  { {0xa0a61deb, 0x443a008a, 0x6da3003b, 0x00000000}},  //   _багд, _ksp_, бича,\n  { {0x443a001c, 0x7988002b, 0x2fcd0026, 0x00000000}},  //   _jsp_, vidw, _fieg_,\n  { {0x40930025, 0x443a145e, 0x6b890036, 0x00000000}},  //   _الفر, _msp_, gieg,\n  { {0x4974041f, 0x443a007f, 0x298a02ea, 0x00000000}},  //   илис, _lsp_, есно_,\n  { {0x443a2aed, 0x2fcd01c3, 0x00000000, 0x00000000}},  //   _osp_, _zieg_,   ,\n  { {0xa3c403d7, 0x6b890036, 0x1755073b, 0x00000000}},  //   एगा_, bieg, авня,\n  { {0x7c3a2aee, 0xa3d802fb, 0x09e30044, 0x00000000}},  //   _istr, ादन_, _মিরা,\n  { {0x443a001c, 0x7afd000c, 0x00000000, 0x00000000}},  //   _asp_, ðste,   ,\n  { {0xda7b0104, 0x753e0026, 0x443a01de, 0x00000000}},  //   _אנדר, _capz, _bsp_,\n  { {0x443a01c5, 0x68fa2aef, 0x753e0126, 0x00000000}},  //   _csp_, matd, _dapz,\n  { {0x443a2af0, 0x1dd4013d, 0x3ea9002b, 0x00000000}},  //   _dsp_, ददात, żati_,\n  { {0xa2c0001c, 0x443a09b8, 0x50f500d7, 0x00000000}},  // [7cf0] लेल्, _esp_, изат,\n  { {0x7c3a039b, 0x6378027b, 0x6b890089, 0x00000000}},  //   _ostr, _aínd, zieg,\n  { {0x443a0035, 0xb03500e2, 0xc03501fc, 0x00000000}},  //   _gsp_, рнеш, рнеј,\n  { {0x3ead0065, 0x68fa013f, 0x2fcd01f3, 0x00000000}},  //   _pyet_, hatd, _qieg_,\n  { {0x6b890089, 0x68fa10c3, 0x12fa009b, 0x00000000}},  //   vieg, katd, _בהרב,\n  { {0x6b892af1, 0x443a0146, 0x2fcd0116, 0x00000000}},  //   wieg, _ysp_, _wieg_,\n  { {0x636a009f, 0x6b8907eb, 0x443a00f6, 0x00000000}},  //   _sýni, tieg, _xsp_,\n  { {0x290a0010, 0x3d170061, 0x69dd00fa, 0x00000000}},  //   óban_, _नावे_, íseo,\n  { {0xc9550147, 0x6b8901a2, 0x3f9c009d, 0x00000000}},  //   атны, rieg, évue_,\n  { {0x6e3b0058, 0x6b89010f, 0x636a0142, 0x00000000}},  //   _isub, sieg, _výni,\n  { {0x6b8928dc, 0xb8dd007d, 0x7c3a0022, 0x00000000}},  //   pieg, _आर_, _gstr,\n  { {0x07a601e1, 0xc7a60088, 0x290b2af2, 0x00000000}},  //   рамн, римк, şca_,\n  { {0x443a12dd, 0x7afb00b0, 0x6b5c0010, 0x00000000}},  //   _ssp_, maut, _négy,\n  { {0x7afb021e, 0xb17b0039, 0x7c3a005b, 0x00000000}},  //   laut, _stån, _ystr,\n  { {0x69db0f07, 0x63780219, 0x673f0065, 0x00000000}},  //   lque, _líne, _faqj,\n  { {0x7afb028c, 0x00000000, 0x00000000, 0x00000000}},  //   naut,   ,   ,\n  { {0x69db02d0, 0x2b9a0089, 0xd5af00a1, 0x00000000}},  // [7d00] nque, nīca_, سفہ_,\n  { {0x6378045b, 0xd5fb0097, 0x69db00d4, 0x00000000}},  //   _sínd, _שפיר, ique,\n  { {0x7afb00b0, 0x6e3b0020, 0x443a0181, 0x00000000}},  //   kaut, _asub, _usp_,\n  { {0xf8b200b6, 0x7afb2af3, 0x888c0049, 0x00000000}},  //   חשב_, jaut, עראַ,\n  { {0xee7a0558, 0x4438018e, 0x9ea70aed, 0x00000000}},  //   خصات_, lwr_, авца_,\n  { {0x7afb1c9d, 0x14ba0061, 0x7c3a1c10, 0x00000000}},  //   eaut, _इराण, _pstr,\n  { {0x7afb2af4, 0x998d0036, 0x6e3b0197, 0x00000000}},  //   faut, steś_, _esub,\n  { {0xe4570049, 0x7afb2af5, 0x637803df, 0x00000000}},  //   שיקט_, gaut, _fíne,\n  { {0x3f67025f, 0x44380016, 0x7c3a0036, 0x00000000}},  //   _тито_, hwr_, _wstr,\n  { {0xd90e0167, 0xd90d0014, 0x9f5a0026, 0x00000000}},  //   ذیب_, فیه_, cupò_,\n  { {0x7c3a0059, 0x7afb2af6, 0x68fa006b, 0x00000000}},  //   _ustr, baut, ratd,\n  { {0x69db0c2f, 0x4438018e, 0x776400d4, 0x00000000}},  //   bque, dwr_, _coix,\n  { {0xdb000845, 0x69db00f4, 0x6e220056, 0x00000000}},  //   nomí, cque, ntob,\n  { {0x61e92af7, 0x44380016, 0x00000000, 0x00000000}},  //   _çeli, fwr_,   ,\n  { {0x61e6001e, 0x44380016, 0x776400f6, 0x00000000}},  //   _atkl, gwr_, _foix,\n  { {0x8c3c005f, 0x53980088, 0xb4b70061, 0x00000000}},  //   _uyğu, ався_, _जरी_,\n  { {0xb7f80044, 0xdb1b01a2, 0x00000000, 0x00000000}},  // [7d10] _অমিত_, hluß,   ,\n  { {0x2fd82af8, 0x9f580207, 0x6f1b1cae, 0x00000000}},  //   _burg_, _avrà_, _scuc,\n  { {0x69db008e, 0x53350069, 0x75352191, 0x00000000}},  //   zque, _лент, mezz,\n  { {0x75352af9, 0x68f82afa, 0x00000000, 0x00000000}},  //   lezz, _levd,   ,\n  { {0xfce5005e, 0x7afb0006, 0x69db009d, 0x00000000}},  //   боло, vaut, xque,\n  { {0x75350197, 0x290a008e, 0x7afb00d9, 0x00000000}},  //   nezz, óbal_, waut,\n  { {0x7afb2afb, 0x65650066, 0x00000000, 0x00000000}},  //   taut, _mohh,   ,\n  { {0xd4980104, 0x75350207, 0x6e3b2356, 0x00000000}},  //   יכות_, hezz, _tsub,\n  { {0x8e850025, 0x65652afc, 0x75350010, 0x00000000}},  //   _الذه, _oohh, kezz,\n  { {0x69db053e, 0x7afb03b6, 0x77642afd, 0x00000000}},  //   rque, saut, _soix,\n  { {0x69db0249, 0x20010061, 0x6d4121e6, 0x00000000}},  //   sque, nshi_, _iala,\n  { {0x20010020, 0xb17b1a95, 0x6d4301e5, 0x00000000}},  //   ishi_, _stål, ldna,\n  { {0x6d4104be, 0x75350766, 0x65650026, 0x00000000}},  //   _kala, fezz, _bohh,\n  { {0x6d41020c, 0x20010ea9, 0x6d43000c, 0x00000000}},  //   _jala, kshi_, ndna,\n  { {0x6d410504, 0x69d90b28, 0xa3b30061, 0x00000000}},  //   _mala, _huwe, टतं_,\n  { {0x69d91bc5, 0x6d41006a, 0x44380016, 0x00000000}},  //   _kuwe, _lala, rwr_,\n  { {0x69d90007, 0x75350c0d, 0x7af90066, 0x00000000}},  // [7d20] _juwe, bezz, _mewt,\n  { {0x6d412afe, 0x865b00b6, 0x69d911b3, 0x00000000}},  //   _nala, _עדיי, _muwe,\n  { {0xa2b4007d, 0x69d90022, 0x2e2001aa, 0x00000000}},  //   _आरक्, _luwe, wòf_,\n  { {0x6604000c, 0x6d41011c, 0x6e220197, 0x00000000}},  //   _kvik, _aala, ttob,\n  { {0x6d410504, 0x471b007b, 0x69d90007, 0x00000000}},  //   _bala, רונג, _nuwe,\n  { {0xdb002aff, 0xd2b7009b, 0x2fd8006c, 0x00000000}},  //   romí, _ללכת_, _turg_,\n  { {0x6d411451, 0x6e220059, 0x6fb60076, 0x00000000}},  //   _dala, stob, _همسا,\n  { {0x5f960054, 0x6d41002a, 0x68f8047f, 0x00000000}},  //   _الرئ, _eala, _sevd,\n  { {0x6d410917, 0x7afd000c, 0x386c0016, 0x00000000}},  //   _fala, ðsta, wydr_,\n  { {0xa3d80309, 0xad650025, 0xdb1a00c4, 0x00000000}},  //   ादा_, _واله, _autô,\n  { {0x2c0b00a6, 0xd90f00a1, 0x63a9002b, 0x00000000}},  //   _معنی_, ریٹ_, ċenz,\n  { {0x6d41002d, 0x2d8e1e55, 0x7ae201ee, 0x00000000}},  //   _zala, life_, _ufot,\n  { {0x75352579, 0x6d41005d, 0x7bda1de9, 0x00000000}},  //   tezz, _yala, _hutu,\n  { {0x7bda2b00, 0xd943003b, 0x6d412b01, 0x00000000}},  //   _kutu, _нечи, _xala,\n  { {0x75352b02, 0x7bda03b6, 0x7aed001a, 0x00000000}},  //   rezz, _jutu, _întâ,\n  { {0xa5bb00dc, 0x2001016c, 0x75350026, 0x00000000}},  //   ctón, vshi_, sezz,\n  { {0x75352b03, 0x7bda01a3, 0x7d081fbc, 0x00000000}},  // [7d30] pezz, _lutu, _odds,\n  { {0x7bda1160, 0x20070825, 0xdb19000a, 0x00000000}},  //   _outu, šnim_, _jiwò,\n  { {0x610b001e, 0x93e00061, 0x6d410145, 0x00000000}},  //   vēlē, _खूपच_, _rala,\n  { {0x63780489, 0x7d080009, 0x256f006b, 0x00000000}},  //   _vínc, _adds, _sülh_,\n  { {0x672d008d, 0x8f34007e, 0x7bda06da, 0x00000000}},  //   _mbaj, яецц, _autu,\n  { {0x61ed011c, 0x7bda023a, 0x6d41005f, 0x00000000}},  //   mpal, _butu, _qala,\n  { {0x6d410047, 0x6d4301c9, 0x7bda0197, 0x00000000}},  //   _vala, rdna, _cutu,\n  { {0x6d4117ca, 0x69d9011c, 0x99e5007c, 0x00000000}},  //   _wala, _puwe, ожид,\n  { {0x6d41006a, 0x2ca90036, 0xc3340097, 0x00000000}},  //   _tala, ład_, לוק_,\n  { {0xe8f9013b, 0x672d0211, 0x2d8e0181, 0x00000000}},  //   шло_, _abaj, cife_,\n  { {0x764d047f, 0x7bda002d, 0x66041fbc, 0x00000000}},  //   _aray, _gutu, _svik,\n  { {0x764d006b, 0xa6ca09ae, 0x69d90020, 0x00000000}},  //   _bray, илна_, _tuwe,\n  { {0x99d70076, 0x764d009d, 0x7bda0f30, 0x00000000}},  //   _اتصا, _cray, _zutu,\n  { {0x764d0058, 0x1a9a0049, 0x224901c3, 0x00000000}},  //   _dray, _דינע, dvak_,\n  { {0x6f0901ee, 0x3f8f002d, 0x81d60044, 0x00000000}},  //   _odec, kigu_, _সবই_,\n  { {0x3f8f037e, 0x2d8e0e8c, 0x764d009d, 0x00000000}},  //   jigu_, zife_, _fray,\n  { {0x764d041d, 0x27e00119, 0x61ed011c, 0x00000000}},  // [7d40] _gray, _čini_, gpal,\n  { {0x6f090211, 0xa1c30088, 0x80a80044, 0x00000000}},  //   _adec, дбуд, _কৃষ্,\n  { {0x397a0049, 0xcf460641, 0x00000000, 0x00000000}},  //   סטענ, жней,   ,\n  { {0x7bda007f, 0xdce1129d, 0x637801e5, 0x00000000}},  //   _rutu, _dolč, _fína,\n  { {0x7bda0006, 0x6f09018e, 0xc6280044, 0x00000000}},  //   _sutu, _ddec, মিকা_,\n  { {0xdb000047, 0x6f09014a, 0x63b60016, 0x00000000}},  //   domá, _edec, llyn,\n  { {0x6023198f, 0xd007007c, 0xdb000129, 0x00000000}},  //   _одра, _мере_, tomà,\n  { {0x63b6018e, 0x2d8e000a, 0xdb090048, 0x00000000}},  //   nlyn, sife_, tleá,\n  { {0x81dc0044, 0x63b60045, 0x3fc900a1, 0x00000000}},  //   ণীর_, ilyn, _اگلی_,\n  { {0x7bda2b04, 0x6f090036, 0x63b622af, 0x00000000}},  //   _tutu, _zdec, hlyn,\n  { {0x61ed0266, 0x7bda00b0, 0xdb090048, 0x00000000}},  //   zpal, _uutu, sleá,\n  { {0x61ed0061, 0xdbf00044, 0x764d0837, 0x00000000}},  //   ypal, _টিপস_, _pray,\n  { {0x61e20051, 0xe738007e, 0x63b60016, 0x00000000}},  //   íoll, цеў_, dlyn,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x9f47008d, 0xb9c306dd, 0x6378000c, 0x00000000}},  //   ënë_, _تقوي, _sína,\n  { {0x764d2b05, 0x2007021c, 0x61ed2b06, 0x00000000}},  //   _tray, šnik_, tpal,\n  { {0xc175005e, 0xdce12b07, 0xbb3b0049, 0x00000000}},  // [7d50] плащ, _solč, סעמי,\n  { {0x61ed006c, 0x799a05eb, 0x3d04013d, 0x00000000}},  //   rpal, nntw, रणों_,\n  { {0x61ed00b0, 0x80070a78, 0xdfa71e8a, 0x00000000}},  //   spal, ючае, ојдо,\n  { {0x61ed021e, 0x6458050f, 0xf4120049, 0x00000000}},  //   ppal, _švig, _אפט_,\n  { {0x3f8f1f66, 0xfce50069, 0x249f019a, 0x00000000}},  //   rigu_, поло, ğumu_,\n  { {0x63ad2b08, 0x00000000, 0x00000000, 0x00000000}},  //   loan,   ,   ,\n  { {0x7afd000c, 0x00000000, 0x00000000, 0x00000000}},  //   ðsto,   ,   ,\n  { {0xdb000489, 0x7bc2023f, 0x69c801bb, 0x00000000}},  //   tomá, _chou, emde,\n  { {0xdb0e0051, 0x3eb9000c, 0x3f8d0087, 0x00000000}},  //   ódál, _ást_, _imeu_,\n  { {0x8d770070, 0x63ad0082, 0xdb002b09, 0x00000000}},  //   _بارا, hoan, romá,\n  { {0xa3bd03d7, 0x5eb00044, 0xf8ce01f5, 0x00000000}},  //   ेगा_, জেদে, _हृदय,\n  { {0x7bc201d6, 0xa5bb1542, 0x91790082, 0x00000000}},  //   _ghou, stól, _lần_,\n  { {0x20070f3a, 0x63ad2b0a, 0x7bc92b0b, 0x00000000}},  //   šnih_, doan, mmeu,\n  { {0x7bc22b0c, 0x00000000, 0x00000000, 0x00000000}},  //   _zhou,   ,   ,\n  { {0x69c30cd2, 0x63ad001a, 0x443300e5, 0x00000000}},  //   _ihne, foan, _cpx_,\n  { {0x63ad0bc0, 0x46a601e1, 0x6b9b2b0d, 0x00000000}},  //   goan, _найв, nnug,\n  { {0x171b009b, 0x63b62b0e, 0x00000000, 0x00000000}},  // [7d60] _הופע, rlyn,   ,\n  { {0x63b6219e, 0x91790082, 0x870600a1, 0x00000000}},  //   slyn, _cần_, _بڑھے_,\n  { {0x63ad00ea, 0x44330253, 0xb4d80164, 0x00000000}},  //   boan, _gpx_, िशी_,\n  { {0x63ad0375, 0x53a60478, 0xf1bf013e, 0x00000000}},  //   coan, _хамб, _spát_,\n  { {0x69c80016, 0x69c301a2, 0x9f030025, 0x00000000}},  //   ymde, _ohne, رووو,\n  { {0x7bc20038, 0x25740039, 0xc8ff0044, 0x00000000}},  //   _shou, _sälj_, ্ভুত_,\n  { {0x64580325, 0x00000000, 0x00000000, 0x00000000}},  //   _ávid,   ,   ,\n  { {0x26c00026, 0x69c317f7, 0x22420145, 0x00000000}},  //   _ozio_, _ahne, _kskk_,\n  { {0x62840198, 0xc33300b6, 0x25740039, 0x00000000}},  //   nzio, תוח_, _välj_,\n  { {0x628402cf, 0x63ad27ab, 0x6f020048, 0x00000000}},  //   izio, zoan, laoc,\n  { {0x7bc20038, 0xac760b03, 0x63ad0020, 0x00000000}},  //   _thou, _عائش, yoan,\n  { {0x6284022b, 0xba2a0014, 0xe695007c, 0x00000000}},  //   kzio, _هستم_, димы,\n  { {0x63ad2522, 0x00000000, 0x00000000, 0x00000000}},  //   voan,   ,   ,\n  { {0x201a01a3, 0xa2cd02f4, 0x6284093c, 0x00000000}},  //   kupi_, _दृष्, dzio,\n  { {0x92b90055, 0x63ad0035, 0x62842b0f, 0x00000000}},  //   _চলে_, toan, ezio,\n  { {0x636819a2, 0x97a4007e, 0x201a2b10, 0x00000000}},  //   пруг_, _прыл, dupi_,\n  { {0x6f020107, 0xa2cd006e, 0x63ad0035, 0x00000000}},  // [7d70] daoc, _दृश्, roan,\n  { {0x6458010a, 0x9327007a, 0x291e0006, 0x00000000}},  //   _švie, _کردن, ngta_,\n  { {0xf1c80054, 0x6284064c, 0xf1bf0051, 0x00000000}},  //   أولى_, azio, _spás_,\n  { {0x27f8015f, 0x6f02016c, 0x00000000, 0x00000000}},  //   árny_, gaoc,   ,\n  { {0x3254007e, 0x09140044, 0xa3aa013d, 0x00000000}},  //   _звяр, ত্যু_, खकर_,\n  { {0xdd9101af, 0xee3803e8, 0x361c009b, 0x00000000}},  //   ضوع_, яні_, מודד,\n  { {0x40340373, 0x201a0026, 0x6b9b2b11, 0x00000000}},  //   _перс, cupi_, tnug,\n  { {0x291e0e3f, 0xdce10089, 0x69c30023, 0x00000000}},  //   egta_, _dolā, _shne,\n  { {0x7bc90685, 0x2b4608ea, 0x00000000, 0x00000000}},  //   rmeu, _daoc_,   ,\n  { {0x98bc0089, 0xfe700426, 0x7bc900d9, 0x00000000}},  //   _savā_, _صدق_, smeu,\n  { {0x7d032b12, 0x07a600c2, 0xc7a60088, 0x00000000}},  //   mans, данн, динк,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x2eff009d, 0x637800fa, 0x00000000, 0x00000000}},  //   _meuf_, _síno,   ,\n  { {0xdd99000a, 0xa3b6007d, 0x00000000, 0x00000000}},  //   _dwňg_, _चीज_,   ,\n  { {0x6fad0204, 0x2eff009d, 0x5fd90309, 0x00000000}},  //   टकां, _oeuf_, _बंगल,\n  { {0x39472b13, 0x7d032b14, 0x2eff00f4, 0x00000000}},  //   _hans_, hans, _neuf_,\n  { {0x394724aa, 0x6f0205fa, 0x26c000e7, 0x00000000}},  // [7d80] _kans_, vaoc, _uzio_,\n  { {0x7d0300ee, 0x62840207, 0x201a04be, 0x00000000}},  //   jans, rzio, tupi_,\n  { {0x394708d8, 0x7d032b15, 0x6f0205fa, 0x00000000}},  //   _mans_, dans, taoc,\n  { {0x213a1a07, 0x20070181, 0x6284002d, 0x00000000}},  //   seph_, ânia_, pzio,\n  { {0x7d030016, 0x6f020107, 0x644e068f, 0x00000000}},  //   fans, raoc, lvbi,\n  { {0x44440428, 0x753c114b, 0x7d030091, 0x00000000}},  //   _ks_, nerz, gans,\n  { {0x4444001c, 0x67240091, 0xac970380, 0x00000000}},  //   _js_, _ocij, ونها_,\n  { {0x753c09fa, 0x6d530089, 0x7d0317e3, 0x00000000}},  //   herz, _ādaž, aans,\n  { {0x4444001e, 0x7d030056, 0xcb6700ed, 0x00000000}},  //   _ls_, bans, ќање_,\n  { {0x44440fb3, 0x7d03016c, 0x79810016, 0x00000000}},  //   _os_, cans, ghlw,\n  { {0x39470a8d, 0x444404bd, 0x6d5a12e9, 0x00000000}},  //   _dans_, _ns_, _inta,\n  { {0x6d4a0190, 0x6d480127, 0xbc790049, 0x00000000}},  //   ldfa, _hada, _צװײט,\n  { {0x6d482b16, 0xa5bb002a, 0x753c010f, 0x00000000}},  //   _kada, ltói, ferz,\n  { {0x39470116, 0x6d48286b, 0x442a0009, 0x00000000}},  //   _gans_, _jada, ftb_,\n  { {0x44442b17, 0xa5bb002a, 0x6d48066d, 0x00000000}},  //   _cs_, ntói, _mada,\n  { {0x444404bd, 0x6d480263, 0x69d81923, 0x00000000}},  //   _ds_, _lada, _hive,\n  { {0x444400dd, 0x7d030020, 0x69d80b90, 0x00000000}},  // [7d90] _es_, yans, _kive,\n  { {0x444409b8, 0x398001aa, 0xca480011, 0x00000000}},  //   _fs_, _fòse_, _mờ_,\n  { {0x44440011, 0x69d82b18, 0x7d032b19, 0x00000000}},  //   _gs_, _mive, vans,\n  { {0x6d5a020c, 0x6445008d, 0x7d030036, 0x00000000}},  //   _anta, _ishi, wans,\n  { {0x4279007b, 0x7d032722, 0x8db5008b, 0x00000000}},  //   _זאָג, tans, нскі,\n  { {0x6d482b1a, 0x44441784, 0x7c2a06d3, 0x00000000}},  //   _cada, _ys_, ftfr,\n  { {0xabd5025f, 0xfc31035b, 0x6d4801a3, 0x00000000}},  //   нциј, احت_, _dada,\n  { {0x39472b1b, 0x6d5a2957, 0x64450020, 0x00000000}},  //   _sans_, _enta, _mshi,\n  { {0x7d032b1c, 0x6d480096, 0xca480011, 0x00000000}},  //   pans, _fada, _cờ_,\n  { {0x6d4821a3, 0xf9910025, 0x661d006c, 0x00000000}},  //   _gada, طبخ_, dusk,\n  { {0x7b6701be, 0x39470c61, 0x64450e92, 0x00000000}},  //   _отде, _vans_, _nshi,\n  { {0x6d480b4a, 0x4444041e, 0x673d00f4, 0x00000000}},  //   _zada, _rs_, gesj,\n  { {0x44442b1d, 0x753c1507, 0x39470007, 0x00000000}},  //   _ss_, terz, _tans_,\n  { {0x69d82b1e, 0x7d010047, 0x7ae90e32, 0x00000000}},  //   _give, _jels, lcet,\n  { {0x44440541, 0x7d01007f, 0x64a3132e, 0x00000000}},  //   _qs_, _mels, гара,\n  { {0x4444021e, 0x2905006a, 0x7ae92b1f, 0x00000000}},  //   _vs_, lala_, ncet,\n  { {0x4444001c, 0x7f4b001c, 0x6f0000bb, 0x00000000}},  // [7da0] _ws_, ddgq, _remc,\n  { {0x290522d5, 0x64450065, 0x7d010e3e, 0x00000000}},  //   nala_, _fshi, _nels,\n  { {0x44440038, 0x251b0049, 0x29050035, 0x00000000}},  //   _us_, _צוטא, iala_,\n  { {0xdee62b20, 0x6d481cf7, 0x290503b0, 0x00000000}},  //   ходи, _sada, hala_,\n  { {0x29051cce, 0x7d010010, 0xa2d603ec, 0x00000000}},  //   kala_, _bels, _سيست,\n  { {0x29050868, 0x6d482b21, 0x29fd0027, 0x00000000}},  //   jala_, _qada, dňa_,\n  { {0x69d8085d, 0x6d48007f, 0x7d010056, 0x00000000}},  //   _rive, _vada, _dels,\n  { {0x5a342b22, 0x69d80d2a, 0x6d482b23, 0x00000000}},  //   внит, _sive, _wada,\n  { {0x7d010047, 0xa5bb0051, 0x6d480091, 0x00000000}},  //   _fels, stói, _tada,\n  { {0x2905020c, 0x7d01014a, 0xf8ab0011, 0x00000000}},  //   gala_, _gels, ười_,\n  { {0x69d8081d, 0x00000000, 0x00000000, 0x00000000}},  //   _vive,   ,   ,\n  { {0xca480011, 0xcf930049, 0x7ae90cc8, 0x00000000}},  //   _tờ_, ָטש_, ccet,\n  { {0x69d805bc, 0x29050209, 0x95cb0893, 0x00000000}},  //   _tive, bala_, зува_,\n  { {0x661d0127, 0xbf0c0061, 0xceb300a3, 0x00000000}},  //   rusk, हणुन_, ריש_,\n  { {0xf434007e, 0x661d0653, 0x94a800d7, 0x00000000}},  //   лерэ, susk, етта_,\n  { {0x661d01a3, 0x63a90091, 0x58bb009b, 0x00000000}},  //   pusk, čeno, _ממוצ,\n  { {0xdb1b0181, 0xdcfa000a, 0x00000000, 0x00000000}},  // [7db0] fluê, _altč,   ,\n  { {0x644504be, 0x200700c4, 0x00000000, 0x00000000}},  //   _tshi, ânio_,   ,\n  { {0xbf0c001c, 0x6445000b, 0xd01000a1, 0x00000000}},  //   हणून_, _ushi, یلے_,\n  { {0x2905022b, 0x7d0101e3, 0x29fd0142, 0x00000000}},  //   zala_, _sels, yňa_,\n  { {0x7d01068f, 0x29050145, 0xe8d90082, 0x00000000}},  //   _pels, yala_, _đọ_,\n  { {0x7ae90a2e, 0x23690ce4, 0x29fd0027, 0x00000000}},  //   wcet, ljaj_, vňa_,\n  { {0x7d0105b7, 0x00000000, 0x00000000, 0x00000000}},  //   _vels,   ,   ,\n  { {0x660d01cd, 0x29051bc6, 0x7f4b001c, 0x00000000}},  //   _ovak, wala_, qdgq,\n  { {0x7d01000c, 0x7ae9000d, 0x00000000, 0x00000000}},  //   _tels, rcet,   ,\n  { {0x7ae90026, 0x7dc40129, 0xc79800a1, 0x00000000}},  //   scet, ròsc, کھتا_,\n  { {0x29052b24, 0xd7f8007e, 0x78862b25, 0x00000000}},  //   rala_, нуў_, _révé,\n  { {0xc6260055, 0xf4270044, 0x23691ae2, 0x00000000}},  //   যবসা_, মবার_, jjaj_,\n  { {0x29050149, 0x236905fa, 0x661a0036, 0x00000000}},  //   pala_, djaj_, ątko,\n  { {0x64a6007e, 0x660d1e90, 0x00000000, 0x00000000}},  //   вага, _dvak,   ,\n  { {0x232a189f, 0x00000000, 0x00000000, 0x00000000}},  //   мови_,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xe2972b26, 0x91e3007c, 0xc0e60147, 0x00000000}},  // [7dc0] ват_, иоте, возк,\n  { {0xdce81e34, 0x91a70082, 0x00000000, 0x00000000}},  //   _podč, _địa_,   ,\n  { {0x63782b27, 0x660d14f8, 0x00000000, 0x00000000}},  //   _líni, _zvak,   ,\n  { {0x443a00e7, 0x00000000, 0x00000000, 0x00000000}},  //   _ipp_,   ,   ,\n  { {0x443a2b28, 0x25740039, 0x80d30044, 0x00000000}},  //   _hpp_, _fält_, দুল্,\n  { {0x1ea90076, 0x443a0bde, 0x61f618fa, 0x00000000}},  //   راني_, _kpp_, mpyl,\n  { {0xa2d60201, 0x50c6007d, 0xed570098, 0x00000000}},  //   _मृत्, _वरिष, тој_,\n  { {0x443a04e6, 0x00000000, 0x00000000, 0x00000000}},  //   _mpp_,   ,   ,\n  { {0x443a2b29, 0x69c7002b, 0x63780919, 0x00000000}},  //   _lpp_, ċjen, _cíni,\n  { {0x443a0292, 0x3f862b2a, 0x1e830451, 0x00000000}},  //   _opp_, lhou_, _тлум,\n  { {0x660d0119, 0x637800c4, 0xdca32337, 0x00000000}},  //   _svak, _tính, _кафи,\n  { {0x3f862b2b, 0x68f5026d, 0xa3e6006e, 0x00000000}},  //   nhou_, ızda, _पढ़_,\n  { {0xb5fb0010, 0x443a192b, 0x6b8200e5, 0x00000000}},  //   lyáz, _app_, _ilog,\n  { {0xe85406ea, 0xdb11000c, 0x443a0085, 0x00000000}},  //   _منتد, ðgön, _bpp_,\n  { {0x443a0145, 0x6b820030, 0xdb1b0129, 0x00000000}},  //   _cpp_, _klog, fluè,\n  { {0x443a0093, 0x644300c4, 0x61f601c3, 0x00000000}},  //   _dpp_, _ânim, fpyl,\n  { {0x6b820521, 0x443a010e, 0x23690059, 0x00000000}},  // [7dd0] _mlog, _epp_, rjaj_,\n  { {0x6b822b2c, 0x7c3a2b2d, 0x3d1c013d, 0x00000000}},  //   _llog, _optr, नलों_,\n  { {0x6b820066, 0x443a0690, 0x4395005e, 0x00000000}},  //   _olog, _gpp_, _банс,\n  { {0x5ecc0044, 0x547a00a3, 0x00000000, 0x00000000}},  //   িশনে, _נטרו,   ,\n  { {0xb2870783, 0x3ea90129, 0x61e20051, 0x00000000}},  //   _рынк, çat_, íolt,\n  { {0x3ea901d5, 0x6b820026, 0x00000000, 0x00000000}},  //   ħat_, _alog,   ,\n  { {0xe8d9001d, 0x63780051, 0x443a2b2e, 0x00000000}},  //   _đỏ_, _síni, _xpp_,\n  { {0x6b8219dd, 0x3f860161, 0x29180c38, 0x00000000}},  //   _clog, chou_, óran_,\n  { {0xe9d90264, 0x69ca002a, 0x2b4d2b2f, 0x00000000}},  //   нки_, _bhfe, rdec_,\n  { {0x6b820181, 0x2b4d0ab2, 0x3ea00048, 0x00000000}},  //   _elog, sdec_, úite_,\n  { {0x63a90295, 0xa3e3007d, 0x6b822b30, 0x00000000}},  //   čenj, _फूल_, _flog,\n  { {0x443a0093, 0xeb74007e, 0x6aa4012d, 0x00000000}},  //   _rpp_, _вышэ, _žife,\n  { {0x64572b31, 0x7afb020c, 0x443a2425, 0x00000000}},  //   _arxi, mbut, _spp_,\n  { {0xceb200b6, 0x1a9a007b, 0x3f86002b, 0x00000000}},  //   צים_, _אינע, zhou_,\n  { {0x3ceb013d, 0x23360b86, 0xc7b904eb, 0x00000000}},  //   _चलने_, лхар, suđa_,\n  { {0x443a049a, 0x7afb2b32, 0x6e3b0036, 0x00000000}},  //   _vpp_, nbut, _opub,\n  { {0xf772025a, 0x443a0145, 0x00000000, 0x00000000}},  // [7de0] _ناک_, _wpp_,   ,\n  { {0x201a016c, 0x7afb0009, 0x2d8700ca, 0x00000000}},  //   trpi_, hbut, jhne_,\n  { {0xef1a0113, 0x443a05ce, 0x3f860343, 0x00000000}},  //   еме_, _upp_, thou_,\n  { {0xa5bb0b33, 0x5f06003b, 0x3f8601dc, 0x00000000}},  //   stót, узда, uhou_,\n  { {0x63a42b13, 0x3f860007, 0x7afb2b33, 0x00000000}},  //   mnin, rhou_, dbut,\n  { {0x63a40073, 0xa5bb2b34, 0x3f860007, 0x00000000}},  //   lnin, ltór, shou_,\n  { {0x63a42b35, 0x6c6600a1, 0x6e3b2b36, 0x00000000}},  //   onin, العہ_, _epub,\n  { {0x63a42b37, 0x61e6007f, 0x7afb011c, 0x00000000}},  //   nnin, _kukl, gbut,\n  { {0xe8d900ad, 0x63a40038, 0x3f84020c, 0x00000000}},  //   _đề_, inin, _ilmu_,\n  { {0xdd8f06f1, 0x63a422ae, 0x2d870471, 0x00000000}},  //   _فوق_, hnin, chne_,\n  { {0x63a402e1, 0xa5bb2b38, 0x7afb0146, 0x00000000}},  //   knin, któr, bbut,\n  { {0x6b82021d, 0x63a40239, 0x8c1b0104, 0x00000000}},  //   _ulog, jnin, _טובי,\n  { {0x63a40239, 0x7ae2002d, 0x6e2204a5, 0x00000000}},  //   dnin, _igot, nuob,\n  { {0x7d0a000b, 0x63a4046a, 0x2bc2001c, 0x00000000}},  //   nafs, enin, शतवा,\n  { {0x63a4000c, 0x645800dc, 0x61e62b39, 0x00000000}},  //   fnin, _ávil, _aukl,\n  { {0x63a40018, 0x981306dd, 0x7d0a2b3a, 0x00000000}},  //   gnin, _ابوا, hafs,\n  { {0x31710091, 0x799a00e7, 0x00000000, 0x00000000}},  // [7df0] _pozz_, oitw,   ,\n  { {0xa5bb00dc, 0x63a400ab, 0x61150088, 0x00000000}},  //   atór, anin, рджу,\n  { {0x31c4007c, 0x63a4279a, 0x6e3b00f6, 0x00000000}},  //   сств, bnin, _spub,\n  { {0x7ae204e9, 0xa5bb16b5, 0x63a400ca, 0x00000000}},  //   _ngot, ctór, cnin,\n  { {0x11d90054, 0x4431002d, 0xaf0401fb, 0x00000000}},  //   _لوحة_, ltz_, спіл,\n  { {0x7ae2008e, 0x44311126, 0x3f840066, 0x00000000}},  //   _agot, otz_, _elmu_,\n  { {0x4431022b, 0x7afb2b3b, 0xa5bb000c, 0x00000000}},  //   ntz_, tbut, próf,\n  { {0x543c0049, 0x69ca007d, 0x4431002d, 0x00000000}},  //   געהא, _सीबी, itz_,\n  { {0x7afb002b, 0x2d870397, 0x628d0026, 0x00000000}},  //   rbut, phne_, nzao,\n  { {0x44232b3c, 0x661d221b, 0x7ae2002d, 0x00000000}},  //   kuj_, drsk, _egot,\n  { {0x63a4004e, 0x661d0007, 0xfd100025, 0x00000000}},  //   ynin, ersk, _رجل_,\n  { {0x6d430207, 0x442318d5, 0x3ebf0058, 0x00000000}},  //   lena, duj_, _kyut_,\n  { {0x63a40239, 0xe8ee0364, 0x44310668, 0x00000000}},  //   vnin, _мл_, etz_,\n  { {0x6d430091, 0x44311270, 0x63780051, 0x00000000}},  //   nena, ftz_, _línt,\n  { {0xa507012b, 0x44230046, 0x04460175, 0x00000000}},  //   реса_, guj_, шевн,\n  { {0x6d43002d, 0x6b9b0197, 0x6b8901d6, 0x00000000}},  //   hena, niug, nheg,\n  { {0x29070127, 0xa5bb2b3d, 0x2d850039, 0x00000000}},  // [7e00] _kena_, rtór, _olle_,\n  { {0x63a4004e, 0xa5bb2b3e, 0x69c12b3f, 0x00000000}},  //   snin, stór, nlle,\n  { {0x69c10ad5, 0x6d432283, 0x6378009f, 0x00000000}},  //   ille, dena, _sínu,\n  { {0x2907002a, 0x6d43001c, 0x66040cfe, 0x00000000}},  //   _lena_, eena, _kwik,\n  { {0x2bdf02d2, 0x7d0a06a4, 0x3a3d0093, 0x00000000}},  //   _पंजा, tafs, _npwp_,\n  { {0x6d432b40, 0x29072b41, 0xdd8f006d, 0x00000000}},  //   gena, _nena_, وون_,\n  { {0xa067005e, 0x29180051, 0x3f9c009d, 0x00000000}},  //   _кара_, óram_, évus_,\n  { {0x2d85028c, 0x6f0b001c, 0x27e0021e, 0x00000000}},  //   _elle_, cagc, _niin_,\n  { {0x6d43027e, 0x29070066, 0x44230871, 0x00000000}},  //   bena, _bena_, zuj_,\n  { {0x63a91238, 0x6d432b42, 0x661d0190, 0x00000000}},  //   čeni, cena, vrsk,\n  { {0xe8d900ad, 0x2907022b, 0x2bdf007d, 0x00000000}},  //   _để_, _dena_, _पंचा,\n  { {0x7ae201d9, 0x4423003b, 0x6b9b0207, 0x00000000}},  //   _ugot, vuj_, ciug,\n  { {0x661d040f, 0x27e0011c, 0x799a00e7, 0x00000000}},  //   ursk, _diin_, pitw,\n  { {0x44230036, 0x443101d6, 0x2d9c0065, 0x00000000}},  //   tuj_, ttz_, nive_,\n  { {0x7d082b43, 0x27e71d10, 0x98a50006, 0x00000000}},  //   _meds, _gunn_, delė_,\n  { {0x05270055, 0x44231191, 0x6d431983, 0x00000000}},  //   য়ের_, ruj_, zena,\n  { {0x6d43000a, 0x442318d5, 0xa7870167, 0x00000000}},  // [7e10] yena, suj_, _مشکو,\n  { {0x63781d59, 0x7d0824fd, 0x2907002b, 0x00000000}},  //   _sínt, _neds, _xena_,\n  { {0x2d9c19e4, 0x6d43046e, 0x290c00c4, 0x00000000}},  //   dive_, vena, iada_,\n  { {0x290c0020, 0x6d43023a, 0x00000000, 0x00000000}},  //   hada_, wena,   ,\n  { {0x290c01cd, 0x7d080018, 0x6d43084b, 0x00000000}},  //   kada_, _beds, tena,\n  { {0x290c029a, 0x2d9c0030, 0x764d00e0, 0x00000000}},  //   jada_, give_, _msay,\n  { {0x290c22c5, 0x672d0107, 0x29070039, 0x00000000}},  //   dada_, _ocaj, _rena_,\n  { {0x290701d5, 0xa6db000c, 0x6d430a6b, 0x00000000}},  //   _sena_, veðn, sena,\n  { {0x69c104bd, 0x6d43022b, 0x290c00c4, 0x00000000}},  //   tlle, pena, fada_,\n  { {0x290c0d42, 0x8d740025, 0x27e00004, 0x00000000}},  //   gada_, _والا, _siin_,\n  { {0x69c1018e, 0x6d8a026c, 0x66e6004c, 0x00000000}},  //   rlle, _حملہ_, йона,\n  { {0x4cd00055, 0x290715e3, 0x103a0049, 0x00000000}},  //   _স্কু, _wena_, נגרע,\n  { {0x2907000b, 0x290c04bd, 0x6fda00b9, 0x00000000}},  //   _tena_, bada_, _důch,\n  { {0x290c0df5, 0x225e01ca, 0xdb0900f6, 0x00000000}},  //   cada_, _čtk_, cleò,\n  { {0x39450168, 0x443e0129, 0x94790140, 0x00000000}},  //   mels_, ït_, асту_,\n  { {0x2d9c0065, 0x08760049, 0x9f9e0023, 0x00000000}},  //   zive_, _לעצט_, rçës_,\n  { {0xae1c0309, 0x98a50006, 0x224900e0, 0x00000000}},  // [7e20] _निधन_, telė_, gwak_,\n  { {0x3945032c, 0x00000000, 0x00000000, 0x00000000}},  //   nels_,   ,   ,\n  { {0x2d9c05f0, 0xa99a0049, 0x7ee60025, 0x00000000}},  //   vive_, נבער, مكان,\n  { {0x290c0977, 0x543b007b, 0x39450007, 0x00000000}},  //   zada_, _געטא, hels_,\n  { {0x2d9c0038, 0x39450343, 0x290c0180, 0x00000000}},  //   tive_, kels_, yada_,\n  { {0xa11601ef, 0x290c2b44, 0x13bd0055, 0x00000000}},  //   _دوست, xada_, _আওয়,\n  { {0x30860054, 0x394500ab, 0xd47a0049, 0x00000000}},  //   _الأف, dels_, טאַל,\n  { {0x7d0801b5, 0x290c2b45, 0x207b01ce, 0x00000000}},  //   _weds, wada_, _גאלא,\n  { {0x290c0004, 0xdb1b2b46, 0x39450129, 0x00000000}},  //   tada_, cluí, fels_,\n  { {0xdb0000f7, 0xd90e0123, 0x394505d0, 0x00000000}},  //   tomó, ریب_, gels_,\n  { {0x91bb00a3, 0xc1bb0049, 0x315708cd, 0x00000000}},  //   רמיי, רמיש, זיין_,\n  { {0x3a2400f8, 0xe61f00c4, 0x00000000, 0x00000000}},  //   pump_, trô_,   ,\n  { {0x290c117c, 0x8f9b009b, 0xfa330014, 0x00000000}},  //   pada_, ריכי, _فرود,\n  { {0x394501c5, 0x00000000, 0x00000000, 0x00000000}},  //   cels_,   ,   ,\n  { {0x499b0452, 0x96f9004d, 0x65942b47, 0x00000000}},  //   _תשוב, _кейт_, чару,\n  { {0x07a403f3, 0x26120061, 0x00000000, 0x00000000}},  //   _најн, _तिची_,   ,\n  { {0x7dcd1b0f, 0x5215022a, 0x00000000, 0x00000000}},  // [7e30] núsc, юдат,   ,\n  { {0x6f0901ee, 0x35f80025, 0x00000000, 0x00000000}},  //   _seec, _اريد_,   ,\n  { {0xa5bb0c59, 0x6f092b48, 0x9ee904b1, 0x00000000}},  //   prób, _peec, لفضل_,\n  { {0x65770065, 0x394500bb, 0xff0705b8, 0x00000000}},  //   _hoxh, zels_, сяжн,\n  { {0x6db50230, 0x61ed006b, 0x7dcd00d4, 0x00000000}},  //   ойду, qqal, júsc,\n  { {0xdb02009f, 0xed59004c, 0xb4fb007d, 0x00000000}},  //   _skoð, рок_, ्रिय_,\n  { {0xd7c90061, 0x394500ab, 0x00000000, 0x00000000}},  //   रताच, vels_,   ,\n  { {0xa2d00204, 0x39450aba, 0xdd99000a, 0x00000000}},  //   _दरम्, wels_, _kwňk_,\n  { {0xb4fb0164, 0x6e99007e, 0x00000000, 0x00000000}},  //   ्राय_, _твар_,   ,\n  { {0xe8df00ad, 0x3cf1006b, 0x3979007c, 0x00000000}},  //   _giới_, _üzv_, рсию_,\n  { {0x394500f4, 0x0cab005e, 0xa3d9007d, 0x00000000}},  //   rels_, _стаи_, ाषा_,\n  { {0x39450343, 0x65650082, 0x00000000, 0x00000000}},  //   sels_, _anhh,   ,\n  { {0x39451c83, 0x65772b49, 0x70c6007d, 0x00000000}},  //   pels_, _boxh, _वर्ल,\n  { {0x9f5a0173, 0xa50704dd, 0x00000000, 0x00000000}},  //   nspò_, жера_,   ,\n  { {0xe7320025, 0xa5bb0036, 0xc7b911af, 0x00000000}},  //   _قصة_, wróc, srđa_,\n  { {0x776405d2, 0x660216b4, 0x00000000, 0x00000000}},  //   _unix, _çoko,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  // [7e40]   ,   ,   ,\n  { {0x65770023, 0x10a610a9, 0x6616007f, 0x00000000}},  //   _goxh, оизн, _ivyk,\n  { {0x661a0036, 0xd6a9025a, 0xf21e013d, 0x00000000}},  //   ątku, _ندیم_, यूज़_,\n  { {0xddc90046, 0x7dcd008e, 0x645e0197, 0x00000000}},  //   _treś, yúsc, _irpi,\n  { {0x88cf0044, 0xde58007e, 0x5e580088, 0x00000000}},  //   রশিক, салі_, силя_,\n  { {0x645e1adc, 0x00000000, 0x00000000, 0x00000000}},  //   _krpi,   ,   ,\n  { {0x0b8a0893, 0x00000000, 0x00000000, 0x00000000}},  //   исии_,   ,   ,\n  { {0x224201a3, 0x00000000, 0x00000000, 0x00000000}},  //   _kpkk_,   ,   ,\n  { {0x9f4d01a2, 0x00000000, 0x00000000, 0x00000000}},  //   _hieß_,   ,   ,\n  { {0x7afd006b, 0x290a0a47, 0x6d23003b, 0x00000000}},  //   ısta, úba_, _одуз,\n  { {0x6c4a025a, 0x81570049, 0xd7f40930, 0x00000000}},  //   _خلاف_, קסטע_, язны,\n  { {0x7dcd0b33, 0x2fc600bb, 0x6e220912, 0x00000000}},  //   púsc, nlog_, orob,\n  { {0x8bd70476, 0xdb09010f, 0x6e2200d9, 0x00000000}},  //   _וואו_, ließ, nrob,\n  { {0x26c50089, 0x6f022a9c, 0x94ab005e, 0x00000000}},  //   ālo_, hboc, атба_,\n  { {0x2fc62b4a, 0x7dcd0051, 0xe8d90011, 0x00000000}},  //   klog_, núsa, _đệ_,\n  { {0x27fe0093, 0x2fc60022, 0x00000000, 0x00000000}},  //   mptn_, jlog_,   ,\n  { {0x2fc60627, 0xe1f00167, 0x51f80147, 0x00000000}},  // [7e50] dlog_, نسل_, жную_,\n  { {0x6e220b41, 0x00000000, 0x00000000, 0x00000000}},  //   drob,   ,   ,\n  { {0x6e220089, 0x2fc62b4b, 0xf4850014, 0x00000000}},  //   erob, flog_, _رادی,\n  { {0xb4d7001c, 0x63a90428, 0x2fc604eb, 0x00000000}},  //   िधी_, čens, glog_,\n  { {0x6e22007f, 0x8d650242, 0x51870216, 0x00000000}},  //   grob, звле, _дува,\n  { {0x2fc619d8, 0xf2d200a3, 0xc27a009b, 0x00000000}},  //   alog_, _נעם_, _הרשי,\n  { {0x2fc61e7f, 0x1fa7012b, 0x30a4025f, 0x00000000}},  //   blog_, _драг, _жртв,\n  { {0x6e2204eb, 0x2fc60740, 0x997c0089, 0x00000000}},  //   brob, clog_, _jāņu_,\n  { {0x6e221153, 0x80e00044, 0x6f1b11af, 0x00000000}},  //   crob, _প্প্, _iduc,\n  { {0xacf402fd, 0x7dcd0048, 0x00000000, 0x00000000}},  //   _قسمت, búsa,   ,\n  { {0x7c590014, 0x00000000, 0x00000000, 0x00000000}},  //   _دلار_,   ,   ,\n  { {0xe73a16a9, 0x7b640242, 0xeaae00a1, 0x00000000}},  //   щем_, _отче, ئٹی_,\n  { {0x98770059, 0x645e012d, 0x00000000, 0x00000000}},  //   _išče_, _srpi,   ,\n  { {0x386a002a, 0x2fc62b4c, 0x00000000, 0x00000000}},  //   óirí_, zlog_,   ,\n  { {0x2fc6077d, 0x6f1b11ac, 0x6e220036, 0x00000000}},  //   ylog_, _oduc, zrob,\n  { {0x6d86009f, 0x2fc600fa, 0x00000000, 0x00000000}},  //   _aðal, xlog_,   ,\n  { {0xe8d9001d, 0x527600e2, 0x00000000, 0x00000000}},  // [7e60] _độ_, чуву,   ,\n  { {0x6f1b2b4d, 0x645e09fc, 0x7dc40129, 0x00000000}},  //   _aduc, _trpi, pòsi,\n  { {0x757b009b, 0xdefa007c, 0x00000000, 0x00000000}},  //   _הטיפ, был_,   ,\n  { {0x91e604ef, 0x6e220181, 0x442a0004, 0x00000000}},  //   _номе, trob, mub_,\n  { {0x44442b4e, 0x442a2860, 0x2fc601bb, 0x00000000}},  //   _hp_, lub_, rlog_,\n  { {0x444404cb, 0x6e2204f3, 0x763b0049, 0x00000000}},  //   _kp_, rrob, מענג,\n  { {0x444428a0, 0x442a005f, 0x4438000d, 0x00000000}},  //   _jp_, nub_, ntr_,\n  { {0x6e222b4f, 0x7644000a, 0x7dcd2396, 0x00000000}},  //   prob, _opiy, rúsa,\n  { {0x444401d9, 0x442a0016, 0xaa581843, 0x00000000}},  //   _lp_, hub_, ципу_,\n  { {0x44442b50, 0x442a2b51, 0x3f8601ca, 0x00000000}},  //   _op_, kub_, lkou_,\n  { {0x44440046, 0xdd8f0054, 0x442a2b52, 0x00000000}},  //   _np_, _حول_, jub_,\n  { {0x3f862b53, 0x442a006c, 0x00000000, 0x00000000}},  //   nkou_, dub_,   ,\n  { {0x44440607, 0xab2701e1, 0xf1be006e, 0x00000000}},  //   _ap_, _хоча_, ्तान,\n  { {0x6d5803ed, 0xcaa5006d, 0x6d4a18be, 0x00000000}},  //   ndva, _تصمي, nefa,\n  { {0x44440011, 0x69da010f, 0x442a006c, 0x00000000}},  //   _cp_, mmte, gub_,\n  { {0x69c80129, 0x9f440065, 0x6d4a00fa, 0x00000000}},  //   llde, _dimë_, hefa,\n  { {0x6d4a00f8, 0x717900ed, 0x44380016, 0x00000000}},  // [7e70] kefa, обар_, atr_,\n  { {0x44442b54, 0x290e008e, 0x442a006c, 0x00000000}},  //   _fp_, _jefa_, bub_,\n  { {0x4444001d, 0x69c80019, 0x6d4a05d5, 0x00000000}},  //   _gp_, ilde, defa,\n  { {0x2d8c022b, 0xe0d00025, 0x69da01a2, 0x00000000}},  //   _alde_, ازك_, hmte,\n  { {0x0596007a, 0x63ad02e1, 0xddc9001a, 0x00000000}},  //   _رایگ, mnan, _creş,\n  { {0x44440061, 0x6d4a010f, 0x7bc22b55, 0x00000000}},  //   _yp_, gefa, _akou,\n  { {0xfd100076, 0xbc19007e, 0xe1ff0048, 0x00000000}},  //   اجه_, цілі_, _bróg_,\n  { {0x69c800b5, 0x3f8601ca, 0x2d8c014a, 0x00000000}},  //   elde, ckou_, _elde_,\n  { {0x63ad010f, 0x6d4a02cc, 0xddc9001a, 0x00000000}},  //   inan, befa, _greş,\n  { {0xdb00009f, 0x64450190, 0x442a006b, 0x00000000}},  //   rnmá, _ophi, yub_,\n  { {0x8af90265, 0x6d410039, 0x63ad01e2, 0x00000000}},  //   _днес_, _ibla, knan,\n  { {0x44440390, 0x69c8022b, 0x63ad00bb, 0x00000000}},  //   _rp_, alde, jnan,\n  { {0x444402d5, 0x2bb80025, 0x61ef21f6, 0x00000000}},  //   _sp_, _عامة_, _nucl,\n  { {0x7bc9028c, 0x442a006c, 0x290e009f, 0x00000000}},  //   lleu, tub_, _gefa_,\n  { {0x290504bd, 0x63ad009f, 0x61fd001e, 0x00000000}},  //   mbla_, fnan, _atsl,\n  { {0x442a006b, 0x44440011, 0x645c00b5, 0x00000000}},  //   rub_, _vp_, rvri,\n  { {0x4438018e, 0x44440036, 0x442a006c, 0x00000000}},  // [7e80] str_, _wp_, sub_,\n  { {0x44442b56, 0x61ef05e6, 0x442a010e, 0x00000000}},  //   _tp_, _ducl, pub_,\n  { {0x44440038, 0x3f8d00f4, 0xa6db009f, 0x00000000}},  //   _up_, _bleu_, veði,\n  { {0x6d410333, 0xddc9001a, 0x61fd0045, 0x00000000}},  //   _abla, _preş, _ftsl,\n  { {0x6d4a006b, 0x63a4003c, 0x7bc90016, 0x00000000}},  //   tefa, miin, dleu,\n  { {0xf98702fd, 0x63a425a6, 0x7bc20007, 0x00000000}},  //   _شب_, liin, _skou,\n  { {0x7bc90016, 0x6d58101e, 0x6d4a00c4, 0x00000000}},  //   fleu, rdva, refa,\n  { {0xaa540e75, 0x63a40052, 0x6d410190, 0x00000000}},  //   евиш, niin, _ebla,\n  { {0x6d4a0197, 0xa5bb0010, 0x63a400e0, 0x00000000}},  //   pefa, rtóz, iiin,\n  { {0x69c800ab, 0x6d4a0023, 0x98a5007f, 0x00000000}},  //   ulde, qefa, gelį_,\n  { {0x69c80073, 0x69da054e, 0x63a400b0, 0x00000000}},  //   rlde, rmte, kiin,\n  { {0x29c2000c, 0x63a400e7, 0x7bc90133, 0x00000000}},  //   gðar_, jiin, cleu,\n  { {0xa3c90316, 0x29180051, 0x63ad1d15, 0x00000000}},  //   _लीग_, óras_, vnan,\n  { {0x63ad0036, 0x7bc00d8f, 0x6d4100d9, 0x00000000}},  //   wnan, lomu, _xbla,\n  { {0x63ad011c, 0x63a4001a, 0x08f70318, 0x00000000}},  //   tnan, fiin, _غروب_,\n  { {0xb4af0061, 0x63a40058, 0x394c00f8, 0x00000000}},  //   _कशी_, giin, leds_,\n  { {0x61e700bb, 0xdce800b9, 0xb60400b9, 0x00000000}},  // [7e90] _pijl, _podě, tvář,\n  { {0xef190046, 0x6493010a, 0x660d027f, 0x00000000}},  //   _może_, ežiū, _iwak,\n  { {0x31c40057, 0xfe70007a, 0x27e904cb, 0x00000000}},  //   тств, یده_, _kian_,\n  { {0x660d000b, 0x394c0190, 0x63a42b57, 0x00000000}},  //   _kwak, heds_, ciin,\n  { {0x27e9002a, 0xdb000051, 0x61fd093b, 0x00000000}},  //   _mian_, cimé, _utsl,\n  { {0x660d0020, 0xc105067a, 0x6e2b2b58, 0x00000000}},  //   _mwak, _سوري, rugb,\n  { {0x55780049, 0x660d047b, 0x2d8701c5, 0x00000000}},  //   ועגן_, _lwak, rkne_,\n  { {0x2d872b59, 0xef190036, 0x00000000, 0x00000000}},  //   skne_, _boże_,   ,\n  { {0xa5bb029d, 0x7bc92b5a, 0x7bdb00b0, 0x00000000}},  //   tról, rleu, rmuu,\n  { {0x6d41037e, 0x2dd4012b, 0x7bc912e3, 0x00000000}},  //   _ubla, _ажур, sleu,\n  { {0x7aeb001c, 0xf8b1025a, 0x186900ed, 0x00000000}},  //   _tggt, دکش_, чани_,\n  { {0x1cb80188, 0x660d0009, 0x2918000c, 0x00000000}},  //   _غالب_, _bwak, órar_,\n  { {0x29c2009f, 0x394c0ace, 0x27e92b5b, 0x00000000}},  //   rðar_, beds_, _dian_,\n  { {0x6b8900ea, 0xdb0000f8, 0x00000000, 0x00000000}},  //   lkeg, anmä,   ,\n  { {0xf8c60201, 0x69c101ca, 0x63a41c87, 0x00000000}},  //   _रुपय, mole, tiin,\n  { {0x27e9001d, 0x6b89068f, 0xdb001059, 0x00000000}},  //   _gian_, nkeg, timé,\n  { {0xd24f026c, 0x63a4003c, 0x660d000a, 0x00000000}},  // [7ea0] ینہ_, riin, _gwak,\n  { {0x63bb01ae, 0x69c10016, 0x63a403b6, 0x00000000}},  //   čuna, nole, siin,\n  { {0x660d00bb, 0x6b892370, 0xb5fb004a, 0x00000000}},  //   _zwak, kkeg, rváe,\n  { {0x69c10270, 0xd00f0076, 0x27e921b3, 0x00000000}},  //   hole, صله_, _xian_,\n  { {0x69c10046, 0x6493010a, 0x7bc02b5c, 0x00000000}},  //   kole, ržiū, vomu,\n  { {0x69c105aa, 0x00000000, 0x00000000, 0x00000000}},  //   jole,   ,   ,\n  { {0x7bc00205, 0x69c10213, 0x657e0203, 0x00000000}},  //   tomu, dole, _moph,\n  { {0x69c1005b, 0x00000000, 0x00000000, 0x00000000}},  //   eole,   ,   ,\n  { {0x7fd7007b, 0x7bc00035, 0x79a60088, 0x00000000}},  //   _טולס_, romu, ерне,\n  { {0x7c9600c0, 0x7bc00107, 0x27e9254e, 0x00000000}},  //   _прец, somu, _sian_,\n  { {0x394c2b1e, 0x7bc01077, 0x27e900b0, 0x00000000}},  //   reds_, pomu, _pian_,\n  { {0x6d5a0622, 0x60da0010, 0x00000000, 0x00000000}},  //   _hata, _útmu,   ,\n  { {0x8f9b012f, 0x69c12b5d, 0x27e90052, 0x00000000}},  //   ליטי, bole, _vian_,\n  { {0x69c1106f, 0x6d5a0093, 0x26c90020, 0x00000000}},  //   cole, _jata, _vyao_,\n  { {0x6d5a1bc6, 0x80a00061, 0xf367005e, 0x00000000}},  //   _mata, _गेले, нтан,\n  { {0x6d5a2b5e, 0x660d0600, 0x21f60146, 0x00000000}},  //   _lata, _twak, _bæh_,\n  { {0xe1f30318, 0x660d0020, 0x776d0032, 0x00000000}},  // [7eb0] اسر_, _uwak, _inax,\n  { {0x6d5a006a, 0x9f580048, 0x00000000, 0x00000000}},  //   _nata, _dtrí_,   ,\n  { {0x2bac00b9, 0x00000000, 0x00000000, 0x00000000}},  //   pěch_,   ,   ,\n  { {0x6d5a001c, 0x69c100e7, 0x441a0104, 0x00000000}},  //   _aata, zole, _קורס,\n  { {0x6d5a1ccc, 0x69c10020, 0xed5900d7, 0x00000000}},  //   _bata, yole, дол_,\n  { {0x6d5a01cb, 0xdca502b0, 0x00000000, 0x00000000}},  //   _cata, кали,   ,\n  { {0x6d5a2b5f, 0x69c1004f, 0xe73f006c, 0x00000000}},  //   _data, vole, lnõu_,\n  { {0x6d5a0048, 0x69d80103, 0x69c100b4, 0x00000000}},  //   _eata, _ahve, wole,\n  { {0x69c1000b, 0x6d5a08f8, 0xe9d90264, 0x00000000}},  //   tole, _fata, мки_,\n  { {0x6d5a001e, 0x6b890059, 0xd945012b, 0x00000000}},  //   _gata, skeg, њени,\n  { {0x69c1294b, 0x2b4d01c5, 0x00000000, 0x00000000}},  //   role, peec_,   ,\n  { {0x657e2b60, 0xf0ee013d, 0x69c10114, 0x00000000}},  //   _soph, _जल्द_, sole,\n  { {0x6d5a0622, 0x69c100b9, 0x98b1005d, 0x00000000}},  //   _yata, pole, ızı_,\n  { {0x9f4a0d62, 0x6d5a004a, 0x684500e2, 0x00000000}},  //   _rubí_, _xata, _анка,\n  { {0xf99200b6, 0x9835007e, 0x9f4a004a, 0x00000000}},  //   _דרג_, _рэлі, _subí_,\n  { {0x260f0061, 0x69d80065, 0x7afb0145, 0x00000000}},  //   तीही_, _zhve, ncut,\n  { {0xcb12007b, 0xf5060265, 0x657e0146, 0x00000000}},  // [7ec0] ילן_, _изпо, _toph,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x34b7009b, 0x637800f6, 0x7f5b004a, 0x00000000}},  //   _יפים_, _nínx, _cauq,\n  { {0x6d5a2b61, 0xc33300a0, 0x8e3703ec, 0x00000000}},  //   _pata, _דור_, نسور_,\n  { {0x6d5a006b, 0xa2af0061, 0x91030326, 0x00000000}},  //   _qata, ंपर्, _впре,\n  { {0x6d5a014a, 0x80e00044, 0xdce10006, 0x00000000}},  //   _vata, _প্র্, _molė,\n  { {0x6d5a2379, 0x7c830264, 0x26cc006b, 0x00000000}},  //   _wata, руше, ədov_,\n  { {0x6d5a0b9a, 0x4e0b013d, 0x21380145, 0x00000000}},  //   _tata, सीआई_, _kcrh_,\n  { {0xce3701f8, 0x49742b62, 0x0e9b009b, 0x00000000}},  //   _באמת_, улос, _חשמל,\n  { {0x7e62179a, 0x7afb0133, 0x00000000, 0x00000000}},  //   lvop, bcut,   ,\n  { {0x7f422b63, 0x7d1800ca, 0x7afb0943, 0x00000000}},  //   nfoq, lavs, ccut,\n  { {0x07a4008b, 0x95cb01f9, 0xdcfa000a, 0x00000000}},  //   раўн, дува_, _lotč,\n  { {0x7d180142, 0x00000000, 0x00000000, 0x00000000}},  //   navs,   ,   ,\n  { {0x6fc20061, 0x49920014, 0x00000000, 0x00000000}},  //   षकां, _میکر,   ,\n  { {0x63bb0746, 0x7d180637, 0x779400a1, 0x00000000}},  //   čuno, havs, _نیپا,\n  { {0x25f40061, 0x61d91001, 0x7d1804eb, 0x00000000}},  // [7ed0] ंदणी_, емая_, kavs,\n  { {0xa2a7001c, 0x31590d75, 0x395e00eb, 0x00000000}},  //   _घेण्, علاج_, ndts_,\n  { {0x7d182b64, 0x661d03b4, 0x213800fa, 0x00000000}},  //   davs, lssk, _dcrh_,\n  { {0x4431005d, 0x9f4a00d4, 0x7dcd2b65, 0x00000000}},  //   muz_, _cubà_, músi,\n  { {0x661d0239, 0x7afb014a, 0x8fa40014, 0x00000000}},  //   nssk, vcut, جمنه,\n  { {0xaac603d7, 0x395c0927, 0xbbcb007d, 0x00000000}},  //   _लड़क, _navs_, ात्क,\n  { {0x4431047f, 0x7afb0066, 0x3cfe00fa, 0x00000000}},  //   nuz_, tcut, _dftv_,\n  { {0x3869050f, 0x2003012d, 0x00000000, 0x00000000}},  //   _čar_, _itji_,   ,\n  { {0x991502f0, 0x7afb01a3, 0xe8d90011, 0x00000000}},  //   льні, rcut, _đố_,\n  { {0x7afb000d, 0x661d2229, 0x44311b01, 0x00000000}},  //   scut, dssk, kuz_,\n  { {0xe73a0887, 0x5fb703d7, 0x44310066, 0x00000000}},  //   нен_, _अदाल, juz_,\n  { {0x44312b66, 0x6f190036, 0x2a6607f0, 0x00000000}},  //   duz_, nawc, _frob_,\n  { {0xd945017f, 0x395c035e, 0x2a660091, 0x00000000}},  //   _бели, _favs_, _grob_,\n  { {0x442a016c, 0x44312b67, 0x395c0a43, 0x00000000}},  //   trb_, fuz_, _gavs_,\n  { {0x4431002d, 0x280200b9, 0x442a0026, 0x00000000}},  //   guz_, ěrné_, urb_,\n  { {0xf3e601ff, 0x2b5f2b68, 0x00000000, 0x00000000}},  //   ужбо, nduc_,   ,\n  { {0xe2970265, 0x6f190046, 0xb5fb0047, 0x00000000}},  // [7ee0] гат_, dawc, lván,\n  { {0x44310e57, 0xdcfa0107, 0x66040020, 0x00000000}},  //   buz_, _potč, _itik,\n  { {0x80a6069f, 0x00000000, 0x00000000, 0x00000000}},  //   دمان,   ,   ,\n  { {0xdb000048, 0x7c3c006c, 0x3a3f014a, 0x00000000}},  //   timí, _ärri, ktup_,\n  { {0xde580245, 0x7d1805d2, 0xdd990173, 0x00000000}},  //   талі_, tavs, _pwňp_,\n  { {0x66040020, 0x00000000, 0x00000000, 0x00000000}},  //   _mtik,   ,   ,\n  { {0x7d180aaa, 0x4c9404dd, 0x67240166, 0x00000000}},  //   ravs, рийс, _odij,\n  { {0xa2db0201, 0xb5fb0010, 0x22400145, 0x00000000}},  //   पेक्, dván, otik_,\n  { {0x22400149, 0x61ee04be, 0x66042b69, 0x00000000}},  //   ntik_, _kibl, _ntik,\n  { {0x6e930054, 0x2fc62b6a, 0x224025b7, 0x00000000}},  //   _الكا, loog_, itik_,\n  { {0xeaaf00a6, 0x660401a3, 0x672411af, 0x00000000}},  //   قعی_, _atik, _bdij,\n  { {0x661d02e7, 0x4431005a, 0x61ee2b6b, 0x00000000}},  //   tssk, vuz_, _libl,\n  { {0x395c001e, 0xc6a70088, 0x61ee0051, 0x00000000}},  //   _tavs_, урни, _oibl,\n  { {0x6b822b6c, 0x2fc602ae, 0x4431022b, 0x00000000}},  //   _hoog, hoog_, tuz_,\n  { {0x660415f0, 0xdb0900c4, 0x68fb009b, 0x00000000}},  //   _etik, lneá, _אלוה,\n  { {0x44310612, 0x69d80316, 0x6b82006c, 0x00000000}},  //   ruz_, _नीती, _joog,\n  { {0x248d001e, 0x6b8200d9, 0x4431005d, 0x00000000}},  // [7ef0] ņem_, _moog, suz_,\n  { {0x61ee00f4, 0x6b8201c2, 0x6f190036, 0x00000000}},  //   _cibl, _loog, wawc,\n  { {0x61ee04be, 0x22402092, 0x720500a1, 0x00000000}},  //   _dibl, atik_, _چہرہ_,\n  { {0x6d481f0f, 0x2837007b, 0x547a0097, 0x00000000}},  //   _abda, רנאך_, _סטרו,\n  { {0x6f0b0009, 0x61ee00f6, 0xb5fb0161, 0x00000000}},  //   rbgc, _fibl, zván,\n  { {0x3209006a, 0x61ee00ca, 0x6d4301a2, 0x00000000}},  //   mpay_, _gibl, ufna,\n  { {0x6c67026c, 0xfaf10025, 0x2fc6040f, 0x00000000}},  //   البہ_, يثة_, boog_,\n  { {0x5f94029b, 0x442105fe, 0xba25003b, 0x00000000}},  //   _лист, _mvh_, адик,\n  { {0x7f840025, 0x320901aa, 0x49990088, 0x00000000}},  //   _القن, npay_, втня_,\n  { {0xb5fb0047, 0x44212b6d, 0x00000000, 0x00000000}},  //   tván, _ovh_,   ,\n  { {0x3a3f040d, 0xe8d9001d, 0x2240002d, 0x00000000}},  //   stup_, _đồ_, ztik_,\n  { {0x66e600d7, 0x7e69010a, 0xfc3006b4, 0x00000000}},  //   иона, _krep, _رحم_,\n  { {0xcaf4026c, 0x6fd8008e, 0x25aa03ec, 0x00000000}},  //   _اسمب, níca, ندسي_,\n  { {0xceb2019b, 0x44212b6e, 0x6b8200bb, 0x00000000}},  //   קים_, _bvh_, _zoog,\n  { {0x443e00f4, 0x764d2a87, 0x61ee04eb, 0x00000000}},  //   ît_, _epay, _ribl,\n  { {0x25aa018e, 0x66042b6f, 0x8c270044, 0x00000000}},  //   sibl_, _ttik, _মহান_,\n  { {0x57250025, 0x61ee0263, 0xdb0008aa, 0x00000000}},  // [7f00] _طريق, _pibl, nimá,\n  { {0xa06a04b6, 0x2240002d, 0x645a07a8, 0x00000000}},  //   каза_, rtik_, ætis,\n  { {0xef1a01f9, 0xc2e70044, 0x798301aa, 0x00000000}},  //   вме_, গুলি_, _monw,\n  { {0x7e2a02f0, 0x6fd8008e, 0x9e6608d6, 0x00000000}},  //   віка_, fíca, ивед,\n  { {0x5de60001, 0x7e690325, 0x2fc6109a, 0x00000000}},  //   ажда, _crep, roog_,\n  { {0x7e69000d, 0xe0da01e0, 0x79830300, 0x00000000}},  //   _drep, _авг_, _nonw,\n  { {0x20b90057, 0x7e692b70, 0x2fc6040f, 0x00000000}},  //   _быть_, _erep, poog_,\n  { {0x4f9606e3, 0x63b60052, 0x7ac60140, 0x00000000}},  //   _тргу, nnyn, испе,\n  { {0xcb6703f3, 0x7e690039, 0xb5fb0010, 0x00000000}},  //   рање_, _grep, gvál,\n  { {0x79830016, 0x6b8201c3, 0xd7fa030d, 0x00000000}},  //   _conw, _woog, кум_,\n  { {0x3f840b22, 0x798312aa, 0xdddb0089, 0x00000000}},  //   _komu_, _donw, _bruņ,\n  { {0x320900e0, 0x00000000, 0x00000000, 0x00000000}},  //   ypay_,   ,   ,\n  { {0x3f84016c, 0x79830675, 0x00000000, 0x00000000}},  //   _momu_, _fonw,   ,\n  { {0xd5b8007c, 0x68010089, 0x3f840089, 0x00000000}},  //   асс_, _sēde, _lomu_,\n  { {0xd5b8005e, 0x6fb80061, 0xa4d505b8, 0x00000000}},  //   рся_, ेकां, сові,\n  { {0xe3b300a1, 0xa2f5007e, 0xdce10089, 0x00000000}},  //   زرز_, спач, _solī,\n  { {0x764d10ed, 0x67540014, 0xb7dc00b3, 0x00000000}},  // [7f10] _upay, _ذخير, _בקהי,\n  { {0x69c80016, 0x69c70e54, 0x7e690065, 0x00000000}},  //   node, čjeg, _rrep,\n  { {0xd3710025, 0x3f840020, 0xa1581021, 0x00000000}},  //   _فهد_, _bomu_, раху_,\n  { {0x7e690e81, 0xdb0900b5, 0xe4560049, 0x00000000}},  //   _prep, rieë, _פירט_,\n  { {0xd37a007b, 0x6db20046, 0x63ad0046, 0x00000000}},  //   _ערשט, kład, mian,\n  { {0x63ad2b71, 0xfd47008b, 0xdb090116, 0x00000000}},  //   lian, рэдн, pieë,\n  { {0x40950054, 0x7dcd153d, 0xe0e50055, 0x00000000}},  //   _الأر, dúst, _প্রভ,\n  { {0x63ad195b, 0x8f34008b, 0xa3d7013d, 0x00000000}},  //   nian, _месц, िति_,\n  { {0x69c80faa, 0x2fdf00e0, 0x9df80131, 0x00000000}},  //   fode, _ihug_, _внут_,\n  { {0x3897005f, 0x63ad0681, 0x69c80059, 0x00000000}},  //   lərə_, hian, gode,\n  { {0xa3d702f4, 0x63ad242a, 0x6ca7012b, 0x00000000}},  //   िता_, kian, _траж,\n  { {0x63ad0bbf, 0x2d8500ab, 0x3a2d013e, 0x00000000}},  //   jian, _hole_, prep_,\n  { {0x69c800b5, 0x2d852b72, 0x63ad2b73, 0x00000000}},  //   bode, _kole_, dian,\n  { {0xb8dd08b7, 0x799a2b74, 0x3897013f, 0x00000000}},  //   _আর_, chtw, hərə_,\n  { {0x63ad07cd, 0x232a0a30, 0xdcfa001a, 0x00000000}},  //   fian, лови_, _hotă,\n  { {0x96960099, 0x63ad0207, 0x7bc9009d, 0x00000000}},  //   _грош, gian, noeu,\n  { {0x63b6007f, 0x3f84190c, 0x00000000, 0x00000000}},  // [7f20] rnyn, _romu_,   ,\n  { {0x2d8501ee, 0x42230088, 0xdb1b00c4, 0x00000000}},  //   _nole_, ядув, bouç,\n  { {0x3897006b, 0x27e00145, 0x00000000, 0x00000000}},  //   fərə_, _khin_,   ,\n  { {0x63ad0181, 0x645e0209, 0x69c80305, 0x00000000}},  //   cian, _ispi, zode,\n  { {0x59c7024c, 0x2d851b4c, 0xdfcf0380, 0x00000000}},  //   रकार, _bole_, ريه_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x3f84004f, 0x69c801ca, 0x2d851238, 0x00000000}},  //   _tomu_, vode, _dole_,\n  { {0x09d00164, 0x6fb601f7, 0x6b9b0058, 0x00000000}},  //   हत्य, _امرا, ghug,\n  { {0xb998019d, 0xc333009b, 0x2d850023, 0x00000000}},  //   ивих_, פוז_, _fole_,\n  { {0x645e0207, 0x63ad2b75, 0x63bb0bf8, 0x00000000}},  //   _ospi, zian, čuni,\n  { {0x69c80142, 0x6fd81b0f, 0x23c801f5, 0x00000000}},  //   rode, níco, लवाद,\n  { {0x27e01097, 0x69c82b76, 0x63ad16df, 0x00000000}},  //   _chin_, sode, xian,\n  { {0x98b801df, 0x6e2206d3, 0x7d1a05e0, 0x00000000}},  //   ırı_, nsob, _kets,\n  { {0x63ad0036, 0xe89418cb, 0x3897006b, 0x00000000}},  //   wian, _маль, zərə_,\n  { {0x291e1c0b, 0x63ad002a, 0x7d1a08b2, 0x00000000}},  //   mata_, tian, _mets,\n  { {0x52152b77, 0x7d1a0112, 0xdb0900c4, 0x00000000}},  //   ждат, _lets, rneç,\n  { {0x6f021238, 0x00000000, 0x00000000, 0x00000000}},  // [7f30] dcoc,   ,   ,\n  { {0x7d1a03b4, 0x63ad000b, 0xdb0001b1, 0x00000000}},  //   _nets, sian, limä,\n  { {0x63ad0747, 0x66160036, 0x2d8500ab, 0x00000000}},  //   pian, _zwyk, _role_,\n  { {0x291e0ab5, 0xdcee00b9, 0x2d85051b, 0x00000000}},  //   hata_, žděn, _sole_,\n  { {0xdce80006, 0x2d850114, 0x28cf006e, 0x00000000}},  //   _kodė, _pole_, _सुनि,\n  { {0x291e08f0, 0xac09003b, 0x2ea90061, 0x00000000}},  //   jata_, анка_, _कधीत,\n  { {0x291e11f2, 0xef190046, 0xeae50055, 0x00000000}},  //   data_, _też_, _নভেম,\n  { {0x6f020026, 0x7d1a2a57, 0x00000000, 0x00000000}},  //   ccoc, _eets,   ,\n  { {0x291e001a, 0x2d850059, 0x27e0009d, 0x00000000}},  //   fata_, _tole_, _rhin_,\n  { {0x291e0207, 0x6b9b000b, 0x7d1a006b, 0x00000000}},  //   gata_, shug, _gets,\n  { {0xb90102fb, 0x5f7400a1, 0x9f4b0048, 0x00000000}},  //   _दर_, _ظاہر, _ómós_,\n  { {0xe73a0679, 0x7d1a0288, 0x00000000, 0x00000000}},  //   шем_, _zets,   ,\n  { {0x291e1c49, 0x06cd0044, 0x6f1b00fa, 0x00000000}},  //   bata_, রেসি, _meuc,\n  { {0x291e139c, 0x6f1b010f, 0x2901006c, 0x00000000}},  //   cata_, _leuc, _üha_,\n  { {0x6fc90201, 0xe9b800a1, 0xe8d90011, 0x00000000}},  //   िकां, _دنوں_, _đỗ_,\n  { {0x130a007e, 0x27e00032, 0x6f02004a, 0x00000000}},  //   рнай_, _uhin_, xcoc,\n  { {0x645e0036, 0x4226005e, 0xd5e40082, 0x00000000}},  // [7f40] _wspi, юдав, _trì,\n  { {0xb60609f4, 0x776400d4, 0x6fd800dc, 0x00000000}},  //   rašč, _haix, tíco,\n  { {0x645e0209, 0x7d1a269f, 0x7764002d, 0x00000000}},  //   _uspi, _rets, _kaix,\n  { {0x44382b78, 0x291e1792, 0x444401da, 0x00000000}},  //   mur_, zata_, _iq_,\n  { {0x91e600d7, 0x291e005f, 0x443820e9, 0x00000000}},  //   _моме, yata_, lur_,\n  { {0x44442b79, 0x44380009, 0x33200129, 0x00000000}},  //   _kq_, our_, laix_,\n  { {0x44382b7a, 0x6e220197, 0x6f1b010f, 0x00000000}},  //   nur_, ssob, _feuc,\n  { {0x44440207, 0x291e0058, 0x7d1a0112, 0x00000000}},  //   _mq_, wata_, _wets,\n  { {0x44380b97, 0x4444002b, 0x7d1a0047, 0x00000000}},  //   hur_, _lq_, _tets,\n  { {0x44382b7b, 0x444400c4, 0x2b9108f5, 0x00000000}},  //   kur_, _oq_, _lách_,\n  { {0x291e2b7c, 0x77642b7d, 0x6d581701, 0x00000000}},  //   rata_, _baix, meva,\n  { {0x77642b7e, 0x291e0390, 0x645c0016, 0x00000000}},  //   _caix, sata_, dwri,\n  { {0x291e000b, 0x4444008d, 0x443800f4, 0x00000000}},  //   pata_, _aq_, eur_,\n  { {0x44380359, 0x6d580004, 0x95cb0242, 0x00000000}},  //   fur_, neva, рума_,\n  { {0x4438009f, 0x77642697, 0x2b910011, 0x00000000}},  //   gur_, _faix, _bách_,\n  { {0x442d037b, 0x2b91001d, 0x7764002d, 0x00000000}},  //   če_, _cách_, _gaix,\n  { {0xdce8010a, 0x291c0521, 0x4423012d, 0x00000000}},  // [7f50] _todė, _keva_, ssj_,\n  { {0x44380169, 0x6d581032, 0x44442b7f, 0x00000000}},  //   bur_, jeva, _fq_,\n  { {0x6d58129a, 0x291c04bd, 0x4444013f, 0x00000000}},  //   deva, _meva_, _gq_,\n  { {0x291c2b80, 0x9ee90054, 0x65650145, 0x00000000}},  //   _leva_, مفضل_, _hahh,\n  { {0x1d09005e, 0x64470007, 0x260f0061, 0x00000000}},  //   бели_, ltji, तीची_,\n  { {0xed590081, 0x6d58017d, 0x291c007f, 0x00000000}},  //   сок_, geva, _neva_,\n  { {0x64470343, 0x4444008e, 0x6f1b00f6, 0x00000000}},  //   ntji, _xq_, _teuc,\n  { {0x2b91001d, 0x64470007, 0x61f52b81, 0x00000000}},  //   _xách_, itji, _hizl,\n  { {0x44381113, 0x6d5800eb, 0x291c0026, 0x00000000}},  //   zur_, beva, _beva_,\n  { {0x61fd04d4, 0x39450805, 0x291c000d, 0x00000000}},  //   _musl, чног, _ceva_,\n  { {0x6d41005f, 0x291c2234, 0x77640181, 0x00000000}},  //   _icla, _deva_, _paix,\n  { {0x4438002b, 0xf0920049, 0x6db20036, 0x00000000}},  //   vur_, גנט_, płac,\n  { {0xa5bb2b82, 0x77640129, 0x9676007e, 0x00000000}},  //   rsón, _vaix, чыні,\n  { {0x44382b83, 0x2b91001d, 0x4444228d, 0x00000000}},  //   tur_, _sách_, _pq_,\n  { {0x61fd010f, 0x3e5d01aa, 0x444400df, 0x00000000}},  //   _ausl, _lňt_, _qq_,\n  { {0x44382b84, 0x61f5001e, 0x9f460007, 0x00000000}},  //   rur_, _aizl, rmoë_,\n  { {0x4438008d, 0x44440263, 0x64470007, 0x00000000}},  // [7f60] sur_, _wq_, atji,\n  { {0x44440011, 0x2b4f0009, 0x20180022, 0x00000000}},  //   _tq_, _lbgc_, _pwri_,\n  { {0x44380065, 0x6d582b85, 0x2b910011, 0x00000000}},  //   qur_, veva, _tách_,\n  { {0x6d410919, 0x212100e0, 0x00000000, 0x00000000}},  //   _acla, aahh_,   ,\n  { {0xc33301f8, 0x61fd016c, 0x6d58006c, 0x00000000}},  //   _אור_, _gusl, teva,\n  { {0x61f5047f, 0x6da3017f, 0x6d4a00f4, 0x00000000}},  //   _gizl, нича, uffa,\n  { {0x6d580059, 0x6d4a26fb, 0xe5370049, 0x00000000}},  //   reva, rffa, לטסט_,\n  { {0x291c04bd, 0x6d5803b6, 0x6d4100f4, 0x00000000}},  //   _seva_, seva, _ecla,\n  { {0x6d58003b, 0x8d1a007a, 0x291c05fa, 0x00000000}},  //   peva, _هزار_, _peva_,\n  { {0xd90d0014, 0xe7d60044, 0x64470007, 0x00000000}},  //   لیه_, _সংগঠ, ytji,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x65650310, 0xd8380b4a, 0x48a70930, 0x00000000}},  //   _sahh, ruč_, ятым_,\n  { {0x291c04bd, 0xe1ff0082, 0x00000000, 0x00000000}},  //   _teva_, _trói_,   ,\n  { {0x25f4013d, 0x246700b9, 0x00000000, 0x00000000}},  //   ंदगी_, jímá_,   ,\n  { {0x58d3012b, 0x64470007, 0x38c80014, 0x00000000}},  //   _пошт, utji, _باشی_,\n  { {0xb4bd001c, 0x61fd010a, 0x64470343, 0x00000000}},  //   _अशी_, _pusl, rtji,\n  { {0xa5bb004a, 0x656523d6, 0x6fd8013e, 0x00000000}},  // [7f70] lsóm, _tahh, mích,\n  { {0x660d000b, 0xd1310025, 0xe7e1006e, 0x00000000}},  //   _itak, ئما_, _गीता_,\n  { {0xf993007b, 0xe2f901fb, 0x660d0020, 0x00000000}},  //   ערע_, _мені_, _htak,\n  { {0x63bb07a0, 0x29050211, 0x6d410035, 0x00000000}},  //   čuns, zcla_, _scla,\n  { {0x8d7401ef, 0xdef8007e, 0x7c280039, 0x00000000}},  //   کانا, чых_, _avdr,\n  { {0x660d09c7, 0xddc90036, 0xdce80089, 0x00000000}},  //   _mtak, _speł, _godī,\n  { {0x1b210055, 0x22492b86, 0xdd9100a1, 0x00000000}},  //   _যাবে_, ltak_, ٹوں_,\n  { {0x2369008d, 0xdfd10054, 0x2b9800f4, 0x00000000}},  //   ndaj_, _شيء_, _déco_,\n  { {0x22492b87, 0xd959008b, 0x660d2b88, 0x00000000}},  //   ntak_, ошні_, _ntak,\n  { {0x6d4101ee, 0x2fcf2b89, 0x672d0173, 0x00000000}},  //   _ucla, logg_, _adaj,\n  { {0x660d000b, 0xa3bf0201, 0xdce100ca, 0x00000000}},  //   _atak, ेवा_, _kalč,\n  { {0x29052b8a, 0x2249265f, 0x00000000, 0x00000000}},  //   scla_, ktak_,   ,\n  { {0xdce10059, 0xd945012b, 0xf1bf01f5, 0x00000000}},  //   _malč, _жели, ्वान,\n  { {0xe1ff0046, 0x2249121b, 0x6b8b00ea, 0x00000000}},  //   _osób_, dtak_, _hogg,\n  { {0x660d002d, 0x6b8b01d6, 0x22490032, 0x00000000}},  //   _etak, _kogg, etak_,\n  { {0xb4ae001c, 0xd8d60049, 0x660d002b, 0x00000000}},  //   _कधी_, _קוקט_, _ftak,\n  { {0x6b8b000c, 0x680800b9, 0x2fcf0fd1, 0x00000000}},  // [7f80] _mogg, _věde, dogg_,\n  { {0x6b8b143e, 0x6f090e98, 0x672d0036, 0x00000000}},  //   _logg, _afec, _zdaj,\n  { {0x6fd82b8b, 0x757b009b, 0xdce1007f, 0x00000000}},  //   líci, _וטיפ, _balč,\n  { {0x6b8b0039, 0x00000000, 0x00000000, 0x00000000}},  //   _nogg,   ,   ,\n  { {0x5e5a00a1, 0x6fd82b8c, 0x00000000, 0x00000000}},  //   تجاج_, níci,   ,\n  { {0x6f09106f, 0x6db20036, 0x20560ae0, 0x00000000}},  //   _efec, ałan, _отбр,\n  { {0x6b8b0030, 0x798a01c3, 0x00000000, 0x00000000}},  //   _bogg, _rofw,   ,\n  { {0x798a0093, 0xc0e30641, 0x200500f6, 0x00000000}},  //   _sofw, _роск, _élia_,\n  { {0x6b8b0472, 0x00000000, 0x00000000, 0x00000000}},  //   _dogg,   ,   ,\n  { {0xc27b00a3, 0xb33b014a, 0x6fd82b8d, 0x00000000}},  //   קריי, _ilçe, díci,\n  { {0x3137019b, 0xe8df00ad, 0x660d016e, 0x00000000}},  //   ונים_, _thời_, _stak,\n  { {0x6fd8253d, 0x6b8b0007, 0x3f8601aa, 0x00000000}},  //   fíci, _gogg, njou_,\n  { {0x4ae202d2, 0x2d8c10f8, 0xd90e025a, 0x00000000}},  //   _परिव, _kode_, _پیج_,\n  { {0xa5bb009f, 0x28cf007d, 0x2d8c0007, 0x00000000}},  //   msók, _सुवि, _jode_,\n  { {0x2d8c032c, 0x1b210044, 0xa4d40088, 0x00000000}},  //   _mode_, _যাতে_, ворі,\n  { {0x69da001f, 0x22490047, 0x672d0021, 0x00000000}},  //   llte, ttak_, _udaj,\n  { {0x45d50057, 0x660d2b8e, 0xe8df001d, 0x00000000}},  // [7f90] _поис, _utak, _khởi_,\n  { {0x22490119, 0x3ea60089, 0x200700c4, 0x00000000}},  //   rtak_, dzot_, ínio_,\n  { {0x2249022b, 0xdce100ca, 0x69da0051, 0x00000000}},  //   stak_, _palč, ilte,\n  { {0x2d9e000d, 0x69da010f, 0x22492b8f, 0x00000000}},  //   _alte_, hlte, ptak_,\n  { {0x2d8c27dc, 0x6b8b037f, 0x1d091adf, 0x00000000}},  //   _bode_, _rogg, пели_,\n  { {0x7bc20c60, 0x6db20046, 0x6b8b0198, 0x00000000}},  //   _ajou, słan, _sogg,\n  { {0x6b8b0207, 0x6fd82b90, 0x2d8c0112, 0x00000000}},  //   _pogg, zíci, _dode_,\n  { {0x69da01a2, 0x00000000, 0x00000000, 0x00000000}},  //   elte,   ,   ,\n  { {0x3e3504e8, 0x7bc22b91, 0x2d8c00c4, 0x00000000}},  //   _سفار, _djou, _fode_,\n  { {0x2d8c01e3, 0x7bc20606, 0x00000000, 0x00000000}},  //   _gode_, _ejou,   ,\n  { {0x6b8b0857, 0xf746030d, 0x00000000, 0x00000000}},  //   _togg, нено,   ,\n  { {0x6fd80ca7, 0x2d870295, 0x69da00ea, 0x00000000}},  //   tíci, ljne_, alte,\n  { {0xf6d50088, 0xddc900e5, 0x00000000, 0x00000000}},  //   віря, _greţ,   ,\n  { {0x6fd80181, 0xd945017f, 0x00000000, 0x00000000}},  //   ríci, _чеки,   ,\n  { {0x64a6008b, 0x680800b9, 0x00000000, 0x00000000}},  //   хава, _vědc,   ,\n  { {0xb4e0001c, 0x86460088, 0xdce800b9, 0x00000000}},  //   _तरी_, _зниж, _andě,\n  { {0x211a0025, 0xa1360025, 0x5a0c0049, 0x00000000}},  // [7fa0] كتاب_, فراش, ַלאַ,\n  { {0xb5fb2b92, 0x00000000, 0x00000000, 0x00000000}},  //   rvát,   ,   ,\n  { {0xe8df001d, 0xd00f03ec, 0x98a60521, 0x00000000}},  //   _khối_, ملل_, ćiće_,\n  { {0x6db20036, 0x67262b93, 0x2d8c007f, 0x00000000}},  //   ałal, nakj, _sode_,\n  { {0x2d8c0907, 0xdb000065, 0xa3bf01f5, 0x00000000}},  //   _pode_, shmë, ेवर_,\n  { {0x63a400c4, 0x63b60016, 0x7bc200d9, 0x00000000}},  //   lhin, liyn, _sjou,\n  { {0x71d7009b, 0x2d8c0465, 0x44380022, 0x00000000}},  //   _נולד_, _vode_, nrr_,\n  { {0x63a40016, 0xddc9001a, 0x2d870023, 0x00000000}},  //   nhin, _preţ, ajne_,\n  { {0x8fa3017a, 0x6726008a, 0x2d8c01a2, 0x00000000}},  //   _сате, dakj, _tode_,\n  { {0x7a53006d, 0x69c30026, 0xddc90035, 0x00000000}},  //   اضيا, _cjne, _vreţ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x3cfe0019, 0xe8df0011, 0x7c2a0635, 0x00000000}},  //   _hgtv_, _chối_, msfr,\n  { {0xd6db06c4, 0x63a40020, 0x81d70044, 0x00000000}},  //   ято_, dhin, াগত_,\n  { {0x779300a1, 0xa6db000c, 0xddc9016e, 0x00000000}},  //   ئیکا, ggða, _kreš,\n  { {0x6fd80219, 0x395e225c, 0xa967025f, 0x00000000}},  //   lícu, mets_, _чија_,\n  { {0x395e02d0, 0xa3ab03d7, 0xd8db0104, 0x00000000}},  //   lets_, कों_, _מקור,\n  { {0x27e9021e, 0x2d870036, 0x44380051, 0x00000000}},  // [7fb0] _ihan_, yjne_, arr_,\n  { {0x395e0089, 0xb6bc009b, 0x442a00fa, 0x00000000}},  //   nets_, _מצחי, bsb_,\n  { {0x6fd80211, 0x31c400ed, 0x63a40051, 0x00000000}},  //   hícu, уств, bhin,\n  { {0x2a662b94, 0x7c2a0039, 0x395e05ad, 0x00000000}},  //   _osob_, dsfr, hets_,\n  { {0x395e05ad, 0x8e080088, 0xf2e40581, 0x00000000}},  //   kets_, енів_, _бюро,\n  { {0x395e028c, 0x6fd810af, 0x200e0129, 0x00000000}},  //   jets_, dícu, ífic_,\n  { {0x395e00eb, 0x7c2a03b4, 0x27e90058, 0x00000000}},  //   dets_, gsfr, _ohan_,\n  { {0x27e90011, 0x69c700ca, 0x201115ed, 0x00000000}},  //   _nhan_, čjem, _itzi_,\n  { {0x27200055, 0x395e00f4, 0x8afd00b9, 0x00000000}},  //   _ভালো_, fets_, ndři,\n  { {0x6ca7007c, 0x395e0039, 0x63a40065, 0x00000000}},  //   _преж, gets_, zhin,\n  { {0x07a60500, 0xe73a00d7, 0xe8df001d, 0x00000000}},  //   ванн, мен_, _phối_,\n  { {0x63a40065, 0x21230066, 0x6fd8004a, 0x00000000}},  //   xhin, _lejh_, bícu,\n  { {0x395e0030, 0x27e92b95, 0xb8d80061, 0x00000000}},  //   bets_, _dhan_, _घे_,\n  { {0x6d43006a, 0xceb20104, 0x6b8911b7, 0x00000000}},  //   ngna, שיך_, ljeg,\n  { {0x63a40038, 0x6d432b96, 0xe8df0082, 0x00000000}},  //   thin, igna, _thối_,\n  { {0x44382b97, 0x6b890059, 0x27e90066, 0x00000000}},  //   rrr_, njeg, _ghan_,\n  { {0x75270087, 0xb5fb0010, 0xb1460478, 0x00000000}},  // [7fc0] bajz, rvár, кнал,\n  { {0x4096012b, 0x63a42068, 0xd5af0054, 0x00000000}},  //   крет, shin, _وفي_,\n  { {0x69c1000c, 0x657e0051, 0xd59b009b, 0x00000000}},  //   inle, _inph, _חביל,\n  { {0x660414d2, 0xd00f0076, 0x7e622b98, 0x00000000}},  //   _kuik, زله_, twop,\n  { {0x67241ea7, 0xf77301ce, 0x20110032, 0x00000000}},  //   _meij, יקא_, _etzi_,\n  { {0xddc90027, 0xdd8f0b59, 0x6d430039, 0x00000000}},  //   _preš, يون_, ggna,\n  { {0x395e0239, 0x644e032e, 0x66040277, 0x00000000}},  //   vets_, ntbi, _luik,\n  { {0x6fd80219, 0x6b892b99, 0xfbcf006d, 0x00000000}},  //   tícu, gjeg, يتي_,\n  { {0x27e9018e, 0x60270047, 0x395e004e, 0x00000000}},  //   _rhan_, _témá, tets_,\n  { {0xddc90afe, 0x27e90023, 0x49730b87, 0x00000000}},  //   _treš, _shan_, альс,\n  { {0x7c38001c, 0x67240181, 0x27e9001d, 0x00000000}},  //   qrvr, _beij, _phan_,\n  { {0x660400bb, 0x75e0014a, 0x657e0082, 0x00000000}},  //   _buik, sözl, _anph,\n  { {0x395e02e1, 0x644e0082, 0x61fc004a, 0x00000000}},  //   pets_, etbi, _oirl,\n  { {0x66040250, 0x61fc0093, 0xd83801aa, 0x00000000}},  //   _duik, _nirl, prč_,\n  { {0x27e90038, 0xb33b2b9a, 0xd404022a, 0x00000000}},  //   _than_, _alça, ияти,\n  { {0x67240fcf, 0x20032b9b, 0x00000000, 0x00000000}},  //   _geij, _ruji_,   ,\n  { {0x61fc01f6, 0x68e6005f, 0xe5c7008b, 0x00000000}},  // [7fd0] _birl, əkda, _асно,\n  { {0x200304be, 0x61fc00e5, 0x00000000, 0x00000000}},  //   _puji_, _cirl,   ,\n  { {0x61fc2b9c, 0x351a009b, 0xd4790049, 0x00000000}},  //   _dirl, _אותנ, _װאָל,\n  { {0x5ecc0055, 0x6fd40088, 0xff5301b7, 0x00000000}},  //   ়েছে, аціє, شخص_,\n  { {0xdd950147, 0x69c1000c, 0x22840878, 0x00000000}},  //   лады, ynle, _кург,\n  { {0xdce8047f, 0x61fc00ab, 0x61140194, 0x00000000}},  //   _aldı, _girl, _вдру,\n  { {0x6d43002a, 0x2011022b, 0x6f040059, 0x00000000}},  //   rgna, _utzi_, žica,\n  { {0xdfd5007c, 0x69d80cfd, 0x5f94007c, 0x00000000}},  //   _собы, _akve, _кист,\n  { {0x672420bd, 0x6b9b2b9d, 0x00000000, 0x00000000}},  //   _reij, rkug,   ,\n  { {0x6d43001c, 0x66042b9e, 0x67240052, 0x00000000}},  //   qgna, _ruik, _seij,\n  { {0x6b8926a1, 0x69c101e5, 0x66042b9f, 0x00000000}},  //   pjeg, rnle, _suik,\n  { {0x66042ba0, 0x290e0085, 0x00000000, 0x00000000}},  //   _puik, _effa_,   ,\n  { {0x657e00f6, 0x00000000, 0x00000000, 0x00000000}},  //   _pnph,   ,   ,\n  { {0x6603008b, 0x644e2ba1, 0x672400bb, 0x00000000}},  //   спра, ttbi, _weij,\n  { {0x64a3243f, 0x657e0082, 0x67240052, 0x00000000}},  //   бара, _vnph, _teij,\n  { {0x644e0002, 0x38780030, 0x61fc006b, 0x00000000}},  //   rtbi, ærre_, _sirl,\n  { {0x644e01bf, 0x3a2d0169, 0x61fc0197, 0x00000000}},  // [7fe0] stbi, nsep_, _pirl,\n  { {0x224000c7, 0xc56600ed, 0xdb0001aa, 0x00000000}},  //   ruik_, _скок, nimò,\n  { {0x7e6901aa, 0x61fc0022, 0xd5a4025a, 0x00000000}},  //   _asep, _virl, _ملکی,\n  { {0xdd2f00b9, 0x00000000, 0x00000000, 0x00000000}},  //   měři,   ,   ,\n  { {0x61fc0016, 0x947600a6, 0x7e690010, 0x00000000}},  //   _tirl, _شدگا, _csep,\n  { {0x61fc002a, 0x7d01005b, 0x00000000, 0x00000000}},  //   _uirl, _cgls,   ,\n  { {0x7e690173, 0x2d9c018b, 0xa5bb01e5, 0x00000000}},  //   _esep, rkve_, msót,\n  { {0x5a340517, 0x69d80142, 0x7c8300c0, 0x00000000}},  //   анит, _skve, суше,\n  { {0x6f930025, 0xdee3005e, 0x00000000, 0x00000000}},  //   _القض, _готи,   ,\n  { {0x99660175, 0x9f4400f6, 0x9f580095, 0x00000000}},  //   утил, _timó_, _burç_,\n  { {0x61d70049, 0x81570049, 0x680800b9, 0x00000000}},  //   רויף_, נסטע_, _vědo,\n  { {0xb8ec013d, 0xdb0000c4, 0x00000000, 0x00000000}},  //   _रख_, rimó,   ,\n  { {0x12bf0044, 0x00000000, 0x00000000, 0x00000000}},  //   _আর্দ,   ,   ,\n  { {0x290e0197, 0x00000000, 0x00000000, 0x00000000}},  //   _uffa_,   ,   ,\n  { {0x6fd40061, 0x4d7b0049, 0xd37b01ee, 0x00000000}},  //   धकां, ערלע, нча_,\n  { {0x28490049, 0xc2c50025, 0x987b0049, 0x00000000}},  //   _סעפּ, ليزي, _טרוק,\n  { {0xd13b003b, 0x00000000, 0x00000000, 0x00000000}},  // [7ff0] ехе_,   ,   ,\n  { {0xdb000051, 0xdcfa000a, 0x00000000, 0x00000000}},  //   dhmí, _antč,   ,\n  { {0xe1e50061, 0x7e6901f3, 0x00000000, 0x00000000}},  //   _कठीण_, _ssep,   ,\n  { {0x0eb900a5, 0xe8d700a0, 0x7f270688, 0x00000000}},  //   кулы_, נואר_, اءال,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xed5901bd, 0xa3bf01f5, 0xdcfa01aa, 0x00000000}},  //   ток_, ेवक_, _entč,\n  { {0x96260089, 0x00000000, 0x00000000, 0x00000000}},  //   _ziņā,   ,   ,\n  { {0x69c60010, 0x7e69109a, 0x00000000, 0x00000000}},  //   éken, _tsep,   ,\n  { {0x3860016c, 0x00000000, 0x00000000, 0x00000000}},  //   _ćira_,   ,   ,\n  { {0x49950069, 0xdb2300a1, 0x00000000, 0x00000000}},  //   ршит, جوکی,   ,\n  { {0xdd7a007b, 0x00000000, 0x00000000, 0x00000000}},  //   _שטעל,   ,   ,\n  { {0xc5e9034e, 0xdd2f00b9, 0x00000000, 0x00000000}},  //   _חד_, věři,   ,\n  { {0xf3eb0044, 0x7bc4007f, 0x00000000, 0x00000000}},  //   কদার_, čiut,   ,\n  { {0x6907007e, 0xdb020e6d, 0x7ae6014a, 0x00000000}},  //   _сядз, _aloè, ükte,\n  { {0x232a0098, 0x07a6008b, 0xe8df0082, 0x00000000}},  //   кови_, _вайн, _phổi_,\n  { {0xda080011, 0x00000000, 0x00000000, 0x00000000}},  //   _hỏa_,   ,   ,\n\n  { {0xe29701b3, 0x6db20036, 0x00000000, 0x00000000}},  // [8000] аат_, cław,   ,\n  { {0x23bf00b0, 0x00000000, 0x00000000, 0x00000000}},  //   täjä_,   ,   ,\n  { {0xe8df0011, 0x80660887, 0x73e61079, 0x00000000}},  //   _thổi_, рвеж, _вонз,\n  { {0xdfcf006d, 0x645e0197, 0xf3ff0082, 0x00000000}},  //   ويل_, _ippi, _giã_,\n  { {0x3ea00ddf, 0x6f0409fc, 0x00000000, 0x00000000}},  //   áit_, žico,   ,\n  { {0xa5bb00c4, 0x00000000, 0x00000000, 0x00000000}},  //   lsór,   ,   ,\n  { {0x3ea000b9, 0xdc87005e, 0xbc671f4f, 0x00000000}},  //   šit_, исъл_, لمون_,\n  { {0xa5bb0181, 0x201a0052, 0x7c380066, 0x00000000}},  //   nsór, mppi_, _ċarġ,\n  { {0x2fc6037e, 0xe8d90011, 0xa9c600ed, 0x00000000}},  //   mnog_, _đỡ_, исок,\n  { {0x645e021e, 0x2fc60091, 0xb997007c, 0x00000000}},  //   _oppi, lnog_, ивых_,\n  { {0xdb240014, 0x2b98009d, 0x2fc6012d, 0x00000000}},  //   _هوای, _sécu_, onog_,\n  { {0x22520a77, 0x2fc60016, 0x2cf40061, 0x00000000}},  //   ktyk_, nnog_, ेखील_,\n  { {0x645e0638, 0x6b822ba2, 0x00000000, 0x00000000}},  //   _appi, _inog,   ,\n  { {0x2b98009d, 0xd8b700a1, 0x00000000, 0x00000000}},  //   _vécu_, ادیا_,   ,\n  { {0xd498007e, 0x8937009b, 0x6db20036, 0x00000000}},  //   арт_, _כרגע_, sław,\n  { {0x248d0119, 0xf6990014, 0x291e0006, 0x00000000}},  //   ćem_, _منبع_, lbta_,\n  { {0x2fc60119, 0x6b820825, 0x6d5a00ab, 0x00000000}},  // [8010] dnog_, _mnog, _obta,\n  { {0xd5b80077, 0x00000000, 0x00000000, 0x00000000}},  //   _всю_,   ,   ,\n  { {0x6b820091, 0xa3d5109f, 0x2fc60544, 0x00000000}},  //   _onog, _гонч, fnog_,\n  { {0x02d900a2, 0x44312ba3, 0x00000000, 0x00000000}},  //   _موجب_, msz_,   ,\n  { {0x44310010, 0x00000000, 0x00000000, 0x00000000}},  //   lsz_,   ,   ,\n  { {0x69c60010, 0x6b82005b, 0x947402fd, 0x00000000}},  //   ékel, _anog, _ادیا,\n  { {0x4034005e, 0x2fc60166, 0x6d5a000a, 0x00000000}},  //   _мерс, bnog_, _dbta,\n  { {0x2fc6037e, 0xc05200a0, 0x69ca016c, 0x00000000}},  //   cnog_, _מזל_, _ajfe,\n  { {0xe9d90001, 0x29180279, 0x317101f3, 0x00000000}},  //   лки_, ıran_, _kazz_,\n  { {0x6b820197, 0xa969003b, 0xd945003b, 0x00000000}},  //   _enog, ћина_, љени,\n  { {0x6616068f, 0x8d7400f3, 0xa3d7007d, 0x00000000}},  //   _styk, _باقا, ाका_,\n  { {0x7e7b09fc, 0x44310010, 0x1b210044, 0x00000000}},  //   _krup, dsz_, _যাকে_,\n  { {0xeab31edd, 0x44310036, 0xda080011, 0x00000000}},  //   _بعض_, esz_, _tỏa_,\n  { {0xb21b0030, 0x4df90049, 0x2fc60091, 0x00000000}},  //   _kræf, רפֿא, znog_,\n  { {0x64a3007c, 0x443316d4, 0x681300e5, 0x00000000}},  //   пара, _cvx_, _băde,\n  { {0x44330026, 0x68130035, 0x00000000, 0x00000000}},  //   _dvx_, _căde,   ,\n  { {0x2fc60119, 0x68130035, 0x00000000, 0x00000000}},  // [8020] vnog_, _dăde,   ,\n  { {0xa5bb0181, 0x31710026, 0x00000000, 0x00000000}},  //   ssór, _cazz_,   ,\n  { {0x2fc60091, 0xa9ba0049, 0x645e1fbc, 0x00000000}},  //   tnog_, נזער, _uppi,\n  { {0x43860054, 0x7f46007e, 0x7e2a01ff, 0x00000000}},  //   _الحق, седж, гіка_,\n  { {0xddcb00d0, 0x2fc60091, 0x7e560088, 0x00000000}},  //   _šišk, rnog_, стец,\n  { {0x7e7b1cbf, 0x2fc62ba4, 0x3a3f0637, 0x00000000}},  //   _drup, snog_, drup_,\n  { {0x409601b7, 0x7c2401ee, 0x2fc60091, 0x00000000}},  //   _الزر, ćiro, pnog_,\n  { {0x79831d34, 0x20180026, 0x200a0035, 0x00000000}},  //   _annw, _itri_, _iubi_,\n  { {0x224000eb, 0xa92a007e, 0x3a3f00d4, 0x00000000}},  //   nrik_, ліне_, grup_,\n  { {0x388e0163, 0x200a016c, 0x44310036, 0x00000000}},  //   ləri_, _kubi_, ysz_,\n  { {0x3bd61969, 0x224008a5, 0x00000000, 0x00000000}},  //   _людс, hrik_,   ,\n  { {0x65ab2ba5, 0x25ba0093, 0x22402ba6, 0x00000000}},  //   _mühe, _ampl_, krik_,\n  { {0x4431122b, 0x65ab006c, 0x200a0036, 0x00000000}},  //   wsz_, _lühe, _lubi_,\n  { {0x44310047, 0x22402ba7, 0x6d4a04d3, 0x00000000}},  //   tsz_, drik_, ngfa,\n  { {0xe8d9001d, 0x69c82ba8, 0x200a0197, 0x00000000}},  //   _đủ_, mnde, _nubi_,\n  { {0x7ae211d1, 0x67d4005e, 0x44310c59, 0x00000000}},  //   _kyot, _нощу, rsz_,\n  { {0x44310047, 0x69c800bb, 0xc1b90f62, 0x00000000}},  // [8030] ssz_, onde, алах_,\n  { {0x69da00b5, 0x672f0046, 0x64410129, 0x00000000}},  //   note, lacj, àlis,\n  { {0x388e006b, 0x69c8010e, 0x200a237d, 0x00000000}},  //   fəri_, inde, _cubi_,\n  { {0x69da0161, 0x661d0190, 0x672f0036, 0x00000000}},  //   hote, opsk, nacj,\n  { {0x7e7b005f, 0x63ad0051, 0x69da0e33, 0x00000000}},  //   _qrup, mhan, kote,\n  { {0x63ad0181, 0x69da0066, 0xd658009b, 0x00000000}},  //   lhan, jote, ציות_,\n  { {0x64550756, 0x672f0046, 0x69da00b0, 0x00000000}},  //   ntzi, kacj, dote,\n  { {0x69c81d78, 0xeb9909e8, 0x7e7b0710, 0x00000000}},  //   ende, рии_, _trup,\n  { {0xbfa8026b, 0x69da006c, 0x7e7b2ba9, 0x00000000}},  //   _утре_, fote, _urup,\n  { {0xfeb8025a, 0x49990ae0, 0x3a3f01d6, 0x00000000}},  //   _طاقت_, ртия_, rrup_,\n  { {0x63ad011c, 0xa3e9007d, 0x661d0ace, 0x00000000}},  //   khan, यता_, epsk,\n  { {0xaa590902, 0x99860046, 0x8b670426, 0x00000000}},  //   _виду_, _ktoś_, _دائم,\n  { {0x63ad2baa, 0x69da001f, 0x6db20036, 0x00000000}},  //   dhan, bote, płat,\n  { {0x98a50216, 0x7bc90f30, 0x63ad0253, 0x00000000}},  //   _миле, lneu, ehan,\n  { {0x63ad01b5, 0x64a61606, 0x661d01d6, 0x00000000}},  //   fhan, цава, apsk,\n  { {0x63ad006a, 0x7bc900f4, 0x42260401, 0x00000000}},  //   ghan, nneu, ждав,\n  { {0xa3bb02d2, 0x200a1339, 0x25ba0009, 0x00000000}},  // [8040] _अगर_, _subi_, _tmpl_,\n  { {0x22401e57, 0xd24f00a1, 0x64470fa4, 0x00000000}},  //   rrik_, ئنل_, buji,\n  { {0x63ad2bab, 0x7bc905a6, 0x4f0a05bb, 0x00000000}},  //   bhan, kneu, анен_,\n  { {0x68e30635, 0x69da1126, 0x2d850173, 0x00000000}},  //   _mynd, zote, _anle_,\n  { {0x68e30436, 0xa3d702d2, 0x69c80190, 0x00000000}},  //   _lynd, ाकर_, ynde,\n  { {0x672f0046, 0x200a0cec, 0x69da0032, 0x00000000}},  //   zacj, _tubi_, xote,\n  { {0x69da0c6a, 0x8fa6008b, 0x6d4a04f2, 0x00000000}},  //   vote, _даве, rgfa,\n  { {0x7bc900f4, 0x69c80016, 0x5b26007e, 0x00000000}},  //   gneu, wnde, цька,\n  { {0x69da2001, 0x63a42bac, 0xb21b1f7d, 0x00000000}},  //   tote, ikin, _græd,\n  { {0x69c8010f, 0x7ae209c7, 0x672f0036, 0x00000000}},  //   unde, _vyot, wacj,\n  { {0x2004005f, 0x69da0ed6, 0x672f0046, 0x00000000}},  //   _kimi_, rote, tacj,\n  { {0x29070039, 0x2004013e, 0x69da0059, 0x00000000}},  //   _egna_, _jimi_, sote,\n  { {0x2004000b, 0x672f0046, 0x69da2bad, 0x00000000}},  //   _mimi_, racj, pote,\n  { {0x7bc0006a, 0x63a411de, 0x27e02bae, 0x00000000}},  //   limu, ekin, _ekin_,\n  { {0x63ad002a, 0x63a40107, 0x6575012d, 0x00000000}},  //   than, fkin, rdzh,\n  { {0x20040004, 0x6455022b, 0x5215007c, 0x00000000}},  //   _nimi_, rtzi, здат,\n  { {0x645500bb, 0x6aa000ea, 0x3e5e0089, 0x00000000}},  // [8050] stzi, nymf, nātā_,\n  { {0x63ad000b, 0xddc20046, 0x7bc00058, 0x00000000}},  //   shan, rtoś, himu,\n  { {0x63a421b3, 0x7bc00006, 0xddc20036, 0x00000000}},  //   bkin, kimu, stoś,\n  { {0x63a40866, 0x7bc00006, 0x86080014, 0x00000000}},  //   ckin, jimu, _دقیق_,\n  { {0xa77c0049, 0x7bc00006, 0xab5d0036, 0x00000000}},  //   יראפ, dimu, niże,\n  { {0x98a5000d, 0x7bc90016, 0x6aa00016, 0x00000000}},  //   nală_, wneu, dymf,\n  { {0x2249022b, 0xdd8e0025, 0x6605006c, 0x00000000}},  //   luak_, اوى_, _mihk,\n  { {0x7bc0001a, 0xb21b0030, 0xe1ff0036, 0x00000000}},  //   gimu, _træd, _psów_,\n  { {0x7bc902a4, 0x68e6006b, 0x2249002d, 0x00000000}},  //   rneu, əkdi, nuak_,\n  { {0x63a4022b, 0x27e000ab, 0xdce3179e, 0x00000000}},  //   zkin, _skin_, lenč,\n  { {0x63a4000c, 0xb33b0180, 0x7bc0010e, 0x00000000}},  //   ykin, _elçi, bimu,\n  { {0xf7720137, 0x2249002d, 0x6e2909ba, 0x00000000}},  //   راج_, kuak_, _kweb,\n  { {0xddc90340, 0x68e32baf, 0x63a41bf5, 0x00000000}},  //   _mrež, _wynd, vkin,\n  { {0x68e30030, 0x2249002d, 0xdb000181, 0x00000000}},  //   _tynd, duak_, rimô,\n  { {0x63a4011f, 0x69c11eb5, 0x947902be, 0x00000000}},  //   tkin, mile, осту_,\n  { {0x69c103fb, 0xdce301d9, 0x130a007e, 0x00000000}},  //   lile, jenč, снай_,\n  { {0x63a422c7, 0xc64a0054, 0x69c10051, 0x00000000}},  // [8060] rkin, _اجعل_, oile,\n  { {0x63a42bb0, 0x69c1011f, 0x867b00a3, 0x00000000}},  //   skin, nile, _פריו,\n  { {0x63a401ee, 0xddc90627, 0x036a005e, 0x00000000}},  //   pkin, _brež, _линк_,\n  { {0xb21b0030, 0x69c12bb1, 0x644110c1, 0x00000000}},  //   _dræb, hile, šlic,\n  { {0x69c1011f, 0x7bc00006, 0xff030451, 0x00000000}},  //   kile, vimu, няшн,\n  { {0x69c1014a, 0x3e5e0089, 0x63ae01c5, 0x00000000}},  //   jile, vātā_, šinē,\n  { {0x7bc00cc9, 0x69c103fb, 0x6e2901c3, 0x00000000}},  //   timu, dile, _eweb,\n  { {0x65ab005f, 0xdb0000b0, 0x2a6d062a, 0x00000000}},  //   _müha, yhmä, fweb_,\n  { {0xadc3001d, 0xe944007a, 0x7bc0143d, 0x00000000}},  //   _quản, وردی, rimu,\n  { {0x7bc02bb2, 0x69c11113, 0x00000000, 0x00000000}},  //   simu, gile,   ,\n  { {0x7bc02bb3, 0x2249002d, 0x672d2bb4, 0x00000000}},  //   pimu, zuak_, _peaj,\n  { {0xeb9707ca, 0x65b000b0, 0x37ab00ed, 0x00000000}},  //   _них_, _lähd, стон_,\n  { {0x69c10612, 0xcb070025, 0x98a5001a, 0x00000000}},  //   bile, _عيون_, tală_,\n  { {0x69c12bb5, 0xe944007a, 0xf9c401ef, 0x00000000}},  //   cile, _آرشی, _تحصی,\n  { {0x98a5001a, 0xe7e801f5, 0x6605003c, 0x00000000}},  //   rală_, _टीका_, _vihk,\n  { {0x443f0ade, 0x2249022b, 0x660d0022, 0x00000000}},  //   ču_, tuak_, _tuak,\n  { {0x2509025a, 0x98a5001a, 0xc73c009b, 0x00000000}},  // [8070] _وردی_, pală_, _התחת,\n  { {0x2249002d, 0x67d20089, 0x00000000, 0x00000000}},  //   ruak_, māja,   ,\n  { {0xddc9167a, 0x2249002d, 0xe7cf0044, 0x00000000}},  //   _prež, suak_, রতীয,\n  { {0x69c1014a, 0x65770065, 0x22490032, 0x00000000}},  //   zile, _haxh, puak_,\n  { {0xee3803e8, 0xdce30387, 0x69c10095, 0x00000000}},  //   зні_, renč, yile,\n  { {0xdce31a7d, 0x05010044, 0xfce5005c, 0x00000000}},  //   senč, ্রীর_, моло,\n  { {0x69c10211, 0x2a6d01f3, 0x65770023, 0x00000000}},  //   vile, wweb_, _maxh,\n  { {0x09b7001c, 0x6e290869, 0x2a6d05d2, 0x00000000}},  //   ेच्य, _tweb, tweb_,\n  { {0x69c11147, 0x00000000, 0x00000000, 0x00000000}},  //   tile,   ,   ,\n  { {0x2a6d00d4, 0x67d20089, 0x00000000, 0x00000000}},  //   rweb_, dāja,   ,\n  { {0x69c1011f, 0xe3c201f6, 0xf74602b8, 0x00000000}},  //   rile, lmış_, мено,\n  { {0x69c102d5, 0x08d4007e, 0xfe70009e, 0x00000000}},  //   sile, эцыя, _جدہ_,\n  { {0x65b00368, 0xe3c201f6, 0x2a6d0061, 0x00000000}},  //   _lähe, nmış_, qweb_,\n  { {0x65ab006c, 0x9c7c00ca, 0x6b840045, 0x00000000}},  //   _püha, _izčr, _òigr,\n  { {0x65b023cb, 0xa50702b8, 0x00000000, 0x00000000}},  //   _nähe, дера_,   ,\n  { {0xe3c2014a, 0x25b40006, 0x64411748, 0x00000000}},  //   kmış_, _šalį_, ália,\n  { {0xd5b201d8, 0xa2060228, 0x00000000, 0x00000000}},  // [8080] _لفظ_, дпад,   ,\n  { {0xb1430b7a, 0x65ab01a2, 0xa0a602ea, 0x00000000}},  //   кнул, _hühn, мазд,\n  { {0xb21b0030, 0x00000000, 0x00000000, 0x00000000}},  //   _præc,   ,   ,\n  { {0x201c0089, 0x443a01d6, 0xdfd20380, 0x00000000}},  //   īvi_, _ivp_, خيص_,\n  { {0x65b000b0, 0xfe6f0380, 0x00000000, 0x00000000}},  //   _tähd, لدو_,   ,\n  { {0x7e6d00c4, 0x21ef010e, 0x00000000, 0x00000000}},  //   çapa, püha_,   ,\n  { {0x9103007c, 0x443800d9, 0x443a01ed, 0x00000000}},  //   _апре, nsr_, _jvp_,\n  { {0xda08001d, 0x3a74047d, 0xe8df0082, 0x00000000}},  //   _hỏi_, елир, _chọi_,\n  { {0x290a0bf8, 0x443a00d9, 0x2614010e, 0x00000000}},  //   žbam_, _lvp_, _näo_,\n  { {0x6e221051, 0x67d20089, 0x4d63005e, 0x00000000}},  //   mpob, vāja, _икув,\n  { {0xda080011, 0x65ab010f, 0x317801d6, 0x00000000}},  //   _mỏi_, _bühn, _marz_,\n  { {0x67d2001e, 0xda080082, 0x00000000, 0x00000000}},  //   tāja, _lỏi_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x58d4004c, 0xdb0b0f57, 0x443a007f, 0x00000000}},  //   _полт, _algè, _bvp_,\n  { {0x443a014a, 0x7c380116, 0x798a000a, 0x00000000}},  //   _cvp_, nsvr, _infw,\n  { {0x67d20089, 0x443a0253, 0x00000000, 0x00000000}},  //   pāja, _dvp_,   ,\n  { {0x05010055, 0xddc9002b, 0x9f9c000c, 0x00000000}},  // [8090] ্রের_, _preż, víð_,\n  { {0xd1310426, 0x51f80147, 0x74f90140, 0x00000000}},  //   اما_, дную_, _непр_,\n  { {0x75352bb6, 0x6aca0164, 0x9f9c000c, 0x00000000}},  //   mazz, ापुर, tíð_,\n  { {0x75351a64, 0x65b00cfc, 0xa29501ff, 0x00000000}},  //   lazz, _vähe, _замі,\n  { {0x59de03d7, 0x9f5800f6, 0x9f9c000c, 0x00000000}},  //   नकार, _auró_, ríð_,\n  { {0x65b00004, 0x753501d5, 0xe3c2005d, 0x00000000}},  //   _tähe, nazz, rmış_,\n  { {0xe0e4007e, 0xfce200ed, 0x3ea902db, 0x00000000}},  //   _аўто, лошо, šat_,\n  { {0x9f58008e, 0xe3c201df, 0xd8380173, 0x00000000}},  //   _duró_, pmış_, ryčl_,\n  { {0x753501d5, 0x67f600b9, 0xd8380173, 0x00000000}},  //   kazz, náje, syčl_,\n  { {0xf9910054, 0x75350066, 0xf1b20049, 0x00000000}},  //   ابة_, jazz, ָסט_,\n  { {0xa3c10201, 0x7535002b, 0x3d940216, 0x00000000}},  //   ्चा_, dazz, _шифр,\n  { {0x443a00d2, 0x798a000a, 0x2011164f, 0x00000000}},  //   _rvp_, _enfw, _muzi_,\n  { {0xa68309c0, 0x6b8b1535, 0x23ae000c, 0x00000000}},  //   гляд, _ingg, _nýja_,\n  { {0xceb2019b, 0x75350409, 0x443a0095, 0x00000000}},  //   נים_, gazz, _pvp_,\n  { {0xdb0b00f4, 0x9958013e, 0x00000000, 0x00000000}},  //   _algé, jáři_,   ,\n  { {0x44382bb7, 0x67d20089, 0x386700d9, 0x00000000}},  //   rsr_, mājo, _ipnr_,\n  { {0xe8df0011, 0x65ab010f, 0x201104f8, 0x00000000}},  // [80a0] _khỏi_, _kühl, _auzi_,\n  { {0x75350197, 0x443a00d2, 0xd83801aa, 0x00000000}},  //   cazz, _tvp_, zyčm_,\n  { {0x65ab010f, 0x04ca0379, 0x67d20089, 0x00000000}},  //   _mühl, _روحي_, nājo,\n  { {0x20110107, 0x645c0146, 0x644e0089, 0x00000000}},  //   _duzi_, mtri, mubi,\n  { {0x644e011c, 0xdfcf0025, 0x31780095, 0x00000000}},  //   lubi, حين_, _tarz_,\n  { {0x6b8b2bb8, 0xdd900025, 0xda080082, 0x00000000}},  //   _angg, شوب_, _tỏi_,\n  { {0x645c049a, 0xa0670121, 0x9f580026, 0x00000000}},  //   ntri, _пара_, _durò_,\n  { {0x67d20089, 0x75350066, 0x61fe0146, 0x00000000}},  //   dājo, zazz, lmpl,\n  { {0x645c0b96, 0x644e0020, 0xdd8f0123, 0x00000000}},  //   htri, hubi, _گول_,\n  { {0x644e022b, 0x6b8b0169, 0x9f5800d4, 0x00000000}},  //   kubi, _engg, _turó_,\n  { {0xd8f801fb, 0x7535002b, 0x2d8c2bb9, 0x00000000}},  //   ьної_, vazz, _inde_,\n  { {0xe7cf0055, 0x645c0058, 0x2fc60016, 0x00000000}},  //   রত্য, dtri, niog_,\n  { {0x2d9e0607, 0xe9a6008b, 0x753501d5, 0x00000000}},  //   _kote_, _падп, tazz,\n  { {0xb21b0737, 0x2d9e0065, 0x645c010f, 0x00000000}},  //   _bræn, _jote_, ftri,\n  { {0x753501d5, 0xa4d40088, 0xdb090051, 0x00000000}},  //   razz, горі, mheá,\n  { {0x2d9e00d6, 0x61fe2bba, 0x75350026, 0x00000000}},  //   _lote_, empl, sazz,\n  { {0x2d8c2bbb, 0x75350a19, 0x7179012b, 0x00000000}},  // [80b0] _onde_, pazz, мбар_,\n  { {0x2d9e062a, 0xb21b000c, 0x645c06b9, 0x00000000}},  //   _note_, _fræn, btri,\n  { {0xb21b0dba, 0x03f900ed, 0x644e008e, 0x00000000}},  //   _græn, _оној_, cubi,\n  { {0x2d8c277c, 0x61fe03c5, 0x44210048, 0x00000000}},  //   _ande_, ampl, _ith_,\n  { {0x2d9e151e, 0x44210190, 0x290a00ca, 0x00000000}},  //   _bote_, _hth_, žbah_,\n  { {0x7bc20c03, 0x2d9e00f4, 0xbea2007e, 0x00000000}},  //   _amou, _cote_, рашк,\n  { {0xabd503f3, 0xeb9910e2, 0x2d9e0023, 0x00000000}},  //   кциј, дий_, _dote_,\n  { {0x2d8c1c94, 0x77a60b33, 0x442102c1, 0x00000000}},  //   _ende_, _tóxi, _mth_,\n  { {0x7e2b0245, 0x98ac0089, 0x644e0dab, 0x00000000}},  //   _хіба_, vadā_, zubi,\n  { {0x59821734, 0x44210048, 0x8d740014, 0x00000000}},  //   альб, _oth_, _ماما,\n  { {0x645c002b, 0xb6040224, 0x65b0010e, 0x00000000}},  //   xtri, ntář, _näha,\n  { {0x2d9e000b, 0x6b8b1535, 0x224911ce, 0x00000000}},  //   _zote_, _ungg, krak_,\n  { {0x2d9e000b, 0x4421056f, 0x61fe0203, 0x00000000}},  //   _yote_, _ath_, ympl,\n  { {0x645c2bbc, 0x644e0020, 0xdce800b9, 0x00000000}},  //   ttri, tubi, _nadě,\n  { {0x2249002d, 0x657c010f, 0x442101a3, 0x00000000}},  //   erak_, rdrh, _cth_,\n  { {0x645c010f, 0x2c7c00b9, 0x44210f02, 0x00000000}},  //   rtri, ládá_, _dth_,\n  { {0x442100d4, 0x6d410119, 0x644e0020, 0x00000000}},  // [80c0] _eth_, _odla, subi,\n  { {0xb21b0018, 0x645c0253, 0x3f8d00d4, 0x00000000}},  //   _træn, ptri, _aneu_,\n  { {0x2d9e2bbd, 0x7e6926f1, 0x320a0190, 0x00000000}},  //   _rote_, _apep, _viby_,\n  { {0x2d9e0509, 0x6d412bbe, 0xdce80027, 0x00000000}},  //   _sote_, _adla, _podľ,\n  { {0x2d9e0263, 0x69c300f8, 0x2fc6005b, 0x00000000}},  //   _pote_, _omne, riog_,\n  { {0x2fc6010a, 0x4421023a, 0x7bc201d6, 0x00000000}},  //   siog_, _yth_, _smou,\n  { {0x6da300e1, 0x6aca0164, 0x2d9e2bbf, 0x00000000}},  //   рија, ाप्र, _vote_,\n  { {0x2d9e000b, 0x65ab0d23, 0x628600b9, 0x00000000}},  //   _wote_, _rühm, _krko,\n  { {0xcb67098c, 0x2d9e01a2, 0x00000000, 0x00000000}},  //   тање_, _tote_,   ,\n  { {0x2d8c000d, 0x62860107, 0x7aeb0030, 0x00000000}},  //   _unde_, _mrko, _dygt,\n  { {0x3137009b, 0x1cba00f3, 0x00000000, 0x00000000}},  //   כנים_, _غائب_,   ,\n  { {0x69c302cc, 0x44210093, 0x765d2bc0, 0x00000000}},  //   _emne, _rth_, ttsy,\n  { {0xa2c20183, 0xdddb0387, 0x00000000, 0x00000000}},  //   _रेल्, _hruš,   ,\n  { {0x765d05d5, 0xdddb05c5, 0xdbd1000c, 0x00000000}},  //   rtsy, _kruš, lýðs,\n  { {0xd5b8222e, 0x69c8006c, 0xb4ad006e, 0x00000000}},  //   тся_, mide, कने_,\n  { {0x9cd7009b, 0x628604eb, 0x63b6005b, 0x00000000}},  //   דולה_, _brko, ghyn,\n  { {0x27e9020c, 0x69c800b0, 0x61f9007e, 0x00000000}},  // [80d0] _ikan_, oide, енаў_,\n  { {0x2249022b, 0x69c808a7, 0x645a0129, 0x00000000}},  //   rrak_, nide, àtic,\n  { {0x3f8d0161, 0x62860b79, 0x00000000, 0x00000000}},  //   _pneu_, _erko,   ,\n  { {0x69c8001a, 0x2249014a, 0x63b62bc1, 0x00000000}},  //   hide, prak_, chyn,\n  { {0x69c82bc2, 0x25090167, 0x3f8100b9, 0x00000000}},  //   kide, _ترکی_, ěhu_,\n  { {0x7aeb0030, 0x61e7012d, 0xdddb0142, 0x00000000}},  //   _rygt, _ukjl, _bruš,\n  { {0x69c8143d, 0x25a100b9, 0x61e50161, 0x00000000}},  //   dide, _mohl_, mohl,\n  { {0xdb090181, 0xdddb0f3a, 0xb5fb0181, 0x00000000}},  //   nheç, _druš, ntáb,\n  { {0x7e690020, 0x63ad09a3, 0x1a650167, 0x00000000}},  //   _upep, ikan, ایتی_,\n  { {0x27e90149, 0x69c80129, 0x6d410030, 0x00000000}},  //   _akan_, gide, _udla,\n  { {0xbb550014, 0xcb55002c, 0x07a60500, 0x00000000}},  //   _مناب, _مناظ, ганн,\n  { {0x63ad00bb, 0x00000000, 0x00000000, 0x00000000}},  //   jkan,   ,   ,\n  { {0x69c8022b, 0x200d0207, 0xdddb01ca, 0x00000000}},  //   bide, _miei_, _zruš,\n  { {0x7bc91250, 0x23a7006c, 0x63ad14a6, 0x00000000}},  //   lieu, _mõju_, ekan,\n  { {0x7416031d, 0x98ac001a, 0x63b60016, 0x00000000}},  //   اورا, radă_, thyn,\n  { {0x7bc902ae, 0xa69602a8, 0x63ad011c, 0x00000000}},  //   nieu, _број, gkan,\n  { {0xe1fa012b, 0x6abb010f, 0x63b62325, 0x00000000}},  // [80e0] ега_, nzuf, rhyn,\n  { {0x7c3e050f, 0x201c00c4, 0x65b001a2, 0x00000000}},  //   špri, ívio_, _zähn,\n  { {0x11d70054, 0x7bc90405, 0x705603d9, 0x00000000}},  //   دولة_, kieu, انصا,\n  { {0x63ad0039, 0x69c80baf, 0xee3a00ed, 0x00000000}},  //   ckan, zide, енд_,\n  { {0xdddb0d1b, 0x6da6003b, 0x6b9b0026, 0x00000000}},  //   _sruš, лида, djug,\n  { {0x1dc40061, 0x657e00e7, 0xdddb0087, 0x00000000}},  //   _वगळत, _japh, _pruš,\n  { {0x7bc9009d, 0x00000000, 0x00000000, 0x00000000}},  //   fieu,   ,   ,\n  { {0x7bc92bc3, 0x657e060d, 0xafe616c4, 0x00000000}},  //   gieu, _laph, _собл,\n  { {0xb5fb2bc4, 0x69c803fc, 0x62840912, 0x00000000}},  //   ntác, tide, nvio,\n  { {0x657e031e, 0xb33b00c4, 0x27e92bc5, 0x00000000}},  //   _naph, _moça, _skan_,\n  { {0x69c80129, 0x0c2600d7, 0x6b9b002b, 0x00000000}},  //   ride, _смен, bjug,\n  { {0x7bc900f4, 0x7a86025a, 0x63ad002d, 0x00000000}},  //   cieu, _مشتم, xkan,\n  { {0x69c81fcd, 0xb8eb02f4, 0x199400a5, 0x00000000}},  //   pide, _रे_, _валя,\n  { {0x2d9c0065, 0x3eb9014a, 0x00000000, 0x00000000}},  //   njve_, _üste_,   ,\n  { {0x63ad0036, 0x29370097, 0xb21b000c, 0x00000000}},  //   tkan, _גאון_, _græj,\n  { {0x25a1001f, 0x65ab2bc6, 0x63ad24b0, 0x00000000}},  //   _wohl_, _mühi, ukan,\n  { {0x6d5a2bc7, 0x65ab006c, 0x61e507ac, 0x00000000}},  // [80f0] _octa, _lühi, tohl,\n  { {0x63ad0235, 0x291e2bc8, 0xb5fb0010, 0x00000000}},  //   skan, ncta_, stáb,\n  { {0x63ad0743, 0x3f150e75, 0x62840052, 0x00000000}},  //   pkan, адес, avio,\n  { {0x62840061, 0x61fc010f, 0xa857009b, 0x00000000}},  //   bvio, _ehrl, ריאה_,\n  { {0xb5fb2bc9, 0x7bc9009d, 0x00000000, 0x00000000}},  //   ctác, vieu,   ,\n  { {0xdcfa01f6, 0xdca50242, 0x777f01f3, 0x00000000}},  //   _altı, иали, _laqx,\n  { {0x9f6b008b, 0x7bc9009d, 0x00000000, 0x00000000}},  //   _праз_, tieu,   ,\n  { {0x0ec00061, 0x747c009b, 0x00000000, 0x00000000}},  //   _शेकड, תנהג,   ,\n  { {0x7bc92bca, 0x6280027b, 0x6b9b017b, 0x00000000}},  //   rieu, _ámot, rjug,\n  { {0x7bc9028c, 0xa2d80061, 0x89a9051f, 0x00000000}},  //   sieu, _यशस्, тков_,\n  { {0xe8f605c7, 0x6abb010f, 0x8afd00b9, 0x00000000}},  //   иль_, szuf, teřs,\n  { {0xd7060216, 0xe73a007c, 0x62830089, 0x00000000}},  //   изни, ъем_, ānoj,\n  { {0x2bb80054, 0xaf760049, 0x67d20089, 0x00000000}},  //   _حالة_, בערס_, nāji,\n  { {0x291e001c, 0xc987003b, 0xb33b00c4, 0x00000000}},  //   ccta_, _људи, _roça,\n  { {0x8883026c, 0xab5d01d5, 0xb21b0698, 0x00000000}},  //   _ایجن, viżj, _fræk,\n  { {0x0326017a, 0x65b0010f, 0x7e7b050f, 0x00000000}},  //   рдан, _zähl, _osup,\n  { {0x3116007e, 0x130a007e, 0xd2a701ab, 0x00000000}},  // [8100] афес, тнай_, акте_,\n  { {0x62842bcb, 0xc04603ab, 0x67d20089, 0x00000000}},  //   rvio, لخصو, dāji,\n  { {0x7e7b000d, 0xb5fb0142, 0x67f60027, 0x00000000}},  //   _asup, stác, nájo,\n  { {0x753c0036, 0x60230088, 0x00000000, 0x00000000}},  //   larz, ідча,   ,\n  { {0xfe7202fd, 0xdce10006, 0x7e7b0010, 0x00000000}},  //   تدا_, _kalė, _csup,\n  { {0x644e01c3, 0x753c18f8, 0x24780173, 0x00000000}},  //   orbi, narz, _kōm_,\n  { {0x10a60088, 0x22400058, 0x4f9617a4, 0x00000000}},  //   _тивн, lsik_, _крау,\n  { {0xafe301fb, 0x207b01ce, 0x7e7b0009, 0x00000000}},  //   _досл, _באלא, _fsup,\n  { {0x753c0036, 0x2240008a, 0x00000000, 0x00000000}},  //   karz, nsik_,   ,\n  { {0x20180ebc, 0x1daa02f4, 0x65ab006c, 0x00000000}},  //   _kuri_, _कवित, _tühi,\n  { {0x2018002b, 0x753c0046, 0x7e620052, 0x00000000}},  //   _juri_, darz, ltop,\n  { {0x2018001c, 0x65b0010f, 0x2240011c, 0x00000000}},  //   _muri_, _wähl, ksik_,\n  { {0x95cb053c, 0x7e6200b0, 0x201800e0, 0x00000000}},  //   вува_, ntop, _luri_,\n  { {0x6703001c, 0x6d5806e8, 0x3a260009, 0x00000000}},  //   रेषक_, ngva, _itop_,\n  { {0xb21b0030, 0x20182408, 0x44252bcc, 0x00000000}},  //   _træk, _nuri_, ël_,\n  { {0x7e621f9d, 0xf77f0181, 0x3e6001aa, 0x00000000}},  //   ktop, moço_, kòt_,\n  { {0x20180022, 0x22402bcd, 0x673d2bce, 0x00000000}},  // [8110] _auri_, gsik_, masj,\n  { {0x20180061, 0xdce1010a, 0x673d0056, 0x00000000}},  //   _buri_, _galė, lasj,\n  { {0x2018266b, 0xd6d90044, 0x7e620943, 0x00000000}},  //   _curi_, _সরিয, etop,\n  { {0x9f0506ea, 0x67d2001e, 0x64550020, 0x00000000}},  //   موضو, tāji, muzi,\n  { {0x64550198, 0x7e622635, 0x20180032, 0x00000000}},  //   luzi, gtop, _euri_,\n  { {0x5187003b, 0x2b460026, 0x201800e5, 0x00000000}},  //   _тума, _adoc_, _furi_,\n  { {0x20180ab3, 0x64550197, 0x673d0292, 0x00000000}},  //   _guri_, nuzi, kasj,\n  { {0x7e620f5d, 0x3a3f0146, 0xdd3a001a, 0x00000000}},  //   btop, tsup_, păşi,\n  { {0x2018002d, 0x673d2bcf, 0xa3af0061, 0x00000000}},  //   _zuri_, dasj, _कवन_,\n  { {0x20181544, 0x64551126, 0x00000000, 0x00000000}},  //   _yuri_, kuzi,   ,\n  { {0xe73a05b5, 0x3a3f2bd0, 0x4998007e, 0x00000000}},  //   лен_, ssup_, ртыя_,\n  { {0x64550a15, 0x753c0036, 0xf3ff0011, 0x00000000}},  //   duzi, warz, _nhã_,\n  { {0xa9690113, 0x753c2bd1, 0x31af014a, 0x00000000}},  //   _била_, tarz, _kızı_,\n  { {0x64a601ff, 0xf77f00c4, 0x65750010, 0x00000000}},  //   бага, boço_, gezh,\n  { {0xa34a005e, 0x6813001a, 0x7e622bd2, 0x00000000}},  //   лзва_, _pădu, ztop,\n  { {0x22402bd3, 0x32190837, 0x753c18f8, 0x00000000}},  //   tsik_, _busy_, sarz,\n  { {0x175700b6, 0x20180513, 0xe29700ed, 0x00000000}},  // [8120] _הספר_, _suri_, бат_,\n  { {0x64550207, 0x20180058, 0x0446004c, 0x00000000}},  //   buzi, _puri_, _леон,\n  { {0x7e622bd4, 0x64550207, 0x2240194f, 0x00000000}},  //   wtop, cuzi, ssik_,\n  { {0x44440142, 0x7e622a8f, 0xb5fb2bd5, 0x00000000}},  //   _iv_, ttop, ntán,\n  { {0x4444006c, 0x0dca00ed, 0x9f5f0082, 0x00000000}},  //   _hv_, луки_, _khuê_,\n  { {0x44442bd6, 0x20182bd7, 0x3f801472, 0x00000000}},  //   _kv_, _turi_, žiu_,\n  { {0x7e6201d9, 0x3a2600ab, 0xad650014, 0x00000000}},  //   stop, _stop_, تانه,\n  { {0x44440030, 0x3e6001aa, 0x1ae10044, 0x00000000}},  //   _mv_, pòt_, খেছে_,\n  { {0x44440580, 0x67d2001e, 0xa5bb002a, 0x00000000}},  //   _lv_, nāju, spói,\n  { {0x44440142, 0x6d580009, 0x9d43022a, 0x00000000}},  //   _ov_, qgva, _неуд,\n  { {0x44440011, 0xd90d0014, 0x673d0292, 0x00000000}},  //   _nv_, نیه_, tasj,\n  { {0x20060082, 0x200500f6, 0xf77f00fa, 0x00000000}},  //   nmoi_, _èlit_, roço_,\n  { {0x4444067e, 0x673d0292, 0x20060082, 0x00000000}},  //   _av_, rasj, imoi_,\n  { {0x444401b5, 0x645528ea, 0xb21b0018, 0x00000000}},  //   _bv_, tuzi, _kræv,\n  { {0x63a60039, 0x32190555, 0x7afc006b, 0x00000000}},  //   _bokn, _susy_, ərta,\n  { {0x444404bd, 0x64550207, 0xb5fb004a, 0x00000000}},  //   _dv_, ruzi, ctán,\n  { {0x4444011f, 0x6d482bd8, 0x67d20089, 0x00000000}},  // [8130] _ev_, _odda, gāju,\n  { {0x44440061, 0x6b820048, 0x00000000, 0x00000000}},  //   _fv_, _laog,   ,\n  { {0x44440082, 0x63a62bd9, 0x61ee0146, 0x00000000}},  //   _gv_, _fokn, _dkbl,\n  { {0x6d48018e, 0x776d01f3, 0x6b821f3f, 0x00000000}},  //   _adda, _jbax, _naog,\n  { {0xa77c0049, 0x44440dc1, 0x6da5003b, 0x00000000}},  //   טראפ, _zv_, жила,\n  { {0x2bb1006e, 0x98a700b9, 0x31af006b, 0x00000000}},  //   जस्थ, _ceně_, _qızı_,\n  { {0x65b0021e, 0x4c92003b, 0x00000000, 0x00000000}},  //   _sähk, дијс,   ,\n  { {0x2c610036, 0xaba9005e, 0x6d480145, 0x00000000}},  //   ród_, рвиз_, _edda,\n  { {0x60250006, 0xb21b0190, 0x00000000, 0x00000000}},  //   _dėme, _usæd,   ,\n  { {0x6e2926e4, 0x65ab01a2, 0x00000000, 0x00000000}},  //   _iteb, _mühs,   ,\n  { {0x186900ed, 0xf7720d3a, 0xb21b0146, 0x00000000}},  //   шани_, واح_, _græv,\n  { {0x98ac013e, 0x00000000, 0x00000000, 0x00000000}},  //   ladě_,   ,   ,\n  { {0xd9450175, 0x63a60066, 0xe9ce2bda, 0x00000000}},  //   _дели, _rokn, _жк_,\n  { {0x67d2001e, 0xb5fb1580, 0x63a6121b, 0x00000000}},  //   vāju, stán, _sokn,\n  { {0x833a2bdb, 0xa50a0f13, 0x444402d4, 0x00000000}},  //   ичат_, рева_, _qv_,\n  { {0x67d2001e, 0x04570025, 0x7983005b, 0x00000000}},  //   tāju, تلفة_, _hanw,\n  { {0x9f5f001d, 0x65b00368, 0x79830b9a, 0x00000000}},  // [8140] _thuê_, _lähi, _kanw,\n  { {0xb5fb08aa, 0x3ce0014a, 0x7f49169a, 0x00000000}},  //   ntál, şivi_, _adeq,\n  { {0xef1a0113, 0x7983006a, 0xdce1001e, 0x00000000}},  //   аме_, _manw, _dalī,\n  { {0xf1bf0047, 0xb5fb0051, 0x26c22bdc, 0x00000000}},  //   _után_, htál, ozko_,\n  { {0x5de60242, 0x20060023, 0x26c20032, 0x00000000}},  //   ожда, rmoi_, nzko_,\n  { {0x7bcb0016, 0x26c2002d, 0xdce10089, 0x00000000}},  //   _amgu, izko_, _galī,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xdee602a8, 0x0b8a09ae, 0x79830250, 0x00000000}},  //   _доби, рски_, _aanw,\n  { {0xed5a02ea, 0x79832bdd, 0x225200b4, 0x00000000}},  //   _воз_, _banw, nryk_,\n  { {0x6d480018, 0x65b0010f, 0x3f840020, 0x00000000}},  //   _udda, _fähi, _hamu_,\n  { {0x3f841c52, 0xd7fb17a4, 0xe894007e, 0x00000000}},  //   _kamu_, иум_, чань,\n  { {0x3f860181, 0x3f842bde, 0xa7fd0180, 0x00000000}},  //   ndou_, _jamu_, atın,\n  { {0x8ad600a1, 0x79830016, 0x3f840466, 0x00000000}},  //   _بتائ, _fanw, _mamu_,\n  { {0x69ca2967, 0xd5b8004d, 0x98a50089, 0x00000000}},  //   _umfe, осс_, galē_,\n  { {0x26c20032, 0xd83a007e, 0x776d0066, 0x00000000}},  //   azko_, _тэл_, _tbax,\n  { {0xdce10089, 0x3f840dec, 0x3f8600b9, 0x00000000}},  //   _salī, _namu_, jdou_,\n  { {0xdce1001e, 0x23ae000c, 0x69da044e, 0x00000000}},  // [8150] _palī, _nýju_, onte,\n  { {0x64412bdf, 0x69da2be0, 0xd25000a1, 0x00000000}},  //   ális, nnte, کنے_,\n  { {0x69da001a, 0x65ab001f, 0x6e290006, 0x00000000}},  //   inte, _führ, _steb,\n  { {0xd47a007b, 0xb68800a1, 0xb5fb0010, 0x00000000}},  //   _פארל, _اپیل_, ztál,\n  { {0x3f840020, 0xa7fd006b, 0x539a009b, 0x00000000}},  //   _damu_, ytın, _הירו,\n  { {0xa7fd006b, 0xa5bb00c4, 0xf2d20049, 0x00000000}},  //   xtın, mpós, _װעל_,\n  { {0x21ef010f, 0x9f3503e8, 0x61e21339, 0x00000000}},  //   bühr_, _неві, éole,\n  { {0x69da0219, 0x65b00103, 0xeb9909e8, 0x00000000}},  //   ente, _vähi, сии_,\n  { {0x79830093, 0x6e2900f8, 0xa7fd0095, 0x00000000}},  //   _panw, _uteb, ttın,\n  { {0x65b0006c, 0x7db70025, 0x4999004d, 0x00000000}},  //   _tähi, _بصرا, стия_,\n  { {0x7ae20161, 0x79830250, 0xb5fb0f14, 0x00000000}},  //   _exot, _vanw, rtál,\n  { {0x69da049a, 0xb5fb2be1, 0x2d85014a, 0x00000000}},  //   ante, stál, _hale_,\n  { {0x2d851635, 0x1995005e, 0x79830016, 0x00000000}},  //   _kale_, _надя, _tanw,\n  { {0x2d87068f, 0x2d852be2, 0xa7fd01df, 0x00000000}},  //   ndne_, _jale_, ltıl,\n  { {0x628f0010, 0x64a60726, 0x2d85085d, 0x00000000}},  //   _arco, чава, _male_,\n  { {0x42260256, 0xa7fd047f, 0x22522be3, 0x00000000}},  //   здав, ntıl, tryk_,\n  { {0x27e00762, 0xe29700ed, 0xab5d0036, 0x00000000}},  // [8160] _ijin_, пат_, liżs,\n  { {0xb4660088, 0x628f0146, 0x225201d6, 0x00000000}},  //   _екол, _drco, rryk_,\n  { {0xe1ff02d5, 0x628f0ec0, 0x76460740, 0x00000000}},  //   _após_, _erco, lsky,\n  { {0x205509c0, 0xa2a70061, 0x3f840066, 0x00000000}},  //   ьтур, _टॅक्, _qamu_,\n  { {0x2d85011c, 0x3f8600c4, 0x69da20d6, 0x00000000}},  //   _bale_, rdou_, ynte,\n  { {0x63b6009f, 0xa6db009f, 0x63a40091, 0x00000000}},  //   lkyn, naða, ljin,\n  { {0x2d8521ad, 0x3f842be4, 0xc0e3007e, 0x00000000}},  //   _dale_, _tamu_, _зорк,\n  { {0x69dd028c, 0xb21b0737, 0x63a40091, 0x00000000}},  //   ésen, _græs, njin,\n  { {0x2d8505bc, 0xc986003b, 0x443a004a, 0x00000000}},  //   _fale_, пуни, _lwp_,\n  { {0x69da010f, 0x76460030, 0x2d85046e, 0x00000000}},  //   unte, dsky, _gale_,\n  { {0x69da010f, 0x764601c3, 0x7d020048, 0x00000000}},  //   rnte, esky, _dírí,\n  { {0x3cfb00a3, 0x2d850032, 0x7ae20032, 0x00000000}},  //   _פלאנ, _zale_, _txot,\n  { {0x2d850020, 0x2c0b00a1, 0x63a42be5, 0x00000000}},  //   _yale_, _اعلی_, djin,\n  { {0xa2a70061, 0x7afd0eaa, 0x00000000, 0x00000000}},  //   _टॅग्, üste,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x63a40065, 0x08770049, 0xa295007e, 0x00000000}},  //   gjin, _זעהט_, мабі,\n  { {0x628f00f6, 0x00000000, 0x00000000, 0x00000000}},  // [8170] _qrco,   ,   ,\n  { {0x940b006b, 0x673f0065, 0x38c2009d, 0x00000000}},  //   _əmək_, _heqj, _géré_,\n  { {0xb21b0018, 0x2d8501aa, 0x75350009, 0x00000000}},  //   _præs, _rale_, mbzz,\n  { {0x7d1a01d6, 0x00000000, 0x00000000, 0x00000000}},  //   _agts,   ,   ,\n  { {0x2d852be6, 0x673f002b, 0x63bd0066, 0x00000000}},  //   _pale_, _meqj, _ilsn,\n  { {0x645500bb, 0x00000000, 0x00000000, 0x00000000}},  //   orzi,   ,   ,\n  { {0x2d850181, 0xac09008b, 0x2d87006c, 0x00000000}},  //   _vale_, онка_, rdne_,\n  { {0x2d85000b, 0x395e0089, 0x79980173, 0x00000000}},  //   _wale_, egts_, _anvw,\n  { {0x2d8520f5, 0xfe70007a, 0xa7fd01df, 0x00000000}},  //   _tale_, _مدل_, rtıl,\n  { {0x3ce8013d, 0x27f22be7, 0xb5fb0010, 0x00000000}},  //   _चुके_, _skyn_, stáj,\n  { {0xdddb0466, 0x3cf004bb, 0x00000000, 0x00000000}},  //   _kruž, čové_,   ,\n  { {0x65b00b3e, 0x645511e4, 0x76462be8, 0x00000000}},  //   _läht, drzi, tsky,\n  { {0xb8f403d7, 0xa6db000c, 0xdcfa001a, 0x00000000}},  //   _से_, taða, _tată,\n  { {0x76462be9, 0x273c001d, 0x65b003b6, 0x00000000}},  //   rsky, ận_, _näht,\n  { {0x69c11625, 0xdddb0091, 0x76460203, 0x00000000}},  //   mhle, _oruž, ssky,\n  { {0x6d43006a, 0x6b890695, 0x27e00023, 0x00000000}},  //   hana, ndeg, _ujin_,\n  { {0xdb0b0845, 0x6d43020c, 0x59e1007d, 0x00000000}},  // [8180] _algú, kana, _पदार,\n  { {0x6d43037e, 0x63b607e4, 0x443a2bea, 0x00000000}},  //   jana, skyn, _twp_,\n  { {0x6d4301a3, 0x657c127d, 0x7bc70006, 0x00000000}},  //   dana, merh, _įjun,\n  { {0x645c0632, 0x657c0007, 0x3fbe0055, 0x00000000}},  //   muri, lerh, েক্ষ,\n  { {0xdddb18e1, 0x7988018e, 0x645c001a, 0x00000000}},  //   _druž, yddw, luri,\n  { {0x6d4300e0, 0x657c010f, 0x60c900b9, 0x00000000}},  //   gana, nerh, _řeme,\n  { {0x645c001a, 0x69c12753, 0x7bc02a1e, 0x00000000}},  //   nuri, dhle, thmu,\n  { {0x645c0035, 0x98a5007f, 0x657c2beb, 0x00000000}},  //   iuri, lalė_, herh,\n  { {0x645c0209, 0x6d43011c, 0x657c0073, 0x00000000}},  //   huri, bana, kerh,\n  { {0x7bc00065, 0x69c10051, 0x657c008e, 0x00000000}},  //   shmu, ghle, jerh,\n  { {0x6e20008d, 0x79880016, 0xad650014, 0x00000000}},  //   _humb, rddw, _ساله,\n  { {0x645c2005, 0x6e20000b, 0x9b930025, 0x00000000}},  //   duri, _kumb, _للمت,\n  { {0xdce8010a, 0x6e200020, 0x6617002d, 0x00000000}},  //   _padė, _jumb, _pixk,\n  { {0xceb3052f, 0x645c19bd, 0x6e202bec, 0x00000000}},  //   דיש_, furi, _mumb,\n  { {0x67d5102a, 0xb5fb002a, 0xa7fd014a, 0x00000000}},  //   _поку, ntái, ntık,\n  { {0x6d4312d9, 0x98be01aa, 0x2b44012d, 0x00000000}},  //   zana, natč_, namc_,\n  { {0x6e202bed, 0x6d430390, 0x657c0022, 0x00000000}},  // [8190] _numb, yana, berh,\n  { {0x6d430543, 0x645c002b, 0x44312123, 0x00000000}},  //   xana, buri, ppz_,\n  { {0x6d430ba5, 0x645c2bee, 0xdddb0091, 0x00000000}},  //   vana, curi, _pruž,\n  { {0x6e200089, 0x6d432bef, 0x93c900a1, 0x00000000}},  //   _bumb, wana, _راجہ_,\n  { {0x6d4305d7, 0xee380822, 0x44210dbe, 0x00000000}},  //   tana, дні_, _huh_,\n  { {0x44212bf0, 0x0d84013a, 0x00000000, 0x00000000}},  //   _kuh_, клін,   ,\n  { {0x6d431312, 0x69dd1819, 0x00000000, 0x00000000}},  //   rana, ésem,   ,\n  { {0x6d430bc4, 0x65b0010f, 0x442101a3, 0x00000000}},  //   sana, _jähr, _muh_,\n  { {0x6d43011c, 0x6e2000d0, 0x6b890207, 0x00000000}},  //   pana, _gumb, rdeg,\n  { {0x645c0058, 0x442122d7, 0x6b892bf1, 0x00000000}},  //   yuri, _ouh_, sdeg,\n  { {0x657c0343, 0x6d410089, 0x6e200cd3, 0x00000000}},  //   verh, _iela, _zumb,\n  { {0x6d4100b5, 0xf0920476, 0x657c0007, 0x00000000}},  //   _hela, אנט_, werh,\n  { {0x657c001f, 0x6d41020c, 0xe3c2005a, 0x00000000}},  //   terh, _kela, nlış_,\n  { {0x645c0c0e, 0x9aa400b8, 0x6d41020c, 0x00000000}},  //   turi, _جمهو, _jela,\n  { {0x6d41020c, 0x660300da, 0x39452bf2, 0x00000000}},  //   _mela, упра, mals_,\n  { {0x6d41020c, 0x645c2b67, 0x44210091, 0x00000000}},  //   _lela, ruri, _duh_,\n  { {0x2249178f, 0x02062bf3, 0x23600e0d, 0x00000000}},  // [81a0] gsak_, езан, rgij_,\n  { {0x6d41010a, 0x645c1c87, 0xe8890011, 0x00000000}},  //   _nela, puri, _kẻ_,\n  { {0x6e20020c, 0x65b0010f, 0xdddb0036, 0x00000000}},  //   _sumb, _fähr, _druż,\n  { {0xa2cb02d2, 0xfe4602b0, 0x6e201158, 0x00000000}},  //   _सेक्, ендо, _pumb,\n  { {0x3945001e, 0xe8890011, 0xc17400a1, 0x00000000}},  //   kals_, _lẻ_, _لگات,\n  { {0x6d410390, 0x57ad01f5, 0x6da31023, 0x00000000}},  //   _cela, _चव्ह, лича,\n  { {0x6d4101d9, 0x8d1a026c, 0x91e3007c, 0x00000000}},  //   _dela, _ہزار_, _соре,\n  { {0x6e2004cb, 0xb5fb0051, 0x6d41006c, 0x00000000}},  //   _tumb, rtái, _eela,\n  { {0xb5fb002a, 0x6d410047, 0x6e2000e7, 0x00000000}},  //   stái, _fela, _uumb,\n  { {0xbe13031d, 0x7afd2bf4, 0x39450129, 0x00000000}},  //   _موقع, üsta, gals_,\n  { {0x8157007b, 0x00000000, 0x00000000, 0x00000000}},  //   עסטע_,   ,   ,\n  { {0xfa8800ad, 0x6d41022b, 0xb5fb0181, 0x00000000}},  //   _từ_, _zela, ntáv,\n  { {0x394525e9, 0x42db0044, 0x44212bf5, 0x00000000}},  //   bals_, _দর্শ, _suh_,\n  { {0x39452bf6, 0x442100b0, 0xc8f4005e, 0x00000000}},  //   cals_, _puh_, _излъ,\n  { {0x62862128, 0xd90e00a2, 0x9f5f0048, 0x00000000}},  //   _asko, _دید_, _shuí_,\n  { {0x2249002d, 0xdcf80107, 0x765d00e0, 0x00000000}},  //   tsak_, jevč, pusy,\n  { {0xd2510688, 0x00000000, 0x00000000, 0x00000000}},  // [81b0] شنا_,   ,   ,\n  { {0x65b0010f, 0x442104cb, 0x21f4010f, 0x00000000}},  //   _währ, _tuh_, währ_,\n  { {0x6286022b, 0xe8890082, 0xd498007c, 0x00000000}},  //   _esko, _xẻ_, _зря_,\n  { {0x6d41020c, 0x798a01aa, 0x3fcf0044, 0x00000000}},  //   _sela, _lafw, িক্ষ,\n  { {0x6d41020c, 0xdb0b0065, 0x69dd0010, 0x00000000}},  //   _pela, _vogë, ések,\n  { {0xdce8001e, 0x00000000, 0x00000000, 0x00000000}},  //   _gadī,   ,   ,\n  { {0x6d41190b, 0x00000000, 0x00000000, 0x00000000}},  //   _vela,   ,   ,\n  { {0xe889001d, 0x6d412bf7, 0x62862bf8, 0x00000000}},  //   _rẻ_, _wela, _ysko,\n  { {0x3945041d, 0x6d410149, 0xe889001d, 0x00000000}},  //   tals_, _tela, _sẻ_,\n  { {0x798a0016, 0x00000000, 0x00000000, 0x00000000}},  //   _cafw,   ,   ,\n  { {0x394504bd, 0xb9020088, 0x39580048, 0x00000000}},  //   rals_, изьк, órsa_,\n  { {0x39452bf9, 0xe889001d, 0xb90901f5, 0x00000000}},  //   sals_, _vẻ_, _यश_,\n  { {0x39452bfa, 0xdb19000a, 0x00000000, 0x00000000}},  //   pals_, _emwò,   ,\n  { {0xceb200b6, 0xeab00025, 0x798a0016, 0x00000000}},  //   סים_, _دعم_, _gafw,\n  { {0xddc20089, 0xdce80089, 0x63af041a, 0x00000000}},  //   ntoš, _radī, _bocn,\n  { {0x0876007b, 0x5eb70044, 0xfe210164, 0x00000000}},  //   _יעצט_, _আইনে, मदास_,\n  { {0x6b8b0198, 0x63af016c, 0x61e200f4, 0x00000000}},  // [81c0] _magg, _docn, éolo,\n  { {0x6b8b2008, 0x00da0380, 0xb65b00a3, 0x00000000}},  //   _lagg, وبات_, _קדיש,\n  { {0xdce8001e, 0xb33b006b, 0x00000000, 0x00000000}},  //   _vadī, _poçt,   ,\n  { {0x7053007a, 0x6b8b25e1, 0x2a6d002b, 0x00000000}},  //   شنها, _nagg, kteb_,\n  { {0x62862bfb, 0xd33700a0, 0xb5fb0181, 0x00000000}},  //   _usko, _ברכה_, rtáv,\n  { {0xb5fb004f, 0x8d63012b, 0xe6260082, 0x00000000}},  //   stáv, авље, _đôla_,\n  { {0x6b8b0030, 0xb5fb0224, 0xefb200a6, 0x00000000}},  //   _bagg, ptáv, _پیشگ,\n  { {0x6b8b0912, 0x09da0061, 0x61fe09b0, 0x00000000}},  //   _cagg, यच्य, llpl,\n  { {0xd00f0054, 0x6b8b16a7, 0x798a01aa, 0x00000000}},  //   _ذلك_, _dagg, _pafw,\n  { {0xb5fb0142, 0x00000000, 0x00000000, 0x00000000}},  //   ntát,   ,   ,\n  { {0x2d9e0901, 0x6b8b0190, 0x2d8c014a, 0x00000000}},  //   _inte_, _fagg, _iade_,\n  { {0x2d8c0073, 0x6b8b0912, 0xe8e00082, 0x00000000}},  //   _hade_, _gagg, _ngụy_,\n  { {0xc9aa06e3, 0x2d8c16d0, 0xf77f2bfc, 0x00000000}},  //   _овде_, _kade_, reç_,\n  { {0xea7700b6, 0xa4d50088, 0x7bc200b9, 0x00000000}},  //   _סגור_, гогі, _hlou,\n  { {0x63af037e, 0x2d8c0038, 0x7bc200b9, 0x00000000}},  //   _pocn, _made_, _klou,\n  { {0x2d8c2bfd, 0x61fe2586, 0xd40701ab, 0x00000000}},  //   _lade_, elpl, тяги,\n  { {0x63af0107, 0xa344007e, 0x00000000, 0x00000000}},  // [81d0] _vocn, рэсл,   ,\n  { {0x2d8c0091, 0x80be0044, 0x7bc200f6, 0x00000000}},  //   _nade_, ্পন্, _llou,\n  { {0x44271305, 0xc9530097, 0x69dd0010, 0x00000000}},  //   _în_, שמע_, ései,\n  { {0x2d9e0211, 0xb4c103d7, 0x44332bfe, 0x00000000}},  //   _ante_, ्छी_, _itx_,\n  { {0x6b8b0207, 0x4ea7005e, 0x443302ee, 0x00000000}},  //   _ragg, ържа, _htx_,\n  { {0xf2d200b6, 0x2d8c0375, 0x7bc206f0, 0x00000000}},  //   _פעם_, _cade_, _alou,\n  { {0x6b8b0811, 0x2d8c0b5c, 0x7bc219ed, 0x00000000}},  //   _pagg, _dade_, _blou,\n  { {0x2d9e0207, 0x44330009, 0x7bc200ab, 0x00000000}},  //   _ente_, _mtx_, _clou,\n  { {0xb5fb2bff, 0xee8403c8, 0xddc20089, 0x00000000}},  //   ntás, _выхо, stoš,\n  { {0xdcbb0265, 0x2d8c0263, 0x5fb90061, 0x00000000}},  //   _още_, _gade_, _आवडल,\n  { {0x6b8b0292, 0x2dd80054, 0xf7460088, 0x00000000}},  //   _tagg, _شبكة_, лено,\n  { {0xf7720355, 0x62840696, 0x7bc2032c, 0x00000000}},  //   حاد_, ywio, _glou,\n  { {0x63a00129, 0xb5fb0010, 0x2d8c009d, 0x00000000}},  //   _òmni, jtás, _yade_,\n  { {0x88c5035b, 0x7bc2037e, 0xd9450545, 0x00000000}},  //   _متعل, _zlou, _секи,\n  { {0x4376085f, 0x98790049, 0xa3ea005e, 0x00000000}},  //   луат, _טאַט, едва_,\n  { {0xa7662c00, 0x78fa0049, 0xb5fb2c01, 0x00000000}},  //   _скид, _אפצו, tuác,\n  { {0x44330843, 0x4ebe0044, 0x00000000, 0x00000000}},  // [81e0] _etx_, _অশ্ল,   ,\n  { {0x6d45000c, 0x10a607ab, 0x7981005b, 0x00000000}},  //   ðhal, лизн, nelw,\n  { {0x44332a53, 0x7e7b027b, 0xb5fb029d, 0x00000000}},  //   _gtx_, _apup, rtát,\n  { {0xb5fb2c02, 0xf1bf2c03, 0x2d8c2c04, 0x00000000}},  //   gráf, _stát_, _sade_,\n  { {0xdcf80089, 0x644e00f8, 0x661e0085, 0x00000000}},  //   devā, lsbi, _kipk,\n  { {0x7bc200b9, 0x98be001a, 0x2907041a, 0x00000000}},  //   _slou, nată_, _ozna_,\n  { {0x6da306e3, 0x644e02e7, 0x7981005b, 0x00000000}},  //   сија, nsbi, delw,\n  { {0xb5fb2b8b, 0xba5401fc, 0xaa5429f8, 0x00000000}},  //   ntár, авиј, авиш,\n  { {0x7dc6000c, 0x79810678, 0x00000000, 0x00000000}},  //   _aðse, felw,   ,\n  { {0x7981018e, 0x98be0035, 0x644e2c05, 0x00000000}},  //   gelw, jată_, ksbi,\n  { {0x291803af, 0x98be001a, 0xd917007c, 0x00000000}},  //   ära_, dată_, лью_,\n  { {0xa6db000c, 0x81ea0044, 0x44330026, 0x00000000}},  //   laði, মতি_, _rtx_,\n  { {0x44332635, 0x645c002d, 0xaa5700a1, 0x00000000}},  //   _stx_, erri, _ملنا_,\n  { {0x6d4a00f0, 0xb5fb0181, 0x98be001a, 0x00000000}},  //   nafa, etár, gată_,\n  { {0xb4c1013d, 0x644e00f8, 0xd5b80b52, 0x00000000}},  //   ्छे_, gsbi, уся_,\n  { {0xa3cf013d, 0x6d4a15df, 0x3cfe0082, 0x00000000}},  //   वों_, hafa, _mytv_,\n  { {0x6d4a006b, 0x5b7b0049, 0xf7700439, 0x00000000}},  // [81f0] kafa, ערמא, _راي_,\n  { {0x645a0df9, 0x6d4a2c06, 0xb5fb0047, 0x00000000}},  //   átic, jafa, rtás,\n  { {0x44382c07, 0xb5fb00dc, 0xdb0906ec, 0x00000000}},  //   cpr_, tráf, skeø,\n  { {0x83ab007c, 0xb5fb0f08, 0x645a016e, 0x00000000}},  //   _чтоб_, ctár, štic,\n  { {0x69da022b, 0x6d4a0020, 0x63ad199a, 0x00000000}},  //   kite, fafa, mjan,\n  { {0x63ad0004, 0x6d4a00d4, 0xa6db01e5, 0x00000000}},  //   ljan, gafa, gaði,\n  { {0xa2d901f5, 0x63ad0006, 0xa7fd005a, 0x00000000}},  //   _नेत्, ojan, ntıs,\n  { {0x63ad0149, 0x98be001a, 0x79810016, 0x00000000}},  //   njan, zată_, welw,\n  { {0x69da00f4, 0x6d4a0c99, 0x798104e4, 0x00000000}},  //   fite, bafa, telw,\n  { {0x69da002d, 0x69c8002a, 0x2b46192a, 0x00000000}},  //   gite, ghde, _eeoc_,\n  { {0x63ad000c, 0x98be001a, 0x0dc8007c, 0x00000000}},  //   kjan, vată_, _сути_,\n  { {0xc60001f5, 0xb5fb2c08, 0xd62a003b, 0x00000000}},  //   ोग्य_, hrád, коме_,\n  { {0x63ad012b, 0x69da1cc2, 0x98be001a, 0x00000000}},  //   djan, bite, tată_,\n  { {0x69c8010f, 0x7bc900f4, 0x7d1c0051, 0x00000000}},  //   chde, lheu, _úrsc,\n  { {0x98be001a, 0x2a79002b, 0x645c2c09, 0x00000000}},  //   rată_, ħsbu_, urri,\n  { {0xdb0b253d, 0x7bc900f4, 0x3947103f, 0x00000000}},  //   _logí, nheu, _hens_,\n  { {0x644e0210, 0x661e02db, 0x44382c0a, 0x00000000}},  // [8200] ssbi, _tipk, spr_,\n  { {0x39470030, 0x644e05fe, 0xb5fb0010, 0x00000000}},  //   _jens_, psbi, stár,\n  { {0xa3ea007e, 0x39470aba, 0x0577009b, 0x00000000}},  //   _адна_, _mens_, _דגים_,\n  { {0x69da04f4, 0x6d4a0020, 0x76442c0b, 0x00000000}},  //   zite, wafa, _kwiy,\n  { {0x44440062, 0xe8e2007d, 0x6d4a0020, 0x00000000}},  //   _hw_, _पश्च, tafa,\n  { {0x44440161, 0x394704bd, 0x32432c0c, 0x00000000}},  //   _kw_, _nens_, _ферг,\n  { {0x6d4a1aed, 0xa6db000c, 0x7e9600a1, 0x00000000}},  //   rafa, raði, انڈر_,\n  { {0x69da2c0d, 0x6d4a0066, 0x44441ff1, 0x00000000}},  //   wite, safa, _mw_,\n  { {0x69da2c0e, 0x4444211e, 0x39470181, 0x00000000}},  //   tite, _lw_, _bens_,\n  { {0x444402c2, 0x63ad002b, 0x49730259, 0x00000000}},  //   _ow_, zjan, ольс,\n  { {0x3b8600ed, 0x3947068f, 0xf77f1052, 0x00000000}},  //   _влег, _dens_, ença_,\n  { {0x3947015c, 0x6d48022b, 0x6f000093, 0x00000000}},  //   _eens_, _heda, _kymc,\n  { {0x44442211, 0x6d4805cd, 0xd6d80f4e, 0x00000000}},  //   _aw_, _keda, атр_,\n  { {0x6d480119, 0x4444000b, 0x3a7b01f8, 0x00000000}},  //   _jeda, _bw_, _סטוד,\n  { {0xf77f153d, 0x63ad2bfa, 0x58d30184, 0x00000000}},  //   ança_, tjan, _мошт,\n  { {0x4444183c, 0x394c0030, 0x6d480073, 0x00000000}},  //   _dw_, lads_, _leda,\n  { {0xcb130049, 0xb5fb00fa, 0x00000000, 0x00000000}},  // [8210] ַלע_, stáq,   ,\n  { {0x6f090046, 0x394c00f8, 0x63ad00b4, 0x00000000}},  //   _rzec, nads_, sjan,\n  { {0x44440390, 0x63ad002b, 0x2a640045, 0x00000000}},  //   _gw_, pjan, humb_,\n  { {0xb21b0190, 0x749a0049, 0x00000000, 0x00000000}},  //   _spæd, _עירפ,   ,\n  { {0x6d4802ae, 0x7c280006, 0x8db5008b, 0x00000000}},  //   _beda, _audr, йскі,\n  { {0x44440bc4, 0xdef8008b, 0x7c28007f, 0x00000000}},  //   _yw_, шых_, _budr,\n  { {0xa6db009f, 0x200d01f3, 0x44441ad1, 0x00000000}},  //   maðu, _thei_, _xw_,\n  { {0x394700f4, 0x23691097, 0xa6db000c, 0x00000000}},  //   _sens_, ngaj_, laðu,\n  { {0x7bc90112, 0x6f09016c, 0x8f6a00a1, 0x00000000}},  //   rheu, _uzec, _حلقے_,\n  { {0x6d481225, 0xa6db000c, 0x76440009, 0x00000000}},  //   _geda, naðu, _rwiy,\n  { {0xa3e80201, 0x7c280089, 0x5dfa0049, 0x00000000}},  //   _बदल_, _gudr, _עפענ,\n  { {0x44442c0f, 0x394700c7, 0x907a0097, 0x00000000}},  //   _rw_, _wens_, נטרי,\n  { {0x39470129, 0x44442c10, 0xa7fd014a, 0x00000000}},  //   _tens_, _sw_, ttır,\n  { {0x6e212c11, 0x6e290211, 0x44440036, 0x00000000}},  //   _jilb, _mueb, _pw_,\n  { {0xdb0b00c4, 0x6e211796, 0x69c10168, 0x00000000}},  //   _fogã, _milb, mkle,\n  { {0xf1bf001d, 0x69c101d6, 0x6e210606, 0x00000000}},  //   _quán_, lkle, _lilb,\n  { {0xa7fd014a, 0x6e291521, 0x98be0a62, 0x00000000}},  // [8220] ptır, _nueb, ratą_,\n  { {0x69c1011f, 0x01d70054, 0x44440061, 0x00000000}},  //   nkle, موقع_, _tw_,\n  { {0x44440662, 0x459b0049, 0x7d0101d6, 0x00000000}},  //   _uw_, _עסטע, _nyls,\n  { {0x6d482c12, 0x68fc01a2, 0x6e2122f0, 0x00000000}},  //   _seda, ürdi, _ailb,\n  { {0x6e21022b, 0x7c280089, 0x09b90061, 0x00000000}},  //   _bilb, _sudr, ेसाठ,\n  { {0x226500b9, 0x44220723, 0x171b0049, 0x00000000}},  //   ňský_, _hik_, אונע,\n  { {0x6d48006c, 0x44222c13, 0x394c0089, 0x00000000}},  //   _veda, _kik_, vads_,\n  { {0x5a340069, 0x6d482c14, 0x44222c15, 0x00000000}},  //   онит, _weda, _jik_,\n  { {0x6d482c16, 0x44221204, 0x394c0af1, 0x00000000}},  //   _teda, _mik_, tads_,\n  { {0x2a640c39, 0x69c10c46, 0x6e210335, 0x00000000}},  //   rumb_, gkle, _gilb,\n  { {0x394c0d33, 0xf4c30044, 0x7c2800f6, 0x00000000}},  //   rads_, _ঈশ্ব, _uudr,\n  { {0x44222c17, 0x69dd00f4, 0x6e21238e, 0x00000000}},  //   _nik_, éser, _zilb,\n  { {0x394c0061, 0x95cb15c4, 0x66c808d6, 0x00000000}},  //   pads_, гува_, бург_,\n  { {0xf1bf0211, 0x44222c18, 0x69c12c19, 0x00000000}},  //   _cuál_, _aik_, ckle,\n  { {0x645a06a6, 0x44220082, 0xdce30089, 0x00000000}},  //   štin, _bik_, venī,\n  { {0x44220ada, 0xdc370049, 0x00000000, 0x00000000}},  //   _cik_, מאלט_,   ,\n  { {0x442201d5, 0xf8b000a1, 0x7f4906c0, 0x00000000}},  // [8230] _dik_, _رکھ_, _reeq,\n  { {0x7c2216cc, 0xe4e70245, 0x44222118, 0x00000000}},  //   _lior, _гімн, _eik_,\n  { {0x44220018, 0x6e290668, 0x00000000, 0x00000000}},  //   _fik_, _sueb,   ,\n  { {0xdb0b002a, 0x6e290219, 0x44220018, 0x00000000}},  //   _logá, _pueb, _gik_,\n  { {0x80da0044, 0x69c10030, 0x7ae416d0, 0x00000000}},  //   _বুদ্, ykle, _žitn,\n  { {0x628f0066, 0xb5fb01ca, 0x442220c9, 0x00000000}},  //   _isco, xuál, _zik_,\n  { {0x7c220036, 0x6e2101e5, 0xb21b0146, 0x00000000}},  //   _bior, _vilb, _dsæt,\n  { {0x7c220fff, 0xa91c0027, 0x23c90309, 0x00000000}},  //   _cior, teľn, रसिद,\n  { {0x6e212165, 0x3e72000d, 0xb5fb0d7f, 0x00000000}},  //   _tilb, cât_, tuál,\n  { {0x80be0055, 0x8d7702fd, 0xe9d901fc, 0x00000000}},  //   ্পর্, _دارا, рко_,\n  { {0x2d872706, 0x7c220207, 0x57ea013b, 0x00000000}},  //   mene_, _fior, идом_,\n  { {0x7c220198, 0x2d870292, 0xdd0e0676, 0x00000000}},  //   _gior, lene_, lışm,\n  { {0x2d870007, 0xd62a0194, 0xdb0b0010, 0x00000000}},  //   oene_, роге_, _fogá,\n  { {0x2d8706ec, 0xdd0e005d, 0x992b007c, 0x00000000}},  //   nene_, nışm, _сюда_,\n  { {0x628f0207, 0x44222c1a, 0x26c42c1b, 0x00000000}},  //   _asco, _pik_, šmo_,\n  { {0xb5fb0344, 0x2d872c1c, 0x44220023, 0x00000000}},  //   trác, hene_, _qik_,\n  { {0x2d872c1d, 0x442205ad, 0xb5fb0027, 0x00000000}},  // [8240] kene_, _vik_, urác,\n  { {0x2d87073a, 0xe1660025, 0x93c70082, 0x00000000}},  //   jene_, تدري, _hoặ,\n  { {0x44222c1e, 0x2d870292, 0x628f1d70, 0x00000000}},  //   _tik_, dene_, _esco,\n  { {0x443a0036, 0xb5fb0161, 0x987a0049, 0x00000000}},  //   _itp_, prác, ירעק,\n  { {0x7c221a48, 0x2d87010f, 0xfe6f01fa, 0x00000000}},  //   _rior, fene_, ندو_,\n  { {0x443a023a, 0x3e72001a, 0x569b0049, 0x00000000}},  //   _ktp_, rât_, יינצ,\n  { {0x7c2219c1, 0x00000000, 0x00000000, 0x00000000}},  //   _pior,   ,   ,\n  { {0x443a2c1f, 0xe3bf004a, 0x00000000, 0x00000000}},  //   _mtp_, _tiñe_,   ,\n  { {0xf413019b, 0xa91c0027, 0x2d871f88, 0x00000000}},  //   ופה_, teľo, bene_,\n  { {0x20060065, 0x443a1db2, 0x00000000, 0x00000000}},  //   lloi_, _otp_,   ,\n  { {0x09b70054, 0x645a2c20, 0x28f80245, 0x00000000}},  //   تطيع_, átil, сень_,\n  { {0xc6a700e3, 0x7c3a002b, 0x61b701f5, 0x00000000}},  //   орги, _ittr, _आक्ष,\n  { {0xf98f0167, 0x645a0091, 0x24810085, 0x00000000}},  //   ربی_, štil, _sphm_,\n  { {0x63a604ce, 0x443a2c21, 0x00000000, 0x00000000}},  //   _ankn, _btp_,   ,\n  { {0xd4980113, 0x443a0035, 0x66720014, 0x00000000}},  //   орт_, _ctp_, وگیر,\n  { {0xd6db005e, 0x443a0095, 0x7988047a, 0x00000000}},  //   _вто_, _dtp_, ledw,\n  { {0xa6db000c, 0x6d5a05d2, 0x2d872c22, 0x00000000}},  // [8250] raðs, _odta, yene_,\n  { {0x7e622c23, 0xed880006, 0x79880544, 0x00000000}},  //   drop, šųjų_, nedw,\n  { {0x2d872c24, 0x443a0784, 0xf8ca013d, 0x00000000}},  //   vene_, _gtp_, ानिय,\n  { {0x6d5a2c25, 0xf8b30097, 0x2d872c26, 0x00000000}},  //   _adta, ושע_, wene_,\n  { {0x2d870292, 0x7c3a051b, 0x2ba90061, 0x00000000}},  //   tene_, _attr, कासा,\n  { {0xb2ba009b, 0xa2ba009b, 0x00000000, 0x00000000}},  //   _המשר, _המשט,   ,\n  { {0x2d870209, 0x23bf0316, 0xdd0e005a, 0x00000000}},  //   rene_, _एकाद, rışm,\n  { {0x5ba9102a, 0x2d870056, 0x69ca064e, 0x00000000}},  //   ским_, sene_, _alfe,\n  { {0xe9d90d99, 0x2d871a3d, 0x7e6200ab, 0x00000000}},  //   йки_, pene_, crop,\n  { {0x6ca709ae, 0x5dd503ab, 0x64550010, 0x00000000}},  //   _мреж, _عقائ, kszi,\n  { {0x6d4300ab, 0x98a50069, 0x2903000c, 0x00000000}},  //   mbna, чине, æja_,\n  { {0x69ca2c27, 0xe29f000c, 0x443a00c4, 0x00000000}},  //   _elfe, _orð_, _rtp_,\n  { {0xb90203d7, 0x62980089, 0x443a009d, 0x00000000}},  //   _ने_, āvok, _stp_,\n  { {0xceb200b6, 0x7c3a0039, 0x6b8900b5, 0x00000000}},  //   עים_, _yttr, leeg,\n  { {0x64552c28, 0x64a3007e, 0xa50a00d7, 0x00000000}},  //   gszi, нара, сева_,\n  { {0xe8d6009b, 0x78bc2c29, 0x3cde0061, 0x00000000}},  //   _מוצר_, ärve, _कइसे_,\n  { {0x27370011, 0x443a0022, 0x6e3b0045, 0x00000000}},  // [8260] _ủng_, _wtp_, _ntub,\n  { {0x7e620059, 0x443a0145, 0x00000000, 0x00000000}},  //   vrop, _ttp_,   ,\n  { {0x6e3b011c, 0x55bb009b, 0x7bcb014a, 0x00000000}},  //   _atub, _המיו, _olgu,\n  { {0x63a600ab, 0xd7af0061, 0x798800b4, 0x00000000}},  //   _unkn, टायच, zedw,\n  { {0xdfcf057d, 0x539b009b, 0x00000000, 0x00000000}},  //   دين_, _היכו,   ,\n  { {0x7bcb00d6, 0xb5fb2c2a, 0xf2d30049, 0x00000000}},  //   _algu, hrán, _טער_,\n  { {0x2006028c, 0xb5fb009f, 0xa024010f, 0x00000000}},  //   ploi_, krán, größ,\n  { {0x79880016, 0x00000000, 0x00000000, 0x00000000}},  //   wedw,   ,   ,\n  { {0xdcfa0089, 0x224001aa, 0x800b00a1, 0x00000000}},  //   _patē, npik_, _طرفہ_,\n  { {0x6d5a0030, 0xe3bf0288, 0x00000000, 0x00000000}},  //   _udta, _miña_,   ,\n  { {0xe3bf027b, 0x7c3a01c9, 0x79880016, 0x00000000}},  //   _liña_, _uttr, redw,\n  { {0x61fe01ee, 0x79880173, 0x224000e0, 0x00000000}},  //   hopl, sedw, kpik_,\n  { {0x2ba90183, 0xe9a60256, 0xe3bf0211, 0x00000000}},  //   कारा, _надп, _niña_,\n  { {0x64550047, 0xb5fb0048, 0x00000000, 0x00000000}},  //   tszi, arán,   ,\n  { {0xe97b009b, 0xb5fb01ca, 0x61fe0161, 0x00000000}},  //   _הנוש, brán, dopl,\n  { {0xb5fb10fa, 0x64552c2b, 0xd6d10137, 0x00000000}},  //   ntáz, rszi, _لقب_,\n  { {0x64550010, 0x61fe006c, 0xc1b902be, 0x00000000}},  // [8270] sszi, fopl, олах_,\n  { {0x2902006b, 0x6b890032, 0xe3bf0288, 0x00000000}},  //   əkar_, zeeg, _diña_,\n  { {0x6e3b07ea, 0x25d80049, 0x394e0019, 0x00000000}},  //   _stub, _מוזן_, _mefs_,\n  { {0xe29f000c, 0x00000000, 0x00000000, 0x00000000}},  //   _eyða_,   ,   ,\n  { {0x6ff50046, 0x98be00b9, 0xda0c0061, 0x00000000}},  //   jące, tatě_, हतात_,\n  { {0x6b890112, 0xbea2003b, 0xdb07009d, 0x00000000}},  //   weeg, ташк, _éléc,\n  { {0x6b89006c, 0x2ba90204, 0x26c20036, 0x00000000}},  //   teeg, काला, zyko_,\n  { {0x2fc6037e, 0x5f940256, 0xcbfd0044, 0x00000000}},  //   ckog_, _пист, ুদ্ধ_,\n  { {0x60180057, 0x8d870ae0, 0xc334009b, 0x00000000}},  //   _хотя_, _нужд, עוץ_,\n  { {0x26c20006, 0x00000000, 0x00000000, 0x00000000}},  //   vyko_,   ,   ,\n  { {0x8d7400a6, 0x378a0242, 0x69a10061, 0x00000000}},  //   _سالا, обно_, _कोणी,\n  { {0x66e6007e, 0x645a007f, 0x2ba90061, 0x00000000}},  //   дома, štik, काळा,\n  { {0xb5fb0211, 0xab0b0014, 0x00000000, 0x00000000}},  //   rrán, _اتاق_,   ,\n  { {0xb21b0f4b, 0xe3bf004a, 0x2611006e, 0x00000000}},  //   _spæn, _riña_, _दीदी_,\n  { {0x2fcd2c2c, 0x00000000, 0x00000000, 0x00000000}},  //   _oleg_,   ,   ,\n  { {0xe3bf008e, 0xf7720025, 0x00000000, 0x00000000}},  //   _piña_, _شاب_,   ,\n  { {0x61fe016e, 0x42260364, 0x22590093, 0x00000000}},  // [8280] topl, ддав, _cvsk_,\n  { {0xe3bf008e, 0x2fcd0035, 0x3cde0061, 0x00000000}},  //   _viña_, _aleg_, _कइले_,\n  { {0x2fc60091, 0xc059007e, 0x2fcd2807, 0x00000000}},  //   tkog_, зіі_, _bleg_,\n  { {0xe3bf027b, 0x4f0a05f6, 0x61fe0b38, 0x00000000}},  //   _tiña_, онен_, sopl,\n  { {0xa2480014, 0x61fe0253, 0xa91c0142, 0x00000000}},  //   _ریال_, popl, teľk,\n  { {0x2fc60091, 0x7d1c000c, 0xddc22c2d, 0x00000000}},  //   skog_, _úrsk, stož,\n  { {0x6da306e3, 0xfba90061, 0x394e01cb, 0x00000000}},  //   тија, कांम, _refs_,\n  { {0xcfaa01b7, 0xeb97003b, 0x27e00058, 0x00000000}},  //   _باسم_, дић_, _nmin_,\n  { {0x298a0088, 0xb5fb004a, 0x2907019a, 0x00000000}},  //   осно_, rtáz, _ayna_,\n  { {0x27e0006a, 0x29070007, 0xb5fb13a5, 0x00000000}},  //   _amin_, _byna_, stáz,\n  { {0xf1bf0011, 0x00000000, 0x00000000, 0x00000000}},  //   _quái_,   ,   ,\n  { {0x628600c7, 0x29070016, 0x5ba50088, 0x00000000}},  //   _opko, _dyna_, _пріз,\n  { {0xbc1b0049, 0xa7fd0477, 0xb5fb0327, 0x00000000}},  //   _וואש, brın, brál,\n  { {0x27e0005a, 0x34952c2e, 0x20040022, 0x00000000}},  //   _emin_, нагр, _lkmi_,\n  { {0xe4e40088, 0x62860089, 0x4ce00044, 0x00000000}},  //   вітн, _apko, _পুতু,\n  { {0xddc900b9, 0x6aa20de5, 0x00000000, 0x00000000}},  //   _dveř, _krof,   ,\n  { {0x5215017f, 0x6b8202bf, 0xe0d00014, 0x00000000}},  // [8290] едат, _mbog, یزم_,\n  { {0x2fcd0007, 0xdddb0091, 0x91e4003b, 0x00000000}},  //   _sleg_, _opuš, вође,\n  { {0x3cde001c, 0x35f80025, 0x6b820295, 0x00000000}},  //   _केले_, _تريد_, _obog,\n  { {0x764d0ed7, 0x799801aa, 0x2ef500ec, 0x00000000}},  //   _kway, _lavw, нзер,\n  { {0x733a0049, 0x433a0104, 0xddc900b9, 0x00000000}},  //   _מערס, _מערב, _zveř,\n  { {0x764d0263, 0x6b82083b, 0x72050025, 0x00000000}},  //   _mway, _abog, _أوسم,\n  { {0x63bd2c2f, 0x764d01aa, 0x6aa200f6, 0x00000000}},  //   _kosn, _lway, _arof,\n  { {0x6aa20016, 0x61e5163b, 0x672d008a, 0x00000000}},  //   _brof, lihl, _ngaj,\n  { {0xb5fb0047, 0xba250867, 0x6aa22c30, 0x00000000}},  //   trál, ндик, _crof,\n  { {0x63bd0d3e, 0x6e280066, 0x9c870025, 0x00000000}},  //   _losn, _gidb, _يشاه,\n  { {0xe3bf0211, 0x764d0058, 0x5eb70044, 0x00000000}},  //   _niño_, _away, _আইটে,\n  { {0x63bd04c8, 0x78bc2c31, 0x764d2c32, 0x00000000}},  //   _nosn, ärva, _bway,\n  { {0x0aeb007a, 0x6aa2003b, 0xd90f00a1, 0x00000000}},  //   _براي_, _grof, دیں_,\n  { {0x69c80039, 0x764d0173, 0x7bc920d9, 0x00000000}},  //   ckde, _dway, lkeu,\n  { {0x63bd2c33, 0x69ac0316, 0x00000000, 0x00000000}},  //   _bosn, जारी,   ,\n  { {0x63bd0051, 0xdb1901aa, 0x764d0173, 0x00000000}},  //   _cosn, _powè, _fway,\n  { {0x7bc900b0, 0x63bd007f, 0x764d1bcb, 0x00000000}},  // [82a0] ikeu, _dosn, _gway,\n  { {0x4207003b, 0x6b990544, 0x00000000, 0x00000000}},  //   енуо_, _lawg,   ,\n  { {0x7bc900b0, 0x7173067a, 0x940a005c, 0x00000000}},  //   kkeu, اهما, _необ_,\n  { {0x9f5f0082, 0x543b0049, 0x6b990066, 0x00000000}},  //   _thuý_, _מעטא, _nawg,\n  { {0xdddb091d, 0xbea3008b, 0xfeb70014, 0x00000000}},  //   _spuš, лацк, فاوت_,\n  { {0x6aa20023, 0x00000000, 0x00000000, 0x00000000}},  //   _rrof,   ,   ,\n  { {0x6f0900d9, 0x00000000, 0x00000000, 0x00000000}},  //   _eyec,   ,   ,\n  { {0xe8df0011, 0x6b9b2c34, 0xdb0b00fa, 0x00000000}},  //   _chửi_, gdug, _ingê,\n  { {0x6e282c35, 0x60e00006, 0x7d0801c3, 0x00000000}},  //   _tidb, žymė, _wyds,\n  { {0x7d080007, 0x764d00de, 0xf77f00fa, 0x00000000}},  //   _tyds, _rway, diça_,\n  { {0x764d2c36, 0x69c800d9, 0xe0be0044, 0x00000000}},  //   _sway, rkde, _আধুন,\n  { {0x6b820450, 0x2d9c0010, 0x2d8e008e, 0x00000000}},  //   _ubog, ldve_, lefe_,\n  { {0xcf93007b, 0x63bd2c37, 0xdb090065, 0x00000000}},  //   נטש_, _rosn, vjeç,\n  { {0x764d01aa, 0x63bd0036, 0x5b130088, 0x00000000}},  //   _vway, _sosn, _сміт,\n  { {0x63bd0059, 0xc953034e, 0x00000000, 0x00000000}},  //   _posn, _עמק_,   ,\n  { {0xe3bf027b, 0x764d0202, 0x00000000, 0x00000000}},  //   _viño_, _tway,   ,\n  { {0xe167003b, 0x32010062, 0x8c1b009b, 0x00000000}},  // [82b0] еђен, tohy_, לולי,\n  { {0x8cb1013d, 0x00000000, 0x00000000, 0x00000000}},  //   _अपलो,   ,   ,\n  { {0xc953007b, 0x61e503fb, 0x63bd0048, 0x00000000}},  //   רמע_, rihl, _tosn,\n  { {0x60c500b0, 0x00000000, 0x00000000, 0x00000000}},  //   ryhm,   ,   ,\n  { {0xee380106, 0xd35600b3, 0x4433002b, 0x00000000}},  //   ені_, _שישי_, _hux_,\n  { {0x442b2c38, 0x1d090216, 0x7bc900b5, 0x00000000}},  //   _hic_, мели_, wkeu,\n  { {0xace800a1, 0x645a0c1d, 0x00000000, 0x00000000}},  //   ٹرول_, štiv,   ,\n  { {0x44330066, 0xddc20006, 0x442b0093, 0x00000000}},  //   _mux_, ruoš, _jic_,\n  { {0x442b094e, 0x44330f04, 0x7bc9178a, 0x00000000}},  //   _mic_, _lux_, rkeu,\n  { {0x3f8f000c, 0x442b2c39, 0xddc20006, 0x00000000}},  //   legu_, _lic_, puoš,\n  { {0x99910010, 0x442b2c3a, 0xc212009b, 0x00000000}},  //   öző_, _oic_, שהי_,\n  { {0x442b2a89, 0xf77201fa, 0x3f8f018e, 0x00000000}},  //   _nic_, جاد_, negu_,\n  { {0x4433028c, 0x00000000, 0x00000000, 0x00000000}},  //   _aux_,   ,   ,\n  { {0x7d04014a, 0x442b2c3b, 0xdce10279, 0x00000000}},  //   şise, _aic_, _halı,\n  { {0xdce1011f, 0x6018008e, 0x3f8f002d, 0x00000000}},  //   _kalı, líme, kegu_,\n  { {0x442b19dd, 0x3f8f016e, 0x739900ed, 0x00000000}},  //   _cic_, jegu_, нтус_,\n  { {0x442b0919, 0x443300f4, 0xa2060242, 0x00000000}},  // [82c0] _dic_, _eux_, впад,\n  { {0xb1430902, 0x06570097, 0x7c2b00d4, 0x00000000}},  //   инул, _שייך_, _ligr,\n  { {0xe0d20025, 0x27f702fd, 0xd6a900a6, 0x00000000}},  //   جزء_, _سفید_, _قدیم_,\n  { {0x2d8500ab, 0x6e46007e, 0xddce0036, 0x00000000}},  //   _able_, ведз, żdża,\n  { {0xc3200044, 0x645c037f, 0x7dd400d4, 0x00000000}},  //   _ফ্রি_, lsri, _làse,\n  { {0x44202266, 0x6143008b, 0x442b001a, 0x00000000}},  //   lmi_, _вера, _zic_,\n  { {0xdce1047f, 0x7c2b00e0, 0x2d8e0173, 0x00000000}},  //   _balı, _bigr, refe_,\n  { {0x44200607, 0xd9ca006e, 0x7c2b00d4, 0x00000000}},  //   nmi_, िस्ट, _cigr,\n  { {0xde7700a1, 0x6018008e, 0xdce1005a, 0x00000000}},  //   _لینڈ_, gíme, _dalı,\n  { {0x98b800ed, 0x683e0089, 0x7c2b0544, 0x00000000}},  //   елот_, _līde, _eigr,\n  { {0x6d581254, 0x4ce00055, 0x44200027, 0x00000000}},  //   mava, _পুরু, kmi_,\n  { {0x6d58006c, 0x44202325, 0xbb460741, 0x00000000}},  //   lava, jmi_, _редк,\n  { {0x442b00d4, 0xb5fb0047, 0x29020046, 0x00000000}},  //   _ric_, nság, łka_,\n  { {0x442b0065, 0x442001c2, 0x7dcf01e3, 0x00000000}},  //   _sic_, emi_, _løsn,\n  { {0x442b2c3c, 0x645c0039, 0xdb0b02d0, 0x00000000}},  //   _pic_, gsri, _angè,\n  { {0xa77503f3, 0xa3dd03d7, 0x6d58006c, 0x00000000}},  //   _слич, थों_, hava,\n  { {0x6d58021e, 0x442b0129, 0xb5fb0051, 0x00000000}},  // [82d0] kava, _vic_, hrái,\n  { {0x6d580119, 0x442b0b3d, 0x443300f8, 0x00000000}},  //   java, _wic_, _tux_,\n  { {0x442b2ac3, 0x3c380010, 0x3f8f010e, 0x00000000}},  //   _tic_, _név_, tegu_,\n  { {0x442b00d4, 0xb5fb0181, 0x44201f86, 0x00000000}},  //   _uic_, cuár, cmi_,\n  { {0x645a049c, 0x765d0056, 0x35a8006e, 0x00000000}},  //   štit, nssy, _छोड़,\n  { {0x6d58006c, 0x6575002b, 0xa3c30164, 0x00000000}},  //   gava, ngzh, ्सव_,\n  { {0xdb0b00f4, 0x7c2b0197, 0x2c0f0061, 0x00000000}},  //   _ingé, _pigr, ातलं_,\n  { {0xdce1006b, 0x7c3e0428, 0x00000000, 0x00000000}},  //   _qalı, ípra,   ,\n  { {0x6d58016e, 0x7c2b2014, 0xb5fb0048, 0x00000000}},  //   bava, _vigr, arái,\n  { {0x6d58016c, 0x4420008d, 0x3c3800f4, 0x00000000}},  //   cava, zmi_, _fév_,\n  { {0x44201191, 0xd7af0061, 0xdce1006b, 0x00000000}},  //   ymi_, टांच, _talı,\n  { {0x1b050044, 0xbbeb0025, 0x00000000, 0x00000000}},  //   শেষে_, _غرام_,   ,\n  { {0xff7a0049, 0xaba80439, 0x645c00e5, 0x00000000}},  //   עטשמ, _جهنم_, wsri,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x44202c3d, 0x2a7f006c, 0xb5fb2c3e, 0x00000000}},  //   tmi_, ltub_, tuár,\n  { {0x6d581f7f, 0x4420006c, 0x80a70061, 0x00000000}},  //   zava, umi_, घटने,\n  { {0xdcfa0089, 0xe8060061, 0x2e3901aa, 0x00000000}},  // [82e0] _patī, रवठा_, _nèf_,\n  { {0x644100d6, 0x6d5800fa, 0xddd40027, 0x00000000}},  //   ílic, xava, _ťažk,\n  { {0x6d58006c, 0x2a7f006c, 0x8fa6003b, 0x00000000}},  //   vava, htub_, лаже,\n  { {0x44440a8a, 0xb4c20316, 0x2a7f2c3f, 0x00000000}},  //   _it_, ्नी_, ktub_,\n  { {0x6d580004, 0x44440263, 0xa3c3006e, 0x00000000}},  //   tava, _ht_, ्सर_,\n  { {0x444424e7, 0x27030011, 0xb5fb1a43, 0x00000000}},  //   _kt_, ổng_, trái,\n  { {0x6d5806a6, 0x44442c40, 0xb5fb0047, 0x00000000}},  //   rava, _jt_, sság,\n  { {0x7dc6009f, 0xb5fb0051, 0x7dd400d4, 0x00000000}},  //   _aðst, rrái, _bàsc,\n  { {0x44440736, 0x0aea0054, 0x76440009, 0x00000000}},  //   _lt_, عربي_, _ntiy,\n  { {0x44440010, 0xf27b0049, 0xc27b01ce, 0x00000000}},  //   _ot_, עריש, עריי,\n  { {0x4444143d, 0x26e20044, 0x7d05010f, 0x00000000}},  //   _nt_, _গুলো_, ühst,\n  { {0x200607a5, 0x765d0239, 0x2d9e00ab, 0x00000000}},  //   nooi_, tssy, _hate_,\n  { {0x44442c41, 0xa91c0027, 0x63af0085, 0x00000000}},  //   _at_, teľs, _rncn,\n  { {0x0cb60055, 0xb5fb0428, 0x765d1fbc, 0x00000000}},  //   জনীত, hráv, rssy,\n  { {0x94d40088, 0xa4d40088, 0x2d9e2c42, 0x00000000}},  //   борц, борі, _mate_,\n  { {0x44442c43, 0x2d9e00ab, 0x00000000, 0x00000000}},  //   _dt_, _late_,   ,\n  { {0x44440a8d, 0xe5e502fd, 0xfc3f0161, 0x00000000}},  // [82f0] _et_, _نزدی, _čím_,\n  { {0x44440047, 0x2d9e0065, 0x00000000, 0x00000000}},  //   _ft_, _nate_,   ,\n  { {0x92b50044, 0xa0a7007c, 0x200601c3, 0x00000000}},  //   জনে_, ышал, fooi_,\n  { {0x20060007, 0x66070b18, 0xb4d1006e, 0x00000000}},  //   gooi_, lojk, वनी_,\n  { {0x2d9e1f5b, 0x444401a2, 0x00000000, 0x00000000}},  //   _bate_, _zt_,   ,\n  { {0xd658012e, 0x22490149, 0x2d9e001a, 0x00000000}},  //   ניות_, mpak_, _cate_,\n  { {0xabd500e1, 0xeb9902d3, 0x22490058, 0x00000000}},  //   ициј, вий_, lpak_,\n  { {0x3ff9007b, 0xb5fb004a, 0x9e950014, 0x00000000}},  //   _ספּע, nsáb, _پارچ,\n  { {0x224901b5, 0x2d9e085d, 0x00000000, 0x00000000}},  //   npak_, _fate_,   ,\n  { {0xe8850069, 0x00000000, 0x00000000, 0x00000000}},  //   агоп,   ,   ,\n  { {0x7c9501fa, 0x6ce40088, 0x2a7f006c, 0x00000000}},  //   _خلاص, _ліце, stub_,\n  { {0x2d210061, 0x2249011c, 0x2d9e0059, 0x00000000}},  //   मधील_, kpak_, _zate_,\n  { {0x64450065, 0x2d9e2c44, 0xa3b9013d, 0x00000000}},  //   _athi, _yate_, चान_,\n  { {0x4444112d, 0x98a501fc, 0x9fb800b9, 0x00000000}},  //   _pt_, _вике, včí_,\n  { {0xb4c202fb, 0x69c3001a, 0x44440082, 0x00000000}},  //   ्ने_, _ione, _qt_,\n  { {0x44441287, 0x69c30238, 0xb5fb0285, 0x00000000}},  //   _vt_, _hone, dráu,\n  { {0x44440263, 0x6018004f, 0x660700ee, 0x00000000}},  // [8300] _wt_, jíma, bojk,\n  { {0x44442c45, 0x69c300ab, 0xbbd2007d, 0x00000000}},  //   _tt_, _jone, _तत्क,\n  { {0x4444067e, 0x69c32c46, 0x2d9e1eed, 0x00000000}},  //   _ut_, _mone, _rate_,\n  { {0xddc2001e, 0x6d41000d, 0x03a60d68, 0x00000000}},  //   droš, _afla, _тимо,\n  { {0x2d9e1089, 0x200601d6, 0x00000000, 0x00000000}},  //   _pate_, rooi_,   ,\n  { {0x2b4d001c, 0x69c30339, 0xcf250025, 0x00000000}},  //   ebec_, _none, حرمي,\n  { {0x090b0044, 0xb5fb0161, 0x00000000, 0x00000000}},  //   হেতু_, práv,   ,\n  { {0x0b8a05a5, 0xbae70044, 0x6d412c47, 0x00000000}},  //   тски_, _পড়ছ, _efla,\n  { {0x2a6d0209, 0x6d410016, 0x69c31c13, 0x00000000}},  //   greb_, _ffla, _bone,\n  { {0x69c316ca, 0x4e7b00b6, 0x3f860173, 0x00000000}},  //   _cone, _באמצ, lfou_,\n  { {0x69c32c48, 0x313701f8, 0x66070119, 0x00000000}},  //   _done, ינים_, vojk,\n  { {0x961f0309, 0xe695007c, 0xaa57009e, 0x00000000}},  //   पष्ट_, бимы, _چلنا_,\n  { {0x86740088, 0x00000000, 0x00000000, 0x00000000}},  //   оляє,   ,   ,\n  { {0x69c3005b, 0x00000000, 0x00000000, 0x00000000}},  //   _gone,   ,   ,\n  { {0xe4a40517, 0xb8eb0044, 0xb5fb01e5, 0x00000000}},  //   орто, _রে_, drát,\n  { {0x69c32c49, 0x224901d6, 0x8335005e, 0x00000000}},  //   _zone, tpak_, снах,\n  { {0x27e901a3, 0x66070740, 0x69c30095, 0x00000000}},  // [8310] _iman_, pojk, _yone,\n  { {0x22492c4a, 0xf5950025, 0x683e0089, 0x00000000}},  //   rpak_, _الدج, _zīda,\n  { {0xd1380265, 0x22492c4b, 0x43950072, 0x00000000}},  //   рху_, spak_, _ланс,\n  { {0x6018000c, 0x27e901f3, 0x2fc400f6, 0x00000000}},  //   tíma, _jman_, _comg_,\n  { {0x6d41010f, 0xb5fb2773, 0xbea502dc, 0x00000000}},  //   _pfla, brát, салк,\n  { {0x0cb60055, 0x629d002b, 0xb5fb029d, 0x00000000}},  //   জনৈত, _isso, crát,\n  { {0x27e900b0, 0x69c30007, 0x3c9300a6, 0x00000000}},  //   _oman_, _rone, تیاز,\n  { {0x27e9011c, 0x2a6d2c4c, 0x351c009b, 0x00000000}},  //   _nman_, treb_, כוונ,\n  { {0x69c304a9, 0x2b4d2c4d, 0x00000000, 0x00000000}},  //   _pone, rbec_,   ,\n  { {0x27e90169, 0x69da00ab, 0xdef80783, 0x00000000}},  //   _aman_, ghte, _тыс_,\n  { {0x69c32af8, 0x07a60088, 0xdd150070, 0x00000000}},  //   _vone, банн, _اواخ,\n  { {0x629d06c0, 0x69c300b5, 0xc3000044, 0x00000000}},  //   _osso, _wone, ্ধতি_,\n  { {0x69c30376, 0x7ccc0089, 0x00000000, 0x00000000}},  //   _tone, _vērš,   ,\n  { {0x69da15a6, 0x27e9022b, 0x69c300e7, 0x00000000}},  //   chte, _eman_, _uone,\n  { {0x044603f3, 0x25a101c4, 0x628f0026, 0x00000000}},  //   себн, _dahl_, _apco,\n  { {0x083a0049, 0x7bdb2c4e, 0x00000000, 0x00000000}},  //   _געקל, nhuu,   ,\n  { {0xb5fb13ae, 0x00000000, 0x00000000, 0x00000000}},  // [8320] trát,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x629d00f4, 0x6f1b008e, 0x2fc40022, 0x00000000}},  //   _esso, _azuc, _pomg_,\n  { {0x25a10598, 0x201f2c4f, 0x4424135a, 0x00000000}},  //   _zahl_, _chui_, _òm_,\n  { {0x63a42c50, 0x248c002b, 0x69da00b0, 0x00000000}},  //   mdin, ħdmu_, yhte,\n  { {0x63a42c51, 0x443a0036, 0x62840039, 0x00000000}},  //   ldin, _kup_, mtio,\n  { {0x6284021e, 0x443a0c51, 0xf41f00b0, 0x00000000}},  //   ltio, _jup_, _yhä_,\n  { {0x443a037e, 0x5bd20061, 0x00f700a0, 0x00000000}},  //   _mup_, तसेव, _המלך_,\n  { {0x63a400c7, 0x6284030a, 0x443a1de0, 0x00000000}},  //   idin, ntio, _lup_,\n  { {0x984a005e, 0x443a1cf6, 0x27e9023a, 0x00000000}},  //   ляма_, _oup_, _sman_,\n  { {0xdb4f005e, 0xb5fb2c52, 0x443a23ed, 0x00000000}},  //   _ню_, krár, _nup_,\n  { {0x69da008d, 0x6d5a0039, 0x63a400b5, 0x00000000}},  //   shte, _heta, jdin,\n  { {0x63a40472, 0x6d5a020c, 0x689200a1, 0x00000000}},  //   ddin, _keta, _کیجئ,\n  { {0xd6d801fb, 0x7c3a0066, 0x62840606, 0x00000000}},  //   стю_, _kutr, dtio,\n  { {0xdce8011f, 0x6d5a046e, 0x395e1fcb, 0x00000000}},  //   _kadı, _meta, mats_,\n  { {0x6d5a2c53, 0x395e0f4a, 0x7c3a002d, 0x00000000}},  //   _leta, lats_, _mutr,\n  { {0xb33b09f7, 0x82f80025, 0x6d5a0460, 0x00000000}},  // [8330] _caça, مركز_, _oeta,\n  { {0x7c3a0907, 0x395e04bd, 0x63a40541, 0x00000000}},  //   _outr, nats_, adin,\n  { {0xceeb007a, 0x6284028a, 0x93270063, 0x00000000}},  //   گران_, atio, _گردن,\n  { {0xb33b2c54, 0x7e620061, 0x395e00f4, 0x00000000}},  //   _faça, fsop, hats_,\n  { {0x6284030a, 0x7c3a028c, 0x395e2c55, 0x00000000}},  //   ctio, _autr, kats_,\n  { {0x31350c96, 0x6d5a0475, 0xdcf8010a, 0x00000000}},  //   _февр, _ceta, nevė,\n  { {0x395e2c56, 0x7c3a001a, 0x201f0011, 0x00000000}},  //   dats_, _cutr, _thui_,\n  { {0x69d8009f, 0x7c3a00c4, 0x00000000, 0x00000000}},  //   _alve, _dutr,   ,\n  { {0xe9d9005c, 0x6d5a0065, 0x7bdb00b5, 0x00000000}},  //   ики_, _feta, rhuu,\n  { {0x395e0129, 0x63a40006, 0x7c3a00b4, 0x00000000}},  //   gats_, zdin, _futr,\n  { {0x29c9049a, 0x63a40007, 0x6284002d, 0x00000000}},  //   _súas_, ydin, ztio,\n  { {0x69d8121b, 0x6d5a09ac, 0x907a0097, 0x00000000}},  //   _elve, _zeta, סטרי,\n  { {0x395e0fdb, 0x443a00f4, 0xab64008b, 0x00000000}},  //   bats_, _sup_, _хвіл,\n  { {0x395e2ae8, 0x443a1541, 0xb33b00c4, 0x00000000}},  //   cats_, _pup_, _raça,\n  { {0x044304b6, 0xdce80477, 0x63a41569, 0x00000000}},  //   десн, _yadı, tdin,\n  { {0x63a40343, 0x29c9049a, 0x7f5b008e, 0x00000000}},  //   udin, _túas_, _neuq,\n  { {0x63a4271c, 0x98a5005a, 0x6284009d, 0x00000000}},  // [8340] rdin, malı_, utio,\n  { {0x628400ab, 0x443a12da, 0xe69302fd, 0x00000000}},  //   rtio, _tup_, _کلید,\n  { {0x6284028a, 0xdbd1014a, 0x3ead000a, 0x00000000}},  //   stio, _güçl, _aret_,\n  { {0x6284030a, 0x6d5a0127, 0x98a5005d, 0x00000000}},  //   ptio, _seta, nalı_,\n  { {0x6d5a2429, 0x7c3a0213, 0x4e960380, 0x00000000}},  //   _peta, _sutr, تشار,\n  { {0x7c3a0169, 0x3ead04bd, 0x2bd20061, 0x00000000}},  //   _putr, _dret_, तस्थ,\n  { {0xaff5026c, 0x6d5a003b, 0x395e0129, 0x00000000}},  //   _کہنا_, _veta, vats_,\n  { {0xdce8005f, 0x3ead0e6d, 0xaa660264, 0x00000000}},  //   _qadı, _fret_, оток,\n  { {0x395e120d, 0x6d5a020c, 0x3ead1014, 0x00000000}},  //   tats_, _teta, _gret_,\n  { {0xddc20036, 0x670e013d, 0x442215f8, 0x00000000}},  //   społ, _सड़क_, _lhk_,\n  { {0x395e0f4a, 0xeb9a0200, 0x2cac0016, 0x00000000}},  //   rats_, _вие_, _urdd_,\n  { {0x395e0f4a, 0x56950184, 0x44222c57, 0x00000000}},  //   sats_, памт, _nhk_,\n  { {0x395e0129, 0x37071662, 0x39491f4a, 0x00000000}},  //   pats_, ючов, _şase_,\n  { {0x69d8068f, 0x00000000, 0x00000000, 0x00000000}},  //   _ulve,   ,   ,\n  { {0xd90f007e, 0x7c2200e7, 0x00000000, 0x00000000}},  //   _ць_, _khor,   ,\n  { {0xedb70309, 0x44222c58, 0x98a50477, 0x00000000}},  //   _इच्छ, _chk_, calı_,\n  { {0xe1f30464, 0x7c220fcc, 0xa2ad0061, 0x00000000}},  // [8350] وسط_, _mhor, ीमध्,\n  { {0x44220004, 0x7c2200f6, 0xdddb016e, 0x00000000}},  //   _ehk_, _lhor, _spuž,\n  { {0x7c22002d, 0xb881013e, 0x395c000a, 0x00000000}},  //   _ohor, žíve, _mevs_,\n  { {0x3ead2c59, 0xf49400a6, 0x7ddd000a, 0x00000000}},  //   _pret_, _کشید, _mèse,\n  { {0x44290073, 0xb3ba00b6, 0xe298007e, 0x00000000}},  //   mma_, _המרכ, _даў_,\n  { {0x4429021e, 0x7c220219, 0x270a001d, 0x00000000}},  //   lma_, _ahor, ờng_,\n  { {0x44290919, 0x98a50279, 0x506400d7, 0x00000000}},  //   oma_, yalı_, _отта,\n  { {0x7c220620, 0x442901f6, 0x3ead0129, 0x00000000}},  //   _chor, nma_, _tret_,\n  { {0x6aa4037e, 0x44291263, 0x7c22120e, 0x00000000}},  //   _šifr, ima_, _dhor,\n  { {0xe9d900aa, 0x4429056c, 0x9b02008b, 0x00000000}},  //   ско_, hma_, эзыд,\n  { {0x7c22002a, 0x442912d9, 0x98a5005a, 0x00000000}},  //   _fhor, kma_, talı_,\n  { {0x442906a6, 0x7c222c5a, 0x00000000, 0x00000000}},  //   jma_, _ghor,   ,\n  { {0x44290acc, 0x98ab014a, 0xbb3a00b3, 0x00000000}},  //   dma_, ılık_, _העני,\n  { {0x7c290c49, 0x442901d5, 0x44220023, 0x00000000}},  //   lmer, ema_, _shk_,\n  { {0x98a5047f, 0x7c290207, 0xb5fb00b9, 0x00000000}},  //   palı_, omer, psán,\n  { {0x44292c5b, 0x7c2900b5, 0xc2460147, 0x00000000}},  //   gma_, nmer, знак,\n  { {0xb77b009b, 0x7c290253, 0x224b0082, 0x00000000}},  // [8360] _האפש, imer, _ctck_,\n  { {0x44291395, 0xb33b00f4, 0x7c292c5c, 0x00000000}},  //   ama_, _faço, hmer,\n  { {0x7c290056, 0x6557009b, 0x00000000, 0x00000000}},  //   kmer, _מביא_,   ,\n  { {0x7c290065, 0x442901ed, 0x00000000, 0x00000000}},  //   jmer, cma_,   ,\n  { {0xa3b902f4, 0x7c290142, 0xa7fd014a, 0x00000000}},  //   चार_, dmer, ksın,\n  { {0x7c220038, 0x471b0049, 0x63a604be, 0x00000000}},  //   _shor, זונג, _hakn,\n  { {0x7c221625, 0x395c0186, 0x61ee002b, 0x00000000}},  //   _phor, _revs_, _imbl,\n  { {0x7c2900c7, 0xdcf80089, 0x8fa3007e, 0x00000000}},  //   gmer, levī, _пасе,\n  { {0x63a60743, 0x291a00d0, 0x7f44004a, 0x00000000}},  //   _makn, _špa_, ñiqu,\n  { {0x44290823, 0x7c220541, 0xdca60bbd, 0x00000000}},  //   zma_, _whor, _нази,\n  { {0x4429000c, 0xa31903d7, 0x7c220905, 0x00000000}},  //   yma_, _दर्ज_, _thor,\n  { {0x44290a89, 0x63a60091, 0x00000000, 0x00000000}},  //   xma_, _nakn,   ,\n  { {0x44291ed5, 0x61ee008e, 0x00000000, 0x00000000}},  //   vma_, _ombl,   ,\n  { {0x6aa204d2, 0x1a9b0049, 0x44290af2, 0x00000000}},  //   _isof, _לידע, wma_,\n  { {0x442908a1, 0xdcf80089, 0x2578007c, 0x00000000}},  //   tma_, devī, ябрь_,\n  { {0x799a0020, 0x7dcf01e3, 0x7dd400f6, 0x00000000}},  //   letw, _høst, _bàsk,\n  { {0x69ca0091, 0x6aa20066, 0x6d4800d9, 0x00000000}},  // [8370] _kofe, _jsof, _ofda,\n  { {0x799a023a, 0x764d2c5d, 0x7c292c5e, 0x00000000}},  //   netw, _itay, zmer,\n  { {0x7c290016, 0x9f4f009d, 0x4429014a, 0x00000000}},  //   ymer, ligé_, pma_,\n  { {0xc1040380, 0xa7fd014a, 0x08770049, 0x00000000}},  //   روني, zsın, לעבט_,\n  { {0x7c29012d, 0x799a00e7, 0x6da502b8, 0x00000000}},  //   vmer, ketw, дила,\n  { {0x6b820211, 0x69ca0016, 0x764d00e7, 0x00000000}},  //   _acog, _nofe, _mtay,\n  { {0x63a610ed, 0x7094005e, 0xdca2005e, 0x00000000}},  //   _yakn, _парф, ващи,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x69ca00fa, 0x764d0009, 0xcf92009b, 0x00000000}},  //   _bofe, _ntay, _בטן_,\n  { {0x7c290047, 0x200f020c, 0x39e901fb, 0x00000000}},  //   smer, logi_, ідно_,\n  { {0x6aa22c5f, 0xa7fd005d, 0x7c290056, 0x00000000}},  //   _esof, rsın, pmer,\n  { {0x200f005b, 0x7e690006, 0x6b820048, 0x00000000}},  //   nogi_, _kvep, _gcog,\n  { {0x7bcb1396, 0x7dcf0146, 0x00000000, 0x00000000}},  //   _iogu, _føst,   ,\n  { {0x63a602e1, 0x69ca0678, 0x7bcb008e, 0x00000000}},  //   _sakn, _gofe, _hogu,\n  { {0x7bcb0004, 0x660e067f, 0x63a601a3, 0x00000000}},  //   _kogu, robk, _pakn,\n  { {0xc3070044, 0x00000000, 0x00000000, 0x00000000}},  //   লেছি_,   ,   ,\n  { {0x7bcb0119, 0x63a60301, 0xa3e4013d, 0x00000000}},  // [8380] _mogu, _vakn, भोग_,\n  { {0x7bcb008e, 0x6b9b00b5, 0x00da0025, 0x00000000}},  //   _logu, heug, يبات_,\n  { {0x63a601a3, 0x00000000, 0x00000000, 0x00000000}},  //   _takn,   ,   ,\n  { {0x7bcb1e8f, 0xef1a01fe, 0x200f2c60, 0x00000000}},  //   _nogu, оме_, gogi_,\n  { {0xde58007e, 0x601806c0, 0xb33b006b, 0x00000000}},  //   чалі_, ními, _xaçm,\n  { {0x6b820197, 0x61ee001a, 0xbc4a022a, 0x00000000}},  //   _scog, _umbl, очие_,\n  { {0x69ca00f6, 0x7bcb00b4, 0x6aa22c61, 0x00000000}},  //   _rofe, _bogu, _ssof,\n  { {0x69ca2c62, 0x7dcf043e, 0x7bcb00c4, 0x00000000}},  //   _sofe, _søst, _cogu,\n  { {0x7bcb002d, 0x5a34005e, 0x1eaa0014, 0x00000000}},  //   _dogu, ннит, _بازي_,\n  { {0xdb1b01e5, 0x7dcf0146, 0x00000000, 0x00000000}},  //   rkuð, _døss,   ,\n  { {0x2d9c008d, 0x799a0173, 0x764d192b, 0x00000000}},  //   meve_, retw, _stay,\n  { {0x2d9c2c63, 0x7bcb0032, 0x00000000, 0x00000000}},  //   leve_, _gogu,   ,\n  { {0x6aa2012d, 0x69ca01c3, 0xeafa02fd, 0x00000000}},  //   _usof, _tofe, _برات_,\n  { {0x2d9c008d, 0x7dd40129, 0x7bcb0023, 0x00000000}},  //   neve_, _bàsi, _zogu,\n  { {0x16340194, 0x200f0022, 0x43950088, 0x00000000}},  //   теря, yogi_, навс,\n  { {0x2d9c29e6, 0x6b8000e0, 0x61fe03cd, 0x00000000}},  //   heve_, ngmg, enpl,\n  { {0x4e0e03d7, 0x2d9c0065, 0x200f000c, 0x00000000}},  // [8390] ाकाई_, keve_, vogi_,\n  { {0x2d9c116b, 0x6b9b001f, 0xdbd60004, 0x00000000}},  //   jeve_, zeug, _hääl,\n  { {0x7e692c64, 0xdb0b0039, 0x2d9c0059, 0x00000000}},  //   _svep, _ingå, deve_,\n  { {0x4f9400ed, 0x61fe0116, 0xdbd601b1, 0x00000000}},  //   вршу, anpl, _jääl,\n  { {0x2d8e0009, 0x7bcb0133, 0x2d9c0023, 0x00000000}},  //   fffe_, _rogu, feve_,\n  { {0x44390038, 0x0ea801fb, 0x2d9c0065, 0x00000000}},  //   _his_, ькій_, geve_,\n  { {0x44390047, 0x7bcb0129, 0x7ddd00d4, 0x00000000}},  //   _kis_, _pogu, _cèsa,\n  { {0x44392c65, 0x00000000, 0x00000000, 0x00000000}},  //   _jis_,   ,   ,\n  { {0x4439061f, 0xeab10025, 0x2d9c0023, 0x00000000}},  //   _mis_, اعب_, beve_,\n  { {0x44390263, 0x2d9c016c, 0x00000000, 0x00000000}},  //   _lis_, ceve_,   ,\n  { {0x443900b0, 0x2fdf0e9f, 0x00000000, 0x00000000}},  //   _ois_, _klug_,   ,\n  { {0xf772004b, 0xdb0b05cb, 0xddc200b9, 0x00000000}},  //   داد_, _angå, dpoř,\n  { {0x2fcd0007, 0xa3b9007d, 0x80d60061, 0x00000000}},  //   _moeg_, चाई_, _मॅने,\n  { {0x4439002a, 0x64a6007e, 0x644800c4, 0x00000000}},  //   _ais_, нага, ídio,\n  { {0xb8f40055, 0x4439001f, 0x6018004a, 0x00000000}},  //   _সে_, _bis_, sími,\n  { {0x2d9c0065, 0x04570025, 0x44390133, 0x00000000}},  //   zeve_, علقة_, _cis_,\n  { {0x44390343, 0xe2970113, 0x27e0005f, 0x00000000}},  // [83a0] _dis_, нат_, _ilin_,\n  { {0x4439037f, 0x7981005b, 0x065700a3, 0x00000000}},  //   _eis_, nglw, _רייך_,\n  { {0x443901d5, 0x61fe00f8, 0x2d9c0023, 0x00000000}},  //   _fis_, rnpl, veve_,\n  { {0x24f5007e, 0x8afd00b9, 0x7c390016, 0x00000000}},  //   _шчыр, zařa, _niwr,\n  { {0x2d9c008d, 0x245e00b9, 0x5ed30044, 0x00000000}},  //   teve_, lům_, _দেবে,\n  { {0x4439001a, 0x2d8e009d, 0x3d940264, 0x00000000}},  //   _zis_, uffe_, тикр,\n  { {0x2d9c008d, 0x27e0003c, 0x2fdf0218, 0x00000000}},  //   reve_, _olin_, _flug_,\n  { {0x802602fd, 0x2d9c0065, 0x2242010e, 0x00000000}},  //   _سرزم, seve_, _kukk_,\n  { {0x7c39018e, 0x2d9c0065, 0xd007005e, 0x00000000}},  //   _diwr, peve_, _чете_,\n  { {0x32030061, 0x27e0148e, 0x2c570036, 0x00000000}},  //   _xjjy_, _alin_, _będę_,\n  { {0xdbd6021e, 0x29180fdc, 0x22422c66, 0x00000000}},  //   _pääl, æra_, _lukk_,\n  { {0x1ae6005e, 0x245e00b9, 0x27e02c67, 0x00000000}},  //   _поем, dům_, _clin_,\n  { {0x6e3a002b, 0x6d4a0051, 0x7bc6010e, 0x00000000}},  //   _kitb, ocfa, ökuu,\n  { {0x44392c68, 0x27e00039, 0x6e3a0066, 0x00000000}},  //   _sis_, _elin_, _jitb,\n  { {0x44392c69, 0xdbd6021e, 0x6e3a010f, 0x00000000}},  //   _pis_, _tääl, _mitb,\n  { {0x6e3a2c6a, 0xa4010044, 0x69da037f, 0x00000000}},  //   _litb, ্ষ্য_, lkte,\n  { {0x44390542, 0x1b0e0044, 0x98ac005a, 0x00000000}},  // [83b0] _vis_, াইকে_, madı_,\n  { {0x443901d6, 0x2fdf0058, 0x98ac005d, 0x00000000}},  //   _wis_, _slug_, ladı_,\n  { {0x2fcd006c, 0x656700ca, 0x00000000, 0x00000000}},  //   _poeg_, majh,   ,\n  { {0xddc20c47, 0x98ac019a, 0x443904e7, 0x00000000}},  //   grož, nadı_, _uis_,\n  { {0x2fcd00c7, 0x6e3a2c6b, 0x2fdf01bb, 0x00000000}},  //   _voeg_, _bitb, _vlug_,\n  { {0x3f9d0093, 0x7c39005b, 0xc69408cd, 0x00000000}},  //   sewu_, _siwr, ראס_,\n  { {0x301b0025, 0xdb001f7d, 0x63ad2a36, 0x00000000}},  //   _فترة_, ndmæ, odan,\n  { {0x4034007c, 0x69da10ae, 0xeb99007c, 0x00000000}},  //   _бесс, ekte, фии_,\n  { {0x63ad10c5, 0x628d0094, 0xb5fb0048, 0x00000000}},  //   idan, ntao, asái,\n  { {0x63ad00b0, 0x00000000, 0x00000000, 0x00000000}},  //   hdan,   ,   ,\n  { {0x63ad2c6c, 0x27e00942, 0x9b950025, 0x00000000}},  //   kdan, _plin_, _للات,\n  { {0x79810016, 0x366a003b, 0x245e013e, 0x00000000}},  //   sglw, мамо_, vům_,\n  { {0x63ad2c6d, 0x21e4010f, 0x00000000, 0x00000000}},  //   ddan, _höhe_,   ,\n  { {0x7ae90047, 0x69da010f, 0x6fc30061, 0x00000000}},  //   mzet, ckte, ळाडू,\n  { {0xa8060265, 0x321304d2, 0x7ae92c6e, 0x00000000}},  //   _изкл, doxy_, lzet,\n  { {0x6f160036, 0x245e00b9, 0x63ad0091, 0x00000000}},  //   życi, rům_, gdan,\n  { {0x7ae90020, 0xd5b10082, 0xdb0b2c6f, 0x00000000}},  // [83c0] nzet, ốc_, _angú,\n  { {0x63ad18d5, 0x867b009b, 0x00000000, 0x00000000}},  //   adan, _קריו,   ,\n  { {0xa50a009a, 0x3d16001c, 0x8fa60242, 0x00000000}},  //   _цена_, _पुढे_, каже,\n  { {0x44442c70, 0x6e3a01c3, 0x63ad019a, 0x00000000}},  //   _iu_, _sitb, cdan,\n  { {0x44442c71, 0x69da01c9, 0x6e940379, 0x00000000}},  //   _hu_, ykte, التا,\n  { {0x4444008d, 0x7ae90790, 0x776400fa, 0x00000000}},  //   _ku_, dzet, _leix,\n  { {0x44442c72, 0xddc21282, 0x0231009e, 0x00000000}},  //   _ju_, prož, _اہلح,\n  { {0x44440119, 0x3d160201, 0xb5fb0051, 0x00000000}},  //   _mu_, _पुणे_, rsái,\n  { {0x7ae90c57, 0x249a0093, 0xbea30269, 0x00000000}},  //   gzet, _lppm_, _катк,\n  { {0x44440e6d, 0xbda505d4, 0x6e3a01b5, 0x00000000}},  //   _ou_, _محمو, _uitb,\n  { {0x44441305, 0x63ad2c73, 0x717b00a3, 0x00000000}},  //   _nu_, ydan, וניס,\n  { {0xb5fb0181, 0x00000000, 0x00000000, 0x00000000}},  //   nsáv,   ,   ,\n  { {0x44442c74, 0x77642b7d, 0x63ad037e, 0x00000000}},  //   _au_, _deix, vdan,\n  { {0x444401f6, 0xceb3009b, 0x7dd400f6, 0x00000000}},  //   _bu_, ביש_, _gàst,\n  { {0x44441305, 0x657a0051, 0x499b00a0, 0x00000000}},  //   _cu_, ótha, _חשוב,\n  { {0x77641175, 0x00000000, 0x00000000, 0x00000000}},  //   _geix,   ,   ,\n  { {0x44441fde, 0x63ad0127, 0xa2c30061, 0x00000000}},  // [83d0] _eu_, rdan, रमध्,\n  { {0x4444133c, 0xa29401e1, 0x63ad0bc7, 0x00000000}},  //   _fu_, рафі, sdan,\n  { {0x4444002d, 0x7ae9054f, 0x94d52c75, 0x00000000}},  //   _gu_, zzet, _сонц,\n  { {0x7ddd0263, 0x65652c76, 0x394e0085, 0x00000000}},  //   _pèso, _hehh, _lffs_,\n  { {0x444408ba, 0x442b0240, 0x9ac4002b, 0x00000000}},  //   _zu_, _ihc_, _jiċċ,\n  { {0x64451080, 0xee3801fb, 0x4444014a, 0x00000000}},  //   _kuhi, вні_, _yu_,\n  { {0x6445006c, 0x44440011, 0x6565006c, 0x00000000}},  //   _juhi, _xu_, _mehh,\n  { {0x6445000b, 0x7ae90493, 0xac96006d, 0x00000000}},  //   _muhi, tzet, انيا_,\n  { {0xdce303c9, 0x7e600016, 0x776400d4, 0x00000000}},  //   manč, _gwmp, _reix,\n  { {0x77641052, 0x7ae92c77, 0x7bdb2c78, 0x00000000}},  //   _seix, rzet, skuu,\n  { {0x7ae90047, 0x7764153d, 0x6d412c79, 0x00000000}},  //   szet, _peix, _igla,\n  { {0x9ac4002b, 0x2369004a, 0x442b2c7a, 0x00000000}},  //   _biċċ, jaaj_, _nhc_,\n  { {0x6445006c, 0xe7372540, 0x7dd400f6, 0x00000000}},  //   _auhi, лею_, _tàst,\n  { {0x444400f4, 0x6615002d, 0x644505bd, 0x00000000}},  //   _pu_, gozk, _buhi,\n  { {0x44440a8d, 0x776409f7, 0xdce30006, 0x00000000}},  //   _qu_, _teix, kanč,\n  { {0x44442c7b, 0xdce3010a, 0x442b0541, 0x00000000}},  //   _vu_, janč, _chc_,\n  { {0x6d4101d9, 0x442b00d4, 0xdce30006, 0x00000000}},  // [83e0] _ogla, _dhc_, danč,\n  { {0x6d410051, 0x00000000, 0x00000000, 0x00000000}},  //   _ngla,   ,   ,\n  { {0x44442c7c, 0x64450ac9, 0x442b00c4, 0x00000000}},  //   _uu_, _guhi, _fhc_,\n  { {0x2a6d2c7d, 0xdce3007f, 0x6d412c7e, 0x00000000}},  //   kseb_, ganč, _agla,\n  { {0x44200563, 0x643b0049, 0x00000000, 0x00000000}},  //   mli_, _רעכנ,   ,\n  { {0x44320ce2, 0xc69300b6, 0x6143007e, 0x00000000}},  //   lmy_, צאו_, _гера,\n  { {0x4420018e, 0xa3b90061, 0xdce32091, 0x00000000}},  //   oli_, चाच_, banč,\n  { {0x4420047f, 0x3a7408fc, 0x75f4006b, 0x00000000}},  //   nli_, алир, _düzə,\n  { {0xaf060780, 0x44201158, 0xe20b0036, 0x00000000}},  //   _спал, ili_, łóż_,\n  { {0x2a970054, 0x44202c7f, 0x3f8600c4, 0x00000000}},  //   ائية_, hli_, lgou_,\n  { {0x683e0964, 0x021700b3, 0x75f4006b, 0x00000000}},  //   _būda, רחים_, _güzə,\n  { {0x3f8601aa, 0x64452c80, 0x443208d2, 0x00000000}},  //   ngou_, _ruhi, jmy_,\n  { {0x44200027, 0xeab20151, 0xdb190036, 0x00000000}},  //   dli_, _دعا_, _dowó,\n  { {0x44200036, 0xdce30107, 0x44320036, 0x00000000}},  //   eli_, zanč, emy_,\n  { {0x44201fe3, 0xe535007c, 0x9ac40066, 0x00000000}},  //   fli_, ревь, _wiċċ,\n  { {0x44200198, 0xdb0b000a, 0x44320ad0, 0x00000000}},  //   gli_, _bagè, gmy_,\n  { {0x81ae0044, 0x00000000, 0x00000000, 0x00000000}},  // [83f0] কান_,   ,   ,\n  { {0x44200198, 0x44322c81, 0x644508b5, 0x00000000}},  //   ali_, amy_, _tuhi,\n  { {0x442024bf, 0x4395008b, 0xdce309f4, 0x00000000}},  //   bli_, _канс, tanč,\n  { {0xb4c30183, 0x44202c82, 0xd25000a1, 0x00000000}},  //   ्ही_, cli_, تنے_,\n  { {0x8d651ac0, 0xea000011, 0xeaa600a1, 0x00000000}},  //   авле, _giầy_, _بٹ_,\n  { {0x3f7500ad, 0x7dd40129, 0x127a0049, 0x00000000}},  //   ều_, _bàsq, _באשע,\n  { {0x5ed30055, 0x228f2c83, 0x463c00a3, 0x00000000}},  //   _দেশে, lük_, געגע,\n  { {0xf0b300a1, 0x2a6d006c, 0x0b45026b, 0x00000000}},  //   _پیچھ, tseb_, шнин,\n  { {0x4a4503f3, 0x63af0190, 0x228f24e0, 0x00000000}},  //   јнов, _macn, nük_,\n  { {0x4420011f, 0x6d410119, 0x44320721, 0x00000000}},  //   zli_, _ugla, zmy_,\n  { {0x44202c84, 0x4806005e, 0xf1b20097, 0x00000000}},  //   yli_, ипов, קסט_,\n  { {0x629d0007, 0x5b15005e, 0x442011ca, 0x00000000}},  //   _opso, _кмет, xli_,\n  { {0x228f0010, 0x4420014a, 0x25a30190, 0x00000000}},  //   jük_, vli_, fejl_,\n  { {0x2d872c85, 0xdb1901aa, 0xeaf809b9, 0x00000000}},  //   ngne_, _fowò, _حرمت_,\n  { {0x4420011f, 0x64a6012d, 0x629d0091, 0x00000000}},  //   tli_, шава, _apso,\n  { {0x44200207, 0xdb0b00d4, 0x00000000, 0x00000000}},  //   uli_, _pagè,   ,\n\n  { {0x4420049d, 0x44320387, 0xf347031b, 0x00000000}},  // [8400] rli_, rmy_, рпул_,\n  { {0xd5a400e9, 0x63af0051, 0x68e400b9, 0x00000000}},  //   _الدی, _eacn, _řidi,\n  { {0x4420144d, 0xb5fb0f18, 0x10a61f25, 0x00000000}},  //   pli_, rsát, риен,\n  { {0x442011ca, 0x03960d99, 0x2d872c86, 0x00000000}},  //   qli_, _троя, egne_,\n  { {0x63a40109, 0x61460256, 0x629d0022, 0x00000000}},  //   mein, _вега, _gpso,\n  { {0xdd90031d, 0xde030088, 0x00000000, 0x00000000}},  //   سوب_, опчи,   ,\n  { {0xcbe605b5, 0x8fa60140, 0x00000000, 0x00000000}},  //   иции, _каве,   ,\n  { {0xdb000047, 0x63a4010f, 0x2d91014a, 0x00000000}},  //   lemé, nein, _özen_,\n  { {0x75e20027, 0xee3a0517, 0xdee30931, 0x00000000}},  //   _rôzn, _ана_, _доти,\n  { {0x63a4001f, 0x3e32026c, 0xe61f00f4, 0x00000000}},  //   hein, _بہتر, ntôt_,\n  { {0x63a40056, 0x228f0148, 0x00000000, 0x00000000}},  //   kein, zük_,   ,\n  { {0x228f005d, 0x61d302fb, 0xab830098, 0x00000000}},  //   yük_, _दक्ष, _душк,\n  { {0x7bc2009d, 0x41c90204, 0xdb000010, 0x00000000}},  //   _inou, रामस, kemé,\n  { {0xaadb0097, 0x00000000, 0x00000000, 0x00000000}},  //   _בחדר,   ,   ,\n  { {0xf36701f9, 0xb4c30164, 0x63a40abe, 0x00000000}},  //   итан, ्हे_, fein,\n  { {0x63a40010, 0xe3b003ab, 0x228f2c87, 0x00000000}},  //   gein, ورق_, tük_,\n  { {0xe6950025, 0x628f0009, 0x2d8c06d2, 0x00000000}},  // [8410] _الخد, _qqco, _ocde_,\n  { {0x228f2c88, 0xc05b01e1, 0xf1a702ea, 0x00000000}},  //   rük_, від_, јран,\n  { {0xea00001d, 0x63af003b, 0x63a41642, 0x00000000}},  //   _giấy_, _tacn, bein,\n  { {0x6457022b, 0x63a400f4, 0x5f740025, 0x00000000}},  //   _itxi, cein, قاهر,\n  { {0x2bc50061, 0x82a4007e, 0xf1a702ea, 0x00000000}},  //   वासा, _даўж, _крвн,\n  { {0xa1841001, 0x7bc21de2, 0x75eb0279, 0x00000000}},  //   _мысл, _anou, _düzg,\n  { {0x2d8700f4, 0xddc9001a, 0xa7fd006b, 0x00000000}},  //   rgne_, _aveţ, nsıs,\n  { {0x3ff90049, 0x6e450014, 0x5ff50c27, 0x00000000}},  //   _עפּע, _هنرم, _узбу,\n  { {0x75eb2c89, 0x00000000, 0x00000000, 0x00000000}},  //   _küzd,   ,   ,\n  { {0x7bc200ab, 0x63a40032, 0x9f440026, 0x00000000}},  //   _enou, zein, _almè_,\n  { {0xa889007e, 0x63a42c8a, 0xacb5083e, 0x00000000}},  //   ыйна_, yein, _دماغ,\n  { {0xdb000010, 0xa09a0049, 0x00000000, 0x00000000}},  //   zemé, נירט,   ,\n  { {0x6457022b, 0xe9ce026b, 0xca480082, 0x00000000}},  //   _atxi, _ек_, _hờn_,\n  { {0x63a42c8b, 0x00000000, 0x00000000, 0x00000000}},  //   wein,   ,   ,\n  { {0x69c304d3, 0x04b510e1, 0x8afd00b9, 0x00000000}},  //   _inne, остя, daři,\n  { {0x6b8907eb, 0x680b0036, 0x62840026, 0x00000000}},  //   ngeg, lędn, tuio,\n  { {0x63a426cf, 0xb5fb0181, 0xdb000010, 0x00000000}},  // [8420] rein, rsár, temé,\n  { {0x05aa2c8c, 0xb5fb02d5, 0x4586003b, 0x00000000}},  //   _свой_, ssár, _угов,\n  { {0x3ead2c8d, 0x63a40ec6, 0x92d80044, 0x00000000}},  //   _aset_, pein, ়ছে_,\n  { {0x645c088a, 0x656e0048, 0x6b8900bb, 0x00000000}},  //   mpri, labh, jgeg,\n  { {0x6b89001c, 0x69c3021e, 0x2006009d, 0x00000000}},  //   dgeg, _onne, rnoi_,\n  { {0x2d91011f, 0x7bc205d2, 0x69d50010, 0x00000000}},  //   _özel_, _snou, özel,\n  { {0x3ead03b5, 0x2704013d, 0x6b892c8e, 0x00000000}},  //   _eset_, रपुर_, fgeg,\n  { {0x69c31e58, 0x656e0051, 0xba54012b, 0x00000000}},  //   _anne, habh, овиј,\n  { {0x6ff50046, 0x75eb011f, 0xdb000030, 0x00000000}},  //   jący, _yüzd, ndmø,\n  { {0xd9100123, 0x645c0f86, 0x61fe010e, 0x00000000}},  //   ویش_, kpri, nipl,\n  { {0x621b00b6, 0x645c016e, 0xd7c40061, 0x00000000}},  //   רויק, jpri, षांच,\n  { {0x69c30ff8, 0xa3cc03d7, 0x61fe014a, 0x00000000}},  //   _enne, लाफ_, hipl,\n  { {0x645c0606, 0xa3cc0316, 0x2bc50067, 0x00000000}},  //   epri, लान_, वारा,\n  { {0x645c00bb, 0x15eb0088, 0x656e00e0, 0x00000000}},  //   fpri, уємо_, gabh,\n  { {0x61fe050e, 0x645c2c8f, 0x0f05013d, 0x00000000}},  //   dipl, gpri, _शख्स_,\n  { {0x61fe01c3, 0x98a7007f, 0x00000000, 0x00000000}},  //   eipl, _agnė_,   ,\n  { {0x27e92c90, 0x61f9007e, 0x645c00d9, 0x00000000}},  // [8430] _ilan_, анаў_, apri,\n  { {0x645c0190, 0xb33b006b, 0x765d0146, 0x00000000}},  //   bpri, _qaçq, mpsy,\n  { {0x463c007b, 0x765d08e0, 0x645c1995, 0x00000000}},  //   _געזע, lpsy, cpri,\n  { {0x75eb011f, 0xdb090051, 0xd5bf0089, 0x00000000}},  //   _düze, hdeá, žādi_,\n  { {0xf41f00b0, 0x00000000, 0x00000000, 0x00000000}},  //   _ikä_,   ,   ,\n  { {0x2718001d, 0x321a0011, 0x61fe0232, 0x00000000}},  //   ọng_, copy_, cipl,\n  { {0x27e9038c, 0x75eb011f, 0x2bc50164, 0x00000000}},  //   _olan_, _güze, वाला,\n  { {0x5f94003b, 0xa3cc0061, 0x8c420242, 0x00000000}},  //   _нист, लाय_, меще,\n  { {0x6b8900b5, 0xdd3a000d, 0x224302ae, 0x00000000}},  //   rgeg, tăţi, _kijk_,\n  { {0x27e9011f, 0x6b892c91, 0x645c0016, 0x00000000}},  //   _alan_, sgeg, ypri,\n  { {0x27e90263, 0x645c107b, 0x224b00ab, 0x00000000}},  //   _blan_, xpri, _luck_,\n  { {0xe73a0893, 0x61fe0a69, 0x645c0190, 0x00000000}},  //   иен_, zipl, vpri,\n  { {0x645c02c2, 0x27e901ed, 0x00000000, 0x00000000}},  //   wpri, _dlan_,   ,\n  { {0xcb3600b6, 0x69c31fd8, 0x27e9006b, 0x00000000}},  //   _ואני_, _unne, _elan_,\n  { {0x656e0051, 0x236000b5, 0x27e906d2, 0x00000000}},  //   rabh, tbij_, _flan_,\n  { {0x27e91625, 0xa6ca0445, 0x224b0133, 0x00000000}},  //   _glan_, _نوبل_, _buck_,\n  { {0xe1fa0551, 0x645c0dc5, 0x236002ae, 0x00000000}},  // [8440] ага_, spri, rbij_,\n  { {0xf65300b6, 0xf77f011f, 0x645c00f4, 0x00000000}},  //   _קצת_, rkçe_, ppri,\n  { {0x321a1124, 0x661c0450, 0x61fe14ac, 0x00000000}},  //   ropy_, mork, ripl,\n  { {0x224b2c92, 0x389a0049, 0x224300d9, 0x00000000}},  //   _fuck_, ייענ, _eijk_,\n  { {0xddc92c93, 0xee3a00e3, 0x61fe016c, 0x00000000}},  //   _sveš, анд_, pipl,\n  { {0xddc90224, 0x1cba0025, 0x75eb18cf, 0x00000000}},  //   _kteř, لاعب_, _tüze,\n  { {0xc0c901f9, 0x3ea9002b, 0x8ed80044, 0x00000000}},  //   _луѓе_, ħata_, _দেশগ,\n  { {0xd00a007c, 0x63b60036, 0x2d800035, 0x00000000}},  //   _тебе_, ndyn, şie_,\n  { {0x661c00b0, 0x49a600ed, 0x62962c94, 0x00000000}},  //   kork, ојна, ntyo,\n  { {0x661c2353, 0x5edc0044, 0xdca602dc, 0x00000000}},  //   jork, _মেথে, _мази,\n  { {0x27e9028c, 0xf2df001d, 0x661c00b4, 0x00000000}},  //   _plan_, _ngân_, dork,\n  { {0xad1b00a0, 0x00000000, 0x00000000, 0x00000000}},  //   _דובר,   ,   ,\n  { {0x63b60016, 0x661c2c95, 0x00000000, 0x00000000}},  //   ddyn, fork,   ,\n  { {0xdcfa011f, 0x27e9010f, 0x2d9e016c, 0x00000000}},  //   _hatı, _wlan_, _jbte_,\n  { {0xdcfa011f, 0x224300b5, 0x20070010, 0x00000000}},  //   _katı, _rijk_, énik_,\n  { {0x69d802cc, 0x27e92c96, 0x7ddd00d4, 0x00000000}},  //   _hove, _ulan_, _hèst,\n  { {0x69d800b0, 0x236b012d, 0x672d04eb, 0x00000000}},  // [8450] _kove, _vecj_, _uzaj,\n  { {0x69d82c97, 0x68120089, 0x661c05cd, 0x00000000}},  //   _jove, rāde, cork,\n  { {0x69d800ab, 0x764d004a, 0x63b60045, 0x00000000}},  //   _move, _huay, bdyn,\n  { {0x224b0719, 0x224300b5, 0x2bb6007d, 0x00000000}},  //   _tuck_, _wijk_, _अफगा,\n  { {0xed59005e, 0x9e640088, 0xca480082, 0x00000000}},  //   бол_, двід, _bờm_,\n  { {0x69d80127, 0xa37b006c, 0x764d014a, 0x00000000}},  //   _nove, _slõh, _muay,\n  { {0x459c007b, 0x5ed30055, 0xdcfa005a, 0x00000000}},  //   יסגע, _দেখে, _batı,\n  { {0x6e95007c, 0xdc390276, 0x69d80af3, 0x00000000}},  //   _нибу, tçın, _aove,\n  { {0x81ae08b7, 0x69d802ae, 0xa3cc0164, 0x00000000}},  //   কার_, _bove, लात_,\n  { {0x69d82000, 0x2cbe0066, 0xdce10035, 0x00000000}},  //   _cove, _frtd_, _celă,\n  { {0x69d81d3f, 0x661c0142, 0x31bd0044, 0x00000000}},  //   _dove, vork, _আকাশ,\n  { {0x201d0036, 0x69ce0a35, 0x661c00ab, 0x00000000}},  //   nowi_, öber, work,\n  { {0x661c0387, 0xdce800b9, 0xf71a007e, 0x00000000}},  //   tork, _oddě, сіны_,\n  { {0x69d8169a, 0x2ca90036, 0x7e6900e7, 0x00000000}},  //   _gove, ładu_, _mwep,\n  { {0xdcfa005a, 0x201d0036, 0x76452c98, 0x00000000}},  //   _yatı, kowi_, _dihy,\n  { {0x69d82c99, 0xdcfa006b, 0xddc900b9, 0x00000000}},  //   _zove, _xatı, _vteř,\n  { {0x661c0169, 0x764d0211, 0x63b60036, 0x00000000}},  // [8460] pork, _guay, rdyn,\n  { {0x69d8027b, 0x422301f9, 0xd9a90061, 0x00000000}},  //   _xove, едув, _कसोट,\n  { {0x81ae0055, 0x94760054, 0x62960c2d, 0x00000000}},  //   কাল_, _عددا, styo,\n  { {0x3ebf0b50, 0x6d4800f6, 0x8afd013e, 0x00000000}},  //   _brut_, _sgda, nařs,\n  { {0x2bbf0061, 0x44220030, 0xdee3003b, 0x00000000}},  //   _शोधा, _ikk_, ноци,\n  { {0xdcfa047f, 0x68e1158f, 0x61fc0f3a, 0x00000000}},  //   _satı, kyld, _umrl,\n  { {0x69d80638, 0x645800f4, 0x4422006c, 0x00000000}},  //   _rove, _évid, _kkk_,\n  { {0x75eb005f, 0xbe0600a1, 0xdcfa006b, 0x00000000}},  //   _müza, _کوئٹ, _qatı,\n  { {0x69d801d9, 0x6446009f, 0x5a3409e8, 0x00000000}},  //   _pove, _miki, мнит,\n  { {0x64460020, 0x7c66036d, 0x68e10030, 0x00000000}},  //   _liki, _فاصل, fyld,\n  { {0x9b46007a, 0x69d82c9a, 0xdb1901a2, 0x00000000}},  //   _فناو, _vove, _anwä,\n  { {0x64460020, 0x683f0006, 0x69d824e1, 0x00000000}},  //   _niki, _kūdi, _wove,\n  { {0x7c221dc0, 0x9f4d0039, 0x69d81ea7, 0x00000000}},  //   _ikor, _umeå_, _tove,\n  { {0x4a7b00a3, 0x644600ea, 0x62842c9b, 0x00000000}},  //   _פרוב, _aiki, drio,\n  { {0x64462c9c, 0x2c550089, 0x44220109, 0x00000000}},  //   _biki, _kāda_, _bkk_,\n  { {0x683f001e, 0x26c000f7, 0x671e007d, 0x00000000}},  //   _līdz, _frio_, _युवक_,\n  { {0x44220018, 0x644604d4, 0xe80203d7, 0x00000000}},  // [8470] _dkk_, _diki, _लगता_,\n  { {0x7afd049a, 0x645a0df8, 0x44220145, 0x00000000}},  //   ústi, ític, _ekk_,\n  { {0x62840219, 0x64462c9d, 0xdb0b0047, 0x00000000}},  //   ario, _fiki, _magá,\n  { {0x3ebf0035, 0x7c220009, 0x683f0964, 0x00000000}},  //   _prut_, _nkor, _būdi,\n  { {0x4ea7008b, 0xdfce007a, 0x201d0036, 0x00000000}},  //   яржа, شيو_, rowi_,\n  { {0x44292c9e, 0x7c222c9f, 0x64462367, 0x00000000}},  //   lla_, _akor, _ziki,\n  { {0x44290198, 0x611400ed, 0x6b9b2ca0, 0x00000000}},  //   ola_, _здру, tfug,\n  { {0x44291ed0, 0x69dc0039, 0x68120089, 0x00000000}},  //   nla_, ören, kāda,\n  { {0x44291e3a, 0x6b9b02d8, 0x52df0044, 0x00000000}},  //   ila_, rfug, _নেতৃ,\n  { {0x44290161, 0xf2df0011, 0x7c2201a3, 0x00000000}},  //   hla_, _ngâm_, _ekor,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xad1a00bd, 0x44291dfb, 0x3f8f020c, 0x00000000}},  //   _ווער, jla_, nggu_,\n  { {0x7c29011f, 0x4429004f, 0xa3cc0309, 0x00000000}},  //   mler, dla_, लास_,\n  { {0x64a60099, 0x6446288b, 0x44220027, 0x00000000}},  //   мага, _siki, _skk_,\n  { {0x442919bd, 0x64460169, 0x69b20061, 0x00000000}},  //   fla_, _piki, _असती,\n  { {0x7c29011f, 0x44290213, 0x62842ca1, 0x00000000}},  //   nler, gla_, trio,\n  { {0xec09001d, 0xf1c9001c, 0xe297005e, 0x00000000}},  // [8480] yến_, रांन, мат_,\n  { {0x4429000d, 0x7c2914c9, 0x6284271c, 0x00000000}},  //   ala_, hler, rrio,\n  { {0x44292ca2, 0x7c290483, 0x64462ca3, 0x00000000}},  //   bla_, kler, _tiki,\n  { {0x4429001a, 0xe8d60049, 0xd8d60049, 0x00000000}},  //   cla_, ווער_, וועט_,\n  { {0x7c2905ba, 0x44200082, 0x7c3b0146, 0x00000000}},  //   dler, moi_, dmur,\n  { {0x442010c3, 0xa3cc007d, 0x7bdd010f, 0x00000000}},  //   loi_, लाव_, ösun,\n  { {0x7c29014a, 0x212c0051, 0x2ca50087, 0x00000000}},  //   fler, _ádh_, _cpld_,\n  { {0x7c2901bf, 0x44201256, 0xdb000129, 0x00000000}},  //   gler, noi_, temà,\n  { {0xc986017a, 0x34ab006e, 0x00000000, 0x00000000}},  //   муни, _चन्द,   ,\n  { {0x4429011f, 0x7e620a23, 0x7c3b0020, 0x00000000}},  //   zla_, mpop, amur,\n  { {0x4429011f, 0x44200efc, 0x7c2901e3, 0x00000000}},  //   yla_, koi_, bler,\n  { {0xca48001d, 0x44200065, 0x7c29009d, 0x00000000}},  //   _lời_, joi_, cler,\n  { {0x44290039, 0x8c430242, 0x7e620009, 0x00000000}},  //   vla_, _реце, npop,\n  { {0x7c200010, 0x44292ca4, 0x7e6200e7, 0x00000000}},  //   lomr, wla_, ipop,\n  { {0xa504007e, 0x442029b5, 0x00000000, 0x00000000}},  //   вятл, foi_,   ,\n  { {0x44201199, 0x61ee00d9, 0x7c200479, 0x00000000}},  //   goi_, _albl, nomr,\n  { {0x7e6211fc, 0x6d5a2161, 0x63ad11ae, 0x00000000}},  // [8490] jpop, _ofta, _činč,\n  { {0x7c29011f, 0x7c3b016c, 0x68ed00b9, 0x00000000}},  //   zler, zmur, _řadi,\n  { {0x44290a47, 0x7c29014a, 0x442001a3, 0x00000000}},  //   pla_, yler, boi_,\n  { {0x6d5a0f4b, 0x44292ca5, 0x44200a16, 0x00000000}},  //   _afta, qla_, coi_,\n  { {0x63ad161f, 0xed59005e, 0x7c29014a, 0x00000000}},  //   mean, пол_, vler,\n  { {0x63ad002a, 0xed59041f, 0x69dc0039, 0x00000000}},  //   lean, чок_, örel,\n  { {0x7c29011f, 0x09b70044, 0x7c3b2b67, 0x00000000}},  //   tler, জামা, tmur,\n  { {0x63ad048c, 0x69ca00be, 0x7f85002c, 0x00000000}},  //   nean, _anfe, _سلطن,\n  { {0x7c29011f, 0x7c3b023a, 0xdb00029d, 0x00000000}},  //   rler, rmur, temá,\n  { {0x7c29011f, 0x63ad002a, 0xe1ff0036, 0x00000000}},  //   sler, hean, _swój_,\n  { {0xbc680054, 0x7c29011f, 0x31710766, 0x00000000}},  //   _يمكن_, pler, _mezz_,\n  { {0x69ca0211, 0x63ad0035, 0xcc56009b, 0x00000000}},  //   _enfe, jean, _טבעי_,\n  { {0x7bcb022b, 0x63ad002a, 0x442000f4, 0x00000000}},  //   _ingu, dean, voi_,\n  { {0xba390049, 0x65750065, 0x44201134, 0x00000000}},  //   _צײַט, gazh, woi_,\n  { {0x44202ca6, 0xe1ff0036, 0x059402fd, 0x00000000}},  //   toi_, _twój_, _یادگ,\n  { {0xca480011, 0x63ad04f0, 0x00000000, 0x00000000}},  //   _rời_, gean,   ,\n  { {0x4420008d, 0x6f160036, 0xb5fb0010, 0x00000000}},  // [84a0] roi_, życz, mpán,\n  { {0x44200110, 0x171b009b, 0x00000000, 0x00000000}},  //   soi_, _מופע,   ,\n  { {0x63ad0051, 0x4420001a, 0xc22200a1, 0x00000000}},  //   bean, poi_, نکڑو,\n  { {0x63ad094e, 0xca480011, 0x7e6200d9, 0x00000000}},  //   cean, _vời_, tpop,\n  { {0xa2e3005e, 0x3f9a0036, 0x7c2001c4, 0x00000000}},  //   _бояд, ępu_, vomr,\n  { {0x7e620dda, 0xa25b0082, 0x00000000, 0x00000000}},  //   rpop, _krôn,   ,\n  { {0x3f6a026b, 0x987e00b9, 0x7e6201c5, 0x00000000}},  //   _ниво_, _péče_, spop,\n  { {0x22b20173, 0xa2c4006e, 0xc4d30104, 0x00000000}},  //   _kņk_, रिप्, רגה_,\n  { {0x7c20004e, 0xa3e8006e, 0x1dc70061, 0x00000000}},  //   romr, _भवन_, लाखत,\n  { {0x7bcb1182, 0x7c200239, 0x2006002d, 0x00000000}},  //   _engu, somr, lioi_,\n  { {0x2bb8007d, 0xbb4a0439, 0x63ad00e7, 0x00000000}},  //   _आसपा, _فلان_, yean,\n  { {0xc02e001d, 0x9cd7009b, 0x7c6505f3, 0x00000000}},  //   _điều_, _רואה_, _شامل,\n  { {0x09e60216, 0x63ad001a, 0x95cb00e3, 0x00000000}},  //   _подн, vean, пува_,\n  { {0x69ca2ca7, 0xa7fd005d, 0xa2c4013d, 0x00000000}},  //   _unfe, nsız, रिन्,\n  { {0x63ad002a, 0xa25b0181, 0xf4841123, 0x00000000}},  //   tean, _crôn, лутн,\n  { {0x65750065, 0xdb000190, 0x00000000, 0x00000000}},  //   sazh, remæ,   ,\n  { {0x63ad002a, 0x96350517, 0x6249251b, 0x00000000}},  // [84b0] rean, _иниц, _džon,\n  { {0x63ad002a, 0x22b2000a, 0x00000000, 0x00000000}},  //   sean, _dņk_,   ,\n  { {0x63ad001a, 0xdb000103, 0xddc9014a, 0x00000000}},  //   pean, lemä, _ateş,\n  { {0x66070662, 0x200f064e, 0x22b20173, 0x00000000}},  //   lijk, ungi_, _fņk_,\n  { {0x44390022, 0x2369001a, 0xdb0000b0, 0x00000000}},  //   _ihs_, mbaj_, nemä,\n  { {0x6da5026b, 0xdee2007c, 0xada506b6, 0x00000000}},  //   тика, роши, такл,\n  { {0x1fa7008b, 0x44390022, 0xdb00006c, 0x00000000}},  //   _праг, _khs_, hemä,\n  { {0xdb0000b0, 0x3035007c, 0x00000000, 0x00000000}},  //   kemä, _ребё,   ,\n  { {0x660702ae, 0x44392ca8, 0xef650095, 0x00000000}},  //   kijk, _mhs_, ğıdı_,\n  { {0x7d79007a, 0x44390541, 0x3ea20039, 0x00000000}},  //   _آمار_, _lhs_, _äkta_,\n  { {0x44390066, 0x9be70088, 0x2fcd01d6, 0x00000000}},  //   _ohs_, _підк, _kneg_,\n  { {0x7bcb28c8, 0x6e230272, 0xeab100a1, 0x00000000}},  //   _ungu, lonb, _نعت_,\n  { {0x26c400b9, 0x98a20089, 0x9f4f008e, 0x00000000}},  //   ímo_, ākā_, ligó_,\n  { {0xa25b2ca9, 0x6e232caa, 0x44390253, 0x00000000}},  //   _prôn, nonb, _ahs_,\n  { {0x44390093, 0xdce300b9, 0x2bb8013d, 0x00000000}},  //   _bhs_, vaně, _आसमा,\n  { {0x3fbc0044, 0x44390387, 0x6f1e0036, 0x00000000}},  //   _অক্ষ, _chs_, ępcz,\n  { {0xe61a00ed, 0x6e232cab, 0x9346025f, 0x00000000}},  // [84c0] _оди_, konb, тнае,\n  { {0xf1aa007a, 0xa25b2811, 0x75eb014a, 0x00000000}},  //   باره_, _trôn, _yüzm,\n  { {0x27e00f80, 0xdce300b9, 0x638608fc, 0x00000000}},  //   _koin_, raně, _игна,\n  { {0x27e00038, 0x3dde01f3, 0xdb00043e, 0x00000000}},  //   _join_, _sotw_, lemå,\n  { {0x6e23010f, 0x27e02cac, 0xa7fd005a, 0x00000000}},  //   fonb, _moin_, tsız,\n  { {0x27e000f4, 0x27f20016, 0x2fcd0022, 0x00000000}},  //   _loin_, _llyn_, _eneg_,\n  { {0x6026007e, 0xa7fd01df, 0xfd7900a1, 0x00000000}},  //   _адва, rsız, رشوں_,\n  { {0xeb97012b, 0x27e0021e, 0x6ce30088, 0x00000000}},  //   вић_, _noin_, ріше,\n  { {0xea000011, 0x2d9601e0, 0x3dde0b32, 0x00000000}},  //   _nhảy_, _арес, _totw_,\n  { {0x09d00044, 0x99d00044, 0xdb0007c4, 0x00000000}},  //   িস্থ, িস্ক, jemå,\n  { {0xfbd200a1, 0x6736000a, 0x7afd00c4, 0x00000000}},  //   _پتا_, _azyj, ústr,\n  { {0x660700b5, 0x27e02cad, 0x9b0615c4, 0x00000000}},  //   wijk, _coin_, _изед,\n  { {0xa3cc02d2, 0xea000011, 0x44392cae, 0x00000000}},  //   लाई_, _chảy_, _rhs_,\n  { {0xa25b00f4, 0x4b37009b, 0x27e00051, 0x00000000}},  //   _drôl, _סרגל_, _eoin_,\n  { {0x660702ae, 0x48e30098, 0xdb001bf0, 0x00000000}},  //   rijk, _војв, semä,\n  { {0xe78701fe, 0xe41401fb, 0x27f20016, 0x00000000}},  //   _руко, адсь, _glyn_,\n  { {0x6b820020, 0x98be0477, 0x68e8005b, 0x00000000}},  // [84d0] _mdog, matı_, lydd,\n  { {0x35b50a1e, 0x2fcd0229, 0x98be0180, 0x00000000}},  //   _сбор, _sneg_, latı_,\n  { {0x21a401fb, 0xc058008b, 0x68e8018e, 0x00000000}},  //   риєм, віч_, nydd,\n  { {0x6b820020, 0x98be0279, 0x00000000, 0x00000000}},  //   _ndog, natı_,   ,\n  { {0x6e230039, 0x68e80016, 0x3da90404, 0x00000000}},  //   tonb, hydd, екло_,\n  { {0x63bd0145, 0x68e80039, 0x20040052, 0x00000000}},  //   _hasn, kydd, _emmi_,\n  { {0x63bd0ecc, 0xa0b80679, 0x98be0279, 0x00000000}},  //   _kasn, _игру_, katı_,\n  { {0x68e80016, 0x5f451095, 0x2fcd0022, 0x00000000}},  //   dydd, _منزل, _uneg_,\n  { {0x63bd2690, 0x6b820016, 0xda650025, 0x00000000}},  //   _masn, _ddog, داعي,\n  { {0x27e000f4, 0x68e80016, 0x63bd006c, 0x00000000}},  //   _soin_, fydd, _lasn,\n  { {0x7794007a, 0x27e0023a, 0x68e80016, 0x00000000}},  //   لیغا, _poin_, gydd,\n  { {0x8cc00164, 0xf64900a3, 0x27ea002b, 0x00000000}},  //   विरो, _זצ_, _ċans_,\n  { {0x27e000b0, 0x00000000, 0x00000000, 0x00000000}},  //   _voin_,   ,   ,\n  { {0x68e80016, 0x7bdb010e, 0x00000000, 0x00000000}},  //   bydd, ljuu,   ,\n  { {0x7ae90010, 0x947901e1, 0xdb002caf, 0x00000000}},  //   lyet, ксту_, remå,\n  { {0x63bd0016, 0x6f1b006b, 0x42d601ff, 0x00000000}},  //   _casn, _oxuc, лізу,\n  { {0x7ae9023a, 0x070a067a, 0x7afb01a2, 0x00000000}},  // [84e0] nyet, _سيدي_, nzut,\n  { {0x3c3a0065, 0x764b009d, 0x63bd0048, 0x00000000}},  //   mëve_, _égyp, _easn,\n  { {0x3c3a0065, 0x63bd0016, 0x8136007e, 0x00000000}},  //   lëve_, _fasn, ухац,\n  { {0x7ae901aa, 0xe3b2083e, 0xa2c40061, 0x00000000}},  //   kyet, _ارد_, रिद्,\n  { {0x7e2a02f0, 0x3c3a0065, 0x63a408f4, 0x00000000}},  //   ніка_, nëve_, mfin,\n  { {0x63a4000c, 0xdcba005e, 0x6b820026, 0x00000000}},  //   lfin, ещи_, _sdog,\n  { {0xa1160151, 0x98be047f, 0xea000011, 0x00000000}},  //   _صورت, yatı_, _nhạy_,\n  { {0x3c3a0065, 0x63a4051b, 0x200401a3, 0x00000000}},  //   këve_, nfin, _ummi_,\n  { {0x68e80bc4, 0x3c3a0065, 0x63a4000c, 0x00000000}},  //   wydd, jëve_, ifin,\n  { {0x7d1a0009, 0x68e82cb0, 0x3c3a0023, 0x00000000}},  //   _txts, tydd, dëve_,\n  { {0xea00001d, 0x481504f1, 0xbc66013b, 0x00000000}},  //   _chạy_, имос, _свек,\n  { {0x68e81996, 0x3c0c013e, 0x00000000, 0x00000000}},  //   rydd, těvu_,   ,\n  { {0x63bd0107, 0x63a400bb, 0x68e80016, 0x00000000}},  //   _rasn, dfin, sydd,\n  { {0x659501f9, 0x63bd0089, 0x63a40133, 0x00000000}},  //   јаву, _sasn, efin,\n  { {0x63a40016, 0x63bd0089, 0x81da0044, 0x00000000}},  //   ffin, _pasn, ়সা_,\n  { {0x75eb011f, 0x59d20164, 0x7bc0006c, 0x00000000}},  //   _müzi, तावर, ndmu,\n  { {0x2ba60183, 0x629d0061, 0x9295022a, 0x00000000}},  // [84f0] क्या, _qqso, разц,\n  { {0xddc9251e, 0x395e2cb1, 0x387e0022, 0x00000000}},  //   _svež, ncts_, ostr_,\n  { {0x63a40190, 0x7afb0197, 0xfaf90006, 0x00000000}},  //   bfin, zzut, lbūt_,\n  { {0xa2950ee0, 0x7ae9006b, 0x63a40094, 0x00000000}},  //   _камі, yyet, cfin,\n  { {0x442b0022, 0xa5d8025a, 0x00000000, 0x00000000}},  //   _ikc_, _شبیر_,   ,\n  { {0x7bc7001e, 0x644f0211, 0xfce508d6, 0x00000000}},  //   ējum, _hici, иоло,\n  { {0xc212009b, 0x3c3a0065, 0x2c550089, 0x00000000}},  //   _והם_, zëve_, _kādi_,\n  { {0x7afb09ce, 0x26c90107, 0xddc90521, 0x00000000}},  //   tzut, _orao_, _uvež,\n  { {0x644f0375, 0xde590088, 0xa7fd0276, 0x00000000}},  //   _mici, _разі_, rpıl,\n  { {0x644f1e3b, 0x7ae92cb2, 0x7bdb006c, 0x00000000}},  //   _lici, ryet, sjuu,\n  { {0x7ae92cb3, 0x63a4000c, 0x6fca0061, 0x00000000}},  //   syet, yfin, _सोडू,\n  { {0x644f000d, 0x3c3a0065, 0x7ae90f72, 0x00000000}},  //   _nici, tëve_, pyet,\n  { {0x6457029d, 0xaa6702b8, 0x65770023, 0x00000000}},  //   _auxi, _стек, _bexh,\n  { {0x3c3a008d, 0x644f001e, 0xdce30521, 0x00000000}},  //   rëve_, _aici, lanđ,\n  { {0x387e0009, 0x3c3a0023, 0x2a7f01c3, 0x00000000}},  //   cstr_, sëve_, lsub_,\n  { {0x3ead0119, 0x69c1000c, 0x442b00d2, 0x00000000}},  //   _opet_, ldle, _ckc_,\n  { {0x63a4000c, 0x644f0211, 0x628d0061, 0x00000000}},  // [8500] rfin, _dici, grao,\n  { {0x69c1004e, 0xe1f72cb4, 0x667b0049, 0x00000000}},  //   ndle, агу_, _שטיק,\n  { {0x03a60242, 0x69c10016, 0x64570065, 0x00000000}},  //   _кино, idle, _guxi,\n  { {0x8fa6026b, 0x657c0538, 0xbe8a0e82, 0x00000000}},  //   раде, larh, вске_,\n  { {0x68120089, 0x3ead0022, 0x44320133, 0x00000000}},  //   gādi, _cpet_, mly_,\n  { {0x44320038, 0x657c000c, 0x644400b0, 0x00000000}},  //   lly_, narh, lmii,\n  { {0xeb0e006e, 0x69c100ab, 0xed57003b, 0x00000000}},  //   ाप्त_, ddle, шој_,\n  { {0x8aa60099, 0x3178010f, 0x443200ab, 0x00000000}},  //   арод, _herz_, nly_,\n  { {0x44320051, 0x1ea90774, 0x7d0f006b, 0x00000000}},  //   ily_, _مالي_, _əksə,\n  { {0x44322cb5, 0x2c0b06c6, 0x657c2cb6, 0x00000000}},  //   hly_, _یعنی_, jarh,\n  { {0x65770065, 0x44322cb7, 0x395e0606, 0x00000000}},  //   _rexh, kly_, rcts_,\n  { {0xcb6a0184, 0x387e01a2, 0x65770f3f, 0x00000000}},  //   _раде_, rstr_, _sexh,\n  { {0x44322cb8, 0x644f0197, 0x6701007d, 0x00000000}},  //   dly_, _rici, _लेखक_,\n  { {0x644f0207, 0xfaf91104, 0x2b9200a1, 0x00000000}},  //   _sici, rbūt_, _ایکس,\n  { {0x44320606, 0x644f001a, 0xe7870072, 0x00000000}},  //   fly_, _pici, _купо,\n  { {0x26c9001d, 0x44320de7, 0x645700f8, 0x00000000}},  //   _trao_, gly_, _vuxi,\n  { {0xf1d2001c, 0xd251031d, 0x657c02e7, 0x00000000}},  // [8510] सांन, سنا_, barh,\n  { {0x644f0016, 0x51f8007e, 0x628d0032, 0x00000000}},  //   _wici, аную_, rrao,\n  { {0x44322cb9, 0x644f06f9, 0x3ead01d9, 0x00000000}},  //   bly_, _tici, _spet_,\n  { {0x442b00ca, 0x44320133, 0x2a66012d, 0x00000000}},  //   _ukc_, cly_, _otob_,\n  { {0x4429002d, 0x683d00f4, 0x7a3d00f4, 0x00000000}},  //   moa_, céde, lète,\n  { {0x442921be, 0x2a7f0009, 0x68120089, 0x00000000}},  //   loa_, vsub_, rādi,\n  { {0x22592cba, 0xa3cc0061, 0x7a3d0e28, 0x00000000}},  //   _husk_, लाच_, nète,\n  { {0x44292cbb, 0x5f940088, 0x2a7f0004, 0x00000000}},  //   noa_, _мист, tsub_,\n  { {0x8d8706c6, 0x4e940025, 0x4429002d, 0x00000000}},  //   _نشان, _وشكر, ioa_,\n  { {0x44292cbc, 0xe9d9013b, 0x44322cbd, 0x00000000}},  //   hoa_, уко_, zly_,\n  { {0x44292cbe, 0x69c12cbf, 0x44320062, 0x00000000}},  //   koa_, rdle, yly_,\n  { {0x6249016c, 0x44290315, 0x98160025, 0x00000000}},  //   _džoi, joa_, إبدا,\n  { {0xf3ff0055, 0x4429117b, 0x290b0036, 0x00000000}},  //   ্কার_, doa_, ńca_,\n  { {0xd99902fd, 0x69dc0039, 0x7c2900c7, 0x00000000}},  //   _صنعت_, öret, loer,\n  { {0x657c2cc0, 0x443200ab, 0x44290315, 0x00000000}},  //   rarh, tly_, foa_,\n  { {0x44292cc1, 0x7ddd01aa, 0x245c01dc, 0x00000000}},  //   goa_, _vèsy, _vím_,\n  { {0x44320038, 0x776401f3, 0x2360050f, 0x00000000}},  // [8520] rly_, _ifix, rcij_,\n  { {0x245c2cc2, 0x2ca90036, 0x7ae40045, 0x00000000}},  //   _tím_, łady_, _àite,\n  { {0x44320038, 0xef6501f6, 0x4429022b, 0x00000000}},  //   ply_, ğını_, boa_,\n  { {0xea00001d, 0xef650279, 0x7c2901d6, 0x00000000}},  //   _thầy_, şını_, joer,\n  { {0x31780066, 0x1aec0044, 0x7c290085, 0x00000000}},  //   _terz_, _জেনে_, doer,\n  { {0x6296014a, 0x21f60025, 0x75eb006b, 0x00000000}},  //   muyo, _اكسس, _füzu,\n  { {0xec09001d, 0x62962cc3, 0x00000000, 0x00000000}},  //   yết_, luyo,   ,\n  { {0x7c290066, 0x660e006b, 0x00000000, 0x00000000}},  //   goer, hibk,   ,\n  { {0x6296014a, 0xdcf8012d, 0x00000000, 0x00000000}},  //   nuyo, mavč,   ,\n  { {0x4429002d, 0xa2bb0049, 0x660e04cb, 0x00000000}},  //   zoa_, נמיט, jibk,\n  { {0x7c292cc4, 0x00000000, 0x00000000, 0x00000000}},  //   boer,   ,   ,\n  { {0x3137019b, 0x4429002d, 0x2c7500a1, 0x00000000}},  //   מנים_, xoa_, _بیٹھ_,\n  { {0x44291b03, 0x63b6006b, 0x858b07d0, 0x00000000}},  //   voa_, deyn, лёва_,\n  { {0x225902e7, 0x00000000, 0x00000000, 0x00000000}},  //   _rusk_,   ,   ,\n  { {0x44292cc5, 0x2d9e0066, 0x00000000, 0x00000000}},  //   toa_, _mcte_,   ,\n  { {0x7a3d009d, 0x00000000, 0x00000000, 0x00000000}},  //   rète,   ,   ,\n  { {0x44290234, 0x8af7006b, 0x816b01fc, 0x00000000}},  // [8530] roa_, _çəti, греб_,\n  { {0x44292cc6, 0xf77f1323, 0xbb3b0049, 0x00000000}},  //   soa_, laç_, רעמי,\n  { {0x9735026c, 0x442921be, 0x53c40204, 0x00000000}},  //   _دکھا, poa_, _लोकश,\n  { {0x2d9e2cc7, 0x62960058, 0x753a01a2, 0x00000000}},  //   _acte_, buyo, ütze,\n  { {0x539a00b6, 0x7c29017c, 0x201c0181, 0x00000000}},  //   _דירו, voer, évia_,\n  { {0xdc3c0089, 0x00000000, 0x00000000, 0x00000000}},  //   kšēj,   ,   ,\n  { {0x7c290116, 0x0cd70044, 0xdddb00e5, 0x00000000}},  //   toer, তন্ত, _avuţ,\n  { {0x7bc2009d, 0x2d9e0023, 0x61e70087, 0x00000000}},  //   _caou, _ecte_, _hojl,\n  { {0x0ae60057, 0x7c2901b5, 0x200f00ca, 0x00000000}},  //   ждый_, roer, migi_,\n  { {0x88850326, 0xf8a9004c, 0xc9a6007c, 0x00000000}},  //   олож, авок_, овье_,\n  { {0xdb09004a, 0x99580089, 0x00000000, 0x00000000}},  //   rdeñ, kšņi_,   ,\n  { {0x4a75007e, 0x69dc0039, 0x200f0f81, 0x00000000}},  //   _дыкт, örer, nigi_,\n  { {0xe9d92c8c, 0xddc20089, 0x9f442cc8, 0x00000000}},  //   _вкл_, lpoš, _comè_,\n  { {0xdce800b9, 0xf3f10011, 0x6b9b010e, 0x00000000}},  //   _nedě, ện_, lgug,\n  { {0x2c550089, 0x7bc2009d, 0xf8a80439, 0x00000000}},  //   _tādu_, _yaou, _هديه_,\n  { {0x69c32cc9, 0x6b9b06ad, 0x7e692b51, 0x00000000}},  //   _hane, ngug, _otep,\n  { {0xe29a0822, 0x2c55001e, 0x69c3006c, 0x00000000}},  // [8540] раз_, _kāds_, _kane,\n  { {0x69c302d5, 0xea00001d, 0x09b70055, 0x00000000}},  //   _jane, _thấy_, জাকা,\n  { {0x69c32cca, 0xddc2016c, 0x09ac0044, 0x00000000}},  //   _mane, jpoš, _কোডা,\n  { {0x69c3022b, 0xd7dd0061, 0x888a0049, 0x00000000}},  //   _lane, यायच, שרײַ,\n  { {0x7bc20bf2, 0xb21b0190, 0x6e2a0bc7, 0x00000000}},  //   _raou, _kvæl, tofb,\n  { {0x62860107, 0x7bc2009d, 0xdc8a19d4, 0x00000000}},  //   _ivko, _saou, асил_,\n  { {0xb5fb1f1e, 0xf77f014a, 0xd7ca0061, 0x00000000}},  //   mpát, yaç_, ियाच,\n  { {0x7a3404bd, 0xdfd20014, 0x62840006, 0x00000000}},  //   màti, _تير_, osio,\n  { {0x2ba60201, 0x2fc60b3d, 0x38690087, 0x00000000}},  //   क्षा, mdog_, _čara_,\n  { {0x094a0751, 0xc333009b, 0x62840016, 0x00000000}},  //   ични_, ווח_, isio,\n  { {0x69c301d9, 0x61e30788, 0x5fcf0061, 0x00000000}},  //   _dane, önli, _सोडल,\n  { {0x62840065, 0x2fc6011c, 0x69c30d31, 0x00000000}},  //   ksio, ndog_, _eane,\n  { {0x0aba0084, 0x7a2f01e3, 0xf77f014a, 0x00000000}},  //   _خطاب_, tøtt, raç_,\n  { {0x69c30ec8, 0xfba60164, 0x3ea60e3f, 0x00000000}},  //   _gane, क्रम, itot_,\n  { {0xd37b02e9, 0x09ac0055, 0xf77f0129, 0x00000000}},  //   ича_, _কোথা, paç_,\n  { {0x248d01d9, 0x683f001e, 0x6b800020, 0x00000000}},  //   čem_, _lūdz, namg,\n  { {0x27e91a5e, 0x69c3004a, 0x2fc6005b, 0x00000000}},  // [8550] _ioan_, _yane, ddog_,\n  { {0x69c3049a, 0x27e90011, 0xdb0000c4, 0x00000000}},  //   _xane, _hoan_, lemó,\n  { {0x62840052, 0xef6501df, 0x200f0edb, 0x00000000}},  //   asio, şımı_, tigi_,\n  { {0x27e92ccb, 0xdb0b1732, 0x00000000, 0x00000000}},  //   _joan_, _magò,   ,\n  { {0x200f2579, 0x33da00a0, 0x27e92c57, 0x00000000}},  //   rigi_, _החרד, _moan_,\n  { {0xdd910379, 0x8e080088, 0x27e9190f, 0x00000000}},  //   روع_, онів_, _loan_,\n  { {0xc18200a1, 0x69c5000c, 0x69c30ad0, 0x00000000}},  //   _سینٹ, _óhei, _rane,\n  { {0x251c01ce, 0xcfb4005e, 0x68360802, 0x00000000}},  //   יווא, _обсъ, rádk,\n  { {0x69c322a6, 0x200d2ccc, 0xddc20c0a, 0x00000000}},  //   _pane, _imei_, spoš,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x69c30004, 0xfd560049, 0xd90f00a1, 0x00000000}},  //   _vane, _זשעי_, کیں_,\n  { {0x69c3050c, 0x628414f9, 0x3f9d0066, 0x00000000}},  //   _wane, ysio, ngwu_,\n  { {0x27e92ccd, 0x00000000, 0x00000000, 0x00000000}},  //   _doan_,   ,   ,\n  { {0x2c550089, 0x249801a2, 0x00000000, 0x00000000}},  //   _tāds_, turm_,   ,\n  { {0x79811607, 0x6f020197, 0x8cce013d, 0x00000000}},  //   malw, zzoc, थियो,\n  { {0x62840004, 0x683d2cce, 0x27e90a49, 0x00000000}},  //   tsio, lédn, _goan_,\n  { {0x2bad001c, 0x62840006, 0x9f440285, 0x00000000}},  // [8560] झ्या, usio, _tomé_,\n  { {0x200d00c4, 0x2fc60146, 0x5bb80204, 0x00000000}},  //   _amei_, wdog_, _आस्व,\n  { {0x62842ccf, 0xfbbd0204, 0xd6250076, 0x00000000}},  //   ssio, ्याम, _تعيي,\n  { {0x62840065, 0x61fe0009, 0x79810007, 0x00000000}},  //   psio, shpl, halw,\n  { {0x78820047, 0xb5fb0211, 0xed5000a1, 0x00000000}},  //   _kívá, mpár, چھا_,\n  { {0x645e2174, 0x6f0200b5, 0x3ea622ec, 0x00000000}},  //   _kupi, rzoc, rtot_,\n  { {0x657e2a53, 0x3ea61fbd, 0x32430088, 0x00000000}},  //   _meph, stot_, _черг,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x79810016, 0x8b6600a1, 0x20070023, 0x00000000}},  //   falw, _ہاشم, ënie_,\n  { {0xeaaf0380, 0x3dc5018e, 0x39580030, 0x00000000}},  //   اعي_, _galw_, ørs_,\n  { {0x645e1b1b, 0xb5fb0010, 0x4993009e, 0x00000000}},  //   _nupi, kpár, ریٹر,\n  { {0x1ae600e3, 0x20070068, 0x00000000, 0x00000000}},  //   _ноем, énix_,   ,\n  { {0xa3c002d2, 0xe6670242, 0x645e01d6, 0x00000000}},  //   ंजन_, ятно, _aupi,\n  { {0x09e301f9, 0x657e014a, 0x645e0190, 0x00000000}},  //   _почн, _ceph, _bupi,\n  { {0x657e0093, 0x69c8018e, 0x27e92cd0, 0x00000000}},  //   _deph, mdde, _toan_,\n  { {0x03c405f6, 0x69c80016, 0x645e2cd1, 0x00000000}},  //   нсум, ldde, _dupi,\n  { {0x69c80016, 0x683d009d, 0x00000000, 0x00000000}},  // [8570] odde, lédo,   ,\n  { {0x69c80016, 0x657e00d9, 0xb5fb00fd, 0x00000000}},  //   ndde, _geph, rpás,\n  { {0x69c82cd2, 0xdb0b000c, 0x645e1794, 0x00000000}},  //   idde, _lagð, _gupi,\n  { {0x657e01d6, 0x68360181, 0x3f15003b, 0x00000000}},  //   _zeph, tádi, мдес,\n  { {0x69d800c7, 0x63ad1af8, 0x6249003b, 0x00000000}},  //   _onve, mfan, _džor,\n  { {0x63ad0016, 0xfe70023c, 0x68360387, 0x00000000}},  //   lfan, ادن_, rádi,\n  { {0x645800f4, 0x63ad0020, 0x79812027, 0x00000000}},  //   _évit, ofan, valw,\n  { {0xeb9910f2, 0x69d80018, 0x63ad010f, 0x00000000}},  //   ции_, _anve, nfan,\n  { {0x79810058, 0x06e30044, 0x7f580256, 0x00000000}},  //   talw, নৈতি, _хаус_,\n  { {0x7d180051, 0x63ad1e28, 0xe2a601e5, 0x00000000}},  //   éasú, hfan, æðin_,\n  { {0x39450373, 0xf8af0123, 0x02ba006e, 0x00000000}},  //   ьног, اکت_, _उन्न,\n  { {0x6d412cd3, 0xe73a04b6, 0x645e023a, 0x00000000}},  //   _izla, жем_, _rupi,\n  { {0x63ad2cd4, 0x7c2d0995, 0x7bd901c3, 0x00000000}},  //   dfan, čard, _inwu,\n  { {0x2bbd007d, 0x645e1e47, 0x6aa9012d, 0x00000000}},  //   ्यवा, _pupi, mtef,\n  { {0x64a32cd5, 0x6aa9032e, 0x683d009d, 0x00000000}},  //   кара, ltef, cédo,\n  { {0x7bc900f4, 0x044301fc, 0x680b0036, 0x00000000}},  //   ndeu, весн, zędz,\n  { {0x6aa9002b, 0xc1ea085f, 0x9f4a0276, 0x00000000}},  // [8580] ntef, одаж_, ümün_,\n  { {0x26d20061, 0x3f8d00d4, 0x422300e2, 0x00000000}},  //   _iryo_, _adeu_, вдув,\n  { {0x764000b9, 0x106a007c, 0xafe60088, 0x00000000}},  //   ůmys, цией_, можл,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x69c80ee6, 0x7bc92cd6, 0x6d410145, 0x00000000}},  //   ydde, ddeu, _azla,\n  { {0xb8060055, 0x44220052, 0x00000000, 0x00000000}},  //   োকিত_, _hjk_,   ,\n  { {0xdb0b009f, 0xd83911af, 0x00000000, 0x00000000}},  //   _sagð, luče_,   ,\n  { {0xc3fb0049, 0x69c8005b, 0x6143013b, 0x00000000}},  //   ַליש, wdde, _реса,\n  { {0x44220022, 0xe7dd0061, 0xd83900ca, 0x00000000}},  //   _mjk_, यासप, nuče_,\n  { {0x44220022, 0x69c8005b, 0x00000000, 0x00000000}},  //   _ljk_, udde,   ,\n  { {0x69c8068a, 0x44220093, 0x26d20022, 0x00000000}},  //   rdde, _ojk_, _aryo_,\n  { {0x7e601659, 0xb8e603d7, 0x628b0010, 0x00000000}},  //   _kump, _उन_, ágok,\n  { {0x26d200d9, 0x7e600a6b, 0x7c220009, 0x00000000}},  //   _cryo_, _jump, _ijor,\n  { {0x69d82cd7, 0x7e600093, 0x7c220030, 0x00000000}},  //   _unve, _mump, _hjor,\n  { {0x395c049a, 0x7e600127, 0x63ad000c, 0x00000000}},  //   _igvs_, _lump, tfan,\n  { {0xeac8001d, 0x60c90089, 0x64460066, 0x00000000}},  //   _kỹ_, _ņemo, _chki,\n  { {0x4caa0055, 0x63ad000c, 0x7e600093, 0x00000000}},  // [8590] কিটু, rfan, _nump,\n  { {0xeac8001d, 0x63ad01e5, 0x9f44004a, 0x00000000}},  //   _mỹ_, sfan, _comí_,\n  { {0x2258037f, 0x63ad010f, 0x44220087, 0x00000000}},  //   _dirk_, pfan, _fjk_,\n  { {0x66150303, 0x7e600133, 0x62960133, 0x00000000}},  //   lizk, _bump, bryo,\n  { {0x7e602cd8, 0x644d16c6, 0x6d410036, 0x00000000}},  //   _cump, mmai, _szla,\n  { {0x644d0ac2, 0x0dc8003b, 0xc27a009b, 0x00000000}},  //   lmai, дући_, _מרשי,\n  { {0x7c221fbc, 0xdce30089, 0x271b013d, 0x00000000}},  //   _bjor, manī, नपुर_,\n  { {0x644d0052, 0x6aa901bf, 0x3869002b, 0x00000000}},  //   nmai, ttef, _ċar_,\n  { {0x7bc90007, 0x7c220107, 0x7e600145, 0x00000000}},  //   rdeu, _djor, _gump,\n  { {0xdf44008b, 0x89a901e0, 0x644d0051, 0x00000000}},  //   _рэсп, чков_, hmai,\n  { {0x07a600c2, 0x6d410089, 0xf1b2007b, 0x00000000}},  //   нанн, _uzla, נסט_,\n  { {0x7c220cb2, 0x60da0010, 0x00000000, 0x00000000}},  //   _gjor, _átme,   ,\n  { {0x644d007f, 0xdce10006, 0xaffa0049, 0x00000000}},  //   dmai, _pelė, פּטי,\n  { {0x7c3b069e, 0x6a1700e9, 0x3ea20039, 0x00000000}},  //   llur, _تبصر, _åkte_,\n  { {0x2ba601f5, 0x7c3b0abf, 0x44220145, 0x00000000}},  //   क्का, olur, _pjk_,\n  { {0xa7fd006b, 0x62960173, 0x7c3b011c, 0x00000000}},  //   lqın, tryo, nlur,\n  { {0x130a008b, 0x7c3b2cd9, 0x66150032, 0x00000000}},  // [85a0] чнай_, ilur, bizk,\n  { {0xe7ac007d, 0x7e6004cb, 0x644d21e7, 0x00000000}},  //   ट्रप, _rump, amai,\n  { {0x7e60170b, 0x644d2957, 0x22582cda, 0x00000000}},  //   _sump, bmai, _virk_,\n  { {0x4ea603e0, 0x644d2cdb, 0x00000000, 0x00000000}},  //   ерка, cmai,   ,\n  { {0x4420018e, 0x4432011c, 0x61f30030, 0x00000000}},  //   mni_, moy_, ådlø,\n  { {0x44202462, 0x4432006a, 0xf2df0011, 0x00000000}},  //   lni_, loy_, _ngây_,\n  { {0x44201eb1, 0xeac80011, 0x6143007e, 0x00000000}},  //   oni_, _sỹ_, _бера,\n  { {0x44200359, 0x4432006a, 0x2bba0054, 0x00000000}},  //   nni_, noy_, ساعة_,\n  { {0x61ee0292, 0x7017009b, 0x7e600058, 0x00000000}},  //   _kobl, _נחמד_, _uump,\n  { {0xfce60407, 0x44200065, 0x4432011c, 0x00000000}},  //   _позо, hni_, hoy_,\n  { {0x61ee049a, 0x4432011c, 0x7c3b0b50, 0x00000000}},  //   _mobl, koy_, blur,\n  { {0x442000ee, 0x443200ab, 0x27ff000c, 0x00000000}},  //   jni_, joy_, óun_,\n  { {0xd6d8085f, 0x4432011c, 0x644d0c4b, 0x00000000}},  //   нтр_, doy_, vmai,\n  { {0x44202cdc, 0x63a600ab, 0x6b82011c, 0x00000000}},  //   eni_, _ackn, _heog,\n  { {0x4420009f, 0x644d0781, 0x66150032, 0x00000000}},  //   fni_, tmai, rizk,\n  { {0x442013f0, 0x443212b5, 0x493b009b, 0x00000000}},  //   gni_, goy_, _מגוו,\n  { {0x61ee022c, 0x23690b94, 0x644d2cdd, 0x00000000}},  // [85b0] _bobl, rcaj_, rmai,\n  { {0x44201a0c, 0x44f5003b, 0x644d0094, 0x00000000}},  //   ani_, _апос, smai,\n  { {0x442001d9, 0x4432011c, 0x61ee0779, 0x00000000}},  //   bni_, boy_, _dobl,\n  { {0x4420037e, 0x69ca096e, 0x6b8204eb, 0x00000000}},  //   cni_, _lafe, _neog,\n  { {0x539a019b, 0x69a10204, 0x6da50900, 0x00000000}},  //   _קישו, _खाली, вила,\n  { {0x44d1010a, 0x61ee0016, 0xdce8001e, 0x00000000}},  //   _ką_, _gobl, _nedē,\n  { {0x6b82012b, 0x44d1093c, 0x7c3b001a, 0x00000000}},  //   _beog, _ją_, tlur,\n  { {0xa1580822, 0xbbbd0061, 0xdce10035, 0x00000000}},  //   _часу_, ्येक, _află,\n  { {0x2fc0006c, 0x9f4400f6, 0x7c3b00f8, 0x00000000}},  //   õige_, _gomà_, rlur,\n  { {0x44200047, 0x69ca001a, 0x98b3089f, 0x00000000}},  //   zni_, _cafe, žeči_,\n  { {0xd7dd0365, 0x44202cde, 0x7c3b0035, 0x00000000}},  //   यांच, yni_, plur,\n  { {0x5b151fa3, 0x2d872cdf, 0x24b90044, 0x00000000}},  //   _имет, lane_, ুমাহ,\n  { {0x442001d9, 0x25de0061, 0x2d870035, 0x00000000}},  //   vni_, खाली_, oane_,\n  { {0xa7fd005f, 0x7bcb0129, 0x4420010b, 0x00000000}},  //   qqın, _hagu, wni_,\n  { {0x44320219, 0x7bcb011c, 0x61ee008e, 0x00000000}},  //   toy_, _kagu, _robl,\n  { {0x4420000d, 0x7bcb033b, 0x69ca2047, 0x00000000}},  //   uni_, _jagu, _zafe,\n  { {0x44200198, 0x61ee1406, 0x7bcb24c4, 0x00000000}},  // [85c0] rni_, _pobl, _magu,\n  { {0x7bcb022b, 0x2d8700ee, 0x4432014a, 0x00000000}},  //   _lagu, jane_, soy_,\n  { {0x44200209, 0x2d87092c, 0x44320058, 0x00000000}},  //   pni_, dane_, poy_,\n  { {0x7bcb27bc, 0xcbbc0044, 0xef1a007c, 0x00000000}},  //   _nagu, _আচ্ছ, мме_,\n  { {0x2d872ce0, 0xa2c1013d, 0xe7aa006e, 0x00000000}},  //   fane_, रौद्, _कानप,\n  { {0x2d87092c, 0x63a4000c, 0x998c00b9, 0x00000000}},  //   gane_, lgin, vodů_,\n  { {0x6abc02f4, 0x7bcb20be, 0x69ca2ce1, 0x00000000}},  //   ्ट्र, _bagu, _rafe,\n  { {0x63a42ce2, 0x69ca00ab, 0x7bcb00b2, 0x00000000}},  //   ngin, _safe, _cagu,\n  { {0x5a340797, 0xf413019b, 0x67ff0065, 0x00000000}},  //   лнит, יפה_, _bëjn,\n  { {0x2d870036, 0x683d00f4, 0xbd8a0014, 0x00000000}},  //   cane_, médi, _آنان_,\n  { {0x7bcb01e5, 0x78aa0009, 0x683d009d, 0x00000000}},  //   _fagu, _qqfv, lédi,\n  { {0x3f841a56, 0x63a400bb, 0x7983040f, 0x00000000}},  //   _jemu_, jgin, _eenw,\n  { {0x44d10046, 0x69ca0fe2, 0x8a060242, 0x00000000}},  //   _są_, _tafe, _изде,\n  { {0x7bc00004, 0x7983158a, 0x63a42ce3, 0x00000000}},  //   lemu, _genw, egin,\n  { {0x7bcb1588, 0xa7fd006b, 0x6d5c0027, 0x00000000}},  //   _yagu, lqım, _úrad,\n  { {0x7bc00169, 0x63a415c1, 0x79880016, 0x00000000}},  //   nemu, ggin, ladw,\n  { {0x36d500a8, 0x2d871fa4, 0x81ac0044, 0x00000000}},  // [85d0] _сопр, yane_, কজন_,\n  { {0x44d10bd7, 0x26c90107, 0x7bc0010e, 0x00000000}},  //   _tą_, _isao_, hemu,\n  { {0x7bc0021e, 0x21640517, 0xcfb10044, 0x00000000}},  //   kemu, ртуг, _ঘোষন,\n  { {0xf8b3007b, 0x2d870046, 0x3f84037e, 0x00000000}},  //   ישע_, wane_, _cemu_,\n  { {0x8f34008b, 0x539a00b6, 0x7bcb01bc, 0x00000000}},  //   аецц, _אירו, _ragu,\n  { {0x7bcb011c, 0x3dcc018e, 0x645d2ce4, 0x00000000}},  //   _sagu, _cadw_, _hisi,\n  { {0x2d8725fb, 0x645d000b, 0x7bcb0065, 0x00000000}},  //   rane_, _kisi, _pagu,\n  { {0x2bda0183, 0x7bc0006c, 0x645d20a1, 0x00000000}},  //   भागा, gemu, _jisi,\n  { {0x2d870056, 0x79830016, 0x7bcb032c, 0x00000000}},  //   pane_, _penw, _vagu,\n  { {0x7bcb1f0f, 0x3dcc0016, 0x44390093, 0x00000000}},  //   _wagu, _gadw_, _lks_,\n  { {0x7bcb006a, 0x44391651, 0x63a40036, 0x00000000}},  //   _tagu, _oks_, ygin,\n  { {0x2d85068f, 0x645d1111, 0x66e601ee, 0x00000000}},  //   _hele_, _nisi, гома,\n  { {0x2d8501d6, 0xa3e7006e, 0xf4090044, 0x00000000}},  //   _kele_, पान_, রচার_,\n  { {0x64a60001, 0x645d0da3, 0x9663007c, 0x00000000}},  //   лага, _aisi, скре,\n  { {0x69c10483, 0x645d2ce5, 0x5e56007b, 0x00000000}},  //   mele, _bisi, טישע_,\n  { {0x69c1011f, 0x2d851848, 0x63a40006, 0x00000000}},  //   lele, _lele_, ugin,\n  { {0x645d020c, 0xe29701f9, 0x63a4046e, 0x00000000}},  // [85e0] _disi, лат_, rgin,\n  { {0x645d0124, 0x69c1011f, 0x44390374, 0x00000000}},  //   _eisi, nele, _eks_,\n  { {0x34aa0d99, 0x5a160049, 0x69c100e7, 0x00000000}},  //   _явно_, נקען_, iele,\n  { {0x69c1006c, 0x645d011c, 0xf3f10011, 0x00000000}},  //   hele, _gisi, ệt_,\n  { {0x69c102ae, 0x2d852ce6, 0x877b0049, 0x00000000}},  //   kele, _bele_, גאני,\n  { {0x69c10047, 0x2d85000d, 0x645d0020, 0x00000000}},  //   jele, _cele_, _zisi,\n  { {0x3f8403e9, 0x2d852ce7, 0x7c2d0bf8, 0x00000000}},  //   _temu_, _dele_, čarn,\n  { {0x683d2ce8, 0xab5d0036, 0x29180af6, 0x00000000}},  //   pédi, zeże, úram_,\n  { {0x69c10047, 0x7bc00fad, 0x2d96013b, 0x00000000}},  //   fele, remu, _брес,\n  { {0xdcfa001a, 0x2d8500bb, 0x7bc001a3, 0x00000000}},  //   _cetă, _gele_, semu,\n  { {0x7988018e, 0x7bc00093, 0xb21b068f, 0x00000000}},  //   radw, pemu, _kvær,\n  { {0x2d85037e, 0x3157012f, 0xa835003b, 0x00000000}},  //   _zele_, טיין_, ремљ,\n  { {0x69c121b8, 0xcaf6023c, 0xa7fd006b, 0x00000000}},  //   bele, _حساب, qqım,\n  { {0x69c1011f, 0x44390093, 0x645d09f3, 0x00000000}},  //   cele, _sks_, _sisi,\n  { {0xe4e40106, 0x44392ce9, 0x645d11f2, 0x00000000}},  //   бітн, _pks_, _pisi,\n  { {0x645d0d82, 0xe787003b, 0x7a3d01aa, 0x00000000}},  //   _qisi, _суко, vèti,\n  { {0x521501f9, 0xf1e00061, 0x20070065, 0x00000000}},  // [85f0] адат, नांन, ënim_,\n  { {0x947500a6, 0x7a3d0129, 0x91e4003b, 0x00000000}},  //   _نگرا, tèti, бође,\n  { {0x2d850263, 0x645d09fc, 0x628d00b0, 0x00000000}},  //   _rele_, _tisi, ssao,\n  { {0x69c109c8, 0x2d8501aa, 0xd1380140, 0x00000000}},  //   zele, _sele_, уху_,\n  { {0x69c1011f, 0x2d850181, 0x66f7007d, 0x00000000}},  //   yele, _pele_, ुनिक_,\n  { {0x2bda02d2, 0x2004005f, 0x69c1008e, 0x00000000}},  //   _मोबा, _elmi_, xele,\n  { {0x69c10047, 0x2d852cea, 0x06380049, 0x00000000}},  //   vele, _vele_, אנגט_,\n  { {0x67ff0065, 0x2d85005b, 0x69c12ceb, 0x00000000}},  //   _bëjm, _wele_, wele,\n  { {0x69c10047, 0x8004022a, 0xbda70a4f, 0x00000000}},  //   tele, _учре, _محاو,\n  { {0x7c8711a6, 0x2ba7001c, 0x27e001d5, 0x00000000}},  //   _буде, _गावा, _snin_,\n  { {0xd9450001, 0x7cdc0035, 0x27e00022, 0x00000000}},  //   рени, _cără, _pnin_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x69c1000b, 0x09e5007c, 0x6249251b, 0x00000000}},  //   pele, _волн, _džoz,\n  { {0x78a10302, 0xcaf400a1, 0x3e6b00ea, 0x00000000}},  //   pulv, _دسمب, _møt_,\n  { {0x7afb006b, 0x765e00e7, 0xd9390049, 0x00000000}},  //   lyut, _vipy, _בײַש,\n  { {0x3ced03d7, 0x7ae90146, 0x93ca009e, 0x00000000}},  //   _अपने_, oxet, کاڑہ_,\n  { {0x43752043, 0x883b009b, 0x826800a1, 0x00000000}},  // [8600] суст, _בתקו, اشرہ_,\n  { {0xe1ff2363, 0xb21b02cc, 0x935901e1, 0x00000000}},  //   _stór_, _svær, урсу_,\n  { {0x61fe05c6, 0x6f66012b, 0x661c0006, 0x00000000}},  //   rkpl, авез, mirk,\n  { {0x7a3d01aa, 0x661c0284, 0x7afb0058, 0x00000000}},  //   pètw, lirk, kyut,\n  { {0xdfcf0379, 0x683d00f4, 0x00000000, 0x00000000}},  //   بين_, cédu,   ,\n  { {0x661c2cec, 0x27350011, 0xd0b3006b, 0x00000000}},  //   nirk, ụng_, hşət,\n  { {0x6da303f3, 0xb21b0030, 0x7f490325, 0x00000000}},  //   ција, _tvær, _ezeq,\n  { {0x661c003f, 0x200400e0, 0x00000000, 0x00000000}},  //   hirk, _ulmi_,   ,\n  { {0x15f802fb, 0x661c01a3, 0xa3e70164, 0x00000000}},  //   ुसार_, kirk, पात_,\n  { {0x7cdc001a, 0x99660545, 0x00000000, 0x00000000}},  //   _pără, штил,   ,\n  { {0x661c023a, 0x6d480213, 0xddc90064, 0x00000000}},  //   dirk, _uzda, _uteš,\n  { {0xeb970745, 0x00000000, 0x00000000, 0x00000000}},  //   _виц_,   ,   ,\n  { {0x661c033b, 0x00000000, 0x00000000, 0x00000000}},  //   firk,   ,   ,\n  { {0x1866012b, 0xfa330014, 0x661c2ced, 0x00000000}},  //   _књиг, _ورود, girk,\n  { {0xe65401fb, 0xb8940025, 0xedf4006e, 0x00000000}},  //   івсь, _البع, _अवैध_,\n  { {0xd37826f0, 0x53980088, 0xab5d0036, 0x00000000}},  //   ичу_, ився_, leża,\n  { {0x2458007c, 0xe167003b, 0x9268003b, 0x00000000}},  // [8610] рать_, ађен, арха_,\n  { {0x661c2cee, 0x683d009d, 0x00000000, 0x00000000}},  //   cirk, rédu,   ,\n  { {0x92e70044, 0x35f80014, 0x8f00007e, 0x00000000}},  //   বনে_, _خريد_, кiя_,\n  { {0x4e950025, 0x00000000, 0x00000000, 0x00000000}},  //   مشتر,   ,   ,\n  { {0x645a1339, 0x201c0129, 0xc2570014, 0x00000000}},  //   ïtie, èvia_, _نخست,\n  { {0xee38111f, 0x72050025, 0x442b0082, 0x00000000}},  //   ані_, _اوسم, _hjc_,\n  { {0x93fb0061, 0x00000000, 0x00000000, 0x00000000}},  //   _एकाच_,   ,   ,\n  { {0x661c010f, 0x7ae905b3, 0x442b06ed, 0x00000000}},  //   zirk, txet, _jjc_,\n  { {0x7d06006b, 0x442b0068, 0x201d00e7, 0x00000000}},  //   _əksi, _mjc_, miwi_,\n  { {0x201d09cc, 0x3ebf00e0, 0x656500e0, 0x00000000}},  //   liwi_, _iput_, _nghh,\n  { {0x661c0374, 0xe7e40204, 0x61f50036, 0x00000000}},  //   virk, गाला_, _mozl,\n  { {0x7e690020, 0x661c010f, 0x7e6100f2, 0x00000000}},  //   _kuep, wirk, _hilp,\n  { {0x7e61021e, 0x661c0093, 0x6d4100f8, 0x00000000}},  //   _kilp, tirk, _hyla,\n  { {0xbb3a0049, 0x6d412cef, 0x99850025, 0x00000000}},  //   _געני, _kyla, _الثو,\n  { {0x7e61004a, 0x442b01c5, 0x201d2cf0, 0x00000000}},  //   _milp, _bjc_, kiwi_,\n  { {0x644f0832, 0x6d411db2, 0xe45a2cf1, 0x00000000}},  //   _chci, _myla, ужб_,\n  { {0x661c0ebc, 0x63b6018e, 0x38b12cf2, 0x00000000}},  // [8620] pirk, rfyn, lár_,\n  { {0xe3b2007a, 0x6d41014a, 0xd5a4025a, 0x00000000}},  //   _کرد_, _oyla, _بلدی,\n  { {0x7c2d0059, 0x38b12cf3, 0x04b6005e, 0x00000000}},  //   čarj, nár_, _успя,\n  { {0x44d801ca, 0xddc2002b, 0xd12f0439, 0x00000000}},  //   _ič_, spoż, رمن_,\n  { {0x248d001e, 0x6d41005d, 0xdfcf0380, 0x00000000}},  //   ņemt_, _ayla, عيه_,\n  { {0x44d800b9, 0x64440103, 0x6d4127ef, 0x00000000}},  //   _kč_, llii, _byla,\n  { {0x38b12cf4, 0xdd990088, 0x644400b0, 0x00000000}},  //   jár_, рші_, olii,\n  { {0x6d41018e, 0x8aa6003b, 0x7bf8017a, 0x00000000}},  //   _dyla, брод, рнир_,\n  { {0x44d80263, 0xaf060140, 0x7e690066, 0x00000000}},  //   _lč_, _упал, _guep,\n  { {0x98b801f9, 0x2fc60051, 0x3ea62cf5, 0x00000000}},  //   алот_, leog_, muot_,\n  { {0x2cbe0093, 0x6444006c, 0x44d82cf6, 0x00000000}},  //   _uptd_, klii, _nč_,\n  { {0xfaa6008b, 0x7e612cf7, 0x39420089, 0x00000000}},  //   _гадо, _zilp, āks_,\n  { {0xab5d0036, 0xa3e7007d, 0x1994007e, 0x00000000}},  //   leżn, पास_, _даля,\n  { {0x8627132a, 0x442b0082, 0x6e240051, 0x00000000}},  //   сьме, _sjc_, éibh,\n  { {0x61f5067f, 0x9f440129, 0x6d41016b, 0x00000000}},  //   _rozl, _comú_, _xyla,\n  { {0x93f6006b, 0x44d82cf8, 0x61f5019a, 0x00000000}},  //   _şərə, _dč_, _sozl,\n  { {0x7a3d0005, 0xe3b00025, 0x5347261d, 0x00000000}},  // [8630] mètr, عرف_, схва,\n  { {0x44d80263, 0x32072cf9, 0x656500e0, 0x00000000}},  //   _fč_, óny_, _ughh,\n  { {0x201d1c7a, 0xe0e70044, 0x61f500ca, 0x00000000}},  //   tiwi_, পন্ন, _vozl,\n  { {0x7e610997, 0x6d410a74, 0x7c2d0f3a, 0x00000000}},  //   _silp, _ryla, čark,\n  { {0x8d65109f, 0x38b11db8, 0x7e610093, 0x00000000}},  //   овле, zár_, _pilp,\n  { {0x443b2cfa, 0x201d0020, 0xa3e70061, 0x00000000}},  //   loq_, siwi_, पाव_,\n  { {0x44290fa4, 0xcc860680, 0xfbda006e, 0x00000000}},  //   ona_, обще_, _मोहम,\n  { {0x251c0049, 0x6b84006c, 0x38b110fa, 0x00000000}},  //   טווא, _õigl, vár_,\n  { {0x44292cbb, 0xab290113, 0x7e610292, 0x00000000}},  //   ina_, ропа_, _tilp,\n  { {0x2d8e09c8, 0x38b12cfb, 0x3ea00051, 0x00000000}},  //   cafe_, tár_, áite_,\n  { {0x290303b5, 0x798a0173, 0x644400b0, 0x00000000}},  //   ája_, _defw, ylii,\n  { {0x3ea01af1, 0xf0920097, 0x2ca7010f, 0x00000000}},  //   šite_, ונט_, mund_,\n  { {0x7c3b0129, 0x2ca701bf, 0x290307a0, 0x00000000}},  //   mour, lund_, šja_,\n  { {0x442915f8, 0x44d81ed3, 0x386a0051, 0x00000000}},  //   ena_, _pč_, úirí_,\n  { {0x44292cfc, 0x7c290039, 0x3f8f2cfd, 0x00000000}},  //   fna_, oner, kagu_,\n  { {0x442912b7, 0x68360027, 0x44d800b9, 0x00000000}},  //   gna_, hádz, _vč_,\n  { {0x7c29010f, 0x2ca700eb, 0x6b8b0010, 0x00000000}},  // [8640] iner, hund_, _megg,\n  { {0x44291d55, 0x6b8b0383, 0x2bd10061, 0x00000000}},  //   ana_, _legg, _दोघा,\n  { {0x4429091e, 0x7c3b01aa, 0x63af021e, 0x00000000}},  //   bna_, kour, ännö,\n  { {0x7c3b028c, 0x4429037e, 0xb4c80204, 0x00000000}},  //   jour, cna_, ोटी_,\n  { {0x442028d4, 0x7c3b03c7, 0xa3e702d2, 0x00000000}},  //   mii_, dour, पार_,\n  { {0x4420000d, 0x7c29006c, 0xa6e3000c, 0x00000000}},  //   lii_, ener, æðis,\n  { {0x6b8b004e, 0x2ca7000c, 0x2d8e01a2, 0x00000000}},  //   _begg, gund_, rafe_,\n  { {0x4420000d, 0x7c290207, 0x2d8e0284, 0x00000000}},  //   nii_, gner, safe_,\n  { {0x442001a3, 0xd24f009e, 0x9c870142, 0x00000000}},  //   iii_, _سچے_, _počú,\n  { {0xdb190263, 0x4420001a, 0xd839016c, 0x00000000}},  //   _pawò, hii_, muči_,\n  { {0x44292cfe, 0x7c3b00f4, 0x44202cff, 0x00000000}},  //   yna_, bour, kii_,\n  { {0x7c3b0549, 0x44292d00, 0x2d8c123c, 0x00000000}},  //   cour, xna_, _hede_,\n  { {0x4429057a, 0x77640265, 0x2d8c219e, 0x00000000}},  //   vna_, държ, _kede_,\n  { {0x44290046, 0x6b8b02ae, 0x2d8c2d01, 0x00000000}},  //   wna_, _zegg, _jede_,\n  { {0x442900ee, 0x69c8145c, 0xa3e702d2, 0x00000000}},  //   tna_, mede, पाल_,\n  { {0x69c81e68, 0x44202d02, 0x4429001a, 0x00000000}},  //   lede, gii_, una_,\n  { {0x442902e1, 0xd8390bf8, 0x3f8f016c, 0x00000000}},  // [8650] rna_, juči_, vagu_,\n  { {0x44290213, 0x69c82d03, 0xdb1100f4, 0x00000000}},  //   sna_, nede, éfér,\n  { {0x4420006b, 0x68360027, 0x7c2909a8, 0x00000000}},  //   bii_, vádz, yner,\n  { {0x69c821c6, 0x44202d04, 0x44290066, 0x00000000}},  //   hede, cii_, qna_,\n  { {0x6b8b042d, 0x69c80148, 0x63ad2d05, 0x00000000}},  //   _regg, kede, mgan,\n  { {0x69c80209, 0x63ad0292, 0x2ca7069e, 0x00000000}},  //   jede, lgan, tund_,\n  { {0x7c3b00f4, 0x6b8b0207, 0x69c800b5, 0x00000000}},  //   tour, _pegg, dede,\n  { {0x2ca72d06, 0x7c290288, 0x00000000, 0x00000000}},  //   rund_, uner,   ,\n  { {0x2ca7000c, 0x6b8b021a, 0x2d8c26d8, 0x00000000}},  //   sund_, _vegg, _fede_,\n  { {0x6b8b0fe2, 0x7c3b0038, 0x44202d07, 0x00000000}},  //   _wegg, sour, zii_,\n  { {0x7c3b009d, 0x9f440173, 0x63ad2d08, 0x00000000}},  //   pour, _anmè_, kgan,\n  { {0xdd8f00a1, 0x00000000, 0x00000000, 0x00000000}},  //   _سوچ_,   ,   ,\n  { {0x4420001a, 0x63ad05b7, 0x00000000, 0x00000000}},  //   vii_, dgan,   ,\n  { {0x69c80198, 0x9c8201d9, 0x2d8c002d, 0x00000000}},  //   cede, ščen, _xede_,\n  { {0x4420000d, 0xd942012d, 0x00000000, 0x00000000}},  //   tii_, _пеши,   ,\n  { {0x63ad0039, 0x68fc0039, 0x61e70093, 0x00000000}},  //   ggan, ärde, _anjl,\n  { {0x44200704, 0xd387058e, 0x06970025, 0x00000000}},  // [8660] rii_, яйте_, _فنية_,\n  { {0x44200208, 0x601c006b, 0xd1b300a1, 0x00000000}},  //   sii_, _içmə, ٹیفک,\n  { {0x4420000d, 0x2d8c0576, 0x9c7c00ca, 0x00000000}},  //   pii_, _rede_, _krče,\n  { {0x2d8c2682, 0x69c80010, 0x00000000, 0x00000000}},  //   _sede_, zede,   ,\n  { {0x2d8c2d09, 0xf8a8006e, 0xf41300a0, 0x00000000}},  //   _pede_, _कम्प, _נפש_,\n  { {0x2a7f0009, 0x2c710051, 0x69c80bc0, 0x00000000}},  //   dpub_, _bád_, xede,\n  { {0x2d8c2d0a, 0x7e7b00b0, 0x00000000, 0x00000000}},  //   _vede_, _etup,   ,\n  { {0x69c8011c, 0x8cbd013d, 0x78a800f8, 0x00000000}},  //   wede, _शहरो, vudv,\n  { {0x69c82d0b, 0x62962900, 0x8f00007e, 0x00000000}},  //   tede, nsyo, кiх_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x63ad00f8, 0xab5d002b, 0x00000000, 0x00000000}},  //   ygan, neżj,   ,\n  { {0x62962900, 0x69c8002d, 0x4c160167, 0x00000000}},  //   ksyo, sede, _عباس,\n  { {0x78a80030, 0x3e5d0173, 0x200600e0, 0x00000000}},  //   sudv, _sňti_, ikoi_,\n  { {0x7afd29f9, 0xa2db013d, 0x00000000, 0x00000000}},  //   äste, निस्,   ,\n  { {0x63ad018e, 0x19bb009b, 0x49bb00b3, 0x00000000}},  //   tgan, _המוב, _המוס,\n  { {0x63ad0035, 0x9c7c11af, 0x00000000, 0x00000000}},  //   ugan, _grče,   ,\n  { {0x979c009b, 0xc619007c, 0x27e90095, 0x00000000}},  // [8670] _השחק, _моих_, _inan_,\n  { {0x20c8013d, 0x63ad010f, 0x386e013e, 0x00000000}},  //   रबंध, sgan, _kufr_,\n  { {0x7e7c0059, 0x7fd50088, 0x83f90478, 0x00000000}},  //   _črpa, ділі, _денс_,\n  { {0x2c710d7f, 0x00000000, 0x00000000, 0x00000000}},  //   _rád_,   ,   ,\n  { {0xdcf80089, 0x9ea90088, 0xb2742d0c, 0x00000000}},  //   kavē, івка_, _пляш,\n  { {0x6da50175, 0x9f5f00f6, 0x273c0082, 0x00000000}},  //   фика, _lluç_, ửng_,\n  { {0xed5601f9, 0x27e92081, 0x55780049, 0x00000000}},  //   мош_, _onan_, לעגן_,\n  { {0x1b1e0055, 0x7ae42646, 0xdfd4007c, 0x00000000}},  //   _পড়ে_, _šita, _посы,\n  { {0xa7fd006b, 0x7bc9040f, 0x7e7b00e7, 0x00000000}},  //   yqır, reeu, _utup,\n  { {0x9c7c1531, 0xf2d40049, 0x7bc900d9, 0x00000000}},  //   _srče, געץ_, seeu,\n  { {0x07a60228, 0x200d040f, 0x6aa90026, 0x00000000}},  //   манн, _klei_, suef,\n  { {0x6e230203, 0x629600e0, 0x00000000, 0x00000000}},  //   linb, ysyo,   ,\n  { {0x6aa9009d, 0x6b65007e, 0xac060088, 0x00000000}},  //   quef, _ўкла, _інша_,\n  { {0x200d04bd, 0x6925003b, 0x27e9000a, 0x00000000}},  //   _llei_, _омла, _enan_,\n  { {0x9c7c02aa, 0xa6c900a1, 0x966302ea, 0x00000000}},  //   _trče, _ہوٹل_, ткре,\n  { {0x9c7c004f, 0xa41c0044, 0x00000000, 0x00000000}},  //   _urče, থক্য_,   ,\n  { {0xe1fa08fd, 0x04430264, 0x41b6003b, 0x00000000}},  // [8680] ога_, тетн, дсет,\n  { {0x6296011c, 0x7d032d0d, 0x6e2d009d, 0x00000000}},  //   rsyo, kyns, éabl,\n  { {0x629617cf, 0x200d0292, 0x04030044, 0x00000000}},  //   ssyo, _blei_, রোধী_,\n  { {0x62962900, 0xa2db013d, 0x394701d6, 0x00000000}},  //   psyo, निश्, _myns_,\n  { {0x20060065, 0xf1aa0014, 0x200700c4, 0x00000000}},  //   rkoi_, _واسه_, ênia_,\n  { {0xa2db0309, 0x6e230405, 0x200d00e5, 0x00000000}},  //   निर्, ginb, _elei_,\n  { {0x01630517, 0xd5ed0082, 0x0caa0088, 0x00000000}},  //   _акро, _quả, ітки_,\n  { {0x8af800ed, 0x61fc193b, 0x92c20044, 0x00000000}},  //   знис_, _horl, ্মী_,\n  { {0x61fc2d0e, 0x6e230b5a, 0x3f86009d, 0x00000000}},  //   _korl, binb, mbou_,\n  { {0x4efb009b, 0xc33300b3, 0x3f860861, 0x00000000}},  //   _והמו, כוח_, lbou_,\n  { {0x61fc005b, 0x27e9000a, 0x00000000, 0x00000000}},  //   _morl, _pnan_,   ,\n  { {0x3f860b5c, 0x00000000, 0x00000000, 0x00000000}},  //   nbou_,   ,   ,\n  { {0x61fc06b2, 0xe9da00ed, 0xdb2400b0, 0x00000000}},  //   _oorl, _мкд_, äräy,\n  { {0x8a03005e, 0x61fc150c, 0x39470190, 0x00000000}},  //   _изче, _norl, _fyns_,\n  { {0x92bb0055, 0x443f0011, 0x00000000, 0x00000000}},  //   _আছে_, _ưu_,   ,\n  { {0x69da2d0f, 0x69d801cb, 0x27e90058, 0x00000000}},  //   ldte, _have, _unan_,\n  { {0x69d8021e, 0x61fc0039, 0x32550e75, 0x00000000}},  // [8690] _kave, _borl, евар,\n  { {0x69da0c53, 0xf3ff0011, 0x69d80023, 0x00000000}},  //   ndte, _giãn_, _jave,\n  { {0x69d80030, 0x61fc09ac, 0x6d4808e0, 0x00000000}},  //   _mave, _dorl, _nyda,\n  { {0x69d8068f, 0x3f860061, 0x7ae2002d, 0x00000000}},  //   _lave, gbou_, _orot,\n  { {0x61fc0378, 0x9f40009f, 0x38b80010, 0x00000000}},  //   _forl, ðið_, hér_,\n  { {0x69d8049a, 0x7bc20038, 0x7cd3005f, 0x00000000}},  //   _nave, _abou, _hərə,\n  { {0x8c450478, 0x7ae20032, 0x00000000, 0x00000000}},  //   неке, _arot,   ,\n  { {0x7ae22d10, 0x69da00bb, 0x61fc005a, 0x00000000}},  //   _brot, edte, _zorl,\n  { {0x7ae20197, 0x0e35041f, 0x39470d32, 0x00000000}},  //   _crot, _знаю, _syns_,\n  { {0x9c8201ae, 0x7ae206a1, 0xa2a70309, 0x00000000}},  //   ščan, _drot, _चिन्,\n  { {0x7ae21d7a, 0x69d8014a, 0x6d481b6c, 0x00000000}},  //   _erot, _dave, _gyda,\n  { {0x7ae2002b, 0xb6a600ed, 0x7c2d0f3a, 0x00000000}},  //   _frot, нимл, čars,\n  { {0x7ae202ae, 0x69d81994, 0x38690085, 0x00000000}},  //   _grot, _fave, _diar_,\n  { {0x69d80030, 0x69da0022, 0x6d4801c3, 0x00000000}},  //   _gave, cdte, _yyda,\n  { {0x2ab901aa, 0x7bd90022, 0xddc90c1e, 0x00000000}},  //   lèb_, _kawu, _otež,\n  { {0x69d818e1, 0xe73a007c, 0xb60200b9, 0x00000000}},  //   _zave, _ней_, _žádo,\n  { {0x7cd3005f, 0x52aa005e, 0x9c7c016c, 0x00000000}},  // [86a0] _dərə, явам_, _mrča,\n  { {0x69d805d2, 0x38692d11, 0x7bd90022, 0x00000000}},  //   _xave, _ziar_, _lawu,\n  { {0xa3ea0200, 0x61fc010f, 0x4fc6005e, 0x00000000}},  //   _една_, _vorl, есла,\n  { {0x61fc2d12, 0xfbae007d, 0x7cd3006b, 0x00000000}},  //   _worl, _टाइम, _gərə,\n  { {0x6d480193, 0x69c32d13, 0x64461c9a, 0x00000000}},  //   _syda, _obne, _ikki,\n  { {0x7cd3006b, 0x7ae20065, 0x29050f25, 0x00000000}},  //   _zərə, _rrot, kyla_,\n  { {0x8fa6008b, 0x7f490061, 0x7bd90009, 0x00000000}},  //   _паве, _eyeq, _bawu,\n  { {0x3ea62d14, 0x6d4806b8, 0x69d82c33, 0x00000000}},  //   prot_, _vyda, _save,\n  { {0x69d8010a, 0x6d480046, 0x44222d15, 0x00000000}},  //   _pave, _wyda, _mmk_,\n  { {0x38691aed, 0x7afd2d16, 0x38b810fa, 0x00000000}},  //   _siar_, ästa, tér_,\n  { {0x0b8a0057, 0x290a0010, 0x7ae2112b, 0x00000000}},  //   _если_, ába_, _wrot,\n  { {0x7ae2127c, 0x68e3057c, 0x69d800ab, 0x00000000}},  //   _trot, _drnd, _wave,\n  { {0x7c221dfb, 0x09d80044, 0x7ae201ed, 0x00000000}},  //   _imor, তাবা, _urot,\n  { {0x8cd7007d, 0x7cd3006b, 0x290500b9, 0x00000000}},  //   _मनमो, _sərə, byla_,\n  { {0x248d037e, 0xaaa601f5, 0x7bd90045, 0x00000000}},  //   ćemo_, _खिडक, _yawu,\n  { {0x7c22002b, 0x60c70093, 0x7cd3013f, 0x00000000}},  //   _jmor, _rpjm, _qərə,\n  { {0x7c2221b3, 0x6b840004, 0x2bc20183, 0x00000000}},  // [86b0] _mmor, _õigu, व्या,\n  { {0xf3ff00c4, 0x00000000, 0x00000000, 0x00000000}},  //   _tião_,   ,   ,\n  { {0x7cd3005f, 0x20070181, 0x7c22001a, 0x00000000}},  //   _tərə, ênio_, _omor,\n  { {0xf8b30049, 0x44220288, 0x00000000, 0x00000000}},  //   טשע_, _gmk_,   ,\n  { {0x62830119, 0x644d2cdc, 0x7bd90022, 0x00000000}},  //   ćnos, mlai, _rawu,\n  { {0x7c220198, 0x623501fb, 0x2ab90263, 0x00000000}},  //   _amor, _регу, vèb_,\n  { {0x644d0fdd, 0xdce10036, 0x7bd92d17, 0x00000000}},  //   olai, _oglą, _pawu,\n  { {0x644d021e, 0x69c30022, 0x8ca2013d, 0x00000000}},  //   nlai, _sbne, _गिरो,\n  { {0x7bdb0116, 0xdea401b2, 0x00000000, 0x00000000}},  //   rduu, _مینی,   ,\n  { {0x644d0051, 0x7c22225f, 0x6abb0a7e, 0x00000000}},  //   hlai, _emor, rtuf,\n  { {0x644d001e, 0x9c7c2d18, 0x6abb0218, 0x00000000}},  //   klai, _trča, stuf,\n  { {0x645a007f, 0x00000000, 0x00000000, 0x00000000}},  //   įtik,   ,   ,\n  { {0x9aa401fa, 0x2bda0164, 0xe9ce02e9, 0x00000000}},  //   _ممنو, _मोटा, _кк_,\n  { {0x44222d19, 0x7c2200ca, 0x644d007f, 0x00000000}},  //   _smk_, _zmor, elai,\n  { {0x442204be, 0x6aa901a2, 0x644d0048, 0x00000000}},  //   _pmk_, lref, flai,\n  { {0x644d00f4, 0x69c1000c, 0x6b890f30, 0x00000000}},  //   glai, lfle, nbeg,\n  { {0xe29709b2, 0x9196003b, 0x232700e2, 0x00000000}},  // [86c0] кат_, вјеш, воти_,\n  { {0x644d230b, 0xd179007e, 0x1757009b, 0x00000000}},  //   alai, есці_, _בספר_,\n  { {0x644d10fd, 0x44220f3e, 0x62840048, 0x00000000}},  //   blai, _tmk_, spio,\n  { {0x44222d1a, 0x6aa90292, 0x600a007e, 0x00000000}},  //   _umk_, kref, ьнем_,\n  { {0x7ed30025, 0x37dc0044, 0x44320941, 0x00000000}},  //   لزوا, ধাপর, mny_,\n  { {0xa2a70201, 0x44320a31, 0x7c222d1b, 0x00000000}},  //   _चित्, lny_, _smor,\n  { {0x4432137e, 0x61ee0039, 0x69c100d9, 0x00000000}},  //   ony_, _inbl, dfle,\n  { {0x4432018e, 0x6b89054e, 0x2cf200e8, 0x00000000}},  //   nny_, gbeg, _अपील_,\n  { {0x69c12665, 0x44320ffd, 0x6aa902b6, 0x00000000}},  //   ffle, iny_, gref,\n  { {0xd8f80088, 0x44320f6b, 0x2bae0061, 0x00000000}},  //   еної_, hny_, _टाका,\n  { {0x38c802fd, 0x644d2d1c, 0x7c220066, 0x00000000}},  //   رادی_, ylai, _tmor,\n  { {0x27ed027b, 0x44320a32, 0x27ff009f, 0x00000000}},  //   ñen_, jny_, ðun_,\n  { {0x443208e2, 0x61ee298f, 0xcc880014, 0x00000000}},  //   dny_, _onbl, _آنچه_,\n  { {0xb88218da, 0x44320253, 0x27ed0010, 0x00000000}},  //   üíst, eny_, űen_,\n  { {0x644d0e07, 0xca470014, 0x65942d1d, 0x00000000}},  //   tlai, _جلوه_, расу,\n  { {0x44322d1e, 0x2c7800fa, 0x61ee01a2, 0x00000000}},  //   gny_, _méd_, _anbl,\n  { {0x644d0051, 0x36050379, 0x7cca006b, 0x00000000}},  // [86d0] rlai, _موظف, _hərd,\n  { {0x44320046, 0x644d0943, 0x7cca006b, 0x00000000}},  //   any_, slai, _gərg,\n  { {0x260803d7, 0x644d00ab, 0x44320941, 0x00000000}},  //   _सकती_, plai, bny_,\n  { {0xa283007a, 0x44322d1f, 0x6aa900ea, 0x00000000}},  //   _نیرو, cny_, yref,\n  { {0x4429000b, 0xceeb0167, 0x69c10016, 0x00000000}},  //   mia_, بران_, yfle,\n  { {0x44292d20, 0xdce8006b, 0x3eaf1f7d, 0x00000000}},  //   lia_, _addı, rugt_,\n  { {0x6b8901a1, 0x7c94007e, 0x44292d21, 0x00000000}},  //   tbeg, арыц, oia_,\n  { {0x44291191, 0x6aa915a6, 0x8af7005f, 0x00000000}},  //   nia_, tref, _çəki,\n  { {0x985f002b, 0x6b8901a2, 0x00000000, 0x00000000}},  //   _eċċ_, rbeg,   ,\n  { {0x4429220a, 0x6aa9027b, 0x443215b1, 0x00000000}},  //   hia_, rref, zny_,\n  { {0x4429055e, 0x69c1018e, 0xaad80164, 0x00000000}},  //   kia_, rfle, _बैठक,\n  { {0x442904ff, 0x981600b8, 0x7cca006b, 0x00000000}},  //   jia_, ابدا, _sərg,\n  { {0x69c1010f, 0x44320161, 0x81ab0044, 0x00000000}},  //   pfle, vny_, ক্য_,\n  { {0x3e790263, 0x44320046, 0x98e50025, 0x00000000}},  //   _mèt_, wny_, _مكتو,\n  { {0x03a601fb, 0x44320871, 0x3e7901aa, 0x00000000}},  //   ливо, tny_, _lèt_,\n  { {0x4429022b, 0x7c290707, 0x443216cc, 0x00000000}},  //   gia_, nier, uny_,\n  { {0x44321712, 0x3e790263, 0x7cca006b, 0x00000000}},  // [86e0] rny_, _nèt_, _zərd,\n  { {0x7c290207, 0x4429225f, 0x44320871, 0x00000000}},  //   hier, aia_, sny_,\n  { {0x4429094f, 0x7c292d22, 0xd00a0401, 0x00000000}},  //   bia_, kier, неже_,\n  { {0x3e790263, 0x7c292d23, 0x00000000, 0x00000000}},  //   _bèt_, jier,   ,\n  { {0x539b00b6, 0xadf00309, 0x7afd21db, 0x00000000}},  //   _איכו, चालन_, ästl,\n  { {0x61460081, 0x3e7901aa, 0x61ee0133, 0x00000000}},  //   _бега, _dèt_, _unbl,\n  { {0x7c29275a, 0x00000000, 0x00000000, 0x00000000}},  //   fier,   ,   ,\n  { {0x3e790263, 0x7c29010f, 0x09ac0061, 0x00000000}},  //   _fèt_, gier, चल्य,\n  { {0xee3a012b, 0xaae60025, 0x7cca006b, 0x00000000}},  //   _зна_, اسبو, _sərd,\n  { {0x4429062b, 0x32bb0049, 0x7c290116, 0x00000000}},  //   zia_, עזיד, aier,\n  { {0x7c292d24, 0x44292d25, 0x9c7c0142, 0x00000000}},  //   bier, yia_, _krčm,\n  { {0x7c290f6a, 0xaae61f4f, 0x386d00f8, 0x00000000}},  //   cier, _مستو, öer_,\n  { {0x95cb15c4, 0x7d0a01d6, 0x66c800e2, 0x00000000}},  //   нува_, lyfs, лург_,\n  { {0x44290046, 0x998c0006, 0x00000000, 0x00000000}},  //   wia_, rodų_,   ,\n  { {0x44291d22, 0x7cca005f, 0x799a0020, 0x00000000}},  //   tia_, _hərb, matw,\n  { {0xb4c50061, 0x00000000, 0x00000000, 0x00000000}},  //   _एही_,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  // [86f0]   ,   ,   ,\n  { {0x44292d26, 0x7c2928f5, 0x799a01aa, 0x00000000}},  //   sia_, zier, natw,\n  { {0x3e7901aa, 0x6013005d, 0x74160123, 0x00000000}},  //   _sèt_, _açma, _چوپا,\n  { {0xb4fa01f8, 0x7c292d27, 0x44290065, 0x00000000}},  //   _ספרי, xier, qia_,\n  { {0x7c292d28, 0x799a036b, 0x539a00b3, 0x00000000}},  //   vier, katw, _בירו,\n  { {0x7c290046, 0x867c007b, 0x9f5f00f4, 0x00000000}},  //   wier, ערוו, _joué_,\n  { {0x7c29001f, 0x88c700b9, 0x00000000, 0x00000000}},  //   tier, _kněž,   ,\n  { {0x3e790263, 0x9f5f009d, 0x00000000, 0x00000000}},  //   _tèt_, _loué_,   ,\n  { {0x7c290109, 0x799a2d29, 0x00000000, 0x00000000}},  //   rier, fatw,   ,\n  { {0x7c290474, 0x799a01aa, 0x2fdf0cfd, 0x00000000}},  //   sier, gatw, _haug_,\n  { {0x2bc20061, 0x63b60006, 0xdb09004a, 0x00000000}},  //   व्हा, ygyn, rfeñ,\n  { {0xfc67005e, 0x00000000, 0x00000000, 0x00000000}},  //   _съзн,   ,   ,\n  { {0x799a1e5d, 0x6b9b0146, 0xf3ff0082, 0x00000000}},  //   batw, maug, _giãi_,\n  { {0x81ab0055, 0x6b9b000c, 0x645d0026, 0x00000000}},  //   ক্ত_, laug, _ahsi,\n  { {0xe94604e1, 0x443900c4, 0x7cca006b, 0x00000000}},  //   _پروی, _bjs_, _zərb,\n  { {0xf814007a, 0x3ea010ec, 0x07a62d2a, 0x00000000}},  //   _دستگ, šiti_, _таин,\n  { {0xd46719a2, 0x27e00093, 0x422606b6, 0x00000000}},  // [8700] рите_, _iain_, адав,\n  { {0x27e0022b, 0x6b9b00ea, 0x260600c4, 0x00000000}},  //   _hain_, haug, _vôos_,\n  { {0x27e004fa, 0x6b9b2d2b, 0x7afd006c, 0x00000000}},  //   _kain_, kaug, ästj,\n  { {0xe3b203ec, 0x43750245, 0xc059007e, 0x00000000}},  //   _برد_, _гурт, гіі_,\n  { {0x2fdf010a, 0x27e00038, 0x6b9b0006, 0x00000000}},  //   _daug_, _main_, daug,\n  { {0x27e0020c, 0x7ae4002a, 0xeca6003b, 0x00000000}},  //   _lain_, _áiti, ајин,\n  { {0x7cca006b, 0x6e2a2d2c, 0xadf70a4f, 0x00000000}},  //   _sərb, rifb, شروط_,\n  { {0xeca703d7, 0x7d0a0007, 0x27e00f75, 0x00000000}},  //   _गिरफ, ryfs, _nain_,\n  { {0x7cca006b, 0x799a2d2d, 0xf1c6007d, 0x00000000}},  //   _qərb, tatw, र्थन,\n  { {0xdb09014a, 0x3a270022, 0x00000000, 0x00000000}},  //   zgeç, _cmnp_,   ,\n  { {0xa3e602fb, 0x27e02d2e, 0x2004000c, 0x00000000}},  //   पया_, _bain_, _komi_,\n  { {0x2d9c036f, 0x27e0005b, 0x6d5a26be, 0x00000000}},  //   lave_, _cain_, _izta,\n  { {0x2c0b0123, 0x2004012d, 0x799a00e7, 0x00000000}},  //   _جعلی_, _momi_, patw,\n  { {0x2d9c1897, 0x44d80173, 0x443902d4, 0x00000000}},  //   nave_, _bō_, _sjs_,\n  { {0x44390bd6, 0x27e02d2f, 0xf5e40088, 0x00000000}},  //   _pjs_, _fain_, ціям,\n  { {0x27e0022b, 0x20040207, 0x27f200e0, 0x00000000}},  //   _gain_, _nomi_, _gnyn_,\n  { {0x81e00055, 0x2d9c0065, 0xe8b60061, 0x00000000}},  // [8710] থান_, kave_, _अमुच,\n  { {0x2d9c00ee, 0xf8da03d7, 0x98da013d, 0x00000000}},  //   jave_, _बनाय, _बनाए,\n  { {0x2d9c0065, 0x443919ce, 0x645d0045, 0x00000000}},  //   dave_, _tjs_, _thsi,\n  { {0x200400c4, 0xa25b009d, 0x00000000, 0x00000000}},  //   _comi_, _apôt,   ,\n  { {0x200401aa, 0x6d5a028d, 0x2d9c0f72, 0x00000000}},  //   _domi_, _azta, fave_,\n  { {0x2d9c068f, 0x9c7c0091, 0x6b8200c4, 0x00000000}},  //   gave_, _grčk, _afog,\n  { {0x6b9b101a, 0x2004004a, 0x00000000, 0x00000000}},  //   taug, _fomi_,   ,\n  { {0x2d820010, 0xf538009b, 0x3c3a0089, 0x00000000}},  //   _őket_, ינוי_, tīva_,\n  { {0x6d5a022b, 0x6b9b2d30, 0xa3c902d2, 0x00000000}},  //   _ezta, raug, ल्य_,\n  { {0x6b9b010a, 0x27e0044e, 0x75280036, 0x00000000}},  //   saug, _sain_, ździ,\n  { {0x799801aa, 0x27e00549, 0xdea300a1, 0x00000000}},  //   _devw, _pain_, _ایڈی,\n  { {0xa3c902d2, 0xa3e6013d, 0x26c2145e, 0x00000000}},  //   ल्म_, _यों_, ttko_,\n  { {0x27e0021e, 0xdce3047f, 0x7bda00b3, 0x00000000}},  //   _vain_, manı, _תקנו,\n  { {0xdce3038c, 0x27e02d31, 0x44d8000a, 0x00000000}},  //   lanı, _wain_, _pō_,\n  { {0x26c20046, 0x291e0036, 0x9479122e, 0x00000000}},  //   stko_, czta_, исту_,\n  { {0x2d9c01d9, 0xdce3005d, 0x93f6006b, 0x00000000}},  //   zave_, nanı, _şəbə,\n  { {0x38a301f6, 0x7cca005f, 0xb344006b, 0x00000000}},  // [8720] lır_, _məra, _keçə,\n  { {0x81ab0055, 0x9c820059, 0xdce30180, 0x00000000}},  //   ক্স_, ščin, hanı,\n  { {0x999a00bd, 0x38a301f6, 0xdce3038c, 0x00000000}},  //   רבעט, nır_, kanı,\n  { {0x2d9c0857, 0x6b990082, 0x68fc00f8, 0x00000000}},  //   wave_, _newg, ärdi,\n  { {0x2d9c1e8d, 0x9f49009f, 0x20041259, 0x00000000}},  //   tave_, ðað_, _vomi_,\n  { {0x6b820207, 0x38a3014a, 0xe3b200a2, 0x00000000}},  //   _sfog, kır_, _برگ_,\n  { {0x2d9c008d, 0x55770049, 0x7cca006b, 0x00000000}},  //   rave_, זעצן_, _bəra,\n  { {0x38a301f6, 0x2d9c0065, 0x6d5a01dc, 0x00000000}},  //   dır_, save_, _vzta,\n  { {0xda7a007e, 0x2d9c0065, 0xa3bb007d, 0x00000000}},  //   ыяй_, pave_, _घास_,\n  { {0x38600129, 0x38a301df, 0x6b9901c3, 0x00000000}},  //   _ahir_, fır_, _eewg,\n  { {0x6605042b, 0x2bca01fb, 0x6d5a2d32, 0x00000000}},  //   _rohk, _було_, _uzta,\n  { {0x315700a0, 0xdce3019a, 0x7ae42c1b, 0x00000000}},  //   מיין_, canı, _šitu,\n  { {0x291e115b, 0x28da0061, 0x00000000, 0x00000000}},  //   szta_, _बनवि,   ,\n  { {0xbb3b0049, 0xe84c00b9, 0x09e3007c, 0x00000000}},  //   _געדי, ětší, _ночн,\n  { {0xe65401fb, 0x9c7c0107, 0x38600048, 0x00000000}},  //   ївсь, _brči, _fhir_,\n  { {0x69c80007, 0x00000000, 0x00000000, 0x00000000}},  //   lfde,   ,   ,\n  { {0x2458007c, 0x00000000, 0x00000000, 0x00000000}},  // [8730] сать_,   ,   ,\n  { {0xdce30279, 0x7afd05e0, 0xdb1f01cc, 0x00000000}},  //   zanı, ästi, évér,\n  { {0xdce3027d, 0xa25b0027, 0x00000000, 0x00000000}},  //   yanı, _spôs,   ,\n  { {0x9c7c07a0, 0x9f5502b8, 0x00000000, 0x00000000}},  //   _grči, овеч,   ,\n  { {0xdce30180, 0x81ab0044, 0x38a3005d, 0x00000000}},  //   vanı, ক্ষ_, zır_,\n  { {0x38a3038c, 0x628d0197, 0x7aed19e2, 0x00000000}},  //   yır_, mpao, _šato,\n  { {0xdce30279, 0x38a3006b, 0xed59004c, 0x00000000}},  //   tanı, xır_, шок_,\n  { {0x7cca005f, 0xe0d20049, 0x442b0e6d, 0x00000000}},  //   _qəra, _קײן_, _jmc_,\n  { {0x442b2d33, 0xdce30279, 0x60c50300, 0x00000000}},  //   _mmc_, ranı, lthm,\n  { {0x38a3047f, 0x88c9007c, 0xdce3005d, 0x00000000}},  //   tır_, алов_, sanı,\n  { {0x2eed0365, 0xdce30279, 0x999e00b9, 0x00000000}},  //   _href_, panı, nitř_,\n  { {0xb90103d7, 0x7e7b2d34, 0x38a30180, 0x00000000}},  //   _नई_, _kuup, rır_,\n  { {0xf7720151, 0x7c2b2d35, 0x38a31e00, 0x00000000}},  //   باد_, _imgr, sır_,\n  { {0x9c7c00d0, 0x7ae900f8, 0x7bc908ea, 0x00000000}},  //   _srči, mvet, lfeu,\n  { {0x7ae9001c, 0x3860005b, 0x00000000, 0x00000000}},  //   lvet, _thir_,   ,\n  { {0x69de2d36, 0x442b20ae, 0x00000000, 0x00000000}},  //   _óper, _cmc_,   ,\n  { {0xa2060088, 0x442b2d37, 0xfbd20104, 0x00000000}},  // [8740] опад, _dmc_, ותן_,\n  { {0xe1f701f9, 0xe2460025, 0x00000000, 0x00000000}},  //   огу_, آخري,   ,\n  { {0x442b2d38, 0x60260451, 0x7c2b0056, 0x00000000}},  //   _fmc_, оджа, _omgr,\n  { {0x2eed00f4, 0x9c7c0428, 0x2d850035, 0x00000000}},  //   _bref_, _urči, _afle_,\n  { {0x6441009d, 0xaad8006e, 0x6589009d, 0x00000000}},  //   élie, _बैंक, _éphé,\n  { {0x0caa1736, 0x6ce5006e, 0x7ae90039, 0x00000000}},  //   атии_, किंग_, dvet,\n  { {0x90c30175, 0xb7bb0181, 0x7bc9009d, 0x00000000}},  //   _обре, lhãe, ffeu,\n  { {0x8aa6005c, 0x2eed0009, 0x984d0036, 0x00000000}},  //   ород, _fref_, _iść_,\n  { {0x8af7005f, 0x7ae90010, 0xada615c4, 0x00000000}},  //   _şərh, gvet, _маал,\n  { {0x2fcd012d, 0x00000000, 0x00000000, 0x00000000}},  //   _zbeg_,   ,   ,\n  { {0x7ae90197, 0xb21b000c, 0x91bb009b, 0x00000000}},  //   avet, _stæk, סמטי,\n  { {0x81c20044, 0xd90f00a1, 0x00000000, 0x00000000}},  //   ্যি_, ئیٹ_,   ,\n  { {0x69b20061, 0x7ae908de, 0x442b009d, 0x00000000}},  //   _आयपी, cvet, _rmc_,\n  { {0x442b00f8, 0x60c505af, 0xdcfa01c5, 0x00000000}},  //   _smc_, ythm, _netī,\n  { {0x81c20055, 0x80c9013d, 0x442b0133, 0x00000000}},  //   ্যা_, _रहें, _pmc_,\n  { {0xb8670084, 0x00000000, 0x00000000, 0x00000000}},  //   _باتو,   ,   ,\n  { {0xd763089d, 0x442b0068, 0xb60702dc, 0x00000000}},  // [8750] _تنظی, _vmc_, _дянк,\n  { {0xd2510137, 0x442b00d9, 0x628d0197, 0x00000000}},  //   رنا_, _wmc_, rpao,\n  { {0x212700ad, 0x7ae90010, 0x6ad30044, 0x00000000}},  //   ành_, zvet, তিযো,\n  { {0x60c50016, 0x442b00d9, 0x2eed281b, 0x00000000}},  //   rthm, _umc_, _pref_,\n  { {0xfd4c0011, 0x00000000, 0x00000000, 0x00000000}},  //   _triề,   ,   ,\n  { {0xc27a009b, 0x7ae9014a, 0x201d00e7, 0x00000000}},  //   _לרשי, vvet, shwi_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7ae90065, 0x2eed1194, 0x81bd0044, 0x00000000}},  //   tvet, _tref_, _আসি_,\n  { {0xeab10025, 0x7ae92d39, 0x7bc901a2, 0x00000000}},  //   رعة_, uvet, rfeu,\n  { {0x7ae90e2d, 0x644d2d3a, 0xa9250139, 0x00000000}},  //   rvet, hoai, здол,\n  { {0x7ae901d9, 0xf1b2007b, 0x81bd0044, 0x00000000}},  //   svet, עסט_, _আসা_,\n  { {0xb33b006b, 0x7ae90010, 0x00000000, 0x00000000}},  //   _keçd, pvet,   ,\n  { {0x644d002d, 0xa3e6007d, 0x3f8a006b, 0x00000000}},  //   doai, _योग_, _əbu_,\n  { {0x3e6001aa, 0xa3c9007d, 0x7afd006c, 0x00000000}},  //   pòte_, ल्स_, ästu,\n  { {0x1828007a, 0x29350049, 0x7c3b0009, 0x00000000}},  //   _وقتی_, _מאַן_, onur,\n  { {0x7c3b0fc7, 0x00000000, 0x00000000, 0x00000000}},  //   nnur,   ,   ,\n  { {0x3cdd03d7, 0xc8650054, 0x93430745, 0x00000000}},  // [8760] _कैसे_, _تطوي, енте,\n  { {0x7c3b01a2, 0x00000000, 0x00000000, 0x00000000}},  //   hnur,   ,   ,\n  { {0x644100f7, 0x757b009b, 0x645600ab, 0x00000000}},  //   élic, _לטיפ, plyi,\n  { {0x62811e90, 0x764e0253, 0x1eaa0380, 0x00000000}},  //   _člov, loby, ماتي_,\n  { {0x443209d7, 0x442000fa, 0x00000000, 0x00000000}},  //   miy_, mhi_,   ,\n  { {0x44200133, 0x44322d3b, 0x00000000, 0x00000000}},  //   lhi_, liy_,   ,\n  { {0x39a6002a, 0xdb002d3c, 0x00000000, 0x00000000}},  //   hísí_, ngmö,   ,\n  { {0x4420011c, 0x44320b1f, 0xef8603f6, 0x00000000}},  //   nhi_, niy_, _хлап,\n  { {0x44200022, 0xef1a02b8, 0x764e0142, 0x00000000}},  //   ihi_, _ума_, koby,\n  { {0x7de50025, 0x644d0e64, 0x39140072, 0x00000000}},  //   _يسلم, zoai, дмор,\n  { {0x3ea60089, 0x4432013f, 0x69bd007d, 0x00000000}},  //   lsot_, kiy_, _शारी,\n  { {0x44202a4a, 0x2d9e0185, 0x3f8612dd, 0x00000000}},  //   jhi_, _hete_, ncou_,\n  { {0x44201ea5, 0x2d9e2d3d, 0x44322d3e, 0x00000000}},  //   dhi_, _kete_, diy_,\n  { {0x2d9e2d3f, 0x764e00e0, 0x7ae20133, 0x00000000}},  //   _jete_, goby, _isot,\n  { {0x2d9e0607, 0x644d00b0, 0x44321575, 0x00000000}},  //   _mete_, toai, fiy_,\n  { {0x69da121b, 0x44200207, 0x2d9e0142, 0x00000000}},  //   lete, ghi_, _lete_,\n  { {0x644d0035, 0x78ba0fd1, 0x320a05d2, 0x00000000}},  // [8770] roai, lutv, _boby_,\n  { {0x320a013e, 0x44200697, 0x69da0e69, 0x00000000}},  //   _coby_, ahi_, nete,\n  { {0x7761005f, 0x320a07f1, 0xf4850167, 0x00000000}},  //   əlxa, _doby_, _تاخی,\n  { {0x69da0073, 0x44200198, 0x7ae2002d, 0x00000000}},  //   hete, chi_, _osot,\n  { {0xa2a70754, 0x69da022b, 0x2d9e022b, 0x00000000}},  //   _चिट्, kete, _bete_,\n  { {0x69da1fe9, 0x41e4007e, 0x2d9e0091, 0x00000000}},  //   jete, _піса, _cete_,\n  { {0x69da0938, 0x2d9e012b, 0xd0d40265, 0x00000000}},  //   dete, _dete_, _поръ,\n  { {0xdb1b0f57, 0x61e70010, 0xea890478, 0x00000000}},  //   lgué, _hajl, обил_,\n  { {0x2d9e001a, 0x81e00044, 0x60c70009, 0x00000000}},  //   _fete_, থার_, _hqjm,\n  { {0x69da0010, 0xb33b011f, 0xdb1b25bd, 0x00000000}},  //   gete, _geçe, ngué,\n  { {0x186a00ed, 0x61e70127, 0x44201926, 0x00000000}},  //   жани_, _majl, yhi_,\n  { {0xf0920049, 0x44200065, 0x5b1501ee, 0x00000000}},  //   כנט_, xhi_, _омет,\n  { {0x69da2d40, 0x764e0009, 0xddc10964, 0x00000000}},  //   bete, toby, _milž,\n  { {0x61e70620, 0x00000000, 0x00000000, 0x00000000}},  //   _najl,   ,   ,\n  { {0x4420000b, 0x44320c2d, 0x320a0197, 0x00000000}},  //   thi_, tiy_, _roby_,\n  { {0x68fc05cc, 0xe29a00ed, 0xc95200b3, 0x00000000}},  //   årde, жаа_, _שמה_,\n  { {0x44202d41, 0x44320890, 0x00000000, 0x00000000}},  // [8780] rhi_, riy_,   ,\n  { {0x44200be3, 0x7cca006b, 0x00000000, 0x00000000}},  //   shi_, _sərm,   ,\n  { {0xb4660113, 0x2d9e2d42, 0x25e7006e, 0x00000000}},  //   _окол, _rete_, _छोटी_,\n  { {0x69da1038, 0xb33b011f, 0x2d9e0181, 0x00000000}},  //   zete, _seçe, _sete_,\n  { {0x2d9e01aa, 0x61e7002b, 0x63a4032c, 0x00000000}},  //   _pete_, _fajl, main,\n  { {0x63a42d43, 0xd04c006b, 0x3f9f15ab, 0x00000000}},  //   lain, _əhəm, _eeuu_,\n  { {0x69da0010, 0x2d9e008d, 0x7ae20066, 0x00000000}},  //   vete, _vete_, _ssot,\n  { {0x63a400b0, 0x2d9e2d44, 0x69da00c7, 0x00000000}},  //   nain, _wete_, wete,\n  { {0x2d9e0e6d, 0xe457009b, 0x69c301c3, 0x00000000}},  //   _tete_, ויקט_, _bcne,\n  { {0x63a42d45, 0x6ffe0035, 0x7ae200ca, 0x00000000}},  //   hain, _făcâ, _vsot,\n  { {0x69da2d46, 0x2918143a, 0x63a40288, 0x00000000}},  //   rete, ára_, kain,\n  { {0x63a4044e, 0x69da01a3, 0x78ba2d47, 0x00000000}},  //   jain, sete, rutv,\n  { {0x63a421d4, 0x78ba00f8, 0x44c801a2, 0x00000000}},  //   dain, sutv, eß_,\n  { {0x69da1972, 0x7afd05fe, 0x7bc00190, 0x00000000}},  //   qete, åste, lgmu,\n  { {0x63a40016, 0x81bd0044, 0xdb00008e, 0x00000000}},  //   fain, _আসল_, damé,\n  { {0x69ca0201, 0x63a42d48, 0x3ea90ed8, 0x00000000}},  //   त्री, gain, šati_,\n  { {0x2bd0001c, 0xeabc0044, 0x53340fd8, 0x00000000}},  // [8790] थ्या, _অনুম, ветт,\n  { {0xdb0000f4, 0x27e90112, 0xd25b007e, 0x00000000}},  //   ramè, _haan_, іца_,\n  { {0xd1310054, 0x63a40020, 0x31c4005e, 0x00000000}},  //   دما_, bain, ъств,\n  { {0xa295008b, 0x27e9006c, 0x63a4032c, 0x00000000}},  //   _памі, _jaan_, cain,\n  { {0x61e72d49, 0x0f350123, 0x27e92d4a, 0x00000000}},  //   _tajl, رکرد, _maan_,\n  { {0x27e90007, 0x780c0061, 0x00000000, 0x00000000}},  //   _laan_, _हक्क_,   ,\n  { {0x25a101a2, 0xf41f00f8, 0x00000000, 0x00000000}},  //   _mehl_, _klä_,   ,\n  { {0x7cca005f, 0x3eb20006, 0x2d870051, 0x00000000}},  //   _mərh, šyta_, scne_,\n  { {0xef54005e, 0x00000000, 0x00000000, 0x00000000}},  //   _акть,   ,   ,\n  { {0x63a419be, 0xf41f00b0, 0x7bdb010e, 0x00000000}},  //   zain, _llä_, seuu,\n  { {0x27e90250, 0x200d0007, 0x09e10044, 0x00000000}},  //   _baan_, _koei_, বালা,\n  { {0xab5d0036, 0x9f440062, 0x2b401adc, 0x00000000}},  //   zeży, _samé_, _žice_,\n  { {0x63a411e8, 0xcc3a007b, 0x27e9006a, 0x00000000}},  //   vain, _צענט, _daan_,\n  { {0x63a4011c, 0xd9450893, 0x22840538, 0x00000000}},  //   wain, _пели, _rök_,\n  { {0x22840073, 0x63a4046e, 0xa50a005e, 0x00000000}},  //   _sök_, tain, чева_,\n  { {0x27e90100, 0x6b890169, 0x3c3a0089, 0x00000000}},  //   _gaan_, nceg, tīvi_,\n  { {0x41b60867, 0x6aa906ec, 0x69c10009, 0x00000000}},  // [87a0] есет, nsef, ogle,\n  { {0x69c10018, 0x63a42a08, 0x80c90044, 0x00000000}},  //   ngle, sain, রবন্,\n  { {0x63a40e46, 0xdb0019cd, 0x659b00a0, 0x00000000}},  //   pain, ramé, _מייק,\n  { {0x81c20044, 0xa2b2007d, 0x7dd3006b, 0x00000000}},  //   ্যই_, ेंद्, hısı,\n  { {0x7cca006b, 0x6aa90190, 0x200d22e1, 0x00000000}},  //   _tərk, jsef, _doei_,\n  { {0x6aa92d4b, 0x00000000, 0x00000000, 0x00000000}},  //   dsef,   ,   ,\n  { {0x3243041f, 0x7cca006b, 0x200d00d9, 0x00000000}},  //   _серг, _kəri, _foei_,\n  { {0x59c2006e, 0xdee6003b, 0x38850089, 0x00000000}},  //   _शाहर, _поби, _pērn_,\n  { {0xdcea0676, 0x27e90058, 0xd00f0025, 0x00000000}},  //   rafı, _raan_, _الق_,\n  { {0x69c1000c, 0x27e90d4a, 0xf3ff0011, 0x00000000}},  //   ggle, _saan_, _nhãn_,\n  { {0x39580030, 0x27e90022, 0x0dc90025, 0x00000000}},  //   ærs_, _paan_, _تبقى_,\n  { {0x7cca006b, 0x7e7a0471, 0x00000000, 0x00000000}},  //   _nəri, _hitp,   ,\n  { {0x27e9021e, 0x7cca006b, 0x81ab0044, 0x00000000}},  //   _vaan_, _sərh, ক্ট_,\n  { {0xdb020181, 0x49920167, 0x7dd3005a, 0x00000000}},  //   _adoç, _حیدر, cısı,\n  { {0x644100f4, 0xe78716e0, 0x27e902d4, 0x00000000}},  //   élio, _пупо, _taan_,\n  { {0xb4e10164, 0x6d5a00ea, 0xb6f501fc, 0x00000000}},  //   _धनी_, _myta, _азиј,\n  { {0x7cca006b, 0x200d01d6, 0x38690288, 0x00000000}},  // [87b0] _dəri, _roei_, _ihar_,\n  { {0xa507008b, 0x38690066, 0x00000000, 0x00000000}},  //   _зямл, _hhar_,   ,\n  { {0x7cca013f, 0xb33b0023, 0x248100d9, 0x00000000}},  //   _fəri, _deça, _uuhm_,\n  { {0x6e951663, 0x69c10e3b, 0x7dd3005a, 0x00000000}},  //   виду, zgle, zısı,\n  { {0xdee50a27, 0x7dd3014a, 0x644800f4, 0x00000000}},  //   толи, yısı, édie,\n  { {0xde940025, 0x7cca006b, 0x6d5a00f8, 0x00000000}},  //   اجنب, _zəri, _byta,\n  { {0x6d5a0036, 0x3869002d, 0x7e7a0085, 0x00000000}},  //   _cyta, _ohar_, _ditp,\n  { {0x2ef500d7, 0x201f001a, 0x7cca006b, 0x00000000}},  //   _избр, _ului_, _xəri,\n  { {0x6b890091, 0x93f6013f, 0x69c101a2, 0x00000000}},  //   rceg, _şəkə, tgle,\n  { {0x6aa920e9, 0x6b890197, 0x69c12d4c, 0x00000000}},  //   rsef, sceg, ugle,\n  { {0x69c1001f, 0xd945003b, 0x6aa90056, 0x00000000}},  //   rgle, тени, ssef,\n  { {0xe73a0069, 0x69c112dc, 0xb886000c, 0x00000000}},  //   дем_, sgle, _skíð,\n  { {0x7dd3005a, 0x00000000, 0x00000000, 0x00000000}},  //   pısı,   ,   ,\n  { {0xdb1b1261, 0x7cca013f, 0x00000000, 0x00000000}},  //   nguí, _səri,   ,\n  { {0xf3ff0181, 0x00000000, 0x00000000, 0x00000000}},  //   _chão_,   ,   ,\n  { {0x38692d4d, 0x7cca006b, 0xe8d6009b, 0x00000000}},  //   _ghar_, _qəri, _יוצר_,\n  { {0xb33b0181, 0x00000000, 0x00000000, 0x00000000}},  // [87c0] _peça,   ,   ,\n  { {0xb21b124e, 0x42231b67, 0x6448009d, 0x00000000}},  //   _stær, адув, édib,\n  { {0xb33b008d, 0x3ead1fe1, 0xa5b70049, 0x00000000}},  //   _veça, _avet_, _בליק_,\n  { {0x6e210ca4, 0x6d5a0006, 0x7e7a01d6, 0x00000000}},  //   _allb, _ryta, _sitp,\n  { {0x442201f6, 0xdfcf0b59, 0x3ead08de, 0x00000000}},  //   _ilk_, تين_, _cvet_,\n  { {0x93f6005f, 0x6d5a0046, 0x37d60044, 0x00000000}},  //   _şəhə, _pyta, _তোমর,\n  { {0x3ead014a, 0x10a30088, 0xa3c9006e, 0x00000000}},  //   _evet_, _висн, ल्क_,\n  { {0x6d5a2d4e, 0xdc2a0014, 0x7e7a01c3, 0x00000000}},  //   _vyta, بسته_, _witp,\n  { {0x629601aa, 0x7e7a01f3, 0x201c007f, 0x00000000}},  //   npyo, _titp, ūvis_,\n  { {0x7e7a01b5, 0x38690b4a, 0x7afd03b1, 0x00000000}},  //   _uitp, _shar_, åsta,\n  { {0x23e2013d, 0x91bb009b, 0x386900d2, 0x00000000}},  //   _पसंद, ומיי, _phar_,\n  { {0x3c3a0089, 0x28c4007d, 0x92a900b4, 0x00000000}},  //   tīvu_, लंबि, nałó,\n  { {0xf848007e, 0x7c222d4f, 0x387b0082, 0x00000000}},  //   тчэй_, _ilor, _viqr_,\n  { {0xb8f40054, 0x44220052, 0x7c222d50, 0x00000000}},  //   _مكتب, _alk_, _hlor,\n  { {0x03c7008b, 0x3869002a, 0x55580242, 0x00000000}},  //   ксам, _thar_, варя_,\n  { {0x44220061, 0x99650088, 0x7c22000a, 0x00000000}},  //   _clk_, _стіл, _jlor,\n  { {0x24580057, 0x284a0049, 0x44222d51, 0x00000000}},  // [87d0] тать_, _רעפּ, _dlk_,\n  { {0x7c22029a, 0x442201b5, 0x9f440129, 0x00000000}},  //   _llor, _elk_, _camí_,\n  { {0x0cbd0055, 0x3ead0cce, 0x7c220efe, 0x00000000}},  //   _আন্ত, _svet_, _olor,\n  { {0x765507a3, 0x44220082, 0x00000000, 0x00000000}},  //   lozy, _glk_,   ,\n  { {0x3c3a001e, 0x7cca006b, 0x03d60104, 0x00000000}},  //   hīvs_, _məru, _גורם_,\n  { {0x7c222d52, 0x5187025f, 0x09bd0044, 0x00000000}},  //   _alor, _шума, _অস্থ,\n  { {0x7c220093, 0xdb1b0b32, 0xb4b1013d, 0x00000000}},  //   _blor, rguí, _ऑटो_,\n  { {0x30da007b, 0x20f30166, 0x09ab0061, 0x00000000}},  //   _אַמע, _ići_, चण्य,\n  { {0x32110826, 0x00000000, 0x00000000, 0x00000000}},  //   _kozy_,   ,   ,\n  { {0x7c22002d, 0xb33b00f4, 0x68261ad4, 0x00000000}},  //   _elor, _leço, _móde,\n  { {0x07a60152, 0x7cca006b, 0x00000000, 0x00000000}},  //   ланн, _sərv,   ,\n  { {0x30da007b, 0xc5e9009b, 0x7cca006b, 0x00000000}},  //   ײַטע, _מד_, _pərv,\n  { {0x9f8a006c, 0x6b9b107e, 0x00000000, 0x00000000}},  //   _tööd_, mbug,   ,\n  { {0x2aba00b6, 0x7c220059, 0x44220253, 0x00000000}},  //   _נמצא, _zlor, _slk_,\n  { {0x44220145, 0x00000000, 0x00000000, 0x00000000}},  //   _plk_,   ,   ,\n  { {0x44220026, 0xba3d013e, 0x74160426, 0x00000000}},  //   _qlk_, jrůz, دورا,\n  { {0xe1fa02b8, 0xa920006b, 0x6826004a, 0x00000000}},  // [87e0] нга_, _çörə, _códe,\n  { {0x55e60c45, 0x26c20f2f, 0x7cca006b, 0x00000000}},  //   _сооб, muko_, _zəru,\n  { {0x26c2002d, 0x645f0009, 0x44221669, 0x00000000}},  //   luko_, blqi, _tlk_,\n  { {0xe29a01fb, 0x7cca006b, 0x00000000, 0x00000000}},  //   _пам_, _mərt,   ,\n  { {0xdd9200a6, 0x26c22d53, 0x78ba012d, 0x00000000}},  //   موش_, nuko_, zrtv,\n  { {0xc1e704e1, 0x69d303d7, 0x6abe0044, 0x00000000}},  //   _مکمل_, _बॉली, ্বমো,\n  { {0x62862d54, 0x7c220129, 0x26c20020, 0x00000000}},  //   _huko, _plor, huko_,\n  { {0x61ee0219, 0x6286000b, 0x26c2002d, 0x00000000}},  //   _habl, _kuko, kuko_,\n  { {0x61ee000b, 0x7c220065, 0x81e70044, 0x00000000}},  //   _kabl, _vlor, ভার_,\n  { {0x61ee01ca, 0xd8f801fb, 0x26c2002d, 0x00000000}},  //   _jabl, вної_, duko_,\n  { {0x5bc6023c, 0x6444021e, 0x3257034e, 0x00000000}},  //   _مقال, knii, רסים_,\n  { {0x26c20020, 0x61ee008e, 0x2fc60058, 0x00000000}},  //   fuko_, _labl, ngog_,\n  { {0xb33b00f4, 0xcc570097, 0x26c21f6b, 0x00000000}},  //   _reço, _גבאי_, guko_,\n  { {0x27ed01d9, 0x9f4400f6, 0xd4e704f1, 0x00000000}},  //   žen_, _mamà_, люби,\n  { {0xf99300b6, 0x63a60116, 0x76550095, 0x00000000}},  //   _פרק_, _bekn, rozy,\n  { {0x6286011c, 0x26c20058, 0x64442d55, 0x00000000}},  //   _buko, buko_, gnii,\n  { {0x925901f9, 0x6b820020, 0x76550036, 0x00000000}},  // [87f0] ваат_, _mgog, pozy,\n  { {0xbb3b0049, 0x62862d56, 0x00000000, 0x00000000}},  //   געמי, _duko,   ,\n  { {0x61ee2d57, 0x2d8e0009, 0x321101dc, 0x00000000}},  //   _dabl, dcfe_, _vozy_,\n  { {0x63a6023d, 0x6b820016, 0x2ef50545, 0x00000000}},  //   _gekn, _ngog, изер,\n  { {0x69d8299e, 0x62860061, 0xb33b005f, 0x00000000}},  //   _obve, _guko, _keçm,\n  { {0x44292d58, 0xef18008b, 0x443b1638, 0x00000000}},  //   lha_, ымі_, liq_,\n  { {0x26c21126, 0x20f30166, 0x628601a2, 0x00000000}},  //   zuko_, _ući_, _zuko,\n  { {0x44290fb3, 0x26c2107e, 0x443b0ede, 0x00000000}},  //   nha_, yuko_, niq_,\n  { {0x6b9b0190, 0x628000f4, 0xcda90025, 0x00000000}},  //   rbug, _émot, _لهذه_,\n  { {0x44292d59, 0x6abb2d5a, 0x6b9b01f3, 0x00000000}},  //   hha_, rruf, sbug,\n  { {0x5d84006d, 0x44292b1c, 0x7cca006b, 0x00000000}},  //   _المل, kha_, _dərs,\n  { {0x26c2022b, 0x44291087, 0x290b00f5, 0x00000000}},  //   tuko_, jha_, ćca_,\n  { {0x4429000b, 0xd90f026c, 0x8c1a00b6, 0x00000000}},  //   dha_, تیں_, _שוני,\n  { {0x26c2022b, 0x7c292d5b, 0xc98701f9, 0x00000000}},  //   ruko_, lher, _суди,\n  { {0x64a604af, 0x443b005f, 0x61ee0059, 0x00000000}},  //   раба, fiq_, _rabl,\n  { {0x44290b0e, 0x61ee00f4, 0x26c20020, 0x00000000}},  //   gha_, _sabl, puko_,\n\n  { {0x61ee0211, 0x81c10044, 0x6444006c, 0x00000000}},  // [8800] _pabl, ্জন_, rnii,\n  { {0xb33b011f, 0xc69300b6, 0x62860166, 0x00000000}},  //   _geçm, _ואז_, _vuko,\n  { {0x442921b3, 0x55bb00b6, 0x7c2905e5, 0x00000000}},  //   bha_, _במיו, kher,\n  { {0x44290195, 0xeaa70025, 0xfa880011, 0x00000000}},  //   cha_, _وع_, _lừa_,\n  { {0x61ee0472, 0x7c292d5c, 0x7c3b00e5, 0x00000000}},  //   _tabl, dher, diur,\n  { {0x40960331, 0x61ee0061, 0x00000000, 0x00000000}},  //   _врат, _uabl,   ,\n  { {0xac260517, 0x442000b4, 0x00000000, 0x00000000}},  //   ифик, oki_,   ,\n  { {0x6aa20263, 0x20e80279, 0x7c2904b4, 0x00000000}},  //   _pwof, _işi_, gher,\n  { {0x787f0089, 0x5a34005e, 0xfa880082, 0x00000000}},  //   _būvn, йнит, _bừa_,\n  { {0x4420006c, 0x442918bc, 0x5cd60088, 0x00000000}},  //   hki_, zha_, _відх,\n  { {0x4420021e, 0x443b006b, 0xfa880011, 0x00000000}},  //   kki_, yiq_, _dừa_,\n  { {0x7c292d5d, 0x44200036, 0x44290065, 0x00000000}},  //   cher, jki_, xha_,\n  { {0x44202d5e, 0x81ac0055, 0x09e10044, 0x00000000}},  //   dki_, _গান_, বাজা,\n  { {0x44202d5f, 0x20c9001c, 0x4429002b, 0x00000000}},  //   eki_, ांमध, wha_,\n  { {0x442906f7, 0x443b006b, 0x44202d60, 0x00000000}},  //   tha_, tiq_, fki_,\n  { {0xe97b00b6, 0x44292d61, 0x44200022, 0x00000000}},  //   _בנוש, uha_, gki_,\n  { {0x442900b0, 0xf77300a6, 0x443b0350, 0x00000000}},  // [8810] rha_, _باغ_, riq_,\n  { {0x442906fe, 0xc7b1026c, 0x69c801e2, 0x00000000}},  //   sha_, _بڑھ_, ngde,\n  { {0x44202910, 0x443b0026, 0x46150123, 0x00000000}},  //   bki_, piq_, _نوکر,\n  { {0x44201547, 0xa3ce03d7, 0x1dc90204, 0x00000000}},  //   cki_, _राय_, _राहत,\n  { {0x63ad00b0, 0x4439010f, 0x161b0204, 0x00000000}},  //   maan, _ims_, _नकार_,\n  { {0x63ad011c, 0x6da201f9, 0x7c2900ab, 0x00000000}},  //   laan, пиша, wher,\n  { {0x7c290038, 0xa3ce0309, 0x44391697, 0x00000000}},  //   ther, _राम_, _kms_,\n  { {0x1be900da, 0x4439006c, 0x61e52d62, 0x00000000}},  //   удии_, _jms_, lehl,\n  { {0x7c29010f, 0x7c3b2d63, 0xdb00000c, 0x00000000}},  //   rher, riur, tamá,\n  { {0x7c29000b, 0x44202d64, 0x7a2401aa, 0x00000000}},  //   sher, zki_, _pòta,\n  { {0x63ad0343, 0xfa88001d, 0x44200036, 0x00000000}},  //   kaan, _vừa_, yki_,\n  { {0x63ad0ac0, 0x44390061, 0x7bd90009, 0x00000000}},  //   jaan, _nms_, _ubwu,\n  { {0x44200059, 0xceb20049, 0x7bc900e7, 0x00000000}},  //   vki_, ּיל_, mgeu,\n  { {0x44200046, 0x69dd0010, 0x00000000, 0x00000000}},  //   wki_, őseb,   ,\n  { {0x442003e9, 0x4439007f, 0x63ad01d6, 0x00000000}},  //   tki_, _bms_, faan,\n  { {0x3eb2010a, 0x63ad0007, 0xb386003b, 0x00000000}},  //   šyti_, gaan, слал,\n  { {0x44202cfe, 0xd467026b, 0x61e5010f, 0x00000000}},  // [8820] rki_, сите_, fehl,\n  { {0x645d1c45, 0x7afd00b0, 0xd5b000a1, 0x00000000}},  //   _eksi, ästy, _زہر_,\n  { {0x5a3a0049, 0xf77f0181, 0x44201ddd, 0x00000000}},  //   נגעה, meça_, pki_,\n  { {0x7ae9000b, 0x63ad0397, 0xf77f00fa, 0x00000000}},  //   kwet, caan, leça_,\n  { {0x92f60088, 0x69c800f8, 0x00000000, 0x00000000}},  //   _учні, ygde,   ,\n  { {0xd25200a1, 0x7cca006b, 0x7ae9010e, 0x00000000}},  //   _رنز_, _bərp, dwet,\n  { {0x645d021e, 0x443900b0, 0x20e80035, 0x00000000}},  //   _yksi, _yms_, _uşi_,\n  { {0x443901f3, 0x2d850995, 0xeb97003b, 0x00000000}},  //   _xms_, _egle_, бић_,\n  { {0x09ac0044, 0x9c7c000a, 0x00000000, 0x00000000}},  //   _খাবা, _osčv,   ,\n  { {0xb33b02b9, 0x98a7011f, 0x23ad0006, 0x00000000}},  //   _seçk, _aynı_, mųjų_,\n  { {0x63ad0760, 0xfca90014, 0x2d9500e2, 0x00000000}},  //   yaan, _نانو_, _фрус,\n  { {0xbb860025, 0x7ae900e7, 0x6448009d, 0x00000000}},  //   _الإي, bwet, édil,\n  { {0x44391651, 0x63ad0052, 0x645d012d, 0x00000000}},  //   _rms_, vaan, _rksi,\n  { {0x7afd0030, 0x63ad0020, 0x9f5f009d, 0x00000000}},  //   æste, waan, éréo_,\n  { {0x63ad02ae, 0x443912da, 0x16342751, 0x00000000}},  //   taan, _pms_, черя,\n  { {0x25bf22cc, 0x443900f6, 0x5399007c, 0x00000000}},  //   şul_, _qms_, рвая_,\n  { {0xb33b005f, 0x63ad011c, 0xf77f0181, 0x00000000}},  // [8830] _keçi, raan, beça_,\n  { {0x63ad2d65, 0x44390253, 0x00000000, 0x00000000}},  //   saan, _wms_,   ,\n  { {0x443900b0, 0x63ad17ce, 0x68260161, 0x00000000}},  //   _tms_, paan, _módn,\n  { {0x44392d66, 0x16070316, 0x00000000, 0x00000000}},  //   _ums_, शावर_,   ,\n  { {0xa3ce02d2, 0x287c0049, 0x66170032, 0x00000000}},  //   _रात_, אנאמ, _koxk,\n  { {0xae0302fb, 0x2c4c00b9, 0x7c9501fc, 0x00000000}},  //   लाइन_, věda_, ориц,\n  { {0x7c84003b, 0x66170288, 0x00000000, 0x00000000}},  //   пуње, _moxk,   ,\n  { {0xa4b800b6, 0x7ae90066, 0x291e0006, 0x00000000}},  //   צלחה_, twet, dyta_,\n  { {0x7bc900f4, 0xdb0001b1, 0x27f2000a, 0x00000000}},  //   rgeu, jamä, _rayn_,\n  { {0x394502d3, 0x7ae90112, 0x89a90081, 0x00000000}},  //   жног, rwet, шков_,\n  { {0x7ae90007, 0xa3c90061, 0x00000000, 0x00000000}},  //   swet, ईला_,   ,\n  { {0xe8df001d, 0x81c10044, 0x00000000, 0x00000000}},  //   hiệm_, ্জি_,   ,\n  { {0x66170270, 0x00000000, 0x00000000, 0x00000000}},  //   _boxk,   ,   ,\n  { {0xb33b011f, 0x00000000, 0x00000000, 0x00000000}},  //   _geçi,   ,   ,\n  { {0xf77f2d67, 0xa9790049, 0x81c10044, 0x00000000}},  //   reça_, _דאַכ, ্জা_,\n  { {0xccf2009b, 0xb4660245, 0xdb00006c, 0x00000000}},  //   וכל_, ікал, bamä,\n  { {0x987b0049, 0xe8890082, 0x225a0082, 0x00000000}},  // [8840] _דאקט, _kẻo_, topk_,\n  { {0x6826139d, 0xfe6500a2, 0x23ad007f, 0x00000000}},  //   _kódo, _سگ_, vųjų_,\n  { {0x765c011c, 0x24820022, 0xbf8a19a2, 0x00000000}},  //   mory, _tikm_, абеж_,\n  { {0x81e70055, 0x68260047, 0x30760783, 0x00000000}},  //   ভাগ_, _módo, цузс,\n  { {0x0877007b, 0xaedc0c18, 0x437600ed, 0x00000000}},  //   קענט_, ублi, _фунт,\n  { {0xdcba0265, 0xa0a602dc, 0xe8890082, 0x00000000}},  //   ащи_, _магд, _nẻo_,\n  { {0x25ba0022, 0xcc2a013b, 0x00000000, 0x00000000}},  //   _mdpl_, ицид_,   ,\n  { {0x765c19ff, 0x09b40055, 0xb33b01f6, 0x00000000}},  //   hory, জ্ঞা, _seçi,\n  { {0x32181516, 0x63b90036, 0x2d9602ea, 0x00000000}},  //   _kory_, ówni, _дрес,\n  { {0x291e0006, 0xfce62d68, 0x38600022, 0x00000000}},  //   tyta_, _мозо, _akir_,\n  { {0x8e75007e, 0xdb000039, 0xed5a004c, 0x00000000}},  //   _хутч, damå, _тож_,\n  { {0x8c140055, 0x291e0006, 0x32180197, 0x00000000}},  //   ়োজন_, ryta_, _lory_,\n  { {0x249a0093, 0x765c005b, 0x291e0006, 0x00000000}},  //   _atpm_, fory, syta_,\n  { {0x765c1721, 0x09b40044, 0xddda000a, 0x00000000}},  //   gory, জ্জা, _oktō,\n  { {0x45d4005e, 0x00000000, 0x00000000, 0x00000000}},  //   ьорс,   ,   ,\n  { {0x69da0039, 0x25a60107, 0x3cfe012d, 0x00000000}},  //   lfte, _đole_, _mrtv_,\n  { {0xf77f0181, 0x8335005e, 0x00000000, 0x00000000}},  // [8850] meço_, чнах,   ,\n  { {0x69da01a2, 0xf1c30082, 0x7ae200e7, 0x00000000}},  //   nfte, _giờ_, _mpot,\n  { {0xd25000a1, 0xd258007e, 0x64411f1f, 0x00000000}},  //   ڑنے_, іцу_, élis,\n  { {0x155a00b6, 0x2c4501c5, 0x47c20044, 0x00000000}},  //   _לכתב, pēdi_, ষ্ঠী,\n  { {0x442b00d4, 0x63a2008e, 0xbea5004d, 0x00000000}},  //   _ilc_, ñone, чалк,\n  { {0xee380c50, 0x321800b4, 0x00000000, 0x00000000}},  //   оні_, _gory_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x61f50211, 0xc1040379, 0xc3120044, 0x00000000}},  //   _hazl, _توفي, _সেটি_,\n  { {0xf77f0181, 0x61f50006, 0x0b450152, 0x00000000}},  //   deço_, _kazl, янин,\n  { {0x442b00ab, 0x7a24000a, 0x61f52d69, 0x00000000}},  //   _llc_, _fòtm, _jazl,\n  { {0x61f52d6a, 0x442b0051, 0x644f0036, 0x00000000}},  //   _mazl, _olc_, _ojci,\n  { {0x7c2d06b8, 0x66e60088, 0x1bd520e6, 0x00000000}},  //   ďars, пома, _ходя,\n  { {0x765c2d6b, 0x7c2b0026, 0x249a0145, 0x00000000}},  //   tory, _ilgr, _stpm_,\n  { {0xa6e3000c, 0xe8890011, 0xa3ce013d, 0x00000000}},  //   óðar, _hẻm_, _राह_,\n  { {0xd4d5007e, 0x442b257a, 0x7afb2d6c, 0x00000000}},  //   мітэ, _blc_, lvut,\n  { {0xc483064b, 0xccf20049, 0x442b00ca, 0x00000000}},  //   елск, עכן_, _clc_,\n  { {0x32180036, 0x442b0dcb, 0x00000000, 0x00000000}},  // [8860] _pory_, _dlc_,   ,\n  { {0x175700b6, 0xa3ce0164, 0x442b06ed, 0x00000000}},  //   _מספר_, _राव_, _elc_,\n  { {0x2eff0022, 0x442b1746, 0x00000000, 0x00000000}},  //   _aruf_, _flc_,   ,\n  { {0x44240011, 0x442b0145, 0x1fd6013d, 0x00000000}},  //   _ôm_, _glc_, ठभेड,\n  { {0x61f5011f, 0xdb0b0065, 0x32180075, 0x00000000}},  //   _fazl, _degë, _tory_,\n  { {0x13b10044, 0x00000000, 0x00000000, 0x00000000}},  //   _ছায়,   ,   ,\n  { {0x7ae21712, 0xa11600a1, 0xd1b300a1, 0x00000000}},  //   _spot, _عورت, _سینک,\n  { {0x63a40f4f, 0xdb0b0023, 0x442b00d2, 0x00000000}},  //   nbin, _gegë, _xlc_,\n  { {0x61f5014a, 0x298a0088, 0x63a402d4, 0x00000000}},  //   _yazl, йсно_, ibin,\n  { {0x3f800006, 0x831b0049, 0x98b80423, 0x00000000}},  //   žius_, צויז, олот_,\n  { {0xdca301fb, 0x69da0e42, 0x3b8602dc, 0x00000000}},  //   _захи, rfte, _елег,\n  { {0x63a4021c, 0x00000000, 0x00000000, 0x00000000}},  //   jbin,   ,   ,\n  { {0xf77f02d5, 0x7ae20091, 0x63a40091, 0x00000000}},  //   reço_, _upot, dbin,\n  { {0x4b7b009b, 0xa7fb004a, 0x00000000, 0x00000000}},  //   _האדו, doñe,   ,\n  { {0x61f50e3b, 0x7a2d0211, 0x68260010, 0x00000000}},  //   _razl, _fútb, _módj,\n  { {0xd251026c, 0x63a40058, 0x442b0026, 0x00000000}},  //   ھنا_, gbin, _qlc_,\n  { {0xd767026c, 0x61f5021c, 0x67bc009b, 0x00000000}},  // [8870] _ڈاکٹ, _pazl, _המחק,\n  { {0x26cb008e, 0x63a410bd, 0xdb0b1071, 0x00000000}},  //   muco_, abin, _degè,\n  { {0x4fd51a02, 0x2127001d, 0xb33b00f4, 0x00000000}},  //   джет, ánh_, _reçu,\n  { {0x2eff0145, 0x00000000, 0x00000000, 0x00000000}},  //   _pruf_,   ,   ,\n  { {0xa7fb049a, 0x644d0051, 0x26cb004a, 0x00000000}},  //   coñe, mnai, nuco_,\n  { {0x2f23001e, 0x644d0995, 0x63af2d6d, 0x00000000}},  //   _rīgā_, lnai, _hecn,\n  { {0x644d0181, 0xcfb502dc, 0xb33b0023, 0x00000000}},  //   onai, _обвъ, _veçu,\n  { {0x644d1e5a, 0x13b10055, 0x62870211, 0x00000000}},  //   nnai, _ছাড়, _hijo,\n  { {0xb33b014a, 0x644d2d6e, 0x7bdb01d6, 0x00000000}},  //   _geçt, inai, rfuu,\n  { {0x628f0951, 0x7afb006c, 0x644d0051, 0x00000000}},  //   _muco, rvut, hnai,\n  { {0xdb0b0047, 0xd90f007a, 0x63a40006, 0x00000000}},  //   _megé, ایع_, ybin,\n  { {0x2fcf0022, 0x629d0d17, 0x00000000, 0x00000000}},  //   nggg_, _otso,   ,\n  { {0x09ac0055, 0xd83901aa, 0xcfb6009b, 0x00000000}},  //   _খারা, nsčy_, ולרי_,\n  { {0x6287007f, 0xdb0b00f6, 0x644d007f, 0x00000000}},  //   _nijo, _regè, enai,\n  { {0x63a40168, 0x98562d6f, 0x21010166, 0x00000000}},  //   tbin, _отиш, nčić_,\n  { {0x628f0035, 0x644d009d, 0x26cb0285, 0x00000000}},  //   _buco, gnai, buco_,\n  { {0x4b7a007b, 0x628700f4, 0x43430401, 0x00000000}},  // [8880] ַטעג, _bijo, ветв,\n  { {0xb5ca0014, 0x644d0051, 0x6287016c, 0x00000000}},  //   _بودم_, anai, _cijo,\n  { {0x628704bd, 0xb33b014a, 0x87050167, 0x00000000}},  //   _dijo, _seçt, _قبیل,\n  { {0x28c5006e, 0x644d0051, 0x2fcf0085, 0x00000000}},  //   _विनि, cnai, gggg_,\n  { {0x987b0049, 0x6287008e, 0xdd920070, 0x00000000}},  //   קאנט, _fijo, نوش_,\n  { {0x6287008e, 0x00000000, 0x00000000, 0x00000000}},  //   _gijo,   ,   ,\n  { {0x628f00f6, 0x998c012d, 0x216710d6, 0x00000000}},  //   _zuco, tidž_, _жири_,\n  { {0x62870288, 0x00000000, 0x00000000, 0x00000000}},  //   _zijo,   ,   ,\n  { {0x98460089, 0x7535016e, 0x6e930025, 0x00000000}},  //   _dēļ_, zzzz, _للقا,\n  { {0x4d7609b9, 0x00000000, 0x00000000, 0x00000000}},  //   _قطار,   ,   ,\n  { {0xa3c0024c, 0xa3ce0183, 0x2d8c01ee, 0x00000000}},  //   ीला_, रला_, _igde_,\n  { {0x26cb0885, 0x00000000, 0x00000000, 0x00000000}},  //   tuco_,   ,   ,\n  { {0xa7740069, 0x63af01ee, 0xe6670088, 0x00000000}},  //   ключ, _recn, дтво,\n  { {0xb8f40044, 0x26d9002d, 0x68fc0d32, 0x00000000}},  //   _হন_, rtso_, årds,\n  { {0x628f2d70, 0xdb0b0010, 0x26cb2d71, 0x00000000}},  //   _suco, _regé, suco_,\n  { {0x62872d72, 0x628f0880, 0xdb0b0010, 0x00000000}},  //   _sijo, _puco, _segé,\n  { {0xf48402be, 0x644d0181, 0x6595007e, 0x00000000}},  // [8890] турн, rnai, _папу,\n  { {0x644d1a0b, 0x416b003b, 0x00000000, 0x00000000}},  //   snai, ојем_,   ,\n  { {0x63af2d73, 0x62870065, 0x00000000, 0x00000000}},  //   _tecn, _vijo,   ,\n  { {0x44320502, 0x628f1cf6, 0x2d8c1ec5, 0x00000000}},  //   chy_, _tuco, _agde_,\n  { {0x44292bc7, 0x28c503d7, 0xceeb0014, 0x00000000}},  //   mka_, _विभि, تران_,\n  { {0x787600c4, 0x7a240173, 0x00000000, 0x00000000}},  //   máve, _fòti,   ,\n  { {0x78761c8d, 0x2918006c, 0x7a2400d4, 0x00000000}},  //   láve, äral_, _gòti,\n  { {0xa3d7007d, 0x21010166, 0x2cac00d9, 0x00000000}},  //   _साफ_, rčić_, _dwdd_,\n  { {0x4429000c, 0x78761050, 0x00000000, 0x00000000}},  //   ika_, náve,   ,\n  { {0x442908b5, 0xe9d901fc, 0xa2c2007d, 0x00000000}},  //   hka_, чко_, _लिस्,\n  { {0x442906d5, 0x186a00e3, 0x68462c8c, 0x00000000}},  //   kka_, зани_, енна,\n  { {0x44290119, 0x389700e5, 0xdb3500e2, 0x00000000}},  //   jka_, _căra_, _пеењ,\n  { {0x787600c4, 0x7c290232, 0x3ead01aa, 0x00000000}},  //   jáve, mker, _jwet_,\n  { {0x44290089, 0x78762d74, 0x7c292d75, 0x00000000}},  //   eka_, dáve, lker,\n  { {0x7c291ea7, 0x443200ab, 0xa966005e, 0x00000000}},  //   oker, thy_, _пиша_,\n  { {0x7c290d6f, 0x44292d76, 0x1ddf01f5, 0x00000000}},  //   nker, gka_, प्तत,\n  { {0x7c29015c, 0x03f20044, 0x787600c4, 0x00000000}},  // [88a0] iker, ঙালী_, gáve,\n  { {0xe1f70839, 0x7a242d77, 0x442914a6, 0x00000000}},  //   нгу_, _pòti, aka_,\n  { {0x7c2902cc, 0x443200ab, 0x3ead04be, 0x00000000}},  //   kker, phy_, _awet_,\n  { {0x4429083f, 0x7c2900b5, 0xbe8a012b, 0x00000000}},  //   cka_, jker, пске_,\n  { {0x68260977, 0xc8ec0316, 0x63b62d78, 0x00000000}},  //   _códi, _जन्म_, mayn,\n  { {0x7c290328, 0x80db0044, 0x3f8d06c0, 0x00000000}},  //   eker, ণিজ্, _egeu_,\n  { {0x3da501fb, 0xa3d701f5, 0x00000000, 0x00000000}},  //   тріб, _साम_,   ,\n  { {0x7c292d79, 0x63b61084, 0x3ead000a, 0x00000000}},  //   gker, nayn, _fwet_,\n  { {0x59d40316, 0x661e20ad, 0x78520089, 0x00000000}},  //   _दादर, _oopk, tāvn,\n  { {0x44292d7a, 0x7c29271c, 0x6da60025, 0x00000000}},  //   zka_, aker, _أمام,\n  { {0x44290046, 0x787612dd, 0x22961f7d, 0x00000000}},  //   yka_, záve, _læk_,\n  { {0x2fc00051, 0x7c292d7b, 0x44292d7c, 0x00000000}},  //   óigh_, cker, xka_,\n  { {0x63b600e0, 0xead42540, 0x00000000, 0x00000000}},  //   dayn, _роль,   ,\n  { {0x44290046, 0xe980007e, 0x78762d7d, 0x00000000}},  //   wka_, _калi_, váve,\n  { {0x6826000a, 0x00000000, 0x00000000, 0x00000000}},  //   _nódw,   ,   ,\n  { {0x78ba040d, 0xd6db1548, 0x44290006, 0x00000000}},  //   mstv, _ето_, uka_,\n  { {0x78ba07e4, 0x661e0022, 0x07f80380, 0x00000000}},  // [88b0] lstv, _fopk, _سريع_,\n  { {0x44290073, 0x51f80a78, 0x78762d7e, 0x00000000}},  //   ska_, нную_, ráve,\n  { {0x7fd50245, 0xd7c50061, 0x68260d7b, 0x00000000}},  //   вілі, _वयाच, _sódi,\n  { {0x64482d7f, 0x764701aa, 0x44290065, 0x00000000}},  //   édit, lijy, qka_,\n  { {0x141a00a3, 0xdb0b0030, 0x0af20044, 0x00000000}},  //   _חורב, _udgø, জমুল_,\n  { {0xf7740476, 0x78ba063f, 0x00000000, 0x00000000}},  //   נקס_, kstv,   ,\n  { {0x7c290f5d, 0xf402001a, 0x91650014, 0x00000000}},  //   tker, _faţă_, _شهره,\n  { {0x78ba00ee, 0x00000000, 0x00000000, 0x00000000}},  //   dstv,   ,   ,\n  { {0x3ed90025, 0xce95007c, 0x00000000, 0x00000000}},  //   _زواج_, _разъ,   ,\n  { {0x63b60276, 0x00000000, 0x00000000, 0x00000000}},  //   zayn,   ,   ,\n  { {0x07a60b7b, 0x78ba01c5, 0x00000000, 0x00000000}},  //   канн, gstv,   ,\n  { {0x7e630f80, 0x201f0e6d, 0x00000000, 0x00000000}},  //   lonp, _joui_,   ,\n  { {0xfc4601ca, 0x661e01c5, 0x7cca006b, 0x00000000}},  //   ších_, _popk, _sərx,\n  { {0xceb2019b, 0x2c4c00b9, 0x78ba06a6, 0x00000000}},  //   שים_, vědi_, bstv,\n  { {0xdb0b0010, 0x6fb30061, 0x63b600e0, 0x00000000}},  //   _megí, ुणां, tayn,\n  { {0x2ae5006e, 0xe8d60104, 0x6b9b0521, 0x00000000}},  //   _कहाँ_, _סופר_, ncug,\n  { {0xd4670517, 0x63b6005f, 0x7e630c5c, 0x00000000}},  // [88c0] тите_, rayn, konp,\n  { {0xa3d703d7, 0x22960030, 0x7d08009d, 0x00000000}},  //   _साथ_, _væk_, _jérô,\n  { {0x6448009d, 0x200d0258, 0x00000000, 0x00000000}},  //   édis, _bnei_,   ,\n  { {0xd91a0049, 0xc952009b, 0x00000000, 0x00000000}},  //   וועל, סמא_,   ,\n  { {0xa3d702fb, 0x78ba04bb, 0x200d00e5, 0x00000000}},  //   _सात_, zstv, _dnei_,\n  { {0x200d0305, 0x00000000, 0x00000000, 0x00000000}},  //   _enei_,   ,   ,\n  { {0x61460072, 0x61fc1f74, 0x61fe00ea, 0x00000000}},  //   _рева, _iarl, mdpl,\n  { {0x78ba01d9, 0x5f060175, 0xdfd20379, 0x00000000}},  //   vstv, _изба, _خير_,\n  { {0x25b801e5, 0xdfcf09b9, 0x00000000, 0x00000000}},  //   karl_, _ذيل_,   ,\n  { {0x78ba06a2, 0x61fe0bbc, 0x68262bdf, 0x00000000}},  //   tstv, ndpl, _módu,\n  { {0x61fc0007, 0x4973004c, 0x3ea62d80, 0x00000000}},  //   _marl, ильс, lpot_,\n  { {0x78ba086e, 0xa3ce0309, 0x6d5a008e, 0x00000000}},  //   rstv, _राग_, _ixta,\n  { {0x6f021e3b, 0x3ea601aa, 0x682600d6, 0x00000000}},  //   nvoc, npot_, _nódu,\n  { {0x78ba05fa, 0xa4d50106, 0x6f020779, 0x00000000}},  //   pstv, логі, ivoc,\n  { {0xfa77019b, 0xa3ce0061, 0x00000000, 0x00000000}},  //   _שעות_, रलं_,   ,\n  { {0x5454004c, 0x787606b8, 0x3ea60336, 0x00000000}},  //   авст, rávc, kpot_,\n  { {0x61fc121b, 0x33750867, 0x2d9e02cc, 0x00000000}},  // [88d0] _barl, угар, _ofte_,\n  { {0x35f50113, 0xdb000129, 0x41b50025, 0x00000000}},  //   _спор, lamó, امار,\n  { {0x61fc018e, 0xdb0b0219, 0x787629c5, 0x00000000}},  //   _darl, _regí, láva,\n  { {0xdb0b0047, 0x61fc00ab, 0x2d9e0023, 0x00000000}},  //   _segí, _earl, _afte_,\n  { {0x6d5a005f, 0x61fc02e5, 0x787604bb, 0x00000000}},  //   _axta, _farl, náva,\n  { {0x7bc20bf2, 0x61fc230d, 0x00000000, 0x00000000}},  //   _adou, _garl,   ,\n  { {0xeb990373, 0x7e631136, 0xddda000a, 0x00000000}},  //   ний_, ronp, _oktņ,\n  { {0x200d000d, 0x7e630146, 0x1bb90025, 0x00000000}},  //   _unei_, sonp, رابع_,\n  { {0x6d5a0208, 0x28c50164, 0x05d301f5, 0x00000000}},  //   _exta, _विहि, _तांब,\n  { {0x787606b8, 0x38692d81, 0x2bd50061, 0x00000000}},  //   dáva, _akar_, _धावा,\n  { {0x2ba4006e, 0x6abb01e5, 0x00000000, 0x00000000}},  //   _ग्वा, ssuf,   ,\n  { {0x6e210030, 0x2c09013d, 0xe73a0121, 0x00000000}},  //   _holb, वाओं_, еем_,\n  { {0x28c50201, 0x09e509ae, 0x6e2100db, 0x00000000}},  //   _विवि, _болн, _kolb,\n  { {0xaf760049, 0x38691e3a, 0x7f3a0049, 0x00000000}},  //   טערס_, _ekar_, געשו,\n  { {0x69c30802, 0x69d801f5, 0x6e2104eb, 0x00000000}},  //   _idne, _माती, _molb,\n  { {0x29070085, 0x00000000, 0x00000000, 0x00000000}},  //   _irna_,   ,   ,\n  { {0x24800065, 0xa95200a1, 0x3ea60146, 0x00000000}},  // [88e0] rmim_, _نہیں, xpot_,\n  { {0xf1a9007a, 0x29070022, 0xdb0b00f6, 0x00000000}},  //   نامه_, _krna_, _megà,\n  { {0x61fc06b5, 0x3ebf000d, 0x61fe032e, 0x00000000}},  //   _varl, _avut_, rdpl,\n  { {0x6aad0f68, 0x61fc0253, 0x68fc0737, 0x00000000}},  //   _ħafn, _warl, ærdi,\n  { {0xc7d7019b, 0x61fc2d82, 0x78520089, 0x00000000}},  //   רוני_, _tarl, tāvj,\n  { {0xccfa012b, 0x44220011, 0x3ea601d6, 0x00000000}},  //   ећи_, _hok_, rpot_,\n  { {0x6aa2009f, 0xf8c50201, 0x4422023a, 0x00000000}},  //   _stof, _विषय, _kok_,\n  { {0x69c30016, 0x68260010, 0x4422266c, 0x00000000}},  //   _adne, _móds, _jok_,\n  { {0x5a3401f9, 0x628e13df, 0x2907002a, 0x00000000}},  //   инит, _kibo, _arna_,\n  { {0x2ba402fb, 0xa3e402fb, 0x4422000c, 0x00000000}},  //   _ग्रा, प्त_, _lok_,\n  { {0x8d9306ea, 0x4422049b, 0x7d930054, 0x00000000}},  //   _المش, _ook_, _المؤ,\n  { {0x628e0a04, 0x442202cc, 0x81570049, 0x00000000}},  //   _libo, _nok_, רסטע_,\n  { {0xa3ce02f4, 0x2907000c, 0xdb001801, 0x00000000}},  //   _राज_, _erna_, ramó,\n  { {0x7c2201b5, 0x44222764, 0x78760027, 0x00000000}},  //   _hoor, _aok_, ráva,\n  { {0x7c222d83, 0x442205ad, 0x787610fa, 0x00000000}},  //   _koor, _bok_, sáva,\n  { {0x69c30541, 0x4422014a, 0x26de001a, 0x00000000}},  //   _zdne, _cok_, ător_,\n  { {0x44222d84, 0x7c220168, 0x64460146, 0x00000000}},  // [88f0] _dok_, _moor, _dmki,\n  { {0x7d0811b8, 0x628e016e, 0x6aa40023, 0x00000000}},  //   _ords, _cibo, _çifu,\n  { {0x645a2d85, 0x442201aa, 0xdb0b0010, 0x00000000}},  //   étic, _fok_, _megá,\n  { {0x7c22017b, 0x6e21004e, 0xe8d700b3, 0x00000000}},  //   _noor, _solb, רואר_,\n  { {0x63ad020c, 0x44c1010a, 0x27e904ea, 0x00000000}},  //   mban, lė_, _mban_,\n  { {0x51870545, 0x628e2d86, 0x00000000, 0x00000000}},  //   _буба, _gibo,   ,\n  { {0x4422011f, 0x44c1010a, 0x6e2100b9, 0x00000000}},  //   _yok_, nė_, _volb,\n  { {0x63ad010f, 0xdd9100a1, 0x3cec0035, 0x00000000}},  //   nban, حوں_, _dpdv_,\n  { {0x9ed9008b, 0x6e211818, 0x63ad0058, 0x00000000}},  //   _шмат_, _tolb, iban,\n  { {0x4a451662, 0x44c1010a, 0x63ad00ef, 0x00000000}},  //   рнов, kė_, hban,\n  { {0x7c2208b2, 0x8e840054, 0x63ad011c, 0x00000000}},  //   _foor, _الله, kban,\n  { {0x6f09037e, 0x7bc70006, 0x7c2200d9, 0x00000000}},  //   _krec, ėjus, _goor,\n  { {0x44220387, 0x63ad093b, 0xf7720070, 0x00000000}},  //   _rok_, dban, تاد_,\n  { {0x44220047, 0xbb3a009b, 0x27e9002d, 0x00000000}},  //   _sok_, _בעני, _eban_,\n  { {0x628e012b, 0x89da009b, 0x44c10006, 0x00000000}},  //   _ribo, _יחסי, gė_,\n  { {0x63ad011c, 0x628e04be, 0x6f092100, 0x00000000}},  //   gban, _sibo, _orec,\n  { {0x9676008b, 0x6aa40189, 0x628e2d87, 0x00000000}},  // [8900] _выні, _çift, _pibo,\n  { {0x44220bd6, 0x1546012b, 0x63ad0058, 0x00000000}},  //   _wok_, _веом, aban,\n  { {0x628e2d88, 0x63ad2c13, 0xe0da21aa, 0x00000000}},  //   _vibo, bban, тве_,\n  { {0x6f090016, 0x35dc0164, 0x628e2d1a, 0x00000000}},  //   _brec, _बाड़, _wibo,\n  { {0x6f090b76, 0xe7e80061, 0x2bdc0061, 0x00000000}},  //   _crec, ट्या_, _याबा,\n  { {0x7c221787, 0x6f092d89, 0x7d000010, 0x00000000}},  //   _soor, _drec, járá,\n  { {0x7c2202c2, 0x2ce80123, 0x787d0010, 0x00000000}},  //   _poor, اظتی_, léve,\n  { {0x6f091632, 0x64560047, 0x69d80061, 0x00000000}},  //   _frec, nnyi, _माही,\n  { {0x7c22049b, 0x6f090375, 0xadba0025, 0x00000000}},  //   _voor, _grec, _لهذا_,\n  { {0x7c220100, 0xbae3008b, 0x5a34017a, 0x00000000}},  //   _woor, іцый, снот,\n  { {0xa3d703d7, 0x78760428, 0x4ac201f5, 0x00000000}},  //   _साल_, rávn, _शिकव,\n  { {0x44c1010a, 0x3e7b00f4, 0x7a2d1a13, 0x00000000}},  //   vė_, rête_, _lúth,\n  { {0x787d0010, 0x00000000, 0x00000000, 0x00000000}},  //   jéve,   ,   ,\n  { {0x44c1010a, 0xa3e4007d, 0xdb0b0190, 0x00000000}},  //   tė_, प्स_, _begæ,\n  { {0x63ad1766, 0x3a7b0049, 0xd49804dd, 0x00000000}},  //   tban, _שטוד, ирт_,\n  { {0xe3b301fa, 0x44c10006, 0x64560010, 0x00000000}},  //   ترس_, rė_, gnyi,\n  { {0x44c10006, 0x63ad0971, 0x925900ed, 0x00000000}},  // [8910] sė_, rban, гаат_,\n  { {0xe7e80754, 0x44c1010a, 0x63ad2d8a, 0x00000000}},  //   ट्ठा_, pė_, sban,\n  { {0x6f0912d6, 0x2614007d, 0x63ad0af1, 0x00000000}},  //   _srec, दारी_, pban,\n  { {0xe3b8007c, 0x78520089, 0x7d000010, 0x00000000}},  //   _ключ_, tāvi, zárá,\n  { {0x6da5013b, 0x59c60061, 0x644d1703, 0x00000000}},  //   била, लणार, miai,\n  { {0x644d1218, 0x14b800e9, 0x6f090142, 0x00000000}},  //   liai, _حدیث_, _vrec,\n  { {0x6f090016, 0x30a4025f, 0x628511f0, 0x00000000}},  //   _wrec, _мртв, mmho,\n  { {0x6f09000d, 0x644d1b73, 0x26c410fa, 0x00000000}},  //   _trec, niai, ámok_,\n  { {0x6f09001a, 0x7a240173, 0x00000000, 0x00000000}},  //   _urec, _pòtp,   ,\n  { {0xe8f90726, 0x6ce701fb, 0x644d095f, 0x00000000}},  //   гло_, _віде, hiai,\n  { {0xa3d7007d, 0x644d0ecb, 0x999e0006, 0x00000000}},  //   सला_, kiai, entų_,\n  { {0x9b950054, 0x6aa90190, 0x00000000, 0x00000000}},  //   _الإت, ppef,   ,\n  { {0xbb850054, 0x7c3b2d8b, 0x644d0016, 0x00000000}},  //   _الشي, mhur, diai,\n  { {0x7c3b0023, 0x00000000, 0x00000000, 0x00000000}},  //   lhur,   ,   ,\n  { {0x2ba600b9, 0xe64306bb, 0x644d0f75, 0x00000000}},  //   síců_, черп, fiai,\n  { {0x7c3b179a, 0x644d009d, 0x62851a33, 0x00000000}},  //   nhur, giai, emho,\n  { {0xd3b9008b, 0x130a007e, 0x6456121b, 0x00000000}},  // [8920] русі_, ынай_, rnyi,\n  { {0x26c20059, 0x787d2d8c, 0xf772009e, 0x00000000}},  //   msko_, réve, _واک_,\n  { {0x787d0010, 0xd7be0061, 0x3076142c, 0x00000000}},  //   séve, _्याच, будс,\n  { {0x644d1160, 0x26c2012d, 0xdb00000c, 0x00000000}},  //   ciai, osko_, mamö,\n  { {0x26c20cce, 0x2f180b21, 0x7c3b1ac5, 0x00000000}},  //   nsko_, роль_, dhur,\n  { {0x442001cd, 0x4432004f, 0x5096012b, 0x00000000}},  //   lji_, lky_, _грађ,\n  { {0x44200006, 0x44320471, 0x1619013d, 0x00000000}},  //   oji_, oky_, दातर_,\n  { {0x44320428, 0x389700e5, 0x00000000, 0x00000000}},  //   nky_, _gări_,   ,\n  { {0x26c20059, 0x9b580aed, 0x442000d0, 0x00000000}},  //   jsko_, рипт_, iji_,\n  { {0x26c20213, 0x00000000, 0x00000000, 0x00000000}},  //   dsko_,   ,   ,\n  { {0x290a0181, 0x764e2d8d, 0x44321db2, 0x00000000}},  //   íba_, diby, kky_,\n  { {0x44200066, 0x26c21531, 0xdb0b0039, 0x00000000}},  //   jji_, fsko_, _begä,\n  { {0x44202480, 0x4432004f, 0x7c650025, 0x00000000}},  //   dji_, dky_, _بالل,\n  { {0x44200006, 0x9aa40014, 0x68fc0030, 0x00000000}},  //   eji_, _همچو, ærds,\n  { {0x644d1678, 0x59dd006e, 0x44201b12, 0x00000000}},  //   tiai, _मातर, fji_,\n  { {0x44202d8e, 0xb4e903d7, 0x69da01a2, 0x00000000}},  //   gji_, _यही_, lgte,\n  { {0xe3bf008e, 0x91b9005e, 0x7e6a01d6, 0x00000000}},  // [8930] _coña_, игат_, kofp,\n  { {0x4420000b, 0x69da1e7d, 0x644d0006, 0x00000000}},  //   aji_, ngte, siai,\n  { {0xdce800b9, 0x44200066, 0x44320161, 0x00000000}},  //   _vzdě, bji_, bky_,\n  { {0x44200df0, 0x44320428, 0x2e2b0190, 0x00000000}},  //   cji_, cky_, _løft_,\n  { {0x4439028c, 0x9f050025, 0x09d00044, 0x00000000}},  //   _ils_, توشو, ়্যা,\n  { {0x443902c2, 0x81e70044, 0x00000000, 0x00000000}},  //   _hls_, _মোর_,   ,\n  { {0xfe700558, 0x7c3b21ae, 0xac390088, 0x00000000}},  //   رده_, thur, ичих_,\n  { {0x3cfe2c26, 0x5ac9003b, 0x443926fa, 0x00000000}},  //   _dstv_, алим_, _jls_,\n  { {0x44392d8f, 0x7c3b00bb, 0x7c43016c, 0x00000000}},  //   _mls_, rhur, _ćurč,\n  { {0x7c3b008d, 0x44202d90, 0x44320d86, 0x00000000}},  //   shur, zji_, zky_,\n  { {0x35d303d7, 0x9d550b03, 0x44392d91, 0x00000000}},  //   _ताज़, _بنات, _ols_,\n  { {0x186a0920, 0x26c20209, 0x44390c0d, 0x00000000}},  //   рами_, tsko_, _nls_,\n  { {0x44320428, 0x28c50309, 0x442006a3, 0x00000000}},  //   vky_, _विकि, vji_,\n  { {0x44392d92, 0x80ca0044, 0x442000e7, 0x00000000}},  //   _als_, _রহস্, wji_,\n  { {0x443206b8, 0x44200087, 0x764e01aa, 0x00000000}},  //   tky_, tji_, riby,\n  { {0x26c2016c, 0x44390035, 0xd5dc013d, 0x00000000}},  //   psko_, _cls_, _बावज,\n  { {0x42260265, 0x44202d93, 0x44320428, 0x00000000}},  // [8940] одав, rji_, rky_,\n  { {0x4439120d, 0x44320428, 0x6aa4002a, 0x00000000}},  //   _els_, sky_, _éife,\n  { {0x10a60797, 0x44200891, 0x443900c4, 0x00000000}},  //   циен, pji_, _fls_,\n  { {0x23e10164, 0xa2a2013d, 0x443900c4, 0x00000000}},  //   _फायद, _कंप्, _gls_,\n  { {0x69da0030, 0x7e6a2d94, 0xa25b0142, 0x00000000}},  //   ygte, tofp, _kvôl,\n  { {0x63a41e8f, 0x00000000, 0x00000000, 0x00000000}},  //   lcin,   ,   ,\n  { {0x672f0046, 0x61ee0066, 0xd7db0061, 0x00000000}},  //   zycj, _ibbl, _भालच,\n  { {0x63a40127, 0x7a2d2d95, 0x7e6a0009, 0x00000000}},  //   ncin, _mútu, sofp,\n  { {0x63a42d96, 0x6a7400f6, 0x00000000, 0x00000000}},  //   icin, làfi,   ,\n  { {0x200402c1, 0x20060032, 0x298a02e9, 0x00000000}},  //   _hami_, ldoi_, исно_,\n  { {0x200424a9, 0xc27b01ce, 0x63a40ff9, 0x00000000}},  //   _kami_, שריי, kcin,\n  { {0x20062d97, 0x8b6a007c, 0x20042d98, 0x00000000}},  //   ndoi_, _киев_, _jami_,\n  { {0x61ee0282, 0x7c6506dd, 0x4439013f, 0x00000000}},  //   _obbl, _عامل, _rls_,\n  { {0x7bc00504, 0x443900ca, 0x63a40089, 0x00000000}},  //   lamu, _sls_, ecin,\n  { {0x6e280190, 0x65942d99, 0x344b2d9a, 0x00000000}},  //   _modb, дару, ачан_,\n  { {0x320d01f6, 0x7bc00020, 0x2aa001aa, 0x00000000}},  //   _şey_, namu, _kòb_,\n  { {0xa3dc001c, 0x4439000a, 0x2aa00173, 0x00000000}},  // [8950] _ठार_, _vls_, _jòb_,\n  { {0x26d90058, 0x63a4185c, 0xdb19000a, 0x00000000}},  //   muso_, acin, _dewè,\n  { {0x31c4165b, 0x7bc0036b, 0x26d90207, 0x00000000}},  //   ьств, kamu, luso_,\n  { {0x63a40207, 0x7bc0007f, 0xa29501e1, 0x00000000}},  //   ccin, jamu, _намі,\n  { {0x81e70055, 0xdefb0057, 0x63bd001e, 0x00000000}},  //   _মোঃ_, рые_, _iesn,\n  { {0x9e3401e1, 0x32030022, 0x24890792, 0x00000000}},  //   мечч, _uajy_, lmam_,\n  { {0x66052d9b, 0x20040173, 0x629d013e, 0x00000000}},  //   _mahk, _fami_, _huso,\n  { {0x660517fd, 0x629d2d9c, 0x69ca0016, 0x00000000}},  //   _lahk, _kuso, _adfe,\n  { {0x768b0046, 0x6e280018, 0x3da70401, 0x00000000}},  //   _używ, _fodb, _дреб,\n  { {0x63bd01ca, 0x3945004c, 0x2bab006e, 0x00000000}},  //   _lesn, зног, _ट्रा,\n  { {0x60c50065, 0x629d2d9d, 0x62950023, 0x00000000}},  //   nshm, _luso, _mizo,\n  { {0x26d92d9e, 0x7bc000e7, 0xdb0b0010, 0x00000000}},  //   fuso_, camu, _megú,\n  { {0x660504fa, 0x8b9a009b, 0x63a4145e, 0x00000000}},  //   _bahk, _הבנת, vcin,\n  { {0x8b050046, 0x60c50065, 0x62952d9f, 0x00000000}},  //   _częś, kshm, _nizo,\n  { {0x69c119da, 0x60c50065, 0x63bd23c6, 0x00000000}},  //   male, jshm, _besn,\n  { {0x69c12da0, 0x26d90e20, 0x63bd0142, 0x00000000}},  //   lale, buso_, _cesn,\n  { {0x63a42da1, 0x62950047, 0xe3630920, 0x00000000}},  // [8960] rcin, _bizo, екти,\n  { {0x69c1206d, 0x200407ac, 0x7bc00009, 0x00000000}},  //   nale, _sami_, zamu,\n  { {0x200401aa, 0x62952220, 0x659b00a3, 0x00000000}},  //   _pami_, _dizo, _לייק,\n  { {0x38a1002a, 0x69c100b5, 0x6e282da2, 0x00000000}},  //   _mór_, hale, _sodb,\n  { {0x7bc00004, 0x629d1dc0, 0x6295012d, 0x00000000}},  //   vamu, _guso, _fizo,\n  { {0x78a1001c, 0x69c10059, 0x6295022b, 0x00000000}},  //   kqlv, jale, _gizo,\n  { {0x69c12da3, 0x2ee60168, 0x6026026b, 0x00000000}},  //   dale, stof_, _едва,\n  { {0xf8c50164, 0x62952da4, 0x2c7a0065, 0x00000000}},  //   _विजय, _zizo, rëdo_,\n  { {0x69c1004e, 0x7bc004f8, 0x79980009, 0x00000000}},  //   fale, ramu, _pgvw,\n  { {0x7f3b009b, 0x7bc0025c, 0xfaef0025, 0x00000000}},  //   _העמו, samu, اثي_,\n  { {0x7bc00058, 0xa3dc01f5, 0x38a10048, 0x00000000}},  //   pamu, ठला_, _cór_,\n  { {0x7d7b007b, 0x315701ce, 0x66050145, 0x00000000}},  //   _פראג, ליין_, _sahk,\n  { {0x69c1002d, 0x63bd01d9, 0x60c50023, 0x00000000}},  //   bale, _resn, zshm,\n  { {0x69c11ff4, 0x38a1009f, 0x26d90419, 0x00000000}},  //   cale, _fór_, ruso_,\n  { {0x62951c5d, 0x1957007e, 0x26d90058, 0x00000000}},  //   _rizo, _нашы_, suso_,\n  { {0x26d92da5, 0x629d2da6, 0xab5d0036, 0x00000000}},  //   puso_, _puso, saże,\n  { {0x63bd091e, 0xdb0b0219, 0x24890181, 0x00000000}},  // [8970] _vesn, _segú, rmam_,\n  { {0x60c5008d, 0x63bd2da7, 0x175800b3, 0x00000000}},  //   tshm, _wesn, _מסחר_,\n  { {0x787d009d, 0x63bd264e, 0x6295007f, 0x00000000}},  //   névo, _tesn, _vizo,\n  { {0x69c1022b, 0x60c5008d, 0x629d015e, 0x00000000}},  //   zale, rshm, _tuso,\n  { {0x442b00d4, 0x60c50065, 0x62952da8, 0x00000000}},  //   _ioc_, sshm, _tizo,\n  { {0x69d8001c, 0x442b0011, 0x78760161, 0x00000000}},  //   _मागी, _hoc_, rávi,\n  { {0x69c129f9, 0xc21200b6, 0x60c50023, 0x00000000}},  //   vale, _בהם_, qshm,\n  { {0x442b1825, 0x69c12da9, 0x2cac0082, 0x00000000}},  //   _joc_, wale, _dtdd_,\n  { {0x442b0826, 0x3e72009d, 0xe821007d, 0x00000000}},  //   _moc_, gâts_, याना_,\n  { {0x442b000d, 0x38a1049a, 0x3da70098, 0x00000000}},  //   _loc_, _pór_, _храб,\n  { {0x69c10219, 0xa3cd0164, 0xda1f001c, 0x00000000}},  //   rale, रणा_, बाबत_,\n  { {0x69c1000c, 0x442b2daa, 0x6d5f006b, 0x00000000}},  //   sale, _noc_, şqas,\n  { {0x5747007e, 0x7c2b00f6, 0x01d50044, 0x00000000}},  //   дзям_, _iogr, স্যদ,\n  { {0x7ae9016a, 0xf1ba0011, 0x7a3f009d, 0x00000000}},  //   mtet, ươi_, _bête,\n  { {0x7ae902bb, 0x6a7d04bd, 0x442b001a, 0x00000000}},  //   ltet, lèfo, _boc_,\n  { {0x9983010a, 0x3ead2dab, 0x26c42c3e, 0x00000000}},  //   ųjų_, _otet_, ámos_,\n  { {0x7ae90047, 0x7c2b194d, 0xa2d5013d, 0x00000000}},  // [8980] ntet, _mogr, यंग्,\n  { {0x7c2b0211, 0x7ae9021e, 0x7a3f00f4, 0x00000000}},  //   _logr, itet, _fête,\n  { {0x361b061e, 0x7ae92dac, 0x442b05f7, 0x00000000}},  //   _וויד, htet, _foc_,\n  { {0xdfcf0025, 0x7ae92d0f, 0x7c2b0089, 0x00000000}},  //   ليم_, ktet, _nogr,\n  { {0x7ae90047, 0xbea301fc, 0xbefa004b, 0x00000000}},  //   jtet, вачк, تراض_,\n  { {0x768b0046, 0x0caa0fd8, 0x7ae90010, 0x00000000}},  //   _użyt, отии_, dtet,\n  { {0xa3e5062e, 0xe297003b, 0x624b0036, 0x00000000}},  //   _नाम_, _цар_, eżow,\n  { {0x09c60061, 0x7ae90efd, 0x442b00d4, 0x00000000}},  //   लण्य, ftet, _xoc_,\n  { {0xae1e0164, 0x7c2b014a, 0x7ae90010, 0x00000000}},  //   पादन_, _dogr, gtet,\n  { {0x1e8309ae, 0x7c2b012d, 0x00000000, 0x00000000}},  //   _алум, _eogr,   ,\n  { {0x7ae9027a, 0x00000000, 0x00000000, 0x00000000}},  //   atet,   ,   ,\n  { {0x7c2b059f, 0x00000000, 0x00000000, 0x00000000}},  //   _gogr,   ,   ,\n  { {0x5b3601f7, 0x442b2dad, 0x7ae9005b, 0x00000000}},  //   _تعار, _roc_, ctet,\n  { {0x442b027b, 0x6b820059, 0x00000000, 0x00000000}},  //   _soc_, _izog,   ,\n  { {0x442b04bd, 0xfa9708cd, 0x644f0133, 0x00000000}},  //   _poc_, _קדוש_, _pmci,\n  { {0x7a3f00f4, 0xb7e60309, 0x443d0036, 0x00000000}},  //   _vête, _कायम_, ów_,\n  { {0x521503e0, 0x7d1c01e5, 0x00000000, 0x00000000}},  // [8990] ндат, _ársf,   ,\n  { {0x442b27f1, 0x7a3f009d, 0x51f80641, 0x00000000}},  //   _woc_, _tête, мную_,\n  { {0x7ae914a9, 0xb06b02dc, 0xe7e60204, 0x00000000}},  //   ztet, ордж_, _कामा_,\n  { {0x7ae92dae, 0x442b2daf, 0x64480129, 0x00000000}},  //   ytet, _uoc_, èdit,\n  { {0x26140061, 0x6b820045, 0x22410022, 0x00000000}},  //   दाची_, _nzog, phhk_,\n  { {0x7c2b0ddb, 0xa3cd006e, 0x00000000, 0x00000000}},  //   _sogr, रणव_,   ,\n  { {0x7c2b0119, 0xdfd5007c, 0xba3d00b9, 0x00000000}},  //   _pogr, _повы, způs,\n  { {0x9b05081e, 0x7ae9006c, 0xfd650011, 0x00000000}},  //   езид, ttet, _khuẩ,\n  { {0x3ead0026, 0xed580027, 0x7ae900b0, 0x00000000}},  //   _utet_, _veľa_, utet,\n  { {0x7ae9008d, 0xe29f000c, 0x6b82016c, 0x00000000}},  //   rtet, _urðu_, _dzog,\n  { {0x7ae9021e, 0x61e1009f, 0x7c2b0051, 0x00000000}},  //   stet, _öllu, _togr,\n  { {0x39580051, 0x24990059, 0x7ae92db0, 0x00000000}},  //   úrsa_, _nism_, ptet,\n  { {0xab5d002b, 0x00000000, 0x00000000, 0x00000000}},  //   baża,   ,   ,\n  { {0xceb2019b, 0x24990026, 0x00000000, 0x00000000}},  //   רים_, _aism_,   ,\n  { {0xa8060676, 0x00000000, 0x00000000, 0x00000000}},  //   _alış,   ,   ,\n  { {0x52aa005e, 0x35dc013d, 0x00000000, 0x00000000}},  //   звам_, _बाक़,   ,\n  { {0x969602b8, 0xfd65001d, 0xa69607d8, 0x00000000}},  // [89a0] _прош, _chuẩ, _прој,\n  { {0x61460081, 0x00000000, 0x00000000, 0x00000000}},  //   неза,   ,   ,\n  { {0x78ab001a, 0x261d006e, 0xc69301ce, 0x00000000}},  //   _învă, मारी_, _גאז_,\n  { {0xe29a1026, 0x41e2001c, 0xdfd2007a, 0x00000000}},  //   _нам_, _पावस, ايش_,\n  { {0xe29a06e3, 0x11d60088, 0x06650014, 0x00000000}},  //   _хаг_, _півр, _سایپ,\n  { {0x64562db1, 0x09d50044, 0x20e00061, 0x00000000}},  //   liyi, ত্তা, खंदळ_,\n  { {0x6263003b, 0x00000000, 0x00000000, 0x00000000}},  //   _свра,   ,   ,\n  { {0x61fe014a, 0xcd03007c, 0xab5d00b4, 0x00000000}},  //   lepl, учши, waża,\n  { {0x81e70055, 0xeaaf0014, 0xda7a007e, 0x00000000}},  //   _মোট_, یعی_, зян_,\n  { {0xc33300b6, 0x5a3400e3, 0x61fe2db2, 0x00000000}},  //   טוח_, тнот, nepl,\n  { {0x765504cd, 0xab5d0036, 0x6fa40061, 0x00000000}},  //   vizy, raża, _ओलां,\n  { {0xfaa60072, 0x9cd701f8, 0x415b0049, 0x00000000}},  //   _задо, _טובה_, לדיג,\n  { {0x6456005f, 0xe66700ed, 0x61fe00ea, 0x00000000}},  //   diyi, етво, kepl,\n  { {0x320a0007, 0x7b060089, 0x61fe016e, 0x00000000}},  //   _naby_, ērtī, jepl,\n  { {0x5fd0001c, 0xe82103d7, 0x61fe001a, 0x00000000}},  //   हणाल, यादा_, depl,\n  { {0x765501aa, 0x897b009b, 0x64440035, 0x00000000}},  //   sizy, _מרוצ, ghii,\n  { {0xc2990500, 0x3a2e00f6, 0x2fc600e0, 0x00000000}},  // [89b0] дках_, _kofp_, daog_,\n  { {0x61fe0030, 0x7a3600f4, 0x64670161, 0x00000000}},  //   gepl, _bâti, _špič,\n  { {0x659502a8, 0x7a3600e5, 0x249900d9, 0x00000000}},  //   _јану, _câti, _tism_,\n  { {0x644400e5, 0x26cb08d3, 0x00000000, 0x00000000}},  //   chii, osco_,   ,\n  { {0x61fe014a, 0x26cb0544, 0x00000000, 0x00000000}},  //   bepl, nsco_,   ,\n  { {0xee380099, 0x61fe01ee, 0x20090964, 0x00000000}},  //   нні_, cepl, žai_,\n  { {0x44291b1b, 0x25e9007d, 0x78ad2479, 0x00000000}},  //   oja_, _जानी_, _čavo,\n  { {0x44290213, 0xeb990e1b, 0x09d90061, 0x00000000}},  //   nja_, мий_, ढल्य,\n  { {0xe7db02fb, 0x44290052, 0x00000000, 0x00000000}},  //   _भाजप, ija_,   ,\n  { {0x442908c0, 0xc3340104, 0x999e007f, 0x00000000}},  //   hja_, רוץ_, ditų_,\n  { {0x4429009f, 0x186a064b, 0x00000000, 0x00000000}},  //   kja_, дани_,   ,\n  { {0x442901d5, 0x2d85011f, 0x7bc200d9, 0x00000000}},  //   jja_, _izle_, _geou,\n  { {0xf0920476, 0x7c290209, 0x3f9f0020, 0x00000000}},  //   ינט_, mjer, _mguu_,\n  { {0x7c2901bf, 0x442909a4, 0x7c3b002d, 0x00000000}},  //   ljer, eja_, lkur,\n  { {0x44292db3, 0x61fe0190, 0x26cb0197, 0x00000000}},  //   fja_, vepl, asco_,\n  { {0x4429009f, 0x69c32db4, 0x290700f6, 0x00000000}},  //   gja_, _hene, _isna_,\n  { {0x69c300b0, 0x61fe0387, 0x64442db5, 0x00000000}},  // [89c0] _kene, tepl, rhii,\n  { {0x69c30263, 0x44290110, 0x8c3c006b, 0x00000000}},  //   _jene, aja_, _muğa,\n  { {0x69c3020c, 0x7c3b009f, 0x44292db6, 0x00000000}},  //   _mene, kkur, bja_,\n  { {0x44290df0, 0x69c300b5, 0x61fe0287, 0x00000000}},  //   cja_, _lene, sepl,\n  { {0xab5d0036, 0x7c290496, 0x7bc20173, 0x00000000}},  //   ważn, djer, _reou,\n  { {0x60de00f8, 0x7c290190, 0x6f0201a2, 0x00000000}},  //   pupm, ejer, rwoc,\n  { {0x7176023c, 0x7c2908e0, 0x7bc2000a, 0x00000000}},  //   _شهرا, fjer, _peou,\n  { {0xdb0b02d5, 0x06b80055, 0x629c0020, 0x00000000}},  //   _negó, _জিনি, _hiro,\n  { {0x629c022b, 0x3f840107, 0xbea60265, 0x00000000}},  //   _kiro, _uzmu_, _разк,\n  { {0x69c3018e, 0x44292db7, 0x6569014a, 0x00000000}},  //   _cene, zja_, şehi,\n  { {0x69c32db8, 0x787d00f4, 0x7c290030, 0x00000000}},  //   _dene, lévi, bjer,\n  { {0xc17300b6, 0x7c3b2a23, 0x4429002b, 0x00000000}},  //   יחת_, ckur, xja_,\n  { {0x69c3011f, 0x442921ce, 0xada2000c, 0x00000000}},  //   _fene, vja_, _þúsu,\n  { {0x629c03d2, 0x44290066, 0xcf93009b, 0x00000000}},  //   _niro, wja_, יטר_,\n  { {0x69c82db9, 0x7ae00065, 0x64480089, 0x00000000}},  //   made, lumt, īdin,\n  { {0x04b8026c, 0x69c314a9, 0x44290964, 0x00000000}},  //   کھیں_, _zene, uja_,\n  { {0x629c09e3, 0x69c3014a, 0x615500a1, 0x00000000}},  // [89d0] _biro, _yene, گنائ,\n  { {0x69c802e1, 0xa3e5024c, 0x442907f2, 0x00000000}},  //   nade, _नाव_, sja_,\n  { {0x44290047, 0xdb0b04bd, 0x645a0129, 0x00000000}},  //   pja_, _segü, ètic,\n  { {0x629c001e, 0x4429008d, 0x69c805c6, 0x00000000}},  //   _eiro, qja_, hade,\n  { {0x7c290182, 0x63ad2200, 0xeabd0044, 0x00000000}},  //   vjer, mcan, _আম্ম,\n  { {0x629c04bd, 0x69c82db9, 0x3ea40d2b, 0x00000000}},  //   _giro, jade, _dumt_,\n  { {0x69c8217e, 0x7c29016e, 0x7c3b0052, 0x00000000}},  //   dade, tjer, tkur,\n  { {0x63ad020c, 0x69c3068f, 0x629c01ee, 0x00000000}},  //   ncan, _sene, _ziro,\n  { {0x69c30149, 0x7c290a5c, 0x69c8074e, 0x00000000}},  //   _pene, rjer, fade,\n  { {0x69c82dba, 0x6f090645, 0x7c290056, 0x00000000}},  //   gade, _isec, sjer,\n  { {0x69c3225f, 0x2bdc0963, 0x00000000, 0x00000000}},  //   _vene, _याचा,   ,\n  { {0xb8cb013d, 0x69c3026e, 0x00000000, 0x00000000}},  //   _कं_, _wene,   ,\n  { {0x69c3206d, 0x69c80a53, 0x63ad00f8, 0x00000000}},  //   _tene, bade, dcan,\n  { {0x69c8282d, 0x69c300e7, 0x2ca52dbb, 0x00000000}},  //   cade, _uene, _kuld_,\n  { {0x1543013b, 0x7a3600e5, 0x00000000, 0x00000000}},  //   берм, _câtu,   ,\n  { {0x6f0901a8, 0x629c0091, 0xb97a00a0, 0x00000000}},  //   _osec, _siro, _אנצי,\n  { {0x629c0010, 0xe821013d, 0x00000000, 0x00000000}},  // [89e0] _piro, यारा_,   ,\n  { {0x09d50044, 0x63ad004a, 0x2ca50068, 0x00000000}},  //   ত্রা, acan, _ould_,\n  { {0x25e903d7, 0x629c016e, 0xa4940014, 0x00000000}},  //   _जाती_, _viro, _نیست,\n  { {0x63ad0207, 0x69c80059, 0x61e50051, 0x00000000}},  //   ccan, zade, aghl,\n  { {0x68e10270, 0x24800058, 0x69c813d6, 0x00000000}},  //   huld, mlim_, yade,\n  { {0x2480008d, 0x69c80129, 0xd25200a2, 0x00000000}},  //   llim_, xade, _طنز_,\n  { {0x69c80004, 0x6f090207, 0x61460088, 0x00000000}},  //   vade, _esec, _сева,\n  { {0x68e1037f, 0x69c80222, 0x504301ab, 0x00000000}},  //   duld, wade, _лесб,\n  { {0x69c801b9, 0x38a800f4, 0x4f6600a1, 0x00000000}},  //   tade, _sûr_, _صارف,\n  { {0x7ae01422, 0x2ca50030, 0x68e10030, 0x00000000}},  //   rumt, _fuld_, fuld,\n  { {0x63ad0163, 0xe821001c, 0x6e930054, 0x00000000}},  //   ycan, याला_, _اللا,\n  { {0x69c80142, 0x63ad219f, 0x00000000, 0x00000000}},  //   sade, xcan,   ,\n  { {0x63ad057c, 0xd90e007a, 0x00000000, 0x00000000}},  //   vcan, زیک_,   ,\n  { {0xdd200224, 0x1994008b, 0x7a360068, 0x00000000}},  //   _může, _каля, _pâtu,\n  { {0x68e10181, 0x659500ed, 0x63ad00f8, 0x00000000}},  //   culd, раву, tcan,\n  { {0x63ad008e, 0x00000000, 0x00000000, 0x00000000}},  //   ucan,   ,   ,\n  { {0x325518bf, 0x28da013d, 0x00000000, 0x00000000}},  // [89f0] авар, _भिडि,   ,\n  { {0x63ad0e1d, 0x00000000, 0x00000000, 0x00000000}},  //   scan,   ,   ,\n  { {0x63ad00e5, 0xdfd10025, 0x61e51a13, 0x00000000}},  //   pcan, قيا_, rghl,\n  { {0x6f0915bc, 0x3f15003b, 0x776d0066, 0x00000000}},  //   _psec, идес, _kxax,\n  { {0x260a001c, 0x7e7a01cf, 0xddc50088, 0x00000000}},  //   ायची_, _bktp, абли,\n  { {0xed591deb, 0x6a7d01aa, 0xfaff0023, 0x00000000}},  //   кол_, pèfi, çëm_,\n  { {0x5184007e, 0xe7e6013d, 0x9d450900, 0x00000000}},  //   _гута, _काला_, рейд,\n  { {0x201f000d, 0x3ff90049, 0x68e100b5, 0x00000000}},  //   _unui_, _שפּע, vuld,\n  { {0x6f092dbc, 0x7e680009, 0x00000000, 0x00000000}},  //   _usec, _fjdp,   ,\n  { {0xf2d40049, 0x3869003f, 0x2480016c, 0x00000000}},  //   זעץ_, _ajar_, zlim_,\n  { {0xa9690265, 0xd826189f, 0x8bd5023c, 0x00000000}},  //   тина_, адни, _نقاش,\n  { {0xe73a0269, 0x68e12dbd, 0x657e01c3, 0x00000000}},  //   вем_, ruld, _ryph,\n  { {0x81dd0044, 0x3869002b, 0x8c3c014a, 0x00000000}},  //   থ্য_, _djar_, _muğl,\n  { {0xbb840025, 0xf67600e2, 0xf3ff00fa, 0x00000000}},  //   _الهي, румџ, _bjão_,\n  { {0xf48400a6, 0x64480006, 0x00000000, 0x00000000}},  //   ماری, ūdim,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x645a00f4, 0x248000c4, 0xb8650439, 0x00000000}},  // [8a00] étiq, rlim_, _داوو,\n  { {0x24800390, 0x98be0036, 0x422301bd, 0x00000000}},  //   slim_, sztą_, одув,\n  { {0x4fc6008b, 0x765c0279, 0x248004eb, 0x00000000}},  //   асла, miry, plim_,\n  { {0xf99200b3, 0xdfd00439, 0x351b009b, 0x00000000}},  //   קרא_, سيت_, _סוכנ,\n  { {0x6446006b, 0x2d8101a2, 0x44220133, 0x00000000}},  //   _ilki, ühen_, _ink_,\n  { {0x4422016e, 0x00000000, 0x00000000, 0x00000000}},  //   _hnk_,   ,   ,\n  { {0xc117026c, 0xdce10006, 0xdb0b000c, 0x00000000}},  //   _پہنچ_, _mylė, _segð,\n  { {0x10a309da, 0x26d200e7, 0x00000000, 0x00000000}},  //   _фитн, _ovyo_,   ,\n  { {0xd5c60164, 0x4422016e, 0xab38007c, 0x00000000}},  //   वराज, _mnk_, уппу_,\n  { {0x44220006, 0x5cf6007e, 0x00000000, 0x00000000}},  //   _lnk_, _вяду,   ,\n  { {0x29182dbe, 0x64460052, 0x44222202, 0x00000000}},  //   íra_, _olki, _onk_,\n  { {0xdb19010f, 0xdb0900d4, 0x00000000, 0x00000000}},  //   _bewä, cceï,   ,\n  { {0x7c22002d, 0x95cb0893, 0x9a860256, 0x00000000}},  //   _inor, кува_, _кукл,\n  { {0x64460093, 0xfd1100a1, 0xdbf80044, 0x00000000}},  //   _alki, _بجے_, _অফিস_,\n  { {0x44220022, 0x7c2201a2, 0x00000000, 0x00000000}},  //   _bnk_, _knor,   ,\n  { {0x38690169, 0x44220087, 0x71270bb6, 0x00000000}},  //   _ujar_, _cnk_, یرال,\n  { {0xf1a7017a, 0xdb19010f, 0x49920cd9, 0x00000000}},  // [8a10] арен, _gewä, _دیگر,\n  { {0x7d1a010f, 0x44220022, 0xe4e70088, 0x00000000}},  //   _orts, _enk_, _кімн,\n  { {0x80f5007e, 0x00000000, 0x00000000, 0x00000000}},  //   спех,   ,   ,\n  { {0x5f9515c4, 0x00000000, 0x00000000, 0x00000000}},  //   биет,   ,   ,\n  { {0x7d1a00b5, 0x93fa00b6, 0xa2820014, 0x00000000}},  //   _arts, _גלרי, _کیلو,\n  { {0xc332007b, 0x9f560010, 0x3cfe0085, 0x00000000}},  //   _צום_, ágát_, _bptv_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x44220082, 0x44d315c7, 0x765c2dbf, 0x00000000}},  //   _xnk_, ić_, ziry,\n  { {0x3cfe00c4, 0x753c0036, 0x00000000, 0x00000000}},  //   _eptv_, zyrz,   ,\n  { {0x4a4501fb, 0x79e7026c, 0x3e7b00f4, 0x00000000}},  //   снов, جودہ_, rêts_,\n  { {0x4999007c, 0x00000000, 0x00000000, 0x00000000}},  //   ытия_,   ,   ,\n  { {0x7c220442, 0x6f1b00b4, 0x321108d0, 0x00000000}},  //   _gnor, _kruc, _lazy_,\n  { {0x683f0065, 0x44d30046, 0xac740025, 0x00000000}},  //   _mëdh, eć_, _بالش,\n  { {0x7c22226d, 0x00000000, 0x00000000, 0x00000000}},  //   _znor,   ,   ,\n  { {0x25e9062e, 0xc8b5007c, 0x44220022, 0x00000000}},  //   _जारी_, _услы, _pnk_,\n  { {0x6f1b2dc0, 0x47c608d6, 0x765c18ef, 0x00000000}},  //   _oruc, _убив, siry,\n  { {0x23272dc1, 0xe1fa00d7, 0x44d30036, 0x00000000}},  // [8a20] боти_, лга_, ać_,\n  { {0x1757009b, 0x00000000, 0x00000000, 0x00000000}},  //   _לספר_,   ,   ,\n  { {0x0ce208b7, 0xd179008b, 0xdfda005e, 0x00000000}},  //   _মন্ত, асці_, гъл_,\n  { {0xdd2c0006, 0x44221591, 0x4ea602ea, 0x00000000}},  //   _nėšt, _unk_, брка,\n  { {0x6f1b1632, 0x21d801ef, 0x261d0061, 0x00000000}},  //   _cruc, _نژاد_, माची_,\n  { {0x7c22000c, 0x6f1b001f, 0x7d1a00d9, 0x00000000}},  //   _snor, _druc, _prts,\n  { {0xd13205d4, 0xa7fb049a, 0x00000000, 0x00000000}},  //   _عمر_, liñe,   ,\n  { {0xf0630594, 0x6f1b2c62, 0xf65f0190, 0x00000000}},  //   _експ, _fruc, lsæt_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xd90e01ef, 0xd8f80088, 0x09c80044, 0x00000000}},  //   فیت_, аної_, _শাহা,\n  { {0x5d860054, 0x28f80088, 0xe895007e, 0x00000000}},  //   _الال, шень_, жань,\n  { {0x7c220035, 0x96eb0c18, 0xc19b0049, 0x00000000}},  //   _unor, льга_, טשיי,\n  { {0x21270011, 0x3c38009d, 0x6c7b0049, 0x00000000}},  //   ̣nh_, _févr_, _גראד,\n  { {0x27ed002b, 0x00000000, 0x00000000, 0x00000000}},  //   żen_,   ,   ,\n  { {0x321116bd, 0x00000000, 0x00000000, 0x00000000}},  //   _razy_,   ,   ,\n  { {0x69ca1855, 0x00000000, 0x00000000, 0x00000000}},  //   _hefe,   ,   ,\n  { {0xf7f40014, 0x69ca0276, 0x6b820022, 0x00000000}},  // [8a30] _رسيد, _kefe, _jyog,\n  { {0x69ca00dc, 0x00000000, 0x00000000, 0x00000000}},  //   _jefe,   ,   ,\n  { {0x31c4007e, 0x6f1b012d, 0xa28300a1, 0x00000000}},  //   яств, _sruc, _ہیرو,\n  { {0x69ca2dc2, 0x61ee0009, 0x753a010f, 0x00000000}},  //   _lefe, _ecbl, ätze,\n  { {0x644d0195, 0x69ca01b5, 0x171c0049, 0x00000000}},  //   mhai, _oefe, ָווע,\n  { {0x6f1b2dc3, 0x30a70088, 0x69ca014a, 0x00000000}},  //   _vruc, _грав, _nefe,\n  { {0x6b820009, 0xc2120104, 0xd1b800a1, 0x00000000}},  //   _ayog, _קהל_, _چاہا_,\n  { {0x628501d5, 0x69d805d0, 0x644d00c4, 0x00000000}},  //   llho, _adve, nhai,\n  { {0x69ca138a, 0x6f1b0036, 0x628507a5, 0x00000000}},  //   _befe, _uruc, olho,\n  { {0xe8f9012b, 0x69ca00c4, 0x6b820058, 0x00000000}},  //   ало_, _cefe, _dyog,\n  { {0x644d011c, 0x24610006, 0x61fa0010, 0x00000000}},  //   khai, nėms_, _ötle,\n  { {0xc85a0088, 0x291c10f7, 0x00000000, 0x00000000}},  //   ршої_, _drva_,   ,\n  { {0x644d0051, 0x7bcb001e, 0x291c07c2, 0x00000000}},  //   dhai, _iegu, _erva_,\n  { {0x69ca05c6, 0xe7e60164, 0xceb20049, 0x00000000}},  //   _gefe, _काका_, ויך_,\n  { {0x7bcb003f, 0x63a600e0, 0x644d2dc4, 0x00000000}},  //   _kegu, _pgkn, fhai,\n  { {0x644d002a, 0xe3ba026b, 0x62852dc5, 0x00000000}},  //   ghai, рба_, elho,\n  { {0x7bcb2050, 0x764b0006, 0x4dca0044, 0x00000000}},  // [8a40] _megu, _įgyv, _রাসূ,\n  { {0x7bcb08a4, 0x69c12bbd, 0x6aa3002b, 0x00000000}},  //   _legu, nble, _jinf,\n  { {0x644d0195, 0x6aa3002b, 0x69c103cb, 0x00000000}},  //   bhai, _minf, ible,\n  { {0x644d2dc6, 0xef1a0072, 0x6aa30555, 0x00000000}},  //   chai, име_, _linf,\n  { {0x63b40036, 0xda090309, 0x00000000, 0x00000000}},  //   ągną, _वसंत_,   ,\n  { {0x6aa31aaa, 0x78a401c2, 0x217606f3, 0x00000000}},  //   _ninf, _liiv, _дубр,\n  { {0x69ca2dc7, 0xe0d7026b, 0x69c10435, 0x00000000}},  //   _refe, _мвр_, dble,\n  { {0x6aab0240, 0x644400b0, 0x69ca014a, 0x00000000}},  //   _bugf, nkii, _sefe,\n  { {0x7bcb0129, 0x9e66013b, 0x69c10190, 0x00000000}},  //   _degu, _двад, fble,\n  { {0x291c1a2d, 0xa954003b, 0x6aa300fa, 0x00000000}},  //   _prva_, звољ, _cinf,\n  { {0x644400b0, 0x7bcb000c, 0x644d2dc8, 0x00000000}},  //   kkii, _fegu, yhai,\n  { {0x6aa32dc9, 0x69ba02fb, 0xfbd200a1, 0x00000000}},  //   _einf, _श्री, _آتا_,\n  { {0x69c10209, 0x6aa300f8, 0x645f0023, 0x00000000}},  //   bble, _finf, viqi,\n  { {0x69d80030, 0x79830016, 0x7bcb10d2, 0x00000000}},  //   _udve, _fynw, _zegu,\n  { {0x644d002a, 0x2cac27c2, 0x660702a9, 0x00000000}},  //   thai, _judd_, rejk,\n  { {0xe019001c, 0x2cac2dca, 0x68e82dcb, 0x00000000}},  //   _नोंद_, _mudd_, mudd,\n  { {0x644d00b0, 0x68e801a3, 0x44c80c4f, 0x00000000}},  // [8a50] rhai, ludd, aş_,\n  { {0x65950216, 0x644d0020, 0x645f006b, 0x00000000}},  //   _напу, shai, siqi,\n  { {0xdb09002a, 0x68e8033b, 0xceb900b9, 0x00000000}},  //   iceá, nudd, _stř_,\n  { {0x26c90020, 0x224a0288, 0x00000000, 0x00000000}},  //   _kwao_, _elbk_,   ,\n  { {0x7bcb2dcc, 0x2fcf0418, 0x645d2dcd, 0x00000000}},  //   _regu, ragg_, _imsi,\n  { {0x7bcb1596, 0x443905fe, 0x2cac018e, 0x00000000}},  //   _segu, _hos_, _budd_,\n  { {0x44391bb1, 0x7bcb01a3, 0x6aa30197, 0x00000000}},  //   _kos_, _pegu, _rinf,\n  { {0x44392dce, 0xef93026c, 0xdfd10025, 0x00000000}},  //   _jos_, _قیاد, _سيئ_,\n  { {0x44392dcf, 0xab651ac0, 0x7bcb1441, 0x00000000}},  //   _mos_, явил, _vegu,\n  { {0x44391718, 0x7e55002c, 0x68e804be, 0x00000000}},  //   _los_, _عناص, fudd,\n  { {0x7bcb17f6, 0x44390007, 0x69c12dd0, 0x00000000}},  //   _tegu, _oos_, rble,\n  { {0x69c1010f, 0x186a041f, 0x00000000, 0x00000000}},  //   sble, сами_,   ,\n  { {0x3ea52059, 0x78a4003c, 0x6aa3002b, 0x00000000}},  //   _kilt_, _viiv, _tinf,\n  { {0x44391160, 0x2fcd2dd1, 0x68e80ee6, 0x00000000}},  //   _aos_, _leeg_, budd,\n  { {0x7ae921be, 0x78a40103, 0x3ea500f8, 0x00000000}},  //   luet, _tiiv, _milt_,\n  { {0x44390c1f, 0x44262dd2, 0x00000000, 0x00000000}},  //   _cos_, ño_,   ,\n  { {0x44390fb3, 0xdcf40107, 0x7ae90032, 0x00000000}},  // [8a60] _dos_, _đačk, nuet,\n  { {0x44390089, 0x7c390ca4, 0x644401b1, 0x00000000}},  //   _eos_, _lowr, skii,\n  { {0xe821001c, 0xa7fb049a, 0x44392965, 0x00000000}},  //   याचा_, liña, _fos_,\n  { {0x7c39001c, 0x3ea50051, 0x7ae9002d, 0x00000000}},  //   _nowr, _ailt_, kuet,\n  { {0x9cf80055, 0xdfcf006d, 0x888d0049, 0x00000000}},  //   _আছেন_, ايه_, בראַ,\n  { {0x3ead0007, 0x3ea5014a, 0xb146003b, 0x00000000}},  //   _duet_, _cilt_, _енгл,\n  { {0xe7ed001c, 0x44390093, 0x7d780123, 0x00000000}},  //   _झाला_, _yos_, غمبر_,\n  { {0xbab8007c, 0xaff600a1, 0x3ead00f6, 0x00000000}},  //   огих_, _رہتا_, _fuet_,\n  { {0x7ae90211, 0xdee3003b, 0x09bd0044, 0x00000000}},  //   guet, _поти, _আয়া,\n  { {0x68e8101b, 0x3ea503a1, 0xcf250025, 0x00000000}},  //   tudd, _gilt_, _ترفي,\n  { {0x6e280018, 0xdb090051, 0x00000000, 0x00000000}},  //   _indb, rceá,   ,\n  { {0x6e3a2c38, 0x68e80d8c, 0x7c39000a, 0x00000000}},  //   _hotb, rudd, _gowr,\n  { {0xfaf70123, 0x6e3a002b, 0x68e80190, 0x00000000}},  //   _فروغ_, _kotb, sudd,\n  { {0xc6a410e2, 0x7689009f, 0xdb9b009b, 0x00000000}},  //   ерси, mþyk, _הסדר,\n  { {0x92e90055, 0x443901c3, 0x6fcc001c, 0x00000000}},  //   _মনে_, _pos_, ारां,\n  { {0x765e0675, 0x6e3a0173, 0x00000000, 0x00000000}},  //   _empy, _lotb,   ,\n  { {0x4439028c, 0xe3b01095, 0x00000000, 0x00000000}},  // [8a70] _vos_, ارف_,   ,\n  { {0xe60300b0, 0x443900b4, 0x52d801ab, 0x00000000}},  //   ätää, _wos_, ямую_,\n  { {0x44390dec, 0x7ae90032, 0x7d1c000c, 0x00000000}},  //   _tos_, zuet, _ársh,\n  { {0xaadd013d, 0x3ea5010e, 0x6e28141a, 0x00000000}},  //   _मिलक, _silt_, _andb,\n  { {0x3ea50004, 0x2fc0008e, 0x6e3a1307, 0x00000000}},  //   _pilt_, ñiga_, _botb,\n  { {0x2d8501d6, 0x2fcd040f, 0xf7740049, 0x00000000}},  //   _pyle_, _weeg_, עקס_,\n  { {0x7c390046, 0xc879005a, 0x3ea5000c, 0x00000000}},  //   _powr, luğu_, _vilt_,\n  { {0x3ea502ae, 0x7ae9002d, 0xdb020b33, 0x00000000}},  //   _wilt_, tuet, _egoí,\n  { {0x6e3a2dd3, 0x4add001c, 0x2ca60016, 0x00000000}},  //   _fotb, _मिळव, _diod_,\n  { {0x39450264, 0x4ad7026c, 0x2d850036, 0x00000000}},  //   дног, _ہاتھ_, _tyle_,\n  { {0x248901f6, 0x7e630146, 0x7ae9002d, 0x00000000}},  //   klam_, minp, suet,\n  { {0x25c60164, 0x6d430006, 0x7e6300b0, 0x00000000}},  //   वर्ण, myna, linp,\n  { {0x6d432dd4, 0xba55005e, 0x00000000, 0x00000000}},  //   lyna, _откъ,   ,\n  { {0xc87901f6, 0xa7fb049a, 0xdb21004a, 0x00000000}},  //   duğu_, riña, _ñuño,\n  { {0x6d430ff0, 0x00000000, 0x00000000, 0x00000000}},  //   nyna,   ,   ,\n  { {0x78b30089, 0x7e631489, 0xd7ff0035, 0x00000000}},  //   ēgvā, hinp, şări_,\n  { {0x64bc037e, 0xd5af026c, 0x6d430016, 0x00000000}},  // [8a80] _očig, افہ_, hyna,\n  { {0x2489011c, 0x66170288, 0x63b600b4, 0x00000000}},  //   alam_, _gaxk, scyn,\n  { {0x7e630943, 0x00000000, 0x00000000, 0x00000000}},  //   dinp,   ,   ,\n  { {0x6d430006, 0xb7db0049, 0x24891d21, 0x00000000}},  //   dyna, ַקצי, clam_,\n  { {0x6e3a01c3, 0xc879014a, 0x00000000, 0x00000000}},  //   _potb, cuğu_,   ,\n  { {0xdcba0ae0, 0x7e63162d, 0x64670036, 0x00000000}},  //   ощи_, ginp, ąpił,\n  { {0x0ee0001c, 0x00000000, 0x00000000, 0x00000000}},  //   _निवड,   ,   ,\n  { {0x25de0061, 0x5b14026b, 0x32180022, 0x00000000}},  //   कृती_, емит, _hary_,\n  { {0xc5e60055, 0x3f670545, 0x2fc6149e, 0x00000000}},  //   খ্যা_, _жито_, mbog_,\n  { {0x3860008a, 0x6d4303cd, 0x2fc60058, 0x00000000}},  //   _amir_, byna, lbog_,\n  { {0x321800ab, 0xc87f010f, 0x00000000, 0x00000000}},  //   _mary_, toß_,   ,\n  { {0x7b66004d, 0x00000000, 0x00000000, 0x00000000}},  //   _отле,   ,   ,\n  { {0xd78b0054, 0xdca3007c, 0x24890120, 0x00000000}},  //   تخدم_, _раци, vlam_,\n  { {0x3eb90211, 0x38600095, 0x00000000, 0x00000000}},  //   _éste_, _emir_,   ,\n  { {0x24890085, 0xb8860861, 0x00000000, 0x00000000}},  //   tlam_, _smíš,   ,\n  { {0x24892dd5, 0x321800e5, 0x61fe01c3, 0x00000000}},  //   ulam_, _aary_, efpl,\n  { {0x6d430036, 0x24890abb, 0x2fc60637, 0x00000000}},  // [8a90] zyna, rlam_, dbog_,\n  { {0x24890020, 0x7a3f009d, 0x32180133, 0x00000000}},  //   slam_, _hêtr, _cary_,\n  { {0xe3b0026c, 0x2489011f, 0x32182dd6, 0x00000000}},  //   ارہ_, plam_, _dary_,\n  { {0x2fc62dd7, 0x61fe0116, 0x00000000, 0x00000000}},  //   gbog_, afpl,   ,\n  { {0xe45600bd, 0xdb02001d, 0x442b0038, 0x00000000}},  //   _נישט_, _ngoà, _inc_,\n  { {0x645a0089, 0xee3803e8, 0xef18007e, 0x00000000}},  //   ītie, мні_, ьмі_,\n  { {0x442b0093, 0x7e630052, 0x3133009e, 0x00000000}},  //   _knc_, rinp, _جہاز,\n  { {0xa1942dd8, 0x442b00d4, 0x6d430036, 0x00000000}},  //   _расч, _jnc_, ryna,\n  { {0x442b2dd9, 0x2ef4005e, 0x7d7900a1, 0x00000000}},  //   _mnc_, _изтр, _کمار_,\n  { {0x1eea0bb6, 0x00000000, 0x00000000, 0x00000000}},  //   _رومی_,   ,   ,\n  { {0xf866003b, 0xa3c1007d, 0x00000000, 0x00000000}},  //   евно, ुरा_,   ,\n  { {0x66e6012c, 0xc68900a0, 0x9ac40066, 0x00000000}},  //   нома, _הא_, _boċċ,\n  { {0x7c2b0781, 0x00000000, 0x00000000, 0x00000000}},  //   _ingr,   ,   ,\n  { {0x442b0007, 0xbb3a019b, 0x644f00c4, 0x00000000}},  //   _anc_, _מעני, _alci,\n  { {0x26d90197, 0xf202013d, 0x00000000, 0x00000000}},  //   asso_, र्फ़_,   ,\n  { {0x14e10061, 0x00000000, 0x00000000, 0x00000000}},  //   _फिरण,   ,   ,\n  { {0x7afb0659, 0x442b0085, 0x4226007e, 0x00000000}},  // [8aa0] ntut, _dnc_, ндав,\n  { {0x442b231b, 0x877b00a0, 0xb77b009b, 0x00000000}},  //   _enc_, _מאפי, _מאפש,\n  { {0x32180482, 0x26c00243, 0xd76400a6, 0x00000000}},  //   _vary_, _htio_, _سنگی,\n  { {0x672407fa, 0xdfcf006d, 0x442b008e, 0x00000000}},  //   _krij, ميم_, _gnc_,\n  { {0x32180022, 0x2fc60296, 0x2cbe0022, 0x00000000}},  //   _tary_, rbog_, _sttd_,\n  { {0x7c2b2dda, 0x48e002d2, 0x2907021a, 0x00000000}},  //   _angr, _किलो_, _opna_,\n  { {0xa3e402d2, 0x27e00240, 0xafe601fc, 0x00000000}},  //   _नया_, _odin_, _повл,\n  { {0x09d80061, 0x2ee60026, 0x3d010061, 0x00000000}},  //   ढण्य, prof_, _शहरे_,\n  { {0xdb19010f, 0x7afb006a, 0x29070087, 0x00000000}},  //   _gewü, gtut, _apna_,\n  { {0x7c2b0181, 0xef17008b, 0x27e0002d, 0x00000000}},  //   _engr, _яму_, _adin_,\n  { {0x7afb002d, 0x629e00e5, 0x672404eb, 0x00000000}},  //   atut, impo, _arij,\n  { {0x6724016e, 0xa7fb008e, 0xc173009b, 0x00000000}},  //   _brij, riño, טחת_,\n  { {0x6724016e, 0x870404dd, 0x3ebf0066, 0x00000000}},  //   _crij, ляре, _xtut_,\n  { {0x27e0005d, 0x67242ddb, 0x442b219a, 0x00000000}},  //   _edin_, _drij, _snc_,\n  { {0x25a50073, 0x442b0145, 0x26d90a15, 0x00000000}},  //   äll_, _pnc_, ssso_,\n  { {0x6d580059, 0x629e1c9a, 0x442b109d, 0x00000000}},  //   izva, empo, _qnc_,\n  { {0xc6a70069, 0x67242ddc, 0x88bc00b9, 0x00000000}},  // [8ab0] _прои, _grij, svěd,\n  { {0x6aaa01d5, 0x442b0026, 0xf7700014, 0x00000000}},  //   _jiff, _wnc_, _چای_,\n  { {0x442b1323, 0x7afb002d, 0xf12400a5, 0x00000000}},  //   _tnc_, ztut, льцо,\n  { {0x442b04d2, 0x629e00e0, 0x6aaa2ddd, 0x00000000}},  //   _unc_, ampo, _liff,\n  { {0x7ff4006d, 0x798a01d6, 0xdb19000a, 0x00000000}},  //   اسما, _lyfw, _lewò,\n  { {0x6aaa0066, 0x00000000, 0x00000000, 0x00000000}},  //   _niff,   ,   ,\n  { {0xdd91026c, 0x92a60046, 0x93c6001a, 0x00000000}},  //   گوں_, _dołą, sfăş,\n  { {0x7afb0198, 0xcf7b0025, 0x0c2500ed, 0x00000000}},  //   ttut, _فإذا_, тмин,\n  { {0xdd91026c, 0x6aaa02e7, 0x32cf0036, 0x00000000}},  //   دوں_, _biff, nży_,\n  { {0x7afb022b, 0x200f0004, 0x67240023, 0x00000000}},  //   rtut, legi_, _rrij,\n  { {0x7afb08b2, 0x67240209, 0x798a0016, 0x00000000}},  //   stut, _srij, _cyfw,\n  { {0x67240759, 0x201d2dde, 0x6aaa009d, 0x00000000}},  //   _prij, ndwi_, _eiff,\n  { {0xddd800ca, 0xe737005e, 0x6aaa00f8, 0x00000000}},  //   lovš, вея_, _fiff,\n  { {0x67242ddf, 0x6aaa0197, 0x63bd190e, 0x00000000}},  //   _vrij, _giff, _afsn,\n  { {0x6b8b0f4b, 0x7ae9043e, 0x32cf0036, 0x00000000}},  //   _hygg, lret, eży_,\n  { {0xc95200b6, 0x15ee013d, 0x27e004be, 0x00000000}},  //   _כמו_, _जाकर_, _udin_,\n  { {0x64a3008b, 0xfbd2009b, 0x200f000c, 0x00000000}},  // [8ac0] рата, יתן_, degi_,\n  { {0x6b8b2de0, 0x64590066, 0x00000000, 0x00000000}},  //   _mygg, _ċwie,   ,\n  { {0xd877026c, 0x6493006b, 0x69ce000c, 0x00000000}},  //   _سمیت_, mçin, ðbei,\n  { {0x694605fa, 0xddd80142, 0x7a3e00b9, 0x00000000}},  //   _učeš, dovš, _zátě,\n  { {0x92a60036, 0x00000000, 0x00000000, 0x00000000}},  //   _połą,   ,   ,\n  { {0x7ae90030, 0x68e80016, 0x975b009b, 0x00000000}},  //   dret, yrdd, ודנט,\n  { {0x6aaa0190, 0x7ae91a00, 0x200f0bb2, 0x00000000}},  //   _riff, eret, begi_,\n  { {0x6b8b0332, 0x6aaa0039, 0x200f0a4b, 0x00000000}},  //   _bygg, _siff, cegi_,\n  { {0xa067012b, 0x2d81010f, 0x8fa3007c, 0x00000000}},  //   _рата_, üher_, _вате,\n  { {0x5ea60151, 0x3eb90211, 0x81e40044, 0x00000000}},  //   _شمال, _ésta_, ভ্র_,\n  { {0x7ae9010e, 0x00000000, 0x00000000, 0x00000000}},  //   aret,   ,   ,\n  { {0x4bda00e9, 0x7ae90129, 0x00000000, 0x00000000}},  //   _آباد_, bret,   ,\n  { {0x2d8c00b4, 0xf804007e, 0x6aaa086a, 0x00000000}},  //   _hyde_, шчэн, _tiff,\n  { {0xceb300a3, 0x7d1c01e5, 0x200f2de1, 0x00000000}},  //   ייש_, _árss, zegi_,\n  { {0xc7c702a8, 0x984f0036, 0x3eac05b7, 0x00000000}},  //   _испи, jęć_, _midt_,\n  { {0x3eac0018, 0x62870193, 0x3dd80044, 0x00000000}},  //   _lidt_, _skjo, _সাফল,\n  { {0xb2750679, 0x2d8c08c8, 0x66720014, 0x00000000}},  // [8ad0] глаш, _lyde_, شگیر,\n  { {0x7aef0129, 0xbebd01c5, 0x00000000, 0x00000000}},  //   àcti, _brūn,   ,\n  { {0xf1a70069, 0x2d8c0030, 0x78ad0026, 0x00000000}},  //   тран, _nyde_, _kiav,\n  { {0x7ae9014a, 0x3eac0087, 0x25ff0309, 0x00000000}},  //   yret, _aidt_, श्री_,\n  { {0x200f05cf, 0x3eac2de2, 0x00000000, 0x00000000}},  //   regi_, _bidt_,   ,\n  { {0x644d021e, 0x6b8b1afa, 0x7ae90142, 0x00000000}},  //   lkai, _rygg, vret,\n  { {0x62852de3, 0xa3c70061, 0x7bc90270, 0x00000000}},  //   moho, _उभा_, tbeu,\n  { {0xc17200b6, 0x644d2de4, 0x62850161, 0x00000000}},  //   _החל_, nkai, loho,\n  { {0xac960025, 0x6f0918e8, 0x7bc92af8, 0x00000000}},  //   دنيا_, _upec, rbeu,\n  { {0x7ae9022b, 0x3f7a007b, 0x7bc9054e, 0x00000000}},  //   rret, _אָבע, sbeu,\n  { {0x644d021e, 0x7ae90091, 0x78ad0190, 0x00000000}},  //   kkai, sret, _biav,\n  { {0x7ae90292, 0x78ad1733, 0x6b8b101b, 0x00000000}},  //   pret, _ciav, _tygg,\n  { {0x78ad237d, 0x3b090d11, 0x7d1c000c, 0x00000000}},  //   _diav, _чело_, _ársr,\n  { {0x75d60025, 0x644d0006, 0x00000000, 0x00000000}},  //   طيرا, ekai,   ,\n  { {0xdb0b0030, 0x649a00ed, 0x2bda0164, 0x00000000}},  //   _afgø, етар_, _यजमा,\n  { {0x7c3b01a3, 0x644d006a, 0x78ad2de5, 0x00000000}},  //   njur, gkai, _giav,\n  { {0x8c1d0044, 0x645a00d4, 0x00000000, 0x00000000}},  // [8ae0] থাপন_, ètiq,   ,\n  { {0x64560e92, 0x64930180, 0x628502c1, 0x00000000}},  //   shyi, lçil, goho,\n  { {0x4fea0081, 0x00e6007c, 0x3eac002b, 0x00000000}},  //   емен_, ужен, _ridt_,\n  { {0x2d8c098e, 0x661e10f0, 0x644d007f, 0x00000000}},  //   _ryde_, _hapk, ckai,\n  { {0x4420011f, 0xbe8a0e82, 0x62851105, 0x00000000}},  //   mdi_, нске_, boho,\n  { {0x661e00d9, 0x00000000, 0x00000000, 0x00000000}},  //   _japk,   ,   ,\n  { {0x44202de6, 0x3eac05b7, 0x6d47002b, 0x00000000}},  //   odi_, _vidt_, _żjar,\n  { {0x44202de7, 0x3ed604e8, 0x661e0006, 0x00000000}},  //   ndi_, _مقرر, _lapk,\n  { {0x44201158, 0x78ad0197, 0x0a6a00aa, 0x00000000}},  //   idi_, _riav, ерни_,\n  { {0x644d2de8, 0x4420006b, 0x661e0010, 0x00000000}},  //   zkai, hdi_, _napk,\n  { {0x19942de9, 0x78ad0197, 0x4420006b, 0x00000000}},  //   раня, _piav, kdi_,\n  { {0x4d7b061e, 0x4420086e, 0x6ac30044, 0x00000000}},  //   _ארבע, jdi_, _শিরো,\n  { {0xead403c8, 0x44202383, 0xa2b003d7, 0x00000000}},  //   _толь, ddi_, _अंग्,\n  { {0x44200207, 0x661e2dea, 0x00000000, 0x00000000}},  //   edi_, _capk,   ,\n  { {0x644d021e, 0xa4d501fb, 0xa9bb009b, 0x00000000}},  //   tkai, робі, _אזור,\n  { {0x69da0038, 0x24182deb, 0x645a0d90, 0x00000000}},  //   late, лосы_, ūtin,\n  { {0x644d0149, 0x628505bd, 0x629c0051, 0x00000000}},  // [8af0] rkai, toho, _bhro,\n  { {0x644d0a5c, 0x4420006c, 0x7d1a0bea, 0x00000000}},  //   skai, adi_, _osts,\n  { {0x212700ad, 0xffd5008b, 0x62851238, 0x00000000}},  //   ính_, аўля, roho,\n  { {0x69da0036, 0x6285255a, 0xa3d6006e, 0x00000000}},  //   hate, soho, हरण_,\n  { {0x69da0d0a, 0x6283016c, 0xd2f600a1, 0x00000000}},  //   kate, čnob, _نکلا_,\n  { {0x69da2dec, 0x20d705f3, 0xb6bc0049, 0x00000000}},  //   jate, _مترج, עצוי,\n  { {0xa3b9006e, 0x6d4a0852, 0x00000000, 0x00000000}},  //   _चला_, gyfa,   ,\n  { {0x6ee700e9, 0x3eb9008e, 0x1c450793, 0x00000000}},  //   _مسئل, _ésto_, рним,\n  { {0x7c3b002b, 0x69da0016, 0xbebd0dec, 0x00000000}},  //   rjur, fate, _krūm,\n  { {0xf41f0039, 0x7c3b0116, 0xc332009b, 0x00000000}},  //   _skäl_, sjur, קוי_,\n  { {0x64930279, 0x44202ded, 0x00000000, 0x00000000}},  //   tçil, ydi_,   ,\n  { {0x186a0373, 0x38ca0014, 0xc60e0164, 0x00000000}},  //   тами_, کایی_, ाज्य_,\n  { {0x69da0181, 0x442001d5, 0x661e2dee, 0x00000000}},  //   bate, vdi_, _papk,\n  { {0x69da0038, 0xfed70055, 0x79e700a1, 0x00000000}},  //   cate, _সমাধ, _صوبہ_,\n  { {0x287607d0, 0xd46a00ed, 0x4420006b, 0x00000000}},  //   _выпр, виве_, tdi_,\n  { {0x629c2c03, 0x44200442, 0x2b09013d, 0x00000000}},  //   _shro, udi_, _वहाँ_,\n  { {0x62661deb, 0x629c2def, 0x661e0c47, 0x00000000}},  // [8b00] аваа, _phro, _tapk,\n  { {0x91e60902, 0x44200b1e, 0x09a90044, 0x00000000}},  //   роже, sdi_, _খ্যা,\n  { {0xdb19010f, 0x44200058, 0x224300ca, 0x00000000}},  //   _gewö, pdi_, _dojk_,\n  { {0x69da002d, 0x00000000, 0x00000000, 0x00000000}},  //   zate,   ,   ,\n  { {0x629c0038, 0x60c90059, 0x6d4a0016, 0x00000000}},  //   _thro, _čeme, wyfa,\n  { {0x69da00d9, 0xa1160014, 0x7d1a0026, 0x00000000}},  //   xate, _پورت, _psts,\n  { {0x69da004f, 0xc0e3004d, 0x3dcf0044, 0x00000000}},  //   vate, _морк, _রাখল,\n  { {0x69da1575, 0x6d4a005b, 0x6f1b0045, 0x00000000}},  //   wate, ryfa, _fsuc,\n  { {0x69da2df0, 0x6d4a00d9, 0xe45700b3, 0x00000000}},  //   tate, syfa, ייקט_,\n  { {0x38ba048a, 0x6f0202c2, 0x2caf00ea, 0x00000000}},  //   _për_, mtoc, _eigd_,\n  { {0xa3d60309, 0x2f0001aa, 0x8be80044, 0x00000000}},  //   हरा_, lòg_, ক্ষন_,\n  { {0x69da028c, 0x64bc01ee, 0x00000000, 0x00000000}},  //   sate, _pčin,   ,\n  { {0x69da0390, 0x6f020142, 0xbbd20061, 0x00000000}},  //   pate, ntoc, सरीक,\n  { {0xd687017a, 0xddc30035, 0x386b005b, 0x00000000}},  //   румп, minţ, sicr_,\n  { {0x046702be, 0x24920016, 0x69d80089, 0x00000000}},  //   атам, flym_, _ieve,\n  { {0x320a01a3, 0x69d80148, 0x54540131, 0x00000000}},  //   _abby_, _heve, овст,\n  { {0x64bc0340, 0x69d80010, 0xddc3001a, 0x00000000}},  // [8b10] _učin, _keve, ninţ,\n  { {0x35f5013b, 0x6f020927, 0x78b8014a, 0x00000000}},  //   _упор, dtoc, _kuvv,\n  { {0xdfd10025, 0x69d80129, 0x66152df1, 0x00000000}},  //   كيا_, _meve, mezk,\n  { {0x6615002d, 0x5fe70088, 0x00000000, 0x00000000}},  //   lezk, ріжж,   ,\n  { {0x5335007b, 0x4fe801e1, 0xdefb007c, 0x00000000}},  //   _האָב_, рмін_, тые_,\n  { {0x9e6401fb, 0x6615022b, 0xddc3001a, 0x00000000}},  //   овід, nezk, dinţ,\n  { {0x386901a3, 0x7ae2001e, 0xc212009b, 0x00000000}},  //   _omar_, _avot, _מהם_,\n  { {0xeb9910e1, 0x3ce916d0, 0x00000000, 0x00000000}},  //   лий_, čav_,   ,\n  { {0x6f1b0035, 0xc5ff0089, 0x290e0045, 0x00000000}},  //   _usuc, ļēji_, _apfa_,\n  { {0x38691596, 0x69d80087, 0x7bc20022, 0x00000000}},  //   _amar_, _ceve, _efou,\n  { {0x69d80e3e, 0x8d950054, 0x6615022b, 0x00000000}},  //   _deve, _الاش, dezk,\n  { {0xa85602a8, 0x3d010046, 0x6e21010f, 0x00000000}},  //   стој, mów_, _halb,\n  { {0x6e212df2, 0x8b6801fb, 0x41a70061, 0x00000000}},  //   _kalb, _київ_, केतस,\n  { {0x69d8017c, 0x65c305f6, 0x6615002d, 0x00000000}},  //   _geve, збра, gezk,\n  { {0x3d010046, 0x24890093, 0xe820013d, 0x00000000}},  //   nów_, foam_, _बसपा_,\n  { {0x69d823d1, 0x6f020253, 0xab5d0036, 0x00000000}},  //   _zeve, ytoc, waży,\n  { {0x04430216, 0x3aba007b, 0x7bd904cb, 0x00000000}},  // [8b20] четн, ָמענ, _mewu,\n  { {0x3d010046, 0x69c100d4, 0xb69b1290, 0x00000000}},  //   ków_, ncle, ltân,\n  { {0x3d010036, 0x24891fff, 0x02190088, 0x00000000}},  //   jów_, boam_, шіть_,\n  { {0x3d010046, 0x7bd90061, 0x6e210018, 0x00000000}},  //   dów_, _newu, _aalb,\n  { {0x6e21027b, 0xd9f90061, 0x8bff0044, 0x00000000}},  //   _balb, ्भात_, ্যান_,\n  { {0x44222df3, 0x6e2100d4, 0x6f02001a, 0x00000000}},  //   _hak_, _calb, rtoc,\n  { {0x6f02027b, 0x6446010a, 0x7bd9023d, 0x00000000}},  //   stoc, _koki, _bewu,\n  { {0x44221f8a, 0x64460f38, 0xf07600a1, 0x00000000}},  //   _jak_, _joki, _اُرد,\n  { {0x44222df4, 0x64460006, 0x23602df5, 0x00000000}},  //   _mak_, _moki, nzij_,\n  { {0xc33300b6, 0x69d8008d, 0x6e960a4f, 0x00000000}},  //   פות_, _qeve, _الطا,\n  { {0x3d010036, 0x69d80056, 0x44220133, 0x00000000}},  //   ców_, _veve, _oak_,\n  { {0x644601cf, 0x7ae0001c, 0x4422117c, 0x00000000}},  //   _noki, psmt, _nak_,\n  { {0x69d82df6, 0x6615022b, 0x76450161, 0x00000000}},  //   _teve, tezk, _pohy,\n  { {0x7aef0211, 0xa3cb0204, 0xa5f9003b, 0x00000000}},  //   ácte, रुन_, јеву_,\n  { {0x44222df7, 0x64461dea, 0x7c220058, 0x00000000}},  //   _bak_, _boki, _kaor,\n  { {0x4422037e, 0x3d1b01f5, 0x6615002d, 0x00000000}},  //   _cak_, _मनसे_, sezk,\n  { {0x644601aa, 0x44221300, 0x7c221c7e, 0x00000000}},  // [8b30] _doki, _dak_, _maor,\n  { {0x765c0537, 0xf1a700d7, 0x44220032, 0x00000000}},  //   chry, брен, _eak_,\n  { {0xf652009b, 0x672d01ca, 0xbebd0d90, 0x00000000}},  //   _חצי_, _hraj, _trūk,\n  { {0x44220149, 0x6e21002d, 0x64bc0166, 0x00000000}},  //   _gak_, _salb, _očij,\n  { {0xc1e900a1, 0x3d010036, 0x628e012d, 0x00000000}},  //   _نکال_, wów_, _fkbo,\n  { {0x3d010046, 0x44222df8, 0x64460107, 0x00000000}},  //   tów_, _zak_, _zoki,\n  { {0xed590057, 0x6e210193, 0x44220093, 0x00000000}},  //   рой_, _valb, _yak_,\n  { {0x3d010046, 0x27e9014a, 0x672d012d, 0x00000000}},  //   rów_, _ndan_, _oraj,\n  { {0x6e2109e2, 0x3d010046, 0x69c12df9, 0x00000000}},  //   _talb, sów_, tcle,\n  { {0xe9d90072, 0xda6501fb, 0x27e901aa, 0x00000000}},  //   шко_, івни, _adan_,\n  { {0xd9452dfa, 0x26c90022, 0x00000000, 0x00000000}},  //   цени, _atao_,   ,\n  { {0x672d037e, 0x69c10531, 0x27e90288, 0x00000000}},  //   _braj, scle, _cdan_,\n  { {0xb69b2dfb, 0x64460006, 0x765c0016, 0x00000000}},  //   rtân, _roki, thry,\n  { {0x44222dfc, 0x8aa710d8, 0xe93901ef, 0x00000000}},  //   _sak_, _уред, _نسبت_,\n  { {0x4422151b, 0x64460027, 0xa9660aed, 0x00000000}},  //   _pak_, _poki, _миша_,\n  { {0x672d016e, 0x229400b0, 0x236000bb, 0x00000000}},  //   _fraj, mäki_, tzij_,\n  { {0xc5d90055, 0x6446010a, 0x442200b5, 0x00000000}},  // [8b40] _তারপ, _voki, _vak_,\n  { {0x44220145, 0xd1960098, 0x437519a2, 0x00000000}},  //   _wak_, ошењ, чуст,\n  { {0x64462bac, 0xa3d5013d, 0x2905008e, 0x00000000}},  //   _toki, _सड़क_, ntla_,\n  { {0xd00a003b, 0xdfcf023c, 0x00000000, 0x00000000}},  //   реде_, نيم_,   ,\n  { {0x9eaa005c, 0x245c0010, 0x4ea60478, 0x00000000}},  //   авда_, _címe_, орка,\n  { {0xe2970783, 0x412a007c, 0x7c220051, 0x00000000}},  //   _мая_, _кого_, _saor,\n  { {0x910301be, 0xf98700a2, 0x25d70049, 0x00000000}},  //   _опре, _آب_, קוקן_,\n  { {0x2fc400c4, 0xcb0a05b8, 0xa4b7009b, 0x00000000}},  //   _ufmg_, аход_, חלקה_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x764800b0, 0xddc30087, 0xd8f80088, 0x00000000}},  //   ödyl, pinš, бної_,\n  { {0xc1bb0049, 0x41bb0049, 0x7c220197, 0x00000000}},  //   ימיש, יציע, _taor,\n  { {0x672d2dfd, 0xc8670088, 0x00000000, 0x00000000}},  //   _praj, ітни,   ,\n  { {0x6747007e, 0x64bc0e54, 0x672d0066, 0x00000000}},  //   цэнз, _učij, _qraj,\n  { {0x672d2dfe, 0x00000000, 0x00000000, 0x00000000}},  //   _vraj,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xd6db0057, 0x27e9002d, 0x00000000, 0x00000000}},  //   _кто_, _udan_,   ,\n  { {0x2458007c, 0xddcb2dff, 0x00000000, 0x00000000}},  // [8b50] цать_, _čižm,   ,\n  { {0xbebd0006, 0x00000000, 0x00000000, 0x00000000}},  //   _krūv,   ,   ,\n  { {0xc015007c, 0x7d0d0036, 0x3495003b, 0x00000000}},  //   змещ, łasz, _наор,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xce95005e, 0x80dc0044, 0x00000000, 0x00000000}},  //   падъ, মূল্,   ,\n  { {0x82d600b3, 0x51870780, 0x245c013e, 0x00000000}},  //   _מושג_, _дуба, _víme_,\n  { {0xdfd503c8, 0x29050886, 0x00000000, 0x00000000}},  //   _новы, xtla_,   ,\n  { {0x8027025a, 0xc57c009b, 0x0b45005e, 0x00000000}},  //   _برآم, ירות, знин,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xe8f90920, 0xadf40545, 0x290501e5, 0x00000000}},  //   бло_, _опуш, ttla_,\n  { {0xdcef0006, 0xbd6b0893, 0x2905004a, 0x00000000}},  //   _įdėt, _трае_, utla_,\n  { {0x31560049, 0x3a250022, 0x00000000, 0x00000000}},  //   פירן_, sdlp_,   ,\n  { {0xd5b80089, 0x29050471, 0x69cc013d, 0x00000000}},  //   žām_, stla_, _द्वी,\n  { {0xfe7900b9, 0x00000000, 0x00000000, 0x00000000}},  //   _svůj_,   ,   ,\n  { {0xceb2019b, 0x64a6008b, 0x845a0745, 0x00000000}},  //   תים_, зава, брат_,\n  { {0x98a3007c, 0x00000000, 0x00000000, 0x00000000}},  //   _пище,   ,   ,\n  { {0x08770049, 0xf8b30104, 0x00000000, 0x00000000}},  // [8b60] _מעקט_, _אשה_,   ,\n  { {0x42232e00, 0x00000000, 0x00000000, 0x00000000}},  //   ндув,   ,   ,\n  { {0x657a0051, 0xfe7900b9, 0x00000000, 0x00000000}},  //   úthd, _tvůj_,   ,\n  { {0xdd1e00b9, 0xa06a003b, 0x27e20022, 0x00000000}},  //   tíže, љада_, nakn_,\n  { {0xddcf00b9, 0x6aa80045, 0x00000000, 0x00000000}},  //   _řeše, ymdf,   ,\n  { {0x27e20022, 0x00000000, 0x00000000, 0x00000000}},  //   hakn_,   ,   ,\n  { {0x6493006b, 0x09da0044, 0x38ba0089, 0x00000000}},  //   rçiv, _দালা, _tīri_,\n  { {0x321a0036, 0x9e660167, 0x244e01dc, 0x00000000}},  //   lepy_, _کارن, _týmu_,\n  { {0xaae60025, 0x00000000, 0x00000000, 0x00000000}},  //   أسبو,   ,   ,\n  { {0x61fe0c53, 0x7aef0211, 0xc986013b, 0x00000000}},  //   ngpl, ácta, зуми,\n  { {0xfe4500a6, 0xf4b70044, 0x00000000, 0x00000000}},  //   _تکنی, _জব্ব,   ,\n  { {0x78a41965, 0x00000000, 0x00000000, 0x00000000}},  //   _chiv,   ,   ,\n  { {0x2bd202fb, 0x81e20044, 0x00000000, 0x00000000}},  //   _ध्या, _ধান_,   ,\n  { {0x80d20044, 0x00000000, 0x00000000, 0x00000000}},  //   _হিন্,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x95840036, 0xbebd0d90, 0xe3bf0032, 0x00000000}},  //   _łącz, _krūt, _baña_,\n  { {0xa2b501fb, 0xe3bf008e, 0x00000000, 0x00000000}},  // [8b70] дбач, _caña_,   ,\n  { {0x78a42e01, 0x645f0065, 0xe3b00025, 0x00000000}},  //   _zhiv, shqi, طرق_,\n  { {0x41190439, 0x00000000, 0x00000000, 0x00000000}},  //   تياج_,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x442901f6, 0x4439001f, 0x645d002b, 0x00000000}},  //   mda_, _ins_, _ilsi,\n  { {0xef1802f0, 0x479c0049, 0x4439016e, 0x00000000}},  //   ямі_, ציגס, _hns_,\n  { {0x44290006, 0xc1050380, 0x443904a5, 0x00000000}},  //   oda_, _توزي, _kns_,\n  { {0xf53801ce, 0xcac9007c, 0xbd180088, 0x00000000}},  //   לטור_, огие_, яції_,\n  { {0x442904bd, 0x99f5007e, 0x64932e02, 0x00000000}},  //   ida_, мяні, lçis,\n  { {0x44292e03, 0x2bff0044, 0x1a6500a6, 0x00000000}},  //   hda_, ্যেই_, بیتی_,\n  { {0x443906b2, 0x4429011c, 0xd5b80089, 0x00000000}},  //   _ons_, kda_, žāk_,\n  { {0x44291864, 0x2fdf0007, 0x44390c6b, 0x00000000}},  //   jda_, _jeug_, _nns_,\n  { {0x44292e04, 0xbebd001e, 0x61fe0039, 0x00000000}},  //   dda_, _grūt, ygpl,\n  { {0x44392e05, 0x44292e06, 0x3ebf021e, 0x00000000}},  //   _ans_, eda_, _muut_,\n  { {0xe969007c, 0x44392e07, 0x7afb03b6, 0x00000000}},  //   _файл_, _bns_, luut,\n  { {0x7c290125, 0x4429006a, 0x645d0061, 0x00000000}},  //   nder, gda_, _clsi,\n  { {0x7c2904b2, 0x3ebf0007, 0xda0e0011, 0x00000000}},  // [8b80] ider, _nuut_, _mỏng_,\n  { {0x442901d1, 0x443904bd, 0x4426024f, 0x00000000}},  //   ada_, _ens_, žo_,\n  { {0x442901d5, 0x661c2e08, 0x27e0001f, 0x00000000}},  //   bda_, merk, _kein_,\n  { {0x7c291932, 0x7afb021e, 0x44390190, 0x00000000}},  //   jder, kuut, _gns_,\n  { {0x7c290030, 0x27e0001f, 0x2fdf01d6, 0x00000000}},  //   dder, _mein_, _deug_,\n  { {0x7c290207, 0x27e0018e, 0xa2e300ec, 0x00000000}},  //   eder, _lein_, _јорд,\n  { {0xda0e0011, 0x00000000, 0x00000000, 0x00000000}},  //   _bỏng_,   ,   ,\n  { {0x27e005e9, 0x6724016e, 0x32c4014a, 0x00000000}},  //   _nein_, _osij, _köy_,\n  { {0x1dcf0201, 0x661c0056, 0xafe30581, 0x00000000}},  //   _स्वत, kerk, _шотл,\n  { {0x7c292b63, 0xdb220036, 0x27450065, 0x00000000}},  //   ader, _źród, _lënë_,\n  { {0x44290279, 0x27e003fa, 0x67242e09, 0x00000000}},  //   yda_, _bein_, _asij,\n  { {0x26c00197, 0x7afb01d6, 0x27450065, 0x00000000}},  //   _buio_, buut, _nënë_,\n  { {0x27e0010f, 0x44290027, 0x443901e5, 0x00000000}},  //   _dein_, vda_, _rns_,\n  { {0x661c0fdf, 0x4429208b, 0x44390142, 0x00000000}},  //   gerk, wda_, _sns_,\n  { {0x4429006b, 0x4439023a, 0x27450065, 0x00000000}},  //   tda_, _pns_, _bënë_,\n  { {0xd5b8004c, 0x44290995, 0x6e280146, 0x00000000}},  //   ься_, uda_, _ladb,\n  { {0x4429049d, 0xa3aa0061, 0x6e3a01b5, 0x00000000}},  // [8b90] rda_, गेल_, _ontb,\n  { {0x4429006b, 0x27e0022b, 0x6e28016e, 0x00000000}},  //   sda_, _zein_, _nadb,\n  { {0x7c290016, 0x25d6009b, 0x00000000, 0x00000000}},  //   yder, _אותן_,   ,\n  { {0x44391fdc, 0x245c009f, 0x44292ca5, 0x00000000}},  //   _uns_, _tíma_, qda_,\n  { {0x22940039, 0x7c290023, 0x32c4006b, 0x00000000}},  //   täkt_, vder, _göy_,\n  { {0xceb80036, 0x6da50437, 0x603e001a, 0x00000000}},  //   _cię_, нила, _pămâ,\n  { {0xdc3a014a, 0xe8200061, 0x61e503e1, 0x00000000}},  //   _açıs, _बसला_, mahl,\n  { {0x69ca19eb, 0x61e5005f, 0x7c2906b1, 0x00000000}},  //   _affe, lahl, uder,\n  { {0x27e00bea, 0x661c0058, 0x3ed90bb6, 0x00000000}},  //   _rein_, yerk, _رواج_,\n  { {0x27e02e0a, 0x39450088, 0xfeb80025, 0x00000000}},  //   _sein_, еног, _قالت_,\n  { {0x661c067e, 0x7afb021e, 0x2d800035, 0x00000000}},  //   verk, suut, şier_,\n  { {0xed5600bd, 0x661c2e0b, 0x7afb2e0c, 0x00000000}},  //   _אבער_, werk, puut,\n  { {0x661c022b, 0x443e001d, 0x3a270263, 0x00000000}},  //   terk, _đt_, _tanp_,\n  { {0xe3bf04a8, 0x64bc1032, 0x7ae92e0d, 0x00000000}},  //   _baño_, _očit, mset,\n  { {0xa979007b, 0x7ae924c7, 0xf8c6007d, 0x00000000}},  //   _מאַכ, lset, _रूपय,\n  { {0x46ea0265, 0x7bc900f4, 0xe3bf0211, 0x00000000}},  //   _един_, nceu, _daño_,\n  { {0x661c2e0e, 0x7ae904b2, 0x27450065, 0x00000000}},  // [8ba0] perk, nset, _vënë_,\n  { {0x99850010, 0x2cad0560, 0x25e10061, 0x00000000}},  //   lelő_, hmed_, करणी_,\n  { {0x6e280270, 0x7ae9169c, 0x2cad006c, 0x00000000}},  //   _radb, hset, kmed_,\n  { {0xceb80df0, 0x7ae92e0f, 0xf77f1052, 0x00000000}},  //   _się_, kset, laça_,\n  { {0x2cad006c, 0x7ae92e10, 0x24800f3a, 0x00000000}},  //   dmed_, jset, mnim_,\n  { {0x7ae92ce0, 0x24800213, 0xf77f00d4, 0x00000000}},  //   dset, lnim_, naça_,\n  { {0xf65300a3, 0x6e280059, 0x7ae90026, 0x00000000}},  //   רצו_, _vadb, eset,\n  { {0x7ae901e5, 0x00000000, 0x00000000, 0x00000000}},  //   fset,   ,   ,\n  { {0x7ae90fc7, 0x3f810180, 0x2ca62e11, 0x00000000}},  //   gset, şhur_, _vhod_,\n  { {0xdb230051, 0x4a54030d, 0x24802e12, 0x00000000}},  //   órái, ткос, hnim_,\n  { {0x386001c9, 0x88bc00b9, 0x2cad00ab, 0x00000000}},  //   _blir_, jvět, bmed_,\n  { {0xa3b10164, 0x61e5010f, 0x81570049, 0x00000000}},  //   टेड_, zahl, גסטע_,\n  { {0x24800119, 0x64bc0738, 0x61e52e13, 0x00000000}},  //   dnim_, _očis, yahl,\n  { {0x09e30055, 0xbb3b0097, 0xe3bf008e, 0x00000000}},  //   _মাথা, _מעדי, _paño_,\n  { {0xceb301ce, 0x659500ed, 0x386000ca, 0x00000000}},  //   טיש_, таву, _flir_,\n  { {0xd49802b8, 0x38602e14, 0x61e52e15, 0x00000000}},  //   еру_, _glir_, wahl,\n  { {0x61e5127d, 0x57f4007e, 0x09e30044, 0x00000000}},  // [8bb0] tahl, _спыт, _মাতা,\n  { {0x7afd0129, 0x24802e16, 0x00000000, 0x00000000}},  //   àsti, anim_,   ,\n  { {0xf77300a1, 0xdfd1006d, 0x69c7050f, 0x00000000}},  //   _جاں_, ليا_, žjeg,\n  { {0x2480037e, 0x1b170055, 0xf9930049, 0x00000000}},  //   cnim_, তিতে_, ארע_,\n  { {0xd9ad03d7, 0x442b0068, 0x4f580088, 0x00000000}},  //   _घण्ट, _iac_, ницю_,\n  { {0x7ae92e17, 0x442b0095, 0xbd8900a1, 0x00000000}},  //   vset, _hac_, ونشن_,\n  { {0x64bc154d, 0xfc310025, 0x644f05fd, 0x00000000}},  //   _učit, لحة_, _koci,\n  { {0x7ae92cdf, 0x644f016c, 0x442b0145, 0x00000000}},  //   tset, _joci, _jac_,\n  { {0x442b2e18, 0x644f2e19, 0x7bc9009d, 0x00000000}},  //   _mac_, _moci, rceu,\n  { {0x644f00ee, 0x442b0068, 0x24800ecc, 0x00000000}},  //   _loci, _lac_, znim_,\n  { {0x442b0129, 0x09e30044, 0x00000000, 0x00000000}},  //   _oac_, _মাদা,   ,\n  { {0x442b0016, 0x00000000, 0x00000000, 0x00000000}},  //   _nac_,   ,   ,\n  { {0x24800c1e, 0x7c2b0061, 0x290c013f, 0x00000000}},  //   vnim_, _iagr, atda_,\n  { {0xf1b1007d, 0x442b0082, 0xa3d40164, 0x00000000}},  //   जधान, _aac_, सुन_,\n  { {0x442b00f4, 0x24800091, 0xf77f00c4, 0x00000000}},  //   _bac_, tnim_, raça_,\n  { {0x644f0219, 0xc483031b, 0x442b0011, 0x00000000}},  //   _coci, алск, _cac_,\n  { {0x7c2b006a, 0x130a008b, 0xa3e302fb, 0x00000000}},  // [8bc0] _magr, ьнай_, _नजर_,\n  { {0x7c2b0292, 0x24800213, 0x442b0020, 0x00000000}},  //   _lagr, snim_, _eac_,\n  { {0x442b000d, 0x644f0010, 0x248004eb, 0x00000000}},  //   _fac_, _foci, pnim_,\n  { {0x7e6109e7, 0xc059007e, 0x644f016c, 0x00000000}},  //   _allp, ніі_, _goci,\n  { {0x4420000d, 0xbe8a18b4, 0x1eaa0025, 0x00000000}},  //   mei_, мске_, واتي_,\n  { {0x4420000d, 0x442b14f6, 0x765c2e1a, 0x00000000}},  //   lei_, _zac_, nkry,\n  { {0x7c2b0107, 0xc0e3007c, 0x290c006b, 0x00000000}},  //   _bagr, _воск, xtda_,\n  { {0x4420163a, 0x40950216, 0x64810089, 0x00000000}},  //   nei_, _брут, eķij,\n  { {0x442015ed, 0x7c2b005b, 0xaf06013a, 0x00000000}},  //   iei_, _dagr, _шпал,\n  { {0x7c2b002a, 0x44200181, 0x00000000, 0x00000000}},  //   _eagr, hei_,   ,\n  { {0x44200007, 0x5ec70044, 0xdd1f0027, 0x00000000}},  //   kei_, রীদে, píšt,\n  { {0x44200232, 0x6d790049, 0x7d1a0085, 0x00000000}},  //   jei_, _אָנװ, _ipts,\n  { {0x442009e3, 0x6d58010a, 0x644f008e, 0x00000000}},  //   dei_, lyva, _roci,\n  { {0x7c2b0209, 0x442b00f4, 0x09bc0044, 0x00000000}},  //   _zagr, _sac_, _আজকা,\n  { {0x644f0387, 0x24190147, 0x442b2a0e, 0x00000000}},  //   _poci, новы_, _pac_,\n  { {0x442019be, 0x00000000, 0x00000000, 0x00000000}},  //   gei_,   ,   ,\n  { {0x442b171e, 0x644f17b2, 0x5215005c, 0x00000000}},  // [8bd0] _vac_, _voci, лдат,\n  { {0xf77f00c4, 0x442b062a, 0x00000000, 0x00000000}},  //   laço_, _wac_,   ,\n  { {0xf7700a90, 0x2127001d, 0x4420001f, 0x00000000}},  //   _های_, ình_, bei_,\n  { {0x4420001a, 0xcfde0055, 0x644f0107, 0x00000000}},  //   cei_, _ডাউন, _uoci,\n  { {0xdea100a1, 0xdd100062, 0x7c2b04a5, 0x00000000}},  //   میری, výše, _ragr,\n  { {0x3b0d00bb, 0x00000000, 0x00000000, 0x00000000}},  //   vteq_,   ,   ,\n  { {0x7c2b2e1b, 0x00000000, 0x00000000, 0x00000000}},  //   _pagr,   ,   ,\n  { {0x0c25026b, 0xa6d90044, 0x24990145, 0x00000000}},  //   умин, _তিনট, _jksm_,\n  { {0x78660211, 0xf77f00c4, 0xfe79013e, 0x00000000}},  //   _jóve, daço_, _dvůr_,\n  { {0x44200de1, 0x78660181, 0xd9e30044, 0x00000000}},  //   zei_, _móve, _মাহম,\n  { {0x7c2b2c85, 0x44200010, 0x81b50044, 0x00000000}},  //   _tagr, yei_, ছুর_,\n  { {0x442003c7, 0xbbeb00a6, 0xe43c00b9, 0x00000000}},  //   xei_, _آرام_, _příč,\n  { {0x7866009f, 0x442025e8, 0x81e90055, 0x00000000}},  //   _nóve, vei_, _যান_,\n  { {0x38ca0014, 0x00000000, 0x00000000, 0x00000000}},  //   بایی_,   ,   ,\n  { {0x44201254, 0x765c2e1c, 0x7cd10089, 0x00000000}},  //   tei_, rkry, _dārg,\n  { {0x765c0343, 0x7866004a, 0x7bdb0116, 0x00000000}},  //   skry, _bóve, nbuu,\n  { {0xa25b0011, 0x52aa0269, 0x00000000, 0x00000000}},  // [8be0] _vuôn, евам_,   ,\n  { {0x44201792, 0x61460081, 0x00000000, 0x00000000}},  //   sei_, леза,   ,\n  { {0x4420001a, 0xea76007b, 0x629e0142, 0x00000000}},  //   pei_, נגער_, rlpo,\n  { {0xb4fb0097, 0x7afb0036, 0xd46a003b, 0x00000000}},  //   _אפטי, krut, _чиме_,\n  { {0xe3b200a6, 0x7e782e1d, 0x7afb00d0, 0x00000000}},  //   _درد_, tivp, jrut,\n  { {0xb5e20044, 0x11da0025, 0x6d580006, 0x00000000}},  //   _বাঁচ, _سورة_, tyva,\n  { {0x2cc90027, 0x7c200232, 0x016619c9, 0x00000000}},  //   _ľudí_, temr, _скво,\n  { {0x7afb002b, 0x00000000, 0x00000000, 0x00000000}},  //   frut,   ,   ,\n  { {0x307509bb, 0x68f50161, 0xa067003b, 0x00000000}},  //   _турс, ázdn, _сата_,\n  { {0x37e10044, 0x9c7c0173, 0x6d58007f, 0x00000000}},  //   _ভাইর, _avčt, pyva,\n  { {0x69da0bdf, 0x00000000, 0x00000000, 0x00000000}},  //   rbte,   ,   ,\n  { {0x7afb04d3, 0x3ebe000c, 0x20060023, 0x00000000}},  //   brut, _hitt_, ngoi_,\n  { {0x7afb2e1e, 0x7c930025, 0xf77f0181, 0x00000000}},  //   crut, _النص, raço_,\n  { {0x6d490036, 0x26e5006e, 0x00000000, 0x00000000}},  //   ślał, _कबीर_,   ,\n  { {0x3ebe2e1f, 0xf77f0181, 0x24990022, 0x00000000}},  //   _mitt_, paço_, _pksm_,\n  { {0x248d01ae, 0x7ae22e20, 0x3ebe0056, 0x00000000}},  //   čemo_, _kwot, _litt_,\n  { {0x81e90044, 0x42751606, 0x94a8003b, 0x00000000}},  // [8bf0] _যাব_, агас, утра_,\n  { {0x7aef2e21, 0xe70400a1, 0x5ed30044, 0x00000000}},  //   ácti, _اسٹی, _সিলে,\n  { {0xcfd60055, 0xe7960014, 0xf1a7007e, 0x00000000}},  //   _হয়ন, _مایک, уран,\n  { {0x6f020197, 0x897b0049, 0xc64b00a1, 0x00000000}},  //   fuoc, עראצ, _آجکل_,\n  { {0xb817006e, 0x78bf0065, 0x20090089, 0x00000000}},  //   ध्यम_, _miqv, ļai_,\n  { {0x62830428, 0x2d9e0142, 0x7bc20173, 0x00000000}},  //   čnos, _byte_, _agou,\n  { {0xd658019b, 0x3ebe067e, 0xcda80025, 0x00000000}},  //   ריות_, _ditt_, هههه_,\n  { {0xeb9907ca, 0x7afb0181, 0x3ebe021a, 0x00000000}},  //   кий_, trut, _eitt_,\n  { {0x6f1b037e, 0x5064007c, 0x3ebe1591, 0x00000000}},  //   _upuc, _утра, _fitt_,\n  { {0x7cd1001e, 0x62852e22, 0x7afb002d, 0x00000000}},  //   _pārd, nnho, rrut,\n  { {0x186a0954, 0x61e70039, 0x88860242, 0x00000000}},  //   вани_, _mejl, илож,\n  { {0x7cd1001e, 0x78ad0181, 0x61e70030, 0x00000000}},  //   _vārd, _chav, _lejl,\n  { {0xe9ce00ed, 0x7d032e23, 0xe73a003b, 0x00000000}},  //   _мк_, luns, њег_,\n  { {0x61e70224, 0x6e23010f, 0x00000000, 0x00000000}},  //   _nejl, nenb,   ,\n  { {0x7d032e24, 0xc6280044, 0x62971293, 0x00000000}},  //   nuns, মালা_, doxo,\n  { {0x6e23084b, 0x26c40d7b, 0xdd0100b9, 0x00000000}},  //   henb, ímos_, _štěs,\n\n  { {0xa3b10164, 0xb89b009b, 0xe29a00ed, 0x00000000}},  // [8c00] टेल_, _בבקש, ваа_,\n  { {0x6e2300d9, 0x628506d3, 0x61e70a14, 0x00000000}},  //   jenb, gnho, _cejl,\n  { {0x61e70030, 0x6e23010f, 0x3ebe0302, 0x00000000}},  //   _dejl, denb, _ritt_,\n  { {0x3ebe01e2, 0x2d9e0006, 0x78ad0023, 0x00000000}},  //   _sitt_, _ryte_, _xhav,\n  { {0x61e72e25, 0x6e23010f, 0x2d9e0065, 0x00000000}},  //   _fejl, fenb, _syte_,\n  { {0x81b50055, 0x44320062, 0x6e2305c6, 0x00000000}},  //   ছুই_, ldy_, genb,\n  { {0xafe6008b, 0xddc80036, 0x721b00b3, 0x00000000}},  //   _вобл, _podł, _שולח,\n  { {0x69c31543, 0x7ae20263, 0x00000000, 0x00000000}},  //   _agne, _pwot,   ,\n  { {0xd24f00a1, 0x6e23010f, 0x15e6013d, 0x00000000}},  //   _عنہ_, benb, करार_,\n  { {0x44322e26, 0x2d96007c, 0xf1aa013d, 0x00000000}},  //   hdy_, _крес, _करान,\n  { {0x4432004f, 0x60c000b0, 0x7d03001a, 0x00000000}},  //   kdy_, _kimm, cuns,\n  { {0x7ae20173, 0x69c301e3, 0x60c0086a, 0x00000000}},  //   _twot, _egne, _jimm,\n  { {0x7ad40879, 0x629c0059, 0x62850016, 0x00000000}},  //   _اقتص, _okro, ynho,\n  { {0x44320142, 0x60c000f8, 0x7afd07fd, 0x00000000}},  //   edy_, _limm, áste,\n  { {0x58870642, 0xa4d50088, 0x644d0d88, 0x00000000}},  //   _выпа, собі, tjai,\n  { {0x61300047, 0x629c2e27, 0x44320036, 0x00000000}},  //   zólá, _akro, gdy_,\n  { {0x644d00b0, 0xa3b1013d, 0x61e72e28, 0x00000000}},  // [8c10] rjai, टें_, _pejl,\n  { {0xdcee00b9, 0x44320652, 0x628501a2, 0x00000000}},  //   áděn, ady_, unho,\n  { {0x62850030, 0x61e70018, 0x611300b9, 0x00000000}},  //   rnho, _vejl, dělá,\n  { {0x27e92e29, 0x9ef50025, 0x00000000, 0x00000000}},  //   _jean_, مستش,   ,\n  { {0x6e23010f, 0x53340057, 0x27e900ab, 0x00000000}},  //   tenb, _деят, _mean_,\n  { {0x27e90051, 0x672d10e5, 0x98a800b9, 0x00000000}},  //   _lean_, _msaj, _brně_,\n  { {0x60c0009f, 0x4035005e, 0x245c000c, 0x00000000}},  //   _fimm, _левс, _sími_,\n  { {0x213e0051, 0x7cd1001e, 0x6e23010f, 0x00000000}},  //   _átha_, _pārb, senb,\n  { {0x6e2322b0, 0x98bf0006, 0x7d030095, 0x00000000}},  //   penb, lytė_, suns,\n  { {0x443213a6, 0x60c0010f, 0x26c10009, 0x00000000}},  //   zdy_, _zimm, _niho_,\n  { {0x44322e2a, 0x27e90122, 0x69c300ca, 0x00000000}},  //   ydy_, _bean_, _vgne,\n  { {0xed35026c, 0x245c000c, 0x00000000, 0x00000000}},  //   _پوچھ, _tími_,   ,\n  { {0x8c16006d, 0x27e90133, 0x672d0010, 0x00000000}},  //   _طيور_, _dean_, _csaj,\n  { {0xa50a00c0, 0x44320036, 0xa3bd0164, 0x00000000}},  //   лега_, wdy_, ेखन_,\n  { {0x33f601e1, 0x672d00d9, 0xba740025, 0x00000000}},  //   йчас, _esaj, _بانت,\n  { {0x29051312, 0x629c0091, 0xe8170061, 0x00000000}},  //   mula_, _skro, ध्दा_,\n  { {0x44320161, 0xe73a0726, 0x26c10087, 0x00000000}},  // [8c20] rdy_, _сеп_, _fiho_,\n  { {0x60c00039, 0x200d0035, 0x4432060a, 0x00000000}},  //   _simm, _acei_, sdy_,\n  { {0x29050091, 0xd657009b, 0xb3e70044, 0x00000000}},  //   nula_, _היית_, _ফারজ,\n  { {0x3a250007, 0xcf46094b, 0x00000000, 0x00000000}},  //   help_, йней,   ,\n  { {0x290512e8, 0x60c000f8, 0xe3bf0288, 0x00000000}},  //   hula_, _vimm, _bañu_,\n  { {0x412a01fb, 0x29050503, 0x6146003b, 0x00000000}},  //   _його_, kula_, _лега,\n  { {0x60c00073, 0xc27b0049, 0x2905010e, 0x00000000}},  //   _timm, _ערלי, jula_,\n  { {0xbf4d00b9, 0xcefd0095, 0x00000000, 0x00000000}},  //   _šířk, üğün_,   ,\n  { {0xfbcf0380, 0x7cd10089, 0x6f6601ff, 0x00000000}},  //   رتي_, _pārc, _уваз,\n  { {0x27e910c9, 0x7f3b0049, 0x29050258, 0x00000000}},  //   _sean_, _געמו, fula_,\n  { {0x29052e2b, 0x6e9301f7, 0x6da606b4, 0x00000000}},  //   gula_, _علما, _امام,\n  { {0xc86716c4, 0x6ca60070, 0x486702dc, 0x00000000}},  //   стои, _اصطل, съоб,\n  { {0x27e9097a, 0x25a4006b, 0xac970025, 0x00000000}},  //   _vean_, əmli_, _اننا_,\n  { {0x2905011c, 0x3cef0061, 0x80d90044, 0x00000000}},  //   bula_, ींचे_, _ডিস্,\n  { {0x29050779, 0x27e9006c, 0x280400b9, 0x00000000}},  //   cula_, _tean_, ásné_,\n  { {0x81c00044, 0x73d900ed, 0x985d0036, 0x00000000}},  //   ীরা_, рдар_, _błąd_,\n  { {0x325500da, 0x672d0020, 0x26c10825, 0x00000000}},  // [8c30] овар, _usaj, _tiho_,\n  { {0xf8c90082, 0x98bf0006, 0x6a64000a, 0x00000000}},  //   _mẩn_, tytė_, _mòfo,\n  { {0xf8c90082, 0x50b90014, 0x00000000, 0x00000000}},  //   _lẩn_, لگرد_,   ,\n  { {0x3e6b0056, 0x00000000, 0x00000000, 0x00000000}},  //   _møte_,   ,   ,\n  { {0xddc501fb, 0x2905002d, 0x24890058, 0x00000000}},  //   обли, zula_, mnam_,\n  { {0xdce8005d, 0x38690129, 0x787601c5, 0x00000000}},  //   _aydı, _llar_, ršvi,\n  { {0xe80a02fb, 0x3869005f, 0xde940025, 0x00000000}},  //   _वाला_, _olar_, أجنب,\n  { {0xf8c90011, 0x24891091, 0x5f740123, 0x00000000}},  //   _bẩn_, nnam_, _کافر,\n  { {0xf8c90011, 0x29050022, 0x00000000, 0x00000000}},  //   _cẩn_, wula_,   ,\n  { {0x3869010e, 0xf8c90082, 0x00000000, 0x00000000}},  //   _alar_, _dẩn_,   ,\n  { {0xd82601fb, 0x386900ea, 0x00000000, 0x00000000}},  //   одни, _blar_,   ,\n  { {0xe73a2c8c, 0x386905f7, 0x76450016, 0x00000000}},  //   аем_, _clar_, _anhy,\n  { {0xda35007e, 0x248902b4, 0x00000000, 0x00000000}},  //   _меды, dnam_,   ,\n  { {0x2489008f, 0x00000000, 0x00000000, 0x00000000}},  //   enam_,   ,   ,\n  { {0x65c302dc, 0x1a9a0049, 0x00000000, 0x00000000}},  //   дбра, _דיסע,   ,\n  { {0x60c90ebc, 0x044322c0, 0x9f4f000c, 0x00000000}},  //   _čemp, месн, yggð_,\n  { {0xd4670113, 0x03a3004c, 0xc8890379, 0x00000000}},  // [8c40] ците_, дито, _دخول_,\n  { {0xae0e007d, 0x00000000, 0x00000000, 0x00000000}},  //   _साधन_,   ,   ,\n  { {0x7cf00051, 0x00000000, 0x00000000, 0x00000000}},  //   _mórá,   ,   ,\n  { {0xdfd00426, 0xa06a01fc, 0x1b200044, 0x00000000}},  //   ريت_, јада_, বিতে_,\n  { {0x6446005f, 0x81e90055, 0x00000000, 0x00000000}},  //   _inki, _যার_,   ,\n  { {0x72c30057, 0xccfa003b, 0x00000000, 0x00000000}},  //   _обяз, аћи_,   ,\n  { {0x68ed0036, 0x26120164, 0x00000000, 0x00000000}},  //   _ładn, _तानी_,   ,\n  { {0x6ab2001c, 0x00000000, 0x00000000, 0x00000000}},  //   ँग्र,   ,   ,\n  { {0x3ce90091, 0x69cf013e, 0x00000000, 0x00000000}},  //   ćava_, ěcen,   ,\n  { {0x24890b41, 0x64460061, 0x22582e2c, 0x00000000}},  //   znam_, _lnki, _jork_,\n  { {0x644600b0, 0x22580173, 0x765700e5, 0x00000000}},  //   _onki, _mork_, _roxy,\n  { {0x0b46046c, 0x6f020035, 0x6a6400f6, 0x00000000}},  //   _мнен, oroc, _tòfo,\n  { {0x24890087, 0xf8c90082, 0x00000000, 0x00000000}},  //   vnam_, _uẩn_,   ,\n  { {0x2258022b, 0x64460036, 0x95c8005e, 0x00000000}},  //   _nork_, _anki, жута_,\n  { {0x24890011, 0xd7fb00ed, 0x6f021e64, 0x00000000}},  //   tnam_, _куп_, hroc,\n  { {0xd14b0167, 0x6f020832, 0x3869008a, 0x00000000}},  //   یشان_, kroc, _ular_,\n  { {0x24890089, 0x22580146, 0x00000000, 0x00000000}},  // [8c50] rnam_, _bork_,   ,\n  { {0x64460173, 0x93880451, 0x2489005b, 0x00000000}},  //   _enki, іста_, snam_,\n  { {0x7ea400d4, 0x9c7c000a, 0x00000000, 0x00000000}},  //   còpi, _pwčl,   ,\n  { {0xc95301ce, 0xd7af0061, 0x859a009b, 0x00000000}},  //   ומע_, _घराच, _לשתו,\n  { {0x44291110, 0x22580784, 0xdf780088, 0x00000000}},  //   mea_, _fork_, обці_,\n  { {0x44290459, 0x52242e2d, 0x26dc0049, 0x00000000}},  //   lea_, _офса, סקומ,\n  { {0x3085004b, 0x00000000, 0x00000000, 0x00000000}},  //   _فلسف,   ,   ,\n  { {0x4429000d, 0x6f02010f, 0x9f4401dc, 0x00000000}},  //   nea_, broc, _zemí_,\n  { {0x4ea703f3, 0x225800ab, 0x00000000, 0x00000000}},  //   _држа, _york_,   ,\n  { {0x4429006c, 0x28cf006e, 0x00000000, 0x00000000}},  //   hea_, _संदि,   ,\n  { {0x44292e2e, 0xd9450069, 0x4ea40098, 0x00000000}},  //   kea_, чени, _црта,\n  { {0x44292367, 0x00000000, 0x00000000, 0x00000000}},  //   jea_,   ,   ,\n  { {0x4429022b, 0xeb8e01fb, 0x44f7002b, 0x00000000}},  //   dea_, _чи_, eħ_,\n  { {0xc4c60054, 0x7c292e2f, 0xbb3a0104, 0x00000000}},  //   كترو, leer, _לעני,\n  { {0xceb2012e, 0xc1aa03d7, 0x44292662, 0x00000000}},  //   גים_, _करेग, fea_,\n  { {0x7c2908ce, 0x44290e64, 0x6f02048d, 0x00000000}},  //   neer, gea_, yroc,\n  { {0x22582e30, 0xe3b100a1, 0x00000000, 0x00000000}},  // [8c60] _pork_, ہرے_,   ,\n  { {0x69de0004, 0x7c290250, 0x44290009, 0x00000000}},  //   _õpet, heer, aea_,\n  { {0x4429002d, 0x23660091, 0x7c29017d, 0x00000000}},  //   bea_, šoj_, keer,\n  { {0x6f02029d, 0x22580038, 0x4429001a, 0x00000000}},  //   troc, _work_, cea_,\n  { {0xbea60099, 0x22580066, 0x7c292e31, 0x00000000}},  //   падк, _tork_, deer,\n  { {0x6f02059a, 0x00000000, 0x00000000, 0x00000000}},  //   rroc,   ,   ,\n  { {0x629e016e, 0x6f0220d6, 0xf8c90082, 0x00000000}},  //   mopo, sroc, _bẩm_,\n  { {0x6f0200f4, 0x3f6a0057, 0x7c290b20, 0x00000000}},  //   proc, _либо_, geer,\n  { {0x20f800ca, 0x61ee0bce, 0xd00f03d6, 0x00000000}},  //   lči_, _kebl, _حلق_,\n  { {0x4429119a, 0x61ee2e32, 0x2a6a0010, 0x00000000}},  //   zea_, _jebl, óbb_,\n  { {0x7c2900b5, 0xe895008b, 0x61ee0036, 0x00000000}},  //   beer, дань, _mebl,\n  { {0x7c2900b5, 0x4429002d, 0xb69b00c4, 0x00000000}},  //   ceer, xea_, grân,\n  { {0xb8d302fb, 0x629e10d9, 0xbb490025, 0x00000000}},  //   _जी_, kopo, _وجهك_,\n  { {0xcad700b6, 0x61ee0006, 0x442900e7, 0x00000000}},  //   _צוות_, _nebl, wea_,\n  { {0x442922d5, 0x629e0062, 0x746b1320, 0x00000000}},  //   tea_, dopo, брав_,\n  { {0x81e90055, 0x3e6b00ea, 0xd5b81c0a, 0x00000000}},  //   _যাই_, _møta_, яся_,\n  { {0x44291305, 0xe7e303d7, 0x261a001c, 0x00000000}},  // [8c70] rea_, _क्या_, म्ही_,\n  { {0xddc8012d, 0x63a602e7, 0x00000000, 0x00000000}},  //   _amdž, _dykn,   ,\n  { {0x442923cc, 0x30150057, 0x61ee016e, 0x00000000}},  //   pea_, ддер, _debl,\n  { {0x7c2900bb, 0x5ee10044, 0x00000000, 0x00000000}},  //   xeer, _নিবে,   ,\n  { {0x7c29224a, 0x61ee10cf, 0x67f80010, 0x00000000}},  //   veer, _febl, lújí,\n  { {0x61ee00c7, 0xc3320452, 0x7c292e33, 0x00000000}},  //   _gebl, _שום_, weer,\n  { {0x7c292706, 0xf0aa0026, 0x38880010, 0x00000000}},  //   teer, ààà_, lőre_,\n  { {0xccf800b9, 0x0b45026b, 0x69d80190, 0x00000000}},  //   _dvě_, днин, _afve,\n  { {0x7c292e34, 0x06e20055, 0xa0c40025, 0x00000000}},  //   reer, _বিভি, _سيكو,\n  { {0xe8f90001, 0x7c292706, 0x67240022, 0x00000000}},  //   оло_, seer, _rpij,\n  { {0x382a01be, 0x672400b5, 0x7c29006c, 0x00000000}},  //   ожно_, _spij, peer,\n  { {0x200f10b6, 0x6d412e35, 0x06e20044, 0x00000000}},  //   nggi_, _irla, _বিবি,\n  { {0x28cf006e, 0xb69b00c4, 0x629e1519, 0x00000000}},  //   _संवि, rrân, yopo,\n  { {0xa96901c0, 0x753c00b9, 0x9f4f009d, 0x00000000}},  //   _мила_, tvrz, gagé_,\n  { {0x64a6008b, 0x845a00ed, 0xe5a3014d, 0x00000000}},  //   дава, орат_, вири,\n  { {0x161f006e, 0x20f80087, 0x61ee2e36, 0x00000000}},  //   म्बर_, vči_, _sebl,\n  { {0x60ce0498, 0x60dc1332, 0xf1fa03ab, 0x00000000}},  // [8c80] _subm, _strm, قعات_,\n  { {0x7cd1001e, 0x452a01e0, 0x60ce00ab, 0x00000000}},  //   _pārl, _джон_, _pubm,\n  { {0x629e1750, 0x85bb026c, 0x24f6007e, 0x00000000}},  //   ropo, _واپس_, _ўчор,\n  { {0x61ee0c46, 0x629e0010, 0x7bcb0022, 0x00000000}},  //   _webl, sopo, _nggu,\n  { {0x629e0059, 0x6d4100f8, 0x06e20044, 0x00000000}},  //   popo, _arla, _বিডি,\n  { {0x442200f8, 0x7bcb0197, 0x200f02c9, 0x00000000}},  //   _hbk_, _aggu, aggi_,\n  { {0xa06a00e3, 0x998500b9, 0x00000000, 0x00000000}},  //   _дава_, delů_,   ,\n  { {0x7d0a010f, 0xe043025f, 0x29050bf8, 0x00000000}},  //   rufs, _инси, drla_,\n  { {0x6d410577, 0xc5f40055, 0x29050026, 0x00000000}},  //   _erla, _জানা_, erla_,\n  { {0xd90e00a6, 0x78a42e37, 0x5a34005e, 0x00000000}},  //   لیت_, _akiv, хнот,\n  { {0x2905012d, 0x00000000, 0x00000000, 0x00000000}},  //   grla_,   ,   ,\n  { {0x89d801b2, 0x00000000, 0x00000000, 0x00000000}},  //   _کوثر_,   ,   ,\n  { {0x7ae0001c, 0x29050e32, 0x00000000, 0x00000000}},  //   qpmt, arla_,   ,\n  { {0x1994008b, 0x78a40173, 0x44222e38, 0x00000000}},  //   _паля, _ekiv, _abk_,\n  { {0xda65006d, 0x44220032, 0x200f000c, 0x00000000}},  //   _ثاني, _bbk_, yggi_,\n  { {0x290c04cb, 0xf993009b, 0x9f4f009d, 0x00000000}},  //   muda_, _שרק_, sagé_,\n  { {0x290c006c, 0x7c222e39, 0xe3b300a1, 0x00000000}},  // [8c90] luda_, _mbor, ئرز_,\n  { {0xe3b00025, 0x44220032, 0x6a6400f6, 0x00000000}},  //   شرق_, _ebk_, _bòfi,\n  { {0x290c05f9, 0x7c2200b9, 0x69dc000c, 0x00000000}},  //   nuda_, _obor, ðrey,\n  { {0x41df02fb, 0x5f9503dc, 0xddd811af, 0x00000000}},  //   _प्रस, ниет, vivš,\n  { {0x290c0020, 0x645d0035, 0x443b0249, 0x00000000}},  //   huda_, _iosi, mdq_,\n  { {0x44390038, 0x7c221994, 0x290c20b9, 0x00000000}},  //   _has_, _abor, kuda_,\n  { {0x44392e3a, 0x645d0235, 0x290c006c, 0x00000000}},  //   _kas_, _kosi, juda_,\n  { {0x6285002b, 0x44391cc4, 0x645d0209, 0x00000000}},  //   liho, _jas_, _josi,\n  { {0x443900d6, 0x99850224, 0x645d00b4, 0x00000000}},  //   _mas_, telů_, _mosi,\n  { {0x44391718, 0xc33201f8, 0x78a401bf, 0x00000000}},  //   _las_, נוי_, _skiv,\n  { {0x6d41010f, 0x290c0129, 0x60c92e3b, 0x00000000}},  //   _urla, guda_, _kiem,\n  { {0x60c90006, 0x6285044e, 0xac190900, 0x00000000}},  //   _jiem, hiho, _ходу_,\n  { {0x60c90219, 0x62851658, 0x38b20010, 0x00000000}},  //   _miem, kiho, gára_,\n  { {0x78660219, 0x7c220465, 0x60c9002b, 0x00000000}},  //   _móvi, _zbor, _liem,\n  { {0x44392e3c, 0x645d018e, 0x290c0095, 0x00000000}},  //   _bas_, _bosi, cuda_,\n  { {0x7c3b2e3d, 0x60c90046, 0x44390bdb, 0x00000000}},  //   ndur, _niem, _cas_,\n  { {0x44392e3e, 0x645d0027, 0x7c39018e, 0x00000000}},  // [8ca0] _das_, _dosi, _mawr,\n  { {0xa79b01f8, 0x6aa1018e, 0xae0e03d7, 0x00000000}},  //   _משפח, nolf, _साइन_,\n  { {0x26d2000b, 0x443901aa, 0x4422023a, 0x00000000}},  //   _huyo_, _fas_, _tbk_,\n  { {0x60c909a4, 0x61e30279, 0x645d01a3, 0x00000000}},  //   _ciem, ınla, _gosi,\n  { {0x60c90089, 0xe818013d, 0x765e1aa0, 0x00000000}},  //   _diem, _थाना_, _kopy,\n  { {0x44201263, 0x44392893, 0x7c2200b9, 0x00000000}},  //   lfi_, _zas_, _sbor,\n  { {0x44200026, 0x26d20058, 0x443915df, 0x00000000}},  //   ofi_, _luyo_, _yas_,\n  { {0x8fa601fb, 0x4420006b, 0x290c016c, 0x00000000}},  //   _забе, nfi_, vuda_,\n  { {0xddcf00b9, 0x7c39002b, 0x4420005b, 0x00000000}},  //   řešn, _dawr, ifi_,\n  { {0x60c92e3f, 0x290c006c, 0x7c3b186c, 0x00000000}},  //   _ziem, tuda_, adur,\n  { {0x7c220009, 0x7c390016, 0x27f2000a, 0x00000000}},  //   _tbor, _fawr, _beyn_,\n  { {0x290c2c40, 0x7c22178c, 0x38b210fa, 0x00000000}},  //   ruda_, _ubor, tára_,\n  { {0x44392e40, 0x645d001a, 0x26d20211, 0x00000000}},  //   _ras_, _rosi, _cuyo_,\n  { {0x765e0038, 0x44392c1f, 0xb9060044, 0x00000000}},  //   _copy, _sas_, _পি_,\n  { {0x44390a8d, 0xe80a001c, 0x44200016, 0x00000000}},  //   _pas_, _वाचा_, ffi_,\n  { {0x44390066, 0x68fa2e41, 0x00000000, 0x00000000}},  //   _qas_, mstd,   ,\n  { {0x443901d9, 0xe4ed013d, 0x60c91015, 0x00000000}},  // [8cb0] _vas_, _जबकि_, _riem,\n  { {0x44390a8a, 0x60c90219, 0x69da001a, 0x00000000}},  //   _was_, _siem, ncte,\n  { {0x44392e42, 0x60c92e43, 0x645d021e, 0x00000000}},  //   _tas_, _piem, _tosi,\n  { {0x44392a9b, 0x81e90044, 0x628503b6, 0x00000000}},  //   _uas_, _যাও_, siho,\n  { {0x6e3a1794, 0x6285050f, 0x60c91747, 0x00000000}},  //   _batb, piho, _viem,\n  { {0x6e3a01d6, 0x68fa00ea, 0x60c90036, 0x00000000}},  //   _catb, kstd, _wiem,\n  { {0x60c90219, 0x6e3a018e, 0x6aa10026, 0x00000000}},  //   _tiem, _datb, volf,\n  { {0xdd8e0054, 0x20d7005a, 0x6aa101d6, 0x00000000}},  //   توى_, _içi_, wolf,\n  { {0x7c3b12fc, 0xaed50088, 0x7cd10089, 0x00000000}},  //   rdur, _розш, _māri,\n  { {0x39452e44, 0x6a86009d, 0x7c3b194f, 0x00000000}},  //   вног, _réfè, sdur,\n  { {0x44202e45, 0x26d22e46, 0x6aa10146, 0x00000000}},  //   yfi_, _suyo_, rolf,\n  { {0xcc140431, 0x26d20058, 0x765e0022, 0x00000000}},  //   _مذهب, _puyo_, _sopy,\n  { {0x6c7a0049, 0x2cbf010e, 0x00000000, 0x00000000}},  //   _קאנפ, mmud_,   ,\n  { {0x2cad0038, 0x7afb2e47, 0x2cbf0695, 0x00000000}},  //   lled_, msut, lmud_,\n  { {0x4420002b, 0x7afb074d, 0x00000000, 0x00000000}},  //   tfi_, lsut,   ,\n  { {0xb4ac01f5, 0x26d20dfb, 0x64be007d, 0x00000000}},  //   गते_, _tuyo_, ्देश,\n  { {0xe3630264, 0x4420009f, 0x7afb1d43, 0x00000000}},  // [8cc0] акти, rfi_, nsut,\n  { {0x2cad0224, 0x2cbf200f, 0x09c50044, 0x00000000}},  //   hled_, hmud_, _শ্যা,\n  { {0xa3ea041f, 0x6e3a01f3, 0xf48700a1, 0x00000000}},  //   _одна_, _ratb, راہی,\n  { {0x7afb0103, 0x2482023a, 0x6e3a00d9, 0x00000000}},  //   ksut, _umkm_, _satb,\n  { {0x44fe010a, 0x2cad0016, 0xe3b202fd, 0x00000000}},  //   lį_, dled_, _خرد_,\n  { {0x2cad002b, 0x24920832, 0x3860009d, 0x00000000}},  //   eled_, lnym_, _loir_,\n  { {0x44fe010a, 0x2cad1ad0, 0x6e3a0328, 0x00000000}},  //   nį_, fled_, _vatb,\n  { {0x2cad0f3a, 0x386000f4, 0x24922e48, 0x00000000}},  //   gled_, _noir_, nnym_,\n  { {0x1fa70088, 0x38b90010, 0xcc330025, 0x00000000}},  //   _акти_, nére_, شريع,\n  { {0x44fe0006, 0xf8ca0082, 0x2ca601d6, 0x00000000}},  //   kį_, _mẩu_, _wkod_,\n  { {0xd6e20055, 0x2cad00ab, 0xf8ca0082, 0x00000000}},  //   _বিষয, bled_, _lẩu_,\n  { {0x68fa054e, 0xb4ac0061, 0x24920036, 0x00000000}},  //   rstd, गतो_, jnym_,\n  { {0xf8bf00f4, 0x7f420f57, 0x24920832, 0x00000000}},  //   rmé_, nvoq, dnym_,\n  { {0x7aed0279, 0x7f422e49, 0xb7e3006e, 0x00000000}},  //   _çata, ivoq, _क्रम_,\n  { {0x7cd10089, 0x387202e1, 0x758801ab, 0x00000000}},  //   _pāri, _flyr_, вств_,\n  { {0x4815017f, 0x3a3c0022, 0x2b4600d2, 0x00000000}},  //   _смис, _havp_, _kroc_,\n  { {0xf8ca0082, 0x38b90010, 0x00000000, 0x00000000}},  // [8cd0] _cẩu_, gére_,   ,\n  { {0x7afd2e4a, 0x7ae2000b, 0x291e095f, 0x00000000}},  //   ásti, _mtot, otta_,\n  { {0xdfd10054, 0x2cad0ca4, 0xc1a400e2, 0x00000000}},  //   ميا_, yled_, ајци,\n  { {0x7ae22c38, 0x249214a6, 0x00000000, 0x00000000}},  //   _otot, cnym_,   ,\n  { {0x2489007f, 0x9ac4002b, 0x2cad0146, 0x00000000}},  //   miam_, _kaċċ, vled_,\n  { {0x24890c6e, 0x6b8d11cb, 0x9ac4002b, 0x00000000}},  //   liam_, _žago, _jaċċ,\n  { {0x2cad2179, 0xc21200b6, 0x261b0204, 0x00000000}},  //   tled_, _להם_, _बानी_,\n  { {0x39491e90, 0x24890dc6, 0x7afb0ac2, 0x00000000}},  //   _čas_, niam_, tsut,\n  { {0x2cad0186, 0x291e0625, 0x7c3101ee, 0x00000000}},  //   rled_, etta_, _čerč,\n  { {0x386000f4, 0x7afb2e4b, 0x60d509fc, 0x00000000}},  //   _soir_, rsut, _kuzm,\n  { {0x7afb05ad, 0xe73c011f, 0x24890006, 0x00000000}},  //   ssut, _küçü, kiam_,\n  { {0x7c84005e, 0x2369014a, 0x66e6007c, 0x00000000}},  //   _куче, kyaj_, лома,\n  { {0x3860028c, 0x7e61002d, 0x24892e4c, 0x00000000}},  //   _voir_, _kolp, diam_,\n  { {0x644f032c, 0x24920036, 0x44fe0006, 0x00000000}},  //   _anci, wnym_, tį_,\n  { {0x24920871, 0x062600a1, 0x24892e4d, 0x00000000}},  //   tnym_, نےکی_, fiam_,\n  { {0x38b90047, 0x44fe0006, 0x24890914, 0x00000000}},  //   tére_, rį_, giam_,\n  { {0x24920871, 0x44fe0006, 0x9ac40066, 0x00000000}},  // [8ce0] rnym_, sį_, _faċċ,\n  { {0xe7470fb3, 0x24920024, 0x44fe0006, 0x00000000}},  //   ções_, snym_, pį_,\n  { {0x38b90047, 0x600a2e4e, 0x24892e4f, 0x00000000}},  //   sére_, енем_, biam_,\n  { {0x24890e04, 0xd00f0025, 0xf8ca0082, 0x00000000}},  //   ciam_, كلم_, _tẩu_,\n  { {0x443201a3, 0x7e611ecd, 0x7cd10089, 0x00000000}},  //   mey_, _bolp, _māru,\n  { {0x7e610207, 0x443200ab, 0x291e2e50, 0x00000000}},  //   _colp, ley_, ytta_,\n  { {0x7ae2179b, 0x60d5008e, 0xad260151, 0x00000000}},  //   _stot, _guzm, ارتو,\n  { {0x2b460bd7, 0x44320038, 0x8c3d0035, 0x00000000}},  //   _proc_, ney_, toşa,\n  { {0x2e160070, 0x33200066, 0xeb97003b, 0x00000000}},  //   _مباح, ntix_, лић_,\n  { {0xc33300b6, 0x27e000f4, 0x7e610489, 0x00000000}},  //   צות_, _afin_, _golp,\n  { {0x44320101, 0xc27b0049, 0x291e00b0, 0x00000000}},  //   key_, גריי, utta_,\n  { {0x7cd1001e, 0x291e00b0, 0x2b46009d, 0x00000000}},  //   _pārv, rtta_, _troc_,\n  { {0x24890181, 0x44320145, 0x39470007, 0x00000000}},  //   viam_, dey_, _erns_,\n  { {0xbb3b007b, 0x24890046, 0x7ead0142, 0x00000000}},  //   _רעגי, wiam_, túpi,\n  { {0x443201e5, 0xceb300a3, 0x27e00016, 0x00000000}},  //   fey_, מיש_, _ffin_,\n  { {0x443200df, 0x3320002b, 0x00000000, 0x00000000}},  //   gey_, ftix_,   ,\n  { {0x24890181, 0xf77302fd, 0xe3b00025, 0x00000000}},  // [8cf0] riam_, _داغ_, كرك_,\n  { {0x6d482ad3, 0x7cd1001e, 0x200401f3, 0x00000000}},  //   _orda, _kārt, _admi_,\n  { {0x7e610007, 0x6601000c, 0x4fd5007c, 0x00000000}},  //   _rolp, ólku, ажет,\n  { {0x644f0197, 0x60c20058, 0x7cd10089, 0x00000000}},  //   _unci, gmom, _mārt,\n  { {0x6d48018e, 0x64db001c, 0x61f50180, 0x00000000}},  //   _arda, _मंडळ, _tezl,\n  { {0x26dc007b, 0x8d650404, 0x20040173, 0x00000000}},  //   עקומ, ивле, _edmi_,\n  { {0xed590057, 0xbdf80076, 0x7e610197, 0x00000000}},  //   той_, ارها_, _volp,\n  { {0xf0bb025a, 0x7e6100e0, 0x672d0ed9, 0x00000000}},  //   _سازش_, _wolp, _opaj,\n  { {0x6d480569, 0x290c0211, 0x29180009, 0x00000000}},  //   _erda, erda_, àran_,\n  { {0x4432005a, 0xa925007e, 0x38960089, 0x00000000}},  //   zey_, адол, tāro_,\n  { {0x3ea7002b, 0xf9910054, 0x00000000, 0x00000000}},  //   mont_, تبة_,   ,\n  { {0x18a60057, 0x92a60036, 0xf746007c, 0x00000000}},  //   рамм, _załą, аемо,\n  { {0x44320007, 0xbca4023c, 0xa3d9007d, 0x00000000}},  //   vey_, _امني, ाशन_,\n  { {0x4b7a007b, 0x44320e9e, 0xddc10089, 0x00000000}},  //   _באנו, wey_, _nolū,\n  { {0x44320173, 0x33f604b6, 0xc6c3007e, 0x00000000}},  //   tey_, ичас, ійск,\n  { {0x33202ab8, 0xfe7900b9, 0xd91a01ce, 0x00000000}},  //   ttix_, _stůl_, _סופל,\n  { {0x7ae92e51, 0x3ea701aa, 0x44322bbf, 0x00000000}},  // [8d00] npet, kont_, rey_,\n  { {0x14b80061, 0xf2df0011, 0x38b900f4, 0x00000000}},  //   _आठवण, _trân_, méra_,\n  { {0x33200066, 0x7f49008e, 0xd10d0061, 0x00000000}},  //   stix_, _areq, ांगण_,\n  { {0x03a601fb, 0x04462e52, 0xe61200a2, 0x00000000}},  //   _вимо, _темн, _اشک_,\n  { {0x3ea72e53, 0x6d480091, 0x7d010190, 0x00000000}},  //   font_, _srda, _avls,\n  { {0x60c200eb, 0x7f490023, 0x00000000, 0x00000000}},  //   smom, _dreq,   ,\n  { {0x80c60061, 0x2056007e, 0x00000000, 0x00000000}},  //   िषदे, _ктар,   ,\n  { {0xa06700d7, 0x6d48012d, 0x9c7c000a, 0x00000000}},  //   _каса_, _vrda, _etčn,\n  { {0x7f49008d, 0xa0670517, 0x3ea7005b, 0x00000000}},  //   _greq, _тата_, bont_,\n  { {0x7cd1001e, 0x3ea70035, 0x00000000, 0x00000000}},  //   _pārt, cont_,   ,\n  { {0x672d0209, 0xfce30264, 0x6d48002d, 0x00000000}},  //   _spaj, _дохо, _urda,\n  { {0x7cd10089, 0x00000000, 0x00000000, 0x00000000}},  //   _vārt,   ,   ,\n  { {0x6280010a, 0xb7142e54, 0xab83003b, 0x00000000}},  //   _įmon, одящ, _мушк,\n  { {0xb882000c, 0x00000000, 0x00000000, 0x00000000}},  //   _þína,   ,   ,\n  { {0x2abb0097, 0xa5f81585, 0x3abb0104, 0x00000000}},  //   _שמוא, ресу_, _שמונ,\n  { {0xb867025a, 0x57f5003b, 0x657a0045, 0x00000000}},  //   _خاتو, _упит, ùtha,\n  { {0x672d00ca, 0x00000000, 0x00000000, 0x00000000}},  // [8d10] _upaj,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xc5f200b6, 0x00000000, 0x00000000, 0x00000000}},  //   _מדי_,   ,   ,\n  { {0x75360049, 0x6aa8005b, 0x00000000, 0x00000000}},  //   _פארד_, hodf,   ,\n  { {0xc8d0001c, 0x442b00c4, 0x3ea71b8a, 0x00000000}},  //   _संघट, _ibc_, tont_,\n  { {0x14b50061, 0x00000000, 0x00000000, 0x00000000}},  //   ंतवण,   ,   ,\n  { {0x3ea7028c, 0x5d33026c, 0x1ee700a1, 0x00000000}},  //   ront_, تہائ, _چوری_,\n  { {0x7f490617, 0x1ee702fd, 0x00000000, 0x00000000}},  //   _treq, _نوری_,   ,\n  { {0x7cd1001e, 0x3ea70010, 0x442b01a3, 0x00000000}},  //   _pārs, pont_, _mbc_,\n  { {0xfc3f01c8, 0x7ae90211, 0x7aed006b, 0x00000000}},  //   ží_, rpet, _çatm,\n  { {0x7ae90198, 0x186a0920, 0x81a90055, 0x00000000}},  //   spet, гани_, খের_,\n  { {0x442b0133, 0x7ae9051b, 0x31560049, 0x00000000}},  //   _nbc_, ppet, צירן_,\n  { {0x3b0900d7, 0x00000000, 0x00000000, 0x00000000}},  //   _село_,   ,   ,\n  { {0x442b2146, 0x78ad0107, 0x00000000, 0x00000000}},  //   _abc_, _ekav,   ,\n  { {0xceb201f8, 0xd9c50044, 0xd5b20426, 0x00000000}},  //   פיל_, _শ্রম, سفر_,\n  { {0x442b0011, 0x28d00316, 0x475a005e, 0x00000000}},  //   _cbc_, _सूचि, _броя_,\n  { {0x04570025, 0x442b00bb, 0x00000000, 0x00000000}},  // [8d20] حلقة_, _dbc_,   ,\n  { {0x442b00fa, 0x6f040027, 0x975b0049, 0x00000000}},  //   _ebc_, šick, _עדיט,\n  { {0x442b2bd4, 0x236d002b, 0x64a6007e, 0x00000000}},  //   _fbc_, _żejt_, _гана,\n  { {0x7c2b0009, 0x442b0145, 0xd91a0049, 0x00000000}},  //   _nbgr, _gbc_, טועל,\n  { {0xb4c4013d, 0x00000000, 0x00000000, 0x00000000}},  //   एगी_,   ,   ,\n  { {0xbea30517, 0x7c2b01a2, 0x644401c5, 0x00000000}},  //   пачк, _abgr, ldii,\n  { {0x3ebe0082, 0xafe6004d, 0x7c2b0022, 0x00000000}},  //   _vhtt_, _гобл, _bbgr,\n  { {0x6444010e, 0x61fe0095, 0x7a210173, 0x00000000}},  //   ndii, lapl, _lňtč,\n  { {0x9e6500a1, 0x7cd10089, 0x3e79009d, 0x00000000}},  //   _ڈالن, _pārr, _sète_,\n  { {0x9e650025, 0xc33300b6, 0x78ad2e55, 0x00000000}},  //   _والن, לוח_, _skav,\n  { {0x6f0200f8, 0x00000000, 0x00000000, 0x00000000}},  //   lsoc,   ,   ,\n  { {0xc19b007b, 0x13b00055, 0x2db70049, 0x00000000}},  //   רשטי, চেয়, _פלאן_,\n  { {0x61fe01b6, 0x6f0200ea, 0xfaa6007c, 0x00000000}},  //   kapl, nsoc, _ладо,\n  { {0x442b00c4, 0xeb070025, 0x00000000, 0x00000000}},  //   _sbc_, _اقوى_,   ,\n  { {0xd49b00ed, 0x442b0145, 0xe5c4005e, 0x00000000}},  //   гра_, _pbc_, зсто,\n  { {0xb4b3024c, 0x38b900f4, 0x629c0065, 0x00000000}},  //   टते_, méro_, _ajro,\n  { {0xf2df0082, 0x00000000, 0x00000000, 0x00000000}},  // [8d30] _trâm_,   ,   ,\n  { {0x61fe001c, 0x6f0200f8, 0x51f800a5, 0x00000000}},  //   gapl, dsoc, йную_,\n  { {0x5559004d, 0x3e6b00ea, 0x00000000, 0x00000000}},  //   _таня_, _møtt_,   ,\n  { {0xdd000224, 0x68e40062, 0x00000000, 0x00000000}},  //   štěn, _čidl,   ,\n  { {0xd34100a1, 0x4429005b, 0x6f020606, 0x00000000}},  //   _تہذی, mfa_, gsoc,\n  { {0x4429056d, 0x999e0047, 0x2c1b0316, 0x00000000}},  //   lfa_, hető_, _याहू_,\n  { {0x44290051, 0x6cc52e56, 0x00000000, 0x00000000}},  //   ofa_, ойка,   ,\n  { {0x44290016, 0x26d30181, 0x00000000, 0x00000000}},  //   nfa_, _lixo_,   ,\n  { {0x290a0047, 0x442929fc, 0xeb99034b, 0x00000000}},  //   ában_, ifa_, рип_,\n  { {0x090501fb, 0x4429005b, 0x00000000, 0x00000000}},  //   опон, hfa_,   ,\n  { {0xdd9b041f, 0xa3d90164, 0x38960089, 0x00000000}},  //   _сша_, ाशा_, lāri_,\n  { {0xc5e9019b, 0x44290846, 0x26d300d4, 0x00000000}},  //   _יד_, jfa_, _aixo_,\n  { {0x7c29000c, 0x4429018e, 0x27ff000c, 0x00000000}},  //   mfer, dfa_, ðuna_,\n  { {0x44292e57, 0x2243012d, 0x00000000, 0x00000000}},  //   efa_, _najk_,   ,\n  { {0x61fe011f, 0x26d3004a, 0x261b00e8, 0x00000000}},  //   vapl, _dixo_, _बारी_,\n  { {0x26d31ce5, 0x7416023c, 0x4429005b, 0x00000000}},  //   _eixo_, تورا, gfa_,\n  { {0x61fe0c98, 0x26d30181, 0xc2e90025, 0x00000000}},  // [8d40] tapl, _fixo_, معلم_,\n  { {0x44290093, 0x41b62d9a, 0x7ce70095, 0x00000000}},  //   afa_, осет, _kırd,\n  { {0x27240b90, 0x61fe0095, 0x7c2900ea, 0x00000000}},  //   lön_, rapl, kfer,\n  { {0x5ee10055, 0x7c2900b5, 0x61fe014a, 0x00000000}},  //   _নিজে, jfer, sapl,\n  { {0xaf360076, 0xd00f0076, 0x7c29005b, 0x00000000}},  //   ترات, ئله_, dfer,\n  { {0x999e0010, 0x6f02074e, 0x7c29010f, 0x00000000}},  //   zető_, rsoc, efer,\n  { {0x7c291d23, 0x27240444, 0x7cd10089, 0x00000000}},  //   ffer, hön_, _pārp,\n  { {0x61fc0286, 0x60c00058, 0x61e90521, 0x00000000}},  //   _herl, _uhmm, _đeli,\n  { {0x272418ee, 0x61fc104b, 0x60dc19ae, 0x00000000}},  //   jön_, _kerl, _hurm,\n  { {0x60dc014a, 0x5ee10044, 0x7c290035, 0x00000000}},  //   _kurm, _নিচে, afer,\n  { {0x4429011f, 0x60dc109c, 0x00000000, 0x00000000}},  //   yfa_, _jurm,   ,\n  { {0xab2a00e3, 0x60dc00ea, 0xd6e20044, 0x00000000}},  //   _вода_, _murm, _বিজয,\n  { {0xd90e089d, 0xa09b007b, 0xaa462e58, 0x00000000}},  //   ریک_, שיכט, _медл,\n  { {0x61fc00f8, 0xee2e013a, 0x00000000, 0x00000000}},  //   _nerl, енi_,   ,\n  { {0x7e681071, 0x4429002b, 0x60dc00b0, 0x00000000}},  //   _modp, tfa_, _nurm,\n  { {0xd5b8132a, 0x44290173, 0x61fc0048, 0x00000000}},  //   юся_, ufa_, _aerl,\n  { {0x61fc033b, 0x44292e59, 0xb275064b, 0x00000000}},  // [8d50] _berl, rfa_, плаш,\n  { {0x4eac0055, 0x4429098d, 0x656e0010, 0x00000000}},  //   গগুল, sfa_, ínhá,\n  { {0x44290009, 0x2fd90025, 0x61fc1109, 0x00000000}},  //   pfa_, مواد_, _derl,\n  { {0x60dc2e5a, 0x61fc01b5, 0x7e7a2e5b, 0x00000000}},  //   _durm, _eerl, _altp,\n  { {0x61fc000c, 0x66c00039, 0x38690146, 0x00000000}},  //   _ferl, söke, _moar_,\n  { {0x61fc1257, 0x60dc0253, 0x7aed2e5c, 0x00000000}},  //   _gerl, _furm, _çati,\n  { {0xc694007b, 0xf3ff02d5, 0x7c29010f, 0x00000000}},  //   ואס_, _joão_, tfer,\n  { {0x61e50016, 0x272400b0, 0x61fc01a2, 0x00000000}},  //   lchl, yön_, _zerl,\n  { {0x7c2903d0, 0x61fc038c, 0x5f9401fb, 0x00000000}},  //   rfer, _yerl, _житт,\n  { {0x61e50048, 0x7e6801c5, 0x62800006, 0x00000000}},  //   nchl, _godp, _įmok,\n  { {0x7c2905e9, 0x61e50678, 0x00000000, 0x00000000}},  //   pfer, ichl,   ,\n  { {0x6d41020c, 0x201d01d5, 0x7e6806b8, 0x00000000}},  //   _isla, ngwi_, _zodp,\n  { {0xacaa009c, 0x3869000d, 0x31b80164, 0x00000000}},  //   _اپنے_, _doar_, _अर्ध,\n  { {0x2cad01bb, 0xbb420849, 0x76450093, 0x00000000}},  //   loed_, _чешк, _cahy,\n  { {0x27240ae4, 0xa9790049, 0x00000000, 0x00000000}},  //   sön_, _לאַכ,   ,\n  { {0x61fc02e2, 0x2cad0016, 0x07a601e1, 0x00000000}},  //   _serl, noed_, _найн,\n  { {0x61fc020c, 0xd467026b, 0x60dc006c, 0x00000000}},  // [8d60] _perl, чите_, _surm,\n  { {0x6d410161, 0x2cad0abb, 0x60dc063f, 0x00000000}},  //   _osla, hoed_, _purm,\n  { {0x61fc037f, 0xd5b0026c, 0x29050039, 0x00000000}},  //   _verl, _شہر_, nsla_,\n  { {0xb4d802f4, 0x6d5c0009, 0x60dc0279, 0x00000000}},  //   ादी_, _àrai, _vurm,\n  { {0x7e680387, 0x61fc0149, 0x6d41005d, 0x00000000}},  //   _podp, _terl, _asla,\n  { {0x6446005f, 0x60dc0181, 0x29050089, 0x00000000}},  //   _haki, _turm, ksla_,\n  { {0xdb070428, 0x628e0412, 0x644601a3, 0x00000000}},  //   _člán, _imbo, _kaki,\n  { {0x64462e5d, 0xc19b009b, 0x2cad01b5, 0x00000000}},  //   _jaki, _השלי, goed_,\n  { {0x6446066d, 0x6d410b32, 0x386900ea, 0x00000000}},  //   _maki, _esla, _roar_,\n  { {0x6446000b, 0x3a0600a1, 0x9d46279d, 0x00000000}},  //   _laki, سکتی_, _незд,\n  { {0xef1f01d5, 0x442200f8, 0x29050635, 0x00000000}},  //   ħżen_, _ock_, gsla_,\n  { {0x6446006a, 0x3eae01e5, 0x44220ebd, 0x00000000}},  //   _naki, loft_, _nck_,\n  { {0x61e52e5e, 0x24800065, 0x628e0039, 0x00000000}},  //   ychl, dhim_, _ombo,\n  { {0x4422141b, 0x2c7100b9, 0x64462e5f, 0x00000000}},  //   _ack_, _rádi_, _aaki,\n  { {0x6446006a, 0x76470030, 0x6d410026, 0x00000000}},  //   _baki, rdjy, _xsla,\n  { {0x628e0489, 0xa8a4008b, 0x76450169, 0x00000000}},  //   _ambo, _прык, _wahy,\n  { {0x644615f0, 0x320101dc, 0x27e9005b, 0x00000000}},  // [8d70] _daki, tahy_, _ifan_,\n  { {0x8234035b, 0x44221440, 0xdbf2013e, 0x00000000}},  //   فرما, _eck_, dříz,\n  { {0x7c222697, 0x44220030, 0x2509007a, 0x00000000}},  //   _ocor, _fck_, _برخی_,\n  { {0x61e5001f, 0x628e0576, 0xdfd10b59, 0x00000000}},  //   schl, _embo, نيا_,\n  { {0x2cad0116, 0x6d41012d, 0x00000000, 0x00000000}},  //   voed_, _ssla,   ,\n  { {0x7c220e98, 0x64462e60, 0xed59072b, 0x00000000}},  //   _acor, _zaki, жок_,\n  { {0xdd91026c, 0x644601a3, 0x27e9000c, 0x00000000}},  //   کوں_, _yaki, _ofan_,\n  { {0xe81f02fb, 0x98720089, 0x14bf007d, 0x00000000}},  //   _भाषा_, kšā_, ्षिण,\n  { {0x200d2e61, 0x1c420783, 0x2cad005b, 0x00000000}},  //   _idei_, тным, roed_,\n  { {0xbdf8025a, 0x6f090387, 0x7c2204d2, 0x00000000}},  //   _فرما_, _ivec, _ecor,\n  { {0x19c51734, 0xa969005e, 0x3896001e, 0x00000000}},  //   ьбом, цина_, kārt_,\n  { {0x162003d7, 0x2905021a, 0x7d1c01e3, 0x00000000}},  //   _बाहर_, rsla_, _årsa,\n  { {0xac180077, 0x7c3b00f4, 0x6446069b, 0x00000000}},  //   _хочу_, meur, _raki,\n  { {0x6446110b, 0x7c3b00f4, 0x00000000, 0x00000000}},  //   _saki, leur,   ,\n  { {0xceb201f8, 0x6446066d, 0x248003e7, 0x00000000}},  //   דים_, _paki, thim_,\n  { {0x7c3b00f4, 0x38960089, 0x6f090253, 0x00000000}},  //   neur, tāru_, _ovec,\n  { {0x64462e62, 0x2b4d0087, 0x628e003d, 0x00000000}},  // [8d80] _vaki, nvec_, _pmbo,\n  { {0x64462e63, 0x2480008d, 0x7c3b03a4, 0x00000000}},  //   _waki, shim_, heur,\n  { {0x64460046, 0x7c3b0250, 0x6f09008e, 0x00000000}},  //   _taki, keur, _avec,\n  { {0x7c3b009d, 0x44220023, 0xa9270062, 0x00000000}},  //   jeur, _uck_, _zaží,\n  { {0x9c7c0182, 0x1eaa0025, 0x6f090521, 0x00000000}},  //   _juče, ياتي_, _cvec,\n  { {0x7c2219eb, 0x44202e64, 0x628e2e65, 0x00000000}},  //   _scor, lgi_, _umbo,\n  { {0x7c3b1de2, 0x44202e66, 0x38960089, 0x00000000}},  //   feur, ogi_, nārs_,\n  { {0x442016c3, 0x7c3b00f4, 0x547b0049, 0x00000000}},  //   ngi_, geur, ַטיו,\n  { {0x44202e67, 0xcf4602dc, 0x27e90022, 0x00000000}},  //   igi_, _юнай, _rfan_,\n  { {0xf2df0035, 0x00000000, 0x00000000, 0x00000000}},  //   _grâu_,   ,   ,\n  { {0x7c3b049b, 0x02170104, 0x1958007e, 0x00000000}},  //   beur, וחים_, чаны_,\n  { {0x3eb90089, 0x7c3b009d, 0x00000000, 0x00000000}},  //   _īsti_, ceur,   ,\n  { {0x3f862e68, 0xab9a0070, 0x00000000, 0x00000000}},  //   nzou_, _بخار_,   ,\n  { {0xf98f089d, 0x64830004, 0xddda0224, 0x00000000}},  //   ابی_, _kõig, _potř,\n  { {0x08f70647, 0x7ce7014a, 0x443b0a89, 0x00000000}},  //   _قريب_, _kıra, teq_,\n  { {0x442005d3, 0x261b0309, 0x629e0052, 0x00000000}},  //   ggi_, _बाकी_, enpo,\n  { {0x439403f3, 0x66c00073, 0x6483006c, 0x00000000}},  // [8d90] ватс, söka, _lõig,\n  { {0x629e243c, 0x33290066, 0xa3ce0164, 0x00000000}},  //   gnpo, rtax_, षेध_,\n  { {0x332901d5, 0x2eed01d6, 0x7c3b0923, 0x00000000}},  //   stax_, _stef_, yeur,\n  { {0x8c3d001a, 0xf8ca0082, 0x629e00e7, 0x00000000}},  //   noşt, _bẩy_, anpo,\n  { {0xb4bd03d7, 0x7c3b2e69, 0xa3b6007d, 0x00000000}},  //   ेगी_, veur, _चुप_,\n  { {0x171c0049, 0x00000000, 0x00000000, 0x00000000}},  //   קווע,   ,   ,\n  { {0x7ce7011f, 0x7c3b032c, 0x7bc20e6d, 0x00000000}},  //   _bıra, teur, _azou,\n  { {0x0b4500da, 0x7c94007e, 0x88bd00b9, 0x00000000}},  //   енин, крыц, stěj,\n  { {0x6f090521, 0x7c3b00f4, 0xf2df0011, 0x00000000}},  //   _uvec, reur, _trâu_,\n  { {0x7c3b110a, 0xdb0e0051, 0xaa4500ed, 0x00000000}},  //   seur, ádál, хеол,\n  { {0x64db0061, 0x49990a1e, 0x7c3b009d, 0x00000000}},  //   _मंगळ, ятия_, peur,\n  { {0x9c7c00d0, 0x00000000, 0x00000000, 0x00000000}},  //   _puče,   ,   ,\n  { {0x4420005d, 0xd5b80089, 0xf8ca0082, 0x00000000}},  //   vgi_, ļām_, _xẩy_,\n  { {0x9c7c11af, 0x389601c5, 0x00000000, 0x00000000}},  //   _vuče, tārs_,   ,\n  { {0x44202e6a, 0x81e50044, 0x3f861575, 0x00000000}},  //   tgi_, নরা_, zzou_,\n  { {0x0443003b, 0x69c30119, 0x44202e6b, 0x00000000}},  //   лесн, _izne, ugi_,\n  { {0x44202e6c, 0x22160745, 0xb89b009b, 0x00000000}},  // [8da0] rgi_, ефер, _מבקש,\n  { {0x442010fd, 0xc7d7009b, 0x63790088, 0x00000000}},  //   sgi_, _אופי_, єстр_,\n  { {0x7cd1001e, 0x66c000b0, 0x44200056, 0x00000000}},  //   _dārz, löko, pgi_,\n  { {0x5f06003b, 0xfbc70d0b, 0x44fe00b9, 0x00000000}},  //   езда, _مت_, mů_,\n  { {0x08e60055, 0xddc80036, 0x44fe00b9, 0x00000000}},  //   _কিছু_, łoże, lů_,\n  { {0x7ce7047f, 0x78a40087, 0xf8ca0082, 0x00000000}},  //   _sıra, _ljiv, _vẩy_,\n  { {0x44fe00b9, 0xddc10861, 0xc5f3009b, 0x00000000}},  //   nů_, _polš, נדה_,\n  { {0xf8ca0011, 0x26da0247, 0x315700b3, 0x00000000}},  //   _tẩy_, _lipo_, _אילן_,\n  { {0x8fa308fc, 0x44fe00b9, 0xddc1012d, 0x00000000}},  //   _бате, hů_, _volš,\n  { {0xdee30265, 0xd90e00a6, 0x44fe00b9, 0x00000000}},  //   _софи, میت_, ků_,\n  { {0x2d870046, 0x44fe00b9, 0xda210061, 0x00000000}},  //   czne_, jů_, _मारत_,\n  { {0x44fe00b9, 0x6fd6005d, 0xc2f60044, 0x00000000}},  //   dů_, _gücü, _চিনি_,\n  { {0x987406e7, 0xc6a70c96, 0x00000000, 0x00000000}},  //   уляц, ерви,   ,\n  { {0x66c02e6d, 0xba2a28b7, 0x00000000, 0x00000000}},  //   sökn, _رستم_,   ,\n  { {0x26da0022, 0x00000000, 0x00000000, 0x00000000}},  //   _dipo_,   ,   ,\n  { {0x291e0035, 0xf9690088, 0x00000000, 0x00000000}},  //   muta_, _юрій_,   ,\n  { {0x291e0207, 0x4814007c, 0xe3b303e6, 0x00000000}},  // [8db0] luta_, _смыс, ارز_,\n  { {0x979c00b6, 0x64830004, 0x7ae200b0, 0x00000000}},  //   _משחק, _sõid, _muot,\n  { {0x291e2e6e, 0xf1a70242, 0x7ae2021e, 0x00000000}},  //   nuta_, хран, _luot,\n  { {0x26da0020, 0xc0780088, 0xe0d000a1, 0x00000000}},  //   _zipo_, нсії_, مزن_,\n  { {0x54540b7b, 0x7ae20006, 0x645d130f, 0x00000000}},  //   _свят, _nuot, _insi,\n  { {0x291e0020, 0x644d1395, 0x88bd00b9, 0x00000000}},  //   kuta_, ldai, stěh,\n  { {0xd65801f8, 0x291e006c, 0xdea400a1, 0x00000000}},  //   תיות_, juta_, دیلی,\n  { {0x644d00f4, 0x291e01bc, 0x4c35007e, 0x00000000}},  //   ndai, duta_, тэкт,\n  { {0x7ae2201f, 0x5ba90152, 0x660700ca, 0x00000000}},  //   _cuot, ьким_, kajk,\n  { {0x291e000b, 0xc332009b, 0x7ae20006, 0x00000000}},  //   futa_, סוי_, _duot,\n  { {0x645d2e6f, 0x291e2e70, 0x60db0020, 0x00000000}},  //   _onsi, guta_, _kium,\n  { {0x26da0173, 0x44fe00b9, 0x9b9200a2, 0x00000000}},  //   _sipo_, vů_, الیت,\n  { {0x60c91a07, 0x644d0016, 0x26da05dd, 0x00000000}},  //   _mhem, ddai, _pipo_,\n  { {0x645d002a, 0x291e2e71, 0x09e21364, 0x00000000}},  //   _ansi, buta_, _кошн,\n  { {0xceb2012f, 0x291e001a, 0x69c309fc, 0x00000000}},  //   ייך_, cuta_, _uzne,\n  { {0x26da11d1, 0x44fe00b9, 0x9c7c050f, 0x00000000}},  //   _wipo_, rů_, _kuča,\n  { {0x44fe00b9, 0x6b8900d9, 0x00000000, 0x00000000}},  // [8dc0] sů_, nzeg,   ,\n  { {0x645d2e72, 0x644d0051, 0x6285002b, 0x00000000}},  //   _ensi, adai, ghho,\n  { {0x44e70011, 0x68e30181, 0xb60600ca, 0x00000000}},  //   _gõ_, _jund, rušč,\n  { {0xc2f60044, 0x60db2e73, 0x644d01da, 0x00000000}},  //   _চিঠি_, _cium, cdai,\n  { {0x1616001c, 0x68e32e74, 0x60db04bd, 0x00000000}},  //   _तयार_, _lund, _dium,\n  { {0x7ae22e75, 0x291e0ee8, 0x60c9010f, 0x00000000}},  //   _ruot, yuta_, _ehem,\n  { {0x60db0207, 0x6026005e, 0x569b0049, 0x00000000}},  //   _fium, _идва, ויסצ,\n  { {0x291e1425, 0x9c7c00ca, 0x60c92e76, 0x00000000}},  //   vuta_, _buča, _ghem,\n  { {0xeb97012b, 0x68e30d53, 0xcb070025, 0x00000000}},  //   кић_, _aund, نيين_,\n  { {0x291e022b, 0x7ae227a3, 0x68e32e77, 0x00000000}},  //   tuta_, _vuot, _bund,\n  { {0x2004008d, 0x644d018e, 0x68e3008e, 0x00000000}},  //   _kemi_, ydai, _cund,\n  { {0x7ae2021e, 0x2004008d, 0x44e7001d, 0x00000000}},  //   _tuot, _jemi_, _rõ_,\n  { {0x6b890046, 0x291e006c, 0x6d5c2e78, 0x00000000}},  //   czeg, suta_, _árab,\n  { {0x27e00756, 0xd9540d0b, 0x68e32e79, 0x00000000}},  //   _egin_, _منتخ, _fund,\n  { {0x44322e7a, 0x00000000, 0x00000000, 0x00000000}},  //   ffy_,   ,   ,\n  { {0x44e7001d, 0xab63002b, 0x20042050, 0x00000000}},  //   _võ_, żżej, _nemi_,\n  { {0x644d002a, 0x68e3007f, 0x60c92e7b, 0x00000000}},  // [8dd0] rdai, _zund, _rhem,\n  { {0x60c9008d, 0xf8bf0353, 0x6d4801c3, 0x00000000}},  //   _shem, llé_, _osda,\n  { {0x60db0197, 0x6b892e7c, 0x6483006c, 0x00000000}},  //   _pium, zzeg, _võib,\n  { {0x645d010f, 0x33200129, 0xcfe9023c, 0x00000000}},  //   _unsi, buix_, رفته_,\n  { {0x2004033b, 0x60db0020, 0xe8e00011, 0x00000000}},  //   _demi_, _vium, _ướt_,\n  { {0x9c7c0091, 0xf8bf05d2, 0x672d0066, 0x00000000}},  //   _ruča, hlé_, _mqaj,\n  { {0x60c903a1, 0x66050059, 0x2004108f, 0x00000000}},  //   _them, _mehk, _femi_,\n  { {0x68e302cc, 0x660500b9, 0x6b89002d, 0x00000000}},  //   _rund, _lehk, tzeg,\n  { {0xf8bf0062, 0x00000000, 0x00000000, 0x00000000}},  //   dlé_,   ,   ,\n  { {0x68e320bb, 0x6b890036, 0x20042e7d, 0x00000000}},  //   _pund, rzeg, _zemi_,\n  { {0x6b89108d, 0x7ce7014a, 0x20041baf, 0x00000000}},  //   szeg, _kırm, _yemi_,\n  { {0x9b450188, 0x68e32370, 0xf8bf009d, 0x00000000}},  //   _منصو, _vund, glé_,\n  { {0x68e3010f, 0x9cd600b6, 0xc7960783, 0x00000000}},  //   _wund, _עונה_, урны,\n  { {0x68e30004, 0x6d5c0051, 0x2cbf010e, 0x00000000}},  //   _tund, _árac, llud_,\n  { {0x68e32062, 0xc2240014, 0xf8bf009d, 0x00000000}},  //   _uund, یکسو, blé_,\n  { {0xf8bf009d, 0x9c7c013e, 0x03e20044, 0x00000000}},  //   clé_, _lučn, বর্ণ,\n  { {0x7413007a, 0x7ce7014a, 0x200401ed, 0x00000000}},  // [8de0] صولا, _sırl, _remi_,\n  { {0xe3b70088, 0x09d70044, 0x38b90010, 0x00000000}},  //   убу_, _দ্যা, sért_,\n  { {0x7a7a007b, 0xda7a0049, 0x7f49008e, 0x00000000}},  //   ערעס, ענער, _aseq,\n  { {0xdee6012b, 0x50ba0014, 0xc483005c, 0x00000000}},  //   годи, رداد_, _глюк,\n  { {0x3ae92e7e, 0x00000000, 0x00000000, 0x00000000}},  //   _núp_,   ,   ,\n  { {0x91e3005e, 0x7d1c0cf5, 0x69dc0089, 0x00000000}},  //   _горе, _årsk, žrei,\n  { {0x20042e7f, 0x7f490026, 0xf8bf2e80, 0x00000000}},  //   _temi_, _eseq, ylé_,\n  { {0x115b0049, 0x3ae90011, 0x5b140745, 0x00000000}},  //   _אדלע, _búp_, амит,\n  { {0x543b0049, 0x3ae90011, 0xc61c0044, 0x00000000}},  //   געפא, _cúp_, দ্যা_,\n  { {0x386001c3, 0xfce62e81, 0x00000000, 0x00000000}},  //   _anir_, _божо,   ,\n  { {0x09d70044, 0x02b70049, 0x8c26023c, 0x00000000}},  //   _দ্বা, רליך_, _مفاه,\n  { {0x290c2e82, 0x2cbf0035, 0xf8bf009d, 0x00000000}},  //   rsda_, clud_, ulé_,\n  { {0xf8bf00f4, 0x00000000, 0x00000000, 0x00000000}},  //   rlé_,   ,   ,\n  { {0x672f0009, 0xe45f0039, 0x3ea00048, 0x00000000}},  //   rtcj, _snö_, éith_,\n  { {0x45d500da, 0xf8bf2e83, 0x660501b1, 0x00000000}},  //   ровс, plé_, _vehk,\n  { {0x660500b5, 0x77930014, 0x672d0066, 0x00000000}},  //   _wehk, _هیجا, _tqaj,\n  { {0x660501c2, 0x00000000, 0x00000000, 0x00000000}},  // [8df0] _tehk,   ,   ,\n  { {0xa15901a4, 0xa1ab10f3, 0x00000000, 0x00000000}},  //   казу_, нтез_,   ,\n  { {0x9c7c1581, 0x7d1c03b1, 0xf77300a1, 0x00000000}},  //   _ručn, _årsh, _خاں_,\n  { {0xb4fa007b, 0x7ce7006b, 0x4035003b, 0x00000000}},  //   _שפרי, _qırm, редс,\n  { {0x44390197, 0x442b00e7, 0x24891ae9, 0x00000000}},  //   _ibs_, _icc_, mham_,\n  { {0x644f0219, 0x24890181, 0x4439033b, 0x00000000}},  //   _haci, lham_, _hbs_,\n  { {0x44392e84, 0x3ae90082, 0x644f266b, 0x00000000}},  //   _kbs_, _súp_, _kaci,\n  { {0xaf3406c6, 0x24890181, 0x44392e85, 0x00000000}},  //   _گرفت, nham_, _jbs_,\n  { {0x644f0036, 0xfd4c0011, 0x442b2e86, 0x00000000}},  //   _maci, _khiể, _mcc_,\n  { {0x644f04bd, 0x7f840025, 0x44390133, 0x00000000}},  //   _laci, _الكن, _lbs_,\n  { {0xf86617da, 0x4439003d, 0x442b004a, 0x00000000}},  //   авно, _obs_, _occ_,\n  { {0x442b00f8, 0x443925fa, 0x31e60044, 0x00000000}},  //   _ncc_, _nbs_, _পড়াশ,\n  { {0x66e60121, 0x9c7c0087, 0x24890133, 0x00000000}},  //   рога, _mučl, dham_,\n  { {0x4439010f, 0x442b0011, 0xe9a800a1, 0x00000000}},  //   _abs_, _acc_, ئدین_,\n  { {0x44390061, 0x644f0213, 0x442b0145, 0x00000000}},  //   _bbs_, _baci, _bcc_,\n  { {0x3d0803d7, 0x386006c2, 0x442b2e87, 0x00000000}},  //   _सबसे_, _unir_, _ccc_,\n  { {0x0206012b, 0x644f001a, 0xa206025f, 0x00000000}},  // [8e00] изан, _daci, ипад,\n  { {0xe1f70902, 0x442b0207, 0x5eaa0055, 0x00000000}},  //   игу_, _ecc_, _চীনে,\n  { {0x600a07ab, 0x3fe62337, 0x00000000, 0x00000000}},  //   внем_, ажев,   ,\n  { {0x24890036, 0x92e40044, 0x5f1701f5, 0x00000000}},  //   cham_, _নবী_, _निश्_,\n  { {0x24800f9f, 0x00000000, 0x00000000, 0x00000000}},  //   mkim_,   ,   ,\n  { {0x644f0871, 0x8c46006b, 0x975700b3, 0x00000000}},  //   _zaci, mişə, יינו_,\n  { {0x27f20016, 0x644f2e88, 0x44390093, 0x00000000}},  //   _ofyn_, _yaci, _ybs_,\n  { {0x2480007f, 0xc0e3007c, 0x443900d4, 0x00000000}},  //   nkim_, _фотк, _xbs_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xc333019b, 0x60c22e89, 0x25ad2e8a, 0x00000000}},  //   קות_, llom, şeli_,\n  { {0x2d960147, 0xfc66005e, 0xc27b01ce, 0x00000000}},  //   _трас, _вълн, דריי,\n  { {0x5faa0061, 0x60c20dd7, 0xdd7b0049, 0x00000000}},  //   _कशाल, nlom, _שטאל,\n  { {0x07a4008b, 0x44390181, 0x2bd20164, 0x00000000}},  //   жаўн, _rbs_, देशा,\n  { {0x644f003b, 0x4439014a, 0x6d5a2e8b, 0x00000000}},  //   _saci, _sbs_, _krta,\n  { {0x44390606, 0x24190147, 0x24890133, 0x00000000}},  //   _pbs_, ловы_, tham_,\n  { {0x6d5a0091, 0x26050061, 0x59f50014, 0x00000000}},  //   _mrta, वरही_, _پکیج_,\n  { {0x644f2e8c, 0x24892e8d, 0x22840039, 0x00000000}},  // [8e10] _vaci, rham_, _söka_,\n  { {0x6d5a047f, 0x442b0066, 0x24890145, 0x00000000}},  //   _orta, _wcc_, sham_,\n  { {0x644f0fb2, 0x442b00c4, 0x24890082, 0x00000000}},  //   _taci, _tcc_, pham_,\n  { {0x24802e8e, 0x60c2009d, 0x442b1c7e, 0x00000000}},  //   ckim_, glom, _ucc_,\n  { {0xfd4c0011, 0x543a0049, 0xe8e00082, 0x00000000}},  //   _thiể, _גערא, _ngời_,\n  { {0x44290004, 0x52850054, 0x7c390016, 0x00000000}},  //   lga_, _السك, _sbwr,\n  { {0x44290051, 0x60c20190, 0x6d5a0091, 0x00000000}},  //   oga_, blom, _crta,\n  { {0x291e0087, 0x00000000, 0x00000000, 0x00000000}},  //   drta_,   ,   ,\n  { {0x291e0211, 0x6d5c0c38, 0x44290a0e, 0x00000000}},  //   erta_, _áran, iga_,\n  { {0x8e740025, 0xf2d20049, 0x00000000, 0x00000000}},  //   _والض, ּעט_,   ,\n  { {0xd945022a, 0xb4e603d7, 0x24802e8f, 0x00000000}},  //   щени, _पढे_, ykim_,\n  { {0x44290450, 0x8c46006b, 0x9c7c0087, 0x00000000}},  //   jga_, yişə, _lučj,\n  { {0x6d5a0521, 0x291e0051, 0x442900f8, 0x00000000}},  //   _zrta, arta_, dga_,\n  { {0x7bcb0340, 0x4429006c, 0x60c22e90, 0x00000000}},  //   _izgu, ega_, zlom,\n  { {0xe8f506f1, 0x24800340, 0xb6060e0d, 0x00000000}},  //   _استخ, tkim_, vršč,\n  { {0x44292e91, 0xdb23000c, 0x628700d0, 0x00000000}},  //   gga_, _þróu, _aljo,\n  { {0xf8b3012f, 0x24802e92, 0x7afb0032, 0x00000000}},  // [8e20] _משה_, rkim_, nput,\n  { {0x44292e93, 0x24800213, 0x7c2901a2, 0x00000000}},  //   aga_, skim_, hger,\n  { {0xc693009b, 0x27ed0340, 0x7afb0022, 0x00000000}},  //   _מאז_, žene_, hput,\n  { {0x63a90253, 0x7c2900bb, 0x53a60888, 0x00000000}},  //   _žene, jger, _гамб,\n  { {0x8c46006b, 0x60c20093, 0x6d5a016c, 0x00000000}},  //   qişə, rlom, _srta,\n  { {0x44ee001d, 0xacf802e9, 0x60c200b0, 0x00000000}},  //   _ký_, анку_, slom,\n  { {0x7c292e94, 0x629e1fc7, 0x00000000, 0x00000000}},  //   fger, mipo,   ,\n  { {0x7c292708, 0x629e000b, 0x22510009, 0x00000000}},  //   gger, lipo, _zazk_,\n  { {0x44ee001d, 0xeaf7007a, 0x320a0027, 0x00000000}},  //   _lý_, یریت_, _keby_,\n  { {0x3914005e, 0xaa66005c, 0x3377009b, 0x00000000}},  //   омор, стик, צעים_,\n  { {0x44ee009f, 0x6d5a022b, 0x44291d0c, 0x00000000}},  //   _ný_, _urta, yga_,\n  { {0xc173009b, 0x00000000, 0x00000000, 0x00000000}},  //   לחת_,   ,   ,\n  { {0x9c7c050f, 0x629e0176, 0xeb330167, 0x00000000}},  //   _lučk, kipo, _فروخ,\n  { {0x291e0059, 0x25580173, 0x8bd700b3, 0x00000000}},  //   prta_, _bčl_, _הודו_,\n  { {0x787f0065, 0x7a5301f7, 0x629e0ec2, 0x00000000}},  //   _lëvi, _رضوا, dipo,\n  { {0xcd020046, 0x44291a8a, 0x18a403f3, 0x00000000}},  //   mość_, uga_, _најм,\n  { {0x44290149, 0x660e027e, 0x2458007c, 0x00000000}},  // [8e30] rga_, babk, щать_,\n  { {0x5b7b007b, 0x44290058, 0x9c7c00ca, 0x00000000}},  //   ארמא, sga_, _bučk,\n  { {0xcd020046, 0x320a0685, 0x442900ea, 0x00000000}},  //   ność_, _deby_, pga_,\n  { {0x33200606, 0xf8c9006e, 0xdbd900c4, 0x00000000}},  //   brix_, रतिय, nção,\n  { {0x3f690407, 0x629e010e, 0x320a0022, 0x00000000}},  //   рило_, bipo, _feby_,\n  { {0xcd020036, 0xee380088, 0x629e00c4, 0x00000000}},  //   kość_, йні_, cipo,\n  { {0x7bc22e95, 0x00000000, 0x00000000, 0x00000000}},  //   _ayou,   ,   ,\n  { {0x6aa81016, 0x7c290129, 0x7f5b1396, 0x00000000}},  //   endf, uger, _truq,\n  { {0x15fb01f5, 0x200f0217, 0x68ea01a2, 0x00000000}},  //   ्रार_, magi_, _aufd,\n  { {0x7afb2e96, 0x7c29010f, 0x78ad01c2, 0x00000000}},  //   rput, sger, _ajav,\n  { {0x68460888, 0xddab007c, 0x9f46000c, 0x00000000}},  //   онна, _стал_, lboð_,\n  { {0x200f0004, 0x6d410ca4, 0xfd100025, 0x00000000}},  //   nagi_, _ipla, _أجل_,\n  { {0x61c60201, 0x3b092e97, 0xc1c60164, 0x00000000}},  //   _वर्ष, _тело_, _वर्ग,\n  { {0x200f006a, 0x96ba078e, 0x629e00e5, 0x00000000}},  //   hagi_, руму_, xipo,\n  { {0x649a007e, 0xa50a00e3, 0x200f006c, 0x00000000}},  //   атар_, реба_, kagi_,\n  { {0x07a60088, 0x7ae32e98, 0x200f1d73, 0x00000000}},  //   _майн, _hint, jagi_,\n  { {0x200f0004, 0x629e011c, 0x8c3d005f, 0x00000000}},  // [8e40] dagi_, tipo, mişd,\n  { {0x7ae301d5, 0x6d411c72, 0x66c01361, 0x00000000}},  //   _jint, _opla, töku,\n  { {0x629e1bbf, 0x4fea005e, 0xb5ca0014, 0x00000000}},  //   ripo, амен_, _خودم_,\n  { {0x69c32e99, 0x7ae30281, 0x9c7c0107, 0x00000000}},  //   _myne, _lint, _vučk,\n  { {0x6d410006, 0x7ae32e9a, 0x69c3123c, 0x00000000}},  //   _apla, _oint, _lyne,\n  { {0x7ae3002d, 0x68e42e9b, 0xddc10059, 0x00000000}},  //   _nint, _liid, _dolž,\n  { {0x200f023a, 0x629c0022, 0xa2b9006e, 0x00000000}},  //   bagi_, _imro, ्तर्,\n  { {0x68e417f9, 0x7ae3002d, 0x7aeb119d, 0x00000000}},  //   _niid, _aint, _bugt,\n  { {0xcd020046, 0x7ae304cb, 0xc4d3009b, 0x00000000}},  //   wość_, _bint, וגה_,\n  { {0x7ae30127, 0xd90e06c6, 0x5a3400e3, 0x00000000}},  //   _cint, نیت_, чнот,\n  { {0x7ae3000d, 0x69c30016, 0x6483006c, 0x00000000}},  //   _dint, _cyne, _sõim,\n  { {0x7ae31359, 0x8c460057, 0x57f40265, 0x00000000}},  //   _eint, _феде, мпют,\n  { {0x629c00b5, 0x7ae30197, 0x68e404be, 0x00000000}},  //   _omro, _fint, _diid,\n  { {0x64830004, 0x7ae30006, 0x69c31c26, 0x00000000}},  //   _võim, _gint, _fyne,\n  { {0xd49b017f, 0x69c30161, 0x29111580, 0x00000000}},  //   ара_, _gyne, ázat_,\n  { {0xd7fb0265, 0x7ae3114c, 0x9c7c007f, 0x00000000}},  //   _тук_, _zint, _buči,\n  { {0x27e92e9c, 0x533402dc, 0xd251009e, 0x00000000}},  // [8e50] _igan_, метт, ٹنا_,\n  { {0x64830004, 0xf2c7007e, 0x9c7c0521, 0x00000000}},  //   _kõik, ісан, _duči,\n  { {0x75830167, 0x200f010e, 0x8c3d014a, 0x00000000}},  //   _غیرم, tagi_, lişe,\n  { {0x92ab0055, 0xa2cb007d, 0x66c00039, 0x00000000}},  //   খতে_, _तीर्, sökt,\n  { {0x6483006c, 0x200f065d, 0x6d412e9d, 0x00000000}},  //   _lõik, ragi_, _spla,\n  { {0xfce504b6, 0x200f0fb4, 0x6d4102c0, 0x00000000}},  //   поко, sagi_, _ppla,\n  { {0x7ae300b0, 0x8c3d006b, 0x27e90093, 0x00000000}},  //   _rint, yişd, _ogan_,\n  { {0x27e90127, 0x69c30036, 0x62850168, 0x00000000}},  //   _ngan_, _ryne, lkho,\n  { {0x69c30378, 0xdd91026c, 0x68e401c2, 0x00000000}},  //   _syne, بوں_, _riid,\n  { {0x62850232, 0x27e90093, 0xee780025, 0x00000000}},  //   nkho, _agan_, _وصلت_,\n  { {0x8c3d006b, 0x527c0049, 0x00000000, 0x00000000}},  //   tişd, ינזא,   ,\n  { {0x7aeb2e9e, 0x7cd9007c, 0xdb390014, 0x00000000}},  //   _tugt, _умер_, _هستش_,\n  { {0x7ae3002b, 0x69c3018e, 0x7c3b2062, 0x00000000}},  //   _tint, _wyne, mfur,\n  { {0x7c3b01e5, 0x9c7c04c8, 0x27e91624, 0x00000000}},  //   lfur, _ruči, _egan_,\n  { {0x2ee50061, 0xf48402fd, 0x68e4010e, 0x00000000}},  //   _milf_, واری, _tiid,\n  { {0x7c3b2e9f, 0x63a9049c, 0x7ce7014a, 0x00000000}},  //   nfur, _žena, _hırs,\n  { {0x46a60140, 0x0326007e, 0x6aa10048, 0x00000000}},  // [8e60] _наив, ядан, oilf,\n  { {0x9c7c12d6, 0x7ce7026d, 0x00000000, 0x00000000}},  //   _vuči, _yırt,   ,\n  { {0x867b009b, 0x66c00039, 0xf67b009b, 0x00000000}},  //   _הריו, söks, _האימ,\n  { {0x6aa1010f, 0xd12f03ec, 0x00000000, 0x00000000}},  //   hilf, طمه_,   ,\n  { {0xd00f06f1, 0xdce3007f, 0x2ee5005b, 0x00000000}},  //   اله_, lynė, _bilf_,\n  { {0x62850073, 0x216a013b, 0x629c0093, 0x00000000}},  //   ckho, _лиги_, _umro,\n  { {0x61430551, 0x7c3b2ea0, 0x6aa101a3, 0x00000000}},  //   _пера, ffur, dilf,\n  { {0xd00f0025, 0x00000000, 0x00000000, 0x00000000}},  //   _ملف_,   ,   ,\n  { {0x769000b0, 0x78bd2ea1, 0x7ce7014a, 0x00000000}},  //   _käyd, vosv, _sırt,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xe8e00011, 0x6f09010f, 0xd05c006b, 0x00000000}},  //   _ngồi_, _zwec, _surə,\n  { {0xab2a0783, 0x64830004, 0xd90e0014, 0x00000000}},  //   _года_, _võik, پیک_,\n  { {0xac970025, 0x7ce7014a, 0x6383000c, 0x00000000}},  //   _عنها_, _fırs, _mínú,\n  { {0x7bdb00a0, 0x00000000, 0x00000000, 0x00000000}},  //   _הקדו,   ,   ,\n  { {0x9412006b, 0x7e7a02e1, 0x78bd0010, 0x00000000}},  //   liyə_, _motp, posv,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x38690051, 0x9412006b, 0x00000000, 0x00000000}},  // [8e70] _inar_, niyə_,   ,\n  { {0x09e00055, 0x7e7a00ca, 0xf8bf009d, 0x00000000}},  //   _ম্যা, _notp, loé_,\n  { {0x628500bb, 0xc5fb007d, 0x00000000, 0x00000000}},  //   rkho, ्रीय_,   ,\n  { {0xdbf100b9, 0x00000000, 0x00000000, 0x00000000}},  //   třík,   ,   ,\n  { {0x3dc5018e, 0x00000000, 0x00000000, 0x00000000}},  //   _sylw_,   ,   ,\n  { {0x6e940457, 0x9412006b, 0x00000000, 0x00000000}},  //   ничу, diyə_,   ,\n  { {0x3015025f, 0x38690032, 0xa28200a1, 0x00000000}},  //   _одвр, _onar_, _جیلو,\n  { {0xdbf100b9, 0x7e6805af, 0x00000000, 0x00000000}},  //   přík, _endp,   ,\n  { {0x7c3b001a, 0x6aa1002b, 0xcd4500a1, 0x00000000}},  //   rfur, tilf, سپکٹ,\n  { {0x386904bd, 0x66020521, 0x89a90920, 0x00000000}},  //   _anar_, _đoko, жков_,\n  { {0x6fd90061, 0x38690022, 0x7d1c01c4, 0x00000000}},  //   बेरं, _bnar_, _årsp,\n  { {0xc689007b, 0xe73a007c, 0x768b014a, 0x00000000}},  //   _דא_, оем_, _rüya,\n  { {0x2cad0c78, 0x386900ca, 0xf3ff00fa, 0x00000000}},  //   mned_, _dnar_, _anão_,\n  { {0x2cbf010f, 0xcb12009b, 0xdce30006, 0x00000000}},  //   loud_, _ילד_, tynė,\n  { {0x66e30057, 0x2cad00ab, 0x00000000, 0x00000000}},  //   тора, oned_,   ,\n  { {0x130a007e, 0x2cad00ab, 0x2cbf2ea2, 0x00000000}},  //   жнай_, nned_, noud_,\n  { {0x2cad00ab, 0x03a3003b, 0x00000000, 0x00000000}},  // [8e80] ined_, вито,   ,\n  { {0x2cbf049b, 0x0219008b, 0x00000000, 0x00000000}},  //   houd_, зіць_,   ,\n  { {0x63a9009f, 0x2cbf01d6, 0x00000000, 0x00000000}},  //   _þenn, koud_,   ,\n  { {0xd095007e, 0x7df801f5, 0x6d5c296d, 0x00000000}},  //   ншчы, ुर्ग_, _árai,\n  { {0x7e7a0119, 0x769000b0, 0x7e68000a, 0x00000000}},  //   _potp, _täyd, _pndp,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x604401aa, 0x00000000, 0x00000000, 0x00000000}},  //   _pčmč,   ,   ,\n  { {0x2cad00ab, 0x2258002d, 0x2cbf1818, 0x00000000}},  //   gned_, _hark_, goud_,\n  { {0x8c4300ec, 0x20060145, 0x7e7a00f6, 0x00000000}},  //   тење, mboi_, _totp,\n  { {0x6f020211, 0xd0130044, 0xed4f00a1, 0x00000000}},  //   mpoc, _হায়_, دھے_,\n  { {0x2258038f, 0x291806b8, 0x2cbf01d6, 0x00000000}},  //   _mark_, éra_, boud_,\n  { {0x3b860131, 0x6483006c, 0x594200a1, 0x00000000}},  //   _олег, _hõiv, _یکجہ,\n  { {0x27ed00b9, 0x00000000, 0x00000000, 0x00000000}},  //   ženo_,   ,   ,\n  { {0x3b530088, 0x00000000, 0x00000000, 0x00000000}},  //   _шкір,   ,   ,\n  { {0x7aef0027, 0x870900a1, 0x00000000, 0x00000000}},  //   íctv, _کعبہ_,   ,\n  { {0x628e177c, 0x00000000, 0x00000000, 0x00000000}},  //   _albo,   ,   ,\n  { {0x200600e0, 0x2258071e, 0x00000000, 0x00000000}},  // [8e90] dboi_, _bark_,   ,\n  { {0x2cbf01aa, 0x1b000044, 0xdcee013e, 0x00000000}},  //   zoud_, _এটাই_, íděn,\n  { {0x225800ab, 0x66150b79, 0x00000000, 0x00000000}},  //   _dark_, mazk,   ,\n  { {0x8c3d005f, 0x628e0e69, 0x66152ea3, 0x00000000}},  //   kişa, _elbo, lazk,\n  { {0x2258014a, 0x644d01b1, 0x00000000, 0x00000000}},  //   _fark_, meai,   ,\n  { {0x8d550920, 0xed590081, 0x2cbf2ea4, 0x00000000}},  //   етич, зок_, woud_,\n  { {0x20e8005d, 0x2b460bc0, 0x3f890006, 0x00000000}},  //   _işin_, _apoc_, šau_,\n  { {0x44f52ad9, 0x24890d0a, 0x101700a1, 0x00000000}},  //   _må_, nkam_, _زبرد,\n  { {0x2cbf01d6, 0x2cad00ab, 0x44f50637, 0x00000000}},  //   roud_, rned_, _lå_,\n  { {0x17fa0164, 0x24890022, 0x2a7c00f6, 0x00000000}},  //   ूर्व_, hkam_, _covb_,\n  { {0xa96900c0, 0x44f50bda, 0x66150032, 0x00000000}},  //   чина_, _nå_, dazk,\n  { {0x6941016c, 0xf1b200a3, 0x00000000, 0x00000000}},  //   jćeš, רסט_,   ,\n  { {0xeb8e0ad9, 0x644d0052, 0x00000000, 0x00000000}},  //   _си_, deai,   ,\n  { {0x6615022b, 0x2006001a, 0x24890089, 0x00000000}},  //   gazk, zboi_, ekam_,\n  { {0xceb2019b, 0x49bb007a, 0x04460216, 0x00000000}},  //   אים_, _باشد_, невн,\n  { {0x44f51f82, 0x22580725, 0x644d009d, 0x00000000}},  //   _då_, _sark_, geai,\n  { {0x225800ab, 0x00000000, 0x00000000, 0x00000000}},  // [8ea0] _park_,   ,   ,\n  { {0x44f51861, 0x201f0d16, 0x20f301ee, 0x00000000}},  //   _få_, _adui_, _ećim_,\n  { {0x44f505cb, 0xe5a6003b, 0x225801d6, 0x00000000}},  //   _gå_, _чини, _vark_,\n  { {0x248911e4, 0x78a61332, 0x764e0146, 0x00000000}},  //   ckam_, nikv, leby,\n  { {0xde580451, 0x2258006c, 0x3cfe2ea5, 0x00000000}},  //   далі_, _tark_, _sttv_,\n  { {0x471b0049, 0x44320010, 0x764e0056, 0x00000000}},  //   לונג, lgy_, neby,\n  { {0x6483006c, 0x52be006e, 0xd00a04b6, 0x00000000}},  //   _võiv, ्तीस, _неве_,\n  { {0x7764049a, 0x44320142, 0x66150032, 0x00000000}},  //   _orix, ngy_, zazk,\n  { {0x61f30023, 0x00000000, 0x00000000, 0x00000000}},  //   _çelë,   ,   ,\n  { {0x60c20004, 0xd8f80088, 0x39470022, 0x00000000}},  //   loom, мної_, _bpns_,\n  { {0x6f1b037e, 0xe895008b, 0x3947023a, 0x00000000}},  //   _zvuc, вань, _cpns_,\n  { {0x44f524fd, 0x27ed043e, 0x60c2006c, 0x00000000}},  //   _rå_, øen_, noom,\n  { {0x44f50945, 0x6615002d, 0xe7870088, 0x00000000}},  //   _så_, tazk, хуно,\n  { {0x44f51aec, 0x36d50f40, 0x60c201c3, 0x00000000}},  //   _på_, тогр, hoom,\n  { {0x66150266, 0x04670264, 0xfbb20044, 0x00000000}},  //   razk, нтам, _চরিত,\n  { {0x3f860173, 0x3913005e, 0x776422d1, 0x00000000}},  //   kyou_, _смър, _frix,\n  { {0xe8070164, 0x925900ed, 0x248910c2, 0x00000000}},  // [8eb0] _व्या_, маат_, rkam_,\n  { {0x6d482ea6, 0x66d2000c, 0x7aea002b, 0x00000000}},  //   _opda, lækn, _jift,\n  { {0x7aea01d5, 0x26c30006, 0x644d0016, 0x00000000}},  //   _mift, mojo_, peai,\n  { {0x251a00b3, 0x26c31f51, 0xc1040439, 0x00000000}},  //   _קורא, lojo_, اوني,\n  { {0x6d482ea7, 0x8416009b, 0x673d010e, 0x00000000}},  //   _apda, _בקרב_, ntsj,\n  { {0x7aea002b, 0x26c30006, 0xddc8016c, 0x00000000}},  //   _nift, nojo_, _dodž,\n  { {0xd658009b, 0x60c20116, 0x5ff5005e, 0x00000000}},  //   גיות_, boom, _азбу,\n  { {0x2d510224, 0x764e0036, 0x27ed00ca, 0x00000000}},  //   _vše_, zeby, ženj_,\n  { {0x9e15008b, 0x26c30006, 0x00000000, 0x00000000}},  //   _адзі, kojo_,   ,\n  { {0x26c30006, 0x39470093, 0x7aea29d1, 0x00000000}},  //   jojo_, _ppns_, _cift,\n  { {0xe9d90077, 0x69ca018e, 0x3ea70047, 0x00000000}},  //   ько_, _cyfe, mint_,\n  { {0x64830004, 0x3ea70016, 0x98a6004c, 0x00000000}},  //   _mõis, lint_, тиме,\n  { {0x2d871228, 0x7aea00ab, 0x768b014a, 0x00000000}},  //   lyne_, _fift, _tüyl,\n  { {0x7aea098e, 0x3ea70129, 0x60c21fac, 0x00000000}},  //   _gift, nint_, zoom,\n  { {0x69ca0bc4, 0x764e00eb, 0x31610061, 0x00000000}},  //   _gyfe, reby, jvhz_,\n  { {0x29051d55, 0x77640007, 0x764e00f8, 0x00000000}},  //   mpla_, _trix, seby,\n  { {0x753c0046, 0x443200ab, 0x78a41489, 0x00000000}},  // [8ec0] strz, rgy_, _imiv,\n  { {0x64830004, 0x3f8601aa, 0x26c3004a, 0x00000000}},  //   _sõit, vyou_, cojo_,\n  { {0x3ea72252, 0xfbc70014, 0x60c20961, 0x00000000}},  //   dint_, _چت_, toom,\n  { {0xfbc713d9, 0xddc81332, 0x3f86000a, 0x00000000}},  //   _نت_, _podž, tyou_,\n  { {0x60c22ea8, 0x64830004, 0x3ea72ea9, 0x00000000}},  //   room, _võit, fint_,\n  { {0xeaa70025, 0x6d4800ea, 0x44220203, 0x00000000}},  //   _ضع_, _ppda, _hdk_,\n  { {0x90c6007e, 0x7aea01e5, 0xdfd200a6, 0x00000000}},  //   _абве, _rift, _چيز_,\n  { {0xdfd2007a, 0x69ca0016, 0x3ea70048, 0x00000000}},  //   _نيز_, _ryfe, aint_,\n  { {0xee3a1ae1, 0x8c3d0279, 0xa03b0049, 0x00000000}},  //   _она_, mişl, _קעמפ,\n  { {0x63a919f0, 0x3ea70051, 0x44222e92, 0x00000000}},  //   _ženk, cint_, _ldk_,\n  { {0x6d480038, 0x66d2000c, 0x7aea02d8, 0x00000000}},  //   _upda, tækn, _vift,\n  { {0x387f0359, 0xa9c301fb, 0x8c3d0279, 0x00000000}},  //   ður_, рськ, nişl,\n  { {0x26c3010a, 0x7aea01d5, 0x66d20698, 0x00000000}},  //   tojo_, _tift, rækn,\n  { {0x6d5c0a87, 0x78a40026, 0x442202c1, 0x00000000}},  //   _áras, _emiv, _adk_,\n  { {0x26c32eaa, 0x673d06d9, 0x44220145, 0x00000000}},  //   rojo_, stsj, _bdk_,\n  { {0x332902a9, 0x26c300ca, 0x998e000a, 0x00000000}},  //   trax_, sojo_, _jefō_,\n  { {0x44220a9d, 0x00000000, 0x00000000, 0x00000000}},  // [8ed0] _ddk_,   ,   ,\n  { {0x44220203, 0x00000000, 0x00000000, 0x00000000}},  //   _edk_,   ,   ,\n  { {0x68ed0047, 0x3ea70129, 0x7c220a7e, 0x00000000}},  //   _kiad, vint_, _odor,\n  { {0x64830004, 0x66020107, 0x5f9505f6, 0x00000000}},  //   _võis, _đoki, лиет,\n  { {0x3ea700d4, 0x645d2eab, 0xfd640082, 0x00000000}},  //   tint_, _iasi, _truớ,\n  { {0x645d0beb, 0x7c221729, 0x0ccb02fb, 0x00000000}},  //   _hasi, _ador, ात्म,\n  { {0x645d027c, 0x41e401e1, 0x3ea70e69, 0x00000000}},  //   _kasi, _віта, rint_,\n  { {0x799a0046, 0x3ea71aed, 0x645d0814, 0x00000000}},  //   dztw, sint_, _jasi,\n  { {0x645d0149, 0x2d870007, 0x7c84003b, 0x00000000}},  //   _masi, syne_, рује,\n  { {0x7c220032, 0x2d8701d6, 0x44390253, 0x00000000}},  //   _edor, pyne_, _lcs_,\n  { {0x645d0145, 0x8c3d011f, 0x60db050c, 0x00000000}},  //   _oasi, lişm, _khum,\n  { {0x645d0149, 0xe45f0039, 0x44391aa5, 0x00000000}},  //   _nasi, _skön_, _ncs_,\n  { {0x7bcb011f, 0x68ed0169, 0x60db002b, 0x00000000}},  //   _uygu, _diad, _mhum,\n  { {0x29050039, 0x645d2eac, 0x6b9b10a2, 0x00000000}},  //   ppla_, _aasi, mzug,\n  { {0x44220065, 0x4439016b, 0x98a60035, 0x00000000}},  //   _pdk_, _bcs_, gulă_,\n  { {0x64a32ead, 0xa3ea031b, 0x78a402aa, 0x00000000}},  //   баса, едба_, _umiv,\n  { {0x6b892eae, 0x6b9b010f, 0x645d007f, 0x00000000}},  // [8ee0] nyeg, nzug, _dasi,\n  { {0x44390f1d, 0x68ed0a13, 0x645d00ab, 0x00000000}},  //   _ecs_, _ziad, _easi,\n  { {0x645d2974, 0x64a6003b, 0x44220169, 0x00000000}},  //   _fasi, _бана, _tdk_,\n  { {0x60db2302, 0x645d0942, 0x44390048, 0x00000000}},  //   _chum, _gasi, _gcs_,\n  { {0x8c3d005a, 0x69ca0309, 0x60db2176, 0x00000000}},  //   rişl, _सुनी, _dhum,\n  { {0x645d05e1, 0x64b7012d, 0xb5ab00a1, 0x00000000}},  //   _zasi, nćin, _آئیے_,\n  { {0x645d0020, 0x765e0020, 0x00000000, 0x00000000}},  //   _yasi, _mapy,   ,\n  { {0x27ed0340, 0x63a9016e, 0x765e00e0, 0x00000000}},  //   ženi_, _ženi, _lapy,\n  { {0x68ed0027, 0x2aaa003b, 0x79880016, 0x00000000}},  //   _riad, етно_, wydw,\n  { {0x7c240089, 0x68ed1b42, 0x00000000, 0x00000000}},  //   _ķiru, _siad,   ,\n  { {0x68ed0181, 0xaa6307d0, 0x98b40095, 0x00000000}},  //   _piad, стык, çeği_,\n  { {0x6d5a2eaf, 0x2d950121, 0xeb9a05f6, 0x00000000}},  //   _ista, _трус, _пие_,\n  { {0x443903e2, 0x2ca60030, 0x68ed0f07, 0x00000000}},  //   _rcs_, _imod_, _viad,\n  { {0x68ed0046, 0x645d0f77, 0x765e0203, 0x00000000}},  //   _wiad, _sasi, _capy,\n  { {0x645d1750, 0x4439023a, 0x58d50256, 0x00000000}},  //   _pasi, _pcs_, _кокт,\n  { {0x24580077, 0x6d5a0518, 0x645d002b, 0x00000000}},  //   лась_, _msta, _qasi,\n  { {0x645d0a89, 0x291e1759, 0x44390181, 0x00000000}},  // [8ef0] _vasi, lsta_, _vcs_,\n  { {0x60db048a, 0x645d000b, 0x60c9009f, 0x00000000}},  //   _shum, _wasi, _skem,\n  { {0x6d5a2eb0, 0x645d04cb, 0x7d0d016c, 0x00000000}},  //   _nsta, _tasi, ćask,\n  { {0x291e06d5, 0x765e0036, 0x443900fa, 0x00000000}},  //   ista_, _zapy, _ucs_,\n  { {0x8335007b, 0x6d5a1aba, 0x3ea50022, 0x00000000}},  //   _דאָס_, _asta, _pmlt_,\n  { {0x291e0ba5, 0x6d5a0009, 0x2ca60016, 0x00000000}},  //   ksta_, _bsta, _amod_,\n  { {0x60db0339, 0x6d5a01c3, 0x69ce2ba5, 0x00000000}},  //   _thum, _csta, übel,\n  { {0x9f050014, 0x291e0039, 0x4c852eb1, 0x00000000}},  //   _نورو, dsta_, рлив,\n  { {0x291e04bd, 0xeb990264, 0x00000000, 0x00000000}},  //   esta_, тип_,   ,\n  { {0xea89005e, 0x7aa500e3, 0x39450088, 0x00000000}},  //   тбол_, риоз, аног,\n  { {0xd945051f, 0xe807001c, 0x291e2eb2, 0x00000000}},  //   шени, _व्हा_, gsta_,\n  { {0x29030089, 0x2ca60d28, 0x00000000, 0x00000000}},  //   īja_, _gmod_,   ,\n  { {0xb8fc001c, 0x291e25a8, 0x765e01aa, 0x00000000}},  //   _ती_, asta_, _papy,\n  { {0x6d5a2eb3, 0xb87b004a, 0x00000000, 0x00000000}},  //   _ysta, rmía,   ,\n  { {0x441600ed, 0xe6170517, 0x6d5a02d4, 0x00000000}},  //   ифат, рдс_, _xsta,\n  { {0x7786005e, 0x765e0020, 0x99d4023c, 0x00000000}},  //   _влиз, _wapy, _اتها,\n  { {0xd3870d99, 0x765e0006, 0xd6d20025, 0x00000000}},  // [8f00] айте_, _tapy, _وقع_,\n  { {0x386000ab, 0x6444001a, 0x769000b0, 0x00000000}},  //   _hair_, sfii, _käym,\n  { {0xf67b007b, 0x867b009b, 0x321a00ab, 0x00000000}},  //   _סאטמ, _סרטו, rapy_,\n  { {0x504601fb, 0x661c0056, 0x386000c4, 0x00000000}},  //   редб, lark, _jair_,\n  { {0xdfcf0426, 0x44fc193c, 0x3860005b, 0x00000000}},  //   ويم_, _hí_, _mair_,\n  { {0x661c0127, 0x44fc001d, 0x6d5a0009, 0x00000000}},  //   nark, _kí_, _psta,\n  { {0xb87b0224, 0x44fc00b9, 0x66d2000c, 0x00000000}},  //   dmín, _jí_, tækj,\n  { {0x44fc2eb4, 0x661c022b, 0x32180690, 0x00000000}},  //   _mí_, hark, _hery_,\n  { {0x661c0292, 0x44fc0011, 0x6d5a0036, 0x00000000}},  //   kark, _lí_, _wsta,\n  { {0x661c0169, 0x7f3b00b3, 0x66d2000c, 0x00000000}},  //   jark, _בעמו, sækj,\n  { {0x44fc2eb5, 0x661c2eb6, 0x291e2077, 0x00000000}},  //   _ní_, dark, usta_,\n  { {0x291e0332, 0x661722f8, 0x38602eb7, 0x00000000}},  //   rsta_, _sexk, _cair_,\n  { {0x38602eb8, 0x44fc0181, 0xdc9b00a0, 0x00000000}},  //   _dair_, _aí_, _ביאל,\n  { {0x44fc2eb9, 0x661c002d, 0x3f420011, 0x00000000}},  //   _bí_, gark, _mưu_,\n  { {0x3f42001d, 0x45d500ed, 0x69d80089, 0x00000000}},  //   _lưu_, совс, _uzve,\n  { {0xd498132e, 0x316d2eba, 0x38600016, 0x00000000}},  //   ару_, _čez_, _gair_,\n  { {0x2458007c, 0x7cf50006, 0x00000000, 0x00000000}},  // [8f10] шать_, _išre,   ,\n  { {0x661c0107, 0x38600035, 0x8c3d014a, 0x00000000}},  //   cark, _zair_, tişk,\n  { {0xd5b8041f, 0x00000000, 0x00000000, 0x00000000}},  //   _вся_,   ,   ,\n  { {0x3f420011, 0x75350026, 0x27ed2ebb, 0x00000000}},  //   _bưu_, muzz, ženu_,\n  { {0x753501d5, 0x32180093, 0xb87b0051, 0x00000000}},  //   luzz, _fery_, hmío,\n  { {0xee3801fb, 0x76552ebc, 0x32180007, 0x00000000}},  //   ині_, nezy, _gery_,\n  { {0x31e50055, 0x01e50055, 0x8c3d005a, 0x00000000}},  //   _প্রশ, _প্রদ, lişi,\n  { {0x45b800b6, 0x69ca0164, 0x661c2ebd, 0x00000000}},  //   יפול_, _सुधी, zark,\n  { {0x201d033b, 0x661c2ebe, 0x8c3d0276, 0x00000000}},  //   mawi_, yark, nişi,\n  { {0x38602ebf, 0x66d20030, 0x201d0020, 0x00000000}},  //   _sair_, rækk, lawi_,\n  { {0x661c2e27, 0x386000ab, 0xb87b0161, 0x00000000}},  //   vark, _pair_, rmín,\n  { {0x661c2ec0, 0x753501d5, 0x7e6100b0, 0x00000000}},  //   wark, duzz, _halp,\n  { {0x2d8a001f, 0x44fc2ec1, 0x661c00b0, 0x00000000}},  //   _über_, _sí_, tark,\n  { {0x2cad03a1, 0x201d2ec2, 0x66032ec3, 0x00000000}},  //   lied_, hawi_, зпра,\n  { {0x7e6101aa, 0x6d430333, 0x661c0056, 0x00000000}},  //   _malp, ntna, rark,\n  { {0x3860002a, 0x661c020c, 0x44fc2ec4, 0x00000000}},  //   _uair_, sark, _ví_,\n  { {0xd467046c, 0x661c01a3, 0xb2260425, 0x00000000}},  // [8f20] щите_, park, ймал,\n  { {0x44fc1fce, 0x7535002b, 0x6d43007f, 0x00000000}},  //   _tí_, buzz, ktna,\n  { {0x75350066, 0x32180038, 0x3f420011, 0x00000000}},  //   cuzz, _very_, _sưu_,\n  { {0x26ca0e30, 0x201d0058, 0x7f420026, 0x00000000}},  //   lobo_, gawi_, ttoq,\n  { {0x6d430011, 0x543b0049, 0x645601df, 0x00000000}},  //   etna, _געכא, meyi,\n  { {0x6d430061, 0x6456005a, 0x7e610555, 0x00000000}},  //   ftna, leyi, _calp,\n  { {0x2cad0038, 0x7f4201d5, 0x201d011c, 0x00000000}},  //   fied_, stoq, bawi_,\n  { {0x6456014a, 0x24800213, 0x00000000, 0x00000000}},  //   neyi, njim_,   ,\n  { {0x6d69001e, 0x81cd0055, 0x9e3a0025, 0x00000000}},  //   _īpaš, শেদ_, _مساء_,\n  { {0x7e612ec5, 0x6fb300f9, 0x0e6a0025, 0x00000000}},  //   _galp, _عملا, _حصري_,\n  { {0x2cad01b5, 0x67240107, 0x6d4300bb, 0x00000000}},  //   bied_, _avij, ctna,\n  { {0x8c3d2ec6, 0x63bb000c, 0x2cad014f, 0x00000000}},  //   yişi, _þung, cied_,\n  { {0x67240243, 0x24800107, 0x29070197, 0x00000000}},  //   _cvij, djim_, _etna_,\n  { {0x67240182, 0x7535002b, 0x95cb00e3, 0x00000000}},  //   _dvij, tuzz, губа_,\n  { {0xceb30097, 0x59cf007d, 0x65940887, 0x00000000}},  //   ליש_, _सुपर, пару,\n  { {0x8c3d011f, 0x753501bc, 0x24800023, 0x00000000}},  //   tişi, ruzz, gjim_,\n  { {0x26ca008e, 0x6e280caa, 0x32010133, 0x00000000}},  // [8f30] bobo_, _oddb, tchy_,\n  { {0x63a901d9, 0x8c3d005a, 0x26ca2ccc, 0x00000000}},  //   _žens, rişi, cobo_,\n  { {0x67240209, 0x201d0020, 0x320107fc, 0x00000000}},  //   _zvij, tawi_, rchy_,\n  { {0x6e2822dc, 0x78af01ee, 0x4fd5007c, 0x00000000}},  //   _addb, nicv, ожет,\n  { {0x643a007b, 0x7ff40025, 0x00000000, 0x00000000}},  //   _דערנ, أسما,   ,\n  { {0x3eae01bf, 0x6d430039, 0x171c0049, 0x00000000}},  //   gift_, ttna, נווע,\n  { {0x7e612ec7, 0x201d0058, 0xdc990478, 0x00000000}},  //   _valp, pawi_, итиш_,\n  { {0x6d43165e, 0x13ad0044, 0xcf2e014a, 0x00000000}},  //   rtna, _কুয়, üğüm_,\n  { {0x62872ec8, 0x7e6117c9, 0x2cad02f1, 0x00000000}},  //   _kojo, _talp, ried_,\n  { {0xa9252821, 0x4ea701fc, 0x64562ec9, 0x00000000}},  //   одол, _урба, zeyi,\n  { {0x67240182, 0x3f8f018e, 0x62870466, 0x00000000}},  //   _svij, lygu_, _mojo,\n  { {0x776d20e3, 0x00000000, 0x00000000, 0x00000000}},  //   _brax,   ,   ,\n  { {0x776d0197, 0x00000000, 0x00000000, 0x00000000}},  //   _crax,   ,   ,\n  { {0xa969026b, 0xd4910082, 0x62870943, 0x00000000}},  //   _вика_, ền_, _nojo,\n  { {0x26ca00ca, 0xa2ba0309, 0xd05f006b, 0x00000000}},  //   robo_, ्वस्, şvət,\n  { {0x7c3b0127, 0x26ca0093, 0xdbd4004a, 0x00000000}},  //   ngur, sobo_, _zúñi,\n  { {0x67240182, 0x52aa0265, 0x62870161, 0x00000000}},  // [8f40] _uvij, авам_, _bojo,\n  { {0x62871965, 0x6456005a, 0x248000ee, 0x00000000}},  //   _cojo, seyi, sjim_,\n  { {0x62870066, 0xf77201b2, 0x00000000, 0x00000000}},  //   _dojo, _راک_,   ,\n  { {0xd46a003b, 0x63bb00d0, 0x00000000, 0x00000000}},  //   _тиме_, _žune,   ,\n  { {0x44200b53, 0x7c3b0d0a, 0x3eae01a2, 0x00000000}},  //   mai_, dgur, tift_,\n  { {0x6f0904be, 0x62870023, 0x00000000, 0x00000000}},  //   _dtec, _gojo,   ,\n  { {0x3eae25d4, 0xbea300ed, 0x68f9006b, 0x00000000}},  //   rift_, ќајк, _əbdü,\n  { {0x44202eca, 0xc5f300b3, 0xdbd4000c, 0x00000000}},  //   nai_, ודו_, _búði,\n  { {0x1fd10055, 0x46da0061, 0x3fb600a1, 0x00000000}},  //   ়েবস, णताह, _بھاگ_,\n  { {0x7c3b0420, 0x20e8014a, 0x13ad0044, 0x00000000}},  //   agur, _eşit_, _কুড়,\n  { {0xa3ac0309, 0x3257009b, 0xf1d0013d, 0x00000000}},  //   _केस_, חסים_, _तुमन,\n  { {0x44200a5c, 0x776d0f73, 0x48ab013b, 0x00000000}},  //   jai_, _prax, ртом_,\n  { {0x44202c3a, 0x7cf50006, 0x6f0900d4, 0x00000000}},  //   dai_, _išra, _xtec,\n  { {0x24550011, 0x78af0019, 0x00000000, 0x00000000}},  //   _ấm_, sicv,   ,\n  { {0x44202ecb, 0x6287008e, 0x1a9b0049, 0x00000000}},  //   fai_, _rojo, _דיגע,\n  { {0x4420020c, 0x7c2000d9, 0x00000000, 0x00000000}},  //   gai_, namr,   ,\n  { {0x8c3d2754, 0x62870093, 0x78ad1013, 0x00000000}},  // [8f50] mişt, _pojo, _imav,\n  { {0x8c3d1c17, 0x7afd0916, 0x416b003b, 0x00000000}},  //   lişt, ísti, ијем_,\n  { {0x4420010a, 0x6f09010f, 0xddc10089, 0x00000000}},  //   bai_, _stec, _valū,\n  { {0x44200010, 0x8c3d228e, 0x00000000, 0x00000000}},  //   cai_, nişt,   ,\n  { {0xb4d7001c, 0x53440242, 0x3f69003b, 0x00000000}},  //   िती_, _охра, сило_,\n  { {0x81cd0055, 0x442b0145, 0x7c3b002b, 0x00000000}},  //   শেষ_, _hdc_, wgur,\n  { {0x78ad042b, 0x442b1d57, 0xa2ba007d, 0x00000000}},  //   _omav, _kdc_, ्वर्,\n  { {0x7c3b0a0a, 0x442b2296, 0x00000000, 0x00000000}},  //   ugur, _jdc_,   ,\n  { {0xbf15031d, 0x7c3b04d4, 0x442b2ecc, 0x00000000}},  //   _رواب, rgur, _mdc_,\n  { {0x44200ff0, 0x78ad0a15, 0x00000000, 0x00000000}},  //   zai_, _amav,   ,\n  { {0x81cd0055, 0x442001a3, 0x88ca022a, 0x00000000}},  //   শের_, yai_, йлов_,\n  { {0xa3ac0061, 0x8c3d2ecd, 0x29e100c4, 0x00000000}},  //   _कइल_, gişt, _açaí_,\n  { {0x4420010a, 0xf7720025, 0xd5b70082, 0x00000000}},  //   vai_, راح_, ống_,\n  { {0x4420020c, 0x200d006b, 0x00000000, 0x00000000}},  //   wai_, əmiş_,   ,\n  { {0x4420010a, 0x0496008b, 0x442b0494, 0x00000000}},  //   tai_, праў, _bdc_,\n  { {0x442b0129, 0x2be2006e, 0x8c3d0095, 0x00000000}},  //   _cdc_, _परमा, mişs,\n  { {0x44202ece, 0xf1fa2712, 0x883b009b, 0x00000000}},  // [8f60] rai_, معات_, _התפו,\n  { {0x4420010a, 0x442b0190, 0x27e01578, 0x00000000}},  //   sai_, _edc_, _izin_,\n  { {0x442b0061, 0x68e40127, 0x7c2b00b4, 0x00000000}},  //   _fdc_, _khid, _odgr,\n  { {0xe0d228b7, 0x442b1238, 0x00000000, 0x00000000}},  //   رزا_, _gdc_,   ,\n  { {0x67260292, 0xef7400a1, 0x68f60095, 0x00000000}},  //   nskj, بخاک, _miyd,\n  { {0x42551fa3, 0xbea3003b, 0x63a408ff, 0x00000000}},  //   _отст, начк, mzin,\n  { {0x63a400c4, 0x00000000, 0x00000000, 0x00000000}},  //   lzin,   ,   ,\n  { {0x63a41325, 0xc5f3009b, 0x00000000, 0x00000000}},  //   ozin, עדה_,   ,\n  { {0x8fa3007c, 0xe45701ce, 0x7c2b0009, 0x00000000}},  //   _зате, ליקט_, _ddgr,\n  { {0x63a42ecf, 0x8f9b00b3, 0x68e400e7, 0x00000000}},  //   izin, _הימי, _ahid,\n  { {0xade8006e, 0x8c3d2ed0, 0x7c200022, 0x00000000}},  //   टेशन_, tişt, pamr,\n  { {0x290a001e, 0x68e4008e, 0x63a40032, 0x00000000}},  //   ība_, _chid, kzin,\n  { {0x68e4000b, 0x63a400b5, 0x442b009d, 0x00000000}},  //   _dhid, jzin, _rdc_,\n  { {0x63a42ed1, 0x7cc1001e, 0xf1be01f5, 0x00000000}},  //   dzin, mēra, ्थान,\n  { {0xd49b06b6, 0x27e0022b, 0x661e023a, 0x00000000}},  //   бра_, _ezin_, _depk,\n  { {0xe45f009f, 0x68e42ed2, 0xb4d70061, 0x00000000}},  //   _mjög_, _ghid, िते_,\n  { {0xa3e7013d, 0x442b0082, 0x63a400bb, 0x00000000}},  // [8f70] यें_, _vdc_, gzin,\n  { {0x68e4065e, 0x00000000, 0x00000000, 0x00000000}},  //   _zhid,   ,   ,\n  { {0x442b0030, 0x78bd0210, 0x66d2000c, 0x00000000}},  //   _tdc_, onsv, rækt,\n  { {0x442b0197, 0x629c0232, 0x78bd00ea, 0x00000000}},  //   _udc_, _elro, nnsv,\n  { {0x5f940088, 0x644d0145, 0x00000000, 0x00000000}},  //   ницт, mfai,   ,\n  { {0x644d0048, 0x661e00f6, 0x7a290010, 0x00000000}},  //   lfai, _xepk, _kötő,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x644d2ed3, 0xfd5e0011, 0x00000000, 0x00000000}},  //   nfai, _huyề,   ,\n  { {0x76900f3c, 0x00000000, 0x00000000, 0x00000000}},  //   _käyt,   ,   ,\n  { {0x68e406a4, 0x69c30009, 0x00000000, 0x00000000}},  //   _shid, _pxne,   ,\n  { {0x63a40207, 0x6e23000c, 0x661e16d0, 0x00000000}},  //   zzin, manb, _repk,\n  { {0x61ec006b, 0x00000000, 0x00000000, 0x00000000}},  //   ünlə,   ,   ,\n  { {0x644d002a, 0x00000000, 0x00000000, 0x00000000}},  //   dfai,   ,   ,\n  { {0x7690021e, 0xddc30010, 0x7afd1ade, 0x00000000}},  //   _näyt, lenő, ístu,\n  { {0xa507017f, 0x644d0f75, 0x67262ed4, 0x00000000}},  //   деса_, ffai, sskj,\n  { {0x63a409ce, 0x644d0048, 0x672602e1, 0x00000000}},  //   tzin, gfai, pskj,\n  { {0xc61d0055, 0x6e23023a, 0x661e014a, 0x00000000}},  // [8f80] _তারা_, kanb, _tepk,\n  { {0xe1f20b6c, 0x4ecf0044, 0x6e232ed5, 0x00000000}},  //   نسا_, িগুল, janb,\n  { {0x81d60055, 0x63a40333, 0x2a6701aa, 0x00000000}},  //   াইভ_, szin, _manb_,\n  { {0x644d0051, 0x38ab0036, 0x63a401c5, 0x00000000}},  //   cfai, _górę_, pzin,\n  { {0x09b10044, 0x201f0022, 0x213a00e7, 0x00000000}},  //   _ঘুমা, _deui_, suph_,\n  { {0xc33300a3, 0x765c007f, 0x6e230668, 0x00000000}},  //   _בוש_, nery, ganb,\n  { {0x60260098, 0x910300ed, 0x201f0022, 0x00000000}},  //   _одва, _апсе, _feui_,\n  { {0x765c0093, 0x91e302dc, 0x00000000, 0x00000000}},  //   hery, _росе,   ,\n  { {0x9ce8009c, 0xd00f031d, 0x765c0af1, 0x00000000}},  //   _ہوئے_, _خلق_, kery,\n  { {0x765c2ed6, 0x753c1712, 0xee37003b, 0x00000000}},  //   jery, kurz, _ону_,\n  { {0x644d1ad0, 0x765c01d6, 0xe8730014, 0x00000000}},  //   yfai, dery, نندگ,\n  { {0x6f000020, 0x00000000, 0x00000000, 0x00000000}},  //   _kumc,   ,   ,\n  { {0xb905007d, 0x765c2ed7, 0x6d4a0190, 0x00000000}},  //   _बी_, fery, ltfa,\n  { {0x59cf0204, 0x765c0af1, 0x00000000, 0x00000000}},  //   _सुवर, gery,   ,\n  { {0x7764027b, 0x7e680190, 0x644d2ed8, 0x00000000}},  //   _esix, _madp, tfai,\n  { {0x7ce500c4, 0xdef80066, 0x00000000, 0x00000000}},  //   córd, _liċ_,   ,\n  { {0x644d1321, 0xf8bf2ed9, 0x69d800b5, 0x00000000}},  // [8f90] rfai, mné_, _hyve,\n  { {0x38690100, 0xfd5e001d, 0xf8bf01ca, 0x00000000}},  //   _haar_, _quyề, lné_,\n  { {0xf8bf2eda, 0x673d0056, 0x00000000, 0x00000000}},  //   oné_, lusj,   ,\n  { {0x3869049b, 0xf8bf0387, 0x9f9c000c, 0x00000000}},  //   _jaar_, nné_, tæða_,\n  { {0x3869049b, 0x6e23011f, 0x7690021e, 0x00000000}},  //   _maar_, tanb, _täyt,\n  { {0x9e6401e1, 0x9f9c000c, 0x6d4a010f, 0x00000000}},  //   квід, ræða_, ftfa,\n  { {0x6e23006b, 0x7e7a00f6, 0xdef8002b, 0x00000000}},  //   ranb, _dntp, _diċ_,\n  { {0x38690662, 0x6e232edb, 0xf8bf01ca, 0x00000000}},  //   _naar_, sanb, jné_,\n  { {0xf8bf0428, 0xdef8002b, 0x6d4a0146, 0x00000000}},  //   dné_, _fiċ_, atfa,\n  { {0x2eca0164, 0x673d2edc, 0xb87b000c, 0x00000000}},  //   ाकृत, dusj, nlíf,\n  { {0xe9d9005e, 0x765c0253, 0x186a0216, 0x00000000}},  //   яко_, very, пани_,\n  { {0x6e211cb8, 0xf8bf00f4, 0xa2cc0061, 0x00000000}},  //   _helb, gné_, तकऱ्,\n  { {0x386906b2, 0x765c006a, 0x6e210b8b, 0x00000000}},  //   _daar_, tery, _kelb,\n  { {0x2cbf0004, 0x7d0100ca, 0x753c0036, 0x00000000}},  //   lnud_, _kuls, turz,\n  { {0x69d8010a, 0xf8bf06b8, 0xba7400a1, 0x00000000}},  //   _gyve, bné_, _جانت,\n  { {0x765c011c, 0xf8bf06b8, 0x2cbf006c, 0x00000000}},  //   sery, cné_, nnud_,\n  { {0x765c2081, 0x26d1004a, 0xccf200a0, 0x00000000}},  // [8fa0] pery, bozo_, רכן_,\n  { {0x05662edd, 0xb87b06c2, 0xc3090044, 0x00000000}},  //   _звон, glíf, _লিখি_,\n  { {0x7d010190, 0x00000000, 0x00000000, 0x00000000}},  //   _nuls,   ,   ,\n  { {0x7690021e, 0x38a20027, 0xf53700a0, 0x00000000}},  //   _täys, _fóre_, _אנטי_,\n  { {0x2cbf006c, 0x7645018e, 0x442217cf, 0x00000000}},  //   dnud_, _ychy, _iek_,\n  { {0x442201d6, 0xf8bf015f, 0x7d012ede, 0x00000000}},  //   _hek_, zné_, _buls,\n  { {0xa0a601fb, 0x6e2100f8, 0x442215fb, 0x00000000}},  //   _завд, _delb, _kek_,\n  { {0x6d4a0073, 0x442201a3, 0xa3e70204, 0x00000000}},  //   rtfa, _jek_, येक_,\n  { {0xf8bf0428, 0x442201a3, 0x10a3137c, 0x00000000}},  //   vné_, _mek_, _ситн,\n  { {0xc333019b, 0x6e211d67, 0x628e0646, 0x00000000}},  //   נות_, _gelb, _jobo,\n  { {0x3869037f, 0xf8bf0d83, 0x2be20164, 0x00000000}},  //   _paar_, tné_, _परवा,\n  { {0xdd8f0014, 0x26f902fb, 0x44220091, 0x00000000}},  //   _دوم_, ंद्र_, _nek_,\n  { {0xf8bf004f, 0x38690007, 0x7af8016c, 0x00000000}},  //   rné_, _vaar_, _tivt,\n  { {0x38690100, 0x7c220051, 0xf8bf0428, 0x00000000}},  //   _waar_, _heor, sné_,\n  { {0x45d50081, 0x44220007, 0xf1d0007d, 0x00000000}},  //   товс, _bek_, _तुलन,\n  { {0x442204cb, 0x38690026, 0x7cc800b9, 0x00000000}},  //   _cek_, _uaar_, běre,\n  { {0x628e0016, 0x44221ece, 0x2a7c00bb, 0x00000000}},  // [8fb0] _bobo, _dek_, _knvb_,\n  { {0x44220004, 0xd0190309, 0x628e001a, 0x00000000}},  //   _eek_, दर्भ_, _cobo,\n  { {0x628e0010, 0x44220173, 0xd13b005e, 0x00000000}},  //   _dobo, _fek_, яха_,\n  { {0x6e21001f, 0x7cc1001e, 0x44220250, 0x00000000}},  //   _selb, vēro, _gek_,\n  { {0x7d01023a, 0x6e210127, 0x248906ed, 0x00000000}},  //   _suls, _pelb, mjam_,\n  { {0xed590373, 0x7bd90016, 0x628e0145, 0x00000000}},  //   док_, _rywu, _gobo,\n  { {0x2cbf0004, 0x6e210190, 0xa1580454, 0x00000000}},  //   tnud_, _velb, _пару_,\n  { {0x6e210116, 0x628e05c9, 0x672d00ee, 0x00000000}},  //   _welb, _zobo, _ovaj,\n  { {0x2ef5106d, 0x7c220048, 0x2cbf006c, 0x00000000}},  //   _азар, _deor, rnud_,\n  { {0x3da703f3, 0x7d010403, 0xb87b00b9, 0x00000000}},  //   _преб, _tuls, hlíd,\n  { {0x98a601bd, 0x89f4008b, 0x672d0052, 0x00000000}},  //   вине, ляюц, _avaj,\n  { {0xf3ff0011, 0x61fa2edf, 0x00000000, 0x00000000}},  //   _ngã_, _útle,   ,\n  { {0xeb8e1ef9, 0xc6260055, 0x24892ee0, 0x00000000}},  //   _ти_, _বাবা_, djam_,\n  { {0x44222559, 0x672d1238, 0x2296000c, 0x00000000}},  //   _sek_, _dvaj, _tæki_,\n  { {0xceb2019b, 0x628e049a, 0x4422014a, 0x00000000}},  //   בים_, _robo, _pek_,\n  { {0x69ca0061, 0x00000000, 0x00000000, 0x00000000}},  //   _सुटी,   ,   ,\n  { {0x2b4d0035, 0xe8d7009b, 0xb87b004a, 0x00000000}},  // [8fc0] ntec_, _בוקר_, rmít,\n  { {0x442201d6, 0x27fe013e, 0x236d0066, 0x00000000}},  //   _wek_, ětnu_, _ġejt_,\n  { {0x44222ee1, 0xa69b009b, 0x00000000, 0x00000000}},  //   _tek_, _חשיפ,   ,\n  { {0x628e0173, 0xa7fb004a, 0xb87b00fa, 0x00000000}},  //   _wobo, señe, clíd,\n  { {0x628e0091, 0xdfd20025, 0x00000000, 0x00000000}},  //   _tobo, جيش_,   ,\n  { {0x7c22020c, 0x6e940025, 0x5f930184, 0x00000000}},  //   _seor, طلبا, ришт,\n  { {0x7c22008e, 0xed57012b, 0x3f80001a, 0x00000000}},  //   _peor, вој_, ţiu_,\n  { {0x61e3011f, 0x7ce500c4, 0x6c3400a1, 0x00000000}},  //   ünle, vórc, اہشا,\n  { {0x3dd20036, 0x2d8101a2, 0x00000000, 0x00000000}},  //   ływ_, äher_,   ,\n  { {0xbbe202fb, 0x60c21a2d, 0x00000000, 0x00000000}},  //   _परीक, lnom,   ,\n  { {0x672d0006, 0x5d860257, 0xbc670bb6, 0x00000000}},  //   _svaj, _جلال, رمین_,\n  { {0x60c20292, 0x6d5a014a, 0x00000000, 0x00000000}},  //   nnom, _ipta,   ,\n  { {0x2b4d00f6, 0x00000000, 0x00000000, 0x00000000}},  //   ctec_,   ,   ,\n  { {0x60c21487, 0x7ce52ee2, 0x3f8600fa, 0x00000000}},  //   hnom, móra, ixou_,\n  { {0xddda00b9, 0x60c201d6, 0x2489012d, 0x00000000}},  //   _patř, knom, tjam_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x24890059, 0x672d0059, 0xb87b004a, 0x00000000}},  // [8fd0] rjam_, _uvaj, smís,\n  { {0x6d5a0030, 0x22470047, 0x66e402ea, 0x00000000}},  //   _opta, ünk_, _коња,\n  { {0xddc82ee3, 0xa2ba01f5, 0xc69200b3, 0x00000000}},  //   _andž, ्वज्, _האי_,\n  { {0x60c201e8, 0xc9530049, 0x00000000, 0x00000000}},  //   gnom, ימע_,   ,\n  { {0x4429212c, 0xc43a00b6, 0x6d5a2ee4, 0x00000000}},  //   maa_, _אתרי, _apta,\n  { {0x4429021e, 0xc10505f3, 0x38a22ee5, 0x00000000}},  //   laa_, _موسي, _móra_,\n  { {0xb87b0181, 0xf2d200b3, 0x290a0b33, 0x00000000}},  //   ilíb, _העם_, íbal_,\n  { {0x4429021e, 0x7ce50051, 0x27ed01dc, 0x00000000}},  //   naa_, fóra, ženy_,\n  { {0xddc113c7, 0x7b750076, 0x63bb012d, 0x00000000}},  //   _dalš, اطبا, _žunj,\n  { {0x44292349, 0xd90c00a1, 0xc3340104, 0x00000000}},  //   haa_, ڈیو_, בוץ_,\n  { {0x4429021e, 0x26c30059, 0xd90c025a, 0x00000000}},  //   kaa_, dnjo_, ویو_,\n  { {0x44290943, 0xe73a008b, 0x3da4005c, 0x00000000}},  //   jaa_, нем_, _труб,\n  { {0x44290622, 0x7c290190, 0xa3b30316, 0x00000000}},  //   daa_, maer, _झेल_,\n  { {0x25ef001c, 0x78a60023, 0x38a22a22, 0x00000000}},  //   _आणखी_, shkv, _dóra_,\n  { {0x4429000b, 0xceb200b3, 0x610c0180, 0x00000000}},  //   faa_, זים_, _oğla,\n  { {0x4429194a, 0x38a20428, 0x7c291d56, 0x00000000}},  //   gaa_, _fóra_, naer,\n  { {0x38a20046, 0x78a4000b, 0x60c20b4a, 0x00000000}},  // [8fe0] _góra_, _iliv, vnom,\n  { {0x7c290016, 0x610c005d, 0x4429016e, 0x00000000}},  //   haer, _ağla, aaa_,\n  { {0x7c29022b, 0x442901c5, 0xc6930049, 0x00000000}},  //   kaer, baa_, _לאז_,\n  { {0x1b190055, 0xd5ad026c, 0x673b0235, 0x00000000}},  //   _দিনে_, _کہہ_, šuje,\n  { {0x60c2010f, 0x7c292ee6, 0x78a400e7, 0x00000000}},  //   rnom, daer, _mliv,\n  { {0x78a400f6, 0x3fcb0241, 0x00000000, 0x00000000}},  //   _lliv, ردنی_,   ,\n  { {0x78a42e72, 0xf9870447, 0xc05a279d, 0x00000000}},  //   _oliv, _اب_, _прац_,\n  { {0x7c291a97, 0x26c30e0d, 0x00000000, 0x00000000}},  //   gaer, znjo_,   ,\n  { {0x40930a4f, 0x26da0022, 0x00000000, 0x00000000}},  //   _القر, _okpo_,   ,\n  { {0x78a40020, 0x44290020, 0x629e01d6, 0x00000000}},  //   _aliv, zaa_, nkpo,\n  { {0x78a42ee7, 0x7c290058, 0x2d9801e3, 0x00000000}},  //   _bliv, baer, _ære_,\n  { {0x78a401d6, 0xe3bf008e, 0x7cc8013e, 0x00000000}},  //   _cliv, _leña_, běra,\n  { {0x4429021e, 0x26c3050f, 0xfcd30014, 0x00000000}},  //   vaa_, tnjo_, _اينج,\n  { {0x386d0c76, 0x442900e7, 0x2d980010, 0x00000000}},  //   žer_, waa_, _üres_,\n  { {0x4429021e, 0x00000000, 0x00000000, 0x00000000}},  //   taa_,   ,   ,\n  { {0x893301d8, 0x6aba0190, 0x6e2a0016, 0x00000000}},  //   _اعوا, litf, hafb,\n  { {0x4429021e, 0x26c300ca, 0x68ed01f3, 0x00000000}},  // [8ff0] raa_, pnjo_, _ihad,\n  { {0x27e90756, 0x7ce5009f, 0x44290ac0, 0x00000000}},  //   _izan_, jórn, saa_,\n  { {0x4429021e, 0x68ed0145, 0x27ec0036, 0x00000000}},  //   paa_, _khad, ędne_,\n  { {0x0467005e, 0x6f0d0d7b, 0x00000000, 0x00000000}},  //   _стом, íaco,   ,\n  { {0x3f6901ee, 0x68ed035e, 0x68ff006b, 0x00000000}},  //   тило_, _mhad, _miqd,\n  { {0x1eea0167, 0xee3602dc, 0x7cc10089, 0x00000000}},  //   نونی_, анш_, pērk,\n  { {0x63ad0207, 0x200e000c, 0x7c290032, 0x00000000}},  //   lzan, ækið_, taer,\n  { {0x1b190044, 0x68ed1503, 0x27e9026d, 0x00000000}},  //   _দিবে_, _nhad, _ozan_,\n  { {0x63ad0be3, 0x7c291d58, 0xbf150137, 0x00000000}},  //   nzan, raer, _ضواب,\n  { {0xdfd80265, 0x60c901e3, 0x68ed0020, 0x00000000}},  //   _със_, _hjem, _ahad,\n  { {0x09e50264, 0x7e6300b0, 0x7cc800b9, 0x00000000}},  //   ронн, menp, měrn,\n  { {0x6d430207, 0x68ed0012, 0x7e630fa8, 0x00000000}},  //   muna, _chad, lenp,\n  { {0x6d43011f, 0x78a42ee8, 0x60db00e7, 0x00000000}},  //   luna, _vliv, _mkum,\n  { {0x63ad0871, 0x8f9a01ce, 0x7e6317f7, 0x00000000}},  //   dzan, דישי, nenp,\n  { {0x68ed0051, 0x60db014a, 0xb8250044, 0x00000000}},  //   _fhad, _okum, _ভারত_,\n  { {0x60c90119, 0xa7fb0211, 0x68ed002b, 0x00000000}},  //   _njem, seña, _ghad,\n\n  { {0xd46718ea, 0x6d430504, 0x29000c56, 0x00000000}},  // [9000] шите_, huna, _iiia_,\n  { {0x29071a0c, 0x6d432e23, 0xb87b1505, 0x00000000}},  //   _kuna_, kuna, plíc,\n  { {0x6d432ee9, 0x26d800c4, 0xa06a2eea, 0x00000000}},  //   juna, moro_, кажа_,\n  { {0x3ea505ce, 0x29072de7, 0x26d80617, 0x00000000}},  //   _allt_, _muna_, loro_,\n  { {0x2907000d, 0x63ad0036, 0x60c92c63, 0x00000000}},  //   _luna_, czan, _djem,\n  { {0x8d7602fd, 0x60c90219, 0x26d80419, 0x00000000}},  //   لاعا, _ejem, noro_,\n  { {0x6d43020c, 0x6e2a00bb, 0x7d780014, 0x00000000}},  //   guna, rafb, امبر_,\n  { {0x26d801dd, 0x63bb00d0, 0x60c92eeb, 0x00000000}},  //   horo_, _žuni, _gjem,\n  { {0x26d80091, 0x7ac619c9, 0x68ed005b, 0x00000000}},  //   koro_, исое, _rhad,\n  { {0x29070ac8, 0x781f02fb, 0x68ed00ab, 0x00000000}},  //   _buna_, पर्क_, _shad,\n  { {0x6d43003b, 0x63ad0207, 0x29072eec, 0x00000000}},  //   cuna, zzan, _cuna_,\n  { {0x29070010, 0x6e2800f8, 0x7ae11f74, 0x00000000}},  //   _duna_, _hedb, allt,\n  { {0x61050006, 0x26d808d3, 0xf804007e, 0x00000000}},  //   _vėli, foro_, ючэн,\n  { {0x26d82eed, 0x67240022, 0xdb9b009b, 0x00000000}},  //   goro_, _dwij, _בסדר,\n  { {0x6e2801bf, 0x2907027e, 0x7d080b3d, 0x00000000}},  //   _medb, _guna_, _juds,\n  { {0x1b190055, 0x63ad0129, 0x7cc10089, 0x00000000}},  //   _দিতে_, tzan, tēri,\n  { {0x6d432eee, 0x26d80019, 0x78bd01c2, 0x00000000}},  // [9010] zuna, boro_, misv,\n  { {0x63ad0036, 0x6d430058, 0x7d0800c7, 0x00000000}},  //   rzan, yuna, _ouds,\n  { {0x2f0b0018, 0x63ad0036, 0x67242eef, 0x00000000}},  //   _søg_, szan, _zwij,\n  { {0x78bd130e, 0xa49b00f6, 0x6d432da0, 0x00000000}},  //   nisv, _diòc, vuna,\n  { {0x95e9026c, 0x7e632ef0, 0x7ae10016, 0x00000000}},  //   _جبکہ_, tenp, yllt,\n  { {0x6d43006a, 0x7d0811b8, 0x00000000, 0x00000000}},  //   tuna, _buds,   ,\n  { {0x7e632ef1, 0x2ca60193, 0x365c009b, 0x00000000}},  //   renp, _blod_, דכונ,\n  { {0x60db0020, 0x3a2701aa, 0x60c90450, 0x00000000}},  //   _ukum, _senp_, _ujem,\n  { {0xdd91026c, 0x6d43022b, 0x290712fc, 0x00000000}},  //   توں_, suna, _suna_,\n  { {0x29070c33, 0x6d43006a, 0x2900006c, 0x00000000}},  //   _puna_, puna, _siia_,\n  { {0xf76900b6, 0x26d80198, 0x382a007c, 0x00000000}},  //   _רק_, voro_, лжно_,\n  { {0x78bd01e5, 0x2ca6005b, 0x00000000, 0x00000000}},  //   gisv, _glod_,   ,\n  { {0x6f09008e, 0x2900006c, 0x00000000, 0x00000000}},  //   _juec, _viia_,   ,\n  { {0xd63a007e, 0x62951ae3, 0x290703ef, 0x00000000}},  //   ыямі_, _nozo, _tuna_,\n  { {0x6f0122b7, 0x26d80a64, 0x38a9009d, 0x00000000}},  //   _milc, roro_, _sûre_,\n  { {0x26d82ef2, 0x672400b5, 0x394519d6, 0x00000000}},  //   soro_, _twij, muls_,\n  { {0x26d80009, 0x6295087a, 0x6f09008e, 0x00000000}},  // [9020] poro_, _bozo, _nuec,\n  { {0x62950035, 0xb87b01e5, 0x6f0100fa, 0x00000000}},  //   _cozo, nlín, _nilc,\n  { {0x62950161, 0xb87b0048, 0x00000000, 0x00000000}},  //   _dozo, ilín,   ,\n  { {0x7ce5008e, 0xef86007e, 0x6f0901a2, 0x00000000}},  //   fórm, йлеп, _buec,\n  { {0x4420000b, 0xdee6003b, 0x3ebc05cb, 0x00000000}},  //   mbi_, боди, tivt_,\n  { {0x6f092ef3, 0x6295002d, 0x7d080190, 0x00000000}},  //   _duec, _gozo, _puds,\n  { {0x2ca6016e, 0x6e2807c4, 0x4420010e, 0x00000000}},  //   _plod_, _vedb, obi_,\n  { {0x44202ef4, 0x39450129, 0x5b14007c, 0x00000000}},  //   nbi_, duls_, омит,\n  { {0x6e28005a, 0x00000000, 0x00000000, 0x00000000}},  //   _tedb,   ,   ,\n  { {0xd91a1fea, 0xc6010044, 0x4420057e, 0x00000000}},  //   льм_, ্রতা_, hbi_,\n  { {0x78bd1f47, 0x1958007e, 0x394506ed, 0x00000000}},  //   tisv, шаны_, guls_,\n  { {0xab2a00ed, 0x290c006b, 0x44201adc, 0x00000000}},  //   _бода_, rqda_, jbi_,\n  { {0x442002aa, 0x274b007c, 0xa7fb04de, 0x00000000}},  //   dbi_, ычно_, reño,\n  { {0x442d11b0, 0xa7fb0211, 0x7bdc005d, 0x00000000}},  //   _že_, seño, ğrud,\n  { {0x3abb00b6, 0x62950142, 0x67220023, 0x00000000}},  //   _תמונ, _rozo, _çojn,\n  { {0x941905a7, 0xd4980816, 0x44200016, 0x00000000}},  //   ржат_, бру_, gbi_,\n  { {0x62950395, 0x6115005f, 0xb87b0048, 0x00000000}},  // [9030] _pozo, _işlə, llío,\n  { {0x7d02002a, 0xf8bf009d, 0x4420006c, 0x00000000}},  //   _lios, lié_, abi_,\n  { {0x6f092a65, 0x44200e69, 0x00000000, 0x00000000}},  //   _suec, bbi_,   ,\n  { {0xb87b0048, 0x7d0200b4, 0xf8bf0068, 0x00000000}},  //   ilío, _nios, nié_,\n  { {0x629508de, 0x6f010ad0, 0xdea1025a, 0x00000000}},  //   _tozo, _pilc, ویری,\n  { {0x88cf0044, 0x442b006b, 0xfd110025, 0x00000000}},  //   রতিক, _hec_, وجب_,\n  { {0x6f010089, 0x442b023a, 0x3135012b, 0x00000000}},  //   _vilc, _kec_, _фебр,\n  { {0x802700a6, 0x7ce50036, 0x6f0100b4, 0x00000000}},  //   _درآم, mórk, _wilc,\n  { {0x7d021d59, 0x442b1994, 0xf8bf00f4, 0x00000000}},  //   _dios, _mec_, dié_,\n  { {0x443900ca, 0x442b01c5, 0x44200091, 0x00000000}},  //   _lds_, _lec_, zbi_,\n  { {0xf8660088, 0xf8bf00f4, 0xb87b0399, 0x00000000}},  //   овно, fié_, rlín,\n  { {0x443917cf, 0xc6890104, 0x442b0020, 0x00000000}},  //   _nds_, _בא_, _nec_,\n  { {0x2cad0018, 0x442000ca, 0x7c2b01c5, 0x00000000}},  //   mhed_, vbi_, _iegr,\n  { {0x394500d4, 0x44391e55, 0x442b00f8, 0x00000000}},  //   puls_, _ads_, _aec_,\n  { {0x660309f1, 0x44390082, 0x645d00ea, 0x00000000}},  //   дпра, _bds_, _bbsi,\n  { {0x03260265, 0x2cad0030, 0xf8bf00f4, 0x00000000}},  //   ждан, nhed_, cié_,\n  { {0x442013a3, 0x7c2b0010, 0x2bf60049, 0x00000000}},  // [9040] rbi_, _megr, ַמען_,\n  { {0x7c2b2ef5, 0x442b0009, 0x644f0197, 0x00000000}},  //   _legr, _eec_, _ecci,\n  { {0x442b0009, 0xa3e60067, 0x44392ef6, 0x00000000}},  //   _fec_, _फरक_, _fds_,\n  { {0x442b0180, 0xf0ba00a1, 0xddc80165, 0x00000000}},  //   _gec_, جائش_, _nadš,\n  { {0xf8b300b6, 0x7d020051, 0xbe8a0cee, 0x00000000}},  //   ושא_, _rios, иске_,\n  { {0xbea3012b, 0x442b2ef7, 0x7d020036, 0x00000000}},  //   мачк, _zec_, _sios,\n  { {0x7d020036, 0x10a6019d, 0x443910be, 0x00000000}},  //   _pios, _дивн, _yds_,\n  { {0x442b00f6, 0x2cad0905, 0x14da0061, 0x00000000}},  //   _xec_, ghed_, ढविण,\n  { {0x7cc1001e, 0x7c2b00ab, 0xfbcf00a1, 0x00000000}},  //   vērt, _degr, ہتی_,\n  { {0x7d020036, 0xb87b0048, 0x2bb70025, 0x00000000}},  //   _wios, tlío, غاية_,\n  { {0x29180065, 0xf8bf00f4, 0x7d0200c4, 0x00000000}},  //   ëra_, tié_, _tios,\n  { {0x7c2b275e, 0xb87b002a, 0x2cad0133, 0x00000000}},  //   _gegr, rlío, ched_,\n  { {0x442b037e, 0x29180ebc, 0x81d60055, 0x00000000}},  //   _rec_, ūra_, াইট_,\n  { {0x44390059, 0xaa580389, 0x6ee400d4, 0x00000000}},  //   _sds_, _طلبا_, fòbi,\n  { {0x442b0089, 0x25db006e, 0xf8bf0299, 0x00000000}},  //   _pec_, _खुशी_, pié_,\n  { {0x291e0129, 0x00000000, 0x00000000, 0x00000000}},  //   mpta_,   ,   ,\n  { {0x442b0142, 0x44391eb6, 0x00000000, 0x00000000}},  // [9050] _vec_, _vds_,   ,\n  { {0x44390066, 0x04eb0044, 0x7cd3001a, 0x00000000}},  //   _wds_, কদের_, măre,\n  { {0x644f00e7, 0x00000000, 0x00000000, 0x00000000}},  //   _tcci,   ,   ,\n  { {0x644f0207, 0x4439008e, 0x26c40142, 0x00000000}},  //   _ucci, _uds_, émov_,\n  { {0x8e852ef8, 0x7c2b0335, 0xb4d70164, 0x00000000}},  //   згле, _regr, ाकी_,\n  { {0x7c2b0207, 0xa137007a, 0x7ce51665, 0x00000000}},  //   _segr, _ورزش, móri,\n  { {0x2cad2ef9, 0x62870a61, 0x7ce50e04, 0x00000000}},  //   thed_, _injo, lóri,\n  { {0x644d149a, 0x7cc10089, 0x271800b9, 0x00000000}},  //   ngai, vērs, něný_,\n  { {0x2cad0030, 0x5f770014, 0x7c2b00ca, 0x00000000}},  //   rhed_, _بازر, _vegr,\n  { {0x2cad0038, 0x7c2b0007, 0x00000000, 0x00000000}},  //   shed_, _wegr,   ,\n  { {0xa9692efa, 0x60cb0082, 0x2cad0133, 0x00000000}},  //   щина_, ongm, phed_,\n  { {0x2904010e, 0x661500b4, 0x00000000, 0x00000000}},  //   öma_, eczk,   ,\n  { {0x291e001a, 0x7ce501e5, 0x00000000, 0x00000000}},  //   apta_, jóri,   ,\n  { {0x6d430197, 0x00000000, 0x00000000, 0x00000000}},  //   orna,   ,   ,\n  { {0x09e2007e, 0x23620022, 0x00000000, 0x00000000}},  //   _пошн, _spkj_,   ,\n  { {0x62870181, 0x24990146, 0x00000000, 0x00000000}},  //   _anjo, _cosm_,   ,\n  { {0x7ce51b6d, 0x7cd30035, 0x00000000, 0x00000000}},  // [9060] góri, căre,   ,\n  { {0x644d2efb, 0x9696012b, 0x6d43016c, 0x00000000}},  //   agai, _хриш, krna,\n  { {0x386001d5, 0xd24f0014, 0x869b0049, 0x00000000}},  //   _kbir_, انم_, _הייז,\n  { {0x628700ab, 0x6d432efc, 0x2f100129, 0x00000000}},  //   _enjo, drna, _pàg_,\n  { {0x4432006a, 0xecd10044, 0x98bf0035, 0x00000000}},  //   may_, াতাড, lută_,\n  { {0x4432066d, 0x7f420efe, 0x33200146, 0x00000000}},  //   lay_, rroq, mpix_,\n  { {0x4c9401e0, 0xacf807d0, 0x33200253, 0x00000000}},  //   дийс, онку_, lpix_,\n  { {0x4432006a, 0x7f420957, 0x00000000, 0x00000000}},  //   nay_, proq,   ,\n  { {0x33200d32, 0x6d430051, 0x60c2086f, 0x00000000}},  //   npix_, arna, miom,\n  { {0x44320811, 0x60c20a64, 0x644d2efd, 0x00000000}},  //   hay_, liom, zgai,\n  { {0x05db0201, 0x4432110c, 0x28f901fb, 0x00000000}},  //   _मुंब, kay_, жень_,\n  { {0x48ab013b, 0x44320cec, 0x60c2007f, 0x00000000}},  //   стом_, jay_, niom,\n  { {0x44320038, 0x765c0016, 0x2d6e00b9, 0x00000000}},  //   day_, ffry, _hře_,\n  { {0x2be10204, 0x291e02e1, 0x6d4a00e7, 0x00000000}},  //   _पडता, ppta_, oufa,\n  { {0x6d4a27a4, 0x44322efe, 0x60c22eff, 0x00000000}},  //   nufa, fay_, kiom,\n  { {0x7ce502d5, 0x44322f00, 0xb4d7006e, 0x00000000}},  //   tóri, gay_, ाके_,\n  { {0x644d1e4a, 0x28580025, 0x78ad1c49, 0x00000000}},  // [9070] rgai, _رؤية_, _ilav,\n  { {0x78ad0428, 0x290e0020, 0x644d002d, 0x00000000}},  //   _hlav, _kufa_, sgai,\n  { {0x4432006a, 0x7ce50181, 0x26c30059, 0x00000000}},  //   bay_, sóri, mijo_,\n  { {0x26c30059, 0x60c20419, 0xd1380245, 0x00000000}},  //   lijo_, giom, яху_,\n  { {0x5ec50044, 0x78ad012d, 0x7eaf0292, 0x00000000}},  //   _লীগে, _mlav, _løpe,\n  { {0x78ad029a, 0x26c30059, 0x628701d5, 0x00000000}},  //   _llav, nijo_, _unjo,\n  { {0x6d4300f4, 0x78ad0052, 0x60c200fa, 0x00000000}},  //   urna, _olav, biom,\n  { {0xdb00009d, 0x26c30087, 0x6d430ede, 0x00000000}},  //   lymè, hijo_, rrna,\n  { {0x1ee70167, 0x81df0044, 0x765c0016, 0x00000000}},  //   _فوری_, দেশ_, yfry,\n  { {0x443201aa, 0x26c30059, 0x6d4a0026, 0x00000000}},  //   zay_, jijo_, bufa,\n  { {0x81df08b7, 0x26c3024f, 0x78ad0d79, 0x00000000}},  //   দের_, dijo_, _blav,\n  { {0x78ad2f01, 0xb4d7007d, 0x644a0010, 0x00000000}},  //   _clav, ाको_, őfiz,\n  { {0x44320263, 0x610c011f, 0x26c30059, 0x00000000}},  //   vay_, _işle, fijo_,\n  { {0x44322f02, 0x60c20036, 0x78ad006c, 0x00000000}},  //   way_, ziom, _elav,\n  { {0x4432224b, 0x78ad238d, 0x9985007a, 0x00000000}},  //   tay_, _flav, _آلبو,\n  { {0x78ad0295, 0x61fa000c, 0x1ad50044, 0x00000000}},  //   _glav, _útli, _হওয়া,\n  { {0xa857012e, 0x44322f03, 0x26c30059, 0x00000000}},  // [9080] _חיפה_, ray_, bijo_,\n  { {0x4432006a, 0x26c301d9, 0x33200009, 0x00000000}},  //   say_, cijo_, rpix_,\n  { {0x4432224b, 0x60c219db, 0x290e00f6, 0x00000000}},  //   pay_, tiom, _xufa_,\n  { {0x3b070c0d, 0x3320021f, 0x4fea0216, 0x00000000}},  //   _linq_, ppix_, омен_,\n  { {0x60c206aa, 0x60c301aa, 0x3eac00e0, 0x00000000}},  //   riom, ènma, _pldt_,\n  { {0xd25206b4, 0x60c20006, 0x6d58000c, 0x00000000}},  //   _جنس_, siom, ttva,\n  { {0x60c20026, 0x2138016c, 0x63a40133, 0x00000000}},  //   piom, _uvrh_, lyin,\n  { {0x26c30059, 0x5ba60088, 0x629c08d0, 0x00000000}},  //   zijo_, дроз, _horo,\n  { {0x6d5820b9, 0x63a401a3, 0x0a6a0b11, 0x00000000}},  //   stva, nyin, орни_,\n  { {0x78ad0119, 0x3b0700f4, 0x68e40518, 0x00000000}},  //   _slav, _cinq_, _akid,\n  { {0x6da600b8, 0x78ad0209, 0x629c0020, 0x00000000}},  //   _تمام, _plav, _moro,\n  { {0xa9c301fb, 0x629c01a3, 0x68f6160e, 0x00000000}},  //   тськ, _loro, _chyd,\n  { {0x26c30059, 0x6f081259, 0x2fc00051, 0x00000000}},  //   tijo_, _kidc, úigh_,\n  { {0x629c001a, 0xeb97003b, 0x68e40032, 0x00000000}},  //   _noro, _циљ_, _ekid,\n  { {0x26c307a0, 0x2a6c0026, 0x7cd30035, 0x00000000}},  //   rijo_, medb_, lăra,\n  { {0x6b8207f9, 0x26c30059, 0x63a400ab, 0x00000000}},  //   _krog, sijo_, fyin,\n  { {0x7ce50051, 0x26c308fb, 0x00000000, 0x00000000}},  // [9090] mórt, pijo_,   ,\n  { {0x27e9011c, 0xddc3001a, 0x2a6c0026, 0x00000000}},  //   _iyan_, nenţ, nedb_,\n  { {0x629c0036, 0x610c005d, 0x00000000, 0x00000000}},  //   _doro, _oğlu,   ,\n  { {0x38a208ab, 0x92bf0044, 0x63a42f04, 0x00000000}},  //   _fóru_, ঁকে_, byin,\n  { {0x629c2f05, 0x63b60046, 0x6f080009, 0x00000000}},  //   _foro, czyn, _bidc,\n  { {0xd35600b6, 0x629c2f06, 0x672d00e7, 0x00000000}},  //   _אישי_, _goro, _mwaj,\n  { {0xddc3001a, 0x20120051, 0x6114007e, 0x00000000}},  //   denţ, íniú_, _адсу,\n  { {0xf1b2007b, 0x6b820190, 0xeb990797, 0x00000000}},  //   _עסן_, _brog, зии_,\n  { {0x68f6018e, 0x27e9011c, 0xa6db000c, 0x00000000}},  //   _rhyd, _nyan_, luðu,\n  { {0x6b820046, 0xddc3001a, 0xdd95007e, 0x00000000}},  //   _drog, genţ, _пазы,\n  { {0x6b820207, 0x27e9011c, 0xa6db000c, 0x00000000}},  //   _erog, _ayan_, nuðu,\n  { {0x6b82002d, 0x2d980129, 0x00000000, 0x00000000}},  //   _frog, _àrea_,   ,\n  { {0x1b190055, 0x7ba70025, 0x29090066, 0x00000000}},  //   _দিকে_, _تصام, _diaa_,\n  { {0x27e9011c, 0x394c0146, 0x9f560010, 0x00000000}},  //   _dyan_, buds_, égét_,\n  { {0x629c0e6d, 0x27e900e0, 0x24f61606, 0x00000000}},  //   _roro, _eyan_, ечар,\n  { {0x629c0047, 0x68e42f07, 0x63a400b0, 0x00000000}},  //   _soro, _ukid, tyin,\n  { {0xd8d70049, 0x4343022a, 0x7ae10026, 0x00000000}},  // [90a0] _רופט_, летв, oolt,\n  { {0x63b60036, 0x996e006b, 0x63a40133, 0x00000000}},  //   rzyn, nəş_, ryin,\n  { {0x0657007b, 0x629c0035, 0x63b60036, 0x00000000}},  //   _אייך_, _voro, szyn,\n  { {0x7ae1000c, 0xddc3001a, 0x63a40133, 0x00000000}},  //   holt, zenţ, pyin,\n  { {0x629c0313, 0x6eed0489, 0x7ae12f08, 0x00000000}},  //   _toro, públ, kolt,\n  { {0x7cd3001a, 0x1fdf0044, 0x6b820065, 0x00000000}},  //   văra, _বৃহস, _rrog,\n  { {0xddc30035, 0x7ae10516, 0x00000000, 0x00000000}},  //   venţ, dolt,   ,\n  { {0x91e300da, 0x60c00058, 0x7ce5000c, 0x00000000}},  //   _сосе, _ummm, dórs,\n  { {0xddc3001a, 0x7ac6005e, 0xbbca0061, 0x00000000}},  //   tenţ, есне, ापेक,\n  { {0x394c0129, 0x27e90837, 0x00000000, 0x00000000}},  //   tuds_, _ryan_,   ,\n  { {0x0c2601e1, 0xddc3001a, 0x02b70049, 0x00000000}},  //   _змен, renţ, גליך_,\n  { {0xeb9a026b, 0x013700b6, 0x7cd3001a, 0x00000000}},  //   _ние_, ערכת_, păra,\n  { {0xfaa62f09, 0x7ae10daf, 0x00000000, 0x00000000}},  //   _падо, bolt,   ,\n  { {0x7ae1108c, 0x38a20051, 0x00000000, 0x00000000}},  //   colt, _sórt_,   ,\n  { {0x7ce50181, 0x45d406b6, 0x7e7a0479, 0x00000000}},  //   pórt, горс, _matp,\n  { {0x672d2f0a, 0x27e90058, 0x00000000, 0x00000000}},  //   _twaj, _tyan_,   ,\n  { {0x3255017f, 0x672d0020, 0xcb130049, 0x00000000}},  // [90b0] квар, _uwaj, ָלע_,\n  { {0x64480089, 0x7e7a0091, 0x555200a1, 0x00000000}},  //   _ēdie, _natp, دھیر,\n  { {0x35f501ee, 0x00000000, 0x00000000, 0x00000000}},  //   _шпор,   ,   ,\n  { {0xc5f201f8, 0x7ae10010, 0x90e7069f, 0x00000000}},  //   _כדי_, zolt, رسان,\n  { {0x442906fe, 0x64360049, 0xef180088, 0x00000000}},  //   mba_, _בארא_, емі_,\n  { {0x4429010a, 0x7bdc005a, 0x8fa2007c, 0x00000000}},  //   lba_, ğrul, раше,\n  { {0x7ae104b9, 0x6917001e, 0x442912dd, 0x00000000}},  //   volt, _aģen, oba_,\n  { {0xfebb007a, 0x4c85007c, 0x00000000, 0x00000000}},  //   _کارت_, тлив,   ,\n  { {0x4429011c, 0x7ae10232, 0x00000000, 0x00000000}},  //   iba_, tolt,   ,\n  { {0x44290066, 0x89a9004d, 0x9f040647, 0x00000000}},  //   hba_, дков_, _موقو,\n  { {0x44290010, 0x7ae10010, 0x2d9a00ea, 0x00000000}},  //   kba_, rolt, øpet_,\n  { {0x442901d5, 0x7ae10ef1, 0xe73a003b, 0x00000000}},  //   jba_, solt, мем_,\n  { {0x7c29033b, 0x44290b41, 0x98bf0aec, 0x00000000}},  //   mber, dba_, nutę_,\n  { {0xaa450256, 0x44292f0b, 0xbb4203f3, 0x00000000}},  //   _рекл, eba_, _тешк,\n  { {0x65c30c27, 0x87070088, 0x7c290032, 0x00000000}},  //   абра, терв_, ober,\n  { {0x7c290218, 0x44292f0c, 0xf74a0379, 0x00000000}},  //   nber, gba_, _قلبي_,\n  { {0x130a008b, 0x7c29125c, 0x78bd0023, 0x00000000}},  // [90c0] днай_, iber, ërve,\n  { {0x4429001a, 0x7c29014a, 0x96fa0025, 0x00000000}},  //   aba_, hber, _تعبر_,\n  { {0x44291864, 0xf8c603d7, 0x644b0b33, 0x00000000}},  //   bba_, _लगाय, ógic,\n  { {0x64a6007e, 0x4429033f, 0x7e7a023a, 0x00000000}},  //   _рама, cba_, _satp,\n  { {0xdfcf0054, 0x7c290193, 0xddc30059, 0x00000000}},  //   ييم_, dber, venš,\n  { {0x3ce60030, 0x7c2901a2, 0xb87b0010, 0x00000000}},  //   _skov_, eber, llít,\n  { {0x628e00b5, 0x7d0b007f, 0x127b0049, 0x00000000}},  //   _inbo, _bigs, _קאלע,\n  { {0x7c290fcf, 0x29180181, 0x3ced00f6, 0x00000000}},  //   gber, íram_, glev_,\n  { {0x7d0b01c3, 0xe29f000c, 0x00000000, 0x00000000}},  //   _digs, _guðs_,   ,\n  { {0x44290c76, 0xc33300b6, 0xa021000c, 0x00000000}},  //   zba_, סות_, _þörf,\n  { {0x7c290207, 0x44290046, 0x7cd30035, 0x00000000}},  //   bber, yba_, căro,\n  { {0xa8a70088, 0x8c43007e, 0x00000000, 0x00000000}},  //   трок, _веце,   ,\n  { {0x58d401e0, 0x628e016b, 0x44290161, 0x00000000}},  //   роят, _onbo, vba_,\n  { {0x6e380009, 0xddda0006, 0x44290554, 0x00000000}},  //   navb, _natū, wba_,\n  { {0x26cd0166, 0x55582f0d, 0x00000000, 0x00000000}},  //   đeo_, каря_,   ,\n  { {0x628e09ac, 0x442924f2, 0x00000000, 0x00000000}},  //   _anbo, uba_,   ,\n  { {0x44292f0e, 0x93f506b6, 0x6d4a010f, 0x00000000}},  // [90d0] rba_, упац, hrfa,\n  { {0xf1a7003b, 0x442918e1, 0x7c2916f8, 0x00000000}},  //   крен, sba_, zber,\n  { {0xd011023c, 0x7c29005b, 0x25a50039, 0x00000000}},  //   ملا_, yber, älld_,\n  { {0xf1c3010a, 0x628e0032, 0x30a7005e, 0x00000000}},  //   _rašė_, _enbo, ързв,\n  { {0x7d0b0030, 0xb4c1006e, 0xb87b2f0f, 0x00000000}},  //   _rigs, ्ची_, llís,\n  { {0x7d0b01d6, 0x00000000, 0x00000000, 0x00000000}},  //   _sigs,   ,   ,\n  { {0x7d0b0058, 0x3ced2f10, 0xc69400b3, 0x00000000}},  //   _pigs, tlev_, יאס_,\n  { {0x7c290e9f, 0xb87b0048, 0x7eb400f6, 0x00000000}},  //   uber, ilís, _ràpe,\n  { {0x81e80055, 0x3ced0030, 0x7d0b2f11, 0x00000000}},  //   মেদ_, rlev_, _vigs,\n  { {0x7c290474, 0x3ced0190, 0x00000000, 0x00000000}},  //   sber, slev_,   ,\n  { {0x7c290109, 0xb87b2f12, 0x7d0b00e0, 0x00000000}},  //   pber, roín, _tigs,\n  { {0xc3240044, 0x7d0b00d9, 0x00000000, 0x00000000}},  //   _পিসি_, _uigs,   ,\n  { {0x2a7c00f6, 0x4c9a00a3, 0xf7720a4f, 0x00000000}},  //   _favb_, _רבנו, حاج_,\n  { {0x1bb80070, 0x998500a1, 0x2cad00ab, 0x00000000}},  //   _جامع_, _ملتو, lked_,\n  { {0xd46a00ed, 0x628e00f6, 0x2cad0133, 0x00000000}},  //   ниве_, _rnbo, oked_,\n  { {0x2cad13ec, 0x00000000, 0x00000000, 0x00000000}},  //   nked_,   ,   ,\n  { {0x2f190263, 0xe61a00ed, 0x577a0025, 0x00000000}},  // [90e0] _nèg_, _пдп_, _أصبح_,\n  { {0xa6db000c, 0x68e6013e, 0xb87b1ade, 0x00000000}},  //   yrði, lokd, blís,\n  { {0x673b1a2d, 0x672401ed, 0xb87b00fa, 0x00000000}},  //   šujt, _htij, clís,\n  { {0x25a52f13, 0x26ca00e0, 0x00000000, 0x00000000}},  //   älle_, libo_,   ,\n  { {0xe3b2035b, 0xde58008b, 0xbea60454, 0x00000000}},  //   _طرح_, валі_, ладк,\n  { {0xf1240167, 0xdee3041f, 0x2ea600a1, 0x00000000}},  //   _نظری, бочи, دھری_,\n  { {0xccf800b9, 0x21750478, 0x00000000, 0x00000000}},  //   _opět_, _кутр,   ,\n  { {0x248003d4, 0x26ca2f14, 0x6d4a0796, 0x00000000}},  //   ndim_, hibo_, rrfa,\n  { {0x24800051, 0x26ca0e20, 0x61ee0016, 0x00000000}},  //   idim_, kibo_, _hybl,\n  { {0xee37007e, 0x5a342f15, 0x9e6502fd, 0x00000000}},  //   _бнф_, шнот, _نامن,\n  { {0xd917007c, 0x67241727, 0xddc804eb, 0x00000000}},  //   лья_, _atij, _hadž,\n  { {0x2cad0038, 0x61ee0082, 0x37d90044, 0x00000000}},  //   cked_, _mybl, _সরবর,\n  { {0x0a940500, 0x24800066, 0xdc3b0049, 0x00000000}},  //   _валю, ddim_, _טעאר,\n  { {0x4b7b0049, 0xddc80059, 0x29021c27, 0x00000000}},  //   _נאוו, _madž, amka_,\n  { {0x68e600ea, 0x61ee1fbf, 0x00000000, 0x00000000}},  //   bokd, _nybl,   ,\n  { {0x38c9026c, 0xb4c103d7, 0x00000000, 0x00000000}},  //   _جاتی_, ्चे_,   ,\n  { {0x36d50057, 0x925901f9, 0x38690032, 0x00000000}},  // [90f0] _вопр, каат_, _ibar_,\n  { {0xccf80224, 0x26ca0b33, 0x2f1901aa, 0x00000000}},  //   _zpět_, cibo_, _règ_,\n  { {0x386901d5, 0xa49b00f6, 0xa4d9007e, 0x00000000}},  //   _kbar_, _biòt, _адну_,\n  { {0xddc8016c, 0x3aeb0056, 0x61ee005b, 0x00000000}},  //   _badž, løpt_, _dybl,\n  { {0x443b005f, 0x38690023, 0x00000000, 0x00000000}},  //   maq_, _mbar_,   ,\n  { {0x443b178e, 0x171c0049, 0xa3d400ed, 0x00000000}},  //   laq_, עווע, _ѓорч,\n  { {0x38690022, 0xf2d2009b, 0xd658009b, 0x00000000}},  //   _obar_, _ועם_, איות_,\n  { {0x0b45017f, 0x443b006b, 0x00000000, 0x00000000}},  //   анин, naq_,   ,\n  { {0x2cad2f16, 0xb87b0048, 0x60cb1de5, 0x00000000}},  //   rked_, roíl, migm,\n  { {0x4e781095, 0x2cad0018, 0x60cb190e, 0x00000000}},  //   _محمد_, sked_, ligm,\n  { {0x67242962, 0xbd4b0379, 0xe8fa01fc, 0x00000000}},  //   _stij, _سؤال_, кло_,\n  { {0xa3b502fb, 0x2541010a, 0x76450093, 0x00000000}},  //   जना_, dėl_, _adhy,\n  { {0x26ca149a, 0x443b006b, 0x290201ee, 0x00000000}},  //   tibo_, daq_, rmka_,\n  { {0x7c3b001a, 0x49b9006d, 0x2b4d00ca, 0x00000000}},  //   laur, _لابد_, mrec_,\n  { {0xceb2019b, 0x26ca2412, 0x443b2f17, 0x00000000}},  //   חים_, ribo_, faq_,\n  { {0x26ca1eaf, 0x7c3b0f30, 0x6aa32f18, 0x00000000}},  //   sibo_, naur, _honf,\n  { {0x60cb049a, 0x24800bf7, 0x03230242, 0x00000000}},  // [9100] digm, rdim_, ждун,\n  { {0x7c3b0020, 0x236000b5, 0x6aa307e0, 0x00000000}},  //   haur, rtij_, _jonf,\n  { {0x6aa30197, 0x78a400b0, 0x7c3b011c, 0x00000000}},  //   _monf, _koiv, kaur,\n  { {0x443b0163, 0x2480005f, 0xef8600ed, 0x00000000}},  //   caq_, qdim_, илеп,\n  { {0x6fd60054, 0x7ccd001e, 0x7c3b0c2f, 0x00000000}},  //   جزائ, _mērķ, daur,\n  { {0x442001d9, 0x2b4d037a, 0x6aa32f19, 0x00000000}},  //   lci_, drec_, _nonf,\n  { {0x6143007e, 0x00000000, 0x00000000, 0x00000000}},  //   _мера,   ,   ,\n  { {0x8fa601e0, 0x78a40181, 0xc0e3007c, 0x00000000}},  //   _кабе, _noiv, _доск,\n  { {0x4425005f, 0x3d16013d, 0x6aa300c4, 0x00000000}},  //   _əl_, _पूरे_, _bonf,\n  { {0x443b006b, 0x78b60006, 0xfaa60900, 0x00000000}},  //   zaq_, _alyv, ршин,\n  { {0x81e80055, 0x44200224, 0x021700b3, 0x00000000}},  //   মের_, kci_, יחים_,\n  { {0x44200091, 0x7c3b25e9, 0x00000000, 0x00000000}},  //   jci_, caur,   ,\n  { {0x78a400f4, 0x442001ca, 0x7c220066, 0x00000000}},  //   _doiv, dci_, _ifor,\n  { {0x44200046, 0x6aa303e2, 0xa6db000c, 0x00000000}},  //   eci_, _gonf, yrðu,\n  { {0x78b6068f, 0x443b006b, 0x7ae816ec, 0x00000000}},  //   _flyv, taq_, modt,\n  { {0x7c220066, 0x64460009, 0x6eed0051, 0x00000000}},  //   _jfor, _cdki, lúbt,\n  { {0x443b2ca5, 0x8afd0224, 0x7cfe0065, 0x00000000}},  // [9110] raq_, stře, përf,\n  { {0x7c3b0035, 0x44200142, 0x443b11ca, 0x00000000}},  //   zaur, aci_, saq_,\n  { {0x442000b9, 0x60cb11c8, 0x443b013f, 0x00000000}},  //   bci_, tigm, paq_,\n  { {0x44200207, 0x7c2200ea, 0x443b0d82, 0x00000000}},  //   cci_, _nfor, qaq_,\n  { {0x44390129, 0x60cb0058, 0x6d410243, 0x00000000}},  //   _ies_, rigm, _svla,\n  { {0x7c22003b, 0x44390bd3, 0x7cd3001a, 0x00000000}},  //   _afor, _hes_, mări,\n  { {0x443903f2, 0x63ad011c, 0x7c3b09fb, 0x00000000}},  //   _kes_, lyan, taur,\n  { {0xec790364, 0x25d80104, 0x44390007, 0x00000000}},  //   упи_, יוון_, _jes_,\n  { {0x63ad0811, 0x60db0020, 0xdcb10011, 0x00000000}},  //   nyan, _ijum, _của_,\n  { {0x4439053e, 0x7c3b065c, 0x2b4d0129, 0x00000000}},  //   _les_, saur, rrec_,\n  { {0x7c22018e, 0x44392f1a, 0x78a400f4, 0x00000000}},  //   _ffor, _oes_, _poiv,\n  { {0x4439010a, 0x63ad2f1b, 0x7c22057b, 0x00000000}},  //   _nes_, kyan, _gfor,\n  { {0x442006a6, 0xef190046, 0x63ad0061, 0x00000000}},  //   vci_, _już_, jyan,\n  { {0x63ad011c, 0x44392f1c, 0x6aba010f, 0x00000000}},  //   dyan, _aes_, chtf,\n  { {0x3ea504bd, 0x44391818, 0x44200142, 0x00000000}},  //   _molt_, _bes_, tci_,\n  { {0x4439028c, 0x25a50039, 0x2d87006c, 0x00000000}},  //   _ces_, älla_, ivne_,\n  { {0x44392f1d, 0x4420205b, 0x64a30780, 0x00000000}},  // [9120] _des_, rci_, чата,\n  { {0x44202f1e, 0x44390004, 0x2912011c, 0x00000000}},  //   sci_, _ees_, _hiya_,\n  { {0xc69300b6, 0x44390129, 0x6a3a0049, 0x00000000}},  //   _זאת_, _fes_, רגעפ,\n  { {0x7c390066, 0x92d80055, 0x44390039, 0x00000000}},  //   _newr, াতে_, _ges_,\n  { {0xf98700a1, 0x7cd3001a, 0x80ca0044, 0x00000000}},  //   _کب_, cări, িকল্,\n  { {0x7c220a19, 0xdee3005e, 0x443900b5, 0x00000000}},  //   _sfor, почи, _zes_,\n  { {0x11da0054, 0x44390038, 0x609800a1, 0x00000000}},  //   _صورة_, _yes_, _پچاس_,\n  { {0x0cb80055, 0x29120811, 0x60db0065, 0x00000000}},  //   ুক্ত, _niya_, _gjum,\n  { {0xdfcf0054, 0x99850006, 0xbb470025, 0x00000000}},  //   _كيف_, kalų_, ملين_,\n  { {0x9e66007a, 0x68ed0cb2, 0x29000026, 0x00000000}},  //   _دارن, _skad, _ahia_,\n  { {0x63ad2f1f, 0x29120f91, 0x7cd3001a, 0x00000000}},  //   zyan, _biya_, zări,\n  { {0x2900001d, 0x7c2205b7, 0x7c390112, 0x00000000}},  //   _chia_, _ufor, _gewr,\n  { {0x44392f20, 0x657e181d, 0x7d1a002d, 0x00000000}},  //   _res_, _asph, _huts,\n  { {0x4439028c, 0x7d1a0004, 0x99850006, 0x00000000}},  //   _ses_, _kuts, galų_,\n  { {0x7cfe0065, 0x2ca6006c, 0xa49b00f6, 0x00000000}},  //   përd, _kood_, _biòp,\n  { {0x7cd3001a, 0x63ad2f21, 0x2ca60a2a, 0x00000000}},  //   tări, tyan, _jood_,\n  { {0x44390c30, 0x7d1a17f6, 0x7eb400f6, 0x00000000}},  // [9130] _ves_, _luts, _nàpo,\n  { {0x63ad134e, 0x2d8c049a, 0x44390007, 0x00000000}},  //   ryan, _orde_, _wes_,\n  { {0x44392f22, 0x63ad130b, 0x97d8089d, 0x00000000}},  //   _tes_, syan, _نظیر_,\n  { {0x443900f6, 0x2ca60007, 0x4395005e, 0x00000000}},  //   _ues_, _nood_, _дамс,\n  { {0x6e3a01ee, 0x2d8c0035, 0x3ea500ca, 0x00000000}},  //   _betb, _arde_, _polt_,\n  { {0x7d1a00e0, 0x81e80044, 0x867c0049, 0x00000000}},  //   _buts, মেই_, ָרהו,\n  { {0x3ea50047, 0x629518a9, 0x2ca600bb, 0x00000000}},  //   _volt_, _inzo, _bood_,\n  { {0x60db2984, 0x60c90020, 0x2d8702aa, 0x00000000}},  //   _ujum, _umem, rvne_,\n  { {0x2ca606b2, 0x7d1a002d, 0x2d8c010f, 0x00000000}},  //   _dood_, _euts, _erde_,\n  { {0x628501d5, 0x29120811, 0x290000e7, 0x00000000}},  //   ndho, _siya_, _shia_,\n  { {0x2ca60038, 0x7d1a010f, 0x6ce70088, 0x00000000}},  //   _food_, _guts, _ліде,\n  { {0x2ca60038, 0x3f8d0065, 0x9b950025, 0x00000000}},  //   _good_, _kreu_, _ولات,\n  { {0x6130000a, 0x629500d9, 0x00000000, 0x00000000}},  //   _kòlò, _onzo,   ,\n  { {0x6b892f23, 0x6f1b004a, 0x62852f24, 0x00000000}},  //   mveg, _muuc, jdho,\n  { {0x29120058, 0x99850006, 0x6b89010e, 0x00000000}},  //   _tiya_, ralų_, lveg,\n  { {0x6295008e, 0x78bd01a2, 0x842a0152, 0x00000000}},  //   _anzo, chsv, ржав_,\n  { {0x6b890207, 0x42ca00ed, 0xd6d20025, 0x00000000}},  // [9140] nveg, аган_, _يقع_,\n  { {0x7cd3001a, 0x6d431a3a, 0x33d50088, 0x00000000}},  //   măru, ksna, чіст,\n  { {0x64a6012b, 0x69c1010f, 0x2c4c0006, 0x00000000}},  //   _дана, nzle, lėdų_,\n  { {0xa06a012b, 0x629500bb, 0x3f8d0129, 0x00000000}},  //   рада_, _enzo, _breu_,\n  { {0x3f8d2f25, 0x2ca600b5, 0x7d1a0032, 0x00000000}},  //   _creu_, _rood_, _suts,\n  { {0x443200b9, 0xde93012b, 0x765c2280, 0x00000000}},  //   lby_, дашњ, ngry,\n  { {0x44320716, 0x6d4305ad, 0x2ca6006c, 0x00000000}},  //   oby_, gsna, _pood_,\n  { {0x5c980265, 0xa3ae0309, 0xed4f00a1, 0x00000000}},  //   ския_, _कथा_, کھے_,\n  { {0xae7a0057, 0x3f8d2f26, 0x320d006b, 0x00000000}},  //   _всех_, _greu_, _şeyx_,\n  { {0x2ca600ab, 0x7d1a019a, 0x6d432f27, 0x00000000}},  //   _wood_, _tuts, bsna,\n  { {0x44320036, 0xc957007e, 0x765c1938, 0x00000000}},  //   kby_, оўя_, dgry,\n  { {0x6d58006c, 0x44322f28, 0x386000e5, 0x00000000}},  //   muva, jby_, _ccir_,\n  { {0x6d58003c, 0x44322f29, 0x6bd60a4f, 0x00000000}},  //   luva, dby_, _بتار,\n  { {0x3ce91238, 0x00000000, 0x00000000, 0x00000000}},  //   čave_,   ,   ,\n  { {0xa3d0006e, 0x610c014a, 0x628300fa, 0x00000000}},  //   _वेब_, _eşli, ônom,\n  { {0x44320007, 0xd498058f, 0x19bb009b, 0x00000000}},  //   gby_, ору_, _כמוב,\n  { {0x6d58003c, 0x7cd3001a, 0x00000000, 0x00000000}},  // [9150] huva, căru,   ,\n  { {0x6d580b3e, 0x291c021e, 0x6d432077, 0x00000000}},  //   kuva, _kuva_, ysna,\n  { {0x44320161, 0x6d58016c, 0x628515ef, 0x00000000}},  //   bby_, juva, rdho,\n  { {0x3f8d04bd, 0x26d10020, 0x291c0107, 0x00000000}},  //   _preu_, lizo_, _muva_,\n  { {0x291c2f2a, 0x69c10133, 0x9ac401f3, 0x00000000}},  //   _luva_, zzle, _keċċ,\n  { {0x6d430168, 0x26d10b33, 0x7d022122, 0x00000000}},  //   tsna, nizo_, _ahos,\n  { {0x7d020051, 0x6d581462, 0x6d4316a7, 0x00000000}},  //   _bhos, guva, usna,\n  { {0x6d4300b5, 0x3f8d0191, 0x7d0204f0, 0x00000000}},  //   rsna, _treu_, _chos,\n  { {0x6d432f2b, 0x38a20046, 0x26d10020, 0x00000000}},  //   ssna, _góry_, kizo_,\n  { {0x6b890542, 0x7cd3001a, 0x6d58139b, 0x00000000}},  //   rveg, văru, buva,\n  { {0x44321124, 0x291c0107, 0x6b892bf1, 0x00000000}},  //   yby_, _cuva_, sveg,\n  { {0x291c01ee, 0x7d021b2a, 0xf1b20049, 0x00000000}},  //   _duva_, _ghos, גסט_,\n  { {0x7d092f2c, 0x69c10047, 0x44320161, 0x00000000}},  //   mmes, szle, vby_,\n  { {0x7d09011f, 0x44320319, 0x26d10020, 0x00000000}},  //   lmes, wby_, gizo_,\n  { {0x2a3a0104, 0x6603005e, 0x44320161, 0x00000000}},  //   _העצמ, епра, tby_,\n  { {0x03260057, 0x7d09011f, 0x7d0214d3, 0x00000000}},  //   здан, nmes, _xhos,\n  { {0x44322be9, 0x26d10009, 0x421a0025, 0x00000000}},  // [9160] rby_, bizo_, مزاج_,\n  { {0xb87b27d5, 0xd6c400a6, 0x7d092f2d, 0x00000000}},  //   gníf, _آمدی, hmes,\n  { {0x7d091462, 0x7cfe0023, 0x00000000, 0x00000000}},  //   kmes, hëra,   ,\n  { {0xd12f039d, 0x88bd013e, 0x00000000, 0x00000000}},  //   امن_, spěv,   ,\n  { {0x7d020016, 0x7d09006c, 0x7cfe0023, 0x00000000}},  //   _rhos, dmes, jëra,\n  { {0x6d580a0e, 0x61460088, 0xdfcf006d, 0x00000000}},  //   tuva, _нега, ديه_,\n  { {0x7d022f2e, 0x20560887, 0xda780027, 0x00000000}},  //   _phos, _нтар, veď_,\n  { {0x6d58002b, 0x7d092f2f, 0xa0670478, 0x00000000}},  //   ruva, gmes, _наса_,\n  { {0x291c2f30, 0x6d5817ee, 0x00000000, 0x00000000}},  //   _suva_, suva,   ,\n  { {0xc33300b6, 0x7d0200ab, 0x6d5803b6, 0x00000000}},  //   עות_, _whos, puva,\n  { {0x7d022f31, 0xf8bf009d, 0x7d0903be, 0x00000000}},  //   _thos, thé_, bmes,\n  { {0x38bb0065, 0xf8bf00b9, 0x7d092f32, 0x00000000}},  //   _bëra_, uhé_, cmes,\n  { {0x26d1000b, 0x00000000, 0x00000000, 0x00000000}},  //   tizo_,   ,   ,\n  { {0xba170054, 0x2eee2f33, 0x291c2f34, 0x00000000}},  //   _فيها_, noff_, _tuva_,\n  { {0x9608007e, 0x26d1008e, 0x65940a78, 0x00000000}},  //   зэта_, rizo_, нару,\n  { {0x6aaa2f35, 0x26d10020, 0x2eee01a2, 0x00000000}},  //   _hoff, sizo_, hoff_,\n  { {0x6aaa00c7, 0xd3710025, 0x2eee062a, 0x00000000}},  // [9170] _koff, ضها_, koff_,\n  { {0x6aaa002b, 0x6d480107, 0x672d2564, 0x00000000}},  //   _joff, _ovda, _itaj,\n  { {0x6aaa002b, 0x2eee00f8, 0x38bb0023, 0x00000000}},  //   _moff, doff_, _zëra_,\n  { {0x92bf0044, 0x98a6001a, 0x7f7501bd, 0x00000000}},  //   ুকে_, mplă_, дукц,\n  { {0x2489006a, 0x4e940014, 0x8e8500ec, 0x00000000}},  //   mdam_, کشنر, дгле,\n  { {0x248928a9, 0x2eee00c4, 0x6aaa002b, 0x00000000}},  //   ldam_, goff_, _noff,\n  { {0x7d0908a7, 0xfce502dc, 0x249900d9, 0x00000000}},  //   tmes, моко, _knsm_,\n  { {0x645f0066, 0x248904cb, 0x6d481b02, 0x00000000}},  //   ngqi, ndam_, _dvda,\n  { {0x23690209, 0x7d092f36, 0x62870173, 0x00000000}},  //   ntaj_, rmes, _kajo,\n  { {0xeab10054, 0x7d092f37, 0x6aaa0549, 0x00000000}},  //   ئعة_, smes, _coff,\n  { {0x672d0258, 0x6aaa00d9, 0x1eea00a1, 0x00000000}},  //   _ataj, _doff, _بولی_,\n  { {0x8d7400a6, 0x2b520279, 0x62872f0c, 0x00000000}},  //   _ساما, üncü_, _lajo,\n  { {0xa49b001d, 0x6aaa0009, 0x00000000, 0x00000000}},  //   _phòn, _foff,   ,\n  { {0x628709fc, 0x6aaa0016, 0x394700d9, 0x00000000}},  //   _najo, _goff, _tvns_,\n  { {0x672d001a, 0xd575189c, 0x00000000, 0x00000000}},  //   _etaj, нуть,   ,\n  { {0x38bb0065, 0x00000000, 0x00000000, 0x00000000}},  //   _tëra_,   ,   ,\n  { {0x62871ae2, 0xd5b80089, 0x24860027, 0x00000000}},  // [9180] _bajo, šā_, ľom_,\n  { {0x6aaa077e, 0x6287008e, 0x24862f38, 0x00000000}},  //   _xoff, _cajo, žom_,\n  { {0x62870023, 0x00000000, 0x00000000, 0x00000000}},  //   _dajo,   ,   ,\n  { {0x6aaa0309, 0x2587013e, 0x00000000, 0x00000000}},  //   _चक्र, sílá_,   ,\n  { {0xe3b20d3a, 0x2eee04b2, 0xcf7a0076, 0x00000000}},  //   _شرح_, toff_, تصاص_,\n  { {0x5f9301fc, 0x6700013d, 0xd1320257, 0x00000000}},  //   тишт, ोगिक_, _لمس_,\n  { {0x6aaa0a75, 0x78bd01c5, 0x9987007f, 0x00000000}},  //   _roff, ūrvi, _menų_,\n  { {0x6aaa2f39, 0x98bf0089, 0x64440058, 0x00000000}},  //   _soff, kstā_, naii,\n  { {0xda7a0401, 0x6aaa00d9, 0x7eb400f6, 0x00000000}},  //   оян_, _poff, _làpi,\n  { {0x60c22da4, 0x3ce90091, 0x63ab0030, 0x00000000}},  //   lhom, čava_, øgni,\n  { {0x6c83026c, 0x28f90245, 0x3257009b, 0x00000000}},  //   رلیم, зень_, וסים_,\n  { {0x23690046, 0x60c2009d, 0x7cfe0065, 0x00000000}},  //   ytaj_, nhom, mëro,\n  { {0x6aaa002b, 0x24890e8c, 0x672d01f3, 0x00000000}},  //   _toff, vdam_, _qtaj,\n  { {0x6aaa068f, 0xe9cf01b2, 0x00000000, 0x00000000}},  //   _uoff, اغی_,   ,\n  { {0x62870ba5, 0x7eb400d4, 0xda5b009b, 0x00000000}},  //   _rajo, _càpi, _וכול,\n  { {0xb4e901f5, 0x62870023, 0xb4fb0164, 0x00000000}},  //   मके_, _sajo, ्षेप_,\n  { {0x248902ae, 0x672d2f3a, 0x60c20066, 0x00000000}},  // [9190] rdam_, _utaj, dhom,\n  { {0x23692f3b, 0x24891848, 0x764700a1, 0x00000000}},  //   rtaj_, sdam_, _زیرِ_,\n  { {0x2369008d, 0x62870010, 0x7cfe0023, 0x00000000}},  //   staj_, _vajo, jëro,\n  { {0xe3b000a1, 0x60c21ec6, 0x62870b43, 0x00000000}},  //   درہ_, ghom, _wajo,\n  { {0x442909fc, 0x442b0145, 0x62872f3c, 0x00000000}},  //   mca_, _ifc_, _tajo,\n  { {0x44290059, 0x60c20009, 0x442b0dea, 0x00000000}},  //   lca_, ahom, _hfc_,\n  { {0x3f84001e, 0x442900fa, 0x60c200ea, 0x00000000}},  //   _esmu_, oca_, bhom,\n  { {0x60c20046, 0x442b02d4, 0x00000000, 0x00000000}},  //   chom, _jfc_,   ,\n  { {0x4429001a, 0xfe7500ed, 0x7cfe0065, 0x00000000}},  //   ica_, _плаќ, përn,\n  { {0xde97004b, 0x3eac01e3, 0x4429128e, 0x00000000}},  //   _تجرب, _godt_, hca_,\n  { {0x644f0036, 0x98bf0006, 0x78ad00c4, 0x00000000}},  //   _odci, nutė_, _boav,\n  { {0x44291470, 0x7eb40129, 0x2d852f3d, 0x00000000}},  //   jca_, _ràpi, _isle_,\n  { {0x44290027, 0x249e0011, 0xeb9908f3, 0x00000000}},  //   dca_, _đtm_, _хил_,\n  { {0x09e52f3e, 0x4429001c, 0x442b0145, 0x00000000}},  //   _полн, eca_, _afc_,\n  { {0x442900ca, 0x60c20fcf, 0x99850025, 0x00000000}},  //   fca_, yhom, _ألبو,\n  { {0x4429001c, 0x442b01aa, 0x4619007e, 0x00000000}},  //   gca_, _cfc_, ьцяў_,\n  { {0x4256005e, 0x442b10f0, 0xa3fe0044, 0x00000000}},  // [91a0] етет, _dfc_, ংখ্য_,\n  { {0x44290f04, 0x60c20066, 0xae0f007d, 0x00000000}},  //   aca_, whom, ाधान_,\n  { {0x2726001d, 0x60c21e3c, 0x442b1e3c, 0x00000000}},  //   _hôn_, thom, _ffc_,\n  { {0x44290198, 0x70f60054, 0xb87b0802, 0x00000000}},  //   cca_, رسائ, mníc,\n  { {0xb87b0802, 0x7416025a, 0x00000000, 0x00000000}},  //   lníc, _سوسا,   ,\n  { {0x7cfe008d, 0x27262f3f, 0x7c2b2f40, 0x00000000}},  //   tëro, _môn_, _afgr,\n  { {0x91e60751, 0x629c0051, 0x27262f41, 0x00000000}},  //   _чове, _inro, _lôn_,\n  { {0x7c290129, 0x63a40066, 0xd01200a1, 0x00000000}},  //   gcer, oxin, _ملز_,\n  { {0xdcfa001a, 0x63a42f42, 0x27260082, 0x00000000}},  //   _astă, nxin, _nôn_,\n  { {0x44290211, 0x7c291278, 0x78ad2f43, 0x00000000}},  //   zca_, acer, _soav,\n  { {0x7cfe0065, 0x44292f44, 0xb87b01ca, 0x00000000}},  //   qëro, yca_, jníc,\n  { {0xb87b004f, 0x7c290197, 0x6016005d, 0x00000000}},  //   dníc, ccer, _gümü,\n  { {0x27260011, 0x6f1a00ab, 0x629c00bb, 0x00000000}},  //   _côn_, _kitc, _onro,\n  { {0x44290046, 0x68e4008e, 0x442b0133, 0x00000000}},  //   wca_, _ejid, _sfc_,\n  { {0x44290d0a, 0x6d4a00ea, 0x442b14ba, 0x00000000}},  //   tca_, nsfa, _pfc_,\n  { {0x442901c5, 0x629c00ea, 0x6d4a0270, 0x00000000}},  //   uca_, _anro, isfa,\n  { {0x44292f45, 0x98bf000d, 0x395e00f6, 0x00000000}},  // [91b0] rca_, astă_, luts_,\n  { {0xa3d0001c, 0xb87b01ca, 0xa1950147, 0x00000000}},  //   _वेळ_, bníc, казч,\n  { {0x395e0129, 0x44290046, 0xa2b2007d, 0x00000000}},  //   nuts_, pca_, _आकर्,\n  { {0x6d4a05fe, 0x9f350088, 0x4429006b, 0x00000000}},  //   dsfa, веді, qca_,\n  { {0x27260011, 0x6f1a0133, 0x395e0022, 0x00000000}},  //   _xôn_, _bitc, huts_,\n  { {0xf77400a0, 0x6f080082, 0x60161a6f, 0x00000000}},  //   רקס_, _chdc, _sümü,\n  { {0xada5005e, 0x6d4a00f8, 0x7c2901c5, 0x00000000}},  //   тайл, gsfa, tcer,\n  { {0xeb990797, 0x00000000, 0x00000000, 0x00000000}},  //   дии_,   ,   ,\n  { {0x26c10181, 0x76470009, 0xa49b00f6, 0x00000000}},  //   _olho_, kajy, _diòx,\n  { {0x68f62f46, 0x7c29051b, 0x6d4a0296, 0x00000000}},  //   _skyd, scer, bsfa,\n  { {0x395e0129, 0xbbeb00a1, 0x27260016, 0x00000000}},  //   guts_, _کرام_, _sôn_,\n  { {0x2d9816ad, 0xb87b004f, 0x26c12f47, 0x00000000}},  //   _área_, vníc, _alho_,\n  { {0x63a4002b, 0xfd100a4f, 0xa3d0013d, 0x00000000}},  //   xxin, _اجل_, _वें_,\n  { {0x395e2f48, 0xb87b0428, 0x2909002d, 0x00000000}},  //   buts_, tníc, _ehaa_,\n  { {0xe64307e1, 0x26c10142, 0x395e21f6, 0x00000000}},  //   респ, _dlho_, cuts_,\n  { {0x27260011, 0xb87b01ca, 0x63a423ca, 0x00000000}},  //   _tôn_, rníc, txin,\n  { {0x46ea07ca, 0xb87b01ca, 0x935916c1, 0x00000000}},  // [91c0] _один_, sníc, ерху_,\n  { {0xb87b0062, 0x6d4a005b, 0x00000000, 0x00000000}},  //   pníc, ysfa,   ,\n  { {0x26d80285, 0x67242f49, 0xe45f01a2, 0x00000000}},  //   miro_, _huij, _blöd_,\n  { {0x6d58001c, 0x26d80922, 0x6d4a032e, 0x00000000}},  //   vrva, liro_, vsfa,\n  { {0x6f1a00ab, 0xc0a90380, 0x2243035f, 0x00000000}},  //   _pitc, عامل_, _fejk_,\n  { {0x26d80061, 0x6d4a0210, 0x6d580161, 0x00000000}},  //   niro_, tsfa, trva,\n  { {0x7cfe0023, 0x67242f4a, 0x6f1a0082, 0x00000000}},  //   sërm, _luij, _vitc,\n  { {0x7cfe0065, 0x76470009, 0x6d4a00f8, 0x00000000}},  //   përm, zajy, rsfa,\n  { {0xc4d3009b, 0x6d4a0210, 0x7bc9010f, 0x00000000}},  //   יגה_, ssfa, gzeu,\n  { {0xbe8505f3, 0x395e02d0, 0x2480010f, 0x00000000}},  //   _مجمو, tuts_, heim_,\n  { {0x26d80c35, 0x02b70049, 0x248016c2, 0x00000000}},  //   diro_, דליך_, keim_,\n  { {0x26d82346, 0x395e01c5, 0x61fc0156, 0x00000000}},  //   eiro_, ruts_, _myrl,\n  { {0x26d800c4, 0x672400d9, 0x76470943, 0x00000000}},  //   firo_, _cuij, tajy,\n  { {0xbc1b00b6, 0x26d80032, 0x672400d9, 0x00000000}},  //   _חודש, giro_, _duij,\n  { {0x25b80061, 0xa5f806f3, 0x04672063, 0x00000000}},  //   gyrl_, веру_, ктам,\n  { {0x54542e00, 0xba17009b, 0x00000000, 0x00000000}},  //   ивст, _בחוץ_,   ,\n  { {0xc29909c0, 0x26d82f4b, 0x38690026, 0x00000000}},  // [91d0] нках_, biro_, _icar_,\n  { {0x26d80061, 0x78bd0168, 0xc6f8007c, 0x00000000}},  //   ciro_, lksv, _иных_,\n  { {0x7bc900f8, 0x00000000, 0x00000000, 0x00000000}},  //   zzeu,   ,   ,\n  { {0x61fc0f4b, 0x78bd0fcf, 0x00000000, 0x00000000}},  //   _dyrl, nksv,   ,\n  { {0x78bd2f4c, 0x8afd00b9, 0xb9ff007d, 0x00000000}},  //   iksv, stři, _उर्फ_,\n  { {0x623402a8, 0x61fc2f4d, 0x0e640088, 0x00000000}},  //   _веру, _fyrl, икін,\n  { {0x518401ee, 0x00000000, 0x00000000, 0x00000000}},  //   _кута,   ,   ,\n  { {0x7d760025, 0x764501c3, 0x00000000, 0x00000000}},  //   امير_, _lehy,   ,\n  { {0xec7607d0, 0x2b150088, 0x26d800e7, 0x00000000}},  //   упы_, льор, yiro_,\n  { {0x7bc9010f, 0x59850d15, 0x672400d9, 0x00000000}},  //   rzeu, глоб, _ruij,\n  { {0x26d8007f, 0xdd910084, 0x00000000, 0x00000000}},  //   viro_, _دوا_,   ,\n  { {0x26d8005b, 0x00000000, 0x00000000, 0x00000000}},  //   wiro_,   ,   ,\n  { {0x1cb80014, 0x7c3b03a1, 0x6724008e, 0x00000000}},  //   _جالب_, mbur, _quij,\n  { {0x7c3b022b, 0x00000000, 0x00000000, 0x00000000}},  //   lbur,   ,   ,\n  { {0x649a00d7, 0x26d80061, 0x93c800a1, 0x00000000}},  //   нтар_, riro_, ھارہ_,\n  { {0x77860265, 0xa7d6031d, 0x7c3b2f4e, 0x00000000}},  //   _близ, _متخص, nbur,\n  { {0xe29a01f9, 0x78ad00b9, 0x7c3b2f4f, 0x00000000}},  // [91e0] наа_, žová, ibur,\n  { {0x76450116, 0x24802f50, 0x7cfe0023, 0x00000000}},  //   _gehy, seim_, tërk,\n  { {0x25a50002, 0x3aba0049, 0x0219007e, 0x00000000}},  //   ällt_, עמענ, віць_,\n  { {0x64a6008b, 0x7c3b2f51, 0x70560439, 0x00000000}},  //   _сама, jbur, انشا,\n  { {0x7c3b07b8, 0x6d412f52, 0x00000000, 0x00000000}},  //   dbur, _awla,   ,\n  { {0x6446055b, 0x7cfe2f53, 0x3ce60030, 0x00000000}},  //   _heki, mëri, _sjov_,\n  { {0x44220022, 0x64460095, 0x628e00e0, 0x00000000}},  //   _kgk_, _keki, _iabo,\n  { {0x7c3b146c, 0x628e2f54, 0x40950986, 0x00000000}},  //   gbur, _habo, _крут,\n  { {0x7cfe0065, 0x28a8013d, 0xe0d501ab, 0x00000000}},  //   nëri, गानि, _тюрь,\n  { {0x4974005c, 0x628e0ae3, 0x7c3b0288, 0x00000000}},  //   алос, _jabo, abur,\n  { {0x6d41018e, 0x628e22fc, 0xe9f90082, 0x00000000}},  //   _gwla, _mabo, _đả_,\n  { {0x6446179b, 0x628e0b25, 0x7cfe0065, 0x00000000}},  //   _neki, _labo, këri,\n  { {0x7c22002d, 0x7cfe0065, 0x00000000, 0x00000000}},  //   _igor, jëri,   ,\n  { {0x442d0df0, 0x44220145, 0x00000000, 0x00000000}},  //   _że_, _agk_,   ,\n  { {0x644602ae, 0x05bb025a, 0x442202d4, 0x00000000}},  //   _beki, ردست_, _bgk_,\n  { {0x7c2201f3, 0x64462f55, 0x628e0058, 0x00000000}},  //   _jgor, _ceki, _aabo,\n  { {0x628e011c, 0xd25b2f56, 0x7cfe0023, 0x00000000}},  // [91f0] _babo, еце_, gëri,\n  { {0x628e0181, 0xf8bf01dc, 0x7c3b0db7, 0x00000000}},  //   _cabo, lké_, zbur,\n  { {0xb87b002a, 0x7c3b2f57, 0x7c220213, 0x00000000}},  //   nnío, ybur, _ogor,\n  { {0x64460007, 0x7c220016, 0x38bb0065, 0x00000000}},  //   _geki, _ngor, _bëri_,\n  { {0x8fa5091b, 0xb87b0051, 0x628e0032, 0x00000000}},  //   рале, hnío, _fabo,\n  { {0x7c222f58, 0x628e002d, 0xed590077, 0x00000000}},  //   _agor, _gabo, вок_,\n  { {0x56b801ce, 0x00000000, 0x00000000, 0x00000000}},  //   רפון_,   ,   ,\n  { {0x628e0119, 0x644600f6, 0xa9270062, 0x00000000}},  //   _zabo, _xeki, _leží,\n  { {0x628e18aa, 0x4b25003b, 0x00000000, 0x00000000}},  //   _yabo, јмов,   ,\n  { {0x7c3b037f, 0x7c2228f4, 0x2b4d00e5, 0x00000000}},  //   sbur, _egor, rsec_,\n  { {0xceb80046, 0x7c3b0007, 0x38bb0065, 0x00000000}},  //   _więc_, pbur, _zëri_,\n  { {0x7c220087, 0x00000000, 0x00000000, 0x00000000}},  //   _ggor,   ,   ,\n  { {0x6446021e, 0xfaa50451, 0x903a0049, 0x00000000}},  //   _reki, _вало, כערה,\n  { {0x64460149, 0x98ab001e, 0x7c220059, 0x00000000}},  //   _seki, ībā_, _zgor,\n  { {0xb8cc0055, 0x628e0f5d, 0x44220085, 0x00000000}},  //   _গত_, _rabo, _pgk_,\n  { {0xf8bf004f, 0x628e016e, 0x7cfe0065, 0x00000000}},  //   cké_, _sabo, tëri,\n  { {0x628e011c, 0xc24600a8, 0x6446014a, 0x00000000}},  // [9200] _pabo, инак, _veki,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x442201a3, 0x7cfe0023, 0x86c60014, 0x00000000}},  //   _tgk_, sëri, _ميکن,\n  { {0x7cfe008d, 0x2cad002b, 0x628e0020, 0x00000000}},  //   përi, jjed_, _wabo,\n  { {0x7cfe0065, 0xddd800b9, 0xa0670216, 0x00000000}},  //   qëri, devš, рача_,\n  { {0xf8bf00b9, 0x7c222f59, 0x00000000, 0x00000000}},  //   zké_, _sgor,   ,\n  { {0x91e30131, 0xf65308cd, 0x00000000, 0x00000000}},  //   _доре, קצה_,   ,\n  { {0x320a025d, 0x00000000, 0x00000000, 0x00000000}},  //   _izby_,   ,   ,\n  { {0xef1a0200, 0x04180055, 0xcb670025, 0x00000000}},  //   _ама_, ধুরী_, لميه_,\n  { {0x657e2f5a, 0x63ab04ce, 0x00000000, 0x00000000}},  //   _opph, ägni,   ,\n  { {0xd90f00d3, 0x5d860025, 0x00000000, 0x00000000}},  //   ویت_, _خلال,   ,\n  { {0x7c220232, 0x00000000, 0x00000000, 0x00000000}},  //   _ugor,   ,   ,\n  { {0xdb02001f, 0x69c50004, 0x27ed014a, 0x00000000}},  //   _groß, _ühen, çen_,\n  { {0xf8bf004f, 0x4b7b0049, 0x657e0022, 0x00000000}},  //   ské_, _סאוו, _bpph,\n  { {0xd5b80517, 0x3a3700a0, 0xb87b0802, 0x00000000}},  //   аст_, _דרום_, lním,\n  { {0x2d8c0b3d, 0x32c4006b, 0x09331289, 0x00000000}},  //   _msde_, _röya_, _بروج,\n  { {0x5399007c, 0x04f401ff, 0x81b40044, 0x00000000}},  // [9210] ывая_, ізую, _জেল_,\n  { {0xd7fc009b, 0x2d870036, 0x395e00bb, 0x00000000}},  //   _בהחל, ywne_, orts_,\n  { {0x21270011, 0xdcfa0036, 0x2f09000c, 0x00000000}},  //   ênh_, _wstę, júga_,\n  { {0x859a009b, 0xe0d00379, 0x00000000, 0x00000000}},  //   _עשרו, وزن_,   ,\n  { {0x644d01c2, 0xa283007a, 0x61ee0009, 0x00000000}},  //   maai, _ویرو, _exbl,\n  { {0x644d0007, 0x141a00b3, 0xb87b093f, 0x00000000}},  //   laai, _תושב, dním,\n  { {0xd658009b, 0x62852f5b, 0x00000000, 0x00000000}},  //   ביות_, meho,   ,\n  { {0x62850740, 0x644d00bb, 0x7cfe0023, 0x00000000}},  //   leho, naai, zërv,\n  { {0x1c420147, 0x395e0270, 0x7b06000c, 0x00000000}},  //   чным, erts_, rðun,\n  { {0x62850292, 0x2cbf2f5c, 0x2cad0243, 0x00000000}},  //   neho, skud_, sjed_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xe73a0081, 0x7c841ab7, 0x3ff90049, 0x00000000}},  //   лем_, _муче, ָפֿע,\n  { {0x62850056, 0xeaae022a, 0x8ca4013d, 0x00000000}},  //   keho, _ей_, कारो,\n  { {0x6285016e, 0x6b8901a2, 0x00000000, 0x00000000}},  //   jeho, mweg,   ,\n  { {0xceb2061e, 0x68e6001c, 0x80b80055, 0x00000000}},  //   ליך_, pnkd, _আগস্,\n  { {0x70b6006e, 0x644d0328, 0x6b890036, 0x00000000}},  //   _अकेल, gaai, oweg,\n  { {0x78a401aa, 0x6b892f5d, 0xa5071fd9, 0x00000000}},  // [9220] _iniv, nweg, сета_,\n  { {0x62850286, 0x78b6008e, 0x644d01c3, 0x00000000}},  //   geho, _hoyv, aaai,\n  { {0x78a40239, 0x657e05ce, 0x26da01f3, 0x00000000}},  //   _kniv, _upph, _impo_,\n  { {0x764e0473, 0x00000000, 0x00000000, 0x00000000}},  //   laby,   ,   ,\n  { {0x44320036, 0xbef50061, 0x5fd20061, 0x00000000}},  //   mcy_, ेतून_, _देखल,\n  { {0xdfa50054, 0x764e0016, 0xb87b0802, 0x00000000}},  //   تحمي, naby, vním,\n  { {0x171b007b, 0x78a40173, 0x67dc0089, 0x00000000}},  //   נוצע, _oniv, lājī,\n  { {0x44320038, 0x6cd4002c, 0xccf90036, 0x00000000}},  //   ncy_, تقبا, goś_,\n  { {0x60c2000c, 0x39ae005f, 0xe81a007d, 0x00000000}},  //   mkom, məsi_, नेमा_,\n  { {0x78a40181, 0x39ae006b, 0xa954003b, 0x00000000}},  //   _aniv, ləsi_, овољ,\n  { {0x69c5006c, 0x60c20089, 0x395e009d, 0x00000000}},  //   _ühel, okom, urts_,\n  { {0x60c202ae, 0x23601088, 0x66cb014a, 0x00000000}},  //   nkom, krij_, _müke,\n  { {0x02fa013d, 0xb87b01ca, 0x44320036, 0x00000000}},  //   ्ताह_, lník, dcy_,\n  { {0x39ae006b, 0x98bf0006, 0x644d2f5e, 0x00000000}},  //   həsi_, putį_, waai,\n  { {0x60c201d5, 0x7afa1382, 0xd6d810e1, 0x00000000}},  //   kkom, mott, стя_,\n  { {0xf98f0054, 0x60c200b5, 0x7cfe0023, 0x00000000}},  //   _أبو_, jkom, përu,\n  { {0x60c20146, 0x62850052, 0x644d00c7, 0x00000000}},  // [9230] dkom, teho, raai,\n  { {0x7afa13d7, 0x32550099, 0x60c201d6, 0x00000000}},  //   nott, івер, ekom,\n  { {0x39ae006b, 0x6285066d, 0x644d174d, 0x00000000}},  //   fəsi_, reho, paai,\n  { {0x7afa0ba4, 0x60c20828, 0x212a0051, 0x00000000}},  //   hott, gkom, _dubh_,\n  { {0x7afa00b0, 0x68ed2f5f, 0x6285037a, 0x00000000}},  //   kott, _mjad, peho,\n  { {0x24ab0044, 0xad591c21, 0x7afa2f60, 0x00000000}},  //   _ঐতিহ, арих_, jott,\n  { {0x7afa2f61, 0x39ae006b, 0x68ed2f62, 0x00000000}},  //   dott, bəsi_, _ojad,\n  { {0x2b5f2f63, 0x6b892f64, 0x39ae006b, 0x00000000}},  //   truc_, tweg, cəsi_,\n  { {0xb87b00b9, 0x63ad2f65, 0x6b8900bb, 0x00000000}},  //   mníh, nxan, uweg,\n  { {0xb87b01ca, 0x63ad00d4, 0x6b892f66, 0x00000000}},  //   lníh, ixan, rweg,\n  { {0x6b89010f, 0xfbd9013d, 0x7cfe0023, 0x00000000}},  //   sweg, _बेरम, tërt,\n  { {0xb87b013e, 0x7ae800e5, 0x764e0045, 0x00000000}},  //   nníh, andt, waby,\n  { {0x7afa0039, 0x69d90061, 0x764e2f67, 0x00000000}},  //   bott, _फेरी, taby,\n  { {0x44320046, 0x7afa0207, 0x272f014a, 0x00000000}},  //   wcy_, cott, _dün_,\n  { {0x60c908b2, 0x7cfe0065, 0x764e0101, 0x00000000}},  //   _olem, përt, raby,\n  { {0x764e0061, 0xa3ea00ed, 0x236000bb, 0x00000000}},  //   saby, адба_, trij_,\n  { {0x272f038c, 0x44320036, 0xb87b01ca, 0x00000000}},  // [9240] _gün_, rcy_, dníh,\n  { {0x44320036, 0x60db11a8, 0x59de007d, 0x00000000}},  //   scy_, _amum, _फेडर,\n  { {0x60c200b5, 0x39ae005f, 0x60c90048, 0x00000000}},  //   tkom, təsi_, _blem,\n  { {0x7afa0047, 0xb87b0428, 0x03a600ed, 0x00000000}},  //   zott, vník, _димо,\n  { {0x60c202ae, 0x39ae006b, 0x888d0049, 0x00000000}},  //   rkom, rəsi_, טראַ,\n  { {0x66cb2f68, 0x39ae006b, 0x61460069, 0x00000000}},  //   _tüke, səsi_, _мега,\n  { {0x60c90030, 0x6da3025f, 0x7afa00b0, 0x00000000}},  //   _flem, дија, vott,\n  { {0x4127005c, 0x60c92cba, 0xa067026b, 0x00000000}},  //   _фото_, _glem, _маса_,\n  { {0x7afa0047, 0x2aaa01fc, 0x8e760783, 0x00000000}},  //   tott, атно_, _мужч,\n  { {0x7cfe0065, 0x00000000, 0x00000000, 0x00000000}},  //   tërs,   ,   ,\n  { {0x7afa09f0, 0xd8f90088, 0x29000022, 0x00000000}},  //   rott, йної_, _bkia_,\n  { {0x7afa0010, 0x2d9e004a, 0xa9c30088, 0x00000000}},  //   sott, _irte_, фськ,\n  { {0x7afa0052, 0xdc290025, 0xdb24006c, 0x00000000}},  //   pott, _اسمه_, öpäe,\n  { {0x6b820026, 0x7cfe0023, 0xb87b013e, 0x00000000}},  //   _ipog, përs, zníh,\n  { {0x344b003b, 0x7bc0007f, 0xc4db003b, 0x00000000}},  //   ичан_, lymu, ађа_,\n  { {0x63ad2f69, 0x00000000, 0x00000000, 0x00000000}},  //   txan,   ,   ,\n  { {0xb87b00b9, 0x68fd0065, 0x00000000, 0x00000000}},  // [9250] vníh, mosd,   ,\n  { {0x60c92f6a, 0x63ad2f6b, 0x2d9e010f, 0x00000000}},  //   _slem, rxan, _orte_,\n  { {0x672d0065, 0xb87b00b9, 0x60c90466, 0x00000000}},  //   _huaj, tníh, _plem,\n  { {0x397b0049, 0x15fa009b, 0x7bc00006, 0x00000000}},  //   שטאנ, _להתע, kymu,\n  { {0x2d9e022b, 0x9028008b, 0xb87b00b9, 0x00000000}},  //   _arte_, іцца_, rníh,\n  { {0x672d0065, 0x7bc00006, 0xb87b00b9, 0x00000000}},  //   _muaj, dymu, sníh,\n  { {0xf2d2007b, 0x672d0065, 0x2d9e11af, 0x00000000}},  //   _װען_, _luaj, _crte_,\n  { {0x60db0169, 0x60c92f6c, 0x2489001a, 0x00000000}},  //   _umum, _ulem, neam_,\n  { {0x7cfe0065, 0x200d002d, 0x62950253, 0x00000000}},  //   tërr, _uzei_, _kazo,\n  { {0x0b42008b, 0xdd950783, 0x69c5006c, 0x00000000}},  //   эньн, _назы, _ühek,\n  { {0x62950036, 0x672d0020, 0xf76900a3, 0x00000000}},  //   _mazo, _auaj, _תק_,\n  { {0x62952f6d, 0x68fd004a, 0x00000000, 0x00000000}},  //   _lazo, gosd,   ,\n  { {0x2489001a, 0x672d008e, 0x6fbd0316, 0x00000000}},  //   deam_, _cuaj, ्निं,\n  { {0x62950738, 0x6b9b0045, 0x672d0023, 0x00000000}},  //   _nazo, mvug, _duaj,\n  { {0x64a6132e, 0x00000000, 0x00000000, 0x00000000}},  //   пава,   ,   ,\n  { {0x01c30055, 0x6fbd01f5, 0xb87b00b9, 0x00000000}},  //   ্পাদ, ्नां, riíc,\n  { {0x62952c1f, 0x672d0b33, 0xe45f0039, 0x00000000}},  // [9260] _bazo, _guaj, _glöm_,\n  { {0x6295004a, 0x7ae10052, 0x479b009b, 0x00000000}},  //   _cazo, nilt, _פייס,\n  { {0x69c10010, 0xe9f90011, 0x7bc01f00, 0x00000000}},  //   nyle, _đẻ_, zymu,\n  { {0x7ae10032, 0x2489001a, 0xb35801b2, 0x00000000}},  //   hilt, ceam_, _ویزا_,\n  { {0x7ae101aa, 0x6295003b, 0x4393007e, 0x00000000}},  //   kilt, _fazo, _заўс,\n  { {0x62950036, 0x69c104d3, 0x63a9251b, 0x00000000}},  //   _gazo, kyle, _šeng,\n  { {0x6b821a99, 0x51550769, 0xb87b013e, 0x00000000}},  //   _spog, _отту, mnív,\n  { {0x2124002a, 0x66cb006b, 0x7bc00006, 0x00000000}},  //   _uimh_, _müka, tymu,\n  { {0xfc3f0211, 0x66cb006c, 0x00000000, 0x00000000}},  //   ñía_, _lüka,   ,\n  { {0x7f3b00b6, 0x672d0065, 0x7ae1049d, 0x00000000}},  //   _לעמו, _ruaj, gilt,\n  { {0x2d9e022b, 0x68fd01d6, 0xe29b0049, 0x00000000}},  //   _urte_, tosd, זשיר,\n  { {0xab5d0036, 0x05000044, 0x7ae10048, 0x00000000}},  //   wyże, ্দুর_, ailt,\n  { {0x7ae1022b, 0x672d0065, 0x68fd2f6e, 0x00000000}},  //   bilt, _quaj, rosd,\n  { {0x672d0065, 0x96eb1280, 0x69c1199e, 0x00000000}},  //   _vuaj, сьма_, byle,\n  { {0x248913ba, 0x62950213, 0x672501c2, 0x00000000}},  //   team_, _razo, _vihj,\n  { {0x672d0065, 0xb9250025, 0x7d0200f6, 0x00000000}},  //   _tuaj, _تفعي, _jkos,\n  { {0x629501ee, 0x248900ab, 0x7d022f6f, 0x00000000}},  // [9270] _pazo, ream_, _mkos,\n  { {0x97360049, 0x23690023, 0x00000000, 0x00000000}},  //   _קרתא_, ruaj_,   ,\n  { {0x7d020010, 0x6295007f, 0x75260032, 0x00000000}},  //   _okos, _vazo, _fikz,\n  { {0xc5f200b6, 0x7ae101aa, 0x0467007c, 0x00000000}},  //   _ידי_, zilt, _этом,\n  { {0x443900f8, 0x442b00f6, 0x644f0089, 0x00000000}},  //   _ifs_, _igc_, _ieci,\n  { {0xc3320049, 0xde050216, 0xc7d8009b, 0x00000000}},  //   _בוך_, мпли, הודי_,\n  { {0x644f0149, 0xd164005e, 0x693a0066, 0x00000000}},  //   _keci, _пъти, _jċed,\n  { {0x644f1547, 0x442b0022, 0x645a0089, 0x00000000}},  //   _jeci, _jgc_, _ētik,\n  { {0xeb99005e, 0x644f001a, 0x442b00f6, 0x00000000}},  //   цип_, _meci, _mgc_,\n  { {0x644f0036, 0x4439007f, 0x442b04a5, 0x00000000}},  //   _leci, _lfs_, _lgc_,\n  { {0xa88a0c4e, 0x7ae100b0, 0x44390051, 0x00000000}},  //   ойна_, rilt, _ofs_,\n  { {0x7ae100b0, 0x66d00052, 0x442b08d0, 0x00000000}},  //   silt, _mäke, _ngc_,\n  { {0x66d00039, 0x7d1b010e, 0x7c2b0066, 0x00000000}},  //   _läke, mmus, _iggr,\n  { {0x69c11624, 0x7d1b010e, 0x645d2f70, 0x00000000}},  //   pyle, lmus, _adsi,\n  { {0xcb1200b6, 0x442b0009, 0x66d000b0, 0x00000000}},  //   _שלו_, _bgc_, _näke,\n  { {0xf50a01e1, 0xe8f60025, 0x65610010, 0x00000000}},  //   інал_, _تستخ, álha,\n  { {0x44390179, 0x073a0025, 0x442b0146, 0x00000000}},  // [9280] _dfs_, _بسبب_, _dgc_,\n  { {0x244c0011, 0x7d09010f, 0x05000044, 0x00000000}},  //   ếm_, hles, ্দের_,\n  { {0x2734021e, 0x63a901d5, 0x7d090161, 0x00000000}},  //   _hän_, _ġene, kles,\n  { {0x7d090047, 0x44390288, 0x644f2f71, 0x00000000}},  //   jles, _gfs_, _geci,\n  { {0x2d85000a, 0x7d1b010e, 0x7d090133, 0x00000000}},  //   _aple_, dmus, dles,\n  { {0x7c2b19eb, 0x27340039, 0xbea304b6, 0x00000000}},  //   _aggr, _män_, качк,\n  { {0x27340039, 0x7d0901bc, 0x3d0a0061, 0x00000000}},  //   _län_, fles, ातले_,\n  { {0x1ee8009c, 0x7d090213, 0x997200b9, 0x00000000}},  //   _کوئی_, gles, těže_,\n  { {0x2d8500ea, 0x00000000, 0x00000000, 0x00000000}},  //   _eple_,   ,   ,\n  { {0x7d090ede, 0x00000000, 0x00000000, 0x00000000}},  //   ales,   ,   ,\n  { {0x7d090056, 0x7d1b00d4, 0x7c390016, 0x00000000}},  //   bles, bmus, _ffwr,\n  { {0x7d09002b, 0x7d020aee, 0x6d580c31, 0x00000000}},  //   cles, _ukos, msva,\n  { {0xad1b007b, 0x644f0781, 0xb33b0181, 0x00000000}},  //   _וואר, _reci, _orça,\n  { {0x644f2f72, 0x443900f8, 0x5bb701e1, 0x00000000}},  //   _seci, _sfs_, _юлія_,\n  { {0x6d5804d3, 0xef0e007e, 0x44390085, 0x00000000}},  //   nsva, ымi_, _pfs_,\n  { {0x7d00040e, 0xc98301ee, 0x6d5801b1, 0x00000000}},  //   noms, _руши, isva,\n  { {0x66d00073, 0xbf0e007d, 0x442b00d9, 0x00000000}},  // [9290] _säke, िताभ_, _vgc_,\n  { {0xd25101f7, 0x6716006e, 0x6d580894, 0x00000000}},  //   انا_, _दीपक_, ksva,\n  { {0x7d092a44, 0x7d002f73, 0x644f0181, 0x00000000}},  //   yles, koms, _teci,\n  { {0x645d0030, 0x90150245, 0x6d58032e, 0x00000000}},  //   _udsi, нфлі, dsva,\n  { {0x8e8504f9, 0x6d5a01c9, 0xe8d800a3, 0x00000000}},  //   егле, _avta, וואר_,\n  { {0x2d95004c, 0x7a310010, 0x7d092f74, 0x00000000}},  //   ерис, _műté, wles,\n  { {0x7d09006c, 0xdce8005d, 0x7d1b006b, 0x00000000}},  //   tles, _ardı, tmus,\n  { {0x9f510010, 0xcf7b0025, 0x6aaa0016, 0x00000000}},  //   ából_, _وإذا_, _anff,\n  { {0x7d090292, 0x7d1b006c, 0x76550036, 0x00000000}},  //   rles, rmus, kazy,\n  { {0x7d1b0c53, 0x39450e09, 0xeab10054, 0x00000000}},  //   smus, нног, اعة_,\n  { {0x7d1b06d3, 0x88e6007c, 0x00000000, 0x00000000}},  //   pmus, ежне,   ,\n  { {0xe0bd0044, 0x6d430203, 0x1dd80061, 0x00000000}},  //   _আগুন, mpna, _भेटत,\n  { {0x6d432118, 0xbbeb023c, 0x00000000, 0x00000000}},  //   lpna, _برام_,   ,\n  { {0x27340039, 0x76550036, 0x290b016c, 0x00000000}},  //   _vän_, gazy, alca_,\n  { {0x48e6012d, 0x24990035, 0xb87b00f6, 0x00000000}},  //   _покв, _basm_, gnís,\n  { {0x05000055, 0x7a310010, 0x27340052, 0x00000000}},  //   ্দ্র_, _fűté, _tän_,\n  { {0x3860002a, 0x29020006, 0x00000000, 0x00000000}},  // [92a0] _idir_, moka_,   ,\n  { {0x29022f75, 0x68e6006b, 0x6306083e, 0x00000000}},  //   loka_, likd, روال,\n  { {0xdcff00b9, 0x7d0000e7, 0x56370049, 0x00000000}},  //   ívěs, yoms, _ראטע_,\n  { {0x25a50030, 0x29022f76, 0x2615006e, 0x00000000}},  //   ælle_, noka_, _धरती_,\n  { {0x64562f77, 0x70530014, 0x656e011c, 0x00000000}},  //   mayi, انها, lubh,\n  { {0x6d580039, 0x6d430009, 0x290214ad, 0x00000000}},  //   tsva, fpna, hoka_,\n  { {0x29022f78, 0xe9f90011, 0x7d000213, 0x00000000}},  //   koka_, _đế_, toms,\n  { {0x24800f6e, 0x645609e5, 0xdd8e00a1, 0x00000000}},  //   nfim_, nayi, لوڈ_,\n  { {0x7d000010, 0x29020a6e, 0x1e8600c0, 0x00000000}},  //   roms, doka_, _плам,\n  { {0xdce30089, 0x64560058, 0x7d0002e1, 0x00000000}},  //   runā, hayi, soms,\n  { {0xfbcf01ef, 0x290213e1, 0x64560e6a, 0x00000000}},  //   لتی_, foka_, kayi,\n  { {0x29022f79, 0x64560022, 0x00000000, 0x00000000}},  //   goka_, jayi,   ,\n  { {0x64560f99, 0x8ae60088, 0x3ebe010e, 0x00000000}},  //   dayi, _пікл, _kott_,\n  { {0x3860005f, 0x3ebe0b5e, 0x2499016c, 0x00000000}},  //   _edir_, _jott_, _sasm_,\n  { {0x3a37007b, 0x29020056, 0x64560173, 0x00000000}},  //   _ארום_, boka_, fayi,\n  { {0x3ebe002b, 0x64560a5f, 0xade30061, 0x00000000}},  //   _lott_, gayi, _कइसन_,\n  { {0x66cb2f7a, 0xc299085f, 0x78ad0020, 0x00000000}},  // [92b0] _yükl, мках_, _inav,\n  { {0x320a00e5, 0x3ebe03c2, 0x00000000, 0x00000000}},  //   _byby_, _nott_,   ,\n  { {0x64560111, 0x78ad00ca, 0xa5f9007c, 0x00000000}},  //   bayi, _knav, _цену_,\n  { {0x64560095, 0x00000000, 0x00000000, 0x00000000}},  //   cayi,   ,   ,\n  { {0x3ebe00f8, 0x78ad00e7, 0x00000000, 0x00000000}},  //   _bott_, _mnav,   ,\n  { {0x290210d2, 0xdb0201d6, 0xaca700a1, 0x00000000}},  //   zoka_, _droë, کھئے_,\n  { {0x3ebe0207, 0xf08200a1, 0x395c00d9, 0x00000000}},  //   _dott_, _چیمپ, _nvvs_,\n  { {0x6b84001a, 0x3eac08e0, 0x3ebe00d9, 0x00000000}},  //   _ţiga, _endt_, _eott_,\n  { {0x66d00039, 0x98a8001a, 0x2902007f, 0x00000000}},  //   _läka, _lună_, voka_,\n  { {0x3ebe2f7b, 0x78ad2f7c, 0x6d4306a1, 0x00000000}},  //   _gott_, _anav, ppna,\n  { {0x2902000b, 0x186a026b, 0x6f0300b4, 0x00000000}},  //   toka_, мани_, monc,\n  { {0x48e600e3, 0x6f03008e, 0x2369016e, 0x00000000}},  //   томв, lonc, kraj_,\n  { {0x290201d9, 0xda0d0164, 0x5bc401af, 0x00000000}},  //   roka_, _हरकत_, _متوف,\n  { {0x6f032f7d, 0x8a050467, 0x7c3b00b5, 0x00000000}},  //   nonc, _изле, lcur,\n  { {0x6456011c, 0xa50a00ed, 0x290201e5, 0x00000000}},  //   tayi, дева_, poka_,\n  { {0x78ad0190, 0x320a08e2, 0x03f60044, 0x00000000}},  //   _gnav, _ryby_, _আরবী_,\n  { {0x645601aa, 0xa507243a, 0x68e40056, 0x00000000}},  // [92c0] rayi, тета_, _imid,\n  { {0x645600ea, 0x69c5006c, 0x6f03009d, 0x00000000}},  //   sayi, _ühes, jonc,\n  { {0x6456000a, 0x3ebe010e, 0x6d410066, 0x00000000}},  //   payi, _rott_, _ntla,\n  { {0x6456006b, 0x3ebe0e5d, 0x4fea007c, 0x00000000}},  //   qayi, _sott_, ммен_,\n  { {0x6f0300f4, 0x6d41191c, 0x3ebe141a, 0x00000000}},  //   fonc, _atla, _pott_,\n  { {0x1ee60014, 0x6f030145, 0x7c3b00d9, 0x00000000}},  //   ضوعی_, gonc, ecur,\n  { {0x180f0183, 0x68e400e5, 0x91e60264, 0x00000000}},  //   _सर्व_, _omid, _рове,\n  { {0xc5f3009b, 0xdb98041f, 0x5ba60581, 0x00000000}},  //   ידו_, евич_, вроз,\n  { {0xcb6703f3, 0x629c01d5, 0x09ca0204, 0x00000000}},  //   вање_, _karo, ान्य,\n  { {0x60c02f7e, 0x629c07e4, 0x705300a1, 0x00000000}},  //   _homm, _jaro, _منہا,\n  { {0x60c029f9, 0x629c205b, 0xddc80036, 0x00000000}},  //   _komm, _maro, _wedł,\n  { {0xcfa9026c, 0x629c006a, 0xc173009b, 0x00000000}},  //   _تاہم_, _laro, סחר_,\n  { {0x48e4007e, 0x60c0066d, 0x98a80035, 0x00000000}},  //   роўв, _momm, _sună_,\n  { {0x629c0a0f, 0x60c00030, 0x68e40026, 0x00000000}},  //   _naro, _lomm, _emid,\n  { {0xd6d801fb, 0xe5c40888, 0xa4d50088, 0x00000000}},  //   ття_, асто, гові,\n  { {0x629c103f, 0x60c01b30, 0x78ad0a13, 0x00000000}},  //   _aaro, _nomm, _unav,\n  { {0x629c2f7f, 0x7b320046, 0x63a60bf8, 0x00000000}},  // [92d0] _baro, _dług, _crkn,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x69c805a6, 0x66cb006c, 0x7c3b0009, 0x00000000}},  //   nyde, _lükk, ycur,\n  { {0x60c0028a, 0x26c10ca9, 0x69da0032, 0x00000000}},  //   _comm, _hoho_, izte,\n  { {0x6f030211, 0x60c02f80, 0x629c0285, 0x00000000}},  //   tonc, _domm, _faro,\n  { {0x629c1729, 0xaf04007e, 0x26c11135, 0x00000000}},  //   _garo, апіл, _joho_,\n  { {0x8d54008b, 0xf075026c, 0x7c3b0085, 0x00000000}},  //   атыч, _میاں_, tcur,\n  { {0x60c00207, 0xe8140061, 0x6f0304e7, 0x00000000}},  //   _gomm, _ठरला_, sonc,\n  { {0x7c3b000d, 0x6f030062, 0x629c013f, 0x00000000}},  //   rcur, ponc, _yaro,\n  { {0x7c3b001a, 0x68e42f81, 0x66cb014a, 0x00000000}},  //   scur, _smid, _dükk,\n  { {0xaad9013d, 0x6d41093b, 0x59ca0164, 0x00000000}},  //   योगक, _utla, ानगर,\n  { {0xf7462f82, 0x63a90066, 0x00000000, 0x00000000}},  //   лемо, _ġenn,   ,\n  { {0x6b650099, 0x2d0f001c, 0x7b06000c, 0x00000000}},  //   _скла, ातील_, rður,\n  { {0x5a47008b, 0x69c80030, 0xdbd1006c, 0x00000000}},  //   _рэда, byde, _müüm,\n  { {0x629c0285, 0x98b90089, 0x7cfe01c3, 0x00000000}},  //   _raro, ūrā_, eëry,\n  { {0x68e405b7, 0x629c0010, 0x97c601d8, 0x00000000}},  //   _umid, _saro, _مقبو,\n  { {0xdd030006, 0x00000000, 0x00000000, 0x00000000}},  // [92e0] ūrėj,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x60c00f69, 0x10a600ed, 0x2caf00f6, 0x00000000}},  //   _pomm, лижн, _ongd_,\n  { {0xd12f0076, 0x26c122d1, 0xa09a0025, 0x00000000}},  //   سمه_, _zoho_, عضاء_,\n  { {0x69c80036, 0x08770049, 0x69da008e, 0x00000000}},  //   zyde, רענט_, zzte,\n  { {0x63a4000c, 0xdd9a003b, 0xf8bf009d, 0x00000000}},  //   mvin, еши_, mmée_,\n  { {0x63a400ab, 0xf8bf009d, 0x00000000, 0x00000000}},  //   lvin, lmée_,   ,\n  { {0xbd870379, 0x63a4143d, 0x212d01f3, 0x00000000}},  //   انين_, ovin, _gieh_,\n  { {0x63a40a16, 0x66d00039, 0x4fa30088, 0x00000000}},  //   nvin, _räkn, _литв,\n  { {0x69da001f, 0x69c804d7, 0xe45f021e, 0x00000000}},  //   tzte, tyde, _ylös_,\n  { {0x26c10020, 0xd2b7009b, 0x7c8600aa, 0x00000000}},  //   _roho_, אלית_, _буле,\n  { {0x69c82f83, 0xa3e50061, 0x8dfb009b, 0x00000000}},  //   ryde, _भइल_, _אהבת,\n  { {0x69da0047, 0x81bc0055, 0x63a402ae, 0x00000000}},  //   szte, েছি_, jvin,\n  { {0x99d6004b, 0x98bf0006, 0x2d8c0093, 0x00000000}},  //   _متعا, ystė_, _kpde_,\n  { {0x58d5007c, 0x69c5010e, 0x63a40f12, 0x00000000}},  //   _войт, _ühep, evin,\n  { {0x290f0051, 0x84c400ed, 0xb8670076, 0x00000000}},  //   _óga_, бљуд, _صابو,\n  { {0x395e001e, 0x26c10428, 0x63a42f84, 0x00000000}},  // [92f0] lsts_, _toho_, gvin,\n  { {0x5215007e, 0x66d000f8, 0x00000000, 0x00000000}},  //   адзт, _jäkl,   ,\n  { {0x4615007a, 0x66d00039, 0xb035034b, 0x00000000}},  //   _خودر, _mäkl, анеш,\n  { {0x395e01c5, 0x5f750014, 0x00000000, 0x00000000}},  //   ists_, لاتر,   ,\n  { {0x644d04be, 0x926b06e3, 0xb4c30316, 0x00000000}},  //   mbai, _прва_, ्सी_,\n  { {0x395e001e, 0xddc500ed, 0xa3de0061, 0x00000000}},  //   ksts_, ибли, _थेट_,\n  { {0xfc310025, 0xbd450025, 0xc6940104, 0x00000000}},  //   يحة_, جنبي, מאס_,\n  { {0xff150055, 0x644d022b, 0x999c0010, 0x00000000}},  //   াদেশ_, nbai, _nevű_,\n  { {0x395e04bd, 0x00000000, 0x00000000, 0x00000000}},  //   ests_,   ,   ,\n  { {0x752f0046, 0x62850051, 0x89a90256, 0x00000000}},  //   _licz, nfho, вков_,\n  { {0x63a9012d, 0x63a40471, 0x00000000, 0x00000000}},  //   _šenl, zvin,   ,\n  { {0x63a42f85, 0x752f0036, 0xd82602e9, 0x00000000}},  //   yvin, _nicz, идни,\n  { {0x26d80016, 0xdcf40521, 0x395e0133, 0x00000000}},  //   thro_, _šaći, asts_,\n  { {0x63a40066, 0x5f360049, 0x00000000, 0x00000000}},  //   vvin, יטשע_,   ,\n  { {0x2d53001a, 0x09e200ed, 0x00000000, 0x00000000}},  //   nţe_, _мошн,   ,\n  { {0x8a140014, 0x47c60152, 0x628501d6, 0x00000000}},  //   _اظها, _вбив, efho,\n  { {0x63a40145, 0x68fd0010, 0x60c90066, 0x00000000}},  // [9300] uvin, érde, _ċemp,\n  { {0x55e60c45, 0xf8bf00f4, 0x2366007f, 0x00000000}},  //   _вооб, rmée_, šojo_,\n  { {0xddc32f86, 0x00000000, 0x00000000, 0x00000000}},  //   vanş,   ,   ,\n  { {0xb358026c, 0x39a5001e, 0x765c13a7, 0x00000000}},  //   _میرا_, _mēs_, lary,\n  { {0x98a6026d, 0xd007007e, 0xb1860146, 0x00000000}},  //   nslı_, аеце_, _blåø,\n  { {0x765c066b, 0x5d660594, 0xfaf90006, 0x00000000}},  //   nary, атиз, irūs_,\n  { {0xdce1014a, 0x69c70030, 0x00000000, 0x00000000}},  //   _aslı, øjel,   ,\n  { {0x0ca70057, 0x656e002a, 0xfbe70044, 0x00000000}},  //   атьи_, irbh, _পড়ত,\n  { {0x225806b2, 0x765c2f87, 0xafe60ad9, 0x00000000}},  //   _kerk_, kary, _тоал,\n  { {0x225801a3, 0x0f7b00a3, 0x644d2efd, 0x00000000}},  //   _jerk_, _באמב, zbai,\n  { {0x765c010a, 0x20f80006, 0x00000000, 0x00000000}},  //   dary, nčio_,   ,\n  { {0x395e0089, 0x76572f88, 0x1bea0797, 0x00000000}},  //   rsts_, _sexy, _идеи_,\n  { {0x98bf0089, 0x765c0016, 0x3949297f, 0x00000000}},  //   lstī_, fary, _čase_,\n  { {0x765c0a71, 0x8c1b0104, 0x2b460022, 0x00000000}},  //   gary, _סוגי, _itoc_,\n  { {0x7afd00d4, 0x6abc000c, 0x00000000, 0x00000000}},  //   éste, örfu,   ,\n  { {0x04c90025, 0x693a01f3, 0xc4d8003b, 0x00000000}},  //   دوري_, _jċem, ађу_,\n  { {0xe3b00025, 0x941917a4, 0x284a0049, 0x00000000}},  // [9310] ورك_, ужат_, _געפּ,\n  { {0xf1a70920, 0xf69907d8, 0x644d0009, 0x00000000}},  //   ирен, _свој_, sbai,\n  { {0x28cc013d, 0x00000000, 0x00000000, 0x00000000}},  //   ासचि,   ,   ,\n  { {0x62850051, 0x00000000, 0x00000000, 0x00000000}},  //   sfho,   ,   ,\n  { {0x225800d0, 0x4fa5005e, 0xddc100e5, 0x00000000}},  //   _ferk_, силв, _belş,\n  { {0xaaa6006e, 0x20180025, 0x273d0082, 0x00000000}},  //   _कोलक, جتمع_, _mìn_,\n  { {0x0204007e, 0xad580147, 0x2c130044, 0x00000000}},  //   _дзён, арых_, _হলেই_,\n  { {0x85f8009b, 0x22580032, 0xe5f8009b, 0x00000000}},  //   יצוע_, _zerk_, יזור_,\n  { {0x6d4a0048, 0x765c0058, 0x861a000a, 0x00000000}},  //   apfa, yary, _rapٍ_,\n  { {0x7b320036, 0x9f95006c, 0x00000000, 0x00000000}},  //   _słuc, _müüa_,   ,\n  { {0x39e901e0, 0x765c2f89, 0x2a7c00f6, 0x00000000}},  //   удно_, vary, _dcvb_,\n  { {0x765c2f8a, 0x6575012d, 0x00000000, 0x00000000}},  //   wary, duzh,   ,\n  { {0xfaa5008b, 0x765c163c, 0xdc360049, 0x00000000}},  //   _гало, tary, _האנט_,\n  { {0x2cbf2f8b, 0xe73700ed, 0x7d090016, 0x00000000}},  //   ljud_, сер_, loes,\n  { {0x765c224b, 0x66d001b1, 0x2aba009b, 0x00000000}},  //   rary, _häkk, _תמצא,\n  { {0x765c00d2, 0xd3ba0088, 0x81bd0044, 0x00000000}},  //   sary, лузі_, ইনা_,\n  { {0x75240a3e, 0x22580145, 0x273d0082, 0x00000000}},  // [9320] rmiz, _perk_, _gìn_,\n  { {0x05080044, 0x7d092f8c, 0x00000000, 0x00000000}},  //   লগের_, hoes,   ,\n  { {0x225829b1, 0x98b90006, 0x3ced2f8d, 0x00000000}},  //   _verk_, ūrą_, kiev_,\n  { {0x22582f8e, 0x20f8007f, 0x00000000, 0x00000000}},  //   _werk_, rčio_,   ,\n  { {0x0eea01fb, 0x787b0049, 0x20f80006, 0x00000000}},  //   льки_, אָוו, sčio_,\n  { {0xdb0200c4, 0x11d60783, 0x52751026, 0x00000000}},  //   _proí, _любя, _мусу,\n  { {0x64430046, 0x2b462f8f, 0xddc10010, 0x00000000}},  //   śnie, _stoc_, _belő,\n  { {0x6d4a01a2, 0xc1f7009b, 0x00000000, 0x00000000}},  //   rpfa, _המלץ_,   ,\n  { {0x8c432337, 0x00000000, 0x00000000, 0x00000000}},  //   чење,   ,   ,\n  { {0xfbcf0076, 0x63ab1c8c, 0xd90f02fd, 0x00000000}},  //   عتي_, ågni, کیب_,\n  { {0x2d9800f4, 0x7d0900c4, 0xddc10010, 0x00000000}},  //   _ère_, boes, _felő,\n  { {0x7d0906c2, 0x021700b3, 0x2d9e1238, 0x00000000}},  //   coes, מחים_, _iste_,\n  { {0x61e0006b, 0x00000000, 0x00000000, 0x00000000}},  //   _əmla,   ,   ,\n  { {0x81de0055, 0xf4000044, 0x2eee0145, 0x00000000}},  //   _তখন_, ্ধার_, niff_,\n  { {0x2d9e0224, 0x9f95006c, 0x00000000, 0x00000000}},  //   _jste_, _süüa_,   ,\n  { {0x2eee01a2, 0x6575012d, 0x00000000, 0x00000000}},  //   hiff_, ruzh,   ,\n  { {0x20f8099d, 0x68ef1ad1, 0x290b150d, 0x00000000}},  // [9330] rčil_, micd, moca_,\n  { {0x8c1b019b, 0x290b029d, 0x2d9e0190, 0x00000000}},  //   רומי, loca_, _oste_,\n  { {0x399a0ebc, 0xa2bf007d, 0x00000000, 0x00000000}},  //   _jūs_, लॉग्,   ,\n  { {0x399a0089, 0x7e680009, 0x30150069, 0x00000000}},  //   _mūs_, _addp, одер,\n  { {0x2d9e022b, 0x49180097, 0x6d480089, 0x00000000}},  //   _aste_, זקאל_, _atda,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7d091b3c, 0x290b26e4, 0x31c42f90, 0x00000000}},  //   toes, koca_, _еств,\n  { {0x645f005f, 0x3c2f006b, 0x62970e04, 0x00000000}},  //   naqi, _növü_, lexo,\n  { {0x2d9e2f91, 0x7d091d58, 0x8c640025, 0x00000000}},  //   _este_, roes, سطين,\n  { {0x05ba02f4, 0x399a001e, 0x38692f92, 0x00000000}},  //   _उपलब, _būs_, _adar_,\n  { {0xe8fa013b, 0x7d090007, 0xe0d000a1, 0x00000000}},  //   ило_, poes, _غزہ_,\n  { {0xa3d9013d, 0x00000000, 0x00000000, 0x00000000}},  //   ़ना_,   ,   ,\n  { {0x68fd008e, 0x98160257, 0x00000000, 0x00000000}},  //   érda, تبدا,   ,\n  { {0xf3ff00c4, 0x38690145, 0x00000000, 0x00000000}},  //   _adão_, _edar_,   ,\n  { {0xceb20452, 0x62970061, 0x845a0265, 0x00000000}},  //   וים_, dexo, ират_,\n  { {0x6aa30016, 0x9e3c06b8, 0x290b00c4, 0x00000000}},  //   _hanf, _maďa, coca_,\n  { {0xb6a601bd, 0xd3f40245, 0x20f8016c, 0x00000000}},  // [9340] _дипл, нiст, učim_,\n  { {0x6aa30032, 0x78a42c4f, 0x00000000, 0x00000000}},  //   _janf, _haiv,   ,\n  { {0x6aa3033b, 0x78a400b0, 0xdb0b0065, 0x00000000}},  //   _manf, _kaiv, _argë,\n  { {0x6aa301aa, 0x78a62f93, 0x78a4004a, 0x00000000}},  //   _lanf, ndkv, _jaiv,\n  { {0xdfd00014, 0x2eee2f94, 0x64430036, 0x00000000}},  //   عيت_, tiff_, śnic,\n  { {0x78a42f95, 0x6aa3000a, 0x00000000, 0x00000000}},  //   _laiv, _nanf,   ,\n  { {0x20d71355, 0x628e01f3, 0x63a9002b, 0x00000000}},  //   _için_, _ibbo, _ġeni,\n  { {0x78a4041a, 0x66cb01f6, 0xdb0b00c4, 0x00000000}},  //   _naiv, _yüks, _urgê,\n  { {0xfb86008b, 0x394901d9, 0x00000000, 0x00000000}},  //   цыйн, _časa_,   ,\n  { {0xcb1a01f9, 0x6aa30016, 0x00000000, 0x00000000}},  //   јќи_, _canf,   ,\n  { {0x09f80054, 0x7afd064d, 0x2d9e022b, 0x00000000}},  //   صفحة_, ésta, _uste_,\n  { {0x7aef0211, 0x78a40026, 0xfaf801c5, 0x00000000}},  //   éctr, _caiv, snī_,\n  { {0x3f860181, 0x6035006b, 0x68ef006b, 0x00000000}},  //   ntou_, _həmç, ricd,\n  { {0xa3ae03d7, 0x387f03b2, 0x6aa30016, 0x00000000}},  //   किन_, żur_, _ganf,\n  { {0x290b001a, 0x58d50f93, 0x6297077d, 0x00000000}},  //   poca_, _нокт, vexo,\n  { {0x628e01bc, 0x6aa32f96, 0x78a40dc0, 0x00000000}},  //   _abbo, _zanf, _gaiv,\n  { {0x645f008d, 0x60c2012d, 0x00000000, 0x00000000}},  // [9350] raqi, djom,   ,\n  { {0x238e0089, 0x3f9f0022, 0x00000000, 0x00000000}},  //   dējā_, _rsuu_,   ,\n  { {0x78a400e7, 0x00000000, 0x00000000, 0x00000000}},  //   _yaiv,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x645d2f97, 0xa4f90061, 0xcf9b003b, 0x00000000}},  //   _iesi, ्कीच_, рје_,\n  { {0x6da52f98, 0x63af1978, 0x8d550920, 0x00000000}},  //   зика, _ircn, птич,\n  { {0xb146007a, 0x645d288b, 0x6aa301aa, 0x00000000}},  //   _فیلم_, _kesi, _ranf,\n  { {0xdd8e0b59, 0x645d1222, 0x6aa301a2, 0x00000000}},  //   اوي_, _jesi, _sanf,\n  { {0x645d2f99, 0x60db00d6, 0x78a40ac2, 0x00000000}},  //   _mesi, _ilum, _raiv,\n  { {0x645d000c, 0x68ed0181, 0x44390207, 0x00000000}},  //   _lesi, _amad, _lgs_,\n  { {0x4efa0049, 0x60db0193, 0xaf080025, 0x00000000}},  //   _פלעג, _klum, _بقلم_,\n  { {0x645d0a76, 0x44390319, 0x3ea503a1, 0x00000000}},  //   _nesi, _ngs_, _halt_,\n  { {0x3ea52f9a, 0x78a400b0, 0x6aa30010, 0x00000000}},  //   _kalt_, _vaiv, _tanf,\n  { {0x44392008, 0x60db0129, 0x68ed006c, 0x00000000}},  //   _ags_, _llum, _emad,\n  { {0x645d1200, 0x60db014a, 0x78a400b0, 0x00000000}},  //   _besi, _olum, _taiv,\n  { {0x60c900b5, 0x934600ed, 0x2748001a, 0x00000000}},  //   _noem, знае, _pînă_,\n  { {0x645d0038, 0x2d87006c, 0x44390095, 0x00000000}},  // [9360] _desi, htne_, _dgs_,\n  { {0x60db04bd, 0x2d870c30, 0x64440087, 0x00000000}},  //   _alum, ktne_, scii,\n  { {0x60db119b, 0x60c901d6, 0x68ed0016, 0x00000000}},  //   _blum, _boem, _ymad,\n  { {0x645d2f9b, 0x55bb009b, 0x4439059c, 0x00000000}},  //   _gesi, _המטו, _ggs_,\n  { {0x60c92f9c, 0x3ea506ed, 0x4463005e, 0x00000000}},  //   _doem, _balt_, _явяв,\n  { {0xa3e50204, 0x3f8605d2, 0x2d8710c1, 0x00000000}},  //   _भेट_, rtou_, ftne_,\n  { {0x3f862f9d, 0x3ea504bd, 0x60db0181, 0x00000000}},  //   stou_, _dalt_, _flum,\n  { {0x2900000b, 0x60db2f9e, 0xd1320025, 0x00000000}},  //   _njia_, _glum, _أمر_,\n  { {0x613a00b9, 0x3ea505ed, 0x00000000, 0x00000000}},  //   _důle, _falt_,   ,\n  { {0x3ea5068f, 0x68ed0dc5, 0xada604b6, 0x00000000}},  //   _galt_, _smad, _назл,\n  { {0x1ea9006d, 0xa7fb004a, 0xdd8f0647, 0x00000000}},  //   _باقي_, daña, _مول_,\n  { {0xfce307ca, 0x00000000, 0x00000000, 0x00000000}},  //   _похо,   ,   ,\n  { {0x645d114e, 0x44390006, 0xcce50426, 0x00000000}},  //   _resi, _rgs_, _تسلي,\n  { {0x645d2f9f, 0xa7fb008e, 0x765e0022, 0x00000000}},  //   _sesi, gaña, _cepy,\n  { {0x645d04d4, 0x5678007c, 0x44390082, 0x00000000}},  //   _pesi, ября_, _pgs_,\n  { {0x5fbe0183, 0xba1700b3, 0x7afc0059, 0x00000000}},  //   ्हाल, _מחוץ_, črtu,\n  { {0xd90f00e9, 0x645d00b0, 0x60c90112, 0x00000000}},  // [9370] _لیگ_, _vesi, _roem,\n  { {0x60db0039, 0x2919002b, 0x60c90352, 0x00000000}},  //   _slum, llsa_, _soem,\n  { {0x645d27b5, 0x68fd2fa0, 0x60c901cb, 0x00000000}},  //   _tesi, onsd, _poem,\n  { {0x68fd03e3, 0x63a9016c, 0x39ac013e, 0x00000000}},  //   nnsd, _šenu, _měs_,\n  { {0xbea502dc, 0x2724000c, 0x765e026d, 0x00000000}},  //   далк, bönd_, _yepy,\n  { {0x7c390016, 0xa159007e, 0x63ad2fa1, 0x00000000}},  //   _sgwr, _магу_, mvan,\n  { {0x63ad121e, 0x3ea523c3, 0xa19400e3, 0x00000000}},  //   lvan, _valt_, _парч,\n  { {0x3ea50ace, 0x2d871553, 0x9f5f0010, 0x00000000}},  //   _walt_, rtne_, áról_,\n  { {0x63ad00c7, 0x2d8721e1, 0x3ea52fa2, 0x00000000}},  //   nvan, stne_, _talt_,\n  { {0x39450057, 0xab5d0036, 0x291200ea, 0x00000000}},  //   мног, wyżs, _skya_,\n  { {0x6dd50167, 0x7e630052, 0xf2d20104, 0x00000000}},  //   _تقاض, manp, דעי_,\n  { {0x7e632fa3, 0x39400059, 0x63ad03fc, 0x00000000}},  //   lanp, _čist_, kvan,\n  { {0x691d00f4, 0x2724010f, 0xe79c014a, 0x00000000}},  //   péen, höne_, _düğü,\n  { {0x63ad0030, 0x6b8910ba, 0xdce3012d, 0x00000000}},  //   dvan, mteg, munđ,\n  { {0x6b89022b, 0x044601e0, 0x63ad0142, 0x00000000}},  //   lteg, дебн, evan,\n  { {0xdb020023, 0x6b890288, 0x7e6325b9, 0x00000000}},  //   _proç, oteg, hanp,\n  { {0xfa8e001d, 0xccf2009b, 0xa7fb004a, 0x00000000}},  // [9380] _mừng_, דכן_, paña,\n  { {0x6b89002d, 0xfa8e0082, 0x38600a6b, 0x00000000}},  //   iteg, _lừng_, _heir_,\n  { {0x63a90059, 0xa87a0049, 0x7e63016e, 0x00000000}},  //   _šent, ַאַר, danp,\n  { {0x63ad0173, 0xdb022fa4, 0x657c0052, 0x00000000}},  //   bvan, _troç, murh,\n  { {0x6aa8018e, 0x38602fa5, 0x63ad01ee, 0x00000000}},  //   yddf, _meir_, cvan,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xc69300b6, 0xfa8e0082, 0x6b89010e, 0x00000000}},  //   דאו_, _bừng_, eteg,\n  { {0xdc13005a, 0x6b892fa6, 0x24800023, 0x00000000}},  //   _ağır, fteg, ngim_,\n  { {0xfa8e0011, 0x7e632fa7, 0x6b8901d6, 0x00000000}},  //   _dừng_, banp, gteg,\n  { {0x7b320036, 0x38600051, 0x00000000, 0x00000000}},  //   _tłum, _aeir_,   ,\n  { {0x63ad0466, 0x66d00934, 0xa9c30e85, 0x00000000}},  //   zvan, _läks, всяк,\n  { {0xa3de02d2, 0x63ad047f, 0x38600016, 0x00000000}},  //   तना_, yvan, _ceir_,\n  { {0x8c4302e9, 0x38600051, 0xd838007e, 0x00000000}},  //   _рече, _deir_, дэр_,\n  { {0x63ad2fa8, 0x68fd0026, 0x7c222fa9, 0x00000000}},  //   vvan, snsd, _izor,\n  { {0xb8e50055, 0x09070931, 0x79a3007e, 0x00000000}},  //   _এত_, _очим, _арые,\n  { {0x63ad049b, 0x38601f1c, 0xadf10061, 0x00000000}},  //   tvan, _geir_, _अइसन_,\n  { {0xa7fb008e, 0x44220161, 0x63ad009d, 0x00000000}},  // [9390] maño, _czk_, uvan,\n  { {0x05010044, 0x63ad0f12, 0x7d020635, 0x00000000}},  //   ্ষের_, rvan, _ljos,\n  { {0x6b89022b, 0x63ad006c, 0x7e6304fd, 0x00000000}},  //   zteg, svan, vanp,\n  { {0x63ad00bb, 0xd4790049, 0x00000000, 0x00000000}},  //   pvan, _צאָל,   ,\n  { {0x752d0282, 0xfa8e0011, 0x7e630358, 0x00000000}},  //   mmaz, _rừng_, tanp,\n  { {0x752d0047, 0xfa8e0082, 0xd3f4007e, 0x00000000}},  //   lmaz, _sừng_, нiцт,\n  { {0x7e630052, 0x3d0b0067, 0x7d020a92, 0x00000000}},  //   ranp, ावले_, _bjos,\n  { {0x7e630082, 0x4c8509f1, 0x752d019a, 0x00000000}},  //   sanp, хлив, nmaz,\n  { {0x38600b51, 0x7e6304d4, 0x6b89002d, 0x00000000}},  //   _reir_, panp, uteg,\n  { {0x6b890c46, 0x7c2201ee, 0x386000e0, 0x00000000}},  //   rteg, _dzor, _seir_,\n  { {0x6b890004, 0xfa8e001d, 0x7c220288, 0x00000000}},  //   steg, _từng_, _ezor,\n  { {0xc68900b6, 0x6d41011c, 0xa7fb008e, 0x00000000}},  //   _לא_, _iula, gaño,\n  { {0xbd2c00bd, 0x6d41011c, 0x291e001e, 0x00000000}},  //   _וואָ, _hula, ēta_,\n  { {0x6d41006a, 0x7d1b044e, 0x4422012d, 0x00000000}},  //   _kula, llus, _rzk_,\n  { {0x6d41110d, 0x5a44007e, 0xb87b0048, 0x00000000}},  //   _jula, _рэча, mhín,\n  { {0x6d410149, 0x64a3007e, 0x20f800b9, 0x00000000}},  //   _mula, ласа, nčit_,\n  { {0x24070517, 0x0326005e, 0x6d41128e, 0x00000000}},  // [93a0] енти_, едан, _lula,\n  { {0xe9ff001d, 0x7d1b010f, 0x6d4101d6, 0x00000000}},  //   _giải_, hlus, _oula,\n  { {0x7d1b0004, 0x7f40006b, 0x6d41007f, 0x00000000}},  //   klus, _sumq, _nula,\n  { {0x20f8013e, 0x00000000, 0x00000000, 0x00000000}},  //   jčit_,   ,   ,\n  { {0x6d410181, 0x7d1b006c, 0x7e612191, 0x00000000}},  //   _aula, dlus, _belp,\n  { {0x6d410149, 0x6e94005e, 0xd00f03ec, 0x00000000}},  //   _bula, тику, حله_,\n  { {0x40961948, 0x7e610292, 0x7c222faa, 0x00000000}},  //   _прат, _delp, _szor,\n  { {0x629e188a, 0xf8bf0010, 0x61e1006c, 0x00000000}},  //   lepo, rmék_, _ülla,\n  { {0xa2c402fb, 0xb09b009b, 0x6d410032, 0x00000000}},  //   राप्, _צימר, _eula,\n  { {0x6d41000b, 0x629e01d6, 0x7c2211b0, 0x00000000}},  //   _fula, nepo, _vzor,\n  { {0x6d41011c, 0x7c220036, 0x5cd60088, 0x00000000}},  //   _gula, _wzor, _підх,\n  { {0x6609011f, 0x7d1b0b25, 0x629e010e, 0x00000000}},  //   şekk, clus, hepo,\n  { {0x629e00ea, 0x7c220166, 0x6d410fa5, 0x00000000}},  //   kepo, _uzor, _zula,\n  { {0x629e016e, 0x66d00039, 0x00000000, 0x00000000}},  //   jepo, _säkr,   ,\n  { {0x65940551, 0xa7fb0219, 0xf527017a, 0x00000000}},  //   лару, paño, ефан,\n  { {0x57b501e0, 0x6aaa25e3, 0x629e012d, 0x00000000}},  //   _абит, _haff, eepo,\n  { {0x752d2fab, 0xd371023c, 0x00000000, 0x00000000}},  // [93b0] rmaz, شها_,   ,\n  { {0x6aaa2fac, 0x629e032e, 0x2369012d, 0x00000000}},  //   _jaff, gepo, rsaj_,\n  { {0x0736009b, 0x7d1b0016, 0x00000000, 0x00000000}},  //   _שאתם_, ylus,   ,\n  { {0x7e610640, 0x6d410035, 0x6aaa009d, 0x00000000}},  //   _selp, _rula, _laff,\n  { {0x8fa50088, 0xf77f014a, 0x629e2fad, 0x00000000}},  //   тале, nuç_, bepo,\n  { {0x6d41027e, 0x629e2fae, 0xa3ae01f5, 0x00000000}},  //   _pula, cepo, किर_,\n  { {0xf2d200bd, 0xdcfa038c, 0x7d1b0004, 0x00000000}},  //   _דעם_, _artı, tlus,\n  { {0x7e610c0c, 0x6d412faf, 0xdb0b00c4, 0x00000000}},  //   _welp, _vula, _orgã,\n  { {0x7d1b02e5, 0x7e61001e, 0x6d410093, 0x00000000}},  //   rlus, _telp, _wula,\n  { {0x6d410b5a, 0x7d1b000c, 0x6aaa1a9a, 0x00000000}},  //   _tula, slus, _caff,\n  { {0x7d1b006c, 0x6d410058, 0x00000000, 0x00000000}},  //   plus, _uula,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x9cd6009b, 0x6aaa0007, 0xb7c00044, 0x00000000}},  //   _שונה_, _faff, উন্ট,\n  { {0x6aaa00b7, 0x2cad0133, 0x00000000, 0x00000000}},  //   _gaff, lded_,   ,\n  { {0xe7370081, 0x629e2c1f, 0x2cad0133, 0x00000000}},  //   тер_, vepo, oded_,\n  { {0x2cad0038, 0xa3ae006e, 0x6aaa0197, 0x00000000}},  //   nded_, किल_, _zaff,\n  { {0x93430081, 0xd70a01f9, 0x629e0c1b, 0x00000000}},  // [93c0] инте, _оние_, tepo,\n  { {0xf1fa0a4f, 0xd36f0439, 0x69dc1565, 0x00000000}},  //   وعات_, زهم_, øreg,\n  { {0x629e002d, 0x1677009b, 0xd657009b, 0x00000000}},  //   repo, _בגיל_, _שיטת_,\n  { {0x2902000c, 0x629e010e, 0x3d0b013d, 0x00000000}},  //   nnka_, sepo, हकों_,\n  { {0x2cad2fb0, 0x7762006b, 0xdb0b0129, 0x00000000}},  //   dded_, _çoxd, _orgà,\n  { {0xf41300b6, 0xc7d7009b, 0x63a400e7, 0x00000000}},  //   _כפר_, כוני_, mwin,\n  { {0x6aaa0207, 0x63a40007, 0xb4db00f6, 0x00000000}},  //   _raff, lwin, _diàf,\n  { {0x6aaa2fb1, 0xfd0f0025, 0x3fc600a1, 0x00000000}},  //   _saff, يجي_, _لگتی_,\n  { {0x63a400b5, 0x2484000c, 0xfe7201fa, 0x00000000}},  //   nwin, _ömmu_, _ندا_,\n  { {0xb87b0051, 0x63ab0030, 0x2cad0133, 0x00000000}},  //   thío, ægni, aded_,\n  { {0x63a42936, 0xfbcf0167, 0xc27b00b3, 0x00000000}},  //   hwin, متی_, וריי,\n  { {0x63a40007, 0x6aaa010f, 0x81570049, 0x00000000}},  //   kwin, _waff, כסטע_,\n  { {0x6aaa0066, 0x64430036, 0xa49b000a, 0x00000000}},  //   _taff, śnik, _djòl,\n  { {0x29021d85, 0x63a40aba, 0x00000000, 0x00000000}},  //   anka_, dwin,   ,\n  { {0x63a40007, 0x00000000, 0x00000000, 0x00000000}},  //   ewin,   ,   ,\n  { {0xba37009b, 0x92af0044, 0x272400f8, 0x00000000}},  //   _בטוח_, _ওকে_, röna_,\n  { {0x63a4298f, 0x39490059, 0xe5340131, 0x00000000}},  // [93d0] gwin, _časi_, реть,\n  { {0x2473001d, 0x78ad003c, 0x43940b86, 0x00000000}},  //   ệm_, _haav, рафс,\n  { {0x75d50025, 0x7afd0181, 0x78ad00b0, 0x00000000}},  //   _إيجا, ésti, _kaav,\n  { {0xf2df001a, 0x63a400b5, 0xc0ab00f3, 0x00000000}},  //   _atât_, bwin, بائل_,\n  { {0x7f19007e, 0x78ad0934, 0x747a009b, 0x00000000}},  //   ніку_, _maav, _אנרג,\n  { {0x753d1a53, 0xdb0b0387, 0x3ebe0011, 0x00000000}},  //   _hisz, _orgá, _cntt_,\n  { {0x753d0010, 0xfc3f01ca, 0x29020832, 0x00000000}},  //   _kisz, žím_, ynka_,\n  { {0x644d2665, 0x62850066, 0x00000000, 0x00000000}},  //   ncai, lgho,   ,\n  { {0x2cad00ab, 0x644f0009, 0x753d0c59, 0x00000000}},  //   rded_, _mfci, _misz,\n  { {0x62851e2d, 0xfff60123, 0x753d115b, 0x00000000}},  //   ngho, _حکمت_, _lisz,\n  { {0x5dd50b03, 0x63a4114b, 0xa2c40309, 0x00000000}},  //   _حقائ, zwin, रात्,\n  { {0x63a401d6, 0xdce70089, 0x753d0036, 0x00000000}},  //   ywin, ēlēj, _nisz,\n  { {0x8cc0013d, 0x00000000, 0x00000000, 0x00000000}},  //   वारो,   ,   ,\n  { {0xf74302ea, 0x99d5039d, 0x00000000, 0x00000000}},  //   серо, _متبا,   ,\n  { {0x63a40009, 0x660602dc, 0x00000000, 0x00000000}},  //   wwin, упва,   ,\n  { {0x30ae0044, 0x753d0ef2, 0xd5b70082, 0x00000000}},  //   _কক্স, _cisz, ứng_,\n  { {0x753d2fb2, 0x63a400bb, 0x2903013e, 0x00000000}},  // [93e0] _disz, uwin, čkat_,\n  { {0x63a40168, 0xa2c401f5, 0x33d50088, 0x00000000}},  //   rwin, राध्, шіст,\n  { {0x63a40007, 0x394f001a, 0xccf90036, 0x00000000}},  //   swin, _însă_, kiś_,\n  { {0x74550265, 0x600a07d0, 0x63a40009, 0x00000000}},  //   _върх, ннем_, pwin,\n  { {0x6aa100eb, 0x3eac0009, 0x41a401f5, 0x00000000}},  //   kelf, _padt_, _गैरस,\n  { {0xe1660025, 0x3243005e, 0x71660025, 0x00000000}},  //   _مدري, _герг, _مارك,\n  { {0x91e60f40, 0x7d0d0387, 0x6aa105a6, 0x00000000}},  //   _сове, časn, delf,\n  { {0x5ba6166c, 0x673e2fb3, 0x798100e7, 0x00000000}},  //   гроз, _lipj, dulw,\n  { {0x09dc0061, 0xcb67025f, 0xc006007e, 0x00000000}},  //   मन्य, гање_, _спак,\n  { {0x78ad08b2, 0xbda60014, 0x8f9b00a0, 0x00000000}},  //   _saav, _محصو, _אימי,\n  { {0x527b007b, 0x78ad003c, 0x765c24fd, 0x00000000}},  //   ענטא, _paav, dbry,\n  { {0x27e61f27, 0x8c460954, 0x6d58018d, 0x00000000}},  //   _żona_, _седе, mpva,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x9f4b00ea, 0x00000000, 0x00000000, 0x00000000}},  //   _åmås_,   ,   ,\n  { {0x753d0ef2, 0x644d01d6, 0x7afa2fb4, 0x00000000}},  //   _pisz, tcai, mitt,\n  { {0x7afa021e, 0x5455005e, 0x69da007f, 0x00000000}},  //   litt, рват, myte,\n  { {0x69da0ec6, 0x753d0047, 0x644d0051, 0x00000000}},  // [93f0] lyte, _visz, rcai,\n  { {0x7afa1603, 0x644d0c9a, 0x320b0517, 0x00000000}},  //   nitt, scai, нхен_,\n  { {0x753d0047, 0x62850894, 0x69da0010, 0x00000000}},  //   _tisz, rgho, nyte,\n  { {0x7afa021e, 0x6aa100b5, 0xf8bf009d, 0x00000000}},  //   hitt, zelf, mmés_,\n  { {0x08780049, 0x7afa00b0, 0xddd001ca, 0x00000000}},  //   רעדט_, kitt, _češt,\n  { {0x6aa1109d, 0x60c00173, 0xfd99003b, 0x00000000}},  //   xelf, _enmm, втић_,\n  { {0x7afa2fb5, 0x6aa10190, 0x00000000, 0x00000000}},  //   ditt, velf,   ,\n  { {0x69da1ad1, 0x29090020, 0xeb990bba, 0x00000000}},  //   dyte, _njaa_, вии_,\n  { {0xa7fb1ec4, 0x2b460082, 0x7afa2fb6, 0x00000000}},  //   bañi, _cuoc_, fitt,\n  { {0x7afa133a, 0x2b460011, 0x290900b0, 0x00000000}},  //   gitt, _duoc_, _ajaa_,\n  { {0x8a38007c, 0xdeba0097, 0x98a90066, 0x00000000}},  //   ляют_, _שמעל, _ghaċ_,\n  { {0x3c470054, 0x6aa10343, 0xab9501fb, 0x00000000}},  //   _إضاف, self, _виді,\n  { {0x39491b4e, 0xf746004c, 0x81bd0044, 0x00000000}},  //   _času_, рего, েনি_,\n  { {0x69da00b9, 0xaa880025, 0x7afa2fb7, 0x00000000}},  //   byte, _منهم_, citt,\n  { {0x765c0030, 0xeb110061, 0x69da00ab, 0x00000000}},  //   rbry, ठकीत_, cyte,\n  { {0x81bd0055, 0x2caf01a2, 0x68e4170e, 0x00000000}},  //   েনা_, _jagd_, _ulid,\n\n  { {0x626600ed, 0x9e3c000a, 0x23480014, 0x00000000}},  // [9400] иваа, _haďt, اسری_,\n  { {0x4256005e, 0x39470007, 0x2caf03b1, 0x00000000}},  //   ртат, _kuns_, _lagd_,\n  { {0xc69300b6, 0x867b01ce, 0x21a6005e, 0x00000000}},  //   _ואת_, _בריו, рием,\n  { {0xe7b3089d, 0x7afa00b5, 0xa2c4007d, 0x00000000}},  //   _امید, zitt, राह्,\n  { {0x44242fb8, 0x00000000, 0x00000000, 0x00000000}},  //   _ám_,   ,   ,\n  { {0xdd9a0bbd, 0xa2e60057, 0x3940006c, 0x00000000}},  //   вши_, _тогд, _liis_,\n  { {0xf8bf00f4, 0x7afa021e, 0xbd67007c, 0x00000000}},  //   llée_, vitt, арые_,\n  { {0x7afa0c4c, 0xa2c40061, 0x00000000, 0x00000000}},  //   witt, राव्,   ,\n  { {0x7afa2fb9, 0x2b460011, 0x644000c4, 0x00000000}},  //   titt, _quoc_, _úmid,\n  { {0x39470719, 0xf2d30049, 0xf2df0011, 0x00000000}},  //   _buns_, ַער_, _luân_,\n  { {0x7afa0198, 0x26d300c4, 0x6f18040d, 0x00000000}},  //   ritt, _roxo_, movc,\n  { {0x7afa021e, 0x7c830175, 0x6f180255, 0x00000000}},  //   sitt, _душе, lovc,\n  { {0xcb540151, 0x6d480058, 0x7afa0056, 0x00000000}},  //   _انتظ, _huda, pitt,\n  { {0x6f181238, 0x6d4816c3, 0xd7f81001, 0x00000000}},  //   novc, _kuda, рую_,\n  { {0x99840025, 0x69da0065, 0x04670407, 0x00000000}},  //   _العو, qyte, итам,\n  { {0x6d482fba, 0x657a0a87, 0xdb0b010f, 0x00000000}},  //   _muda, átha, _ergä,\n  { {0x6d48037e, 0x6f180626, 0xc29917c3, 0x00000000}},  // [9410] _luda, kovc, лках_,\n  { {0x2919064e, 0xa2c40309, 0xddc3001a, 0x00000000}},  //   losa_, राष्, nanţ,\n  { {0x80c30061, 0x6f180471, 0x6d482fbb, 0x00000000}},  //   ळाले, dovc, _nuda,\n  { {0x29190091, 0x11280088, 0xf8bf009d, 0x00000000}},  //   nosa_, аючи_, blée_,\n  { {0x2d9e2fbc, 0x29190197, 0x7e6800d9, 0x00000000}},  //   _apte_, iosa_, _bedp,\n  { {0xef18008b, 0x6d482fbd, 0x6f18092f, 0x00000000}},  //   амі_, _buda, govc,\n  { {0x2919000b, 0xa2c40309, 0x00000000, 0x00000000}},  //   kosa_, रार्,   ,\n  { {0x6d481a97, 0xf2df001d, 0x386900ab, 0x00000000}},  //   _duda, _xuân_, _near_,\n  { {0x39470089, 0x39400030, 0x29190b33, 0x00000000}},  //   _suns_, _riis_, dosa_,\n  { {0x39400cfc, 0x7645018e, 0xcac90783, 0x00000000}},  //   _siis_, _nghy, угое_,\n  { {0xc7a9012f, 0x291900d4, 0x38691c7f, 0x00000000}},  //   _רב_, fosa_, _bear_,\n  { {0xcd9600b6, 0x291900c4, 0x386900fa, 0x00000000}},  //   _לדעת_, gosa_, _cear_,\n  { {0xe8f72fbe, 0x3940006c, 0x386900ab, 0x00000000}},  //   сля_, _viis_, _dear_,\n  { {0x7c2b0209, 0xdc360049, 0xddc3001a, 0x00000000}},  //   _izgr, _פאסט_, canţ,\n  { {0x38690531, 0x7f41002b, 0x39400058, 0x00000000}},  //   _fear_, _milq, _tiis_,\n  { {0x39912fbf, 0xf2df001d, 0x2919203d, 0x00000000}},  //   más_, _quân_, cosa_,\n  { {0x39910047, 0xa3ab013d, 0xf8bf0068, 0x00000000}},  // [9420] lás_, _कैद_, ulée_,\n  { {0x16aa10f2, 0x7f410066, 0x7b1d00d4, 0x00000000}},  //   _свои_, _nilq, cèut,\n  { {0x38690038, 0x39910010, 0x7e6808cb, 0x00000000}},  //   _year_, nás_, _redp,\n  { {0x6d480051, 0x3d21013d, 0x2d9e004a, 0x00000000}},  //   _ruda, मतों_, _rpte_,\n  { {0x6d480149, 0x351b00b6, 0xa4b700a0, 0x00000000}},  //   _suda, _תוכנ, _הלכה_,\n  { {0x39910010, 0x6d480145, 0x3ce604bb, 0x00000000}},  //   kás_, _puda, _slov_,\n  { {0xfe6f01d8, 0x629c2611, 0x6f180142, 0x00000000}},  //   ردو_, _ibro, rovc,\n  { {0x44220343, 0x39910047, 0x3b540081, 0x00000000}},  //   _kyk_, dás_, окир,\n  { {0xddc3001a, 0x7524008e, 0x386900ab, 0x00000000}},  //   tanţ, iliz, _rear_,\n  { {0x6d482cc9, 0x4974004c, 0x2ca40fdc, 0x00000000}},  //   _tuda, олос, semd_,\n  { {0x629c008d, 0x44220343, 0x2919008e, 0x00000000}},  //   _mbro, _lyk_, tosa_,\n  { {0x7aef0129, 0x44220022, 0x7afd004a, 0x00000000}},  //   èctr, _oyk_, éstr,\n  { {0xb7b90044, 0x6c3600a2, 0x657a2fc0, 0x00000000}},  //   ুন্ট, _افشا, áthn,\n  { {0x39910010, 0x386900ab, 0x7b320036, 0x00000000}},  //   bás_, _wear_, _głup,\n  { {0x291906c2, 0x7c220082, 0xf3ff00c4, 0x00000000}},  //   posa_, _hyor, _peão_,\n  { {0xddc30089, 0x24890089, 0x442201a3, 0x00000000}},  //   nanš, ugam_, _byk_,\n  { {0x248901c5, 0x6d420035, 0x284a0049, 0x00000000}},  // [9430] rgam_, _mioa, _דעפּ,\n  { {0x752402d5, 0x4422032e, 0xdb090350, 0x00000000}},  //   aliz, _dyk_, rveç,\n  { {0x1a9b007b, 0x7524002d, 0x66d0021e, 0x00000000}},  //   ריבע, bliz, _näky,\n  { {0x629c0032, 0xddc300ca, 0x442b012d, 0x00000000}},  //   _ebro, janš, _tzc_,\n  { {0x39912fc1, 0x7c220056, 0x7f490919, 0x00000000}},  //   zás_, _nyor, _queq,\n  { {0xb87b2fc2, 0x8d550069, 0x00000000, 0x00000000}},  //   chív, отич,   ,\n  { {0x6d420016, 0xed591001, 0x7c2200e0, 0x00000000}},  //   _bioa, шой_, _ayor,\n  { {0x629c0036, 0x7cfe0dec, 0x63bb002b, 0x00000000}},  //   _zbro, tūra, _ġunj,\n  { {0x69dc05b7, 0xe0e4007e, 0x4fc70e82, 0x00000000}},  //   øren, _эўро, _усва,\n  { {0x39912fc3, 0x7aa500aa, 0x63bd012d, 0x00000000}},  //   tás_, циоз, _mrsn,\n  { {0x3ea72fc4, 0xa969012b, 0x75240036, 0x00000000}},  //   ment_, јима_, yliz,\n  { {0x2d870198, 0x3ea00166, 0x6d421746, 0x00000000}},  //   mune_, đite_, _gioa,\n  { {0x7d1b001c, 0x7c220047, 0x7d24007c, 0x00000000}},  //   mous, _gyor, _эффе,\n  { {0x3ea703d5, 0x44220007, 0x39910010, 0x00000000}},  //   nent_, _ryk_, pás_,\n  { {0x3ea700f4, 0xba390049, 0x7d090020, 0x00000000}},  //   ient_, _דײַט, ones,\n  { {0x7d0902cc, 0xe45a00e3, 0x7d1b1241, 0x00000000}},  //   nnes, ржа_, nous,\n  { {0x3ea700b5, 0x75240007, 0x7d0900f2, 0x00000000}},  // [9440] kent_, rliz, ines,\n  { {0x3ea72fc5, 0x75240b33, 0x7d1b00ab, 0x00000000}},  //   jent_, sliz, hous,\n  { {0x3ea71311, 0x7d090ff3, 0x7d1b2007, 0x00000000}},  //   dent_, knes, kous,\n  { {0xa99a007b, 0x44220190, 0x9f96006c, 0x00000000}},  //   יבער, _tyk_, _tüüp_,\n  { {0xbba8006e, 0x86e902fd, 0x5e58007c, 0x00000000}},  //   _कनेक, _ضعیف_, биля_,\n  { {0x3ea7028c, 0x629c0c76, 0x7d091be3, 0x00000000}},  //   gent_, _ubro, enes,\n  { {0xf987035b, 0x2d87023e, 0xe801013d, 0x00000000}},  //   _تب_, gune_, _लेना_,\n  { {0x7d090030, 0x00000000, 0x00000000, 0x00000000}},  //   gnes,   ,   ,\n  { {0x3ea70006, 0xe7a9013d, 0x81bd0044, 0x00000000}},  //   bent_, _चैंप, েনঃ_,\n  { {0x3ea71f59, 0x7d090197, 0x212604be, 0x00000000}},  //   cent_, anes, lloh_,\n  { {0x2d870e8d, 0x395807a5, 0x6e930014, 0x00000000}},  //   cune_, ërs_, _آلما,\n  { {0xeb9a0256, 0x6d5a0b5e, 0x3ced04c7, 0x00000000}},  //   _вид_, _itta, chev_,\n  { {0x7762006b, 0x5ead0044, 0x00000000, 0x00000000}},  //   _çoxl, চারে,   ,\n  { {0x3f50001d, 0x613111b6, 0x7d00014a, 0x00000000}},  //   _màu_, måle, lims,\n  { {0xd5b805a5, 0xfc3f00b9, 0xee2e0451, 0x00000000}},  //   ост_, žít_, ннi_,\n  { {0x3ea7284c, 0x7d000279, 0x63bd0142, 0x00000000}},  //   zent_, nims, _prsn,\n  { {0x439401fc, 0x3ea72fc6, 0x2d870032, 0x00000000}},  // [9450] матс, yent_, zune_,\n  { {0x7d09001e, 0x6d5a021e, 0x3ea70115, 0x00000000}},  //   znes, _otta, xent_,\n  { {0x3ea7032c, 0x7d000416, 0x7d090133, 0x00000000}},  //   vent_, kims, ynes,\n  { {0x76550036, 0x2d87010e, 0x3ea7026e, 0x00000000}},  //   lczy, vune_, went_,\n  { {0x6d5a1eef, 0x8cce013d, 0x7d0908e0, 0x00000000}},  //   _atta, थानो, vnes,\n  { {0x643a007b, 0x2d87017b, 0x63ad0020, 0x00000000}},  //   _לערנ, tune_, mwan,\n  { {0x69dc0737, 0xddc10af3, 0x00000000, 0x00000000}},  //   ørel, _belš,   ,\n  { {0x3ea7030a, 0x2d87002d, 0x3cc9003b, 0x00000000}},  //   sent_, rune_, слио_,\n  { {0xff530426, 0x7d1b0c6a, 0x6d5a129e, 0x00000000}},  //   _آخر_, rous, _etta,\n  { {0x2d872dab, 0xdd00001e, 0x63a00073, 0x00000000}},  //   pune_, ētāj, _ämne,\n  { {0x63ad0b70, 0x499000a1, 0x7d1b06f0, 0x00000000}},  //   hwan, نیور, pous,\n  { {0x63ad107e, 0x7aea2fc7, 0x8c3d014a, 0x00000000}},  //   kwan, _elft, leşm,\n  { {0xdb02000c, 0x00000000, 0x00000000, 0x00000000}},  //   _troð,   ,   ,\n  { {0x63ad05eb, 0x290b29b5, 0x6d5a00ea, 0x00000000}},  //   dwan, anca_, _ytta,\n  { {0x1dbd01f5, 0xd62a08fc, 0x63ad0036, 0x00000000}},  //   ्मित, сове_, ewan,\n  { {0xf8bf154b, 0x63ad010f, 0x00000000, 0x00000000}},  //   llén_, fwan,   ,\n  { {0x63ad0870, 0x00000000, 0x00000000, 0x00000000}},  // [9460] gwan,   ,   ,\n  { {0x78b6011f, 0xb87b0051, 0x00000000, 0x00000000}},  //   _hayv, bhís,   ,\n  { {0xb87b008e, 0x00000000, 0x00000000, 0x00000000}},  //   chís,   ,   ,\n  { {0x5a0c0049, 0x63ad047b, 0x7d000023, 0x00000000}},  //   סלאַ, bwan, xims,\n  { {0x6b890211, 0x9f53008b, 0x26da05ae, 0x00000000}},  //   jueg, евіч, _kopo_,\n  { {0x29020058, 0x7cfe0006, 0x26da2fc8, 0x00000000}},  //   hika_, tūro, _jopo_,\n  { {0x2902187c, 0x6aa801e3, 0x7d000095, 0x00000000}},  //   kika_, vedf, tims,\n  { {0xe05501ef, 0x3f50001d, 0x29020020, 0x00000000}},  //   _قیمت_, _tàu_, jika_,\n  { {0x290206fe, 0x3f67005e, 0x7f4a004b, 0x00000000}},  //   dika_, _нито_, _طلاق_,\n  { {0x613123a4, 0xdea001b2, 0x26da0145, 0x00000000}},  //   råle, _شیعی, _nopo_,\n  { {0x29022fc9, 0x6d5a093b, 0xbc6a007a, 0x00000000}},  //   fika_, _utta, _همان_,\n  { {0x63ad0046, 0x76550036, 0x6aa80009, 0x00000000}},  //   ywan, wczy, sedf,\n  { {0xb4db0129, 0x26da0022, 0x6123006c, 0x00000000}},  //   _diàl, _bopo_, põlv,\n  { {0x26da00c4, 0xa3c2007d, 0x68e600ea, 0x00000000}},  //   _copo_, ्मन_, akkd,\n  { {0xcb13007b, 0x26da0198, 0x29020518, 0x00000000}},  //   _אלס_, _dopo_, bika_,\n  { {0x63ad1a07, 0xe81e006e, 0xa4d40ee0, 0x00000000}},  //   twan, _युवा_, носі,\n  { {0xa87c00b6, 0x316a00bb, 0x68ed0288, 0x00000000}},  // [9470] _האחר, _awbz_, _ilad,\n  { {0x6eef0018, 0x63ad1440, 0x26da00e5, 0x00000000}},  //   _købe, rwan, _gopo_,\n  { {0x68ed0161, 0x63ad1073, 0x9b17009b, 0x00000000}},  //   _klad, swan, לחמה_,\n  { {0xf1c000ad, 0x6eef0637, 0x93c700e5, 0x00000000}},  //   ương_, _møbe, _arăţ,\n  { {0x6eef0018, 0x93c700e5, 0x00000000, 0x00000000}},  //   _løbe, _brăţ,   ,\n  { {0x68ed1c65, 0xad590cbc, 0x00000000, 0x00000000}},  //   _llad, орих_,   ,\n  { {0xfe7003ec, 0xdd9100a1, 0x68ed016c, 0x00000000}},  //   اده_, ڑوں_, _olad,\n  { {0x2902184d, 0x6b890032, 0x00000000, 0x00000000}},  //   xika_, tueg,   ,\n  { {0x2d8a0030, 0x394e010f, 0x1dbd0309, 0x00000000}},  //   _åben_, _aufs_, ्महत,\n  { {0x68ed010e, 0x6b890325, 0xe5780089, 0x00000000}},  //   _alad, rueg, šķi_,\n  { {0x290206fe, 0x68ed018d, 0x60db0263, 0x00000000}},  //   tika_, _blad, _koum,\n  { {0x68ed1a5e, 0x6f03014a, 0x60db0173, 0x00000000}},  //   _clad, linc, _joum,\n  { {0x29021f0f, 0x6b89004a, 0x26da2461, 0x00000000}},  //   rika_, queg, _popo_,\n  { {0x29022fca, 0x68ed06c9, 0x6f030808, 0x00000000}},  //   sika_, _elad, ninc,\n  { {0xceb2019b, 0x60c90fda, 0x68ed0030, 0x00000000}},  //   כים_, _onem, _flad,\n  { {0x60db2fcb, 0xa3ea15c4, 0x00000000, 0x00000000}},  //   _noum, одба_,   ,\n  { {0x26da02d5, 0x29120009, 0x6f030095, 0x00000000}},  // [9480] _topo_, _ijya_, kinc,\n  { {0x6f0310b1, 0x26da0026, 0x6f0d0048, 0x00000000}},  //   jinc, _uopo_, éacl,\n  { {0x2b470181, 0x00000000, 0x00000000, 0x00000000}},  //   _minc_,   ,   ,\n  { {0x2b47018e, 0x61e305b7, 0x236000b5, 0x00000000}},  //   _linc_, ønla, ppij_,\n  { {0x4f570447, 0x60db0e6d, 0x6f030197, 0x00000000}},  //   وجود_, _doum, finc,\n  { {0x93460106, 0x60c90e2d, 0x6f0323a1, 0x00000000}},  //   _інве, _enem, ginc,\n  { {0x1ea90054, 0x6da30098, 0x27360030, 0x00000000}},  //   ثاني_, вија, mænd_,\n  { {0x629e0061, 0x60db01aa, 0x4095013b, 0x00000000}},  //   lfpo, _goum, _прут,\n  { {0x6f0301a3, 0x2aaa0679, 0x00000000, 0x00000000}},  //   binc, отно_,   ,\n  { {0x6f032fcc, 0x2b470129, 0xddc6003b, 0x00000000}},  //   cinc, _cinc_, _обзи,\n  { {0x68ed0018, 0x6d5e0428, 0xe895007e, 0x00000000}},  //   _plad, ípad, нань,\n  { {0x80e00044, 0x63a601bb, 0x6ba700f8, 0x00000000}},  //   পোর্, _opkn, örgå,\n  { {0x7d0d0626, 0x59b003d7, 0xc7b8007e, 0x00000000}},  //   čast, _जनवर, мёр_,\n  { {0x68ed0016, 0x00000000, 0x00000000, 0x00000000}},  //   _wlad,   ,   ,\n  { {0x442d17fd, 0xb6040b52, 0x645a0035, 0x00000000}},  //   _še_, вятк, _ştia,\n  { {0x39982ae8, 0x7bc200b9, 0x6f032fcd, 0x00000000}},  //   més_, _krou, zinc,\n  { {0xe6670001, 0x39982fce, 0x60db0957, 0x00000000}},  // [9490] _отно, lés_, _roum,\n  { {0x35b501f9, 0x60db2fcf, 0x394910ed, 0x00000000}},  //   _збор, _soum, _hias_,\n  { {0x6f032fd0, 0x399800f4, 0x60db0bf2, 0x00000000}},  //   vinc, nés_, _poum,\n  { {0x30150594, 0x6ab80087, 0x6f032fd1, 0x00000000}},  //   ндер, _lavf, winc,\n  { {0x399800f4, 0x3f69003b, 0xdbd603b6, 0x00000000}},  //   hés_, чило_, _jääm,\n  { {0x60db0173, 0x39980010, 0x6ab80009, 0x00000000}},  //   _woum, kés_, _navf,\n  { {0x6f03038c, 0x7bc22fd2, 0xada50088, 0x00000000}},  //   rinc, _arou, хайл,\n  { {0x62340264, 0x6f0329c4, 0x39982fd3, 0x00000000}},  //   _ресу, sinc, dés_,\n  { {0xa2c40061, 0x7bc2009d, 0xe0d20049, 0x00000000}},  //   राच्, _crou, _גײן_,\n  { {0x3998009d, 0x3949010e, 0xa3c2006e, 0x00000000}},  //   fés_, _aias_, ्मत_,\n  { {0x39492fd4, 0x39980353, 0x2b4700d4, 0x00000000}},  //   _bias_, gés_, _vinc_,\n  { {0xf8bf0428, 0x394900c4, 0x00000000, 0x00000000}},  //   blém_, _cias_,   ,\n  { {0x7bc2030a, 0x39492fd5, 0x2b470129, 0x00000000}},  //   _grou, _dias_, _tinc_,\n  { {0xfbd0025a, 0x39981697, 0x2cad1702, 0x00000000}},  //   _ختم_, bés_, leed_,\n  { {0x64a6008b, 0x399804bd, 0x18a60425, 0x00000000}},  //   нава, cés_, _займ,\n  { {0x69c3002b, 0x2d870051, 0x9abc002b, 0x00000000}},  //   _irne, irne_, roċe,\n  { {0xccf20049, 0x81dd0044, 0x78a40009, 0x00000000}},  // [94a0] אכן_, _তেল_, _ibiv,\n  { {0x221601fb, 0x2cad11d1, 0x3f862fd6, 0x00000000}},  //   нфер, heed_, vrou_,\n  { {0xd01200a1, 0x008600e2, 0x00000000, 0x00000000}},  //   گلش_, елео,   ,\n  { {0x7053007a, 0x3f862b2b, 0xa3c2006e, 0x00000000}},  //   هنما, trou_, ्मद_,\n  { {0x39980047, 0x2d8726e8, 0x2cad00ab, 0x00000000}},  //   zés_, erne_, deed_,\n  { {0x399800f4, 0x7bc40006, 0x3f8600c4, 0x00000000}},  //   yés_, _šiuo, rrou_,\n  { {0xf98701b7, 0xc6930049, 0x2cad01a3, 0x00000000}},  //   _حب_, טאג_, feed_,\n  { {0x13e40044, 0xc19b00b3, 0x3f860087, 0x00000000}},  //   _নেয়, _משלי, prou_,\n  { {0xdccf001d, 0x39492fd7, 0x2d8703c6, 0x00000000}},  //   _tỉnh_, _rias_, arne_,\n  { {0x39982fd8, 0x7bc2049b, 0x2d8700b4, 0x00000000}},  //   tés_, _vrou, brne_,\n  { {0x0d8601f9, 0x394900eb, 0xdb0b20c4, 0x00000000}},  //   _член, _pias_, _argó,\n  { {0x399804bd, 0xa3c20164, 0x3eae0061, 0x00000000}},  //   rés_, ्मा_, left_,\n  { {0x39981e39, 0x69c3010f, 0x394900c4, 0x00000000}},  //   sés_, _erne, _vias_,\n  { {0x39980047, 0x00000000, 0x00000000, 0x00000000}},  //   pés_,   ,   ,\n  { {0x3949008e, 0x2d9c0010, 0x6283008e, 0x00000000}},  //   _tias_, ntve_, ónom,\n  { {0x81d60044, 0x612a01e5, 0x3eae2156, 0x00000000}},  //   িনা_, býli, heft_,\n  { {0x69c300ca, 0x00000000, 0x00000000, 0x00000000}},  // [94b0] _zrne,   ,   ,\n  { {0x78bd00eb, 0x78a40166, 0xd5bb00ed, 0x00000000}},  //   ldsv, _zbiv, _есм_,\n  { {0x7d02054f, 0x00000000, 0x00000000, 0x00000000}},  //   _omos,   ,   ,\n  { {0x823406ea, 0x78bd0332, 0xd4790049, 0x00000000}},  //   اركا, ndsv, _קאָל,\n  { {0xe9ff0011, 0x78bd0116, 0x752d00e7, 0x00000000}},  //   _khải_, idsv, mlaz,\n  { {0x7d021ce5, 0x752d054f, 0x00000000, 0x00000000}},  //   _amos, llaz,   ,\n  { {0x62342cf1, 0x2cad006c, 0x2d870133, 0x00000000}},  //   _беру, teed_, urne_,\n  { {0x6b9b261f, 0x7cf52fd9, 0x06ad0044, 0x00000000}},  //   ttug, _márg, খাটি,\n  { {0x2cad2a7d, 0x78af001a, 0x69dc2fda, 0x00000000}},  //   reed_, decv, ären,\n  { {0x6b9b02d5, 0x7d020007, 0x2cad010e, 0x00000000}},  //   rtug, _emos, seed_,\n  { {0x3f8f006c, 0x2cad0061, 0x6b9b00f8, 0x00000000}},  //   lugu_, peed_, stug,\n  { {0x69c300ca, 0xf1b201ce, 0x00000000, 0x00000000}},  //   _vrne, בסט_,   ,\n  { {0x442b2fdb, 0x752d01ee, 0x907a00b3, 0x00000000}},  //   _nyc_, dlaz, וטרי,\n  { {0x6d4b011c, 0x6f0d0051, 0x6b8905c6, 0x00000000}},  //   _higa, éach, mreg,\n  { {0x3f8f001c, 0x6d4b14a5, 0x6b8900b5, 0x00000000}},  //   hugu_, _kiga, lreg,\n  { {0x752d00bb, 0x442b0036, 0x7cfe0dec, 0x00000000}},  //   glaz, _byc_, tūri,\n  { {0x032601fb, 0x6d4b023a, 0x6b8905c6, 0x00000000}},  // [94c0] вдан, _miga, nreg,\n  { {0x6d4b19fa, 0x3f8f1b01, 0x394a0161, 0x00000000}},  //   _liga, dugu_, _časy_,\n  { {0xe2970888, 0x752d00bb, 0x63a90089, 0x00000000}},  //   тах_, blaz, _ģene,\n  { {0x6b8900b5, 0x21670b11, 0x55770049, 0x00000000}},  //   kreg, тици_, _בעטן_,\n  { {0xa85700b6, 0x6023007c, 0x752404a7, 0x00000000}},  //   דינה_, адца, moiz,\n  { {0x6b890030, 0x6d4b2fdc, 0x57fb009b, 0x00000000}},  //   dreg, _aiga, ולנו,\n  { {0x6d4b2fdd, 0x3eae0376, 0x6b8900bb, 0x00000000}},  //   _biga, reft_, ereg,\n  { {0x6d4b18a7, 0x2d8e010f, 0x6b8901a2, 0x00000000}},  //   _ciga, rufe_, freg,\n  { {0x6b89009f, 0x6d4b033b, 0x2d9c16d0, 0x00000000}},  //   greg, _diga, stve_,\n  { {0x61310073, 0x6d4b0d3e, 0x2ac6003b, 0x00000000}},  //   håll, _eiga, тљив,\n  { {0xa2c30183, 0x6d4b00f4, 0x7524002d, 0x00000000}},  //   रयत्, _figa, koiz,\n  { {0x6b890129, 0x7cf5008e, 0x765c013e, 0x00000000}},  //   breg, _cárd, ecry,\n  { {0xe9ff00ad, 0x6d58001c, 0x0eb60061, 0x00000000}},  //   _phải_, lqva, _आघाड,\n  { {0x6d4b0dab, 0x6eef0190, 0x6d400133, 0x00000000}},  //   _ziga, _løbn, lmma,\n  { {0x09e302a8, 0x35e40ee0, 0x27ed0340, 0x00000000}},  //   _војн, ацтв, šen_,\n  { {0x6d4e009d, 0xc9830140, 0x75240032, 0x00000000}},  //   _ébau, _туши, goiz,\n  { {0xe9ff0011, 0x6d4000b0, 0x752d0288, 0x00000000}},  // [94d0] _thải_, imma, rlaz,\n  { {0x7cf50047, 0x752d0282, 0x8c3d001a, 0x00000000}},  //   _tárg, slaz, meşt,\n  { {0x22470210, 0x2d5800f4, 0x8c3d1c17, 0x00000000}},  //   änk_, _née_, leşt,\n  { {0x3f8f022b, 0xf8bf00f4, 0x6b890190, 0x00000000}},  //   tugu_, ndé_, yreg,\n  { {0x6d4b01d5, 0x8c3d1f4a, 0x8fa50745, 0x00000000}},  //   _riga, neşt, уале,\n  { {0x6d4b2fde, 0x539a00b3, 0x7e780089, 0x00000000}},  //   _siga, _אישו, gavp,\n  { {0x6d4b00e7, 0x3f8f010e, 0x69dc2fdf, 0x00000000}},  //   _piga, sugu_, ärel,\n  { {0x6b890df9, 0x24990f65, 0x7cfe007f, 0x00000000}},  //   treg, _jcsm_, kūru,\n  { {0x6d4b006c, 0x1b49103d, 0x74c50044, 0x00000000}},  //   _viga, нзии_, _একাউ,\n  { {0x6b8906c0, 0xe9d9012b, 0x6d4000b0, 0x00000000}},  //   rreg, еко_, amma,\n  { {0x6d4b148e, 0x7c2b0036, 0x613800b9, 0x00000000}},  //   _tiga, _wygr, síle,\n  { {0x6b891c47, 0x69c11bb7, 0x00000000, 0x00000000}},  //   preg, rvle,   ,\n  { {0xae07007d, 0x69c12fe0, 0x00000000, 0x00000000}},  //   _वेतन_, svle,   ,\n  { {0x7d0929f1, 0x2cbf006c, 0x7cf500b9, 0x00000000}},  //   lies, ldud_, _dáre,\n  { {0xe737005e, 0x752401c5, 0x940e006b, 0x00000000}},  //   уер_, toiz, əfə_,\n  { {0x7d0918d5, 0xf99201ce, 0x2cbf006c, 0x00000000}},  //   nies, _הרה_, ndud_,\n  { {0x4ab7001c, 0x75242fe1, 0x8c3d001a, 0x00000000}},  // [94e0] _असाव, roiz, ceşt,\n  { {0x7bc40006, 0xd36f0025, 0x7d0901a2, 0x00000000}},  //   _šiuk, سهم_, hies,\n  { {0xea76007b, 0x869b00a3, 0x7d0927ef, 0x00000000}},  //   רגער_, _אייז, kies,\n  { {0x7d09174d, 0x7762006b, 0x00000000, 0x00000000}},  //   jies, _çoxs,   ,\n  { {0x7d090007, 0xdee601fb, 0xe61200a6, 0x00000000}},  //   dies, лоди, _خشک_,\n  { {0x2d80001e, 0x3f5900f6, 0x7cf50048, 0x00000000}},  //   ņiem_, _dèu_, _nárb,\n  { {0x7d092fe2, 0xc69300b3, 0xd1320025, 0x00000000}},  //   fies, צאה_, _همس_,\n  { {0x7d091058, 0x6d400333, 0xc5f3009b, 0x00000000}},  //   gies, umma, מדו_,\n  { {0x4e960025, 0x7cf50285, 0x6d580197, 0x00000000}},  //   _مشار, _bárb, sqva,\n  { {0x8c3d001a, 0xd00f03ec, 0x00000000, 0x00000000}},  //   veşt, _علل_,   ,\n  { {0x28f91769, 0x7d092aae, 0x39150726, 0x00000000}},  //   вень_, bies, имор,\n  { {0x8c3d001a, 0x2ca60e50, 0x3ebe0056, 0x00000000}},  //   teşt, _ubod_, _hatt_,\n  { {0xead41734, 0x3ebe18ee, 0xf8bf0068, 0x00000000}},  //   _воль, _katt_, rdé_,\n  { {0x8c3d000d, 0xbb830025, 0x26060061, 0x00000000}},  //   reşt, _الوي, _हेही_,\n  { {0x8c3d001a, 0x4a5b00a3, 0x7e5701ce, 0x00000000}},  //   seşt, _אדוו, רסלב_,\n  { {0xdb19010f, 0xa99b009b, 0x628a008e, 0x00000000}},  //   _erwä, _נבחר, ófon,\n  { {0x63b6005b, 0x657a0048, 0x00000000, 0x00000000}},  // [94f0] gwyn, áthr,   ,\n  { {0x290b0213, 0x7d090036, 0x3ebe00d8, 0x00000000}},  //   lica_, zies, _natt_,\n  { {0x3860009f, 0xa2c9001c, 0x90552fe3, 0x00000000}},  //   _yfir_, _होण्, авец,\n  { {0x7cf52678, 0xb4db00f6, 0x7d092fe4, 0x00000000}},  //   _márc, _ciàt, xies,\n  { {0x7d0916a6, 0xdb09000c, 0x248e013e, 0x00000000}},  //   vies, kveð, íjmů_,\n  { {0x7d092fe5, 0x290b00b5, 0x74d30061, 0x00000000}},  //   wies, hica_, डावृ,\n  { {0x7d092305, 0x290b016e, 0x3ebe0635, 0x00000000}},  //   ties, kica_, _datt_,\n  { {0xa2c9001c, 0x290b0091, 0x443900ca, 0x00000000}},  //   _होत्, jica_, _kzs_,\n  { {0x7d090007, 0x3ebe01d5, 0x69ce0030, 0x00000000}},  //   ries, _fatt_, åben,\n  { {0x7d090007, 0x3ebe0066, 0x6eef0030, 0x00000000}},  //   sies, _gatt_, _købm,\n  { {0x290b0198, 0x7d0928a9, 0x186a0467, 0x00000000}},  //   fica_, pies, кани_,\n  { {0x61fa0004, 0x443900ca, 0x7cf5013e, 0x00000000}},  //   _ütle, _ozs_, _dárc,\n  { {0x443900ca, 0x69dc0030, 0x07a61e8a, 0x00000000}},  //   _nzs_, ører, јагн,\n  { {0xe73a00ed, 0x3ebe0066, 0x00000000, 0x00000000}},  //   тег_, _xatt_,   ,\n  { {0x7ae3002a, 0x649a008b, 0xd62a2fe6, 0x00000000}},  //   _iont, ктар_, тове_,\n  { {0x290b05fa, 0x7ae30f90, 0xb466007c, 0x00000000}},  //   cica_, _hont, ркал,\n  { {0xdbd90181, 0x42560174, 0xe29a00ed, 0x00000000}},  // [9500] _açúc, атет, каа_,\n  { {0x8ccc03d7, 0x68e408b2, 0x577b0049, 0x00000000}},  //   _दोनो, _hoid, _שטיצ,\n  { {0x3ebe00f8, 0x68e4010e, 0x00000000, 0x00000000}},  //   _ratt_, _koid,   ,\n  { {0x7ae30488, 0x3ebe01e2, 0x68e400b0, 0x00000000}},  //   _lont, _satt_, _joid,\n  { {0x3ebe23d6, 0x443900ca, 0x684a0006, 0x00000000}},  //   _patt_, _gzs_, būdž,\n  { {0x290b000d, 0xdfcf0054, 0x7ae3023a, 0x00000000}},  //   zica_, بيه_, _nont,\n  { {0x629c06ec, 0x443901c5, 0x00000000, 0x00000000}},  //   _icro, _zzs_,   ,\n  { {0x290b049a, 0x7ae3002a, 0x3ea000b9, 0x00000000}},  //   xica_, _aont, řit_,\n  { {0x7ae30010, 0x2eb60aef, 0x3ebe0056, 0x00000000}},  //   _bont, _всес, _tatt_,\n  { {0x60c2010a, 0x8f9b00b3, 0x3b070026, 0x00000000}},  //   ldom, _בימי, _cmnq_,\n  { {0x7ae32578, 0x68f61ffe, 0x3257009b, 0x00000000}},  //   _dont, _blyd, יסים_,\n  { {0x60c000c7, 0x68f60ca4, 0x61e30190, 0x00000000}},  //   _jamm, _clyd, ønli,\n  { {0x4bd70014, 0x81ac0044, 0x68e400c4, 0x00000000}},  //   _نبود_, কটি_, _doid,\n  { {0x60c0006c, 0x7ae3005b, 0xbb4301fc, 0x00000000}},  //   _lamm, _gont, _дечк,\n  { {0x5bb6006e, 0x60c22fe7, 0x68f61f9d, 0x00000000}},  //   _अनुव, kdom, _flyd,\n  { {0x629c00ab, 0x2fc60091, 0x81ac0044, 0x00000000}},  //   _acro, kvog_, কটা_,\n  { {0x5695005e, 0x60c205d5, 0x7cf50010, 0x00000000}},  // [9510] _лапт, ddom, _jára,\n  { {0x60c21b5a, 0x68e41f51, 0x6131068f, 0x00000000}},  //   edom, _zoid, måli,\n  { {0x651900a6, 0x31580025, 0xb4db0129, 0x00000000}},  //   _مقدس_, لجنة_, _diàr,\n  { {0x60c01f95, 0x60c203bd, 0x6b820091, 0x00000000}},  //   _camm, gdom, _ovog,\n  { {0x60c002e1, 0xf8bf00f4, 0x7cf506b8, 0x00000000}},  //   _damm, llés_, _nára,\n  { {0x69ca00d4, 0xaf040088, 0x60c20036, 0x00000000}},  //   _orfe, опіл, adom,\n  { {0x613800b9, 0x60c2009d, 0x645a001a, 0x00000000}},  //   síla, bdom, _ştii,\n  { {0xeb9909e8, 0x7ae30023, 0x26c11449, 0x00000000}},  //   гии_, _sont, _laho_,\n  { {0x7ae31596, 0x69ca018e, 0x09e40044, 0x00000000}},  //   _pont, _arfe, _ফেলা,\n  { {0x26c12048, 0x60c01bac, 0x68f61bbb, 0x00000000}},  //   _naho_, _zamm, _slyd,\n  { {0x68e400f4, 0x7ae303f0, 0x60c00943, 0x00000000}},  //   _poid, _vont, _yamm,\n  { {0x673e0065, 0x7ae3061d, 0x7cf513f5, 0x00000000}},  //   _shpj, _wont, _fára,\n  { {0x68e4021e, 0x6b650088, 0x69ca00c7, 0x00000000}},  //   _void, _укла, _erfe,\n  { {0x7afa111d, 0x60c20089, 0xa03a0049, 0x00000000}},  //   chtt, zdom, טערפ,\n  { {0x99850b59, 0xf8bf0f2a, 0xb99501b7, 0x00000000}},  //   _البو, glés_, _العب,\n  { {0x629c001c, 0xe8f60123, 0xa50701ee, 0x00000000}},  //   _scro, _دستخ, беса_,\n  { {0x60c001e3, 0x7cfc0047, 0x63bd0009, 0x00000000}},  // [9520] _ramm, _férf, _cssn,\n  { {0x60c027a1, 0x212d0022, 0xf8bf009d, 0x00000000}},  //   _samm, _akeh_, blés_,\n  { {0x60c00022, 0x60c20d22, 0xb4db0129, 0x00000000}},  //   _pamm, tdom, _viàr,\n  { {0x7bcb00d6, 0x03a601e0, 0x53a60478, 0x00000000}},  //   _orgu, _лимо, _ламб,\n  { {0x4424001d, 0x81e60055, 0xbbb60164, 0x00000000}},  //   _âm_, _বেশ_, _अनेक,\n  { {0x63a40006, 0x60c205d5, 0x60c00bc7, 0x00000000}},  //   mtin, sdom, _wamm,\n  { {0x60c0003c, 0x81e60055, 0xa3c2007d, 0x00000000}},  //   _tamm, _বের_, ्मक_,\n  { {0x63a400ab, 0x7cf50010, 0xa11601d8, 0x00000000}},  //   otin, _pára, _اورت,\n  { {0xac180888, 0xa2cd0061, 0xda7a02be, 0x00000000}},  //   ропу_, साच्, лян_,\n  { {0xf2d30049, 0x7cf50010, 0xdd7300a1, 0x00000000}},  //   ִער_, _vára, _کھوک,\n  { {0x63a4003c, 0x7bcb0d3d, 0x68fd0023, 0x00000000}},  //   htin, _ergu, ërdo,\n  { {0x63a42fe8, 0x7cfc000c, 0x6b820166, 0x00000000}},  //   ktin, _sérf, _tvog,\n  { {0x63a412d8, 0x6d5a1212, 0x26c100fa, 0x00000000}},  //   jtin, _huta, _paho_,\n  { {0x6d5a000b, 0x7e7a00f8, 0xf4c50044, 0x00000000}},  //   _kuta, _jetp, _একেব,\n  { {0x6d5a12e0, 0x26c309e4, 0x63a40aba, 0x00000000}},  //   _juta, rdjo_, etin,\n  { {0x6d5a2953, 0xa4f1014a, 0x7cf50051, 0x00000000}},  //   _muta, _dışı_, _lárn,\n  { {0x63a40343, 0x6d5a0cda, 0x69c805b7, 0x00000000}},  // [9530] gtin, _luta, lvde,\n  { {0x7e7a0190, 0x6d5a06fa, 0xf8bf01e6, 0x00000000}},  //   _netp, _outa, plés_,\n  { {0x7cfc0047, 0x2ee50210, 0x6d5a0006, 0x00000000}},  //   _kérd, _rolf_, _nuta,\n  { {0x63a42fe9, 0x999b0049, 0xd0111095, 0x00000000}},  //   btin, רבאט, ولا_,\n  { {0x6d5a00f4, 0x63a40549, 0xdbf100b9, 0x00000000}},  //   _auta, ctin, _přív,\n  { {0x6d5a2fea, 0x3983011f, 0x9abc002b, 0x00000000}},  //   _buta, yıs_, soċj,\n  { {0x78ad0119, 0x7bc7001e, 0x3f760036, 0x00000000}},  //   _obav, ājum, ału_,\n  { {0x6d5a0a44, 0xab65004c, 0x55780049, 0x00000000}},  //   _duta, овил, זעהן_,\n  { {0xeab902dc, 0x28dd0204, 0x00000000, 0x00000000}},  //   айп_, यानि,   ,\n  { {0x7e7a2feb, 0x6d5a0010, 0x78ad2fec, 0x00000000}},  //   _getp, _futa, _abav,\n  { {0xd94601be, 0x6d5a1855, 0x63a40032, 0x00000000}},  //   жени, _guta, ztin,\n  { {0x63a4009f, 0x7bcb016c, 0x00000000, 0x00000000}},  //   ytin, _trgu,   ,\n  { {0xe73a2fed, 0x7cf50047, 0xbbeb05d4, 0x00000000}},  //   ием_, _háro, _حرام_,\n  { {0x7cf50010, 0x291900b0, 0x63a401ee, 0x00000000}},  //   _káro, ansa_, vtin,\n  { {0x39400a8a, 0x69160059, 0x65c30364, 0x00000000}},  //   _this_, jšeg, мбра,\n  { {0x68fd010f, 0x00000000, 0x00000000, 0x00000000}},  //   chsd,   ,   ,\n  { {0x63a401e5, 0x130a007e, 0x03a300ed, 0x00000000}},  // [9540] utin, анай_, мито,\n  { {0x63a4046e, 0x78ad2fee, 0x16aa09e8, 0x00000000}},  //   rtin, _zbav, _твои_,\n  { {0x0219008b, 0x7cf50428, 0x7bcd25ec, 0x00000000}},  //   біць_, _náro, _šaul,\n  { {0x63a41bbb, 0x7cfc0010, 0x92da0044, 0x00000000}},  //   ptin, _kére, ়সে_,\n  { {0x6d5a010a, 0xae9a0025, 0x316d012d, 0x00000000}},  //   _suta, لضغط_, _čeze_,\n  { {0x2480002a, 0x7cfc0010, 0x3ce6006c, 0x00000000}},  //   laim_, _mére, _soov_,\n  { {0xccfa003b, 0x7cf50010, 0x3f760036, 0x00000000}},  //   ићи_, _várn, słu_,\n  { {0x6d5c0b33, 0x24800048, 0x7e7a0908, 0x00000000}},  //   _éram, naim_, _wetp,\n  { {0xd0120188, 0x9abc002b, 0x2fcd0133, 0x00000000}},  //   _غلط_, loċi, _greg_,\n  { {0x79a602dc, 0x78ad0197, 0x3f800006, 0x00000000}},  //   орме, _sbav, šius_,\n  { {0xed5a008b, 0x7cfc029d, 0xdca600ed, 0x00000000}},  //   _тое_, _aére, _мажи,\n  { {0x7cfc2fef, 0x69c800f8, 0x00000000, 0x00000000}},  //   _bére, rvde,   ,\n  { {0x7cf501ca, 0x7cfc00c4, 0x24802ff0, 0x00000000}},  //   _záro, _cére, daim_,\n  { {0xdcf80006, 0x00000000, 0x00000000, 0x00000000}},  //   tuvė,   ,   ,\n  { {0x6d420011, 0xa4d503e8, 0x00000000, 0x00000000}},  //   _khoa, пові,   ,\n  { {0x2458041f, 0x7aea0089, 0x78ad2982, 0x00000000}},  //   жать_, žotā, _ubav,\n  { {0x7cfc00f4, 0xd25b1efa, 0x2bcd013d, 0x00000000}},  // [9550] _gére, аце_, ़िया,\n  { {0x026b007e, 0x00000000, 0x00000000, 0x00000000}},  //   ршай_,   ,   ,\n  { {0x116a007a, 0x24800051, 0x51841606, 0x00000000}},  //   مللی_, baim_, дуча,\n  { {0x1db40061, 0x2fcd00ea, 0x24800048, 0x00000000}},  //   ंबईत, _preg_, caim_,\n  { {0x7c220065, 0x9f350088, 0x00000000, 0x00000000}},  //   _nxor, педі,   ,\n  { {0xed59004c, 0x7cf507fd, 0x69160e0d, 0x00000000}},  //   бок_, _páro, pšeg,\n  { {0x408700ed, 0xad580a78, 0x63b9005d, 0x00000000}},  //   _муаб, орых_, şanı,\n  { {0x7cf50047, 0x2fcd0065, 0x6d420082, 0x00000000}},  //   _váro, _treg_, _choa,\n  { {0x2d980039, 0x3ec400b0, 0x7bc9009d, 0x00000000}},  //   _åren_, östä_, uveu,\n  { {0x7bc900f4, 0x4fc4008b, 0x7cf50010, 0x00000000}},  //   rveu, _ўста, _táro,\n  { {0x99d51019, 0x00000000, 0x00000000, 0x00000000}},  //   ستدا,   ,   ,\n  { {0x7cfc004a, 0x6131063b, 0x00000000, 0x00000000}},  //   _pére, måls,   ,\n  { {0x6d492ff1, 0x7cf50010, 0x2480010e, 0x00000000}},  //   mmea, _járm, vaim_,\n  { {0xb8f302d2, 0x7cf52ff2, 0x6d490c0e, 0x00000000}},  //   _हो_, _márm, lmea,\n  { {0x24802f50, 0x00000000, 0x00000000, 0x00000000}},  //   taim_,   ,   ,\n  { {0x7d1b2ff3, 0x77860517, 0x6d4904df, 0x00000000}},  //   nnus, _елиз, nmea,\n  { {0x24800051, 0x7cfc1261, 0xaad00061, 0x00000000}},  // [9560] raim_, _hérc, _थोडक,\n  { {0x6d490051, 0x66270010, 0x248016eb, 0x00000000}},  //   hmea, érké, saim_,\n  { {0x672e0146, 0xc2190088, 0x7d1b0190, 0x00000000}},  //   mobj, оєї_, knus,\n  { {0x7cfc2ff4, 0x3167027b, 0x7cf50047, 0x00000000}},  //   _mérc, ínza_, _bárm,\n  { {0xa49b000a, 0x6d49017b, 0x7cf500fa, 0x00000000}},  //   _blòf, dmea, _cárm,\n  { {0x6daa005f, 0x6e9406e3, 0x7d1b006c, 0x00000000}},  //   _fəal, фику, enus,\n  { {0x4343081c, 0x1ea90d3a, 0x00000000, 0x00000000}},  //   _черв, تاني_,   ,\n  { {0x7cf500dc, 0x7d1b0614, 0xf653009b, 0x00000000}},  //   _fárm, gnus, עצה_,\n  { {0x395c0f10, 0xa49b0173, 0x00000000, 0x00000000}},  //   _suvs_, _imòt,   ,\n  { {0xfee90025, 0xb4db0011, 0xbea30140, 0x00000000}},  //   _وعلى_, _nhàn, _паук,\n  { {0x386d0211, 0x672e0059, 0x6d420011, 0x00000000}},  //   ñero_, dobj, _thoa,\n  { {0x7c22002d, 0xddc82ff5, 0x6d4900e5, 0x00000000}},  //   _txor, _kedž, cmea,\n  { {0x2c080014, 0x3f8600c4, 0xb9a300a1, 0x00000000}},  //   _بعضی_, nsou_, ومیٹ,\n  { {0xddc8010a, 0xb4db001d, 0x3f8600fa, 0x00000000}},  //   _medž, _chàn, isou_,\n  { {0xbb2b00a1, 0x00000000, 0x00000000, 0x00000000}},  //   _اتنے_,   ,   ,\n  { {0x2eb903d7, 0x645a001a, 0x7aea0190, 0x00000000}},  //   _इस्त, _ştir, _hoft,\n  { {0x3f8600b9, 0x69c5000c, 0x98a4012b, 0x00000000}},  // [9570] jsou_, _áher, _чиње,\n  { {0xd25b1606, 0xd7fc009b, 0x7bcd0006, 0x00000000}},  //   сца_, _להחל, _šauk,\n  { {0xaaae0164, 0xf1c20089, 0x7aea12e9, 0x00000000}},  //   ज्यक, jušā_, _moft,\n  { {0x7aea124c, 0x00000000, 0x00000000, 0x00000000}},  //   _loft,   ,   ,\n  { {0x3ce00309, 0x00000000, 0x00000000, 0x00000000}},  //   काने_,   ,   ,\n  { {0xe8da03d7, 0x2d5100b9, 0x799a0020, 0x00000000}},  //   _बच्च, _všem_, kutw,\n  { {0x7bc2000a, 0x6d490c78, 0x6aba06ec, 0x00000000}},  //   _asou, tmea, detf,\n  { {0xed560265, 0x613102e1, 0x00000000, 0x00000000}},  //   мощ_, råls,   ,\n  { {0x6d490fff, 0x7d1b0ad1, 0xddc8012d, 0x00000000}},  //   rmea, rnus, _gedž,\n  { {0xff530025, 0x3869000c, 0x799a0020, 0x00000000}},  //   _أخر_, _afar_, futw,\n  { {0x776d05d2, 0x7bc2000a, 0x7aea00f8, 0x00000000}},  //   _atax, _esou, _doft,\n  { {0x38690065, 0x7cf50010, 0x7bc20009, 0x00000000}},  //   _cfar_, _márk, _fsou,\n  { {0xfaa50175, 0xe9db0014, 0x99d50014, 0x00000000}},  //   _жало, _گذشت_, ستگا,\n  { {0xfc300445, 0x00000000, 0x00000000, 0x00000000}},  //   _صحن_,   ,   ,\n  { {0x7cfc2ff6, 0x64a62ff7, 0xe73700ed, 0x00000000}},  //   _héra, мава, фер_,\n  { {0x69c301d6, 0x6eef0030, 0x672e29f9, 0x00000000}},  //   _isne, _købs, sobj,\n  { {0xb4db00ad, 0xb4be03d7, 0xe94700a6, 0x00000000}},  // [9580] _thàn, _इसी_, _تروی,\n  { {0x61380ca7, 0x2d8705b7, 0xb0c6007d, 0x00000000}},  //   míli, ksne_, _रोजग,\n  { {0x7cf50010, 0x0219007e, 0x6eef0190, 0x00000000}},  //   _várj, піць_, _løbs,\n  { {0x7cf500b9, 0x0cd80044, 0x69c32ff8, 0x00000000}},  //   _dárk, _তত্ত, _msne,\n  { {0x6ef40129, 0xddd811af, 0x00000000, 0x00000000}},  //   _hàbi, davš,   ,\n  { {0x69c3000a, 0xbd6a005e, 0x81b60044, 0x00000000}},  //   _osne, орие_, জিব_,\n  { {0xf987026c, 0x3f860181, 0x2cad0133, 0x00000000}},  //   _جب_, ssou_, ffed_,\n  { {0x67210746, 0xdb1901a2, 0x40930025, 0x00000000}},  //   člji, _erwü, _للفر,\n  { {0x7aea001a, 0x7cfc009d, 0x69c300fa, 0x00000000}},  //   _poft, _céra, _asne,\n  { {0x7aea008d, 0x7cfc00f4, 0x00000000, 0x00000000}},  //   _qoft, _déra,   ,\n  { {0x6aba0f5d, 0xd9151001, 0x00000000, 0x00000000}},  //   retf, едны,   ,\n  { {0x61e30039, 0x7bc2000a, 0x38690023, 0x00000000}},  //   änli, _tsou, _qfar_,\n  { {0x628e004f, 0x7cfc0e16, 0x69c32ff9, 0x00000000}},  //   _odbo, _géra, _esne,\n  { {0xaff90049, 0x00000000, 0x00000000, 0x00000000}},  //   פּרי,   ,   ,\n  { {0xe93b035b, 0x16342e54, 0x5ec80044, 0x00000000}},  //   _وسعت_, веря, লাপে,\n  { {0x628e0016, 0x3ea90166, 0x27ee0023, 0x00000000}},  //   _adbo, đati_, ëjnë_,\n  { {0x61380181, 0xa87c009b, 0x43740088, 0x00000000}},  // [9590] cíli, _ואחר, вуєт,\n  { {0x28dd0061, 0x7cf52717, 0x68ed02d4, 0x00000000}},  //   यावि, _párk, _hoad,\n  { {0x68ed002d, 0x2d9c001b, 0x6ef400d4, 0x00000000}},  //   _koad, juve_, _gàbi,\n  { {0x78bd0039, 0x2d9c004a, 0x659a0049, 0x00000000}},  //   nesv, duve_, _צירק,\n  { {0x68ed2b11, 0x3f89009d, 0x00000000, 0x00000000}},  //   _moad, éau_,   ,\n  { {0x68ed0038, 0xed590077, 0x2cad005b, 0x00000000}},  //   _load, пок_, wfed_,\n  { {0x62850058, 0x78bd0479, 0x44392ffa, 0x00000000}},  //   maho, kesv, _hys_,\n  { {0xd65800b6, 0x62850010, 0x2d8701ee, 0x00000000}},  //   ויות_, laho, rsne_,\n  { {0x60db011c, 0x61380181, 0xfbd10d3a, 0x00000000}},  //   _inum, xíli, اتب_,\n  { {0x6285006a, 0x7cf52ffb, 0x78a40197, 0x00000000}},  //   naho, _mári, _sciv,\n  { {0x68ed12b2, 0x7cf50051, 0xc3320097, 0x00000000}},  //   _boad, _lári, רוי_,\n  { {0xb4be03d7, 0x7cfc009f, 0x68ed001a, 0x00000000}},  //   _इसे_, _hérn, _coad,\n  { {0xb8e803d7, 0x44392ffc, 0x62851449, 0x00000000}},  //   _उस_, _nys_, kaho,\n  { {0x29020065, 0x6d591876, 0x613800c4, 0x00000000}},  //   shka_, _hiwa, ríli,\n  { {0x6d59000b, 0x61380181, 0x386b0051, 0x00000000}},  //   _kiwa, síli, éirí_,\n  { {0x07a60081, 0x44391b91, 0x6d59003f, 0x00000000}},  //   _заин, _bys_, _jiwa,\n  { {0x442602d5, 0x2bd2013d, 0x7cf52ffd, 0x00000000}},  // [95a0] ço_, तिया, _várh,\n  { {0x60db2ffe, 0x6d59011c, 0xa857009b, 0x00000000}},  //   _anum, _liwa, _איפה_,\n  { {0x5ec80044, 0x290001a3, 0x443900d9, 0x00000000}},  //   লামে, _klia_, _eys_,\n  { {0x6d592fff, 0xcfa60478, 0x60c9004a, 0x00000000}},  //   _niwa, ешки, _caem,\n  { {0x08770049, 0x628500e0, 0x4439123c, 0x00000000}},  //   גענט_, baho, _gys_,\n  { {0x2d9c3000, 0x60db0035, 0x8f750088, 0x00000000}},  //   tuve_, _enum, туці,\n  { {0x6da306e3, 0x7ec80089, 0xb87b0f6c, 0x00000000}},  //   гија, _rūpē, rkíz,\n  { {0xed57012b, 0x6d590022, 0x2d9c28e2, 0x00000000}},  //   ној_, _ciwa, ruve_,\n  { {0x6b89003a, 0x68ed00ab, 0xd11700a3, 0x00000000}},  //   gseg, _road, _נקמה_,\n  { {0x29002927, 0xa49b0173, 0x00000000, 0x00000000}},  //   _alia_, _klòc,   ,\n  { {0xf8dd024c, 0x1317009b, 0x78bd0f86, 0x00000000}},  //   यालय, תחיל_, tesv,\n  { {0x62850880, 0x040b0011, 0x29000d0a, 0x00000000}},  //   zaho, _cưỡn, _clia_,\n  { {0x040b001d, 0x7cfc1697, 0x68ed00c4, 0x00000000}},  //   _dưỡn, _héro, _voad,\n  { {0x29000b93, 0x7f5a002b, 0x443f002b, 0x00000000}},  //   _elia_, _jitq, _ġu_,\n  { {0x44391651, 0x68ed3001, 0x628507e4, 0x00000000}},  //   _sys_, _toad, vaho,\n  { {0xf98f1298, 0x98a50089, 0xb0cf01f5, 0x00000000}},  //   _ابو_, ēlē_, _सोंग,\n  { {0x545500e3, 0x628500b9, 0x00000000, 0x00000000}},  // [95b0] тват, taho,   ,\n  { {0x2d8c3002, 0x7cf502d5, 0x60c9010e, 0x00000000}},  //   _ovde_, _vári, _saem,\n  { {0x44390343, 0xa2d00061, 0x3949027e, 0x00000000}},  //   _wys_, _डोळ्, _khas_,\n  { {0x44390036, 0x62850253, 0x00000000, 0x00000000}},  //   _tys_, saho,   ,\n  { {0x7cfc00f4, 0x6d592943, 0x62850275, 0x00000000}},  //   _aéro, _riwa, paho,\n  { {0x63ad015e, 0x6d5900e7, 0x9f40000c, 0x00000000}},  //   mtan, _siwa, áið_,\n  { {0xa9280142, 0x69160161, 0x00000000, 0x00000000}},  //   nažé, dšen,   ,\n  { {0x92580265, 0x7cfc00f4, 0x6b890d49, 0x00000000}},  //   _част_, _déro, tseg,\n  { {0x63ad020c, 0x6d59000b, 0x2d8c014a, 0x00000000}},  //   ntan, _viwa, _evde_,\n  { {0x9e07017f, 0x3949011c, 0xa3d2007d, 0x00000000}},  //   _пчел, _ahas_, वित_,\n  { {0x6b890207, 0x63ad27d2, 0x6d592b1c, 0x00000000}},  //   sseg, htan, _tiwa,\n  { {0x63ad01c9, 0xa3c10164, 0x39490048, 0x00000000}},  //   ktan, ंबा_, _chas_,\n  { {0x7cfc0010, 0x7bc70089, 0x00000000, 0x00000000}},  //   _mérl, ājus,   ,\n  { {0x63ad0ea4, 0x6ef400f6, 0x7c240006, 0x00000000}},  //   dtan, _fàbu, _žirg,\n  { {0x63ad0799, 0x6efd000a, 0x00000000, 0x00000000}},  //   etan, _lèbo,   ,\n  { {0x2cbf018e, 0x63ad15df, 0x3949002b, 0x00000000}},  //   neud_, ftan, _ghas_,\n  { {0xa3d20201, 0xdcea0107, 0x63ad3003, 0x00000000}},  // [95c0] विध_, žiće, gtan,\n  { {0x130306b6, 0xc7d7009b, 0x3cef0045, 0x00000000}},  //   азум, _יופי_, _logv_,\n  { {0xa50a1ef9, 0x63ad008a, 0x7cfc0010, 0x00000000}},  //   _жена_, atan, _bérl,\n  { {0x6f010009, 0x63ad3004, 0xc4830401, 0x00000000}},  //   _allc, btan, _клюк,\n  { {0x10a3081c, 0x7cf50010, 0x7cfc3005, 0x00000000}},  //   ричн, _járu, _séro,\n  { {0xdd900426, 0x7cfc15a3, 0x09c80044, 0x00000000}},  //   موت_, _péro, ষমতা,\n  { {0xe29701f9, 0x78b60161, 0x7cf501e5, 0x00000000}},  //   _јас_, _obyv, _láru,\n  { {0x60970025, 0x7cfc009d, 0x614602ea, 0x00000000}},  //   _لنفس_, _véro, _реба,\n  { {0x9eaa01f9, 0xfd0f0cd9, 0xf8bf00f4, 0x00000000}},  //   _оваа_, تجو_, nnée_,\n  { {0x38601994, 0x8c43025f, 0x691600b9, 0x00000000}},  //   _agir_, шење, ušen,\n  { {0x63ad002d, 0x692404eb, 0x7bcd05a0, 0x00000000}},  //   ztan, rđen, _šaut,\n  { {0x63ad10e9, 0xd90f00a6, 0x776400f6, 0x00000000}},  //   ytan, تیب_, _buix,\n  { {0x63ad1ad6, 0x6916061b, 0x7d021ac4, 0x00000000}},  //   xtan, pšen, _ilos,\n  { {0xd7f817c3, 0x8c43170a, 0x395b0066, 0x00000000}},  //   тую_, _тече, _wiqs_,\n  { {0xb9090044, 0x80d80204, 0x3495058c, 0x00000000}},  //   _যত_, _नोभे, лавр,\n  { {0x63ad0c71, 0x69240091, 0x25ba0022, 0x00000000}},  //   ttan, nđel, _dppl_,\n  { {0x29190181, 0xf8bf00f4, 0x776400d4, 0x00000000}},  // [95d0] misa_, gnée_, _guix,\n  { {0x63ad0971, 0x291904cb, 0x6443006b, 0x00000000}},  //   rtan, lisa_, ənil,\n  { {0xa834025a, 0x7cf50d7f, 0x7d023006, 0x00000000}},  //   _معیش, _kárt, _olos,\n  { {0x63ad01aa, 0x2919000b, 0x7cf50010, 0x00000000}},  //   ptan, nisa_, _járt,\n  { {0x7cf526d5, 0x6efd000a, 0x83840930, 0x00000000}},  //   _márt, _fèbl, _высе,\n  { {0x2489000b, 0x7d0201aa, 0x29190035, 0x00000000}},  //   laam_, _alos, hisa_,\n  { {0x29190263, 0x609b0025, 0x00000000, 0x00000000}},  //   kisa_, _يخرج_,   ,\n  { {0x7d020038, 0x24890250, 0xdd110095, 0x00000000}},  //   _clos, naam_, _düşl,\n  { {0x7cfc3007, 0x3ea500a1, 0x69dc1565, 0x00000000}},  //   _kérj, _مشاہ, åren,\n  { {0x81b60044, 0x7d0204e7, 0x6138000c, 0x00000000}},  //   জির_, _elos, bíls,\n  { {0x29190020, 0x7cf53008, 0x2010007f, 0x00000000}},  //   fisa_, _bárt, ėlių_,\n  { {0x7cf50051, 0x29190058, 0xc19a0049, 0x00000000}},  //   _cárt, gisa_, עשרי,\n  { {0xb4db0009, 0x776400c4, 0x24891487, 0x00000000}},  //   _ghài, _quix, daam_,\n  { {0x7d02016c, 0x8c1a00a0, 0x673501d5, 0x00000000}},  //   _zlos, _אוני, gozj,\n  { {0x2919000b, 0xd6270aa2, 0x442b006b, 0x00000000}},  //   bisa_, горе_, _axc_,\n  { {0x29190181, 0x64990b5f, 0x656500e0, 0x00000000}},  //   cisa_, ктур_, _duhh,\n  { {0xe3ba008b, 0x03260816, 0x93aa01f7, 0x00000000}},  // [95e0] эба_, гдан, عارف_,\n  { {0xf8bf00f4, 0x03a302ea, 0x442b0146, 0x00000000}},  //   rnée_, сифо, _dxc_,\n  { {0x442b033f, 0x6b9b22f0, 0x00000000, 0x00000000}},  //   _exc_, hrug,   ,\n  { {0xbfaa0140, 0x104a0077, 0x00000000, 0x00000000}},  //   етке_, няли_,   ,\n  { {0x7524050a, 0xb4c0006e, 0xd12f0025, 0x00000000}},  //   mniz, ंजी_, أمن_,\n  { {0xa3c10309, 0x51861880, 0x91860151, 0x00000000}},  //   ंबर_, _مشرق, _مجرم,\n  { {0x7d023009, 0x6f180087, 0x29190045, 0x00000000}},  //   _plos, rivc, yisa_,\n  { {0x7cfc0b76, 0x3fa60137, 0x6b9b300a, 0x00000000}},  //   _térm, _مصطف, frug,\n  { {0xd0260147, 0x2aaa025f, 0x60c200e7, 0x00000000}},  //   _смай, нтно_, meom,\n  { {0x60c2033f, 0x248900b5, 0x6d4b00fa, 0x00000000}},  //   leom, zaam_, _ehga,\n  { {0x69160006, 0x7cf52717, 0x6ef40129, 0x00000000}},  //   pšel, _párt, _fàbr,\n  { {0x6b9b0030, 0x7d0200b0, 0xb4db0009, 0x00000000}},  //   brug, _ulos, _thài,\n  { {0x29190065, 0x68fd300b, 0x6d400009, 0x00000000}},  //   risa_, rksd, mlma,\n  { {0x291923f7, 0x27ff002b, 0xa49b00f6, 0x00000000}},  //   sisa_, ġun_, _clòn,\n  { {0x29190091, 0x442b00f8, 0x6d4001c3, 0x00000000}},  //   pisa_, _sxc_, olma,\n  { {0x69ca01d5, 0x1b1a0044, 0x7524300c, 0x00000000}},  //   _isfe, _নীচে_, gniz,\n  { {0x6d400368, 0xd371023c, 0x60c2010e, 0x00000000}},  // [95f0] ilma, زها_, deom,\n  { {0x75240032, 0x2489300d, 0x2d9c016c, 0x00000000}},  //   aniz, saam_, krve_,\n  { {0x26c3102c, 0x5215300e, 0xf7700014, 0x00000000}},  //   mejo_, јдет, _وای_,\n  { {0x26c30b7f, 0x60c20146, 0xe5c40088, 0x00000000}},  //   lejo_, geom, _усьо,\n  { {0xa2d00061, 0xafe501ab, 0x00000000, 0x00000000}},  //   _डोक्, ролл,   ,\n  { {0x26c3300f, 0x6d400270, 0x69d801ee, 0x00000000}},  //   nejo_, elma, _orve,\n  { {0x6b820173, 0xfce52f15, 0xf4ba01e5, 0x00000000}},  //   _awog, иоко, _þýða_,\n  { {0x6b9b085a, 0xdb0000f6, 0x00000000, 0x00000000}},  //   trug, lumè,   ,\n  { {0x69d80004, 0x2d9c3010, 0x60c4006c, 0x00000000}},  //   _arve, arve_, õime,\n  { {0x6b9b002b, 0x26c301d9, 0xe9d90072, 0x00000000}},  //   rrug, jejo_, вко_,\n  { {0x62870219, 0x69d80363, 0x2bb70061, 0x00000000}},  //   _mejo, _crve, _अहवा,\n  { {0x62873011, 0x69d80091, 0x7cf50a87, 0x00000000}},  //   _lejo, _drve, _várs,\n  { {0x290c010a, 0x69ca00d6, 0x69d800bb, 0x00000000}},  //   ėda_, _esfe, _erve,\n  { {0x7cf50047, 0x3ced07a0, 0x05020044, 0x00000000}},  //   _társ, ljev_, _এদের_,\n  { {0x2d9805cb, 0x7524022e, 0x2d5100ca, 0x00000000}},  //   _året_, tniz, _ušes_,\n  { {0x7d1b0f88, 0x8883005e, 0x3ced0fd0, 0x00000000}},  //   nius, _длъж, njev_,\n  { {0x75240314, 0xf7720355, 0x93c800a1, 0x00000000}},  // [9600] rniz, _باب_, دازہ_,\n  { {0x7d1b0197, 0x7cf5008e, 0x26c300ca, 0x00000000}},  //   hius, _márq, cejo_,\n  { {0x41aa00e3, 0xa2a7006e, 0x60c208ce, 0x00000000}},  //   твен_, _चार्, teom,\n  { {0x53a60780, 0x19b60049, 0x00000000, 0x00000000}},  //   _камб, יפער_,   ,\n  { {0x7d090065, 0xe3b2031d, 0x7d1b0a62, 0x00000000}},  //   dhes, _برج_, dius,\n  { {0x7cfc0010, 0x98ab0036, 0x62870093, 0x00000000}},  //   _térk, mocą_, _gejo,\n  { {0xb23a0054, 0x63a40052, 0x7cfc00f4, 0x00000000}},  //   _شكرا_, luin, _héri,\n  { {0x6b820263, 0x92a60046, 0x7d1b0207, 0x00000000}},  //   _pwog, _wyłą, gius,\n  { {0xa2db0061, 0x6d40000c, 0x7cf512c5, 0x00000000}},  //   नाच्, rlma, _párr,\n  { {0x69d80209, 0x7cfc06d2, 0x2d9c2c2d, 0x00000000}},  //   _prve, _méri, prve_,\n  { {0xf2d90049, 0x63a40145, 0x6ce6007e, 0x00000000}},  //   אַרל, huin, _віле,\n  { {0x63a40315, 0xfca90025, 0x7d1b007f, 0x00000000}},  //   kuin, _ماهو_, cius,\n  { {0x8c43098c, 0x3157007b, 0xe667151c, 0x00000000}},  //   _деце, ייטן_, итво,\n  { {0x63a400d4, 0x7cfc000c, 0x69d8016c, 0x00000000}},  //   duin, _sérh, _trve,\n  { {0x26d10046, 0x628711b1, 0x26c3024f, 0x00000000}},  //   rdzo_, _rejo, rejo_,\n  { {0x26c33012, 0x3f8f0016, 0x6287009d, 0x00000000}},  //   sejo_, ysgu_, _sejo,\n  { {0x63a4081d, 0x26c3008e, 0x6e2d014a, 0x00000000}},  // [9610] guin, pejo_, ğabi,\n  { {0x883c00b6, 0x7cfc00f4, 0x6e2d014a, 0x00000000}},  //   _בתחו, _déri, şabi,\n  { {0x75d5023c, 0x2d510087, 0x00000000, 0x00000000}},  //   _ايجا, _ošep_,   ,\n  { {0x7cfc0699, 0x63a4003a, 0x00000000, 0x00000000}},  //   _féri, buin,   ,\n  { {0x63a4001a, 0x7f190cf2, 0x6287004a, 0x00000000}},  //   cuin, ліку_, _tejo,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7d090065, 0x9294003b, 0x3cff010e, 0x00000000}},  //   thes, _фасц, tkuv_,\n  { {0x518402dc, 0x00000000, 0x00000000, 0x00000000}},  //   _фура,   ,   ,\n  { {0x3ced01d9, 0x7d1b0036, 0x7d090010, 0x00000000}},  //   rjev_, rius, rhes,\n  { {0xfe70002c, 0x7d090065, 0x78ad00f6, 0x00000000}},  //   _قدم_, shes, _acav,\n  { {0x7d09014a, 0x63a43013, 0x6efd0173, 0x00000000}},  //   phes, zuin, _nèbi,\n  { {0x05090044, 0x00000000, 0x00000000, 0x00000000}},  //   রচুর_,   ,   ,\n  { {0xeb99004c, 0xdb0b0030, 0x7bd90045, 0x00000000}},  //   _сил_, _opgø, _urwu,\n  { {0xa3c10201, 0xda7b041f, 0x00000000, 0x00000000}},  //   ंबई_, _ряд_,   ,\n  { {0x7cfc128c, 0xe8d90011, 0x7ae30292, 0x00000000}},  //   _séri, _giỏ_, _innt,\n  { {0x7cfc00f4, 0x63a400b0, 0x6efd00d4, 0x00000000}},  //   _péri, tuin, _dèbi,\n  { {0x68e41659, 0x044a003b, 0x00000000, 0x00000000}},  // [9620] _inid, упак_,   ,\n  { {0x7cfc028c, 0x63a40051, 0x7c2e010f, 0x00000000}},  //   _véri, ruin, ßbri,\n  { {0x28dd01f5, 0x68f6014a, 0x63a40e2d, 0x00000000}},  //   याचि, _koyd, suin,\n  { {0x29020052, 0x657c0093, 0x660100ea, 0x00000000}},  //   nkka_, mprh, ølke,\n  { {0x63a40df9, 0x290200b0, 0x24800023, 0x00000000}},  //   quin, ikka_, mbim_,\n  { {0x4dbe0044, 0x2f0b00ea, 0x5f931e8a, 0x00000000}},  //   ্মসূ, _nøgd_, чишт,\n  { {0x7cf5004a, 0x93c30035, 0x2fcd01d6, 0x00000000}},  //   _párp, ţătu, _eseg_,\n  { {0xbb7403f3, 0x7ae301c3, 0x644b08e8, 0x00000000}},  //   огиј, _annt, ügig,\n  { {0x61fe00ea, 0xc006005c, 0x7d000009, 0x00000000}},  //   lypl, _упак, rkms,\n  { {0x78ad0207, 0x68e40095, 0x00000000, 0x00000000}},  //   _scav, _anid,   ,\n  { {0xdd920014, 0x81b60044, 0x69cf0036, 0x00000000}},  //   _روش_, জিক_, łcen,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x07a4007e, 0x6134026d, 0x00000000, 0x00000000}},  //   паўн, _gülş,   ,\n  { {0x98be0089, 0x7cfc06c2, 0x6b56003b, 0x00000000}},  //   ētā_, _cérv, _утех,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x68e43014, 0x61fe00b4, 0x00000000, 0x00000000}},  //   _gnid, dypl,   ,\n  { {0x36d5003b, 0x2f0b0056, 0x2bdb0316, 0x00000000}},  // [9630] _допр, _høge_, बिया,\n  { {0x2f0b0030, 0x44270082, 0x76ab0517, 0x00000000}},  //   _køge_, ăn_, _стив_,\n  { {0x24801c50, 0xdb090051, 0x2bcf007d, 0x00000000}},  //   bbim_, nteá, _तैना,\n  { {0xdb09002a, 0x00000000, 0x00000000, 0x00000000}},  //   iteá,   ,   ,\n  { {0xcf9b012b, 0xff510123, 0x60c4006c, 0x00000000}},  //   ује_, وخت_, õima,\n  { {0x13ba0049, 0xd2f6025a, 0x01c900a1, 0x00000000}},  //   _דזשע, _وکلا_, _پورٹ_,\n  { {0xace9005e, 0x2909004a, 0x290200ea, 0x00000000}},  //   имка_, _olaa_, ykka_,\n  { {0x8b950088, 0x00000000, 0x00000000, 0x00000000}},  //   ороч,   ,   ,\n  { {0xa49b000a, 0x68e4012d, 0x34da0049, 0x00000000}},  //   _alòk, _rnid, בֿיב,\n  { {0x68f60180, 0x29093015, 0x691611a5, 0x00000000}},  //   _soyd, _alaa_, nšev,\n  { {0x2dfa026c, 0xcebb006b, 0xbe04009e, 0x00000000}},  //   _پبلک_, şəsi_, _ٹونٹ,\n  { {0x68f6006b, 0x7cfc3016, 0x00000000, 0x00000000}},  //   _qoyd, _sérv,   ,\n  { {0x3c47002c, 0x290200b0, 0x4c2500a1, 0x00000000}},  //   _اضاف, rkka_, _بظاہ,\n  { {0x2bcf03d7, 0xead4007c, 0x7ae30056, 0x00000000}},  //   _तैया, _ночь, _unnt,\n  { {0x96632efa, 0x9f62006b, 0x24f602ea, 0x00000000}},  //   дкре, şqçi_, очар,\n  { {0x68e40977, 0xd46702b8, 0x212d0065, 0x00000000}},  //   _unid, жите_, _njeh_,\n  { {0x24800314, 0xd7ef0025, 0xb4db0045, 0x00000000}},  // [9640] rbim_, _لكي_, _phàr,\n  { {0x681c001e, 0xe29a01e0, 0x6b4f0030, 0x00000000}},  //   rādī, раж_, bøge,\n  { {0x673c002b, 0x7c2d000c, 0xf8bf0010, 0x00000000}},  //   morj, _þarf, knél_,\n  { {0xb9ac0049, 0x00000000, 0x00000000, 0x00000000}},  //   רבאָ,   ,   ,\n  { {0x7cfc0010, 0xa3ce007d, 0x00000000, 0x00000000}},  //   _mért, _शनि_,   ,\n  { {0x7c2421e8, 0xdd9a0072, 0x673c1727, 0x00000000}},  //   _žiro, аши_, norj,\n  { {0xa3d2007d, 0x4c94004d, 0x213f0022, 0x00000000}},  //   विक_, пийс, _fkuh_,\n  { {0x61e10047, 0x3ea00a29, 0x673c0059, 0x00000000}},  //   _álla, şit_, horj,\n  { {0x63b60639, 0xd00700e3, 0x2f0b0030, 0x00000000}},  //   ntyn, _дете_, _søge_,\n  { {0x29090020, 0x8af7006b, 0x39400006, 0x00000000}},  //   _slaa_, _şəri, _akis_,\n  { {0x673c070c, 0x63b600b0, 0x7cfc1e50, 0x00000000}},  //   dorj, htyn, _séru,\n  { {0x26d30030, 0x88b10014, 0x7cfc0068, 0x00000000}},  //   _saxo_, ریخچ, _péru,\n  { {0xc86401fb, 0xdb090051, 0xab2a01e0, 0x00000000}},  //   дтри, steá, _кода_,\n  { {0x673c02db, 0x00000000, 0x00000000, 0x00000000}},  //   gorj,   ,   ,\n  { {0x7cfc1f1e, 0x45d400c0, 0xf8bf2688, 0x00000000}},  //   _fért, морс, lném_,\n  { {0x92a90036, 0x6b4f0190, 0x00000000, 0x00000000}},  //   kułó, røge,   ,\n  { {0x6b4f0030, 0x673c2460, 0xf8bf2ef5, 0x00000000}},  // [9650] søge, borj, nném_,\n  { {0x26c7013e, 0x00000000, 0x00000000, 0x00000000}},  //   _úno_,   ,   ,\n  { {0x69160059, 0x69240091, 0xc1b9005e, 0x00000000}},  //   ršev, rđev, слех_,\n  { {0x55da0049, 0x657a3017, 0x249900e7, 0x00000000}},  //   _פֿינ, íthe, _udsm_,\n  { {0x69de0059, 0x2ee50022, 0xf8bf013e, 0x00000000}},  //   _špel, _pnlf_, jném_,\n  { {0x644f0089, 0xf8bf00b9, 0x00000000, 0x00000000}},  //   _izci, dném_,   ,\n  { {0xf8bf0010, 0x00000000, 0x00000000, 0x00000000}},  //   tnél_,   ,   ,\n  { {0x673c0059, 0x7d760025, 0x691601c5, 0x00000000}},  //   zorj, أمير_, nšet,\n  { {0x39520016, 0x764500b0, 0xe0d20049, 0x00000000}},  //   _rhys_, _lyhy, _אײן_,\n  { {0x38690149, 0x05cb0061, 0x7cfc0092, 0x00000000}},  //   _agar_, ाबाब, _sért,\n  { {0x7bc21339, 0x673c0059, 0x4a4502dc, 0x00000000}},  //   _epou, vorj, янов,\n  { {0x2fdf0091, 0x63b600b0, 0x00000000, 0x00000000}},  //   _krug_, ytyn,   ,\n  { {0x673c2d93, 0x7cfc3018, 0x7d0b0089, 0x00000000}},  //   torj, _vért, _ilgs,\n  { {0x7bda009b, 0xbb780123, 0x2cad006c, 0x00000000}},  //   _לקנו, _بلوچ_, lged_,\n  { {0x395201d6, 0x76450016, 0x6ace0044, 0x00000000}},  //   _thys_, _cyhy, ়াশো,\n  { {0x63b6021e, 0x2cad00ab, 0x673c3019, 0x00000000}},  //   ttyn, nged_, sorj,\n  { {0xf42a0027, 0x644f0036, 0x3dc30044, 0x00000000}},  // [9660] _opäť_, _czci, ্মিল,\n  { {0x63b60d96, 0x27e00288, 0x434602dc, 0x00000000}},  //   rtyn, _irin_, чезв,\n  { {0x63b6301a, 0x7bdb0052, 0x00000000, 0x00000000}},  //   styn, hvuu,   ,\n  { {0x2fdf0018, 0x63b60006, 0xa99a0049, 0x00000000}},  //   _brug_, ptyn, מבער,\n  { {0x2cad00ab, 0x61e10010, 0x09a8007d, 0x00000000}},  //   dged_, _álln, _कम्य,\n  { {0x69c30250, 0xf67a0049, 0x290b0089, 0x00000000}},  //   _opne, זאַמ, ībai_,\n  { {0x7bc200b9, 0x629c301b, 0x63a40a74, 0x00000000}},  //   _spou, _idro, lrin,\n  { {0xf8bf1465, 0x628e008a, 0x7af8000a, 0x00000000}},  //   tném_, _hebo, _sovt,\n  { {0x7cfc009f, 0x8fa300ed, 0x656600ea, 0x00000000}},  //   _sérs, _пате, _mikh,\n  { {0x999800ed, 0x63a400c4, 0x6566301c, 0x00000000}},  //   окот_, irin, _likh,\n  { {0x63a406b5, 0x6446009f, 0x27e00032, 0x00000000}},  //   hrin, _lyki, _arin_,\n  { {0x63a42a46, 0x628e19cd, 0x27e00b73, 0x00000000}},  //   krin, _lebo, _brin_,\n  { {0x629c0871, 0x27e00035, 0x7cfc0325, 0x00000000}},  //   _odro, _crin_, _férr,\n  { {0x63a40292, 0x27e00abe, 0x628e1238, 0x00000000}},  //   drin, _drin_, _nebo,\n  { {0x27e000b5, 0x3abb009b, 0xf8bf0010, 0x00000000}},  //   _erin_, _המונ, nnék_,\n  { {0xca470b59, 0x63a40016, 0x629c018e, 0x00000000}},  //   _عليه_, frin, _adro,\n  { {0x63a4010a, 0x27e00190, 0x628e0030, 0x00000000}},  // [9670] grin, _grin_, _bebo,\n  { {0x628e0b33, 0x69c30085, 0x2fdf0023, 0x00000000}},  //   _cebo, _ypne, _rrug_,\n  { {0x320713a5, 0xd047006b, 0x3f80001a, 0x00000000}},  //   ány_, ələn, ţiul_,\n  { {0x63a4301d, 0xf42a0027, 0xdb0000f6, 0x00000000}},  //   brin, _späť_, humà,\n  { {0xf8bf009d, 0x63a40133, 0x3fc90014, 0x00000000}},  //   ciée_, crin, تدای_,\n  { {0x628e0fe2, 0x2fdf0007, 0x61e10010, 0x00000000}},  //   _gebo, _vrug_, _állo,\n  { {0x30a70a1e, 0x60dd004a, 0x00000000, 0x00000000}},  //   _нрав, _ósmo,   ,\n  { {0x629c13c2, 0x48e80055, 0x26ca301e, 0x00000000}},  //   _zdro, _পত্র, zebo_,\n  { {0x2cad301f, 0x69dc08e0, 0x26d83020, 0x00000000}},  //   rged_, æren, ydro_,\n  { {0x7c26000c, 0x1a05005e, 0x6d420032, 0x00000000}},  //   úkra, дпом, _ekoa,\n  { {0x98a600e2, 0x25b80026, 0x00000000, 0x00000000}},  //   мине, xtrl_,   ,\n  { {0x27e0000d, 0x63a40056, 0xec6e025f, 0x00000000}},  //   _prin_, yrin, _јп_,\n  { {0x26ca01d6, 0xcd4200a1, 0x7cfc3021, 0x00000000}},  //   tebo_, _جھوٹ, _térr,\n  { {0x6d49002a, 0x656600ea, 0x6d5b3022, 0x00000000}},  //   llea, _sikh, lmua,\n  { {0xed16026c, 0xe64300ed, 0x6566129a, 0x00000000}},  //   _رہیں_, верп, _pikh,\n  { {0x628e0387, 0x752d0207, 0x27e0022c, 0x00000000}},  //   _sebo, gnaz, _trin_,\n  { {0x6d491d53, 0xc953009b, 0x628e00e0, 0x00000000}},  // [9680] ilea, _במה_, _pebo,\n  { {0x6d5b0065, 0xf8bf00f4, 0x6d490048, 0x00000000}},  //   hmua, riée_, hlea,\n  { {0x63a4127b, 0x65660066, 0xd46a005e, 0x00000000}},  //   srin, _tikh, _мине_,\n  { {0x63a41d7a, 0x628e3023, 0xc5f300a0, 0x00000000}},  //   prin, _webo, _סדר_,\n  { {0x628e0161, 0x00000000, 0x00000000, 0x00000000}},  //   _tebo,   ,   ,\n  { {0xf8bf0010, 0xdee30140, 0x877b0049, 0x00000000}},  //   tnék_, кочи, קאצי,\n  { {0x6263017a, 0x00000000, 0x00000000, 0x00000000}},  //   _авра,   ,   ,\n  { {0xe8e00082, 0xed57025f, 0x00000000, 0x00000000}},  //   _trội_, мој_,   ,\n  { {0xaf2a02dc, 0x00000000, 0x00000000, 0x00000000}},  //   _джаз_,   ,   ,\n  { {0xadba0054, 0xe45701ce, 0x6d490032, 0x00000000}},  //   _وهذا_, ויפט_, alea,\n  { {0x6d4900f4, 0xf2d300b6, 0x5eeb0061, 0x00000000}},  //   blea, דעת_, चार्_,\n  { {0xcb6a026b, 0x6d4900ab, 0xf78700fa, 0x00000000}},  //   _даде_, clea, íços_,\n  { {0xac97007a, 0x6d4005dd, 0x78bd01e5, 0x00000000}},  //   _آنها_, moma, rfsv,\n  { {0x6d4000b0, 0x2f0b08c8, 0x2bdb0061, 0x00000000}},  //   loma, _løgn_, बिरा,\n  { {0xdb00008e, 0x31c80204, 0x00000000, 0x00000000}},  //   cumá, रबोध,   ,\n  { {0x6d40021e, 0x66f8014a, 0x657a0010, 0x00000000}},  //   noma, _aşkı, ítha,\n  { {0x752d1a64, 0xf66b0025, 0x43940364, 0x00000000}},  // [9690] rnaz, _وحده_, катс,\n  { {0x6d401c7e, 0x6d49002d, 0x00000000, 0x00000000}},  //   homa, zlea,   ,\n  { {0x6d40021e, 0x7cf500c4, 0x6d493024, 0x00000000}},  //   koma, _várz, ylea,\n  { {0x55760049, 0x00000000, 0x00000000, 0x00000000}},  //   _רערן_,   ,   ,\n  { {0x6d401cc4, 0x2f0b05b7, 0x25750039, 0x00000000}},  //   doma, _døgn_, _hål_,\n  { {0x63ad0149, 0x60cb0109, 0xda0e0061, 0x00000000}},  //   muan, segm, ानात_,\n  { {0x6d4001aa, 0x63ad027e, 0x2009008f, 0x00000000}},  //   foma, luan, šai_,\n  { {0x6d49027b, 0x2575044f, 0x6d4000c4, 0x00000000}},  //   ulea, _mål_, goma,\n  { {0x6d490add, 0x63ad0207, 0x6d5b0065, 0x00000000}},  //   rlea, nuan, rmua,\n  { {0x6d49022b, 0xa3e002fb, 0xfaf10025, 0x00000000}},  //   slea, थित_, اثة_,\n  { {0x6d490211, 0x63ad0733, 0xf8bf2b60, 0x00000000}},  //   plea, huan, ffé_,\n  { {0x6d401800, 0xdb0902d5, 0xe8f70147, 0x00000000}},  //   coma, nteú, елю_,\n  { {0x63ad04cb, 0xfaa501e0, 0x7d090093, 0x00000000}},  //   juan, _зало, mkes,\n  { {0x63ad0169, 0x7d0905d5, 0x2575032e, 0x00000000}},  //   duan, lkes, _bål_,\n  { {0xe7370517, 0x00000000, 0x00000000, 0x00000000}},  //   хер_,   ,   ,\n  { {0x69a40061, 0x63ad00e7, 0x7c240e3b, 0x00000000}},  //   _किती, fuan, _žiri,\n  { {0x63ad0129, 0xa49b01aa, 0x03a301ab, 0x00000000}},  // [96a0] guan, _alòs, лито,\n  { {0x0686008b, 0xdbc6006c, 0x6d400035, 0x00000000}},  //   _ягон, _tööa, zoma,\n  { {0x7d0901e3, 0x6d401baa, 0xa49b000a, 0x00000000}},  //   kkes, yoma, _plòt,\n  { {0x26da000b, 0x63ad008a, 0x397a0049, 0x00000000}},  //   _hapo_, buan, לטענ,\n  { {0xd12f0644, 0x4375003b, 0x63ad004a, 0x00000000}},  //   حمن_, _ауст, cuan,\n  { {0x26da1077, 0x31711624, 0x2d8c0058, 0x00000000}},  //   _japo_, _fuzz_, _pwde_,\n  { {0x2d9a1580, 0x26da3025, 0x5d6602e9, 0x00000000}},  //   épe_, _mapo_, нтиз,\n  { {0xc5f300b6, 0x91bb009b, 0x8d7300a1, 0x00000000}},  //   רדה_, _ממלי, داوا,\n  { {0x39420de8, 0x5ce3007c, 0x00000000, 0x00000000}},  //   doks_, ующа,   ,\n  { {0x2d6e0224, 0x6d40016a, 0x6b4f0030, 0x00000000}},  //   _před_, soma, søgn,\n  { {0x6d400036, 0x2efe0085, 0xddc800b4, 0x00000000}},  //   poma, _iotf_, _wzdł,\n  { {0x69b1013d, 0x63ad1ecd, 0x386d068f, 0x00000000}},  //   _अमरी, yuan, øer_,\n  { {0xb8d90183, 0xbb2b00a1, 0x26da11fe, 0x00000000}},  //   _चा_, _کتنے_, _bapo_,\n  { {0x26da0207, 0xe667005e, 0x00000000, 0x00000000}},  //   _capo_, етбо,   ,\n  { {0x95c80216, 0x3942004e, 0x38c900a1, 0x00000000}},  //   нута_, boks_, _ہاکی_,\n  { {0x290b0580, 0xa4d40088, 0x799a00b4, 0x00000000}},  //   ības_, лосі, mstw,\n  { {0x68ed002b, 0xb4db00f6, 0x317101d6, 0x00000000}},  // [96b0] _inad, _khàz, _suzz_,\n  { {0x63ad3026, 0x257500f8, 0x26da00e5, 0x00000000}},  //   ruan, _tål_, _gapo_,\n  { {0x799a0c28, 0x692b00b9, 0x41e4007e, 0x00000000}},  //   nstw, před, ліца,\n  { {0x63ad0a15, 0x67270009, 0xdb000934, 0x00000000}},  //   puan, lijj, lumä,\n  { {0x63ad1729, 0x389c01ce, 0x26da0020, 0x00000000}},  //   quan, ליאנ, _yapo_,\n  { {0x6da5026b, 0xf3ff0011, 0xa49b0129, 0x00000000}},  //   вика, _ngãi_, _glòr,\n  { {0x53340264, 0x68ed00d4, 0x7d0903b6, 0x00000000}},  //   _серт, _onad, tkes,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xa2c1001c, 0xdb00003c, 0x00000000, 0x00000000}},  //   र्थ्, kumä,   ,\n  { {0x68ed014a, 0x7d09006c, 0xf8aa0309, 0x00000000}},  //   _anad, skes, कल्प,\n  { {0x26da01aa, 0x39420006, 0x60db0085, 0x00000000}},  //   _rapo_, toks_, _kaum,\n  { {0xdb2604e1, 0x60db0129, 0x26da3027, 0x00000000}},  //   _یونی, _jaum, _sapo_,\n  { {0x26da2564, 0x60db0020, 0x7d0600b0, 0x00000000}},  //   _papo_, _maum, ökse,\n  { {0x4ad7009c, 0xfaa501f9, 0x68ed3028, 0x00000000}},  //   _ساتھ_, _рако, _enad,\n  { {0xceb2019b, 0x6d590003, 0x6b9b000c, 0x00000000}},  //   יים_, _khwa, lsug,\n  { {0x26da0020, 0x443900f6, 0x68ed01a2, 0x00000000}},  //   _wapo_, _bxs_, _gnad,\n  { {0x26da0006, 0xe3ba0a78, 0x29120a89, 0x00000000}},  // [96c0] _tapo_, ьба_, _ilya_,\n  { {0xdb00006b, 0x68ed11af, 0x2900010e, 0x00000000}},  //   rumç, _znad, _hoia_,\n  { {0x60db010f, 0x44390009, 0x68ed005b, 0x00000000}},  //   _baum, _exs_, _ynad,\n  { {0xdcfe0089, 0x29003029, 0x6b9b302a, 0x00000000}},  //   īvīb, _joia_, ksug,\n  { {0xe0430517, 0x08770049, 0x60db01a2, 0x00000000}},  //   анци, דענט_, _daum,\n  { {0xa3c1013d, 0x6d590022, 0xdfcf0025, 0x00000000}},  //   ूबर_, _ahwa, تيه_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6d59302b, 0x60db0089, 0x290013ca, 0x00000000}},  //   _chwa, _gaum, _noia_,\n  { {0x5ec70044, 0x504610e1, 0x6b9b011c, 0x00000000}},  //   লয়ে, _реаб, gsug,\n  { {0x68ed00b9, 0x3f860129, 0x7f43009d, 0x00000000}},  //   _snad, mpou_, conq,\n  { {0x7c2d009f, 0x60db0697, 0x29000375, 0x00000000}},  //   _þarn, _yaum, _boia_,\n  { {0x0c260057, 0x799a0046, 0xe8e0001d, 0x00000000}},  //   _имен, rstw, _trời_,\n  { {0x692b0224, 0x212400e7, 0x29000288, 0x00000000}},  //   třeb, _mmmh_, _doia_,\n  { {0xf8bf0211, 0x644b006c, 0x19ba0025, 0x00000000}},  //   cién_, ügim, _قطعة_,\n  { {0xf62801fb, 0xdb000039, 0x9f440065, 0x00000000}},  //   віти_, rumä, _armë_,\n  { {0x69d8006b, 0x68ed0020, 0x290020c6, 0x00000000}},  //   _isve, _unad, _goia_,\n  { {0x545501fb, 0xe8d90011, 0x60db302c, 0x00000000}},  // [96d0] уват, _nhỉ_, _raum,\n  { {0x60db2671, 0xe3b00d75, 0x36d501ab, 0x00000000}},  //   _saum, ترف_, _соор,\n  { {0x26d1302d, 0x60db011c, 0x7c36000c, 0x00000000}},  //   mezo_, _paum, _þyrf,\n  { {0x26d1000b, 0x30150088, 0x629700f6, 0x00000000}},  //   lezo_, лдер, saxo,\n  { {0xe8d900ad, 0xd91c007b, 0xf8bf027b, 0x00000000}},  //   _chỉ_, וואל, lnés_,\n  { {0x7c2d050f, 0x60db0020, 0x69ca010f, 0x00000000}},  //   _žaro, _waum, _opfe,\n  { {0xf8bf00f4, 0x60db18bb, 0x2d94007e, 0x00000000}},  //   nnés_, _taum, арыс,\n  { {0x26d1000b, 0x2bb7001c, 0x925801fc, 0x00000000}},  //   hezo_, _आमदा, _раст_,\n  { {0x26d1000b, 0x69ca010f, 0x6e3a0009, 0x00000000}},  //   kezo_, _apfe, _extb,\n  { {0x29000375, 0x6b9b109a, 0x6b820048, 0x00000000}},  //   _soia_, rsug, _dtog,\n  { {0x6d59103f, 0xa2ca006e, 0x62952061, 0x00000000}},  //   _thwa, _सॉफ्, _mezo,\n  { {0x61f80e2b, 0x6b9b302e, 0x62950032, 0x00000000}},  //   ävli, psug, _lezo,\n  { {0x69d8302f, 0x6f010036, 0x2900001a, 0x00000000}},  //   _esve, _kolc, _voia_,\n  { {0x26d10020, 0x629504bb, 0x00000000, 0x00000000}},  //   gezo_, _nezo,   ,\n  { {0x64a6007e, 0xf8bf009d, 0x68ef0048, 0x00000000}},  //   лава, gnés_, áidí,\n  { {0x31bc0010, 0xf4841125, 0x00000000, 0x00000000}},  //   víz_, شاری,   ,\n  { {0x629502ae, 0xdce10089, 0x78a40023, 0x00000000}},  // [96e0] _bezo, _atlī, _idiv,\n  { {0xb46300e3, 0xdb00053d, 0x31bc004a, 0x00000000}},  //   скул, stmö, tíz_,\n  { {0x629501aa, 0xd24f0054, 0x9abc01d5, 0x00000000}},  //   _dezo, كنك_, fiċj,\n  { {0x19b60049, 0xc09603d9, 0xe8d90082, 0x00000000}},  //   טפער_, اجات, _phỉ_,\n  { {0x316d3030, 0x00000000, 0x00000000, 0x00000000}},  //   _diez_,   ,   ,\n  { {0x62953031, 0x6f010b33, 0xa857009b, 0x00000000}},  //   _gezo, _colc, ניסה_,\n  { {0x6f010207, 0x6b823032, 0xdb1b00f4, 0x00000000}},  //   _dolc, _stog, ctué,\n  { {0xd132004b, 0x78a40020, 0x5d5400ed, 0x00000000}},  //   _امر_, _ndiv, јкит,\n  { {0x1016008b, 0x6f010a47, 0x69d801ee, 0x00000000}},  //   _сьвя, _folc, _ssve,\n  { {0x78a40b33, 0x6f010f89, 0x6e3a0009, 0x00000000}},  //   _adiv, _golc, _txtb,\n  { {0x26d10087, 0x00000000, 0x00000000, 0x00000000}},  //   vezo_,   ,   ,\n  { {0x644b006c, 0x3f840022, 0x26d100e7, 0x00000000}},  //   ügik, _ktmu_, wezo_,\n  { {0xe8d9001d, 0x6f01014a, 0xdb000051, 0x00000000}},  //   _giờ_, _yolc, armá,\n  { {0x8c1b009b, 0xdb1e00f8, 0x78a400fa, 0x00000000}},  //   _אודי, övän, _ediv,\n  { {0x62952916, 0x26d1049a, 0x7d02042b, 0x00000000}},  //   _rezo, rezo_, _koos,\n  { {0x99830054, 0x7d02224a, 0xf8bf0a39, 0x00000000}},  //   _اليو, _joos, rnés_,\n  { {0x26d1008e, 0x6295008e, 0x29190051, 0x00000000}},  // [96f0] pezo_, _pezo, mhsa_,\n  { {0x27e9005f, 0x7d02109b, 0x83050044, 0x00000000}},  //   _iran_, _loos, োচ্চ_,\n  { {0xe8d90011, 0x629501ed, 0x00000000, 0x00000000}},  //   _nhị_, _vezo,   ,\n  { {0x32643033, 0x6f01010f, 0x19b70049, 0x00000000}},  //   стув, _solc, רפאר_,\n  { {0x6f010232, 0x4ac401f5, 0x80270379, 0x00000000}},  //   _polc, वभाव, درام,\n  { {0x656f000b, 0xaec401fb, 0xa2c101f5, 0x00000000}},  //   _hich, йбіл, र्श्,\n  { {0x41e402f0, 0xe8d9001d, 0x656f000b, 0x00000000}},  //   _літа, _chị_, _kich,\n  { {0x63ad197d, 0x656f0020, 0x7a13006b, 0x00000000}},  //   oran, _jich, qətə,\n  { {0x656f3034, 0x9ed90265, 0x7d02015b, 0x00000000}},  //   _mich, _имат_, _doos,\n  { {0x656f15a6, 0x63ad3035, 0x644f00b4, 0x00000000}},  //   _lich, iran, _myci,\n  { {0x63ad004f, 0x27e90129, 0x69de0161, 0x00000000}},  //   hran, _aran_, _šper,\n  { {0x656f08ba, 0x7d020007, 0xd9460a27, 0x00000000}},  //   _nich, _goos, реми,\n  { {0x7bc03036, 0x27e9009d, 0x63ad04eb, 0x00000000}},  //   ctmu, _cran_, jran,\n  { {0x63ad016e, 0x65770065, 0x6b890207, 0x00000000}},  //   dran, _buxh, mpeg,\n  { {0x27e90211, 0x656f0181, 0x6603003b, 0x00000000}},  //   _eran_, _bich, опра,\n  { {0x63ad018e, 0x69c1001c, 0x7de00047, 0x00000000}},  //   fran, mtle, lásá,\n  { {0x27e916ca, 0x656f08d3, 0x63ad1d7a, 0x00000000}},  // [9700] _gran_, _dich, gran,\n  { {0x656f010f, 0x69c1046a, 0x00000000, 0x00000000}},  //   _eich, otle,   ,\n  { {0x656f028c, 0x63ad0e40, 0x69c10322, 0x00000000}},  //   _fich, aran, ntle,\n  { {0x2ba603d7, 0x3fe60098, 0x759b009b, 0x00000000}},  //   _खिला, ижев, _ביטח,\n  { {0x7d02006c, 0x63ad0375, 0x69c1006c, 0x00000000}},  //   _roos, cran, htle,\n  { {0x69c100eb, 0x656f00b5, 0x7d02006c, 0x00000000}},  //   ktle, _zich, _soos,\n  { {0x7de00010, 0x80bd0044, 0x644f0036, 0x00000000}},  //   dásá, োয়্, _zyci,\n  { {0x9cca008b, 0x61430140, 0x5bb80ae0, 0x00000000}},  //   тыка_, _деса, глия_,\n  { {0x69c10046, 0x9abc002b, 0xa06702dc, 0x00000000}},  //   etle, liċi, _вата_,\n  { {0xe8d9001d, 0x5b140057, 0x31783037, 0x00000000}},  //   _thị_, смот, _kurz_,\n  { {0x13cf0055, 0x257c002a, 0xbca6007a, 0x00000000}},  //   রিয়, _níl_, _نماي,\n  { {0x27e90607, 0x63ad014a, 0x98a20089, 0x00000000}},  //   _pran_, yran, tikā_,\n  { {0x656f3038, 0xdc5400a1, 0x69c100b4, 0x00000000}},  //   _rich, _اراک, atle,\n  { {0x656f001f, 0x63ad014a, 0x257c000c, 0x00000000}},  //   _sich, vran, _bíl_,\n  { {0x656f000b, 0x69c100bb, 0x35e401e1, 0x00000000}},  //   _pich, ctle, оцтв,\n  { {0x79690036, 0x27e90011, 0x257c00b9, 0x00000000}},  //   _oświ, _tran_, _díl_,\n  { {0xd3710380, 0x656f0020, 0x27e90052, 0x00000000}},  // [9710] سها_, _vich, _uran_,\n  { {0x656f001f, 0x63ad0238, 0x7c2d0213, 0x00000000}},  //   _wich, rran, _žark,\n  { {0xc6920104, 0x644f0036, 0x63ad3039, 0x00000000}},  //   _מאי_, _wyci, sran,\n  { {0x63ad0006, 0x7de00010, 0x7a0a006b, 0x00000000}},  //   pran, zásá, mətd,\n  { {0x752d303a, 0x6b5d009d, 0x63ad013f, 0x00000000}},  //   miaz, lège, qran,\n  { {0x752d0207, 0x2d95013b, 0x00000000, 0x00000000}},  //   liaz, брис,   ,\n  { {0x692b0224, 0x518404b6, 0x7de00010, 0x00000000}},  //   vřen, _мута, vásá,\n  { {0x752d0027, 0x657a0051, 0xdb09010e, 0x00000000}},  //   niaz, íthi, steü,\n  { {0x3015013b, 0x7de00047, 0x2ca6018e, 0x00000000}},  //   _удар, tásá, _ddod_,\n  { {0x69c10da6, 0xe9d90077, 0x6b891130, 0x00000000}},  //   ttle, гко_, rpeg,\n  { {0x394602d3, 0x6b89002d, 0x6e45039d, 0x00000000}},  //   йног, speg, _انضم,\n  { {0x752d0066, 0x69c1114e, 0x6b89010e, 0x00000000}},  //   jiaz, rtle, ppeg,\n  { {0x7d1b303b, 0x752d060c, 0x291e0006, 0x00000000}},  //   mhus, diaz, ėta_,\n  { {0xb87b1343, 0x7d1b0190, 0x00000000, 0x00000000}},  //   rdía, lhus,   ,\n  { {0xba9a00b6, 0x1a650167, 0x7d1b00e7, 0x00000000}},  //   _עסקי, _دیدی_, ohus,\n  { {0x7d1b113b, 0x752d303c, 0x2480012d, 0x00000000}},  //   nhus, giaz, ucim_,\n  { {0xe2920025, 0xdb09004a, 0x248016b4, 0x00000000}},  // [9720] كذا_, lteñ, rcim_,\n  { {0x57fb00b3, 0xd83f0802, 0x7a0a006b, 0x00000000}},  //   _עליו, áček_, bətd,\n  { {0x8b56007b, 0x7d1b0039, 0xe612007a, 0x00000000}},  //   ציעס_, khus, _رشد_,\n  { {0x752d303d, 0xd83f0059, 0x7ae60089, 0x00000000}},  //   ciaz, šček_, ēkti,\n  { {0x7d1b0c7b, 0x00000000, 0x00000000, 0x00000000}},  //   dhus,   ,   ,\n  { {0x6e93303e, 0xe457071c, 0x201a0036, 0x00000000}},  //   пишу, _ליכט_, ąpi_,\n  { {0xacf8080d, 0x44202339, 0x629e2134, 0x00000000}},  //   инку_, lzi_, mapo,\n  { {0x629e04e7, 0xa06a017f, 0x7d1b0503, 0x00000000}},  //   lapo, _баба_, ghus,\n  { {0x4420303f, 0x796900b4, 0x00000000, 0x00000000}},  //   nzi_, _uświ,   ,\n  { {0xbea301fb, 0x629e1483, 0x752d002d, 0x00000000}},  //   _наук, napo, ziaz,\n  { {0x9cca04af, 0xaa581843, 0x7d1b0190, 0x00000000}},  //   _была_, рину_, bhus,\n  { {0xe8d90011, 0x629e011c, 0xc7bb007e, 0x00000000}},  //   _thọ_, hapo, лёг_,\n  { {0x629e0020, 0x44200010, 0x752d2100, 0x00000000}},  //   kapo, jzi_, viaz,\n  { {0x44203040, 0x1ddc01f5, 0xdc3b0049, 0x00000000}},  //   dzi_, _मनात, _געדר,\n  { {0x442001d1, 0x758828ba, 0x2499266c, 0x00000000}},  //   ezi_, йств_, _pesm_,\n  { {0x7a0a006b, 0x2f0b00ea, 0x25ac0062, 0x00000000}},  //   rətd, _høgt_, ádla_,\n  { {0x752d28dc, 0xc299041f, 0x7a0a006b, 0x00000000}},  // [9730] riaz, иках_, sətd,\n  { {0x629e1fb8, 0x394b0115, 0x752d0032, 0x00000000}},  //   gapo, locs_, siaz,\n  { {0xe5c7003b, 0x752d0035, 0xb87b0051, 0x00000000}},  //   _успо, piaz, ndío,\n  { {0x90550e1b, 0xe1f00025, 0x1eea01b2, 0x00000000}},  //   овец, عسل_, یونی_,\n  { {0x7d1b0748, 0x692b00b9, 0x44200010, 0x00000000}},  //   vhus, vřel, czi_,\n  { {0xa195008b, 0x3f6901ee, 0x645d136e, 0x00000000}},  //   _магч, шило_, _izsi,\n  { {0xe8d9001d, 0x7d1b00ab, 0x6d4900d9, 0x00000000}},  //   _nhỏ_, thus, toea,\n  { {0x5ba9025f, 0x81681b15, 0xdb851b15, 0x00000000}},  //   аким_, _груб_, огии,\n  { {0xfc3106ea, 0x7d1b3041, 0x98a20a62, 0x00000000}},  //   بحث_, rhus, niką_,\n  { {0x7d1b0292, 0x212f3042, 0x00000000, 0x00000000}},  //   shus, ligh_,   ,\n  { {0x44201a64, 0xb87b3043, 0x212f0048, 0x00000000}},  //   zzi_, rdín, oigh_,\n  { {0xc689061e, 0x629e0a14, 0x212f0051, 0x00000000}},  //   _יא_, zapo, nigh_,\n  { {0x629e015e, 0x81c10044, 0x69dc0030, 0x00000000}},  //   yapo, ্টি_, ærer,\n  { {0x9f440181, 0x212f1706, 0x629e0066, 0x00000000}},  //   _irmã_, high_, xapo,\n  { {0x366a012b, 0xe737007e, 0x4420000a, 0x00000000}},  //   раво_, цер_, wzi_,\n  { {0x4420022b, 0x7ae33044, 0x81c10055, 0x00000000}},  //   tzi_, _hant, ্টা_,\n  { {0x629e006a, 0x66e60ceb, 0x44200020, 0x00000000}},  // [9740] tapo, _допа, uzi_,\n  { {0x7ae301a3, 0x68e40035, 0x29020825, 0x00000000}},  //   _jant, _haid, ljka_,\n  { {0x26d808d3, 0x629e00b0, 0x44200047, 0x00000000}},  //   mero_, rapo, szi_,\n  { {0x7ae30659, 0x25b8001c, 0x26d80211, 0x00000000}},  //   _lant, murl_, lero_,\n  { {0x68e40122, 0x25b80050, 0x2fd6002c, 0x00000000}},  //   _maid, lurl_, تتاح,\n  { {0x26d80219, 0x63a419bd, 0x7ae30475, 0x00000000}},  //   nero_, msin, _nant,\n  { {0x63a4021e, 0x25b80ff3, 0x629c001e, 0x00000000}},  //   lsin, nurl_, _iero,\n  { {0x7ae30250, 0x68e40089, 0xf1c30802, 0x00000000}},  //   _aant, _naid, žší_,\n  { {0x7ae30149, 0xa2ca03d7, 0x629c0127, 0x00000000}},  //   _bant, स्थ्, _kero,\n  { {0x629c00b5, 0x63a400b0, 0x26d80211, 0x00000000}},  //   _jero, isin, jero_,\n  { {0x7ae3022b, 0x27e03045, 0x629c03b0, 0x00000000}},  //   _dant, _asin_, _mero,\n  { {0xa2ca02f4, 0x7c65007a, 0x68e415a1, 0x00000000}},  //   स्त्, _کامل, _caid,\n  { {0x26e40044, 0x26d80197, 0x2fc616e7, 0x00000000}},  //   খানো_, fero_, ntog_,\n  { {0x7ae304cb, 0x629c0161, 0x26d80211, 0x00000000}},  //   _gant, _nero, gero_,\n  { {0xd49b017a, 0x63a4109a, 0x68e41dec, 0x00000000}},  //   ира_, esin, _faid,\n  { {0x68e4001e, 0x7ae301aa, 0x63a40972, 0x00000000}},  //   _gaid, _zant, fsin,\n  { {0x63a4009f, 0x26d80207, 0x7ae304be, 0x00000000}},  // [9750] gsin, bero_, _yant,\n  { {0x68e4000b, 0x7ae30129, 0x26d81068, 0x00000000}},  //   _zaid, _xant, cero_,\n  { {0x629c0863, 0x212f002a, 0x63a400ab, 0x00000000}},  //   _dero, tigh_, asin,\n  { {0x6f1a001a, 0x63a43046, 0x69cd007d, 0x00000000}},  //   _altc, bsin, _तहसी,\n  { {0x212f0051, 0xdb090181, 0x645d0006, 0x00000000}},  //   righ_, queç, _uzsi,\n  { {0x78bd001c, 0x629c0fec, 0x212f0051, 0x00000000}},  //   hgsv, _gero, sigh_,\n  { {0x7ae33047, 0x628519b7, 0x6d441afb, 0x00000000}},  //   _rant, mcho, čian,\n  { {0x628519dd, 0x26d82d7a, 0x290911d1, 0x00000000}},  //   lcho, zero_, _noaa_,\n  { {0x26c10211, 0x629c00e0, 0x26d8004a, 0x00000000}},  //   _ocho_, _yero, yero_,\n  { {0x62850071, 0x68f60030, 0x68e40515, 0x00000000}},  //   ncho, _snyd, _said,\n  { {0x26d80207, 0x63a42970, 0x68e4006c, 0x00000000}},  //   vero_, zsin, _paid,\n  { {0x26c10181, 0x7ae300ab, 0x63a43048, 0x00000000}},  //   _acho_, _want, ysin,\n  { {0x7ae30817, 0x68e4143d, 0x25b80061, 0x00000000}},  //   _tant, _vaid, wurl_,\n  { {0x25b80009, 0x25ac01ca, 0xbbe900a6, 0x00000000}},  //   turl_, ádlo_, _پرچم_,\n  { {0x62850224, 0x26d80211, 0x68e400b0, 0x00000000}},  //   dcho, rero_, _taid,\n  { {0xb4e60164, 0x629c2405, 0x26d80e1d, 0x00000000}},  //   पये_, _sero, sero_,\n  { {0x26d80211, 0x629c04cb, 0xa5073049, 0x00000000}},  // [9760] pero_, _pero, чета_,\n  { {0x63a4011f, 0x25b80061, 0x61ee304a, 0x00000000}},  //   rsin, purl_, _prbl,\n  { {0x63a40f44, 0xc8b5025a, 0xf67b009b, 0x00000000}},  //   ssin, _علیک, _לאימ,\n  { {0x63a4131c, 0x2fc60725, 0x629c304b, 0x00000000}},  //   psin, ttog_, _wero,\n  { {0x6f080652, 0x6aa10239, 0x28c10309, 0x00000000}},  //   _podc, kalf, ष्टि,\n  { {0xb87b0010, 0xfe70025a, 0xe8e00082, 0x00000000}},  //   gdíj, نگا_, _trỗi_,\n  { {0x3981304c, 0x2fc60091, 0x2b8000f6, 0x00000000}},  //   _nós_, stog_, _sòc_,\n  { {0xc0e300a8, 0x38600087, 0x00000000, 0x00000000}},  //   _поск, _ozir_,   ,\n  { {0x6aa105f0, 0x6143005e, 0x00000000, 0x00000000}},  //   falf, _чета,   ,\n  { {0xfbcf006d, 0xef170057, 0x501b009b, 0x00000000}},  //   اتي_, _ему_, _הומו,\n  { {0xe8d90082, 0xa2c1007d, 0x98a2304d, 0x00000000}},  //   _nhể_, र्ट्, likę_,\n  { {0x18a4025f, 0xdb1b0161, 0x2ee500bb, 0x00000000}},  //   наџм, rtuá, _zalf_,\n  { {0x6aa10009, 0xdb1b00c4, 0x48e4007e, 0x00000000}},  //   balf, stuá, хоўв,\n  { {0x3981002a, 0x6aa100d4, 0xf53f0292, 0x00000000}},  //   _fós_, calf, _sjå_,\n  { {0x661400b9, 0xe3b30123, 0x00000000, 0x00000000}},  //   _čeká, کرز_,   ,\n  { {0xe94500a6, 0x2a3b009b, 0x657e0208, 0x00000000}},  //   _ترتی, _לעומ, _duph,\n  { {0x628501aa, 0x00000000, 0x00000000, 0x00000000}},  // [9770] tcho,   ,   ,\n  { {0xc354003b, 0x6285009d, 0x212d00ca, 0x00000000}},  //   екуј, ucho, _smeh_,\n  { {0x6285018e, 0xcb13007b, 0x69c80129, 0x00000000}},  //   rcho, עלע_, ntde,\n  { {0x62850bca, 0xf8bf00f4, 0x69c801d6, 0x00000000}},  //   scho, ngé_, itde,\n  { {0xf8bf009d, 0x00000000, 0x00000000, 0x00000000}},  //   liés_,   ,   ,\n  { {0xf8bf0047, 0x6622014a, 0x77770066, 0x00000000}},  //   gnéz_, _öykü, _jixx,\n  { {0x78ad016c, 0x77770066, 0x692b00b9, 0x00000000}},  //   _odav, _mixx, přeh,\n  { {0x3981135c, 0x78ad304e, 0x636200fa, 0x00000000}},  //   _rós_, _ndav, rône,\n  { {0x6aa1001c, 0x1c450088, 0xfc310025, 0x00000000}},  //   talf, ьним, ضحة_,\n  { {0x39810181, 0xc9a9007c, 0x7777002b, 0x00000000}},  //   _pós_, овое_, _nixx,\n  { {0xd94601be, 0x6aa10030, 0xa96a00ed, 0x00000000}},  //   дени, ralf, жина_,\n  { {0xf8bf009d, 0x39810ddb, 0x777700f6, 0x00000000}},  //   diés_, _vós_, _aixx,\n  { {0x200b00d4, 0x385a284e, 0x00000000, 0x00000000}},  //   _àcid_, تشدد_,   ,\n  { {0xdb09002a, 0xf8bf00f4, 0xab640088, 0x00000000}},  //   breá, fiés_, _звіл,\n  { {0xbb52035b, 0x69c80009, 0x7bc9009d, 0x00000000}},  //   _جنوب, ctde, lteu,\n  { {0x2cbf0004, 0x29190065, 0x7d0b0010, 0x00000000}},  //   ngud_, ërat_, _jogs,\n  { {0x7bc91e7d, 0x3a0500a1, 0x130a007e, 0x00000000}},  // [9780] nteu, _رکھی_, онай_,\n  { {0xe8d900ad, 0xa3cf02d2, 0x446315c4, 0x00000000}},  //   _thể_, _शहर_, твув,\n  { {0xa50a053c, 0xf8bf00f4, 0x425600ed, 0x00000000}},  //   _дена_, ciés_, фтат,\n  { {0x7bc91058, 0x7d0b0007, 0x00000000, 0x00000000}},  //   kteu, _nogs,   ,\n  { {0x10a301fb, 0xd12f007a, 0xdfd001fa, 0x00000000}},  //   тичн, جمن_, ايت_,\n  { {0x6d442198, 0x64460288, 0x00000000, 0x00000000}},  //   čiam, _ixki,   ,\n  { {0x7d0b0030, 0x69c81b9d, 0x2d8c00c4, 0x00000000}},  //   _bogs, xtde, _qtde_,\n  { {0xfbaa01ab, 0x00000000, 0x00000000, 0x00000000}},  //   отой_,   ,   ,\n  { {0xaec6003b, 0x636200c4, 0x00000000, 0x00000000}},  //   _обал, cônc,   ,\n  { {0x98a00036, 0x1f6300d7, 0x69c82a1e, 0x00000000}},  //   _imię_, _акум, ttde,\n  { {0x69351001, 0x02b7009b, 0x7bc9009d, 0x00000000}},  //   енну, והים_, ateu,\n  { {0x27f20016, 0x00000000, 0x00000000, 0x00000000}},  //   _bryn_,   ,   ,\n  { {0x7bc9304f, 0x69c80d33, 0xf8bf00f4, 0x00000000}},  //   cteu, stde, rgé_,\n  { {0xf8bf009d, 0x92c20044, 0x00000000, 0x00000000}},  //   tiés_, ্যু_,   ,\n  { {0xcad7009b, 0x94d5025f, 0x8c3d006b, 0x00000000}},  //   _חוות_, новц, maşa,\n  { {0xf8bf00f4, 0x63b60016, 0x8c3d005d, 0x00000000}},  //   riés_, fryn, laşa,\n  { {0x29191a2f, 0x2458007c, 0x27f23050, 0x00000000}},  // [9790] ūras_, дать_, _gryn_,\n  { {0xd25b0816, 0xf8bf0249, 0x00000000, 0x00000000}},  //   оце_, piés_,   ,\n  { {0x5184008b, 0x8575007c, 0x333301f3, 0x00000000}},  //   вуча, _плох, rixx_,\n  { {0x3395007e, 0x63b603d0, 0x22580146, 0x00000000}},  //   _памё, bryn, _dyrk_,\n  { {0x24b6061e, 0xf8bf00f4, 0x656d3051, 0x00000000}},  //   _אהרן_, chée_, mmah,\n  { {0x2f18007c, 0x62830521, 0x2489149f, 0x00000000}},  //   мочь_, žnob, lcam_,\n  { {0x6d4200ea, 0x4ea40545, 0x00000000, 0x00000000}},  //   _bjoa, трча,   ,\n  { {0x7bc900f4, 0xef190036, 0xeb990bba, 0x00000000}},  //   tteu, _duża_, пии_,\n  { {0x656d002d, 0x7bc9009d, 0x2cbf010e, 0x00000000}},  //   imah, uteu, rgud_,\n  { {0x7bc900f4, 0x656d0145, 0x2d5300fa, 0x00000000}},  //   rteu, hmah, tães_,\n  { {0xf2d2007b, 0x7bc9010f, 0x13d80044, 0x00000000}},  //   נעט_, steu, সিয়,\n  { {0x7bc900f4, 0x2d530181, 0x7a0a006b, 0x00000000}},  //   pteu, rães_, mətl,\n  { {0x395e0089, 0x248901c3, 0x7a0a006b, 0x00000000}},  //   ēts_, dcam_, lətl,\n  { {0x6d5b008d, 0xdb0900d4, 0x00000000, 0x00000000}},  //   llua, dreç,   ,\n  { {0xceb2012e, 0x7a0a006b, 0x24f60245, 0x00000000}},  //   טים_, nətl, нчар,\n  { {0x656d011c, 0x63b60fed, 0x2edc006e, 0x00000000}},  //   gmah, tryn, _यस्त,\n  { {0x6d5b02f6, 0xc2b6003b, 0x7a0a006b, 0x00000000}},  // [97a0] ilua, ељењ, hətl,\n  { {0x7a0a006b, 0x63b62601, 0x20ec0082, 0x00000000}},  //   kətl, rryn, _ới_,\n  { {0xaac20164, 0x64a60c4e, 0xe0da0a78, 0x00000000}},  //   _शासक, _пана, зве_,\n  { {0x92c20055, 0x4fc60242, 0x98ab001a, 0x00000000}},  //   ্যে_, еска, mică_,\n  { {0x98ab001a, 0x9f4d00f6, 0xdb0900c4, 0x00000000}},  //   lică_, _creï_, creç,\n  { {0xde5805b8, 0xda0f0061, 0x00000000, 0x00000000}},  //   малі_, ाहात_,   ,\n  { {0xe357012f, 0x434308d6, 0x78a60119, 0x00000000}},  //   _נשלח_, _серв, kakv,\n  { {0xafe6041f, 0x2011006b, 0xdb0900b0, 0x00000000}},  //   _побл, _əziz_, hreä,\n  { {0xcf460099, 0xefb3025a, 0x8c3d3052, 0x00000000}},  //   _знай, _مینگ, taşa,\n  { {0x7a0a005f, 0xef1901d5, 0xb87b00c4, 0x00000000}},  //   bətl, _tuża_, ndív,\n  { {0x673516fb, 0xe89507d0, 0x00000000, 0x00000000}},  //   vizj, кань,   ,\n  { {0x60c20006, 0x67350036, 0x98ab001a, 0x00000000}},  //   ngom, wizj, dică_,\n  { {0xac970025, 0x29193053, 0xd7fb003b, 0x00000000}},  //   _أنها_, rksa_, чун_,\n  { {0x98ab001a, 0xd7630167, 0x7a0a013f, 0x00000000}},  //   fică_, انسی, lətm,\n  { {0xaa573054, 0x6d4001d6, 0x67352530, 0x00000000}},  //   _пишу_, onma, rizj,\n  { {0x7aea23c7, 0x92bd0055, 0x6d403055, 0x00000000}},  //   _haft, _আসে_, nnma,\n  { {0x54370054, 0x6d40021f, 0x24890adb, 0x00000000}},  // [97b0] رررر, inma, rcam_,\n  { {0x7a0a006b, 0xdbc7006c, 0xdb090181, 0x00000000}},  //   yətl, _tööp, rreç,\n  { {0x6b820207, 0xb87b004a, 0x9758009b, 0x00000000}},  //   _luog, seíd, _איזו_,\n  { {0x7524006b, 0x00000000, 0x00000000, 0x00000000}},  //   chiz,   ,   ,\n  { {0x5eaa0044, 0x3d040309, 0x6b820006, 0x00000000}},  //   চ্ছে, वाने_, _nuog,\n  { {0x4429000b, 0x141a009b, 0x6d40005b, 0x00000000}},  //   mza_, _חושב, enma,\n  { {0x442917f4, 0x1ea80025, 0xe5700014, 0x00000000}},  //   lza_, راوي_, _خطی_,\n  { {0x7a0a006b, 0x6d400190, 0x5ff50745, 0x00000000}},  //   rətl, gnma, _избу,\n  { {0x44290026, 0x6d5b04cb, 0x7aea001a, 0x00000000}},  //   nza_, rlua, _baft,\n  { {0x44290032, 0x7aea0093, 0x6d5b135c, 0x00000000}},  //   iza_, _caft, slua,\n  { {0x3ea702a4, 0x7aea020c, 0x27260011, 0x00000000}},  //   mant_, _daft, _hông_,\n  { {0x3ea700f4, 0x61f50059, 0x27260011, 0x00000000}},  //   lant_, _mrzl, _kông_,\n  { {0x7d090209, 0x44290065, 0x3ced0022, 0x00000000}},  //   mjes, jza_, mdev_,\n  { {0x3ea7028c, 0x7d090047, 0x442905e1, 0x00000000}},  //   nant_, ljes, dza_,\n  { {0x64a6008b, 0x44290211, 0x27260011, 0x00000000}},  //   кава, eza_, _lông_,\n  { {0x7d090de8, 0xd047006b, 0x7d1b0006, 0x00000000}},  //   njes, şlən, nkus,\n  { {0x7c290fd6, 0x2726001d, 0x7d1b3056, 0x00000000}},  // [97c0] nzer, _nông_, ikus,\n  { {0x3ea73057, 0x7524000f, 0x7d1b0934, 0x00000000}},  //   jant_, shiz, hkus,\n  { {0x4429000d, 0x7d1b3058, 0x0219007e, 0x00000000}},  //   aza_, kkus, ніць_,\n  { {0x6ec4007d, 0x27260011, 0x44290096, 0x00000000}},  //   _राहु, _bông_, bza_,\n  { {0x272600ad, 0x44290046, 0x6283016e, 0x00000000}},  //   _công_, cza_, žnoa,\n  { {0x3ea70129, 0xef190036, 0x78a4003c, 0x00000000}},  //   gant_, _dużo_, _leiv,\n  { {0x2000000d, 0xf98703ec, 0x52d70049, 0x00000000}},  //   ţii_, _خب_, _שולע_,\n  { {0x7aea00eb, 0x7d090065, 0x78a40a0e, 0x00000000}},  //   _saft, gjes, _neiv,\n  { {0x6aa33059, 0x3ea72df6, 0x98ab0036, 0x00000000}},  //   _benf, bant_, nicą_,\n  { {0x3ea71ce2, 0x2d6e0224, 0xf8eb013d, 0x00000000}},  //   cant_, _přes_, _जोड़ा_,\n  { {0xc333019b, 0x44292fb6, 0xdb00000c, 0x00000000}},  //   שות_, zza_, gsmá,\n  { {0x7d1b00f6, 0x44290890, 0x3f84010e, 0x00000000}},  //   ckus, yza_, _kumu_,\n  { {0xead40783, 0x7c290036, 0x78a4008f, 0x00000000}},  //   _боль, czer, _deiv,\n  { {0x7bc000e0, 0x6aa32370, 0x3f8417b0, 0x00000000}},  //   mumu, _genf, _mumu_,\n  { {0x4b7b071c, 0x44290066, 0xd4c70595, 0x00000000}},  //   _קאוו, wza_, ксап,\n  { {0x4429305a, 0x3ea70035, 0x628e305b, 0x00000000}},  //   tza_, zant_, _afbo,\n  { {0x3ea700f4, 0x0934023c, 0x7bc0014a, 0x00000000}},  // [97d0] yant_, _خروج, numu,\n  { {0x44290046, 0x8c3d01f6, 0x3ea70129, 0x00000000}},  //   rza_, daşl, xant_,\n  { {0x3ea7053e, 0x4429268a, 0x8af7005f, 0x00000000}},  //   vant_, sza_, _şəki,\n  { {0x7bc0001e, 0x3ea7005b, 0x290b10ec, 0x00000000}},  //   kumu, want_, njca_,\n  { {0x7bc0305c, 0x3ea7028c, 0x68ed305d, 0x00000000}},  //   jumu, tant_, _maad,\n  { {0x1dd40183, 0x68ed305e, 0x39ae0006, 0x00000000}},  //   _दहशत, _laad, kęs_,\n  { {0x657d23d3, 0x3ea703d5, 0xed590373, 0x00000000}},  //   _kish, rant_, нок_,\n  { {0x3ea7028c, 0x657d305f, 0x27260011, 0x00000000}},  //   sant_, _jish, _tông_,\n  { {0x63ad006a, 0x3ea70fdb, 0x7d093060, 0x00000000}},  //   nsan, pant_, rjes,\n  { {0x7d1b2245, 0x645d0039, 0x63ad029c, 0x00000000}},  //   skus, _mysi, isan,\n  { {0x68ed0be3, 0x7c290047, 0x645d0ace, 0x00000000}},  //   _baad, szer, _lysi,\n  { {0x63ad2375, 0x3ea505fe, 0x8c3d0279, 0x00000000}},  //   ksan, _helt_, laşm,\n  { {0xb8ec0201, 0x6aa30066, 0x2d85123c, 0x00000000}},  //   _ला_, _tenf, _hule_,\n  { {0x8c1a0097, 0x70e0013d, 0x657d2395, 0x00000000}},  //   _רוסי, _नस्ल, _aish,\n  { {0x27e9022b, 0x7ae10b90, 0x657d03a1, 0x00000000}},  //   _esan_, melt, _bish,\n  { {0xaacf0164, 0x63ad002b, 0xf495007c, 0x00000000}},  //   त्रक, fsan, ирую,\n  { {0x63ad000c, 0x69c11143, 0x636b3061, 0x00000000}},  // [97e0] gsan, lule, künd,\n  { {0xb87b0010, 0x7ae10836, 0x68ed10ae, 0x00000000}},  //   rdít, nelt, _zaad,\n  { {0x2b89001d, 0x69c11250, 0xe8d9001d, 0x00000000}},  //   _lúc_, nule, _nhớ_,\n  { {0x645d0030, 0x657d3062, 0x0cbe0044, 0x00000000}},  //   _fysi, _gish, _আস্ত,\n  { {0x63ad094e, 0x7ae102cc, 0x69c1010f, 0x00000000}},  //   csan, kelt, hule,\n  { {0x657d0dfc, 0x3ea50af4, 0x2d85008a, 0x00000000}},  //   _zish, _celt_, _bule_,\n  { {0x6da3025f, 0x7ae10bf4, 0x657d0009, 0x00000000}},  //   бија, delt, _yish,\n  { {0x69c1006c, 0x7bc00089, 0x39ae010a, 0x00000000}},  //   dule, tumu, vęs_,\n  { {0x7a0a005f, 0x68ed0b20, 0x7ae10056, 0x00000000}},  //   məti, _raad, felt,\n  { {0x68ed0cfc, 0x7bc0011f, 0x6d593063, 0x00000000}},  //   _saad, rumu, _ekwa,\n  { {0x69c1009f, 0x2d85004e, 0x28c60316, 0x00000000}},  //   gule, _gule_, _वाशि,\n  { {0x7bc00883, 0x63ad0e59, 0x39ae0006, 0x00000000}},  //   pumu, ysan, ręs_,\n  { {0x9cd700b6, 0x29000046, 0x68ed01c2, 0x00000000}},  //   _תודה_, _dnia_, _vaad,\n  { {0x2d850020, 0x7ae13064, 0x6d440006, 0x00000000}},  //   _yule_, celt, čiau,\n  { {0x69c11911, 0xfa55026c, 0xaab70318, 0x00000000}},  //   cule, _پروگ, _صدور_,\n  { {0x63ad010f, 0x636b2ab7, 0x291204de, 0x00000000}},  //   tsan, zünd, _goya_,\n  { {0x657d003b, 0x2b89001d, 0x27e93065, 0x00000000}},  // [97f0] _vish, _xúc_, _usan_,\n  { {0x63ad001f, 0x6b5d0129, 0x60c90197, 0x00000000}},  //   rsan, tègi, _scem,\n  { {0x63ad0e8d, 0x645d0a77, 0x7a0a006b, 0x00000000}},  //   ssan, _wysi, fəti,\n  { {0x41740025, 0x63ad00b9, 0x645d0036, 0x00000000}},  //   مانس, psan, _tysi,\n  { {0x2d850515, 0x636b005d, 0x69c10f4f, 0x00000000}},  //   _sule_, tünd, zule,\n  { {0x9f4d0051, 0xdb0000f8, 0x2d853066, 0x00000000}},  //   _breá_, nsmä, _pule_,\n  { {0x7a0a006b, 0xdd8e0025, 0x636b3067, 0x00000000}},  //   bəti, ووو_, ründ,\n  { {0x3ea5001f, 0x7ae1010f, 0x636b078f, 0x00000000}},  //   _welt_, welt, sünd,\n  { {0x7ae1021e, 0xdcfa001e, 0x3ea50f5d, 0x00000000}},  //   telt, _attē, _telt_,\n  { {0x69c10004, 0x2d8503b6, 0x29120145, 0x00000000}},  //   tule, _tule_, _soya_,\n  { {0x8e840054, 0x38693068, 0x3946004c, 0x00000000}},  //   _المه, _azar_, иног,\n  { {0x69c1009f, 0x7ae100b0, 0x1bd50d99, 0x00000000}},  //   rule, selt, _водя,\n  { {0x69c11a50, 0x6d440027, 0x98ab0036, 0x00000000}},  //   sule, čiat, nicę_,\n  { {0xf7722712, 0x69c10e48, 0xf8630088, 0x00000000}},  //   تاج_, pule, івро,\n  { {0xe8d9001d, 0x7a0a006b, 0x2912013f, 0x00000000}},  //   _giữ_, yəti, _toya_,\n  { {0x778600d1, 0xe8d90082, 0xb87b004a, 0x00000000}},  //   _клиз, _khờ_, seía,\n\n  { {0xe2ca02be, 0xdb090325, 0xd3873069, 0x00000000}},  // [9800] клад_, queó, ийте_,\n  { {0x13030088, 0xdce20082, 0x00000000, 0x00000000}},  //   озум, _khoă,   ,\n  { {0x673c0087, 0x00000000, 0x00000000, 0x00000000}},  //   mirj,   ,   ,\n  { {0x316d028c, 0xdb0003b1, 0x00000000, 0x00000000}},  //   _chez_, msmå,   ,\n  { {0xe8d90011, 0x7a0a006b, 0xdb000ccc, 0x00000000}},  //   _nhờ_, rəti, lsmå,\n  { {0x6b84002a, 0x2f5600ed, 0x7a0a006b, 0x00000000}},  //   _éigi, штес, səti,\n  { {0x3207021e, 0x98a00087, 0xdb0005fe, 0x00000000}},  //   änyt_, _alič_, nsmå,\n  { {0x216a0364, 0x71590216, 0x636b2ba5, 0x00000000}},  //   _риби_, _брус_, rüne,\n  { {0x673c08b2, 0xe8d9001d, 0xeb06012c, 0x00000000}},  //   kirj, _chờ_, ачно,\n  { {0x661c15b3, 0x7dfc0035, 0xdb00306a, 0x00000000}},  //   kyrk, _păsă, ksmå,\n  { {0xdb09008e, 0xd5b10082, 0x5a46007e, 0x00000000}},  //   gueñ, ới_, рэпа,\n  { {0xdb0005fe, 0x6d440c6e, 0x00000000, 0x00000000}},  //   dsmå, čias,   ,\n  { {0x7d02003b, 0xab940025, 0xdce80006, 0x00000000}},  //   _inos, _التغ, _sudė,\n  { {0x7bdb01ce, 0xa2c2006e, 0x3d040061, 0x00000000}},  //   _סקוו, _लाग्, वावे_,\n  { {0xdb000737, 0xe45f00b0, 0x20bb0061, 0x00000000}},  //   gsmå, _syö_, ॉलमध,\n  { {0x8a7b00b6, 0xd4980e82, 0x38690288, 0x00000000}},  //   _באות, иру_, _tzar_,\n  { {0x39590066, 0x00000000, 0x00000000, 0x00000000}},  // [9810] moss_,   ,   ,\n  { {0x395901a2, 0x3dde00f6, 0x7d020087, 0x00000000}},  //   loss_, _optw_, _lnos,\n  { {0x8c1a0044, 0x9405006b, 0x00000000, 0x00000000}},  //   _তেমন_, _ələ_,   ,\n  { {0xe45f00b0, 0xed460014, 0x00000000, 0x00000000}},  //   _työ_, _رپ_,   ,\n  { {0x8fe7064b, 0x2f190088, 0x00000000, 0x00000000}},  //   рцед, лодь_,   ,\n  { {0xc695007b, 0x7d0200e5, 0x395901a2, 0x00000000}},  //   זאַ_, _anos, hoss_,\n  { {0x8c3d0a4b, 0x00000000, 0x00000000, 0x00000000}},  //   maşi,   ,   ,\n  { {0x673c00ca, 0xdcf90014, 0x00000000, 0x00000000}},  //   zirj, افظت_,   ,\n  { {0x7d020ff1, 0x60db2552, 0x3959004a, 0x00000000}},  //   _dnos, _ibum, doss_,\n  { {0x7d0201d9, 0xb87b306b, 0x37bf0044, 0x00000000}},  //   _enos, teín, েবার,\n  { {0x5d850054, 0x656f000a, 0x673c0059, 0x00000000}},  //   _الصل, _ohch, virj,\n  { {0xe8d90011, 0x395901c5, 0x7d0201ed, 0x00000000}},  //   _thờ_, goss_, _gnos,\n  { {0x3d040164, 0xed590059, 0xdb09008e, 0x00000000}},  //   वारे_, mož_, sueñ,\n  { {0x6370306c, 0x6b9b0026, 0x6b96009b, 0x00000000}},  //   mäng, mpug, _הכסף_,\n  { {0xdb090219, 0x63700002, 0xd6270175, 0x00000000}},  //   queñ, läng, боре_,\n  { {0x63620181, 0x8a16009b, 0xdb001ab8, 0x00000000}},  //   môni, _לחצו_, rsmå,\n  { {0xd6c304e1, 0x673c0059, 0x636200c4, 0x00000000}},  // [9820] _کمپی, pirj, lôni,\n  { {0xadf9007d, 0xed5900b9, 0x60db0093, 0x00000000}},  //   ्मान_, hož_, _abum,\n  { {0x63700788, 0x644f00ab, 0xed59306d, 0x00000000}},  //   häng, _exci, kož_,\n  { {0x104a1ac0, 0xf992009b, 0xa2d8007d, 0x00000000}},  //   ляли_, פרד_, _नॉर्,\n  { {0x33b527f9, 0x00000000, 0x00000000, 0x00000000}},  //   _мёрт,   ,   ,\n  { {0x26ca002b, 0x26d8018e, 0xd13200a6, 0x00000000}},  //   ngbo_, nfro_, _کمر_,\n  { {0x877b0049, 0xe8d90011, 0x6da301fc, 0x00000000}},  //   נאצי, _nhở_, пија,\n  { {0x5bb80ae0, 0x27e0306e, 0x63700788, 0x00000000}},  //   алия_, _opin_, fäng,\n  { {0x63700002, 0x8fa3025f, 0x7d020059, 0x00000000}},  //   gäng, _нате, _vnos,\n  { {0x63620181, 0x7b3901ca, 0xff240014, 0x00000000}},  //   fôni, lňuj, _ببری,\n  { {0xfbcf0167, 0xe8d90011, 0x3959245c, 0x00000000}},  //   وتی_, _chở_, toss_,\n  { {0x63700002, 0xd01c0055, 0x6c860054, 0x00000000}},  //   länd, _দেয়_, _الإم,\n  { {0x395900ab, 0x7d1d010f, 0x26d82f59, 0x00000000}},  //   ross_, össe, ffro_,\n  { {0x81df0044, 0x39591aa3, 0x569402dc, 0x00000000}},  //   তিত_, soss_, зарт,\n  { {0xa3cb0164, 0x27e0110f, 0x68e601c3, 0x00000000}},  //   रून_, _epin_, bekd,\n  { {0x3eae001f, 0x63700002, 0x6aaa1ef7, 0x00000000}},  //   haft_, händ, _heff,\n  { {0x6aaa1864, 0x06e40044, 0x82870025, 0x00000000}},  // [9830] _keff, মাজি, مجال,\n  { {0x8c1b009b, 0x7a0a006b, 0x6aaa00ab, 0x00000000}},  //   אומי, bətt, _jeff,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6aaa00b0, 0x7a0a013f, 0xe8d90082, 0x00000000}},  //   _leff, ləts, _khố_,\n  { {0x63620181, 0xf8bf009d, 0x6b9b06c2, 0x00000000}},  //   zôni, ckée_, xpug,\n  { {0xa2d802d2, 0x2d950264, 0x00000000, 0x00000000}},  //   न्द्, орис,   ,\n  { {0x171c007b, 0x8d750025, 0x7bc0306f, 0x00000000}},  //   רווע, يابا, ermu,\n  { {0x60db0061, 0xa63c009b, 0x7bc0012d, 0x00000000}},  //   _ubum, טגור, frmu,\n  { {0x798a010f, 0x6aaa069d, 0xed5900ca, 0x00000000}},  //   _aufw, _beff, rož_,\n  { {0xe9d9012b, 0x63700a5d, 0x63620181, 0x00000000}},  //   ако_, räng, tôni,\n  { {0x6aaa005b, 0x752d0032, 0x6b9b0197, 0x00000000}},  //   _deff, khaz, spug,\n  { {0xf1b2012f, 0x636200c4, 0x63700210, 0x00000000}},  //   וסט_, rôni, mäne,\n  { {0x6d493070, 0xbf87001d, 0xeaae0121, 0x00000000}},  //   mnea, _điển_, _ой_,\n  { {0xd5b8001e, 0xe8d90011, 0x6aaa005b, 0x00000000}},  //   šām_, _thở_, _geff,\n  { {0x6b8b141a, 0x6b83011c, 0x6d49001a, 0x00000000}},  //   _hugg, _iing, onea,\n  { {0x6d49002a, 0x6b830149, 0x39b5001e, 0x00000000}},  //   nnea, _hing, mās_,\n  { {0x6d49002a, 0x39b5001e, 0x65640169, 0x00000000}},  // [9840] inea, lās_, rlih,\n  { {0x6b8301d5, 0x6d490fff, 0xf772004b, 0x00000000}},  //   _jing, hnea, _تاب_,\n  { {0x63700073, 0x39b5001e, 0xe2970147, 0x00000000}},  //   vänd, nās_, цах_,\n  { {0x6b8323a5, 0x752d0211, 0x69c10051, 0x00000000}},  //   _ling, chaz, irle,\n  { {0x63700a35, 0x69c1010f, 0x6b830032, 0x00000000}},  //   tänd, hrle, _oing,\n  { {0x6b830219, 0x39b5001e, 0x44320061, 0x00000000}},  //   _ning, kās_, mzy_,\n  { {0x637023df, 0x39b5001e, 0x44200047, 0x00000000}},  //   ränd, jās_, lyi_,\n  { {0x39b5001e, 0x637003a2, 0x6d490056, 0x00000000}},  //   dās_, sänd, gnea,\n  { {0x44201670, 0x4ae6008b, 0x0ed20061, 0x00000000}},  //   nyi_, оўна, _सापड,\n  { {0x6b830494, 0x37d00044, 0xda7a01e0, 0x00000000}},  //   _cing, িবার, иян_,\n  { {0x39b5001e, 0x6b5d009d, 0x6b8329e7, 0x00000000}},  //   gās_, tègr, _ding,\n  { {0x394d02d5, 0x6b83001f, 0xe8d9001d, 0x00000000}},  //   ões_, _eing, _phố_,\n  { {0x6d4000b0, 0x44200061, 0x6b8b13e4, 0x00000000}},  //   mima, jyi_, _gugg,\n  { {0x44320036, 0x39b50089, 0x44200173, 0x00000000}},  //   dzy_, bās_, dyi_,\n  { {0x2d8c0173, 0x39b50089, 0xdce20036, 0x00000000}},  //   _jude_, cās_, _choć,\n  { {0x6d40010a, 0x6b830020, 0x57b50401, 0x00000000}},  //   nima, _zing, _ебит,\n  { {0x69c8006c, 0x44200010, 0x2bc20061, 0x00000000}},  // [9850] lude, gyi_, _शिफा,\n  { {0x7415026c, 0x2d8c00b5, 0x6d4009bd, 0x00000000}},  //   _ہوجا, _oude_, hima,\n  { {0x2d8c001c, 0x6d40010a, 0x7c20018e, 0x00000000}},  //   _nude_, kima, hymr,\n  { {0x6d40010a, 0xdb09002a, 0x7c202141, 0x00000000}},  //   jima, iseá, kymr,\n  { {0x6d403071, 0x44320046, 0x2d8c0b50, 0x00000000}},  //   dima, czy_, _aude_,\n  { {0x2d8c0428, 0x78ad0038, 0xf3ff00c4, 0x00000000}},  //   _bude_, _leav, _irã_,\n  { {0x6d490051, 0x69c80203, 0x2d8c016c, 0x00000000}},  //   tnea, jude, _cude_,\n  { {0x6d400006, 0x39b5001e, 0xdb1b0129, 0x00000000}},  //   gima, vās_, truï,\n  { {0x6d4926c4, 0x3eac0030, 0x6d5b0923, 0x00000000}},  //   rnea, _fedt_, roua,\n  { {0x39b5001e, 0x6b83002b, 0x7524002d, 0x00000000}},  //   tās_, _qing, zkiz,\n  { {0x6b8306d0, 0x78ad0010, 0x6d40006c, 0x00000000}},  //   _ving, _beav, bima,\n  { {0x39b50089, 0x6b8b00f8, 0x6b8305a8, 0x00000000}},  //   rās_, _tugg, _wing,\n  { {0x6b83033b, 0x39b50089, 0x3f8d00d4, 0x00000000}},  //   _ting, sās_, _jueu_,\n  { {0x6b83000b, 0x7d193072, 0xed3500a1, 0x00000000}},  //   _uing, _hows, _بوچھ,\n  { {0xe73719a2, 0x69c80efe, 0x64a607e1, 0x00000000}},  //   чер_, cude, заба,\n  { {0x443200f8, 0x78ad00b5, 0x3f85002b, 0x00000000}},  //   tzy_, _geav, _lilu_,\n  { {0x39420013, 0x7524002d, 0x1aee0044, 0x00000000}},  // [9860] miks_, rkiz, জারে_,\n  { {0x44320941, 0x68f61aa0, 0x7524002d, 0x00000000}},  //   rzy_, _hayd, skiz,\n  { {0x44260ba5, 0x44320046, 0x68f6011f, 0x00000000}},  //   šo_, szy_, _kayd,\n  { {0x394214f7, 0x7d190036, 0x68f600e7, 0x00000000}},  //   niks_, _nows, _jayd,\n  { {0x6d40010a, 0x68f60276, 0xf3ff00c4, 0x00000000}},  //   vima, _mayd, _grã_,\n  { {0x2d8c3073, 0x6d403074, 0x3942224c, 0x00000000}},  //   _pude_, wima, hiks_,\n  { {0x10a601f9, 0x91e3012b, 0x63b60637, 0x00000000}},  //   _нивн, _поре, lsyn,\n  { {0xdb980373, 0x69c801c9, 0x2cea0088, 0x00000000}},  //   ович_, vude, сько_,\n  { {0x5f76026c, 0x7bc9146b, 0x63b60190, 0x00000000}},  //   _فائر, gueu, nsyn,\n  { {0x69c8027b, 0x81df0055, 0x6d40000b, 0x00000000}},  //   tude, তির_, sima,\n  { {0x6d401e4a, 0x78ad006c, 0x7ae80e58, 0x00000000}},  //   pima, _peav, redt,\n  { {0x3942006c, 0x63b6268e, 0xdb1b000c, 0x00000000}},  //   giks_, ksyn, stuð,\n  { {0x69c80030, 0x68f61811, 0x6f1a013e, 0x00000000}},  //   sude, _dayd, _kotc,\n  { {0x63b63075, 0x69c8010e, 0x636b0276, 0x00000000}},  //   dsyn, pude, günl,\n  { {0x68f6005a, 0x78ad006c, 0xa4d50451, 0x00000000}},  //   _fayd, _teav, мові,\n  { {0x5ec50044, 0x00000000, 0x00000000, 0x00000000}},  //   ল্পে,   ,   ,\n  { {0xdcfa001e, 0xb86700a1, 0xe454007e, 0x00000000}},  // [9870] _attī, _ڈاکو, екты,\n  { {0x6f1a0133, 0x2b5e0082, 0x00000000, 0x00000000}},  //   _notc, notc_,   ,\n  { {0x26d30009, 0x68f60477, 0xa3b90309, 0x00000000}},  //   _icxo_, _yayd, _घटक_,\n  { {0x3f850142, 0x6f08041d, 0x81df0044, 0x00000000}},  //   _silu_, _andc, তিল_,\n  { {0x7d19001c, 0xe0d001fa, 0x6f1a121e, 0x00000000}},  //   _rows, ازم_, _botc,\n  { {0x05b10061, 0xdb1b1c9e, 0xdce101d5, 0x00000000}},  //   _जबाब, truí, _kulħ,\n  { {0x7d190046, 0x6f1a1995, 0x272f014a, 0x00000000}},  //   _pows, _dotc, _güne_,\n  { {0xa3e1001c, 0xe8d90011, 0x3b9500ed, 0x00000000}},  //   _दहा_, _khổ_, мјот,\n  { {0x68f600d2, 0x39420dac, 0x6f1a0667, 0x00000000}},  //   _rayd, viks_, _fotc,\n  { {0x81c20055, 0x29093076, 0x68f60279, 0x00000000}},  //   ্বর_, _anaa_, _sayd,\n  { {0x13e60055, 0x39423077, 0x00000000, 0x00000000}},  //   নিয়, tiks_,   ,\n  { {0x68f6005f, 0xdb090553, 0x186a0088, 0x00000000}},  //   _qayd, rreñ, жами_,\n  { {0x3942006c, 0x636b0279, 0x7bc900f4, 0x00000000}},  //   riks_, tünl, queu,\n  { {0x29090059, 0x39423078, 0x59c5006e, 0x00000000}},  //   _enaa_, siks_, _विपर,\n  { {0x212d0149, 0xd62a005e, 0x63702c31, 0x00000000}},  //   _oleh_, цове_, jäna,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xd467017f, 0xc95300b3, 0x06e30044, 0x00000000}},  // [9880] дите_, _שמח_, ময়ি,\n  { {0x63b605b7, 0xd7760d3a, 0x212d0145, 0x00000000}},  //   rsyn, _تابع, _aleh_,\n  { {0x63b6000c, 0x212d01a3, 0x09db0044, 0x00000000}},  //   ssyn, _bleh_, ধিকা,\n  { {0x53a90061, 0x98b90035, 0x2caf0009, 0x00000000}},  //   _चौकश, misă_, _negd_,\n  { {0x6f1a3079, 0x00000000, 0x00000000, 0x00000000}},  //   _potc,   ,   ,\n  { {0x800b00a1, 0xdd9a00ed, 0x2d860016, 0x00000000}},  //   ترمہ_, оши_, _sioe_,\n  { {0x39400035, 0x00000000, 0x00000000, 0x00000000}},  //   _omis_,   ,   ,\n  { {0xe73f00c4, 0x00000000, 0x00000000, 0x00000000}},  //   mpõe_,   ,   ,\n  { {0x81df0044, 0x98b90035, 0x69c00316, 0x00000000}},  //   তিঃ_, hisă_, _विही,\n  { {0x3940028c, 0x7f430197, 0xb87b004a, 0x00000000}},  //   _amis_, cinq, nfíe,\n  { {0x2fc6128e, 0x28f90245, 0x8e4a0025, 0x00000000}},  //   lrog_, пень_, _بلاك_,\n  { {0x9c2600e2, 0x2548005a, 0x00000000, 0x00000000}},  //   _одед, oğlu_,   ,\n  { {0x1bf2007d, 0x290900d9, 0x00000000, 0x00000000}},  //   _अनिल_, _vnaa_,   ,\n  { {0xf53f044f, 0x39930181, 0x3940175f, 0x00000000}},  //   _små_, _fãs_, _emis_,\n  { {0x6d870010, 0xa5f80121, 0xdef80066, 0x00000000}},  //   _műan, меру_, _maċ_,\n  { {0xe8d90011, 0x636b005d, 0x2fc617f1, 0x00000000}},  //   _phổ_, rünm, krog_,\n  { {0x69da0516, 0x545502b8, 0x57f4007e, 0x00000000}},  // [9890] ltte, хват, _апыт,\n  { {0x2fc601d6, 0xa3cb0316, 0x2d9e0030, 0x00000000}},  //   drog_, रूष_, _otte_,\n  { {0x69da00b0, 0x69cf0036, 0x29d8009d, 0x00000000}},  //   ntte, ąceg, néa_,\n  { {0x69da021e, 0xe8d90011, 0x2fc6307a, 0x00000000}},  //   itte, _thổ_, frog_,\n  { {0x6370307b, 0x7feb0355, 0x9327004b, 0x00000000}},  //   männ, تراف_, _قرآن,\n  { {0x7af80059, 0x7df3006b, 0x63700a3c, 0x00000000}},  //   _navt, _həsə, länn,\n  { {0xa3cb0316, 0x62830027, 0x7f43006b, 0x00000000}},  //   रूर_, ľnos, rinq,\n  { {0x62830387, 0x98a00107, 0xa2d70055, 0x00000000}},  //   žnos, _ilić_, _সফটও,\n  { {0x7df3005f, 0x2d9e042b, 0x69da11be, 0x00000000}},  //   _məsə, _ette_, ette,\n  { {0x69da03fa, 0x6d5c01e5, 0x00000000, 0x00000000}},  //   ftte, _íran,   ,\n  { {0xa96a0256, 0x63700a3c, 0x273404ce, 0x00000000}},  //   зина_, känn, _häng_,\n  { {0xfe6e007a, 0x386915c5, 0xf76900a3, 0x00000000}},  //   _اگه_, _byar_, _הק_,\n  { {0x69da00b0, 0x636b307c, 0xdb0b0039, 0x00000000}},  //   atte, günk, _avgå,\n  { {0xdb1b03b5, 0x8c1a00b3, 0x2734006c, 0x00000000}},  //   bruá, _מוני, _mäng_,\n  { {0x7bdb0004, 0x3d040061, 0xd94600ed, 0x00000000}},  //   ltuu, वाचे_, _пеки,\n  { {0x98b90035, 0x7df3006b, 0x00000000, 0x00000000}},  //   risă_, _cəsə,   ,\n  { {0x68e418a9, 0x7bdb0160, 0xd4090025, 0x00000000}},  // [98a0] _ibid, ntuu, وتكم_,\n  { {0x7d0b0022, 0x00000000, 0x00000000, 0x00000000}},  //   _lngs,   ,   ,\n  { {0xe8d9001d, 0xf8bf00f4, 0x7bdb00b0, 0x00000000}},  //   _chỗ_, chés_, htuu,\n  { {0x7bdb095a, 0x3ced0022, 0xa99a0049, 0x00000000}},  //   ktuu, jeev_, לבער,\n  { {0x7f46004c, 0xe73f0181, 0xe3b203d9, 0x00000000}},  //   недж, spõe_, _حرج_,\n  { {0x63a40149, 0x69da307d, 0x7d0b05c6, 0x00000000}},  //   mpin, ytte, _angs,\n  { {0x68e4307e, 0x63a40273, 0x4ea50088, 0x00000000}},  //   _obid, lpin, тріа,\n  { {0x2fc60190, 0x98a90235, 0x68e40066, 0x00000000}},  //   prog_, _plač_, _nbid,\n  { {0x63a40315, 0x27340e2b, 0xdef8002b, 0x00000000}},  //   npin, _känd_, _taċ_,\n  { {0x30750057, 0x68e4006b, 0x7d0b00f8, 0x00000000}},  //   _русс, _abid, _engs,\n  { {0xc333019b, 0x2bc2024c, 0x38690093, 0x00000000}},  //   רות_, _शिवा, _syar_,\n  { {0x69da0706, 0x98a90027, 0x2eee113d, 0x00000000}},  //   rtte, _tlač_, leff_,\n  { {0x69da211e, 0x629c0065, 0x7bdb00b5, 0x00000000}},  //   stte, _ofro, ctuu,\n  { {0x63a4129a, 0x999e0010, 0x68e403b0, 0x00000000}},  //   dpin, sztő_, _ebid,\n  { {0x63a40fe8, 0x321300fa, 0xe5c401ab, 0x00000000}},  //   epin, xxxy_, лсто,\n  { {0x629c0065, 0x7df3006b, 0x59c5007d, 0x00000000}},  //   _afro, _qəsə, _वितर,\n  { {0xf2c70088, 0x6370307f, 0xf8bf291b, 0x00000000}},  // [98b0] есен, ränn, ्लीप,\n  { {0x69c802ae, 0xd0110123, 0x27e90022, 0x00000000}},  //   orde, یلا_, _ipan_,\n  { {0x7df3006b, 0x200401bc, 0x6d420035, 0x00000000}},  //   _təsə, _armi_, _omoa,\n  { {0x629c0016, 0x68fd030e, 0x69c80051, 0x00000000}},  //   _efro, ndsd, irde,\n  { {0x8009026c, 0xd25000a1, 0x656d0169, 0x00000000}},  //   براہ_, لنے_, mlah,\n  { {0xd0060478, 0x6d4200e0, 0x66051adc, 0x00000000}},  //   теше_, _amoa, _krhk,\n  { {0x8d55004c, 0xed59005c, 0xb35400ec, 0x00000000}},  //   ктич, мок_, _скрш,\n  { {0x13d50044, 0x68fd1e2e, 0x7bdb00b0, 0x00000000}},  //   _সৈয়, jdsd, ttuu,\n  { {0x69c801b5, 0x7f95005e, 0x88b00044, 0x00000000}},  //   erde, _разх, _কালক,\n  { {0x59c50183, 0x00000000, 0x00000000, 0x00000000}},  //   _विदर,   ,   ,\n  { {0x7bdb3080, 0x81df0055, 0x27e9011c, 0x00000000}},  //   stuu, তিক_, _apan_,\n  { {0x63a401d6, 0xd94601ee, 0x672100f8, 0x00000000}},  //   ypin, теми, öljn,\n  { {0x69c802ae, 0xf8bf00b9, 0x656d0161, 0x00000000}},  //   arde, ckém_, dlah,\n  { {0x07a30088, 0x7bdc001a, 0x81e80044, 0x00000000}},  //   рарн, ărut, বিত_,\n  { {0xa3d4001c, 0x63bd01c9, 0x1659041f, 0x00000000}},  //   सून_, _avsn, ерть_,\n  { {0x629c3081, 0x2be5013d, 0x656d011c, 0x00000000}},  //   _sfro, _कहां_, glah,\n  { {0xb87b0a06, 0x7bc90191, 0x9fbc0044, 0x00000000}},  // [98c0] rfíc, nreu, _আঙ্গ,\n  { {0x63a4001e, 0x577a0025, 0x00000000, 0x00000000}},  //   rpin, _تصبح_,   ,\n  { {0x63a4163a, 0x7bc900d9, 0x35a60545, 0x00000000}},  //   spin, hreu, _шанг,\n  { {0x63a40038, 0xd5b8001e, 0x4fc60d51, 0x00000000}},  //   ppin, šās_, вска,\n  { {0xb4ce0309, 0x81e80044, 0xa3ba0d0b, 0x00000000}},  //   रली_, বিধ_, _تاجر_,\n  { {0x776e0009, 0xb87b008e, 0x7bc9009d, 0x00000000}},  //   nlbx, nfía, dreu,\n  { {0xe1f7007c, 0x41aa01e1, 0x2eee01a2, 0x00000000}},  //   _игр_, _іван_, reff_,\n  { {0xed5703f3, 0x7bc93082, 0x2eee000a, 0x00000000}},  //   кој_, freu, seff_,\n  { {0x06b80055, 0x9f4d008e, 0x7bc90035, 0x00000000}},  //   _জানি, _creó_, greu,\n  { {0x69c80f92, 0x00000000, 0x00000000, 0x00000000}},  //   trde,   ,   ,\n  { {0x27e90365, 0x69c801b5, 0xf8bf00b9, 0x00000000}},  //   _span_, urde, ském_,\n  { {0xdca6012b, 0x7bc9046a, 0xf8bf0010, 0x00000000}},  //   _ради, breu, mkék_,\n  { {0x7bc90115, 0x68fd0056, 0xcc16023c, 0x00000000}},  //   creu, rdsd, _جذاب,\n  { {0xcf930476, 0x00000000, 0x00000000, 0x00000000}},  //   יטש_,   ,   ,\n  { {0xb8d90044, 0x656d1a16, 0x80d3013d, 0x00000000}},  //   _চা_, tlah, _डाले,\n  { {0xdb1b02d5, 0x6441006b, 0x00000000, 0x00000000}},  //   truç, _əlif,   ,\n  { {0x4394004d, 0x656d003f, 0x0ed201f5, 0x00000000}},  // [98d0] иатс, rlah, _सांड,\n  { {0x656d0020, 0x6fcc0061, 0x764e0010, 0x00000000}},  //   slah, _समजू, ányá,\n  { {0x656d010e, 0x672800f8, 0x00000000, 0x00000000}},  //   plah, ödje,   ,\n  { {0x59c50204, 0x7bc901a2, 0x00000000, 0x00000000}},  //   _विसर, yreu,   ,\n  { {0x3f8c01d5, 0x00000000, 0x00000000, 0x00000000}},  //   _bidu_,   ,   ,\n  { {0x543a007b, 0x752d21b3, 0x7bc9009d, 0x00000000}},  //   _טערא, lkaz, vreu,\n  { {0x4429163c, 0xc33200a0, 0x02af013d, 0x00000000}},  //   lya_, _פול_, टरीन,\n  { {0x7bc9010f, 0x9f4d0026, 0x752d0288, 0x00000000}},  //   treu, _creò_, nkaz,\n  { {0xa055008b, 0x7bc900f4, 0xbab50147, 0x00000000}},  //   _сваі, ureu, лёны,\n  { {0x89a901e0, 0x7bc91923, 0x442900ea, 0x00000000}},  //   нков_, rreu, iya_,\n  { {0x394a0175, 0x5cd5006d, 0x7bc901c3, 0x00000000}},  //   езно_, _مقاط, sreu,\n  { {0x7bc9001a, 0x442929ca, 0x798d0093, 0x00000000}},  //   preu, kya_, _ciaw,\n  { {0x44290061, 0x59c5013d, 0x798d0658, 0x00000000}},  //   jya_, _विवर, _diaw,\n  { {0x44292045, 0x7d1b006c, 0xa03a0049, 0x00000000}},  //   dya_, ljus, געשפ,\n  { {0xceb2019b, 0x7c29224b, 0x7c3b3083, 0x00000000}},  //   מים_, lyer, lzur,\n  { {0xb4ce024c, 0x44293084, 0x7d1b164d, 0x00000000}},  //   रले_, fya_, njus,\n  { {0x6b8d002a, 0x7c29020c, 0x4429020e, 0x00000000}},  // [98e0] _éags, nyer, gya_,\n  { {0x57fb00b6, 0x7d1b0004, 0x78b6006b, 0x00000000}},  //   _טלפו, hjus, _heyv,\n  { {0xdce21581, 0xf772089d, 0x10a618ea, 0x00000000}},  //   _skoč, _پاک_, гиен,\n  { {0x3f8c08b3, 0x00000000, 0x00000000, 0x00000000}},  //   _sidu_,   ,   ,\n  { {0x7d1b01ee, 0x78b6005a, 0x6d493085, 0x00000000}},  //   djus, _meyv, diea,\n  { {0x78b6004a, 0x00000000, 0x00000000, 0x00000000}},  //   _leyv,   ,   ,\n  { {0x7afe0489, 0x3d8a007c, 0x3f8c2a6c, 0x00000000}},  //   _ópti, нщин_, _vidu_,\n  { {0x42530151, 0xdb003086, 0x00000000, 0x00000000}},  //   _انفر, nsmö,   ,\n  { {0x798d0022, 0xdce211af, 0x00000000, 0x00000000}},  //   _riaw, _ukoč,   ,\n  { {0xdfcf0025, 0x798d005b, 0x00000000, 0x00000000}},  //   _ريم_, _siaw,   ,\n  { {0x6e930379, 0x5e930054, 0xaa5803c0, 0x00000000}},  //   _الما, _المط, тину_,\n  { {0x7c29011c, 0x88b00044, 0xe8d90011, 0x00000000}},  //   byer, _কাউক, _khứ_,\n  { {0x386d0030, 0xac970025, 0xab2a17e9, 0x00000000}},  //   æer_, _إنها_, _пода_,\n  { {0x7dea005f, 0x7bfb009b, 0x44290020, 0x00000000}},  //   _təsd, _נפוצ, vya_,\n  { {0x752d016c, 0x6aba00f8, 0x95c805a5, 0x00000000}},  //   tkaz, matf, лута_,\n  { {0x44290148, 0x6aba0010, 0x06c60044, 0x00000000}},  //   tya_, latf, শ্লি,\n  { {0x394b03db, 0x44290e6d, 0x93970439, 0x00000000}},  // [98f0] mics_, uya_, اجرا,\n  { {0xd25b013b, 0x394b1a86, 0x44290d56, 0x00000000}},  //   нце_, lics_, rya_,\n  { {0x44293087, 0x7c3b0197, 0x32070161, 0x00000000}},  //   sya_, zzur, íny_,\n  { {0x44293088, 0x394b12a0, 0x7c3b0036, 0x00000000}},  //   pya_, nics_, yzur,\n  { {0xe8d9001d, 0x06b80055, 0xa2950088, 0x00000000}},  //   _chứ_, _জাতি, _вагі,\n  { {0x394b0133, 0x00000000, 0x00000000, 0x00000000}},  //   hics_,   ,   ,\n  { {0x6d491ea7, 0xf204005e, 0x7c290133, 0x00000000}},  //   tiea, _лято, wyer,\n  { {0x7c3b002d, 0x68ff01f3, 0x00000000, 0x00000000}},  //   tzur, _naqd,   ,\n  { {0x75ec0047, 0x394b0129, 0x60db0009, 0x00000000}},  //   _közö, dics_, _icum,\n  { {0xff530025, 0xef67005e, 0x81e80044, 0x00000000}},  //   _اخر_, _събо, বির_,\n  { {0x394b0129, 0x7c3b3089, 0x7c290058, 0x00000000}},  //   fics_, szur, syer,\n  { {0x394b0129, 0x63700039, 0x8d870269, 0x00000000}},  //   gics_, tänk, _сузд,\n  { {0x5ba70140, 0x6aba0030, 0x2cad0787, 0x00000000}},  //   _срез, batf, mbed_,\n  { {0xfaa50373, 0x6370308a, 0x2cad1eda, 0x00000000}},  //   _тако, ränk, lbed_,\n  { {0x29560265, 0x394b060d, 0x60db0919, 0x00000000}},  //   _въпр, bics_, _ocum,\n  { {0x6370053d, 0x2d8f0173, 0x2cad0544, 0x00000000}},  //   mäni, _jige_, nbed_,\n  { {0x2900059a, 0x9346025f, 0x29120022, 0x00000000}},  // [9900] _iaia_, анае, _inya_,\n  { {0x2d8f0018, 0x60db001a, 0xa87b00a0, 0x00000000}},  //   _lige_, _acum, _באפר,\n  { {0x80a60084, 0x4add0309, 0x7dea006b, 0x00000000}},  //   لمان, _मानव, _məsc,\n  { {0xdfa606e3, 0x2900002d, 0x81e80044, 0x00000000}},  //   ајко, _jaia_, বিল_,\n  { {0xdefa0057, 0x290020c2, 0x636b01a2, 0x00000000}},  //   вый_, _maia_, güns,\n  { {0x2d8f002a, 0x29000fc3, 0x60db0035, 0x00000000}},  //   _aige_, _laia_, _ecum,\n  { {0x636b0676, 0x6aba0190, 0x637000b0, 0x00000000}},  //   rünt, vatf, jäni,\n  { {0xe8d9001d, 0x394b00d4, 0x60db0051, 0x00000000}},  //   _thứ_, xics_, _gcum,\n  { {0x8fa30373, 0x2aaa00c0, 0x394b1422, 0x00000000}},  //   _мате, ктно_, vics_,\n  { {0x29120010, 0x2d8f0056, 0x7bc6007f, 0x00000000}},  //   _anya_, _eige_, škuo,\n  { {0x2bc202d2, 0x394b03db, 0x2900001a, 0x00000000}},  //   _शिका, tics_, _baia_,\n  { {0xdd8f031d, 0x38c90167, 0x2900308b, 0x00000000}},  //   _قول_, دادی_, _caia_,\n  { {0x394b00ab, 0x20061815, 0x27ed00d4, 0x00000000}},  //   rics_, nvoi_, ïen_,\n  { {0x394b0129, 0x28a702fb, 0x29120035, 0x00000000}},  //   sics_, _क्रि, _enya_,\n  { {0x394b00ab, 0x68930014, 0xa3d4013d, 0x00000000}},  //   pics_, _ویدئ, सूस_,\n  { {0x2900002d, 0xef190036, 0x63a601c3, 0x00000000}},  //   _gaia_, _duży_, _btkn,\n  { {0x7bc002e7, 0x394900ca, 0x4498007c, 0x00000000}},  // [9910] nsmu, _imas_, рвую_,\n  { {0x27340004, 0x60db001a, 0x63a20051, 0x00000000}},  //   _täna_, _scum, íona,\n  { {0x636b010f, 0xa2940088, 0xa2dd006e, 0x00000000}},  //   wüns, іаці, _पाठ्,\n  { {0x301502d3, 0x21240051, 0x7bc00006, 0x00000000}},  //   йдер, _comh_, ksmu,\n  { {0x2d8f0190, 0x83870783, 0x21240051, 0x00000000}},  //   _rige_, _выве, _domh_,\n  { {0x2d8f308c, 0xf1a70216, 0x9f0500a1, 0x00000000}},  //   _sige_, _вран, صوبو,\n  { {0x2d8f0030, 0x78bd03b6, 0x7bc200f4, 0x00000000}},  //   _pige_, kasv, _avou,\n  { {0x2608001c, 0x28a702d2, 0x26d80107, 0x00000000}},  //   हिती_, _क्लि, zgro_,\n  { {0x403409de, 0x2cad08ce, 0x29000020, 0x00000000}},  //   _детс, rbed_, _raia_,\n  { {0x7de701fb, 0x7bc200b9, 0x290000c4, 0x00000000}},  //   _відд, _dvou, _saia_,\n  { {0xe8d9001d, 0xaa49012c, 0x2900142e, 0x00000000}},  //   _chữ_, упна_, _paia_,\n  { {0x7c950025, 0x6f01008e, 0x637004ce, 0x00000000}},  //   _الإص, _halc, räni,\n  { {0x6c850054, 0x290000f6, 0x67250145, 0x00000000}},  //   _الشم, _vaia_, _bohj,\n  { {0x394904cb, 0x6d500036, 0x00000000, 0x00000000}},  //   _emas_, ądał,   ,\n  { {0x6f010059, 0xf743007c, 0xe5a6308d, 0x00000000}},  //   _malc, черо, сиби,\n  { {0x6f0100f6, 0x2912011c, 0x00000000, 0x00000000}},  //   _lalc, _unya_,   ,\n  { {0x69c103b4, 0xf4840014, 0x7dea006b, 0x00000000}},  // [9920] lsle, زاری, _məsa,\n  { {0xa2dd0201, 0x5fd10061, 0x7c240009, 0x00000000}},  //   _पाण्, _समजल, _àire,\n  { {0x69c10056, 0xfe65025a, 0x2d8420d6, 0x00000000}},  //   nsle, _آگ_, ymme_,\n  { {0x629526f2, 0x69c10048, 0xf77f014a, 0x00000000}},  //   _egzo, isle, rtçe_,\n  { {0x572500e9, 0x60180604, 0x7e7a0045, 0x00000000}},  //   _طریق, роля_, _sztp,\n  { {0x2ca001d5, 0x69c10006, 0xdce00089, 0x00000000}},  //   _żid_, ksle, domā,\n  { {0xa2dd0164, 0xddea067a, 0x20060052, 0x00000000}},  //   _पात्, ارته_, svoi_,\n  { {0x69c101e3, 0x7bc60006, 0x7bc000ea, 0x00000000}},  //   dsle, škum, tsmu,\n  { {0x6f0102f1, 0x7bc018ef, 0x00000000, 0x00000000}},  //   _falc, usmu,   ,\n  { {0x93fb00a0, 0x69c11642, 0x6f01308e, 0x00000000}},  //   נליי, fsle, _galc,\n  { {0x69c1000c, 0x995200b9, 0x78bd12e2, 0x00000000}},  //   gsle, lář_, tasv,\n  { {0x48ab007c, 0x7d1d01a2, 0x7bc00056, 0x00000000}},  //   ытом_, össt, psmu,\n  { {0xc867046c, 0x6725021e, 0x69c30637, 0x00000000}},  //   стни, _pohj, _evne,\n  { {0x7d0211cb, 0x69c101c5, 0x28db01f5, 0x00000000}},  //   _haos, bsle, _भावि,\n  { {0x69c30009, 0x95770014, 0x63a20048, 0x00000000}},  //   _gvne, مدرض, íonn,\n  { {0x39490181, 0xe8d90011, 0x7dea006b, 0x00000000}},  //   _umas_, _khử_, _xəsa,\n  { {0x24181036, 0x2a8e006b, 0xa3d40164, 0x00000000}},  // [9930] боты_, ləb_, सूल_,\n  { {0x70d1006e, 0x7d02010e, 0x00000000, 0x00000000}},  //   हल्ल, _laos,   ,\n  { {0xd09501ab, 0x00000000, 0x00000000, 0x00000000}},  //   ошлы,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6f010142, 0x675402fd, 0x68ed0020, 0x00000000}},  //   _palc, _ذخیر, _mbad,\n  { {0x63ad0f68, 0xf650026c, 0x7a3f0047, 0x00000000}},  //   mpan, _آئی_, _játé,\n  { {0x6f01145e, 0x63ad00eb, 0x7d0201f3, 0x00000000}},  //   _valc, lpan, _baos,\n  { {0x6f010036, 0xdce00089, 0x69c700b9, 0x00000000}},  //   _walc, tomā, ájem,\n  { {0x63ad0fa8, 0x4ad4001c, 0x60c90466, 0x00000000}},  //   npan, _दाखव, _idem,\n  { {0x200d00c4, 0xb178000c, 0x7c2600f8, 0x00000000}},  //   _irei_, _þórð, äkra,\n  { {0xf2d20104, 0x61e500ab, 0x7dea006b, 0x00000000}},  //   ועי_, nthl, _təsa,\n  { {0x69c11e58, 0xa96a012b, 0x61e50fb8, 0x00000000}},  //   rsle, рима_, ithl,\n  { {0x69c10caa, 0x6d4b0869, 0x63ad00d9, 0x00000000}},  //   ssle, _imga, jpan,\n  { {0x69c3001e, 0x2a8e006b, 0x63ad00eb, 0x00000000}},  //   _tvne, bəb_, dpan,\n  { {0x60c905c5, 0x2a8e013f, 0x00000000, 0x00000000}},  //   _odem, cəb_,   ,\n  { {0x9599003b, 0x2cbf00f4, 0xf8bf00c4, 0x00000000}},  //   стру_, naud_, caé_,\n  { {0xccf2019b, 0x0326013b, 0x63ad011c, 0x00000000}},  // [9940] וכן_, одан, gpan,\n  { {0x60c90958, 0x68ed308f, 0xe3b70245, 0x00000000}},  //   _adem, _zbad, юбу_,\n  { {0x6d4b0bc7, 0x63ad0051, 0xdb09008e, 0x00000000}},  //   _omga, apan, nseñ,\n  { {0xa50a00d7, 0x200d1aef, 0xbfaa0aed, 0x00000000}},  //   _тема_, _brei_, атке_,\n  { {0x200d0e32, 0x60c9005b, 0x272f006b, 0x00000000}},  //   _crei_, _ddem, _süni_,\n  { {0x200d010f, 0x60c9014a, 0x7d0201ee, 0x00000000}},  //   _drei_, _edem, _saos,\n  { {0x6449009f, 0xdd97007e, 0x995200b9, 0x00000000}},  //   _þeir, ошы_, sář_,\n  { {0x200d010f, 0xe0d70088, 0x2cbf0f07, 0x00000000}},  //   _frei_, _мвс_, gaud_,\n  { {0x81bc08b7, 0x64400180, 0xff2700a1, 0x00000000}},  //   _আমি_, _ümid, _ڈبلی,\n  { {0x68ed2a03, 0xba0a005e, 0x00000000, 0x00000000}},  //   _sbad, ахме_,   ,\n  { {0x13b30055, 0x81e80044, 0x06e30044, 0x00000000}},  //   টওয়, বিক_, য়মি,\n  { {0xe8d9001d, 0x63ad00ea, 0x68ed0066, 0x00000000}},  //   _thử_, ypan, _qbad,\n  { {0x63ad0009, 0x637000b0, 0xb89a07e4, 0x00000000}},  //   xpan, näns, _šťáv,\n  { {0x61e5005b, 0x00000000, 0x00000000, 0x00000000}},  //   ythl,   ,   ,\n  { {0xe8d9001d, 0xda6f0088, 0xbb830076, 0x00000000}},  //   _chợ_, _ця_, _تلوي,\n  { {0x68ed0258, 0x637000f8, 0x29050089, 0x00000000}},  //   _ubad, käns, ēlas_,\n  { {0x63700039, 0x00000000, 0x00000000, 0x00000000}},  // [9950] jäns,   ,   ,\n  { {0xd37106f1, 0xc7b20476, 0x63ad3090, 0x00000000}},  //   رها_, _רבי_, rpan,\n  { {0x63ad060b, 0x63700c43, 0x877c0049, 0x00000000}},  //   span, vänt, _דאזי,\n  { {0x61e507be, 0x644001d5, 0x386d002b, 0x00000000}},  //   rthl, _żmie, żeru_,\n  { {0x251a00b3, 0xb4d70164, 0x2cbf0e6d, 0x00000000}},  //   _הורא, सली_, vaud_,\n  { {0x200d000d, 0xe3b20049, 0xa858009b, 0x00000000}},  //   _vrei_, _אױך_, חידה_,\n  { {0x4394003b, 0x09af0055, 0x31c401fc, 0x00000000}},  //   _царс, _কিভা, _оств,\n  { {0x200d000d, 0x6441006b, 0x60c90190, 0x00000000}},  //   _trei_, _əlin, _udem,\n  { {0xdb1b00c4, 0x00000000, 0x00000000, 0x00000000}},  //   ssuí,   ,   ,\n  { {0x0b42008b, 0x2cbf0035, 0x00000000, 0x00000000}},  //   еньн, saud_,   ,\n  { {0xc869007b, 0x7a69004d, 0x656d0d17, 0x00000000}},  //   _ען_, синг_, koah,\n  { {0x7dea006b, 0x6d4b05e9, 0x00000000, 0x00000000}},  //   _məsl, _umga,   ,\n  { {0x4c9a009b, 0x00000000, 0x00000000, 0x00000000}},  //   _הבנו,   ,   ,\n  { {0x26080204, 0x00000000, 0x00000000, 0x00000000}},  //   हिली_,   ,   ,\n  { {0x7dea006b, 0x6d5b2368, 0xfbbd0044, 0x00000000}},  //   _nəsl, onua, _আমিত,\n  { {0xe9a806f1, 0x6d5b22ce, 0xc4d60061, 0x00000000}},  //   _بدون_, nnua, धलेख,\n  { {0xf993009b, 0xa2dd01f5, 0x79840058, 0x00000000}},  // [9960] _ארה_, _पाश्, _ihiw,\n  { {0xe8d90011, 0x6d5b0051, 0x66170010, 0x00000000}},  //   _thợ_, hnua, égkö,\n  { {0xa2dd02fb, 0x27340039, 0xe297007e, 0x00000000}},  //   _पार्, _länk_, чах_,\n  { {0x2367016e, 0x6d5b0023, 0x00000000, 0x00000000}},  //   čnja_, jnua,   ,\n  { {0x21673091, 0x00000000, 0x00000000, 0x00000000}},  //   чици_,   ,   ,\n  { {0x4393007e, 0x63702c31, 0x00000000, 0x00000000}},  //   _паўс, räns,   ,\n  { {0xde93003b, 0x44323092, 0x00000000, 0x00000000}},  //   нашњ, lyy_,   ,\n  { {0x06c60044, 0x75243093, 0xd6c60044, 0x00000000}},  //   শ্চি, njiz, শ্চয,\n  { {0x44200082, 0x64443094, 0xe8d90082, 0x00000000}},  //   nxi_, nzii, _nhỡ_,\n  { {0x5a3400e3, 0xbec20089, 0x44200129, 0x00000000}},  //   днот, šība, ixi_,\n  { {0x58d50364, 0x6d950006, 0xaadd013d, 0x00000000}},  //   монт, _išan, _मारक,\n  { {0x60c20020, 0x443200b0, 0x7524002b, 0x00000000}},  //   naom, kyy_, jjiz,\n  { {0x2fc6000c, 0xfc2f03d6, 0x3ae50173, 0x00000000}},  //   nsog_, _محو_, _bňpč_,\n  { {0x2d9e0011, 0xaae60014, 0x644401c5, 0x00000000}},  //   _kute_, _رستو, dzii,\n  { {0x4b7b009b, 0x60c2170e, 0x3ebe3095, 0x00000000}},  //   _האגו, kaom, _mett_,\n  { {0x3ebe3096, 0xb4d70164, 0xda5b009b, 0x00000000}},  //   _lett_, सले_, _לכול,\n  { {0x69da0275, 0x7dea006b, 0x2d9e3097, 0x00000000}},  // [9970] lute, _səsl, _lute_,\n  { {0x7afa021e, 0x3ebe122f, 0x2bd40309, 0x00000000}},  //   nett, _nett_, _दिना,\n  { {0x6515026c, 0x7afa0207, 0x26c30059, 0x00000000}},  //   _ہوگئ, iett, majo_,\n  { {0x7afa0c71, 0x26c30059, 0x98a50006, 0x00000000}},  //   hett, lajo_, ėlė_,\n  { {0x7afa021e, 0xaadd01f5, 0x3ebe0a35, 0x00000000}},  //   kett, _मालक, _bett_,\n  { {0x69da006c, 0x2d9e007f, 0x7afa0056, 0x00000000}},  //   kute, _bute_, jett,\n  { {0x69da01d5, 0x7afa0c71, 0x417700a2, 0x00000000}},  //   jute, dett, _فارس,\n  { {0x2d9e0756, 0x69da3098, 0x2b4e0022, 0x00000000}},  //   _dute_, dute, _amfc_,\n  { {0x7afa0409, 0x3ebe3099, 0x6d5b002d, 0x00000000}},  //   fett, _fett_, rnua,\n  { {0x7afa0198, 0x26c301d9, 0x3ebe0039, 0x00000000}},  //   gett, jajo_, _gett_,\n  { {0x2d9e001f, 0x26c30059, 0xd6e30044, 0x00000000}},  //   _gute_, dajo_, য়ায,\n  { {0x6d40001f, 0x44320058, 0x27340039, 0x00000000}},  //   chma, yyy_, _tänk_,\n  { {0x442001d5, 0x7afa153a, 0x2d9e0107, 0x00000000}},  //   xxi_, bett, _zute_,\n  { {0x7afa2529, 0xdb0b0039, 0x69da0549, 0x00000000}},  //   cett, _avgö, bute,\n  { {0x64a6007e, 0x69da032c, 0x55e3007c, 0x00000000}},  //   даба, cute, корб,\n  { {0x7d090d65, 0x4420022b, 0xe3ba00ed, 0x00000000}},  //   ndes, txi_, жба_,\n  { {0x26c30219, 0x7dea005f, 0x7d0900f2, 0x00000000}},  // [9980] bajo_, _rəsm, ides,\n  { {0x7d0900b0, 0x753d0010, 0x60c20020, 0x00000000}},  //   hdes, _elsz, waom,\n  { {0x00e601fb, 0x3f9f0521, 0x3ebe0292, 0x00000000}},  //   джен, _auuu_, _rett_,\n  { {0x2d9e23c4, 0x3ebe01e2, 0x7d090065, 0x00000000}},  //   _rute_, _sett_, jdes,\n  { {0x7afa014a, 0x8fa30407, 0x69da002d, 0x00000000}},  //   yett, ваче, zute,\n  { {0x43750088, 0x69da2f1b, 0x7afa0203, 0x00000000}},  //   _зуст, yute, xett,\n  { {0x7afa1bb9, 0x7d090007, 0x3ebe309a, 0x00000000}},  //   vett, fdes, _vett_,\n  { {0x6440000c, 0x7d09309b, 0x7afa0125, 0x00000000}},  //   _ýmis, gdes, wett,\n  { {0x7afa021e, 0x7dea006b, 0x3ebe309c, 0x00000000}},  //   tett, _kəsk, _tett_,\n  { {0x60c00073, 0x6d4008e9, 0x7afa009d, 0x00000000}},  //   _hemm, shma, uett,\n  { {0xfe430256, 0x26c30059, 0x60c00b5e, 0x00000000}},  //   _инфо, vajo_, _kemm,\n  { {0x7afa0292, 0x69da309d, 0x60c0002b, 0x00000000}},  //   sett, rute, _jemm,\n  { {0x7afa0198, 0xb907006e, 0x69da0a0e, 0x00000000}},  //   pett, _पा_, sute,\n  { {0x60c00cfc, 0x69da0f7c, 0x629c0065, 0x00000000}},  //   _lemm, pute, _ngro,\n  { {0x26c301d9, 0x2d860011, 0xf794007e, 0x00000000}},  //   rajo_, _khoe_, тарэ,\n  { {0x629c0181, 0x60c0309e, 0xab5d0036, 0x00000000}},  //   _agro, _nemm, duży,\n  { {0x21260521, 0x68fd214c, 0x26c30059, 0x00000000}},  // [9990] djoh_, mesd, pajo_,\n  { {0x32110046, 0xd37b008b, 0xdb090181, 0x00000000}},  //   _przy_, іча_, mpeã,\n  { {0xd25b0551, 0xe8d900ad, 0xd2510a4f, 0x00000000}},  //   цца_, _chủ_, دنا_,\n  { {0x290b001a, 0x629c0145, 0x660524e7, 0x00000000}},  //   ndca_, _egro, _ishk,\n  { {0x2eee001c, 0x6aaa0483, 0x7d0924ac, 0x00000000}},  //   ffff_, _offf, vdes,\n  { {0x26c1004f, 0xdc140055, 0x32110036, 0x00000000}},  //   _jeho_, িহাস_, _trzy_,\n  { {0x60c0028c, 0x7d0900ca, 0x26c11282, 0x00000000}},  //   _femm, tdes, _meho_,\n  { {0x60c00030, 0x69c805ad, 0x629c0036, 0x00000000}},  //   _gemm, dsde, _zgro,\n  { {0x7bdb0091, 0x69c800d9, 0x7ae30085, 0x00000000}},  //   uuuu, esde, _pcnt,\n  { {0x2909309f, 0x7d090a5e, 0x7bdb1c2b, 0x00000000}},  //   _aaaa_, sdes, ruuu,\n  { {0x9f8a00b0, 0x7d0930a0, 0x00000000, 0x00000000}},  //   töön_, pdes,   ,\n  { {0x186a080d, 0x6aaa0045, 0xdb1b004a, 0x00000000}},  //   зами_, _efff, rruñ,\n  { {0x6aaa001c, 0xdd94007e, 0x66050023, 0x00000000}},  //   _ffff, _рацы, _ashk,\n  { {0x613a0129, 0x25a10146, 0xe73a0cb3, 0x00000000}},  //   _aïll, _buhl_, чег_,\n  { {0xe6170b87, 0xf53f1861, 0xa3e200e8, 0x00000000}},  //   ндр_, _blå_, नून_,\n  { {0x68e40035, 0x629c1f3e, 0x68fd004a, 0x00000000}},  //   _ucid, _sgro, cesd,\n  { {0x7bc914b3, 0xb386007c, 0xd4670745, 0x00000000}},  // [99a0] nseu, елал, еите_,\n  { {0x60c00047, 0xe8d9001d, 0x63a42f17, 0x00000000}},  //   _semm, _phủ_, rqin,\n  { {0xf7720123, 0x6f0814a6, 0xda1f007d, 0x00000000}},  //   _لاگ_, _radc, यमित_,\n  { {0x7bd50036, 0x7bc930a1, 0x7a4601cc, 0x00000000}},  //   ązuj, kseu, _hété,\n  { {0x7bcf0b76, 0x60c00146, 0xed500014, 0x00000000}},  //   ácul, _vemm, یپت_,\n  { {0xe8d9001d, 0x629c30a2, 0x69c801d6, 0x00000000}},  //   _thủ_, _ugro, ysde,\n  { {0x60c0011f, 0x7a4600f4, 0xe3631023, 0x00000000}},  //   _temm, _mété, _скри,\n  { {0xe2970822, 0x7bc901d6, 0x00000000, 0x00000000}},  //   _час_, fseu,   ,\n  { {0x6aaa0602, 0x1be7003b, 0x7dea006b, 0x00000000}},  //   _pfff, едњи_, _məsi,\n  { {0x3940011c, 0x69c80270, 0x29090173, 0x00000000}},  //   _alis_, tsde, _saaa_,\n  { {0x68fd02e1, 0x39400145, 0x00000000, 0x00000000}},  //   tesd, _blis_,   ,\n  { {0x69c801d6, 0xfc660265, 0x7dea006b, 0x00000000}},  //   rsde, _пълн, _nəsi,\n  { {0x68fd1f10, 0xdceb002b, 0x00000000, 0x00000000}},  //   resd, _sigħ,   ,\n  { {0xb9c60054, 0xf53f044f, 0x8c1b0104, 0x00000000}},  //   _كتبه, _slå_, _מודי,\n  { {0xbb830025, 0x39402e10, 0x7a46009d, 0x00000000}},  //   _حلوي, _flis_, _dété,\n  { {0x394030a3, 0x4a7b009b, 0x2909012d, 0x00000000}},  //   _glis_, _מרוב, _uaaa_,\n  { {0x28b40025, 0x26c130a4, 0x00000000, 0x00000000}},  // [99b0] _صحيح, _teho_,   ,\n  { {0x8627007e, 0x00000000, 0x00000000, 0x00000000}},  //   _зьме,   ,   ,\n  { {0xcad7009b, 0x212d00d9, 0x7dea013f, 0x00000000}},  //   תובת_, _poeh_, _fəsi,\n  { {0x7fd50088, 0x00000000, 0x00000000, 0x00000000}},  //   вікі,   ,   ,\n  { {0xb4cd0204, 0xe134007e, 0xdee50072, 0x00000000}},  //   रणी_, ынцы, воли,\n  { {0xbec20089, 0x3eac009d, 0xb33b00fa, 0x00000000}},  //   šīna, _cfdt_, _fuça,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x27340039, 0xfe700380, 0x7bc930a5, 0x00000000}},  //   _hänt_, حده_, tseu,\n  { {0x2d8d049b, 0x27340039, 0x752f0036, 0x00000000}},  //   rmee_, _känt_, _mocz,\n  { {0xc6bc0044, 0x2d8d0501, 0x78ad0129, 0x00000000}},  //   _অঞ্চ, smee_, _afav,\n  { {0xa96a0113, 0x39400263, 0x7bc9028c, 0x00000000}},  //   дина_, _plis_, sseu,\n  { {0x9c39012b, 0x7bc901c3, 0xbdf80241, 0x00000000}},  //   _опет_, pseu, _سرما_,\n  { {0x69de00ea, 0x394000d9, 0x00000000, 0x00000000}},  //   _åpen, _vlis_,   ,\n  { {0x7d0b000c, 0x41d1007d, 0x78ad0c10, 0x00000000}},  //   _hags, _हिंस, _efav,\n  { {0xc8b6007c, 0x7a4600f4, 0xb87b008e, 0x00000000}},  //   _испы, _vété, rgía,\n  { {0xe8d9001d, 0x7d0b30a6, 0xb4dc0204, 0x00000000}},  //   _phụ_, _jags, ठले_,\n  { {0x7d0b006a, 0x7dea006b, 0x752f0036, 0x00000000}},  // [99c0] _mags, _vəsi, _docz,\n  { {0x7c260039, 0x7d0b0039, 0xfbd4013d, 0x00000000}},  //   äkri, _lags, _दिसम,\n  { {0xb6d9007b, 0x7dea005f, 0x2fcd0173, 0x00000000}},  //   _אַרט, _təsi, _aveg_,\n  { {0x7d0b006a, 0xe8d90011, 0x64a604b6, 0x00000000}},  //   _nags, _thụ_, _шама,\n  { {0xc0e30077, 0xdb0000ea, 0x00000000, 0x00000000}},  //   рочк, ppmø,   ,\n  { {0x2734006c, 0xdbdb000c, 0x4add0061, 0x00000000}},  //   _tänu_, _ráðg, _मागव,\n  { {0x7d0b30a7, 0x68f61c10, 0x00000000, 0x00000000}},  //   _bags, _obyd,   ,\n  { {0x90a50025, 0x00000000, 0x00000000, 0x00000000}},  //   _محكم,   ,   ,\n  { {0x7d0b009f, 0x6aad014a, 0xbb7402ea, 0x00000000}},  //   _dags, _şafa, лгиј,\n  { {0x20191471, 0x78ad0197, 0x00000000, 0x00000000}},  //   _ásia_, _sfav,   ,\n  { {0x2bd40164, 0x98a70e0d, 0x7d0b1c36, 0x00000000}},  //   _दिवा, šiča_, _fags,\n  { {0xa921006b, 0xdd960084, 0xe9450123, 0x00000000}},  //   _şöbə, _شجاع, اردی,\n  { {0xf7730084, 0xdb09002a, 0x752f0036, 0x00000000}},  //   لاس_, speá, _rocz,\n  { {0x7d000232, 0x752f0036, 0xf093034e, 0x00000000}},  //   lems, _socz, ינר_,\n  { {0x752f0046, 0xa4d50cf2, 0x7e8600b9, 0x00000000}},  //   _pocz, лові, _úspě,\n  { {0xb4cd01f5, 0x35440088, 0x7d000a3e, 0x00000000}},  //   रणे_, ахув, nems,\n  { {0x659402be, 0x24580057, 0x3959011c, 0x00000000}},  // [99d0] рату, вать_, miss_,\n  { {0x69da00bb, 0x7d0000f8, 0xdce000b9, 0x00000000}},  //   orte, hems, tomě,\n  { {0x10d5007e, 0x752f0036, 0x7d000258, 0x00000000}},  //   гілё, _tocz, kems,\n  { {0x69da30a8, 0x06d80055, 0x7d0000b9, 0x00000000}},  //   irte, দ্দি, jems,\n  { {0xd250026c, 0x69da010f, 0x7dea006b, 0x00000000}},  //   منے_, hrte, _məsu,\n  { {0x7d0b0030, 0xf77f0180, 0xdce0013e, 0x00000000}},  //   _sags, ftçi_, pomě,\n  { {0x7d0b011c, 0xb06200b0, 0x00000000, 0x00000000}},  //   _pags, _ääni,   ,\n  { {0x6d420781, 0x2bd40309, 0x00000000, 0x00000000}},  //   _cloa, _दिशा,   ,\n  { {0xeb9919c9, 0x69da010f, 0xa158003b, 0x00000000}},  //   нии_, erte, _рату_,\n  { {0x4add02fb, 0x4b250088, 0x00000000, 0x00000000}},  //   _माओव, умов,   ,\n  { {0x52d00055, 0x7d0b17b0, 0x7dea006b, 0x00000000}},  //   স্কৃ, _tags, _səsv,\n  { {0x2e3a0049, 0x6d420035, 0x4a420088, 0x00000000}},  //   _אגענ, _gloa, снюв,\n  { {0x69da002d, 0xed59013e, 0x00000000, 0x00000000}},  //   arte, miž_,   ,\n  { {0x07a30545, 0x656600ea, 0xcc3a0049, 0x00000000}},  //   сарн, _sjkh, _רעסט,\n  { {0x39590f22, 0x2d9d00e7, 0x00000000, 0x00000000}},  //   biss_, _kiwe_,   ,\n  { {0x2cad0038, 0x2d9d0020, 0x6995007e, 0x00000000}},  //   nced_, _jiwe_, _крых,\n  { {0xc95300b6, 0x29020459, 0xf2da03ab, 0x00000000}},  // [99e0] _למה_, meka_, فظات_,\n  { {0x29021077, 0x370605c0, 0x2d9d00e7, 0x00000000}},  //   leka_, _спог, _liwe_,\n  { {0xe0da012b, 0x26ca015e, 0x8b560049, 0x00000000}},  //   еве_, mabo_, ניעס_,\n  { {0x9fca0057, 0x2902023a, 0x26ca30a9, 0x00000000}},  //   егда_, neka_, labo_,\n  { {0x43860a4f, 0x00000000, 0x00000000, 0x00000000}},  //   _ملحق,   ,   ,\n  { {0x643b0049, 0xde5805b8, 0x69da068f, 0x00000000}},  //   _טעכנ, калі_, yrte,\n  { {0x7d001a76, 0x6d42001a, 0x290230aa, 0x00000000}},  //   tems, _ploa, keka_,\n  { {0x29020209, 0x69da00b9, 0x6564000c, 0x00000000}},  //   jeka_, vrte, nnih,\n  { {0x7dea006b, 0x7d001a91, 0xf06600ed, 0x00000000}},  //   _rəsu, rems, _скап,\n  { {0x69da0059, 0x3d190061, 0x7dea006b, 0x00000000}},  //   trte, _मोठे_, _bəst,\n  { {0x26ca00d4, 0x69da00bb, 0x63a61d2f, 0x00000000}},  //   dabo_, urte, _lukn,\n  { {0x7dea005f, 0x6370010f, 0x2902047b, 0x00000000}},  //   _dəst, gänz, geka_,\n  { {0x3f9e30ab, 0xb954007c, 0x395930ac, 0x00000000}},  //   _kitu_, свящ, riss_,\n  { {0x26ca0061, 0x3f9e30ad, 0x39590e4e, 0x00000000}},  //   gabo_, _jitu_, siss_,\n  { {0x3f9e006c, 0x63a6000c, 0xf99000a2, 0x00000000}},  //   _mitu_, _aukn, تبی_,\n  { {0x99d300a1, 0x3f9e2b0e, 0x7dea006b, 0x00000000}},  //   _اتوا, _litu_, _həss,\n  { {0x5499007e, 0x26ca0058, 0x36d508fc, 0x00000000}},  // [99f0] тваў_, babo_, _копр,\n  { {0xb4db00d4, 0x26ca00fa, 0x3f9e241d, 0x00000000}},  //   _glàn, cabo_, _nitu_,\n  { {0x7dea005f, 0x798d04be, 0x05790025, 0x00000000}},  //   _xəst, _khaw, _لمدة_,\n  { {0x1128005e, 0x301501ab, 0x82340025, 0x00000000}},  //   лючи_, идер, حركا,\n  { {0x752d30ae, 0x32180022, 0xa49b00f6, 0x00000000}},  //   mjaz, _erry_, _caòt,\n  { {0x3f9e001e, 0x29020020, 0x752d2530, 0x00000000}},  //   _citu_, zeka_, ljaz,\n  { {0x3f9e022b, 0xddc2022a, 0xed5901ca, 0x00000000}},  //   _ditu_, общи, tiž_,\n  { {0xd65800b6, 0x752d002b, 0x7aea0093, 0x00000000}},  //   טיות_, njaz, _acft,\n  { {0x29020255, 0x2d53001a, 0x44290129, 0x00000000}},  //   veka_, nţei_, nxa_,\n  { {0x2902000b, 0x442930af, 0x3f9e0169, 0x00000000}},  //   weka_, ixa_, _gitu_,\n  { {0x6f032737, 0x29021bc4, 0x7a6900ed, 0x00000000}},  //   menc, teka_, тинг_,\n  { {0x273d00ad, 0x5c750256, 0x6f03201e, 0x00000000}},  //   _hình_, _клет, lenc,\n  { {0x2902020c, 0x7bc20263, 0x26ca011c, 0x00000000}},  //   reka_, _gwou, tabo_,\n  { {0x6f031697, 0x6d4900c4, 0x6d5b0020, 0x00000000}},  //   nenc, lhea, liua,\n  { {0x273d00ad, 0x63a60006, 0x26ca0059, 0x00000000}},  //   _mình_, _sukn, rabo_,\n  { {0x26ca30b0, 0x798d002b, 0x63a60091, 0x00000000}},  //   sabo_, _ghaw, _pukn,\n  { {0x6f03008d, 0x7c3b04be, 0x7c291374, 0x00000000}},  // [9a00] kenc, nyur, nxer,\n  { {0x6f0330b1, 0x6d490050, 0x6d950006, 0x00000000}},  //   jenc, hhea, _išau,\n  { {0x6f031e53, 0x0219007e, 0x6d5b30b2, 0x00000000}},  //   denc, ліць_, kiua,\n  { {0x3f9e01a3, 0xfbc70379, 0xf9930049, 0x00000000}},  //   _situ_, _وت_, ַרג_,\n  { {0x273d001d, 0x6d4930b3, 0x6d5b0065, 0x00000000}},  //   _bình_, dhea, diua,\n  { {0x69c30038, 0x9f5305b8, 0x06d80044, 0x00000000}},  //   _owne, овіч, দ্রি,\n  { {0x3f9e0020, 0x78a430b4, 0xbd6a026b, 0x00000000}},  //   _vitu_, _ogiv, крие_,\n  { {0xc0e30057, 0x6d490fe5, 0x7bc201aa, 0x00000000}},  //   _моск, ghea, _pwou,\n  { {0xdee601fc, 0x29d101d5, 0x3f9e0035, 0x00000000}},  //   _вози, eġa_, _titu_,\n  { {0x798d0784, 0x637000b0, 0x6da3016c, 0x00000000}},  //   _shaw, täny, _rđav,\n  { {0x6d49131d, 0x644d08eb, 0xc98700e2, 0x00000000}},  //   bhea, zzai, иуми,\n  { {0x6d4930b5, 0x7bc201aa, 0x6d5b30b6, 0x00000000}},  //   chea, _twou, ciua,\n  { {0x442901d5, 0x386d014a, 0x7c3b0009, 0x00000000}},  //   xxa_, çer_, cyur,\n  { {0x6d4030b7, 0x79a60478, 0x69c30045, 0x00000000}},  //   lkma, _крие, _fwne,\n  { {0x69c3018e, 0xd90f0123, 0x6d400009, 0x00000000}},  //   _gwne, _قید_, okma,\n  { {0x644d022b, 0x44290ec8, 0x6f031fe9, 0x00000000}},  //   tzai, txa_, zenc,\n  { {0xf8bf04bd, 0xd6db00ed, 0x752d002b, 0x00000000}},  // [9a10] mbé_, _итн_, rjaz,\n  { {0xec71007b, 0x44291c6b, 0x6f030f57, 0x00000000}},  //   פֿן_, rxa_, xenc,\n  { {0x6f03049a, 0x6d4930b8, 0x55590401, 0x00000000}},  //   venc, yhea, _баня_,\n  { {0x6d490061, 0x6d4000bb, 0x00000000, 0x00000000}},  //   xhea, jkma,   ,\n  { {0x6f030819, 0x6b81018e, 0x6d490009, 0x00000000}},  //   tenc, yllg, vhea,\n  { {0x6d400328, 0x60cb00e0, 0x6d490133, 0x00000000}},  //   ekma, sagm, whea,\n  { {0x6d49002a, 0x48e80061, 0xed59041f, 0x00000000}},  //   thea, _झालो_, лок_,\n  { {0x7c290948, 0x9f5f000c, 0x236701ed, 0x00000000}},  //   txer, _eruð_, čnju_,\n  { {0x273d00ad, 0x6ab80044, 0x6f031a56, 0x00000000}},  //   _tình_, _আয়ো, penc,\n  { {0x6aa40676, 0x6d490051, 0x60c900bb, 0x00000000}},  //   _şifr, shea, _heem,\n  { {0x60c930b9, 0xdce90645, 0x6d490a47, 0x00000000}},  //   _keem, sleđ, phea,\n  { {0x29d1002b, 0xfc330076, 0x200d0022, 0x00000000}},  //   rġa_, _وحش_, _ksei_,\n  { {0x8d74031d, 0x6d5930ba, 0x5ba7013b, 0x00000000}},  //   _بالا, _imwa, _трез,\n  { {0x2cbf05df, 0x60c901d6, 0x00000000, 0x00000000}},  //   lbud_, _leem,   ,\n  { {0x19b510fc, 0x78a901d9, 0xe6430088, 0x00000000}},  //   _احتج, ževa, перп,\n  { {0x60c930bb, 0x00000000, 0x00000000, 0x00000000}},  //   _neem,   ,   ,\n  { {0x442602d5, 0x66e601ab, 0x00000000, 0x00000000}},  // [9a20] ão_, _лопа,   ,\n  { {0x29122ca2, 0xd24f0014, 0x00000000, 0x00000000}},  //   _haya_, کنم_,   ,\n  { {0x29120811, 0x60c908ff, 0x6d590009, 0x00000000}},  //   _kaya_, _beem, _omwa,\n  { {0xc69300b6, 0x29120169, 0xda7a0049, 0x00000000}},  //   _מאת_, _jaya_, אנער,\n  { {0x8ff70054, 0x2912027c, 0xdfcf0379, 0x00000000}},  //   مرور_, _maya_, فين_,\n  { {0x291212f4, 0x42530063, 0x6d5900e7, 0x00000000}},  //   _laya_, _کنفر, _amwa,\n  { {0x200d0145, 0x00000000, 0x00000000, 0x00000000}},  //   _esei_,   ,   ,\n  { {0x29120145, 0x60c900d9, 0xfc460062, 0x00000000}},  //   _naya_, _geem, šími_,\n  { {0x6d40169c, 0x00000000, 0x00000000, 0x00000000}},  //   rkma,   ,   ,\n  { {0x68ed04b4, 0x6d4000f8, 0x60c900bb, 0x00000000}},  //   _scad, skma, _zeem,\n  { {0x8e860025, 0x7c240006, 0x291215dc, 0x00000000}},  //   _الاه, _šird, _baya_,\n  { {0xdd8f0025, 0x291201a3, 0x00000000, 0x00000000}},  //   _كول_, _caya_,   ,\n  { {0x29120169, 0xf8bf009d, 0xead4054d, 0x00000000}},  //   _daya_, rbé_, _доль,\n  { {0x2d8400d9, 0x83030044, 0xf8bf0010, 0x00000000}},  //   llme_, _উচ্চ_, sbé_,\n  { {0x2c74026c, 0x29120f65, 0x6d951878, 0x00000000}},  //   _دیکھ_, _faya_, _išar,\n  { {0x291230bc, 0x39a50089, 0x657d1617, 0x00000000}},  //   _gaya_, _cēsu_, _qksh,\n  { {0x9948057d, 0x60c91261, 0x833500c0, 0x00000000}},  // [9a30] _دليل_, _reem, онах,\n  { {0x60c900ab, 0x63ad0d82, 0x2124000a, 0x00000000}},  //   _seem, rqan, _anmh_,\n  { {0x39490263, 0xe5350057, 0x29121c39, 0x00000000}},  //   _klas_, _день, _yaya_,\n  { {0x0ce30044, 0x657d0023, 0x399b05a0, 0x00000000}},  //   _মস্ত, _uksh, _būsi_,\n  { {0x9f9920b5, 0x60c926c7, 0xb4e50963, 0x00000000}},  //   авду_, _veem, नली_,\n  { {0x60c90116, 0x8afc0036, 0x2ca600e0, 0x00000000}},  //   _weem, nięd, _agod_,\n  { {0x60c90004, 0x394926be, 0x2cbf00f8, 0x00000000}},  //   _teem, _olas_, tbud_,\n  { {0x2bd403d7, 0x6d950006, 0x00000000, 0x00000000}},  //   _दिखा, _ašar,   ,\n  { {0x2912020c, 0x6fe0007d, 0x2cbf01bf, 0x00000000}},  //   _raya_, _नियं, rbud_,\n  { {0x291204be, 0x6d5e00f4, 0x394930bd, 0x00000000}},  //   _saya_, épar, _alas_,\n  { {0x7cd9026c, 0x39491625, 0x291201a3, 0x00000000}},  //   _نواز_, _blas_, _paya_,\n  { {0x6d5930be, 0x78a90091, 0x394900f8, 0x00000000}},  //   _umwa, ževn, _clas_,\n  { {0x29120211, 0x224d00b9, 0x673700d9, 0x00000000}},  //   _vaya_, _řekl_, _boxj,\n  { {0x39490181, 0x409a009b, 0xf6260545, 0x00000000}},  //   _elas_, יברס, одго,\n  { {0x3949132f, 0x29120058, 0x25a20087, 0x00000000}},  //   _flas_, _taya_, _pikl_,\n  { {0x785c0089, 0x67250146, 0x00000000, 0x00000000}},  //   tāvī, _enhj,   ,\n  { {0xe57701ff, 0x5eca0044, 0x00000000, 0x00000000}},  // [9a40] ізу_, _রাসে,   ,\n  { {0x7c24002a, 0x00000000, 0x00000000, 0x00000000}},  //   _áire,   ,   ,\n  { {0x64a6003b, 0xa49b0173, 0x8afc0036, 0x00000000}},  //   _мана, _abòd, sięg,\n  { {0x10a60545, 0x00000000, 0x00000000, 0x00000000}},  //   цидн,   ,   ,\n  { {0xee0202f4, 0x34a70088, 0x25e6013d, 0x00000000}},  //   लब्ध_, _євро_, जूरी_,\n  { {0xcdda025f, 0x5eca0044, 0x00000000, 0x00000000}},  //   ањи_, _রাহে,   ,\n  { {0x79460046, 0x1219007e, 0xdd9100a1, 0x00000000}},  //   _równ, _люты_, کوٹ_,\n  { {0x387f002b, 0x91030545, 0x7126009e, 0x00000000}},  //   żuri_, _опсе, _برسل,\n  { {0xeb06007c, 0x60c200ea, 0x00000000, 0x00000000}},  //   очно, mbom,   ,\n  { {0xba54025f, 0x60c2007f, 0x25ba00f6, 0x00000000}},  //   звој, lbom, _otpl_,\n  { {0x39490263, 0xb87b00c4, 0xa3ca0061, 0x00000000}},  //   _plas_, ngív, ळीत_,\n  { {0x39a401aa, 0x8ba6004d, 0x2ca600e0, 0x00000000}},  //   vèsè_, _дидж, _ugod_,\n  { {0xcb6a01f9, 0x39490253, 0xc19b0049, 0x00000000}},  //   _каде_, _vlas_, ישטי,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x26da0087, 0xb5950140, 0x00000000, 0x00000000}},  //   _ddpo_, зивш,   ,\n  { {0xb4e501f5, 0x39490145, 0x00000000, 0x00000000}},  //   नले_, _ulas_,   ,\n  { {0xe87306c6, 0x628e1529, 0x54550ab6, 0x00000000}},  // [9a50] _زندگ, _azbo, чват,\n  { {0x2bdd00e8, 0xe8d90082, 0x777c00d4, 0x00000000}},  //   _मिसा, _thỳ_, corx,\n  { {0x26d10c8f, 0xd378007e, 0x00000000, 0x00000000}},  //   mazo_, ічу_,   ,\n  { {0xdd86025a, 0x26d130bf, 0x60c20058, 0x00000000}},  //   _سو_, lazo_, gbom,\n  { {0xf4840888, 0x6fc6007d, 0x00000000, 0x00000000}},  //   _журн, रीलं,   ,\n  { {0x26d130c0, 0xdb0b00c4, 0x00000000, 0x00000000}},  //   nazo_, _eugê,   ,\n  { {0x5eca0055, 0xd049006b, 0xc33200a3, 0x00000000}},  //   _রাশে, _ənən, _אום_,\n  { {0x26d1004a, 0x00000000, 0x00000000, 0x00000000}},  //   hazo_,   ,   ,\n  { {0x399b001e, 0x60db1a07, 0x26d130c1, 0x00000000}},  //   _jūsu_, _idum, kazo_,\n  { {0x399b001e, 0x26d11caf, 0x7c2400ca, 0x00000000}},  //   _mūsu_, jazo_, _širc,\n  { {0xd910026c, 0x26d1008e, 0x98b004eb, 0x00000000}},  //   ہیں_, dazo_, šača_,\n  { {0xa96a003b, 0xdb030023, 0x201f0b36, 0x00000000}},  //   сима_, _kinë, _krui_,\n  { {0x661e05fa, 0x6d4b0006, 0x7d09006c, 0x00000000}},  //   _srpk, _ilga, mees,\n  { {0x26cc02d5, 0x7d0900b0, 0x26d1008e, 0x00000000}},  //   údo_, lees, gazo_,\n  { {0xd94626f5, 0x65c6005e, 0x60c2007f, 0x00000000}},  //   _неки, ябва, ybom,\n  { {0x7d09021e, 0x2a3a00b6, 0xb33b00c4, 0x00000000}},  //   nees, _לעצמ, _muçu,\n  { {0x26d130c2, 0x434600e2, 0x656f25d0, 0x00000000}},  // [9a60] bazo_, пеав, _djch,\n  { {0x7d09021e, 0x8afc0036, 0x26d1004a, 0x00000000}},  //   hees, mięc, cazo_,\n  { {0x7d0900b0, 0x6d4b01c5, 0xf41f00b0, 0x00000000}},  //   kees, _olga, _erä_,\n  { {0xfaf80089, 0x3f87012d, 0x00000000, 0x00000000}},  //   lnīt_, elnu_,   ,\n  { {0x8afc0046, 0x98a70091, 0x1b120044, 0x00000000}},  //   nięc, šića_, ়াতে_,\n  { {0x6d4b0114, 0x60db010e, 0x22410045, 0x00000000}},  //   _alga, _edum, byhk_,\n  { {0x7d090112, 0xb4db0045, 0x290000d9, 0x00000000}},  //   fees, _slài, _obia_,\n  { {0x6da301fc, 0x7d090116, 0x5bb8004d, 0x00000000}},  //   нија, gees, олия_,\n  { {0x6fb601af, 0x00000000, 0x00000000, 0x00000000}},  //   _رمضا,   ,   ,\n  { {0x2900001a, 0xff240014, 0x6d4b0032, 0x00000000}},  //   _abia_, _تبری, _elga,\n  { {0xc33300b6, 0x7d091267, 0xf1c30082, 0x00000000}},  //   תות_, bees, _nhớ_,\n  { {0x26d10020, 0xdb030173, 0x00000000, 0x00000000}},  //   wazo_, _linè,   ,\n  { {0x26d130c3, 0x7c830517, 0x315700a3, 0x00000000}},  //   tazo_, _пуше, ליטן_,\n  { {0xd7f81734, 0x00000000, 0x00000000, 0x00000000}},  //   чую_,   ,   ,\n  { {0x50cc024c, 0x8afb00b6, 0x26d1231e, 0x00000000}},  //   ाराष, _להגי, razo_,\n  { {0xe8d90011, 0x26d11770, 0x69d80066, 0x00000000}},  //   _thự_, sazo_, _ivve,\n  { {0x26d1004a, 0xa77501ee, 0x00000000, 0x00000000}},  // [9a70] pazo_, _олич,   ,\n  { {0xe9ff0082, 0x290b0036, 0xdb0300f6, 0x00000000}},  //   _hoại_, leca_, _cinè,\n  { {0xdb0b01c9, 0x22470010, 0x00000000, 0x00000000}},  //   _utgå, ánk_,   ,\n  { {0x2bdd0316, 0x290b1c37, 0xdb0b0f57, 0x00000000}},  //   _मिला, neca_, _eugè,\n  { {0xdb1b0219, 0x29d8001d, 0xd25000a1, 0x00000000}},  //   spué, hĩa_, ننے_,\n  { {0xe9ff001d, 0x7d0902ae, 0x69d80207, 0x00000000}},  //   _loại_, wees, _ovve,\n  { {0x7d09021e, 0x290b0197, 0xed590147, 0x00000000}},  //   tees, keca_, жой_,\n  { {0x656d1642, 0x63af0107, 0x0c250153, 0x00000000}},  //   nnah, _kucn, дмин,\n  { {0x2bdd001c, 0x69d813f0, 0x7d090052, 0x00000000}},  //   _मिळा, _avve, rees,\n  { {0xe9d90517, 0x7d090103, 0x4a450088, 0x00000000}},  //   око_, sees, днов,\n  { {0xdb0300b9, 0x63a700b5, 0xdb0b009d, 0x00000000}},  //   _jiné, _mijn, _jugé,\n  { {0xdb0330c4, 0x63a700b5, 0x628700e5, 0x00000000}},  //   _miné, _lijn, _myjo,\n  { {0x7d56007b, 0x0c25007e, 0xdb03009d, 0x00000000}},  //   _קינד_, _імкн, _liné,\n  { {0x63a730c5, 0x4c9a009b, 0x9b450014, 0x00000000}},  //   _nijn, _ובנו, _زنبو,\n  { {0x8afc0046, 0x656d084a, 0x00000000, 0x00000000}},  //   sięc, fnah,   ,\n  { {0x1987005e, 0x8afc0036, 0x290030c6, 0x00000000}},  //   _общи_, pięc, _ubia_,\n  { {0x7984000b, 0x63a700b5, 0x69c130c7, 0x00000000}},  // [9a80] _ikiw, _bijn, lple,\n  { {0xdb090211, 0x69c130c8, 0x656d00e7, 0x00000000}},  //   mpeó, ople, anah,\n  { {0xdb03028c, 0x69c12e51, 0xb4db00f6, 0x00000000}},  //   _ciné, nple, _alàu,\n  { {0x9c820062, 0x20040022, 0xa87a0049, 0x00000000}},  //   íčko, _ppmi_, ֿאַר,\n  { {0x63a700b5, 0xb4db00d4, 0x798400e7, 0x00000000}},  //   _fijn, _clàu, _mkiw,\n  { {0x290b0107, 0xb5ab00a1, 0xdb0300f6, 0x00000000}},  //   zeca_, _دئیے_, _finé,\n  { {0x63af016c, 0x7bcb0066, 0xdb0310c9, 0x00000000}},  //   _zucn, _awgu, _giné,\n  { {0x69c130c9, 0x63a700bb, 0x44220471, 0x00000000}},  //   dple, _zijn, _krk_,\n  { {0x290b0107, 0x64442552, 0x69c11c2e, 0x00000000}},  //   veca_, nyii, eple,\n  { {0x7984000b, 0x5a3400e3, 0x65640883, 0x00000000}},  //   _akiw, енот, hiih,\n  { {0x290b06c2, 0x69c130ca, 0xdb0300f6, 0x00000000}},  //   teca_, gple, _xiné,\n  { {0x442200f8, 0x4cd600a2, 0x1c4601ee, 0x00000000}},  //   _ork_, _آغاز, _онем,\n  { {0xb8d703d7, 0x290b00bb, 0xfc2f006d, 0x00000000}},  //   _जल_, reca_, _نحو_,\n  { {0x290b02db, 0x44250161, 0x63af0253, 0x00000000}},  //   seca_, _čl_, _rucn,\n  { {0x44320061, 0xd9f2006e, 0x290b30cb, 0x00000000}},  //   exy_, _अमित_, peca_,\n  { {0x994401f6, 0x7d020719, 0x3eac0022, 0x00000000}},  //   mış_, _jbos, _lgdt_,\n  { {0x63a730cc, 0x656d086d, 0x99440279, 0x00000000}},  // [9a90] _pijn, rnah, lış_,\n  { {0x656d127d, 0x44221601, 0xdb0b0ab4, 0x00000000}},  //   snah, _drk_, _pugé,\n  { {0x7d0200e5, 0x39920047, 0x99440279, 0x00000000}},  //   _obos, lása_, nış_,\n  { {0x63a700b5, 0x44220190, 0x7c221424, 0x00000000}},  //   _wijn, _frk_, _oror,\n  { {0x80270054, 0x5ed30044, 0x63bd00ea, 0x00000000}},  //   برام, _সাবে, _utsn,\n  { {0x9944014a, 0x69c101d6, 0x39b70035, 0x00000000}},  //   kış_, yple, _lăsa_,\n  { {0x753d0c58, 0xc1770879, 0x7c221624, 0x00000000}},  //   _kosz, _قدرت, _aror,\n  { {0xa294008b, 0x92940147, 0x7c2202e7, 0x00000000}},  //   _расі, _расц, _bror,\n  { {0x7996018e, 0x753d30cd, 0x518402ea, 0x00000000}},  //   _rhyw, _mosz, _рура,\n  { {0x7d020016, 0x39920010, 0x69c10007, 0x00000000}},  //   _ebos, dása_, tple,\n  { {0x7c2226c4, 0xdcfb00b9, 0x69c101c3, 0x00000000}},  //   _eror, louč, uple,\n  { {0x69c100b5, 0x753d108d, 0x00000000, 0x00000000}},  //   rple, _nosz,   ,\n  { {0x291e00b9, 0x443200e5, 0xb4db00d4, 0x00000000}},  //   ěta_, xxy_, _llàs,\n  { {0xcc3a007b, 0x7d1b0004, 0x79460046, 0x00000000}},  //   _מענט, ldus, _mówi,\n  { {0xceb2012f, 0xd040005f, 0xd5b21095, 0x00000000}},  //   ריל_, _demə, افر_,\n  { {0x7d1b0004, 0xdb090211, 0x79840d16, 0x00000000}},  //   ndus, mpeñ, _ukiw,\n  { {0x0326003b, 0x753d0036, 0x27e625a9, 0x00000000}},  // [9aa0] ндан, _dosz, _íon_,\n  { {0x6d49003c, 0x7d190133, 0xe2920025, 0x00000000}},  //   hkea, _laws, هذا_,\n  { {0x00e60088, 0xb4db30ce, 0x442201c3, 0x00000000}},  //   ежен, _clàs, _wrk_,\n  { {0x61e30047, 0x44220009, 0x6b810090, 0x00000000}},  //   ánla, _trk_, holg,\n  { {0x673e25c3, 0x14d700b6, 0xd040006b, 0x00000000}},  //   _kopj, _אוכל_, _yemə,\n  { {0x99440180, 0x44200020, 0x00000000, 0x00000000}},  //   yış_, mvi_,   ,\n  { {0x9944005f, 0x39920047, 0x6b6600f4, 0x00000000}},  //   xış_, zása_, _légè,\n  { {0x78a9037e, 0x7c22016e, 0x4420006c, 0x00000000}},  //   ževi, _pror, ovi_,\n  { {0x6b81001f, 0x30760769, 0x442004bd, 0x00000000}},  //   folg, _чувс, nvi_,\n  { {0xf063012b, 0x9944005a, 0x442003b6, 0x00000000}},  //   _скуп, tış_, ivi_,\n  { {0x4420006c, 0x1b120044, 0x00000000, 0x00000000}},  //   hvi_, ়ালে_,   ,\n  { {0x9944027d, 0x39920047, 0x44200119, 0x00000000}},  //   rış_, tása_, kvi_,\n  { {0xa49b01aa, 0x6b811e2d, 0x753d30cf, 0x00000000}},  //   _abòn, bolg, _rosz,\n  { {0x7d190046, 0x7c2d0521, 0x07a4007e, 0x00000000}},  //   _zaws, _šarg, лаўн,\n  { {0x753d0ef6, 0xe61000a1, 0x442030d0, 0x00000000}},  //   _posz, یشہ_, evi_,\n  { {0x78ad00e7, 0x6f1a191c, 0x00000000, 0x00000000}},  //   _ugav, _latc,   ,\n  { {0x97a7012b, 0xb97c00a0, 0x69da27eb, 0x00000000}},  // [9ab0] _прол, _מנהי, lste,\n  { {0x69da00c7, 0x7d1b01ee, 0xb4db30d1, 0x00000000}},  //   oste, zdus, _plàs,\n  { {0x6441005f, 0x442021de, 0x00000000, 0x00000000}},  //   _əliy, avi_,   ,\n  { {0xf99f01aa, 0x6b810010, 0x291b0066, 0x00000000}},  //   nmè_, zolg, _jaqa_,\n  { {0x4420012d, 0x6f1a2f74, 0x69da01a2, 0x00000000}},  //   cvi_, _batc, hste,\n  { {0x69da0542, 0x6f1a00ab, 0x7d190271, 0x00000000}},  //   kste, _catc, _saws,\n  { {0x6b8130d2, 0x69da30d3, 0x7ed40431, 0x00000000}},  //   volg, jste, ازها,\n  { {0x69da1d2f, 0x26d30065, 0x62951da4, 0x00000000}},  //   dste, _lexo_, _izzo,\n  { {0x69da04bd, 0x81c30055, 0x6d4930d4, 0x00000000}},  //   este, _এটি_, rkea,\n  { {0x69da010f, 0x6d490e38, 0x26d30325, 0x00000000}},  //   fste, skea, _nexo_,\n  { {0x2bd10316, 0x28c30204, 0x628b0036, 0x00000000}},  //   _दौरा, _व्हि, ęgow,\n  { {0x81c30055, 0x186a004c, 0x8afc0036, 0x00000000}},  //   _এটা_, дами_, wnęt,\n  { {0x3959008d, 0x69da0275, 0xdd94008b, 0x00000000}},  //   ërsa_, aste, _сацы,\n  { {0x2d8d0275, 0x31660032, 0x00000000, 0x00000000}},  //   llee_, zioz_,   ,\n  { {0x291b0a61, 0x9a240379, 0xdce0012d, 0x00000000}},  //   _faqa_, _معين, zimč,\n  { {0x442001d9, 0xa2a20316, 0x2d8d2c57, 0x00000000}},  //   tvi_, _कृष्, nlee_,\n  { {0xd4670113, 0x7bdb01c2, 0x629530d5, 0x00000000}},  // [9ac0] вите_, nsuu, _azzo,\n  { {0x2d8d0061, 0x212d0169, 0x7bdb00b0, 0x00000000}},  //   hlee_, _aneh_, isuu,\n  { {0x26d80cd4, 0x2d8d2b48, 0x44200052, 0x00000000}},  //   maro_, klee_, svi_,\n  { {0x26d8011c, 0x212d0173, 0x7bdb00b0, 0x00000000}},  //   laro_, _cneh_, ksuu,\n  { {0x3940028c, 0x316619e1, 0x2d8d0003, 0x00000000}},  //   _mois_, rioz_, dlee_,\n  { {0x26d8180a, 0x394000f4, 0x39520016, 0x00000000}},  //   naro_, _lois_, _llys_,\n  { {0x69da0240, 0x2dd70054, 0x216a003b, 0x00000000}},  //   xste, نبية_, _живи_,\n  { {0x6f1a0038, 0x39400129, 0x69da0056, 0x00000000}},  //   _watc, _nois_, vste,\n  { {0x69da0016, 0x26d80006, 0x315700a0, 0x00000000}},  //   wste, karo_, _סימן_,\n  { {0x3940002a, 0x69da1440, 0x26d8008e, 0x00000000}},  //   _aois_, tste, jaro_,\n  { {0x394000f4, 0x69da0544, 0x26d80006, 0x00000000}},  //   _bois_, uste, daro_,\n  { {0x69da1440, 0x7c2d0209, 0x26d330d6, 0x00000000}},  //   rste, _šare, _sexo_,\n  { {0x394030d7, 0x69da001f, 0xdb030181, 0x00000000}},  //   _dois_, sste, _dinâ,\n  { {0x26d800f4, 0x7c650318, 0x7bc21139, 0x00000000}},  //   garo_, _حامل, _itou,\n  { {0x3940028c, 0x98c7025f, 0x291b002b, 0x00000000}},  //   _fois_, _испл, _taqa_,\n  { {0x2d84049a, 0x61fe010f, 0x394000fa, 0x00000000}},  //   nome_, dtpl, _gois_,\n  { {0x26d801c5, 0x53991001, 0x7c2400ca, 0x00000000}},  // [9ad0] baro_, евая_, _širj,\n  { {0x2d8401a3, 0x61e30010, 0x99520161, 0x00000000}},  //   home_, ánlo, máš_,\n  { {0x2d842b24, 0x6d5c010a, 0x02a70888, 0x00000000}},  //   kome_, _įran, трам,\n  { {0xe535007c, 0x2d840006, 0x00000000, 0x00000000}},  //   _семь, jome_,   ,\n  { {0xb4c10201, 0x2d840089, 0x61fe00d9, 0x00000000}},  //   ुरी_, dome_, atpl,\n  { {0x20d1001d, 0x5ed30044, 0xf412009b, 0x00000000}},  //   ại_, _সাহে, _הפך_,\n  { {0x7bc203eb, 0xf1a7003b, 0x80d20044, 0x00000000}},  //   _atou, _аран, _হার্,\n  { {0x2ee9005f, 0xdb0300c4, 0x2d840091, 0x00000000}},  //   şaf_, _viní, gome_,\n  { {0xfc310025, 0x2d8d046a, 0x3940009d, 0x00000000}},  //   صحة_, rlee_, _rois_,\n  { {0x394030d8, 0x2d8d0085, 0x26d80032, 0x00000000}},  //   _sois_, slee_, xaro_,\n  { {0x394030d9, 0x26d80325, 0x39990010, 0x00000000}},  //   _pois_, varo_, zése_,\n  { {0x2d840038, 0x7f410066, 0x26d80045, 0x00000000}},  //   come_, _holq, waro_,\n  { {0xeb8e053c, 0x394016c6, 0x26d80211, 0x00000000}},  //   _ги_, _vois_, taro_,\n  { {0x7f41002b, 0x00000000, 0x00000000, 0x00000000}},  //   _jolq,   ,   ,\n  { {0xa50a005e, 0x26d8064e, 0x25a00173, 0x00000000}},  //   нева_, raro_, tmil_,\n  { {0x291e001e, 0x39990047, 0x26d80197, 0x00000000}},  //   ētas_, tése_, saro_,\n  { {0x2e17005f, 0x26d800d6, 0x25a030da, 0x00000000}},  // [9ae0] _dəfə_, paro_, rmil_,\n  { {0x46f60680, 0xdcf40107, 0x42561020, 0x00000000}},  //   _счит, _čačk, лтет,\n  { {0x29d10059, 0x2d84000a, 0xdb0a000a, 0x00000000}},  //   nša_, yome_, _difè,\n  { {0xa91b000c, 0xdb0900c4, 0x63140044, 0x00000000}},  //   llþr, mpeõ, সাইট_,\n  { {0xe3b200a6, 0x2d8430db, 0x61fe010f, 0x00000000}},  //   _درج_, vome_, stpl,\n  { {0x1f73008b, 0x29d12ad6, 0x00000000, 0x00000000}},  //   блія, kša_,   ,\n  { {0x5fe002d2, 0x29d11701, 0x06d90044, 0x00000000}},  //   _निकल, jša_, _তামি,\n  { {0xe6d10061, 0x00000000, 0x00000000, 0x00000000}},  //   _तज्ज,   ,   ,\n  { {0x9b6a00aa, 0x2d8400ab, 0x69c30d90, 0x00000000}},  //   ешна_, rome_, _atne,\n  { {0x68e40161, 0x93fb00a3, 0x2d8400ab, 0x00000000}},  //   _adid, עליי, some_,\n  { {0x1959045a, 0x4975041f, 0xdb030129, 0x00000000}},  //   ваны_, илос, _dinà,\n  { {0x63ae0173, 0x628e01a3, 0x69c30082, 0x00000000}},  //   _libn, _mybo, _dtne,\n  { {0x68e40016, 0x69c30197, 0xf7730380, 0x00000000}},  //   _ddid, _etne, ماس_,\n  { {0x6d42006c, 0x29d100ca, 0x63ae0066, 0x00000000}},  //   _hooa, bša_, _nibn,\n  { {0x3abb00a0, 0x628e1c8c, 0xe5c4005e, 0x00000000}},  //   _אמונ, _nybo, йсто,\n  { {0x69c800d4, 0x68e4002b, 0xb4c10316, 0x00000000}},  //   mpde, _gdid, ुरे_,\n  { {0x69c80168, 0x2458007c, 0x7afd0521, 0x00000000}},  // [9af0] lpde, гать_, đstv,\n  { {0x6e282229, 0x2b99009d, 0x78a9016c, 0x00000000}},  //   _ordb, pèce_, ževs,\n  { {0x5ed30055, 0x6db10089, 0xdb0b004a, 0x00000000}},  //   _সালে, _jāat, _jugá,\n  { {0xf8bf00f4, 0xdd860025, 0x7ff50688, 0x00000000}},  //   ncé_, _ذو_, لستا,\n  { {0x60d90066, 0x00000000, 0x00000000, 0x00000000}},  //   rawm,   ,   ,\n  { {0x798600e7, 0x63ae30dc, 0x00000000, 0x00000000}},  //   zokw, _gibn,   ,\n  { {0x798600e7, 0x93c60035, 0x7f4130dd, 0x00000000}},  //   yokw, rtăş, _volq,\n  { {0xf1a402be, 0x29d110f7, 0x69c300e0, 0x00000000}},  //   _грун, vša_, _rtne,\n  { {0x320100ab, 0x6e28010f, 0x1c420147, 0x00000000}},  //   lthy_, _erdb, жным,\n  { {0x79860022, 0x3b09003b, 0x00000000, 0x00000000}},  //   wokw, њено_,   ,\n  { {0x27e00089, 0x3f87014a, 0x798600e7, 0x00000000}},  //   _svin_, monu_, tokw,\n  { {0xb4e402f4, 0xa96a012b, 0xdb030211, 0x00000000}},  //   _नये_, тима_, _diná,\n  { {0x2f240010, 0xd7d00061, 0x61e30010, 0x00000000}},  //   ségű_, तींच, ánlj,\n  { {0xfaa50c4e, 0x7bc903be, 0x29d1073a, 0x00000000}},  //   _кало, mpeu, pša_,\n  { {0x59760783, 0x63ae089f, 0xdb030181, 0x00000000}},  //   _выпу, _ribn, _giná,\n  { {0x2c09013d, 0x7c240340, 0xda7a009b, 0x00000000}},  //   _वहां_, _širi, _שנקר,\n  { {0x5ee00055, 0x3f870387, 0x3366007e, 0x00000000}},  // [9b00] প্টে, konu_, аваг,\n  { {0x3f8701c5, 0xa2e6007c, 0x00000000, 0x00000000}},  //   jonu_, рожд,   ,\n  { {0x8afc0036, 0x200d001a, 0x8b560049, 0x00000000}},  //   więk, _apei_, סיעס_,\n  { {0xb4db001d, 0x27ed0091, 0x4fc6007e, 0x00000000}},  //   _hoàn, šene_, аска,\n  { {0x628e30de, 0x3f87014a, 0x237800fa, 0x00000000}},  //   _wybo, fonu_, _tjrj_,\n  { {0x7c24002a, 0x3f87073a, 0x657602e7, 0x00000000}},  //   _áiri, gonu_, lnyh,\n  { {0x91e3005e, 0x00000000, 0x00000000, 0x00000000}},  //   _море,   ,   ,\n  { {0x2d9d0016, 0x2247010f, 0x65760062, 0x00000000}},  //   _chwe_, änke_, nnyh,\n  { {0xef1a00e3, 0xf8bf00f4, 0xa3ca0061, 0x00000000}},  //   _има_, ndée_, ळीच_,\n  { {0xd00f0054, 0x3b54026b, 0xda260088, 0x00000000}},  //   _تلك_, скор, аємо,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x4c86013b, 0xbc670167, 0xed5900b9, 0x00000000}},  //   _клев, امین_, chž_,\n  { {0xdca60098, 0xf8bf009d, 0xdcfb0180, 0x00000000}},  //   _тади, rcé_, lluğ,\n  { {0xe78730df, 0x6a4a006b, 0x69c80203, 0x00000000}},  //   румо, vəff, ppde,\n  { {0xd5b801e0, 0xdcfb005d, 0xf9c400a6, 0x00000000}},  //   ист_, nluğ, _احتی,\n  { {0x4867005e, 0xdce20087, 0x00000000, 0x00000000}},  //   _въоб, _omoč,   ,\n  { {0x3f870279, 0x9fe10044, 0x798d0020, 0x00000000}},  // [9b10] yonu_, _মঙ্গ, _ikaw,\n  { {0xf2c7007e, 0xdcfb014a, 0x96270089, 0x00000000}},  //   рсан, kluğ, _paņē,\n  { {0xd1b80084, 0x877c071c, 0x798d0066, 0x00000000}},  //   لانا_, _באזי, _kkaw,\n  { {0xc1050025, 0xe61000a6, 0x320100ab, 0x00000000}},  //   صوتي, _کشی_, rthy_,\n  { {0x2cbf006b, 0x656d08a8, 0x798d00e7, 0x00000000}},  //   vcud_, miah, _mkaw,\n  { {0x442b00b0, 0x656d023a, 0x6b880107, 0x00000000}},  //   _irc_, liah, jodg,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xe678009b, 0x9f46000c, 0x387e001a, 0x00000000}},  //   יתוח_, stoð_, ştri_,\n  { {0x442b2a0c, 0x644d0461, 0x63a50051, 0x00000000}},  //   _jrc_, nyai, omhn,\n  { {0x798d0020, 0x7bc9110a, 0xdb030288, 0x00000000}},  //   _akaw, rpeu, _minç,\n  { {0x39920047, 0x5e950025, 0x63a50051, 0x00000000}},  //   lási_, _الاط, imhn,\n  { {0x7bc900f4, 0xe8f70454, 0x6b4d00f6, 0x00000000}},  //   ppeu, блю_, _múgi,\n  { {0x4ca50055, 0x442b00bb, 0x656d01a3, 0x00000000}},  //   _গ্রু, _nrc_, diah,\n  { {0x798d00e0, 0x6d5b004a, 0x644d0022, 0x00000000}},  //   _ekaw, lhua, dyai,\n  { {0xceb2019b, 0xa6e3000c, 0x00000000, 0x00000000}},  //   לים_, íðar,   ,\n  { {0x6d5b16b1, 0x00000000, 0x00000000, 0x00000000}},  //   nhua,   ,   ,\n  { {0x64a3007e, 0x65760d32, 0xdcfb019a, 0x00000000}},  // [9b20] зата, rnyh, zluğ,\n  { {0x39920010, 0x442b0020, 0xf8bf009d, 0x00000000}},  //   dási_, _drc_, rdée_,\n  { {0x442b0129, 0xdcfb006b, 0x00000000, 0x00000000}},  //   _erc_, xluğ,   ,\n  { {0x00da01f7, 0x10a62015, 0x63a50051, 0x00000000}},  //   ابات_, биен, amhn,\n  { {0x5ec90055, 0xfecf0044, 0x6d5b0065, 0x00000000}},  //   _রয়ে, _রাজধ, dhua,\n  { {0x212010f7, 0x25ba0087, 0x75240095, 0x00000000}},  //   žih_, _kupl_, ldiz,\n  { {0x0ef9008b, 0x7c2b018e, 0xdb0300b0, 0x00000000}},  //   рэчы_, _argr, _minä,\n  { {0x2fda007a, 0x75240198, 0x6fb6007a, 0x00000000}},  //   _مورد_, ndiz, _همرا,\n  { {0x75240020, 0x60c206b1, 0xe043003b, 0x00000000}},  //   idiz, mcom, _енти,\n  { {0x60c200ab, 0x20570049, 0xd00f0644, 0x00000000}},  //   lcom, _הימל_, _سلم_,\n  { {0xd91504af, 0x60c20a15, 0x6d5b0051, 0x00000000}},  //   одны, ocom, bhua,\n  { {0xf53f0039, 0x6d5b1dec, 0xb4c70061, 0x00000000}},  //   _ihåg_, chua, _उभे_,\n  { {0xbfb6001d, 0x286b0517, 0x752430e0, 0x00000000}},  //   _điểm_, урно_, ddiz,\n  { {0xac97006d, 0x442b0022, 0x6d4001ee, 0x00000000}},  //   _انها_, _rrc_, ljma,\n  { {0x442b0365, 0x26da04cd, 0x39920010, 0x00000000}},  //   _src_, _depo_, zási_,\n  { {0x6d400263, 0x6a4a005f, 0x442b01da, 0x00000000}},  //   njma, rəfd, _prc_,\n  { {0x60c20009, 0x656d003f, 0xb4b9006e, 0x00000000}},  // [9b30] dcom, riah, _चली_,\n  { {0xb87b0285, 0xd25b1123, 0x6d5b0065, 0x00000000}},  //   raíd, лце_, zhua,\n  { {0x50b5004c, 0x82150025, 0x442b0471, 0x00000000}},  //   ослу, تواص, _wrc_,\n  { {0x39920047, 0xdb0b010f, 0x6d4600b0, 0x00000000}},  //   tási_, _zugä, ökal,\n  { {0xd91c0104, 0x442b0035, 0x657d00d9, 0x00000000}},  //   טואל, _urc_, _ijsh,\n  { {0x44290311, 0x60c20026, 0xf41f00b0, 0x00000000}},  //   mva_, acom, _isä_,\n  { {0x442930e1, 0xe81b007d, 0x6d5b071e, 0x00000000}},  //   lva_, _पैसा_, thua,\n  { {0xdb0a1383, 0x60c20207, 0xdd910379, 0x00000000}},  //   _difí, ccom, بوع_,\n  { {0x44290232, 0x764e0036, 0x00000000, 0x00000000}},  //   nva_, zyby,   ,\n  { {0x7afa001c, 0x6d5b0065, 0x60db0270, 0x00000000}},  //   ggtt, shua, _heum,\n  { {0x26da01aa, 0x442901c2, 0xdce90dc6, 0x00000000}},  //   _repo_, hva_, lieč,\n  { {0x44290119, 0xdb0300b0, 0x6369006b, 0x00000000}},  //   kva_, _sinä, _dönə,\n  { {0x7d0900ea, 0x26da16d8, 0xdce930e2, 0x00000000}},  //   mfes, _pepo_, nieč,\n  { {0x44292012, 0x60c20009, 0x5ba70140, 0x00000000}},  //   dva_, zcom, _урез,\n  { {0x44290142, 0xd946044b, 0xdce0007f, 0x00000000}},  //   eva_, _меки, simą,\n  { {0x27ed0091, 0x7c29068f, 0xdce90006, 0x00000000}},  //   šena_, over, kieč,\n  { {0x06d90055, 0x7c2930e3, 0x2b4700ca, 0x00000000}},  // [9b40] _তারি, nver, _konc_,\n  { {0x6369006b, 0x75240cc8, 0x2b4702d0, 0x00000000}},  //   _yönə, sdiz, _jonc_,\n  { {0x7c292906, 0x8afc0046, 0xe8220309, 0x00000000}},  //   hver, mięt, मिका_,\n  { {0x7c29006c, 0x60c200c4, 0xf1a903ec, 0x00000000}},  //   kver, ucom, مانه_,\n  { {0x7c292f4a, 0x629c0036, 0x7d090c31, 0x00000000}},  //   jver, _wzro, dfes,\n  { {0x60c2029a, 0x6d590038, 0x8afc0036, 0x00000000}},  //   scom, _alwa, nięt,\n  { {0x7c2907eb, 0x7d090016, 0x629c0091, 0x00000000}},  //   ever, ffes, _uzro,\n  { {0x6da306e3, 0x7c290218, 0x7d092050, 0x00000000}},  //   мија, fver, gfes,\n  { {0x7c290007, 0x8b660025, 0x00000000, 0x00000000}},  //   gver, قادم,   ,\n  { {0x3f760036, 0x6d5930e4, 0xa3dc0164, 0x00000000}},  //   dług_, _elwa, णीय_,\n  { {0x2b47028c, 0x06d90055, 0x44290010, 0x00000000}},  //   _donc_, _তালি, zva_,\n  { {0xa9c30088, 0xb4b9006e, 0x4429007f, 0x00000000}},  //   ьськ, _चले_, yva_,\n  { {0x200600b0, 0x8b660025, 0x7d7b01ce, 0x00000000}},  //   ntoi_, _واتم, _דראג,\n  { {0x2b470087, 0x44290095, 0x81e00044, 0x00000000}},  //   _gonc_, vva_, _দমন_,\n  { {0xb4d60316, 0xf41f00b0, 0x356b06f3, 0x00000000}},  //   हरू_, _ssä_, аран_,\n  { {0xb87b0181, 0x20060065, 0xe534007e, 0x00000000}},  //   raíb, ktoi_, месь,\n  { {0x29190b32, 0x94ab30e5, 0x20060023, 0x00000000}},  // [9b50] mesa_, ртва_, jtoi_,\n  { {0x44291c0b, 0x6f1812d6, 0x291911d2, 0x00000000}},  //   rva_, jevc, lesa_,\n  { {0x661c001c, 0x559501f9, 0xf7700076, 0x00000000}},  //   cwrk, _наоѓ, _جاي_,\n  { {0x7c2905d5, 0xdb1b30e6, 0xa3b60164, 0x00000000}},  //   yver, rqué, _चूक_,\n  { {0x67250004, 0x25a930e7, 0xdb1b009d, 0x00000000}},  //   _kahj, mmal_, squé,\n  { {0x7c2930e8, 0x39920010, 0x291924e2, 0x00000000}},  //   vver, lást_, hesa_,\n  { {0x7c2900bb, 0x2006137a, 0x63bd008a, 0x00000000}},  //   wver, atoi_, _husn,\n  { {0x25a9001f, 0x67250bac, 0x63bd096f, 0x00000000}},  //   nmal_, _lahj, _kusn,\n  { {0x29190129, 0xc1040054, 0x7c2900f4, 0x00000000}},  //   desa_, _توقي, uver,\n  { {0x7d090039, 0x25a9010f, 0x29000197, 0x00000000}},  //   sfes, hmal_, _scia_,\n  { {0x291930e9, 0x39490181, 0x2900004a, 0x00000000}},  //   fesa_, _boas_, _pcia_,\n  { {0x3949049a, 0x7c292008, 0x291930ea, 0x00000000}},  //   _coas_, pver, gesa_,\n  { {0xab290467, 0xdb030142, 0x39920010, 0x00000000}},  //   _гола_, _minú, dást_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7ae100b0, 0x29190bbb, 0x63bd010f, 0x00000000}},  //   malt, besa_, _ausn,\n  { {0xf9920014, 0x7ae11825, 0x63bd018e, 0x00000000}},  //   _ثبت_, lalt, _busn,\n  { {0x29c1001d, 0xf4840014, 0xb4660140, 0x00000000}},  // [9b60] _hóa_, ذاری, чкал,\n  { {0x947901ff, 0x62950c95, 0x00000000, 0x00000000}},  //   істу_, _byzo,   ,\n  { {0x6360000c, 0xb6bb009b, 0x69c40089, 0x00000000}},  //   _löng, _לציי, _čiek,\n  { {0x7ae1001f, 0x63bd0016, 0x80d20044, 0x00000000}},  //   halt, _fusn, _হাঙ্,\n  { {0x7ae130eb, 0x63bd0022, 0xf53f00ea, 0x00000000}},  //   kalt, _gusn, _tiår_,\n  { {0x20060998, 0x7ae100b0, 0x44220145, 0x00000000}},  //   rtoi_, jalt, _isk_,\n  { {0x7ae10dd6, 0x6f180107, 0x2919130b, 0x00000000}},  //   dalt, revc, yesa_,\n  { {0x7ae10991, 0x7cf6005d, 0x6f1830ec, 0x00000000}},  //   ealt, dürü, sevc,\n  { {0x29190059, 0x7aea00f6, 0x06e20044, 0x00000000}},  //   vesa_, _pdft, _বানি,\n  { {0x44220a89, 0x39920010, 0x7ae113ee, 0x00000000}},  //   _msk_, zást_, galt,\n  { {0xc333019b, 0x29190207, 0x44270082, 0x00000000}},  //   גות_, tesa_, ̉n_,\n  { {0x6360000c, 0x7ae101c2, 0x27f90022, 0x00000000}},  //   _hönd, aalt, tusn_,\n  { {0x7ae1022b, 0x6360000c, 0xc7c7053f, 0x00000000}},  //   balt, _göng, ясни,\n  { {0x7ae10035, 0x27ed0091, 0x443f002b, 0x00000000}},  //   calt, šeno_, _ħu_,\n  { {0x39920047, 0x442200ab, 0x63bd023a, 0x00000000}},  //   tást_, _ask_, _susn,\n  { {0x9cfa0044, 0x6360000c, 0x63bd1d1e, 0x00000000}},  //   _আসুন_, _lönd, _pusn,\n  { {0x68ed30ed, 0x3f8e0020, 0x1868003b, 0x00000000}},  // [9b70] _idad, kofu_, _наћи_,\n  { {0x27e90142, 0x25a9010f, 0x4422013f, 0x00000000}},  //   _ivan_, smal_, _dsk_,\n  { {0x29c10011, 0x442210d2, 0x63b501ee, 0x00000000}},  //   _xóa_, _esk_, _vizn,\n  { {0x7c22002d, 0x7ae1014a, 0x61e530ee, 0x00000000}},  //   _osor, zalt, rshl,\n  { {0xe134008b, 0x442204d2, 0x6360074d, 0x00000000}},  //   энцы, _gsk_, _bönd,\n  { {0x7d0212b2, 0x3f8e00e7, 0x00000000, 0x00000000}},  //   _acos, gofu_,   ,\n  { {0x7ae100b0, 0x636030ef, 0x68ed0095, 0x00000000}},  //   valt, _söng, _odad,\n  { {0xe7ee03d7, 0x301503f3, 0x27e90039, 0x00000000}},  //   _जिला_, _одбр, _ovan_,\n  { {0x7ae1001f, 0x60c9004a, 0x00000000, 0x00000000}},  //   talt, _ifem,   ,\n  { {0x636001f6, 0x7d0201a3, 0x7cf60180, 0x00000000}},  //   _gönd, _ecos, türü,\n  { {0x27e90263, 0x7c220207, 0x09bd0044, 0x00000000}},  //   _avan_, _esor, _আবহা,\n  { {0x7ae104bd, 0x7d020051, 0x7cf60276, 0x00000000}},  //   salt, _gcos, rürü,\n  { {0xb8d60061, 0x7ae10207, 0x68ed0016, 0x00000000}},  //   _जण_, palt, _ddad,\n  { {0x6d4b0211, 0x7d1b03a4, 0x68ed04de, 0x00000000}},  //   _hoga, leus, _edad,\n  { {0xab2801f7, 0x6d4b00ca, 0xdb1b30f0, 0x00000000}},  //   _رسول_, _koga, nquí,\n  { {0x6d4b02d5, 0xe5a301be, 0x7d1b1684, 0x00000000}},  //   _joga, виси, neus,\n  { {0x9f5f095e, 0x6d4b0119, 0x63600039, 0x00000000}},  // [9b80] _aquí_, _moga, _löne,\n  { {0x44222313, 0x60c9004a, 0x656f0087, 0x00000000}},  //   _vsk_, _afem, _emch,\n  { {0xc7b3012f, 0xc87f010f, 0x6d4b0cb9, 0x00000000}},  //   _שבת_, raße_, _ooga,\n  { {0x6d4b0501, 0x63600039, 0x4422066b, 0x00000000}},  //   _noga, _sönd, _tsk_,\n  { {0xd0100151, 0x3f8e2c06, 0x801a1880, 0x00000000}},  //   الت_, tofu_, تزاز_,\n  { {0x4420000b, 0x7d0207ae, 0x9cfa0044, 0x00000000}},  //   mwi_, _scos, _আসেন_,\n  { {0x656f018e, 0x44200016, 0x2cb3006b, 0x00000000}},  //   _ymch, lwi_, əbdə_,\n  { {0x6360011f, 0x6d4b0051, 0x7d1b164e, 0x00000000}},  //   _döne, _coga, geus,\n  { {0x6d4b0213, 0x44200016, 0x3f8e00e7, 0x00000000}},  //   _doga, nwi_, pofu_,\n  { {0x2912000a, 0x6b4d0048, 0x7e56173a, 0x00000000}},  //   _abya_, _súgr, _отец,\n  { {0x6d4b30f1, 0xad620011, 0x7d270039, 0x00000000}},  //   _foga, _đươn, örsä,\n  { {0x6d4b1141, 0x7d1b009d, 0x442000e7, 0x00000000}},  //   _goga, ceus, kwi_,\n  { {0xf7730426, 0xab2a005e, 0x442030f2, 0x00000000}},  //   ناس_, _мода_, jwi_,\n  { {0x6360011f, 0x442030f3, 0xc0530049, 0x00000000}},  //   _yöne, dwi_, דזש_,\n  { {0x6d4b00f8, 0x2bdf0061, 0xb87b0285, 0x00000000}},  //   _yoga, पीठा, caín,\n  { {0x68ed2062, 0x06e20044, 0x7c2d0738, 0x00000000}},  //   _udad, _বাণি, _šari,\n  { {0xb87b002a, 0xf9940104, 0x2d5800f4, 0x00000000}},  // [9b90] maío, _ברק_, _réel_,\n  { {0xb87b002a, 0x25090167, 0x39990010, 0x00000000}},  //   laío, _کردی_, dési_,\n  { {0x2fcd192d, 0x7d1b009d, 0x50f50ab6, 0x00000000}},  //   _steg_, yeus, езет,\n  { {0xb87b002a, 0x02a402e9, 0x00000000, 0x00000000}},  //   naío, трум,   ,\n  { {0x6d4b1bc1, 0x06e20044, 0x7d1b009d, 0x00000000}},  //   _roga, _বাতি, veus,\n  { {0x6d4b010f, 0xb87b0051, 0xeaa600a1, 0x00000000}},  //   _soga, haío, _مٹ_,\n  { {0x7d1b30f4, 0x3eb300f8, 0xed5901ab, 0x00000000}},  //   teus, äxt_, зой_,\n  { {0xdb1b0841, 0x0c251281, 0x80d90044, 0x00000000}},  //   rquí, емин, _ডাক্,\n  { {0x6d4b049a, 0x7d1b00f4, 0xb87b0051, 0x00000000}},  //   _voga, reus, daío,\n  { {0x4a45017a, 0x6d4b000a, 0x7d1b0068, 0x00000000}},  //   енов, _woga, seus,\n  { {0x6d4b01e5, 0x44200036, 0xa3e6013d, 0x00000000}},  //   _toga, zwi_, _यौन_,\n  { {0x2904010e, 0xb87b0048, 0x442007c0, 0x00000000}},  //   üma_, gaío, ywi_,\n  { {0xf1b90209, 0x2bb80204, 0x31560049, 0x00000000}},  //   _miš_, _उंचा, גירן_,\n  { {0x636001a2, 0xa9240006, 0x00000000, 0x00000000}},  //   _mönc, _ąžuo,   ,\n  { {0x6996013b, 0xba520025, 0x39990010, 0x00000000}},  //   _прих, _منوع, zési_,\n  { {0xb87b002a, 0x442001aa, 0x25b90197, 0x00000000}},  //   caío, twi_, _cisl_,\n  { {0x25b90022, 0x44200058, 0x00000000, 0x00000000}},  // [9ba0] _disl_, uwi_,   ,\n  { {0x78a40107, 0x442007c0, 0x1423007e, 0x00000000}},  //   _iziv, rwi_, ыдум,\n  { {0xa2a50365, 0x26d802d5, 0x44200697, 0x00000000}},  //   _करण्, mbro_, swi_,\n  { {0x290210b6, 0x39990047, 0x4420065e, 0x00000000}},  //   ngka_, tési_, pwi_,\n  { {0x26d8016c, 0xc0e70025, 0x00000000, 0x00000000}},  //   obro_, رفون_,   ,\n  { {0x80d0007d, 0x00000000, 0x00000000, 0x00000000}},  //   _ड्रे,   ,   ,\n  { {0x6383005e, 0xdb030051, 0x39990010, 0x00000000}},  //   _сгра, _ghné, sési_,\n  { {0x78a4041a, 0xd00a0888, 0x7dc7006b, 0x00000000}},  //   _oziv, _небе_, _qısa,\n  { {0x9f8601e1, 0xfbcf00a6, 0xfd660082, 0x00000000}},  //   _згад, یتی_, _khuế,\n  { {0x5a3401f9, 0x00000000, 0x00000000, 0x00000000}},  //   внот,   ,   ,\n  { {0xb87b002a, 0x61fe1de7, 0xa49b00f6, 0x00000000}},  //   taío, nupl, _acòl,\n  { {0x645a013f, 0x00000000, 0x00000000, 0x00000000}},  //   _ətir,   ,   ,\n  { {0x6b9a001c, 0xdd8f023c, 0xb87b002a, 0x00000000}},  //   pltg, _اون_, raío,\n  { {0x61fe30f5, 0xb87b002a, 0x78a41b05, 0x00000000}},  //   kupl, saío, _dziv,\n  { {0xdb0300b9, 0xb9070044, 0x61fe0089, 0x00000000}},  //   _jiný, _পা_, jupl,\n  { {0xba9b00b6, 0x6564006a, 0x1a9b009b, 0x00000000}},  //   _מסוי, ghih, _מיוע,\n  { {0x24f8007e, 0x26d80197, 0x61fe01c3, 0x00000000}},  // [9bb0] энты_, bbro_, eupl,\n  { {0xd6db0057, 0x4735142c, 0xb87b00fa, 0x00000000}},  //   _эти_, _рнос, naím,\n  { {0xa4d9041f, 0x81c90044, 0x78a4012d, 0x00000000}},  //   _одну_, লীন_, _zziv,\n  { {0x60b5039d, 0x00000000, 0x00000000, 0x00000000}},  //   نمائ,   ,   ,\n  { {0xdb1800c4, 0x753d30f6, 0x00000000, 0x00000000}},  //   _vivê, _insz,   ,\n  { {0x21290e0d, 0x8f6a00a1, 0x00000000, 0x00000000}},  //   žah_, ولنے_,   ,\n  { {0x61fe0035, 0x00000000, 0x00000000, 0x00000000}},  //   cupl,   ,   ,\n  { {0x6a4a006b, 0x69c70428, 0x00000000, 0x00000000}},  //   rəfl, íjem,   ,\n  { {0x752d0032, 0xdb180173, 0x00000000, 0x00000000}},  //   idaz, _kivè,   ,\n  { {0x799d010f, 0x999f007f, 0x79962c42, 0x00000000}},  //   elsw, kytų_, _skyw,\n  { {0x68e60760, 0xc3320104, 0x78a40010, 0x00000000}},  //   takd, בוי_, _sziv,\n  { {0x999f0006, 0x4ad1007d, 0x00000000, 0x00000000}},  //   dytų_, _द्रव,   ,\n  { {0xf1b2061e, 0x8b2500a5, 0x636000f8, 0x00000000}},  //   יסט_, _адле, _löna,\n  { {0x06e20044, 0x29050010, 0x6d5b0f45, 0x00000000}},  //   _বাহি, őlap_, lkua,\n  { {0x26d80193, 0x7ae30c4b, 0x6606005e, 0x00000000}},  //   rbro_, _ient, ъпва,\n  { {0x7ae30292, 0x26d80058, 0x6d4900e5, 0x00000000}},  //   _hent, sbro_, njea,\n  { {0xc95300b6, 0x78a4041a, 0x69c3001a, 0x00000000}},  // [9bc0] _כמה_, _uziv, _hune,\n  { {0x68e400b0, 0xd7fb01f8, 0x61fe0209, 0x00000000}},  //   _heid, _קהיל, tupl,\n  { {0xdb1801aa, 0x2cb1013e, 0x68e40943, 0x00000000}},  //   _divè, ězdy_, _keid,\n  { {0x7ae3042c, 0x61fe0066, 0xb295003b, 0x00000000}},  //   _lent, rupl, ујућ,\n  { {0x69c30e1d, 0xdb0b30f7, 0x68e400b0, 0x00000000}},  //   _lune, _bugü, _meid,\n  { {0x7ae30715, 0x27e001aa, 0x39990010, 0x00000000}},  //   _nent, _mwin_, lést_,\n  { {0x91e30230, 0x69c3061c, 0x4432013e, 0x00000000}},  //   _восе, _nune, lvy_,\n  { {0x68e40016, 0x27ed1adc, 0xdce9014a, 0x00000000}},  //   _neid, šeni_, rneğ,\n  { {0x7ae30149, 0xe7bd0044, 0xc00602dc, 0x00000000}},  //   _bent, _অব্য, _шпак,\n  { {0x7ae30d46, 0x69c327a9, 0xdb180010, 0x00000000}},  //   _cent, _bune, _kivé,\n  { {0x68e40a48, 0x63bc11cc, 0x69c30207, 0x00000000}},  //   _beid, _mirn, _cune,\n  { {0x629c30f8, 0x7ae30250, 0x68e40016, 0x00000000}},  //   _myro, _eent, _ceid,\n  { {0x7ae3119e, 0x60cd008e, 0x39990010, 0x00000000}},  //   _fent, ñami, dést_,\n  { {0x63bc11cb, 0x629c00e0, 0x999f0006, 0x00000000}},  //   _nirn, _oyro, tytų_,\n  { {0x68e4002a, 0x69c3022b, 0x31660047, 0x00000000}},  //   _feid, _gune, khoz_,\n  { {0x7ae308a0, 0x8ab7009b, 0xd944012b, 0x00000000}},  //   _zent, _בלוג_, _већи,\n  { {0x63bc2967, 0xe454007e, 0x69c3010f, 0x00000000}},  // [9bd0] _birn, акты, _zune,\n  { {0x7ae3027b, 0x629c094f, 0x7ae81222, 0x00000000}},  //   _xent, _byro, nadt,\n  { {0x6d5b0023, 0x63bc04eb, 0xdb1800d4, 0x00000000}},  //   ykua, _dirn, _vivè,\n  { {0xf99f0173, 0x61ee00f6, 0xe4a7004d, 0x00000000}},  //   nlè_, _dvbl, _арго,\n  { {0xb4fa0452, 0xe0d80088, 0x629c009d, 0x00000000}},  //   _אפרי, тві_, _eyro,\n  { {0x6360000c, 0x63bc30f9, 0xdb0300f6, 0x00000000}},  //   _hönn, _girn, _linò,\n  { {0x636030fa, 0x6f080061, 0x60c40006, 0x00000000}},  //   _könn, _dcdc, žima,\n  { {0x69c30056, 0x63600010, 0x63bc30fb, 0x00000000}},  //   _rune, _jönn, _zirn,\n  { {0x7ae31305, 0x6d5b30fc, 0x69c324b7, 0x00000000}},  //   _pent, rkua, _sune,\n  { {0xe9d901fb, 0x69c330fd, 0x6d5b0ab3, 0x00000000}},  //   нко_, _pune, skua,\n  { {0x7ae31ff4, 0xc332007b, 0x68e430fe, 0x00000000}},  //   _vent, זוי_, _peid,\n  { {0xf99f01aa, 0x290906c2, 0x7ae30036, 0x00000000}},  //   glè_, _ccaa_, _went,\n  { {0x68e430ff, 0x39990f49, 0xe9e90142, 0x00000000}},  //   _veid, vést_, dnúť_,\n  { {0xa875007c, 0x68e401a2, 0x2d9f3100, 0x00000000}},  //   рующ, _weid, llue_,\n  { {0x68e40ba2, 0x39990010, 0x2bdf013d, 0x00000000}},  //   _teid, tést_, पीरा,\n  { {0x63bc0066, 0x09060077, 0x27e03101, 0x00000000}},  //   _sirn, _спин, _twin_,\n  { {0xd4670589, 0x39402bab, 0x15b9007e, 0x00000000}},  // [9be0] гите_, _inis_, тыры_,\n  { {0x443201ca, 0x629c0471, 0x8726007c, 0x00000000}},  //   rvy_, _pyro, _смож,\n  { {0x31660010, 0x00000000, 0x00000000, 0x00000000}},  //   thoz_,   ,   ,\n  { {0x629c01ca, 0x636001a2, 0x98a50036, 0x00000000}},  //   _vyro, _gönn, ślą_,\n  { {0x63bc2db6, 0x629c0036, 0xdfcf0025, 0x00000000}},  //   _tirn, _wyro, كين_,\n  { {0x31660047, 0x8f341662, 0x61ee001b, 0x00000000}},  //   shoz_, рекц, _tvbl,\n  { {0x2ee501d6, 0x2d9f03e2, 0x3940014f, 0x00000000}},  //   _delf_, flue_, _onis_,\n  { {0x5d54026b, 0xf1aa0014, 0x21763102, 0x00000000}},  //   ркит, _سازه_, _сугр,\n  { {0x21670441, 0x7ae801a2, 0x7153023c, 0x00000000}},  //   _сити_, tadt, _انقض,\n  { {0x96d40164, 0x2d9f1570, 0x9b5801f9, 0x00000000}},  //   _ब्लॉ, alue_, тиот_,\n  { {0x2d9f0061, 0xdb030051, 0x7ae810fa, 0x00000000}},  //   blue_, _ghní, radt,\n  { {0x2ee502ae, 0x02b70049, 0x2d9f009d, 0x00000000}},  //   _zelf_, טליך_, clue_,\n  { {0x8d930054, 0xec3400a6, 0x9c570014, 0x00000000}},  //   _النش, _خوشگ, _مجوز_,\n  { {0x6360000c, 0x394006e6, 0x00000000, 0x00000000}},  //   _sönn, _enis_,   ,\n  { {0x58d50265, 0x8b9b08cd, 0x39400146, 0x00000000}},  //   _койт, _רבות, _fnis_,\n  { {0x58390ae0, 0xb4d50242, 0x23630022, 0x00000000}},  //   _азия_, ржащ, _sljj_,\n  { {0x80cd0044, 0xa9bc009b, 0xe8d8009b, 0x00000000}},  // [9bf0] ারম্, _אזהר, _עוזר_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x77ba009b, 0x93880140, 0x82a701ab, 0x00000000}},  //   _שמתח, уста_, ушае,\n  { {0x2ee53103, 0x27ed04eb, 0x90e701fa, 0x00000000}},  //   _self_, šenu_, اسان,\n  { {0x50451b15, 0x6360013f, 0x00000000, 0x00000000}},  //   релб, _könl,   ,\n  { {0x80d5013d, 0x442b00b4, 0x44392a24, 0x00000000}},  //   _ड्रइ, _isc_, _irs_,\n  { {0xf1a7025f, 0x44390211, 0x752f0036, 0x00000000}},  //   _бран, _hrs_, _kacz,\n  { {0x52840025, 0x44390036, 0x442b3104, 0x00000000}},  //   _الفك, _krs_, _ksc_,\n  { {0x506708fd, 0x2ee5002b, 0xab6502b0, 0x00000000}},  //   _ства, _telf_, ивил,\n  { {0xce6b0517, 0x442b04cb, 0xb87b00c4, 0x00000000}},  //   _пред_, _msc_, ibíd,\n  { {0x442b06ed, 0x44390ed0, 0xd94600e2, 0x00000000}},  //   _lsc_, _lrs_, аени,\n  { {0xc7a90097, 0x44390145, 0x752f0036, 0x00000000}},  //   _חב_, _ors_, _nacz,\n  { {0x7db40070, 0x44390ffb, 0x8d5a0097, 0x00000000}},  //   _اصلا, _nrs_, _שכני,\n  { {0x7c2b04a5, 0x00000000, 0x00000000, 0x00000000}},  //   _isgr,   ,   ,\n  { {0x44392509, 0x442b006b, 0x395200ab, 0x00000000}},  //   _ars_, _asc_, _toys_,\n  { {0x394000f4, 0xbdfa0044, 0x00000000, 0x00000000}},  //   _unis_, _আহমদ_,   ,\n\n  { {0x442b0161, 0x25b201c3, 0x00000000, 0x00000000}},  // [9c00] _csc_, rmyl_,   ,\n  { {0x4439023a, 0x25a00059, 0x6360014a, 0x00000000}},  //   _drs_, slil_, _gönl,\n  { {0x4439018e, 0xe5a601fb, 0x35a602dc, 0x00000000}},  //   _ers_, _вини, _ванг,\n  { {0x442b0145, 0x00000000, 0x00000000, 0x00000000}},  //   _fsc_,   ,   ,\n  { {0x33d50ee0, 0x6a4a005f, 0x636001df, 0x00000000}},  //   _гіст, rəfi, _yönl,\n  { {0x752f0046, 0x75243105, 0x65660022, 0x00000000}},  //   _zacz, leiz, _hlkh,\n  { {0x69c10164, 0x224703a9, 0x69ca0204, 0x00000000}},  //   _रंगी, änkt_, _संधी,\n  { {0x23720036, 0x4439066d, 0x00000000, 0x00000000}},  //   żają_, _yrs_,   ,\n  { {0x442b0009, 0x8c430184, 0x9959013e, 0x00000000}},  //   _xsc_, жење, též_,\n  { {0x69ca0164, 0x7524010f, 0x65680023, 0x00000000}},  //   _संदी, heiz, ëdhj,\n  { {0x7c2b0efe, 0x19590783, 0xeb9700e2, 0x00000000}},  //   _esgr, ганы_, риќ_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xb8cf03d7, 0x68f6018e, 0x752f0036, 0x00000000}},  //   _कर_, _ddyd, _racz,\n  { {0x0b9305f3, 0x44391275, 0x661e0022, 0x00000000}},  //   _وجود, _rrs_, _bppk,\n  { {0x442b0082, 0x752f0036, 0x99420036, 0x00000000}},  //   _ssc_, _pacz, _dół_,\n  { {0x81c408b7, 0x442b0129, 0x7c2b018e, 0x00000000}},  //   _এবং_, _psc_, _ysgr,\n  { {0x61fe0112, 0x69da0e5e, 0x291b0066, 0x00000000}},  // [9c10] erpl, lpte, _ibqa_,\n  { {0x34a703d7, 0xdb0a0051, 0x442b007f, 0x00000000}},  //   _खरीद, _bhfé, _vsc_,\n  { {0x6d42001a, 0x00000000, 0x00000000, 0x00000000}},  //   _onoa,   ,   ,\n  { {0xdd860063, 0x442b0061, 0x4439008a, 0x00000000}},  //   _رو_, _tsc_, _trs_,\n  { {0x442b027b, 0x44390de1, 0xf7700014, 0x00000000}},  //   _usc_, _urs_, _رای_,\n  { {0x44291e5d, 0xf8bf0010, 0xf1c90025, 0x00000000}},  //   mwa_, ldés_, _موسى_,\n  { {0x44290263, 0x628e21b3, 0x61fe0166, 0x00000000}},  //   lwa_, _gxbo, crpl,\n  { {0xf8bf3106, 0x98a50036, 0x44290036, 0x00000000}},  //   ndés_, ślę_, owa_,\n  { {0x44290263, 0xdd2f00b9, 0xeb9910f2, 0x00000000}},  //   nwa_, _těžk, лии_,\n  { {0x44290020, 0x201f0288, 0x00000000, 0x00000000}},  //   iwa_, _ipui_,   ,\n  { {0x44290390, 0x81c90044, 0xdb030048, 0x00000000}},  //   hwa_, লীর_, _chná,\n  { {0x44290518, 0xce6800d7, 0x00000000, 0x00000000}},  //   kwa_, _труд_,   ,\n  { {0xa2e80055, 0x7d093107, 0x44290244, 0x00000000}},  //   _পাসও, mges, jwa_,\n  { {0x7d093108, 0x7c29063c, 0x59cf02fb, 0x00000000}},  //   lges, mwer, _संपर,\n  { {0x7c290168, 0xdb030051, 0x75240c33, 0x00000000}},  //   lwer, _ghná, teiz,\n  { {0x442901aa, 0x16a8007d, 0x00000000, 0x00000000}},  //   fwa_, _गरीब,   ,\n  { {0x7c2907eb, 0x75240f21, 0x44290020, 0x00000000}},  // [9c20] nwer, reiz, gwa_,\n  { {0x06e20055, 0x61fe0bf8, 0x7d0901a2, 0x00000000}},  //   _বাকি, trpl, hges,\n  { {0x7c29001f, 0xe1fa0931, 0xb9c10279, 0x00000000}},  //   hwer, уге_, _üçün,\n  { {0x44291e5d, 0x7c290112, 0x7d0900bb, 0x00000000}},  //   bwa_, kwer, jges,\n  { {0x7bcf3109, 0x63600039, 0x442922b1, 0x00000000}},  //   ícul, _jönk, cwa_,\n  { {0x69da0056, 0x7c29310a, 0x7d0901d6, 0x00000000}},  //   ypte, dwer, eges,\n  { {0xdef9008b, 0x7c2900bb, 0x7d09010f, 0x00000000}},  //   рыі_, ewer, fges,\n  { {0x7c29063c, 0x7d090038, 0xdd90004b, 0x00000000}},  //   fwer, gges, بوب_,\n  { {0x80660242, 0x7c291225, 0xb87b0051, 0x00000000}},  //   _уваж, gwer, naít,\n  { {0x261903d7, 0x6e3c0e7c, 0xf8bf0010, 0x00000000}},  //   _पहली_, _árbo, zdés_,\n  { {0x4429310b, 0x6e960025, 0xdb01009d, 0x00000000}},  //   zwa_, _الضا, illè,\n  { {0xd90f06c6, 0x7c290343, 0x44290036, 0x00000000}},  //   ریخ_, bwer, ywa_,\n  { {0x34a70061, 0x7c2900d9, 0x00000000, 0x00000000}},  //   _खरेद, cwer,   ,\n  { {0x44290263, 0x69da0056, 0xd7f8007c, 0x00000000}},  //   vwa_, ppte, щую_,\n  { {0x442901d5, 0x7aea001a, 0x4b7b08cd, 0x00000000}},  //   wwa_, _ieft, _תאוו,\n  { {0x44290c28, 0x7aea0304, 0x46d9007d, 0x00000000}},  //   twa_, _heft, _ब्रह,\n  { {0xf8bf0047, 0x69ca1e28, 0x3f870016, 0x00000000}},  // [9c30] rdés_, _hufe, ynnu_,\n  { {0x4429310c, 0x7aea0091, 0xe2f90088, 0x00000000}},  //   rwa_, _jeft, режі_,\n  { {0x44290390, 0x7d090007, 0x201f001a, 0x00000000}},  //   swa_, yges, _spui_,\n  { {0x4429310d, 0x3f9e0089, 0xe70500a6, 0x00000000}},  //   pwa_, _aktu_, _اسکی,\n  { {0x7c2900d9, 0x00000000, 0x00000000, 0x00000000}},  //   xwer,   ,   ,\n  { {0x7aea005f, 0x555200a1, 0x00000000, 0x00000000}},  //   _neft, _ٹھہر,   ,\n  { {0x7d090506, 0xc33200a0, 0x7c290112, 0x00000000}},  //   tges, _קול_, wwer,\n  { {0x7c2902ae, 0xed5909de, 0x78ad00ca, 0x00000000}},  //   twer, рои_, _ozav,\n  { {0x7d09001f, 0x69d8030b, 0x69ca2aca, 0x00000000}},  //   rges, _atve, _aufe,\n  { {0x7c2902ae, 0x7d09258a, 0x7aea01ee, 0x00000000}},  //   rwer, sges, _ceft,\n  { {0xdce2037e, 0x7c2900ab, 0x7aea014a, 0x00000000}},  //   _zloč, swer, _deft,\n  { {0x7bdb00b0, 0xdb01009d, 0xac19310e, 0x00000000}},  //   ppuu, illé, _воду_,\n  { {0x6b9a049a, 0x798d0022, 0xb87b0325, 0x00000000}},  //   botg, _djaw, daís,\n  { {0xe73a012b, 0xdb0a00f6, 0x78ad012d, 0x00000000}},  //   шег_, _difó, _dzav,\n  { {0x7bcb114f, 0x7bc30058, 0x857a00e2, 0x00000000}},  //   _hugu, _iinu, асат_,\n  { {0x656d006a, 0x7bc3310f, 0x7bcb14a5, 0x00000000}},  //   ghah, _hinu, _kugu,\n  { {0x64a322bb, 0x7bcb3110, 0x7bc3011c, 0x00000000}},  // [9c40] дата, _jugu, _kinu,\n  { {0x7bcb0089, 0xdb180047, 0x6360010f, 0x00000000}},  //   _mugu, _kivá, _köni,\n  { {0x7bcb006c, 0xb87b0048, 0x24960006, 0x00000000}},  //   _lugu, saít, _žemę_,\n  { {0xdce2016e, 0x5a0c0049, 0x02aa013d, 0x00000000}},  //   _ploč, רלאַ, _करीन,\n  { {0x2eee002b, 0x644b006c, 0x00000000, 0x00000000}},  //   taff_, ägit,   ,\n  { {0x44220093, 0x7bc300e0, 0x00000000, 0x00000000}},  //   _ipk_, _ninu,   ,\n  { {0x2eee3111, 0xdbd10181, 0x442201b1, 0x00000000}},  //   raff_, qüên, _hpk_,\n  { {0x7bc30004, 0x4422023a, 0x69ca2a9d, 0x00000000}},  //   _ainu, _kpk_, _rufe,\n  { {0xa2be0183, 0x7bc3011c, 0x69ca001a, 0x00000000}},  //   _वृत्, _binu, _sufe,\n  { {0x7bcb022b, 0xb4db0129, 0x442222df, 0x00000000}},  //   _dugu, _anàl, _mpk_,\n  { {0x78ad0047, 0x7bc30058, 0x7aea000c, 0x00000000}},  //   _szav, _dinu, _veft,\n  { {0x7bc3009f, 0xdb0300c4, 0xdb180161, 0x00000000}},  //   _einu, _sinô, _divá,\n  { {0x7bcb033b, 0x644010ec, 0x7bc3113d, 0x00000000}},  //   _gugu, _šmin, _finu,\n  { {0x3f9c037e, 0x7bc3011c, 0x7c220ab2, 0x00000000}},  //   novu_, _ginu, _ipor,\n  { {0x69d83112, 0x95cb2015, 0x442200bb, 0x00000000}},  //   _utve, руга_, _apk_,\n  { {0x44223113, 0x3f9c0091, 0x7bc3007f, 0x00000000}},  //   _bpk_, hovu_, _zinu,\n  { {0x78ad01ca, 0xb87b0489, 0x3f9c0523, 0x00000000}},  // [9c50] _uzav, raís, kovu_,\n  { {0x656d000b, 0x68ed167c, 0x7c2202c0, 0x00000000}},  //   shah, _head, _mpor,\n  { {0x68ed027e, 0xa2be006e, 0x3f9c0253, 0x00000000}},  //   _kead, _वृद्, dovu_,\n  { {0x27e90727, 0x442201c3, 0x41740014, 0x00000000}},  //   _kwan_, _fpk_, وانس,\n  { {0xd6bd0055, 0xb97c0049, 0x44220145, 0x00000000}},  //   _অভিয, סנדי, _gpk_,\n  { {0xdfce0b59, 0x68ed0038, 0x3f9c0091, 0x00000000}},  //   ديو_, _lead, govu_,\n  { {0x7c220779, 0x7bc30207, 0x7bcb006c, 0x00000000}},  //   _apor, _rinu, _sugu,\n  { {0x7bcb0129, 0x7bc33114, 0x44223115, 0x00000000}},  //   _pugu, _sinu, _ypk_,\n  { {0x7bc3006a, 0x3f9c016e, 0x9c22007c, 0x00000000}},  //   _pinu, bovu_, едыд,\n  { {0x59cf0309, 0x3b09003b, 0x7c220087, 0x00000000}},  //   _संदर, љено_, _dpor,\n  { {0x68ed1775, 0x7bc33116, 0x27e9003f, 0x00000000}},  //   _bead, _vinu, _awan_,\n  { {0xbea8007a, 0x68ed002a, 0x27e900e0, 0x00000000}},  //   _بهمن_, _cead, _bwan_,\n  { {0x7bc33117, 0x8d74007a, 0x69c4006c, 0x00000000}},  //   _tinu, _تالا, _viie,\n  { {0x81e10055, 0x7d1b0009, 0x27e91560, 0x00000000}},  //   _দিন_, lfus, _dwan_,\n  { {0x68ed002a, 0x27e9011c, 0x6d590036, 0x00000000}},  //   _fead, _ewan_, _kowa,\n  { {0x3f9c0107, 0x60c90093, 0x68ed00d9, 0x00000000}},  //   zovu_, _ngem, _gead,\n  { {0x29120009, 0x27e93118, 0x3f9c0ea6, 0x00000000}},  // [9c60] _icya_, _gwan_, yovu_,\n  { {0x083b00b6, 0x6d590020, 0x44221e89, 0x00000000}},  //   _פעיל, _lowa, _vpk_,\n  { {0xb6a300f4, 0xa75b009b, 0xdcfb012d, 0x00000000}},  //   éâtr, _הדיר, cnuć,\n  { {0x69ce027b, 0x4fc60818, 0x6d590036, 0x00000000}},  //   íbei, пска, _nowa,\n  { {0x3f9c0107, 0x8fa61663, 0xdbd10129, 0x00000000}},  //   tovu_, паде, qüèn,\n  { {0x60c9014a, 0x00000000, 0x00000000, 0x00000000}},  //   _egem,   ,   ,\n  { {0x7c2217fd, 0x7d1b3119, 0x2cc1005f, 0x00000000}},  //   _spor, ffus, ərdə_,\n  { {0x3f9c037e, 0x6b81002a, 0x7d780025, 0x00000000}},  //   sovu_, eilg, تمبر_,\n  { {0x68ed0038, 0x205500ed, 0x6d590e15, 0x00000000}},  //   _read, _отфр, _dowa,\n  { {0x68ed0004, 0x27e90246, 0x3ea500ea, 0x00000000}},  //   _sead, _rwan_, _fylt_,\n  { {0x68ed1e85, 0x6d590145, 0x799d311a, 0x00000000}},  //   _pead, _fowa, tosw,\n  { {0x27e901aa, 0x4d7609b9, 0x00000000, 0x00000000}},  //   _pwan_, _عطار,   ,\n  { {0x7c2217fd, 0x6b81002d, 0x799d004a, 0x00000000}},  //   _upor, bilg, rosw,\n  { {0xc7c4007c, 0x6d5900bb, 0x68e0019a, 0x00000000}},  //   есси, _zowa, ımda,\n  { {0x68ed0004, 0x356b003b, 0x3a3a0010, 0x00000000}},  //   _tead, бран_, _épp_,\n  { {0xc87f01a2, 0x27e900d9, 0x00000000, 0x00000000}},  //   faßt_, _twan_,   ,\n  { {0xdcfb0243, 0x394904e7, 0x00000000, 0x00000000}},  // [9c70] snuć, _inas_,   ,\n  { {0x81e10044, 0x443b0045, 0x3dc60085, 0x00000000}},  //   _দিব_, rvq_, _liow_,\n  { {0x35b50069, 0xa283009e, 0x00000000, 0x00000000}},  //   _обор, ریرو,   ,\n  { {0x657d01c3, 0x00000000, 0x00000000, 0x00000000}},  //   _umsh,   ,   ,\n  { {0x261700fa, 0x00000000, 0x00000000, 0x00000000}},  //   lço_,   ,   ,\n  { {0x9618026c, 0x25a91957, 0xbea500ed, 0x00000000}},  //   _بغیر_, llal_, малк,\n  { {0x2617311b, 0x6d590036, 0x6b81043e, 0x00000000}},  //   nço_, _powa, vilg,\n  { {0x5f77026c, 0x61fa009f, 0x1c4504b5, 0x00000000}},  //   _کارر, _ætla, дним,\n  { {0xd6c50055, 0x6b810056, 0x7d1b0133, 0x00000000}},  //   ্রিয, tilg, rfus,\n  { {0x394904be, 0x7c3b08e0, 0x7d1b311c, 0x00000000}},  //   _anas_, rvur, sfus,\n  { {0x6d59168b, 0x6e67007c, 0x25a90095, 0x00000000}},  //   _towa, _этаж, klal_,\n  { {0x37e20044, 0x394900e5, 0x6b810032, 0x00000000}},  //   _বিবর, _cnas_, silg,\n  { {0x02aa0309, 0x2ca60058, 0x6b81010e, 0x00000000}},  //   _कर्न, _gyod_, pilg,\n  { {0xae21006e, 0x3ea00035, 0x00000000, 0x00000000}},  //   _महान_, şite_,   ,\n  { {0x63720030, 0x46a31cf4, 0x2d8d00e7, 0x00000000}},  //   _hæng, варв, onee_,\n  { {0xdb18021e, 0x6995008b, 0x2d8d00b5, 0x00000000}},  //   _eivä, _прых, nnee_,\n  { {0xd6cf00a1, 0x2d8d00c4, 0xfc4a000c, 0x00000000}},  // [9c80] اقہ_, inee_, mtíð_,\n  { {0x3949037e, 0x63720030, 0x2d9f0dce, 0x00000000}},  //   _znas_, _mæng, houe_,\n  { {0x63720018, 0xc8e20061, 0x00000000, 0x00000000}},  //   _læng, पडपट,   ,\n  { {0x26d80197, 0x6e3c0285, 0x290f00f8, 0x00000000}},  //   lcro_, _árbi, _ögat_,\n  { {0xdfcf0464, 0x92c00044, 0x25a00026, 0x00000000}},  //   لين_, ীরে_, moil_,\n  { {0x26d80197, 0x6d5d0039, 0x00000000, 0x00000000}},  //   ncro_, ösan,   ,\n  { {0x63600047, 0x216a0478, 0x03a31c4a, 0x00000000}},  //   _dönt, _диви_, _риро,\n  { {0x6026012b, 0x25a000e5, 0x316d004a, 0x00000000}},  //   _одба, noil_, _glez_,\n  { {0x657a009d, 0x00000000, 0x00000000, 0x00000000}},  //   éthy,   ,   ,\n  { {0x6eb60d75, 0xdb0a0051, 0x394920c4, 0x00000000}},  //   _قصائ, _bhfá, _snas_,\n  { {0xc333019b, 0x2d8d0126, 0x2d9f0007, 0x00000000}},  //   דות_, bnee_, boue_,\n  { {0x63720737, 0x63600039, 0x00000000, 0x00000000}},  //   _hænd, _köns,   ,\n  { {0x636026a3, 0x2905005a, 0x63720190, 0x00000000}},  //   _yönt, ğla_, _gæng,\n  { {0x2d841109, 0x63600039, 0x2905005d, 0x00000000}},  //   lime_, _möns, şla_,\n  { {0x25a00085, 0x636000f8, 0x63720190, 0x00000000}},  //   foil_, _löns, _mænd,\n  { {0x261702d5, 0x2d840993, 0x39490211, 0x00000000}},  //   rço_, nime_, _unas_,\n  { {0x36d50057, 0x5ec70044, 0x93b5003b, 0x00000000}},  // [9c90] _попр, রুপে, ебац,\n  { {0x25a90165, 0x2d840023, 0x316d145e, 0x00000000}},  //   slal_, hime_, _slez_,\n  { {0x2d842e92, 0x00000000, 0x00000000, 0x00000000}},  //   kime_,   ,   ,\n  { {0x02df02fb, 0x2d84185c, 0x37e20044, 0x00000000}},  //   _प्रभ, jime_, _বিতর,\n  { {0x752d001a, 0x2d840c55, 0x6372000c, 0x00000000}},  //   meaz, dime_, _bænd,\n  { {0x752d001a, 0x63602c47, 0x00000000, 0x00000000}},  //   leaz, _döns,   ,\n  { {0x6da501fb, 0x69ca02fb, 0x2d84088d, 0x00000000}},  //   ника, _संगी, fime_,\n  { {0x752d000d, 0x63600039, 0x00000000, 0x00000000}},  //   neaz, _föns,   ,\n  { {0x7e99007a, 0x2d9f0007, 0xa2d60164, 0x00000000}},  //   _کنار_, roue_, मुक्,\n  { {0xdbdc000c, 0x752d0035, 0x908a00a1, 0x00000000}},  //   ráðh, heaz, _عملے_,\n  { {0xdea1025a, 0x2d840065, 0xd91002fd, 0x00000000}},  //   _حیثی, bime_, لیغ_,\n  { {0x752d001a, 0x2d84064f, 0xceb201ce, 0x00000000}},  //   jeaz, cime_, _גיב_,\n  { {0xeb8e045e, 0x6d4b0ec9, 0x60db000b, 0x00000000}},  //   _би_, _inga, _mfum,\n  { {0x3f790049, 0x75dc000a, 0x00000000, 0x00000000}},  //   לאָס, _lčze,   ,\n  { {0x69ce008e, 0x00000000, 0x00000000, 0x00000000}},  //   íbet,   ,   ,\n  { {0x7dc70010, 0xc6c307d0, 0x00000000, 0x00000000}},  //   _műso, уйск,   ,\n  { {0x0903007e, 0x29000288, 0x79860eb0, 0x00000000}},  // [9ca0] _спын, _idia_, mikw,\n  { {0x25a006c2, 0x138a0025, 0x656f008e, 0x00000000}},  //   soil_, أخرى_, _elch,\n  { {0x6d4b0d48, 0x00000000, 0x00000000, 0x00000000}},  //   _onga,   ,   ,\n  { {0x2d84027b, 0x200620eb, 0x798600e7, 0x00000000}},  //   xime_, troi_, nikw,\n  { {0x40340200, 0xa067003b, 0x00000000, 0x00000000}},  //   телс, наца_,   ,\n  { {0x2006311d, 0xa2d601f5, 0x44320016, 0x00000000}},  //   rroi_, मुख्, mwy_,\n  { {0x2d84311e, 0xa3c9006e, 0x290008d3, 0x00000000}},  //   time_, _लूट_, _odia_,\n  { {0x6da300ec, 0x44320036, 0x798600e7, 0x00000000}},  //   лија, owy_, jikw,\n  { {0x2d84152b, 0x4432018e, 0x79860020, 0x00000000}},  //   rime_, nwy_, dikw,\n  { {0x2d840004, 0x752d000d, 0x5c732329, 0x00000000}},  //   sime_, zeaz, ульт,\n  { {0x27e0011c, 0x7e9a0445, 0x2a6a0010, 0x00000000}},  //   _atin_, _عنصر_, ább_,\n  { {0x67d5189f, 0x752d0035, 0x00000000, 0x00000000}},  //   кому, xeaz,   ,\n  { {0x752d001a, 0x00000000, 0x00000000, 0x00000000}},  //   veaz,   ,   ,\n  { {0x4432018e, 0x6601134a, 0x672e0374, 0x00000000}},  //   dwy_, álko, gebj,\n  { {0x79a709de, 0x752d0507, 0xb8d70044, 0x00000000}},  //   _прие, teaz, _জল_,\n  { {0x5558005e, 0x00000000, 0x00000000, 0x00000000}},  //   нася_,   ,   ,\n  { {0x7bca000b, 0x752d000d, 0x6aaa018e, 0x00000000}},  // [9cb0] _kifu, reaz, _hyff,\n  { {0x752d001a, 0x60db0197, 0x7bca0020, 0x00000000}},  //   seaz, _sfum, _jifu,\n  { {0x7bca0020, 0x61ee0016, 0x71f800a1, 0x00000000}},  //   _mifu, _cwbl, فرنس_,\n  { {0x7ff5035b, 0xb4db00d4, 0x7bca1be2, 0x00000000}},  //   نستا, _anàv, _lifu,\n  { {0xc4282bda, 0xfbe70082, 0x78fc0049, 0x00000000}},  //   _пюре_, _chế_, לפאו,\n  { {0x79860020, 0x7bca311f, 0xb4bd0061, 0x00000000}},  //   zikw, _nifu, आधी_,\n  { {0xed590a78, 0x61ee0016, 0x6d4b0022, 0x00000000}},  //   дой_, _gwbl, _pnga,\n  { {0x92e90044, 0x60db0020, 0x7d7500f3, 0x00000000}},  //   _যায়_, _ufum, ضابط,\n  { {0x1004005e, 0x69cb007d, 0x7dd50066, 0x00000000}},  //   _бяхм, _संजी, _iġsm,\n  { {0x0b42008b, 0x4a45004c, 0x7bca0023, 0x00000000}},  //   аньн, внов, _cifu,\n  { {0x6aaa018e, 0x3f870036, 0x200f25e1, 0x00000000}},  //   _cyff, minu_, lugi_,\n  { {0x3f87009f, 0x6aaa0016, 0x69dc0051, 0x00000000}},  //   linu_, _dyff, írea,\n  { {0x8d7401d8, 0xd91000a1, 0x798601d6, 0x00000000}},  //   _حالا, لیں_, rikw,\n  { {0x7bca0026, 0x00000000, 0x00000000, 0x00000000}},  //   _gifu,   ,   ,\n  { {0x6aaa018e, 0x200f006c, 0x798600e7, 0x00000000}},  //   _gyff, hugi_, pikw,\n  { {0x7bca0020, 0x3f870066, 0x1614013d, 0x00000000}},  //   _zifu, hinu_, तंबर_,\n  { {0xccf200a3, 0xf773007a, 0x3f87000c, 0x00000000}},  // [9cc0] יכן_, _چاپ_, kinu_,\n  { {0x4432010b, 0x200f006c, 0x3f870142, 0x00000000}},  //   rwy_, dugi_, jinu_,\n  { {0x3f870466, 0xf506003b, 0x7ae50004, 0x00000000}},  //   dinu_, _изно, _õhtu,\n  { {0x4a5a00b6, 0xcfe60055, 0xafe6008b, 0x00000000}},  //   ודעו, _নিবন, водл,\n  { {0x3f87000c, 0x200f006c, 0x69c30061, 0x00000000}},  //   finu_, gugi_, रगती,\n  { {0x3f87000c, 0xa067003b, 0xa2e30cb3, 0x00000000}},  //   ginu_, ђаја_, _ворд,\n  { {0x7bca0207, 0x00000000, 0x00000000, 0x00000000}},  //   _rifu,   ,   ,\n  { {0xc69300a0, 0xc5f3009b, 0x644600ee, 0x00000000}},  //   יאו_, בדה_, _krki,\n  { {0x3f870091, 0x711b009b, 0x10a6073b, 0x00000000}},  //   binu_, _קומפ, _риан,\n  { {0x3f87037e, 0xeab000a1, 0x7984004a, 0x00000000}},  //   cinu_, یٹک_, _amiw,\n  { {0x7bca0020, 0xe9f8007e, 0x00000000, 0x00000000}},  //   _vifu, энні_,   ,\n  { {0x394d07df, 0x644600b4, 0x7bca0045, 0x00000000}},  //   ñes_, _orki, _wifu,\n  { {0x7d020181, 0x00000000, 0x00000000, 0x00000000}},  //   _idos,   ,   ,\n  { {0x257501e3, 0xc3080044, 0xe7870143, 0x00000000}},  //   _måle_, র্তি_, тумо,\n  { {0x0bb70452, 0x64463120, 0xfbb7009b, 0x00000000}},  //   _שלום_, _arki, _שפות_,\n  { {0x39150216, 0x3f872ad6, 0x81e10044, 0x00000000}},  //   _смир, zinu_, _দিল_,\n  { {0x95c802be, 0x49930014, 0xf8bf009d, 0x00000000}},  // [9cd0] тура_, _میگر, ffée_,\n  { {0xdb01009d, 0x41e701ff, 0x47351074, 0x00000000}},  //   golè, віда, _снос,\n  { {0x6446002d, 0x3f870091, 0x7d020027, 0x00000000}},  //   _erki, vinu_, _odos,\n  { {0x7d02008d, 0x200f0ad1, 0xe4e40088, 0x00000000}},  //   _ndos, tugi_, _вірн,\n  { {0x3f873121, 0x2bce0316, 0x25750039, 0x00000000}},  //   tinu_, _हंगा, _våld_,\n  { {0x753d0047, 0x7d02002d, 0x200f0093, 0x00000000}},  //   _hasz, _ados, rugi_,\n  { {0x13e80044, 0x3f871654, 0x753d108d, 0x00000000}},  //   _পিয়, rinu_, _kasz,\n  { {0x3f87000c, 0x442b0bde, 0x22940088, 0x00000000}},  //   sinu_, _kpc_, _тися,\n  { {0xcfab025a, 0x753d0ef2, 0x3f870387, 0x00000000}},  //   _قائم_, _masz, pinu_,\n  { {0x443900bb, 0x753d3122, 0x75dc000a, 0x00000000}},  //   _mss_, _lasz, _lčza,\n  { {0x198a04f9, 0x44391dee, 0x656d3123, 0x00000000}},  //   ебни_, _lss_, kkah,\n  { {0x753d0046, 0x4439067e, 0x78ad0009, 0x00000000}},  //   _nasz, _oss_, _byav,\n  { {0x291e0036, 0xa2aa0204, 0x6d5b0066, 0x00000000}},  //   ęta_, _जुन्, mjua,\n  { {0x63a50085, 0x6d5b0022, 0x00000000, 0x00000000}},  //   john, ljua,   ,\n  { {0x442b030c, 0x7bc1010f, 0x4439230d, 0x00000000}},  //   _apc_, mmlu, _ass_,\n  { {0x6d5b0149, 0x442b0173, 0x4adf0204, 0x00000000}},  //   njua, _bpc_, पुरव,\n  { {0xe3ba01f9, 0x4439001c, 0x3d1b0204, 0x00000000}},  // [9ce0] еба_, _css_, _याने_,\n  { {0x68f6005f, 0x4439144f, 0x442b0093, 0x00000000}},  //   _heyd, _dss_, _dpc_,\n  { {0x471b007b, 0x753d3124, 0x171b0049, 0x00000000}},  //   _אויג, _fasz, _אויע,\n  { {0xdb011339, 0x673e0ca5, 0x7c2b3125, 0x00000000}},  //   solè, _hapj, _opgr,\n  { {0x68f6005d, 0x6d5b0ea9, 0x673e2b99, 0x00000000}},  //   _meyd, djua, _kapj,\n  { {0x44203126, 0x27f2018e, 0x8fa30793, 0x00000000}},  //   mti_, _mwyn_, баче,\n  { {0x09cf03d7, 0x7c2b0089, 0x6b8800f8, 0x00000000}},  //   _संगठ, _apgr, vidg,\n  { {0x4420010a, 0x6b880061, 0x6d5b0065, 0x00000000}},  //   oti_, widg, gjua,\n  { {0x44203127, 0x442b0009, 0x61fe0239, 0x00000000}},  //   nti_, _xpc_, lspl,\n  { {0x44200006, 0x673e0010, 0xf063003b, 0x00000000}},  //   iti_, _napj, _укуп,\n  { {0x44200368, 0xdd8f04e1, 0x6b8800ab, 0x00000000}},  //   hti_, _کون_, ridg,\n  { {0x44200ebc, 0x61fe0d4d, 0x7d021070, 0x00000000}},  //   kti_, ispl, _udos,\n  { {0x44203128, 0x27f20016, 0x6d4000e0, 0x00000000}},  //   jti_, _cwyn_, mdma,\n  { {0x442b00c4, 0x61fe00b0, 0x27f20016, 0x00000000}},  //   _rpc_, kspl, _dwyn_,\n  { {0x7afa021e, 0xd5bb0256, 0x442b003b, 0x00000000}},  //   matt, еса_, _spc_,\n  { {0x442b0011, 0x63a5010f, 0x61fe05d5, 0x00000000}},  //   _ppc_, wohn, dspl,\n  { {0x44200006, 0xdb030051, 0x27f20016, 0x00000000}},  // [9cf0] gti_, _ghnó, _gwyn_,\n  { {0x7afa00b0, 0x753d0036, 0x2d810010, 0x00000000}},  //   natt, _wasz, éhez_,\n  { {0x44200207, 0x443900d9, 0xf8b100a1, 0x00000000}},  //   ati_, _wss_, _دکھ_,\n  { {0x442012f7, 0x673e0243, 0x00000000, 0x00000000}},  //   bti_, _zapj,   ,\n  { {0xb97c007b, 0x442b0129, 0x442000f6, 0x00000000}},  //   ענדי, _upc_, cti_,\n  { {0x6d47001e, 0x61fe0302, 0x7afa00b0, 0x00000000}},  //   ējam, bspl, jatt,\n  { {0x7afa1015, 0xff04085f, 0x539a00b3, 0x00000000}},  //   datt, сячн, _יישו,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7afa16df, 0x6d5b04cb, 0x2d8601aa, 0x00000000}},  //   fatt, rjua, _dmoe_,\n  { {0x7afa29df, 0x6d403129, 0xf53f032e, 0x00000000}},  //   gatt, adma, _skål_,\n  { {0x4420312a, 0x68f60477, 0x7bc10239, 0x00000000}},  //   zti_, _peyd, rmlu,\n  { {0x68f6005f, 0x4420312b, 0x186a004c, 0x00000000}},  //   _qeyd, yti_, вами_,\n  { {0x7c2b00ab, 0x290c0180, 0x4420013f, 0x00000000}},  //   _upgr, ğda_, xti_,\n  { {0xcb66013b, 0xcf920049, 0x1ae500ed, 0x00000000}},  //   _ваше_, ַטן_, _токм,\n  { {0x24f61123, 0x3333002b, 0x96630a27, 0x00000000}},  //   ичар, dexx_, окре,\n  { {0x442013f0, 0x63bc00b9, 0x00000000, 0x00000000}},  //   tti_, _shrn,   ,\n  { {0x442004a5, 0x31bc00b9, 0xd46700e3, 0x00000000}},  // [9d00] uti_, níze_, аите_,\n  { {0x61fe03a9, 0x39400d28, 0x261e005b, 0x00000000}},  //   tspl, _hais_, pïo_,\n  { {0x201f312c, 0x425600ec, 0x644403b6, 0x00000000}},  //   _aqui_, штат, svii,\n  { {0x4420312d, 0x61fe00f8, 0x39402075, 0x00000000}},  //   pti_, rspl, _jais_,\n  { {0x39400e84, 0x7afa014a, 0x61e9312e, 0x00000000}},  //   _mais_, yatt, _čele,\n  { {0x42e701f9, 0x61fe0190, 0x9e06312f, 0x00000000}},  //   _вмро_, pspl, ачил,\n  { {0x2cb1013f, 0x00000000, 0x00000000, 0x00000000}},  //   əzdi_,   ,   ,\n  { {0x5d540113, 0x3940006a, 0x64430036, 0x00000000}},  //   скит, _nais_, łnie,\n  { {0x7afa211e, 0x1be7003b, 0x00000000, 0x00000000}},  //   tatt, адњи_,   ,\n  { {0x395204bd, 0x257502e1, 0x7ac610d6, 0x00000000}},  //   _anys_, _måla_, исне,\n  { {0x7afa13f0, 0x28f90131, 0xfe720025, 0x00000000}},  //   ratt, лень_, _بدء_,\n  { {0x3940018e, 0x6449010a, 0xcc870014, 0x00000000}},  //   _cais_, _šeim, انیه_,\n  { {0xc864007c, 0x3940004a, 0xb87b013e, 0x00000000}},  //   отри, _dais_, dcíc,\n  { {0xd7f80783, 0x8a1802dc, 0x3ea90035, 0x00000000}},  //   шую_, _бокс_, şate_,\n  { {0x394000f4, 0x00000000, 0x00000000, 0x00000000}},  //   _fais_,   ,   ,\n  { {0xda5b00b6, 0x39400016, 0x00000000, 0x00000000}},  //   _יכול, _gais_,   ,\n  { {0x54b90147, 0x69d800f8, 0x68fd0058, 0x00000000}},  // [9d10] угая_, _huve, masd,\n  { {0x69d80065, 0x7af8003b, 0x28c7013d, 0x00000000}},  //   _kuve, _jevt, रेणि,\n  { {0x3952018e, 0x637b0035, 0x213f0145, 0x00000000}},  //   _ynys_, _lîng, _pauh_,\n  { {0x2919027e, 0x67353130, 0xb87b0010, 0x00000000}},  //   ngsa_, lezj, bbít,\n  { {0x504500ed, 0x59d0007d, 0x00000000, 0x00000000}},  //   селб, _संघर,   ,\n  { {0x69d8028c, 0x543a0049, 0x7af81ab2, 0x00000000}},  //   _ouve, _געשא, _nevt,\n  { {0x69d83131, 0x81e10044, 0x3e3300a1, 0x00000000}},  //   _nuve, _দিক_, تہار,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x3940000b, 0x69d800f4, 0x00000000, 0x00000000}},  //   _rais_, _auve,   ,\n  { {0x394000f4, 0x4ea70216, 0x69d83132, 0x00000000}},  //   _sais_, _креа, _buve,\n  { {0x3940029d, 0xd9460867, 0x69d801ee, 0x00000000}},  //   _pais_, бени, _cuve,\n  { {0x69d801d6, 0xdd8f0123, 0x200f0026, 0x00000000}},  //   _duve, _کوچ_, orgi_,\n  { {0x394000f4, 0x9cda0049, 0xc19a0049, 0x00000000}},  //   _vais_, _עקספ, רשרי,\n  { {0x394000e0, 0xdb1800c4, 0x3a3c00f6, 0x00000000}},  //   _wais_, _divó, _fsvp_,\n  { {0x69d8000d, 0x3940061c, 0x2618007d, 0x00000000}},  //   _guve, _tais_, बंधी_,\n  { {0x25a90026, 0x7bd90009, 0x68fd0325, 0x00000000}},  //   goal_, _kuwu, casd,\n  { {0xb87b2d7d, 0x69d8010f, 0x68e4012d, 0x00000000}},  // [9d20] rcíc, _zuve, _ifid,\n  { {0x46f602b8, 0xb87b3133, 0x2618007d, 0x00000000}},  //   _учит, scíc, बंदी_,\n  { {0x69d8027b, 0x7bd90093, 0x3e470082, 0x00000000}},  //   _xuve, _luwu, _nđt_,\n  { {0xdb010489, 0x25a900fa, 0x00000000, 0x00000000}},  //   dolí, coal_,   ,\n  { {0x2d8d01d6, 0x68e400e7, 0x7bd90022, 0x00000000}},  //   diee_, _mfid, _nuwu,\n  { {0x7f41049a, 0xb87b008e, 0xb7db01ce, 0x00000000}},  //   _calq, ncía, אקסי,\n  { {0x61460888, 0x41b60014, 0x2d8d2405, 0x00000000}},  //   _лева, _همسر, fiee_,\n  { {0x69d80052, 0x3a3c0133, 0x00000000, 0x00000000}},  //   _ruve, _rsvp_,   ,\n  { {0x69d80004, 0x205602a8, 0x7f4100f6, 0x00000000}},  //   _suve, _утвр, _falq,\n  { {0x4f650054, 0x68fd0093, 0xc43b009b, 0x00000000}},  //   _والف, wasd, נתיי,\n  { {0x999901f9, 0x6735002b, 0x68e9004a, 0x00000000}},  //   икот_, vezj, ñedo,\n  { {0x3f8e000b, 0x61fa000c, 0x5e570049, 0x00000000}},  //   lifu_, _ætlu, _ליבע_,\n  { {0xdb180173, 0x68fd3134, 0x7af80087, 0x00000000}},  //   _divò, rasd, _tevt,\n  { {0x7f41005f, 0x3f8e0020, 0x6615002d, 0x00000000}},  //   _xalq, nifu_, tuzk,\n  { {0x65660479, 0x68fd01c3, 0x00000000, 0x00000000}},  //   _bokh, pasd,   ,\n  { {0x6615022b, 0xdb080065, 0x56941023, 0x00000000}},  //   ruzk, kodë, част,\n  { {0x9817023c, 0x798f0146, 0xf994009b, 0x00000000}},  // [9d30] _ابعا, micw, _מרק_,\n  { {0x63600047, 0x66153135, 0x04e90044, 0x00000000}},  //   _köny, puzk, গণের_,\n  { {0xd2510379, 0xa4d503e8, 0x00000000, 0x00000000}},  //   بنا_, _моні,   ,\n  { {0x6f083136, 0xdb010010, 0x00000000, 0x00000000}},  //   _addc, volí,   ,\n  { {0x3e470082, 0x1ee70123, 0x6f080009, 0x00000000}},  //   _sđt_, موشی_, _bddc,\n  { {0x2d9a0010, 0xdb010142, 0x27e90288, 0x00000000}},  //   épen_, tolí, _mtan_,\n  { {0xdb180161, 0x6d423137, 0x171c0049, 0x00000000}},  //   _chví, _baoa, אווע,\n  { {0x27e91136, 0x637b009d, 0xdb012bd5, 0x00000000}},  //   _otan_, _dîne, rolí,\n  { {0x3f8e0020, 0x2d8d07f3, 0x1c420147, 0x00000000}},  //   bifu_, riee_, дным,\n  { {0x68e40747, 0xdb010285, 0x3d1b0061, 0x00000000}},  //   _sfid, polí, _यावे_,\n  { {0xeab10054, 0x27e9019a, 0xfa5300a2, 0x00000000}},  //   بعة_, _atan_, سردگ,\n  { {0x3a98007c, 0x00000000, 0x00000000, 0x00000000}},  //   стью_,   ,   ,\n  { {0x65660022, 0x913a0049, 0x7d1b00e7, 0x00000000}},  //   _rokh, בערק, mgus,\n  { {0x7d1b006c, 0x257c18c0, 0x81ea0044, 0x00000000}},  //   lgus, _míle_, _মিস_,\n  { {0x27e93138, 0x212d1a2d, 0x2ee50022, 0x00000000}},  //   _etan_, _obeh_, _mflf_,\n  { {0x7d1b1be1, 0x3f8e016c, 0x00000000, 0x00000000}},  //   ngus, zifu_,   ,\n  { {0xf7460d68, 0x61e90087, 0x33660451, 0x00000000}},  // [9d40] _депо, _čela, оваг,\n  { {0x25750039, 0xb7d70167, 0x248000c4, 0x00000000}},  //   _håll_, _گویا_, rzim_,\n  { {0xe0da3139, 0x00000000, 0x00000000, 0x00000000}},  //   аве_,   ,   ,\n  { {0x64430036, 0x27e900f8, 0x00000000, 0x00000000}},  //   łnia, _ytan_,   ,\n  { {0x3f8e0d16, 0x257c00b9, 0xa2aa013d, 0x00000000}},  //   tifu_, _cíle_, _जुर्,\n  { {0x7d1b11f6, 0xdb0802d0, 0x257c013e, 0x00000000}},  //   egus, codè, _díle_,\n  { {0x3f8e12bd, 0x6e93023c, 0xd048006b, 0x00000000}},  //   rifu_, ولها, _ələs,\n  { {0x3f8e0020, 0x71760014, 0x6b8a00f6, 0x00000000}},  //   sifu_, _بهرا, _smfg,\n  { {0xd7bc0061, 0x09e20061, 0x00000000, 0x00000000}},  //   ोगाच, पऱ्य,   ,\n  { {0xe457007b, 0x8afc00b4, 0x00000000, 0x00000000}},  //   קייט_, djęc,   ,\n  { {0x27e90b23, 0xa2be0164, 0x637b00e5, 0x00000000}},  //   _stan_, वेच्, _hînc,\n  { {0x63720190, 0x00000000, 0x00000000, 0x00000000}},  //   _bænk,   ,   ,\n  { {0x7dd50006, 0x798f0016, 0x00000000, 0x00000000}},  //   _išsa, ricw,   ,\n  { {0x7d002604, 0xbb430184, 0xb7bb00c4, 0x00000000}},  //   lams, _жељк, rtão,\n  { {0xb7bb00c4, 0x5bc30025, 0x29090009, 0x00000000}},  //   stão, _تقول, _tdaa_,\n  { {0x7d000eb0, 0x00000000, 0x00000000, 0x00000000}},  //   nams,   ,   ,\n  { {0x27e9313a, 0xd375003b, 0x00000000, 0x00000000}},  // [9d50] _utan_, плаћ,   ,\n  { {0x97150a78, 0x7d1b313b, 0x6b9a01a2, 0x00000000}},  //   _эмоц, zgus, nntg,\n  { {0x7d00000c, 0x7d1b014a, 0x257c0399, 0x00000000}},  //   kams, ygus, _síle_,\n  { {0xf5590054, 0x363402fd, 0xdb0801a2, 0x00000000}},  //   _الحب_, _کریس, lldä,\n  { {0xdee5007c, 0xdb010048, 0x00000000, 0x00000000}},  //   поли, holá,   ,\n  { {0xdb0113a5, 0xd0062d6f, 0x3fab003b, 0x00000000}},  //   kolá, чеше_, шњем_,\n  { {0x7d000016, 0xdb08313c, 0x798d00b4, 0x00000000}},  //   fams, codé, _omaw,\n  { {0xf2d200a0, 0x7d1b0006, 0x7c3b01a2, 0x00000000}},  //   _טעם_, ugus, twur,\n  { {0x7d1b006c, 0xdbd60934, 0x00000000, 0x00000000}},  //   rgus, jään,   ,\n  { {0x547c009b, 0x798d0009, 0x7c3b0d18, 0x00000000}},  //   יטחו, _amaw, rwur,\n  { {0xd94600ed, 0x63720030, 0xdb010010, 0x00000000}},  //   пени, _sænk, golá,\n  { {0xac1903c8, 0xdb0a0051, 0x644f03e2, 0x00000000}},  //   _году_, _bhfó, _orci,\n  { {0x5ed00044, 0xb87b04bc, 0x00000000, 0x00000000}},  //   _স্পে, scín,   ,\n  { {0xc3110044, 0x61e9047c, 0x752f1938, 0x00000000}},  //   স্তি_, _čeln, _abcz,\n  { {0x644f2100, 0xdb01008e, 0x28ae0061, 0x00000000}},  //   _arci, colá, _घडवि,\n  { {0x06ab0055, 0x63720018, 0x18a600c2, 0x00000000}},  //   _গৃহি, _tænk, _найм,\n  { {0xd5af0d3a, 0x130a007e, 0x9f5f00f6, 0x00000000}},  // [9d60] افق_, йнай_, _avuí_,\n  { {0x29020127, 0x04fc0044, 0x6e2d0036, 0x00000000}},  //   laka_, ইলের_, łaby,\n  { {0x11d60014, 0x7dc5008e, 0x69d60689, 0x00000000}},  //   ستاد, mósf, _kiye,\n  { {0x2902006a, 0xe5a60242, 0x6a9a0049, 0x00000000}},  //   naka_, _хими, זשענ,\n  { {0x69d6011c, 0xdb010010, 0x69c40066, 0x00000000}},  //   _miye, zolá, _mhie,\n  { {0x29020020, 0x00000000, 0x00000000, 0x00000000}},  //   haka_,   ,   ,\n  { {0x290203b0, 0x6fb600a1, 0x7d000020, 0x00000000}},  //   kaka_, _ہمرا, tams,\n  { {0x290212e0, 0xdb0101ca, 0x69c40011, 0x00000000}},  //   jaka_, volá, _nhie,\n  { {0x29021a71, 0x321a01ca, 0xd6c40044, 0x00000000}},  //   daka_, lupy_, ্ডিয,\n  { {0xfc2f0076, 0x7d001fbc, 0x307b009b, 0x00000000}},  //   احي_, sams, _האמנ,\n  { {0x69d6011c, 0x29020020, 0x7d000032, 0x00000000}},  //   _biye, faka_, pams,\n  { {0x644a001e, 0x69c4051b, 0xdc2a0014, 0x00000000}},  //   āfij, _chie, _هسته_,\n  { {0x69d6011f, 0x6c3402fd, 0xdb010010, 0x00000000}},  //   _diye, _آفتا, solá,\n  { {0x321a0941, 0xdb01313d, 0x69d600e0, 0x00000000}},  //   kupy_, polá, _eiye,\n  { {0x29020073, 0x644f01ed, 0x69d6000a, 0x00000000}},  //   baka_, _srci, _fiye,\n  { {0x29020107, 0x79a4007e, 0xdbd600b0, 0x00000000}},  //   caka_, _прые, sään,\n  { {0x2458007c, 0x24f8007e, 0x03d50451, 0x00000000}},  // [9d70] пать_, янты_, джаю,\n  { {0xd25b008b, 0xa87c009b, 0xf2c700ed, 0x00000000}},  //   йце_, _לאחר, псен,\n  { {0x32070a50, 0x69d6014a, 0xe3b00025, 0x00000000}},  //   ény_, _yiye, ارق_,\n  { {0x63730676, 0x644f057c, 0x69c4002b, 0x00000000}},  //   _sını, _trci, _xhie,\n  { {0xb4d90201, 0x799d01c3, 0x644f04bb, 0x00000000}},  //   ाशी_, insw, _urci,\n  { {0x29022145, 0x644d0035, 0x00000000, 0x00000000}},  //   zaka_, mvai,   ,\n  { {0x44290f3c, 0x29020045, 0xc332007b, 0x00000000}},  //   lta_, yaka_, _שול_,\n  { {0x44290ecb, 0xd65800b6, 0xdea40167, 0x00000000}},  //   ota_, ליות_, رینی,\n  { {0x644d089e, 0x69c4018e, 0x2d830006, 0x00000000}},  //   nvai, _rhie, ėje_,\n  { {0x442906d5, 0x69d60e6a, 0x29020ea6, 0x00000000}},  //   ita_, _siye, waka_,\n  { {0x2902000b, 0x4429313e, 0x6f030baa, 0x00000000}},  //   taka_, hta_, manc,\n  { {0x6f030127, 0xdde90014, 0x00000000, 0x00000000}},  //   lanc, _هرچه_,   ,\n  { {0x2902000b, 0x3b09313f, 0x8c45022a, 0x00000000}},  //   raka_, _дело_, _целе,\n  { {0x2902001e, 0x6d49022b, 0x44290eb6, 0x00000000}},  //   saka_, ldea, dta_,\n  { {0x2902011c, 0x752d0197, 0x69c40a60, 0x00000000}},  //   paka_, ffaz, _thie,\n  { {0x44291c45, 0x6d49022b, 0x60db09bd, 0x00000000}},  //   fta_, ndea, _ngum,\n  { {0x4429001c, 0x6f03001e, 0x6d49002a, 0x00000000}},  // [9d80] gta_, kanc, idea,\n  { {0x7c29010f, 0x60db185b, 0x6f030091, 0x00000000}},  //   iter, _agum, janc,\n  { {0x7c292e0e, 0x44292820, 0x673c01d9, 0x00000000}},  //   hter, ata_, merj,\n  { {0x27e0021e, 0x4429002b, 0x673c1ed5, 0x00000000}},  //   _kuin_, bta_, lerj,\n  { {0x27e0028c, 0xc483008b, 0x7c2901ee, 0x00000000}},  //   _juin_, _аляк, jter,\n  { {0x29003140, 0x673c3141, 0x6d5924ed, 0x00000000}},  //   _leia_, nerj, _anwa,\n  { {0x661c0052, 0x7c291440, 0x20060026, 0x00000000}},  //   nurk, eter, ssoi_,\n  { {0x7c293142, 0x27ed001a, 0x673c000c, 0x00000000}},  //   fter, ţeni_, herj,\n  { {0x6f03011f, 0x673c0149, 0x2b4718f2, 0x00000000}},  //   banc, kerj, _banc_,\n  { {0x6f03028c, 0x2d980047, 0x661c182b, 0x00000000}},  //   canc, őre_, kurk,\n  { {0x44290010, 0xaa580872, 0x6d490146, 0x00000000}},  //   zta_, чину_, bdea,\n  { {0xed630006, 0x661c1bbb, 0x29000f6e, 0x00000000}},  //   gužė_, durk, _ceia_,\n  { {0x442902d5, 0x29000948, 0xdb08073f, 0x00000000}},  //   xta_, _deia_, lodí,\n  { {0x27e03143, 0xe8e00082, 0x779300a1, 0x00000000}},  //   _duin_, _muội_, ئیدا,\n  { {0x29000a06, 0x356b003b, 0x67d4007c, 0x00000000}},  //   _feia_, оран_, тору,\n  { {0x6f030627, 0x628500ca, 0x644d1487, 0x00000000}},  //   zanc, vzho, tvai,\n  { {0x442900b0, 0x6f032b25, 0x644d00f4, 0x00000000}},  // [9d90] uta_, yanc, uvai,\n  { {0x44290149, 0x394901d6, 0x644d0dd9, 0x00000000}},  //   rta_, _haas_, rvai,\n  { {0x44290f3c, 0x6f030038, 0x7c293144, 0x00000000}},  //   sta_, vanc, zter,\n  { {0x44290127, 0x6f03023a, 0x76450061, 0x00000000}},  //   pta_, wanc, _ishy,\n  { {0x7c2900f8, 0x3949109a, 0xd4790049, 0x00000000}},  //   xter, _maas_, _זאָל,\n  { {0x39490007, 0x70520d0b, 0xa29505b8, 0x00000000}},  //   _laas_, انوا, _загі,\n  { {0x6d49001a, 0x7c293145, 0x00000000, 0x00000000}},  //   tdea, wter,   ,\n  { {0x6f0300f4, 0x3dc60784, 0x1c45019d, 0x00000000}},  //   sanc, _chow_, еним,\n  { {0x6d491cc3, 0x7c29010a, 0xfc480011, 0x00000000}},  //   rdea, uter, _cử_,\n  { {0x7c290292, 0x3dc600ab, 0x29000056, 0x00000000}},  //   rter, _ehow_, _seia_,\n  { {0x7bd80576, 0x673c3146, 0xc3320049, 0x00000000}},  //   _divu, verj, נוט_,\n  { {0x6d590016, 0x7aea00ea, 0x127a0049, 0x00000000}},  //   _unwa, _efft, פארע,\n  { {0x673c11b2, 0x290006c2, 0x27e00129, 0x00000000}},  //   terj, _veia_, _quin_,\n  { {0xfaa5007e, 0xfbc5007c, 0x00000000, 0x00000000}},  //   _пало, _ябло,   ,\n  { {0x29000181, 0xcb12009b, 0x8f9a009b, 0x00000000}},  //   _teia_, _עלה_, לישי,\n  { {0x673c0059, 0x27e001b5, 0x2d9f00f4, 0x00000000}},  //   serj, _tuin_, nnue_,\n  { {0x673c01d5, 0xfc48001d, 0x66e6022a, 0x00000000}},  // [9da0] perj, _xử_, _попа,\n  { {0xe3b7003b, 0x74130025, 0x661c0052, 0x00000000}},  //   ебу_, اولا, purk,\n  { {0x317f0823, 0x00000000, 0x00000000, 0x00000000}},  //   _bluz_,   ,   ,\n  { {0xa87a0049, 0xc0e60a85, 0x00000000, 0x00000000}},  //   ּאַר, ходк,   ,\n  { {0x26c700b9, 0x25a00910, 0x201d0058, 0x00000000}},  //   _únor_, mnil_, guwi_,\n  { {0x3dc60038, 0xdfcf2aea, 0x6446045d, 0x00000000}},  //   _show_, مين_, _iski,\n  { {0xfc48001d, 0x03a302e9, 0x6f013147, 0x00000000}},  //   _sử_, _сиро, _delc,\n  { {0x7bd8021e, 0x5d5400e3, 0x25a03148, 0x00000000}},  //   _sivu, ткит, nnil_,\n  { {0x10a303f4, 0x394901d6, 0x6f011a1d, 0x00000000}},  //   _битн, _raas_, _felc,\n  { {0x39490052, 0xf8bf00f4, 0x25a000ca, 0x00000000}},  //   _saas_, ngée_, hnil_,\n  { {0xc333019b, 0x7bd83149, 0xf99f01aa, 0x00000000}},  //   אות_, _vivu, tnè_,\n  { {0xfc48001d, 0x4c86005e, 0xbfa50011, 0x00000000}},  //   _tử_, _плев, hiệ,\n  { {0x7a36006b, 0xdb0800c4, 0xec130076, 0x00000000}},  //   _bütö, godã, _موند,\n  { {0x394900d9, 0x00000000, 0x00000000, 0x00000000}},  //   _waas_,   ,   ,\n  { {0x3949314a, 0x644600ab, 0x00000000, 0x00000000}},  //   _taas_, _aski,   ,\n  { {0xd5b801fb, 0x7abb00a0, 0x25a00059, 0x00000000}},  //   есу_, _מצוו, gnil_,\n  { {0x68ed005d, 0x00000000, 0x00000000, 0x00000000}},  // [9db0] _ifad,   ,   ,\n  { {0x889c009b, 0x2c130061, 0x7d0204e7, 0x00000000}},  //   _מבחי, _दिसू_, _leos,\n  { {0x6446014a, 0x22590025, 0x76450009, 0x00000000}},  //   _eski, بلاد_, _ushy,\n  { {0x7d02049c, 0x00000000, 0x00000000, 0x00000000}},  //   _neos,   ,   ,\n  { {0x2d84314b, 0x6f01012d, 0x68ed00e7, 0x00000000}},  //   dhme_, _pelc, _mfad,\n  { {0x7bdf028c, 0x3b05005f, 0x656f001f, 0x00000000}},  //   _équi, xalq_, _hoch,\n  { {0x6372000c, 0xb87b0010, 0x7d02314c, 0x00000000}},  //   _vænt, gbíz, _beos,\n  { {0x6f0123b9, 0x7dd50006, 0x656f1440, 0x00000000}},  //   _welc, _išsk, _joch,\n  { {0x656f00b5, 0x7d02001a, 0x6f01008e, 0x00000000}},  //   _moch, _deos, _telc,\n  { {0x656f0051, 0x6720013d, 0x68ed00e7, 0x00000000}},  //   _loch, _बाइक_, _afad,\n  { {0xfaa50373, 0x6a86028c, 0x443901a3, 0x00000000}},  //   тано, _réfé, _lps_,\n  { {0x656f314d, 0x7d02013f, 0xdc530167, 0x00000000}},  //   _noch, _geos, _مرتک,\n  { {0xec6e0256, 0x8ccd013d, 0x00000000, 0x00000000}},  //   _тп_, देशो,   ,\n  { {0x6d4b0211, 0x2489314e, 0xfc46013e, 0x00000000}},  //   _haga, dzam_, řích_,\n  { {0x6d4b006a, 0x44390030, 0x656f164b, 0x00000000}},  //   _kaga, _aps_, _boch,\n  { {0x656f226e, 0x6d4b006c, 0x4439023a, 0x00000000}},  //   _coch, _jaga, _bps_,\n  { {0x6d4b314f, 0x44390253, 0x442b00c4, 0x00000000}},  // [9dc0] _maga, _cps_, _cqc_,\n  { {0x6d4b3150, 0x656f0051, 0x25ad0e3b, 0x00000000}},  //   _laga, _eoch, čela_,\n  { {0xf8bf009d, 0x656f0051, 0x6372000c, 0x00000000}},  //   rgée_, _foch, _sæns,\n  { {0x6d4b006a, 0x4439014a, 0x656f0761, 0x00000000}},  //   _naga, _fps_, _goch,\n  { {0x44390387, 0x7d02010e, 0x24890036, 0x00000000}},  //   _gps_, _reos, czam_,\n  { {0x44203151, 0x7d02017b, 0xdb080010, 0x00000000}},  //   mui_, _seos, kodá,\n  { {0x44201305, 0x6d4b186e, 0x2d8400f4, 0x00000000}},  //   lui_, _baga, thme_,\n  { {0x75240020, 0x44201de2, 0x6d4b0efe, 0x00000000}},  //   ngiz, oui_, _caga,\n  { {0x44200006, 0x61e90209, 0x98be00b9, 0x00000000}},  //   nui_, _čeli, ětě_,\n  { {0x2d84008d, 0x6d4b002a, 0x00000000, 0x00000000}},  //   shme_, _eaga,   ,\n  { {0x831b0452, 0x4420020c, 0x3d1b0061, 0x00000000}},  //   וויז, hui_, _याचे_,\n  { {0x6d4b2384, 0x442009cf, 0x7dc50489, 0x00000000}},  //   _gaga, kui_, rósc,\n  { {0x656f002a, 0x4420242a, 0x2575068f, 0x00000000}},  //   _roch, jui_, _målt_,\n  { {0x6d400dda, 0x442001aa, 0x6d4b0821, 0x00000000}},  //   lema, dui_, _zaga,\n  { {0x35e401fb, 0xda6f0265, 0x44393152, 0x00000000}},  //   ицтв, _тя_, _sps_,\n  { {0x6d400114, 0x68ed00e7, 0x88c800b9, 0x00000000}},  //   nema, _ufad, _stěž,\n  { {0x545504af, 0x442004bd, 0x656f00b5, 0x00000000}},  // [9dd0] ыват, gui_, _voch,\n  { {0x6d400004, 0x656f001f, 0x1b140055, 0x00000000}},  //   hema, _woch, ত্রে_,\n  { {0x6d4027d2, 0x24890036, 0x656f164b, 0x00000000}},  //   kema, szam_, _toch,\n  { {0x4420000d, 0x6d401bc1, 0xf67a0049, 0x00000000}},  //   bui_, jema, _נארמ,\n  { {0x6d4b0198, 0x6d4000ab, 0x4420001a, 0x00000000}},  //   _raga, dema, cui_,\n  { {0x6d4b001e, 0x7dd5010a, 0x00000000, 0x00000000}},  //   _saga, _išsi,   ,\n  { {0x6d4b010a, 0x00000000, 0x00000000, 0x00000000}},  //   _paga,   ,   ,\n  { {0x26dc08cd, 0x00000000, 0x00000000, 0x00000000}},  //   וקומ,   ,   ,\n  { {0x7bca0195, 0x6d4b02d5, 0xc6bf0055, 0x00000000}},  //   _bhfu, _vaga, _আলোচ,\n  { {0x9ee90054, 0xc0c8005e, 0x20090e3f, 0x00000000}},  //   _أفضل_, _русе_, šais_,\n  { {0x6d4b0b1a, 0xadf501e0, 0x7dc70010, 0x00000000}},  //   _taga, _спеш, _műsz,\n  { {0x6d403153, 0xdb083154, 0x29040cd3, 0x00000000}},  //   cema, rodá, úma_,\n  { {0xd910026c, 0xdb080010, 0xdb2300a2, 0x00000000}},  //   میں_, sodá, _نوشی,\n  { {0x3ced01d9, 0x44203155, 0x7d090e98, 0x00000000}},  //   lcev_, vui_, laes,\n  { {0x98a4005d, 0x69c4013d, 0xdbd1006c, 0x00000000}},  //   ımı_, रतदी, _müüj,\n  { {0x4420042c, 0x3ced0059, 0x7d090091, 0x00000000}},  //   tui_, ncev_, naes,\n  { {0x79840020, 0x39423156, 0x26180316, 0x00000000}},  // [9de0] _iliw, meks_, बूजी_,\n  { {0x394214b9, 0x442024b7, 0x6d402645, 0x00000000}},  //   leks_, rui_, zema,\n  { {0xeb96007b, 0x4420244a, 0x6b7a0049, 0x00000000}},  //   נדער_, sui_, ערענ,\n  { {0x3942006c, 0x673b0091, 0x6d400032, 0x00000000}},  //   neks_, đuje, xema,\n  { {0x6d402370, 0x442009f7, 0xe3b100a1, 0x00000000}},  //   vema, qui_, صرے_,\n  { {0x39420004, 0x6d40298f, 0x79840016, 0x00000000}},  //   heks_, wema, _lliw,\n  { {0x79840036, 0x3942010e, 0x63ab3157, 0x00000000}},  //   _oliw, keks_, égne,\n  { {0xdd900379, 0x644d006c, 0xf6570097, 0x00000000}},  //   توب_, _üliõ, רסקי_,\n  { {0x6d400004, 0x3942006c, 0xd1b3007a, 0x00000000}},  //   rema, deks_, _اینک,\n  { {0x6d400004, 0x6d870819, 0xff24026c, 0x00000000}},  //   sema, _añad, _خبری,\n  { {0xee290025, 0xfca90014, 0x6d40010e, 0x00000000}},  //   _لأنه_, _یاهو_, pema,\n  { {0x984b007e, 0x3942006c, 0x7d09004a, 0x00000000}},  //   няга_, geks_, caes,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xead4132a, 0x394d007f, 0x00000000, 0x00000000}},  //   _коль, žes_,   ,\n  { {0x5b7b0049, 0x6b9a30ac, 0x00000000, 0x00000000}},  //   _ארגא, mitg,   ,\n  { {0x25ad0e3b, 0x79840036, 0x6b9a00f6, 0x00000000}},  //   čelo_, _gliw, litg,\n  { {0x290b037e, 0x33f40025, 0xa49b00d4, 0x00000000}},  // [9df0] maca_, مسلس, _geòl,\n  { {0x290b016c, 0x69df0065, 0x98b90089, 0x00000000}},  //   laca_, _hiqe, cesā_,\n  { {0x3ebe067e, 0xdb08000c, 0x69cd0022, 0x00000000}},  //   _nytt_, lldó, _khae,\n  { {0x290b3158, 0x31350088, 0x354701ff, 0x00000000}},  //   naca_, редр, _схов,\n  { {0x3ced0059, 0x69df0065, 0x00000000, 0x00000000}},  //   vcev_, _miqe,   ,\n  { {0x88c70055, 0x69df0065, 0x3ebe01c9, 0x00000000}},  //   _এলাক, _liqe, _bytt_,\n  { {0xd5ae026c, 0x2778009b, 0x7d090052, 0x00000000}},  //   _رہے_, רגון_, taes,\n  { {0x290b003b, 0x3f870066, 0x656d0169, 0x00000000}},  //   jaca_, shnu_, njah,\n  { {0x0d820106, 0xe7e1006e, 0xdd8e0025, 0x00000000}},  //   ільн, _गंगा_, بوي_,\n  { {0x2eee0009, 0x30840025, 0x3ced00ca, 0x00000000}},  //   ccff_, _الكف, scev_,\n  { {0x39420004, 0x49ca003b, 0x3ced0059, 0x00000000}},  //   teks_, клон_, pcev_,\n  { {0x69cd0016, 0x7f433159, 0x290b00f5, 0x00000000}},  //   _chae, lenq, gaca_,\n  { {0x6b65004c, 0x7dc50d4e, 0x6d7a009b, 0x00000000}},  //   _вкла, lóso, _שאנח,\n  { {0x3942061f, 0x87b900e3, 0x8c1a00a0, 0x00000000}},  //   seks_, густ_, _יוני,\n  { {0x290b04cb, 0x7f4300f6, 0x00000000, 0x00000000}},  //   baca_, ienq,   ,\n  { {0x69cd002a, 0x290b0020, 0x79840020, 0x00000000}},  //   _ghae, caca_, _uliw,\n  { {0x3f8500b0, 0x9f440026, 0x19bb009b, 0x00000000}},  // [9e00] _ollu_, _fumè_, _במקב,\n  { {0x7bc1018e, 0x425600ed, 0x6e2302fc, 0x00000000}},  //   nllu, итет, kunb,\n  { {0x00e601fb, 0x171b0049, 0x7bc1315a, 0x00000000}},  //   ажен, _בויע, illu,\n  { {0x3f850016, 0x3160008e, 0x7ae30288, 0x00000000}},  //   _allu_, ñiz_, _lgnt,\n  { {0x60c90036, 0x33d60088, 0x1b1d0044, 0x00000000}},  //   _czem, _вівт, ব্যে_,\n  { {0x60c90089, 0x6e2302d4, 0x00000000, 0x00000000}},  //   _dzem, funb,   ,\n  { {0x443200ab, 0xe8e00011, 0x6b9a00d4, 0x00000000}},  //   lty_, _muối_, vitg,\n  { {0xe817001c, 0xad660025, 0x290b008e, 0x00000000}},  //   _तिला_, شابه, xaca_,\n  { {0x6b9a001c, 0x290b0091, 0x3b070082, 0x00000000}},  //   titg, vaca_, _benq_,\n  { {0x69cd01f3, 0x61e001bf, 0x6e230093, 0x00000000}},  //   _shae, _himl, bunb,\n  { {0x61e0047f, 0x443213b3, 0x3f9c0020, 0x00000000}},  //   _kiml, hty_, mivu_,\n  { {0x443208e2, 0x3f9c0020, 0x60c000b0, 0x00000000}},  //   kty_, livu_, _kymm,\n  { {0x290b0213, 0xdbdc00b9, 0x63bc0bf8, 0x00000000}},  //   raca_, lšíh, _okrn,\n  { {0xe8e0001d, 0x68e4007f, 0xaa5800a1, 0x00000000}},  //   _cuối_, _egid, _ملتا_,\n  { {0x443200b4, 0x290b04eb, 0x656d03e1, 0x00000000}},  //   ety_, paca_, tjah,\n  { {0xaadb00a0, 0x61e001f3, 0x7dc512c3, 0x00000000}},  //   _בחור, _niml, jósl,\n  { {0x799d0066, 0x656d01a2, 0x443201d6, 0x00000000}},  // [9e10] misw, rjah, gty_,\n  { {0x799d0116, 0x656d010f, 0x3f9c315b, 0x00000000}},  //   lisw, sjah, jivu_,\n  { {0x60c90047, 0x44320036, 0x3267315c, 0x00000000}},  //   _szem, aty_, штав,\n  { {0x799d0173, 0x27e90145, 0xdceb002b, 0x00000000}},  //   nisw, _kuan_, _imgħ,\n  { {0x27e92352, 0x7bc11e06, 0x7f43010f, 0x00000000}},  //   _juan_, yllu, tenq,\n  { {0x2d86315d, 0x60c900ca, 0x43850025, 0x00000000}},  //   _aloe_, _vzem, _السق,\n  { {0x27e90065, 0xceb4006b, 0x7f4300d4, 0x00000000}},  //   _luan_, şən_, renq,\n  { {0x6e23002d, 0xee36007e, 0x4d651649, 0x00000000}},  //   runb, ёны_, скив,\n  { {0x60c9315e, 0x6e230032, 0x60c008c9, 0x00000000}},  //   _uzem, sunb, _gymm,\n  { {0x5f740054, 0x6f0800d9, 0x00000000, 0x00000000}},  //   _والر, _gedc,   ,\n  { {0xe9da0265, 0xe7e1013d, 0x9f95010e, 0x00000000}},  //   лко_, _गंजा_, _müün_,\n  { {0x4432270b, 0x186a041f, 0x27e9315f, 0x00000000}},  //   yty_, гами_, _buan_,\n  { {0x44323160, 0xf71a007e, 0x00000000, 0x00000000}},  //   xty_, лівы_,   ,\n  { {0x27e90065, 0xd62a0175, 0x291e014a, 0x00000000}},  //   _duan_, логе_, şta_,\n  { {0xc9f501f7, 0xfaa2019d, 0x44320253, 0x00000000}},  //   _استع, _нашо, wty_,\n  { {0x3f9c0bf8, 0x443227dd, 0xb6a3053f, 0x00000000}},  //   zivu_, tty_, числ,\n  { {0x61e012d8, 0xd467026b, 0x443200ab, 0x00000000}},  // [9e20] _riml, бите_, uty_,\n  { {0x212d023a, 0x09cd0044, 0xdb011db2, 0x00000000}},  //   _aceh_, _রূপা, moló,\n  { {0x44320652, 0x06d60055, 0x649e002b, 0x00000000}},  //   sty_, _ত্রি, _sħiħ,\n  { {0x443207ff, 0x2c180061, 0x3aba0049, 0x00000000}},  //   pty_, _दिलं_, אמענ,\n  { {0xb87b285a, 0x3a250250, 0xdb010321, 0x00000000}},  //   ncíp, hulp_, noló,\n  { {0xe82002d2, 0x44200065, 0x39520133, 0x00000000}},  //   _बिना_, mri_, _lays_,\n  { {0xa24800e9, 0x3f9c0066, 0x44202848, 0x00000000}},  //   _خیال_, rivu_, lri_,\n  { {0x44200015, 0x3f9c021e, 0xdbdc013e, 0x00000000}},  //   ori_, sivu_, ršíh,\n  { {0x799d000a, 0x40960025, 0x00000000, 0x00000000}},  //   visw, _الذر,   ,\n  { {0x4420009f, 0xdb0111c8, 0x27e90ccd, 0x00000000}},  //   iri_, doló, _ruan_,\n  { {0x4420014a, 0xed060014, 0x7dea0036, 0x00000000}},  //   hri_, _هواپ, _męsk,\n  { {0x442001aa, 0x27e9288b, 0x8afc0036, 0x00000000}},  //   kri_, _puan_, ejęt,\n  { {0x27e90a91, 0x39520038, 0x8c43004d, 0x00000000}},  //   _quan_, _days_, _неце,\n  { {0x799d04fa, 0x27e90065, 0x00000000, 0x00000000}},  //   sisw, _vuan_,   ,\n  { {0x44200daa, 0x7d25000c, 0x00000000, 0x00000000}},  //   eri_, _útsý,   ,\n  { {0x44203161, 0xe9a401fc, 0xb8cf0044, 0x00000000}},  //   fri_, _најп, _কর_,\n  { {0x4420009f, 0xdb01029d, 0x53990147, 0x00000000}},  // [9e30] gri_, coló, авая_,\n  { {0xdce90243, 0xdb0100f6, 0x00000000, 0x00000000}},  //   vječ, lolò,   ,\n  { {0x26c70027, 0x0736009b, 0x00000000, 0x00000000}},  //   _áno_, _ואתם_,   ,\n  { {0x44201b45, 0xdce90243, 0xdb013162, 0x00000000}},  //   bri_, tječ, nolò,\n  { {0xa069003b, 0xa3d50751, 0x25a9001a, 0x00000000}},  //   рала_, _момч, mnal_,\n  { {0xfe700014, 0xdce90166, 0x66fb0309, 0x00000000}},  //   کده_, rječ, ्रिक_,\n  { {0x25a90ac4, 0xdce9016e, 0x877c01ce, 0x00000000}},  //   onal_, sječ, ראוי,\n  { {0x4c8501fb, 0x25a93163, 0xee36008b, 0x00000000}},  //   жлив, nnal_, іны_,\n  { {0x39522a24, 0x25a90544, 0xdb0100d4, 0x00000000}},  //   _rays_, inal_, dolò,\n  { {0x39520038, 0xeb99012b, 0xdceb0035, 0x00000000}},  //   _says_, рио_, _bogă,\n  { {0x3952028c, 0x89aa0057, 0x8cf5007e, 0x00000000}},  //   _pays_, иков_, _дзец,\n  { {0x44203164, 0x645d0066, 0xdb0103b5, 0x00000000}},  //   yri_, _orsi, toló,\n  { {0x77770066, 0x4420006b, 0xe8e00082, 0x00000000}},  //   _boxx, xri_, _ruồi_,\n  { {0x44200263, 0xdb0110fa, 0xc31f0044, 0x00000000}},  //   vri_, roló, ন্তি_,\n  { {0x645d11a7, 0x644f0207, 0xdb013165, 0x00000000}},  //   _arsi, _asci, soló,\n  { {0x44201b3e, 0x25a900ab, 0xdb013166, 0x00000000}},  //   tri_, gnal_, colò,\n  { {0x44200bd5, 0x7d0b3167, 0x00000000, 0x00000000}},  // [9e40] uri_, _megs,   ,\n  { {0x44200756, 0x7d0b0010, 0x69c601e5, 0x00000000}},  //   rri_, _legs, llke,\n  { {0x644f06c2, 0x44200d92, 0x645d14c9, 0x00000000}},  //   _esci, sri_, _ersi,\n  { {0x637b0035, 0x00000000, 0x00000000, 0x00000000}},  //   _sînt,   ,   ,\n  { {0xf9930104, 0x69c60032, 0x00000000, 0x00000000}},  //   ורא_, ilke,   ,\n  { {0xdfcf0379, 0xceb4006b, 0x2b800173, 0x00000000}},  //   نين_, şəm_, _gòch_,\n  { {0xed5000a1, 0xa3d7007d, 0x00000000, 0x00000000}},  //   ٹھا_, ागर_,   ,\n  { {0x25a02bd0, 0x61fe3168, 0xc31f0044, 0x00000000}},  //   niil_, mppl, ন্দি_,\n  { {0x8c4300ed, 0xb14301e1, 0x5f2a01ab, 0x00000000}},  //   дење, _інфл, _возм_,\n  { {0x25ad0e3b, 0x25a90b41, 0x61fe0056, 0x00000000}},  //   čeli_, znal_, oppl,\n  { {0xa2a0013d, 0x00000000, 0x00000000, 0x00000000}},  //   _गेम्,   ,   ,\n  { {0x2d8d0145, 0x00000000, 0x00000000, 0x00000000}},  //   chee_,   ,   ,\n  { {0xb8f3024c, 0xdb010129, 0xf99f0026, 0x00000000}},  //   _वर_, rolò, riè_,\n  { {0x68f60016, 0x656602d4, 0x00000000, 0x00000000}},  //   _efyd, _ankh,   ,\n  { {0x693300b9, 0xdb23000c, 0x68f60016, 0x00000000}},  //   _přeč, _þrát, _ffyd,\n  { {0x481506e1, 0x645d0142, 0x2d84007f, 0x00000000}},  //   _емис, _prsi, nkme_,\n  { {0x25a90038, 0xe8e00011, 0x6fca01f5, 0x00000000}},  // [9e50] rnal_, _buổi_, ितां,\n  { {0xd25b26f5, 0x645d0107, 0x656600bb, 0x00000000}},  //   ице_, _vrsi, _enkh,\n  { {0xed590107, 0x25a0006c, 0x6fc400d4, 0x00000000}},  //   lože_, biil_, còci,\n  { {0x2b8001aa, 0x645d016c, 0x6d870288, 0x00000000}},  //   _wòch_, _trsi, _añan,\n  { {0x644f0207, 0x7d0b0007, 0x645d1290, 0x00000000}},  //   _usci, _regs, _ursi,\n  { {0x44290149, 0xd3430167, 0x752d04de, 0x00000000}},  //   mua_, _تفسی, lgaz,\n  { {0x44292cbb, 0x2d8d0270, 0x29020036, 0x00000000}},  //   lua_, thee_, ybka_,\n  { {0x752d000b, 0x3cf7013d, 0x44293169, 0x00000000}},  //   ngaz, ीरें_, oua_,\n  { {0x7d0b0635, 0x644d005b, 0x00000000, 0x00000000}},  //   _vegs, nwai,   ,\n  { {0x7d0b316a, 0x291b00f6, 0x2d8d2134, 0x00000000}},  //   _wegs, _adqa_, shee_,\n  { {0x442900b0, 0x644d005b, 0x00000000, 0x00000000}},  //   hua_, hwai,   ,\n  { {0x44290459, 0x66150036, 0x2d840146, 0x00000000}},  //   kua_, dszk, ckme_,\n  { {0x442928d3, 0x2d9d0009, 0x22430022, 0x00000000}},  //   jua_, _imwe_, _lpjk_,\n  { {0x4429316b, 0x752d0207, 0x644d0016, 0x00000000}},  //   dua_, egaz, dwai,\n  { {0x7c2905b7, 0xdb1a0023, 0x00000000, 0x00000000}},  //   luer, zotë,   ,\n  { {0x44290020, 0x25080014, 0x291e0006, 0x00000000}},  //   fua_, ترسی_, ėtas_,\n  { {0x442928f4, 0x7c290056, 0xd467005e, 0x00000000}},  // [9e60] gua_, nuer, пите_,\n  { {0x25a003d8, 0xf74a0025, 0x00000000, 0x00000000}},  //   siil_, _الدي_,   ,\n  { {0x24860142, 0x24920046, 0xb77b00b6, 0x00000000}},  //   šom_, szym_, _האיש,\n  { {0x7c2900eb, 0x44292340, 0x3cf7013d, 0x00000000}},  //   kuer, bua_, ीरों_,\n  { {0xe8e0001d, 0x4429316c, 0xf9930049, 0x00000000}},  //   _tuổi_, cua_, ערד_,\n  { {0xfbc705f3, 0x2d9d0009, 0x7c29316d, 0x00000000}},  //   _ست_, _amwe_, duer,\n  { {0x39400026, 0x67eb002b, 0x2d9d0146, 0x00000000}},  //   _obis_, _iżje, _bmwe_,\n  { {0x7c290211, 0x2ca90006, 0x3218009d, 0x00000000}},  //   fuer, _žada_, _ivry_,\n  { {0x7c2904bd, 0x2c1c0061, 0x8e200088, 0x00000000}},  //   guer, _मिळू_, рiв_,\n  { {0x5ede0055, 0x61ee1bd7, 0x394004cb, 0x00000000}},  //   নুষে, _kubl, _abis_,\n  { {0x4429316e, 0x61ee2849, 0xfbcf0025, 0x00000000}},  //   zua_, _jubl, دتي_,\n  { {0xed59004f, 0x63be01ca, 0x7c290056, 0x00000000}},  //   tože_, hopn, buer,\n  { {0x7c290211, 0x61ee0036, 0x4429002d, 0x00000000}},  //   cuer, _lubl, xua_,\n  { {0x61ee028c, 0x4429316f, 0x00000000, 0x00000000}},  //   _oubl, vua_,   ,\n  { {0x7bda009f, 0xc668003b, 0x61ee1f51, 0x00000000}},  //   mmtu, пште_, _nubl,\n  { {0x44291e3a, 0x7bc801e5, 0x644d0544, 0x00000000}},  //   tua_, lldu, twai,\n  { {0x3f8c01f6, 0x798d0058, 0x752d0232, 0x00000000}},  // [9e70] _oldu_, _ilaw, rgaz,\n  { {0x4429022b, 0xe97300a1, 0x394b00f6, 0x00000000}},  //   rua_, _آنکھ, lecs_,\n  { {0x4429022b, 0x213f00e0, 0x61fc02d1, 0x00000000}},  //   sua_, _pbuh_, _ctrl,\n  { {0x61ee006c, 0x7dc5029d, 0xdd8605d4, 0x00000000}},  //   _dubl, pósi, _شو_,\n  { {0x44290207, 0x3218009d, 0xe8e00082, 0x00000000}},  //   qua_, _evry_, _duỗi_,\n  { {0x798d018e, 0x394b009d, 0x3f9e0145, 0x00000000}},  //   _llaw, hecs_, _cmtu_,\n  { {0x6442009d, 0xdb1a00d6, 0x61ee04eb, 0x00000000}},  //   çoiv, coté, _gubl,\n  { {0x7c29277a, 0x7bc80277, 0xe46a014a, 0x00000000}},  //   tuer, eldu, ıköğ,\n  { {0x32010178, 0x5ede0044, 0x00000000, 0x00000000}},  //   lphy_, নুলে,   ,\n  { {0x798d3170, 0x7c29003a, 0x79860022, 0x00000000}},  //   _alaw, ruer, wkkw,\n  { {0x7c290058, 0x394a00d7, 0x32010b3d, 0x00000000}},  //   suer, озно_, nphy_,\n  { {0x7c293171, 0x2d9d0061, 0x798d3172, 0x00000000}},  //   puer, _umwe_, _claw,\n  { {0x7c2906c0, 0xd91000a1, 0x76450026, 0x00000000}},  //   quer, نیں_, _aphy,\n  { {0x61fb0521, 0x00000000, 0x00000000, 0x00000000}},  //   _čuln,   ,   ,\n  { {0x798d0133, 0xe737007c, 0x2bba0061, 0x00000000}},  //   _flaw, ьер_, ईकरा,\n  { {0x9952010a, 0xe8170061, 0x61ee016e, 0x00000000}},  //   ršų_, _तिचा_, _rubl,\n  { {0x63be0059, 0x64a30c27, 0x61fc00ca, 0x00000000}},  // [9e80] topn, вата, _strl,\n  { {0x387f01a2, 0x7dea0006, 0x00000000, 0x00000000}},  //   äure_, _kęst,   ,\n  { {0x63be0395, 0x7dc50010, 0x00000000, 0x00000000}},  //   ropn, lósu,   ,\n  { {0x2f0a0036, 0x63be01d6, 0xdb1a220d, 0x00000000}},  //   _mógł_, sopn, roté,\n  { {0x7bc8009f, 0x7bc3023a, 0x9f4501aa, 0x00000000}},  //   yldu, _oknu, _kilè_,\n  { {0x61ee006c, 0xdfd00076, 0xdb1a0161, 0x00000000}},  //   _tubl, ديت_, poté,\n  { {0x69c405fd, 0x00000000, 0x00000000, 0x00000000}},  //   _okie,   ,   ,\n  { {0x2dd70025, 0xdb01000c, 0x6e2a01a2, 0x00000000}},  //   وبية_, nnlæ, rufb,\n  { {0x7e870006, 0x21a3012c, 0xdb010023, 0x00000000}},  //   _įspū, _ритм, cilë,\n  { {0x798d0a77, 0x69c40020, 0x00000000, 0x00000000}},  //   _slaw, _akie,   ,\n  { {0xd0130055, 0x394b00d4, 0xe9f803e8, 0x00000000}},  //   _সময়_, tecs_, янні_,\n  { {0x1ea90076, 0x69d601aa, 0x644600d9, 0x00000000}},  //   _عالي_, _chye, _opki,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x394b00f6, 0x00000000, 0x00000000, 0x00000000}},  //   secs_,   ,   ,\n  { {0x9f450173, 0x52bf0164, 0x7dea00b4, 0x00000000}},  //   _dilè_, _्रेस, _gęst,\n  { {0x58d501ab, 0x999900b4, 0x00000000, 0x00000000}},  //   _пойт, żyła_,   ,\n  { {0x9f450173, 0xdb013173, 0x00000000, 0x00000000}},  // [9e90] _filè_, rolö,   ,\n  { {0x6d97001a, 0x58d8007e, 0xdb010190, 0x00000000}},  //   nţar, _ідэя_, anlæ,\n  { {0x644600f6, 0x00000000, 0x00000000, 0x00000000}},  //   _epki,   ,   ,\n  { {0x32013174, 0x7dc5008e, 0xe5070318, 0x00000000}},  //   rphy_, nóst, _تبدي,\n  { {0x3f6901fc, 0x69dd0051, 0x92c10044, 0x00000000}},  //   зило_, imse, ুশে_,\n  { {0x443b0009, 0x7e6100f6, 0x9f4500d4, 0x00000000}},  //   mtq_, _prlp, _xilè_,\n  { {0xee39103e, 0x657d3175, 0x68ed016c, 0x00000000}},  //   їни_, _kosh, _ogad,\n  { {0x657d21b4, 0x68ed0591, 0x6d870a02, 0x00000000}},  //   _josh, _ngad, _iñak,\n  { {0x657d0a9e, 0xed5901ee, 0xdb010068, 0x00000000}},  //   _mosh, rdž_, lilé,\n  { {0x69c40d31, 0x61e90270, 0x657d01ee, 0x00000000}},  //   _skie, _hiel, _losh,\n  { {0x61e9021e, 0xa2d30061, 0x6285278e, 0x00000000}},  //   _kiel, भेच्, nyho,\n  { {0x657d0061, 0xf9920380, 0x63a50052, 0x00000000}},  //   _nosh, ابد_, hihn,\n  { {0x61e9021e, 0x44390065, 0xdb083176, 0x00000000}},  //   _miel, _nqs_, godó,\n  { {0x61e9001e, 0x6d593177, 0x7c3b0065, 0x00000000}},  //   _liel, _hawa, mtur,\n  { {0x6d590127, 0x657d0065, 0x69d60065, 0x00000000}},  //   _kawa, _bosh, _thye,\n  { {0x6d5b2092, 0x61e93178, 0x6d59020c, 0x00000000}},  //   ndua, _niel, _jawa,\n  { {0x6d591bc5, 0xa49b0009, 0x60c93179, 0x00000000}},  // [9ea0] _mawa, _seòr, _nyem,\n  { {0x6d5901a3, 0x68ed1070, 0x7c3b0032, 0x00000000}},  //   _lawa, _zgad, itur,\n  { {0x61e914ae, 0x657d0065, 0xdcdd0082, 0x00000000}},  //   _biel, _fosh, _sỉlẻ_,\n  { {0x6d5911ad, 0x7c3b0292, 0x61e903fd, 0x00000000}},  //   _nawa, ktur, _ciel,\n  { {0x4fc6317a, 0x61e9317b, 0x7bc1317c, 0x00000000}},  //   нска, _diel, kolu,\n  { {0x7c3b0190, 0x6d590058, 0x2912196c, 0x00000000}},  //   dtur, _aawa, _leya_,\n  { {0x61e90038, 0x6d59317d, 0xd04e005f, 0x00000000}},  //   _fiel, _bawa, _ədəb,\n  { {0xdd970057, 0x7c3b20f0, 0x6d5921e6, 0x00000000}},  //   ешь_, ftur, _cawa,\n  { {0x6d591b40, 0x7c3b011c, 0x68ed00d9, 0x00000000}},  //   _dawa, gtur, _rgad,\n  { {0x61e9317e, 0x09c902f4, 0x1e96017a, 0x00000000}},  //   _ziel, रत्य, _прер,\n  { {0x200d001f, 0x0c730167, 0x61e9317f, 0x00000000}},  //   _zwei_, ندید, _yiel,\n  { {0x6d59006a, 0x67eb0066, 0x7c3b1f37, 0x00000000}},  //   _gawa, _ażja, btur,\n  { {0x7bc1011c, 0xcb6a003b, 0x69dd0c4c, 0x00000000}},  //   bolu, _наде_, rmse,\n  { {0x6d592da9, 0x7bc1000d, 0xef0e007e, 0x00000000}},  //   _zawa, colu, амi_,\n  { {0xa2a0001c, 0x657d008d, 0x8624004c, 0x00000000}},  //   _गेल्, _posh, льте,\n  { {0xdb010f07, 0x68ed016c, 0x657d05ff, 0x00000000}},  //   vilé, _ugad, _qosh,\n  { {0x61e91f38, 0x93270014, 0xf99401ce, 0x00000000}},  // [9eb0] _riel, فران, _תרפ_,\n  { {0x61e93180, 0x25a20022, 0x60c90045, 0x00000000}},  //   _siel, _emkl_, _ryem,\n  { {0x61e92e3f, 0x657d14ee, 0xe139007e, 0x00000000}},  //   _piel, _tosh, дзеі_,\n  { {0x61e90065, 0x1c210061, 0x7c3b007f, 0x00000000}},  //   _qiel, _मिलल_, ytur,\n  { {0x61e93181, 0x29d9002a, 0x6d59003f, 0x00000000}},  //   _viel, méad_, _rawa,\n  { {0x61e90046, 0xdce90182, 0xa066003b, 0x00000000}},  //   _wiel, ljeć, таша_,\n  { {0x44290092, 0x6d400109, 0x61e93182, 0x00000000}},  //   lra_, ffma, _tiel,\n  { {0x7c3b13f0, 0x4429111b, 0x1c450088, 0x00000000}},  //   ttur, ora_, вним,\n  { {0x442901f6, 0x7bc110fb, 0x6d5b3183, 0x00000000}},  //   nra_, tolu, rdua,\n  { {0x44291160, 0x6d5904d4, 0xdb2300a2, 0x00000000}},  //   ira_, _wawa, دودی,\n  { {0x44293184, 0x09d60055, 0x6d590d56, 0x00000000}},  //   hra_, _সংবা, _tawa,\n  { {0x44290047, 0x7c3b0585, 0x00000000, 0x00000000}},  //   kra_, ptur,   ,\n  { {0x2912011f, 0x44293185, 0x7d0901a3, 0x00000000}},  //   _veya_, jra_, mbes,\n  { {0x44293186, 0x7afa001c, 0x70130044, 0x00000000}},  //   dra_, cctt, _সমাজ_,\n  { {0x44293187, 0x65b301d5, 0x395b00ab, 0x00000000}},  //   era_, għho, _faqs_,\n  { {0x7d093188, 0x8936031d, 0xf8660ceb, 0x00000000}},  //   nbes, _شعبا, _авио,\n  { {0x44293189, 0xd706005e, 0x28de013d, 0x00000000}},  // [9ec0] gra_, _изпи, नेशि,\n  { {0x78ad00b9, 0xdb0801e5, 0x06860139, 0x00000000}},  //   šová, yndí, _агон,\n  { {0x44291d24, 0x7c29001f, 0x7d090007, 0x00000000}},  //   ara_, hrer, kbes,\n  { {0x29d90051, 0x7d09318a, 0x6fcd1866, 0x00000000}},  //   céad_, jbes, lúch,\n  { {0x317f01aa, 0x7d090190, 0x00000000, 0x00000000}},  //   _douz_, dbes,   ,\n  { {0x7c2900d4, 0xce6a0fd8, 0x7d0920bf, 0x00000000}},  //   drer, дрид_, ebes,\n  { {0x7d09021f, 0xf3f40044, 0x7c2901a2, 0x00000000}},  //   fbes, _ছবির_, erer,\n  { {0x7d0918ee, 0x7c2900c4, 0x6ce601ff, 0x00000000}},  //   gbes, frer, кіпе,\n  { {0xc0450151, 0x00000000, 0x00000000, 0x00000000}},  //   _مخلو,   ,   ,\n  { {0xf41300b6, 0x7d0901c3, 0x00000000, 0x00000000}},  //   ספת_, abes,   ,\n  { {0xc333019b, 0x7d092c04, 0x7c290843, 0x00000000}},  //   בות_, bbes, arer,\n  { {0x7c290219, 0x44290635, 0x6f180059, 0x00000000}},  //   brer, yra_, lavc,\n  { {0x6602016c, 0x4429002b, 0x7c290068, 0x00000000}},  //   _čoka, xra_, crer,\n  { {0x44292b2b, 0x6f1801ee, 0x60180051, 0x00000000}},  //   vra_, navc, _zúmá,\n  { {0x4429002b, 0x2b921125, 0x00000000, 0x00000000}},  //   wra_, _میکس,   ,\n  { {0xa9c40088, 0x00000000, 0x00000000, 0x00000000}},  //   _вськ,   ,   ,\n  { {0x44290a16, 0x29190127, 0xf8bf318b, 0x00000000}},  // [9ed0] ura_, masa_, rgés_,\n  { {0x4429318c, 0x29190169, 0x69cf0270, 0x00000000}},  //   rra_, lasa_, llce,\n  { {0x6f18037e, 0x44290ec9, 0x29d90051, 0x00000000}},  //   davc, sra_, péad_,\n  { {0x4429000d, 0x29190051, 0x32640d68, 0x00000000}},  //   pra_, nasa_, штув,\n  { {0x3a3e0846, 0x4429002b, 0x656f0585, 0x00000000}},  //   http_, qra_, _inch,\n  { {0x25a9001c, 0x2919020c, 0x2d82318d, 0x00000000}},  //   lial_, hasa_, öken_,\n  { {0x68fd001c, 0x29190032, 0xf77400a0, 0x00000000}},  //   kcsd, kasa_, יקס_,\n  { {0x7c29001a, 0x61f5012d, 0x29190415, 0x00000000}},  //   trer, _iuzl, jasa_,\n  { {0x7c2900eb, 0x6d950010, 0x2919013f, 0x00000000}},  //   urer, _ráad, dasa_,\n  { {0x7c290ed6, 0x7d09010f, 0x656f0009, 0x00000000}},  //   rrer, sbes, _lnch,\n  { {0x656f255a, 0x6fcd0027, 0x7d090116, 0x00000000}},  //   _onch, júci, pbes,\n  { {0x29190058, 0x7c291f7c, 0xdb011ad4, 0x00000000}},  //   gasa_, prer, milí,\n  { {0x31560049, 0x9b4506b4, 0x25a90133, 0x00000000}},  //   נישן_, _منشو, dial_,\n  { {0x656f051b, 0x69cf00ca, 0x2d8d00b0, 0x00000000}},  //   _anch, alce, lkee_,\n  { {0x2919006a, 0x6fcd318e, 0x00000000, 0x00000000}},  //   basa_, rúch,   ,\n  { {0x29192a8f, 0x6fc50061, 0x6fcd0048, 0x00000000}},  //   casa_, ाकडू, súch,\n  { {0x2bf60049, 0x69c60006, 0x036a02dc, 0x00000000}},  // [9ee0] ָמען_, moke, ниак_,\n  { {0x69c6184d, 0x656f318f, 0x25bf3190, 0x00000000}},  //   loke, _ench, čula_,\n  { {0x201f04bd, 0xb226007e, 0x6f183191, 0x00000000}},  //   _avui_, умел, vavc,\n  { {0x05560069, 0xf67b0049, 0x69c619a7, 0x00000000}},  //   _стоя, _נאכמ, noke,\n  { {0xdefa0057, 0xa0670c27, 0x80cc0044, 0x00000000}},  //   ный_, лаца_, ়েন্,\n  { {0x44321a16, 0xdb1a0010, 0xcf260025, 0x00000000}},  //   muy_, kotá, ارشي,\n  { {0x29191f77, 0x69cf0146, 0x69c600b0, 0x00000000}},  //   yasa_, ylce, koke,\n  { {0x69c6023a, 0xdb0800c4, 0x99420036, 0x00000000}},  //   joke, cidê, _cóż_,\n  { {0x69c60020, 0x4127005e, 0x443200e0, 0x00000000}},  //   doke, _щото_, nuy_,\n  { {0x40930054, 0x2919252e, 0x25a93192, 0x00000000}},  //   _الكر, wasa_, zial_,\n  { {0x2919003b, 0x44320082, 0xc333009b, 0x00000000}},  //   tasa_, huy_, זות_,\n  { {0xdb010181, 0x61e2005b, 0x69c60032, 0x00000000}},  //   gilâ, nmol, goke,\n  { {0x29193193, 0x25a906c2, 0x4432008e, 0x00000000}},  //   rasa_, vial_, juy_,\n  { {0x29190020, 0x443203e5, 0x61e20cba, 0x00000000}},  //   sasa_, duy_, hmol,\n  { {0x2919015e, 0x69c605ad, 0x25a90388, 0x00000000}},  //   pasa_, boke, tial_,\n  { {0x555802f0, 0x69c60022, 0xdb0300f6, 0x00000000}},  //   лася_, coke, _amnè,\n  { {0xdb080181, 0xe315025f, 0x3949004a, 0x00000000}},  // [9ef0] vidê, имањ, _ibas_,\n  { {0x25a93194, 0x44270c8a, 0x05150044, 0x00000000}},  //   sial_, čn_, িলের_,\n  { {0xd2510379, 0x7ceb0047, 0x3255007c, 0x00000000}},  //   تنا_, _körü, рвер,\n  { {0x3d0e013d, 0x44323195, 0xbbd00061, 0x00000000}},  //   सरों_, buy_, हतुक,\n  { {0x6536007b, 0x39490065, 0xf3ff0181, 0x00000000}},  //   _דארף_, _mbas_, _irão_,\n  { {0xdb080181, 0x8e85025f, 0x61f505f9, 0x00000000}},  //   sidê, игле, _tuzl,\n  { {0xed591001, 0x6d870032, 0x09d60044, 0x00000000}},  //   вой_, _oñat, _সংসা,\n  { {0x9f4c01aa, 0x38690035, 0x2d8d0133, 0x00000000}},  //   _lidè_, _orar_, ukee_,\n  { {0x69c63196, 0xff250014, 0x2d8d0052, 0x00000000}},  //   voke, _نبای, rkee_,\n  { {0x257c00b9, 0x8b2500ed, 0x39490089, 0x00000000}},  //   _díly_, јдне, _abas_,\n  { {0x69c6000b, 0xa2cb02f4, 0x2fc73197, 0x00000000}},  //   toke, _तुम्, mong_,\n  { {0x2fc7066d, 0x4e940025, 0x00000000, 0x00000000}},  //   long_, _اشكر,   ,\n  { {0x69c600b5, 0xa2a702d2, 0x7d1b00f2, 0x00000000}},  //   roke, _टेस्, maus,\n  { {0x7d1b009f, 0x2fc7006a, 0x386902e1, 0x00000000}},  //   laus, nong_, _drar_,\n  { {0x66e63198, 0x69c6000b, 0x61e20628, 0x00000000}},  //   рова, poke, ymol,\n  { {0x7ceb01f6, 0x6b83050c, 0x2fc7006a, 0x00000000}},  //   _görü, _hong, hong_,\n  { {0x6b833199, 0x2fc71312, 0xd6d90036, 0x00000000}},  // [9f00] _kong, kong_, ęła_,\n  { {0x6b83015c, 0x2fc71372, 0xb6a60216, 0x00000000}},  //   _jong, jong_, _виол,\n  { {0x2fc7006a, 0x7d1b2e23, 0xf3c9023c, 0x00000000}},  //   dong_, kaus, ابقه_,\n  { {0x614601e9, 0x7d1b0997, 0x6b83319a, 0x00000000}},  //   реда, jaus, _long,\n  { {0x61e2002b, 0x20560920, 0x7d1b007f, 0x00000000}},  //   rmol, ртер, daus,\n  { {0x7996018e, 0x2fc7006a, 0x4420023a, 0x00000000}},  //   _llyw, gong_, msi_,\n  { {0x4420000c, 0x91e615c4, 0x257c01dc, 0x00000000}},  //   lsi_, _вове, _síly_,\n  { {0x44200006, 0x442200b5, 0x7d1b0006, 0x00000000}},  //   osi_, _kvk_, gaus,\n  { {0x4420008a, 0x6b83000b, 0x2fc7006a, 0x00000000}},  //   nsi_, _bong, bong_,\n  { {0x4420021e, 0x23c6013d, 0xbea60245, 0x00000000}},  //   isi_, वविद, _казк,\n  { {0x7d1b0171, 0x6e210009, 0x799601d6, 0x00000000}},  //   baus, _gvlb, _blyw,\n  { {0x4420319b, 0x7d1b0038, 0x8c46004c, 0x00000000}},  //   ksi_, caus, _веде,\n  { {0xfce61281, 0x6b830f57, 0x44200161, 0x00000000}},  //   _тодо, _fong, jsi_,\n  { {0x6b830056, 0x395f0dec, 0x8c1b00a3, 0x00000000}},  //   _gong, žus_, _יודי,\n  { {0x7c22137b, 0x61410047, 0x7bc8002d, 0x00000000}},  //   _hvor, náló, modu,\n  { {0x4420000b, 0x3915003b, 0x7c2201ee, 0x00000000}},  //   fsi_, _умир, _kvor,\n  { {0x2fc7006a, 0xe4e701fb, 0x6b8304e2, 0x00000000}},  // [9f10] yong_, рівн, _yong,\n  { {0x7d1b0006, 0x47353139, 0x7bc80145, 0x00000000}},  //   zaus, _унос, nodu,\n  { {0x4420319c, 0x7d1b0045, 0x2fc702d4, 0x00000000}},  //   asi_, yaus, vong_,\n  { {0xf650026c, 0xdb080129, 0x2fc709f3, 0x00000000}},  //   _کئی_, sidè, wong_,\n  { {0x44200047, 0x2fc7319d, 0x55760049, 0x00000000}},  //   csi_, tong_, _הערן_,\n  { {0x645d319e, 0x7d0200e5, 0x00000000, 0x00000000}},  //   _issi, _afos,   ,\n  { {0x2fc7006a, 0x22950054, 0xce18008b, 0x00000000}},  //   rong_, _الأس, ацыі_,\n  { {0x2fc7319f, 0x6b8300ab, 0x56b8009b, 0x00000000}},  //   song_, _song, יפון_,\n  { {0x7d1b0109, 0x6b830211, 0x2fc70760, 0x00000000}},  //   raus, _pong, pong_,\n  { {0x7c2204a9, 0x6b9a01aa, 0x7d1b010f, 0x00000000}},  //   _dvor, ghtg, saus,\n  { {0x7d1b0778, 0x6b8301e5, 0x44200458, 0x00000000}},  //   paus, _vong, zsi_,\n  { {0x44200e34, 0x645d01bc, 0x3f8501e5, 0x00000000}},  //   ysi_, _ossi, _holu_,\n  { {0x4420005f, 0x8d5a009b, 0x31560049, 0x00000000}},  //   xsi_, _תכני, זירן_,\n  { {0x4420037e, 0x6b83000b, 0x6b9a111d, 0x00000000}},  //   vsi_, _uong, chtg,\n  { {0x645d0335, 0x7c220521, 0xdb1a0051, 0x00000000}},  //   _assi, _zvor, altó,\n  { {0x7d19000a, 0xe5a30867, 0xdb080232, 0x00000000}},  //   _jews, писи, vidé,\n  { {0x7b060047, 0x4420010a, 0x03261969, 0x00000000}},  // [9f20] _érté, usi_, йдан,\n  { {0x44201b3e, 0x4422037f, 0xdb08009d, 0x00000000}},  //   rsi_, _vvk_, tidé,\n  { {0x216a2d6f, 0x442201c3, 0x00000000, 0x00000000}},  //   лижи_, _wvk_,   ,\n  { {0xf1a501fb, 0x29020450, 0x765e00e0, 0x00000000}},  //   орін, ncka_, _ispy,\n  { {0x442031a0, 0x3f85014a, 0x629e0f88, 0x00000000}},  //   qsi_, _bolu_, szpo,\n  { {0xd8d70049, 0x6d4b010f, 0xdb080051, 0x00000000}},  //   זונט_, _abga, pidé,\n  { {0x7c220006, 0x3f8531a1, 0x644400b0, 0x00000000}},  //   _svor, _dolu_, ltii,\n  { {0x6564011c, 0x61430816, 0x7bc80036, 0x00000000}},  //   ndih, _неса, wodu,\n  { {0x91e30001, 0x61fe001c, 0x64440943, 0x00000000}},  //   _хоте, lqpl, ntii,\n  { {0x69df0065, 0x29020024, 0x7c200009, 0x00000000}},  //   _shqe, ecka_, rsmr,\n  { {0x7bc801d5, 0x64d502fb, 0x644400b0, 0x00000000}},  //   rodu, _दर्श, htii,\n  { {0x7c220027, 0x644408b2, 0x7bc80035, 0x00000000}},  //   _tvor, ktii, sodu,\n  { {0x399b008d, 0xa3d8062e, 0x3f850279, 0x00000000}},  //   _nëse_, ाता_, _yolu_,\n  { {0x0a9417fa, 0xaa940fd8, 0x6f1a0068, 0x00000000}},  //   _малю, _милч, _jetc,\n  { {0x5694008b, 0xa143001e, 0x644f012d, 0x00000000}},  //   парт, šķir, _spci,\n  { {0x6f1a0062, 0x69cd1126, 0x7df10089, 0x00000000}},  //   _letc, _ukae, _jāsp,\n  { {0x765e0173, 0x64440058, 0x5fba007d, 0x00000000}},  // [9f30] _espy, gtii, ेवाल,\n  { {0x6f1a0082, 0xed5900ca, 0x6d9c0048, 0x00000000}},  //   _netc, roži_, _héad,\n  { {0x72b90025, 0xd6d90014, 0xa5f9012b, 0x00000000}},  //   جهاز_, _خودش_, _њему_,\n  { {0x8f6a00a1, 0x3f850095, 0x00000000, 0x00000000}},  //   یلنے_, _solu_,   ,\n  { {0x6d9c0051, 0x3f85150d, 0x6444001a, 0x00000000}},  //   _méad, _polu_, ctii,\n  { {0x3f690088, 0x7a010089, 0x2a97013f, 0x00000000}},  //   рико_, _lēta, səbə_,\n  { {0xfebb01ef, 0x29020039, 0x62341969, 0x00000000}},  //   داشت_, ycka_, _неру,\n  { {0x7dc50010, 0x236300e7, 0x6f1a00d9, 0x00000000}},  //   lósz, _hajj_, _eetc,\n  { {0xa2b9007d, 0x60db164f, 0xeb9900aa, 0x00000000}},  //   ्थव्, _uzum, иии_,\n  { {0x6f1a0061, 0x5ba90140, 0x3a25030d, 0x00000000}},  //   _getc, рком_, омог,\n  { {0xdcfb0f3a, 0xc33200a0, 0x2fc00051, 0x00000000}},  //   ljuč, ווי_, éige_,\n  { {0x6d9c2d2e, 0x644400b0, 0x00000000, 0x00000000}},  //   _réag, ytii,   ,\n  { {0xe45f021e, 0x29020145, 0x00000000, 0x00000000}},  //   _myös_, rcka_,   ,\n  { {0x1af30044, 0x6d490048, 0x6d9c009d, 0x00000000}},  //   _আজকে_, lfea, _péag,\n  { {0xba77007a, 0x6d9c002a, 0x00000000, 0x00000000}},  //   _داشت, _féad,   ,\n  { {0x6444021e, 0x29d90051, 0xf50a041f, 0x00000000}},  //   ttii, néal_, рнал_,\n  { {0x92d60055, 0xd467026b, 0x6d490051, 0x00000000}},  // [9f40] _হলে_, оите_, ifea,\n  { {0x32d60373, 0x3860002b, 0x6444010e, 0x00000000}},  //   оцес, _isir_, rtii,\n  { {0x64440368, 0x66e60a7c, 0x00000000, 0x00000000}},  //   stii, _фона,   ,\n  { {0x6f1a0009, 0x644431a2, 0x00000000, 0x00000000}},  //   _setc, ptii,   ,\n  { {0xe0560151, 0x6f1a121e, 0x29d90051, 0x00000000}},  //   تخاب, _petc, déal_,\n  { {0x44320016, 0x9e06013b, 0x68e9013f, 0x00000000}},  //   mry_, очил, ümdə,\n  { {0xdd9a0175, 0x59ca0204, 0x44320531, 0x00000000}},  //   иши_, रवार, lry_,\n  { {0x443200ab, 0x127b0049, 0x6d490048, 0x00000000}},  //   ory_, _דאלע, gfea,\n  { {0x61fc009d, 0x6d9c0ea5, 0x4432112b, 0x00000000}},  //   _hurl, _réad, nry_,\n  { {0x0b8a022a, 0x39400089, 0x44320145, 0x00000000}},  //   рсии_, _acis_, iry_,\n  { {0x9d460001, 0x443204bb, 0x8aa302d3, 0x00000000}},  //   _межд, hry_, дряд,\n  { {0x44320343, 0x61fc005b, 0x29d90051, 0x00000000}},  //   kry_, _murl, céal_,\n  { {0x92d60055, 0x9f4c00b9, 0xf77303e6, 0x00000000}},  //   _হলো_, _lidí_, واس_,\n  { {0x44320395, 0xdceb0089, 0x61fc0068, 0x00000000}},  //   dry_, _ungā, _ourl,\n  { {0x99d70a4f, 0x44320339, 0x67d40256, 0x00000000}},  //   _وتعا, ery_, фору,\n  { {0x62831469, 0x44320395, 0x00000000, 0x00000000}},  //   änom, fry_,   ,\n  { {0xb9c40054, 0x443231a3, 0x395923d6, 0x00000000}},  // [9f50] _تقيي, gry_, mess_,\n  { {0x39590038, 0xef1f0036, 0xb4db00f6, 0x00000000}},  //   less_, ążka_, _acàc,\n  { {0xe7f9001c, 0x443200ab, 0x61fc03ce, 0x00000000}},  //   ंदवा_, ary_, _curl,\n  { {0x39590038, 0x443218d5, 0xe1f8008b, 0x00000000}},  //   ness_, bry_, ігі_,\n  { {0xf99400b3, 0xd0ab00ed, 0xa2cb006e, 0x00000000}},  //   ורף_, јтед_, _तुर्,\n  { {0x61fc00ca, 0xa3d30061, 0xf8380104, 0x00000000}},  //   _furl, _हीच_, קנות_,\n  { {0x61fc103f, 0xfe5700a1, 0xc7b4009b, 0x00000000}},  //   _gurl, تیاب_, ובס_,\n  { {0x39590ee1, 0xc1770123, 0x00000000, 0x00000000}},  //   jess_, _بدست,   ,\n  { {0x29d900f4, 0x6d490051, 0x9f8901e5, 0x00000000}},  //   réal_, rfea, búð_,\n  { {0x290d002d, 0xeb99003b, 0x6d490d28, 0x00000000}},  //   ñean_, сио_, sfea,\n  { {0xa96a003b, 0x3860002b, 0x8a0500a5, 0x00000000}},  //   бина_, _ssir_, язне,\n  { {0x76470030, 0x499a004d, 0xc7a9009b, 0x00000000}},  //   dtjy, стоя_, _גב_,\n  { {0x3d110061, 0xdb0100b0, 0x00000000, 0x00000000}},  //   _ध्ये_, tilä,   ,\n  { {0xfaa51023, 0xed5931a4, 0x44320007, 0x00000000}},  //   _нало, lež_, vry_,\n  { {0xa596005e, 0x395901c5, 0x70b8007d, 0x00000000}},  //   пращ, bess_, _अश्ल,\n  { {0x39590038, 0xf99f31a5, 0x39400035, 0x00000000}},  //   cess_, chè_, _ucis_,\n  { {0x44321882, 0x38600022, 0x2d9f004a, 0x00000000}},  // [9f60] ury_, _usir_, ihue_,\n  { {0x4432190f, 0x61fc0190, 0x00000000, 0x00000000}},  //   rry_, _purl,   ,\n  { {0xe71700b6, 0x7f58001c, 0xdb0800c4, 0x00000000}},  //   _מחיר_, vevq, lidã,\n  { {0xc693007b, 0x7c2609fc, 0x0f14006e, 0x00000000}},  //   _נאר_, škri, डर्स_,\n  { {0xed592794, 0x6d9c0051, 0x6566000a, 0x00000000}},  //   dež_, _léac, _iakh,\n  { {0x8fa301fb, 0xa2a7006e, 0x8f340264, 0x00000000}},  //   наче, _टेक्, фекц,\n  { {0xaff600a1, 0x6d9c0ea5, 0x9f4411c4, 0x00000000}},  //   _کہتا_, _réab, _sumó_,\n  { {0x25a01372, 0xfe6f0257, 0x7a010089, 0x00000000}},  //   nhil_, ادو_, _pētn,\n  { {0x6566003f, 0xf0440123, 0xdb08004a, 0x00000000}},  //   _makh, _تعزی, sidí,\n  { {0x65660010, 0x25bf2dff, 0x00000000, 0x00000000}},  //   _lakh, čuli_,   ,\n  { {0x395901d5, 0x25a00145, 0x00000000, 0x00000000}},  //   tess_, khil_,   ,\n  { {0x65660085, 0x2d9f0068, 0x00000000, 0x00000000}},  //   _nakh, chue_,   ,\n  { {0xf3ff0011, 0x6d42001a, 0x25a001a3, 0x00000000}},  //   _trãi_, _icoa, dhil_,\n  { {0x6d9c002a, 0x39590e40, 0x65660087, 0x00000000}},  //   _féac, sess_, _aakh,\n  { {0x1db001f5, 0x65660145, 0x395930a3, 0x00000000}},  //   _जगात, _bakh, pess_,\n  { {0x98b90089, 0xdb0800d4, 0x1dcc0204, 0x00000000}},  //   nesī_, lidà, ावित,\n  { {0x69cf0062, 0x76470030, 0x7a0800b9, 0x00000000}},  // [9f70] moce, stjy, _děte,\n  { {0x69cf31a6, 0x889c009b, 0x00000000, 0x00000000}},  //   loce, _לבחי,   ,\n  { {0x65660145, 0xdb1a0023, 0x00000000, 0x00000000}},  //   _fakh, entë,   ,\n  { {0x25a000b5, 0x69cf0781, 0x00000000, 0x00000000}},  //   chil_, noce,   ,\n  { {0x1b220055, 0xed590bf8, 0x2378016c, 0x00000000}},  //   _মানে_, vež_, _fnrj_,\n  { {0x6566191a, 0x69cf0062, 0x00000000, 0x00000000}},  //   _zakh, hoce,   ,\n  { {0x443b2cfa, 0x69cf016c, 0xdb0800f6, 0x00000000}},  //   luq_, koce, didà,\n  { {0x6d9c00f4, 0x96270089, 0x7c950081, 0x00000000}},  //   _réac, _ieņē, дроц,\n  { {0xcc890014, 0x16040061, 0x1c42007c, 0x00000000}},  //   زنده_, _शंभर_, вным,\n  { {0x7d030010, 0x6d4200fa, 0xdb0800c4, 0x00000000}},  //   _bíró, _ecoa, vidã,\n  { {0x69cf013e, 0x52db006e, 0x7e7e0039, 0x00000000}},  //   foce, _भरोस, äppt,\n  { {0x69cf00ca, 0xdb0800c4, 0x2d8218ee, 0x00000000}},  //   goce, tidã, öket_,\n  { {0x656627da, 0x6d5b00e7, 0x66e70010, 0x00000000}},  //   _rakh, meua, yéké,\n  { {0x6d9c0051, 0xdb0800c4, 0x7c3b044e, 0x00000000}},  //   _téac, ridã, muur,\n  { {0xd5b20025, 0x656605a6, 0x69cf00e5, 0x00000000}},  //   نفس_, _pakh, boce,\n  { {0x69cf00d4, 0xdb1a00f4, 0x00000000, 0x00000000}},  //   coce, entè,   ,\n  { {0xb9b30025, 0xdb0812dd, 0x98a6003b, 0x00000000}},  // [9f80] _جميع, lidá, _ципе,\n  { {0x61b80201, 0x6d5b0016, 0x25a00023, 0x00000000}},  //   ेक्ष, heua, shil_,\n  { {0x656631a7, 0x7c3b00bb, 0x57da0061, 0x00000000}},  //   _takh, huur, णतीह,\n  { {0xe0da0265, 0x7c3b01b1, 0x00000000, 0x00000000}},  //   ове_, kuur,   ,\n  { {0x9fca007c, 0x4fc603e0, 0x75241eca, 0x00000000}},  //   огда_, мска, maiz,\n  { {0x09bb02f4, 0x6d42000d, 0x75240e07, 0x00000000}},  //   _उद्य, _scoa, laiz,\n  { {0x7e2a007e, 0x00000000, 0x00000000, 0x00000000}},  //   ціла_,   ,   ,\n  { {0x71760a90, 0x75240459, 0x00000000, 0x00000000}},  //   _تهرا, naiz,   ,\n  { {0x69cf31a8, 0xe0430242, 0x7c3b017d, 0x00000000}},  //   voce, _инти, guur,\n  { {0x547b01ce, 0x752431a9, 0x2d9d01c3, 0x00000000}},  //   קטיו, haiz, _elwe_,\n  { {0x69cf00d0, 0xd33700b6, 0x3f9b009d, 0x00000000}},  //   toce, וריה_, êque_,\n  { {0x38720039, 0x443b006b, 0x497416e8, 0x00000000}},  //   _bryr_, yuq_, влюс,\n  { {0x3f8c078f, 0xc3240044, 0x7dde0065, 0x00000000}},  //   _kodu_, _পানি_, lëso,\n  { {0xeaaf01ef, 0xac97007a, 0xd90f00a6, 0x00000000}},  //   اعی_, _تنها_, دیک_,\n  { {0x69cf0107, 0x3f8c002d, 0x7dde0023, 0x00000000}},  //   poce, _modu_, nëso,\n  { {0x7bda056d, 0x693600b9, 0x75240032, 0x00000000}},  //   lltu, _přež, gaiz,\n  { {0xdb1a009d, 0x7dde0023, 0x3375007e, 0x00000000}},  // [9f90] enté, hëso, нгар,\n  { {0x7dde0065, 0xdce20091, 0x443b2cfa, 0x00000000}},  //   këso, _naoč, ruq_,\n  { {0xe3c30044, 0x200d31aa, 0x443b0066, 0x00000000}},  //   ্গলব, _stei_, suq_,\n  { {0x59f9007b, 0x3f9e0e57, 0x00000000, 0x00000000}},  //   פּעד, _altu_,   ,\n  { {0x443b006b, 0x3f8c0161, 0x00000000, 0x00000000}},  //   quq_, _bodu_,   ,\n  { {0x44291a7b, 0xdee5004d, 0x6d400116, 0x00000000}},  //   msa_, ноли, egma,\n  { {0x5334012b, 0xdb0831ab, 0x6d870288, 0x00000000}},  //   _јест, xidá, _iñaz,\n  { {0x7c3b02ae, 0x6d4000f8, 0x7bda00bb, 0x00000000}},  //   tuur, ggma, eltu,\n  { {0x442931ac, 0x442b0253, 0x6d5b005b, 0x00000000}},  //   nsa_, _jvc_, reua,\n  { {0x442902d5, 0x2d820039, 0xdaa90081, 0x00000000}},  //   isa_, öker_, звод_,\n  { {0xd94601be, 0x752f0036, 0x442b00bb, 0x00000000}},  //   нени, _odcz, _lvc_,\n  { {0x3f87037e, 0xa96a003b, 0x442b0042, 0x00000000}},  //   ljnu_, чима_, _ovc_,\n  { {0xaacf02d2, 0xb90802fb, 0x75240006, 0x00000000}},  //   _सुरक, _भर_, vaiz,\n  { {0x7d090420, 0x44290142, 0x57da0061, 0x00000000}},  //   lces, dsa_, णतेह,\n  { {0x7c290193, 0x44290207, 0xdce20089, 0x00000000}},  //   lser, esa_, _bloķ,\n  { {0x7d09051b, 0x44291fbc, 0x442b2b32, 0x00000000}},  //   nces, fsa_, _bvc_,\n  { {0x4429000c, 0x75240032, 0xb4ea0061, 0x00000000}},  // [9fa0] gsa_, raiz, मधे_,\n  { {0x68e40059, 0x6d9c00f4, 0x00000000, 0x00000000}},  //   _izid, _néan,   ,\n  { {0x44290127, 0x7d090036, 0x442b2886, 0x00000000}},  //   asa_, kces, _evc_,\n  { {0x7d090ebe, 0x442931ad, 0x7c290056, 0x00000000}},  //   jces, bsa_, kser,\n  { {0x44290010, 0xe8140061, 0x7c290190, 0x00000000}},  //   csa_, तीचा_, jser,\n  { {0x7c2931ae, 0x6d9c002a, 0x7dde0065, 0x00000000}},  //   dser, _céan, tëso,\n  { {0x6d9c002a, 0x3f8c0209, 0xa3b5006e, 0x00000000}},  //   _déan, _vodu_, _जगत_,\n  { {0x7dde0065, 0x7bc301f3, 0x26080061, 0x00000000}},  //   rëso, _ajnu, _ांनी_,\n  { {0x6d4000f8, 0x00000000, 0x00000000, 0x00000000}},  //   rgma,   ,   ,\n  { {0x6d9c009d, 0x8c530379, 0x1fb501fc, 0x00000000}},  //   _géan, ائيا, _исхр,\n  { {0x53370049, 0x44290148, 0x7dde0065, 0x00000000}},  //   ענטן_, zsa_, qëso,\n  { {0x442925e1, 0x7c290056, 0x7d09130f, 0x00000000}},  //   ysa_, bser, cces,\n  { {0x4429006b, 0x7c290010, 0xc173009b, 0x00000000}},  //   xsa_, cser, אחר_,\n  { {0x5c97008b, 0x499300a1, 0x69d60009, 0x00000000}},  //   _якія_, ئیکر, _ekye,\n  { {0x36d5025f, 0x6be30025, 0x442931af, 0x00000000}},  //   товр, _حكوم, wsa_,\n  { {0x44291e17, 0xfa7700a0, 0xd0080044, 0x00000000}},  //   tsa_, _טעות_, রীয়_,\n  { {0x442931b0, 0x2458007c, 0xf3f900ed, 0x00000000}},  // [9fb0] usa_, нать_, днаш_,\n  { {0x4429081d, 0x69dd0129, 0x61c902f4, 0x00000000}},  //   rsa_, llse, िक्ष,\n  { {0x44290f3c, 0xa2d4007d, 0x290b0026, 0x00000000}},  //   ssa_, _बुद्, occa_,\n  { {0x442931b1, 0x518401be, 0x6d9c2d2e, 0x00000000}},  //   psa_, луча, _séan,\n  { {0x3f69003b, 0x657d0cd1, 0x4429178e, 0x00000000}},  //   дило_, _insh, qsa_,\n  { {0x644d0995, 0x656d06ce, 0x00000000, 0x00000000}},  //   mtai, ldah,   ,\n  { {0x7c290bc7, 0x644d31b2, 0x8fa2007c, 0x00000000}},  //   wser, ltai, раще,\n  { {0x656d027c, 0x67271fec, 0xdb1a115b, 0x00000000}},  //   ndah, hajj, kotó,\n  { {0x644d032c, 0xdd8e0025, 0x6d9c0051, 0x00000000}},  //   ntai, توي_, _téan,\n  { {0x7d090197, 0x644d00f4, 0x6727008e, 0x00000000}},  //   sces, itai, jajj,\n  { {0x644d31b2, 0x657d0066, 0x61e90068, 0x00000000}},  //   htai, _onsh, _khel,\n  { {0x7c2901ee, 0x61fb0cb6, 0x644d31b3, 0x00000000}},  //   pser, _jiul, ktai,\n  { {0x8c4500ed, 0x201f000a, 0x61e9005b, 0x00000000}},  //   _реле, _jwui_, _mhel,\n  { {0x69dd006c, 0x2d8f00b5, 0x644d2d60, 0x00000000}},  //   alse, _hoge_, dtai,\n  { {0x644d0006, 0x9f450051, 0xfaf80089, 0x00000000}},  //   etai, _chlé_, udīt_,\n  { {0x656d1fe8, 0x61fb00e7, 0x00000000, 0x00000000}},  //   gdah, _niul,   ,\n  { {0x60db000b, 0x644d05a0, 0x2d8f31b4, 0x00000000}},  // [9fc0] _nyum, gtai, _moge_,\n  { {0x61e9006c, 0x93cb00a1, 0xf53f0190, 0x00000000}},  //   _ahel, والہ_, _småt_,\n  { {0x23a40039, 0x60db03e5, 0x644d0051, 0x00000000}},  //   _nöje_, _ayum, atai,\n  { {0x61e9001a, 0x60db0dfc, 0x2d8f0059, 0x00000000}},  //   _chel, _byum, _noge_,\n  { {0xd0070265, 0x60db0009, 0x1b220044, 0x00000000}},  //   вече_, _cyum, _মাসে_,\n  { {0xdefa0057, 0x61e902fa, 0xdb010048, 0x00000000}},  //   мый_, _ehel, bhlé,\n  { {0x764e0061, 0x2d8f00ea, 0x29000032, 0x00000000}},  //   ntby, _boge_, _ogia_,\n  { {0x61fb0207, 0x91e60072, 0x2d8f008e, 0x00000000}},  //   _giul, _робе, _coge_,\n  { {0x2d8f04c6, 0x9f4c00b0, 0x2a670145, 0x00000000}},  //   _doge_, _pidä_, _asnb_,\n  { {0x61e931b5, 0x00000000, 0x00000000, 0x00000000}},  //   _zhel,   ,   ,\n  { {0x6b9a054e, 0x644d2efd, 0x2d8f00c4, 0x00000000}},  //   rktg, ztai, _foge_,\n  { {0x20040020, 0x61e90065, 0xf2d300b3, 0x00000000}},  //   _kumi_, _xhel, יעת_,\n  { {0x1d07012b, 0x69dd0190, 0x7e680082, 0x00000000}},  //   _речи_, rlse, _hsdp,\n  { {0xa2cb001c, 0x2900002d, 0xc7c4007c, 0x00000000}},  //   _तुझ्, _egia_, асси,\n  { {0x6d9c002a, 0xb9090044, 0xdb1a0048, 0x00000000}},  //   _léam, _বল_, nntí,\n  { {0x644d021e, 0x67270869, 0xa3b503d7, 0x00000000}},  //   ttai, sajj, _जगह_,\n  { {0x6d9c0ad5, 0x657d0011, 0x656d01a3, 0x00000000}},  // [9fd0] _réal, _vnsh, rdah,\n  { {0x799d0142, 0x61e900ab, 0x61fb0006, 0x00000000}},  //   lksw, _shel, _siul,\n  { {0x720500a1, 0x644d31b6, 0xe9df0048, 0x00000000}},  //   اہرہ_, stai, olú_,\n  { {0x656d001c, 0x200404cb, 0x657d0784, 0x00000000}},  //   qdah, _bumi_, _unsh,\n  { {0x200431b7, 0x7dde0065, 0x63b70045, 0x00000000}},  //   _cumi_, mësh, pixn,\n  { {0x60db08c1, 0x889c009b, 0x20040058, 0x00000000}},  //   _vyum, ובדי, _dumi_,\n  { {0x61e9008d, 0x28da0164, 0x6d9c0051, 0x00000000}},  //   _thel, _युनि, _téal,\n  { {0x61e931b8, 0x20040197, 0x60c90e65, 0x00000000}},  //   _uhel, _fumi_, _txem,\n  { {0xa3d80061, 0x60db014a, 0x20040232, 0x00000000}},  //   ातच_, _uyum, _gumi_,\n  { {0xceeb0151, 0x3949005b, 0x7dde0023, 0x00000000}},  //   _قران_, _acas_, hësh,\n  { {0x7dde0065, 0x2d8f31b9, 0x38691aa1, 0x00000000}},  //   kësh, _toge_, _asar_,\n  { {0x98b202b9, 0xcd2b00a6, 0x200431ba, 0x00000000}},  //   _sayı_, _آسان_, _yumi_,\n  { {0x7d1b2340, 0x98b2019a, 0x6725032e, 0x00000000}},  //   mbus, _payı_, _behj,\n  { {0x7d1b139b, 0x6c3200a1, 0x366a007e, 0x00000000}},  //   lbus, _افوا, наго_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xceb20097, 0x764e31bb, 0x7c3b00bb, 0x00000000}},  //   צין_, rtby, orur,\n  { {0x69db007b, 0x29d9009d, 0x764e31bc, 0x00000000}},  // [9fe0] _אַזו, réat_, stby,\n  { {0x6d9c31bd, 0x1c1b007d, 0x20040b55, 0x00000000}},  //   _réam, पीएल_, _rumi_,\n  { {0x77f7012e, 0xdb9a0049, 0x20040087, 0x00000000}},  //   _תמיד_, עסער, _sumi_,\n  { {0x200431be, 0x32170014, 0x29d931bf, 0x00000000}},  //   _pumi_, ايند_, léar_,\n  { {0x25d7012e, 0x7d1b0a5e, 0xdfda005e, 0x00000000}},  //   _תוכן_, dbus, нък_,\n  { {0x7dde0023, 0x7c3b0288, 0x44220145, 0x00000000}},  //   mësi, drur, _iwk_,\n  { {0x7dde0065, 0x4422109d, 0x7526000a, 0x00000000}},  //   lësi, _hwk_, _kekz,\n  { {0x6d9c002a, 0xcbc00044, 0x20040145, 0x00000000}},  //   _téam, _উঠেছ, _tumi_,\n  { {0x5b26045a, 0x7dde0065, 0x394900d9, 0x00000000}},  //   льна, nësi, _rcas_,\n  { {0x7d1b00e0, 0x44221b1f, 0x4a5401ee, 0x00000000}},  //   abus, _mwk_, акос,\n  { {0x7dde0065, 0xdee6034b, 0x00000000, 0x00000000}},  //   hësi, _сожи,   ,\n  { {0x7dde0065, 0x7c3b00e7, 0x7d1d01e5, 0x00000000}},  //   kësi, brur, ðsst,\n  { {0x7c3b001a, 0x799d01d6, 0xe9df0051, 0x00000000}},  //   crur, rksw, rlú_,\n  { {0x6605042b, 0xa49b0082, 0x2fc00048, 0x00000000}},  //   _puhk, _ngòa, éigh_,\n  { {0x8af6006b, 0x442201a3, 0x7dde0065, 0x00000000}},  //   şəbb, _awk_, tësh,\n  { {0x7c2217a9, 0x39491e11, 0x442201a3, 0x00000000}},  //   _kwor, _ucas_, _bwk_,\n  { {0x38690df3, 0x7dde0065, 0x7d0200e7, 0x00000000}},  // [9ff0] _usar_, rësh, _mgos,\n  { {0x1755005e, 0x660505e0, 0x44f406b6, 0x00000000}},  //   _твоя, _tuhk, спус,\n  { {0x316d004a, 0x00000000, 0x00000000, 0x00000000}},  //   _paez_,   ,   ,\n  { {0xd567017a, 0xf99f01aa, 0x7dde0023, 0x00000000}},  //   _стоп, nkè_, bësi,\n  { {0xa0690175, 0xc3240055, 0x656f0016, 0x00000000}},  //   тала_, _পারি_, _iach,\n  { {0x656f1063, 0x645d00e7, 0x25a901a3, 0x00000000}},  //   _hach, _ipsi, lhal_,\n  { {0x656f0263, 0x244f1abf, 0x7d1b0a34, 0x00000000}},  //   _kach, lüm_, tbus,\n  { {0x7c3b0a16, 0x25a900c4, 0x7c220f36, 0x00000000}},  //   trur, nhal_, _bwor,\n  { {0x656f31c0, 0x7d1b08a8, 0x244f014a, 0x00000000}},  //   _mach, rbus, nüm_,\n  { {0x656f0263, 0xeb99012b, 0x7d1b0bf3, 0x00000000}},  //   _lach, тио_, sbus,\n  { {0x244f006b, 0xdd8e02fd, 0x7d1b00f6, 0x00000000}},  //   hüm_, سوی_, pbus,\n  { {0x656f001f, 0x645d1915, 0xdb010051, 0x00000000}},  //   _nach, _opsi, mhlí,\n  { {0x25a90022, 0x6d590009, 0x93e50061, 0x00000000}},  //   dhal_, _ibwa, कताच_,\n  { {0xdca2003b, 0x656f31c1, 0x2d8d01d6, 0x00000000}},  //   _фаши, _aach, ljee_,\n  { {0x645d010a, 0xb8fd0164, 0xdb0101aa, 0x00000000}},  //   _apsi, _तु_, bilò,\n  { {0x7dde008d, 0x25a90232, 0x4422033b, 0x00000000}},  //   tësi, ghal_, _pwk_,\n\n  { {0x656f1440, 0x6fdf00f4, 0x04460088, 0x00000000}},  // [a000] _dach, pêch, резн,\n  { {0x7dde008d, 0x656f0051, 0xd76402fd, 0x00000000}},  //   rësi, _each, _اندی,\n  { {0x656f31c2, 0x6d5931c3, 0x25a90051, 0x00000000}},  //   _fach, _obwa, bhal_,\n  { {0xd2e603d7, 0x25a90161, 0x7dde0065, 0x00000000}},  //   _करीब_, chal_, pësi,\n  { {0x7dde0065, 0x69c60232, 0x442201c3, 0x00000000}},  //   qësi, inke, _uwk_,\n  { {0x656f0395, 0x0877007b, 0x65640706, 0x00000000}},  //   _zach, יענט_, leih,\n  { {0x7c220133, 0x00000000, 0x00000000, 0x00000000}},  //   _swor,   ,   ,\n  { {0x25a027d6, 0xdceb014a, 0x65a3006c, 0x00000000}},  //   nkil_, _algı, _lõhn,\n  { {0x7f860167, 0xa06700d7, 0x9da7005e, 0x00000000}},  //   _پلان, _ката_, ръща_,\n  { {0x61e20ba0, 0x2912000b, 0x6d5900e7, 0x00000000}},  //   llol, _afya_, _ebwa,\n  { {0xc33301f8, 0x7ac60088, 0xa4e30309, 0x00000000}},  //   חות_, рспе, _खर्च_,\n  { {0x7c220046, 0x61e2011c, 0x7d020166, 0x00000000}},  //   _twor, nlol, _ugos,\n  { {0xdd8f0439, 0xf99f0026, 0xa49b00f6, 0x00000000}},  //   _تون_, rkè_, _agòn,\n  { {0x656f001f, 0x69c60190, 0x00000000, 0x00000000}},  //   _sach, anke,   ,\n  { {0x656f001a, 0x25f30061, 0x25a90d29, 0x00000000}},  //   _pach, ंगली_, thal_,\n  { {0xaacf0061, 0x244f0095, 0x00000000, 0x00000000}},  //   _सुटक, tüm_,   ,\n  { {0x656f009d, 0x25a90279, 0x9f450051, 0x00000000}},  // [a010] _vach, rhal_, _shlí_,\n  { {0x656f31c4, 0x9f5e008d, 0x0a51026c, 0x00000000}},  //   _wach, _ditë_, _بھیج,\n  { {0x656f0016, 0xed5931c5, 0x7dde0023, 0x00000000}},  //   _tach, liže_, lësu,\n  { {0x656f0051, 0x61e20058, 0xeaa600a1, 0x00000000}},  //   _uach, glol, _ہٹ_,\n  { {0xed59016c, 0x7dde0065, 0x2067003b, 0x00000000}},  //   niže_, nësu, рђев,\n  { {0xeaa600a1, 0x94f6009b, 0x00000000, 0x00000000}},  //   _فٹ_, _לצרף_,   ,\n  { {0xed590a78, 0x61e2014a, 0x2d8d00d9, 0x00000000}},  //   гой_, blol, tjee_,\n  { {0xf1a700ed, 0xdb1a31c6, 0x0d850088, 0x00000000}},  //   _тргн, litè, слин,\n  { {0x2d8d086a, 0x00000000, 0x00000000, 0x00000000}},  //   rjee_,   ,   ,\n  { {0xed5904eb, 0x2d9f316d, 0x4a4531c7, 0x00000000}},  //   diže_, skue_, бнов,\n  { {0x752d0020, 0x7bca00f6, 0xc8690104, 0x00000000}},  //   kaaz, _djfu, _רן_,\n  { {0x6d5931c8, 0xfe700014, 0x00000000, 0x00000000}},  //   _ubwa, _زدم_,   ,\n  { {0x69c601e5, 0xf1b20049, 0x7dde0023, 0x00000000}},  //   rnke, לסט_, tësv,\n  { {0x6d4926d1, 0x656401a2, 0x00000000, 0x00000000}},  //   lgea, weih,   ,\n  { {0x78c1005f, 0x66e6007c, 0xdb1a0065, 0x00000000}},  //   _əvvə, сова, zitë,\n  { {0x6d4907cd, 0x7a1300e5, 0x00000000, 0x00000000}},  //   ngea, _căte,   ,\n  { {0x6d490051, 0x65641744, 0xf746003b, 0x00000000}},  // [a020] igea, reih, _лепо,\n  { {0x25a014f7, 0x7dde0023, 0x00000000, 0x00000000}},  //   skil_, qësv,   ,\n  { {0xb5ca03ec, 0x61e20087, 0xa56401b2, 0x00000000}},  //   _مودم_, tlol, _وگرن,\n  { {0x614631c9, 0xd76402fd, 0x7a130035, 0x00000000}},  //   седа, _انگی, _găte,\n  { {0x205601bd, 0xe3b1026c, 0x61e20058, 0x00000000}},  //   стер, سرے_, rlol,\n  { {0xdb1a0065, 0xe0850025, 0x33d50088, 0x00000000}},  //   ritë, تجمي, _діст,\n  { {0x9abc002b, 0x91e602dc, 0x00000000, 0x00000000}},  //   paċi, _гове,   ,\n  { {0xdb1a263c, 0xb8000044, 0x7d9831ca, 0x00000000}},  //   mité, ্ঠিত_, рвис_,\n  { {0xdb1a31cb, 0x44320665, 0xfd0f0076, 0x00000000}},  //   lité, nsy_, رجي_,\n  { {0x6d490009, 0x798400d9, 0x4432009d, 0x00000000}},  //   agea, _aniw, isy_,\n  { {0xdb1a009d, 0xaa582c00, 0x38600058, 0x00000000}},  //   nité, шину_, _apir_,\n  { {0x394d31cc, 0x7dde0065, 0x63be244a, 0x00000000}},  //   ües_, tësu, hipn,\n  { {0xac94005e, 0x80da0044, 0x629e1fc2, 0x00000000}},  //   _фалш, _বৃত্, hypo,\n  { {0x7dde008d, 0x44320343, 0x81c00044, 0x00000000}},  //   rësu, dsy_, ুতি_,\n  { {0x9f5e00f4, 0x7bda1254, 0x2fde0026, 0x00000000}},  //   _cité_, motu, _mktg_,\n  { {0x7bda0e33, 0xb88600b9, 0x2b4e033f, 0x00000000}},  //   lotu, _spíš, _hcfc_,\n  { {0x7dde0065, 0xe45001b7, 0xdb010051, 0x00000000}},  // [a030] qësu, فضل_, mhlá,\n  { {0x68ed2ad2, 0x7bda00b0, 0xdce00ed9, 0x00000000}},  //   _izad, notu, jemč,\n  { {0x7bc8121f, 0x69cd00eb, 0x3e4e006b, 0x00000000}},  //   indu, _kjae, _xətt_,\n  { {0xa15931cd, 0x76470009, 0x7bda0052, 0x00000000}},  //   раду_, mujy, hotu,\n  { {0x7bda00b0, 0x19580049, 0x00000000, 0x00000000}},  //   kotu, מבאל_,   ,\n  { {0x8cdc013d, 0xdb1a1e50, 0x00000000, 0x00000000}},  //   _पड़ो, bité,   ,\n  { {0x35f800d3, 0xdb1a00f4, 0x7bda00b0, 0x00000000}},  //   _خرید_, cité, dotu,\n  { {0xd0d5005e, 0x8db5007e, 0xa2b8007d, 0x00000000}},  //   _добъ, ўскі, ्पर्,\n  { {0x6d49002a, 0x77ab006b, 0x7bc8000c, 0x00000000}},  //   rgea, _müxb, fndu,\n  { {0x212f0022, 0xdfdb005e, 0x00000000, 0x00000000}},  //   lagh_, _съб_,   ,\n  { {0x68ed005f, 0x00000000, 0x00000000, 0x00000000}},  //   _azad,   ,   ,\n  { {0x212f00ea, 0x7bc80f9b, 0x00000000, 0x00000000}},  //   nagh_, andu,   ,\n  { {0xa3d90201, 0x629e0036, 0x7bda0089, 0x00000000}},  //   ावा_, zypo, botu,\n  { {0x6b830056, 0x7bda004a, 0x00000000, 0x00000000}},  //   _unng, cotu,   ,\n  { {0x672e0337, 0x44320036, 0xa50a17be, 0x00000000}},  //   rabj, wsy_, иева_,\n  { {0x44320007, 0xdb1a028c, 0xdb010051, 0x00000000}},  //   tsy_, vité, chlá,\n  { {0xe3ba003b, 0x290500b9, 0x32180007, 0x00000000}},  // [a040] аба_, ělat_, _stry_,\n  { {0x44320036, 0x16662e00, 0x629e0832, 0x00000000}},  //   rsy_, _двом, typo,\n  { {0x4432001c, 0x7a0800b9, 0x63be0085, 0x00000000}},  //   ssy_, _pěti, ripn,\n  { {0x00e60001, 0xdb1a00f4, 0x7ae30056, 0x00000000}},  //   ожен, rité, _mynt,\n  { {0x7bda0020, 0x7bc8000c, 0xdb1a009d, 0x00000000}},  //   yotu, yndu, sité,\n  { {0x2d990e42, 0x8fa3003b, 0x63be0065, 0x00000000}},  //   ösen_, маче, qipn,\n  { {0x59ca0309, 0xf8bf009d, 0x7bda0052, 0x00000000}},  //   ाचार, mbée_, votu,\n  { {0x5f7600a1, 0xdc1e0044, 0xb4db00f6, 0x00000000}},  //   _ڈائر, _দিবস_, _icàr,\n  { {0xc5f301f8, 0x7bda31ce, 0x27170224, 0x00000000}},  //   ודה_, totu, nění_,\n  { {0x68ed0036, 0xa3ea006e, 0xdfa60379, 0x00000000}},  //   _rzad, मति_, _بحري,\n  { {0x7ae3018e, 0x7bda00b0, 0x68e40173, 0x00000000}},  //   _cynt, rotu, _ayid,\n  { {0x6d9c0048, 0x7bda31cf, 0x00000000, 0x00000000}},  //   _céat, sotu,   ,\n  { {0x7bda27ab, 0xddc8012d, 0x320400f6, 0x00000000}},  //   potu, _krdž, _mimy_,\n  { {0x271700b9, 0xdb010051, 0x7ae301c3, 0x00000000}},  //   dění_, shlá, _fynt,\n  { {0xd5bb0265, 0x7ae3018e, 0xb5c90025, 0x00000000}},  //   аса_, _gynt, موسم_,\n  { {0xdb01010e, 0x00000000, 0x00000000, 0x00000000}},  //   gilõ,   ,   ,\n  { {0x6d9c0051, 0x68ed0180, 0x27ed0dce, 0x00000000}},  // [a050] _héas, _uzad, ïens_,\n  { {0x69dd000d, 0xd3710379, 0xdb08004a, 0x00000000}},  //   lose, عها_, midó,\n  { {0xdb010bac, 0xc3240044, 0x65a3010e, 0x00000000}},  //   silö, _পাখি_, _jõhk,\n  { {0xe0d30a90, 0x6b9805b7, 0xc6920049, 0x00000000}},  //   وزش_, _lovg, _נאכ_,\n  { {0x65a3006c, 0x212f26e2, 0x6d9c05f4, 0x00000000}},  //   _lõhk, ragh_, _léas,\n  { {0x1b220055, 0x623502ea, 0x7e610022, 0x00000000}},  //   _মাঝে_, _негу, _pplp,\n  { {0x69dd0020, 0xc22500a1, 0x00000000, 0x00000000}},  //   kose, _رکاو,   ,\n  { {0xdceb01d5, 0x69dd01ee, 0x9f4c00f6, 0x00000000}},  //   _jogħ, jose, _bidó_,\n  { {0x65a30004, 0x7ae30e2d, 0xcc350025, 0x00000000}},  //   _põhj, _synt, أربع,\n  { {0x5ba9102a, 0xdceb01d5, 0x7ae3068f, 0x00000000}},  //   ском_, _logħ, _pynt,\n  { {0xe9da005e, 0x69dd0253, 0x539c0049, 0x00000000}},  //   йко_, fose, ייזו,\n  { {0x2005000b, 0x186a004c, 0x69dd0d61, 0x00000000}},  //   _hili_, бами_, gose,\n  { {0x26d30c0d, 0x2005107e, 0x6d5b0020, 0x00000000}},  //   _axxo_, _kili_, mfua,\n  { {0x8c1a00b3, 0x200500e7, 0xfd4700a1, 0x00000000}},  //   _הוסי, _jili_, _ایکٹ_,\n  { {0xcb1200b6, 0x69dd03d2, 0xdceb002b, 0x00000000}},  //   _אלו_, bose, _bogħ,\n  { {0x2005002b, 0xf99205d4, 0x7bc131d0, 0x00000000}},  //   _lili_, _سبب_, lilu,\n  { {0x02c401f5, 0xddc10089, 0x00000000, 0x00000000}},  // [a060] वप्न, _aplū,   ,\n  { {0x64561241, 0x287b009b, 0x7bc10052, 0x00000000}},  //   rtyi, _פנימ, nilu,\n  { {0x479b007b, 0x179b007b, 0x6d9c0051, 0x00000000}},  //   _הייס, _הייב, _méar,\n  { {0x6d9c002a, 0x80da0055, 0x271700b9, 0x00000000}},  //   _léar, _বৃষ্, pění_,\n  { {0xd12f00b8, 0x200531d1, 0x75240020, 0x00000000}},  //   امه_, _bili_, mbiz,\n  { {0x4420021e, 0x200531d2, 0x69dd01ee, 0x00000000}},  //   mpi_, _cili_, zose,\n  { {0xa3d90183, 0x20051544, 0x7bc101ee, 0x00000000}},  //   ावर_, _dili_, dilu,\n  { {0x77ab005f, 0xdceb31d3, 0x660601d5, 0x00000000}},  //   _müxa, _xogħ, _jikk,\n  { {0x6d9c31d4, 0x660631d5, 0x69dd0943, 0x00000000}},  //   _béar, _mikk, vose,\n  { {0x0b8a0057, 0x20050066, 0x6d9c0051, 0x00000000}},  //   ссии_, _gili_, _céar,\n  { {0x69dd31d6, 0x6d9c0051, 0x200d0032, 0x00000000}},  //   tose, _déar, _zuei_,\n  { {0x7524002b, 0x6d9c008e, 0x44200022, 0x00000000}},  //   jbiz, _véas, kpi_,\n  { {0x5887008b, 0x7bc105ea, 0xdb1a31d7, 0x00000000}},  //   чына, bilu, lití,\n  { {0x6d9c0051, 0x64441487, 0x69dd0052, 0x00000000}},  //   _géar, drii, sose,\n  { {0x6a130054, 0x69dd030a, 0xe3c40044, 0x00000000}},  //   _كبير, pose, ্তাব,\n  { {0x66060047, 0x00000000, 0x00000000, 0x00000000}},  //   _cikk,   ,   ,\n  { {0x6606011f, 0x53990783, 0x870900a1, 0x00000000}},  // [a070] _dikk, овая_, _وعدہ_,\n  { {0x660612de, 0x212d0022, 0xdb1a00fa, 0x00000000}},  //   _eikk, _seeh_, litâ,\n  { {0x35f502e9, 0xdb01010f, 0x44201449, 0x00000000}},  //   _опор, chlä, api_,\n  { {0x6444006c, 0x200500ca, 0x777701f3, 0x00000000}},  //   brii, _sili_, _haxx,\n  { {0x2005000b, 0x200d0207, 0x7777002b, 0x00000000}},  //   _pili_, _quei_, _kaxx,\n  { {0xedf70164, 0xdee5003b, 0x4439214c, 0x00000000}},  //   ुद्ध_, моли, _ivs_,\n  { {0x7bc101d5, 0x44390022, 0x3cff0061, 0x00000000}},  //   vilu, _hvs_, शेने_,\n  { {0x7db4007e, 0x20050058, 0x3333002b, 0x00000000}},  //   есьц, _wili_, laxx_,\n  { {0x7bc10f45, 0x752f0036, 0xdce00089, 0x00000000}},  //   tilu, _mecz, temā,\n  { {0x752f0036, 0x77770066, 0x4439013f, 0x00000000}},  //   _lecz, _naxx, _mvs_,\n  { {0xd9461074, 0x7bc11da2, 0x4420002d, 0x00000000}},  //   мени, rilu, zpi_,\n  { {0x7bc113af, 0x44201bd3, 0xc7a9034e, 0x00000000}},  //   silu, ypi_, _דב_,\n  { {0x6d9c002a, 0x660603b6, 0x7bc1001a, 0x00000000}},  //   _téar, _rikk, pilu,\n  { {0x66060378, 0x77770026, 0x80da0044, 0x00000000}},  //   _sikk, _caxx, বেক্,\n  { {0x66e3317a, 0x66060368, 0x7a080224, 0x00000000}},  //   вора, _pikk, _děts,\n  { {0x3dcd31d8, 0x443901d6, 0x644403b6, 0x00000000}},  //   nnew_, _bvs_, trii,\n  { {0xa3d90061, 0xdb1a2773, 0x7524002d, 0x00000000}},  // [a080] ावं_, zití, rbiz,\n  { {0x4439062c, 0x66061245, 0x6444010e, 0x00000000}},  //   _dvs_, _wikk, rrii,\n  { {0x660601d5, 0x6444006c, 0x443931d9, 0x00000000}},  //   _tikk, srii, _evs_,\n  { {0x442016df, 0x644424b7, 0x443900fa, 0x00000000}},  //   ppi_, prii, _fvs_,\n  { {0x2f180604, 0xd4360379, 0x443900e5, 0x00000000}},  //   поль_, _تعجب, _gvs_,\n  { {0x43750679, 0x00000000, 0x00000000, 0x00000000}},  //   _пуст,   ,   ,\n  { {0xa3db0164, 0x7c2b0016, 0x63a331da, 0x00000000}},  //   डकर_, _awgr, önne,\n  { {0x5c7419ea, 0x65a30004, 0xdd900025, 0x00000000}},  //   елит, _põhi, اوة_,\n  { {0x443905d2, 0x00000000, 0x00000000, 0x00000000}},  //   _xvs_,   ,   ,\n  { {0x7ac601ee, 0x00000000, 0x00000000, 0x00000000}},  //   дсме,   ,   ,\n  { {0x3ddf00b5, 0x7c2d002b, 0x2d9a009d, 0x00000000}},  //   bouw_, _ħare, êpes_,\n  { {0x9e65026c, 0x2378000a, 0x00000000, 0x00000000}},  //   _سامن, _larj_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xead40454, 0x443900bb, 0x2cb0005d, 0x00000000}},  //   _поль, _rvs_, ıldı_,\n  { {0xbd0500f4, 0xf8ae0167, 0x442b00d2, 0x00000000}},  //   _théâ, لکی_, _swc_,\n  { {0xfaa70014, 0xdb1a00d4, 0x63ae22cb, 0x00000000}},  //   _تجهی, lità, _albn,\n  { {0x94ab02f0, 0x2458007c, 0xdb0a0b32, 0x00000000}},  // [a090] цтва_, мать_, _alfé,\n  { {0x44391f9d, 0xdb1a0129, 0x08f80426, 0x00000000}},  //   _vvs_, nità, _غريب_,\n  { {0x33330066, 0x69cf0026, 0x26080061, 0x00000000}},  //   raxx_, once, _ांची_,\n  { {0x443900c4, 0x77b00039, 0x34950954, 0x00000000}},  //   _tvs_, _växe, _замр,\n  { {0x442b01f3, 0x6d9c009d, 0x656d00e7, 0x00000000}},  //   _uwc_, _réap, meah,\n  { {0x673503b2, 0xf41f00b0, 0x25a90058, 0x00000000}},  //   nazj, _itä_, lkal_,\n  { {0x644d31b2, 0x9ea904dd, 0x5214007e, 0x00000000}},  //   luai, явка_, _адст,\n  { {0x25a90007, 0xf41f0039, 0x7c9500e2, 0x00000000}},  //   nkal_, _träd_, ероц,\n  { {0x644d028c, 0x3ddf00bb, 0x67350066, 0x00000000}},  //   nuai, rouw_, kazj,\n  { {0x69cf0549, 0x3dcd0009, 0x00000000, 0x00000000}},  //   ence, snew_,   ,\n  { {0x25a90047, 0x644d0051, 0x39ea0a1e, 0x00000000}},  //   kkal_, huai, здно_,\n  { {0x65a3006c, 0xf2d20049, 0x6dc7083e, 0x00000000}},  //   _kõhu, רעט_, _غزال,\n  { {0x2904225c, 0x673e0022, 0xeaae009e, 0x00000000}},  //   äma_, _pdpj, لٹی_,\n  { {0x2d9d31db, 0x644d0b26, 0x69cf0133, 0x00000000}},  //   _howe_, duai, ance,\n  { {0x7a0900b9, 0x25b20133, 0x2d9d0022, 0x00000000}},  //   _větr, thyl_, _kowe_,\n  { {0x65aa0428, 0xdb1a00c4, 0x644d0051, 0x00000000}},  //   _výho, pitã, fuai,\n  { {0xd4670200, 0xdb1a1db2, 0x644d0181, 0x00000000}},  // [a0a0] ните_, litá, guai,\n  { {0x69c6006c, 0x32d600e3, 0x67f2000c, 0x00000000}},  //   like, нцес, bæja,\n  { {0xdb1a0181, 0x81460025, 0xb14601ee, 0x00000000}},  //   nitá, فنان, енел,\n  { {0x2d9d0046, 0x00000000, 0x00000000, 0x00000000}},  //   _nowe_,   ,   ,\n  { {0x765c02e7, 0x2378004a, 0x00000000, 0x00000000}},  //   ltry, _tarj_,   ,\n  { {0x69c6066f, 0x7bcf009d, 0x00000000, 0x00000000}},  //   hike, écul,   ,\n  { {0x765c0542, 0x412a00e3, 0x3940033f, 0x00000000}},  //   ntry, _ново_, _odis_,\n  { {0xc693012e, 0x2c260088, 0x7c240279, 0x00000000}},  //   ראה_, ньог, _çirk,\n  { {0x69c60056, 0x2d9d01d6, 0x9f5e00f6, 0x00000000}},  //   dike, _dowe_, _tità_,\n  { {0x765c0036, 0x61e2006c, 0x39400087, 0x00000000}},  //   ktry, lool, _adis_,\n  { {0x69c60039, 0x61e2231b, 0xdb1a31dc, 0x00000000}},  //   fike, oool, gitá,\n  { {0x248031dd, 0xed5a0256, 0x765c1f9d, 0x00000000}},  //   kvim_, _ход_, dtry,\n  { {0xe78500a1, 0xfbcf0014, 0x644d0181, 0x00000000}},  //   پلزپ, شتی_, xuai,\n  { {0x8c1b00bd, 0x61e2066a, 0x36d50088, 0x00000000}},  //   _צווי, hool, вогр,\n  { {0x61e20004, 0xdb1a0d95, 0x765c02e1, 0x00000000}},  //   kool, citá, gtry,\n  { {0x644d15a3, 0x3f9e1cc7, 0xf0a60011, 0x00000000}},  //   tuai, _lotu_, _đành_,\n  { {0x798d31de, 0x6735002b, 0x5964005e, 0x00000000}},  // [a0b0] _inaw, pazj, _съща,\n  { {0x25a90c35, 0x386931df, 0x644d0051, 0x00000000}},  //   skal_, _ipar_, ruai,\n  { {0x32550373, 0x644d1584, 0x00000000, 0x00000000}},  //   твер, suai,   ,\n  { {0x3f8c0066, 0x7aea0023, 0x24720173, 0x00000000}},  //   _andu_, _myft, _fņm_,\n  { {0x7aea31e0, 0x798d00e7, 0x75360049, 0x00000000}},  //   _lyft, _mnaw, _בארד_,\n  { {0x69c6002d, 0xdb1a2926, 0x27e331e1, 0x00000000}},  //   zike, litæ, nojn_,\n  { {0x61e22131, 0x6115007e, 0xb1aa000c, 0x00000000}},  //   bool, _адбу, þýðu,\n  { {0x61e20a86, 0xfc3f01ca, 0xdb1a10fa, 0x00000000}},  //   cool, ším_, vitá,\n  { {0x69c603af, 0x3f9e00f6, 0x27e30023, 0x00000000}},  //   vike, _fotu_, kojn_,\n  { {0x09ca0365, 0x798d31e2, 0x2d9d0009, 0x00000000}},  //   ाच्य, _anaw, _wowe_,\n  { {0x2fc70837, 0x3869001a, 0x06c60044, 0x00000000}},  //   ming_, _apar_, _শুনি,\n  { {0xdb1a1db2, 0x00000000, 0x00000000, 0x00000000}},  //   ritá,   ,   ,\n  { {0x69c631e3, 0x2fc7009d, 0xdb1a31e4, 0x00000000}},  //   rike, oing_, sitá,\n  { {0x2fc70901, 0xdb1a0387, 0x44240006, 0x00000000}},  //   ning_, pitá, _įm_,\n  { {0x66e602e9, 0x3ea7018e, 0x7bc323b4, 0x00000000}},  //   това, nynt_, _imnu,\n  { {0x2fc71f9c, 0xceb2019b, 0x7d1b0213, 0x00000000}},  //   hing_, ביל_, ncus,\n  { {0x2fc71f9c, 0xe8fa0265, 0x765c0036, 0x00000000}},  // [a0c0] king_, _юли_, stry,\n  { {0x2fc701a3, 0x7d1b0009, 0x61e20146, 0x00000000}},  //   jing_, hcus, wool,\n  { {0x2480037e, 0x2fc7066a, 0x61e22836, 0x00000000}},  //   svim_, ding_, tool,\n  { {0x3ea7018e, 0x7c3b010e, 0x2fc70133, 0x00000000}},  //   dynt_, ksur, eing_,\n  { {0x61e20004, 0x2480006b, 0x7c3b016c, 0x00000000}},  //   rool, qvim_, jsur,\n  { {0x2fc7066d, 0x7c3b0146, 0x61e231e5, 0x00000000}},  //   ging_, dsur, sool,\n  { {0x61e2006c, 0x8fa3012b, 0x44220190, 0x00000000}},  //   pool, раје, _htk_,\n  { {0x44220020, 0x69d60009, 0x00000000, 0x00000000}},  //   _ktk_, _njye,   ,\n  { {0x2fc7006a, 0x7aea0039, 0xe817013d, 0x00000000}},  //   bing_, _syft, _धंधा_,\n  { {0x2fc70498, 0x69c40855, 0xef8301fc, 0x00000000}},  //   cing_, _amie, _клуп,\n  { {0x38690030, 0x7c3b00ab, 0x195900a5, 0x00000000}},  //   _spar_, asur, наны_,\n  { {0x79a70264, 0x200c0020, 0x9f4501aa, 0x00000000}},  //   трое, _hidi_, _aklè_,\n  { {0x27e30023, 0x7bc300f6, 0x44220082, 0x00000000}},  //   tojn_, _fmnu, _ntk_,\n  { {0x7c220d3f, 0x65660032, 0x69c400d9, 0x00000000}},  //   _itor, _abkh, _emie,\n  { {0xf8bf02d5, 0x200c00f4, 0x4422211b, 0x00000000}},  //   mbém_, _midi_, _atk_,\n  { {0x7c2213a1, 0x798d1a60, 0x2fc700ab, 0x00000000}},  //   _ktor, _unaw, zing_,\n  { {0x2fc70038, 0x386900c4, 0xdb1a31e6, 0x00000000}},  // [a0d0] ying_, _upar_, ritæ,\n  { {0x69c431e7, 0x02a701fb, 0x61db0164, 0x00000000}},  //   _zmie, крем, यक्ष,\n  { {0x2fc7066a, 0x9f5e021e, 0x75d5031d, 0x00000000}},  //   ving_, _mitä_, _ميدا,\n  { {0xc69200bd, 0x7c2231e8, 0x2fc700fe, 0x00000000}},  //   _האט_, _otor, wing_,\n  { {0x2fc72c41, 0x200c0061, 0x3ea70016, 0x00000000}},  //   ting_, _bidi_, wynt_,\n  { {0x657d1166, 0x2fc701d6, 0xdb1a010f, 0x00000000}},  //   _hash, uing_, nitä,\n  { {0x7c220a0a, 0x657d0020, 0x6e950380, 0x00000000}},  //   _ator, _kash, العا,\n  { {0x657d008d, 0x7c3b011c, 0xec7901ee, 0x00000000}},  //   _jash, tsur, епи_,\n  { {0x657d1de9, 0x7c3b0207, 0x200c002b, 0x00000000}},  //   _mash, usur, _fidi_,\n  { {0x2fc731e9, 0x7c3b001a, 0x657d0065, 0x00000000}},  //   qing_, rsur, _lash,\n  { {0x7c22022b, 0x7c3b06d7, 0xdb1a31ea, 0x00000000}},  //   _etor, ssur, entó,\n  { {0xdea3026c, 0x657d0020, 0x7c3b0035, 0x00000000}},  //   _میڈی, _nash, psur,\n  { {0x8c4500ed, 0x7bc831eb, 0x2d8f27a1, 0x00000000}},  //   _селе, bidu, _inge_,\n  { {0x7bc80035, 0x44220023, 0x00000000, 0x00000000}},  //   cidu, _rtk_,   ,\n  { {0x657d008d, 0x44220030, 0x69c4002b, 0x00000000}},  //   _bash, _stk_, _tmie,\n  { {0x69c41191, 0x60db006b, 0x44222434, 0x00000000}},  //   _umie, _oxum, _ptk_,\n  { {0x81cc0044, 0x657d071e, 0x6287008e, 0x00000000}},  // [a0e0] রকম_, _dash, _arjo,\n  { {0x5503132a, 0x61fb002d, 0x00000000, 0x00000000}},  //   спуб, _ahul,   ,\n  { {0x200c0197, 0x2d8f01c3, 0x61fb0048, 0x00000000}},  //   _ridi_, _onge_, _bhul,\n  { {0x61fb1d59, 0x657d0023, 0x200c0aa0, 0x00000000}},  //   _chul, _gash, _sidi_,\n  { {0x8fa60088, 0x44221444, 0x200c006c, 0x00000000}},  //   ладе, _utk_, _pidi_,\n  { {0x2d8f31ec, 0xa2e60407, 0x657d01ee, 0x00000000}},  //   _ange_, _богд, _zash,\n  { {0x200c2610, 0x657d0ea6, 0xb4db00f6, 0x00000000}},  //   _vidi_, _yash, _jdàn,\n  { {0x9f5e021e, 0x7bc831ed, 0xdb1a010f, 0x00000000}},  //   _sitä_, widu, zitä,\n  { {0xf53f03b1, 0x00000000, 0x00000000, 0x00000000}},  //   _klår_,   ,   ,\n  { {0x99860006, 0x2ea500a1, 0x2d8f0e42, 0x00000000}},  //   kslų_, _چھٹی_, _enge_,\n  { {0x7bc80004, 0xdb1a010f, 0x7c220036, 0x00000000}},  //   ridu, vitä, _wtor,\n  { {0x7bc81a35, 0x2eb002d2, 0x61fb0023, 0x00000000}},  //   sidu, जनीत, _xhul,\n  { {0x7c2231ee, 0x657d01a3, 0x7bc82c2c, 0x00000000}},  //   _utor, _rash, pidu,\n  { {0x657d1b8e, 0x00000000, 0x00000000, 0x00000000}},  //   _sash,   ,   ,\n  { {0x657d008d, 0xdb1a0706, 0x8b650014, 0x00000000}},  //   _pash, ritä, _خانم,\n  { {0xca470025, 0xdb1a31ef, 0x657d0023, 0x00000000}},  //   _إليه_, sitä, _qash,\n  { {0x657d0007, 0xdb1a0ba4, 0x645d0009, 0x00000000}},  // [a0f0] _vash, pitä, _qqsi,\n  { {0x61fb000b, 0x657d2068, 0x61e9046e, 0x00000000}},  //   _shul, _wash, _skel,\n  { {0x657d2d3d, 0x92590057, 0x00000000, 0x00000000}},  //   _tash, тает_,   ,\n  { {0x657d0a9e, 0x2a570049, 0x00000000, 0x00000000}},  //   _uash, רבאן_,   ,\n  { {0x752d000b, 0xf53f0146, 0x00000000, 0x00000000}},  //   mbaz, _flår_,   ,\n  { {0x6617002d, 0x9f4701ca, 0x752d151d, 0x00000000}},  //   _kuxk, plní_, lbaz,\n  { {0xfd110025, 0x61e9002b, 0x644d0048, 0x00000000}},  //   يجة_, _tkel, lrai,\n  { {0x1c45003b, 0x644d0051, 0xada5007c, 0x00000000}},  //   аним, orai, раил,\n  { {0x644d002a, 0x44290149, 0xdb180039, 0x00000000}},  //   nrai, npa_, _omvä,\n  { {0x660f0541, 0x5ba903c0, 0x44290181, 0x00000000}},  //   _lick, тком_, ipa_,\n  { {0x644d31f0, 0xaa4902dc, 0x44290095, 0x00000000}},  //   hrai, ъпна_, hpa_,\n  { {0x2d8f0018, 0x660f114e, 0x644d007f, 0x00000000}},  //   _unge_, _nick, krai,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x644d1321, 0x7c290971, 0x44290082, 0x00000000}},  //   drai, mper, dpa_,\n  { {0xe7370069, 0x644d009d, 0x442900c8, 0x00000000}},  //   рес_, erai, epa_,\n  { {0x644d018e, 0x7c290197, 0xf53f03bd, 0x00000000}},  //   frai, oper, _slår_,\n  { {0x660f2af8, 0xb4250a4f, 0x644d07cd, 0x00000000}},  // [a100] _dick, معلو, grai,\n  { {0xcb120049, 0xdb010698, 0xdcfb01ed, 0x00000000}},  //   ַלד_, rklæ, jduč,\n  { {0x673c2db6, 0x442901d1, 0x660f05b4, 0x00000000}},  //   marj, apa_, _fick,\n  { {0x644d31f1, 0x673c0059, 0x644b0b33, 0x00000000}},  //   brai, larj, ágic,\n  { {0x660408b2, 0x644d0051, 0x44290085, 0x00000000}},  //   mmik, crai, cpa_,\n  { {0x673c0233, 0x660400b0, 0x7c2931f2, 0x00000000}},  //   narj, lmik, dper,\n  { {0x7c2900bb, 0xe297174e, 0xdb010203, 0x00000000}},  //   eper, _кар_, nklä,\n  { {0x91e30794, 0xef180089, 0x261c008e, 0x00000000}},  //   _досе, _daļa_, _mío_,\n  { {0x673c31f3, 0x7c2900ea, 0x261c008e, 0x00000000}},  //   karj, gper, _lío_,\n  { {0xeb06012c, 0x673c31f4, 0x2d9931f5, 0x00000000}},  //   ично, jarj, öser_,\n  { {0x673c31f6, 0xdb01010f, 0x77b00039, 0x00000000}},  //   darj, chlü, _växl,\n  { {0x4429000c, 0x7c290066, 0x644d0bcd, 0x00000000}},  //   ypa_, bper, yrai,\n  { {0xf773006d, 0x98b2000a, 0x660405d2, 0x00000000}},  //   ياس_, _feyč_, dmik,\n  { {0x644d028c, 0x673c00ca, 0x261c008e, 0x00000000}},  //   vrai, garj, _bío_,\n  { {0x660f00ab, 0x6b9c000c, 0x659500ed, 0x00000000}},  //   _pick, örgu, баву,\n  { {0x644d028c, 0xd5b80839, 0x3860002b, 0x00000000}},  //   trai, асу_, _fqir_,\n  { {0x673c00ca, 0x4429000c, 0xdb010051, 0x00000000}},  // [a110] barj, upa_, bhló,\n  { {0x644d0a49, 0x442931f7, 0x673c31f8, 0x00000000}},  //   rrai, rpa_, carj,\n  { {0x660f01ac, 0x7c290032, 0x644d0048, 0x00000000}},  //   _tick, zper, srai,\n  { {0xf5950d75, 0xd76300a1, 0xf99f01aa, 0x00000000}},  //   _الحج, _انھی, njè_,\n  { {0x7c290039, 0x70220044, 0xe0d00076, 0x00000000}},  //   xper, _নিউজ_, وزه_,\n  { {0x9f470065, 0xa29505b8, 0x32180133, 0x00000000}},  //   monë_, _лагі, _fury_,\n  { {0x7c2900d9, 0x87b80049, 0x98ab00b4, 0x00000000}},  //   wper, שלוס_, racę_,\n  { {0x7c29138f, 0x98b201aa, 0x673c1168, 0x00000000}},  //   tper, _seyč_, zarj,\n  { {0xb4f502fb, 0x7c2900f6, 0xf99f01aa, 0x00000000}},  //   _आरोप_, uper, djè_,\n  { {0x7c2931f9, 0x2b5c00f6, 0x66040e90, 0x00000000}},  //   rper, _ccvc_, zmik,\n  { {0x673c01d9, 0x23b6009f, 0x00000000, 0x00000000}},  //   varj, _jæja_,   ,\n  { {0x261c0211, 0xc7a90097, 0x7c29086a, 0x00000000}},  //   _río_, _אב_, pper,\n  { {0x673c01d5, 0xa2f40061, 0x3e610010, 0x00000000}},  //   tarj, _अर्ज_, lót_,\n  { {0x261c31fa, 0xab260b86, 0xd6c90044, 0x00000000}},  //   _pío_, _лоша_, _ষড়য,\n  { {0x673c31fb, 0x6604010e, 0x00000000, 0x00000000}},  //   rarj, tmik,   ,\n  { {0x673c00b0, 0xd01f0044, 0xdb010a35, 0x00000000}},  //   sarj, নীয়_, rklä,\n  { {0x66040010, 0xdb0104ce, 0x673c00ca, 0x00000000}},  // [a120] rmik, sklä, parj,\n  { {0x261c008e, 0xe29a01ee, 0x7ccb01c5, 0x00000000}},  //   _tío_, лаз_, mērī,\n  { {0x9f4c001d, 0x5b3a0049, 0xdd1101f3, 0x00000000}},  //   _đoàn_, רגעק, _ażżm,\n  { {0x9f4701aa, 0x3e61134d, 0xdcff013e, 0x00000000}},  //   lonè_, dót_, ávěr,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xc05901fb, 0xdefa007c, 0xd9a50164, 0x00000000}},  //   рії_, лый_, _ऑक्ट,\n  { {0x877b0049, 0xf773009b, 0x645600e0, 0x00000000}},  //   ראצי, פקה_, luyi,\n  { {0x25a031fc, 0x657631fd, 0x00000000, 0x00000000}},  //   njil_, neyh,   ,\n  { {0x5bb801e0, 0xe0da012b, 0x77b00039, 0x00000000}},  //   илия_, _сва_, _växj,\n  { {0xf8bf00f4, 0x7f43007c, 0xdb03000a, 0x00000000}},  //   ncée_, _неуж, _konè,\n  { {0x77ab005f, 0xc33300b3, 0x65760052, 0x00000000}},  //   _müxt, הות_, keyh,\n  { {0xdb030065, 0x64560058, 0xada3004d, 0x00000000}},  //   _zonë, kuyi, _нахл,\n  { {0xacf604e8, 0xdb03000a, 0x9992000a, 0x00000000}},  //   _اسات, _lonè, _miyň_,\n  { {0x7bcf00f4, 0x00000000, 0x00000000, 0x00000000}},  //   écut,   ,   ,\n  { {0x7bca0dfc, 0x9a260257, 0x15f70025, 0x00000000}},  //   _imfu, _اعتن, مسرح,\n  { {0x2d841beb, 0x58d5005e, 0xf993006d, 0x00000000}},  //   ndme_, _мойт, _ربع_,\n  { {0x69cf04ea, 0x64a400ed, 0x3494007e, 0x00000000}},  // [a130] mice, паѓа, патр,\n  { {0x261a013d, 0xdb03000a, 0x00000000, 0x00000000}},  //   _मूवी_, _bonè,   ,\n  { {0xdb030129, 0x02d91298, 0x00000000, 0x00000000}},  //   _conè, جواب_,   ,\n  { {0x9f4c0011, 0x645600e0, 0x00000000, 0x00000000}},  //   _đoán_, buyi,   ,\n  { {0x3dcd0038, 0x8fa50242, 0x00000000, 0x00000000}},  //   view_, жале,   ,\n  { {0x69cf016c, 0x3e610010, 0xdb031b43, 0x00000000}},  //   hice, tót_, _fonè,\n  { {0x99890036, 0x39490173, 0x24891290, 0x00000000}},  //   _miał_, _odas_, lvam_,\n  { {0x69cf01ee, 0x0c25007c, 0xec4900ed, 0x00000000}},  //   jice, омин, азил_,\n  { {0x9f4701aa, 0x61eb0091, 0x00000000, 0x00000000}},  //   yonè_, mogl,   ,\n  { {0x4a450088, 0x61eb014a, 0xfbc50088, 0x00000000}},  //   онов, logl, ібно,\n  { {0xe9da012b, 0x69cf2f16, 0x61eb0146, 0x00000000}},  //   ико_, fice, oogl,\n  { {0x61eb00ca, 0x69cf0173, 0xe81e0061, 0x00000000}},  //   nogl, gice, _यंदा_,\n  { {0x7a13000d, 0x30790049, 0x3e450089, 0x00000000}},  //   _cătr, באָנ, lēt_,\n  { {0xd5b10082, 0x6d5b0032, 0xab2929d2, 0x00000000}},  //   ến_, lgua, _тока_,\n  { {0x69cf01ee, 0x3e450089, 0xe9a600e2, 0x00000000}},  //   bice, nēt_, _макп,\n  { {0x28c503d7, 0x6d5b0838, 0x69cf01ee, 0x00000000}},  //   _लेकि, ngua, cice,\n  { {0x6b8317f6, 0x63a70626, 0x61eb0087, 0x00000000}},  // [a140] _kang, _bojn, dogl,\n  { {0x6b830149, 0x7c24002a, 0x79841b1d, 0x00000000}},  //   _jang, _éire, _haiw,\n  { {0x6b83004e, 0x61eb042d, 0xf8bf009d, 0x00000000}},  //   _mang, fogl, rcée_,\n  { {0x61eb0207, 0xdb030efe, 0x3e450089, 0x00000000}},  //   gogl, _coné, dēt_,\n  { {0x92aa0044, 0x7984011c, 0x00da00f9, 0x00000000}},  //   গছে_, _maiw, جبات_,\n  { {0x6b83006a, 0x5f93025f, 0x69cf001a, 0x00000000}},  //   _nang, дишт, zice,\n  { {0xdb1a008d, 0x179b009b, 0x644401b1, 0x00000000}},  //   shtë, ייסב, lsii,\n  { {0x6b83049b, 0x61eb0207, 0x798431fe, 0x00000000}},  //   _aang, cogl, _naiw,\n  { {0x6b83020c, 0x644431ff, 0x69cf00ab, 0x00000000}},  //   _bang, nsii, vice,\n  { {0x6b83049a, 0x7053007a, 0x6444021e, 0x00000000}},  //   _cang, _آنلا, isii,\n  { {0x39490285, 0x6b8302f1, 0x69cf00ab, 0x00000000}},  //   _pdas_, _dang, tice,\n  { {0x6444021e, 0x628e3200, 0x7bcf009d, 0x00000000}},  //   ksii, _mrbo, écur,\n  { {0x69cf049a, 0x6d400811, 0x6b832b13, 0x00000000}},  //   rice, mama, _fang,\n  { {0x6b83124e, 0xcb67012b, 0x69cf3201, 0x00000000}},  //   _gang, _даље_, sice,\n  { {0x69cf3202, 0xb5a70131, 0x00000000, 0x00000000}},  //   pice, орай,   ,\n  { {0x6b830020, 0x89390184, 0x3949012d, 0x00000000}},  //   _zang, _упис_, _udas_,\n  { {0x6b83000b, 0x5fdb0061, 0x5455005e, 0x00000000}},  // [a150] _yang, _बदलल, яват,\n  { {0x6d4004cb, 0xc2e90055, 0x7bda000c, 0x00000000}},  //   hama, _কৃষি_, nntu,\n  { {0x6d401084, 0x250904e1, 0x65aa01ca, 0x00000000}},  //   kama, _گردی_, _výhr,\n  { {0xf67a007b, 0x1a9b007b, 0x05b900a1, 0x00000000}},  //   _פארמ, ייבע, _اگست_,\n  { {0x6d402a94, 0x61eb3203, 0x859a00b6, 0x00000000}},  //   dama, rogl, _השרו,\n  { {0x442b0093, 0x3e450089, 0x61eb00ca, 0x00000000}},  //   _itc_, tēt_, sogl,\n  { {0x442b0c26, 0x628e0107, 0x313500ed, 0x00000000}},  //   _htc_, _grbo, _невр,\n  { {0x6b8304d4, 0x753d0046, 0x6d40027c, 0x00000000}},  //   _sang, _jesz, gama,\n  { {0x6b830b9a, 0x6d5b008d, 0x3e4501c5, 0x00000000}},  //   _pang, rgua, sēt_,\n  { {0x69dd028c, 0x6d5b027b, 0x753d1a53, 0x00000000}},  //   éren, sgua, _lesz,\n  { {0x656f3204, 0x6b83006c, 0x9ee90a4f, 0x00000000}},  //   _obch, _vang, _افضل_,\n  { {0x6b83000b, 0x6d400390, 0x7bda021e, 0x00000000}},  //   _wang, cama, antu,\n  { {0x3f8501a3, 0x442b0f02, 0x44393205, 0x00000000}},  //   _kalu_, _ntc_, _nws_,\n  { {0x78a9006c, 0x6b830729, 0x61a8007d, 0x00000000}},  //   äeva, _uang, _कक्ष,\n  { {0x753d0047, 0x3f8501a3, 0xcf920049, 0x00000000}},  //   _besz, _malu_, עטל_,\n  { {0x3f850149, 0x644401c2, 0x442b3206, 0x00000000}},  //   _lalu_, tsii, _btc_,\n  { {0x39420004, 0x75240207, 0xa50702be, 0x00000000}},  // [a160] maks_, rciz, зета_,\n  { {0xb903007c, 0x442024e5, 0x3942006c, 0x00000000}},  //   _язык, rqi_, laks_,\n  { {0x6d40066b, 0x6444003c, 0x753d0010, 0x00000000}},  //   yama, ssii, _fesz,\n  { {0x44393207, 0x442b0232, 0x628e16d0, 0x00000000}},  //   _fws_, _ftc_, _vrbo,\n  { {0x6d40006c, 0x442b00ca, 0x3f850032, 0x00000000}},  //   vama, _gtc_, _balu_,\n  { {0x6d4b0018, 0x68f600b0, 0x628e0059, 0x00000000}},  //   _adga, _myyd, _trbo,\n  { {0x7c2b0089, 0x3f850016, 0x394204fe, 0x00000000}},  //   _atgr, _dalu_, kaks_,\n  { {0xdef9008b, 0x3942006c, 0x3c2001aa, 0x00000000}},  //   цыі_, jaks_, _pòv_,\n  { {0x6d400127, 0x3942224c, 0x3f853208, 0x00000000}},  //   rama, daks_, _falu_,\n  { {0x6d403209, 0x3f85320a, 0x248200e0, 0x00000000}},  //   sama, _galu_, _mskm_,\n  { {0x21fc0224, 0xb8260044, 0x394200ca, 0x00000000}},  //   ního_, _বিগত_, faks_,\n  { {0xdb1a010e, 0x3942010e, 0x00000000, 0x00000000}},  //   litü, gaks_,   ,\n  { {0x2ac200f4, 0x753d0ef2, 0xed570088, 0x00000000}},  //   _bébé_, _resz, _хоч_,\n  { {0x443900d9, 0x00000000, 0x00000000, 0x00000000}},  //   _rws_,   ,   ,\n  { {0x661e016c, 0x3942225c, 0x21fc00b9, 0x00000000}},  //   _cupk, baks_, jího_,\n  { {0x44390462, 0x00000000, 0x00000000, 0x00000000}},  //   _pws_,   ,   ,\n  { {0x753d0047, 0x69dd01e2, 0xdb180068, 0x00000000}},  // [a170] _vesz, mnse, _alvé,\n  { {0x6ad00055, 0x442b0011, 0x443926b3, 0x00000000}},  //   _সুযো, _vtc_, _vws_,\n  { {0x753d0047, 0x442b19a7, 0x22470010, 0x00000000}},  //   _tesz, _wtc_, énk_,\n  { {0x3f85320b, 0x442b00f4, 0x31350500, 0x00000000}},  //   _salu_, _ttc_, федр,\n  { {0x442b215e, 0x69dd021f, 0x3f850352, 0x00000000}},  //   _utc_, inse, _palu_,\n  { {0x69dd0635, 0x14080061, 0xdfd10025, 0x00000000}},  //   hnse, वगृह_, ضيع_,\n  { {0x21fc00b9, 0x63a3000c, 0x3f85006c, 0x00000000}},  //   cího_, önnu, _valu_,\n  { {0x69dd320c, 0x656d010f, 0x629a11af, 0x00000000}},  //   jnse, nfah, _štog,\n  { {0xfc050517, 0x3f85320d, 0x39420004, 0x00000000}},  //   мпио, _talu_, vaks_,\n  { {0xdb1a0181, 0x76550036, 0x00000000, 0x00000000}},  //   ditó, krzy,   ,\n  { {0x8eb500a6, 0x3942006c, 0x29000010, 0x00000000}},  //   _تماش, taks_, _szia_,\n  { {0x6d4b0018, 0x7f431529, 0xbcb50242, 0x00000000}},  //   _udga, lanq, _обещ,\n  { {0xe87c01f6, 0x656d010f, 0x21fc00b9, 0x00000000}},  //   _düşü, dfah, zího_,\n  { {0x69dd08e0, 0x39420004, 0xdb080048, 0x00000000}},  //   anse, saks_, ghdó,\n  { {0xe9d20025, 0x7bc10048, 0x7a42013e, 0x00000000}},  //   _لغة_, mhlu, _vítá,\n  { {0x29000032, 0x656d01a2, 0x68f600b0, 0x00000000}},  //   _tzia_, gfah, _tyyd,\n  { {0xd4670200, 0x0443026b, 0x60040129, 0x00000000}},  // [a180] мите_, кетн, lòme,\n  { {0x7bc1320e, 0x76550036, 0x6722007d, 0x00000000}},  //   nhlu, brzy, _मलिक_,\n  { {0x38cb007a, 0xa3af0061, 0x9f4700d4, 0x00000000}},  //   _هایی_, _ओकर_, goní_,\n  { {0x2005027e, 0x765c320f, 0x02de00e8, 0x00000000}},  //   _ahli_, mury, _मशीन,\n  { {0x3940109a, 0x7bc13210, 0x00000000, 0x00000000}},  //   _meis_, khlu,   ,\n  { {0x39400195, 0x4432039b, 0xdce00089, 0x00000000}},  //   _leis_, mpy_, zemē,\n  { {0x2e4a005e, 0x44320253, 0xdb0300d4, 0x00000000}},  //   цяло_, lpy_, _boní,\n  { {0x44320093, 0xdb0300f6, 0x248d016c, 0x00000000}},  //   opy_, _coní, _šemi_,\n  { {0xa06a026b, 0x7f4302d0, 0x6143025f, 0x00000000}},  //   _фаза_, banq, _шета,\n  { {0x7bc1002a, 0x0a6a005e, 0x5a340b49, 0x00000000}},  //   ghlu, орми_, ннот,\n  { {0x59f9007e, 0x8aa30088, 0x68fa006b, 0x00000000}},  //   зеня_, вряд, ətdi,\n  { {0x7e6a001c, 0x8d930025, 0x69dd08ed, 0x00000000}},  //   mtfp, _للمش, unse,\n  { {0x69dd010f, 0x39400051, 0x29d2016c, 0x00000000}},  //   rnse, _deis_, pšan_,\n  { {0x76550046, 0x7bc1010f, 0x7d020ecc, 0x00000000}},  //   trzy, chlu, _izos,\n  { {0xdb1a0e03, 0x656d3211, 0xcc880082, 0x00000000}},  //   sitó, tfah, _hớ_,\n  { {0x69d60010, 0x00000000, 0x00000000, 0x00000000}},  //   ézet,   ,   ,\n  { {0x656d010f, 0xa4c00180, 0xe9df0142, 0x00000000}},  // [a190] rfah, rüşü_, mnú_,\n  { {0x765c055e, 0x76550036, 0x656d010f, 0x00000000}},  //   bury, przy, sfah,\n  { {0x77b00039, 0x33f40039, 0xe9df0048, 0x00000000}},  //   _växt, växt_, onú_,\n  { {0x397c0049, 0x9f4707f0, 0xe9df0611, 0x00000000}},  //   ַטונ, roní_, nnú_,\n  { {0xe4e70088, 0x7f43038e, 0x660d00b0, 0x00000000}},  //   _цінн, tanq, mmak,\n  { {0x01c9026c, 0xe9df3212, 0x660d014a, 0x00000000}},  //   _کورٹ_, hnú_, lmak,\n  { {0xfe71035b, 0x7f43008e, 0xd3460014, 0x00000000}},  //   ادت_, ranq, _سینه_,\n  { {0x2247004f, 0x660d3213, 0x4c8504b6, 0x00000000}},  //   ánku_, nmak, елив,\n  { {0x39400168, 0x7c2d002b, 0xcc880082, 0x00000000}},  //   _reis_, _ħars, _cớ_,\n  { {0x39403214, 0x660d010e, 0xdd1d00e5, 0x00000000}},  //   _seis_, hmak, _fâşi,\n  { {0xa3b70061, 0x660d014a, 0x765c00e5, 0x00000000}},  //   _जवन_, kmak, xury,\n  { {0x3ce00091, 0x660d3215, 0x7bc101e5, 0x00000000}},  //   _žive_, jmak, shlu,\n  { {0x777c049a, 0x39403216, 0x00000000, 0x00000000}},  //   terx, _veis_,   ,\n  { {0x660d010e, 0x394001a2, 0x765c0036, 0x00000000}},  //   emak, _weis_, tury,\n  { {0x66e32239, 0x7f41052a, 0x6e2100f8, 0x00000000}},  //   гора, _melq, _julb,\n  { {0x660d01d6, 0x64560541, 0x38690066, 0x00000000}},  //   gmak, tryi, _fqar_,\n  { {0x765c0537, 0xe4060a85, 0x00000000, 0x00000000}},  // [a1a0] sury, езап,   ,\n  { {0x26cc0181, 0xb4e00061, 0x43860025, 0x00000000}},  //   údos_, _तशी_, علاق,\n  { {0x443218d5, 0x660d00d9, 0xdb0300f6, 0x00000000}},  //   spy_, bmak, _jonà,\n  { {0xe04600e3, 0x64a6007e, 0x4432112b, 0x00000000}},  //   енди, _зама, ppy_,\n  { {0x351b009b, 0xf1a903ec, 0x00000000, 0x00000000}},  //   _מוכנ, باله_,   ,\n  { {0x8fa3019d, 0x44223217, 0xf41f00b0, 0x00000000}},  //   лаче, _iuk_, _eräs_,\n  { {0x539b00b6, 0x44220145, 0x7e680009, 0x00000000}},  //   _צילו, _huk_, _qqdp,\n  { {0x4422194d, 0x6e210fd1, 0xf41f00f8, 0x00000000}},  //   _kuk_, _dulb, _gräs_,\n  { {0x4422010a, 0x63ae11af, 0xe9df0142, 0x00000000}},  //   _juk_, _kobn, vnú_,\n  { {0x660d0089, 0x4f84026c, 0x7ac600ed, 0x00000000}},  //   zmak, _جارہ, есме,\n  { {0x44220030, 0x6e210089, 0x2ec60b6c, 0x00000000}},  //   _luk_, _gulb, _ثقاف,\n  { {0xcc880011, 0xdb0300f6, 0x3e4c013e, 0x00000000}},  //   _tớ_, _donà, mět_,\n  { {0x4422048a, 0x98b8005e, 0xe9df0142, 0x00000000}},  //   _nuk_, елят_, rnú_,\n  { {0x2b450009, 0xc5fb007d, 0x8c1b009b, 0x00000000}},  //   calc_, ्ष्य_, _זוגי,\n  { {0x4422000c, 0x660d1907, 0xf8ae00a1, 0x00000000}},  //   _auk_, tmak, مکی_,\n  { {0x7c2200b0, 0x00000000, 0x00000000, 0x00000000}},  //   _kuor,   ,   ,\n  { {0x660d0127, 0x63ae00ca, 0x6d4f0051, 0x00000000}},  // [a1b0] rmak, _bobn, ócai,\n  { {0x44222075, 0x660d0056, 0x7c220207, 0x00000000}},  //   _duk_, smak, _muor,\n  { {0xd25000a1, 0xd13113d9, 0x660d3218, 0x00000000}},  //   ینے_, لما_, pmak,\n  { {0xa2d5001c, 0x3e4c0224, 0x6d4200e5, 0x00000000}},  //   _येण्, dět_, _neoa,\n  { {0x7c222334, 0x7f410065, 0x4422002d, 0x00000000}},  //   _nuor, _pelq, _guk_,\n  { {0x25a931f3, 0x6e213219, 0x7f410023, 0x00000000}},  //   ljal_, _pulb, _qelq,\n  { {0x4422002d, 0x6d42012d, 0x00000000, 0x00000000}},  //   _zuk_, _beoa,   ,\n  { {0x25a9321a, 0x44220093, 0xc6940097, 0x00000000}},  //   njal_, _yuk_, ראק_,\n  { {0x7c220207, 0x6d42001a, 0xa2d50061, 0x00000000}},  //   _cuor, _deoa, _येत्,\n  { {0x2cc70011, 0x6e21001a, 0x25a9006c, 0x00000000}},  //   _đtdđ_, _tulb, hjal_,\n  { {0x25a90443, 0x00000000, 0x00000000, 0x00000000}},  //   kjal_,   ,   ,\n  { {0x7c220198, 0x6d42001a, 0x25a9321b, 0x00000000}},  //   _fuor, _geoa, jjal_,\n  { {0xef180089, 0xbb850025, 0x600400f6, 0x00000000}},  //   _daļu_, _للشي, lòma,\n  { {0x44220007, 0x5a9528d2, 0x00000000, 0x00000000}},  //   _ruk_, _ариф,   ,\n  { {0xf74308d6, 0x442201a3, 0x7c2201a2, 0x00000000}},  //   ресо, _suk_, _zuor,\n  { {0x63ae07a0, 0x645f0065, 0x4422049c, 0x00000000}},  //   _sobn, fuqi, _puk_,\n  { {0x6295008e, 0x00000000, 0x00000000, 0x00000000}},  // [a1c0] _arzo,   ,   ,\n  { {0x4422037e, 0x600401aa, 0xd6cf00a1, 0x00000000}},  //   _vuk_, kòma, حقہ_,\n  { {0x20020006, 0xdb030010, 0x00000000, 0x00000000}},  //   _ūkio_, _elnö,   ,\n  { {0x4422205f, 0x2c6b0030, 0x3e4c00b9, 0x00000000}},  //   _tuk_, kød_, vět_,\n  { {0x69a30061, 0xf9930097, 0x64430166, 0x00000000}},  //   गाती, ירא_, ćnic,\n  { {0x60040263, 0x6d420085, 0x9f8a006c, 0x00000000}},  //   fòma, _seoa, _lööb_,\n  { {0x7c22021e, 0xe1260072, 0x6e941095, 0x00000000}},  //   _suor, _амби, البا,\n  { {0x65640058, 0x00000000, 0x00000000, 0x00000000}},  //   ngih,   ,   ,\n  { {0x6d42006c, 0xdb1a014a, 0x7dde01c5, 0x00000000}},  //   _veoa, nitö, nīsi,\n  { {0x7c2200b0, 0x61e200ca, 0x00000000, 0x00000000}},  //   _vuor, lnol,   ,\n  { {0xdea30167, 0x5ea60355, 0x600400f6, 0x00000000}},  //   _نیوی, _جمال, còma,\n  { {0x61e216af, 0x6bd7025a, 0x7c2200b0, 0x00000000}},  //   nnol, _یونس_, _tuor,\n  { {0x3f8c129d, 0x7c2d005a, 0x6c5406e3, 0x00000000}},  //   _kadu_, _çarp, _склу,\n  { {0x61e2321c, 0x7dde0089, 0x6b8a0190, 0x00000000}},  //   hnol, dīsi, _uafg,\n  { {0x8c1b0097, 0xf1b90059, 0xdb7b0097, 0x00000000}},  //   _קווי, _hiše_, _חנוכ,\n  { {0x69c6001f, 0xdb1a321d, 0xf1b90166, 0x00000000}},  //   chke, chtá, _kiše_,\n  { {0x33750017, 0x25a9321e, 0xa5f80793, 0x00000000}},  // [a1d0] лгар, rjal_, тету_,\n  { {0x3f8c0091, 0x62950036, 0x389a009b, 0x00000000}},  //   _nadu_, _przo, _ניתנ,\n  { {0x798d011c, 0x2d8d00e7, 0x3f8e1ecf, 0x00000000}},  //   _kaaw, ydee_, ddfu_,\n  { {0x61e2321f, 0xfb150049, 0x798d0093, 0x00000000}},  //   gnol, אַנט_, _jaaw,\n  { {0x80cd03d7, 0x7fd50ee0, 0x3f8c002d, 0x00000000}},  //   _देखे, лікі, _badu_,\n  { {0x644d0020, 0x661d3220, 0x3f8c00c4, 0x00000000}},  //   msai, _hisk, _cadu_,\n  { {0x4429178e, 0x661d0010, 0x2f540088, 0x00000000}},  //   lqa_, _kisk, ртіс,\n  { {0x61e2049a, 0x661d1524, 0x798d0058, 0x00000000}},  //   cnol, _jisk, _naaw,\n  { {0x661d0a23, 0x644d00b0, 0x53b70164, 0x00000000}},  //   _misk, nsai, _आकाश,\n  { {0x3f8c3221, 0x09dc001c, 0xdaa91376, 0x00000000}},  //   _gadu_, मच्य, евод_,\n  { {0xd9460057, 0xa96a0072, 0x06d80044, 0x00000000}},  //   лени, нина_, _দুনি,\n  { {0x644d0089, 0x7c9505d4, 0x3f8c0640, 0x00000000}},  //   ksai, _مشتا, _zadu_,\n  { {0xeb8e00c0, 0x798d0020, 0x256d0010, 0x00000000}},  //   _ли_, _daaw, zóló_,\n  { {0x69c60065, 0x661d3222, 0x6d4900f6, 0x00000000}},  //   shke, _aisk, laea,\n  { {0x4429002b, 0xfbd00014, 0xe9da00e2, 0x00000000}},  //   eqa_, _بتن_, _пкк_,\n  { {0x61e2005f, 0x88860679, 0x661d0ebd, 0x00000000}},  //   xnol, _ближ, _cisk,\n  { {0x661d0387, 0x69c41111, 0x7c290065, 0x00000000}},  // [a1e0] _disk, _ilie, nqer,\n  { {0x798d0036, 0xdb0300f4, 0xdb1a006c, 0x00000000}},  //   _zaaw, _conç, ritö,\n  { {0x50d6007a, 0x3f8c26b5, 0xdb1a0ad1, 0x00000000}},  //   گزار, _radu_, sitö,\n  { {0x3f8c145e, 0x14d50061, 0xd5b10011, 0x00000000}},  //   _sadu_, _ठेवण, ết_,\n  { {0x7bc30004, 0x61e23223, 0x644d0327, 0x00000000}},  //   _olnu, rnol, csai,\n  { {0xdb030181, 0x7f2a00a1, 0x661d04bb, 0x00000000}},  //   _gonç, رستِ_, _zisk,\n  { {0x03d7012f, 0x69c43224, 0xa5bb00f6, 0x00000000}},  //   _עולם_, _olie, _fiód,\n  { {0xf1b90059, 0xf99f01aa, 0x7bc30288, 0x00000000}},  //   _piše_, nmèt_, _alnu,\n  { {0x7bc60dec, 0x6b8101a2, 0x9b6a02dc, 0x00000000}},  //   ūkum, felg, ншна_,\n  { {0xf1b90119, 0xef91007a, 0x6b813225, 0x00000000}},  //   _više_, _ویند, gelg,\n  { {0x69c405c4, 0x387b0026, 0xdd8f01f2, 0x00000000}},  //   _blie, _spqr_, _лш_,\n  { {0x3166002d, 0x7bc33226, 0x201e1eb7, 0x00000000}},  //   ngoz_, _elnu, _hiti_,\n  { {0x201e3227, 0x6b810455, 0x6fb80164, 0x00000000}},  //   _kiti_, belg, _अवां,\n  { {0x661d3228, 0xdb180010, 0x00000000, 0x00000000}},  //   _sisk, _elvá,   ,\n  { {0x7bda021e, 0x201e0020, 0x69c41a7f, 0x00000000}},  //   mitu, _miti_, _flie,\n  { {0xa8a7005e, 0x644d1f2e, 0x986500a1, 0x00000000}},  //   _брок, tsai, _پیسے_,\n  { {0x661d010a, 0x24580057, 0x03d51969, 0x00000000}},  // [a1f0] _visk, лать_, ажаю,\n  { {0x4429002b, 0x201e0059, 0x661d01bb, 0x00000000}},  //   rqa_, _niti_, _wisk,\n  { {0x661d0aaa, 0x644d02af, 0x57fc0049, 0x00000000}},  //   _tisk, ssai, _אלזו,\n  { {0xa1190054, 0x7bda3229, 0x50b500ed, 0x00000000}},  //   نقاط_, hitu, ислу,\n  { {0x629a049a, 0x201e01d9, 0x442912d7, 0x00000000}},  //   _áton, _biti_, qqa_,\n  { {0x201e1d52, 0x7bda0632, 0x9028008b, 0x00000000}},  //   _citi_, jitu, уцца_,\n  { {0x7bda2828, 0xda050061, 0x6b81007f, 0x00000000}},  //   ditu, रतात_, velg,\n  { {0xf2d2019b, 0x201e0006, 0x394b00f6, 0x00000000}},  //   _ועל_, _eiti_, jacs_,\n  { {0xfce5004c, 0x61fb0020, 0x201e322a, 0x00000000}},  //   ропо, _ikul, _fiti_,\n  { {0x7bda065c, 0x69c4322b, 0x201e0009, 0x00000000}},  //   gitu, _slie, _giti_,\n  { {0x69c40142, 0x61e90292, 0x8d770647, 0x00000000}},  //   _plie, _kjel, _ماشا,\n  { {0x7cd600a1, 0x6b811341, 0x764e2c31, 0x00000000}},  //   اویز_, selg, vsby,\n  { {0x69c401b5, 0x61fb0020, 0x6b81010e, 0x00000000}},  //   _vlie, _mkul, pelg,\n  { {0x7bda0c1f, 0x201e322c, 0x2d8f00ea, 0x00000000}},  //   citu, _xiti_, _hage_,\n  { {0x61fb011f, 0x69c401d5, 0x2d8f068f, 0x00000000}},  //   _okul, _tlie, _kage_,\n  { {0x69c4002b, 0xceb200b6, 0x3936008b, 0x00000000}},  //   _ulie, חיל_, _тэкс,\n  { {0x2d8f00f8, 0x6fc5001c, 0x9f5e00b0, 0x00000000}},  // [a200] _mage_, वसां, _yhtä_,\n  { {0x2d8f322d, 0x80a60167, 0x61fb0f7c, 0x00000000}},  //   _lage_, یمان, _akul,\n  { {0x61e90166, 0xa75b009b, 0xf10e0963, 0x00000000}},  //   _bjel, _בדיר, िध्द_,\n  { {0xea76007b, 0x201e322e, 0x61e90243, 0x00000000}},  //   יגער_, _siti_, _cjel,\n  { {0x61e90209, 0x201e322f, 0x25a23230, 0x00000000}},  //   _djel, _piti_, _inkl_,\n  { {0x3ce000ee, 0x7c24002a, 0xdfcf0380, 0x00000000}},  //   _živo_, _éiri, وين_,\n  { {0x201e2b84, 0x7bda006c, 0x61e90056, 0x00000000}},  //   _viti_, vitu, _fjel,\n  { {0x27f81642, 0x61e9080e, 0xdcea00ca, 0x00000000}},  //   horn_, _gjel, šiče,\n  { {0x2d8f0018, 0xbc670054, 0x201e011c, 0x00000000}},  //   _dage_, لمين_, _titi_,\n  { {0x90e50063, 0x201e3231, 0x2b470087, 0x00000000}},  //   _اسفن, _uiti_, _cenc_,\n  { {0x7bda3232, 0xbeaa007a, 0xf1b90059, 0x00000000}},  //   ritu, _جهان_, _hiša_,\n  { {0x7bda021e, 0xdebb00a3, 0x2d8f2afd, 0x00000000}},  //   situ, _שמאל, _gage_,\n  { {0x6e28004f, 0x6c340014, 0x2d840095, 0x00000000}},  //   _hudb, _افتا, meme_,\n  { {0xf1b90209, 0x2d84011f, 0xdd8e00a1, 0x00000000}},  //   _miša_, leme_, _روڈ_,\n  { {0x69dd1339, 0x7bd80009, 0x66b400e2, 0x00000000}},  //   éres, _imvu, обру,\n  { {0xdcfb047f, 0x59d40025, 0xf99f0129, 0x00000000}},  //   nduğ, _وغير, rmès_,\n  { {0x69dd29e8, 0xf1b901ee, 0x600d13ac, 0x00000000}},  // [a210] mise, _niša_, lúme,\n  { {0x61e93233, 0x69dd0114, 0xa3b70061, 0x00000000}},  //   _sjel, lise, _जवळ_,\n  { {0xe6950054, 0x600d000c, 0xdb030039, 0x00000000}},  //   _الجد, núme, _tonå,\n  { {0x2d84047c, 0x69dd0056, 0xa5bb008e, 0x00000000}},  //   jeme_, nise, _dióc,\n  { {0x2d8f062a, 0x2d840161, 0x39490051, 0x00000000}},  //   _rage_, deme_, _meas_,\n  { {0x69dd006c, 0x39490051, 0x7dde001e, 0x00000000}},  //   hise, _leas_, zīst,\n  { {0x320d0038, 0x2d8f030a, 0x61e90166, 0x00000000}},  //   _they_, _page_, _tjel,\n  { {0x2d840190, 0x69dd1b20, 0x61e900ca, 0x00000000}},  //   geme_, jise, _ujel,\n  { {0x69dd0004, 0x61f90036, 0x00000000, 0x00000000}},  //   dise, mowl,   ,\n  { {0x6e28021d, 0x5ba9013b, 0x78bd00b0, 0x00000000}},  //   _fudb, уком_, dysv,\n  { {0x2d8f1390, 0x7dde001e, 0x63b505fd, 0x00000000}},  //   _tage_, tīst, _mozn,\n  { {0x69dd3234, 0x63b501ee, 0x39490035, 0x00000000}},  //   gise, _lozn, _ceas_,\n  { {0x27f83235, 0xec350049, 0x39490051, 0x00000000}},  //   torn_, _פאַר_, _deas_,\n  { {0xdc36007b, 0x7c3b033b, 0x69dd3236, 0x00000000}},  //   _האסט_, mpur, aise,\n  { {0x7c3b000c, 0x69dd08a7, 0x3949004a, 0x00000000}},  //   lpur, bise, _feas_,\n  { {0x249f0091, 0x7bc100f8, 0x2a360025, 0x00000000}},  //   _šuma_, lklu, _اكيد_,\n  { {0x27f80061, 0x61f90036, 0x2489000a, 0x00000000}},  // [a220] porn_, dowl, gwam_,\n  { {0x7bc101d5, 0xd8d701ce, 0x79860020, 0x00000000}},  //   nklu, _לופט_, lekw,\n  { {0xce950089, 0xdceb0089, 0x63b5016e, 0x00000000}},  //   šējā_, _angļ, _dozn,\n  { {0x629a0b33, 0x6e283237, 0x7f4801f3, 0x00000000}},  //   _átom, _rudb, _sedq,\n  { {0x6e280091, 0x9053007e, 0xdfda005e, 0x00000000}},  //   _sudb, звіц, лък_,\n  { {0x824a03ab, 0x6604011f, 0xdfd0006d, 0x00000000}},  //   _مشرف_, llik, بيت_,\n  { {0x6f01018e, 0x2d84010f, 0x6604139b, 0x00000000}},  //   _cylc, teme_, olik,\n  { {0x6604011f, 0x63b50027, 0x629c00b0, 0x00000000}},  //   nlik, _zozn, _irro,\n  { {0x2d840059, 0xe3bf027b, 0x66040007, 0x00000000}},  //   reme_, _xuño_, ilik,\n  { {0x3949006c, 0xdee601fc, 0x67210295, 0x00000000}},  //   _seas_, _лози, žlji,\n  { {0x660411b2, 0x69dd021e, 0x3949006c, 0x00000000}},  //   klik, tise, _peas_,\n  { {0x798601c3, 0x629c00d9, 0x24890036, 0x00000000}},  //   gekw, _mrro, ywam_,\n  { {0x66041693, 0x3949008e, 0x600d3238, 0x00000000}},  //   dlik, _veas_, súme,\n  { {0x7bc1001f, 0x69dd127b, 0x6604006c, 0x00000000}},  //   cklu, sise, elik,\n  { {0x98a5027d, 0x66040007, 0x7d02118a, 0x00000000}},  //   ğlı_, flik, _hyos,\n  { {0x443b001c, 0x660426c3, 0x98a5038c, 0x00000000}},  //   tpq_, glik, şlı_,\n  { {0x545501fb, 0x9327025a, 0x629c3239, 0x00000000}},  // [a230] юват, مران, _arro,\n  { {0xe9df0051, 0x6604323a, 0x6e220048, 0x00000000}},  //   liú_, alik, _liob,\n  { {0x63b50059, 0x7c3b323b, 0x00000000, 0x00000000}},  //   _vozn, zpur,   ,\n  { {0xe9df002a, 0x225c01ca, 0x63b50190, 0x00000000}},  //   niú_, ávka_, _wozn,\n  { {0x628e2dad, 0x1be80061, 0x61f9323c, 0x00000000}},  //   _esbo, टचाल_, rowl,\n  { {0x44390038, 0x442b00fa, 0xe9df0048, 0x00000000}},  //   _its_, _iuc_, hiú_,\n  { {0x6e2200f8, 0x442b00f6, 0x44390253, 0x00000000}},  //   _biob, _huc_, _hts_,\n  { {0x442302ae, 0x7d020061, 0xf8bf1697, 0x00000000}},  //   _hij_, _byos, ncés_,\n  { {0xdb1a002a, 0x656f0093, 0x7d020009, 0x00000000}},  //   chtú, _mcch, _cyos,\n  { {0x4423323d, 0x66040213, 0x79860020, 0x00000000}},  //   _jij_, zlik, wekw,\n  { {0x442302ae, 0xf9860594, 0x656f0198, 0x00000000}},  //   _mij_, огно, _occh,\n  { {0x64430107, 0x7c3b0dc9, 0x6e220eba, 0x00000000}},  //   ćnij, ppur, _giob,\n  { {0x79860fb6, 0xf98a0014, 0x442b0035, 0x00000000}},  //   rekw, هنگي_, _nuc_,\n  { {0xaa450364, 0x61b6007d, 0x6d4b002d, 0x00000000}},  //   _декл, _अक्ष, _hega,\n  { {0x44390006, 0x66040004, 0x6d4b003f, 0x00000000}},  //   _ats_, tlik, _kega,\n  { {0xe5a304f9, 0x660401d6, 0x443900f4, 0x00000000}},  //   миси, ulik, _bts_,\n  { {0x6d4b0047, 0x44230662, 0x6604323e, 0x00000000}},  // [a240] _mega, _bij_, rlik,\n  { {0x66040004, 0x6d4b323f, 0x442b3240, 0x00000000}},  //   slik, _lega, _duc_,\n  { {0x66043241, 0x44390129, 0xe29701e1, 0x00000000}},  //   plik, _ets_, жах_,\n  { {0x6d4b033b, 0xf653009b, 0x44390009, 0x00000000}},  //   _nega, _קצר_, _fts_,\n  { {0x44390471, 0x7c2b1750, 0x1047005e, 0x00000000}},  //   _gts_, _nugr, оящи_,\n  { {0x6d593242, 0xc05901fb, 0x6d4b006c, 0x00000000}},  //   _adwa, сії_, _aega,\n  { {0x600404bd, 0x628e011c, 0x7c2b01c3, 0x00000000}},  //   nòmi, _usbo, _augr,\n  { {0x442302ae, 0x5d54053c, 0x6d4b3243, 0x00000000}},  //   _zij_, чкит, _cega,\n  { {0x6d4b0bc1, 0xe0da005e, 0x24820022, 0x00000000}},  //   _dega, _тва_, _jpkm_,\n  { {0x6d5907be, 0x32061c7e, 0x3f87055a, 0x00000000}},  //   _edwa, lloy_, cenu_,\n  { {0xc33301f8, 0xa3dc0061, 0xe9df0051, 0x00000000}},  //   וות_, तोय_, tiú_,\n  { {0x7c23084a, 0x78a212d5, 0x6e22012d, 0x00000000}},  //   _einr, _šova, _uiob,\n  { {0xe9df3244, 0xec7700ed, 0x1d07003b, 0x00000000}},  //   riú_, _мпц_, _деци_,\n  { {0x443901ee, 0x2905001e, 0xe9df0051, 0x00000000}},  //   _rts_, āla_, siú_,\n  { {0x442b3245, 0x7c2b3246, 0xa3ae006e, 0x00000000}},  //   _suc_, _zugr, कान_,\n  { {0x442b0a06, 0xa4d50088, 0x3f87199a, 0x00000000}},  //   _puc_, побі, zenu_,\n  { {0x92e70055, 0xf8bf3247, 0x443900fa, 0x00000000}},  // [a250] _পরে_, rcés_, _qts_,\n  { {0x29150036, 0x6b8800f8, 0xa5bb0082, 0x00000000}},  //   ądać_, nedg, _gión,\n  { {0x44390300, 0x1b1c0044, 0x44230065, 0x00000000}},  //   _wts_, পুরে_, _vij_,\n  { {0x442302ae, 0x442b0011, 0x44390145, 0x00000000}},  //   _wij_, _tuc_, _tts_,\n  { {0x4423008d, 0x8fa50822, 0x3f8700f4, 0x00000000}},  //   _tij_, зале, tenu_,\n  { {0x6d4b033b, 0x94ba00b6, 0x9f4700f4, 0x00000000}},  //   _sega, _המשת, onné_,\n  { {0x925800d7, 0x6d4b020c, 0xed590a78, 0x00000000}},  //   _март_, _pega, бой_,\n  { {0x3f87016c, 0x656d09f3, 0x7c23004a, 0x00000000}},  //   senu_, ngah, _sinr,\n  { {0x6d4b3248, 0x2054007c, 0x3f8701ee, 0x00000000}},  //   _vega, _октя, penu_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xf1b921e8, 0x6d4b04cb, 0x76550036, 0x00000000}},  //   _koš_, _tega, jszy,\n  { {0xf1b90119, 0x22470428, 0x9f5e01aa, 0x00000000}},  //   _još_, ánky_, _aktè_,\n  { {0xeaae00a1, 0xd7a70061, 0xa3ae0309, 0x00000000}},  //   نٹی_, खांच, काम_,\n  { {0x4c9a0104, 0xf1b90091, 0x9d1a00b3, 0x00000000}},  //   _לבנו, _loš_, _פוסט,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x25a60219, 0xb0bd0204, 0x3ce00059, 0x00000000}},  //   ñol_, ्नाग, _živi_,\n  { {0x2ea8013d, 0x00000000, 0x00000000, 0x00000000}},  // [a260] _कप्त,   ,   ,\n  { {0xdb03028c, 0x389b00a3, 0x317f001a, 0x00000000}},  //   _anné, _פיינ, _abuz_,\n  { {0xd36f06f1, 0xf1b90059, 0x91e601ee, 0x00000000}},  //   اهم_, _boš_, поже,\n  { {0x69c6021e, 0x00000000, 0x00000000, 0x00000000}},  //   nkke,   ,   ,\n  { {0x92bc0044, 0xd00a0140, 0x69c622c1, 0x00000000}},  //   ইছে_, беде_, ikke,\n  { {0xdb030010, 0x61eb0122, 0x00000000, 0x00000000}},  //   _enné, angl,   ,\n  { {0x09cc001c, 0x59cc0061, 0x20020006, 0x00000000}},  //   ासाठ, ासार, _ūkis_,\n  { {0x20070340, 0x799601c3, 0x00000000, 0x00000000}},  //   alni_, _nayw,   ,\n  { {0x69dd00f4, 0x6b880146, 0x5c06007e, 0x00000000}},  //   èrem, tedg, зяна,\n  { {0x61e22ecb, 0x5a340256, 0x6f6600ed, 0x00000000}},  //   liol, мнот, _ѕвез,\n  { {0x7f3b00b6, 0x79960058, 0x765a0006, 0x00000000}},  //   _העבו, _bayw, štyj,\n  { {0x61e20de6, 0x394d004a, 0x9f5c0023, 0x00000000}},  //   niol, úes_, kovë_,\n  { {0x60c20010, 0x1da90164, 0x76550036, 0x00000000}},  //   nyom, कारत, wszy,\n  { {0x61e20016, 0xfbcf0025, 0xa6d80044, 0x00000000}},  //   hiol, _متى_, _দুইট,\n  { {0x4b7b00b3, 0x61e21622, 0xdb7b009b, 0x00000000}},  //   _האוו, kiol, _הנוכ,\n  { {0xb8e308b7, 0x76550036, 0x69c601a2, 0x00000000}},  //   _এই_, rszy, ckke,\n  { {0x57f5107f, 0x656d0279, 0x69df01f3, 0x00000000}},  // [a270] _опит, rgah, _imqe,\n  { {0xa3d7013d, 0x76550036, 0x656d0058, 0x00000000}},  //   ़ों_, pszy, sgah,\n  { {0x27e33249, 0x69cd324a, 0x59e10061, 0x00000000}},  //   mijn_, _klae, _पगार,\n  { {0x61e20197, 0x27e300b5, 0x68e20006, 0x00000000}},  //   giol, lijn_, _žodi,\n  { {0x2fcc324b, 0x60c20010, 0x69cd0016, 0x00000000}},  //   _bldg_, gyom, _mlae,\n  { {0xa3ae0061, 0x69cd0016, 0x8b0700b9, 0x00000000}},  //   काण_, _llae, _jiří,\n  { {0xdd91009c, 0xc33201f8, 0x69c6324c, 0x00000000}},  //   ہوں_, _יום_, ykke,\n  { {0xf194041f, 0x27e300bb, 0xf1b90087, 0x00000000}},  //   _пись, hijn_, _mišk_,\n  { {0xdd9100a1, 0x3a3c00ca, 0x00000000, 0x00000000}},  //   فوں_, _atvp_,   ,\n  { {0x0ae9007c, 0x69cd006c, 0x3e570035, 0x00000000}},  //   ждой_, _alae, păt_,\n  { {0xa3ae0164, 0x69cd018e, 0x198a13e7, 0x00000000}},  //   कात_, _blae, обни_,\n  { {0x69cd0039, 0x88e62cf1, 0xdb180173, 0x00000000}},  //   _clae, джме, _movè,\n  { {0x31560049, 0x69c600b0, 0x00000000, 0x00000000}},  //   וירן_, rkke,   ,\n  { {0x61e2002d, 0x81e30044, 0x69cd324d, 0x00000000}},  //   ziol, নকি_, _elae,\n  { {0xf772089d, 0x2bca001c, 0x2bda007a, 0x00000000}},  //   _یاد_, िसरा, _بانک_,\n  { {0x9f5c0023, 0x69cd1e28, 0xc9f60025, 0x00000000}},  //   tovë_, _glae, _تستع,\n  { {0x3d110061, 0x00000000, 0x00000000, 0x00000000}},  // [a280] देचे_,   ,   ,\n  { {0x27e300b5, 0x60c20d16, 0x61e2324e, 0x00000000}},  //   cijn_, vyom, wiol,\n  { {0x9f5c008d, 0x61e20052, 0x75490010, 0x00000000}},  //   sovë_, tiol, észü,\n  { {0x9f5c01ca, 0x2fde0022, 0xdb0300fa, 0x00000000}},  //   mové_, _smtg_, _honó,\n  { {0x61e20056, 0x9f5c004f, 0x00000000, 0x00000000}},  //   riol, lové_,   ,\n  { {0x2f14007e, 0xd8d70049, 0x00000000, 0x00000000}},  //   ндлё, וונט_,   ,\n  { {0x9f5c01ca, 0xdb030b33, 0x61e20052, 0x00000000}},  //   nové_, _monó, piol,\n  { {0x27e300b5, 0x68f6009d, 0x00000000, 0x00000000}},  //   zijn_, _oxyd,   ,\n  { {0x63bc0209, 0x91030069, 0x9f5c0161, 0x00000000}},  //   _korn, _апте, hové_,\n  { {0x63bc052d, 0x9f5c004f, 0xdfa60d3a, 0x00000000}},  //   _jorn, kové_, _تحري,\n  { {0x2fd7007a, 0x63bc00ab, 0x69cd324f, 0x00000000}},  //   _تولد_, _morn, _plae,\n  { {0x63bc0a71, 0x9f5c01ca, 0xceb300a3, 0x00000000}},  //   _lorn, dové_, _שיף_,\n  { {0xae1b0049, 0x63bc0007, 0x27e300bb, 0x00000000}},  //   _וואכ, _oorn, tijn_,\n  { {0xdb03008e, 0xe7840fa0, 0x63bc3250, 0x00000000}},  //   _conó, кусо, _norn,\n  { {0xd5bb0256, 0x9f5c01ca, 0x27e300bb, 0x00000000}},  //   оса_, gové_, rijn_,\n  { {0xdb1801ca, 0xca290049, 0x6b9800ea, 0x00000000}},  //   _nové, _צופֿ, _havg,\n  { {0x63bc0030, 0x8415005e, 0x27e300bb, 0x00000000}},  // [a290] _born, емах, pijn_,\n  { {0x6b9a0030, 0x9f5c0161, 0x29090022, 0x00000000}},  //   ndtg, bové_, _iyaa_,\n  { {0x63bc001a, 0xddc3001a, 0xf1b90059, 0x00000000}},  //   _dorn, nunţ, _hiši_,\n  { {0xf1b904eb, 0x00000000, 0x00000000, 0x00000000}},  //   _kiši_,   ,   ,\n  { {0x25ab0270, 0x653a0049, 0x00000000, 0x00000000}},  //   _incl_, _מערד,   ,\n  { {0x63bc0247, 0x1e951fa3, 0x9f4b006b, 0x00000000}},  //   _gorn, ерир, _ölüb_,\n  { {0xed593251, 0x9f470026, 0x00000000, 0x00000000}},  //   пой_, fonò_,   ,\n  { {0xdceb01d5, 0x63bc0032, 0x63b10059, 0x00000000}},  //   _jagħ, _zorn, šenč,\n  { {0x9c250517, 0xdceb01d5, 0x9f5c01ca, 0x00000000}},  //   ндид, _magħ, zové_,\n  { {0xdceb0066, 0x63bc004a, 0x9f47004a, 0x00000000}},  //   _lagħ, _xorn, ronó_,\n  { {0x5fac0061, 0x25bf0061, 0x63b80039, 0x00000000}},  //   चारल, _एकूण, övni,\n  { {0xf99f0263, 0x9f470051, 0xdceb002b, 0x00000000}},  //   blèm_, inní_, _nagħ,\n  { {0x48ce0044, 0x3a2900fa, 0x00000000, 0x00000000}},  //   রপ্র, _diap_,   ,\n  { {0x9f5c0428, 0x6aae0051, 0x2c7901aa, 0x00000000}},  //   tové_, óifí, mèd_,\n  { {0xb90703d7, 0xa3ae02fb, 0xdceb002b, 0x00000000}},  //   _ये_, कास_, _bagħ,\n  { {0xceb20104, 0x98ac006b, 0x9f5c0161, 0x00000000}},  //   נין_, şdı_, rové_,\n  { {0x63bc26ee, 0x7de80224, 0x9f5c01ca, 0x00000000}},  // [a2a0] _porn, měst, sové_,\n  { {0xdb1a3252, 0x2d8d0487, 0xdcea04eb, 0x00000000}},  //   chtó, heee_, šiće,\n  { {0x63bc010f, 0x395200ab, 0xa3dc0309, 0x00000000}},  //   _vorn, _keys_, तोष_,\n  { {0x78a40119, 0xfb160049, 0x00000000, 0x00000000}},  //   _kriv, ײַבט_,   ,\n  { {0x63bc059a, 0x66063253, 0x6731013e, 0x00000000}},  //   _torn, _ikkk, řejň,\n  { {0x64440103, 0xdb0300f6, 0x74160076, 0x00000000}},  //   mpii, _anní, _سوزا,\n  { {0x442a00d4, 0x660600c4, 0x628b0036, 0x00000000}},  //   _iib_, _kkkk, łgor,\n  { {0x2d8d00e0, 0x442a0177, 0x249f0166, 0x00000000}},  //   geee_, _hib_, _šumi_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x3a2904cb, 0xcbce0044, 0x9d13007e, 0x00000000}},  //   _siap_, িচ্ছ, ыдыч,\n  { {0x78a40173, 0x442a0197, 0x2d8d3254, 0x00000000}},  //   _ariv, _mib_, beee_,\n  { {0x442a0263, 0x78a42a6c, 0x3e7a0065, 0x00000000}},  //   _lib_, _briv, mët_,\n  { {0x3e7a008d, 0xdd8f0054, 0x78a40851, 0x00000000}},  //   lët_, _دون_, _criv,\n  { {0x78a40038, 0x7aeb0010, 0x79840009, 0x00000000}},  //   _driv, áltá, _ebiw,\n  { {0x3e7a0065, 0x3a2904cb, 0x78a4006c, 0x00000000}},  //   nët_, _tiap_, _eriv,\n  { {0x78a40d2b, 0x659420e7, 0x442a230b, 0x00000000}},  //   _friv, ласу, _aib_,\n  { {0x442a01aa, 0x24f80a78, 0x3e7a0065, 0x00000000}},  // [a2b0] _bib_, енты_, hët_,\n  { {0x3e7a008d, 0x442a04c9, 0x66720014, 0x00000000}},  //   kët_, _cib_, دگیر,\n  { {0xdceb0f68, 0x3e7a0065, 0x170500a1, 0x00000000}},  //   _tagħ, jët_, _شہری_,\n  { {0x799d0168, 0x200500ea, 0x3e7a0023, 0x00000000}},  //   ndsw, _skli_, dët_,\n  { {0x660d0020, 0x442a0173, 0x799d0116, 0x00000000}},  //   mlak, _fib_, idsw,\n  { {0x660d021e, 0xdee5012b, 0x442a01a2, 0x00000000}},  //   llak, коли, _gib_,\n  { {0xa3ae02fb, 0x3e7a0065, 0x660d0032, 0x00000000}},  //   कार_, gët_, olak,\n  { {0x4ce20055, 0x4c85007c, 0x660d0058, 0x00000000}},  //   _পড়ু, влив, nlak,\n  { {0x7c2a000c, 0x7de800b9, 0x00000000, 0x00000000}},  //   _bifr, věst,   ,\n  { {0x3e7a0065, 0x660d200f, 0x7ae70010, 0x00000000}},  //   bët_, hlak, újto,\n  { {0x7c2a0124, 0xa96a0517, 0x78a4214c, 0x00000000}},  //   _difr, мина_, _sriv,\n  { {0x601600c4, 0x660d0091, 0x8d740014, 0x00000000}},  //   râme, jlak, _ماها,\n  { {0x1a6504e1, 0x6d490b50, 0x660d04eb, 0x00000000}},  //   ریکی_, mbea, dlak,\n  { {0x6a85007e, 0x290c0089, 0x660d0032, 0x00000000}},  //   _алка, āda_, elak,\n  { {0x07a303f3, 0x660d01a3, 0x645d00f8, 0x00000000}},  //   јасн, flak, _avsi,\n  { {0x442a01d5, 0x660d011c, 0x3f8e012d, 0x00000000}},  //   _sib_, glak, zefu_,\n  { {0xa3ae0309, 0x3e7a0065, 0xdb0a0173, 0x00000000}},  // [a2c0] काल_, zët_, _anfè,\n  { {0xa3dc03d7, 0x7c2a0129, 0x6d490085, 0x00000000}},  //   तों_, _xifr, hbea,\n  { {0x660d3255, 0x64443256, 0x00000000, 0x00000000}},  //   blak, spii,   ,\n  { {0x442a0390, 0x3aba0049, 0x504606e3, 0x00000000}},  //   _wib_, ומענ, ведб,\n  { {0x6d490146, 0x442a1dbf, 0xdb0a0173, 0x00000000}},  //   dbea, _tib_, _enfè,\n  { {0x3e7a008d, 0xa3ae0061, 0x442a3257, 0x00000000}},  //   tët_, काळ_, _uib_,\n  { {0x6e2b0061, 0x3f8e0012, 0x6d490f10, 0x00000000}},  //   _bigb, refu_, fbea,\n  { {0x3e7a008d, 0x2bca0164, 0x3f8e0020, 0x00000000}},  //   rët_, िस्थ, sefu_,\n  { {0x6e2b01d6, 0xdb0a00f4, 0x3e7a0065, 0x00000000}},  //   _digb, _infé, sët_,\n  { {0x3e7a0023, 0x00000000, 0x00000000, 0x00000000}},  //   pët_,   ,   ,\n  { {0x9e6502fd, 0x2ba6001c, 0x9f5c3258, 0x00000000}},  //   _مانن, _कोणा, noví_,\n  { {0x7a3e0089, 0x00000000, 0x00000000, 0x00000000}},  //   _rītd,   ,   ,\n  { {0x799d3259, 0x09e4007e, 0x7c2a0066, 0x00000000}},  //   rdsw, роўн, _tifr,\n  { {0x5ba30265, 0x2ca6012d, 0x6e2b1c7e, 0x00000000}},  //   _връз, _irod_, _zigb,\n  { {0x660d1038, 0x27ed0119, 0x45d500ed, 0x00000000}},  //   tlak, đen_, говс,\n  { {0x5967005e, 0x27ed0010, 0x66040032, 0x00000000}},  //   _ръка, ően_, goik,\n  { {0x660d027e, 0x2458007c, 0x629a050f, 0x00000000}},  // [a2d0] rlak, кать_, _štop,\n  { {0x93270014, 0x660d0052, 0x9cd700a0, 0x00000000}},  //   نران, slak, דומה_,\n  { {0x6d490324, 0x660d016e, 0x660401c3, 0x00000000}},  //   ybea, plak, boik,\n  { {0x78a20107, 0xf99f01aa, 0x6d4900f6, 0x00000000}},  //   _šovi, ndè_, xbea,\n  { {0x07f80014, 0xe0d00380, 0xa0690147, 0x00000000}},  //   _سریع_, يزه_, хала_,\n  { {0x9f470065, 0x6e2b325a, 0x26170061, 0x00000000}},  //   minë_, _sigb, _भीती_,\n  { {0xc2930014, 0x7dd5325b, 0x2eb4005e, 0x00000000}},  //   _خیاب, _láse, исъс,\n  { {0x2ca6036a, 0xf1a4025f, 0xf1b90091, 0x00000000}},  //   _brod_, _крун, _pišu_,\n  { {0x6d492c62, 0x9f470065, 0x395901a2, 0x00000000}},  //   rbea, ninë_, dass_,\n  { {0x660400ea, 0xdb03134d, 0x60c400b0, 0x00000000}},  //   zoik, _anná, äime,\n  { {0x39ea0467, 0x44210051, 0x9f470065, 0x00000000}},  //   едно_, imh_, hinë_,\n  { {0x186a004c, 0xceb2071c, 0x9f470065, 0x00000000}},  //   нами_, _ליב_, kinë_,\n  { {0xed590059, 0x8d5a034e, 0x9f470023, 0x00000000}},  //   maž_, _נכסי, jinë_,\n  { {0xaae40014, 0xed59325c, 0x2d9d01d6, 0x00000000}},  //   اسیو, laž_, _hawe_,\n  { {0x39591f4c, 0xf743005e, 0x6604002d, 0x00000000}},  //   bass_, сесо, toik,\n  { {0x2d9f218c, 0x2956005e, 0x9f470023, 0x00000000}},  //   ndue_, _съкр, finë_,\n  { {0xd4670200, 0x08e20044, 0x2d9d0020, 0x00000000}},  // [a2e0] лите_, _গুরু_, _mawe_,\n  { {0x66041619, 0x248b0026, 0x3ce60061, 0x00000000}},  //   soik, _dpcm_, _जइसे_,\n  { {0x8b56007b, 0xa9050752, 0x9f470173, 0x00000000}},  //   ריעס_, _مبین, minè_,\n  { {0xc693007b, 0x4421002a, 0x2d9d10a6, 0x00000000}},  //   _פאר_, amh_, _nawe_,\n  { {0x18360049, 0x9f470065, 0x63ae0022, 0x00000000}},  //   נאַל_, cinë_, _tnbn,\n  { {0x2480037e, 0x25a0006c, 0xa5bb10c9, 0x00000000}},  //   mtim_, ldil_, _chóf,\n  { {0x2480023a, 0x74130123, 0xdb1801dc, 0x00000000}},  //   ltim_, _طوفا, _poví,\n  { {0x2ca6325d, 0x25a01462, 0x225c01ca, 0x00000000}},  //   _prod_, ndil_, ávku_,\n  { {0x7f4600d7, 0x25a0325e, 0x2d9d00d2, 0x00000000}},  //   _безж, idil_, _dawe_,\n  { {0x395900e0, 0x248000e0, 0x394000e5, 0x00000000}},  //   wass_, itim_, _afis_,\n  { {0x7ac60072, 0x2480325f, 0x9f470065, 0x00000000}},  //   успе, htim_, zinë_,\n  { {0x24800f99, 0x2e160025, 0x2d9d3260, 0x00000000}},  //   ktim_, _صباح, _gawe_,\n  { {0x24800065, 0x3f9e0032, 0x00000000, 0x00000000}},  //   jtim_, _katu_,   ,\n  { {0x7d06006c, 0x9f470023, 0x2d9d0045, 0x00000000}},  //   üksu, vinë_, _zawe_,\n  { {0x2bb10204, 0x3f9e0089, 0x2d9d0020, 0x00000000}},  //   जारा, _matu_, _yawe_,\n  { {0x9f470065, 0x3f9e0089, 0xf993083e, 0x00000000}},  //   tinë_, _latu_, _طبع_,\n  { {0x248000e0, 0x44210022, 0x00000000, 0x00000000}},  // [a2f0] gtim_, tmh_,   ,\n  { {0x9f47008d, 0x6fa40061, 0x3f9e253f, 0x00000000}},  //   rinë_, _गोलं, _natu_,\n  { {0x06bf0055, 0x9f47008d, 0x69aa0164, 0x00000000}},  //   _উইকি, sinë_, _जोडी,\n  { {0xe45f000c, 0x7dd50285, 0x9f470408, 0x00000000}},  //   _tvö_, _másc, pinë_,\n  { {0xe4c7008b, 0x3f9e2a96, 0x25f40164, 0x00000000}},  //   _сённ, _batu_, ्करी_,\n  { {0x76450065, 0x3f9e12aa, 0x8fa531c9, 0x00000000}},  //   _kthy, _catu_, раке,\n  { {0x3f9e0f21, 0x00000000, 0x00000000, 0x00000000}},  //   _datu_,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x61eb0198, 0x2d9f06fa, 0xed5911e4, 0x00000000}},  //   migl, rdue_, raž_,\n  { {0xa5bb0051, 0x61eb0190, 0x2d9d0020, 0x00000000}},  //   _fhóg, ligl, _wawe_,\n  { {0x20070129, 0x7dd51a1c, 0x2d9d005b, 0x00000000}},  //   moni_, _cásc, _tawe_,\n  { {0x61eb0207, 0x82760049, 0x9f5c0161, 0x00000000}},  //   nigl, סערע_, mová_,\n  { {0xc2ec0055, 0x20070004, 0x7645000c, 0x00000000}},  //   _করছি_, ooni_, _athy,\n  { {0x6d5b14f0, 0x20070041, 0xfaa51deb, 0x00000000}},  //   laua, noni_, _вако,\n  { {0x9f5c0161, 0x7bc3001a, 0x65c6005e, 0x00000000}},  //   nová_, _ionu, абва,\n  { {0x7bc3009f, 0x2480014a, 0x69cf00d9, 0x00000000}},  //   _honu, ttim_, ckce,\n  { {0x7bc33261, 0x69d60047, 0x20071ac5, 0x00000000}},  // [a300] _konu, _ilye, koni_,\n  { {0x20070f68, 0x24803262, 0x9f5c004f, 0x00000000}},  //   joni_, rtim_, ková_,\n  { {0x24802aee, 0x20073263, 0x9f4700f4, 0x00000000}},  //   stim_, doni_, ciné_,\n  { {0x3f9e0149, 0x69c43264, 0x24803265, 0x00000000}},  //   _satu_, _joie, ptim_,\n  { {0x81cd0044, 0x69c40133, 0x00000000, 0x00000000}},  //   ষোভ_, _moie,   ,\n  { {0x33d5008b, 0xbf210061, 0x2617009d, 0x00000000}},  //   _ліст, मधून_, nçon_,\n  { {0x61eb26df, 0xd176007c, 0xda060061, 0x00000000}},  //   bigl, _вызы, रवात_,\n  { {0x3f9e0020, 0x69c43266, 0xdb18015f, 0x00000000}},  //   _watu_, _noie, _nová,\n  { {0x3f9e000b, 0xdb0a01a2, 0x00000000, 0x00000000}},  //   _tatu_, _wofü,   ,\n  { {0xa5bb0051, 0x69d601aa, 0x20070197, 0x00000000}},  //   _thóg, _alye, coni_,\n  { {0x1fb501be, 0x98a2005f, 0x7bc33267, 0x00000000}},  //   _устр, dakı_, _donu,\n  { {0x69c400f6, 0x6d5b3268, 0x644604eb, 0x00000000}},  //   _coie, caua, _otki,\n  { {0x2b0601f5, 0x69cf014a, 0x629c01f3, 0x00000000}},  //   _सुरु_, rkce, _lsro,\n  { {0x628e01b5, 0x7dd50a87, 0x69d60173, 0x00000000}},  //   _opbo, _tásc, _elye,\n  { {0x8c1b0097, 0x35e7008b, 0xdb18000c, 0x00000000}},  //   _שווי, ацав, _alvö,\n  { {0x69c4002d, 0x6d402121, 0x69d601c3, 0x00000000}},  //   _goie, ncma, _glye,\n  { {0xf94a007b, 0x61eb0207, 0x200714a5, 0x00000000}},  // [a310] _געפֿ, vigl, yoni_,\n  { {0xd7950054, 0xdb0a3269, 0x69c400b5, 0x00000000}},  //   _الدخ, _infâ, _zoie,\n  { {0x6446011f, 0x61eb0a7e, 0x76450039, 0x00000000}},  //   _etki, tigl, _uthy,\n  { {0x201e05e0, 0x00000000, 0x00000000, 0x00000000}},  //   _ahti_,   ,   ,\n  { {0x20071dad, 0xf99f04bd, 0x61eb0197, 0x00000000}},  //   toni_, llès_, rigl,\n  { {0x61eb25e1, 0x44392066, 0x9f5c0161, 0x00000000}},  //   sigl, _ius_, tová_,\n  { {0x20071c28, 0x44390d2b, 0xe61f0011, 0x00000000}},  //   roni_, _hus_, _khô_,\n  { {0x7bc3005a, 0x44390004, 0x9f5c01ca, 0x00000000}},  //   _sonu, _kus_, rová_,\n  { {0x7bc30027, 0x44390006, 0x61e90087, 0x00000000}},  //   _ponu, _jus_, _imel,\n  { {0x4439010a, 0x69c400f4, 0x61fb0c7b, 0x00000000}},  //   _mus_, _soie, _hjul,\n  { {0x15f902f4, 0x443101aa, 0x4439193b, 0x00000000}},  //   ्कार_, _miz_, _lus_,\n  { {0x44390129, 0xe61f0082, 0xf9920025, 0x00000000}},  //   _ous_, _nhô_, أبد_,\n  { {0x7bc30035, 0x69c40601, 0x44390666, 0x00000000}},  //   _tonu, _voie, _nus_,\n  { {0x7bda125d, 0x6d59326a, 0x44310aa9, 0x00000000}},  //   chtu, _hewa, _niz_,\n  { {0x443908ba, 0xdb180010, 0x61e90093, 0x00000000}},  //   _aus_, _tová, _omel,\n  { {0x4439010a, 0x44310089, 0x61e90240, 0x00000000}},  //   _bus_, _aiz_, _nmel,\n  { {0x4431326b, 0x6d5904cb, 0x3a200058, 0x00000000}},  // [a320] _biz_, _mewa, _ihip_,\n  { {0x61e90047, 0x4439326c, 0x6d592381, 0x00000000}},  //   _amel, _dus_, _lewa,\n  { {0x443102d5, 0x44391d47, 0x479b00a3, 0x00000000}},  //   _diz_, _eus_, _גייס,\n  { {0x1219007e, 0x39420203, 0x261700c4, 0x00000000}},  //   аючы_, ncks_, nçol_,\n  { {0x4fc6326d, 0x44310181, 0x2fc50048, 0x00000000}},  //   йска, _fiz_, _bolg_,\n  { {0x61e9326e, 0x161c006e, 0x4375017a, 0x00000000}},  //   _emel, _भीतर_, _муст,\n  { {0x6d5900b5, 0x4439326f, 0x2fc500ca, 0x00000000}},  //   _bewa, _zus_, _dolg_,\n  { {0x7e9600a1, 0x7dd53270, 0x44310087, 0x00000000}},  //   لنڈر_, _pása, _ziz_,\n  { {0x6d59020c, 0xbda600a1, 0xea010082, 0x00000000}},  //   _dewa, لحکو, _quậy_,\n  { {0x9b5801f9, 0x6d4000d2, 0xa3dc0061, 0x00000000}},  //   шиот_, scma, तोच_,\n  { {0x29120022, 0xfba7007c, 0x7995013b, 0x00000000}},  //   _ayya_, стый_, оинф,\n  { {0x7bda008d, 0x6d591955, 0xf2d30049, 0x00000000}},  //   shtu, _gewa, פער_,\n  { {0xae1b009b, 0x657d1a65, 0x00000000, 0x00000000}},  //   _עודכ, _rcsh,   ,\n  { {0x44393271, 0xa3a8007d, 0x00000000, 0x00000000}},  //   _rus_, _खोल_,   ,\n  { {0x44390af5, 0x4431009d, 0xe61f0082, 0x00000000}},  //   _sus_, _riz_, _phô_,\n  { {0x443101f6, 0x4439001a, 0xdb0a0129, 0x00000000}},  //   _siz_, _pus_, _infà,\n  { {0x44310066, 0x69dd0051, 0x9f470026, 0x00000000}},  // [a330] _piz_, mhse, finì_,\n  { {0x443900f4, 0x61e9124c, 0xdcf3016c, 0x00000000}},  //   _vus_, _smel, šaće,\n  { {0x443100b9, 0xe5351001, 0xe61f0011, 0x00000000}},  //   _viz_, _мень, _thô_,\n  { {0x44390219, 0x44311c7e, 0x3f8c0041, 0x00000000}},  //   _tus_, _wiz_, _abdu_,\n  { {0x44390004, 0xe05700a1, 0x6d5900ab, 0x00000000}},  //   _uus_, صیات_, _rewa,\n  { {0x644d020c, 0x78ad040d, 0x6d59003f, 0x00000000}},  //   mpai, _mrav, _sewa,\n  { {0x2fc500c7, 0x644d021e, 0x321f0011, 0x00000000}},  //   _volg_, lpai, _thuy_,\n  { {0x1c45005e, 0x2d8a0010, 0x61e90142, 0x00000000}},  //   оним, őben_, _umel,\n  { {0x644d02f6, 0x78ad00d0, 0xdbf1006b, 0x00000000}},  //   npai, _nrav, nəçi,\n  { {0x7ff70151, 0x3a201b2a, 0x6d590093, 0x00000000}},  //   _اسرا, _ship_, _wewa,\n  { {0x6d590169, 0x00000000, 0x00000000, 0x00000000}},  //   _tewa,   ,   ,\n  { {0xee2e0c50, 0x62850016, 0xdb1a0036, 0x00000000}},  //   _ін_, itho, ektó,\n  { {0x798d0022, 0x261703d1, 0x394d004a, 0x00000000}},  //   _dbaw, rçol_, ñesa_,\n  { {0x78ad0627, 0xdbf1005f, 0xab290726, 0x00000000}},  //   _drav, dəçi, _кола_,\n  { {0x78ad3272, 0x69dd0048, 0x00000000, 0x00000000}},  //   _erav, bhse,   ,\n  { {0x69dd001f, 0x7dd50047, 0x628511f0, 0x00000000}},  //   chse, _máso, dtho,\n  { {0x6285018e, 0xa3ea00e2, 0x644d0058, 0x00000000}},  // [a340] etho, адаа_, gpai,\n  { {0xe3b70088, 0xa5bb0051, 0x317f00e5, 0x00000000}},  //   обу_, _phóc, _acuz_,\n  { {0xe29a0c4e, 0x78ad0059, 0x62850146, 0x00000000}},  //   рае_, _zrav, gtho,\n  { {0x63a51270, 0x00000000, 0x00000000, 0x00000000}},  //   adhn,   ,   ,\n  { {0x92bc0055, 0x62850048, 0x00000000, 0x00000000}},  //   েছে_, atho,   ,\n  { {0x66163273, 0x6e3a146c, 0x62850066, 0x00000000}},  //   llyk, _putb, btho,\n  { {0x7d15006b, 0xcdda0098, 0x628502d4, 0x00000000}},  //   əzsi, ињи_, ctho,\n  { {0x85480006, 0x00000000, 0x00000000, 0x00000000}},  //   brėž,   ,   ,\n  { {0x6ea800a1, 0x00000000, 0x00000000, 0x00000000}},  //   _گناہ_,   ,   ,\n  { {0x3dc600e5, 0x00000000, 0x00000000, 0x00000000}},  //   _woow_,   ,   ,\n  { {0x69dd0065, 0x2905005d, 0xed46007c, 0x00000000}},  //   thse, ğlam_, _днеп,\n  { {0x644d0943, 0x00000000, 0x00000000, 0x00000000}},  //   ypai,   ,   ,\n  { {0x6e222b6f, 0x7dd504bb, 0x764e01c3, 0x00000000}},  //   _ihob, _záso, epby,\n  { {0x7ddc00f4, 0x6285005b, 0x261700c4, 0x00000000}},  //   _dése, ytho, rçom_,\n  { {0x06e10044, 0x6e2200e0, 0x66160039, 0x00000000}},  //   _মুজি, _khob, flyk,\n  { {0x78ad3274, 0x7dd5004f, 0xd5b802b8, 0x00000000}},  //   _trav, _násl, осу_,\n  { {0x78ad0627, 0x04590025, 0xe9df0051, 0x00000000}},  // [a350] _urav, صلاة_, mhú_,\n  { {0x57f4007c, 0x644d0051, 0x62852d0f, 0x00000000}},  //   _опыт, rpai, ttho,\n  { {0x644d11e8, 0x661601d6, 0x6440009d, 0x00000000}},  //   spai, blyk, _émin,\n  { {0x6285018e, 0x7ddc0d7b, 0x7df3001a, 0x00000000}},  //   rtho, _lésb, năst,\n  { {0x62853275, 0x644b00d6, 0x55ba009b, 0x00000000}},  //   stho, ígid, _המרו,\n  { {0x628508f0, 0x94050014, 0x660d22d1, 0x00000000}},  //   ptho, _روزه, loak,\n  { {0x6e220058, 0x00000000, 0x00000000, 0x00000000}},  //   _bhob,   ,   ,\n  { {0xbca50054, 0x317f005d, 0xb222000c, 0x00000000}},  //   كمبي, _ucuz_, áætl,\n  { {0x2bb90025, 0x2b5c0925, 0x96270089, 0x00000000}},  //   مادة_, _bevc_, _izņē,\n  { {0x7ddc028c, 0x9c22008b, 0x00000000, 0x00000000}},  //   _rése, ндыд,   ,\n  { {0xe8e1001d, 0x3b090594, 0x660d0f45, 0x00000000}},  //   _đều_, сено_, koak,\n  { {0x44230009, 0xf2d20049, 0x6e220048, 0x00000000}},  //   _lhj_, געט_, _ghob,\n  { {0x2d8f00c4, 0x6e290637, 0x3935007e, 0x00000000}},  //   _ibge_, mmeb, дэрс,\n  { {0x2bbb0054, 0x59c80061, 0x6e2906ec, 0x00000000}},  //   _خاصة_, _लवकर, lmeb,\n  { {0xe9df0051, 0x290c0036, 0xf62601ee, 0x00000000}},  //   bhú_, łda_, здво,\n  { {0x6e290325, 0xb9020044, 0x00000000, 0x00000000}},  //   nmeb, _দশ_,   ,\n  { {0x75d30025, 0x9992007f, 0x00000000, 0x00000000}},  // [a360] ريكا, ūzų_,   ,\n  { {0x66160056, 0x44230082, 0x2d8f0145, 0x00000000}},  //   slyk, _chj_, _lbge_,\n  { {0xe297005e, 0x8c1a009b, 0x44230023, 0x00000000}},  //   зах_, צועי, _dhj_,\n  { {0x216701fc, 0x68e20006, 0xf41f1ff7, 0x00000000}},  //   зици_, _žody, _spät_,\n  { {0xf53700b6, 0x6e29006c, 0xdd990062, 0x00000000}},  //   _מרכז_, dmeb, deň_,\n  { {0x6e22176e, 0x9f4700f6, 0x00000000, 0x00000000}},  //   _shob, ginà_,   ,\n  { {0x6e22016d, 0xcf260054, 0x60160181, 0x00000000}},  //   _phob, أرشي, nâmi,\n  { {0x21a310d8, 0xade30088, 0x00000000, 0x00000000}},  //   _писм, ецьк,   ,\n  { {0xbf360257, 0xaf36023c, 0x60d600ea, 0x00000000}},  //   _فراغ, _فرات, øymd,\n  { {0xdb030173, 0x00000000, 0x00000000, 0x00000000}},  //   _kanè,   ,   ,\n  { {0xe9df002a, 0x6e220048, 0xbeaa03ec, 0x00000000}},  //   thú_, _thob, _دهان_,\n  { {0x7d02002d, 0x2617014a, 0x3ddf00bb, 0x00000000}},  //   _txos, rçok_, chuw_,\n  { {0x9ac4002b, 0x7de50025, 0x05000044, 0x00000000}},  //   _suċċ, _تسلم, ্ধুর_,\n  { {0xdc37007b, 0xa5bb3276, 0xaa66005e, 0x00000000}},  //   _זאגט_, _chón, _етик,\n  { {0x660d0059, 0xeaaf0025, 0x9ac4002b, 0x00000000}},  //   toak, _معي_, _quċċ,\n  { {0x6b9a121b, 0x7bca00ea, 0x442301a3, 0x00000000}},  //   letg, _hofu, _shj_,\n  { {0x2b470009, 0x660d1293, 0x200e00e7, 0x00000000}},  // [a370] _yfnc_, roak, kofi_,\n  { {0xdd9901ca, 0x38690056, 0x660d002d, 0x00000000}},  //   zeň_, _ivar_, soak,\n  { {0x3869000c, 0x75480010, 0x00000000, 0x00000000}},  //   _hvar_, észí,   ,\n  { {0xd1310137, 0x41e4008b, 0x3869067e, 0x00000000}},  //   نما_, ніча, _kvar_,\n  { {0x92bd0044, 0xdd990161, 0xb457025a, 0x00000000}},  //   ইনে_, veň_, _ریاض_,\n  { {0x25a90047, 0x24890461, 0x2eb5109f, 0x00000000}},  //   ldal_, mtam_, дсис,\n  { {0x24890047, 0x9294005e, 0x00000000, 0x00000000}},  //   ltam_, _парц,   ,\n  { {0x53340265, 0x9627001e, 0x25a93277, 0x00000000}},  //   _чест, _uzņē, ndal_,\n  { {0x24891589, 0x7dd5009f, 0xea000011, 0x00000000}},  //   ntam_, _hásk, _ngại_,\n  { {0x320f0038, 0xeb99025f, 0x7bca00f6, 0x00000000}},  //   logy_, цио_, _cofu,\n  { {0x7bca009d, 0x3ed50647, 0x25a90058, 0x00000000}},  //   _dofu, _تقار, kdal_,\n  { {0x24893278, 0x7dd50010, 0x00000000, 0x00000000}},  //   ktam_, _másk,   ,\n  { {0xa5bb0011, 0xb87b0047, 0xdb0a010f, 0x00000000}},  //   _phón, szín, _anfä,\n  { {0x63a70027, 0x0c2401fb, 0x24890010, 0x00000000}},  //   _najn, _змін, dtam_,\n  { {0x16a70200, 0x38690061, 0x2cad00ab, 0x00000000}},  //   мври_, _evar_, lved_,\n  { {0xcb1200b6, 0x60160181, 0x200e2cb2, 0x00000000}},  //   _שלה_, râmi, zofi_,\n  { {0x63a70010, 0x224d0091, 0x00000000, 0x00000000}},  // [a380] _bajn, _čeka_,   ,\n  { {0x66092ebb, 0x63a70de5, 0x78a4272f, 0x00000000}},  //   čeka, _cajn, _isiv,\n  { {0xea010082, 0x05000044, 0x25a919e3, 0x00000000}},  //   _quầy_, ্ধের_, bdal_,\n  { {0x320f1ee1, 0xe3b100a1, 0x00000000, 0x00000000}},  //   gogy_, پرے_,   ,\n  { {0x63a70036, 0x24891a8a, 0xdb0301ca, 0x00000000}},  //   _fajn, ctam_, _dané,\n  { {0xb03301fb, 0xdfd00025, 0x5f930545, 0x00000000}},  //   вніш, طيب_, вишт,\n  { {0xc24300d7, 0x2d8d192b, 0x2cad00ab, 0x00000000}},  //   _анск, ffee_, eved_,\n  { {0x443807b5, 0xec6a0088, 0x7bca0483, 0x00000000}},  //   _hir_, орок_, _sofu,\n  { {0x7ddc00d6, 0x44380e61, 0x2383000c, 0x00000000}},  //   _césa, _kir_, _þrjá_,\n  { {0x61e201bf, 0x7ddc00f4, 0x6f0d005d, 0x00000000}},  //   lhol, _désa, şaca,\n  { {0x4438001f, 0x386904d7, 0x33771aac, 0x00000000}},  //   _mir_, _svar_, ועים_,\n  { {0xc33301f8, 0x61e20292, 0x44382555, 0x00000000}},  //   כות_, nhol, _lir_,\n  { {0xdd8f00a6, 0x6fc20067, 0x443816b8, 0x00000000}},  //   _خون_, लापू, _oir_,\n  { {0x3f9c00e7, 0x61e2017b, 0xc7bb007e, 0x00000000}},  //   nevu_, hhol, цём_,\n  { {0x38c5008d, 0x63a70066, 0xe6130054, 0x00000000}},  //   _bërë_, _rajn, نشر_,\n  { {0x44380971, 0x24890047, 0x63a70047, 0x00000000}},  //   _air_, ttam_, _sajn,\n  { {0x443801f6, 0x61e20018, 0xb4d9013d, 0x00000000}},  // [a390] _bir_, dhol, ़ने_,\n  { {0x3f9c037e, 0x24893278, 0x6fd40129, 0x00000000}},  //   jevu_, rtam_, _fàci,\n  { {0x44381fdc, 0x6564011c, 0x3f9c3279, 0x00000000}},  //   _dir_, baih, devu_,\n  { {0x7c38128c, 0x61e20190, 0x248908a4, 0x00000000}},  //   _livr, ghol, ptam_,\n  { {0x63a70466, 0x24440039, 0x4438086a, 0x00000000}},  //   _tajn, _göm_, _fir_,\n  { {0x44380292, 0xe43300a1, 0x187c00b3, 0x00000000}},  //   _gir_, _شہاد, קטוב,\n  { {0x7ddc24d5, 0x68200010, 0x61e201a2, 0x00000000}},  //   _sésa, ködn, bhol,\n  { {0x61e21af5, 0x6fdd0129, 0x6e920025, 0x00000000}},  //   chol, _dèca, اليا,\n  { {0x60390173, 0x8b07013e, 0x6b830085, 0x00000000}},  //   _fňma, _ohří, _pcng,\n  { {0x2cad0038, 0x7dd50047, 0x3f9c0107, 0x00000000}},  //   rved_, _mási, cevu_,\n  { {0x656f13a6, 0x7c3801c5, 0x291e0036, 0x00000000}},  //   _odch, _divr, ętam_,\n  { {0x799d327a, 0xc332009b, 0x7dd500fa, 0x00000000}},  //   gesw, טוי_, _oási,\n  { {0x9f47014a, 0x26170181, 0x656400b0, 0x00000000}},  //   ginç_, nçou_, vaih,\n  { {0x38c50065, 0x6d490035, 0x60c40103, 0x00000000}},  //   _sërë_, lcea, äimi,\n  { {0x66e60cb7, 0x61e20875, 0x443800c4, 0x00000000}},  //   хова, yhol, _rir_,\n  { {0x7dd5029d, 0xa3a803d7, 0x443802f1, 0x00000000}},  //   _bási, _खोज_, _sir_,\n  { {0x44380006, 0x1426003b, 0x6d490051, 0x00000000}},  // [a3a0] _pir_, едам, icea,\n  { {0x0857019b, 0x6fd400f6, 0x6564327b, 0x00000000}},  //   _רבים_, _tàci, saih,\n  { {0x44381273, 0x38c50065, 0x00000000, 0x00000000}},  //   _vir_, _tërë_,   ,\n  { {0x4438327c, 0x3f85327d, 0x2a6a0010, 0x00000000}},  //   _wir_, _aclu_, ábbi_,\n  { {0x4438018e, 0x61e202cc, 0x3f9c217f, 0x00000000}},  //   _tir_, rhol, tevu_,\n  { {0x6d4b006c, 0x442c01aa, 0x61e20905, 0x00000000}},  //   _afga, _òd_, shol,\n  { {0x61e20030, 0xe297003b, 0x3f9c0b4a, 0x00000000}},  //   phol, _пар_, revu_,\n  { {0x291e0036, 0xbef70025, 0x7c380095, 0x00000000}},  //   ętaj_, عروض_, _sivr,\n  { {0xdb1800c4, 0x98ab005d, 0x32070010, 0x00000000}},  //   _invé, yacı_, énye_,\n  { {0xdb571255, 0x6d490085, 0x3ea90036, 0x00000000}},  //   нюю_, acea, łata_,\n  { {0x7c3800f4, 0xf99f01aa, 0x799d327e, 0x00000000}},  //   _vivr, nnèg_, tesw,\n  { {0x225c01ca, 0x6136005d, 0x00000000, 0x00000000}},  //   ávky_, _gülü,   ,\n  { {0x799d327f, 0x00000000, 0x00000000, 0x00000000}},  //   resw,   ,   ,\n  { {0xb8c903d7, 0x2ca60016, 0x799d3280, 0x00000000}},  //   _गई_, _isod_, sesw,\n  { {0x7a3e0006, 0x9c17009b, 0x98ab019a, 0x00000000}},  //   _būte, _רחוק_, racı_,\n  { {0x34953281, 0x7ddc0f57, 0x660916d0, 0x00000000}},  //   кабр, _méso, čeko,\n  { {0x3a2900e0, 0xe4e70088, 0x00000000, 0x00000000}},  // [a3b0] _ihap_, хівн,   ,\n  { {0xdb0300f6, 0x7c2d0026, 0x00000000, 0x00000000}},  //   _innò, _èart,   ,\n  { {0x79ea00a1, 0xc87f01a2, 0x6d490d28, 0x00000000}},  //   _رویہ_, luß_, ycea,\n  { {0xcb13007b, 0x7ae5006c, 0x2ca60016, 0x00000000}},  //   אלע_, _ühte, _osod_,\n  { {0xf99400b6, 0x10a50794, 0x6f1a000a, 0x00000000}},  //   טרף_, тилн, _aytc,\n  { {0x61e0006b, 0x261700c4, 0xdb18000a, 0x00000000}},  //   _elml, rçou_, _envé,\n  { {0x24990022, 0x5f05005e, 0x628b0035, 0x00000000}},  //   _hpsm_, ъзка, ăgos,\n  { {0x7ddc00f4, 0x3a290082, 0x22430022, 0x00000000}},  //   _déso, _nhap_, _iujk_,\n  { {0x6d490c3c, 0xf204008b, 0xfce50364, 0x00000000}},  //   rcea, _сяро, топо,\n  { {0x6d490ea5, 0x1a6502fd, 0x386b1c7e, 0x00000000}},  //   scea, نیتی_, dscr_,\n  { {0x26171396, 0x9f5c0161, 0xdb03000a, 0x00000000}},  //   nços_, nový_, _annò,\n  { {0x186a004c, 0x3a290011, 0x9f4700b0, 0x00000000}},  //   мами_, _chap_, sinä_,\n  { {0xb8830861, 0x9f5c0161, 0x00000000, 0x00000000}},  //   šíns, hový_,   ,\n  { {0x9f5c01ca, 0x00000000, 0x00000000, 0x00000000}},  //   kový_,   ,   ,\n  { {0xfaa51a02, 0x9663022a, 0x62830129, 0x00000000}},  //   _райо, икре, ànol,\n  { {0x98be014a, 0x2d9f0c3f, 0x7e8a006b, 0x00000000}},  //   ştı_, neue_, _qəpi,\n  { {0xd4670113, 0xdb030d8e, 0xb3863282, 0x00000000}},  // [a3c0] ките_, _maní, клал,\n  { {0x2d9f01d6, 0xf53f0190, 0x00000000, 0x00000000}},  //   heue_, _egå_,   ,\n  { {0x66e600ed, 0x78b600e5, 0x2777009b, 0x00000000}},  //   _рона, _hryv, _בגין_,\n  { {0x7ddc00f4, 0xdb180428, 0x6fd400f6, 0x00000000}},  //   _réso, _nový, _làct,\n  { {0xe0e00055, 0x7bda000c, 0x00000000, 0x00000000}},  //   বপ্ন, yktu,   ,\n  { {0xdfcf057d, 0x25a000f4, 0xb4de013d, 0x00000000}},  //   يين_, leil_, तनी_,\n  { {0x6fdd04bd, 0x79960036, 0x39401e89, 0x00000000}},  //   _tècn, _obyw, _ogis_,\n  { {0x23270478, 0x27f801a2, 0xdb03004a, 0x00000000}},  //   _роси_, hirn_, _caní,\n  { {0xc5f300b6, 0xdb010f4b, 0xdb033283, 0x00000000}},  //   ידה_, ndlæ, _daní,\n  { {0x442a01d6, 0x25a03284, 0x9f5e000a, 0x00000000}},  //   _jhb_, heil_, _ektò_,\n  { {0xe9f90822, 0x5a351666, 0x0d8600a5, 0x00000000}},  //   енні_, лнот, _ален,\n  { {0x3940004a, 0x442a0544, 0x00000000, 0x00000000}},  //   _cgis_, _lhb_,   ,\n  { {0x386d028c, 0xc864007c, 0x6fd400f6, 0x00000000}},  //   éer_, итри, _fàct,\n  { {0xd7c90014, 0x442a00d9, 0x24803285, 0x00000000}},  //   روزه_, _nhb_, duim_,\n  { {0x1af00044, 0x25a00056, 0x88cb0044, 0x00000000}},  //   _ঘুরে_, feil_, _লেখক,\n  { {0x2d840011, 0xa9070014, 0x644b00c4, 0x00000000}},  //   ngme_, _لبخن, ígio,\n  { {0x80be03d7, 0x24803286, 0x38600016, 0x00000000}},  // [a3d0] ्हों, guim_, _gwir_,\n  { {0x9f5c0161, 0x6fdd00d4, 0xa5bb0051, 0x00000000}},  //   tový_, _rèco, _mhói,\n  { {0x69dd3287, 0x9388005e, 0x00000000, 0x00000000}},  //   okse, ъста_,   ,\n  { {0x26170a0a, 0x9f5c0161, 0x00000000, 0x00000000}},  //   rços_, rový_,   ,\n  { {0x7dd5008e, 0xdfd50a78, 0x31640087, 0x00000000}},  //   _mást, лоды, _demz_,\n  { {0x7dd5008e, 0x442a00d9, 0xfddb0061, 0x00000000}},  //   _lást, _ghb_, बस्फ,\n  { {0x4e950054, 0xf1a700e3, 0x2b4c0009, 0x00000000}},  //   اشتر, _иран, dcdc_,\n  { {0x7db4008b, 0x7dd50428, 0x764501a3, 0x00000000}},  //   асьц, _nást, _muhy,\n  { {0xa5bb002a, 0x7c2a0051, 0xbfab0088, 0x00000000}},  //   _chói, _bhfr, _отже_,\n  { {0x7aa50069, 0x5ac9312f, 0xa5bb0051, 0x00000000}},  //   гиоз, елом_, _dhói,\n  { {0xdb030010, 0x1603007d, 0x76450288, 0x00000000}},  //   _taní, रचार_, _nuhy,\n  { {0x601600c4, 0xa5bb0048, 0x61f900e0, 0x00000000}},  //   lâmp, _fhói, niwl,\n  { {0x6d5b0149, 0xfd44008b, 0x25a0009d, 0x00000000}},  //   mbua, _тэхн, veil_,\n  { {0xaae5004b, 0x291e001e, 0x2a6c0300, 0x00000000}},  //   _مسعو, āta_, bsdb_,\n  { {0x66e302a8, 0x25a0010f, 0x7dd50051, 0x00000000}},  //   бора, teil_, _fást,\n  { {0x2905005a, 0x248002a6, 0x7dd50b33, 0x00000000}},  //   ğlar_, tuim_, _gást,\n  { {0x26de3288, 0x2905038c, 0x25a000f4, 0x00000000}},  // [a3e0] što_, şlar_, reil_,\n  { {0x7dd501ca, 0x25a0021f, 0x24800007, 0x00000000}},  //   _zást, seil_, ruim_,\n  { {0x1bf60049, 0xdb0a00f6, 0x00000000, 0x00000000}},  //   נצער_, _cafè,   ,\n  { {0x00e60595, 0x067b01ce, 0x7a3e0089, 0x00000000}},  //   лжен, _אנטל, _jūta,\n  { {0x6604266a, 0x248009f7, 0x8a17009b, 0x00000000}},  //   mnik, quim_, נחנו_,\n  { {0x660414d4, 0xdce00089, 0x656600e0, 0x00000000}},  //   lnik, jamā, _hekh,\n  { {0x69dd021e, 0xdb01152c, 0xa5bb0051, 0x00000000}},  //   ykse, ndlä, _shói,\n  { {0x5c740081, 0x6446000b, 0x66040ac2, 0x00000000}},  //   алит, _kuki, nnik,\n  { {0x600a0200, 0x6604006c, 0xa3e8006e, 0x00000000}},  //   _знам_, inik, _बता_,\n  { {0x66041263, 0xda7a01fb, 0x7dd50051, 0x00000000}},  //   hnik, ням_, _sást,\n  { {0xd00f05d4, 0x644600b0, 0x66041e3a, 0x00000000}},  //   _علم_, _luki, knik,\n  { {0x69dd021e, 0x7c86004d, 0x63ae3289, 0x00000000}},  //   ukse, _буке, _labn,\n  { {0x5c5600aa, 0x69dd0056, 0x64460b53, 0x00000000}},  //   _стеф, rkse, _nuki,\n  { {0x69dd010e, 0x5fc70061, 0xdb0300d4, 0x00000000}},  //   skse, लायल, _fanà,\n  { {0xd5bb00ed, 0x7dd50051, 0x6446328a, 0x00000000}},  //   нса_, _tást, _auki,\n  { {0x644601a3, 0x66040fb6, 0x63ae0146, 0x00000000}},  //   _buki, gnik, _aabn,\n  { {0x629c0bc0, 0xd37b01fc, 0xf9900025, 0x00000000}},  // [a3f0] _apro, ече_, _ربي_,\n  { {0x64460521, 0x5eea0044, 0x6604010e, 0x00000000}},  //   _duki, _কখনও_, anik,\n  { {0x660401d9, 0xdb030d86, 0x64460032, 0x00000000}},  //   bnik, _kaná, _euki,\n  { {0x6d420011, 0x64460173, 0xdb0a0f07, 0x00000000}},  //   _ngoa, _fuki, _café,\n  { {0xdceb01d5, 0x6016001a, 0x64460009, 0x00000000}},  //   _ibgħ, tâmp, _guki,\n  { {0x629c0061, 0xd47a01ce, 0x3d18013d, 0x00000000}},  //   _fpro, _באשל, _पड़े_,\n  { {0x6d5b005f, 0xd34400a1, 0x4433002b, 0x00000000}},  //   tbua, _اہمی, mmx_,\n  { {0x8db5007e, 0x02e10061, 0x60390173, 0x00000000}},  //   рскі, पनीन, _kňmk,\n  { {0x6d5b04cb, 0xdb0100c4, 0x629c00b9, 0x00000000}},  //   rbua, celê, _zpro,\n  { {0x66040059, 0xdb180819, 0xabd50080, 0x00000000}},  //   znik, _enví, рциј,\n  { {0x3b090467, 0x1a06005e, 0xceb80036, 0x00000000}},  //   тено_, ипом, _grę_,\n  { {0x6604005f, 0x601f0181, 0x1d190077, 0x00000000}},  //   xnik, dêmi, _июль_,\n  { {0x660400ee, 0x00000000, 0x00000000, 0x00000000}},  //   vnik,   ,   ,\n  { {0x66040046, 0xdb03002a, 0x64460020, 0x00000000}},  //   wnik, _eaná, _ruki,\n  { {0x09e6328b, 0xdb030b33, 0x6446093c, 0x00000000}},  //   _войн, _faná, _suki,\n  { {0x395f000c, 0x63ae00d9, 0xe9df0027, 0x00000000}},  //   ðust_, _sabn, ckú_,\n\n  { {0x7ddc009d, 0x00000000, 0x00000000, 0x00000000}},  // [a400] _désh,   ,   ,\n  { {0x66040213, 0x629c002b, 0x68200010, 0x00000000}},  //   snik, _ppro, ködi,\n  { {0x65660093, 0x63060025, 0x660402db, 0x00000000}},  //   _tekh, جوال, pnik,\n  { {0x644604ff, 0xe0da012b, 0xfc480011, 0x00000000}},  //   _tuki, кве_, _lửa_,\n  { {0x4fc60517, 0x629c0036, 0x63ae0009, 0x00000000}},  //   иска, _wpro, _tabn,\n  { {0xfc480011, 0x00000000, 0x00000000, 0x00000000}},  //   _nửa_,   ,   ,\n  { {0x7ddc00f4, 0x539b009b, 0x5ed90044, 0x00000000}},  //   _hési, _שילו, _ভেবে,\n  { {0x9fa3000c, 0x7dd5008e, 0xdb010173, 0x00000000}},  //   síðu_, _básq, melè,\n  { {0x644000f4, 0xdb010023, 0x00000000, 0x00000000}},  //   _émis, belë,   ,\n  { {0xfc48001d, 0x60e80279, 0x66090091, 0x00000000}},  //   _cửa_, ırmı, čeki,\n  { {0xb4db001d, 0x625301d5, 0x7ddc009d, 0x00000000}},  //   _ngàn, _għod, _lési,\n  { {0xed5a09b2, 0x32060aa0, 0x996700e2, 0x00000000}},  //   _род_, nnoy_, штол,\n  { {0xfbcf06c6, 0x6fdd0173, 0x00000000, 0x00000000}},  //   ستی_, _bèch,   ,\n  { {0xd7fb03f3, 0x00000000, 0x00000000, 0x00000000}},  //   тум_,   ,   ,\n  { {0xdb030047, 0x00000000, 0x00000000, 0x00000000}},  //   _taná,   ,   ,\n  { {0xdb1800f6, 0x3c2b08c8, 0x00000000, 0x00000000}},  //   _invà, røve_,   ,\n  { {0x22a8011f, 0xb87b0010, 0x44210032, 0x00000000}},  // [a410] _aşk_, gzít, tlh_,\n  { {0x7ddc00f4, 0x69cf050f, 0xdce2049c, 0x00000000}},  //   _dési, ljce, _neoč,\n  { {0xdb0a1acf, 0xa5bb0051, 0x00000000, 0x00000000}},  //   _infó, _bhót,   ,\n  { {0xc24401e1, 0x4433004a, 0x00000000, 0x00000000}},  //   інік, smx_,   ,\n  { {0xc1040025, 0xdb0301a2, 0xdb0a01a2, 0x00000000}},  //   يومي, _unnö, _anfü,\n  { {0x656d2eed, 0x225a0022, 0xdce00035, 0x00000000}},  //   laah, bppk_, zamă,\n  { {0xfc480011, 0x3f87016c, 0x63a50645, 0x00000000}},  //   _rửa_, rgnu_, mehn,\n  { {0xfc48001d, 0x62850058, 0x7205025a, 0x00000000}},  //   _sửa_, muho, _اورم,\n  { {0x62850058, 0xdb0126f7, 0x00000000, 0x00000000}},  //   luho, melé,   ,\n  { {0x656d0058, 0x7dd5008e, 0x63a50910, 0x00000000}},  //   haah, _vásq, nehn,\n  { {0xa96a00aa, 0xae7801fb, 0xaa5600a1, 0x00000000}},  //   лина_, _всіх_, یلیا_,\n  { {0xdb0302d5, 0x6fdd00f4, 0x98a6073b, 0x00000000}},  //   _lanç, _sèch, биме,\n  { {0xeb99026b, 0x91ba009b, 0x9916007e, 0x00000000}},  //   _бил_, אמרי, сьні,\n  { {0x7ddc00f4, 0xdb0300f6, 0x661d01c3, 0x00000000}},  //   _rési, _nanç, _aksk,\n  { {0x320617e5, 0x67290224, 0xdb010047, 0x00000000}},  //   ynoy_, řejn, kelé,\n  { {0x6285016c, 0xbb3a0049, 0x7ddc008e, 0x00000000}},  //   duho, _געצי, _pési,\n  { {0x69c40197, 0x78ad0087, 0xdb180cd3, 0x00000000}},  // [a420] _inie, _gsav, _invá,\n  { {0xdb030a0a, 0x656d0487, 0x6039000a, 0x00000000}},  //   _canç, aaah, _fňmi,\n  { {0xb87b0047, 0x69c40007, 0xdb030181, 0x00000000}},  //   szít, _knie, _danç,\n  { {0xc8b5026c, 0x69d60299, 0x3d180061, 0x00000000}},  //   _الیک, _joye, _पडले_,\n  { {0x69d6028c, 0x69c40046, 0xa5bb000c, 0x00000000}},  //   _moye, _mnie, _skóg,\n  { {0x6285025e, 0x69d6009d, 0xdb0301a2, 0x00000000}},  //   buho, _loye, _kanä,\n  { {0x7ddc00d4, 0x00000000, 0x00000000, 0x00000000}},  //   _mésv,   ,   ,\n  { {0x7bc32529, 0x200716a3, 0x69d6328c, 0x00000000}},  //   _annu, anni_, _noye,\n  { {0xf1c30802, 0x61e200b9, 0x8afc0036, 0x00000000}},  //   šší_, mkol, zbęd,\n  { {0x61e20337, 0x24800051, 0x00000000, 0x00000000}},  //   lkol, irim_,   ,\n  { {0x441b007b, 0x69c401d5, 0x539b0049, 0x00000000}},  //   רויס, _bnie, נסטא,\n  { {0x61e2002b, 0x14c8024c, 0x7bc3044e, 0x00000000}},  //   nkol, रमाण, _ennu,\n  { {0xdca30113, 0x69d6009d, 0x69c400b4, 0x00000000}},  //   _наци, _doye, _dnie,\n  { {0xdb010047, 0xb8d10316, 0x656d00e7, 0x00000000}},  //   zelé, _ऐन_, waah,\n  { {0xdb0a0263, 0x61e20ae4, 0x69d600f4, 0x00000000}},  //   _enfò, kkol, _foye,\n  { {0xdb0300c4, 0x69c40036, 0x200c016c, 0x00000000}},  //   _sanç, _gnie, _ljdi_,\n  { {0x63a5006c, 0xdb012fef, 0x656d0c2c, 0x00000000}},  // [a430] tehn, velé, raah,\n  { {0xa5bb0051, 0x7d1d010f, 0x628518fb, 0x00000000}},  //   _chór, üssi, tuho,\n  { {0xa6ab004b, 0xdb010010, 0x45d500ed, 0x00000000}},  //   _صادق_, telé, _донс,\n  { {0x201e0089, 0x24800091, 0x61e20058, 0x00000000}},  //   _akti_, brim_, gkol,\n  { {0xa5bb0051, 0x7ddc00f4, 0xdb010010, 0x00000000}},  //   _fhór, _jésu, relé,\n  { {0xf2e701be, 0x7e5500e3, 0x660904eb, 0x00000000}},  //   _любо, отиц, čeku,\n  { {0xb7dc0049, 0xdb012b25, 0x00000000, 0x00000000}},  //   רקוי, pelé,   ,\n  { {0xec7900ed, 0xa194007c, 0x62530066, 0x00000000}},  //   апи_, _насч, _tħob,\n  { {0x61fb0058, 0x201e0022, 0x1be9004d, 0x00000000}},  //   _imul, _fkti_, идии_,\n  { {0x69c4001e, 0x69d600f4, 0x9f4500f6, 0x00000000}},  //   _snie, _soye, _ollé_,\n  { {0xab29007e, 0x69c40251, 0xdb010190, 0x00000000}},  //   рона_, _pnie, ndlø,\n  { {0x5ed20055, 0x27fa023a, 0x5fc70061, 0x00000000}},  //   _থেকে, _smpn_, लावल,\n  { {0x69d600f4, 0x776e006b, 0x9f45009d, 0x00000000}},  //   _voye, tabx, _allé_,\n  { {0x61e9049a, 0x61e20036, 0x9f47328d, 0x00000000}},  //   _llel, zkol, minó_,\n  { {0x61e20030, 0x61fb328e, 0xf74300da, 0x00000000}},  //   ykol, _omul, деро,\n  { {0x69c40168, 0x24800065, 0x9f5c0065, 0x00000000}},  //   _unie, trim_, tivë_,\n  { {0x22582351, 0xe61701ff, 0x765c0c6b, 0x00000000}},  // [a440] _strk_, іду_, spry,\n  { {0x24800065, 0x00000000, 0x00000000, 0x00000000}},  //   rrim_,   ,   ,\n  { {0x61e2328f, 0x00000000, 0x00000000, 0x00000000}},  //   tkol,   ,   ,\n  { {0x24800065, 0x61e90026, 0xea8c0049, 0x00000000}},  //   prim_, _clel, רנאָ,\n  { {0x61e202bb, 0x7ddc0325, 0x75fa013e, 0x00000000}},  //   rkol, _mést, hůzk,\n  { {0x88bb01ce, 0xd3720439, 0x00000000, 0x00000000}},  //   יזני, _زهر_,   ,\n  { {0xc3070088, 0xfe6f0464, 0x65360014, 0x00000000}},  //   _держ_, ندي_, _درگذ,\n  { {0x934301fb, 0x7ddc02a0, 0x00000000, 0x00000000}},  //   _інте, _nést,   ,\n  { {0x9f47008e, 0x2906012d, 0x00000000, 0x00000000}},  //   ginó_, _žoan_,   ,\n  { {0x7ddc028c, 0x3a200022, 0x00000000, 0x00000000}},  //   _résu, _akip_,   ,\n  { {0x3eb80010, 0x201c0091, 0x00000000, 0x00000000}},  //   _ért_, movi_,   ,\n  { {0x201c037e, 0xec3500a1, 0x2cbd005b, 0x00000000}},  //   lovi_, _ہونگ, _frwd_,\n  { {0xc173009b, 0x9f470555, 0x7ddc009d, 0x00000000}},  //   וחר_, minò_, _dést,\n  { {0xbebc001e, 0x3a2001aa, 0x201c0119, 0x00000000}},  //   _dzīv, _ekip_, novi_,\n  { {0x3dc60038, 0x356b0751, 0xc5fb00ed, 0x00000000}},  //   _know_, иран_, аѓа_,\n  { {0x7a12001e, 0x7bd80292, 0x5455007c, 0x00000000}},  //   tāte, _hovu, зват,\n  { {0x201c01cd, 0x3494007c, 0x94ab0184, 0x00000000}},  // [a450] kovi_, матр, штва_,\n  { {0x61fb0006, 0x7bd801f3, 0x00000000, 0x00000000}},  //   _smul, _jovu,   ,\n  { {0x7afc002a, 0x201c0091, 0x7ddc00c4, 0x00000000}},  //   úrth, dovi_, _jéss,\n  { {0xdb1800f8, 0x00000000, 0x00000000, 0x00000000}},  //   _invä,   ,   ,\n  { {0xf7f4007a, 0x3ebe0207, 0x201c09fc, 0x00000000}},  //   _رسید, _artt_, fovi_,\n  { {0x201c01cd, 0xa2a6013d, 0x44251573, 0x00000000}},  //   govi_, _टैक्, _ól_,\n  { {0x3f9e0022, 0x24893290, 0x61e90087, 0x00000000}},  //   _dbtu_, luam_, _tlel,\n  { {0x61fb3291, 0x9f470048, 0xee39003b, 0x00000000}},  //   _umul, mhní_, љни_,\n  { {0x63b50f3a, 0x201c0091, 0x24893292, 0x00000000}},  //   _kazn, bovi_, nuam_,\n  { {0x3a2000ab, 0x321d0036, 0x201c0142, 0x00000000}},  //   _skip_, lowy_, covi_,\n  { {0x7bd80207, 0x6297002d, 0x9f47004a, 0x00000000}},  //   _dovu, ntxo, sinó_,\n  { {0x63b50107, 0x316d01f3, 0x3d950751, 0x00000000}},  //   _lazn, _jeez_, _хидр,\n  { {0xdb180073, 0xdb03009f, 0x25a93293, 0x00000000}},  //   _anvä, _janú, deal_,\n  { {0x38690f68, 0x63b5040d, 0x9f5c3294, 0x00000000}},  //   _dwar_, _nazn, tivé_,\n  { {0xfaa20265, 0x321d0036, 0xdb033295, 0x00000000}},  //   _защо, kowy_, _lanú,\n  { {0xceb20104, 0x9f5c3296, 0x3a200300, 0x00000000}},  //   עין_, rivé_, _ukip_,\n  { {0x64a301f9, 0x321d0046, 0x63b50089, 0x00000000}},  // [a460] ната, dowy_, _bazn,\n  { {0x61350010, 0x00000000, 0x00000000, 0x00000000}},  //   zülé,   ,   ,\n  { {0x3869010f, 0x25a9000a, 0xe7db009b, 0x00000000}},  //   _zwar_, beal_, _הקיש,\n  { {0x0446007c, 0x25a93297, 0xdb0300f6, 0x00000000}},  //   _немн, ceal_, _banú,\n  { {0x25d7007b, 0x201c0091, 0x55bb009b, 0x00000000}},  //   _זוכן_, tovi_, _המכו,\n  { {0xdb0a0073, 0x741602fd, 0x3dc600ab, 0x00000000}},  //   _infö, _روزا, _snow_,\n  { {0x201c0142, 0x321d0036, 0x2cad0133, 0x00000000}},  //   rovi_, bowy_, ewed_,\n  { {0xf1d00204, 0x2d8d01d6, 0xdb030142, 0x00000000}},  //   _सचिन, ggee_, _fanú,\n  { {0x7bd80091, 0x201c0091, 0xdb0800c4, 0x00000000}},  //   _povu, povi_, cedê,\n  { {0x9f470197, 0x50b5007e, 0x7ddc00c4, 0x00000000}},  //   sinò_, _ўсту, _péss,\n  { {0x61350010, 0x39490022, 0x24890023, 0x00000000}},  //   pülé, _pgas_, zuam_,\n  { {0x80b3013d, 0x00000000, 0x00000000, 0x00000000}},  //   _इनमे,   ,   ,\n  { {0x7bd83298, 0x25a92082, 0x00000000, 0x00000000}},  //   _tovu, veal_,   ,\n  { {0x3f8e3299, 0xca470014, 0x321d0036, 0x00000000}},  //   ngfu_, _کليه_, zowy_,\n  { {0x752f0046, 0x63b50c1e, 0x25a90048, 0x00000000}},  //   _szcz, _razn, teal_,\n  { {0x63b50119, 0x752f0009, 0x7c3a00ea, 0x00000000}},  //   _sazn, _pzcz, lmtr,\n  { {0x63b50c02, 0x73d90407, 0x7c28329a, 0x00000000}},  // [a470] _pazn, одар_, oldr,\n  { {0x672500b0, 0x25a90048, 0x68ef005a, 0x00000000}},  //   _tyhj, seal_, ındı,\n  { {0x25a92b35, 0x98b901f6, 0x63b5041a, 0x00000000}},  //   peal_, ması_, _vazn,\n  { {0x6297022b, 0x7a3f0d90, 0x2295067e, 0x00000000}},  //   rtxo, _būti, råk_,\n  { {0x656f018e, 0x321d0036, 0x7a120089, 0x00000000}},  //   _iech, rowy_, nāta,\n  { {0x656f0219, 0x98b90279, 0x443a041d, 0x00000000}},  //   _hech, nası_, cmp_,\n  { {0x660d002d, 0x44230022, 0x321d00b4, 0x00000000}},  //   onak, _ikj_, powy_,\n  { {0x660d0004, 0x6447002b, 0x644f01a3, 0x00000000}},  //   nnak, _hiji, _kuci,\n  { {0x98b9038c, 0x6447000b, 0x660d2645, 0x00000000}},  //   kası_, _kiji, inak,\n  { {0x64472379, 0x656f0a6d, 0x644f014a, 0x00000000}},  //   _jiji, _lech, _muci,\n  { {0x64471ac6, 0xdb080129, 0xc9aa2c00, 0x00000000}},  //   _miji, nedè, овне_,\n  { {0x645d08b2, 0x656f004f, 0xf2d20049, 0x00000000}},  //   _otsi, _nech, דעט_,\n  { {0x660d1f15, 0x7ae100ea, 0x6e29004e, 0x00000000}},  //   dnak, sylt, mleb,\n  { {0x6e2901bf, 0xdca2025f, 0x657d00ca, 0x00000000}},  //   lleb, _раши, _adsh,\n  { {0x645d010a, 0x656f0016, 0x00000000, 0x00000000}},  //   _atsi, _bech,   ,\n  { {0x644f007f, 0x656f0036, 0x660d0058, 0x00000000}},  //   _buci, _cech, gnak,\n  { {0x656f018e, 0x644f329b, 0x6447329c, 0x00000000}},  // [a480] _dech, _cuci, _biji,\n  { {0x9f45056b, 0x64470107, 0x644f11cb, 0x00000000}},  //   _allí_, _ciji, _duci,\n  { {0x656f0977, 0x645d021e, 0xe2970121, 0x00000000}},  //   _fech, _etsi, дах_,\n  { {0x6d4b10ed, 0xf1a3025f, 0x656f0270, 0x00000000}},  //   _ngga, вршн, _gech,\n  { {0x6447329d, 0x6e290987, 0x660400b0, 0x00000000}},  //   _fiji, dleb, miik,\n  { {0x6604003c, 0x6d4b2191, 0x6e2201ee, 0x00000000}},  //   liik, _agga, _skob,\n  { {0x656f000a, 0xdb080129, 0x81b60044, 0x00000000}},  //   _yech, cedè, জাব_,\n  { {0x98b90279, 0x6e2901e3, 0x7ddc008e, 0x00000000}},  //   zası_, gleb, _césp,\n  { {0x98b9005f, 0x316600e7, 0x7ddc004a, 0x00000000}},  //   yası_, mboz_, _désp,\n  { {0x660d0142, 0x7a120089, 0xc0a903e6, 0x00000000}},  //   znak, vāta, _عاقل_,\n  { {0x660d011f, 0x6e2902d1, 0x7c3a0190, 0x00000000}},  //   ynak, bleb, rmtr,\n  { {0x6e29329e, 0x7c6601f7, 0x38af0066, 0x00000000}},  //   cleb, _قاتل, _pżr_,\n  { {0x656f08ea, 0x98b9005a, 0x660d0027, 0x00000000}},  //   _rech, tası_, vnak,\n  { {0x6e200219, 0x656f010f, 0x2ca6329f, 0x00000000}},  //   lomb, _sech, _ipod_,\n  { {0x656f32a0, 0x98b901f6, 0xa3d202fb, 0x00000000}},  //   _pech, rası_, वान_,\n  { {0x6e200cd4, 0x44230107, 0x644701a3, 0x00000000}},  //   nomb, _skj_, _siji,\n  { {0x656f000d, 0x660d04cb, 0xd7f10025, 0x00000000}},  // [a490] _vech, rnak, _مكة_,\n  { {0x656f010f, 0xd3710380, 0x644f003b, 0x00000000}},  //   _wech, اها_, _vuci,\n  { {0x6e2023d3, 0x625301d5, 0x644732a1, 0x00000000}},  //   komb, _għol, _viji,\n  { {0x3e7a001e, 0xd1310025, 0xdb080010, 0x00000000}},  //   dīt_, هما_, gedé,\n  { {0xa0690121, 0x645d01c9, 0xe001007e, 0x00000000}},  //   чала_, _utsi, лькi_,\n  { {0x7a36013e, 0x00000000, 0x00000000, 0x00000000}},  //   máte,   ,   ,\n  { {0xfc4800ad, 0x2bd2001c, 0x2ca60802, 0x00000000}},  //   _gửi_, ताना, _apod_,\n  { {0x442101d9, 0x6e200020, 0x24860006, 0x00000000}},  //   loh_, gomb, šome_,\n  { {0x3015008b, 0x6e29033b, 0xdb01120f, 0x00000000}},  //   _здар, rleb, delá,\n  { {0xa3d2024c, 0x44210145, 0xeb99003b, 0x00000000}},  //   वाय_, noh_, чио_,\n  { {0xf99f0207, 0x6e2907b8, 0xdd000089, 0x00000000}},  //   ffè_, pleb, ātāj,\n  { {0x61f9047f, 0x7bca0299, 0x44210052, 0x00000000}},  //   _çalı, _enfu, hoh_,\n  { {0x4421023a, 0xc3260044, 0x660400b0, 0x00000000}},  //   koh_, _বলছি_, viik,\n  { {0xcc760097, 0x44210145, 0x00000000, 0x00000000}},  //   _טענה_, joh_,   ,\n  { {0x442101a3, 0x6604021e, 0xe73716c4, 0x00000000}},  //   doh_, tiik, еер_,\n  { {0xf1b90059, 0x00000000, 0x00000000, 0x00000000}},  //   _naš_,   ,   ,\n  { {0x660401c2, 0x225f145e, 0x3e7a0089, 0x00000000}},  // [a4a0] riik, _čuka_, zīt_,\n  { {0x6604021e, 0x261701d5, 0x442132a2, 0x00000000}},  //   siik, għob_, goh_,\n  { {0xf1b910c1, 0x6e2032a3, 0x68e600e0, 0x00000000}},  //   _baš_, yomb, lykd,\n  { {0x62530066, 0x00000000, 0x00000000, 0x00000000}},  //   _għom,   ,   ,\n  { {0xf12307ca, 0xf1b900ee, 0x9f450129, 0x00000000}},  //   льшо, _daš_, _allà_,\n  { {0x3e7a001e, 0x442101a3, 0x657632a4, 0x00000000}},  //   tīt_, coh_, layh,\n  { {0x4438001f, 0x6e20001a, 0x2ca614a6, 0x00000000}},  //   _ihr_, tomb, _spod_,\n  { {0x3e7a001e, 0xe2a6000c, 0x32070010, 0x00000000}},  //   rīt_, öðum_, ényt_,\n  { {0x3e7a001e, 0x6e200020, 0x200e0022, 0x00000000}},  //   sīt_, romb, pnfi_,\n  { {0x44380085, 0x3e7a01c5, 0x7c2132a5, 0x00000000}},  //   _jhr_, pīt_, golr,\n  { {0xda770783, 0x6e200059, 0x00000000, 0x00000000}},  //   няя_, pomb,   ,\n  { {0xddea03ec, 0x443806ed, 0x4421016c, 0x00000000}},  //   _عرضه_, _lhr_, zoh_,\n  { {0xebe632a6, 0xf8bf00f4, 0x44210022, 0x00000000}},  //   _подп, uvé_, yoh_,\n  { {0x7bca003b, 0xf8bf00f4, 0xf99f01aa, 0x00000000}},  //   _unfu, rvé_, sfè_,\n  { {0x25a00016, 0x4421016c, 0x2cb80089, 0x00000000}},  //   ffil_, voh_, ārdu_,\n  { {0x44382a53, 0xd5b80839, 0x48fc0061, 0x00000000}},  //   _ahr_, нсу_, _लेको_,\n  { {0x44210062, 0x69cd0020, 0x443801f3, 0x00000000}},  // [a4b0] toh_, _inae, _bhr_,\n  { {0x44380240, 0x16020061, 0x7a362550, 0x00000000}},  //   _chr_, रोबर_, ráte,\n  { {0x4421008a, 0x443800bb, 0xa5f90175, 0x00000000}},  //   roh_, _dhr_, _жену_,\n  { {0x44210145, 0x225c0861, 0x69df0023, 0x00000000}},  //   soh_, ívka_, _joqe,\n  { {0xf1b901d9, 0x7c38006c, 0x44210145, 0x00000000}},  //   _vaš_, _ohvr, poh_,\n  { {0x9f450211, 0x248932a7, 0x00000000, 0x00000000}},  //   _allá_, mram_,   ,\n  { {0xf1a70c4e, 0x00000000, 0x00000000, 0x00000000}},  //   _пран,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x00db1739, 0x00000000, 0x00000000, 0x00000000}},  //   _عبرت_,   ,   ,\n  { {0xa5bb009f, 0x69cd0020, 0x248900c4, 0x00000000}},  //   _skól, _anae, iram_,\n  { {0x2007000b, 0xa3d20183, 0x05e1013d, 0x00000000}},  //   mini_, वात_, _नवंब,\n  { {0x2007014a, 0x24891129, 0xdd1d0035, 0x00000000}},  //   lini_, kram_, _câţi,\n  { {0x7c21023a, 0x248932a8, 0x20070026, 0x00000000}},  //   polr, jram_, oini_,\n  { {0x20070020, 0x24891e8f, 0xfc480082, 0x00000000}},  //   nini_, dram_, _bửu_,\n  { {0xd62a005e, 0xfc480011, 0xa5960735, 0x00000000}},  //   дове_, _cửu_, кращ,\n  { {0x2007000b, 0x44380058, 0x6d5b1e18, 0x00000000}},  //   hini_, _shr_, ncua,\n  { {0x20070be3, 0xb90708b7, 0x25a00d26, 0x00000000}},  // [a4c0] kini_, _যে_, rfil_,\n  { {0x200716d6, 0x25a003b1, 0x7ae5006c, 0x00000000}},  //   jini_, sfil_, _ühts,\n  { {0x248900c4, 0xd2590451, 0x00000000, 0x00000000}},  //   aram_, еці_,   ,\n  { {0x248900c4, 0x00000000, 0x00000000, 0x00000000}},  //   bram_,   ,   ,\n  { {0xa3d202fb, 0x20070263, 0x4096007c, 0x00000000}},  //   वाद_, fini_, трет,\n  { {0x4438001f, 0x200732a9, 0x78fb009b, 0x00000000}},  //   _uhr_, gini_, ופנו,\n  { {0x63bc32aa, 0x0eec013d, 0xe7a401f5, 0x00000000}},  //   _iarn, जनेस_, ख्यप,\n  { {0xf99f01aa, 0x531b009b, 0x61eb06d3, 0x00000000}},  //   nnèt_, _חולצ, ckgl,\n  { {0x61e0002a, 0xa3d60061, 0x91e30517, 0x00000000}},  //   _ioml, _ाचा_, _тоте,\n  { {0x2007003b, 0x2bb7001c, 0x63bc0161, 0x00000000}},  //   cini_, _असणा, _jarn,\n  { {0x229c004f, 0x63bc0068, 0xd00f0188, 0x00000000}},  //   ník_, _marn, _ظلم_,\n  { {0x24890279, 0x8b0700b9, 0x6d5b0011, 0x00000000}},  //   yram_, _skří, ccua,\n  { {0xcdf7009b, 0x2cb80089, 0x6ba70039, 0x00000000}},  //   _במאי_, ārds_, ärgå,\n  { {0x69cd018e, 0xdb0316b8, 0x629e0b05, 0x00000000}},  //   _wnae, _canó, ktpo,\n  { {0x2bb7001c, 0xdceb0089, 0xdb010210, 0x00000000}},  //   _असता, _iegā, gelä,\n  { {0x20070263, 0x2489001c, 0xfde00044, 0x00000000}},  //   zini_, tram_, _বগুড,\n  { {0x20072f77, 0x63bc32ab, 0x04950070, 0x00000000}},  // [a4d0] yini_, _barn, طلاح,\n  { {0x44270011, 0x248900c4, 0x60c21a7d, 0x00000000}},  //   ôn_, rram_, dvom,\n  { {0x63bc011c, 0x00000000, 0x00000000, 0x00000000}},  //   _darn,   ,   ,\n  { {0xf650026c, 0x61e016b1, 0x248900ca, 0x00000000}},  //   _گئی_, _coml, pram_,\n  { {0x3c3900f4, 0x2489006b, 0x61e000b9, 0x00000000}},  //   lève_, qram_, _doml,\n  { {0x27e100ab, 0xb4df0061, 0x1e950517, 0x00000000}},  //   _john_, तही_, грир,\n  { {0xed590eb1, 0x200701f6, 0x3a2932ac, 0x00000000}},  //   ной_, rini_, _okap_,\n  { {0x63bc01c5, 0x27e101a2, 0xdb180068, 0x00000000}},  //   _zarn, _lohn_, _gavé,\n  { {0xdd91026c, 0xdd11038c, 0x20070059, 0x00000000}},  //   لوں_, _düşm, pini_,\n  { {0x6d5b029a, 0x3a29020e, 0x2007071f, 0x00000000}},  //   scua, _akap_, qini_,\n  { {0x81b60055, 0x224d010a, 0xba750014, 0x00000000}},  //   জার_, _kiek_, داخت,\n  { {0x7bda0065, 0x75ea00b9, 0x6ec00204, 0x00000000}},  //   ajtu, _výzk, विरु,\n  { {0x224732ad, 0xdb0300d4, 0x224d00d9, 0x00000000}},  //   ínky_, _canò, _miek_,\n  { {0x224d27dc, 0x00000000, 0x00000000, 0x00000000}},  //   _liek_,   ,   ,\n  { {0xa3d202fb, 0x98a5001e, 0xd7570167, 0x00000000}},  //   वास_, ālā_, الفت_,\n  { {0x229c009f, 0x63bc006c, 0xdb010039, 0x00000000}},  //   vík_, _sarn, relä,\n  { {0x61e01dbb, 0xdb0100b0, 0xd5751e2c, 0x00000000}},  // [a4e0] _roml, selä, русь,\n  { {0x61e006d4, 0x229c32ae, 0x629e0203, 0x00000000}},  //   _soml, tík_, ttpo,\n  { {0x63bc00bf, 0x179b01ce, 0x61e00059, 0x00000000}},  //   _varn, _אייב, _poml,\n  { {0xa3d2007d, 0x63bc09d5, 0xbbe0007d, 0x00000000}},  //   वाह_, _warn, _पक्क,\n  { {0x63bc32af, 0x629e0c75, 0x224d01c3, 0x00000000}},  //   _tarn, stpo, _diek_,\n  { {0xb4c202d2, 0xceba003b, 0xb4c0007d, 0x00000000}},  //   ्मी_, ељи_, ंटी_,\n  { {0x644e011c, 0xa2e3013b, 0x61e02f3d, 0x00000000}},  //   _iibi, _лорд, _toml,\n  { {0x5d54026b, 0x798400e7, 0x20ce01e5, 0x00000000}},  //   шкит, _ndiw, gðið_,\n  { {0x7ddc0047, 0x25d7007b, 0x644e15f4, 0x00000000}},  //   _kész, רופן_, _kibi,\n  { {0x644e13e1, 0x224d00b5, 0x3a2901e5, 0x00000000}},  //   _jibi, _ziek_, _skap_,\n  { {0xc3fb0049, 0x93fb0097, 0x442a0f5d, 0x00000000}},  //   גליש, גליי, _mkb_,\n  { {0xf2d3007b, 0x75f800b9, 0x27e1010f, 0x00000000}},  //   צער_, _jízd, _sohn_,\n  { {0x7984018e, 0x442a0065, 0x7d7b0049, 0x00000000}},  //   _ddiw, _okb_, _טראג,\n  { {0x644e32b0, 0xf41f0039, 0x7a3632b1, 0x00000000}},  //   _nibi, _iväg_, ráta,\n  { {0xd90f0014, 0x7a36013e, 0x00000000, 0x00000000}},  //   تیک_, mátn,   ,\n  { {0x442a32b2, 0xb4c2007d, 0x27e101a2, 0x00000000}},  //   _akb_, ्मू_, _wohn_,\n  { {0x644e006a, 0x442a0022, 0x3c390173, 0x00000000}},  // [a4f0] _bibi, _bkb_, sève_,\n  { {0x224d32b3, 0x69dd01ee, 0x644e32b4, 0x00000000}},  //   _siek_, ljse, _cibi,\n  { {0x644e0281, 0x41e70451, 0x4155132e, 0x00000000}},  //   _dibi, ліда, авес,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x656d1535, 0x7a3601ca, 0x442a24a8, 0x00000000}},  //   mbah, kátn, _fkb_,\n  { {0x9f510477, 0x224d0036, 0xdceb001a, 0x00000000}},  //   _özü_, _wiek_, _legă,\n  { {0xa3d202fb, 0x224d0ebc, 0xb3d2001c, 0x00000000}},  //   वार_, _tiek_, सारख,\n  { {0x644e1925, 0x656d14c9, 0x78ad01dc, 0x00000000}},  //   _zibi, nbah, _opav,\n  { {0x20ce000c, 0x4f8500a1, 0xec760930, 0x00000000}},  //   rðið_, _نااہ, апы_,\n  { {0x7a120089, 0x60c90285, 0xa3ab007d, 0x00000000}},  //   māti, _irem, _कॉम_,\n  { {0xa96a0175, 0x78ad0089, 0xfaa501ee, 0x00000000}},  //   кина_, _apav, шано,\n  { {0xcfaa0044, 0xd94632b5, 0x656d012d, 0x00000000}},  //   _গোপন, иени, jbah,\n  { {0x7a120089, 0x69d80316, 0x00000000, 0x00000000}},  //   nāti, याबी,   ,\n  { {0x60c90020, 0x9f470051, 0x1867026b, 0x00000000}},  //   _mrem, dhnú_, рари_,\n  { {0x7ddc0047, 0xf7460e09, 0x644e02db, 0x00000000}},  //   _rész, рево, _ribi,\n  { {0x644e001a, 0x0566005e, 0x442a266c, 0x00000000}},  //   _sibi, рван, _skb_,\n  { {0x9f470051, 0x442a2d1a, 0x7a3613aa, 0x00000000}},  // [a500] ghnú_, _pkb_, láto,\n  { {0x7bc120a9, 0x7a120089, 0x187b0049, 0x00000000}},  //   ndlu, dāti, _שטיב,\n  { {0xe29a008b, 0x60c90093, 0x237700a2, 0x00000000}},  //   тае_, _arem, شمند_,\n  { {0x71a6008b, 0x60c9010f, 0x506603e0, 0x00000000}},  //   радз, _brem, атка,\n  { {0x9f4732b6, 0x7ddc0010, 0x92d60044, 0x00000000}},  //   chnú_, _tész, িনে_,\n  { {0x7644014a, 0x7a3d0010, 0x24800089, 0x00000000}},  //   lmiy, méte, msim_,\n  { {0x444406e5, 0xd335008b, 0x60c9022b, 0x00000000}},  //   mm_, _гэты, _erem,\n  { {0x60c90018, 0x806601fb, 0x661600b0, 0x00000000}},  //   _frem, _вваж, nnyk,\n  { {0x2b5e001c, 0x60c90059, 0x44440aba, 0x00000000}},  //   tctc_, _grem, om_,\n  { {0x444432b7, 0xed5901ee, 0x8c4300e2, 0x00000000}},  //   nm_, rdža_, оење,\n  { {0x444432b8, 0x78ad0119, 0x225800bb, 0x00000000}},  //   im_, _spav, _jurk_,\n  { {0x24800a3e, 0x261701d5, 0x444401a2, 0x00000000}},  //   ksim_, għol_, hm_,\n  { {0x444407e7, 0xfd120123, 0x98b80ae0, 0x00000000}},  //   km_, _بجا_, алят_,\n  { {0xdb1832b9, 0x44440065, 0x7a3d009d, 0x00000000}},  //   _haví, jm_, déte,\n  { {0xc9870057, 0x0cb6013d, 0x89d900a6, 0x00000000}},  //   _купи, _अनुम, _موثر_,\n  { {0x44440580, 0x81ab08b7, 0x80ad0044, 0x00000000}},  //   em_, _কোন_, চিত্,\n  { {0x656d1c57, 0x44440035, 0xdb23000c, 0x00000000}},  // [a510] rbah, fm_, ásög,\n  { {0x638000b9, 0x44440093, 0x7c280790, 0x00000000}},  //   vání, gm_, nodr,\n  { {0x60c9003b, 0x752f0036, 0x248000e0, 0x00000000}},  //   _srem, _wycz, asim_,\n  { {0x44440114, 0xdb1801dc, 0xb5a70887, 0x00000000}},  //   am_, _naví, _трой,\n  { {0x69d8001c, 0x7c280065, 0x7a3d008e, 0x00000000}},  //   याती, kodr, céte,\n  { {0x60c90119, 0x660d184d, 0xafe2007c, 0x00000000}},  //   _vrem, liak, зошл,\n  { {0x7c280471, 0x75ea0161, 0xe7ff013d, 0x00000000}},  //   dodr, _výzv, _उतना_,\n  { {0x660d022b, 0x443301f3, 0xd087007c, 0x00000000}},  //   niak, llx_, _выжи,\n  { {0xd0e9026c, 0xdb18000c, 0x60c90020, 0x00000000}},  //   _حکام_, _daví, _urem,\n  { {0x660d022b, 0x64450051, 0xdb0329f9, 0x00000000}},  //   hiak, nmhi, _manö,\n  { {0x7bc1006c, 0x660d117f, 0x6253002b, 0x00000000}},  //   rdlu, kiak, _għot,\n  { {0x7a3608aa, 0x186a041f, 0x69d80309, 0x00000000}},  //   ráto, лами_, याधी,\n  { {0xfd5600b6, 0x660d020c, 0x7c281f39, 0x00000000}},  //   _השני_, diak, bodr,\n  { {0x7a3d0047, 0x7c28008e, 0xdb180062, 0x00000000}},  //   véte, codr, _zaví,\n  { {0x444400ca, 0xe45f0039, 0xaa950025, 0x00000000}},  //   vm_, _dröm_, _العث,\n  { {0x444432ba, 0x660d002d, 0x6a640025, 0x00000000}},  //   wm_, giak, _بطول,\n  { {0x44441042, 0x7644014a, 0x00000000, 0x00000000}},  // [a520] tm_, rmiy,   ,\n  { {0x3ea90036, 0x44330026, 0x7a3d01e6, 0x00000000}},  //   łaty_, glx_, réte,\n  { {0x24802790, 0x833a18ea, 0x660d32bb, 0x00000000}},  //   ssim_, учат_, biak,\n  { {0x44440544, 0x7a3d01e6, 0x635500b9, 0x00000000}},  //   sm_, péte, třní,\n  { {0x23780022, 0x00000000, 0x00000000, 0x00000000}},  //   _terj_,   ,   ,\n  { {0x225802ba, 0xf3e60152, 0x237800c4, 0x00000000}},  //   _turk_, _ужго, _uerj_,\n  { {0xadd832bc, 0x00000000, 0x00000000, 0x00000000}},  //   имку_,   ,   ,\n  { {0x7c280016, 0x21a3003b, 0x00000000, 0x00000000}},  //   wodr, _нисм,   ,\n  { {0xb87b0010, 0x7c280062, 0x00000000, 0x00000000}},  //   nyít, todr,   ,\n  { {0x660d002d, 0x2cbd0058, 0x00000000, 0x00000000}},  //   ziak, _dswd_,   ,\n  { {0x7c2832bd, 0x3f9e00d9, 0x00000000, 0x00000000}},  //   rodr, _ictu_,   ,\n  { {0x7f3b007b, 0x200e006b, 0x1e57009b, 0x00000000}},  //   _געבו, lifi_, _השאר_,\n  { {0xe9df0010, 0x81ab0044, 0x00000000, 0x00000000}},  //   rjú_, _কোড_,   ,\n  { {0x625301f3, 0x00000000, 0x00000000, 0x00000000}},  //   _xħos,   ,   ,\n  { {0xa3cc0201, 0x96f800ed, 0x6b7b0097, 0x00000000}},  //   _शोध_, берт_, _גרונ,\n  { {0x59d00061, 0x9635279d, 0x00000000, 0x00000000}},  //   _तोपर, інац,   ,\n  { {0x660d1e3a, 0x045b0014, 0xb87b0010, 0x00000000}},  // [a530] riak, اجرت_, gyít,\n  { {0x660d00b0, 0x44330068, 0x00000000, 0x00000000}},  //   siak, ulx_,   ,\n  { {0x44330009, 0x660d044e, 0x3169004a, 0x00000000}},  //   rlx_, piak, ñazo_,\n  { {0x3f9e00f4, 0xdb0101e3, 0xa4d503e8, 0x00000000}},  //   _actu_, relø, _домі,\n  { {0xdb01068f, 0x661d00bb, 0x00000000, 0x00000000}},  //   selø, _ijsk,   ,\n  { {0x645f0009, 0x00000000, 0x00000000, 0x00000000}},  //   mqqi,   ,   ,\n  { {0xfe450131, 0xdb1800d4, 0x00000000, 0x00000000}},  //   онко, _navà,   ,\n  { {0xdb0a010f, 0xee3901fc, 0xbc650131, 0x00000000}},  //   _dafü, јни_, овик,\n  { {0x3869023a, 0x6e290168, 0x20260026, 0x00000000}},  //   _ntar_, roeb, èviè_,\n  { {0x6b9a001c, 0x200e00f6, 0x62530066, 0x00000000}},  //   ggtg, cifi_, _għor,\n  { {0xa3ab0164, 0xbf150025, 0x3ebe01a3, 0x00000000}},  //   क्य_, _بواب, _gstt_,\n  { {0x7a3600b9, 0x394a0331, 0x661d0087, 0x00000000}},  //   mátk, изно_, _njsk,\n  { {0x8936031d, 0xd7d50061, 0x91bf0082, 0x00000000}},  //   تعدا, दांच, _chủ_,\n  { {0xcb690088, 0xb9020061, 0x7a120089, 0x00000000}},  //   _таке_, _नऊ_, vātu,\n  { {0x26cc32be, 0x7bc3001a, 0x65c6005e, 0x00000000}},  //   ído_, _ianu, обва,\n  { {0x7bc30253, 0x00000000, 0x00000000, 0x00000000}},  //   _hanu,   ,   ,\n  { {0x7bc332bf, 0x69d60211, 0x00000000, 0x00000000}},  // [a540] _kanu, _inye,   ,\n  { {0x69c4022b, 0x38a432c0, 0x245f0016, 0x00000000}},  //   _haie, mör_, _dîm_,\n  { {0x7bc30971, 0x0576006d, 0xf746005e, 0x00000000}},  //   _manu, _واحد, _фено,\n  { {0x69c60010, 0x7bc304be, 0x69c42d32, 0x00000000}},  //   ndke, _lanu, _jaie,\n  { {0x7a3d32c1, 0x3869006b, 0x38a422ae, 0x00000000}},  //   néta, _xtar_, nör_,\n  { {0x69c4006c, 0x7bc30058, 0xbe8a01e0, 0x00000000}},  //   _laie, _nanu, асие_,\n  { {0x38a40002, 0x81e60055, 0x69d60020, 0x00000000}},  //   hör_, যোগ_, _onye,\n  { {0x85f70049, 0x38a418ee, 0x69c41342, 0x00000000}},  //   ַציע_, kör_, _naie,\n  { {0x6b9a001c, 0x7bc30314, 0x62830161, 0x00000000}},  //   tgtg, _banu, ánov,\n  { {0x69d60263, 0x7a360ddf, 0x290205fd, 0x00000000}},  //   _anye, láth, dzka_,\n  { {0x69c404f8, 0x80c20067, 0xe7de0061, 0x00000000}},  //   _baie, लिके, मानप,\n  { {0x38a432c2, 0x61e2016e, 0x69c432c3, 0x00000000}},  //   för_, njol, _caie,\n  { {0x7bc30640, 0x7a3d00f4, 0x38a40039, 0x00000000}},  //   _fanu, géta, gör_,\n  { {0x7bc3006a, 0x9f5c0026, 0x61e200b0, 0x00000000}},  //   _ganu, tivù_, hjol,\n  { {0x45d500ed, 0x61e20190, 0x98ac0089, 0x00000000}},  //   повс, kjol, ādā_,\n  { {0x2c6001aa, 0x69c4002d, 0x7bc300b4, 0x00000000}},  //   _kòd_, _gaie, _zanu,\n  { {0x29020046, 0x8ccd013d, 0x7bc3013f, 0x00000000}},  // [a550] czka_, तियो, _yanu,\n  { {0x69a702fb, 0x2c6001aa, 0x69c4002d, 0x00000000}},  //   ट्री, _mòd_, _zaie,\n  { {0x2c600263, 0x77ba009b, 0x67ba009b, 0x00000000}},  //   _lòd_, _המתח, _המתק,\n  { {0x5bb70164, 0x799d010f, 0x245f018e, 0x00000000}},  //   _अस्व, ngsw, _tîm_,\n  { {0x3f6901ee, 0x00000000, 0x00000000, 0x00000000}},  //   било_,   ,   ,\n  { {0x657d1b1c, 0x00000000, 0x00000000, 0x00000000}},  //   _hesh,   ,   ,\n  { {0x657d23d3, 0xfd4c001d, 0x533404ef, 0x00000000}},  //   _kesh, _triể, _жерт,\n  { {0x645d000b, 0xf076026c, 0x657d000b, 0x00000000}},  //   _kusi, _کیوں_, _jesh,\n  { {0x7bc312e8, 0x657d0065, 0x64550cd7, 0x00000000}},  //   _panu, _mesh, _kizi,\n  { {0x7bc3005f, 0x7a3632c4, 0x1c421001, 0x00000000}},  //   _qanu, máti, нным,\n  { {0x69c432c5, 0x64551731, 0x645d0129, 0x00000000}},  //   _paie, _mizi, _lusi,\n  { {0xa3ab02fb, 0x657d037e, 0x3d0f0061, 0x00000000}},  //   क्त_, _nesh, _तेथे_,\n  { {0x645d010a, 0xc955008b, 0x7bc31dba, 0x00000000}},  //   _nusi, дтры, _tanu,\n  { {0x62852279, 0x7a3d06d2, 0x61fb00d4, 0x00000000}},  //   ksho, réta, _llul,\n  { {0x61fb0004, 0x645d1395, 0x29020036, 0x00000000}},  //   _olul, _ausi, szka_,\n  { {0xd90d007a, 0x645d0038, 0x6285032e, 0x00000000}},  //   ایی_, _busi, dsho,\n  { {0x657d03c3, 0x64552f69, 0xdb0a009f, 0x00000000}},  // [a560] _desh, _bizi, _hafð,\n  { {0x6b810089, 0x7a360181, 0x645500b9, 0x00000000}},  //   nalg, dáti, _cizi,\n  { {0x1dbd0201, 0x6455011f, 0x628505a6, 0x00000000}},  //   ्यात, _dizi, gsho,\n  { {0x61e90181, 0x6d59183c, 0x6b810058, 0x00000000}},  //   _coel, _ngwa, halg,\n  { {0x61e901b5, 0x61e200b0, 0x6b8100eb, 0x00000000}},  //   _doel, rjol, kalg,\n  { {0x62852a54, 0x6d590058, 0x61fb006c, 0x00000000}},  //   bsho, _agwa, _elul,\n  { {0x0443213f, 0x6b810211, 0xe297005e, 0x00000000}},  //   _черн, dalg, _нар_,\n  { {0x645506fe, 0x645d006b, 0x61e92996, 0x00000000}},  //   _zizi, _yusi, _goel,\n  { {0x6b810675, 0x6b8a000a, 0xc0590088, 0x00000000}},  //   falg, _pdfg, _діє_,\n  { {0xcfaa007a, 0xe7d70044, 0x61e901d6, 0x00000000}},  //   _دارم_, _হত্য, _zoel,\n  { {0xdfa50464, 0x61e92378, 0x00000000, 0x00000000}},  //   _تحقي, _yoel,   ,\n  { {0x6d590045, 0x00000000, 0x00000000, 0x00000000}},  //   _ggwa,   ,   ,\n  { {0x657d0023, 0x6b810885, 0xc86704dd, 0x00000000}},  //   _resh, balg, ятни,\n  { {0x645d005f, 0x9cd70097, 0x9f4500d4, 0x00000000}},  //   _rusi, _מודה_, _solé_,\n  { {0x645d1750, 0xa3e002d2, 0x657d008d, 0x00000000}},  //   _susi, थान_, _pesh,\n  { {0x6455038c, 0x657d0065, 0xa4d50088, 0x00000000}},  //   _sizi, _qesh, мобі,\n  { {0x657d008d, 0x62850052, 0x61e900c7, 0x00000000}},  // [a570] _vesh, wsho, _roel,\n  { {0x78fc009b, 0x61e91372, 0x7bc800f8, 0x00000000}},  //   _לפחו, _soel, nddu,\n  { {0x64550e7d, 0x2bae001c, 0x31660009, 0x00000000}},  //   _vizi, ज्या, fcoz_,\n  { {0x645d1a20, 0x62852c63, 0x2fc52cba, 0x00000000}},  //   _tusi, rsho, _salg_,\n  { {0x645d021e, 0x61e900b5, 0xf3f30025, 0x00000000}},  //   _uusi, _voel, _كأس_,\n  { {0x61e90546, 0x7a360161, 0x62830010, 0x00000000}},  //   _woel, ráti, ános,\n  { {0x61e900c7, 0x2fc501e3, 0x3e7a0089, 0x00000000}},  //   _toel, _valg_, gūt_,\n  { {0x7a362ff2, 0x798d01f3, 0x2fc501c3, 0x00000000}},  //   páti, _ndaw, _walg_,\n  { {0x6b81002b, 0xed5911e4, 0xe0df00f6, 0x00000000}},  //   talg, ndži_, _çò_,\n  { {0x3e7a001e, 0x9f63021e, 0x798d02ef, 0x00000000}},  //   būt_, ävät_, _adaw,\n  { {0x6b8101d6, 0x7a3d0161, 0xfc4600b9, 0x00000000}},  //   ralg, rétn, _říct_,\n  { {0x6b811ef5, 0x7bd8008e, 0x6d59002b, 0x00000000}},  //   salg, _envu, _ugwa,\n  { {0xa3c20316, 0xb4bc03d7, 0x6b81006c, 0x00000000}},  //   ्यम_, _आने_, palg,\n  { {0xfd10031d, 0x2d9f0181, 0x1c440088, 0x00000000}},  //   _حجم_, lgue_, _знім,\n  { {0x798d0066, 0x46a3005e, 0x00000000, 0x00000000}},  //   _fdaw, карв,   ,\n  { {0xa3ab02d2, 0x2d9f319a, 0xceb20104, 0x00000000}},  //   क्स_, ngue_, כיל_,\n  { {0xd040005f, 0x69c0009d, 0x7a0b00b4, 0x00000000}},  // [a580] _ermə, ômeu, jęty,\n  { {0x798d00b4, 0x00000000, 0x00000000, 0x00000000}},  //   _zdaw,   ,   ,\n  { {0x91e6007c, 0x3860008e, 0xdce001c5, 0x00000000}},  //   може, _huir_, tamī,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7bc80a2d, 0x00000000, 0x00000000, 0x00000000}},  //   yddu,   ,   ,\n  { {0x386032c6, 0x2d9f004a, 0x00000000, 0x00000000}},  //   _muir_, egue_,   ,\n  { {0x4ea600e2, 0x00000000, 0x00000000, 0x00000000}},  //   фрла,   ,   ,\n  { {0x25a014f7, 0xd6c00044, 0x9f4500d4, 0x00000000}},  //   ngil_, _উপায, _alló_,\n  { {0x80a604e8, 0x06370049, 0x7a120089, 0x00000000}},  //   _زمان, ונקט_, vātp,\n  { {0x2d9f0133, 0x00000000, 0x00000000, 0x00000000}},  //   ague_,   ,   ,\n  { {0x78b60006, 0x59d00061, 0x7bc80016, 0x00000000}},  //   _apyv, _तोहर, rddu,\n  { {0xdde30035, 0xe811007d, 0xdb1a0023, 0x00000000}},  //   ărţi, डोना_, letë,\n  { {0x38602dc6, 0xd90f00d3, 0x2d840a76, 0x00000000}},  //   _cuir_, شید_, mame_,\n  { {0x2d840c55, 0x6d420087, 0x00000000, 0x00000000}},  //   lame_, _izoa,   ,\n  { {0x0bb700a0, 0xdcc80082, 0x2bdb01f5, 0x00000000}},  //   _חלום_, _hỉ_, बारा,\n  { {0x2d841e89, 0x7c3a009f, 0xdcc80011, 0x00000000}},  //   name_, lltr, _kỉ_,\n  { {0xb9550088, 0xd8470088, 0xdb1a0023, 0x00000000}},  // [a590] _явищ, _охоп, ketë,\n  { {0x59dd0067, 0x2d8431d9, 0xdb1a0065, 0x00000000}},  //   यावर, hame_, jetë,\n  { {0xa3ab02f4, 0x8707008b, 0x6fdd001c, 0x00000000}},  //   क्ष_, _цяпе, पासू,\n  { {0x2d840006, 0x6e220026, 0x0b150049, 0x00000000}},  //   jame_, _njob, ײַער_,\n  { {0xb0680025, 0xdcc80082, 0x2d8432c7, 0x00000000}},  //   وصول_, _nỉ_, dame_,\n  { {0x764d005d, 0x24890be4, 0x8fa20088, 0x00000000}},  //   lmay, msam_, гаше,\n  { {0x9f450129, 0x2d840253, 0xf1a70a85, 0x00000000}},  //   _allò_, fame_, _оран,\n  { {0x2d84262d, 0x764d005d, 0xada5003b, 0x00000000}},  //   game_, nmay, хаил,\n  { {0x2d9f038e, 0x248905b4, 0xe134007e, 0x00000000}},  //   rgue_, nsam_, _анты,\n  { {0x44230061, 0x3ec4021e, 0x5ba9003b, 0x00000000}},  //   _jjj_, ästä_, чком_,\n  { {0x3d0f013d, 0x764d014a, 0x7a280477, 0x00000000}},  //   _तेरे_, kmay, yıtd,\n  { {0xc7a9019b, 0x24891a85, 0x2d8400ab, 0x00000000}},  //   _לב_, ksam_, came_,\n  { {0xe8f70069, 0x7e6101b5, 0x9f4500d4, 0x00000000}},  //   еля_, _hulp, _molí_,\n  { {0x7e610032, 0xb6c800a1, 0x291e0035, 0x00000000}},  //   _kulp, وازے_, ăta_,\n  { {0xf62601fc, 0x45d60478, 0x24460068, 0x00000000}},  //   едво, нцат, nôme_,\n  { {0xdb1a0065, 0x38600026, 0x7a3600c4, 0x00000000}},  //   zetë, _tuir_, tátu,\n  { {0x25a00938, 0x798632c8, 0x44230052, 0x00000000}},  // [a5a0] rgil_, makw, _bjj_,\n  { {0x7a3600f1, 0x2d841c71, 0x36c601fc, 0x00000000}},  //   rátu, zame_, _због,\n  { {0x2bf6007b, 0x6e3b225c, 0x1bf60049, 0x00000000}},  //   עמען_, klub, עצער_,\n  { {0xeac9001d, 0x7986254f, 0xa5bb000c, 0x00000000}},  //   _mẹ_, nakw, _hjón,\n  { {0xdb1a0065, 0x24890016, 0x2d840142, 0x00000000}},  //   tetë, csam_, vame_,\n  { {0x6e9400ed, 0xdcc80082, 0xe7e3013d, 0x00000000}},  //   вику, _rỉ_, खाया_,\n  { {0x7e610325, 0x2d8406aa, 0x81b50044, 0x00000000}},  //   _culp, tame_, জয়_,\n  { {0x433b007b, 0x63be001c, 0xb14804e1, 0x00000000}},  //   _זעלב, lepn, _قیام_,\n  { {0x2d84001c, 0x1aed0044, 0x798601a3, 0x00000000}},  //   rame_, _ছেলে_, dakw,\n  { {0x2d841ec2, 0xdb1a32c9, 0x2d8f00ab, 0x00000000}},  //   same_, leté, _edge_,\n  { {0xed5900ee, 0x629e0be4, 0x7a360010, 0x00000000}},  //   veže_, nupo, játs,\n  { {0xdb1a0047, 0xdcc80011, 0x6e3b00c4, 0x00000000}},  //   neté, _tỉ_, club,\n  { {0xa3c20183, 0x60c20061, 0x660432ca, 0x00000000}},  //   ्या_, nwom, dhik,\n  { {0x629e0b41, 0x2bd7006e, 0x7793025a, 0x00000000}},  //   kupo, _भोपा, دیدا,\n  { {0x764d005d, 0x629e00ca, 0x798632cb, 0x00000000}},  //   tmay, jupo, bakw,\n  { {0xed5908fb, 0xdb1a009d, 0x629e010e, 0x00000000}},  //   seže_, jeté, dupo,\n  { {0xdbf90046, 0x764d32cc, 0x7a36000c, 0x00000000}},  // [a5b0] _głów, rmay, rátt,\n  { {0xdd8600a1, 0x248932cd, 0x7bca2923, 0x00000000}},  //   _ھو_, rsam_, _jafu,\n  { {0x7bca000b, 0x24890181, 0x764d01df, 0x00000000}},  //   _mafu, ssam_, pmay,\n  { {0x7bca0016, 0x66040a64, 0xdb1a0010, 0x00000000}},  //   _lafu, chik, geté,\n  { {0x8fa501a4, 0x7e610133, 0x00000000, 0x00000000}},  //   вале, _sulp,   ,\n  { {0x7bca2a3c, 0x2446009d, 0x7e6132ce, 0x00000000}},  //   _nafu, tôme_, _pulp,\n  { {0x629e0068, 0x00000000, 0x00000000, 0x00000000}},  //   cupo,   ,   ,\n  { {0xed591036, 0x443317f4, 0x7e610035, 0x00000000}},  //   мой_, lox_, _vulp,\n  { {0x9f5c0197, 0x7bca21a4, 0x6e3b008a, 0x00000000}},  //   rivò_, _bafu, rlub,\n  { {0x7e610ef7, 0x6e3b0ad1, 0x798600e7, 0x00000000}},  //   _tulp, slub, wakw,\n  { {0xda78008b, 0x91f50309, 0x79860020, 0x00000000}},  //   няў_, _आवाज_, takw,\n  { {0xa5bb009f, 0xc33200a0, 0x3f870213, 0x00000000}},  //   _sjón, שוט_, lanu_,\n  { {0x798632cf, 0xdb010010, 0x6d5c00b9, 0x00000000}},  //   rakw, jelö, ěrat,\n  { {0xdb1a0047, 0xc2e70044, 0xe85600a1, 0x00000000}},  //   zeté, _গেছি_, ئنسد,\n  { {0x4433121e, 0xe7370081, 0x2cad07fb, 0x00000000}},  //   dox_, вер_, lted_,\n  { {0x6b8306d5, 0x3f870016, 0xdb01010f, 0x00000000}},  //   _heng, hanu_, rflä,\n  { {0x2cad1fd8, 0x443332d0, 0x6b830065, 0x00000000}},  // [a5c0] nted_, fox_, _keng,\n  { {0x389b007b, 0x660406b7, 0xa5bb000c, 0x00000000}},  //   _קיינ, shik, _hjól,\n  { {0x6b83020c, 0xf626008b, 0x3f870209, 0x00000000}},  //   _meng, _адно, danu_,\n  { {0x629e002b, 0x44210082, 0x9f470023, 0x00000000}},  //   rupo, anh_, ajnë_,\n  { {0x629e011c, 0x3f870107, 0x443332d1, 0x00000000}},  //   supo, fanu_, box_,\n  { {0x3f870127, 0x443300d4, 0x6b83065c, 0x00000000}},  //   ganu_, cox_, _neng,\n  { {0xa2e30088, 0x5299005e, 0x44380725, 0x00000000}},  //   _корд, _пътя_, _ikr_,\n  { {0x645c022b, 0x2cad00ab, 0x9f45000a, 0x00000000}},  //   _hiri, fted_, _dolà_,\n  { {0x645c0390, 0x6b83033b, 0xf06301f9, 0x00000000}},  //   _kiri, _beng, _вкуп,\n  { {0x69a5001c, 0x3f870b94, 0x645c0173, 0x00000000}},  //   _काही, canu_, _jiri,\n  { {0x6b830149, 0x645c0119, 0xcfa905f3, 0x00000000}},  //   _deng, _miri, _سالم_,\n  { {0xc33300b6, 0x645c0636, 0x7bca000b, 0x00000000}},  //   יות_, _liri, _wafu,\n  { {0x2cad0038, 0x6b83009f, 0x7bca000b, 0x00000000}},  //   cted_, _feng, _tafu,\n  { {0x6b8332d2, 0x645c0066, 0x443301f3, 0x00000000}},  //   _geng, _niri, xox_,\n  { {0x4433009d, 0x7a3d009d, 0x6595195e, 0x00000000}},  //   vox_, héti, лаву,\n  { {0x645c0006, 0xed5902aa, 0x6b83014a, 0x00000000}},  //   _airi, leža_, _zeng,\n  { {0x645c038c, 0x73d903e0, 0x443800bb, 0x00000000}},  // [a5d0] _biri, ндар_, _bkr_,\n  { {0x33740265, 0x939401b7, 0x69cd0146, 0x00000000}},  //   игур, لجما, _haae,\n  { {0x645c0198, 0x89340123, 0x7d090197, 0x00000000}},  //   _diri, _معیا, zzes,\n  { {0xa2940106, 0x645c32d3, 0x69cf00f8, 0x00000000}},  //   раці, _eiri, ndce,\n  { {0x3f87016e, 0x2cad01f3, 0xe134007e, 0x00000000}},  //   tanu_, xted_, анцы,\n  { {0x645c011f, 0x13a702fd, 0x9ea9034b, 0x00000000}},  //   _giri, _جنسی_, евка_,\n  { {0x6b83010a, 0x3f87047c, 0xed59089f, 0x00000000}},  //   _reng, ranu_, deža_,\n  { {0x2cad167c, 0x6b8304cb, 0x7a3d1055, 0x00000000}},  //   tted_, _seng, béti,\n  { {0x6b83020c, 0x765d0263, 0x3f871609, 0x00000000}},  //   _peng, _misy, panu_,\n  { {0x2cad0038, 0x60c913e1, 0x645c0c2f, 0x00000000}},  //   rted_, _isem, _xiri,\n  { {0x2cad0038, 0x6b830207, 0x7d091a53, 0x00000000}},  //   sted_, _veng, szes,\n  { {0x6b83000b, 0x2cad00ab, 0x765d0178, 0x00000000}},  //   _weng, pted_, _nisy,\n  { {0x60c932d4, 0x6b8804e7, 0xed5901c5, 0x00000000}},  //   _jsem, badg, beža_,\n  { {0x9d1a007b, 0x60c91ac6, 0xab29003b, 0x00000000}},  //   _אונט, _msem, _пола_,\n  { {0x443832d5, 0x7bc11a03, 0x645c0093, 0x00000000}},  //   _rkr_, melu, _riri,\n  { {0x443827f1, 0x7bc132d6, 0x6253002b, 0x00000000}},  //   _skr_, lelu, _għox,\n  { {0x645c2bfa, 0x443801a3, 0x765d09f3, 0x00000000}},  // [a5e0] _piri, _pkr_, _disy,\n  { {0xdb080010, 0x645c0350, 0x200700ca, 0x00000000}},  //   yedü, _qiri, jhni_,\n  { {0x60c91254, 0x645c0b60, 0x20070065, 0x00000000}},  //   _asem, _viri, dhni_,\n  { {0x645c0016, 0x7a3d0489, 0xd2590088, 0x00000000}},  //   _wiri, téti, вці_,\n  { {0x645c32d7, 0x7bc104cb, 0x3206008e, 0x00000000}},  //   _tiri, kelu, rhoy_,\n  { {0x3f850832, 0x7a3d00f4, 0xccf90036, 0x00000000}},  //   _celu_, réti, dyś_,\n  { {0x60c932d8, 0x7bc12509, 0x3f850059, 0x00000000}},  //   _esem, delu, _delu_,\n  { {0x7c3800b9, 0x7a3d009d, 0xeda6013b, 0x00000000}},  //   _skvr, péti, ушко,\n  { {0xed590243, 0xa0c90025, 0x2dd70025, 0x00000000}},  //   teža_, _لذلك_, طبية_,\n  { {0x7bc1037f, 0x20070c0f, 0xd704007d, 0x00000000}},  //   gelu, chni_, रनाथ_,\n  { {0xd437007b, 0xa5bb000c, 0x6b880240, 0x00000000}},  //   רטיי_, _sjóm, radg,\n  { {0xfe4100a1, 0xccf900b4, 0x00000000, 0x00000000}},  //   _وکٹی, byś_,   ,\n  { {0x7bc132d9, 0x69cf00f8, 0xdb1a004a, 0x00000000}},  //   belu, rdce, metí,\n  { {0xdb1a1526, 0x7bc10035, 0xb8ed013d, 0x00000000}},  //   letí, celu, _रन_,\n  { {0xf3f9001a, 0xdb08004a, 0x765d00e0, 0x00000000}},  //   _îţi_, redó, _pisy,\n  { {0xe4e701e1, 0xd4e7041f, 0x99800276, 0x00000000}},  //   лізн, люзи, _imiş_,\n  { {0x7afa00b0, 0x765d0173, 0xf9940104, 0x00000000}},  // [a5f0] lytt, _visy, _פרץ_,\n  { {0x59dd0164, 0x32040145, 0x00000000, 0x00000000}},  //   याकर, _almy_,   ,\n  { {0x753d0046, 0x7afa02cc, 0x60c90066, 0x00000000}},  //   _wysz, nytt, _ssem,\n  { {0x3f850091, 0x9564005e, 0x7bc10035, 0x00000000}},  //   _selu_, _гърд, zelu,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x60c90059, 0x1e9500d7, 0xdfd10380, 0x00000000}},  //   _vsem, арир, زيع_,\n  { {0x7bc1001a, 0x3f850873, 0x2c690142, 0x00000000}},  //   velu, _velu_, _súd_,\n  { {0x8cb50256, 0x9db9007e, 0xb5fb0010, 0x00000000}},  //   асоч, тыку_, _hiáb,\n  { {0xdd91026c, 0xb8820224, 0x7bc116c7, 0x00000000}},  //   موں_, říze, telu,\n  { {0x5e87008b, 0x25b9012d, 0x7afa0374, 0x00000000}},  //   _будз, _lbsl_, fytt,\n  { {0xa7200044, 0xab2901e0, 0x2005002b, 0x00000000}},  //   _ধর্ম_, тона_, _illi_,\n  { {0x186a0373, 0x7bc104cb, 0x6da5003b, 0x00000000}},  //   ками_, selu, _ђила,\n  { {0x39490046, 0x6aa10133, 0xdb0a01a2, 0x00000000}},  //   _czas_, sulf, _abfä,\n  { {0x68e201d5, 0x7afa0b09, 0x225f1a37, 0x00000000}},  //   _ġodd, bytt, _liuk_,\n  { {0xe73a05f6, 0x9f4500d4, 0xf41b0044, 0x00000000}},  //   тев_, _dolç_, তকার_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xd4670113, 0xa3d1013d, 0x20050836, 0x00000000}},  // [a600] иите_, वयं_, _olli_,\n  { {0x673e00d9, 0x00000000, 0x00000000, 0x00000000}},  //   _typj,   ,   ,\n  { {0x25ab0009, 0x00000000, 0x00000000, 0x00000000}},  //   _fccl_,   ,   ,\n  { {0x64a6008b, 0x224d32da, 0x2005008e, 0x00000000}},  //   _кама, _chek_, _alli_,\n  { {0x23670295, 0x66060052, 0xdb1a0344, 0x00000000}},  //   žnja_, _ilkk, vetí,\n  { {0x7afa00b0, 0x6037007e, 0x224d2fdd, 0x00000000}},  //   yytt, апіў_, _ehek_,\n  { {0x225f0e03, 0x9e0632db, 0x00000000, 0x00000000}},  //   _fiuk_, ичил,   ,\n  { {0x200506b5, 0x7afa00b0, 0x291e0095, 0x00000000}},  //   _elli_, vytt, ştay_,\n  { {0xafe600ed, 0xa06a0604, 0x2cbd00d9, 0x00000000}},  //   _коал, _раза_, _cpwd_,\n  { {0x34b700b6, 0x7afa00b0, 0x9f4c0062, 0x00000000}},  //   ספים_, tytt, _hodí_,\n  { {0x8aa302d3, 0x3f67013b, 0xa3ab007d, 0x00000000}},  //   оряд, _тихо_, क्ट_,\n  { {0xf2d3007b, 0x13cf0044, 0xf99f01aa, 0x00000000}},  //   קער_, রায়, chèl_,\n  { {0xc31a0055, 0x1bd40265, 0x79960016, 0x00000000}},  //   _তুমি_, _голя, _ddyw,\n  { {0x9f4c0062, 0x25ab00d4, 0x201c0068, 0x00000000}},  //   _lodí_, _sccl_, nivi_,\n  { {0xc66801fc, 0xf8ae0167, 0x3a2900fa, 0x00000000}},  //   иште_, وکی_, _tjap_,\n  { {0x7a28014a, 0x442a32dc, 0x8c3d15ec, 0x00000000}},  //   nıtl, _ajb_, muşa,\n  { {0xf367053c, 0x201c32dd, 0x24f80783, 0x00000000}},  // [a610] атен, kivi_, анты_,\n  { {0x201c0295, 0x224d0065, 0x442a32de, 0x00000000}},  //   jivi_, _shek_, _cjb_,\n  { {0x93190025, 0x9f4c00f6, 0x8c3d014a, 0x00000000}},  //   دقاء_, _bodí_, nuşa,\n  { {0xb5fb00fa, 0xf1e1013d, 0x386901a3, 0x00000000}},  //   _diác, फाइन, _kuar_,\n  { {0x83870a78, 0x629e00d9, 0xd4e701ab, 0x00000000}},  //   _выбе, arpo, _тюни,\n  { {0x7e680190, 0x386901a3, 0x25a92aa7, 0x00000000}},  //   _budp, _muar_, lgal_,\n  { {0x3869020c, 0xa2940088, 0x9294007e, 0x00000000}},  //   _luar_, _марі, _марц,\n  { {0x25a91740, 0xf2d20049, 0x7db4007e, 0x00000000}},  //   ngal_, _צען_, осьц,\n  { {0x814500a1, 0x2024000c, 0x61ed00b0, 0x00000000}},  //   _اچان, ðrið_, öalu,\n  { {0x201c32df, 0x60db0288, 0x7ff40644, 0x00000000}},  //   civi_, _irum, _وسلا,\n  { {0x3946198c, 0x00000000, 0x00000000, 0x00000000}},  //   _šos_,   ,   ,\n  { {0xa3de001c, 0x60db32e0, 0xf769009b, 0x00000000}},  //   _दोन_, _krum, _טק_,\n  { {0xeaae00a1, 0x2a60006c, 0xf99f0173, 0x00000000}},  //   وٹی_, _viib_, chèm_,\n  { {0x6d4b32e1, 0x38690065, 0x186700ed, 0x00000000}},  //   _izga, _duar_, сари_,\n  { {0xa3ab013d, 0x00000000, 0x00000000, 0x00000000}},  //   क्छ_,   ,   ,\n  { {0x201c016c, 0x25a90010, 0x38692d82, 0x00000000}},  //   zivi_, ggal_, _fuar_,\n  { {0x7a3d009f, 0xe3ba0794, 0x69c60010, 0x00000000}},  // [a620] rétt, лба_, meke,\n  { {0x69c61483, 0x25a9002a, 0x201c006b, 0x00000000}},  //   leke, agal_, xivi_,\n  { {0x7a3d32e2, 0x7a28014a, 0xa3b90061, 0x00000000}},  //   métr, yıtl, _अउर_,\n  { {0x7a3d32e3, 0x69c632e4, 0x71a6007e, 0x00000000}},  //   létr, neke, садз,\n  { {0x201c0198, 0x10a301fb, 0x76440180, 0x00000000}},  //   tivi_, зичн, mliy,\n  { {0x60db001a, 0x7644005d, 0x69c60bd5, 0x00000000}},  //   _drum, lliy, heke,\n  { {0x201c0207, 0x69c632e5, 0x44441b91, 0x00000000}},  //   rivi_, keke, ml_,\n  { {0x44440f68, 0x60db2e3d, 0x201c0207, 0x00000000}},  //   ll_, _frum, sivi_,\n  { {0x69c60047, 0x60db0065, 0x444402f1, 0x00000000}},  //   deke, _grum, ol_,\n  { {0xda7a01e0, 0x3869027b, 0x443a0168, 0x00000000}},  //   лям_, _ruar_, nop_,\n  { {0x7644005a, 0x6d4b0032, 0x3869008a, 0x00000000}},  //   kliy, _ezga, _suar_,\n  { {0x4444001f, 0x69c62c77, 0x3f8e0020, 0x00000000}},  //   hl_, geke, lafu_,\n  { {0x63bc0a0f, 0x4444013e, 0x7644006b, 0x00000000}},  //   _obrn, kl_, dliy,\n  { {0x444402ae, 0x06c00044, 0x3f8e005b, 0x00000000}},  //   jl_, _উপজি, nafu_,\n  { {0x69c600c7, 0x444432e6, 0x2bb7009b, 0x00000000}},  //   beke, dl_, _הפוך_,\n  { {0x3f8e32e7, 0x7c3a0253, 0x9f4c0026, 0x00000000}},  //   hafu_, lotr, _modà_,\n  { {0x6fa90061, 0x44441820, 0x60c4005a, 0x00000000}},  // [a630] _घालू, fl_, çiml,\n  { {0xf36701fb, 0x4444000c, 0x443a32e8, 0x00000000}},  //   стан, gl_, gop_,\n  { {0x764432e9, 0x7c28029c, 0x236708fb, 0x00000000}},  //   bliy, indr, žnjo_,\n  { {0xddc1001a, 0x7a28006b, 0x7c3a0253, 0x00000000}},  //   _mulţ, yıtm, hotr,\n  { {0x4444018e, 0x443a0203, 0x7c3a04eb, 0x00000000}},  //   bl_, bop_, kotr,\n  { {0x7c3a057c, 0x4444005b, 0x69c60e24, 0x00000000}},  //   jotr, cl_, zeke,\n  { {0x7e620324, 0x69c60010, 0x00000000, 0x00000000}},  //   _biop, yeke,   ,\n  { {0x644506be, 0x171c0049, 0xd3460014, 0x00000000}},  //   llhi, טווע, _بیمه_,\n  { {0x69c60344, 0x60db0032, 0xdb1a068f, 0x00000000}},  //   veke, _urum, netæ,\n  { {0x69c60020, 0x76440477, 0x7c3a0213, 0x00000000}},  //   weke, zliy, gotr,\n  { {0x5fae0061, 0x2fc72081, 0x39ea017f, 0x00000000}},  //   _घातल, meng_, адно_,\n  { {0x2fc7170b, 0x3ea70129, 0xef180089, 0x00000000}},  //   leng_, munt_, _ceļu_,\n  { {0x69c608a5, 0x29040047, 0x443a011c, 0x00000000}},  //   reke, áma_, yop_,\n  { {0x69c604e7, 0x7c3a0035, 0x2fc70b9a, 0x00000000}},  //   seke, cotr, neng_,\n  { {0x69c60010, 0x44440030, 0xdb1a285a, 0x00000000}},  //   peke, vl_, petá,\n  { {0x2fc70058, 0xe57a026b, 0x443a0173, 0x00000000}},  //   heng_, рза_, wop_,\n  { {0x443a02cc, 0x7644005f, 0x44440016, 0x00000000}},  // [a640] top_, rliy, tl_,\n  { {0x4444000d, 0xa3e70164, 0x2fc70093, 0x00000000}},  //   ul_, भाष_, jeng_,\n  { {0x443a0168, 0x4444001c, 0x2fc7011c, 0x00000000}},  //   rop_, rl_, deng_,\n  { {0x660d1ae4, 0xe0da0407, 0x443a01d6, 0x00000000}},  //   chak, иве_, sop_,\n  { {0x2fc72240, 0x4444115e, 0xc5f30104, 0x00000000}},  //   feng_, pl_, _חדר_,\n  { {0x2bae02fb, 0x7e62016d, 0xdc390279, 0x00000000}},  //   ज्ञा, _siop, kçıl,\n  { {0xe29700c0, 0x23270265, 0x3f8e0020, 0x00000000}},  //   _мар_, _дори_, rafu_,\n  { {0x66040052, 0xdcba005e, 0x6e29068f, 0x00000000}},  //   nkik, ащо_, gneb,\n  { {0xf65300b6, 0xd7ca0061, 0x2fc700e0, 0x00000000}},  //   וצה_, ाजाच, beng_,\n  { {0x224601d5, 0x60cd153d, 0x3ea70c10, 0x00000000}},  //   llok_, çame, bunt_,\n  { {0x7c280065, 0x660400b0, 0xdd8f003b, 0x00000000}},  //   rndr, kkik, _ош_,\n  { {0x7c3a0219, 0x8c3d01df, 0x5ce60025, 0x00000000}},  //   sotr, luşl, _وكال,\n  { {0x7c3a000d, 0x7e7a2513, 0xfbcf00a6, 0x00000000}},  //   potr, _http, رتی_,\n  { {0x6e201bc6, 0x3945001e, 0x66040032, 0x00000000}},  //   limb, āls_, ekik,\n  { {0x4b7b0049, 0x22460058, 0x7bc8010e, 0x00000000}},  //   _דאוו, klok_, medu,\n  { {0x7bc800ca, 0x6e2004cb, 0xa5bb000c, 0x00000000}},  //   ledu, nimb, _njót,\n  { {0x2fc7020e, 0x660d0ed1, 0x22460058, 0x00000000}},  // [a650] yeng_, rhak, dlok_,\n  { {0x6e20000d, 0x660d0ea6, 0xd7b20061, 0x00000000}},  //   himb, shak, _जायच,\n  { {0x6e20000b, 0xc7b20104, 0x6e290016, 0x00000000}},  //   kimb, _אבי_, yneb,\n  { {0x6e3b027b, 0xdce901a8, 0x7bc832ea, 0x00000000}},  //   xoub, zbeđ, hedu,\n  { {0x2fc70b36, 0x7bc80145, 0x6e290190, 0x00000000}},  //   teng_, kedu, vneb,\n  { {0x3f8c32df, 0x3ea700d9, 0x224632eb, 0x00000000}},  //   _cedu_, tunt_, alok_,\n  { {0x44210059, 0x2fc704cb, 0x63b401ca, 0x00000000}},  //   mih_, reng_, žený,\n  { {0x44210149, 0xed590059, 0x2fc7011c, 0x00000000}},  //   lih_, leži_, seng_,\n  { {0x6e2901e3, 0x6e3b00b9, 0x2fc7027c, 0x00000000}},  //   rneb, roub, peng_,\n  { {0x442100ee, 0x3ea732ec, 0xdc390279, 0x00000000}},  //   nih_, punt_, tçıl,\n  { {0xf8a900a0, 0x661d2280, 0x6e200145, 0x00000000}},  //   _תש_, _omsk, bimb,\n  { {0xdeba00b6, 0x442101a3, 0xdb1a00b0, 0x00000000}},  //   _למעל, hih_, detä,\n  { {0x442132ed, 0x3e7132ee, 0xa5bb009f, 0x00000000}},  //   kih_, _hát_, _ljós,\n  { {0x44211c18, 0x913a0049, 0xd7f20025, 0x00000000}},  //   jih_, מערק, ركز_,\n  { {0x26de027b, 0x66e30920, 0x8c3d014a, 0x00000000}},  //   íto_, нора, nuşm,\n  { {0x3e710011, 0x8afa009b, 0x9663007c, 0x00000000}},  //   _mát_, _להצי, ексе,\n  { {0x660432ef, 0x3e7132f0, 0x4421002b, 0x00000000}},  // [a660] rkik, _lát_, fih_,\n  { {0x442101d9, 0x66040343, 0x69d60253, 0x00000000}},  //   gih_, skik, _haye,\n  { {0xe646003b, 0xa1c600e1, 0xdb1a014a, 0x00000000}},  //   _неоп, збед, retç,\n  { {0x2372001e, 0x7bc8002d, 0x69d61624, 0x00000000}},  //   _šajā_, zedu, _jaye,\n  { {0x44210149, 0x38b632f1, 0x200e0022, 0x00000000}},  //   bih_, nær_, thfi_,\n  { {0x4421021c, 0x3e7132f2, 0x69d60339, 0x00000000}},  //   cih_, _bát_, _laye,\n  { {0xc059103e, 0x3e710011, 0x7bc8066e, 0x00000000}},  //   ції_, _cát_, vedu,\n  { {0x64670010, 0x23ac006e, 0x6aa802e1, 0x00000000}},  //   _óriá, _चाँद, vudf,\n  { {0x6e2012aa, 0x7bc82248, 0x38b60190, 0x00000000}},  //   rimb, tedu, jær_,\n  { {0x6e200922, 0x798d2e8d, 0x38b60190, 0x00000000}},  //   simb, _seaw, dær_,\n  { {0x69d6010f, 0x7bc80032, 0x600f00ea, 0x00000000}},  //   _baye, redu, _dømd,\n  { {0x69d61adb, 0x7bc81330, 0x38b61ab4, 0x00000000}},  //   _caye, sedu, fær_,\n  { {0xb5fb32f3, 0x5c060265, 0x9f4501aa, 0x00000000}},  //   _diál, _няка, _anlè_,\n  { {0xdb1a00b0, 0x661d0062, 0x00000000, 0x00000000}},  //   tetä, _smsk,   ,\n  { {0x44210bf8, 0x3bbb00b3, 0x98be0089, 0x00000000}},  //   vih_, _המוד, ātā_,\n  { {0x38b6137b, 0x69d6014a, 0x4421008a, 0x00000000}},  //   bær_, _gaye, wih_,\n  { {0xa5bb000c, 0x00000000, 0x00000000, 0x00000000}},  // [a670] _bjór,   ,   ,\n  { {0xb88300b9, 0x2a7c0288, 0x00000000, 0x00000000}},  //   říst, _ktvb_,   ,\n  { {0x442132f4, 0x5694007e, 0x8c41010f, 0x00000000}},  //   rih_, _паэт, äßig,\n  { {0x44210149, 0x200c002d, 0x3e7132f5, 0x00000000}},  //   sih_, _aldi_, _rát_,\n  { {0x3e71001d, 0x92ad0055, 0xa5bb000c, 0x00000000}},  //   _sát_, কবে_, _fjór,\n  { {0xc4d2009b, 0x3e7100b9, 0x00000000, 0x00000000}},  //   _שגם_, _pát_,   ,\n  { {0x290215b1, 0x44310087, 0x7c2101a2, 0x00000000}},  //   zyka_, _ijz_, vilr,\n  { {0xf2d20452, 0xcfcd0044, 0xec79005e, 0x00000000}},  //   _בעל_, লাইন, опи_,\n  { {0x61e90035, 0x4c35007e, 0x69d600cc, 0x00000000}},  //   _inel, дэнт, _raye,\n  { {0x69d6014a, 0x3e710082, 0x61fb0e9d, 0x00000000}},  //   _saye, _tát_, _houl,\n  { {0x61fb32f6, 0x69d632f7, 0x61e900bb, 0x00000000}},  //   _koul, _paye, _knel,\n  { {0x29020046, 0x61fb021e, 0x38b601e3, 0x00000000}},  //   tyka_, _joul, tær_,\n  { {0x9f580010, 0x61fb032c, 0x6f030544, 0x00000000}},  //   özök_, _moul, lync,\n  { {0xb8f60164, 0xb5fb008e, 0x29020036, 0x00000000}},  //   _सन_, _diám, ryka_,\n  { {0x61e90032, 0xa3de0309, 0x32060058, 0x00000000}},  //   _onel, _दोष_, ykoy_,\n  { {0x23781088, 0x61fb32f8, 0x24800022, 0x00000000}},  //   _sfrj_, _noul, tpim_,\n  { {0x2d8f32f9, 0x443100d9, 0x00000000, 0x00000000}},  // [a680] _mege_, _bjz_,   ,\n  { {0x61e91f5a, 0x2d8f28f8, 0xb4ce0204, 0x00000000}},  //   _anel, _lege_, _शनी_,\n  { {0x61fb0c69, 0x443132fa, 0x316a1c4a, 0x00000000}},  //   _boul, _djz_, ошло_,\n  { {0x61fb030a, 0xed590bf8, 0x2d8f32fb, 0x00000000}},  //   _coul, ležu_, _nege_,\n  { {0x61fb023f, 0xe7e301f5, 0x00000000, 0x00000000}},  //   _doul, खाचा_,   ,\n  { {0xd12f03ec, 0x237800c4, 0xdbcc000c, 0x00000000}},  //   جمه_, _ufrj_, jóðu,\n  { {0x61fb00f4, 0x2d8f3028, 0x00000000, 0x00000000}},  //   _foul, _bege_,   ,\n  { {0x3ea00224, 0x61fb0f07, 0x00000000, 0x00000000}},  //   čit_, _goul,   ,\n  { {0x2d8f0023, 0x00000000, 0x00000000, 0x00000000}},  //   _dege_,   ,   ,\n  { {0x61fb1339, 0x3a20013f, 0x00000000, 0x00000000}},  //   _zoul, _amip_,   ,\n  { {0xfff500a2, 0xed590e54, 0xa3ac01f5, 0x00000000}},  //   _سکوت_, dežu_, _गाई_,\n  { {0x2d8f32fc, 0x1ea90025, 0x00000000, 0x00000000}},  //   _gege_, _رامي_,   ,\n  { {0xb4bd0365, 0x9cb30025, 0x00000000, 0x00000000}},  //   _आहे_, _لمنت,   ,\n  { {0x2367092f, 0x36d502e9, 0x2d8f32fd, 0x00000000}},  //   žnji_, ногр, _zege_,\n  { {0xc5fb00ed, 0x683f00b9, 0x80d5013d, 0x00000000}},  //   оѓа_, vádě, _मैने,\n  { {0x7bd8014a, 0x7bda13bc, 0x99670545, 0x00000000}},  //   _havu, ldtu, _отпл,\n  { {0x61fb00f4, 0x7bd8014a, 0x5455007c, 0x00000000}},  // [a690] _roul, _kavu, еват,\n  { {0x61fb32fe, 0x61e902ae, 0x7bda0240, 0x00000000}},  //   _soul, _snel, ndtu,\n  { {0x61fb218c, 0x7bd80020, 0x08f800a6, 0x00000000}},  //   _poul, _mavu, _فریب_,\n  { {0xf99f01aa, 0x50b51c4a, 0x7bd80943, 0x00000000}},  //   chèt_, еску, _lavu,\n  { {0x61fb028c, 0x2d8f12e9, 0xd4790049, 0x00000000}},  //   _voul, _rege_, _מאָל,\n  { {0x61fb0038, 0x7bd80091, 0x2d8f01d6, 0x00000000}},  //   _woul, _navu, _sege_,\n  { {0x61fb32ff, 0x2007000c, 0x2d8f0190, 0x00000000}},  //   _toul, rkni_, _pege_,\n  { {0x61e9000d, 0xdd9100a1, 0x63ad001a, 0x00000000}},  //   _unel, چوں_, şină,\n  { {0xdd91026c, 0x7bd83300, 0x6f0300bb, 0x00000000}},  //   نوں_, _bavu, sync,\n  { {0xaf0703f3, 0x2d8f010f, 0x00000000, 0x00000000}},  //   _очек, _wege_,   ,\n  { {0x39490093, 0x7bd8005d, 0x5f9400e2, 0x00000000}},  //   _ayas_, _davu, _рихт,\n  { {0x7afc0039, 0x13d80044, 0xb5fb0010, 0x00000000}},  //   ärta, সায়, _diák,\n  { {0xa3c102fb, 0x2a690e6d, 0x7bd8002b, 0x00000000}},  //   ्जा_, _diab_, _favu,\n  { {0x7bd80006, 0x3d18013d, 0x660f00c4, 0x00000000}},  //   _gavu, _बेटे_, _alck,\n  { {0x2a690026, 0x7bc30145, 0x2cad0133, 0x00000000}},  //   _fiab_, _ibnu, lued_,\n  { {0xdb013301, 0x7bd804eb, 0x00000000, 0x00000000}},  //   rglä, _zavu,   ,\n  { {0x7bd80c07, 0x2cad24f1, 0x64a3007e, 0x00000000}},  // [a6a0] _yavu, nued_, лата,\n  { {0xa3e70164, 0x68e4002b, 0x93c8026c, 0x00000000}},  //   भाग_, _irid, بارہ_,\n  { {0xf99f01aa, 0x786b0066, 0x22440022, 0x00000000}},  //   chès_, _iżva, _pkmk_,\n  { {0x69c4002b, 0xa2d5006e, 0xf99f00f6, 0x00000000}},  //   _jbie, णिज्, lhèr_,\n  { {0x69c40a61, 0x68e4002b, 0x63ab3302, 0x00000000}},  //   _mbie, _jrid, álné,\n  { {0x2ab80047, 0xe8d90011, 0x27170044, 0x00000000}},  //   yéb_, _ngờ_, _দুটো_,\n  { {0x69c43303, 0xdc12006b, 0xa2e3005e, 0x00000000}},  //   _obie, xşıl, _йорд,\n  { {0x6ed3005f, 0x7bd83304, 0x387f0035, 0x00000000}},  //   _xəbə, _savu, ţuri_,\n  { {0x628e3305, 0x7bd80253, 0x2cad0133, 0x00000000}},  //   _hwbo, _pavu, gued_,\n  { {0x69c420c1, 0x9f45004a, 0x00000000, 0x00000000}},  //   _abie, _coló_,   ,\n  { {0x62580051, 0x645e00b0, 0xdd31006b, 0x00000000}},  //   ríof, impi, _təşv,\n  { {0xdc1201f6, 0xc333012e, 0x68e400ab, 0x00000000}},  //   rşıl, טות_, _brid,\n  { {0x6e2203c7, 0x68e40129, 0x7bd83306, 0x00000000}},  //   _imob, _crid, _tavu,\n  { {0x6ed3005f, 0xd7f8007c, 0x68e40065, 0x00000000}},  //   _səbə, нус_, _drid,\n  { {0x0587003b, 0x35e7007e, 0x00000000, 0x00000000}},  //   еузм, нцав,   ,\n  { {0x6ed3006b, 0x39490022, 0x62580051, 0x00000000}},  //   _qəbə, _tyas_, níod,\n  { {0x629c005f, 0x68e40207, 0x69cf3307, 0x00000000}},  // [a6b0] _avro, _grid, mece,\n  { {0x69cf011f, 0x69dd23fc, 0x69c405fd, 0x00000000}},  //   lece, ldse, _zbie,\n  { {0x81da0044, 0xdb1a0030, 0x78bd010f, 0x00000000}},  //   ়ান_, getø, ltsv,\n  { {0x69cf014a, 0x645e00b0, 0x60cd00c4, 0x00000000}},  //   nece, ampi, çamo,\n  { {0x629c3308, 0x78bd00ea, 0xd3a700ed, 0x00000000}},  //   _evro, ntsv, _првп,\n  { {0x63550256, 0x764d0180, 0x63b50036, 0x00000000}},  //   _авгу, llay, _uczn,\n  { {0x69cf1c57, 0x628e005b, 0x00000000, 0x00000000}},  //   kece, _gwbo,   ,\n  { {0x7ceb000c, 0x628500ab, 0x764d005d, 0x00000000}},  //   jörð, mpho, nlay,\n  { {0x62852467, 0x4ec30044, 0x44230145, 0x00000000}},  //   lpho, ্মেল, _kmj_,\n  { {0x23670091, 0x62850190, 0x68e40226, 0x00000000}},  //   žnju_, opho, _rrid,\n  { {0x764d011f, 0x62850011, 0x2cad00ab, 0x00000000}},  //   klay, npho, sued_,\n  { {0x68e40cce, 0xf2d2007b, 0x78bd01c9, 0x00000000}},  //   _prid, בעט_, ftsv,\n  { {0xe8f702d3, 0x6aa80c95, 0xc19a00b3, 0x00000000}},  //   вля_, ardf, ושרי,\n  { {0x68e43309, 0x7e6b0058, 0x60c900e7, 0x00000000}},  //   _vrid, _higp, _mpem,\n  { {0x69cf0b33, 0x78bd2f5d, 0x80b30164, 0x00000000}},  //   bece, atsv, उंडे,\n  { {0x940c005f, 0x69cf0190, 0x7bc1330a, 0x00000000}},  //   ələr_, cece, lflu,\n  { {0x6fe1001c, 0x0566005e, 0x657d012d, 0x00000000}},  // [a6c0] पयां, тван, _dfsh,\n  { {0x7bc10218, 0x62850009, 0x6d4b0602, 0x00000000}},  //   nflu, fpho, _myga,\n  { {0xe29701e1, 0x628500e0, 0x6d4b330b, 0x00000000}},  //   вах_, gpho, _lyga,\n  { {0x764d008e, 0xdb1a0030, 0xb87b004a, 0x00000000}},  //   clay, retø, lvía,\n  { {0x442301f3, 0x216704f9, 0x6d4b1a96, 0x00000000}},  //   _fmj_, вици_, _nyga,\n  { {0x638300e3, 0x69cf330c, 0xb87b004a, 0x00000000}},  //   _вгра, zece, nvía,\n  { {0x4444330d, 0x69cf011f, 0x8c3d014a, 0x00000000}},  //   mo_, yece, nuşu,\n  { {0xade303e8, 0xe6bb006b, 0x6d4b0190, 0x00000000}},  //   ацьк, şaçı, _byga,\n  { {0x625803d1, 0x7ceb000c, 0x4444016e, 0x00000000}},  //   ríod, vörð, oo_,\n  { {0x444405d3, 0x1dae0061, 0x7afc0039, 0x00000000}},  //   no_, _टाकत, ärto,\n  { {0x4444220a, 0x69cf27b5, 0x60140129, 0x00000000}},  //   io_, tece, _càme,\n  { {0x44440428, 0x78bd05ad, 0x764d006b, 0x00000000}},  //   ho_, ttsv, xlay,\n  { {0x44440756, 0x69cf27b5, 0x69dd006c, 0x00000000}},  //   ko_, rece, rdse,\n  { {0x44440ecf, 0x3e780047, 0x62852228, 0x00000000}},  //   jo_, _két_, ypho,\n  { {0x4444306b, 0x764d014a, 0x78bd00f8, 0x00000000}},  //   do_, tlay, stsv,\n  { {0x4444203d, 0x3e78330e, 0x3ce60ec4, 0x00000000}},  //   eo_, _mét_, _krov_,\n  { {0x764d0279, 0x9f5e0065, 0x3e78000c, 0x00000000}},  // [a6d0] rlay, _botë_, _lét_,\n  { {0x4444330f, 0xf8bf00f4, 0x628502d4, 0x00000000}},  //   go_, mté_, tpho,\n  { {0xf8bf00f4, 0x3e780011, 0x8c3d014a, 0x00000000}},  //   lté_, _nét_, muşt,\n  { {0x4444027b, 0x68e2001e, 0xe9df008e, 0x00000000}},  //   ao_, _šodi, ndú_,\n  { {0x444413a1, 0xf8bf028c, 0x628500ab, 0x00000000}},  //   bo_, nté_, spho,\n  { {0xf8bf00f4, 0x8c3d014a, 0x44233310, 0x00000000}},  //   ité_, nuşt, _umj_,\n  { {0xa294007e, 0x9976006b, 0x229404dd, 0x00000000}},  //   _васі, _nəşr_, _вися,\n  { {0x6445011c, 0x660d0010, 0x9f5e01aa, 0x00000000}},  //   lohi, nkak, _motè_,\n  { {0x626c0035, 0x60c900e7, 0x9f5e0173, 0x00000000}},  //   _uşoa, _upem, _lotè_,\n  { {0xabd50098, 0x64450403, 0xe8d90082, 0x00000000}},  //   уциј, nohi, _ngố_,\n  { {0x7bc11642, 0x660d021e, 0xdd9103ec, 0x00000000}},  //   rflu, kkak, _هوا_,\n  { {0x44443311, 0x62580051, 0x7bc10218, 0x00000000}},  //   zo_, míoc, sflu,\n  { {0x44440258, 0x62580051, 0x64450bbb, 0x00000000}},  //   yo_, líoc, kohi,\n  { {0x3156007b, 0x444405bc, 0x6e29010f, 0x00000000}},  //   טירן_, xo_, lieb,\n  { {0x7d090010, 0x3e78001d, 0x8c1a00b6, 0x00000000}},  //   lyes, _xét_, _רוצי,\n  { {0x44440046, 0x660d006a, 0x6e29008e, 0x00000000}},  //   wo_, gkak, nieb,\n  { {0x4444024e, 0x7d09000b, 0xe45a00e3, 0x00000000}},  // [a6e0] to_, nyes, ежа_,\n  { {0x6e29010f, 0x4444005b, 0x644500e0, 0x00000000}},  //   hieb, uo_, gohi,\n  { {0x44440fb3, 0x91e60069, 0x2cbf0004, 0x00000000}},  //   ro_, ложе, htud_,\n  { {0x44440c2e, 0x7e78001c, 0x80c80044, 0x00000000}},  //   so_, vqvp, লিস্,\n  { {0x859b019b, 0x6e290fcf, 0x3e780011, 0x00000000}},  //   _אשכו, dieb, _sét_,\n  { {0xddcb0dec, 0x7d1b012d, 0xa067142c, 0x00000000}},  //   _figū, dzus, гача_,\n  { {0x6258002a, 0x7c281715, 0x2cbf3312, 0x00000000}},  //   ríob, vidr, etud_,\n  { {0x629e0095, 0x3e780082, 0x7c2801a2, 0x00000000}},  //   mspo, _vét_, widr,\n  { {0x7c283313, 0x7d093314, 0x26da0022, 0x00000000}},  //   tidr, gyes, _lspo_,\n  { {0xd12f05d4, 0x22460173, 0xdd8f00a1, 0x00000000}},  //   _عمل_, look_, _ہوم_,\n  { {0x5a3500ed, 0x645c0016, 0x79962b11, 0x00000000}},  //   инот, _mhri, _beyw,\n  { {0xf8bf01e6, 0x22460145, 0x7c28007f, 0x00000000}},  //   tté_, nook_, sidr,\n  { {0xf8bf028c, 0x645c0142, 0xe9df3315, 0x00000000}},  //   uté_, _ohri, rdú_,\n  { {0xf8bf00f4, 0x629e1b22, 0x9f5e0026, 0x00000000}},  //   rté_, kspo, _potè_,\n  { {0xf8bf0371, 0x6b7b00a3, 0xdce0005a, 0x00000000}},  //   sté_, _ארונ, mamı,\n  { {0x629e0193, 0xdce0005d, 0xf8bf00f4, 0x00000000}},  //   dspo, lamı, pté_,\n  { {0x660d022b, 0x645c0051, 0x64453316, 0x00000000}},  // [a6f0] rkak, _bhri, tohi,\n  { {0x645c0aba, 0x6b9a04bd, 0xdce0005d, 0x00000000}},  //   _chri, natg, namı,\n  { {0x629e1cce, 0x644504f4, 0x7c2f009d, 0x00000000}},  //   gspo, rohi, écri,\n  { {0xa2940088, 0x64450058, 0xdb1a00b4, 0x00000000}},  //   саці, sohi, letó,\n  { {0x69df008d, 0xdce0005d, 0x6e290bd3, 0x00000000}},  //   _maqe, kamı, vieb,\n  { {0x62580051, 0x287c0049, 0x7d1b006b, 0x00000000}},  //   tíoc, ענומ, vzus,\n  { {0x6e2923c3, 0x290b0016, 0xf2e40088, 0x00000000}},  //   tieb, hyca_, _люто,\n  { {0x82370054, 0x6258002a, 0x69df0023, 0x00000000}},  //   _إرسا, ríoc, _naqe,\n  { {0x6e290d78, 0x1fa70467, 0x62580051, 0x00000000}},  //   rieb, _брег, síoc,\n  { {0x6e29021f, 0x60db011c, 0xb5fb0051, 0x00000000}},  //   sieb, _isum, _fhág,\n  { {0x7d1b010f, 0x7d093317, 0x2cbf006c, 0x00000000}},  //   szus, syes, stud_,\n  { {0xaa46189c, 0x00000000, 0x00000000, 0x00000000}},  //   ремл,   ,   ,\n  { {0xc9560a78, 0x2d8d0020, 0x6b9a12ec, 0x00000000}},  //   ртны, mbee_, batg,\n  { {0x6b9a001c, 0xb8ee02d2, 0x2d8d0066, 0x00000000}},  //   catg, _रह_, lbee_,\n  { {0x69df0065, 0x9f5e00b9, 0x2cad004a, 0x00000000}},  //   _faqe, _poté_, lred_,\n  { {0x78a901d9, 0x629e17f1, 0x645c00ab, 0x00000000}},  //   ševa, vspo, _shri,\n  { {0x645c0124, 0x9f5e009d, 0x14262cb4, 0x00000000}},  // [a700] _phri, _voté_, адам,\n  { {0x629e22b0, 0x389b01ce, 0x6d5901c3, 0x00000000}},  //   tspo, _שיינ, _mzwa,\n  { {0x60db3318, 0x81df0044, 0x032600ec, 0x00000000}},  //   _asum, তান_, јден,\n  { {0x629e00b5, 0x00e60069, 0x600f08e0, 0x00000000}},  //   rspo, ижен, _dømm,\n  { {0x22460ace, 0xdce00279, 0x629e0322, 0x00000000}},  //   rook_, yamı, sspo,\n  { {0xa2e60057, 0x6443016e, 0x629e0f0f, 0x00000000}},  //   _когд, čnic, pspo,\n  { {0xe2970057, 0xdce0005a, 0x22460ace, 0x00000000}},  //   _вас_, vamı, pook_,\n  { {0xadf40cad, 0x601400f6, 0x2cad086a, 0x00000000}},  //   спиш, _dàma, fred_,\n  { {0x6b9a04bd, 0x2cad003b, 0x6d590036, 0x00000000}},  //   tatg, gred_, _czwa,\n  { {0x61e0003b, 0x60c219cf, 0xbea603e8, 0x00000000}},  //   _haml, mtom, _важк,\n  { {0x337700b6, 0x6b9a0129, 0x69df0065, 0x00000000}},  //   יעים_, ratg, _paqe,\n  { {0x61e20047, 0x2cad0066, 0x6b9a0129, 0x00000000}},  //   ndol, bred_, satg,\n  { {0x61e00020, 0x63bc0107, 0x3e710091, 0x00000000}},  //   _maml, _ocrn, _išta_,\n  { {0x61e2021e, 0xbb840025, 0x3f9c006c, 0x00000000}},  //   hdol, _الغي, navu_,\n  { {0xd5bb0242, 0xdb1a3319, 0x298b1c4a, 0x00000000}},  //   кса_, retó, _испо_,\n  { {0xbafb0097, 0x24890093, 0x600f06ec, 0x00000000}},  //   _יהוש, tpam_, _rømm,\n  { {0x61e2018e, 0x81df0044, 0x799d0117, 0x00000000}},  // [a710] ddol, তাম_, masw,\n  { {0x3f9c04a9, 0x4ada0164, 0x6b98331a, 0x00000000}},  //   javu_, _बनाव, _jevg,\n  { {0xb5fb331b, 0x24890062, 0x2cad183b, 0x00000000}},  //   _diár, spam_, zred_,\n  { {0x799d331c, 0x61e20232, 0x27e101a2, 0x00000000}},  //   nasw, gdol, _hahn_,\n  { {0x9508026c, 0x69bc04da, 0x8467005e, 0x00000000}},  //   _پہلے_, ष्टी, _въве,\n  { {0x3f9c01c5, 0x600f08e0, 0x1e9529a1, 0x00000000}},  //   gavu_, _tømm, брир,\n  { {0x61e20026, 0x6d590036, 0x62580048, 0x00000000}},  //   bdol, _szwa, míon,\n  { {0x62580051, 0xed590a78, 0x60db0058, 0x00000000}},  //   líon, лой_, _tsum,\n  { {0xa3ab0754, 0x2cad331d, 0x3f9c0626, 0x00000000}},  //   _गया_, ured_, bavu_,\n  { {0x2cad00ab, 0x40590355, 0x62580051, 0x00000000}},  //   rred_, _صلاح_, níon,\n  { {0x9cf908b7, 0x81da0055, 0x8f550025, 0x00000000}},  //   েছেন_, ়ার_, _اناش,\n  { {0x2cad041a, 0xc3320104, 0x20050016, 0x00000000}},  //   pred_, לוי_, _holi_,\n  { {0xeb8e012b, 0x78a91e34, 0x6c850379, 0x00000000}},  //   _ни_, ševn, _التم,\n  { {0x200500f4, 0x99990027, 0x61e2014a, 0x00000000}},  //   _joli_, vosť_, zdol,\n  { {0x61e20adc, 0x62580048, 0x3a290045, 0x00000000}},  //   ydol, díon, _fmap_,\n  { {0x3f9c05fa, 0x2005013f, 0x60c2007f, 0x00000000}},  //   zavu_, _loli_, ytom,\n  { {0x2aa3005f, 0x32040058, 0x61e001a3, 0x00000000}},  // [a720] lıb_, _romy_, _raml,\n  { {0x61e001c4, 0x68fb009b, 0xd6cf00a1, 0x00000000}},  //   _saml, _עליה, بقہ_,\n  { {0xe80d03d7, 0x2aa3005f, 0xb5fb00c4, 0x00000000}},  //   _सकता_, nıb_, _viár,\n  { {0x60c2021e, 0x7afc09b0, 0x27e101a2, 0x00000000}},  //   ttom, ärti, _zahn_,\n  { {0x20050027, 0x81da0044, 0x61e200b4, 0x00000000}},  //   _boli_, ়াল_, rdol,\n  { {0x20050675, 0x60c200b0, 0x66061cd3, 0x00000000}},  //   _coli_, rtom, _hokk,\n  { {0x6ab602fb, 0x66060004, 0x60c20038, 0x00000000}},  //   _अमेर, _kokk, stom,\n  { {0x6b9801f6, 0x60c2031e, 0x2aa3006b, 0x00000000}},  //   _sevg, ptom, dıb_,\n  { {0x8fa602be, 0x20052cb2, 0x442a0022, 0x00000000}},  //   _газе, _foli_, _kmb_,\n  { {0xb5fb001d, 0x660608e0, 0xdbf000b9, 0x00000000}},  //   _khác, _lokk, _tříd,\n  { {0xe9f90822, 0x0dca01fb, 0x799d0173, 0x00000000}},  //   анні_, _були_, tasw,\n  { {0x6606009f, 0x9e6604b6, 0x786b01d5, 0x00000000}},  //   _nokk, _увед, _iżvi,\n  { {0x799d0093, 0xb4d701f5, 0x8c46142c, 0x00000000}},  //   rasw, _ाने_, _леде,\n  { {0x78a90107, 0x3d2b025a, 0xb87b000c, 0x00000000}},  //   ševo, _حتمی_, lvík,\n  { {0x799d000b, 0x66060007, 0xab68002b, 0x00000000}},  //   pasw, _bokk, _biżż,\n  { {0x442a120d, 0xd0fa01f5, 0xb5fb0051, 0x00000000}},  //   _amb_, ्हाण_, _sháb,\n  { {0x26c30059, 0x5399007c, 0x66060376, 0x00000000}},  // [a730] stjo_, ивая_, _dokk,\n  { {0x68ed1fe0, 0x7e7a00ab, 0xb367007c, 0x00000000}},  //   _irad, _outp, бъек,\n  { {0x68ed004f, 0x2005042e, 0x6258002a, 0x00000000}},  //   _hrad, _roli_, ríon,\n  { {0x09ab0055, 0x20050207, 0x3abb0049, 0x00000000}},  //   গ্রা, _soli_, רמאנ,\n  { {0xed46026c, 0x09e30055, 0x2aa3005f, 0x00000000}},  //   _آپ_, যাপা, zıb_,\n  { {0x2aa3005f, 0xa29502f0, 0x68ed0020, 0x00000000}},  //   yıb_, _магі, _mrad,\n  { {0x20050207, 0x2aa3006b, 0x59a90061, 0x00000000}},  //   _voli_, xıb_, कणार,\n  { {0xf2d200bd, 0x68ed331e, 0x62580051, 0x00000000}},  //   _קען_, _orad, níol,\n  { {0xee36008b, 0x20050006, 0xec760a7c, 0x00000000}},  //   ўны_, _toli_, опы_,\n  { {0x5ac9013b, 0x2aa3005f, 0x62580051, 0x00000000}},  //   алом_, tıb_, híol,\n  { {0x68ed047f, 0x78a90091, 0x7860331f, 0x00000000}},  //   _arad, ševl, növe,\n  { {0x68ed049c, 0x2aa3006b, 0xdd1e01dc, 0x00000000}},  //   _brad, rıb_, _síťo,\n  { {0x78600073, 0x6e2b3320, 0x7e7a00bb, 0x00000000}},  //   höve, _imgb, _zutp,\n  { {0x660604d8, 0x68ed1194, 0x78600010, 0x00000000}},  //   _sokk, _drad, köve,\n  { {0x442a002b, 0x66e300ed, 0xba3d0006, 0x00000000}},  //   _rmb_, мора, grįs,\n  { {0x68ed16ec, 0x78a41f9d, 0x2d9f01a2, 0x00000000}},  //   _frad, _tviv, naue_,\n  { {0x68ed0213, 0x64433321, 0x442a0093, 0x00000000}},  // [a740] _grad, čnin, _pmb_,\n  { {0xb5fb0082, 0x2d9f01a2, 0x00000000, 0x00000000}},  //   _phác, haue_,   ,\n  { {0x6606071b, 0x86460242, 0x59c10309, 0x00000000}},  //   _tokk, _множ, ष्कर,\n  { {0x3f850035, 0x4b4c0049, 0x625800f6, 0x00000000}},  //   _aflu_, נגאַ, cíol,\n  { {0x25a0083a, 0x10a31b49, 0x442a0b32, 0x00000000}},  //   mail_, дичн, _tmb_,\n  { {0x4aa9001c, 0xf503007e, 0xb5fb0011, 0x00000000}},  //   _किंव, _ўзро, _thác,\n  { {0x09b20044, 0x24800cb8, 0xdefa0930, 0x00000000}},  //   ট্যা, lqim_, рыл_,\n  { {0x614600ed, 0x6ca6041f, 0x2dd3005e, 0x00000000}},  //   _деба, орож, джър,\n  { {0x6258002a, 0xb87b000c, 0x09e30044, 0x00000000}},  //   níom, rvík, যামা,\n  { {0x9b6a08f3, 0x68ed0065, 0x25a00fff, 0x00000000}},  //   ишна_, _rrad, hail_,\n  { {0xa5bb02d5, 0x68ed0026, 0x24800065, 0x00000000}},  //   _imóv, _srad, hqim_,\n  { {0x68ed010a, 0xba2b0088, 0x6d5c006b, 0x00000000}},  //   _prad, ріод_, əran,\n  { {0xcd3604e8, 0x0e6903ec, 0x25a00051, 0x00000000}},  //   _براب, _اصلي_, dail_,\n  { {0x7c2a0218, 0x00000000, 0x00000000, 0x00000000}},  //   _umfr,   ,   ,\n  { {0x09d00055, 0xdb4f0088, 0x25a02801, 0x00000000}},  //   িয়া, _цю_, fail_,\n  { {0x7afc006c, 0x25a00048, 0xddc20036, 0x00000000}},  //   ärtu, gail_, _ukoń,\n  { {0x68ed0925, 0xd37b0265, 0x7c3a0048, 0x00000000}},  // [a750] _urad, аче_, ontr,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x25a0002a, 0x4cd30055, 0x7c3a010f, 0x00000000}},  //   bail_, তিযু, intr,\n  { {0x25a0002a, 0x9259007c, 0x00000000, 0x00000000}},  //   cail_, щает_,   ,\n  { {0xc5fa009b, 0x443a05ae, 0xf07500a1, 0x00000000}},  //   _הפרט, bnp_, سیاں_,\n  { {0xdb1a006c, 0x7e620288, 0x00000000, 0x00000000}},  //   letõ, _ahop,   ,\n  { {0xa19501fb, 0x82a401fc, 0x160f013d, 0x00000000}},  //   _навч, _оште, _सवार_,\n  { {0x7c3a008e, 0x09e30044, 0x00000000, 0x00000000}},  //   entr, যাডা,   ,\n  { {0x7a360e07, 0x81191023, 0x00000000, 0x00000000}},  //   nšte, _ужас_,   ,\n  { {0x4b250245, 0x00000000, 0x00000000, 0x00000000}},  //   змов,   ,   ,\n  { {0xc949009b, 0x00000000, 0x00000000, 0x00000000}},  //   _עמ_,   ,   ,\n  { {0x6eca006b, 0x7a360006, 0x25a0006b, 0x00000000}},  //   _məbl, kšte, xail_,\n  { {0x25a0028c, 0x7e6926e0, 0x7a360087, 0x00000000}},  //   vail_, mmep, jšte,\n  { {0x601d01aa, 0x7c940014, 0x25a000e0, 0x00000000}},  //   _fème, _آشنا, wail_,\n  { {0x81b30044, 0xe3b200a1, 0x601d000a, 0x00000000}},  //   জ্য_, ہرا_, _gème,\n  { {0x6e3b000c, 0xdb1a010e, 0x00000000, 0x00000000}},  //   nnub, tetö,   ,\n  { {0x25a0005d, 0xe9440bb6, 0x00000000, 0x00000000}},  // [a760] rail_, _ترغی,   ,\n  { {0x2d9d0343, 0x62580051, 0x25a03322, 0x00000000}},  //   _lewe_, ríom, sail_,\n  { {0x5186092b, 0x877b009b, 0xb77b009b, 0x00000000}},  //   пула, _לאיי, _לאיש,\n  { {0xdb1a006c, 0x2d9d01d6, 0x00000000, 0x00000000}},  //   petö, _newe_,   ,\n  { {0x3dc30055, 0xb5fb001d, 0x7760013f, 0x00000000}},  //   ্যাল, _khán, əmxa,\n  { {0x7e620498, 0x932602fd, 0x6e3b0009, 0x00000000}},  //   _shop, _فرزن, enub,\n  { {0xeab60055, 0x877b0049, 0x2d9d01d6, 0x00000000}},  //   _জন্ম, זאצי, _bewe_,\n  { {0x6604183a, 0x2d9d023a, 0x333b00b3, 0x00000000}},  //   njik, _cewe_, _התלמ,\n  { {0x2ba60224, 0x75243323, 0x2d9d0022, 0x00000000}},  //   jící_, nziz, _dewe_,\n  { {0x7c3a0035, 0xb5fb0011, 0x7e6210c5, 0x00000000}},  //   untr, _nhán, _whop,\n  { {0x81df0055, 0xfbcf00a1, 0xeee40014, 0x00000000}},  //   তার_, ھتی_, _تغذی,\n  { {0xa5bb004a, 0x2ca6009d, 0x00000000, 0x00000000}},  //   _ilóg, _tvod_,   ,\n  { {0x3f9e008d, 0x5e2500a1, 0x78a606a1, 0x00000000}},  //   _ketu_, _تعلق, gskv,\n  { {0x7afc0210, 0xb5fb0011, 0x7a36120f, 0x00000000}},  //   ärts, _chán, všte,\n  { {0x3f9e010a, 0x7bda0004, 0xddc80107, 0x00000000}},  //   _metu_, metu, _mudž,\n  { {0x3f9e09c4, 0x6604008d, 0x7bda006c, 0x00000000}},  //   _letu_, gjik, letu,\n  { {0x70bb0164, 0xd944003b, 0x00000000, 0x00000000}},  // [a770] _ईमेल, _пећи,   ,\n  { {0x7bda03b6, 0xa4e4007e, 0x7a3604eb, 0x00000000}},  //   netu, эўск, ršte,\n  { {0x7bda3324, 0x00000000, 0x00000000, 0x00000000}},  //   ietu,   ,   ,\n  { {0x7bda0004, 0x7a36003b, 0xe8d90082, 0x00000000}},  //   hetu, pšte, _ngừ_,\n  { {0xddc83325, 0x7bda01a3, 0xd00900ec, 0x00000000}},  //   _budž, ketu, желе_,\n  { {0x2d9d0007, 0x7bda0023, 0x6eca006b, 0x00000000}},  //   _sewe_, jetu, _təbl,\n  { {0x44330142, 0x7bda048f, 0x6e3b011c, 0x00000000}},  //   mix_, detu, tnub,\n  { {0x2bcf0061, 0xcc890745, 0x31c40d15, 0x00000000}},  //   त्ना, обие_, _псув,\n  { {0x7e690039, 0x7bda0035, 0x442100e0, 0x00000000}},  //   rmep, fetu, ohh_,\n  { {0x4433218e, 0x2d9d000b, 0x7bda001a, 0x00000000}},  //   nix_, _wewe_, getu,\n  { {0xa3cf0309, 0x6e3b00e0, 0x2d9d01c3, 0x00000000}},  //   व्य_, pnub, _tewe_,\n  { {0x44210760, 0x3f9e000b, 0x44330066, 0x00000000}},  //   hhh_, _zetu_, hix_,\n  { {0x3f9e000b, 0x64430091, 0x7bda033b, 0x00000000}},  //   _yetu_, čnij, betu,\n  { {0x7bda0f2c, 0x78a600ea, 0xdb1a00c4, 0x00000000}},  //   cetu, rskv, tetô,\n  { {0x59c6001c, 0x92c10044, 0x44330860, 0x00000000}},  //   _वापर, ্টু_, dix_,\n  { {0x44333326, 0x7524002d, 0x9655003b, 0x00000000}},  //   eix_, tziz, еђуј,\n  { {0xb5fb001d, 0x64a3007e, 0x00000000, 0x00000000}},  // [a780] _thán, ката,   ,\n  { {0x661d1d44, 0xdb0100c4, 0x443301de, 0x00000000}},  //   _elsk, valê, gix_,\n  { {0x2bcf0183, 0x9f450065, 0x7bc30145, 0x00000000}},  //   त्या, _dalë_, _mcnu,\n  { {0x2240006c, 0xc693009b, 0x4421033b, 0x00000000}},  //   õik_, _שאר_, ahh_,\n  { {0x7bda0020, 0x9f450065, 0xb5fb0048, 0x00000000}},  //   yetu, _falë_, _mhál,\n  { {0x68e40418, 0xd01001b7, 0xd007003b, 0x00000000}},  //   _msid, طلب_, деље_,\n  { {0x7bda01ee, 0xc3340049, 0xb87b000c, 0x00000000}},  //   vetu, _װוּ_, lvít,\n  { {0x78a9037e, 0x3f9e000b, 0x9f4501aa, 0x00000000}},  //   ševi, _wetu_, _malè_,\n  { {0x7bda3327, 0xed57012b, 0x7bc33328, 0x00000000}},  //   tetu, моћ_, _bcnu,\n  { {0x69c412a3, 0x81da0044, 0xf063007e, 0x00000000}},  //   _acie, ়াও_, _акуп,\n  { {0x83b7009b, 0xaa59312f, 0x00000000, 0x00000000}},  //   ופיע_, зину_,   ,\n  { {0xdd900380, 0x7bda006c, 0x200c00ca, 0x00000000}},  //   _صوت_, setu, _hodi_,\n  { {0x200c0ba3, 0x00000000, 0x00000000, 0x00000000}},  //   _kodi_,   ,   ,\n  { {0x64430059, 0x200c0263, 0x44332067, 0x00000000}},  //   čnik, _jodi_, xix_,\n  { {0x200c0a19, 0x45d500ed, 0xf65300a1, 0x00000000}},  //   _modi_, новс, نئر_,\n  { {0x200c31a6, 0x59c6006e, 0x786000f8, 0x00000000}},  //   _lodi_, _वायर, röva,\n  { {0x69dd0004, 0x443301eb, 0x9f450023, 0x00000000}},  // [a790] mese, tix_, _palë_,\n  { {0x69dd001f, 0x200c018e, 0xc8670379, 0x00000000}},  //   lese, _nodi_, _تطبي,\n  { {0x4433005f, 0x81e80044, 0x7a3601ee, 0x00000000}},  //   rix_, বান_, lšta,\n  { {0x201e3329, 0xa29401fb, 0x44210145, 0x00000000}},  //   _alti_, таці, shh_,\n  { {0x629c0562, 0x44330253, 0x78bd0b32, 0x00000000}},  //   _ewro, pix_, nusv,\n  { {0x85740099, 0x649a00b6, 0x200c2f25, 0x00000000}},  //   _шлях, _מישה, _codi_,\n  { {0x63a50169, 0x69dd0004, 0x7a36016c, 0x00000000}},  //   mahn, kese, hšta,\n  { {0x261c002a, 0x7a360006, 0x63a504cb, 0x00000000}},  //   _líon_, kšta, lahn,\n  { {0x69dd0119, 0x61fb0058, 0x629c0036, 0x00000000}},  //   dese, _inul, _zwro,\n  { {0x69c4028a, 0x200c0016, 0x63a504be, 0x00000000}},  //   _scie, _godi_, nahn,\n  { {0x69dd00ea, 0x61e9006c, 0x61fb0039, 0x00000000}},  //   fese, _kael, _knul,\n  { {0x69dd0090, 0x320d0007, 0x20070295, 0x00000000}},  //   gese, _joey_, ljni_,\n  { {0x61e9000b, 0xdb010263, 0x9f4501aa, 0x00000000}},  //   _mael, zalè, _salè_,\n  { {0xfaa501fb, 0x9f4501aa, 0xe61f03ad, 0x00000000}},  //   _зако, _palè_, _alô_,\n  { {0x8c1a00b6, 0x63a52755, 0x69dd0144, 0x00000000}},  //   _מוסי, dahn, bese,\n  { {0x69dd0314, 0x9f4501aa, 0x85b5012b, 0x00000000}},  //   cese, _valè_, кључ,\n  { {0xb4660ae0, 0x2edc007d, 0x261c0051, 0x00000000}},  // [a7a0] екал, _मन्त, _fíon_,\n  { {0x61fb332a, 0x6fd3011f, 0x7bc1000c, 0x00000000}},  //   _anul, nıcı, nglu,\n  { {0x23c60164, 0x3a20014a, 0x443104b7, 0x00000000}},  //   र्गद, _klip_, _dmz_,\n  { {0x64552d3f, 0x2bcf024c, 0x1a9a0049, 0x00000000}},  //   _ekzi, त्ता, פינע,\n  { {0x200c2a1a, 0x601d01aa, 0x61e90146, 0x00000000}},  //   _podi_, _sèma, _dael,\n  { {0x601d01aa, 0x69dd2258, 0x63a50022, 0x00000000}},  //   _pèma, zese, cahn,\n  { {0x69dd0010, 0x200c0059, 0x6fd3006b, 0x00000000}},  //   yese, _vodi_, dıcı,\n  { {0x61e9002a, 0xadf406e3, 0x6d590036, 0x00000000}},  //   _gael, тпиш, _bywa,\n  { {0x69dd0010, 0x59a703d7, 0x200c0197, 0x00000000}},  //   vese, _ख़बर, _todi_,\n  { {0x69dd010f, 0x7bc100f8, 0x09a90061, 0x00000000}},  //   wese, gglu, कण्य,\n  { {0x69dd0047, 0x3a2000b4, 0x600f0190, 0x00000000}},  //   tese, _blip_, _tømr,\n  { {0x3a2002d4, 0xf2d3007b, 0x78bd03b6, 0x00000000}},  //   _clip_, נער_, tusv,\n  { {0x69dd02d5, 0x63a504be, 0x09e30044, 0x00000000}},  //   rese, yahn, যালা,\n  { {0x69dd0881, 0x7a360006, 0x9f4c15b3, 0x00000000}},  //   sese, ršta, _endå_,\n  { {0x69dd0010, 0xc221006e, 0x44310087, 0x00000000}},  //   pese, _मतलब_, _rmz_,\n  { {0x7a36332b, 0x44310020, 0x3a20332c, 0x00000000}},  //   pšta, _smz_, _glip_,\n  { {0xdb0101ca, 0x63a50145, 0x3e4501c5, 0x00000000}},  // [a7b0] valé, tahn, nēta_,\n  { {0x8707007e, 0x00000000, 0x00000000, 0x00000000}},  //   _зяме,   ,   ,\n  { {0xa85800b6, 0x08f804e1, 0x61e918bd, 0x00000000}},  //   _איזה_, _قریب_, _pael,\n  { {0x63a50085, 0x92b40025, 0x6fd30095, 0x00000000}},  //   sahn, احلا, zıcı,\n  { {0xf8bf009d, 0x6fd3005d, 0xc0e5007c, 0x00000000}},  //   nué_, yıcı, толк,\n  { {0x61e90246, 0xe0570167, 0xdb010285, 0x00000000}},  //   _wael, ریات_, salé,\n  { {0x660f0209, 0x6d5901c3, 0x00000000, 0x00000000}},  //   _kock, _sywa,   ,\n  { {0x660f00f8, 0xe8d9001d, 0x9258030d, 0x00000000}},  //   _jock, _ngữ_, _заст_,\n  { {0x6fd301df, 0x00000000, 0x00000000, 0x00000000}},  //   tıcı,   ,   ,\n  { {0x660f1f59, 0xea8900e2, 0x00000000, 0x00000000}},  //   _lock, мбол_,   ,\n  { {0x7bc100f8, 0xab291023, 0x6fd30180, 0x00000000}},  //   rglu, фона_, rıcı,\n  { {0xdd95008b, 0x8d870401, 0x660f06f2, 0x00000000}},  //   _рады, _чужд, _nock,\n  { {0xf8bf332d, 0x261c0051, 0x3e4501c5, 0x00000000}},  //   gué_, _díol_, cēta_,\n  { {0x6eca013f, 0x00000000, 0x00000000, 0x00000000}},  //   _səbi,   ,   ,\n  { {0xc7a301f9, 0x00000000, 0x00000000, 0x00000000}},  //   риск,   ,   ,\n  { {0xceb2012f, 0xf8bf009d, 0x6eca006b, 0x00000000}},  //   ייל_, bué_, _qəbi,\n  { {0x69d6332e, 0x45831b0b, 0x00000000, 0x00000000}},  // [a7c0] _ibye, ргув,   ,\n  { {0x99890059, 0x00000000, 0x00000000, 0x00000000}},  //   _imaš_,   ,   ,\n  { {0x6eca005f, 0xa76601e1, 0x3e450089, 0x00000000}},  //   _təbi, _шкод, zēta_,\n  { {0x68f60030, 0x6fc40061, 0x00000000, 0x00000000}},  //   _kryd, _राहू,   ,\n  { {0x0cbc0055, 0x2cbf006c, 0xa3cf0061, 0x00000000}},  //   _অন্ত, juud_, व्ह_,\n  { {0x09d60055, 0x9053008b, 0x7a360006, 0x00000000}},  //   _তোমা, авіц, kšto,\n  { {0x69d619ab, 0x9e3402dc, 0x660f1cbf, 0x00000000}},  //   _obye, лекч, _yock,\n  { {0x036701e0, 0x2bcf007d, 0x6ced006e, 0x00000000}},  //   _риск_, त्सा, जिंग_,\n  { {0x81e80055, 0x2486002a, 0x7860332f, 0x00000000}},  //   বাদ_, íomh_, tövl,\n  { {0x2bc20061, 0x69d6000a, 0x3e450089, 0x00000000}},  //   _शाळा, _abye, rēta_,\n  { {0x0c730025, 0x6d440027, 0x78ad0538, 0x00000000}},  //   جديد, _žiad, _svav,\n  { {0xf8bf00f4, 0x68f6022c, 0x00000000, 0x00000000}},  //   tué_, _bryd,   ,\n  { {0x1bd40364, 0x6e220032, 0x00000000, 0x00000000}},  //   _боля, _ilob,   ,\n  { {0x660f0039, 0xd9180057, 0x69d600de, 0x00000000}},  //   _sock, тью_, _ebye,\n  { {0x660f00ab, 0xf8bf00d6, 0x00000000, 0x00000000}},  //   _pock, sué_,   ,\n  { {0xd5b801ff, 0x6281009d, 0x00000000, 0x00000000}},  //   ксу_, _éloi,   ,\n  { {0x2bcf0183, 0xf8bf3106, 0x68f60030, 0x00000000}},  // [a7d0] त्वा, qué_, _gryd,\n  { {0x6e220129, 0xb5fb0051, 0x00000000, 0x00000000}},  //   _llob, _mhái,   ,\n  { {0xe7ec006e, 0xe2980088, 0x9f450026, 0x00000000}},  //   _छोटा_, ває_, _calì_,\n  { {0x9f450026, 0x00000000, 0x00000000, 0x00000000}},  //   _dalì_,   ,   ,\n  { {0x25a92e34, 0x6d4e010f, 0x9f4c0026, 0x00000000}},  //   maal_, ßbal, _indù_,\n  { {0x1ec909de, 0x3f69003b, 0xe2930084, 0x00000000}},  //   елки_, нило_, _نذر_,\n  { {0x6e220066, 0x7a26000c, 0x1ea80014, 0x00000000}},  //   _blob, _hóte, نايي_,\n  { {0x25a93330, 0xdb0300f4, 0xa3cf0164, 0x00000000}},  //   naal_, _fenê, व्र_,\n  { {0xb5fb0051, 0xf53f0056, 0xacf50070, 0x00000000}},  //   _chái, _idås_, اسبت,\n  { {0xdab9008b, 0x25a901bb, 0xb5fb0051, 0x00000000}},  //   нымі_, haal_, _dhái,\n  { {0xa9a60a85, 0x6e220253, 0xe807013d, 0x00000000}},  //   линд, _flob, शाना_,\n  { {0xb5fb002a, 0x68f6018e, 0x7a360006, 0x00000000}},  //   _fhái, _pryd, ršto,\n  { {0x25a90a2a, 0xdb013331, 0xb5fb0048, 0x00000000}},  //   daal_, malí, _ghái,\n  { {0x0136007b, 0x68f60007, 0x60db0455, 0x00000000}},  //   אָלט_, _vryd, _mpum,\n  { {0x186705f6, 0x2cad3332, 0xa3aa013d, 0x00000000}},  //   уари_, lsed_, _गजब_,\n  { {0x2bcf0201, 0x68f60016, 0x25a90112, 0x00000000}},  //   त्रा, _tryd, gaal_,\n  { {0x05663333, 0x2cad00ab, 0x30be0044, 0x00000000}},  // [a7e0] уван, nsed_, _ইন্স,\n  { {0x389b00a3, 0x442300f6, 0xb97b01ce, 0x00000000}},  //   _ריינ, _clj_, _אנפי,\n  { {0x3ce503d7, 0x81e80055, 0xe2970121, 0x00000000}},  //   _जैसे_, বাস_, гах_,\n  { {0x69c604cb, 0x2cad006c, 0xa50a0fd8, 0x00000000}},  //   ngke, ksed_, _зема_,\n  { {0xc05a008b, 0x9f4500d4, 0x3e4c00b9, 0x00000000}},  //   нік_, _dalí_, něte_,\n  { {0x6e2204a9, 0xd0071281, 0x2d8f01c3, 0x00000000}},  //   _slob, лече_, _afge_,\n  { {0x44440073, 0x6e2208f0, 0x942301fc, 0x00000000}},  //   mn_, _plob, _умре,\n  { {0x443a066b, 0x44440495, 0x201c10c1, 0x00000000}},  //   lip_, ln_, skvi_,\n  { {0x4444028a, 0xdb0800c4, 0xa5bb00f6, 0x00000000}},  //   on_, cadê, _olón,\n  { {0x44441446, 0x443a066b, 0x61e2006c, 0x00000000}},  //   nn_, nip_, leol,\n  { {0x44440e2d, 0x2cad00ab, 0xe45701ce, 0x00000000}},  //   in_, ased_, רייט_,\n  { {0xc333019b, 0x6eca005f, 0x443a3334, 0x00000000}},  //   מות_, _qəbu, hip_,\n  { {0x443a3335, 0x25a90abf, 0xdddb005d, 0x00000000}},  //   kip_, vaal_, lmuş,\n  { {0x44443336, 0x443a01aa, 0x8c431e03, 0x00000000}},  //   jn_, jip_, _лече,\n  { {0x25a90100, 0x7c3a1ab0, 0x61e20056, 0x00000000}},  //   taal_, mitr, keol,\n  { {0x44440f3c, 0x5eb90055, 0x6eca006b, 0x00000000}},  //   en_, _আহমে, _həbs,\n  { {0x61e2011f, 0x44443337, 0x25a92b6c, 0x00000000}},  // [a7f0] deol, fn_, raal_,\n  { {0x44440365, 0x7c3a0016, 0x25a92667, 0x00000000}},  //   gn_, nitr, saal_,\n  { {0x25a901bb, 0x60db0420, 0x2d8d0ace, 0x00000000}},  //   paal_, _spum, ycee_,\n  { {0x7c3a0087, 0x2c6b0030, 0x7aea05f0, 0x00000000}},  //   hitr, møde_, _msft,\n  { {0x44440690, 0x9f4700b9, 0x7c3a0052, 0x00000000}},  //   bn_, rdní_, kitr,\n  { {0x660d0004, 0xb5fb0211, 0x443a12d9, 0x00000000}},  //   ljak, _cháv, cip_,\n  { {0xdb031923, 0x9294007e, 0x26d1002d, 0x00000000}},  //   _genè, _гасц, ntzo_,\n  { {0xed590ecd, 0x6457049a, 0x61e20051, 0x00000000}},  //   кой_, loxi, ceol,\n  { {0xac8501f9, 0x0c2500ed, 0x10d805f3, 0x00000000}},  //   јгол, имин, _مبلغ_,\n  { {0x2cad2b35, 0x660d0103, 0x7c3a007f, 0x00000000}},  //   rsed_, hjak, gitr,\n  { {0x7f8406ea, 0x81e80055, 0x2cad0038, 0x00000000}},  //   _المن, বার_, ssed_,\n  { {0x26c3008e, 0xc8690104, 0xda79007e, 0x00000000}},  //   dujo_, _חן_, ляў_,\n  { {0xeb8e1ef9, 0x4444055f, 0x660d3338, 0x00000000}},  //   _ми_, yn_, djak,\n  { {0x63a700b9, 0x07a303e0, 0x7c3a009d, 0x00000000}},  //   _nejn, жарн, citr,\n  { {0x444402cc, 0x64570035, 0x81ab0044, 0x00000000}},  //   vn_, doxi, _খান_,\n  { {0xe8fa045e, 0x44443339, 0x660d04be, 0x00000000}},  //   _али_, wn_, gjak,\n\n  { {0x6287028c, 0x7d1b0169, 0xddc9011f, 0x00000000}},  // [a800] _aujo, nyus, zleş,\n  { {0x4444333a, 0x26c30211, 0x62870035, 0x00000000}},  //   un_, bujo_, _bujo,\n  { {0x4444001f, 0x61e200b0, 0xdb03167d, 0x00000000}},  //   rn_, teol, _bené,\n  { {0x4444333b, 0xe7d20164, 0x62870006, 0x00000000}},  //   sn_, द्रप, _dujo,\n  { {0x64570052, 0x4444184b, 0x61e20048, 0x00000000}},  //   boxi, pn_, reol,\n  { {0x443a008d, 0xe29600ed, 0x61e20051, 0x00000000}},  //   qip_, _враќ, seol,\n  { {0x21200aeb, 0x60c20f38, 0x6e29333c, 0x00000000}},  //   ših_, suom, fheb,\n  { {0xfe6f13d9, 0xddc9011f, 0xdb03029d, 0x00000000}},  //   ودي_, rleş, _gené,\n  { {0x7c2807be, 0x394d0046, 0x9c46004c, 0x00000000}},  //   thdr, żesz_, ихол,\n  { {0xdb030010, 0x7ed60088, 0xe8d90082, 0x00000000}},  //   _zené, _відч, _ngỡ_,\n  { {0x752d13f0, 0x62800924, 0x443800ca, 0x00000000}},  //   zzaz, _kimo, _mmr_,\n  { {0xdd8f01d8, 0x6cd600a1, 0x7c3a0006, 0x00000000}},  //   _قوم_, _نقصا, sitr,\n  { {0x7c940054, 0x62800b41, 0x940c005f, 0x00000000}},  //   _التص, _mimo, şlər_,\n  { {0x44380133, 0x00000000, 0x00000000, 0x00000000}},  //   _nmr_,   ,   ,\n  { {0xb5a7333d, 0x63a70059, 0x660d333e, 0x00000000}},  //   ирай, _rejn, tjak,\n  { {0x645c333f, 0x4b7b061e, 0x6d5c0676, 0x00000000}},  //   _akri, _באוו, ğraf,\n  { {0x69cd00f6, 0x9f450161, 0x63a70a0f, 0x00000000}},  // [a810] _icae, _malá_, _pejn,\n  { {0x660d0039, 0x7bc82315, 0x62870129, 0x00000000}},  //   sjak, ngdu, _pujo,\n  { {0x2bd80061, 0xdb031db2, 0x62803340, 0x00000000}},  //   ब्या, _pené, _bimo,\n  { {0x628705fa, 0x645c01aa, 0x44380145, 0x00000000}},  //   _vujo, _ekri, _emr_,\n  { {0x62800207, 0x14f4007e, 0x2eec01b1, 0x00000000}},  //   _dimo, _дзяў, _asdf_,\n  { {0x7a26056f, 0x09e30044, 0xb97c00a3, 0x00000000}},  //   _móta, যাটা, דנדי,\n  { {0x6e2900bb, 0xdb03008e, 0x00000000, 0x00000000}},  //   theb, _tené,   ,\n  { {0xf2d200b3, 0x7c38016c, 0x62800032, 0x00000000}},  //   _מעל_, _amvr, _gimo,\n  { {0x7a260051, 0x6e29127d, 0xdb010010, 0x00000000}},  //   _nóta, rheb, dalá,\n  { {0x40840265, 0xf8bf0181, 0x62800036, 0x00000000}},  //   _футб, dré_, _zimo,\n  { {0x682b02b9, 0x44210518, 0xdce701f6, 0x00000000}},  //   _müdd, ikh_, ımız,\n  { {0x6eca005f, 0xdb010010, 0xf8bf00d4, 0x00000000}},  //   _təbr, galá, fré_,\n  { {0xc9560057, 0xf8bf00f4, 0x7a360062, 0x00000000}},  //   стны, gré_, nšti,\n  { {0x765d2900, 0x2cbf0022, 0x00000000, 0x00000000}},  //   _aksy, mrud_,   ,\n  { {0xd62a1447, 0x68ed3341, 0xf8bf06c2, 0x00000000}},  //   гове_, _esad, aré_,\n  { {0xf8bf0161, 0x7a360006, 0x7afc0030, 0x00000000}},  //   bré_, kšti, ærte,\n  { {0xcc88001d, 0x62800207, 0xf8bf00f4, 0x00000000}},  // [a820] _lớn_, _rimo, cré_,\n  { {0x601d00f6, 0xb4d801f5, 0x00000000, 0x00000000}},  //   _fèmi, _ाही_,   ,\n  { {0x644b01cc, 0x22462042, 0xb5fb0048, 0x00000000}},  //   égia, tnok_, _chás,\n  { {0xd2590cf2, 0x443800bb, 0x00000000, 0x00000000}},  //   аці_, _wmr_,   ,\n  { {0x25a0027e, 0x62800b33, 0x09e30044, 0x00000000}},  //   mbil_, _vimo, যাচা,\n  { {0x20b9008b, 0x645c00e7, 0x25a0070d, 0x00000000}},  //   рыць_, _ukri, lbil_,\n  { {0x62800263, 0xe29700ed, 0xaf03007e, 0x00000000}},  //   _timo, _гас_, зчык,\n  { {0x25a000f8, 0x3f850288, 0x00000000, 0x00000000}},  //   nbil_, _eglu_,   ,\n  { {0xc5f3009b, 0xb53b0049, 0x00000000, 0x00000000}},  //   לדה_, ָגיש,   ,\n  { {0xf8bf00f4, 0x2d9f0026, 0x09d60044, 0x00000000}},  //   vré_, abue_, _তোলা,\n  { {0xdb010047, 0xddc9145e, 0x7a26077b, 0x00000000}},  //   talá, smeš, _sóta,\n  { {0x5d860054, 0xf8bf00f4, 0x2cbf0190, 0x00000000}},  //   _الإل, tré_, brud_,\n  { {0xfdf7009b, 0x44210020, 0xf8bf0666, 0x00000000}},  //   _לצאת_, ykh_, uré_,\n  { {0xf8bf00f4, 0x7a2605f4, 0x601d01aa, 0x00000000}},  //   rré_, _vóta, _pèmi,\n  { {0xdc3b0049, 0x501b009b, 0x6fda013d, 0x00000000}},  //   _געגר, נולו, प्यू,\n  { {0xe8d9001d, 0x7e910089, 0x682b01a2, 0x00000000}},  //   _ngủ_, _jāpa, _südd,\n  { {0x68ed3342, 0x2bcf0309, 0xb5fb0051, 0x00000000}},  // [a830] _usad, त्का, _shás,\n  { {0x44273343, 0x3ce0007d, 0xfa890082, 0x00000000}},  //   ón_, _कहने_, _mẫn_,\n  { {0xfa890011, 0x3a2900c7, 0x25a00066, 0x00000000}},  //   _lẫn_, _klap_, bbil_,\n  { {0xa5f914dd, 0x9259007c, 0x00000000, 0x00000000}},  //   _тему_, шает_,   ,\n  { {0x7a360166, 0x44210022, 0x00000000, 0x00000000}},  //   ušti, pkh_,   ,\n  { {0xd5bf0089, 0x7a360006, 0xb5fb0048, 0x00000000}},  //   žādu_, ršti, _thás,\n  { {0xb4e9013d, 0x00000000, 0x00000000, 0x00000000}},  //   _मनु_,   ,   ,\n  { {0x7a36037e, 0x2cbf00f6, 0xd2640089, 0x00000000}},  //   pšti, trud_, tiņš_,\n  { {0x814500a1, 0x9f5e0129, 0xc0cb00e2, 0x00000000}},  //   _بچان, _botó_, _љубе_,\n  { {0xfa89001d, 0x5ba90aed, 0x2ca901d5, 0x00000000}},  //   _dẫn_, шком_, _ħadd_,\n  { {0xcb690256, 0x7d04002b, 0x00000000, 0x00000000}},  //   ране_, _ġise,   ,\n  { {0x3a290145, 0x2ca60173, 0x248300bb, 0x00000000}},  //   _clap_, _fwod_, _lijm_,\n  { {0x9f5e0010, 0x9f4500f6, 0x224d0023, 0x00000000}},  //   _fotó_, _balç_, _mjek_,\n  { {0x30790049, 0xa5bb000c, 0x9f4500f6, 0x00000000}},  //   יאָנ, _flók, _calç_,\n  { {0x4b790049, 0x224d0093, 0x98ab0089, 0x00000000}},  //   _דאַו, _ojek_, ājās_,\n  { {0xb5fb0051, 0x20050045, 0x682b01a2, 0x00000000}},  //   _shár, _lnli_, _rüde,\n  { {0xa70a0055, 0x25a03344, 0x3ea00166, 0x00000000}},  // [a840] রনেম_, rbil_, ćiti_,\n  { {0x25a03345, 0x7d040051, 0xa6e604dd, 0x00000000}},  //   sbil_, _áise, _джол,\n  { {0x248b00f6, 0x3cef012d, 0x25ab02d4, 0x00000000}},  //   _eucm_, _lsgv_, _fecl_,\n  { {0x20d2001a, 0x7a26000c, 0x00000000, 0x00000000}},  //   tâi_, _móto,   ,\n  { {0x9f5e0026, 0x3e450089, 0x00000000, 0x00000000}},  //   _notò_, cēti_,   ,\n  { {0x443e0010, 0x26080061, 0x33d503e8, 0x00000000}},  //   _öt_, हावी_, _ніст,\n  { {0x9f4c3346, 0x73f90049, 0x09b00044, 0x00000000}},  //   _andò_, _פּשו, _কানা,\n  { {0xdb0301dc, 0x629e0943, 0x00000000, 0x00000000}},  //   _cení, mppo,   ,\n  { {0xdb0300b9, 0x629e00b0, 0xecfa0044, 0x00000000}},  //   _dení, lppo, েন্স_,\n  { {0xfa89001d, 0xbfc301fc, 0x2a600022, 0x00000000}},  //   _vẫn_, _обук, _akib_,\n  { {0x7e910089, 0x60c20190, 0x442a0133, 0x00000000}},  //   _tāpa, lrom, _mlb_,\n  { {0x2d92011f, 0xed5a0153, 0x0dc700c0, 0x00000000}},  //   _üye_, _кое_, _души_,\n  { {0x442a01c3, 0xf1b3009b, 0xe8070309, 0x00000000}},  //   _olb_, וסר_, शाला_,\n  { {0xe8d90011, 0x442a0059, 0xdb08013e, 0x00000000}},  //   _ngụ_, _nlb_, ladí,\n  { {0x261c0195, 0x60c201ca, 0x5694007e, 0x00000000}},  //   _níos_, hrom, даст,\n  { {0x442a001a, 0x60c20428, 0x682b006b, 0x00000000}},  //   _alb_, krom, _büdc,\n  { {0x98be001a, 0x6b8d006b, 0x00000000, 0x00000000}},  // [a850] ătă_, _şagi,   ,\n  { {0x442a001d, 0xf36700ed, 0x3e450089, 0x00000000}},  //   _clb_, отен, rēti_,\n  { {0x7afa001c, 0x261c0051, 0x20050544, 0x00000000}},  //   nvtt, _cíos_, _rnli_,\n  { {0x60c20019, 0x9f4c00d4, 0x442a2828, 0x00000000}},  //   from, _cadí_, _elb_,\n  { {0x2608007d, 0x09b00044, 0x60c200b4, 0x00000000}},  //   हारी_, _কামা, grom,\n  { {0xd3e30167, 0x629800c4, 0x442a0009, 0x00000000}},  //   _تقسی, ívoc, _glb_,\n  { {0xd00e0054, 0xdb0300b9, 0x224d0030, 0x00000000}},  //   الى_, _pení, _tjek_,\n  { {0x3e61000c, 0x9f470023, 0x92581001, 0x00000000}},  //   jótt_, lenë_, _даст_,\n  { {0x60c2016b, 0xdb03008e, 0xa5bb0051, 0x00000000}},  //   crom, _vení, _clói,\n  { {0x6fd201f5, 0x98a20036, 0x1fa70121, 0x00000000}},  //   _सायं, czkę_, _фраг,\n  { {0xdb0315ab, 0xa3dd03d7, 0x98b00091, 0x00000000}},  //   _tení, थ्य_, đača_,\n  { {0x9f5e0197, 0xdb0806c2, 0x00000000, 0x00000000}},  //   _totò_, cadí,   ,\n  { {0xdb0a1259, 0x6fd20164, 0x78720190, 0x00000000}},  //   _lefè, _सामं, hæve,\n  { {0x3ce0013d, 0x261c0051, 0xfe7900b9, 0x00000000}},  //   _कहते_, _níor_, lmů_,\n  { {0x44ed0428, 0x09b00044, 0xdbc6010e, 0x00000000}},  //   _až_, _কাঠা, töök,\n  { {0x261c0211, 0x442a3347, 0xf8bf0010, 0x00000000}},  //   _ríos_, _slb_, gzés_,\n  { {0x261c002a, 0x442a1e89, 0xdb180173, 0x00000000}},  // [a860] _síos_, _plb_, _advè,\n  { {0x29000181, 0xb46300ed, 0x7a26000c, 0x00000000}},  //   _iria_, екул, _mótm,\n  { {0xf8bf0010, 0x38c2000c, 0xdcf4016c, 0x00000000}},  //   szét_, _færð_, _đači,\n  { {0x60c20010, 0x7aba00b6, 0xcc880011, 0x00000000}},  //   trom, מצעו, _sớm_,\n  { {0x26d80555, 0x261c0051, 0xdb0300f6, 0x00000000}},  //   ltro_, _fíor_, _lenà,\n  { {0x261c0b51, 0x442a03be, 0x00000000, 0x00000000}},  //   _tíos_, _ulb_,   ,\n  { {0xdb083348, 0x60c20944, 0x645e0cff, 0x00000000}},  //   tadí, srom, mopi,\n  { {0x682b027d, 0x11da0025, 0x60c2016e, 0x00000000}},  //   _müda, _دورة_, prom,\n  { {0xdb080161, 0x26ca00e0, 0xfa890082, 0x00000000}},  //   radí, hubo_, _dẫm_,\n  { {0x628e3349, 0x26d80161, 0x645e0052, 0x00000000}},  //   _kubo, ktro_, nopi,\n  { {0x0d860c96, 0x29000207, 0xdb080181, 0x00000000}},  //   _елен, _aria_, dadã,\n  { {0x2900000a, 0xdb0300c4, 0x628e22dc, 0x00000000}},  //   _bria_, _senã, _mubo,\n  { {0x628e011c, 0x29000181, 0x26d80197, 0x00000000}},  //   _lubo, _cria_, etro_,\n  { {0x629c334a, 0xb8f502d2, 0x7d1d0cba, 0x00000000}},  //   _otro, _हम_, ässe,\n  { {0x629c06be, 0x45d500ed, 0x645e1712, 0x00000000}},  //   _ntro, мовс, dopi,\n  { {0x2900334b, 0x3e450089, 0x7e62002b, 0x00000000}},  //   _fria_, bētu_, _jkop,\n  { {0x629c0ebc, 0x7e620020, 0xf8bf0010, 0x00000000}},  // [a870] _atro, _mkop, rzés_,\n  { {0x628e1163, 0x69dd00bb, 0x44ed2c1b, 0x00000000}},  //   _bubo, lfse, _vž_,\n  { {0x41d1013d, 0x26ca334c, 0x628e0b33, 0x00000000}},  //   _हादस, cubo_, _cubo,\n  { {0x628e0091, 0x237400f3, 0x00000000, 0x00000000}},  //   _dubo, رالح,   ,\n  { {0x44ed334d, 0x7a36016c, 0xdb0a00f6, 0x00000000}},  //   _už_, oštr, _defé,\n  { {0x4425018e, 0x23c3028c, 0x9f470161, 0x00000000}},  //   _ôl_, _déjà_, lené_,\n  { {0x81e80044, 0x3e4501c5, 0x00000000, 0x00000000}},  //   বাজ_, zētu_,   ,\n  { {0x9f470027, 0x13b20044, 0xdb030161, 0x00000000}},  //   nené_, _চায়, _nená,\n  { {0xdb011994, 0x628e0253, 0x61eb00ea, 0x00000000}},  //   mblé, _zubo, megl,\n  { {0x09c60061, 0x4b250088, 0x61eb0036, 0x00000000}},  //   वल्य, дмов, legl,\n  { {0x69dd0d33, 0x68e40905, 0x60cb0058, 0x00000000}},  //   ffse, _spid, lugm,\n  { {0x2574009f, 0x29000390, 0x61eb1ef5, 0x00000000}},  //   _júlí_, _pria_, negl,\n  { {0x682b050d, 0x645e000b, 0x9f4706b8, 0x00000000}},  //   _süda, yopi, dené_,\n  { {0x3e45001e, 0x26d80207, 0x66e60121, 0x00000000}},  //   rētu_, ttro_, мога,\n  { {0x645e11e4, 0x68300039, 0x2ba3007d, 0x00000000}},  //   vopi, _rädd, _ख्या,\n  { {0x29000129, 0x764d011c, 0x26d800eb, 0x00000000}},  //   _tria_, gnay, rtro_,\n  { {0x629c0df0, 0x628e0119, 0x29001175, 0x00000000}},  // [a880] _stro, _subo, _uria_,\n  { {0xd7ca007a, 0xdb0810fa, 0xe2a30082, 0x00000000}},  //   _بوده_, ladá, _thứ_,\n  { {0x645e1d24, 0x9f4706b8, 0x3e450089, 0x00000000}},  //   ropi, bené_, nēts_,\n  { {0x7e692a89, 0x61eb0030, 0x63ae0142, 0x00000000}},  //   jlep, gegl, _webn,\n  { {0x645e00e7, 0x7e6905d2, 0x60cb0058, 0x00000000}},  //   popi, dlep, gugm,\n  { {0x7e62002b, 0xe3b21298, 0x00000000, 0x00000000}},  //   _skop, _جرح_,   ,\n  { {0x629c0030, 0xe7e002fb, 0x61eb003b, 0x00000000}},  //   _utro, ख्या_, begl,\n  { {0x44440be3, 0x6489334e, 0x7e690010, 0x00000000}},  //   li_, _užic, glep,\n  { {0xdb08049a, 0x01d70d0b, 0x1b1b0044, 0x00000000}},  //   dadá, _توقع_, _ফেলে_,\n  { {0x4444334f, 0x9f4701ca, 0xdb0301ca, 0x00000000}},  //   ni_, zené_, _sená,\n  { {0xcc8800ad, 0x59f9008b, 0x764d0180, 0x00000000}},  //   _mới_, пеня_, ynay,\n  { {0x444409bf, 0x7e691560, 0xdb080010, 0x00000000}},  //   hi_, clep, gadá,\n  { {0x69dd000c, 0x9f470161, 0x7e6004be, 0x00000000}},  //   rfse, vené_, momp,\n  { {0x44440f68, 0x61eb0046, 0x7e6004cb, 0x00000000}},  //   ji_, zegl, lomp,\n  { {0x444409f5, 0x2bf30061, 0x3e450089, 0x00000000}},  //   di_, _असतं_, cēts_,\n  { {0x444404f4, 0x66160065, 0x683031f5, 0x00000000}},  //   ei_, gjyk, _räde,\n  { {0x798d3350, 0x61eb0026, 0x96010044, 0x00000000}},  // [a890] _igaw, vegl, _একদম_,\n  { {0x4444061f, 0x764d0c2c, 0x6830006c, 0x00000000}},  //   gi_, snay, _päde,\n  { {0xf1b90363, 0x7a260051, 0x64890006, 0x00000000}},  //   _loše_, _bóth, _džia,\n  { {0x44440736, 0x7d02042d, 0x68300039, 0x00000000}},  //   ai_, _oros, _väde,\n  { {0x7e6001d6, 0x798d254f, 0x3f8c012d, 0x00000000}},  //   domp, _mgaw, _bgdu_,\n  { {0x661d01d6, 0x61eb0059, 0xdb0813f4, 0x00000000}},  //   _hosk, segl, zadá,\n  { {0x661d021e, 0x6445036b, 0x2129089f, 0x00000000}},  //   _kosk, mihi, šah_,\n  { {0x7d02018e, 0x6445006a, 0x661d021e, 0x00000000}},  //   _bros, lihi, _josk,\n  { {0x661d3351, 0x7d0200ab, 0xdfdb005e, 0x00000000}},  //   _mosk, _cros, _мъж_,\n  { {0xa2c4001c, 0x7d020016, 0x6445006a, 0x00000000}},  //   ांच्, _dros, nihi,\n  { {0x7d02022b, 0x7a6a0745, 0xdb033066, 0x00000000}},  //   _eros, зинг_, _menç,\n  { {0x44441077, 0x6445006a, 0xc86900b6, 0x00000000}},  //   zi_, hihi, _הן_,\n  { {0x44443352, 0x644512e8, 0xfce501fb, 0x00000000}},  //   yi_, kihi, _чоло,\n  { {0x7c281fd8, 0x6e290030, 0x644500e7, 0x00000000}},  //   ckdr, lkeb, jihi,\n  { {0xcf920104, 0x66e3003b, 0x661d137e, 0x00000000}},  //   רטל_, лора, _bosk,\n  { {0x44443353, 0x661d01ee, 0x62890036, 0x00000000}},  //   wi_, _cosk, _nieo,\n  { {0x661d05fd, 0x69d60009, 0xdb0300c4, 0x00000000}},  // [a8a0] _dosk, _icye, _benç,\n  { {0x44440006, 0x64450145, 0x00000000, 0x00000000}},  //   ui_, gihi,   ,\n  { {0xf2a6025f, 0x6e290190, 0x661d000a, 0x00000000}},  //   хиеп, kkeb, _fosk,\n  { {0xcc8800ad, 0x09c70044, 0xa49b00d4, 0x00000000}},  //   _với_, ষ্ঠা, _iròn,\n  { {0x47b30055, 0x6445006a, 0xa06a3354, 0x00000000}},  //   _জাতী, bihi, пада_,\n  { {0xcc88001d, 0x44442f17, 0xdb03014a, 0x00000000}},  //   _tới_, qi_, _genç,\n  { {0xdb0a0030, 0x00000000, 0x00000000, 0x00000000}},  //   _udfø,   ,   ,\n  { {0x6fd20164, 0xb87b004a, 0x5fd20061, 0x00000000}},  //   _सावं, ctíf, _सावल,\n  { {0x2bd401f5, 0xed5000a1, 0x7e6001a3, 0x00000000}},  //   _दादा, جھا_, romp,\n  { {0x224619be, 0x7e600aa0, 0x7d1d3355, 0x00000000}},  //   liok_, somp, ässa,\n  { {0x200c005f, 0xaa5926f0, 0x7c2800bb, 0x00000000}},  //   _indi_, дину_, rkdr,\n  { {0x7d021014, 0xfe7200a2, 0xf1b9016e, 0x00000000}},  //   _tros, _صدا_, _toše_,\n  { {0x661d3356, 0x201e00b0, 0x7d022503, 0x00000000}},  //   _rosk, _koti_, _uros,\n  { {0x201e00e7, 0xdb0300f8, 0x661d007f, 0x00000000}},  //   _joti_, _benä, _sosk,\n  { {0x661d0387, 0x201e166f, 0xadf4013d, 0x00000000}},  //   _posk, _moti_, _आसान_,\n  { {0x201e331a, 0x78ad0a5f, 0x798d00e7, 0x00000000}},  //   _loti_, _twav, _ugaw,\n  { {0x644512e8, 0x200c0087, 0x78ad0ea6, 0x00000000}},  // [a8b0] tihi, _ondi_, _uwav,\n  { {0x201e0a19, 0xd37b0517, 0x00000000, 0x00000000}},  //   _noti_, пче_,   ,\n  { {0x6445011f, 0x661d0065, 0xdb031052, 0x00000000}},  //   rihi, _tosk, _venç,\n  { {0x200c023a, 0x6445011c, 0x78720030, 0x00000000}},  //   _andi_, sihi, nævn,\n  { {0x25a9170b, 0x68300bfe, 0xa5bb1db2, 0x00000000}},  //   mbal_, _häda, _flór,\n  { {0xa5bb0181, 0x2898009b, 0x628900b5, 0x00000000}},  //   _glór, עדון_, _wieo,\n  { {0xe4540783, 0x201e0e11, 0x545400ed, 0x00000000}},  //   _скры, _doti_, _сврт,\n  { {0x60c4010a, 0x7e910089, 0x682b01a2, 0x00000000}},  //   šima, _jāpi, _südl,\n  { {0x6e2904d4, 0x9f473357, 0xec790364, 0x00000000}},  //   rkeb, mení_, мпи_,\n  { {0x6b9a001c, 0x9f4701c8, 0x61fb0052, 0x00000000}},  //   gctg, lení_, _haul,\n  { {0x68300004, 0xbf151847, 0x61fb0020, 0x00000000}},  //   _näda, _جواب, _kaul,\n  { {0x201e008d, 0x61fb04de, 0x9f470142, 0x00000000}},  //   _zoti_, _jaul, není_,\n  { {0x25a9003b, 0x29040a82, 0x91ba009b, 0x00000000}},  //   dbal_, íma_, ומרי,\n  { {0x6b9a001c, 0x69a20201, 0x61fb3358, 0x00000000}},  //   cctg, _क्री, _laul,\n  { {0xdb0307c4, 0x25a901c3, 0x00000000, 0x00000000}},  //   _benå, fbal_,   ,\n  { {0x9f4701c8, 0xdb0300b0, 0xcfca0044, 0x00000000}},  //   jení_, _venä, ল্পন,\n  { {0x44310ffb, 0x9f470428, 0xf8bf0010, 0x00000000}},  // [a8c0] _blz_, dení_, lyén_,\n  { {0x61fb0022, 0xa49b3359, 0x64890006, 0x00000000}},  //   _aaul, _tròn, _džio,\n  { {0x201e033b, 0x61fb01a2, 0x64550087, 0x00000000}},  //   _roti_, _baul, _djzi,\n  { {0x201e0263, 0xfb1a0049, 0x72290088, 0x00000000}},  //   _soti_, וועמ, нців_,\n  { {0x201e0214, 0x61fb335a, 0x22460032, 0x00000000}},  //   _poti_, _daul, riok_,\n  { {0x03a301fb, 0x200c0026, 0x61fb0288, 0x00000000}},  //   _виро, _qndi_, _eaul,\n  { {0x201e335b, 0x04430088, 0x9f470802, 0x00000000}},  //   _voti_, _терн, bení_,\n  { {0x9f470224, 0x61fb009d, 0x69a2006e, 0x00000000}},  //   cení_, _gaul, _क्ली,\n  { {0x6b9a001c, 0x201e000d, 0x61e200eb, 0x00000000}},  //   tctg, _toti_, mfol,\n  { {0xfa8a001d, 0x200c01a3, 0xe9df0051, 0x00000000}},  //   _mẫu_, _undi_, giún_,\n  { {0x61e20009, 0x3a320146, 0x00000000, 0x00000000}},  //   ofol, _blyp_,   ,\n  { {0xf2d3007b, 0x61e2138a, 0x6aba335c, 0x00000000}},  //   סער_, nfol, rstf,\n  { {0xcc880011, 0x2e3700b3, 0x9f450161, 0x00000000}},  //   _bớt_, _בראש_, _malý_,\n  { {0x9f4713c7, 0x36d5026b, 0x683001a2, 0x00000000}},  //   zení_, логр, _päda,\n  { {0x25a90027, 0x61e200ea, 0xf1b90091, 0x00000000}},  //   tbal_, kfol, _loša_,\n  { {0xe6540088, 0x61e2335d, 0x00000000, 0x00000000}},  //   авсь, jfol,   ,\n  { {0x25a9023a, 0x9f4701c8, 0x25a60211, 0x00000000}},  // [a8d0] rbal_, vení_, ñola_,\n  { {0x61fb0ebc, 0x25a90129, 0x57f50072, 0x00000000}},  //   _saul, sbal_, _спот,\n  { {0x61fb02d5, 0x61e2335e, 0xa3c4013d, 0x00000000}},  //   _paul, ffol, _एयर_,\n  { {0x61e2068f, 0xf1b911cb, 0x2c790bf2, 0x00000000}},  //   gfol, _boša_, mède_,\n  { {0xdca60054, 0xfa8a0011, 0x2c79335f, 0x00000000}},  //   _دى_, _gẫu_, lède_,\n  { {0x9f470802, 0x61fb00e7, 0xf1b901ed, 0x00000000}},  //   sení_, _waul, _doša_,\n  { {0x78bd001c, 0x61fb0129, 0x9f470802, 0x00000000}},  //   hssv, _taul, pení_,\n  { {0xc6940049, 0x3f9e0022, 0x00000000, 0x00000000}},  //   סאפ_, _eftu_,   ,\n  { {0x4bd9008b, 0x3155008b, 0x7a26000c, 0x00000000}},  //   ньня_, _сваё, _mótt,\n  { {0x2a6901aa, 0x629500e7, 0x6e950401, 0x00000000}},  //   _akab_, _kuzo, _бижу,\n  { {0xcc880011, 0x2bd40204, 0x63b5013e, 0x00000000}},  //   _rớt_, _दारा, _mezn,\n  { {0xe9df002a, 0x7a26000c, 0xa49b00d4, 0x00000000}},  //   siún_, _nótt, _pròl,\n  { {0xfd100380, 0xec6e00e2, 0x78bd01e5, 0x00000000}},  //   _وجه_, _гп_, gssv,\n  { {0x63b50209, 0xdb030b32, 0x7a263360, 0x00000000}},  //   _nezn, _menú, _rótu,\n  { {0xae1701f5, 0xe9df000c, 0xcc880082, 0x00000000}},  //   थापन_, gnús_, _vớt_,\n  { {0xe643007e, 0x67210894, 0x00000000, 0x00000000}},  //   бесп, älja,   ,\n  { {0x6295002d, 0x7a26000c, 0x69c43361, 0x00000000}},  // [a8e0] _auzo, _dótt, _idie,\n  { {0x63b50107, 0x78a400ca, 0x00000000, 0x00000000}},  //   _cezn, _itiv,   ,\n  { {0x61e200ea, 0x2c79009d, 0x316d009d, 0x00000000}},  //   tfol, cède_, _ayez_,\n  { {0x78a400ea, 0x316d0026, 0x7afc08c8, 0x00000000}},  //   _ktiv, _byez_, ærti,\n  { {0x61e2010f, 0x7d1d01a2, 0x00000000, 0x00000000}},  //   rfol, ässl,   ,\n  { {0x61e20190, 0xdb03153d, 0x60c4016c, 0x00000000}},  //   sfol, _denú, šimo,\n  { {0x69c40197, 0x61e20023, 0x9e140088, 0x00000000}},  //   _odie, pfol, идкі,\n  { {0x69c40065, 0x63b5150d, 0xf1b9016c, 0x00000000}},  //   _ndie, _zezn, _toša_,\n  { {0x2fd60054, 0xb87b00c4, 0x8fa601fc, 0x00000000}},  //   _متاح, ntíc, _базе,\n  { {0x69c4022b, 0x09bf0164, 0x5ec30044, 0x00000000}},  //   _adie, ्ल्य, _শহরে,\n  { {0x78a402d5, 0x6f930025, 0x69c4002b, 0x00000000}},  //   _ativ, _المض, _bdie,\n  { {0xa2cc03d7, 0x00000000, 0x00000000, 0x00000000}},  //   _हिन्,   ,   ,\n  { {0xd90f00a2, 0x9f470161, 0x78a426b3, 0x00000000}},  //   سید_, mená_, _ctiv,\n  { {0x9f4701ca, 0x62820145, 0x7a26000c, 0x00000000}},  //   lená_, hmoo, _sótt,\n  { {0x63b50253, 0x682b01a2, 0xae09013d, 0x00000000}},  //   _rezn, _jüdi, वाचन_,\n  { {0x63b50aaa, 0x682b006b, 0xadf9013d, 0x00000000}},  //   _sezn, _müdi, ्ययन_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  // [a8f0]   ,   ,   ,\n  { {0x68ed011c, 0xb87b0b32, 0xdb031052, 0x00000000}},  //   _ipad, stíb, _renú,\n  { {0xe2980088, 0xf8bf009d, 0x64890006, 0x00000000}},  //   гає_, lsé_, _užim,\n  { {0xa4d501fb, 0xdb031b0f, 0x6e22031c, 0x00000000}},  //   _комі, _penú, _noob,\n  { {0x90e4023c, 0xf8bf12a3, 0x629a00f4, 0x00000000}},  //   مسون, nsé_, _éton,\n  { {0x41260057, 0x1aeb0044, 0xe3cc0044, 0x00000000}},  //   рошо_, টিতে_, র্বব,\n  { {0x6e223362, 0x44230061, 0x59c50061, 0x00000000}},  //   _boob, _ioj_, वणार,\n  { {0x68ed0036, 0x6e220197, 0x44230039, 0x00000000}},  //   _opad, _coob, _hoj_,\n  { {0x61e9045d, 0x9f450026, 0x6e220253, 0x00000000}},  //   _ibel, _calò_, _doob,\n  { {0x44230119, 0x3ce502d2, 0x1c450f71, 0x00000000}},  //   _joj_, _कहीं_, рном,\n  { {0x44230c06, 0x9f450047, 0x6e220515, 0x00000000}},  //   _moj_, _való_, _foob,\n  { {0xa2d602fb, 0x9f450026, 0x61e901f3, 0x00000000}},  //   मंत्, _falò_, _jbel,\n  { {0x61e9000b, 0xdb013363, 0x67210039, 0x00000000}},  //   _mbel, taló, äljn,\n  { {0x80cd0309, 0xc0520049, 0x5d3a00b3, 0x00000000}},  //   _सिने, ַזן_, _בתנא,\n  { {0x61e9003b, 0xbb420088, 0x7c230051, 0x00000000}},  //   _obel, _мешк, _ionr,\n  { {0x7c2329a6, 0x656f1700, 0x69c40ec0, 0x00000000}},  //   _honr, _bych, _udie,\n  { {0x656f0016, 0x7c2320de, 0x44230b41, 0x00000000}},  // [a900] _cych, _konr, _boj_,\n  { {0x61e9027b, 0x656f0e14, 0x9f4701ca, 0x00000000}},  //   _abel, _dych, zená_,\n  { {0x7c232336, 0x44233364, 0xb87b3365, 0x00000000}},  //   _monr, _doj_, stíc,\n  { {0xcc88001d, 0x91e6026b, 0x2cbf3366, 0x00000000}},  //   _lớp_, роде, ksud_,\n  { {0x62820168, 0x6fb60025, 0x6f080161, 0x00000000}},  //   rmoo, لمشا, _srdc,\n  { {0x3ec60057, 0x62820abf, 0x61e90190, 0x00000000}},  //   асиб, smoo, _ebel,\n  { {0xb87b008e, 0x6e220235, 0x9f450026, 0x00000000}},  //   ntía, _poob, _salò_,\n  { {0x81e40055, 0x25a03367, 0x2cbf0066, 0x00000000}},  //   _ভোর_, ncil_, fsud_,\n  { {0x10a309f1, 0x80a6035b, 0x7c2300f6, 0x00000000}},  //   _митн, _ضمان, _bonr,\n  { {0x7c230051, 0x00000000, 0x00000000, 0x00000000}},  //   _conr,   ,   ,\n  { {0x68ed0036, 0xdfcf0025, 0x29050089, 0x00000000}},  //   _spad, _زين_, ālam_,\n  { {0xade2006e, 0xdb012964, 0x6c3402fd, 0x00000000}},  //   क्शन_, talò, _گفتا,\n  { {0xf99f0129, 0x984b005e, 0xf8bf009d, 0x00000000}},  //   rcè_, вява_, usé_,\n  { {0x656f01c8, 0xf8bf1a0f, 0x9f5e0065, 0x00000000}},  //   _rych, rsé_, _natë_,\n  { {0xf8bf257b, 0x87042e54, 0x442301ee, 0x00000000}},  //   ssé_, ояте, _roj_,\n  { {0x7a360006, 0x00000000, 0x00000000, 0x00000000}},  //   kšty,   ,   ,\n  { {0x68ed2145, 0xdb1a0065, 0xd498003b, 0x00000000}},  // [a910] _upad, katë, арх_,\n  { {0x656f01ca, 0x7c3a0082, 0x601d000a, 0x00000000}},  //   _vych, nhtr, _fèmy,\n  { {0x656f0036, 0x9f5e0065, 0xd7dc013d, 0x00000000}},  //   _wych, _datë_, _बातच,\n  { {0x44230036, 0xed590ce4, 0x656f0871, 0x00000000}},  //   _woj_, laže_, _tych,\n  { {0x44232ec8, 0x181a0123, 0x91050242, 0x00000000}},  //   _toj_, _شریک_, спле,\n  { {0x73c50025, 0xdb1a0023, 0x3dc60146, 0x00000000}},  //   _ديسم, gatë, _adow_,\n  { {0xf8380104, 0x7c2306d2, 0x24990145, 0x00000000}},  //   שנות_, _ronr, _husm_,\n  { {0x7c233368, 0xa3b800a1, 0x61e90020, 0x00000000}},  //   _sonr, _ماہر_, _ubel,\n  { {0xdd91026c, 0x9f5e0263, 0xeb990517, 0x00000000}},  //   _ہوا_, _latè_, лип_,\n  { {0x4ee70c50, 0x6a760b33, 0x2d9f0133, 0x00000000}},  //   _відз, táfo, scue_,\n  { {0xf1b901ee, 0x7ded007f, 0x00000000, 0x00000000}},  //   _keš_, _pėsč,   ,\n  { {0x8d950025, 0xf1b91a7d, 0x00000000, 0x00000000}},  //   _الإش, _ješ_,   ,\n  { {0xbca5023c, 0x7c230022, 0x443a01cf, 0x00000000}},  //   _امتي, _tonr, yhp_,\n  { {0x7c3a0bf5, 0x07a300d7, 0xdb0a0210, 0x00000000}},  //   chtr, зарн, _befä,\n  { {0xfb87007e, 0xe73702b0, 0xf1d8013d, 0x00000000}},  //   _тыдн, бер_, _डालन,\n  { {0xe9da0ad9, 0xf1b9016e, 0xdb1a0065, 0x00000000}},  //   _ски_, _neš_, zatë,\n  { {0xe57a0517, 0x14c80014, 0x25a03369, 0x00000000}},  // [a920] уза_, شهای_, rcil_,\n  { {0x8ccf03d7, 0x09b00044, 0x9f470129, 0x00000000}},  //   _दिनो, _কাটা, cenç_,\n  { {0xfdf90201, 0xdb0a010f, 0x764d04be, 0x00000000}},  //   ्यास_, _gefä, biay,\n  { {0xd5b90057, 0xd1ba0025, 0xb87b0142, 0x00000000}},  //   _всё_, اااا_, ntín,\n  { {0x51181969, 0x660408a9, 0x69db0049, 0x00000000}},  //   ролю_, mdik, אַוו,\n  { {0x64a30264, 0x33d501fb, 0xdfcf0b59, 0x00000000}},  //   _хара, _міст, فيه_,\n  { {0x81c20055, 0xdb1a0065, 0x2ca605d5, 0x00000000}},  //   ্ভব_, ratë, _stod_,\n  { {0x6604336a, 0x91e309bb, 0x6e3b0058, 0x00000000}},  //   ndik, _носе, ghub,\n  { {0x09df0044, 0x6da3025f, 0xdb1a336b, 0x00000000}},  //   _বোঝা, чиња, maté,\n  { {0xdb1a336c, 0x60c20da4, 0x26c507fd, 0x00000000}},  //   laté, msom, álok_,\n  { {0x6e960054, 0x60c200eb, 0x7d0b00c7, 0x00000000}},  //   _الصا, lsom, _ergs,\n  { {0xc333019b, 0x7c3a008d, 0x443800e5, 0x00000000}},  //   פור_, shtr, _llr_,\n  { {0x9e650025, 0x60c200f4, 0x63be023a, 0x00000000}},  //   _بالن, nsom, kapn,\n  { {0x9f5e0026, 0x60c20908, 0x6d5c01a2, 0x00000000}},  //   _patè_, isom, ßrau,\n  { {0x9f47336d, 0xed59016e, 0x63be21e6, 0x00000000}},  //   renç_, raže_, dapn,\n  { {0x5b57012f, 0x44380022, 0x60c2336e, 0x00000000}},  //   _לשון_, _alr_, ksom,\n  { {0x5fc8006e, 0x6fc80061, 0x44380145, 0x00000000}},  // [a930] रणाल, रणां, _blr_,\n  { {0x7bda336f, 0x60c20039, 0x44381651, 0x00000000}},  //   ngtu, dsom, _clr_,\n  { {0x64890626, 0x65950930, 0xf1b900ca, 0x00000000}},  //   _oživ, _ману, _peš_,\n  { {0x9f5e000a, 0x44380203, 0x00000000, 0x00000000}},  //   _gaté_, _elr_,   ,\n  { {0xf1b90059, 0x60c20239, 0xd14b0014, 0x00000000}},  //   _veš_, gsom, دشان_,\n  { {0xc6010055, 0x9ea90256, 0x1ef90025, 0x00000000}},  //   _একটা_, авка_, لعبة_,\n  { {0x62350057, 0xd24e00a1, 0x6e3b00e7, 0x00000000}},  //   _деву, رچہ_, thub,\n  { {0x82370070, 0x7bda01b5, 0x4e293370, 0x00000000}},  //   _ارسا, egtu, роин_,\n  { {0x3c19008b, 0x7e690250, 0x6e3b04cb, 0x00000000}},  //   аўня_, roep, rhub,\n  { {0x6e3b1a0b, 0x9f4700b0, 0x3e7a0023, 0x00000000}},  //   shub, tenä_, rëta_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xa2cc006e, 0xc7a900a0, 0x00000000, 0x00000000}},  //   _हिस्, _יב_,   ,\n  { {0xb87b0779, 0x9f4700b0, 0xdb03014a, 0x00000000}},  //   rtín, senä_, _henü,\n  { {0xdb1a0010, 0x2cad00ab, 0x8c230044, 0x00000000}},  //   zaté, mped_, যোজন_,\n  { {0x7d09006c, 0x96950242, 0x2cad00ab, 0x00000000}},  //   lves, зруш, lped_,\n  { {0x443800ca, 0x27ed0091, 0x85050309, 0x00000000}},  //   _slr_, đena_, रिंट_,\n  { {0x7d09002b, 0x142600ed, 0x443800fa, 0x00000000}},  // [a940] nves, одам, _plr_,\n  { {0x2aed02d2, 0x66040093, 0xf77200a6, 0x00000000}},  //   _जहाँ_, sdik, _ياد_,\n  { {0x6d400173, 0x66043371, 0x63be0145, 0x00000000}},  //   zzma, pdik, rapn,\n  { {0x26d80ba0, 0xe4da00a2, 0x60c200b0, 0x00000000}},  //   muro_, _پوست_, tsom,\n  { {0xdb1a3372, 0x60c20006, 0x26d80016, 0x00000000}},  //   raté, usom, luro_,\n  { {0x60c201bf, 0x27f80a35, 0x7d093278, 0x00000000}},  //   rsom, nern_, dves,\n  { {0x26d8011c, 0x63bc0035, 0x00000000, 0x00000000}},  //   nuro_, _iern,   ,\n  { {0x27f81153, 0x60c2068f, 0x60cd320a, 0x00000000}},  //   hern_, psom, šama,\n  { {0x629c082a, 0x27f803a9, 0x26d83207, 0x00000000}},  //   _huro, kern_, huro_,\n  { {0x629c0ba5, 0x27f80030, 0x26d824e7, 0x00000000}},  //   _kuro, jern_, kuro_,\n  { {0x29003373, 0x629c0181, 0x27f83374, 0x00000000}},  //   _asia_, _juro, dern_,\n  { {0x64890224, 0x26d80016, 0x63bc010f, 0x00000000}},  //   _uživ, duro_, _lern,\n  { {0x32040832, 0x27f8010f, 0x8b0700b9, 0x00000000}},  //   _mamy_, fern_, _poří,\n  { {0xdb183375, 0xb87b0051, 0x27f803a9, 0x00000000}},  //   _levé, rtío, gern_,\n  { {0x26d81a16, 0xd5bb013b, 0x629c010a, 0x00000000}},  //   guro_, иса_, _nuro,\n  { {0x26cd0091, 0xdb180010, 0x8b3b009b, 0x00000000}},  //   čeo_, _nevé, _כתוצ,\n  { {0x63bc0127, 0x629c00f4, 0xdb032bc9, 0x00000000}},  // [a950] _bern, _auro, _fenó,\n  { {0x629c027b, 0xf1d803d7, 0x63bc001a, 0x00000000}},  //   _buro, _डाउन, _cern,\n  { {0x63bc028c, 0x26d82682, 0xdb081a43, 0x00000000}},  //   _dern, curo_, madó,\n  { {0x629c21ad, 0x7d0923a1, 0x320400e5, 0x00000000}},  //   _duro, yves, _camy_,\n  { {0x361a019b, 0xddc80046, 0x62980325, 0x00000000}},  //   _הורד, łośc, ívor,\n  { {0x63bc3376, 0x629c0207, 0xdb083377, 0x00000000}},  //   _gern, _furo, nadó,\n  { {0x629c3378, 0xa49b00d4, 0xf1b904eb, 0x00000000}},  //   _guro, _eròt, _loši_,\n  { {0xf1bf0359, 0x63bc0032, 0x27f801a2, 0x00000000}},  //   _þá_, _zern, zern_,\n  { {0x27f8010f, 0x225f0022, 0x26d800ca, 0x00000000}},  //   yern_, _ijuk_, zuro_,\n  { {0x69dd224a, 0x7d092a6b, 0x63a501a2, 0x00000000}},  //   egse, rves, nchn,\n  { {0x63a5010f, 0x7d09003b, 0xcb69017f, 0x00000000}},  //   ichn, sves, сане_,\n  { {0x2005000b, 0xdb03027b, 0x2cad00ab, 0x00000000}},  //   _hali_, _senó, pped_,\n  { {0x27f8001f, 0x200521c4, 0xdb080051, 0x00000000}},  //   tern_, _kali_, fadó,\n  { {0xfbd302fd, 0x200701ee, 0x27f8010f, 0x00000000}},  //   _آتش_, ndni_, uern_,\n  { {0xe737008b, 0x7bc10004, 0x63bc0521, 0x00000000}},  //   пер_, malu, _rern,\n  { {0x7bc10149, 0x629a00f4, 0x26d82b63, 0x00000000}},  //   lalu, _étoi, ruro_,\n  { {0x63bc020c, 0x29000169, 0xdb180efe, 0x00000000}},  // [a960] _pern, _usia_, _revé,\n  { {0x7bc1163a, 0x629c1a16, 0x32040062, 0x00000000}},  //   nalu, _puro, _samy_,\n  { {0x682b006c, 0xe7b7009b, 0x179b0097, 0x00000000}},  //   _tüdr, _מהיר_, _לייב,\n  { {0x7bc1011c, 0xd36f0380, 0x63bc010f, 0x00000000}},  //   halu, دهم_, _wern,\n  { {0x20050574, 0xe572004b, 0x63bc020c, 0x00000000}},  //   _bali_, _سطح_, _tern,\n  { {0x660608a1, 0x2005008e, 0x7bc106aa, 0x00000000}},  //   _hakk, _cali_, jalu,\n  { {0x5f9302a8, 0x7bc10211, 0x644e011c, 0x00000000}},  //   ништ, dalu, _imbi,\n  { {0x225a0054, 0x6aaa0044, 0x442a01a2, 0x00000000}},  //   _الرد_, _কিলো, _hob_,\n  { {0x6606023b, 0x442a01aa, 0x20050091, 0x00000000}},  //   _makk, _kob_, _fali_,\n  { {0x2005010a, 0x648901ca, 0x09c50183, 0x00000000}},  //   _gali_, _užit, वण्य,\n  { {0xed591032, 0x2bdd0309, 0xe9f903e8, 0x00000000}},  //   raža_, _मारा, онні_,\n  { {0x660623b5, 0x0e9b009b, 0x1e860783, 0x00000000}},  //   _nakk, _השאל, _элем,\n  { {0x58871036, 0x9f5e0129, 0x20053379, 0x00000000}},  //   зыва, _matí_, _yali_,\n  { {0x27ed0091, 0x7bc10035, 0x7d02337a, 0x00000000}},  //   đeno_, calu, _isos,\n  { {0x12d70044, 0x7dd60276, 0x00000000, 0x00000000}},  //   _সন্দ, cüsü,   ,\n  { {0x442a0bc7, 0xf4a80044, 0x7c2a005b, 0x00000000}},  //   _aob_, _ওয়েব, _hofr,\n  { {0x81c20055, 0x6a7d0845, 0x7ae8001c, 0x00000000}},  // [a970] ংলা_, léfo, ltdt,\n  { {0x7c2a00d4, 0x225f0039, 0x224d337b, 0x00000000}},  //   _jofr, _sjuk_, _smek_,\n  { {0x63a5018e, 0x442a13f4, 0x66060066, 0x00000000}},  //   rchn, _dob_, _fakk,\n  { {0x63a5010f, 0xe9df337c, 0x20050c01, 0x00000000}},  //   schn, ngú_, _sali_,\n  { {0x20050091, 0x44e60559, 0xfbdd0061, 0x00000000}},  //   _pali_, cô_, _मालम,\n  { {0x7c2a1566, 0x660600bb, 0x6a761f1e, 0x00000000}},  //   _nofr, _zakk, ráfi,\n  { {0x7bc124b7, 0x7d02134e, 0x2005006c, 0x00000000}},  //   valu, _asos, _vali_,\n  { {0x2005023a, 0x2d9905b7, 0x442a00ca, 0x00000000}},  //   _wali_, øse_, _zob_,\n  { {0x7bc1120d, 0x2005337d, 0x4c8500ed, 0x00000000}},  //   talu, _tali_, млив,\n  { {0x7c2a018e, 0x69cd0016, 0xcac9007c, 0x00000000}},  //   _cofr, _adae, огое_,\n  { {0x37e308b7, 0x7bc10c0e, 0x60c40006, 0x00000000}},  //   য়ার, ralu, šimt,\n  { {0x7bc1006a, 0xdb1a00c4, 0x00000000, 0x00000000}},  //   salu, catí,   ,\n  { {0x7bc11c68, 0xec6e003b, 0x6606182c, 0x00000000}},  //   palu, _ап_, _rakk,\n  { {0x7c2a018e, 0x66060056, 0x7bc7000c, 0x00000000}},  //   _gofr, _sakk, ðjud,\n  { {0x442a2ea8, 0x66060004, 0xe73a007c, 0x00000000}},  //   _rob_, _pakk, цев_,\n  { {0x442a0181, 0xb9040044, 0x98a200b4, 0x00000000}},  //   _sob_, _নন_, zykę_,\n  { {0x442a018e, 0xa49b00f6, 0x0903007e, 0x00000000}},  // [a980] _pob_, _bròq, _апын,\n  { {0x660600c7, 0x6e2b0b38, 0xa49b00d4, 0x00000000}},  //   _wakk, _logb, _pròr,\n  { {0x660608f8, 0x60c9012d, 0x1aeb0044, 0x00000000}},  //   _takk, _avem, টিকে_,\n  { {0x7df9007d, 0x442a00d9, 0x47d30044, 0x00000000}},  //   ्योग_, _wob_, দ্দী,\n  { {0x442a01d6, 0x10a300ed, 0x98a200b4, 0x00000000}},  //   _tob_, вичн, tykę_,\n  { {0x60c90059, 0x442a0022, 0x00000000, 0x00000000}},  //   _dvem, _uob_,   ,\n  { {0xd37206f1, 0xdb1a337e, 0xe80f03d7, 0x00000000}},  //   _شهر_, tatí, ायता_,\n  { {0x7c2a0181, 0x2498010e, 0x00000000, 0x00000000}},  //   _sofr, _hirm_,   ,\n  { {0xab5c0089, 0xed5000a1, 0x6e2b00d9, 0x00000000}},  //   daļa, دھا_, _dogb,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x29120093, 0xdb1a073f, 0x03d7009b, 0x00000000}},  //   _arya_, patí, ווים_,\n  { {0x629a009d, 0x00000000, 0x00000000, 0x00000000}},  //   _étou,   ,   ,\n  { {0x3e6b026c, 0xf8ae02fd, 0xcd360257, 0x00000000}},  //   _بجلی_, یکی_, _تراب,\n  { {0xdc5600a1, 0xe9df0051, 0x00000000, 0x00000000}},  //   _کرچک, giúr_,   ,\n  { {0x7641010a, 0xfa8a0082, 0x291200e0, 0x00000000}},  //   ūlym, _lẫy_, _erya_,\n  { {0x6a8400ed, 0x24980051, 0x7d0d00d0, 0x00000000}},  //   _илја, _airm_, _šasi,\n  { {0x6a76000c, 0xdb1a00c4, 0x29050089, 0x00000000}},  // [a990] gáfu, batã, ālas_,\n  { {0xd37b0931, 0x00000000, 0x00000000, 0x00000000}},  //   оче_,   ,   ,\n  { {0x60c90119, 0x00000000, 0x00000000, 0x00000000}},  //   _svem,   ,   ,\n  { {0xdb1801dc, 0xfa8a0082, 0xd049013f, 0x00000000}},  //   _neví, _bẫy_, ənəc,\n  { {0x24980652, 0x25d6009b, 0xe4a402b3, 0x00000000}},  //   _firm_, _אורן_, _арсо,\n  { {0x7516007b, 0x9f050025, 0xf07500a1, 0x00000000}},  //   _אַלע_, فوتو, ریاں_,\n  { {0x20d5009f, 0x9f5e00f6, 0x00000000, 0x00000000}},  //   _búið_, _catà_,   ,\n  { {0xb87b0181, 0xfde6005e, 0x00000000, 0x00000000}},  //   luíd, едък_,   ,\n  { {0xdb1804bb, 0x00000000, 0x00000000, 0x00000000}},  //   _deví,   ,   ,\n  { {0x9989050f, 0x4b25142c, 0x51840139, 0x00000000}},  //   _blaž_, емов, _руса,\n  { {0xeaae026c, 0xab5c0089, 0x00000000, 0x00000000}},  //   یٹی_, taļa,   ,\n  { {0xade90014, 0xa96a003b, 0x00000000, 0x00000000}},  //   _رفتم_, зима_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xe3d50044, 0x7e7b044e, 0x68300039, 0x00000000}},  //   স্তব, llup, _räds,\n  { {0x96660098, 0xcc3a0049, 0x186700c0, 0x00000000}},  //   екве, _מעסט, хари_,\n  { {0xdb03010f, 0xa49b0129, 0x7e7b0058, 0x00000000}},  //   _benö, _pròp, nlup,\n  { {0x69c600b5, 0x2c140061, 0xdb1a0232, 0x00000000}},  // [a9a0] make, _थोडं_, matá,\n  { {0x69c6022b, 0xdb1a0010, 0xfa8a0082, 0x00000000}},  //   lake, latá, _rẫy_,\n  { {0xe29a008b, 0x67350036, 0x6aab0035, 0x00000000}},  //   чае_, cyzj, _înfă,\n  { {0xe646004c, 0x25a9031e, 0x69c6002d, 0x00000000}},  //   _чемп, ccal_, nake,\n  { {0x7656005f, 0xb87b0181, 0xe61f0011, 0x00000000}},  //   miyy, buíd, _khôn_,\n  { {0x7656005f, 0x69c600b5, 0x38a60016, 0x00000000}},  //   liyy, hake, _môr_,\n  { {0x44440195, 0x69c60007, 0xd9e60061, 0x00000000}},  //   mh_, kake, _काढत_,\n  { {0x7656005f, 0x44440129, 0x69c60142, 0x00000000}},  //   niyy, lh_, jake,\n  { {0x40a8026c, 0x44441ebf, 0x69c6022b, 0x00000000}},  //   _آخری_, oh_, dake,\n  { {0x444400ad, 0x7656005f, 0x61e200ca, 0x00000000}},  //   nh_, hiyy, lgol,\n  { {0x3fc9007a, 0x444414c3, 0x764400e0, 0x00000000}},  //   _آگهی_, ih_, khiy,\n  { {0xb5fb0047, 0x61e2337f, 0xdb1a0047, 0x00000000}},  //   _aján, ngol, gatá,\n  { {0x7656005f, 0x76440d92, 0x38a60016, 0x00000000}},  //   diyy, dhiy, _côr_,\n  { {0x2c1603d7, 0x4444002b, 0x79840036, 0x00000000}},  //   ताओं_, jh_, _dziw,\n  { {0x44440195, 0x69c63380, 0xb87b2b90, 0x00000000}},  //   dh_, bake, ktív,\n  { {0x4444002b, 0xd0090055, 0xb8f70044, 0x00000000}},  //   eh_, লায়_, _সহ_,\n  { {0x25a90129, 0xb87b0181, 0x68300039, 0x00000000}},  // [a9b0] rcal_, tuíd, _vädr,\n  { {0x44440531, 0x7c3a2635, 0x2c7901aa, 0x00000000}},  //   gh_, nktr, tèdi_,\n  { {0xb87b00c4, 0x7656006b, 0xa3e2007d, 0x00000000}},  //   ruíd, biyy, _धार_,\n  { {0x44440127, 0x76443381, 0xd6d80088, 0x00000000}},  //   ah_, chiy, _ять_,\n  { {0x44440195, 0x661d3382, 0x660d005d, 0x00000000}},  //   bh_, _insk, mdak,\n  { {0x44440a48, 0x69c6022b, 0x660d0d49, 0x00000000}},  //   ch_, zake, ldak,\n  { {0xd9d90055, 0xe822006e, 0x69c60145, 0x00000000}},  //   ধ্যম, माता_, yake,\n  { {0x29020036, 0x9f473383, 0x69c63384, 0x00000000}},  //   ywka_, menü_, xake,\n  { {0x7e7b003f, 0x69c60ac2, 0x660d0f45, 0x00000000}},  //   rlup, vake, idak,\n  { {0x7656005f, 0x6457167b, 0x69c60d65, 0x00000000}},  //   ziyy, nixi, wake,\n  { {0xdb1a0047, 0x2fc718a8, 0x69c61646, 0x00000000}},  //   tatá, mang_, take,\n  { {0x2fc71ccf, 0x44440065, 0x3eaa0161, 0x00000000}},  //   lang_, zh_, žité_,\n  { {0x1d0905a7, 0x7656005f, 0x69c60315, 0x00000000}},  //   _цели_, viyy, rake,\n  { {0x2fc71463, 0x6d45005f, 0x69c601c9, 0x00000000}},  //   nang_, _əhal, sake,\n  { {0x69c600b0, 0x61e20203, 0x7bc300e5, 0x00000000}},  //   pake, ygol, _ienu,\n  { {0x2fc71312, 0x05ac0061, 0xadf9007d, 0x00000000}},  //   hang_, टुंब, ्यटन_,\n  { {0x444402f1, 0x7656005f, 0x2fc7317d, 0x00000000}},  // [a9c0] th_, riyy, kang_,\n  { {0xb5fb009f, 0x661d3385, 0x7656006b, 0x00000000}},  //   _hjál, _ensk, siyy,\n  { {0x7bc30149, 0x2fc7020c, 0x444401e5, 0x00000000}},  //   _menu, dang_, rh_,\n  { {0x78a4003c, 0x62890051, 0xb87b00c4, 0x00000000}},  //   _kuiv, _cheo, cuíb,\n  { {0x2fc7010f, 0x61e204cb, 0x69c4006c, 0x00000000}},  //   fang_, rgol, _meie,\n  { {0x2fc7006a, 0x69c40343, 0x7bc30006, 0x00000000}},  //   gang_, _leie, _nenu,\n  { {0x2d800dec, 0x9f47008e, 0xb87b008e, 0x00000000}},  //   _šie_, denó_, quíe,\n  { {0x6289094e, 0x69c4001e, 0x27ed0091, 0x00000000}},  //   _gheo, _neie, đeni_,\n  { {0x2fc7006a, 0x7bc3001f, 0xa0a60069, 0x00000000}},  //   bang_, _benu, _разд,\n  { {0x2fc70169, 0xdb1a014a, 0x7bc309e3, 0x00000000}},  //   cang_, natç, _cenu,\n  { {0x201e0f68, 0x7bc30325, 0x7aea0061, 0x00000000}},  //   _inti_, _denu, _qqft,\n  { {0x200c000b, 0x7c3a00eb, 0xdb1a0276, 0x00000000}},  //   _hadi_, sktr, hatç,\n  { {0xe80f001c, 0x6a7d27de, 0x78a40b50, 0x00000000}},  //   ायला_, néfi, _cuiv,\n  { {0x200c06a7, 0xd7f8005e, 0x7bc33386, 0x00000000}},  //   _jadi_, кус_, _genu,\n  { {0x7bc816c3, 0x69c43387, 0x200c01aa, 0x00000000}},  //   madu, _feie, _madi_,\n  { {0xb0d20316, 0xf64401fb, 0xb7e30044, 0x00000000}},  //   _सिंग, ахун, য়েট,\n  { {0x2fc721fb, 0x6289018e, 0x660d014a, 0x00000000}},  // [a9d0] yang_, _rheo, rdak,\n  { {0x6289002a, 0x200c2755, 0x7bc80d49, 0x00000000}},  //   _sheo, _nadi_, nadu,\n  { {0x64573388, 0x2fc700c7, 0x78a400bb, 0x00000000}},  //   rixi, vang_, _zuiv,\n  { {0x2fc721fb, 0x7bc83389, 0x661d1c79, 0x00000000}},  //   wang_, hadu, _unsk,\n  { {0x2fc72544, 0x7bc8338a, 0xb87b338b, 0x00000000}},  //   tang_, kadu, btít,\n  { {0x7bc8006c, 0xab5c0089, 0x200c1ca9, 0x00000000}},  //   jadu, taļl, _cadi_,\n  { {0x2fc71451, 0x7bc3106f, 0x628900ab, 0x00000000}},  //   rang_, _renu, _theo,\n  { {0xc332007b, 0x2fc71577, 0x6d49022b, 0x00000000}},  //   _פון_, sang_, tzea,\n  { {0x2fc72940, 0x7bc3020c, 0x4431338c, 0x00000000}},  //   pang_, _penu, _koz_,\n  { {0xb5fb009f, 0x69c404b2, 0x200c0089, 0x00000000}},  //   _sjál, _seie, _gadi_,\n  { {0x78a4028c, 0x3ced338d, 0x29090146, 0x00000000}},  //   _suiv, stev_, _asaa_,\n  { {0x2fc50039, 0x8c43006b, 0xcf5600b3, 0x00000000}},  //   _helg_, _əşya, _גבעת_,\n  { {0x7bc31017, 0x7bc80d88, 0xfe7001f7, 0x00000000}},  //   _tenu, badu, _بدل_,\n  { {0x6cd20084, 0x7bc80207, 0x69c40007, 0x00000000}},  //   _اقوا, cadu, _weie,\n  { {0x61e9338e, 0x461a007e, 0x69c4338f, 0x00000000}},  //   _ocel, нцаў_, _teie,\n  { {0x7ae1121e, 0x3ea5000d, 0xdb180030, 0x00000000}},  //   mult, _mult_, _bevæ,\n  { {0xdb0a009f, 0x3a201c39, 0x448a1020, 0x00000000}},  // [a9e0] _hefð, _inip_, ебан_,\n  { {0x61e9000d, 0x657d0065, 0x480601ff, 0x00000000}},  //   _acel, _dysh, _спов,\n  { {0x200c0119, 0xddc91279, 0x7ae10b90, 0x00000000}},  //   _radi_, dlež, nult,\n  { {0xb87b01ca, 0x2fc50087, 0x64550095, 0x00000000}},  //   stít, _aelg_, _emzi,\n  { {0x200c04cb, 0x7ae1010f, 0x44310181, 0x00000000}},  //   _padi_, hult, _foz_,\n  { {0x3ea50168, 0x648b00c4, 0x53a3007e, 0x00000000}},  //   _bult_, güid, _гарб,\n  { {0xa3e90183, 0x7bc80006, 0x7ae108c8, 0x00000000}},  //   _यात_, vadu, jult,\n  { {0x7ae10ec6, 0x7bc7000c, 0x9f470026, 0x00000000}},  //   dult, ðjun, tenò_,\n  { {0x5166008b, 0x7bc80907, 0x2167012b, 0x00000000}},  //   _сваб, tadu, _бити_,\n  { {0x61e900b9, 0x629800b9, 0x30760920, 0x00000000}},  //   _zcel, ůvod, _субс,\n  { {0x7bc8309d, 0x450a0044, 0x3ea504d3, 0x00000000}},  //   radu, রমিক_, _gult_,\n  { {0x6da6157b, 0x00000000, 0x00000000, 0x00000000}},  //   _сида,   ,   ,\n  { {0xd7fb02d3, 0x3ea500b5, 0x7bc8008a, 0x00000000}},  //   нув_, _zult_, padu,\n  { {0xb5fb01ca, 0xe7e30055, 0x7ae13390, 0x00000000}},  //   _ukáz, য়্য, bult,\n  { {0x81dc0055, 0x44310035, 0xb87b008e, 0x00000000}},  //   ত্য_, _roz_, guía,\n  { {0x29090058, 0x44310276, 0x35b50780, 0x00000000}},  //   _tsaa_, _soz_, рбар,\n  { {0x54550256, 0xa3e9062e, 0x3dc60487, 0x00000000}},  // [a9f0] ават, _याद_, _meow_,\n  { {0x61e93391, 0xb87b3392, 0xa3d50088, 0x00000000}},  //   _scel, dríg, рожч,\n  { {0x44310489, 0x61e901a8, 0x657d0007, 0x00000000}},  //   _voz_, _pcel, _wysh,\n  { {0xb6ba009b, 0x4431214e, 0x27ed0091, 0x00000000}},  //   _שצרי, _woz_, đenu_,\n  { {0x3ea53393, 0x4431026d, 0x00000000, 0x00000000}},  //   _sult_, _toz_,   ,\n  { {0xdb1800b0, 0xc4f60049, 0x645501a2, 0x00000000}},  //   _kevä, _דזשי_, _umzi,\n  { {0x2fc50292, 0x44ef014a, 0x27e701e5, 0x00000000}},  //   _velg_, lü_, _önnu_,\n  { {0xa2a20164, 0x81dc0044, 0x660f00ab, 0x00000000}},  //   गदर्, ত্ব_, _jack,\n  { {0x7ae10061, 0x1c450cee, 0x2d993394, 0x00000000}},  //   wult, иним, äse_,\n  { {0x1c1f03d7, 0x2a69006c, 0x3a201c7e, 0x00000000}},  //   बाइल_, _ajab_, _snip_,\n  { {0xcb6900c0, 0xff530318, 0xda210061, 0x00000000}},  //   тане_, _اخذ_, यांत_,\n  { {0x660f0002, 0x7ae13395, 0x00000000, 0x00000000}},  //   _nack, rult,   ,\n  { {0xfe700137, 0xe8220309, 0x2a690173, 0x00000000}},  //   _عدم_, माला_, _djab_,\n  { {0x7ae100b0, 0x2bcb003b, 0x5d840025, 0x00000000}},  //   pult, _чудо_, _الهل,\n  { {0x660f0866, 0x4b790049, 0x66d90986, 0x00000000}},  //   _back, _באַו, льтр_,\n  { {0x660f0107, 0xe5a3213f, 0x75d60025, 0x00000000}},  //   _cack, жити, شيطا,\n  { {0x290c0089, 0x00000000, 0x00000000, 0x00000000}},  // [aa00] ādas_,   ,   ,\n  { {0x29370049, 0x61fd014a, 0xb87b013e, 0x00000000}},  //   _כאפן_, _ısla, stír,\n  { {0x660f28fa, 0x0ef40061, 0xed59179b, 0x00000000}},  //   _fack, _आहेस_, mažu_,\n  { {0xed5904eb, 0xb87b00c4, 0x95c7007e, 0x00000000}},  //   lažu_, nuín, _клюб_,\n  { {0x03a60088, 0x05940014, 0x3eb90035, 0x00000000}},  //   _виго, _دادگ, _ăsta_,\n  { {0x6604009f, 0x660f0740, 0xc076012b, 0x00000000}},  //   leik, _zack, шћењ,\n  { {0xe7ee03d7, 0x1c1f0164, 0x23270594, 0x00000000}},  //   _जाना_, बाईल_, _кори_,\n  { {0xddc90036, 0x7d0b000a, 0x7d19005b, 0x00000000}},  //   mieś, _bsgs, _brws,\n  { {0x6143012b, 0x62820112, 0x2ca60026, 0x00000000}},  //   _дета, mloo, _quod_,\n  { {0x69d600e0, 0x66043396, 0x7d19005b, 0x00000000}},  //   _adye, heik, _drws,\n  { {0xddc90036, 0xa3e901f5, 0x6282006c, 0x00000000}},  //   nieś, _यास_, oloo,\n  { {0x62820222, 0x62510027, 0x2ca60058, 0x00000000}},  //   nloo, sťov, _tuod_,\n  { {0x6e2206c0, 0xdb1800f8, 0xa49b00f6, 0x00000000}},  //   _inob, _sevä, _isòv,\n  { {0xd7c90076, 0x76460133, 0x00000000, 0x00000000}},  //   طوره_, _alky,   ,\n  { {0x660f00ab, 0x6282095a, 0x6e2201a2, 0x00000000}},  //   _pack, kloo, _knob,\n  { {0xd5b803c0, 0xe61f0011, 0x9f5c00b9, 0x00000000}},  //   ису_, _khôi_, jeví_,\n  { {0x660f0039, 0x62820007, 0x95c80b7a, 0x00000000}},  // [aa10] _vack, dloo, руса_,\n  { {0x660f0e42, 0x673c0635, 0x628200d9, 0x00000000}},  //   _wack, byrj, eloo,\n  { {0xa2f500a5, 0x660f0aa4, 0x00000000, 0x00000000}},  //   спеч, _tack,   ,\n  { {0x62820116, 0x80db006e, 0xd1b80439, 0x00000000}},  //   gloo, _निदे, لاها_,\n  { {0xe3e900a6, 0x6f1a1651, 0xdb0a01a2, 0x00000000}},  //   _مکان_, _artc, _gefö,\n  { {0x6e221f3e, 0x8596009b, 0x00000000, 0x00000000}},  //   _anob, _לדרג_,   ,\n  { {0x628201bb, 0x64470066, 0x72d40088, 0x00000000}},  //   bloo, _ilji, _морф,\n  { {0xf99f2475, 0x11d40025, 0x00000000, 0x00000000}},  //   ndès_, _وتقد,   ,\n  { {0x61fb0058, 0x00000000, 0x00000000, 0x00000000}},  //   _ibul,   ,   ,\n  { {0x30850054, 0x1c453397, 0x6604007f, 0x00000000}},  //   _الطف, сном, zeik,\n  { {0x78b600f8, 0x00000000, 0x00000000, 0x00000000}},  //   _styv,   ,   ,\n  { {0xd356009b, 0x7d19005b, 0x00000000, 0x00000000}},  //   מיתי_, _trws,   ,\n  { {0x6604010a, 0x61fb0065, 0x8e740025, 0x00000000}},  //   veik, _mbul, _بالض,\n  { {0x7d0900e0, 0x673c12e2, 0xfbde0044, 0x00000000}},  //   mwes, tyrj, ব্বত,\n  { {0x66041104, 0x61fb0061, 0x7c230fdc, 0x00000000}},  //   teik, _obul, _innr,\n  { {0x44230173, 0xb87b00c4, 0xdb36009b, 0x00000000}},  //   _anj_, quín, _לנצח_,\n  { {0x66043398, 0xddc90036, 0xab5c0089, 0x00000000}},  // [aa20] reik, wieś, vaļi,\n  { {0x61fb0058, 0x44230181, 0x232a017a, 0x00000000}},  //   _abul, _cnj_, лози_,\n  { {0x7d091153, 0x656f00ab, 0x6a68014a, 0x00000000}},  //   hwes, _exch, yıfl,\n  { {0xb87b1d59, 0x6b7a0049, 0x7d0911ac, 0x00000000}},  //   críb, ארענ, kwes,\n  { {0xc05a01ff, 0xe77900a1, 0x628226c5, 0x00000000}},  //   лік_, _ملیں_, rloo,\n  { {0x7d0905af, 0x64470ce4, 0x62823399, 0x00000000}},  //   dwes, _glji, sloo,\n  { {0x645e1449, 0x7ff30025, 0x62820a2a, 0x00000000}},  //   mipi, سسوا, ploo,\n  { {0x645e066d, 0x6f1a0059, 0xbe8a007c, 0x00000000}},  //   lipi, _vrtc, ысле_,\n  { {0xa49b0129, 0x217600e2, 0x7d0901d6, 0x00000000}},  //   _pròx, _ѓубр, gwes,\n  { {0x61fb0065, 0x645e011c, 0x9411006b, 0x00000000}},  //   _zbul, nipi, _bizə_,\n  { {0x7f860025, 0x29000035, 0x547b009b, 0x00000000}},  //   _الان, _apia_, רטיו,\n  { {0xc333019b, 0x7a3f008d, 0xe61f001d, 0x00000000}},  //   לות_, _këti, _thôi_,\n  { {0x6da30070, 0x645e0020, 0x00000000, 0x00000000}},  //   _عموم, kipi,   ,\n  { {0x4d7b0049, 0x645e00e7, 0x244400f8, 0x00000000}},  //   _ערגע, jipi, _sömn_,\n  { {0x2bf700b3, 0x644b0065, 0x27180087, 0x00000000}},  //   _המון_, ëgim, _cčn_,\n  { {0x7bca0359, 0x64470107, 0x00000000, 0x00000000}},  //   _hefu, _slji,   ,\n  { {0x69cf0211, 0xdb030666, 0x4423339a, 0x00000000}},  // [aa30] mace, _agnè, _pnj_,\n  { {0x69cf0211, 0x645e12e8, 0x6aaa0190, 0x00000000}},  //   lace, gipi, _kuff,\n  { {0xe7ee02d2, 0xe9f9001d, 0x6aaa07a5, 0x00000000}},  //   _जाता_, _giả_, _juff,\n  { {0x04060044, 0xb87b00c4, 0x38af339b, 0x00000000}},  //   রাগী_, bríc, _kür_,\n  { {0x44230022, 0x7bd804eb, 0x00000000, 0x00000000}},  //   _tnj_, _odvu,   ,\n  { {0x02a7008b, 0x645e0c1f, 0x69cf339c, 0x00000000}},  //   _грам, cipi, hace,\n  { {0x80db007d, 0x69cf10b1, 0xd1bb0025, 0x00000000}},  //   _निवे, kace, _ماذا_,\n  { {0xee3900aa, 0x764d0058, 0x798d0082, 0x00000000}},  //   рни_, nhay, _ozaw,\n  { {0x6aaa010f, 0x9411006b, 0x82340151, 0x00000000}},  //   _auff, _sizə_, _عرفا,\n  { {0x7d09037f, 0xdfd102fd, 0x7bca0087, 0x00000000}},  //   rwes, _آيا_, _cefu,\n  { {0x20070214, 0x7bca0c42, 0x6aaa2525, 0x00000000}},  //   meni_, _defu, _cuff,\n  { {0x20070209, 0x13d20044, 0x645e002d, 0x00000000}},  //   leni_, ালয়, zipi,\n  { {0x38af006b, 0xfe420088, 0x7e7b0618, 0x00000000}},  //   _cür_, _іншо, moup,\n  { {0x7bca2dc9, 0x7e7b339d, 0xbb45007c, 0x00000000}},  //   _gefu, loup, _мелк,\n  { {0x69cf0211, 0x07a3007e, 0x7bc1001a, 0x00000000}},  //   bace, дарн, mblu,\n  { {0x38af08ba, 0x2007339e, 0xb81a03d7, 0x00000000}},  //   _für_, heni_, _फोरम_,\n  { {0x645e011c, 0x80db0164, 0x20070453, 0x00000000}},  // [aa40] tipi, _निषे, keni_,\n  { {0x200700ee, 0xb87b052d, 0xe45f000c, 0x00000000}},  //   jeni_, rríc, _svör_,\n  { {0xe5a60072, 0x20070209, 0x41aa026b, 0x00000000}},  //   _мини, deni_, авен_,\n  { {0x645e0006, 0x764d0173, 0xb5fb000c, 0x00000000}},  //   sipi, chay, _sjáv,\n  { {0x6b830030, 0xe80f0061, 0x645e011c, 0x00000000}},  //   _lyng, ायचा_, pipi,\n  { {0x20070020, 0xdfd00379, 0x76440279, 0x00000000}},  //   geni_, ريب_, lkiy,\n  { {0x44f4021e, 0x7bc10922, 0x4444339f, 0x00000000}},  //   lä_, dblu, mk_,\n  { {0x4438002d, 0x66160a62, 0x7bca33a0, 0x00000000}},  //   _hor_, ndyk, _sefu,\n  { {0xc69301f8, 0x44f4021e, 0x69cf0b30, 0x00000000}},  //   ואה_, nä_, vace,\n  { {0x44380093, 0xddc2012d, 0x7bc5010e, 0x00000000}},  //   _jor_, _djoš, _õhul,\n  { {0x444422c7, 0x6b83018e, 0x44382c6d, 0x00000000}},  //   ik_, _cyng, _mor_,\n  { {0x81dc0055, 0xb5fb0219, 0x4438000d, 0x00000000}},  //   ত্র_, _imág, _lor_,\n  { {0x44381273, 0x44f4021e, 0x44440292, 0x00000000}},  //   _oor_, jä_, kk_,\n  { {0x444402ae, 0x69cf01c5, 0x6aaa0039, 0x00000000}},  //   jk_, sace, _tuff,\n  { {0x69cf00f4, 0x6d400006, 0x6b8333a1, 0x00000000}},  //   pace, lyma, _gyng,\n  { {0x38af085e, 0x444433a2, 0x44380058, 0x00000000}},  //   _tür_, ek_, _aor_,\n  { {0x443801bf, 0x6d40007f, 0x764d008a, 0x00000000}},  // [aa50] _bor_, nyma, rhay,\n  { {0x443809f7, 0x7e60008a, 0xb87b008e, 0x00000000}},  //   _cor_, himp, bría,\n  { {0x44381f5b, 0x6d4033a3, 0xf8bf1339, 0x00000000}},  //   _dor_, hyma, lpé_,\n  { {0x44440238, 0x645c3265, 0x6d40010a, 0x00000000}},  //   ak_, _emri, kyma,\n  { {0x443833a4, 0x20070047, 0xd49b00ed, 0x00000000}},  //   _for_, teni_, _врв_,\n  { {0x44440a8a, 0x6d400006, 0x443833a5, 0x00000000}},  //   ck_, dyma, _gor_,\n  { {0x20070091, 0x7e7b00b9, 0x7d0233a6, 0x00000000}},  //   reni_, toup, _apos,\n  { {0x200703b6, 0x4438014a, 0xe68e006b, 0x00000000}},  //   seni_, _zor_, _məşğ,\n  { {0x200726bb, 0x7bc10d33, 0x7e7b0145, 0x00000000}},  //   peni_, tblu, roup,\n  { {0xbebc0089, 0x4438013f, 0x20070023, 0x00000000}},  //   _brīd, _xor_, qeni_,\n  { {0x7c380198, 0x7d0204d3, 0x3b09081e, 0x00000000}},  //   _dovr, _epos, щено_,\n  { {0x60c90117, 0x6d401506, 0x7e60008a, 0x00000000}},  //   _kwem, byma, cimp,\n  { {0x7bc133a7, 0x44440032, 0x6b8333a8, 0x00000000}},  //   pblu, yk_, _wyng,\n  { {0x44f4021e, 0x60c909c7, 0x6b83093b, 0x00000000}},  //   vä_, _mwem, _tyng,\n  { {0xcb66041f, 0xbebc0089, 0x444400ca, 0x00000000}},  //   _наше_, _grīd, vk_,\n  { {0x44f4021e, 0x4438165e, 0xe61a0184, 0x00000000}},  //   tä_, _sor_, љда_,\n  { {0x44380325, 0x764401f6, 0x6e39002b, 0x00000000}},  // [aa60] _por_, rkiy, _mowb,\n  { {0x4444046a, 0xd91b0049, 0x291204be, 0x00000000}},  //   uk_, _פויל, _isya_,\n  { {0x443833a9, 0xf626026b, 0x6d400036, 0x00000000}},  //   _vor_, _едно, zyma,\n  { {0x444405d5, 0x64a60113, 0xe297005c, 0x00000000}},  //   sk_, _нама, пах_,\n  { {0x443807f9, 0xf1a9007a, 0x444433aa, 0x00000000}},  //   _tor_, زانه_, pk_,\n  { {0x645c016e, 0x64450203, 0x62991238, 0x00000000}},  //   _umri, ckhi, amwo,\n  { {0x7d020046, 0x76550010, 0x00000000, 0x00000000}},  //   _spos, _ügyé,   ,\n  { {0x6d400a66, 0x7c381982, 0x7ae8093b, 0x00000000}},  //   tyma, _sovr, vudt,\n  { {0x7c380868, 0x7e6027d2, 0xc0e301fc, 0x00000000}},  //   _povr, rimp, _потк,\n  { {0x7e600169, 0x6d4010fd, 0xd64a00e2, 0x00000000}},  //   simp, ryma, jнов,\n  { {0x2912066b, 0x78ad0b76, 0x60c900b5, 0x00000000}},  //   _asya_, _suav, _zwem,\n  { {0x224633ab, 0x00000000, 0x00000000, 0x00000000}},  //   nkok_,   ,   ,\n  { {0xdcf7007a, 0x2e37009b, 0x7c380059, 0x00000000}},  //   _فروش_, _מראש_, _tovr,\n  { {0xac9800a1, 0xb905006e, 0x00000000, 0x00000000}},  //   _بنتا_, _पट_,   ,\n  { {0xabfb009b, 0xf1cc0164, 0x41cc01f5, 0x00000000}},  //   _ההור, ारान, ारास,\n  { {0x80d20044, 0xf8bf00f4, 0x78ad004a, 0x00000000}},  //   _সমন্, ppé_, _tuav,\n  { {0x3a290093, 0x3ea60c28, 0x9f5c00b0, 0x00000000}},  // [aa70] _inap_, _miot_, levä_,\n  { {0xdb1a014a, 0x60c90045, 0xe3b00439, 0x00000000}},  //   katü, _rwem, هرم_,\n  { {0x3a290030, 0xdb1a0036, 0x64450127, 0x00000000}},  //   _knap_, mató, rkhi,\n  { {0xdb1a0181, 0x60c90173, 0x3cdd013d, 0x00000000}},  //   lató, _pwem, _खिले_,\n  { {0xe1f00076, 0xb5fb009f, 0xe8220061, 0x00000000}},  //   اسم_, _fjár, माचा_,\n  { {0xdb1a21e7, 0xc9180104, 0xfaf80089, 0x00000000}},  //   nató, פחות_, ktī_,\n  { {0xae1e007d, 0x3ea60068, 0xb87b0048, 0x00000000}},  //   _मोहन_, _biot_, hrío,\n  { {0x7d1b006c, 0xda1d0061, 0x60c9002b, 0x00000000}},  //   tvus, _बोलत_, _twem,\n  { {0xd7bf001c, 0xe7ee0061, 0x3ea6002d, 0x00000000}},  //   ्राच, _जाला_, _diot_,\n  { {0xbb45058e, 0x9e67025a, 0x5ee5013d, 0x00000000}},  //   деок, _کائن, _टिप्_,\n  { {0x7d1b03b6, 0xdb1a00fa, 0x00000000, 0x00000000}},  //   svus, dató,   ,\n  { {0xb87b0051, 0x00000000, 0x00000000, 0x00000000}},  //   frío,   ,   ,\n  { {0xdb0a03a2, 0x80cf0044, 0xac190140, 0x00000000}},  //   _affä, হূর্, _моду_,\n  { {0xdb1a0854, 0x6b650131, 0x3a2900d6, 0x00000000}},  //   gató, _окла, _enap_,\n  { {0x81e508b7, 0x98a301ee, 0x224d010e, 0x00000000}},  //   ব্য_, тире, _olek_,\n  { {0x2ca70004, 0xb87b0051, 0x3eb80010, 0x00000000}},  //   _hind_, brío, _érte_,\n  { {0x2ca71936, 0xdb1a00c4, 0xb87b0051, 0x00000000}},  // [aa80] _kind_, bató, crío,\n  { {0xdb1a00c4, 0x225f0022, 0x2ca700e5, 0x00000000}},  //   cató, _amuk_, _jind_,\n  { {0x38b40901, 0x2ca733ac, 0x224d0173, 0x00000000}},  //   _här_, _mind_, _blek_,\n  { {0x2ca70065, 0xdb030051, 0x38b400f8, 0x00000000}},  //   _lind_, _ngní, _kär_,\n  { {0xa2aa013d, 0x3ea60133, 0x00000000, 0x00000000}},  //   _जंक्, _riot_,   ,\n  { {0x224612c9, 0x38b408e8, 0xceba003b, 0x00000000}},  //   skok_, _mär_, ољи_,\n  { {0x38b40039, 0x644e12d7, 0x00000000, 0x00000000}},  //   _lär_, _ilbi,   ,\n  { {0x9d14013b, 0x224d0022, 0xdb1a0e03, 0x00000000}},  //   едич, _glek_, zató,\n  { {0x38b40073, 0x2ca70292, 0x21670088, 0x00000000}},  //   _när_, _bind_, _жити_,\n  { {0x3a2900b5, 0x2ca7001a, 0x9f5c0052, 0x00000000}},  //   _snap_, _cind_, tevä_,\n  { {0x60c200b0, 0x9f5e00d4, 0xdb1a00fd, 0x00000000}},  //   lpom, _obté_, vató,\n  { {0x38b40a5d, 0x2ca733ad, 0xb87b0051, 0x00000000}},  //   _bär_, _eind_, trío,\n  { {0x2ca71fbe, 0xdb1a162f, 0x644e0197, 0x00000000}},  //   _find_, tató, _olbi,\n  { {0x38b40073, 0x9c570025, 0x0ec50061, 0x00000000}},  //   _där_, _يجوز_, ळीकड,\n  { {0xdb1a285a, 0x442d33ae, 0x00000000, 0x00000000}},  //   rató, _đe_,   ,\n  { {0x644e022b, 0x56940cb7, 0xb5fb01e5, 0x00000000}},  //   _albi, васт, _smáb,\n  { {0xdb1a33af, 0x60c20235, 0x442a33b0, 0x00000000}},  // [aa90] catò, jpom, _bnb_,\n  { {0xe8d8009b, 0x225f0030, 0x4cc30044, 0x00000000}},  //   _חוזר_, _smuk_, _শিমু,\n  { {0x224d06b2, 0x7afa00e0, 0x00000000, 0x00000000}},  //   _plek_, nttt,   ,\n  { {0x644e014a, 0x442a01d6, 0x81cf0044, 0x00000000}},  //   _elbi, _enb_, _শাহ_,\n  { {0x3858025a, 0x224d0640, 0x442a33b1, 0x00000000}},  //   _رشید_, _vlek_, _fnb_,\n  { {0x442a0173, 0x3af80010, 0x64900bac, 0x00000000}},  //   _gnb_, kép_, läin,\n  { {0x2ca70cea, 0x00000000, 0x00000000, 0x00000000}},  //   _rind_,   ,   ,\n  { {0x2ca708ba, 0x43941036, 0x7c2a010f, 0x00000000}},  //   _sind_, _расс, _anfr,\n  { {0x11670752, 0x2ca72370, 0x00000000, 0x00000000}},  //   _غلطی_, _pind_,   ,\n  { {0xfc310054, 0x2ca70065, 0x628b074e, 0x00000000}},  //   احة_, _qind_, llgo,\n  { {0x2ca7046a, 0x3af80010, 0xb87b000c, 0x00000000}},  //   _vind_, gép_, grím,\n  { {0xee2e008b, 0x2ca700fe, 0x38b400f8, 0x00000000}},  //   _ён_, _wind_, _pär_,\n  { {0xed4e1b70, 0x7afa001c, 0x660d002d, 0x00000000}},  //   _со_, attt, deak,\n  { {0x26de0166, 0x60db00e7, 0xccf200b3, 0x00000000}},  //   štom_, _mvum, _עכו_,\n  { {0x7afa001c, 0xe73a005e, 0x969600ed, 0x00000000}},  //   cttt, чев_, ераш,\n  { {0x660d00eb, 0x00000000, 0x00000000, 0x00000000}},  //   geak,   ,   ,\n  { {0x442a33b2, 0x1426004c, 0x999e0006, 0x00000000}},  // [aaa0] _pnb_, ндам, ėtų_,\n  { {0x78fb00b6, 0x3957019b, 0x628b33b3, 0x00000000}},  //   _צפיו, _נשים_, elgo,\n  { {0x64e20061, 0x442a0082, 0x00000000, 0x00000000}},  //   _पिवळ, _vnb_,   ,\n  { {0xdb010d7b, 0x237700a2, 0xdb0a009d, 0x00000000}},  //   lcló, رمند_, _affû,\n  { {0xa3e9001c, 0x442a0145, 0x5183007c, 0x00000000}},  //   _याच_, _tnb_, луша,\n  { {0xd8d700a0, 0xf99300a0, 0x442a00c4, 0x00000000}},  //   גוסט_, ארד_, _unb_,\n  { {0x91e60113, 0x7777027b, 0x60c209fc, 0x00000000}},  //   _пове, _xxxx, spom,\n  { {0xb87b1b0f, 0x60c2059f, 0x00000000, 0x00000000}},  //   quív, ppom,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7afa001c, 0x8fa600ed, 0x6e2b032e, 0x00000000}},  //   tttt, _зазе, _engb,\n  { {0x6282016e, 0x26de016c, 0xdb180d7b, 0x00000000}},  //   oooo, štoj_, _revó,\n  { {0x628201ed, 0x224d0066, 0xdc3c04eb, 0x00000000}},  //   nooo, _ċekk_, _išču,\n  { {0x7afa001c, 0x8c460867, 0x2eee00f8, 0x00000000}},  //   sttt, _педе, luff_,\n  { {0x62820058, 0x7c2a1bfd, 0xb87b004a, 0x00000000}},  //   hooo, _unfr, prím,\n  { {0x3333027b, 0x45d500ed, 0x660d0b79, 0x00000000}},  //   xxxx_, ковс, teak,\n  { {0xe9df000c, 0xe3cd0044, 0x00000000, 0x00000000}},  //   rhús_, _লাইব,   ,\n  { {0x660d002d, 0x62821d12, 0x649000b0, 0x00000000}},  // [aab0] reak, dooo, räin,\n  { {0xd13102fd, 0x14190025, 0x64900052, 0x00000000}},  //   یما_, بيئة_, säin,\n  { {0xf69901f9, 0x28b702fb, 0xd3710025, 0x00000000}},  //   _овој_, _इंडि, جها_,\n  { {0x249800d9, 0x26c100d9, 0x00000000, 0x00000000}},  //   _ehrm_, _itho_,   ,\n  { {0x52740025, 0x68fd2370, 0x6f0800f6, 0x00000000}},  //   دالز, ntsd, _apdc,\n  { {0x7e62000a, 0x200e0026, 0xb144007e, 0x00000000}},  //   _amop, gefi_, ыніл,\n  { {0x439400ed, 0x628233b4, 0x00000000, 0x00000000}},  //   _барс, booo,   ,\n  { {0xa295008b, 0x2909012d, 0xdb030048, 0x00000000}},  //   _рабі, _opaa_, _ngná,\n  { {0x60db0020, 0x6ba6006b, 0x320f0010, 0x00000000}},  //   _uvum, əsgə, megy_,\n  { {0x26de0344, 0x1c45004c, 0x00000000, 0x00000000}},  //   átok_, тном,   ,\n  { {0x9f040151, 0x00000000, 0x00000000, 0x00000000}},  //   _مولو,   ,   ,\n  { {0xa96a012b, 0xb6c800a1, 0x68fd0da6, 0x00000000}},  //   дима_, ہارے_, ftsd,\n  { {0x7ae81e2e, 0xf4cc0044, 0x2d820010, 0x00000000}},  //   ardt, _লম্ব, üket_,\n  { {0xed56012b, 0x66e601f9, 0x1d06026b, 0x00000000}},  //   _још_, кога, _реши_,\n  { {0xb5fb000c, 0x1779007c, 0x68fd0bed, 0x00000000}},  //   _smáa, есть_, atsd,\n  { {0x80d20055, 0xe5f3001a, 0xceb20097, 0x00000000}},  //   _সমস্, văţă, שין_,\n  { {0xb87b33b5, 0x46a3007e, 0x00000000, 0x00000000}},  // [aac0] tuít, ратв,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x3e7a0089, 0x00000000, 0x00000000, 0x00000000}},  //   līte_,   ,   ,\n  { {0xbebc0089, 0xb87b33b6, 0x68e909c6, 0x00000000}},  //   _brīn, suít, šede,\n  { {0x2444000c, 0x62820032, 0x200e00f6, 0x00000000}},  //   _sömu_, rooo, tefi_,\n  { {0xdcf500b9, 0x6282004a, 0xb87b00c4, 0x00000000}},  //   ůběh, sooo, luír,\n  { {0xe8e00011, 0x200e0016, 0xe8040164, 0x00000000}},  //   _ước_, refi_, श्या_,\n  { {0xf773009b, 0x00000000, 0x00000000, 0x00000000}},  //   יקו_,   ,   ,\n  { {0x5ea30025, 0xdb1a33b7, 0x00000000, 0x00000000}},  //   جميل, natö,   ,\n  { {0xe7ee024c, 0xb87b000c, 0x515b00a3, 0x00000000}},  //   _जागा_, rrík, _חכמו,\n  { {0x3d17013d, 0xb87b000c, 0x00000000, 0x00000000}},  //   _बैठे_, srík,   ,\n  { {0x68fd00ea, 0x81c20044, 0xb87b0027, 0x00000000}},  //   ttsd, ূলক_, prík,\n  { {0xb87b004a, 0x00000000, 0x00000000, 0x00000000}},  //   nsíg,   ,   ,\n  { {0x68fd04fb, 0x00000000, 0x00000000, 0x00000000}},  //   rtsd,   ,   ,\n  { {0x44d00046, 0x386d0182, 0x98a000d0, 0x00000000}},  //   eń_, đer_, _grič_,\n  { {0x64902427, 0x00000000, 0x00000000, 0x00000000}},  //   säil,   ,   ,\n  { {0x35b4007c, 0x9a680025, 0xdb0a0190, 0x00000000}},  // [aad0] рбур, _جميل_, _affø,\n  { {0x7bc5006c, 0x54540451, 0x798d004a, 0x00000000}},  //   _õhut, авут, _iyaw,\n  { {0xd3a70245, 0x6aad0020, 0x320f00ab, 0x00000000}},  //   трап, _kiaf, tegy_,\n  { {0xe45f0039, 0x1fcf0044, 0x798d0045, 0x00000000}},  //   _stöd_, _রাইস, _kyaw,\n  { {0xf1b91e34, 0xc7b80107, 0x91050783, 0x00000000}},  //   _naše_, žđe_, упле,\n  { {0x244400f8, 0x00000000, 0x00000000, 0x00000000}},  //   _döms_,   ,   ,\n  { {0x661d1bbf, 0x44fd0026, 0x6490006c, 0x00000000}},  //   _kask, lì_, käij,\n  { {0x7658010a, 0x80d20044, 0xa5bb0051, 0x00000000}},  //   _įvyk, _সমর্, _gnót,\n  { {0x798d003f, 0x44fd0026, 0xdbcd004a, 0x00000000}},  //   _nyaw, nì_, _añád,\n  { {0x661d098a, 0x64570082, 0x98a000ca, 0x00000000}},  //   _lask, nhxi, _prič_,\n  { {0x15e30061, 0x798d00e0, 0x765600b0, 0x00000000}},  //   गणार_, _ayaw, yhyy,\n  { {0xceb200b6, 0x1cb90054, 0x661d008a, 0x00000000}},  //   _היא_, _كاتب_, _nask,\n  { {0xfce5004c, 0x798d0009, 0x82760049, 0x00000000}},  //   _соло, _cyaw, רערע_,\n  { {0x6e3b0f3a, 0x7e69010a, 0x44fd0207, 0x00000000}},  //   ljub, liep, dì_,\n  { {0xcfd80055, 0x661d33b8, 0x869a0478, 0x00000000}},  //   _সামন, _bask, етат_,\n  { {0x661d01ee, 0xe3cd0044, 0x6e3b01e5, 0x00000000}},  //   _cask, _লাগব, njub,\n  { {0x6d490022, 0x661d04eb, 0xe3b201d8, 0x00000000}},  // [aae0] nyea, _dask, مرا_,\n  { {0xf8bf00f4, 0xdb1a3142, 0x69d6014a, 0x00000000}},  //   uvée_, ratö, _heye,\n  { {0xf8bf009d, 0x3775007c, 0x6d4900d9, 0x00000000}},  //   rvée_, _выяс, hyea,\n  { {0x661d002b, 0x629b0212, 0x7e6933b9, 0x00000000}},  //   _gask, _chuo, jiep,\n  { {0x91e31548, 0xf77202fd, 0xa06a00c0, 0x00000000}},  //   соче, _خاک_, нада_,\n  { {0x69d60211, 0x661d0871, 0x6d490253, 0x00000000}},  //   _leye, _zask, dyea,\n  { {0xe29600ed, 0x661d0022, 0x09da0044, 0x00000000}},  //   _браќ, _yask, _থানা,\n  { {0x798903b2, 0xe804006e, 0xf1b91032, 0x00000000}},  //   żewi, श्ता_, _paše_,\n  { {0xacb4012b, 0x6aad1a48, 0x75240023, 0x00000000}},  //   јбољ, _riaf, nviz,\n  { {0xf1b91e34, 0x4cc30044, 0x6aad33ba, 0x00000000}},  //   _vaše_, _শিশু, _siaf,\n  { {0xaa592672, 0x69d60056, 0x3f8c014a, 0x00000000}},  //   вину_, _beye, _uydu_,\n  { {0xc33300b6, 0x201e1636, 0x00000000, 0x00000000}},  //   צור_, _hati_,   ,\n  { {0x201e000b, 0x69d6006b, 0x9a8407d0, 0x00000000}},  //   _kati_, _deye, суэл,\n  { {0x661d001e, 0x75240107, 0x201e04cb, 0x00000000}},  //   _sask, dviz, _jati_,\n  { {0x7bda0004, 0x661d33bb, 0x201e033b, 0x00000000}},  //   matu, _pask, _mati_,\n  { {0x7bda168e, 0x201e1a99, 0x69d605eb, 0x00000000}},  //   latu, _lati_, _geye,\n  { {0x661d0030, 0xdddb093f, 0x764d033b, 0x00000000}},  // [aaf0] _vask, nouš, rkay,\n  { {0x7d1d0030, 0x201e038d, 0xd37b00c0, 0x00000000}},  //   æssi, _nati_, нче_,\n  { {0xd5b103ab, 0x629b0011, 0x44fd0197, 0x00000000}},  //   _وفد_, _phuo, sì_,\n  { {0x7bda006c, 0x1af70049, 0x44fd0026, 0x00000000}},  //   hatu, רמאל_, pì_,\n  { {0x7bda2355, 0x201e1635, 0xf8b50164, 0x00000000}},  //   katu, _bati_, ंदिय,\n  { {0x7bda1ab1, 0xd2d703ab, 0xd0090175, 0x00000000}},  //   jatu, _مغرب, теке_,\n  { {0x7bda0004, 0x201e0198, 0x7e6900b5, 0x00000000}},  //   datu, _dati_, tiep,\n  { {0xb87b2346, 0xddc20046, 0x6d5b022b, 0x00000000}},  //   nsíb, _iloś, tzua,\n  { {0x69d60211, 0xee3600a5, 0x7e690190, 0x00000000}},  //   _reye, рны_, riep,\n  { {0x7bda0c0e, 0x201e0065, 0x442100f8, 0x00000000}},  //   gatu, _gati_, ndh_,\n  { {0x44210195, 0xbf1502fd, 0x66040036, 0x00000000}},  //   idh_, _خواب, yfik,\n  { {0x201e33bc, 0x3cee0061, 0x00000000, 0x00000000}},  //   _zati_, _आमचे_,   ,\n  { {0x7bda168e, 0x8e840025, 0xed1600a1, 0x00000000}},  //   batu, _النه, _نہيں_,\n  { {0x7bda2702, 0x6c790049, 0x8d5a009b, 0x00000000}},  //   catu, _שאַפ, _בכני,\n  { {0x07a6012b, 0x45d60113, 0x61fb0325, 0x00000000}},  //   равн, ицат, _ocul,\n  { {0x645500d4, 0x443118ce, 0xc87f01a2, 0x00000000}},  //   _alzi, _anz_, wußt_,\n  { {0xb4660269, 0x660401a3, 0x4466007e, 0x00000000}},  // [ab00] акал, rfik, авав,\n  { {0x752433bd, 0x3eaf00b5, 0x61fb1fcb, 0x00000000}},  //   rviz, _ligt_, _acul,\n  { {0x3a200736, 0x201e002b, 0xdddb00b9, 0x00000000}},  //   _kaip_, _rati_, dluž,\n  { {0x4421002a, 0x201e0363, 0x7bda002d, 0x00000000}},  //   adh_, _sati_, zatu,\n  { {0x201e0263, 0x7c21001c, 0x7bda09f5, 0x00000000}},  //   _pati_, kdlr, yatu,\n  { {0x3ced24c0, 0x7ee6007c, 0x3e7a0089, 0x00000000}},  //   drev_, ацие, dīta_,\n  { {0x7bda143d, 0x201e01ee, 0xa2e301ab, 0x00000000}},  //   vatu, _vati_, _морд,\n  { {0xf53f0afc, 0x7bda0020, 0x201e08e3, 0x00000000}},  //   _igår_, watu, _wati_,\n  { {0x7bda24c3, 0xdd97007c, 0x777e03e2, 0x00000000}},  //   tatu, ишь_, _lxpx,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7bda022b, 0xfee90025, 0xddc90089, 0x00000000}},  //   ratu, _معنى_, sneš,\n  { {0x7bda24c3, 0x3ced0c7b, 0xdddb00b9, 0x00000000}},  //   satu, brev_, pouš,\n  { {0x7bda2092, 0xf1b90087, 0x00000000, 0x00000000}},  //   patu, _jaša_,   ,\n  { {0x5887008b, 0x27ed001f, 0xdca3003b, 0x00000000}},  //   рыма, ßen_, _дачи,\n  { {0x27ed014a, 0x00000000, 0x00000000, 0x00000000}},  //   ğen_,   ,   ,\n  { {0xe65401fb, 0x27ed014a, 0x00000000, 0x00000000}},  //   овсь, şen_,   ,\n  { {0x69dd0004, 0x26c50006, 0xa49b01aa, 0x00000000}},  // [ab10] mase, ūlo_, _opòt,\n  { {0x69dd0004, 0x57f500aa, 0x03c70f62, 0x00000000}},  //   lase, _упот, рсам,\n  { {0x94a800ed, 0x44210065, 0xa6ab03ab, 0x00000000}},  //   ртта_, rdh_, _لاحق_,\n  { {0x69dd1448, 0x7bd8009d, 0x44310190, 0x00000000}},  //   nase, _levu, _wnz_,\n  { {0xe4a700ed, 0x44310087, 0xe4e405b8, 0x00000000}},  //   _врво, _tnz_, _мірн,\n  { {0x69dd2222, 0xe2d9026c, 0xf1b92782, 0x00000000}},  //   hase, _مارچ_, _daša_,\n  { {0x69dd33be, 0x2d8f0030, 0x2a69010e, 0x00000000}},  //   kase, _syge_, _omab_,\n  { {0xdddb0340, 0x3e7a0089, 0xa49b000a, 0x00000000}},  //   služ, tīta_, _epòt,\n  { {0x69dd33bf, 0x7bd80197, 0x4bd91e2c, 0x00000000}},  //   dase, _bevu, льня_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x69dd0109, 0x7bd812b9, 0x3b09003b, 0x00000000}},  //   fase, _devu, ћемо_,\n  { {0x69dd009f, 0x7a3f0065, 0x7bce000c, 0x00000000}},  //   gase, _këty, ðbur,\n  { {0xa3d70164, 0x2f012704, 0x7e7e0010, 0x00000000}},  //   सरा_, lóg_, éppe,\n  { {0x7bd801b5, 0x2902016e, 0x2a69000a, 0x00000000}},  //   _gevu, rtka_, _emab_,\n  { {0x3a20010a, 0x69dd0292, 0x29021712, 0x00000000}},  //   _taip_, base, stka_,\n  { {0x69dd0f6a, 0x69c100b9, 0xaac403ec, 0x00000000}},  //   case, ělec, _بتون,\n  { {0xe5a301bd, 0x69c401f3, 0x291e0089, 0x00000000}},  // [ab20] зити, _ifie, ātas_,\n  { {0xb87b0285, 0xb3e90380, 0x2eee0016, 0x00000000}},  //   rsíc, لعمل_, yrff_,\n  { {0xf1b9016c, 0x68e40018, 0xa49b00d4, 0x00000000}},  //   _saša_, _hvid, _apòs,\n  { {0xf1b90089, 0xa49b0173, 0x2007000c, 0x00000000}},  //   _paša_, _spòt, efni_,\n  { {0xcfcf0055, 0x7bc100f8, 0x68e40087, 0x00000000}},  //   _রাজন, kclu, _jvid,\n  { {0xf1b90465, 0xfc220044, 0x3ae3014a, 0x00000000}},  //   _vaša_, _পক্ষ_, kıp_,\n  { {0x7bd800f4, 0x69dd014a, 0x7646010a, 0x00000000}},  //   _revu, yase, _koky,\n  { {0x68e4001a, 0xf1b900d0, 0x5d5402dc, 0x00000000}},  //   _ovid, _taša_, жкит,\n  { {0x7646010a, 0x69dd006c, 0x7bd801ee, 0x00000000}},  //   _moky, vase, _pevu,\n  { {0x40960054, 0x69c40016, 0xb4d6006e, 0x00000000}},  //   _الطر, _afie, _सबै_,\n  { {0x68e4117e, 0x6a151079, 0x00000000, 0x00000000}},  //   _avid, омну,   ,\n  { {0x76460173, 0x7bc3000c, 0x00000000, 0x00000000}},  //   _noky, _efnu,   ,\n  { {0xd90f007a, 0x64430039, 0x69dd33c0, 0x00000000}},  //   رید_, önik, rase,\n  { {0x69dd03b6, 0x68e40006, 0x9f450048, 0x00000000}},  //   sase, _dvid, _gcló_,\n  { {0xf77306dd, 0x69dd001a, 0x7ac6003b, 0x00000000}},  //   ساس_, pase, _усле,\n  { {0x8afc0036, 0xda7b02dc, 0x00000000, 0x00000000}},  //   rzęd, _щял_,   ,\n  { {0x26de139d, 0x764612f4, 0x6e2200ea, 0x00000000}},  // [ab30] átor_, _doky, _maob,\n  { {0xa3a701fc, 0xe8b50061, 0x00000000, 0x00000000}},  //   бјек, ंदीच,   ,\n  { {0x80d20044, 0x00000000, 0x00000000, 0x00000000}},  //   _সমগ্,   ,   ,\n  { {0x09ad0055, 0x99890ce4, 0x8afb0049, 0x00000000}},  //   _ক্যা, _znaš_, רלאז,\n  { {0x7bc100bb, 0x3ae30095, 0x68e414f9, 0x00000000}},  //   yclu, zıp_, _xvid,\n  { {0x3ae3014a, 0x7bc133c1, 0x7ff50014, 0x00000000}},  //   yıp_, xclu, زستا,\n  { {0xee39012b, 0x8fa2026b, 0x2007012d, 0x00000000}},  //   инк_, маше, rfni_,\n  { {0x44231555, 0x6e2212a9, 0x2f011e72, 0x00000000}},  //   _haj_, _caob, róg_,\n  { {0x64470119, 0x442301d9, 0x628b09f4, 0x00000000}},  //   _koji, _kaj_, mogo,\n  { {0x628b0036, 0x60c90038, 0x3d09013d, 0x00000000}},  //   logo, _item, _वहीं_,\n  { {0x3b090216, 0x64470119, 0xeb990256, 0x00000000}},  //   шено_, _moji, рин_,\n  { {0x628b016c, 0x6447185b, 0x442301aa, 0x00000000}},  //   nogo, _loji, _laj_,\n  { {0xe8f701e1, 0x7bc100bb, 0x7e6b0009, 0x00000000}},  //   оля_, pclu, _imgp,\n  { {0x44230b9f, 0x6e220142, 0x6490006c, 0x00000000}},  //   _naj_, _zaob, näit,\n  { {0x61e9003b, 0xa7aa33c2, 0xf1b90059, 0x00000000}},  //   _odel, рква_, _našo_,\n  { {0x68e402b6, 0x61e908ff, 0x7c230de7, 0x00000000}},  //   _tvid, _ndel, _hanr,\n  { {0x68e40161, 0x628b0016, 0x64470091, 0x00000000}},  // [ab40] _uvid, dogo, _boji,\n  { {0x61e9206d, 0x6447008e, 0x442333c3, 0x00000000}},  //   _adel, _coji, _caj_,\n  { {0x26050316, 0x7c230129, 0xb724007a, 0x00000000}},  //   _हॉकी_, _manr, _عکسه,\n  { {0x7afd0046, 0xd62a012b, 0x6b7a0049, 0x00000000}},  //   ństw, _томе_, ברענ,\n  { {0x61e90016, 0x44231204, 0xfe7900b9, 0x00000000}},  //   _ddel, _faj_, dnů_,\n  { {0x61e9021e, 0x2912000b, 0x6e22003b, 0x00000000}},  //   _edel, _mpya_, _saob,\n  { {0xcf260025, 0xddc200e5, 0x00000000, 0x00000000}},  //   ترشي, _cloş,   ,\n  { {0x7c2301b5, 0x442333c4, 0x00000000, 0x00000000}},  //   _aanr, _zaj_,   ,\n  { {0x212d10c1, 0x7c230a47, 0x998000b9, 0x00000000}},  //   _greh_, _banr, _aniž_,\n  { {0x4cc30055, 0x61e90059, 0x7c230016, 0x00000000}},  //   _শিখু, _zdel, _canr,\n  { {0x6e22002a, 0x7c231e36, 0x61e90030, 0x00000000}},  //   _taob, _danr, _ydel,\n  { {0xbebc001e, 0xf1b1013d, 0x00000000, 0x00000000}},  //   _brīv, ुँचन,   ,\n  { {0xd91000a1, 0x649000b0, 0x7eb50006, 0x00000000}},  //   نیٹ_, näis, _išpa,\n  { {0x7c230016, 0x00000000, 0x00000000, 0x00000000}},  //   _ganr,   ,   ,\n  { {0x44230089, 0xe9f90011, 0x466b007e, 0x00000000}},  //   _raj_, _chả_, арам_,\n  { {0x442333c5, 0x644700ca, 0xf1b90006, 0x00000000}},  //   _saj_, _soji, _rašo_,\n  { {0x44230263, 0x64470224, 0x628b0091, 0x00000000}},  // [ab50] _paj_, _poji, vogo,\n  { {0xe94400a1, 0x8afc0036, 0xb87b0051, 0x00000000}},  //   _آرٹی, częc, msío,\n  { {0x64470107, 0xb87b0051, 0x442333c6, 0x00000000}},  //   _voji, lsío, _vaj_,\n  { {0xb87b0181, 0xf1b90059, 0xb5fb00fa, 0x00000000}},  //   juíz, _vašo_, _amáv,\n  { {0x44230119, 0x628b33c7, 0x6490006c, 0x00000000}},  //   _taj_, rogo, täit,\n  { {0x44b4005e, 0x37d90044, 0x628b0145, 0x00000000}},  //   _обяс, _তাঁর, sogo,\n  { {0x13590025, 0x29041a6f, 0x0018007e, 0x00000000}},  //   _الأخ_, çmaz_, іўшы_,\n  { {0x7c230207, 0x5214003b, 0xa77c009b, 0x00000000}},  //   _sanr, _одст, ירופ,\n  { {0x60c900d0, 0x61e4000c, 0xa158085f, 0x00000000}},  //   _utem, ðile, _дату_,\n  { {0xf8bf01e5, 0x00000000, 0x00000000, 0x00000000}},  //   rvél_,   ,   ,\n  { {0xf98900bd, 0x7c231e5f, 0xdce7014a, 0x00000000}},  //   _ער_, _vanr, ğlık,\n  { {0xc869019b, 0xdce7014a, 0x69c10036, 0x00000000}},  //   _גן_, şlık, ślen,\n  { {0x7c23005d, 0x00000000, 0x00000000, 0x00000000}},  //   _tanr,   ,   ,\n  { {0x6490003c, 0xe9f90082, 0xccf90036, 0x00000000}},  //   häir, _phả_, muś_,\n  { {0x2bd1001c, 0x186701fc, 0x07a300ed, 0x00000000}},  //   _द्या, чари_, еарн,\n  { {0x6b9c010f, 0x7e7b006c, 0x98a0012d, 0x00000000}},  //   ürge, nnup, _orić_,\n  { {0xcaa505f3, 0x05660605, 0x29120020, 0x00000000}},  // [ab60] _تصوي, чван, _upya_,\n  { {0xe9f90011, 0x69c60240, 0xb87b00c4, 0x00000000}},  //   _thả_, lcke, nsíl,\n  { {0xdc9a0049, 0x69450123, 0x00000000, 0x00000000}},  //   ציעל, _فضیل,   ,\n  { {0x6490021e, 0xcfd80044, 0xf1260088, 0x00000000}},  //   täis, _সাইন, зько,\n  { {0xc5f300a3, 0x00000000, 0x00000000, 0x00000000}},  //   _אדר_,   ,   ,\n  { {0x649000b0, 0x5f940fd8, 0x859b009b, 0x00000000}},  //   räis, милт, _לשכו,\n  { {0x6383025f, 0x443833c8, 0x98a0016c, 0x00000000}},  //   _згра, _inr_, _erić_,\n  { {0x444401d9, 0x649033c9, 0x76440009, 0x00000000}},  //   lj_, päis, njiy,\n  { {0x443833ca, 0x4444179b, 0x628000d9, 0x00000000}},  //   _knr_, oj_, _ijmo,\n  { {0x444401d9, 0xfd0f0379, 0x7e7b00f6, 0x00000000}},  //   nj_, اجي_, anup,\n  { {0x44380007, 0x444400bb, 0x4f660076, 0x00000000}},  //   _mnr_, ij_, _عاطف,\n  { {0x7f3b00b6, 0x6aa400f4, 0x61e2087c, 0x00000000}},  //   _לעבו, _chif, naol,\n  { {0x81e10044, 0x3ebe1ad0, 0x5a34005e, 0x00000000}},  //   _দাম_, _hutt_, хнят,\n  { {0x8c43005e, 0x98a9050f, 0x3ebe0cfd, 0x00000000}},  //   _пече, _trač_, _kutt_,\n  { {0x44440232, 0x3ebe006c, 0x7c3833cb, 0x00000000}},  //   dj_, _jutt_, _invr,\n  { {0x44440046, 0x7afa0052, 0x61e2006c, 0x00000000}},  //   ej_, mutt, jaol,\n  { {0x7afa021e, 0x4438001a, 0xe97300a1, 0x00000000}},  // [ab70] lutt, _bnr_, _سندھ,\n  { {0x7c28018d, 0x44380197, 0x444433cc, 0x00000000}},  //   nddr, _cnr_, gj_,\n  { {0x2c0e0061, 0x7afa0374, 0x443833cd, 0x00000000}},  //   त्यू_, nutt, _dnr_,\n  { {0x44440065, 0x645c00d4, 0x27e3002b, 0x00000000}},  //   aj_, _elri, lajn_,\n  { {0x44440061, 0x7afa0dcd, 0x92b401d8, 0x00000000}},  //   bj_, hutt, رحما,\n  { {0x7afa33ce, 0x443800c4, 0x3ebe0133, 0x00000000}},  //   kutt, _gnr_, _butt_,\n  { {0x9ea90256, 0x69c60039, 0x7afa33cf, 0x00000000}},  //   овка_, ycke, jutt,\n  { {0x7afa33d0, 0xa29401fb, 0x7c280328, 0x00000000}},  //   dutt, _засі, eddr,\n  { {0x3e6a007a, 0x6aa40016, 0xc212009b, 0x00000000}},  //   تجوی_, _rhif, _בהן_,\n  { {0x6aa4166d, 0x8b0700b9, 0x7afa1b8a, 0x00000000}},  //   _shif, _naří, futt,\n  { {0x28b701f5, 0x7afa06d3, 0x00000000, 0x00000000}},  //   _इंजि, gutt,   ,\n  { {0x60db0045, 0x00000000, 0x00000000, 0x00000000}},  //   _kwum,   ,   ,\n  { {0x752d0107, 0xb5fb01ca, 0x6d4606ec, 0x00000000}},  //   jvaz, _mlád, økat,\n  { {0x7afa0056, 0xed16026c, 0x6e290016, 0x00000000}},  //   butt, _کہیں_, ldeb,\n  { {0x66e60088, 0x3ebe002b, 0x7afa0095, 0x00000000}},  //   ьова, _xutt_, cutt,\n  { {0x6e291d47, 0x44440061, 0x44380253, 0x00000000}},  //   ndeb, wj_, _snr_,\n  { {0xa507003b, 0xfaa70123, 0xc9860025, 0x00000000}},  // [ab80] мета_, _تجوی, _تشغي,\n  { {0xa3ba0025, 0x44440089, 0x7d090a59, 0x00000000}},  //   زائر_, uj_, ites,\n  { {0x0206008b, 0x7d0933d1, 0x44442678, 0x00000000}},  //   дзен, htes, rj_,\n  { {0x8b070224, 0x7d0920a7, 0x44440944, 0x00000000}},  //   _zaří, ktes, sj_,\n  { {0x7d090065, 0x5183012b, 0x61e20051, 0x00000000}},  //   jtes, куша, raol,\n  { {0x645c06d3, 0xdfcf057d, 0x3ebe0f51, 0x00000000}},  //   _ulri, ليه_, _putt_,\n  { {0x61e20026, 0x08770049, 0x98aa0006, 0x00000000}},  //   paol, ועסט_, škės_,\n  { {0x27e30626, 0x7d090065, 0x7afa00b0, 0x00000000}},  //   zajn_, ftes, vutt,\n  { {0x7eb50006, 0x7d090010, 0xc0060999, 0x00000000}},  //   _išpl, gtes, _опак,\n  { {0x61e00039, 0x7afa08a6, 0x3ebe0197, 0x00000000}},  //   _heml, tutt, _tutt_,\n  { {0x93f700b3, 0x201c33d2, 0x7d0900ab, 0x00000000}},  //   וציא_, mevi_, ates,\n  { {0x60c033d3, 0x7afa0409, 0xd9ad0055, 0x00000000}},  //   _kumm, rutt, _ক্ষম,\n  { {0x27e301ee, 0x61e0014a, 0x7d0933d4, 0x00000000}},  //   tajn_, _meml, ctes,\n  { {0x60c000b0, 0x7afa00b0, 0xa8a400ed, 0x00000000}},  //   _mumm, putt, врск,\n  { {0xf794008b, 0x27e301d5, 0x60c0010e, 0x00000000}},  //   варэ, rajn_, _lumm,\n  { {0x61e0068f, 0xb5fb0051, 0x00000000, 0x00000000}},  //   _neml, _amár,   ,\n  { {0xddc90089, 0xd9ad0044, 0x660d006b, 0x00000000}},  // [ab90] nieš, _ক্রম, rfak,\n  { {0x752d01bc, 0x201c0166, 0x660d00b4, 0x00000000}},  //   rvaz, jevi_, sfak,\n  { {0xd37106f1, 0xa3a903d7, 0xc7d600b6, 0x00000000}},  //   دها_, खें_, _אותי_,\n  { {0x3a2900b5, 0xa4d50088, 0xd3a405f6, 0x00000000}},  //   _jaap_, _помі, труп,\n  { {0xb5fb0428, 0x7bca03e2, 0x3a2904be, 0x00000000}},  //   _vlád, _offu, _maap_,\n  { {0x8fa501bd, 0x60c004fb, 0x78fc009b, 0x00000000}},  //   нале, _dumm, קלופ,\n  { {0x2eb500ed, 0xd00e0379, 0x6e2933d5, 0x00000000}},  //   нсис, صلي_, tdeb,\n  { {0x6d250113, 0x26c10087, 0x60db0009, 0x00000000}},  //   едиз, _muho_, _twum,\n  { {0x6fca02d2, 0x6e290007, 0x26c10058, 0x00000000}},  //   _स्कू, rdeb, _luho_,\n  { {0x61e014d5, 0x201c33d6, 0xf1b907ac, 0x00000000}},  //   _zeml, cevi_, _naši_,\n  { {0x09ad0055, 0x7d0933d7, 0x224d33d8, 0x00000000}},  //   _ক্লা, stes, _koek_,\n  { {0x60c0013f, 0x7bca0912, 0x7d0929b5, 0x00000000}},  //   _yumm, _effu, ptes,\n  { {0x3ead0374, 0xddc9001e, 0x68fd0022, 0x00000000}},  //   mmet_, cieš, gusd,\n  { {0x3ead0010, 0x26c1004a, 0x224d00d9, 0x00000000}},  //   lmet_, _buho_, _loek_,\n  { {0x5a9600ed, 0x60130279, 0x6a960088, 0x00000000}},  //   _приф, mımı, _приє,\n  { {0x09da0055, 0x3a290725, 0xb5fb0092, 0x00000000}},  //   _থাকা, _gaap_, _aláb,\n  { {0xceb20097, 0x33f617b1, 0x3ead22c1, 0x00000000}},  // [aba0] רין_, ечес, imet_,\n  { {0x60c00193, 0x3ead011f, 0x6013005d, 0x00000000}},  //   _rumm, hmet_, nımı,\n  { {0x224d0100, 0x60c00038, 0x779402fd, 0x00000000}},  //   _boek_, _summ, _شیرا,\n  { {0x3ead0065, 0x27e1010f, 0x20050026, 0x00000000}},  //   jmet_, _zehn_, _acli_,\n  { {0x645b0047, 0x201c33d9, 0x3ead0027, 0x00000000}},  //   áció, tevi_, dmet_,\n  { {0xddc90e3f, 0xe4d70025, 0x3ea600ab, 0x00000000}},  //   vieš, _سوفت_, _shot_,\n  { {0x53a3005e, 0x201c014a, 0x5f9319e9, 0x00000000}},  //   _барб, revi_, лишт,\n  { {0x442a001f, 0x60c00bf4, 0xaf3300a1, 0x00000000}},  //   _hab_, _tumm, اروت,\n  { {0x644e0046, 0x442a0f2d, 0x201c08eb, 0x00000000}},  //   _kobi, _kab_, pevi_,\n  { {0x224d02ae, 0xddc91fb9, 0x442a01a3, 0x00000000}},  //   _zoek_, rieš, _jab_,\n  { {0x442a030c, 0x3ea60065, 0x59f9005e, 0x00000000}},  //   _mab_, _thot_, меня_,\n  { {0x2456000c, 0x68fd0894, 0x2a600048, 0x00000000}},  //   _dæmi_, tusd, _clib_,\n  { {0x2bd103d7, 0x442a0181, 0xf1b90089, 0x00000000}},  //   _द्वा, _oab_, _paši_,\n  { {0x644e0207, 0x442a0145, 0x6013005a, 0x00000000}},  //   _nobi, _nab_, cımı,\n  { {0xf1b91504, 0x443f33da, 0x7c2a298f, 0x00000000}},  //   _vaši_, _đu_, _iafr,\n  { {0x442a0030, 0x3a290319, 0x7c2a0fe9, 0x00000000}},  //   _aab_, _uaap_, _hafr,\n  { {0x442a033b, 0x59d40025, 0x644e2b5a, 0x00000000}},  // [abb0] _bab_, _صغير, _bobi,\n  { {0x442a0675, 0x224d0343, 0x644e16ab, 0x00000000}},  //   _cab_, _soek_, _cobi,\n  { {0x644e0213, 0x7c2a33db, 0x225f01d6, 0x00000000}},  //   _dobi, _mafr, _pluk_,\n  { {0x7c2a01aa, 0x442a0032, 0x41b51289, 0x00000000}},  //   _lafr, _eab_, نمار,\n  { {0x442a3059, 0x998033dc, 0x60130279, 0x00000000}},  //   _fab_, _kaiš_, yımı,\n  { {0x644e0219, 0x80d30055, 0x442a33dd, 0x00000000}},  //   _gobi, _সিদ্, _gab_,\n  { {0x3ead0023, 0x00000000, 0x00000000, 0x00000000}},  //   tmet_,   ,   ,\n  { {0x3eb90203, 0x68ed00ca, 0x7c2a006c, 0x00000000}},  //   öst_, _ovad, _aafr,\n  { {0x3ead053e, 0x5187017f, 0x60130279, 0x00000000}},  //   rmet_, _чува, tımı,\n  { {0x09e10055, 0x3ead0006, 0x69cd0016, 0x00000000}},  //   _ভাষা, smet_, _afae,\n  { {0x601301f6, 0x68ed33de, 0x7c2a12f0, 0x00000000}},  //   rımı, _avad, _dafr,\n  { {0x161100e8, 0x68ed0146, 0x00000000, 0x00000000}},  //   _डॉलर_, _bvad,   ,\n  { {0xed4e102a, 0x60130095, 0x68ed00e5, 0x00000000}},  //   _то_, pımı, _cvad,\n  { {0x68ed31ee, 0x315601ce, 0x38a40039, 0x00000000}},  //   _dvad, דישן_, föra_,\n  { {0x644e0620, 0x6b6633df, 0x68ed0035, 0x00000000}},  //   _robi, _végé, _evad,\n  { {0x644e33e0, 0xdbe2009d, 0x7c2a016e, 0x00000000}},  //   _sobi, _rééd, _zafr,\n  { {0xd040005f, 0x644e33e1, 0x6e2b006a, 0x00000000}},  // [abc0] _etmə, _pobi, _magb,\n  { {0x446301f9, 0x42d601ff, 0x037a01b7, 0x00000000}},  //   авув, віду, وحات_,\n  { {0x644e000a, 0x442a0203, 0xf206007e, 0x00000000}},  //   _vobi, _vab_, вяло,\n  { {0x6e2b006a, 0xd2590088, 0x90e60014, 0x00000000}},  //   _nagb, нці_, نستن,\n  { {0x442a09e0, 0xa06a01ee, 0x00000000, 0x00000000}},  //   _tab_, мада_,   ,\n  { {0x442a010a, 0x627c01dc, 0x644e0091, 0x00000000}},  //   _uab_, jčov, _uobi,\n  { {0x7c2a33e2, 0x6e2b0190, 0xe9f90082, 0x00000000}},  //   _rafr, _bagb, _chẻ_,\n  { {0x7c2a1529, 0x6604027e, 0x387801a2, 0x00000000}},  //   _safr, ngik, hirr_,\n  { {0xa3d6007d, 0xdbdc000c, 0x6282109a, 0x00000000}},  //   _सभा_, _báðu, mnoo,\n  { {0x3fcb1125, 0x00000000, 0x00000000, 0x00000000}},  //   _قدمی_,   ,   ,\n  { {0x6fd80164, 0x68ed3190, 0x6e2b0637, 0x00000000}},  //   _न्यू, _svad, _fagb,\n  { {0x6f79007b, 0x628200c7, 0xfee90025, 0x00000000}},  //   _אָנג, nnoo, _أعلى_,\n  { {0x6e2033e3, 0xe0c00044, 0xd8770379, 0x00000000}},  //   memb, _উবুন, ناسب,\n  { {0x6e200be2, 0x58d40256, 0x7d00030e, 0x00000000}},  //   lemb, рорт, mums,\n  { {0x7e6200b5, 0x8c1b009b, 0x6e2b00e0, 0x00000000}},  //   _klop, _חווי, _yagb,\n  { {0x6e2004d4, 0x80d30044, 0x66040176, 0x00000000}},  //   nemb, _সিস্, ggik,\n  { {0xa5070057, 0x39440039, 0x5507005e, 0x00000000}},  // [abd0] ъявл, ämst_, ъчва,\n  { {0x07eb026c, 0x6e200145, 0xd37b00e3, 0x00000000}},  //   _کرکٹ_, hemb, мче_,\n  { {0x6e2033e4, 0x623500ed, 0x764f0016, 0x00000000}},  //   kemb, лежу, _tocy,\n  { {0x7d0016aa, 0x625300c4, 0xcb130049, 0x00000000}},  //   kums, _açor, ילע_,\n  { {0xed46025a, 0x7d001e5f, 0xe4e40088, 0x00000000}},  //   _اپ_, jums, _вісн,\n  { {0xaa2003d7, 0x6e2b00ea, 0x628201d6, 0x00000000}},  //   _बस्छ_, _sagb, anoo,\n  { {0x4421012d, 0x6e2b006a, 0xdbdc000c, 0x00000000}},  //   meh_, _pagb, _ráðu,\n  { {0x4421027e, 0x7e62001a, 0x3e7a0089, 0x00000000}},  //   leh_, _clop, dīts_,\n  { {0xf1b90089, 0x7d000089, 0x00000000, 0x00000000}},  //   _pašu_, gums,   ,\n  { {0xe9f9001d, 0x44210059, 0x7e620145, 0x00000000}},  //   _thẻ_, neh_, _elop,\n  { {0xf1b933e5, 0x09e60069, 0x6e201baa, 0x00000000}},  //   _vašu_, лонн, bemb,\n  { {0xcd3504e8, 0x44212c76, 0x7d000240, 0x00000000}},  //   _مرتب, heh_, bums,\n  { {0x9f470065, 0x4421008a, 0xdea1025a, 0x00000000}},  //   kanë_, keh_, _پیکی,\n  { {0x44210209, 0x6c790049, 0x00000000, 0x00000000}},  //   jeh_, _ראַפ,   ,\n  { {0x44210229, 0x91e301f5, 0x7c2101d6, 0x00000000}},  //   deh_, खराज_, melr,\n  { {0x7874006b, 0x00000000, 0x00000000, 0x00000000}},  //   _müvə,   ,   ,\n  { {0xe9f90011, 0x85060025, 0x9f4c0026, 0x00000000}},  // [abe0] _nhẹ_, طوان, _addì_,\n  { {0x6e2033e6, 0x29020169, 0x44210145, 0x00000000}},  //   zemb, muka_, geh_,\n  { {0x6e20011c, 0x29020091, 0x628201d6, 0x00000000}},  //   yemb, luka_, tnoo,\n  { {0x26d808d3, 0xa77b0097, 0xe6460256, 0x00000000}},  //   mpro_, _טריפ, _семп,\n  { {0x29020027, 0x6282066a, 0xb87b00c4, 0x00000000}},  //   nuka_, rnoo, rsív,\n  { {0x3cf903d7, 0xb87b02d5, 0x628200bb, 0x00000000}},  //   ोंने_, ssív, snoo,\n  { {0x29020569, 0xda0a0061, 0x7e620035, 0x00000000}},  //   huka_, _वाढत_, _plop,\n  { {0x7d00176f, 0x2902055b, 0xe3c1005d, 0x00000000}},  //   tums, kuka_, ğış_,\n  { {0x127b007b, 0x6e200461, 0x9be6008b, 0x00000000}},  //   _נאמע, remb, лінк,\n  { {0x7d001e49, 0x13e80055, 0x7ea50047, 0x00000000}},  //   rums, _পাড়, rópa,\n  { {0x6e201f0f, 0x7d000433, 0x7d090065, 0x00000000}},  //   pemb, sums, _përç,\n  { {0x442107b9, 0x29020020, 0xfce6025f, 0x00000000}},  //   zeh_, fuka_, _бодо,\n  { {0x6e930025, 0x3e7a0089, 0x29020020, 0x00000000}},  //   _النا, sīts_, guka_,\n  { {0x6d4600b0, 0x00000000, 0x00000000, 0x00000000}},  //   äkau,   ,   ,\n  { {0x395f08ad, 0xab27025f, 0x4421037a, 0x00000000}},  //   šus_, _боја_, veh_,\n  { {0xf8bf00f4, 0xaa0900a1, 0x9f4501d6, 0x00000000}},  //   uvés_, _شعبے_, _belê_,\n  { {0xf8bf00f4, 0x628300f4, 0x442101a3, 0x00000000}},  // [abf0] rvés_, énom, teh_,\n  { {0x225d0093, 0xb5fb008e, 0xe3b30025, 0x00000000}},  //   wkwk_, _glán, مرض_,\n  { {0x9f470065, 0x69dd00e0, 0x6aad0022, 0x00000000}},  //   ranë_, obse, _khaf,\n  { {0x64480263, 0x60cd00dc, 0x442101a3, 0x00000000}},  //   _òdin, íamo, seh_,\n  { {0x44210059, 0x9f450007, 0x614501fc, 0x00000000}},  //   peh_, _gelê_, рела,\n  { {0x00840088, 0x645e0f10, 0x3f9e2041, 0x00000000}},  //   бліо, ckpi, _bytu_,\n  { {0x29020020, 0x02a7007e, 0x656d010f, 0x00000000}},  //   zuka_, _брам, lzah,\n  { {0xee3900d7, 0x43840025, 0x29021658, 0x00000000}},  //   тни_, _الفق, yuka_,\n  { {0x656d31c1, 0x7c210232, 0x7db4007e, 0x00000000}},  //   nzah, telr, йсьц,\n  { {0x9f6b0265, 0x5c550264, 0x61eb095b, 0x00000000}},  //   _през_, ртиф, lagl,\n  { {0x29020009, 0x68fd1225, 0x656d01a2, 0x00000000}},  //   wuka_, ersd, hzah,\n  { {0xdef601f8, 0x6aad0246, 0xb5fb002a, 0x00000000}},  //   _כמעט_, _chaf, _slán,\n  { {0x8c4500ed, 0x6f03023a, 0xb5fb0161, 0x00000000}},  //   _веле, lunc, _plán,\n  { {0x2902045e, 0x61eb33e7, 0x200701e5, 0x00000000}},  //   ruka_, hagl, ngni_,\n  { {0x6f030198, 0xfaa60057, 0x7ea50181, 0x00000000}},  //   nunc, _како, nópo,\n  { {0x7afc076b, 0xdeef007e, 0x29020020, 0x00000000}},  //   árte, цыi_, puka_,\n\n  { {0x69c404b4, 0x61eb0197, 0x26d800ea, 0x00000000}},  // [ac00] _igie, dagl, spro_,\n  { {0x68e40009, 0xe45f00f8, 0x69c401f3, 0x00000000}},  //   _iwid, _stör_, _hgie,\n  { {0x6f030951, 0x0326026b, 0x87fb0049, 0x00000000}},  //   junc, рден, _בליץ,\n  { {0xb87b0010, 0x61eb0197, 0x6aad0065, 0x00000000}},  //   ssít, gagl, _xhaf,\n  { {0x7bc30207, 0x00000000, 0x00000000, 0x00000000}},  //   _ognu,   ,   ,\n  { {0xa07301fb, 0x00000000, 0x00000000, 0x00000000}},  //   огіч,   ,   ,\n  { {0x6f03071a, 0x61eb0197, 0xdc21002b, 0x00000000}},  //   gunc, bagl, _eċċi,\n  { {0xa2cb0201, 0x62890065, 0x61eb0026, 0x00000000}},  //   _तंत्, _gjeo, cagl,\n  { {0xbebc0089, 0x5c98005e, 0x90460014, 0x00000000}},  //   _krīz, лкия_, _پناه,\n  { {0x9f47120f, 0x229c000c, 0x6aad24f6, 0x00000000}},  //   zané_, ríku_, _shaf,\n  { {0xe9f9001d, 0x6f030026, 0xd4370097, 0x00000000}},  //   _chế_, cunc, בריק_,\n  { {0xc33300b6, 0x7e6900bb, 0x644100f6, 0x00000000}},  //   קור_, chep, _òliv,\n  { {0x9f470428, 0xdd920076, 0x27270016, 0x00000000}},  //   vané_, _بوش_, _sŵn_,\n  { {0xdc080089, 0x78620027, 0x68e40022, 0x00000000}},  //   _rēķi, _dôvo, _dwid,\n  { {0xe816024c, 0xe9f90011, 0x683c00f8, 0x00000000}},  //   द्धा_, _ghế_, _sådä,\n  { {0x656d010f, 0xb8fd0044, 0x9f450173, 0x00000000}},  //   tzah, _ডি_, _delè_,\n  { {0x61eb0ef1, 0x611a0089, 0x68e4002b, 0x00000000}},  // [ac10] vagl, nālā, _gwid,\n  { {0x9865026c, 0xea000011, 0x6f03005a, 0x00000000}},  //   _ایسے_, _trải_, yunc,\n  { {0x61eb129e, 0x656d010f, 0xbebc0089, 0x00000000}},  //   tagl, szah, _drīz,\n  { {0x09bb0055, 0x7e690023, 0xb5fb01e5, 0x00000000}},  //   _অ্যা, xhep, _klám,\n  { {0x61eb33e8, 0x200c0045, 0x00000000, 0x00000000}},  //   ragl, _bcdi_,   ,\n  { {0x6f0326e4, 0x00000000, 0x00000000, 0x00000000}},  //   tunc,   ,   ,\n  { {0x61eb33e9, 0x443133ea, 0xb5fb008e, 0x00000000}},  //   pagl, _iaz_, _llám,\n  { {0x6f03027b, 0x443133eb, 0x6d49022b, 0x00000000}},  //   runc, _haz_, txea,\n  { {0x443114fe, 0xee3600a5, 0x7ea533ec, 0x00000000}},  //   _kaz_, сны_, sópo,\n  { {0x3c650057, 0x443101d9, 0xac180088, 0x00000000}},  //   ског, _jaz_, ацює_,\n  { {0x61e90004, 0x64553322, 0x2012005f, 0x00000000}},  //   _keel, _mozi, əyi_,\n  { {0x60c1000c, 0x64550213, 0x78620027, 0x00000000}},  //   _hilm, _lozi, _pôvo,\n  { {0x61e90004, 0x60c10006, 0xdcc80082, 0x00000000}},  //   _meel, _kilm, _tỉa_,\n  { {0xe9f900ad, 0x64550089, 0x44310b79, 0x00000000}},  //   _thế_, _nozi, _naz_,\n  { {0xec120439, 0x00000000, 0x00000000, 0x00000000}},  //   _رويد,   ,   ,\n  { {0x9f4501ca, 0x68e40719, 0xcf9200a3, 0x00000000}},  //   _celé_, _twid, פטן_,\n  { {0x443101aa, 0x62990036, 0x05aa005e, 0x00000000}},  // [ac20] _baz_, dowo, увай_,\n  { {0x64550181, 0x4431001a, 0x48060088, 0x00000000}},  //   _cozi, _caz_, _упов,\n  { {0x6455037e, 0x61e933ed, 0xddcb0036, 0x00000000}},  //   _dozi, _beel, _mogł,\n  { {0xdb9a0049, 0x171b0049, 0x44310288, 0x00000000}},  //   אסער, _גוטע, _eaz_,\n  { {0x60c1038c, 0x443102d5, 0x61e901b5, 0x00000000}},  //   _bilm, _faz_, _deel,\n  { {0xd259001e, 0x84590098, 0x60c90197, 0x00000000}},  //   _viņa_, _крст_, _duem,\n  { {0x26c2107e, 0x60c10181, 0x61e900ab, 0x00000000}},  //   _kiko_, _dilm, _feel,\n  { {0x61e901d6, 0x62990036, 0xe29a1079, 0x00000000}},  //   _geel, cowo, _саб_,\n  { {0x4431047f, 0xe9f90082, 0xdc3c002b, 0x00000000}},  //   _yaz_, _chẽ_, _aġġu,\n  { {0x26c20006, 0x60c100c4, 0x61e900b5, 0x00000000}},  //   _liko_, _gilm, _zeel,\n  { {0xfd0f0167, 0xb4db0129, 0x6a6601e5, 0x00000000}},  //   وجی_, _gràf, _sófa,\n  { {0x26c22924, 0x00000000, 0x00000000, 0x00000000}},  //   _niko_,   ,   ,\n  { {0x2e37009b, 0x1dac007d, 0x60c10095, 0x00000000}},  //   _לראש_, _चरित, _yilm,\n  { {0x26c2082c, 0x67d40072, 0x00000000, 0x00000000}},  //   _aiko_, зору,   ,\n  { {0x27ff038c, 0x44310620, 0xeac90011, 0x00000000}},  //   ğun_, _raz_, _hẹn_,\n  { {0x645533ee, 0x4431057e, 0xea000011, 0x00000000}},  //   _sozi, _saz_, _trại_,\n  { {0x54550057, 0x61e90030, 0x44310489, 0x00000000}},  // [ac30] оват, _reel, _paz_,\n  { {0x4431005f, 0x62990c28, 0x628a00f6, 0x00000000}},  //   _qaz_, wowo, éfon,\n  { {0x64551b3b, 0x94a80265, 0x4431006b, 0x00000000}},  //   _vozi, стта_, _vaz_,\n  { {0x60c108b2, 0x443101a2, 0x00000000, 0x00000000}},  //   _silm, _waz_,   ,\n  { {0x44311515, 0xe3e80055, 0x61e90277, 0x00000000}},  //   _taz_, _পারব, _veel,\n  { {0x81e10055, 0x212d01d9, 0x26c20020, 0x00000000}},  //   _দাও_, _vseh_, _ziko_,\n  { {0x786b011f, 0x60c103c9, 0x61e9006c, 0x00000000}},  //   _güve, _vilm, _teel,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x60c10018, 0x2bda01f5, 0x60c9006c, 0x00000000}},  //   _tilm, _म्हा, _uuem,\n  { {0x2a690058, 0xb4db00d4, 0x2f4000e5, 0x00000000}},  //   _alab_, _tràf, _băgă_,\n  { {0x2dd50aef, 0xb4db00d4, 0xaa4a09e6, 0x00000000}},  //   _джер, _fràg, апна_,\n  { {0x753d0047, 0x2a690026, 0x7afc296d, 0x00000000}},  //   _orsz, _clab_, árta,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x26c20058, 0x2a69006c, 0xb7da0014, 0x00000000}},  //   _siko_, _elab_, شورا_,\n  { {0x18a3008b, 0x81ea0044, 0x26c20c8a, 0x00000000}},  //   фарм, _মাস_, _piko_,\n  { {0x8afc0036, 0x2a6900e0, 0x00000000, 0x00000000}},  //   rzęt, _glab_,   ,\n  { {0xa50a0216, 0xeac90011, 0xe5a30088, 0x00000000}},  // [ac40] реза_, _kẹo_, дити,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xeac90011, 0x26c205a0, 0x00000000, 0x00000000}},  //   _mẹo_, _tiko_,   ,\n  { {0xe29a007e, 0xe816006e, 0x00000000, 0x00000000}},  //   шае_, द्रा_,   ,\n  { {0x764601c3, 0x00000000, 0x00000000, 0x00000000}},  //   _inky,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xed50026c, 0x42d60245, 0x00000000, 0x00000000}},  //   کھا_, _фігу,   ,\n  { {0xbe8a012b, 0x2000001a, 0x42d533ef, 0x00000000}},  //   јске_, şii_, _хіру,\n  { {0xddc20036, 0xd2590089, 0xd00a003b, 0x00000000}},  //   _umoż, _ziņo_, _везе_,\n  { {0x09e3001c, 0x0bf30057, 0x2a692509, 0x00000000}},  //   पर्य, мпью, _slab_,\n  { {0x20d0001d, 0x2c6001aa, 0x4e2a00ed, 0x00000000}},  //   _hài_, _jòdi_, _воен_,\n  { {0x61e2002d, 0xb5fb01ca, 0x00000000, 0x00000000}},  //   nbol, _vlák,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x20d00011, 0xd7c90379, 0x7eb5016c, 0x00000000}},  //   _mài_, صوره_, _ušpr,\n  { {0x61e233f0, 0x7c281e3d, 0xdcc80011, 0x00000000}},  //   kbol, medr, _mỉm_,\n  { {0x61e200ee, 0xfb870014, 0x20d00082, 0x00000000}},  //   jbol, _بدهی, _oài_,\n  { {0x61e20018, 0x9f47120f, 0x20d00082, 0x00000000}},  // [ac50] dbol, vaní_, _nài_,\n  { {0xa3a7012b, 0x7c2801ee, 0x764601aa, 0x00000000}},  //   ојек, nedr, _enky,\n  { {0x8c250055, 0xd49801ff, 0x00000000, 0x00000000}},  //   বাচন_, іру_,   ,\n  { {0x20d000ad, 0x7c280133, 0x00000000, 0x00000000}},  //   _bài_, hedr,   ,\n  { {0xdd860054, 0x20d0001d, 0x71270076, 0x00000000}},  //   _أو_, _cài_, ترال,\n  { {0x20d0001d, 0x55ba00b6, 0x7c281220, 0x00000000}},  //   _dài_, _למרו, jedr,\n  { {0x61e233f1, 0xdb03004f, 0x644700f0, 0x00000000}},  //   bbol, _ozná, _inji,\n  { {0x660d04d4, 0x290200d8, 0x69db0b6d, 0x00000000}},  //   ngak, yrka_, ñuel,\n  { {0x6447092f, 0xb5fb0051, 0x61fb188a, 0x00000000}},  //   _knji, _clái, _idul,\n  { {0x7c280168, 0x60db00e7, 0x00000000, 0x00000000}},  //   gedr, _itum,   ,\n  { {0x628b0020, 0xfaa600c0, 0xbb4502d3, 0x00000000}},  //   ongo, зано, ченк,\n  { {0x752d0020, 0xce380025, 0x213f02db, 0x00000000}},  //   kwaz, _وأنا_, _kruh_,\n  { {0x7c2800b5, 0x20d00011, 0x752d32ac, 0x00000000}},  //   bedr, _xài_, jwaz,\n  { {0x60db000b, 0x7d0907ed, 0x9f4700c4, 0x00000000}},  //   _mtum, mues, canã_,\n  { {0xa7aa0057, 0x7d090efc, 0xf743007c, 0x00000000}},  //   сква_, lues, неро,\n  { {0x644704cb, 0xc6c333f2, 0xf53f02e1, 0x00000000}},  //   _anji, ейск, _brå_,\n  { {0x7d090065, 0x2bd2006e, 0xb4db00d4, 0x00000000}},  // [ac60] nues, _सलमा, _aràb,\n  { {0x39400051, 0x61fb0472, 0x628b044a, 0x00000000}},  //   _iris_, _adul, engo,\n  { {0x20d00011, 0xf8b3009b, 0x60db047b, 0x00000000}},  //   _sài_, _רשת_, _atum,\n  { {0x39400263, 0xf53f0c64, 0x7d090065, 0x00000000}},  //   _kris_, _frå_, kues,\n  { {0x463b0049, 0xc243007e, 0xf53f0c88, 0x00000000}},  //   _העכע, энцк, _grå_,\n  { {0x20d0001d, 0x61fb00b0, 0x7d090065, 0x00000000}},  //   _vài_, _edul, dues,\n  { {0x7c28049a, 0x91e6012b, 0xb5fb002a, 0x00000000}},  //   vedr, _нове, _slái,\n  { {0x20d0001d, 0x786b006b, 0x78700039, 0x00000000}},  //   _tài_, _müva, _hävd,\n  { {0x7d090181, 0x2ab20047, 0x62820103, 0x00000000}},  //   gues, kább_, mioo,\n  { {0xf04400a6, 0x628207a4, 0xdfcf0025, 0x00000000}},  //   _تعری, lioo, _ميك_,\n  { {0x7c2800eb, 0x3940008a, 0x2fd70014, 0x00000000}},  //   redr, _aris_, _روند_,\n  { {0xaf490054, 0xcf250025, 0x3940005b, 0x00000000}},  //   _بشكل_, _تركي, _bris_,\n  { {0x7d090211, 0x7c2800d4, 0xb5fb01ca, 0x00000000}},  //   cues, pedr, _kláv,\n  { {0x80e10044, 0xd918007c, 0x00000000, 0x00000000}},  //   _নিম্, чью_,   ,\n  { {0x628b0016, 0xec37009b, 0xba3b0685, 0x00000000}},  //   yngo, _מאגר_, toïd,\n  { {0x752d30f3, 0x443f011f, 0x394000bb, 0x00000000}},  //   twaz, _şu_, _fris_,\n  { {0x39401697, 0x6fcc0061, 0x660d006c, 0x00000000}},  // [ac70] _gris_, ाशां, rgak,\n  { {0x628b0016, 0x752d0251, 0x7ea51c3e, 0x00000000}},  //   wngo, rwaz, rópi,\n  { {0x290b33f3, 0x7d090065, 0x2919002d, 0x00000000}},  //   luca_, zues, ltsa_,\n  { {0xe3b00054, 0x628b33f4, 0x6282006c, 0x00000000}},  //   ارك_, ungo, gioo,\n  { {0x2919002d, 0x7d090065, 0x628b0ede, 0x00000000}},  //   ntsa_, xues, rngo,\n  { {0xf994007b, 0x8fa500e3, 0x6e290009, 0x00000000}},  //   ערס_, мале, weeb,\n  { {0x9028007e, 0xe81f01f5, 0x6e2901c3, 0x00000000}},  //   яцца_, म्या_, teeb,\n  { {0x7d0933f5, 0xb4db04bd, 0x7bd801c3, 0x00000000}},  //   tues, _gràc, _afvu,\n  { {0x60db000b, 0x290b0181, 0x63a70065, 0x00000000}},  //   _utum, juca_, _hyjn,\n  { {0x7d09008d, 0x290b0035, 0x787000b0, 0x00000000}},  //   rues, duca_, _käve,\n  { {0x6ee701b7, 0x2ab20047, 0x7d09008d, 0x00000000}},  //   _رسال, vább_, sues,\n  { {0x39400018, 0x7d090219, 0x38a4010f, 0x00000000}},  //   _pris_, pues, hört_,\n  { {0x7d090a2c, 0x290b0107, 0x786b33f6, 0x00000000}},  //   ques, guca_, _süva,\n  { {0x04030044, 0xcb69003b, 0x66090089, 0x00000000}},  //   র্তী_, _мале_, _ķeka,\n  { {0x07a3012b, 0xb8d50316, 0xc7950641, 0x00000000}},  //   варн, _छी_, ерты,\n  { {0x39400006, 0x38a4000c, 0xd9f20309, 0x00000000}},  //   _tris_, vöru_, _अजित_,\n  { {0x14c8007a, 0x3940041d, 0xe45a0c4e, 0x00000000}},  // [ac80] سهای_, _uris_, ожа_,\n  { {0x26cc32f3, 0xa2e6007c, 0x88c60025, 0x00000000}},  //   ídos_, дожд, _تتعل,\n  { {0xb4db0129, 0x3e7a0089, 0x62820052, 0x00000000}},  //   _pràc, sūti_, tioo,\n  { {0xb87b153d, 0x41aa05f6, 0xb5fb04bb, 0x00000000}},  //   mpía, овен_, _sláv,\n  { {0xb5fb00f7, 0x9f470428, 0x6282006c, 0x00000000}},  //   _cláu, vaná_, rioo,\n  { {0x62820004, 0xa3c80164, 0x00000000, 0x00000000}},  //   sioo, _उलट_,   ,\n  { {0x44381c92, 0x645c0026, 0x7ea5000c, 0x00000000}},  //   _iar_, _iori, hópu,\n  { {0x645c022b, 0x44380cb2, 0x1d340001, 0x00000000}},  //   _hori, _har_, ения,\n  { {0x645c0119, 0x443801d9, 0x9f4702d5, 0x00000000}},  //   _kori, _kar_, raná_,\n  { {0x645c1a8f, 0x6aa40020, 0x515b009b, 0x00000000}},  //   _jori, _akif, _וכמו,\n  { {0x44380195, 0x09e00044, 0x00000000, 0x00000000}},  //   _mar_, _ভয়া,   ,\n  { {0x44382ac3, 0x6ab6018e, 0xaacf007d, 0x00000000}},  //   _lar_, _chyf, _संरक,\n  { {0x443800f6, 0x394d0181, 0x6e220058, 0x00000000}},  //   _oar_, ães_, _ibob,\n  { {0x645c010a, 0x4438002b, 0x29190032, 0x00000000}},  //   _nori, _nar_, rtsa_,\n  { {0x25ad1556, 0x60c833f7, 0x628001f3, 0x00000000}},  //   _šel_, _midm, _ommo,\n  { {0x6d4232fc, 0x443805a6, 0x60c833f8, 0x00000000}},  //   _kroa, _aar_, _lidm,\n  { {0x7c38014a, 0x38b60030, 0x69cd0051, 0x00000000}},  // [ac90] _kavr, færd_, _igae,\n  { {0x62800a19, 0x645c1c37, 0x4438030a, 0x00000000}},  //   _ammo, _cori, _car_,\n  { {0x443833f9, 0x645c000d, 0x7c380059, 0x00000000}},  //   _dar_, _dori, _mavr,\n  { {0x23df02fb, 0x53df02f4, 0x68ed002b, 0x00000000}},  //   _प्रद, _प्रश, _kwad,\n  { {0x60250001, 0x645c1183, 0x6d44010a, 0x00000000}},  //   едла, _fori, _šian,\n  { {0x645c0059, 0x7c3801ca, 0x4438010f, 0x00000000}},  //   _gori, _navr, _gar_,\n  { {0x8fa20175, 0x765d1e89, 0x60c80006, 0x00000000}},  //   лаше, _kosy, _didm,\n  { {0x645c33fa, 0x9f4501ca, 0x6d4200ab, 0x00000000}},  //   _zori, _celá_, _broa,\n  { {0xddc225c2, 0x38b605b7, 0x6ab60016, 0x00000000}},  //   _ploš, lære_, _rhyf,\n  { {0x6aa4068f, 0x7c3833fb, 0x44380d82, 0x00000000}},  //   _skif, _cavr, _xar_,\n  { {0x09c801f5, 0x6d4233fc, 0x7c38005a, 0x00000000}},  //   रख्य, _eroa, _davr,\n  { {0x6d42027b, 0xdb1e00b9, 0x765d2059, 0x00000000}},  //   _froa, áván, _nosy,\n  { {0x7c380190, 0x44230387, 0x6d42001a, 0x00000000}},  //   _favr, _obj_, _groa,\n  { {0x60c8005f, 0x7e690146, 0x7ea5000c, 0x00000000}},  //   _xidm, lkep, rópu,\n  { {0x7d1b014a, 0x645c2ef6, 0xd5b70082, 0x00000000}},  //   ltus, _rori, ếng_,\n  { {0x4438002b, 0x7c380119, 0x645c1c68, 0x00000000}},  //   _sar_, _zavr, _sori,\n  { {0x443833fd, 0xeb1f02d2, 0x645c0027, 0x00000000}},  // [aca0] _par_, _बहुत_, _pori,\n  { {0x7d1b00b0, 0xb5fb000c, 0x7e69010e, 0x00000000}},  //   itus, _slát, hkep,\n  { {0x44380635, 0x645c049b, 0x020601f9, 0x00000000}},  //   _var_, _vori, езен,\n  { {0xe29702be, 0x443803a1, 0x7d1b0010, 0x00000000}},  //   нах_, _war_, ktus,\n  { {0x443821b3, 0x216704f9, 0x645c0207, 0x00000000}},  //   _tar_, ници_, _tori,\n  { {0xdfcf006d, 0x68fb0181, 0x6e220026, 0x00000000}},  //   ميه_, áudi, _sbob,\n  { {0x60c833fe, 0x7d1b006c, 0x00000000, 0x00000000}},  //   _vidm, etus,   ,\n  { {0xb65b007b, 0x6d42001a, 0x7c380119, 0x00000000}},  //   ִדיש, _proa, _savr,\n  { {0xb5fb000c, 0x2dd70025, 0x6e39000a, 0x00000000}},  //   _klár, ربية_, _dawb,\n  { {0x20c9023c, 0x00000000, 0x00000000, 0x00000000}},  //   _قبلي_,   ,   ,\n  { {0x141b007b, 0x68ed1987, 0x7c3a063d, 0x00000000}},  //   הויב, _swad, rdtr,\n  { {0x79a70088, 0xed5a05f6, 0x6d42005b, 0x00000000}},  //   ерге, _ное_, _troa,\n  { {0x765d33ff, 0x3ea61876, 0x984b005e, 0x00000000}},  //   _rosy, _ikot_, пява_,\n  { {0x765d3400, 0xd259001e, 0x00000000, 0x00000000}},  //   _sosy, _viņi_,   ,\n  { {0x36d5003b, 0xf794007e, 0x00000000, 0x00000000}},  //   тобр, гарэ,   ,\n  { {0x68ed0870, 0xb5fb0327, 0x44230082, 0x00000000}},  //   _twad, _alár, _sbj_,\n  { {0x44230022, 0xa3d50930, 0x00000000, 0x00000000}},  // [acb0] _pbj_, возч,   ,\n  { {0xb5fb3401, 0x7bda00e5, 0xb4ab013d, 0x00000000}},  //   _clár, nctu, खते_,\n  { {0xf990025a, 0x7219041f, 0x430b007e, 0x00000000}},  //   _نبی_, джер_, яхам_,\n  { {0x38b61565, 0x00000000, 0x00000000, 0x00000000}},  //   rære_,   ,   ,\n  { {0x865a00b3, 0x229c0802, 0xe0d80088, 0x00000000}},  //   _חדרי, níky_, еві_,\n  { {0x1ae60044, 0x7afa00ea, 0x644300fa, 0x00000000}},  //   _কিনে_, kstt, ônid,\n  { {0x201a0129, 0x7ff4023c, 0xd00e0379, 0x00000000}},  //   òpia_, اسها, زلي_,\n  { {0x7d1b0ad1, 0xfe4500ed, 0x7bda001a, 0x00000000}},  //   ttus, тнио, ectu,\n  { {0x6e3b00b9, 0xee3600a5, 0x26d30181, 0x00000000}},  //   rdub, тны_, _luxo_,\n  { {0x7d1b224a, 0x3ea600f8, 0xbc62007c, 0x00000000}},  //   rtus, _ekot_, ивык,\n  { {0x7d1b0cfc, 0x6e3900e7, 0x00000000, 0x00000000}},  //   stus, _tawb,   ,\n  { {0x26cb0007, 0x225f0263, 0x7ea53402, 0x00000000}},  //   _nico_, _jouk_, róps,\n  { {0x3ead0374, 0x3ebf0052, 0x4e7a0049, 0x00000000}},  //   mlet_, mmut_, _קאנצ,\n  { {0x3ea01144, 0x7d091331, 0x3ebf010f, 0x00000000}},  //   čite_, mres, lmut_,\n  { {0x44ef0046, 0x07a602a8, 0x7d0923fd, 0x00000000}},  //   eż_, тавн, lres,\n  { {0x7aed0036, 0x7d0900ab, 0x225f00d9, 0x00000000}},  //   _łatw, ores, _nouk_,\n  { {0x7d090129, 0x26cb27b9, 0xdb2300a1, 0x00000000}},  // [acc0] nres, _dico_, _شوکی,\n  { {0xb4db3403, 0x3ead0066, 0x7d0904a5, 0x00000000}},  //   _tràn, hlet_, ires,\n  { {0x3ead30c7, 0x7d09010f, 0x26cb12a1, 0x00000000}},  //   klet_, hres, _fico_,\n  { {0x7d09326f, 0x6d44010a, 0x518603e0, 0x00000000}},  //   kres, _šiam, кула,\n  { {0xc05a0088, 0x7d090146, 0x224d00d9, 0x00000000}},  //   дій_, jres, _dnek_,\n  { {0x7d090322, 0x80e10055, 0xdc080089, 0x00000000}},  //   dres, _নিশ্, _mēģi,\n  { {0x3ead001a, 0x644e3404, 0x7d090197, 0x00000000}},  //   flet_, _inbi, eres,\n  { {0x7d09018e, 0x80e10055, 0x539b00a0, 0x00000000}},  //   fres, _নির্, _חילו,\n  { {0x7d090781, 0x8cf3008b, 0x27f83405, 0x00000000}},  //   gres, азыц, karn_,\n  { {0x3ead0796, 0x225f009d, 0x2a600146, 0x00000000}},  //   alet_, _zouk_, _aoib_,\n  { {0x3ead0374, 0xe7bd0044, 0x7d090052, 0x00000000}},  //   blet_, _অভ্য, ares,\n  { {0x9e66091b, 0x7d090919, 0x3ead02d0, 0x00000000}},  //   _швед, bres, clet_,\n  { {0x26cb1595, 0x7d090207, 0x7afa00e0, 0x00000000}},  //   _rico_, cres, sstt,\n  { {0xd77700f3, 0x290518e2, 0x5c730088, 0x00000000}},  //   نازع, čla_, _кліт,\n  { {0xd259001e, 0x26cb0325, 0x25ae006b, 0x00000000}},  //   _ziņu_, _pico_, əfli_,\n  { {0x644e001f, 0x88e20044, 0xdce9012d, 0x00000000}},  //   _anbi, _বিরক, uzeć,\n  { {0x26cb0197, 0x00000000, 0x00000000, 0x00000000}},  // [acd0] _vico_,   ,   ,\n  { {0x291e001a, 0x3ead0010, 0x225f0068, 0x00000000}},  //   ătat_, zlet_, _souk_,\n  { {0x3e71009f, 0x7d0901ee, 0x3ea43406, 0x00000000}},  //   _láta_, zres, komt_,\n  { {0x69dd0010, 0x644e2cab, 0x7d090056, 0x00000000}},  //   ncse, _enbi, yres,\n  { {0x3ead014a, 0x7d090203, 0x00000000, 0x00000000}},  //   vlet_, xres,   ,\n  { {0x7d093407, 0x644e0173, 0x38610085, 0x00000000}},  //   vres, _gnbi, _johr_,\n  { {0x28da013d, 0xeaca0011, 0xf2c702dc, 0x00000000}},  //   _यूनि, _kẹt_, _асан,\n  { {0x7d090073, 0x224d0022, 0x3ead0068, 0x00000000}},  //   tres, _unek_, ulet_,\n  { {0x3ead2d0f, 0x2d993265, 0x7d09007f, 0x00000000}},  //   rlet_, çse_, ures,\n  { {0x3e710611, 0xd259001e, 0xbed5025f, 0x00000000}},  //   _dáta_, _viņu_, _божј,\n  { {0xba3b3408, 0x27f80203, 0x290b00f6, 0x00000000}},  //   roïn, varn_, erca_,\n  { {0x3f7a007b, 0x00000000, 0x00000000, 0x00000000}},  //   _אָדע,   ,   ,\n  { {0x3236007b, 0x38613409, 0xf99201b7, 0x00000000}},  //   נטשן_, _bohr_, صبح_,\n  { {0xe73a1001, 0x8c6701fc, 0x81ea0044, 0x00000000}},  //   нег_, _штед, _মাছ_,\n  { {0xdbd1006c, 0x27f800ca, 0xdc9a0097, 0x00000000}},  //   _müük, rarn_, _איסל,\n  { {0x2bdf01f5, 0x644e00e0, 0x69dd0010, 0x00000000}},  //   पुरा, _snbi, ccse,\n  { {0x26c01f5a, 0xa5070780, 0xa96a073b, 0x00000000}},  // [ace0] rmio_, лета_, _чипа_,\n  { {0x2ca5006c, 0x26c00c3b, 0x9f4c0062, 0x00000000}},  //   nold_, smio_, _sedí_,\n  { {0xd9fa0061, 0xa3b9013d, 0x9f4c008e, 0x00000000}},  //   _्यात_, _चरण_, _pedí_,\n  { {0x2ca5004e, 0x00000000, 0x00000000, 0x00000000}},  //   hold_,   ,   ,\n  { {0x644302d5, 0x6a66000c, 0x00000000, 0x00000000}},  //   ônic, _hófs,   ,\n  { {0x3e71340a, 0xd8d70049, 0x2ca50190, 0x00000000}},  //   _ráta_, אוסט_, jold_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x61ed000c, 0x00000000, 0x00000000, 0x00000000}},  //   ðalt,   ,   ,\n  { {0x2ca50e40, 0x614303e0, 0xa2a1013d, 0x00000000}},  //   fold_, _лета, गकर्,\n  { {0x3ea40737, 0x1dc0007d, 0x00000000, 0x00000000}},  //   somt_, शेषत,   ,\n  { {0x68e4010a, 0x386101a2, 0x29000471, 0x00000000}},  //   _atid, _rohr_, _avia_,\n  { {0xf41a0044, 0x290b00ca, 0xdd00014a, 0x00000000}},  //   ড়ির_, trca_, ştık,\n  { {0x2ca50030, 0x6c5401f9, 0x786b006c, 0x00000000}},  //   bold_, _вклу, _hüvi,\n  { {0x6d3b009b, 0x91820082, 0x7e620114, 0x00000000}},  //   _נתונ, _mềm_, _hoop,\n  { {0x7e6200b5, 0x68e401aa, 0x99990047, 0x00000000}},  //   _koop, _etid, reső_,\n  { {0x58d50265, 0x00000000, 0x00000000, 0x00000000}},  //   _коит,   ,   ,\n  { {0xb4db04bd, 0xeaca0082, 0xd7fb003b, 0x00000000}},  // [acf0] _tràm, _vẹt_, _пун_,\n  { {0x78700039, 0x39490145, 0x7e6205d0, 0x00000000}},  //   _jävl, _iras_, _loop,\n  { {0xe7eb001c, 0x7e6200c4, 0x998d0036, 0x00000000}},  //   _ज्या_, _ooop, żeń_,\n  { {0x394901aa, 0x7e6200d9, 0x00000000, 0x00000000}},  //   _kras_, _noop,   ,\n  { {0x61f90066, 0xc5fa009b, 0x00000000, 0x00000000}},  //   rawl, _בפרט,   ,\n  { {0xd006026b, 0x00000000, 0x00000000, 0x00000000}},  //   аеше_,   ,   ,\n  { {0x2ca50190, 0x27010006, 0x7e620203, 0x00000000}},  //   vold_, nėn_, _boop,\n  { {0x3949340b, 0x7e620b25, 0x0e6500c0, 0x00000000}},  //   _oras_, _coop, ркин,\n  { {0x7ae4057c, 0x2ca500b4, 0x7e62340c, 0x00000000}},  //   _čita, told_, _doop,\n  { {0x4c85017f, 0x4b25132e, 0x3ea00ecc, 0x00000000}},  //   рлов, амов, čita_,\n  { {0x68e4037e, 0x2ca501a2, 0x39491c50, 0x00000000}},  //   _stid, rold_, _aras_,\n  { {0xfaa6008b, 0x628b0016, 0xa96a012b, 0x00000000}},  //   рамо, nigo, вима_,\n  { {0x394900c4, 0x999e00b9, 0xec6e0088, 0x00000000}},  //   _cras_, ětů_, _дп_,\n  { {0x78700039, 0x628b0058, 0x3949340d, 0x00000000}},  //   _gävl, higo, _dras_,\n  { {0x44330472, 0xb8fd02f4, 0x3949008e, 0x00000000}},  //   dex_, _तू_, _eras_,\n  { {0x7e620869, 0xc7a300ed, 0x5ed70055, 0x00000000}},  //   _xoop, циск, _সবাই,\n  { {0x39491129, 0x628b0489, 0x443301d6, 0x00000000}},  // [ad00] _gras_, digo, fex_,\n  { {0x44330541, 0x2701007f, 0x78a701c3, 0x00000000}},  //   gex_, bėn_, cojv,\n  { {0x8c3c0180, 0x212d0010, 0x00000000, 0x00000000}},  //   doğl, _apeh_,   ,\n  { {0xd36f0025, 0x366a0745, 0x9f4c04bb, 0x00000000}},  //   بهم_, _рамо_, _nedá_,\n  { {0x20050009, 0x7e620052, 0x90c62a14, 0x00000000}},  //   _bdli_, _roop, абде,\n  { {0x443300fa, 0x201a006c, 0x7e621c87, 0x00000000}},  //   cex_, üpi_, _soop,\n  { {0x628b0058, 0x7e620471, 0x00000000, 0x00000000}},  //   bigo, _poop,   ,\n  { {0xf2a30069, 0x0dca003b, 0x290c0036, 0x00000000}},  //   _дисп, купи_, ądaj_,\n  { {0x61ed008e, 0xf8bf009d, 0x69da00b9, 0x00000000}},  //   ñale, ltée_, ětel,\n  { {0xceea0088, 0x5c740069, 0x442a00d9, 0x00000000}},  //   _адже_, слот, _jbb_,\n  { {0xf8bf00f4, 0x00000000, 0x00000000, 0x00000000}},  //   ntée_,   ,   ,\n  { {0xbd8701ef, 0x1bf200e8, 0xfe7900b9, 0x00000000}},  //   انین_, _आजकल_, chů_,\n  { {0x78700073, 0xcd36035b, 0x95fc0044, 0x00000000}},  //   _tävl, _خراب, ইলাম_,\n  { {0xe9df340e, 0x44330066, 0x442a00fa, 0x00000000}},  //   scú_, xex_, _nbb_,\n  { {0x1cbb0476, 0x4433340f, 0x26180061, 0x00000000}},  //   _שמוע, vex_, _फाशी_,\n  { {0x39490211, 0x442a01a2, 0xaa2d00b0, 0x00000000}},  //   _tras_, _abb_, ämää_,\n  { {0x442a1c30, 0x628b00b0, 0x6aad1b87, 0x00000000}},  // [ad10] _bbb_, vigo, _ikaf,\n  { {0xc3cb0025, 0xeaca0011, 0x00000000, 0x00000000}},  //   نظام_, _hẹp_,   ,\n  { {0x44331c76, 0x628b02d5, 0x389c0476, 0x00000000}},  //   rex_, tigo, _ביזנ,\n  { {0xdb070010, 0x442a062a, 0x00000000, 0x00000000}},  //   ülék, _ebb_,   ,\n  { {0xc244008b, 0x628b1327, 0x44330253, 0x00000000}},  //   ўнік, rigo, pex_,\n  { {0x442a0bca, 0x656d00e0, 0x00000000, 0x00000000}},  //   _gbb_, myah,   ,\n  { {0x8c3c005a, 0x628b00f6, 0xf8bf009d, 0x00000000}},  //   roğl, pigo, ctée_,\n  { {0x7c2a01a2, 0x00000000, 0x00000000, 0x00000000}},  //   _abfr,   ,   ,\n  { {0x656d0145, 0x628917e7, 0xc212009b, 0x00000000}},  //   nyah, _imeo, _מהן_,\n  { {0x7d020ed8, 0x6aad0020, 0x3e710027, 0x00000000}},  //   _dvos, _akaf, _táto_,\n  { {0x7c640025, 0x7d0204f4, 0xdce701df, 0x00000000}},  //   تايل, _evos, ılım,\n  { {0xc869052f, 0x2d7f0036, 0x753d0010, 0x00000000}},  //   _אן_, _płeć_, _ossz,\n  { {0xeaca0082, 0x81c90044, 0x656d0009, 0x00000000}},  //   _dẹp_, লুর_, jyah,\n  { {0xec6b004d, 0x656d0022, 0xfb88009e, 0x00000000}},  //   _шрек_, dyah, ائیو_,\n  { {0x62890197, 0x753d0010, 0x66e60088, 0x00000000}},  //   _omeo, _assz, соба,\n  { {0x442a0127, 0xaad0013d, 0x00000000, 0x00000000}},  //   _sbb_, _सूचक,   ,\n  { {0x442a033b, 0x69d60010, 0x6d5b0082, 0x00000000}},  // [ad20] _pbb_, _igye, nxua,\n  { {0x29020059, 0x98a90006, 0x62890020, 0x00000000}},  //   mska_, _ypač_, _ameo,\n  { {0x29020046, 0xf8bf00f4, 0x442a0082, 0x00000000}},  //   lska_, utée_, _vbb_,\n  { {0x786b005f, 0xf1fa01af, 0xf8bf00f4, 0x00000000}},  //   _qüvv, اعات_, rtée_,\n  { {0x29023410, 0x656d0009, 0xf8bf00f4, 0x00000000}},  //   nska_, cyah, stée_,\n  { {0x442a0061, 0x76440477, 0xf8bf00f4, 0x00000000}},  //   _ubb_, ldiy, ptée_,\n  { {0x6d4b022b, 0x44440376, 0x68f60016, 0x00000000}},  //   _arga, md_, _lwyd,\n  { {0x22960054, 0x3ea0037e, 0x76443411, 0x00000000}},  //   _الرس, čito_, ndiy,\n  { {0x290201d9, 0x44440038, 0x75240211, 0x00000000}},  //   jska_, od_, ntiz,\n  { {0x2902037e, 0x61e20207, 0x6aad02e1, 0x00000000}},  //   dska_, lcol, _skaf,\n  { {0x6d4b010f, 0x29023412, 0x68f60016, 0x00000000}},  //   _erga, eska_, _awyd,\n  { {0x6d44010a, 0x6d8900a1, 0x68f60016, 0x00000000}},  //   _šiau, امیہ_, _bwyd,\n  { {0xd041006b, 0x298b04b6, 0x76440279, 0x00000000}},  //   _ailə, усно_, ddiy,\n  { {0x69d60047, 0xd041005f, 0x444402ae, 0x00000000}},  //   _egye, _bilə, jd_,\n  { {0x44440bc4, 0xaae6031d, 0x1bfb00b3, 0x00000000}},  //   dd_, _استو, _גלוב,\n  { {0xd6d80264, 0x29020d0a, 0xd041006b, 0x00000000}},  //   стр_, bska_, _dilə,\n  { {0x61e20061, 0x444400b5, 0x68f6018e, 0x00000000}},  // [ad30] dcol, fd_, _gwyd,\n  { {0x80dc03d7, 0x444402ae, 0x656d0058, 0x00000000}},  //   _पढ़े, gd_, ryah,\n  { {0x656d1ecd, 0x45d50679, 0xd1d90745, 0x00000000}},  //   syah, _монс, адец_,\n  { {0x44440bc4, 0x61e20009, 0x73c40025, 0x00000000}},  //   ad_, gcol, سينم,\n  { {0x44443413, 0x752400e5, 0xf65f0190, 0x00000000}},  //   bd_, ctiz, _diæt_,\n  { {0x26da0020, 0x4444018c, 0x00000000, 0x00000000}},  //   _yupo_, cd_,   ,\n  { {0x64552a84, 0x6d470089, 0x61e2004a, 0x00000000}},  //   _inzi, ājam, bcol,\n  { {0x61e2051b, 0x62890020, 0x6d5b002d, 0x00000000}},  //   ccol, _umeo, txua,\n  { {0xec790072, 0x00000000, 0x00000000, 0x00000000}},  //   ипи_,   ,   ,\n  { {0x6445002b, 0x61fb0678, 0x7e7b1575, 0x00000000}},  //   ndhi, _heul, shup,\n  { {0x7644005f, 0x68f6018e, 0x29020046, 0x00000000}},  //   ydiy, _swyd, wska_,\n  { {0x29020209, 0x60db3414, 0x444413ae, 0x00000000}},  //   tska_, _kuum, zd_,\n  { {0x444407be, 0x61fb07f3, 0x787003b6, 0x00000000}},  //   yd_, _meul, _hävi,\n  { {0x6ff90049, 0x38b60030, 0x60db3415, 0x00000000}},  //   יפֿג, mærk_, _muum,\n  { {0xe73a00e3, 0x44440056, 0xf743007c, 0x00000000}},  //   шев_, vd_, меро,\n  { {0x64550207, 0x61fb0706, 0x75240766, 0x00000000}},  //   _anzi, _neul, ttiz,\n  { {0x7644005f, 0x9f470428, 0x44440541, 0x00000000}},  // [ad40] rdiy, vaný_, td_,\n  { {0x62990007, 0x444402f1, 0x61e20009, 0x00000000}},  //   enwo, ud_, wcol,\n  { {0x752402f5, 0x673e0182, 0x61e20e9c, 0x00000000}},  //   stiz, _uspj, tcol,\n  { {0x75240391, 0x644500e7, 0x60c100eb, 0x00000000}},  //   ptiz, adhi, _ahlm,\n  { {0xddc206ac, 0x61e20198, 0x61ed0211, 0x00000000}},  //   _slož, rcol, ñala,\n  { {0x61e20207, 0x1df2007d, 0xb87b00b9, 0x00000000}},  //   scol, घर्ष_, spív,\n  { {0xdfcf0b59, 0x61e209fb, 0x6e291a96, 0x00000000}},  //   نيه_, pcol, ffeb,\n  { {0xddc21310, 0x39400093, 0x61fb0dda, 0x00000000}},  //   _vlož, _osis_, _geul,\n  { {0x22460061, 0x3eb80089, 0x91030098, 0x00000000}},  //   mdok_, ērt_, _опте,\n  { {0x22460058, 0x80e10044, 0x14aa0061, 0x00000000}},  //   ldok_, _নিচ্, कविण,\n  { {0xddc20428, 0x3940007f, 0xee3a007c, 0x00000000}},  //   _ulož, _asis_, _вне_,\n  { {0x0dca0216, 0xb4db00f6, 0x00000000, 0x00000000}},  //   _кули_, _kràt,   ,\n  { {0x21260149, 0x394d02a0, 0x7aed0e0d, 0x00000000}},  //   ntoh_, íes_, _čate,\n  { {0xfbcf01ef, 0x3ea90059, 0xa5bb0048, 0x00000000}},  //   عتی_, čate_, _mbót,\n  { {0x64430181, 0x3940008e, 0x9f4501d6, 0x00000000}},  //   ônim, _esis_, _aflê_,\n  { {0xcb1301f8, 0x9865026c, 0x9f5c01aa, 0x00000000}},  //   _חלק_, _کیسے_, ravè_,\n  { {0x95cb00e3, 0x39400058, 0xddd9000a, 0x00000000}},  // [ad50] рува_, _gsis_, _fowņ,\n  { {0x61fb028c, 0x60db01c2, 0x2cac0016, 0x00000000}},  //   _seul, _ruum, nodd_,\n  { {0x3e71002a, 0x25a20210, 0x2919237d, 0x00000000}},  //   _fáth_, _exkl_, lusa_,\n  { {0x9f450428, 0x2a6901aa, 0x2cac3416, 0x00000000}},  //   _celý_, _joab_, hodd_,\n  { {0x2a6901aa, 0x61fb249f, 0x629900d9, 0x00000000}},  //   _moab_, _veul, rnwo,\n  { {0x38b60030, 0xe0420088, 0x26c917c9, 0x00000000}},  //   værk_, енши, lmao_,\n  { {0x9028008b, 0x2cac018e, 0x61fb018e, 0x00000000}},  //   юцца_, dodd_, _teul,\n  { {0xe1ff009f, 0x60db03b6, 0x8d6515c4, 0x00000000}},  //   _þó_, _tuum, звие,\n  { {0x2cac018e, 0xfd110025, 0x226404bb, 0x00000000}},  //   fodd_, رجة_, žská_,\n  { {0x6d49027b, 0x2919001a, 0x2cac018e, 0x00000000}},  //   rvea, dusa_, godd_,\n  { {0xf4120049, 0x3a3900c4, 0xb3ad0044, 0x00000000}},  //   עפט_, fesp_, _কৃতজ,\n  { {0x39400022, 0x3a3900fa, 0x00000000, 0x00000000}},  //   _psis_, gesp_,   ,\n  { {0x2eaa026c, 0x5ed20055, 0x8c64025a, 0x00000000}},  //   _اپنی_, _সবচে, سطین,\n  { {0x26c20065, 0x00000000, 0x00000000, 0x00000000}},  //   _shko_,   ,   ,\n  { {0x38ca00a1, 0xeb96003b, 0x3a3900c4, 0x00000000}},  //   لاڑی_, _ниш_, besp_,\n  { {0xe9a601e1, 0xb906005e, 0xf11b0061, 0x00000000}},  //   _найп, _език, _नमूद_,\n  { {0x29190207, 0x3ae1000c, 0x00000000, 0x00000000}},  // [ad60] cusa_, _hóp_,   ,\n  { {0xdbe3009d, 0x63b5013e, 0x00000000, 0x00000000}},  //   _déçu, _byzn,   ,\n  { {0xb7db00b3, 0x00000000, 0x00000000, 0x00000000}},  //   _לקיי,   ,   ,\n  { {0xf8bf0010, 0x7ebe0065, 0x82890088, 0x00000000}},  //   ntén_, këpa, осіб_,\n  { {0xb4db00f6, 0x25d7009b, 0x00000000, 0x00000000}},  //   _dràs, _מוכן_,   ,\n  { {0x38b6000c, 0x55bb009b, 0xa505007e, 0x00000000}},  //   færi_, _למכו, _ўяўл,\n  { {0x274700b9, 0x443a00fa, 0x29193417, 0x00000000}},  //   míná_, mep_, zusa_,\n  { {0x443a0046, 0x2cac0016, 0x539b00b3, 0x00000000}},  //   lep_, wodd_, _הילו,\n  { {0x29190061, 0x7646014a, 0x2cac005b, 0x00000000}},  //   xusa_, _maky, todd_,\n  { {0x443a3418, 0x3ae10011, 0x95880036, 0x00000000}},  //   nep_, _bóp_, ciąż,\n  { {0x59a502fb, 0x200c3419, 0x2cac0016, 0x00000000}},  //   _गुजर, _iddi_, rodd_,\n  { {0x6e960025, 0x2cac0016, 0x37c40044, 0x00000000}},  //   _علشا, sodd_, ্ডার,\n  { {0x443a0093, 0x3d13013d, 0x6480010e, 0x00000000}},  //   kep_, _दिये_, _köid,\n  { {0x29192390, 0x443a016e, 0xdd3b009b, 0x00000000}},  //   rusa_, jep_, _לעדכ,\n  { {0x3ae1001d, 0xf77301f7, 0x291900ea, 0x00000000}},  //   _góp_, راس_, susa_,\n  { {0x291908a4, 0x8aa4007e, 0xfbb7009b, 0x00000000}},  //   pusa_, _прыд, _מפות_,\n  { {0x200c018e, 0xf48500a1, 0x3e7801dc, 0x00000000}},  // [ad70] _oddi_, وائی, _léto_,\n  { {0x443a0232, 0x68ed341a, 0x26c900fa, 0x00000000}},  //   gep_, _itad, smao_,\n  { {0x61ed004a, 0x00000000, 0x00000000, 0x00000000}},  //   ñalo,   ,   ,\n  { {0x6d4233ea, 0xa507007e, 0x63b50161, 0x00000000}},  //   _osoa, _нягл, _vyzn,\n  { {0x7c3a0239, 0x504500ed, 0x63b50036, 0x00000000}},  //   ketr, делб, _wyzn,\n  { {0x443a149f, 0x6e22204c, 0x9401006b, 0x00000000}},  //   cep_, _acob, yihə_,\n  { {0x7c3a0bc7, 0x443100f6, 0x764600e0, 0x00000000}},  //   detr, _ibz_, _yaky,\n  { {0x68ed05fa, 0xece9007c, 0x644700a9, 0x00000000}},  //   _otad, одил_, _haji,\n  { {0x7ae1001c, 0x1c18001c, 0x64470127, 0x00000000}},  //   wqlt, _दाखल_, _kaji,\n  { {0x64470209, 0x7c3a0125, 0xeb99003b, 0x00000000}},  //   _jaji, getr, жио_,\n  { {0x6447000b, 0x68ed008e, 0xe817006e, 0x00000000}},  //   _maji, _atad, _ताजा_,\n  { {0x64470b60, 0xdd8e00a6, 0x443a1dff, 0x00000000}},  //   _laji, اوی_, zep_,\n  { {0xda1f02d2, 0x5d690a94, 0x7646020c, 0x00000000}},  //   _भारत_, _филм_, _raky,\n  { {0x644712e0, 0x764616fd, 0x7d1b01c2, 0x00000000}},  //   _naji, _saky, muus,\n  { {0x7d1b003b, 0x68ed0173, 0x764617c1, 0x00000000}},  //   luus, _etad, _paky,\n  { {0x4423000a, 0x44310861, 0x00000000, 0x00000000}},  //   _acj_, _abz_,   ,\n  { {0x443a0093, 0x443100d9, 0x644702e0, 0x00000000}},  // [ad80] tep_, _bbz_, _baji,\n  { {0x3ea00ed8, 0xe73a012b, 0x6447008e, 0x00000000}},  //   čiti_, _део_, _caji,\n  { {0x36c6013b, 0x366a1192, 0x7e6b0116, 0x00000000}},  //   _обог, _дано_, _oogp,\n  { {0xe297012b, 0x443a04bd, 0x7d1b0bac, 0x00000000}},  //   мах_, sep_, kuus,\n  { {0xd13004e8, 0x6604002d, 0x443a002b, 0x00000000}},  //   امت_, maik, pep_,\n  { {0x66040bce, 0x64470107, 0x6e22175b, 0x00000000}},  //   laik, _gaji, _scob,\n  { {0xdfd00025, 0x44e4074d, 0x7e6b07c4, 0x00000000}},  //   ديث_, _hö_, _bogp,\n  { {0x667b341b, 0x64470224, 0x660404cb, 0x00000000}},  //   ַװיג, _zaji, naik,\n  { {0x9f5e008d, 0x2d840107, 0x7c3a1c28, 0x00000000}},  //   _ketë_, uzme_, tetr,\n  { {0x9f5e008d, 0x3e780224, 0x3ea900ca, 0x00000000}},  //   _jetë_, _této_, čata_,\n  { {0xeb9700ed, 0x660401a3, 0x44e400f8, 0x00000000}},  //   диќ_, kaik, _lö_,\n  { {0x62820116, 0xed5a0769, 0x7d1b0277, 0x00000000}},  //   nhoo, _мое_, buus,\n  { {0x941e03d7, 0x660404be, 0x44e403e1, 0x00000000}},  //   _पांच_, daik, _nö_,\n  { {0x628200e0, 0xa3c001f5, 0x39520190, 0x00000000}},  //   hhoo, ुधा_, _drys_,\n  { {0x644701a3, 0x8c1b0049, 0xe8200204, 0x00000000}},  //   _raji, _וווי, _बारा_,\n  { {0x644703bf, 0x660401a3, 0x3952341c, 0x00000000}},  //   _saji, gaik, _frys_,\n  { {0x644723c6, 0x39520007, 0x68ed00e7, 0x00000000}},  // [ad90] _paji, _grys_, _utad,\n  { {0x3e71009f, 0x44e40039, 0x628201c3, 0x00000000}},  //   _hátt_, _dö_, ehoo,\n  { {0xa5bb002a, 0xf8bf0181, 0x660404cb, 0x00000000}},  //   _gcón, ntém_, baik,\n  { {0x6447341d, 0xd5b000a1, 0xfd5e0011, 0x00000000}},  //   _waji, افے_, _quyể,\n  { {0xc61600b6, 0x64470020, 0x50b5341e, 0x00000000}},  //   _אחרי_, _taji, нску,\n  { {0x26d9341f, 0x7d1b00b0, 0x00000000, 0x00000000}},  //   _hiso_, vuus,   ,\n  { {0xfd5e001d, 0x38b605b7, 0xd00e0025, 0x00000000}},  //   _tuyể, mært_, حلى_,\n  { {0x628200b5, 0x7d1b1fc7, 0x38b601e3, 0x00000000}},  //   choo, tuus, lært_,\n  { {0xdc3a005f, 0x26d916d0, 0x0c950930, 0x00000000}},  //   _açıq, _miso_, ешня,\n  { {0x0d82007e, 0x66040142, 0x7d1b0103, 0x00000000}},  //   ульн, zaik, ruus,\n  { {0x44210195, 0x7d1b0103, 0x3e7101e5, 0x00000000}},  //   igh_, suus, _sátu_,\n  { {0x26d901d9, 0x39523420, 0xef18007e, 0x00000000}},  //   _niso_, _prys_, _імі_,\n  { {0x6604042c, 0xceb2009b, 0xfe7900b9, 0x00000000}},  //   vaik, _גיא_, mků_,\n  { {0x44210066, 0x3f87016c, 0x7d09006c, 0x00000000}},  //   jgh_, oznu_, mses,\n  { {0x6ab60373, 0x7d092cba, 0x6604010a, 0x00000000}},  //   _псих, lses, taik,\n  { {0x39520006, 0x442101f3, 0x7bc30091, 0x00000000}},  //   _trys_, egh_, _iznu,\n  { {0x7d090056, 0x66043421, 0x00000000, 0x00000000}},  // [ada0] nses, raik,   ,\n  { {0x7d09021e, 0x6604033b, 0xe72a005e, 0x00000000}},  //   ises, saik, _еоод_,\n  { {0x9f5e3422, 0x6604021e, 0x628200bb, 0x00000000}},  //   _vetë_, paik, thoo,\n  { {0x7d09021e, 0x23660091, 0x91e6026b, 0x00000000}},  //   kses, ćoj_, ходе,\n  { {0x62820168, 0x9f5c0802, 0xfe7900b9, 0x00000000}},  //   rhoo, raví_, dků_,\n  { {0xe3b1026c, 0x65760009, 0x00000000, 0x00000000}},  //   ارے_, myyh,   ,\n  { {0x64a3012b, 0x645c3423, 0x37db0049, 0x00000000}},  //   _сара, _inri, פֿגע,\n  { {0x9f5e2a41, 0x1d34005e, 0x5d662337, 0x00000000}},  //   _jeté_, вния, етоз,\n  { {0x6280021e, 0xdd90007a, 0x7d0912e8, 0x00000000}},  //   _ilmo, شود_, gses,\n  { {0x3e71000c, 0x6aa400e7, 0x00000000, 0x00000000}},  //   _sátt_, _ajif,   ,\n  { {0x69c40198, 0xfe7900b9, 0xa5bb0325, 0x00000000}},  //   _azie, bků_, _acól,\n  { {0x7d090dda, 0x69c40066, 0xc333009b, 0x00000000}},  //   bses, _bzie, נור_,\n  { {0xf8bf004f, 0x26d90197, 0x3a740920, 0x00000000}},  //   stém_, _riso_, уляр,\n  { {0x69c409a0, 0x26d9016c, 0x60da0066, 0x00000000}},  //   _dzie, _siso_, _jitm,\n  { {0x60da12b8, 0x26d93424, 0x779300a2, 0x00000000}},  //   _mitm, _piso_, ایجا,\n  { {0xba770774, 0xdb23000c, 0x00000000, 0x00000000}},  //   _ساعت, _árás,   ,\n  { {0x26d93425, 0x9f5e00f6, 0x38b6068f, 0x00000000}},  // [adb0] _viso_, _deté_, tært_,\n  { {0x44210038, 0x62801044, 0x7d1d0129, 0x00000000}},  //   ugh_, _almo, àssi,\n  { {0x442100ab, 0xad9d0036, 0x38b606ec, 0x00000000}},  //   rgh_, jaźn, rært_,\n  { {0xa3cd0201, 0x7d090190, 0x290b0048, 0x00000000}},  //   शेष_, yses, osca_,\n  { {0xfe790224, 0x60da0284, 0x765d01a3, 0x00000000}},  //   vků_, _bitm, _insy,\n  { {0x62800010, 0x22490ecc, 0x752d11f3, 0x00000000}},  //   _elmo, žak_, mtaz,\n  { {0x752d01bc, 0xfe7900b9, 0x60da00bb, 0x00000000}},  //   ltaz, tků_, _ditm,\n  { {0x764d014a, 0x7d09006c, 0x72d402dc, 0x00000000}},  //   nday, tses, _босф,\n  { {0x752d0198, 0x290b0036, 0x7d09001a, 0x00000000}},  //   ntaz, jsca_, uses,\n  { {0x60da011f, 0x6ab601b6, 0x752d0197, 0x00000000}},  //   _gitm, _skyf, itaz,\n  { {0x2007000b, 0x78bc001c, 0x5f79007a, 0x00000000}},  //   mani_, vlrv, _تماس_,\n  { {0x20070d92, 0x7d092c3c, 0x26f00055, 0x00000000}},  //   lani_, pses, _ছিলো_,\n  { {0xf2d20049, 0x752d0846, 0x764d0045, 0x00000000}},  //   יעט_, jtaz, dday,\n  { {0x765d0263, 0x6288010a, 0xd7f20025, 0x00000000}},  //   _ansy, _įdom, شكر_,\n  { {0x290b001a, 0x66e6003b, 0xe72700ed, 0x00000000}},  //   asca_, тоба, корд_,\n  { {0x20070020, 0x7e7b0065, 0x7e690059, 0x00000000}},  //   hani_, nkup, njep,\n  { {0x2007000b, 0xa507026b, 0x7ae300ab, 0x00000000}},  // [adc0] kani_, кета_, _hunt,\n  { {0x200701d9, 0x7ae33426, 0xba3b0016, 0x00000000}},  //   jani_, _kunt, mnïa,\n  { {0x7ae30325, 0x68e401b5, 0x20070020, 0x00000000}},  //   _junt, _huid, dani_,\n  { {0x7ae30a16, 0x68e40004, 0xf5060216, 0x00000000}},  //   _munt, _kuid, _измо,\n  { {0x7ae33373, 0x7e6911b8, 0x7e7b0268, 0x00000000}},  //   _lunt, djep, dkup,\n  { {0x443e009f, 0x68e408b2, 0xf1a903ec, 0x00000000}},  //   _út_, _muid, رانه_,\n  { {0x7ae3001a, 0x68e401b5, 0x6e9401fc, 0x00000000}},  //   _nunt, _luid, лику,\n  { {0xf8bf0047, 0x60da0007, 0xad9d0036, 0x00000000}},  //   tték_, _witm, raźn,\n  { {0xc693019b, 0x20070041, 0xc0e60088, 0x00000000}},  //   יאה_, bani_, _розк,\n  { {0x7ae33427, 0x200704b4, 0x60da00c7, 0x00000000}},  //   _bunt, cani_, _uitm,\n  { {0x441b007b, 0x8fa30088, 0x7ae3002a, 0x00000000}},  //   וויס, _кафе, _cunt,\n  { {0x7e7b0436, 0xeaf700a1, 0x68e40adf, 0x00000000}},  //   ckup, کریت_, _buid,\n  { {0x68e42582, 0x61ed008e, 0x7ae30288, 0x00000000}},  //   _cuid, ñali, _eunt,\n  { {0xa8a40265, 0x7ae3022b, 0x68e4049b, 0x00000000}},  //   арск, _funt, _duid,\n  { {0x7ae30089, 0xd6db007e, 0x764d0022, 0x00000000}},  //   _gunt, дта_, tday,\n  { {0x0bb700b6, 0x34db001c, 0x752d0282, 0x00000000}},  //   _שלהם_, बद्द, ttaz,\n  { {0x2007020e, 0x764d0169, 0x7ae30de2, 0x00000000}},  // [add0] yani_, rday, _zunt,\n  { {0x752d01d5, 0x764d13cd, 0x39490544, 0x00000000}},  //   rtaz, sday, _isas_,\n  { {0x2007012b, 0x752d0198, 0x7ae3049a, 0x00000000}},  //   vani_, staz, _xunt,\n  { {0x3d13001c, 0x20073428, 0xf6790049, 0x00000000}},  //   _दिले_, wani_, _נאָמ,\n  { {0x20070047, 0x9564005e, 0x00000000, 0x00000000}},  //   tani_, _кърд,   ,\n  { {0xb97c009b, 0x34950c27, 0x63bc01e5, 0x00000000}},  //   ונדי, _сагр, _fyrn,\n  { {0x200701d9, 0x61e401a8, 0x7e7b0107, 0x00000000}},  //   rani_, žila, tkup,\n  { {0xdd91026c, 0x7ae324ed, 0x3949006c, 0x00000000}},  //   یوں_, _runt, _osas_,\n  { {0x7e7b25c3, 0x7ae312e9, 0x7e690ec2, 0x00000000}},  //   rkup, _sunt, rjep,\n  { {0x7e7b0626, 0x68e40211, 0x3a290460, 0x00000000}},  //   skup, _ruid, _acap_,\n  { {0xb0b6007b, 0x68e40007, 0x39490127, 0x00000000}},  //   _עפעס_, _suid, _asas_,\n  { {0x2005006c, 0x68e401c2, 0x7e7b0065, 0x00000000}},  //   _heli_, _puid, qkup,\n  { {0x20050006, 0x00000000, 0x00000000, 0x00000000}},  //   _keli_,   ,   ,\n  { {0x7ae30f80, 0x3ebf021e, 0x2005013e, 0x00000000}},  //   _tunt, llut_, _jeli_,\n  { {0x394933eb, 0x20050020, 0xe7370783, 0x00000000}},  //   _esas_, _meli_, лер_,\n  { {0x224d04be, 0xcf920049, 0x8ee50044, 0x00000000}},  //   _naek_, צטן_, _নবাগ,\n  { {0x320401a3, 0xee5c000c, 0x7d1b04fd, 0x00000000}},  // [ade0] _remy_, æðið_, nrus,\n  { {0x2005006c, 0x44330048, 0x00000000, 0x00000000}},  //   _neli_, gfx_,   ,\n  { {0x25ab0b38, 0x224d008a, 0x7d1b0203, 0x00000000}},  //   _excl_, _baek_, hrus,\n  { {0x7d1b00ea, 0x979b0049, 0xa49b0173, 0x00000000}},  //   krus, _טשיק, _pwòc,\n  { {0x2005020c, 0x00000000, 0x00000000, 0x00000000}},  //   _beli_,   ,   ,\n  { {0x20050a0f, 0x26c0175e, 0xc3060025, 0x00000000}},  //   _celi_, llio_, _مبرو,\n  { {0x20050947, 0xd8d70049, 0x442a00f6, 0x00000000}},  //   _deli_, נוצט_, _icb_,\n  { {0xb5fb00c4, 0x26c00026, 0x9d14003b, 0x00000000}},  //   _inác, nlio_, адич,\n  { {0x644e1bc5, 0x66060337, 0xd291025a, 0x00000000}},  //   _kabi, _mekk, _بینظ,\n  { {0x66063429, 0x9b5801f9, 0xdee6012b, 0x00000000}},  //   _lekk, виот_, _божи,\n  { {0x644e11ad, 0x26c00006, 0xf4110044, 0x00000000}},  //   _mabi, klio_, স্কর_,\n  { {0x644e010a, 0x2005037e, 0x7d1b006c, 0x00000000}},  //   _labi, _zeli_, brus,\n  { {0x443807e4, 0x442a00f6, 0x7d1b038e, 0x00000000}},  //   _obr_, _ocb_, crus,\n  { {0xac1801fb, 0x644e0d58, 0x443800c4, 0x00000000}},  //   _року_, _nabi, _nbr_,\n  { {0x6606000c, 0x00000000, 0x00000000, 0x00000000}},  //   _bekk,   ,   ,\n  { {0x26c00198, 0x44381261, 0x3a2904be, 0x00000000}},  //   glio_, _abr_, _ucap_,\n  { {0x39490cfd, 0x66060056, 0x44380190, 0x00000000}},  // [adf0] _usas_, _dekk, _bbr_,\n  { {0x442a00c4, 0x45b80783, 0x88830014, 0x00000000}},  //   _ccb_, угую_, _ایسن,\n  { {0x644e184d, 0x26c000ea, 0x442a00d9, 0x00000000}},  //   _dabi, blio_, _dcb_,\n  { {0x6235342a, 0x61e40059, 0x660600bb, 0x00000000}},  //   реду, žiln, _gekk,\n  { {0x200500b0, 0x3ce60026, 0x9f5e0142, 0x00000000}},  //   _peli_, _nuov_, _detí_,\n  { {0x644e0065, 0x44250637, 0x8f150242, 0x00000000}},  //   _gabi, _øl_, афич,\n  { {0x2005016e, 0xb5fb0051, 0x764f1134, 0x00000000}},  //   _veli_, _gnác, _kacy,\n  { {0x644e11fc, 0x7d020a5f, 0xcee8039d, 0x00000000}},  //   _zabi, _bwos, درون_,\n  { {0x644e0009, 0x645a00c4, 0x4dd80044, 0x00000000}},  //   _yabi, _ótic, _ধ্বং,\n  { {0x3ebf342b, 0x7d1b006c, 0x644e002d, 0x00000000}},  //   slut_, rrus, _xabi,\n  { {0xda66029b, 0x26c00016, 0x3ebf0035, 0x00000000}},  //   авни, ylio_, plut_,\n  { {0xeb96007c, 0x7d1b006c, 0x764f0b69, 0x00000000}},  //   рию_, prus, _nacy,\n  { {0x66060292, 0x7d0201aa, 0x00000000, 0x00000000}},  //   _rekk, _gwos,   ,\n  { {0x6d5904be, 0x26c00016, 0x8d740879, 0x00000000}},  //   _irwa, wlio_, _داما,\n  { {0x644e342c, 0x660600b0, 0x764f0009, 0x00000000}},  //   _rabi, _pekk, _bacy,\n  { {0x644e236a, 0x7ebe0065, 0x4438000c, 0x00000000}},  //   _sabi, tëpi, _sbr_,\n  { {0x644e011c, 0x2d8d02c2, 0x7bc7002b, 0x00000000}},  // [ae00] _pabi, nzee_, żjud,\n  { {0x4463342d, 0x26c00091, 0xf8bf00f4, 0x00000000}},  //   овув, slio_, tuée_,\n  { {0x6606006c, 0x26c00211, 0x644e0059, 0x00000000}},  //   _tekk, plio_, _vabi,\n  { {0x44380061, 0x644e06fe, 0x673e002b, 0x00000000}},  //   _wbr_, _wabi, _ippj,\n  { {0x644e14d7, 0xa06a012b, 0x201a00c4, 0x00000000}},  //   _tabi, када_, ópio_,\n  { {0x7d020009, 0x442a0386, 0x3e78000c, 0x00000000}},  //   _rwos, _ucb_, _létt_,\n  { {0x4444048a, 0x6d59030c, 0xf8bf00f4, 0x00000000}},  //   me_, _arwa, quée_,\n  { {0x44440938, 0x7d020263, 0xa5bb0048, 0x00000000}},  //   le_, _pwos, _scói,\n  { {0x2259000c, 0x44440258, 0x00000000, 0x00000000}},  //   _óska_, oe_,   ,\n  { {0x444405d3, 0x00000000, 0x00000000, 0x00000000}},  //   ne_,   ,   ,\n  { {0x44440343, 0x6d59010f, 0x752400c7, 0x00000000}},  //   ie_, _erwa, huiz,\n  { {0x4444342e, 0xd00b0055, 0x1eda0d75, 0x00000000}},  //   he_, _রায়_, _شباب_,\n  { {0x81e80044, 0x673e00d4, 0xdca601ee, 0x00000000}},  //   _মজা_, _appj, _кади,\n  { {0x44440466, 0x75242ecf, 0x00000000, 0x00000000}},  //   je_, duiz,   ,\n  { {0x7e62046a, 0xc6d70688, 0x00000000, 0x00000000}},  //   _knop, لترت,   ,\n  { {0x9f5e0207, 0x6d4b0016, 0x83670123, 0x00000000}},  //   _metà_, _ysga, یدال,\n  { {0x444403a1, 0x75241595, 0x00000000, 0x00000000}},  // [ae10] fe_, guiz,   ,\n  { {0x7c2816a7, 0x3ea90ed8, 0x764f0045, 0x00000000}},  //   ngdr, čati_, _wacy,\n  { {0xf367025f, 0x7e620116, 0x00000000, 0x00000000}},  //   штан, _onop,   ,\n  { {0x4b3700b6, 0x7bd90049, 0x00000000, 0x00000000}},  //   שראל_, אַנק,   ,\n  { {0x660d02ae, 0x463a007b, 0x7f5a00f6, 0x00000000}},  //   maak, _גערע, _artq,\n  { {0x7e623015, 0x660d16a6, 0x00000000, 0x00000000}},  //   _anop, laak,   ,\n  { {0xf8bf19cd, 0x64450020, 0x3e7800d4, 0x00000000}},  //   ltés_, mehi, _néts_,\n  { {0x7ebe008d, 0xc33200b6, 0x6445011c, 0x00000000}},  //   këpu, _מול_, lehi,\n  { {0xf8bf19cd, 0x3e78009f, 0x00000000, 0x00000000}},  //   ntés_, _rétt_,   ,\n  { {0x4c850216, 0x70740025, 0xcc890014, 0x00000000}},  //   слов, _والذ, انده_,\n  { {0x908a026c, 0x5f79039d, 0x09e60aef, 0x00000000}},  //   _حملے_, _حماس_, йонн,\n  { {0x44440224, 0x6d590036, 0xff5000a6, 0x00000000}},  //   ze_, _trwa, _زخم_,\n  { {0x4444342f, 0x6d5931c3, 0xec6e0517, 0x00000000}},  //   ye_, _urwa, _еп_,\n  { {0x4444081d, 0x6e290270, 0x3ff90049, 0x00000000}},  //   xe_, lgeb, טפֿע,\n  { {0x17790805, 0x6d49107b, 0x64450ac2, 0x00000000}},  //   асть_, lwea, dehi,\n  { {0x444427ef, 0x07a33430, 0x6e293431, 0x00000000}},  //   we_, часн, ngeb,\n  { {0x6d490133, 0x00000000, 0x00000000, 0x00000000}},  // [ae20] nwea,   ,   ,\n  { {0x44440038, 0x752401f3, 0x39400058, 0x00000000}},  //   ue_, ruiz, _ipis_,\n  { {0x1877019b, 0x6e290328, 0x660d3432, 0x00000000}},  //   _העיר_, kgeb, baak,\n  { {0x366a0200, 0x2c210061, 0x00000000, 0x00000000}},  //   _само_, _माझं_,   ,\n  { {0x44440e6d, 0xf8bf0005, 0x75240325, 0x00000000}},  //   pe_, ctés_, quiz,\n  { {0x7e6200f8, 0x44440065, 0x6e290434, 0x00000000}},  //   _snop, qe_, egeb,\n  { {0x43860054, 0x6e290a9b, 0xf8bf000c, 0x00000000}},  //   _الأق, fgeb, bréf_,\n  { {0x8cf4029b, 0x39401e02, 0x6e290125, 0x00000000}},  //   озиц, _opis_, ggeb,\n  { {0xf653009b, 0xdb1801ca, 0x6d4900e0, 0x00000000}},  //   לצה_, _vyví, gwea,\n  { {0x628200b9, 0x8fa601e0, 0x5b1400e2, 0x00000000}},  //   lkoo, _лазе, омот,\n  { {0x2d8201d9, 0x394011d1, 0x200e1ec4, 0x00000000}},  //   ške_, _apis_, mafi_,\n  { {0x62822b9e, 0x2bce0061, 0x20c91a13, 0x00000000}},  //   nkoo, हेगा, núin_,\n  { {0x62823433, 0x660d02c8, 0x644500e7, 0x00000000}},  //   ikoo, vaak, yehi,\n  { {0xd918007c, 0x660d0112, 0x200e0145, 0x00000000}},  //   щью_, waak, nafi_,\n  { {0x6445001a, 0x5c3700b3, 0x39400173, 0x00000000}},  //   vehi, _הטוב_, _epis_,\n  { {0xf96b0265, 0xfaa4025f, 0x5694007c, 0x00000000}},  //   _брой_, _најо, паст,\n  { {0x5499008b, 0xf8bf00f4, 0x62821787, 0x00000000}},  // [ae30] аваў_, utés_, dkoo,\n  { {0xf807012b, 0xf8bf2b25, 0x69cd002d, 0x00000000}},  //   _учин, rtés_, _izae,\n  { {0x64453434, 0xf8bf0353, 0x628b005b, 0x00000000}},  //   rehi, stés_, thgo,\n  { {0xaac90201, 0x7aea01a3, 0xf8bf009d, 0x00000000}},  //   रतिक, _muft, ptés_,\n  { {0x7aea008d, 0x216902e9, 0x6aad008d, 0x00000000}},  //   _luft, рили_, _mjaf,\n  { {0x7bc60036, 0x11d4023c, 0x00000000, 0x00000000}},  //   ękuj, ستند,   ,\n  { {0x6e29333c, 0x287c0049, 0x7aea0022, 0x00000000}},  //   tgeb, רנומ, _nuft,\n  { {0x6d490133, 0x00000000, 0x00000000, 0x00000000}},  //   twea,   ,   ,\n  { {0x6e29147c, 0x7aea010f, 0x4d6501e1, 0x00000000}},  //   rgeb, _auft, іков,\n  { {0x6e29010f, 0x7aea0035, 0x00000000, 0x00000000}},  //   sgeb, _buft,   ,\n  { {0x62893435, 0x3df5007e, 0x3b09003b, 0x00000000}},  //   _kleo, _дзес, јемо_,\n  { {0xc86901f8, 0x7aea3436, 0x00000000, 0x00000000}},  //   _בן_, _duft,   ,\n  { {0x3eb80047, 0x6dc703d9, 0x6aad0022, 0x00000000}},  //   _írta_, _ازال, _djaf,\n  { {0x6289018e, 0x39400059, 0xf41f0044, 0x00000000}},  //   _lleo, _vpis_, ন্তর_,\n  { {0x869a00ed, 0x62890cec, 0x39400036, 0x00000000}},  //   атат_, _oleo, _wpis_,\n  { {0x6aad000c, 0x4df90049, 0x00000000, 0x00000000}},  //   _gjaf, שפּא,   ,\n  { {0x61e4112e, 0x394004eb, 0x00000000, 0x00000000}},  // [ae40] žilk, _upis_,   ,\n  { {0xa3d6006e, 0x03a6022a, 0xb5fb004a, 0x00000000}},  //   ाइल_, оизо, _unán,\n  { {0x7ae401b0, 0xeaaf00a1, 0x083b0049, 0x00000000}},  //   _kiit, _سٹی_, _דעיל,\n  { {0x62891092, 0x09de0044, 0x7bc301d6, 0x00000000}},  //   _cleo, _ভ্যা, _mynu,\n  { {0x628201b5, 0x7ae405e0, 0x787000b0, 0x00000000}},  //   rkoo, _miit, _sävy,\n  { {0x7ae40368, 0x67210825, 0x62823437, 0x00000000}},  //   _liit, šlje, skoo,\n  { {0x200e0056, 0x00000000, 0x00000000, 0x00000000}},  //   rafi_,   ,   ,\n  { {0xf41f0055, 0x7ae4021e, 0x200e00e7, 0x00000000}},  //   ন্দর_, _niit, safi_,\n  { {0x10a6078d, 0x78bc0ac2, 0x2b5c0045, 0x00000000}},  //   _диан, korv, _srvc_,\n  { {0xb5fb029d, 0x7bc30022, 0x7d1d0010, 0x00000000}},  //   _anál, _bynu, ássa,\n  { {0x7bc3018e, 0xaa590e82, 0x78bc0f5d, 0x00000000}},  //   _cynu, бину_, dorv,\n  { {0xe8d9001d, 0x81de0044, 0x69c4000a, 0x00000000}},  //   _trị_, _দ্য_, _byie,\n  { {0x78bc08c8, 0x7ae40022, 0x200c014a, 0x00000000}},  //   forv, _diit, _kedi_,\n  { {0x200c27c7, 0x7aea3438, 0x6d420026, 0x00000000}},  //   _jedi_, _tuft, _ipoa,\n  { {0x200c2f25, 0x7bc30016, 0x20c90051, 0x00000000}},  //   _medi_, _gynu, dúil_,\n  { {0x7c3a01c3, 0x893500a1, 0xf8bf009d, 0x00000000}},  //   lftr, _فٹبا, drée_,\n  { {0xa5bb00c4, 0x78bc199f, 0x200c0016, 0x00000000}},  // [ae50] _acór, borv, _oedi_,\n  { {0x78bc0026, 0x28d2013d, 0x629b0026, 0x00000000}},  //   corv, _दीपि, _smuo,\n  { {0x62890035, 0xf8bf009d, 0x96070025, 0x00000000}},  //   _pleo, grée_, _وبحم,\n  { {0x68ed0065, 0x6abd00d4, 0xd6270025, 0x00000000}},  //   _kuad, nosf, _بعدي,\n  { {0x200c0032, 0x4104007e, 0x1a9c0049, 0x00000000}},  //   _bedi_, дзів, סידע,\n  { {0x37df0044, 0x3dd00044, 0x68ed0020, 0x00000000}},  //   _ব্যর, াখাল, _muad,\n  { {0x200c01f6, 0xa5bb0051, 0xf8bf009d, 0x00000000}},  //   _dedi_, _gcór, crée_,\n  { {0x64553439, 0x313501ee, 0x629b00e7, 0x00000000}},  //   _hazi, _небр, _umuo,\n  { {0x7ae4021e, 0x61e91293, 0x7bc30023, 0x00000000}},  //   _riit, _igel, _synu,\n  { {0x7ae4021e, 0x64550142, 0x320d00bb, 0x00000000}},  //   _siit, _jazi, _heey_,\n  { {0x6455000b, 0x7ebe0023, 0x7ae401b1, 0x00000000}},  //   _mazi, rëpr, _piit,\n  { {0x645516c3, 0x6abd04a7, 0x68ed00f6, 0x00000000}},  //   _lazi, gosf, _buad,\n  { {0x7ae4343a, 0x68ed0211, 0x78bc0d22, 0x00000000}},  //   _viit, _cuad, torv,\n  { {0x6455005f, 0x68ed343b, 0x7ae408a6, 0x00000000}},  //   _nazi, _duad, _wiit,\n  { {0x366a05f6, 0x7ae40934, 0x2aa40010, 0x00000000}},  //   баво_, _tiit, rűbb_,\n  { {0x61e91d5b, 0x78bc0d95, 0xf8bf038e, 0x00000000}},  //   _ngel, sorv, quén_,\n  { {0x68ed08d3, 0x18a6343c, 0x20c90051, 0x00000000}},  // [ae60] _guad, _наим, túil_,\n  { {0x6ad10055, 0xf8bf00f4, 0xa84a0025, 0x00000000}},  //   _সংযো, trée_, _الدم_,\n  { {0x645a0181, 0xa87b009b, 0xb5fb0428, 0x00000000}},  //   _ótim, _האיר, _znám,\n  { {0x20c9002a, 0x200c17f3, 0x3d1c03d7, 0x00000000}},  //   súil_, _sedi_, _मिले_,\n  { {0x200c01aa, 0x6455343d, 0x66040518, 0x00000000}},  //   _pedi_, _fazi, mbik,\n  { {0x61ff005f, 0x6455014a, 0x61e9343e, 0x00000000}},  //   ıqla, _gazi, _egel,\n  { {0x43430057, 0x200c0198, 0xddcb0036, 0x00000000}},  //   _перв, _vedi_, _nagł,\n  { {0x200c0bc4, 0x75240285, 0x6604343f, 0x00000000}},  //   _wedi_, oriz, nbik,\n  { {0x64553440, 0xc106006d, 0xfe6f0025, 0x00000000}},  //   _yazi, _رواي, ادى_,\n  { {0x752400c4, 0x7c3a010f, 0x68ed0048, 0x00000000}},  //   iriz, uftr, _ruad,\n  { {0x6abd00d4, 0xb5fb0051, 0x320d0022, 0x00000000}},  //   tosf, _snám, _yeey_,\n  { {0x75240066, 0x00000000, 0x00000000, 0x00000000}},  //   kriz,   ,   ,\n  { {0xac183441, 0x68ed3442, 0x6298009d, 0x00000000}},  //   _долу_, _quad, évoy,\n  { {0x752419ee, 0xe8d90011, 0x387a005b, 0x00000000}},  //   driz, _trọ_, _copr_,\n  { {0x645500d0, 0x6af30054, 0x4c3b009b, 0x00000000}},  //   _razi, _كثير, _התוב,\n  { {0x64553443, 0x6ee7014a, 0x75240391, 0x00000000}},  //   _sazi, _kıbr, friz,\n  { {0x6455001e, 0x95cb0893, 0xc8670849, 0x00000000}},  // [ae70] _pazi, сува_, _етни,\n  { {0xddc9016c, 0x26c2068f, 0x64550350, 0x00000000}},  //   nješ, _ekko_, _qazi,\n  { {0x645504a5, 0x9259007c, 0x2a690089, 0x00000000}},  //   _vazi, жает_, _knab_,\n  { {0x6455000b, 0x75243444, 0xa49b000a, 0x00000000}},  //   _wazi, briz, _otòg,\n  { {0xdb18021e, 0x75243445, 0x7e790045, 0x00000000}},  //   _hyvä, criz, _rowp,\n  { {0x660f010f, 0x26c9008e, 0xf958009b, 0x00000000}},  //   _heck, llao_, פסות_,\n  { {0xdb1800b0, 0x660f00d2, 0x00000000, 0x00000000}},  //   _jyvä, _keck,   ,\n  { {0x61e920f5, 0x00000000, 0x00000000, 0x00000000}},  //   _ugel,   ,   ,\n  { {0x660f010f, 0x6e3b01e5, 0x9f5c0161, 0x00000000}},  //   _meck, rfub, mavý_,\n  { {0x660f010f, 0x6d5b0065, 0x13aa00a1, 0x00000000}},  //   _leck, rvua, _انہی_,\n  { {0xf8bf0181, 0x26c90107, 0x661d0142, 0x00000000}},  //   guém_, klao_, _odsk,\n  { {0x2f18007e, 0xedd501b7, 0x00000000, 0x00000000}},  //   _хоць_, _قياد,   ,\n  { {0x3ead01e2, 0x3ebf00ca, 0xcdcb0151, 0x00000000}},  //   mnet_, mout_, _اذان_,\n  { {0x3ead1902, 0x3ebf0300, 0x661d0637, 0x00000000}},  //   lnet_, lout_, _adsk,\n  { {0x3ead0065, 0x66043446, 0x00000000, 0x00000000}},  //   onet_, tbik,   ,\n  { {0x3ead0292, 0x3ebf0224, 0x26c9016c, 0x00000000}},  //   nnet_, nout_, glao_,\n  { {0x660f15b4, 0x6604002d, 0xe5a30088, 0x00000000}},  // [ae80] _deck, rbik, вити,\n  { {0x7524022b, 0x67210f3a, 0x3ebf3447, 0x00000000}},  //   rriz, šlja, hout_,\n  { {0x3ebf01aa, 0x3ead0007, 0x93c3001a, 0x00000000}},  //   kout_, knet_, _ţări,\n  { {0xd1ca007c, 0xf773009b, 0x61ed0e54, 0x00000000}},  //   олее_, _סקר_, žaln,\n  { {0x3ead0056, 0x00000000, 0x00000000, 0x00000000}},  //   dnet_,   ,   ,\n  { {0x3ead3448, 0x32e8014a, 0x74e70088, 0x00000000}},  //   enet_, _eşya_, _одяг_,\n  { {0x20b9008b, 0xddc90166, 0x3ead010f, 0x00000000}},  //   чыць_, vješ, fnet_,\n  { {0x3ebf0010, 0x3ead27a1, 0x26c00026, 0x00000000}},  //   gout_, gnet_, noio_,\n  { {0x320601a3, 0xe3b00044, 0x00000000, 0x00000000}},  //   mboy_, _করিব,   ,\n  { {0x3ead0d69, 0x32061c53, 0x21260022, 0x00000000}},  //   anet_, lboy_, mroh_,\n  { {0x3ead0190, 0x3ebf009d, 0xda3500a5, 0x00000000}},  //   bnet_, bout_, нены,\n  { {0xcfa90355, 0x32060543, 0x3ead0009, 0x00000000}},  //   _عالم_, nboy_, cnet_,\n  { {0x6f18001c, 0xddc90243, 0x26c00197, 0x00000000}},  //   lsvc, pješ, doio_,\n  { {0x660f144f, 0x00000000, 0x00000000, 0x00000000}},  //   _seck,   ,   ,\n  { {0x320600e0, 0xbc6700a2, 0xdb1806ec, 0x00000000}},  //   kboy_, _زمين_, _byvå,\n  { {0xe8d90082, 0x26c00026, 0x2a69004a, 0x00000000}},  //   _trỏ_, goio_, _unab_,\n  { {0x660f0073, 0xf8ae007a, 0x2d8400f4, 0x00000000}},  // [ae90] _veck, شکی_, nyme_,\n  { {0x26c9021d, 0xdb180039, 0x320600d9, 0x00000000}},  //   slao_, _tyvä, eboy_,\n  { {0x3ead0030, 0x660f0039, 0x3ebf0339, 0x00000000}},  //   ynet_, _teck, yout_,\n  { {0x661d0030, 0xe29801fb, 0x291900b0, 0x00000000}},  //   _udsk, має_, ossa_,\n  { {0x2919021e, 0x61ed0091, 0x3ead05ba, 0x00000000}},  //   nssa_, žalo, vnet_,\n  { {0x7ff500a2, 0x3ebf1cdc, 0x2919021e, 0x00000000}},  //   رستا, wout_, issa_,\n  { {0x3ead15c8, 0xdbd6003c, 0x752d002d, 0x00000000}},  //   tnet_, _jääk, luaz,\n  { {0x32060145, 0x3ead1689, 0x00000000, 0x00000000}},  //   cboy_, unet_,   ,\n  { {0xc0cb01fb, 0xdbd6021e, 0x3ebf00be, 0x00000000}},  //   _дуже_, _lääk, rout_,\n  { {0xeb99003b, 0x3ebf0068, 0x00000000, 0x00000000}},  //   зио_, sout_,   ,\n  { {0x3ead00f8, 0x2919021e, 0x200731f8, 0x00000000}},  //   pnet_, essa_, mbni_,\n  { {0x9413013f, 0x00000000, 0x00000000, 0x00000000}},  //   rixə_,   ,   ,\n  { {0x96150055, 0xf2d2007b, 0x61fb0020, 0x00000000}},  //   িলাম_, טעט_, _mful,\n  { {0x752d3449, 0xeb9900e2, 0x00000000, 0x00000000}},  //   duaz, _нил_,   ,\n  { {0xfaa6007e, 0x26c00197, 0x2ca5000c, 0x00000000}},  //   _пако, toio_, mild_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xd9de0044, 0x26c000c4, 0x22b80059, 0x00000000}},  // [aea0] _ভ্রম, roio_, nčke_,\n  { {0x26c00197, 0x00000000, 0x00000000, 0x00000000}},  //   soio_,   ,   ,\n  { {0x389b007b, 0x32061ae5, 0x2d8400ab, 0x00000000}},  //   _זיינ, tboy_, zyme_,\n  { {0x2ca504b2, 0x21260022, 0x6aa601a2, 0x00000000}},  //   hild_, troh_, nikf,\n  { {0xc1e70057, 0x2ca500d8, 0x752d0026, 0x00000000}},  //   ньше_, kild_, cuaz,\n  { {0x6616015e, 0x7e6b20c0, 0x00000000, 0x00000000}},  //   layk, _angp,   ,\n  { {0xb5fb002a, 0x44f6000c, 0xce94005e, 0x00000000}},  //   _snái, _hæ_, какъ,\n  { {0x64800bac, 0x433b0049, 0x2d84007f, 0x00000000}},  //   _töis, _מעלב, tyme_,\n  { {0x2ca5012d, 0x00000000, 0x00000000, 0x00000000}},  //   fild_,   ,   ,\n  { {0x4f96012b, 0x253701ce, 0x61e400ca, 0x00000000}},  //   _преу, עניש_, žils,\n  { {0x3d100316, 0xa3d6006e, 0x29000982, 0x00000000}},  //   _दौरे_, ाइट_, _atia_,\n  { {0xdbd60004, 0x2d84004a, 0x00000000, 0x00000000}},  //   _rääk, pyme_,   ,\n  { {0x2ca51543, 0x291900b0, 0x0dc705a5, 0x00000000}},  //   bild_, ussa_, _пуши_,\n  { {0xdbd600b0, 0x3a20014a, 0x67210010, 0x00000000}},  //   _pääk, _edip_, áljo,\n  { {0x92100309, 0x29191da2, 0x69c001a2, 0x00000000}},  //   ाराज_, sssa_, ümer,\n  { {0x752d0207, 0x44f6344a, 0x7af7004a, 0x00000000}},  //   tuaz, _bæ_, _éxta,\n  { {0x2900008e, 0xd25100a1, 0xf4870a85, 0x00000000}},  // [aeb0] _gtia_, یچر_, нужн,\n  { {0x752d065d, 0x00000000, 0x00000000, 0x00000000}},  //   ruaz,   ,   ,\n  { {0xe78700e2, 0x78a70023, 0x00000000, 0x00000000}},  //   _чупо, mijv,   ,\n  { {0x78a700b5, 0x44f6000c, 0x00000000, 0x00000000}},  //   lijv, _fæ_,   ,\n  { {0x752d0026, 0x69da0036, 0x00000000, 0x00000000}},  //   quaz, ęteg,   ,\n  { {0x8fa5007e, 0x99920173, 0x394900fa, 0x00000000}},  //   кале, _deyň_, _mpas_,\n  { {0xb88200b9, 0x2eb500e2, 0xa3d40b86, 0x00000000}},  //   _říka, ксис, _борч,\n  { {0x2ca5040f, 0x394900b0, 0x78a700bb, 0x00000000}},  //   wild_, _opas_, hijv,\n  { {0x2d8b004f, 0x00000000, 0x00000000, 0x00000000}},  //   áce_,   ,   ,\n  { {0x4c850088, 0x22b80e0d, 0x4433016b, 0x00000000}},  //   тлов, rčke_, ngx_,\n  { {0x2d8b0c76, 0x2900237d, 0x3a2009e4, 0x00000000}},  //   šce_, _stia_, _pdip_,\n  { {0xfeb80054, 0xfaa600ed, 0x628b01d6, 0x00000000}},  //   _كانت_, тамо, nkgo,\n  { {0x8276007b, 0x78a70065, 0x6ad10044, 0x00000000}},  //   דערע_, fijv, _সংশো,\n  { {0x6aa61d30, 0x60c3344b, 0x7d1b006c, 0x00000000}},  //   sikf, nonm, msus,\n  { {0xe7370256, 0x7d1b344c, 0x39490066, 0x00000000}},  //   кер_, lsus, _epas_,\n  { {0xddd901aa, 0x60c3010f, 0x61ed10f7, 0x00000000}},  //   _pawň, honm, žalj,\n  { {0x958302d3, 0x7d1b006c, 0xa806005e, 0x00000000}},  // [aec0] алте, nsus, _изпл,\n  { {0x14c8007a, 0x7d1b0933, 0x212f0045, 0x00000000}},  //   رهای_, isus, dugh_,\n  { {0xddc20166, 0x7d1b11f3, 0x00000000, 0x00000000}},  //   _mnoš, hsus,   ,\n  { {0xd36f0054, 0x7d1b006c, 0x527500ec, 0x00000000}},  //   تهم_, ksus, лучу,\n  { {0xc43400a6, 0xdbcc01e5, 0x00000000, 0x00000000}},  //   _مکات, _lóði,   ,\n  { {0x7d1b211f, 0x399b00a3, 0x60c3344d, 0x00000000}},  //   dsus, וינד, gonm,\n  { {0x64a301a4, 0x4438344e, 0x6aa406c2, 0x00000000}},  //   _тара, _icr_, _omif,\n  { {0xc7b3009b, 0x628b0203, 0x7d780025, 0x00000000}},  //   יבו_, ckgo, فمبر_,\n  { {0x645c344f, 0x7d1b27b2, 0xdd9005d4, 0x00000000}},  //   _kari, gsus, صود_,\n  { {0x645e0190, 0x4438041d, 0x9f9801ca, 0x00000000}},  //   ndpi, _jcr_, lším_,\n  { {0x6148000c, 0x394918a7, 0x00000000, 0x00000000}},  //   _félö, _spas_,   ,\n  { {0x645c1097, 0x2fd7007a, 0xc3330104, 0x00000000}},  //   _lari, _شوند_, סור_,\n  { {0x81e40055, 0x443800ea, 0x628001a3, 0x00000000}},  //   পুর_, _ocr_, _momo,\n  { {0x645c1bd3, 0x60da04b7, 0x443810c5, 0x00000000}},  //   _nari, _jhtm, _ncr_,\n  { {0x9cd7009b, 0x656600ea, 0x78a73450, 0x00000000}},  //   _שווה_, _arkh, rijv,\n  { {0x62800390, 0x60c30173, 0xeb77009b, 0x00000000}},  //   _nomo, zonm, _יעוץ_,\n  { {0x4438001a, 0x645e00bb, 0x394900e0, 0x00000000}},  // [aed0] _bcr_, fdpi, _upas_,\n  { {0x645c0127, 0x4438121e, 0x7d1d3451, 0x00000000}},  //   _cari, _ccr_, ássi,\n  { {0x645c0127, 0x6e2211e4, 0x7d020061, 0x00000000}},  //   _dari, _odob, _ltos,\n  { {0x62800555, 0xf364025f, 0x60c301aa, 0x00000000}},  //   _como, штун, wonm,\n  { {0x645c009f, 0x62800cce, 0x7aed0047, 0x00000000}},  //   _fari, _domo, _miat,\n  { {0x7aed1866, 0x765d04be, 0x44380145, 0x00000000}},  //   _liat, _hasy, _gcr_,\n  { {0xa3df0164, 0x60c300ab, 0x7d020006, 0x00000000}},  //   देश_, ronm, _atos,\n  { {0x7d1b0004, 0x60c33452, 0x645c0027, 0x00000000}},  //   tsus, sonm, _zari,\n  { {0x765d1535, 0x645c014a, 0x5c150783, 0x00000000}},  //   _masy, _yari, льну,\n  { {0x645c005f, 0x765d01aa, 0x7d020051, 0x00000000}},  //   _xari, _lasy, _dtos,\n  { {0x7d1b0052, 0x7d022ba6, 0x22b800ca, 0x00000000}},  //   ssus, _etos, lčka_,\n  { {0x765d0263, 0x7d1b006c, 0x60da0045, 0x00000000}},  //   _nasy, psus, _zhtm,\n  { {0x7aed0169, 0x8c4508fc, 0xe8f701e1, 0x00000000}},  //   _diat, _беле, лля_,\n  { {0x60da2903, 0x6e220941, 0x7e7b0166, 0x00000000}},  //   _xhtm, _zdob, ljup,\n  { {0x7aed0010, 0x765d188a, 0x00000000, 0x00000000}},  //   _fiat, _basy,   ,\n  { {0x645c3453, 0x44231670, 0x44380061, 0x00000000}},  //   _sari, _adj_, _scr_,\n  { {0x9f9801dc, 0x6280007f, 0x05660783, 0x00000000}},  // [aee0] vším_, _romo, ыван,\n  { {0x62800d4e, 0x645c3454, 0x6d590020, 0x00000000}},  //   _somo, _qari, _mswa,\n  { {0x442301ee, 0x9f980861, 0x443814f9, 0x00000000}},  //   _ddj_, tším_, _vcr_,\n  { {0x60da0061, 0x6d4b0e78, 0x645c01a3, 0x00000000}},  //   _shtm, _opga, _wari,\n  { {0x645c087e, 0x60da0061, 0xa1583455, 0x00000000}},  //   _tari, _phtm, талу_,\n  { {0xd00f0025, 0xe8d90082, 0x4438004a, 0x00000000}},  //   كله_, _trễ_, _ucr_,\n  { {0x7d020046, 0x6d4b0dec, 0xb4e000e8, 0x00000000}},  //   _stos, _apga, दगी_,\n  { {0x44440b8d, 0x44230450, 0x1ef70025, 0x00000000}},  //   lf_, _zdj_, دعوة_,\n  { {0x0caa0751, 0x7aed3456, 0x4444112b, 0x00000000}},  //   етни_, _riat, of_,\n  { {0x444400c4, 0x7aed0036, 0x2018000c, 0x00000000}},  //   nf_, _siat, _þri_,\n  { {0x4444001c, 0x7aed3457, 0x54770049, 0x00000000}},  //   if_, _piat, אגיע_,\n  { {0x6e2200ee, 0x8c0c0044, 0x20c90051, 0x00000000}},  //   _udob, _শাওন_, búis_,\n  { {0x7aed1800, 0xa802005d, 0x6da30517, 0x00000000}},  //   _viat, ğınd, _лица,\n  { {0x444402ae, 0xa802047f, 0x7aed0036, 0x00000000}},  //   jf_, şınd, _wiat,\n  { {0x765d130b, 0x6d400279, 0x4444281b, 0x00000000}},  //   _pasy, ltma, df_,\n  { {0x7bd80363, 0x44441aaf, 0x44230173, 0x00000000}},  //   _izvu, ef_, _sdj_,\n  { {0x44440090, 0x6d4001aa, 0xf1a4013d, 0x00000000}},  // [aef0] ff_, ntma, _खेलन,\n  { {0x78a5009f, 0x00000000, 0x00000000, 0x00000000}},  //   _umhv,   ,   ,\n  { {0x1cbb007b, 0xf367007e, 0x765d3458, 0x00000000}},  //   עמבע, ытан, _tasy,\n  { {0x444403cd, 0x9f5e00f6, 0x6d4001a2, 0x00000000}},  //   af_, _letó_, ktma,\n  { {0x660d04cb, 0xe1f8008b, 0x44443459, 0x00000000}},  //   mbak, угі_, bf_,\n  { {0x660d0292, 0x22b800ca, 0x444400d2, 0x00000000}},  //   lbak, rčka_, cf_,\n  { {0xf8bf009d, 0x1e950fd8, 0x8f67009e, 0x00000000}},  //   lués_, ирир, البے_,\n  { {0x6d400061, 0x660d022b, 0x752d02cf, 0x00000000}},  //   ftma, nbak, oraz,\n  { {0x212b001d, 0x6d400030, 0x7e7b006c, 0x00000000}},  //   _ích_, gtma, rjup,\n  { {0x3ea60039, 0x1035007a, 0x20c90048, 0x00000000}},  //   _emot_, _خبرگ, rúis_,\n  { {0xbb450088, 0x752d00b9, 0x7644006b, 0x00000000}},  //   шенк, hraz, yfiy,\n  { {0x09e601be, 0xfc3f0224, 0x752d345a, 0x00000000}},  //   ионн, ří_, kraz,\n  { {0x6d4000bb, 0x660d0190, 0x6d59345b, 0x00000000}},  //   ctma, dbak, _uswa,\n  { {0x752d037e, 0x44440927, 0x225f0a42, 0x00000000}},  //   draz, xf_, _lauk_,\n  { {0x752d022b, 0x7d092a68, 0xe61600ed, 0x00000000}},  //   eraz, lpes, ифаќ,\n  { {0x752d345c, 0xcf92071c, 0xfb24007a, 0x00000000}},  //   fraz, קטן_, _اروپ,\n  { {0xf8bf0a53, 0x752d28dc, 0x64a604b6, 0x00000000}},  // [af00] gués_, graz, аааа,\n  { {0x4444001f, 0xd90d0123, 0x3940002b, 0x00000000}},  //   uf_, _سیف_, _iqis_,\n  { {0x4444037f, 0x752d064c, 0xd4d5007e, 0x00000000}},  //   rf_, araz, сітэ,\n  { {0x752d0428, 0xd7bb00b6, 0xe2460025, 0x00000000}},  //   braz, _יציר, شخصي,\n  { {0x28db03d7, 0x752d0207, 0x4444010f, 0x00000000}},  //   _मीडि, craz, pf_,\n  { {0xdce20119, 0x7e0e0164, 0x394d2af7, 0x00000000}},  //   _proč, सर्ग_, çesi_,\n  { {0xd3720076, 0x20c90051, 0x4fc602ea, 0x00000000}},  //   _ظهر_, túir_, јсла,\n  { {0x6299010f, 0xdce20059, 0x6d4005b4, 0x00000000}},  //   chwo, _vroč, ttma,\n  { {0x8c3c011f, 0xddc9014a, 0x9f5e00d4, 0x00000000}},  //   liği, rdeş, _petó_,\n  { {0x6721089f, 0x20c90051, 0x2ca70082, 0x00000000}},  //   šlji, súir_, _cmnd_,\n  { {0x9992000a, 0x7d090472, 0xee3a142c, 0x00000000}},  //   _deyō_, apes, _ане_,\n  { {0x201c345d, 0x66fc00b9, 0x2a6000f6, 0x00000000}},  //   lavi_, _ačko, _caib_,\n  { {0xf8bf0010, 0x0e9b0104, 0x00000000, 0x00000000}},  //   nség_, _בשאל,   ,\n  { {0x8d850167, 0xb5fb00c4, 0x201c0095, 0x00000000}},  //   _دشمن, _anáp, navi_,\n  { {0x6298001e, 0x23a5013d, 0x660d0376, 0x00000000}},  //   īvoj, _गेंद, tbak,\n  { {0x8c3c011f, 0x35f5007e, 0xf8bf009d, 0x00000000}},  //   diği, спар, tués_,\n  { {0x95cb345e, 0x201c0bf8, 0x660d014a, 0x00000000}},  // [af10] тува_, kavi_, rbak,\n  { {0x201c1f6c, 0x752d02cb, 0xf3671f25, 0x00000000}},  //   javi_, rraz, итен,\n  { {0xa85600b6, 0x201c014a, 0x752d0107, 0x00000000}},  //   _היתה_, davi_, sraz,\n  { {0x623528d1, 0x752d0213, 0xb4db00f6, 0x00000000}},  //   седу, praz, _apàt,\n  { {0xf8bf345f, 0xddd90173, 0x00000000, 0x00000000}},  //   qués_, _pawō,   ,\n  { {0x3861001f, 0x62990c0d, 0x77f5013d, 0x00000000}},  //   _jahr_, shwo, _आलोक_,\n  { {0xb3e50055, 0xe3e50055, 0x33950025, 0x00000000}},  //   _প্রজ, _প্রব, _الأز,\n  { {0x9454006b, 0x57b8009b, 0x9e6202dc, 0x00000000}},  //   _çərş, ילוב_, звъд,\n  { {0x201c0119, 0x2a600093, 0xa1940a85, 0x00000000}},  //   bavi_, _raib_, _датч,\n  { {0x0dc8012b, 0x7d0901a3, 0x201c0197, 0x00000000}},  //   јући_, rpes, cavi_,\n  { {0x7d0906c0, 0x00000000, 0x00000000, 0x00000000}},  //   spes,   ,   ,\n  { {0x7d09004e, 0xdb1e0f49, 0xc332009b, 0x00000000}},  //   ppes, íván, הוט_,\n  { {0xddc90363, 0x290d001a, 0x3ead0485, 0x00000000}},  //   ljež, ţean_, miet_,\n  { {0x3ead002b, 0xdd8e0025, 0x00000000, 0x00000000}},  //   liet_, _سوى_,   ,\n  { {0xd62a003b, 0xf8bf0010, 0x386101f3, 0x00000000}},  //   лове_, zség_, _dahr_,\n  { {0x3ead0ebd, 0x6298001e, 0x201c1701, 0x00000000}},  //   niet_, īvok, zavi_,\n  { {0x201c000a, 0x98a6007c, 0x20ca0061, 0x00000000}},  // [af20] yavi_, _гипе, ाकमध,\n  { {0xb97b00b6, 0x8c3c014a, 0x3ead00bb, 0x00000000}},  //   _עניי, tiği, hiet_,\n  { {0x8c1a00b6, 0x3ead0036, 0x6fa70061, 0x00000000}},  //   רועי, kiet_, _केलं,\n  { {0x3ead0f68, 0xf8bf0047, 0x8c3c014a, 0x00000000}},  //   jiet_, tség_, riği,\n  { {0x3ead3460, 0x201c0340, 0x64430129, 0x00000000}},  //   diet_, tavi_, ònic,\n  { {0x2eb20164, 0x04960025, 0x31660023, 0x00000000}},  //   ुक्त, _السح, rvoz_,\n  { {0xf8bf0047, 0x201c0340, 0x321d0036, 0x00000000}},  //   sség_, ravi_, bawy_,\n  { {0x25ad10f7, 0x93b7009b, 0x877b0049, 0x00000000}},  //   _želi_, _הללו_, טאצי,\n  { {0x25a0006b, 0x2b4e00c4, 0xf8bf0068, 0x00000000}},  //   nzil_, _spfc_, lsée_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x3ead3461, 0xf8bf00f4, 0xaca900a1, 0x00000000}},  //   biet_, nsée_, جھنے_,\n  { {0x59aa007d, 0x3ead200a, 0xf8bf009d, 0x00000000}},  //   _चेहर, ciet_, isée_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x321d0036, 0x98ab0035, 0xf99f0026, 0x00000000}},  //   zawy_, ducă_, rzè_,\n  { {0x48a80077, 0x21240068, 0x00000000, 0x00000000}},  //   стям_, _lvmh_,   ,\n  { {0x386101a2, 0x7c3a01d6, 0x9f4d0068, 0x00000000}},  //   _wahr_, lgtr, înée_,\n  { {0x9419026b, 0x00000000, 0x00000000, 0x00000000}},  // [af30] ижат_,   ,   ,\n  { {0x7c3a0011, 0x7e623462, 0x3ead3463, 0x00000000}},  //   ngtr, _laop, ziet_,\n  { {0xd3710054, 0x321d0036, 0x249800e5, 0x00000000}},  //   بها_, tawy_, _dlrm_,\n  { {0x7e620161, 0xddc9016e, 0x00000000, 0x00000000}},  //   _naop, vjež,   ,\n  { {0x3ead0011, 0x2bcf007d, 0x763a0049, 0x00000000}},  //   viet_, _सुना, _דערג,\n  { {0xa06901f9, 0x29090020, 0xd0060478, 0x00000000}},  //   рака_, _mtaa_, оеше_,\n  { {0x3ead3464, 0x6457008e, 0x00000000, 0x00000000}},  //   tiet_, mexi,   ,\n  { {0x6457027b, 0xd109023c, 0x00000000, 0x00000000}},  //   lexi, _نقره_,   ,\n  { {0x0c790147, 0xa28200a1, 0x8d550088, 0x00000000}},  //   асны_, _تینو, ітич,\n  { {0x64570211, 0x4b25189f, 0x3ead0089, 0x00000000}},  //   nexi, омов, siet_,\n  { {0xa49b000a, 0xfbd10025, 0x00000000, 0x00000000}},  //   _atòk, بتة_,   ,\n  { {0x28d2013d, 0xe8d90082, 0x6aaf06ed, 0x00000000}},  //   _दीजि, _trớ_, gicf,\n  { {0x6abd008e, 0x2d820056, 0x00000000, 0x00000000}},  //   érfa, øket_,   ,\n  { {0x64b80164, 0xf8bf009d, 0xfc460802, 0x00000000}},  //   _आदेश, ysée_, čích_,\n  { {0x7c6400a1, 0x378700ed, 0x64570133, 0x00000000}},  //   _راول, обро_, dexi,\n  { {0x6e3b04cb, 0x316d3465, 0x15e50061, 0x00000000}},  //   ngub, _orez_, _कणखर_,\n  { {0x2909001c, 0x34aa003b, 0xda7b009b, 0x00000000}},  // [af40] _gtaa_, авао_, _כנקר,\n  { {0x61e600b9, 0x14260088, 0xe3b20137, 0x00000000}},  //   _úkli, ідем, ورا_,\n  { {0x2bcf001c, 0xe1fa003b, 0xa5bb004a, 0x00000000}},  //   _सुमा, аге_, _neóf,\n  { {0x316d01d9, 0x366a012b, 0xf8bf009d, 0x00000000}},  //   _brez_, _тамо_, rsée_,\n  { {0xf8bf00f4, 0x60ca0168, 0x316d00e5, 0x00000000}},  //   ssée_, tofm, _crez_,\n  { {0x7e6205fa, 0x2bcf0164, 0xf9930104, 0x00000000}},  //   _saop, _सुभा, ורד_,\n  { {0x9f030025, 0x442a2552, 0x644e0066, 0x00000000}},  //   وووو, _idb_, _ibbi,\n  { {0x442a0066, 0x66040b53, 0x00000000, 0x00000000}},  //   _hdb_, ncik,   ,\n  { {0x7c3a001c, 0x7524014a, 0x442a0288, 0x00000000}},  //   tgtr, nsiz, _kdb_,\n  { {0x628200b0, 0x442a3466, 0x75240197, 0x00000000}},  //   ljoo, _jdb_, isiz,\n  { {0x442a006b, 0xc3fb0049, 0x0eba007e, 0x00000000}},  //   _mdb_, יליש, _куды_,\n  { {0x7524014a, 0x442a1325, 0x66040305, 0x00000000}},  //   ksiz, _ldb_, jcik,\n  { {0x6e20011c, 0x644e0197, 0x6ef50006, 0x00000000}},  //   mamb, _obbi, _išba,\n  { {0x6e2009f3, 0x6aaf02c2, 0x75243467, 0x00000000}},  //   lamb, sicf, dsiz,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x644e3468, 0x6e20020c, 0x8f9b0104, 0x00000000}},  //   _abbi, namb, בילי,\n  { {0x6457049a, 0x6e200020, 0x7a440010, 0x00000000}},  // [af50] texi, iamb, sító,\n  { {0x6e200020, 0x442a0061, 0xd5b801ff, 0x00000000}},  //   hamb, _cdb_, іст_,\n  { {0xd37b008b, 0x64570142, 0x6e200020, 0x00000000}},  //   шча_, rexi, kamb,\n  { {0x6e200020, 0x442a2be8, 0x644e00d9, 0x00000000}},  //   jamb, _edb_, _ebbi,\n  { {0x21690175, 0x661d0dec, 0x442a013e, 0x00000000}},  //   сили_, _iesk, _fdb_,\n  { {0xa5bb0051, 0x80a80088, 0x442a05af, 0x00000000}},  //   _ndói, овів_, _gdb_,\n  { {0x661d0368, 0x4421020c, 0x00000000, 0x00000000}},  //   _kesk, mah_,   ,\n  { {0x4421020c, 0x661d00b9, 0x7c2a0009, 0x00000000}},  //   lah_, _jesk, _adfr,\n  { {0x661d0169, 0x2d8b00f4, 0xf1b901a8, 0x00000000}},  //   _mesk, âce_, _beše_,\n  { {0x44210281, 0x23bf001c, 0x6aad3469, 0x00000000}},  //   nah_, _एखाद, _amaf,\n  { {0x6e202174, 0xfa6a0264, 0x395201d6, 0x00000000}},  //   bamb, банк_, _spys_,\n  { {0x442109f3, 0x661d0027, 0x6e200207, 0x00000000}},  //   hah_, _nesk, camb,\n  { {0x4421020c, 0xed580088, 0x75240045, 0x00000000}},  //   kah_, _мої_, xsiz,\n  { {0x44211092, 0xf8bf0211, 0x45090044, 0x00000000}},  //   jah_, drés_, _লিংক_,\n  { {0x66e60057, 0x4421020c, 0x661d059d, 0x00000000}},  //   зова, dah_, _besk,\n  { {0x661d01ca, 0xe737025f, 0x442a009d, 0x00000000}},  //   _cesk, џет_, _sdb_,\n  { {0xf8bf0fdb, 0x442a0093, 0x4421003f, 0x00000000}},  // [af60] grés_, _pdb_, fah_,\n  { {0x7524005d, 0x6604003b, 0x442104cb, 0x00000000}},  //   rsiz, scik, gah_,\n  { {0x7ae40093, 0x6e200ea6, 0x0af90044, 0x00000000}},  //   _khit, yamb, _আবুল_,\n  { {0x661d0343, 0x44210058, 0x25e90061, 0x00000000}},  //   _gesk, aah_, चेही_,\n  { {0x4421020c, 0x7c210190, 0x22b80059, 0x00000000}},  //   bah_, kalr, nčki_,\n  { {0x4421346a, 0x10a300c0, 0x644e0afb, 0x00000000}},  //   cah_, ничн, _ubbi,\n  { {0x6e20000b, 0x7ae40e33, 0xb4d8007d, 0x00000000}},  //   tamb, _ohit, ाती_,\n  { {0x3da601fb, 0x2bcf007d, 0x629b04a5, 0x00000000}},  //   зроб, _सुधा, _gluo,\n  { {0x81d30044, 0x22b80059, 0xa3e8013d, 0x00000000}},  //   হেব_, jčki_, मेर_,\n  { {0x7ae4346b, 0xc19b0104, 0x7af6000a, 0x00000000}},  //   _ahit, _השמי, _aiyt,\n  { {0x6e20000b, 0x7ae430b3, 0x69c40843, 0x00000000}},  //   pamb, _bhit, _axie,\n  { {0x7ae40263, 0x201e0ae4, 0xc33300a0, 0x00000000}},  //   _chit, _heti_, עור_,\n  { {0x44211c52, 0x661d01aa, 0x201e0ed5, 0x00000000}},  //   yah_, _resk, _keti_,\n  { {0x7ae40004, 0x7c21060d, 0xf8bf009d, 0x00000000}},  //   _ehit, calr, vrés_,\n  { {0x44210059, 0x661d0229, 0x656f0009, 0x00000000}},  //   vah_, _pesk, _srch,\n  { {0x4421020c, 0xddc20428, 0x201e0059, 0x00000000}},  //   wah_, _množ, _leti_,\n  { {0x44210127, 0x661d006c, 0x00000000, 0x00000000}},  // [af70] tah_, _vesk,   ,\n  { {0x656f01ca, 0x661d0007, 0xf8bf0666, 0x00000000}},  //   _vrch, _wesk, rrés_,\n  { {0x4421020c, 0x661d037e, 0x6abd346c, 0x00000000}},  //   rah_, _tesk, onsf,\n  { {0x44211a56, 0xf8bf00d4, 0x6abd00ea, 0x00000000}},  //   sah_, prés_, nnsf,\n  { {0x201e022b, 0x656f0056, 0xf1940088, 0x00000000}},  //   _beti_, _urch, ниць,\n  { {0x201e0145, 0x44210085, 0x00000000, 0x00000000}},  //   _ceti_, qah_,   ,\n  { {0x201e0027, 0x7c210133, 0x00000000, 0x00000000}},  //   _deti_, valr,   ,\n  { {0x2d95007c, 0x00000000, 0x00000000, 0x00000000}},  //   дрос,   ,   ,\n  { {0x4c35008b, 0x6298001e, 0x7ae40016, 0x00000000}},  //   мэнт, īvot, _rhit,\n  { {0x7ae40065, 0x201e009f, 0x22b800ca, 0x00000000}},  //   _shit, _geti_, včki_,\n  { {0x7fb90014, 0x60c40051, 0x7d190009, 0x00000000}},  //   _بهار_, éime, _wwws,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7c2900da, 0xd6c50044, 0x201e0471, 0x00000000}},  //   _долг_, ্ষায, _yeti_,\n  { {0x7ae40866, 0x7e6908e0, 0x6d490035, 0x00000000}},  //   _whit, ldep, mtea,\n  { {0x6d49002a, 0x7ae41d5d, 0x61fb016e, 0x00000000}},  //   ltea, _thit, _ogul,\n  { {0xe8d9001d, 0x61fb0065, 0x61f60006, 0x00000000}},  //   _trở_, _ngul, žyli,\n  { {0x6d490c0e, 0x17fa0025, 0x68f70045, 0x00000000}},  // [af80] ntea, _وردة_, _fixd,\n  { {0xb937007b, 0xb4d8062e, 0x61fb1052, 0x00000000}},  //   _קריג_, ाते_, _agul,\n  { {0xe8140365, 0xa3e803d7, 0x201e197d, 0x00000000}},  //   _त्या_, में_, _reti_,\n  { {0x201e346d, 0x7e690190, 0x673c02db, 0x00000000}},  //   _seti_, jdep, murj,\n  { {0xba480006, 0x7e692ca0, 0x20ca0025, 0x00000000}},  //   _grįž, ddep, يبتي_,\n  { {0xd00f0379, 0x6d490051, 0xcf9a00e2, 0x00000000}},  //   لله_, dtea, жји_,\n  { {0x201e346e, 0xe29a0152, 0x6d490dd1, 0x00000000}},  //   _veti_, _дав_, etea,\n  { {0x61fb0009, 0x7e6900ea, 0x6d49346f, 0x00000000}},  //   _ggul, gdep, ftea,\n  { {0x1ee8026c, 0x6d490051, 0x63ae0006, 0x00000000}},  //   _ہوئی_, gtea, žinė,\n  { {0xe5710049, 0x2bcf007d, 0x6abd005b, 0x00000000}},  //   אַט_, _सुहा, wnsf,\n  { {0x764d014a, 0xaab5007e, 0x8f75007e, 0x00000000}},  //   yfay, ейні, _пуці,\n  { {0x3a200129, 0x3d19013d, 0xbb93007c, 0x00000000}},  //   _ceip_, _मौके_, тающ,\n  { {0x6d4932aa, 0xdd9200a6, 0x6abd0669, 0x00000000}},  //   ctea, _جوش_, rnsf,\n  { {0xfb1900a1, 0x290000d4, 0x00000000, 0x00000000}},  //   _کروں_, _duia_,   ,\n  { {0xf1b90b18, 0xeaf80123, 0x64430129, 0x00000000}},  //   _meša_, ثریت_, ònim,\n  { {0xdce2016c, 0xdddb04eb, 0x649b0035, 0x00000000}},  //   _broć, ljuš, _cîin,\n  { {0x2900273e, 0x7d0d0065, 0x22b800ca, 0x00000000}},  // [af90] _guia_, _çast, nčku_,\n  { {0x764d0190, 0x673c00ca, 0xf1b93470, 0x00000000}},  //   sfay, burj, _neša_,\n  { {0x656d0934, 0x6d49002d, 0x7e6916d4, 0x00000000}},  //   svah, ztea, ydep,\n  { {0x4ed00044, 0x02c90061, 0x6d490943, 0x00000000}},  //   াগুল, िकेन, ytea,\n  { {0x6d490197, 0x7e690142, 0xd009003b, 0x00000000}},  //   xtea, vdep, пеле_,\n  { {0xfc4e0082, 0x3f6916e8, 0x00000000, 0x00000000}},  //   _sửng_, зико_,   ,\n  { {0xff51004b, 0x6d4900d9, 0xcef500e2, 0x00000000}},  //   اخت_, wtea, нчињ,\n  { {0x6d49006c, 0x4d65003b, 0x00000000, 0x00000000}},  //   ttea, екив,   ,\n  { {0x7e691aae, 0x6d490e46, 0x00000000, 0x00000000}},  //   rdep, utea,   ,\n  { {0x6d493471, 0x317800f3, 0x7e690056, 0x00000000}},  //   rtea, _تحفظ_, sdep,\n  { {0x6d493472, 0x7e6900d4, 0x7a6a0478, 0x00000000}},  //   stea, pdep, пинг_,\n  { {0x9cea026c, 0x6d493473, 0x62993474, 0x00000000}},  //   _ہونے_, ptea, nkwo,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6f010010, 0x3ebf0a6b, 0x2a690288, 0x00000000}},  //   _kulc, lnut_, _eaab_,\n  { {0xc5f80164, 0x7bd80006, 0xac7400a6, 0x00000000}},  //   ंख्य_, _gyvu, _جانش,\n  { {0x3ebf021e, 0xdce20166, 0xb4d8006e, 0x00000000}},  //   nnut_, _proć, ात्_,\n  { {0x69c1011f, 0xe5a3025f, 0xcdac0049, 0x00000000}},  // [afa0] şler, гити, ֿיבֿ,\n  { {0x62990112, 0x03a63475, 0x673c3476, 0x00000000}},  //   ekwo, низо, purj,\n  { {0xdce901d9, 0x3ebf3477, 0xf4841125, 0x00000000}},  //   jveč, knut_, _یاسی,\n  { {0xdce916d0, 0xa683007c, 0x41e6007e, 0x00000000}},  //   dveč, _блюд, ніла,\n  { {0x3ebf0142, 0x26d20020, 0x26c0228c, 0x00000000}},  //   dnut_, moyo_, mnio_,\n  { {0x232a0077, 0x26c00006, 0x26d20022, 0x00000000}},  //   _ноги_, lnio_, loyo_,\n  { {0x645e0a13, 0x82a60088, 0x6f010035, 0x00000000}},  //   mepi, _завж, _culc,\n  { {0x6f01050a, 0x645e2910, 0x26c00207, 0x00000000}},  //   _dulc, lepi, nnio_,\n  { {0x8ffa00a6, 0xfd0f0167, 0x26c03478, 0x00000000}},  //   _فرار_, یجی_, inio_,\n  { {0x2a690004, 0x645e3479, 0xc5f3007b, 0x00000000}},  //   _saab_, nepi, נדז_,\n  { {0x34b700b3, 0x26d20022, 0xdb1c014a, 0x00000000}},  //   תפים_, koyo_, _özür,\n  { {0x6ee52cf4, 0x26d20093, 0x645e0052, 0x00000000}},  //   tóbe, joyo_, hepi,\n  { {0x26c01070, 0x645e0145, 0x26d20022, 0x00000000}},  //   dnio_, kepi, doyo_,\n  { {0x645e016e, 0x26c0347a, 0x00000000, 0x00000000}},  //   jepi, enio_,   ,\n  { {0x645e013e, 0x67d50f62, 0x65660146, 0x00000000}},  //   depi, тову, _askh,\n  { {0xd6d802e9, 0x7bdb00b3, 0x7d02347b, 0x00000000}},  //   ету_, _מקוו, _kuos,\n  { {0x7d020997, 0xeaf80070, 0xa8020276, 0x00000000}},  // [afb0] _juos, _ثروت_, ğırd,\n  { {0x64a4012b, 0x645e00bb, 0xa8020279, 0x00000000}},  //   гађа, gepi, şırd,\n  { {0x69d50061, 0x26d20022, 0x00000000, 0x00000000}},  //   _युती, boyo_,   ,\n  { {0x46a5007d, 0x26d2004a, 0x26c000f6, 0x00000000}},  //   _ऐतिह, coyo_, cnio_,\n  { {0x7d02010a, 0xa069007e, 0x62990112, 0x00000000}},  //   _nuos, дала_, rkwo,\n  { {0x6f010089, 0x645e0197, 0x6299050c, 0x00000000}},  //   _pulc, cepi, skwo,\n  { {0x6e22010f, 0xb2ab005e, 0x3c2d0010, 0x00000000}},  //   _beob, _етаж_, _jövő_,\n  { {0x442304d7, 0x6f010375, 0x44310243, 0x00000000}},  //   _hej_, _vulc, _hdz_,\n  { {0xc05b01fb, 0xdce907a0, 0x6e221bf1, 0x00000000}},  //   _ніж_, sveč, _deob,\n  { {0xeb99012b, 0x1fa704f9, 0x44230721, 0x00000000}},  //   дио_, _прег, _jej_,\n  { {0xfaa60a27, 0x44230039, 0x4431004a, 0x00000000}},  //   вано, _mej_, _mdz_,\n  { {0x645e0046, 0x6e2200d9, 0x44232e10, 0x00000000}},  //   zepi, _geob, _lej_,\n  { {0x64550091, 0x81d30044, 0x645e347c, 0x00000000}},  //   _obzi, হের_, yepi,\n  { {0x4423347d, 0x26d20ef9, 0xe8f7347e, 0x00000000}},  //   _nej_, woyo_, кля_,\n  { {0x26c00046, 0x26d20093, 0x645e347f, 0x00000000}},  //   tnio_, toyo_, vepi,\n  { {0xf1b9016c, 0x645501a2, 0x7e6b01c3, 0x00000000}},  //   _nešo_, _abzi, _jagp,\n  { {0x26d2011c, 0x7e6b006a, 0x44230065, 0x00000000}},  // [afc0] royo_, _magp, _bej_,\n  { {0x26c012f8, 0x7e6b0058, 0x6d5900e7, 0x00000000}},  //   snio_, _lagp, _mpwa,\n  { {0x645e002d, 0xc7a601fb, 0x7c230093, 0x00000000}},  //   repi, _ринк, _menr,\n  { {0xe2970888, 0x7e6b006a, 0x645e010e, 0x00000000}},  //   ках_, _nagp, sepi,\n  { {0x6e2200d4, 0x44310032, 0x40340b86, 0x00000000}},  //   _reob, _fdz_, гелс,\n  { {0x212d0059, 0x44233480, 0x76441e00, 0x00000000}},  //   _dveh_, _gej_, lgiy,\n  { {0x7d02021e, 0x44440061, 0x7e6b0190, 0x00000000}},  //   _suos, mg_, _bagp,\n  { {0xa3e70183, 0x764401dd, 0x44443481, 0x00000000}},  //   _परत_, ngiy, lg_,\n  { {0xade301fb, 0x7e6b3482, 0x7c23005b, 0x00000000}},  //   ицьк, _dagp, _benr,\n  { {0x4444084e, 0x7d02021e, 0x7c2301c5, 0x00000000}},  //   ng_, _vuos, _cenr,\n  { {0xdeef03c8, 0x4444002a, 0xeb9700ed, 0x00000000}},  //   _вы_, ig_, виќ_,\n  { {0x7d0200b0, 0x65640009, 0x13b50044, 0x00000000}},  //   _tuos, kwih, _জুড়,\n  { {0xf2d3007b, 0x7c2301e5, 0x7e603483, 0x00000000}},  //   שער_, _fenr, memp,\n  { {0x7c2300f4, 0x444400b5, 0x6d4004cb, 0x00000000}},  //   _genr, jg_, muma,\n  { {0x6d40005f, 0x87040401, 0x7c281b3c, 0x00000000}},  //   luma, ияте, madr,\n  { {0x4444018e, 0x7c2802ae, 0x7e601035, 0x00000000}},  //   eg_, ladr, nemp,\n  { {0x44310bd3, 0x44230b97, 0x00000000, 0x00000000}},  // [afd0] _pdz_, _pej_,   ,\n  { {0x7c2800bb, 0x7e6000b0, 0x34bf007d, 0x00000000}},  //   nadr, hemp, ्वेद,\n  { {0x6d400051, 0x44230018, 0x3cfc0026, 0x00000000}},  //   huma, _vej_, _mivv_,\n  { {0x4444049b, 0x1de2024c, 0x6d40006c, 0x00000000}},  //   ag_, _परंत, kuma,\n  { {0xdd86031d, 0x44230ad0, 0x7c280a2e, 0x00000000}},  //   _او_, _tej_, kadr,\n  { {0x6d40006c, 0x44440009, 0x7c280027, 0x00000000}},  //   duma, cg_, jadr,\n  { {0x7e6b006a, 0xc4d200a3, 0x752d0026, 0x00000000}},  //   _pagp, _הגם_, lsaz,\n  { {0x660d0475, 0x9294007e, 0x6d400197, 0x00000000}},  //   ncak, _касц, fuma,\n  { {0x6d400181, 0x752d0282, 0x7c230016, 0x00000000}},  //   guma, nsaz, _penr,\n  { {0x6445020c, 0x4c8500ed, 0x7c280232, 0x00000000}},  //   nghi, улов, gadr,\n  { {0x7c23027b, 0x7e6b119d, 0x644518e4, 0x00000000}},  //   _venr, _tagp, ighi,\n  { {0xc86901f8, 0x6d400006, 0x38a60007, 0x00000000}},  //   _מן_, buma, _môre_,\n  { {0x6d4026be, 0xf2d20097, 0x7c280292, 0x00000000}},  //   cuma, מעט_, badr,\n  { {0x7c2802a4, 0x91ba00b6, 0xf74600ed, 0x00000000}},  //   cadr, תמשי, лего,\n  { {0xb8dc02d2, 0xc795007e, 0x00000000, 0x00000000}},  //   _आग_, арты,   ,\n  { {0x6b9c0030, 0x44440b78, 0x64450026, 0x00000000}},  //   ørge, wg_, eghi,\n  { {0x6aa40020, 0x76443484, 0x00000000, 0x00000000}},  // [afe0] _ilif, rgiy,   ,\n  { {0x44440006, 0x64450197, 0x7e6000b4, 0x00000000}},  //   ug_, gghi, zemp,\n  { {0x6d400035, 0x7e6011b3, 0xd62a0265, 0x00000000}},  //   zuma, yemp, _поне_,\n  { {0x44440016, 0x914a00ed, 0x7e600a5e, 0x00000000}},  //   sg_, ечка_, xemp,\n  { {0x44440009, 0x3942006c, 0xc43400a6, 0x00000000}},  //   pg_, nuks_, _نکات,\n  { {0x6aa40016, 0xc953009b, 0x6d400006, 0x00000000}},  //   _llif, צמו_, vuma,\n  { {0x6aa43485, 0x39423486, 0x00000000, 0x00000000}},  //   _olif, huks_,   ,\n  { {0x1d340001, 0x39420004, 0x60c30051, 0x00000000}},  //   ания, kuks_, annm,\n  { {0x62800841, 0x7e6004d4, 0x22930054, 0x00000000}},  //   _inmo, remp, _القس,\n  { {0x7e600292, 0x6aa4000b, 0xfc4600b9, 0x00000000}},  //   semp, _alif, _číst_,\n  { {0x6d40006c, 0x7c280c46, 0xf8bf0010, 0x00000000}},  //   suma, radr, ssék_,\n  { {0x7c282280, 0x6d4000b0, 0x22460127, 0x00000000}},  //   sadr, puma, ngok_,\n  { {0x7c283487, 0xdebb01ce, 0x00000000, 0x00000000}},  //   padr, _אמאל,   ,\n  { {0x2a6d00b9, 0x6aa400be, 0x01d10044, 0x00000000}},  //   žeb_, _elif, ়েকদ,\n  { {0x6280001c, 0xa3b4013d, 0x81b80044, 0x00000000}},  //   _onmo, _जेल_, _ঘুম_,\n  { {0x7d0d0051, 0x6b7b00a3, 0x752d0032, 0x00000000}},  //   _éasc, _טרונ, tsaz,\n  { {0x660d1a03, 0x7aed2119, 0xf5590014, 0x00000000}},  // [aff0] rcak, _ihat, ضلاب_,\n  { {0x752d0cc8, 0x660d0093, 0x6280068f, 0x00000000}},  //   rsaz, scak, _anmo,\n  { {0x6445001a, 0x7aed0727, 0x752d0207, 0x00000000}},  //   rghi, _khat, ssaz,\n  { {0x7d090023, 0x22460022, 0x00000000, 0x00000000}},  //   yqes, ggok_,   ,\n  { {0x2169013b, 0x7aff0065, 0x7aed1f74, 0x00000000}},  //   тили_, _miqt, _mhat,\n  { {0xf4870245, 0x60da0009, 0x00000000, 0x00000000}},  //   _сумн, _cktm,   ,\n  { {0x7aed1e17, 0x00000000, 0x00000000, 0x00000000}},  //   _ohat,   ,   ,\n  { {0x8d55007c, 0xed5900ed, 0x7aed0011, 0x00000000}},  //   аточ, вои_, _nhat,\n  { {0x31580025, 0x98a20036, 0x00000000, 0x00000000}},  //   _مجلة_, lską_,   ,\n  { {0x7aed0032, 0x8b07013e, 0x6aa404a5, 0x00000000}},  //   _ahat, _neří, _slif,\n  { {0x6a8600e3, 0x2bcf0164, 0x7aed0048, 0x00000000}},  //   ална, _सुखा, _bhat,\n  { {0x7f430198, 0x3942006c, 0x00000000, 0x00000000}},  //   munq, tuks_,   ,\n  { {0x7f430207, 0x7aed3488, 0x00000000, 0x00000000}},  //   lunq, _dhat,   ,\n  { {0x8c42041f, 0x8f000088, 0x7ebe0e3f, 0x00000000}},  //   _деше, цiї_, rūpe,\n  { {0xd62a0a27, 0x4cba009b, 0x6aa4002b, 0x00000000}},  //   кове_, _במסג, _tlif,\n  { {0x3942006c, 0x6aa40020, 0xa5bb0325, 0x00000000}},  //   puks_, _ulif, _teól,\n\n  { {0x9426007c, 0x00000000, 0x00000000, 0x00000000}},  // [b000] имае,   ,   ,\n  { {0x9989016c, 0xc4830d15, 0xd70a01ab, 0x00000000}},  //   _udaš_, олук, _иное_,\n  { {0xa3d303d7, 0xe9df0211, 0x61e90968, 0x00000000}},  //   _हुआ_, ngún_, _azel,\n  { {0x5b5601ce, 0x25080014, 0x00000000, 0x00000000}},  //   ישען_, _مرسی_,   ,\n  { {0xe29702ea, 0x61e900b4, 0x00000000, 0x00000000}},  //   јач_, _czel,   ,\n  { {0x61e90089, 0x78bc0026, 0x64a61abd, 0x00000000}},  //   _dzel, nirv, _тага,\n  { {0x61e90010, 0x00000000, 0x00000000, 0x00000000}},  //   _ezel,   ,   ,\n  { {0x62800f10, 0x00000000, 0x00000000, 0x00000000}},  //   _unmo,   ,   ,\n  { {0x3b07008e, 0x7aed005b, 0x00000000, 0x00000000}},  //   _aunq_, _rhat,   ,\n  { {0x7aed3489, 0x00000000, 0x00000000, 0x00000000}},  //   _shat,   ,   ,\n  { {0xb479007b, 0x9e66041f, 0xe4790049, 0x00000000}},  //   אָרי, _введ, אָרש,\n  { {0xd90f0014, 0x00000000, 0x00000000, 0x00000000}},  //   ویب_,   ,   ,\n  { {0xa3d303d7, 0x1ea90076, 0x78bc000c, 0x00000000}},  //   _हुई_, _حالي_, firv,\n  { {0xa8a4017f, 0x7aed00ab, 0x98b90035, 0x00000000}},  //   орск, _what, dusă_,\n  { {0x7c650a90, 0xd6db00e3, 0x787c0039, 0x00000000}},  //   _دانل, вта_, _såvä,\n  { {0xabfb009b, 0x00000000, 0x00000000, 0x00000000}},  //   _בהור,   ,   ,\n  { {0x6abd010e, 0x38c902fd, 0x04c903ec, 0x00000000}},  // [b010] misf, _مادی_, هوري_,\n  { {0x44270051, 0x6abd000c, 0x673a0059, 0x00000000}},  //   ún_, lisf, štja,\n  { {0x61e90010, 0x3ea60129, 0x00000000, 0x00000000}},  //   _szel, _olot_,   ,\n  { {0x42d80451, 0x6abd01e5, 0x7f430197, 0x00000000}},  //   афія_, nisf, vunq,\n  { {0x290125ba, 0x00000000, 0x00000000, 0x00000000}},  //   _kiha_,   ,   ,\n  { {0x4174035b, 0x2bcf006e, 0xe0d803e8, 0x00000000}},  //   غانس, _सुझा, аві_,\n  { {0x3ea60030, 0x2901348a, 0xf83800a0, 0x00000000}},  //   _blot_, _miha_, בנות_,\n  { {0xa3d303d7, 0x1e850098, 0x3ea600d4, 0x00000000}},  //   _हुए_, слим, _clot_,\n  { {0xf2d2007b, 0xdfd100a1, 0x6abd002b, 0x00000000}},  //   _זען_, _کيا_, disf,\n  { {0xf65f0030, 0xf1b9012d, 0x81f400a1, 0x00000000}},  //   _sjæl_, _neši_, _ظہور_,\n  { {0x3ea60030, 0x60da0049, 0x00000000, 0x00000000}},  //   _flot_, _עקענ,   ,\n  { {0x3a2925a9, 0x00000000, 0x00000000, 0x00000000}},  //   _ceap_,   ,   ,\n  { {0x29010066, 0x00000000, 0x00000000, 0x00000000}},  //   _biha_,   ,   ,\n  { {0x7d1b002d, 0x00000000, 0x00000000, 0x00000000}},  //   mpus,   ,   ,\n  { {0x2bcf0164, 0x31ae0010, 0x2901348b, 0x00000000}},  //   _सुचा, _közé_, _diha_,\n  { {0xf74300ed, 0x59860088, 0x3a2900fa, 0x00000000}},  //   џето, _глиб, _geap_,\n  { {0x2901002b, 0x7d1b238e, 0x00000000, 0x00000000}},  // [b020] _fiha_, npus,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x289700b3, 0x61e00016, 0x316d00e5, 0x00000000}},  //   _הדין_, _syml, _asez_,\n  { {0x20050198, 0x63ae0521, 0x98b90035, 0x00000000}},  //   _agli_, _đinđ, pusă_,\n  { {0x6f080142, 0x78c70010, 0xc05a01e1, 0x00000000}},  //   _sudc, _árví, гій_,\n  { {0x987a007b, 0x9407005e, 0xa87a0049, 0x00000000}},  //   ראַט, _герб_, ראַר,\n  { {0x645c348c, 0x4438348d, 0x3ea6071e, 0x00000000}},  //   _ibri, _idr_, _plot_,\n  { {0x442a348e, 0x44380061, 0x20050207, 0x00000000}},  //   _heb_, _hdr_, _egli_,\n  { {0x3a290784, 0x7d1b0b57, 0x443826ac, 0x00000000}},  //   _reap_, gpus, _kdr_,\n  { {0x442a0089, 0xdce20091, 0x2cb812fe, 0x00000000}},  //   _jeb_, _prođ, òrd_,\n  { {0x44380030, 0xef1a0200, 0xf1b910f5, 0x00000000}},  //   _mdr_, _сме_, _reši_,\n  { {0x442a00d4, 0xe8d90011, 0x44380022, 0x00000000}},  //   _leb_, _trừ_, _ldr_,\n  { {0x645c02d5, 0x588704af, 0x81da0055, 0x00000000}},  //   _obri, быва, ডের_,\n  { {0x60c4002a, 0x442a0016, 0x6da3003b, 0x00000000}},  //   éimh, _neb_, _хиља,\n  { {0x4993007a, 0x6f020026, 0x29010961, 0x00000000}},  //   زیگر, _kioc, _viha_,\n  { {0x4438013f, 0x442a0032, 0x59da007d, 0x00000000}},  //   _adr_, _aeb_, _युवर,\n  { {0x442a0145, 0xca38009b, 0xe694007c, 0x00000000}},  // [b030] _beb_, _הנחה_, читы,\n  { {0xf99f0263, 0x4438348f, 0x442a00fa, 0x00000000}},  //   myè_, _cdr_, _ceb_,\n  { {0x932700a1, 0x442a0145, 0x6d40010f, 0x00000000}},  //   صران, _deb_, hrma,\n  { {0x645c3490, 0x7c2a0173, 0x442a007f, 0x00000000}},  //   _ebri, _lefr, _eeb_,\n  { {0xf99f01aa, 0x7c380091, 0x765d0009, 0x00000000}},  //   nyè_, _odvr, _ibsy,\n  { {0x44380197, 0xb6080161, 0x7c2a014a, 0x00000000}},  //   _gdr_, _vyšš, _nefr,\n  { {0x6f0200ab, 0x26c93491, 0x6d400c4c, 0x00000000}},  //   _bioc, onao_, erma,\n  { {0x6f023492, 0x645c0c33, 0x44210033, 0x00000000}},  //   _cioc, _zbri, lbh_,\n  { {0x4421002a, 0xa2d60309, 0x7c2a010f, 0x00000000}},  //   obh_, यकर्, _befr,\n  { {0x40340216, 0x7d1b04cb, 0x44210051, 0x00000000}},  //   _неус, rpus, nbh_,\n  { {0xda660bbd, 0x7d1b1b5b, 0x4421131d, 0x00000000}},  //   овни, spus, ibh_,\n  { {0x6f020198, 0xc33200b3, 0x4fd60049, 0x00000000}},  //   _gioc, ווט_, _וועב_,\n  { {0xdce90119, 0x3ead093b, 0x7de706b4, 0x00000000}},  //   jveć, mhet_, _اسام,\n  { {0x7c2a010f, 0x7cef01e3, 0x3ead3493, 0x00000000}},  //   _gefr, føre, lhet_,\n  { {0x7d0b22ad, 0x7cef0030, 0x44381651, 0x00000000}},  //   _hugs, gøre, _rdr_,\n  { {0x7d031642, 0x3ead3494, 0x442a1be3, 0x00000000}},  //   _hins, nhet_, _seb_,\n  { {0x7d033495, 0x6e2b0047, 0x7d040051, 0x00000000}},  // [b040] _kins, _megb, _éist,\n  { {0x7d03303f, 0x25de0061, 0x6e2b1428, 0x00000000}},  //   _jins, _कुणी_, _legb,\n  { {0x7d030199, 0x656f0f10, 0x442a006b, 0x00000000}},  //   _mins, _esch, _veb_,\n  { {0xf99f00f4, 0x4b4c0049, 0x44210051, 0x00000000}},  //   ccès_, רגאַ, abh_,\n  { {0x3ead3496, 0x64430b76, 0x6f020051, 0x00000000}},  //   dhet_, ónic, _rioc,\n  { {0x7d03002b, 0x645c04c6, 0x10a30726, 0x00000000}},  //   _nins, _ubri, мичн,\n  { {0x7d0b001e, 0xf99f0263, 0x3ead0007, 0x00000000}},  //   _augs, zyè_, fhet_,\n  { {0x7d03028c, 0x3ead1f82, 0x7d0b0058, 0x00000000}},  //   _ains, ghet_, _bugs,\n  { {0x6fda0316, 0x6d400112, 0x7d031ae9, 0x00000000}},  //   _पुरू, urma, _bins,\n  { {0x7d03011f, 0x6d400210, 0xf99f01aa, 0x00000000}},  //   _cins, rrma, vyè_,\n  { {0x7d0301b5, 0xdee6025f, 0xf413009b, 0x00000000}},  //   _dins, _дожи, ופת_,\n  { {0x7d0326cf, 0xf99f01aa, 0x0d860b7b, 0x00000000}},  //   _eins, tyè_, _млен,\n  { {0x7d0301d2, 0xeabf0026, 0x3942012d, 0x00000000}},  //   _fins, riù_, grks_,\n  { {0x2498006c, 0xf7730070, 0xf99f01aa, 0x00000000}},  //   _norm_, واز_, ryè_,\n  { {0xf99f01aa, 0xeabf0197, 0x00000000, 0x00000000}},  //   syè_, più_,   ,\n  { {0x7d03010f, 0x7cef0637, 0x657d0ed5, 0x00000000}},  //   _zins, røre, _prsh,\n  { {0x7cef0190, 0x00000000, 0x00000000, 0x00000000}},  // [b050] søre,   ,   ,\n  { {0xde8f0011, 0xd37b012b, 0x92c70044, 0x00000000}},  //   _kịch_, иче_, _উঠে_,\n  { {0x44210033, 0xf8bf00f4, 0xdce90091, 0x00000000}},  //   rbh_, ssés_, sveć,\n  { {0x656f010f, 0x3ead0023, 0x6ee50036, 0x00000000}},  //   _tsch, xhet_, róbk,\n  { {0xde8f001d, 0x24980498, 0xf1b901ed, 0x00000000}},  //   _lịch_, _form_, _nešt_,\n  { {0xc5fa00b6, 0xccf800b9, 0x7d0b3497, 0x00000000}},  //   _לפרט, jmě_, _rugs,\n  { {0x6f1a001c, 0x3ead1204, 0xbf680025, 0x00000000}},  //   _cttc, thet_, قصيم_,\n  { {0x764d170b, 0x7d030051, 0x656d00e7, 0x00000000}},  //   ngay, _sins, owah,\n  { {0x7d03011c, 0x3ebf008d, 0x3ead3498, 0x00000000}},  //   _pins, riut_, rhet_,\n  { {0x2ca90081, 0x6e2b15d0, 0x3ead3499, 0x00000000}},  //   скоп_, _wegb, shet_,\n  { {0x7d0305ce, 0xcb69005e, 0x00000000, 0x00000000}},  //   _vins, щане_,   ,\n  { {0xde8f001d, 0x7d0300b5, 0xa96a0e75, 0x00000000}},  //   _dịch_, _wins, бима_,\n  { {0x7d03002b, 0x4999007c, 0x290f009d, 0x00000000}},  //   _tins, отря_, _égal_,\n  { {0x23bd02fb, 0xa3ab006e, 0x7e690d6f, 0x00000000}},  //   ्पाद, गना_, leep,\n  { {0xfaa6013b, 0x17790057, 0x6d490035, 0x00000000}},  //   _нако, ость_, luea,\n  { {0x764d22dc, 0x6b9c0210, 0x46f50088, 0x00000000}},  //   ggay, ärge, дчут,\n  { {0x656d22dc, 0x6d490035, 0x00000000, 0x00000000}},  // [b060] gwah, nuea,   ,\n  { {0x7e690112, 0x6aac0309, 0x897b00b3, 0x00000000}},  //   heep, _चतुर, _פריצ,\n  { {0x389b061e, 0x249800c7, 0x35fa007a, 0x00000000}},  //   _היינ, _vorm_, _گردد_,\n  { {0x5b3a0049, 0x656d0009, 0x00000000, 0x00000000}},  //   מגעק, bwah,   ,\n  { {0x317f0489, 0x24980ff4, 0x055501e0, 0x00000000}},  //   _cruz_, _torm_, _отря,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xa857009b, 0x00000000, 0x00000000, 0x00000000}},  //   פיקה_,   ,   ,\n  { {0x877b007b, 0xbd181c31, 0x00000000, 0x00000000}},  //   מאצי, ожих_,   ,\n  { {0x5046349a, 0x61430098, 0x6d49008e, 0x00000000}},  //   _неаб, _пета, guea,\n  { {0x6f1a001c, 0xd00f0025, 0x2f110051, 0x00000000}},  //   _tttc, _ملك_, _fág_,\n  { {0xe457007b, 0xccf800b9, 0x7e6900e0, 0x00000000}},  //   הייט_, rmě_, beep,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x69da001a, 0x00000000, 0x00000000, 0x00000000}},  //   şten,   ,   ,\n  { {0xddeb007b, 0xde8f0011, 0x00000000, 0x00000000}},  //   _פֿאָ, _tịch_,   ,\n  { {0x7b0600b9, 0x24c40044, 0x6d950066, 0x00000000}},  //   ístě, ্তাহ, _eżaġ,\n  { {0x5694003b, 0xe8d9001d, 0x27ed00b9, 0x00000000}},  //   наст, _trữ_, řeno_,\n  { {0x5499007e, 0x764d349b, 0xba740014, 0x00000000}},  // [b070] оваў_, rgay, _سايت,\n  { {0xe8d3026c, 0x8707007e, 0x656d01a2, 0x00000000}},  //   _سمجھ, _няме, rwah,\n  { {0x656d2934, 0x98ab001a, 0x6aad04d3, 0x00000000}},  //   swah, ască_, _klaf,\n  { {0x38af010f, 0xddd400b9, 0x00000000, 0x00000000}},  //   _würd_, žařs,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6aad07b5, 0x2f110b33, 0x2054005e, 0x00000000}},  //   _llaf, _pág_, етър,\n  { {0xb4d9024c, 0x44330142, 0x6aad349c, 0x00000000}},  //   ावी_, max_, _olaf,\n  { {0x44330142, 0x9258007c, 0x6d490035, 0x00000000}},  //   lax_, _наст_, tuea,\n  { {0x7e690112, 0xa15901ee, 0x905501ee, 0x00000000}},  //   reep, _фазу_, _овац,\n  { {0x4433001c, 0x6aad2aa7, 0x629b012d, 0x00000000}},  //   nax_, _alaf, _houo,\n  { {0xeb9900ed, 0x6aad00bb, 0xbc690123, 0x00000000}},  //   цин_, _blaf, ممکن_,\n  { {0x929d0036, 0x60c3014a, 0x443323d6, 0x00000000}},  //   _miło, linm, hax_,\n  { {0x6d490489, 0x3ea20039, 0x44330066, 0x00000000}},  //   quea, ökte_, kax_,\n  { {0x44330066, 0x6aad00ea, 0xfbc500a8, 0x00000000}},  //   jax_, _elaf, _обло,\n  { {0x66e6013b, 0x6aad0146, 0x00000000, 0x00000000}},  //   дова, _flaf,   ,\n  { {0x6aad00e5, 0xfe79013e, 0x60c30943, 0x00000000}},  //   _glaf, ndů_, hinm,\n  { {0x4433001a, 0x7ae40b1f, 0x66160193, 0x00000000}},  // [b080] fax_, _ikit, rcyk,\n  { {0x6dc50066, 0x6616032e, 0x7cf400f6, 0x00000000}},  //   _iċaħ, scyk, càrd,\n  { {0xa0130044, 0x60c3349d, 0x00000000, 0x00000000}},  //   হরাব_, dinm,   ,\n  { {0xeb960049, 0x9c7c07ac, 0x2d800089, 0x00000000}},  //   ודער_, moče, _šiem_,\n  { {0x9c7c0cce, 0x60c3012d, 0x7ae4349e, 0x00000000}},  //   loče, finm, _mkit,\n  { {0x60c3000c, 0x1de1013d, 0x44330026, 0x00000000}},  //   ginm, _पड़त, cax_,\n  { {0xb4ea0309, 0x2d990844, 0x41de006e, 0x00000000}},  //   मती_, äsen_, _फुरस,\n  { {0x3da60057, 0x7ae406f6, 0x645e0943, 0x00000000}},  //   дроб, _nkit, lfpi,\n  { {0x9c7c00b9, 0x00000000, 0x00000000, 0x00000000}},  //   hoče,   ,   ,\n  { {0x7ae40020, 0x9c7c089f, 0x7cef0056, 0x00000000}},  //   _akit, koče, tøra,\n  { {0x9c7c00ca, 0x69da2987, 0x00000000, 0x00000000}},  //   joče, ştel,   ,\n  { {0x9c7c00b9, 0x7af6349f, 0xf8bf00f4, 0x00000000}},  //   doče, _chyt, ipée_,\n  { {0x7e6200c4, 0xb9e40088, 0x25de0316, 0x00000000}},  //   _ibop, віри, _कुली_,\n  { {0x7ae4022b, 0x1bd41a02, 0xdb02009d, 0x00000000}},  //   _ekit, _поля, hylè,\n  { {0x248d0011, 0x9c7c10b9, 0x61e4002b, 0x00000000}},  //   _đem_, goče, żilh,\n  { {0xbebc001e, 0x8f9b009b, 0x6aad00e7, 0x00000000}},  //   _avīz, חילי, _ulaf,\n  { {0x4433002b, 0x7afd01a2, 0x60c30276, 0x00000000}},  // [b090] tax_, mmst, yinm,\n  { {0xb4d9001c, 0xa7750bbd, 0x7afd0039, 0x00000000}},  //   ावे_, _злоч, lmst,\n  { {0x44330039, 0xca480014, 0x7afd00d9, 0x00000000}},  //   rax_, _علیه_, omst,\n  { {0xd6270054, 0xd9f30061, 0x6595007c, 0x00000000}},  //   _تعدي, _घरात_, _заму,\n  { {0x44330288, 0xf07500a1, 0xde8f0082, 0x00000000}},  //   pax_, ٹیاں_, _bịnh_,\n  { {0xe1f00025, 0xe4c7007e, 0x00000000, 0x00000000}},  //   جسم_, _цёмн,   ,\n  { {0xd0061592, 0xa5bb00fa, 0x00000000, 0x00000000}},  //   неше_, _geór,   ,\n  { {0xee3905a5, 0xfe710076, 0x628922cd, 0x00000000}},  //   чни_, ادث_, _uneo,\n  { {0xc05b0106, 0x4431011f, 0x7af603a1, 0x00000000}},  //   _між_, _kez_, _rhyt,\n  { {0x7ae40039, 0xd0110054, 0x7afd0328, 0x00000000}},  //   _skit, _إلا_, emst,\n  { {0x7af6062a, 0x443134a0, 0x6aa5002b, 0x00000000}},  //   _phyt, _mez_, _ċifr,\n  { {0xeab20647, 0x44310032, 0xfb240014, 0x00000000}},  //   اعد_, _lez_, کریپ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7afd0112, 0x6d5b0065, 0x7af60319, 0x00000000}},  //   amst, mtua, _whyt,\n  { {0x46f60069, 0x6d5b045f, 0x05d801f5, 0x00000000}},  //   ечат, ltua, _भुजब,\n  { {0xcf92007b, 0x7ae4117b, 0x9c7c0059, 0x00000000}},  //   נטן_, _ukit, roče,\n  { {0x6d5b0659, 0x61e90047, 0xceb200b3, 0x00000000}},  // [b0a0] ntua, _nyel, אין_,\n  { {0x9c7c016e, 0x44310027, 0xb9db009b, 0x00000000}},  //   poče, _cez_, _מחפש,\n  { {0x7b09038c, 0x443134a1, 0x6d5b006c, 0x00000000}},  //   _üstü, _dez_, htua,\n  { {0xa50a01f9, 0x6d5b34a2, 0xe8d9001d, 0x00000000}},  //   _нема_, ktua, _trợ_,\n  { {0x44310181, 0x6d5b0065, 0xf8a40061, 0x00000000}},  //   _fez_, jtua, _ऐकाय,\n  { {0xa5bb19a6, 0xd00f006d, 0xf8bf009d, 0x00000000}},  //   _teór, مله_, ppée_,\n  { {0x232a2963, 0xde8f0011, 0x29120058, 0x00000000}},  //   _хоби_, _vịnh_, _luya_,\n  { {0x6d5b0065, 0x38b40039, 0x44310ede, 0x00000000}},  //   ftua, _färg_, _zez_,\n  { {0xde8f0011, 0xf65f0030, 0x00000000, 0x00000000}},  //   _tịnh_, _kjær_,   ,\n  { {0xe0850025, 0x387a0027, 0x00000000, 0x00000000}},  //   _لجمي, _napr_,   ,\n  { {0xd00f01b7, 0x79840ef9, 0xe7e0006e, 0x00000000}},  //   _الم_, _ariw, _खुला_,\n  { {0x9e7303ec, 0x29120093, 0xd337009b, 0x00000000}},  //   _مهمت, _buya_, ערכה_,\n  { {0xf2d3007b, 0x29120211, 0x6d5b34a3, 0x00000000}},  //   רער_, _cuya_, ctua,\n  { {0x2d800066, 0x00000000, 0x00000000, 0x00000000}},  //   _ġieh_,   ,   ,\n  { {0x64430b76, 0x44310923, 0xe7db007d, 0x00000000}},  //   ónim, _rez_, _मुखप,\n  { {0x44310197, 0x63a50f6c, 0x00000000, 0x00000000}},  //   _sez_, vyhn,   ,\n  { {0x25fc001c, 0x54550893, 0x99840025, 0x00000000}},  // [b0b0] लेली_, кват, _مليو,\n  { {0x6fb00204, 0x26c21291, 0x00000000, 0x00000000}},  //   जनां, _emko_,   ,\n  { {0x44310977, 0x9259007c, 0x6d5b002d, 0x00000000}},  //   _vez_, дает_, ztua,\n  { {0x4431010f, 0x7d0a0203, 0x29121544, 0x00000000}},  //   _wez_, _lifs, _yuya_,\n  { {0x443134a4, 0x6d5b0325, 0xf65f0635, 0x00000000}},  //   _tez_, xtua, _fjær_,\n  { {0xfaff0065, 0xe04200e2, 0x290434a5, 0x00000000}},  //   hmë_, анши, ímax_,\n  { {0xe0d00025, 0xe2d90014, 0x00000000, 0x00000000}},  //   حزن_, _قارچ_,   ,\n  { {0xfaff008d, 0x6d5b0198, 0xa3e60061, 0x00000000}},  //   jmë_, ttua, _पडत_,\n  { {0xc212019b, 0x6b9c21db, 0x6d5b0315, 0x00000000}},  //   _כהן_, ärgn, utua,\n  { {0x5ba90b5f, 0xcfab00a1, 0x2d590026, 0x00000000}},  //   дком_, _ٹائم_, rèe_,\n  { {0x6d5b1180, 0x7984023a, 0x291234a6, 0x00000000}},  //   stua, _sriw, _suya_,\n  { {0x6d5b0065, 0x29120035, 0x387a0145, 0x00000000}},  //   ptua, _puya_, _sapr_,\n  { {0x6e2934a7, 0xec6e030d, 0xdce2013e, 0x00000000}},  //   mbeb, _кп_, _zpoč,\n  { {0xdca200d7, 0x661d34a8, 0x2eed002b, 0x00000000}},  //   _ваши, _afsk, llef_,\n  { {0xc0520097, 0xe73a007c, 0x00000000, 0x00000000}},  //   יזם_, ьев_,   ,\n  { {0x79840093, 0x2912008e, 0x6d49060c, 0x00000000}},  //   _triw, _tuya_, orea,\n  { {0x9c7c0059, 0x6d490051, 0xf50a0478, 0x00000000}},  // [b0c0] loča, nrea, днал_,\n  { {0x6d49002a, 0x2937019b, 0x14230077, 0x00000000}},  //   irea, _שאין_, идум,\n  { {0x6d493276, 0x38b40039, 0xaac6013d, 0x00000000}},  //   hrea, _värd_, _लगाक,\n  { {0x232734a9, 0xdcfb0107, 0xb6a60581, 0x00000000}},  //   тоци_, dvuč, _римл,\n  { {0x75430425, 0xdce20161, 0xaa7b0161, 0x00000000}},  //   _княз, _spoč, plýv,\n  { {0x2ee601d6, 0x00000000, 0x00000000, 0x00000000}},  //   _skof_,   ,   ,\n  { {0x6f0b0019, 0xfaff0065, 0x240700e2, 0x00000000}},  //   _bigc, ymë_, _анри_,\n  { {0x6d490051, 0x63a30bf4, 0x9c7c0166, 0x00000000}},  //   frea, änne, doča,\n  { {0x6d490035, 0x20560256, 0x6ee50142, 0x00000000}},  //   grea, _атер, tóbr,\n  { {0x8ffa04e8, 0x21260127, 0xcb980088, 0x00000000}},  //   _قرار_, mpoh_, евої_,\n  { {0xda3500a5, 0x6d490190, 0x9c7c0059, 0x00000000}},  //   лены, area, goča,\n  { {0x6d490add, 0x2eed01aa, 0x4ea300ec, 0x00000000}},  //   brea, clef_, _врша,\n  { {0x6d490038, 0xfaff0065, 0x3ed90049, 0x00000000}},  //   crea, rmë_, _אַסא,\n  { {0x929d0036, 0x9c7c1332, 0x690b002b, 0x00000000}},  //   _piłk, boča, _eżen,\n  { {0x57a434aa, 0x00000000, 0x00000000, 0x00000000}},  //   ашта,   ,   ,\n  { {0x2f180047, 0x49750072, 0x5a47007e, 0x00000000}},  //   _még_, _блис, _рэка,\n  { {0xd6840143, 0xdcfb0466, 0x00000000, 0x00000000}},  // [b0d0] јусп, zvuč,   ,\n  { {0xd3a70534, 0x00000000, 0x00000000, 0x00000000}},  //   креп,   ,   ,\n  { {0x53e4008b, 0x00000000, 0x00000000, 0x00000000}},  //   ацца,   ,   ,\n  { {0xe2980088, 0xfb150049, 0x3a3900fa, 0x00000000}},  //   кає_, אַסט_, nasp_,\n  { {0x38b4001f, 0x7abc009b, 0x9c7c0295, 0x00000000}},  //   _wäre_, וצאו, zoča,\n  { {0x6d490035, 0x26c9004a, 0x69da01a2, 0x00000000}},  //   vrea, liao_, ßtei,\n  { {0x533401f9, 0x2eed0bdf, 0x2f180010, 0x00000000}},  //   _вест, tlef_, _cég_,\n  { {0x6d490585, 0x26c900c4, 0x9c7c00ca, 0x00000000}},  //   trea, niao_, voča,\n  { {0x6468009f, 0x6d4900e5, 0x6e2934ab, 0x00000000}},  //   _þrið, urea, rbeb,\n  { {0x9c7c00ca, 0x752200c4, 0x6d490238, 0x00000000}},  //   toča, ãozi, rrea,\n  { {0xfaa6041f, 0x2d860197, 0x6f0b00d9, 0x00000000}},  //   гано, _eroe_, _tigc,\n  { {0x9c7c08fb, 0x38af34ac, 0x6d5c001a, 0x00000000}},  //   roča, _büro_, ărar,\n  { {0x38c8007a, 0x9c7c34ad, 0xc9560783, 0x00000000}},  //   ناسی_, soča, ытны,\n  { {0x3ead0cb2, 0x9c7c0027, 0x290c0bfe, 0x00000000}},  //   lket_, ločn, öda_,\n  { {0xaa7b009f, 0x81a90044, 0x9cda00b3, 0x00000000}},  //   glýs, খছি_, _אקספ,\n  { {0x26c90559, 0x9c7c0161, 0xa3d7006e, 0x00000000}},  //   giao_, nočn, ापन_,\n  { {0x5983007e, 0x7ae634ae, 0xdb020344, 0x00000000}},  // [b0e0] _глыб, mokt, szló,\n  { {0xf4c40044, 0x236a0022, 0x00000000, 0x00000000}},  //   ্ত্ব, _ppbj_,   ,\n  { {0x394002cc, 0x3ead02cc, 0x00000000, 0x00000000}},  //   _hvis_, kket_,   ,\n  { {0x26c90026, 0x5b560049, 0x2f180010, 0x00000000}},  //   ciao_, טשען_, _rég_,\n  { {0xc1e707ca, 0x9c7c0b4a, 0xc69300a3, 0x00000000}},  //   льше_, dočn, _האר_,\n  { {0x3ead0007, 0xe9f90082, 0x00000000, 0x00000000}},  //   eket_, _hoả_,   ,\n  { {0x443a02ae, 0x00000000, 0x00000000, 0x00000000}},  //   map_,   ,   ,\n  { {0x443a34af, 0x3ead0093, 0x2d860007, 0x00000000}},  //   lap_, gket_, _proe_,\n  { {0x7ae6023a, 0xe0560014, 0x2f1801c3, 0x00000000}},  //   dokt, _مخاب, _wég_,\n  { {0x443a006a, 0x5b260eec, 0x3a20004a, 0x00000000}},  //   nap_, льма, _afip_,\n  { {0x3940028c, 0xdfcf0025, 0xdd920063, 0x00000000}},  //   _avis_, _فيك_, _گوش_,\n  { {0x3ead0aa4, 0x443a033b, 0x00000000, 0x00000000}},  //   cket_, hap_,   ,\n  { {0x2d8600ea, 0xdd9201b2, 0x00000000, 0x00000000}},  //   _uroe_, _دوش_,   ,\n  { {0x6b9c0018, 0xed5700b6, 0x3a3900d4, 0x00000000}},  //   ørgs, _עבור_, sasp_,\n  { {0x443a020c, 0x7c3a016e, 0x8c1b00b3, 0x00000000}},  //   dap_, matr, _אווי,\n  { {0x7c3a0092, 0xaa7b000c, 0x00000000, 0x00000000}},  //   latr, rlýs,   ,\n  { {0x344b00e3, 0x443a00fa, 0xf4870545, 0x00000000}},  // [b0f0] ечен_, fap_, лужн,\n  { {0xaa7b009f, 0x443a2544, 0x25a934b0, 0x00000000}},  //   plýs, gap_, ryal_,\n  { {0x25a934b1, 0xd371057d, 0xe787007e, 0x00000000}},  //   syal_, تها_, _супо,\n  { {0xf53f0073, 0x7c3a0b96, 0x26c90066, 0x00000000}},  //   _två_, hatr, qiao_,\n  { {0x763a0049, 0x7c3a2f0c, 0x210f006e, 0x00000000}},  //   _בערג, katr, ादेश_,\n  { {0xa069003b, 0x8fa5005e, 0x38b40274, 0x00000000}},  //   така_, иале, _kära_,\n  { {0x9c7c0027, 0xc4d200b6, 0x3ead00b0, 0x00000000}},  //   točn, _וגם_, tket_,\n  { {0x29030023, 0x00000000, 0x00000000, 0x00000000}},  //   hmja_,   ,   ,\n  { {0x9c7c0b41, 0x38b40039, 0x6d46173d, 0x00000000}},  //   ročn, _lära_, škan,\n  { {0x3ead01e3, 0x64572240, 0xa2a1006e, 0x00000000}},  //   sket_, ngxi, कॉर्,\n  { {0x38b40039, 0xc1040070, 0x24810051, 0x00000000}},  //   _nära_, _اولي, idhm_,\n  { {0x1fa400aa, 0x4a430088, 0x8a060a85, 0x00000000}},  //   _уруг, онюв, изне,\n  { {0xfeb800a6, 0x7c3a088c, 0x443a04be, 0x00000000}},  //   _حالت_, batr, yap_,\n  { {0x6e3b34b2, 0x38b400f8, 0x00000000, 0x00000000}},  //   laub, _bära_,   ,\n  { {0xac74007a, 0x443a011f, 0xe7370893, 0x00000000}},  //   _دانش, vap_, иер_,\n  { {0x443a01a3, 0x7a0c0089, 0x6e3b082c, 0x00000000}},  //   wap_, _pētī, naub,\n  { {0xe8fa34b3, 0x443a04d4, 0xe61701ee, 0x00000000}},  // [b100] _или_, tap_, рду_,\n  { {0xe3b20379, 0x0446004c, 0x7cef05ba, 0x00000000}},  //   يرا_, режн, føri,\n  { {0x443a00e0, 0x6e3b34b4, 0xe9f90082, 0x00000000}},  //   rap_, kaub, _toả_,\n  { {0x443a163c, 0x63a30039, 0xe9f90011, 0x00000000}},  //   sap_, änna, _hoạ_,\n  { {0x7c3a014a, 0x443a0145, 0x00000000, 0x00000000}},  //   yatr, pap_,   ,\n  { {0x6ab6018e, 0xe8d90011, 0x4f6a1649, 0x00000000}},  //   _llyf, _trụ_, вшим_,\n  { {0x4438027b, 0x7c3a0197, 0xdfcf0379, 0x00000000}},  //   _ier_, vatr, ويه_,\n  { {0x443834b5, 0x7c3a0058, 0x6e3b007f, 0x00000000}},  //   _her_, watr, gaub,\n  { {0x443801d9, 0xdd9001f7, 0x7c3a0253, 0x00000000}},  //   _ker_, سود_, tatr,\n  { {0x44380119, 0x628026f9, 0x62820250, 0x00000000}},  //   _jer_, _hamo, ldoo,\n  { {0x443834b6, 0x00000000, 0x00000000, 0x00000000}},  //   _mer_,   ,   ,\n  { {0x44380f2c, 0x628200b5, 0x6aa400f4, 0x00000000}},  //   _ler_, ndoo, _coif,\n  { {0xdd8f0054, 0x62800006, 0x7c3a05fd, 0x00000000}},  //   _يوم_, _mamo, patr,\n  { {0x44380073, 0x62800b9a, 0x8cf3007e, 0x00000000}},  //   _ner_, _lamo, _дзіц,\n  { {0x6ab60190, 0x6d40000c, 0x6282006c, 0x00000000}},  //   _flyf, lsma, kdoo,\n  { {0x443827a9, 0x62800181, 0x0bb7009b, 0x00000000}},  //   _aer_, _namo, _כלום_,\n  { {0x6d400263, 0x4438000c, 0x7aed170b, 0x00000000}},  // [b110] nsma, _ber_, _ikat,\n  { {0x7c3805fa, 0x44382662, 0x6d4000b0, 0x00000000}},  //   _jevr, _cer_, isma,\n  { {0x443834b7, 0xdd86026c, 0x7c380250, 0x00000000}},  //   _der_, _کو_, _mevr,\n  { {0xe6950d75, 0x6d400006, 0x645c00f4, 0x00000000}},  //   _الحد, ksma, _ecri,\n  { {0x44383248, 0x7aed0020, 0x62802b05, 0x00000000}},  //   _fer_, _mkat, _damo,\n  { {0x443834b8, 0x6280140b, 0x3e710082, 0x00000000}},  //   _ger_, _eamo, _ạt_,\n  { {0x6d400089, 0x9c7c07a0, 0xc0580088, 0x00000000}},  //   esma, ročl, річ_,\n  { {0x44210b70, 0x4438022b, 0x6280011c, 0x00000000}},  //   lch_, _zer_, _gamo,\n  { {0x443834b9, 0x7c3800c7, 0x9c7c01d9, 0x00000000}},  //   _yer_, _bevr, močj,\n  { {0x7aed0bb2, 0x442119ba, 0x628008c5, 0x00000000}},  //   _akat, nch_, _zamo,\n  { {0x7c380670, 0x442128f5, 0x628000e0, 0x00000000}},  //   _devr, ich_, _yamo,\n  { {0xf8a90104, 0x6d400190, 0x7cfd009d, 0x00000000}},  //   _אש_, bsma, dère,\n  { {0x7c3834ba, 0x82760049, 0x6b8a0112, 0x00000000}},  //   _fevr, זערע_, _erfg,\n  { {0x7c3801b5, 0x7aed0173, 0x7cfd009d, 0x00000000}},  //   _gevr, _ekat, fère,\n  { {0x7eb50428, 0x7cfd00f4, 0x4438199e, 0x00000000}},  //   _zápa, gère, _rer_,\n  { {0x645c07ec, 0x64470093, 0x442134bb, 0x00000000}},  //   _scri, _adji, ech_,\n  { {0x4438059a, 0x62800a0a, 0x2bb7006b, 0x00000000}},  // [b120] _per_, _ramo, dəcə_,\n  { {0x99920224, 0xa99b00a0, 0x442301c3, 0x00000000}},  //   _když_, _עביר, _cfj_,\n  { {0x44380c2e, 0x6280000b, 0x61fb0b33, 0x00000000}},  //   _ver_, _pamo, _azul,\n  { {0x4438001f, 0xd25901fb, 0x44210122, 0x00000000}},  //   _wer_, иці_, ach_,\n  { {0x443834bc, 0x62800489, 0x6282017c, 0x00000000}},  //   _ter_, _vamo, rdoo,\n  { {0xdb1a0047, 0x6d401ab8, 0x645c0026, 0x00000000}},  //   szté, vsma, _ucri,\n  { {0x628034bd, 0xd095007e, 0x65641841, 0x00000000}},  //   _tamo, ўшчы, ltih,\n  { {0x6d400002, 0x7c38009d, 0x6d4601ed, 0x00000000}},  //   tsma, _sevr, škam,\n  { {0x6d400006, 0x65640504, 0x25fc0061, 0x00000000}},  //   usma, ntih, लेची_,\n  { {0x7aed001e, 0x6d400039, 0x9c7c1000, 0x00000000}},  //   _skat, rsma, močk,\n  { {0x6d40027b, 0x7f8600a1, 0xc5f5013d, 0x00000000}},  //   ssma, _دلان, _आर्य_,\n  { {0x38af047f, 0x6d4034be, 0x7cfd009d, 0x00000000}},  //   _türk_, psma, vère,\n  { {0x442134bf, 0x78a51dbe, 0x7c3801b5, 0x00000000}},  //   ych_, _pohv, _tevr,\n  { {0x7cfd00f4, 0x4c940069, 0xd90f0014, 0x00000000}},  //   tère, _фикс, ژیک_,\n  { {0x7aed022e, 0x38af146f, 0x4919013d, 0x00000000}},  //   _tkat, _jüri_, _यूरो_,\n  { {0x44210bc4, 0x7aed2367, 0x7cfd009d, 0x00000000}},  //   wch_, _ukat, rère,\n  { {0x44210038, 0x69da12fc, 0x3ea601d6, 0x00000000}},  // [b130] tch_, şter, _moot_,\n  { {0x3f8c022b, 0x3ea60436, 0x4421010f, 0x00000000}},  //   _ordu_, _loot_, uch_,\n  { {0x442123b9, 0xcfad0044, 0x9c7c0087, 0x00000000}},  //   rch_, _কেনন, točj,\n  { {0x442104e5, 0xe570026c, 0x3ea60116, 0x00000000}},  //   sch_, بطہ_, _noot_,\n  { {0x2bb7006b, 0x6145007e, 0x9c7c00ca, 0x00000000}},  //   rəcə_, цела, ročj,\n  { {0x6447016c, 0x493c00a3, 0x24180641, 0x00000000}},  //   _udji, נגוו, _горы_,\n  { {0x3ea634c0, 0x29130210, 0xf3f30379, 0x00000000}},  //   _boot_, _mixa_, _رأس_,\n  { {0x92b7004b, 0x3f87013e, 0x9c7c0161, 0x00000000}},  //   _احسا, rvnu_, bočk,\n  { {0x2d8b00b9, 0x225f0022, 0x3f8c0288, 0x00000000}},  //   íce_, _icuk_, _erdu_,\n  { {0x6cc5007e, 0x00000000, 0x00000000, 0x00000000}},  //   ійна,   ,   ,\n  { {0x798d01aa, 0xf9890104, 0x3ea60549, 0x00000000}},  //   _araw, _שר_, _foot_,\n  { {0xef0e0822, 0x798d1156, 0x24830065, 0x00000000}},  //   _ім_, _braw, _lajm_,\n  { {0x8c4500ed, 0x7cef01e3, 0x2913000a, 0x00000000}},  //   _деле, ført, _bixa_,\n  { {0x798d1959, 0x6c6700a1, 0xd94300ed, 0x00000000}},  //   _draw, _طلبہ_, ќери,\n  { {0x798d0085, 0x00000000, 0x00000000, 0x00000000}},  //   _eraw,   ,   ,\n  { {0x2ca701b5, 0x798d0016, 0x291300d4, 0x00000000}},  //   _hond_, _fraw, _eixa_,\n  { {0x798d002b, 0x29130039, 0xcfad0044, 0x00000000}},  // [b140] _graw, _fixa_, _কেমন,\n  { {0x33f6007c, 0x26cb059c, 0x7cef06ec, 0x00000000}},  //   очес, _emco_, mørs,\n  { {0x2ca70263, 0x7eb5004f, 0x3e4c0006, 0x00000000}},  //   _mond_, _nápo, lėtų_,\n  { {0x7ebc0047, 0x2ca734c1, 0xfbd2009b, 0x00000000}},  //   _képe, _lond_, ותב_,\n  { {0x3ea600ab, 0x2ca701d6, 0x7cef068f, 0x00000000}},  //   _root_, _oond_, nørs,\n  { {0x9c7c00ca, 0x113900a5, 0x38780022, 0x00000000}},  //   ročk, сяцы_, nerr_,\n  { {0x3ea634c2, 0x7e6906ec, 0x225f04a5, 0x00000000}},  //   _poot_, ffep, _fcuk_,\n  { {0xbe8a0e82, 0x7cf40129, 0x3e4c0006, 0x00000000}},  //   рске_, màri, kėtų_,\n  { {0x9c7c01d9, 0x4127005e, 0xeeb70088, 0x00000000}},  //   loči, _мото_, ільш_,\n  { {0x0caa047d, 0x2ca70c61, 0x38780065, 0x00000000}},  //   ртии_, _cond_, jerr_,\n  { {0x7cf40129, 0x3ea60058, 0x38780023, 0x00000000}},  //   nàri, _toot_, derr_,\n  { {0x798d34c3, 0x7cef068f, 0x00000000, 0x00000000}},  //   _praw, førs,   ,\n  { {0x99920036, 0x31660288, 0x00000000, 0x00000000}},  //   _gdyż_, ntoz_,   ,\n  { {0x9c7c0627, 0x7ebc00f4, 0x2ca70010, 0x00000000}},  //   koči, _dépe, _gond_,\n  { {0xa81400ed, 0x9c7c0059, 0x9a87003b, 0x00000000}},  //   ддрш, joči, _дупл,\n  { {0x798d010b, 0x316634c4, 0x5694007e, 0x00000000}},  //   _traw, ktoz_, маст,\n  { {0x7ebc0010, 0x00000000, 0x00000000, 0x00000000}},  // [b150] _gépe,   ,   ,\n  { {0x7d1d0a0a, 0x44981255, 0x752d004a, 0x00000000}},  //   íssi, овую_, rpaz,\n  { {0x3959010f, 0x9c7c0059, 0xd2510025, 0x00000000}},  //   luss_, goči, فنا_,\n  { {0xb77a007b, 0x6f020082, 0x877a00a3, 0x00000000}},  //   _פארש, _nhoc, _פארי,\n  { {0xc692007b, 0x2483016c, 0x395930ac, 0x00000000}},  //   _נאך_, _tajm_, nuss_,\n  { {0x9c7c0253, 0x63a30056, 0x00000000, 0x00000000}},  //   boči, ønns,   ,\n  { {0x2ca734c5, 0x3959010f, 0x44330d3f, 0x00000000}},  //   _rond_, huss_, mbx_,\n  { {0x3eb9000c, 0x6f0234c6, 0xfe4500ed, 0x00000000}},  //   óst_, _choc, чнио,\n  { {0xee360642, 0x38610016, 0x6f020048, 0x00000000}},  //   чны_, _ochr_, _dhoc,\n  { {0x7ebc00f4, 0xdce201d5, 0xdc990216, 0x00000000}},  //   _répe, _proġ, стиш_,\n  { {0x2ca700b5, 0x6f020051, 0x00000000, 0x00000000}},  //   _vond_, _fhoc,   ,\n  { {0x2ca734c7, 0x395934c8, 0x00000000, 0x00000000}},  //   _wond_, fuss_,   ,\n  { {0x6f090d22, 0x2ca70066, 0xf9920025, 0x00000000}},  //   mmec, _tond_, ربح_,\n  { {0x3e4c010a, 0x6f092fcd, 0xbdf800a1, 0x00000000}},  //   rėtų_, lmec, _برما_,\n  { {0xc7a60265, 0x3b0a005e, 0x00000000, 0x00000000}},  //   чивк, _леко_,   ,\n  { {0x3ebf0093, 0x39591263, 0x9c7c0062, 0x00000000}},  //   nhut_, buss_, voči,\n  { {0xcb1300b6, 0x00000000, 0x00000000, 0x00000000}},  // [b160] _אלה_,   ,   ,\n  { {0x7cf40129, 0x6f09010f, 0xf8e0013d, 0x00000000}},  //   tàri, hmec, _नदिय,\n  { {0x3ebf34c9, 0x6f0934ca, 0x68ee0022, 0x00000000}},  //   khut_, kmec, mobd,\n  { {0x9c7c0c06, 0x7cf40129, 0x2d8f34cb, 0x00000000}},  //   roči, ràri, _orge_,\n  { {0x9c7c00b9, 0x290a0020, 0x6f0901ee, 0x00000000}},  //   soči, omba_, dmec,\n  { {0x92cc0055, 0x26d20cd7, 0x9c7c047c, 0x00000000}},  //   রকে_, liyo_, poči,\n  { {0xdfd00025, 0xdddb0059, 0x7eb50010, 0x00000000}},  //   ضية_, vduš, _tápl,\n  { {0x6d550046, 0x39590022, 0x00000000, 0x00000000}},  //   ązan, yuss_,   ,\n  { {0x38af014a, 0x5d98007e, 0x249800d9, 0x00000000}},  //   _kürt_, ікоў_, _knrm_,\n  { {0x26d211b3, 0x31bb019b, 0x645e08e3, 0x00000000}},  //   hiyo_, _הזמנ, ngpi,\n  { {0x2d8f1315, 0x7cef05b7, 0x6f0234cc, 0x00000000}},  //   _erge_, tørr, _thoc,\n  { {0xed5a04af, 0x39590089, 0xbf9b01ce, 0x00000000}},  //   _год_, tuss_, _ליבש,\n  { {0x26d202d1, 0x7e620146, 0x00000000, 0x00000000}},  //   diyo_, _icop,   ,\n  { {0x395901c5, 0x26de009d, 0xb69b005b, 0x00000000}},  //   russ_, éton_, _chân,\n  { {0x6c830379, 0x00000000, 0x00000000, 0x00000000}},  //   _سليم,   ,   ,\n  { {0x0ccd0044, 0x26d20022, 0x39590203, 0x00000000}},  //   রকৃত, giyo_, puss_,\n  { {0x3a290009, 0x7bdc000c, 0x27ed0036, 0x00000000}},  // [b170] _ifap_, úruf, łen_,\n  { {0x7aef096e, 0x00000000, 0x00000000, 0x00000000}},  //   loct,   ,   ,\n  { {0x23790151, 0x00000000, 0x00000000, 0x00000000}},  //   تماد_,   ,   ,\n  { {0x26c00207, 0x39493191, 0x7aef00e5, 0x00000000}},  //   chio_, _kvas_, noct,\n  { {0x44330009, 0x00000000, 0x00000000, 0x00000000}},  //   pbx_,   ,   ,\n  { {0xf4840265, 0x7e6234cd, 0x44250792, 0x00000000}},  //   _пусн, _acop, _ül_,\n  { {0xd3470014, 0x38b4010e, 0x3ebf0022, 0x00000000}},  //   _ریشه_, _särk_, thut_,\n  { {0x3949004a, 0x00000000, 0x00000000, 0x00000000}},  //   _ovas_,   ,   ,\n  { {0x6f090035, 0x7e620009, 0xdceb0089, 0x00000000}},  //   rmec, _dcop, _apgā,\n  { {0x7e620142, 0x38b40dac, 0x26d20288, 0x00000000}},  //   _ecop, _värk_, ziyo_,\n  { {0x39492813, 0x3ebf0022, 0x9c7c016c, 0x00000000}},  //   _avas_, phut_, joču,\n  { {0xe3bf0044, 0x5f740d0b, 0x394900d9, 0x00000000}},  //   _আশাব, _سامر, _bvas_,\n  { {0x2d8f0781, 0x7e7b0258, 0x00000000, 0x00000000}},  //   _urge_, meup,   ,\n  { {0x3156007b, 0x290a1baa, 0x6d5b0022, 0x00000000}},  //   וישן_, umba_, muua,\n  { {0x26c0018e, 0x7ebc009d, 0x00000000, 0x00000000}},  //   thio_, _hépa,   ,\n  { {0x7e7b0203, 0x7aef0068, 0x00000000, 0x00000000}},  //   neup, coct,   ,\n  { {0x34aa003b, 0x00000000, 0x00000000, 0x00000000}},  // [b180] овао_,   ,   ,\n  { {0x26c00020, 0x26d234ce, 0x798400e7, 0x00000000}},  //   shio_, siyo_, _isiw,\n  { {0x7e7b0203, 0x212d00fa, 0x00000000, 0x00000000}},  //   keup, _ateh_,   ,\n  { {0xe1fa0175, 0x38af010f, 0xdb1a0010, 0x00000000}},  //   оге_, _fürs_, nztá,\n  { {0x7644006b, 0xd043006b, 0x7ebc009d, 0x00000000}},  //   maiy, linə, _népa,\n  { {0x7e6234cf, 0x798400e7, 0x00000000, 0x00000000}},  //   _scop, _msiw,   ,\n  { {0x442a0982, 0x752405ff, 0x00000000, 0x00000000}},  //   _ifb_, lqiz,   ,\n  { {0xf8bb02fb, 0x2f17007c, 0x442a0146, 0x00000000}},  //   _उत्प, мощь_, _hfb_,\n  { {0x4444022b, 0x690b0066, 0x7ebc009d, 0x00000000}},  //   oa_, _mżer, _cépa,\n  { {0x7ebc028c, 0x1fb60088, 0x00000000, 0x00000000}},  //   _dépa, _осер,   ,\n  { {0x403301fb, 0x7aef0026, 0x76441ecd, 0x00000000}},  //   _реєс, toct, kaiy,\n  { {0x44440224, 0x63a30039, 0x6e930025, 0x00000000}},  //   ha_, änni, _للما,\n  { {0x44440be3, 0x644e2145, 0x7aef34d0, 0x00000000}},  //   ka_, _odbi, roct,\n  { {0xfbcf089d, 0x79840146, 0x690b0066, 0x00000000}},  //   اتی_, _dsiw, _ażer,\n  { {0xd7f80057, 0x2f010611, 0x7c2a0066, 0x00000000}},  //   дут_, lóga_, _iffr,\n  { {0x4444000d, 0x442a020f, 0x561d0044, 0x00000000}},  //   ea_, _afb_, তর্ক_,\n  { {0x4444000b, 0x09d90055, 0x39490b33, 0x00000000}},  // [b190] fa_, _সরকা, _uvas_,\n  { {0x5996009b, 0x690b002b, 0x00000000, 0x00000000}},  //   _נכתב_, _eżer,   ,\n  { {0x32550216, 0x442a01a2, 0xf3670259, 0x00000000}},  //   евер, _dfb_, ьтан,\n  { {0x4444021e, 0x7d1803bd, 0x442a0190, 0x00000000}},  //   aa_, _livs, _efb_,\n  { {0x7c2a34d1, 0x442a0009, 0x224d0023, 0x00000000}},  //   _offr, _ffb_, _vdek_,\n  { {0x7ebc00f4, 0xd1b8002c, 0xc1040025, 0x00000000}},  //   _répa, باما_, نوني,\n  { {0x7ebc00f4, 0x64452541, 0x00000000, 0x00000000}},  //   _sépa, mahi,   ,\n  { {0x7c2a34d2, 0x644500ef, 0x0d850256, 0x00000000}},  //   _affr, lahi, елин,\n  { {0x7d18037e, 0x615500a1, 0x629b00e0, 0x00000000}},  //   _bivs, _سنائ, _inuo,\n  { {0x644534d3, 0xf0bb0123, 0xb16e00b9, 0x00000000}},  //   nahi, _بارش_, ížeč,\n  { {0xeb990200, 0x7eb50285, 0x7d1801c5, 0x00000000}},  //   чин_, _lápi, _divs,\n  { {0x44441110, 0x798f001c, 0x6445000b, 0x00000000}},  //   za_, fvcw, hahi,\n  { {0xed4e01fb, 0xd01000a1, 0x6445011c, 0x00000000}},  //   _що_, _ملے_, kahi,\n  { {0x44440118, 0xdb1a0047, 0xfc310123, 0x00000000}},  //   xa_, sztá, _صحت_,\n  { {0x6d4934d4, 0x6445011c, 0x69c60010, 0x00000000}},  //   lsea, dahi, szke,\n  { {0x6443000c, 0x6e2901a3, 0xf6550f62, 0x00000000}},  //   ðnin, nceb, ктую,\n  { {0x6d4934d5, 0x661d0009, 0x79840020, 0x00000000}},  // [b1a0] nsea, _dgsk, _usiw,\n  { {0x4444001a, 0x6d490051, 0x64450058, 0x00000000}},  //   ua_, isea, gahi,\n  { {0x7c24038c, 0x929d0046, 0x442a01a2, 0x00000000}},  //   _şirk, _chło, _vfb_,\n  { {0xd2520014, 0xaa7b04bb, 0xf7d70049, 0x00000000}},  //   انش_, mnýc, _טויש_,\n  { {0x64450b1f, 0xaa7b0161, 0x291a34d6, 0x00000000}},  //   bahi, lnýc, _kipa_,\n  { {0x444431a0, 0x6d490061, 0x00000000, 0x00000000}},  //   qa_, dsea,   ,\n  { {0x7eb501ca, 0x6d4b34d7, 0x291a0093, 0x00000000}},  //   _zápi, _avga, _mipa_,\n  { {0x291a016e, 0x3da6030d, 0x00000000, 0x00000000}},  //   _lipa_, ероб,   ,\n  { {0x91e3005e, 0x301a0025, 0x6d49267c, 0x00000000}},  //   _боте, _فتاة_, gsea,\n  { {0x7ae40969, 0x22460058, 0x2f010048, 0x00000000}},  //   _ajit, laok_, róga_,\n  { {0x54570049, 0x31e20044, 0xaa7b0161, 0x00000000}},  //   עסטן_, _বরিশ, jnýc,\n  { {0x6d492513, 0xaa7b06b8, 0xad260025, 0x00000000}},  //   bsea, dnýc, _كرتو,\n  { {0x6445011c, 0x6d490048, 0xddea0014, 0x00000000}},  //   yahi, csea, _عرصه_,\n  { {0x7eb50489, 0x26f90309, 0x6d461322, 0x00000000}},  //   _rápi, ंत्र_, škas,\n  { {0x644514ac, 0x291a18fc, 0x9ee500a1, 0x00000000}},  //   vahi, _dipa_, _سہیل_,\n  { {0x7ae4048a, 0x64450020, 0x7cf40129, 0x00000000}},  //   _gjit, wahi, càrr,\n  { {0x6445036b, 0x383500ed, 0xf8bf009d, 0x00000000}},  // [b1b0] tahi, _инпр, upés_,\n  { {0x9865026c, 0xa3bd013d, 0xaa7b06b8, 0x00000000}},  //   _جیسے_, इनल_, bnýc,\n  { {0xf09f0011, 0xd6d101fa, 0x764b0010, 0x00000000}},  //   _đà_, _نقد_, ógys,\n  { {0x64450ae5, 0x6d4902c2, 0x291a016c, 0x00000000}},  //   sahi, ysea, _zipa_,\n  { {0x6445011c, 0xc2c40025, 0xb2240088, 0x00000000}},  //   pahi, ديني, уміл,\n  { {0x6d490061, 0x7afd12f9, 0x656d00e7, 0x00000000}},  //   vsea, hlst, mtah,\n  { {0x6d490d12, 0x656d34d8, 0x23e4007e, 0x00000000}},  //   wsea, ltah, _бітв,\n  { {0x7ebc00f4, 0x6d4934d9, 0x7afd00d9, 0x00000000}},  //   _dépo, tsea, jlst,\n  { {0x656d1577, 0x6e29153d, 0xaa7b01ca, 0x00000000}},  //   ntah, rceb, znýc,\n  { {0x6d490051, 0x7af60239, 0x61fb006b, 0x00000000}},  //   rsea, _skyt, _iyul,\n  { {0x6d4911be, 0x291a06f9, 0xb5fb0051, 0x00000000}},  //   ssea, _ripa_, _scál,\n  { {0xe61f0011, 0x6d490035, 0xaa7b06b8, 0x00000000}},  //   _ngô_, psea, vnýc,\n  { {0x6d460119, 0x291a023a, 0x656d0022, 0x00000000}},  //   škar, _pipa_, jtah,\n  { {0x7afd0141, 0xaa7b06b8, 0xdca502ea, 0x00000000}},  //   alst, tnýc, _јаки,\n  { {0xf74300ed, 0x656d0007, 0x98a30793, 0x00000000}},  //   иеро, etah, шире,\n  { {0xcf920476, 0x321f0011, 0xaa7b04bb, 0x00000000}},  //   סטן_, _nguy_, rnýc,\n  { {0xceb201f8, 0x291a0091, 0x7c240279, 0x00000000}},  // [b1c0] בין_, _tipa_, _şiri,\n  { {0xfaf90089, 0x66db00b0, 0x3eaf00d9, 0x00000000}},  //   stīt_, täkä, _logt_,\n  { {0x61e90039, 0x3eaf00d9, 0x00000000, 0x00000000}},  //   _axel, _oogt_,   ,\n  { {0x7ebc028c, 0x60c10073, 0x39400173, 0x00000000}},  //   _répo, _allm, _kwis_,\n  { {0x7ebc00f4, 0x656d0085, 0x00000000, 0x00000000}},  //   _dépl, ctah,   ,\n  { {0x6909000c, 0x00000000, 0x00000000, 0x00000000}},  //   rþeg,   ,   ,\n  { {0x61e9008e, 0x546702b0, 0x03a30a85, 0x00000000}},  //   _exel, _шарм_, _киро,\n  { {0x2d8634da, 0xc7b30104, 0x91bf0316, 0x00000000}},  //   _psoe_, שבה_, वनशै,\n  { {0x61fb0010, 0x7c2d014a, 0x00000000, 0x00000000}},  //   _gyul, _şara,   ,\n  { {0x3a2004d4, 0x00000000, 0x00000000, 0x00000000}},  //   _agip_,   ,   ,\n  { {0x34b700b6, 0x443a0009, 0xead90088, 0x00000000}},  //   דפים_, ibp_, емні_,\n  { {0x4fd9007b, 0xed59013e, 0x3959004a, 0x00000000}},  //   _אַנד, brž_, trss_,\n  { {0x394d028c, 0xdd9200a6, 0x7afd0039, 0x00000000}},  //   ées_, _خوش_, rlst,\n  { {0x79961784, 0x26c20052, 0x3a200087, 0x00000000}},  //   _dryw, _alko_, _egip_,\n  { {0x7ac70088, 0x972501d8, 0x6abd0023, 0x00000000}},  //   _аспе, افرو, ërfs,\n  { {0x656d000c, 0x00000000, 0x00000000, 0x00000000}},  //   ttah,   ,   ,\n  { {0x7ebc1055, 0x60d80056, 0xcb14009b, 0x00000000}},  // [b1d0] _répl, kivm, _דלק_,\n  { {0xfaff008d, 0x656d0fef, 0xf9920104, 0x00000000}},  //   llë_, rtah, _פרי_,\n  { {0x656d1499, 0xa2b4007d, 0x38b40039, 0x00000000}},  //   stah, _आवश्, _värt_,\n  { {0x656d01e5, 0x2ee60023, 0x00000000, 0x00000000}},  //   ptah, _njof_,   ,\n  { {0x865a009b, 0xa2b401f5, 0x00000000, 0x00000000}},  //   _אדרי, _आवर्,   ,\n  { {0xdce9002b, 0xe05700a2, 0xd00934db, 0x00000000}},  //   rteċ, ئیات_, неле_,\n  { {0x3d06013d, 0xa4d40088, 0x00000000, 0x00000000}},  //   _सीधे_, _торі,   ,\n  { {0x7cfd0129, 0x61e905aa, 0x00000000, 0x00000000}},  //   mèri, _txel,   ,\n  { {0x40351662, 0x213f0022, 0x3eaf01a2, 0x00000000}},  //   _безс, _uwuh_, _vogt_,\n  { {0x60c10051, 0x2a69016c, 0xaba906e1, 0x00000000}},  //   _ullm, _acab_, евоз_,\n  { {0x7c95007a, 0x3f670269, 0x7a6a09da, 0x00000000}},  //   نشگا, _штаб, нинг_,\n  { {0x79960046, 0x66e50006, 0x00000000, 0x00000000}},  //   _pryw, dėko,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x79960007, 0x2eff0146, 0x7c24006b, 0x00000000}},  //   _vryw, lluf_, _şirv,\n  { {0x2cb82c04, 0x79960abb, 0x00000000, 0x00000000}},  //   örde_, _wryw,   ,\n  { {0x29250051, 0x6abd0210, 0x79960016, 0x00000000}},  //   úpaí_, cksf, _tryw,\n  { {0xe5a31bc2, 0xceb20104, 0x68f50059, 0x00000000}},  // [b1e0] бити, זין_, bozd,\n  { {0x888601be, 0xf7f61739, 0x03a60679, 0x00000000}},  //   _слож, _مسجد, лизо,\n  { {0xfaf9001e, 0x9cd6009b, 0x7cfd00d4, 0x00000000}},  //   brīd_, נועה_, gèri,\n  { {0x6d5b008d, 0x2bf60049, 0x316a31c9, 0x00000000}},  //   krua, אמען_, ешко_,\n  { {0xc5b6008b, 0x35fa026c, 0x60d801aa, 0x00000000}},  //   _сёнь, _سرحد_, tivm,\n  { {0x7ebc0010, 0x6d5b0023, 0x7cfd00f6, 0x00000000}},  //   _gépj, drua, bèri,\n  { {0x7646000a, 0x00000000, 0x00000000, 0x00000000}},  //   _keky,   ,   ,\n  { {0x72791123, 0x6e3b011c, 0x7d54005e, 0x00000000}},  //   _исус_, gbub, авих,\n  { {0x6d5b34dc, 0x00000000, 0x00000000, 0x00000000}},  //   grua,   ,   ,\n  { {0xddcb001a, 0x2a690ace, 0xbb74025f, 0x00000000}},  //   ţişt, _scab_, агој,\n  { {0x7eb50b33, 0x4f5a035b, 0x68f5004a, 0x00000000}},  //   _cáps, _سجاد_, vozd,\n  { {0x68f50036, 0x6efe0023, 0x00000000, 0x00000000}},  //   wozd, këbi,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xe78701ab, 0x00000000, 0x00000000, 0x00000000}},  //   лубо,   ,   ,\n  { {0x76460030, 0x00000000, 0x00000000, 0x00000000}},  //   _beky,   ,   ,\n  { {0x96351deb, 0x79a7026b, 0x6d420173, 0x00000000}},  //   рнац, _брое, _kwoa,\n  { {0x6282068f, 0xf8ae0167, 0x00000000, 0x00000000}},  // [b1f0] deoo, سکی_,   ,\n  { {0x7cfd04bd, 0xddc210f7, 0xdce900b9, 0x00000000}},  //   tèri, _obož, yteč,\n  { {0xc7ab0025, 0xd2510025, 0x00000000, 0x00000000}},  //   _أدخل_, قنا_,   ,\n  { {0x76460007, 0x6e220fb9, 0x0ce10164, 0x00000000}},  //   _geky, _ngob, _पद्म,\n  { {0xd04a005f, 0xdd860137, 0xc24405b8, 0x00000000}},  //   lifə, _بو_, снік,\n  { {0x2f5501fb, 0x6e22008e, 0x26c900fa, 0x00000000}},  //   атис, _agob, lhao_,\n  { {0x256f079a, 0x30c900a1, 0xd498005e, 0x00000000}},  //   lül_, _یورپ_, _сря_,\n  { {0x26c900c4, 0x00000000, 0x00000000, 0x00000000}},  //   nhao_,   ,   ,\n  { {0xd04a005f, 0x256f34dd, 0xdce901ca, 0x00000000}},  //   hifə, nül_, steč,\n  { {0x64470224, 0x6d5b1180, 0xeb99012b, 0x00000000}},  //   _jeji, rrua, вио_,\n  { {0x6447008e, 0xdb22000c, 0x00000000, 0x00000000}},  //   _meji, ærðf,   ,\n  { {0x64470263, 0x6d5b0065, 0x256f34de, 0x00000000}},  //   _leji, prua, kül_,\n  { {0xddc213c7, 0x3ead0065, 0xdca501e0, 0x00000000}},  //   _zbož, mjet_, _вали,\n  { {0x3ead34df, 0xe8f70194, 0x256f34e0, 0x00000000}},  //   ljet_, иля_, dül_,\n  { {0x29040089, 0xf74634e1, 0x00000000, 0x00000000}},  //   ēma_, ребо,   ,\n  { {0x3ead0065, 0x068600ed, 0x1fe70044, 0x00000000}},  //   njet_, јган, _ফরাস,\n  { {0x4ad8026c, 0x256f0148, 0x64470093, 0x00000000}},  // [b200] _لاکھ_, gül_, _beji,\n  { {0x389a0049, 0x3ead2368, 0x00000000, 0x00000000}},  //   _ייִנ, hjet_,   ,\n  { {0x3ead0065, 0x436a005e, 0x07a6007e, 0x00000000}},  //   kjet_, таен_, _танн,\n  { {0x26c9087a, 0xa3e70061, 0xd4090025, 0x00000000}},  //   chao_, _बखर_, اتكم_,\n  { {0x27f7089d, 0xf194004c, 0x3ead34e2, 0x00000000}},  //   _مفید_, силь, djet_,\n  { {0x64550046, 0x60f701e1, 0x8997009b, 0x00000000}},  //   _gdzi, анія_, יכנס_,\n  { {0x656400b0, 0x00000000, 0x00000000, 0x00000000}},  //   luih,   ,   ,\n  { {0x7d010061, 0x3ead0065, 0x3f98009f, 0x00000000}},  //   ells, gjet_, _árum_,\n  { {0xd04a005f, 0x81d40044, 0x7b330035, 0x00000000}},  //   zifə, _সুর_, _lăud,\n  { {0x26c9012d, 0x27ed0a4b, 0x00000000, 0x00000000}},  //   zhao_, şeni_,   ,\n  { {0x256f0010, 0x26c00197, 0xa5bb0082, 0x00000000}},  //   zül_, kkio_, _ngón,\n  { {0xdce9002b, 0x00000000, 0x00000000, 0x00000000}},  //   rveġ,   ,   ,\n  { {0xe8b4007d, 0x00000000, 0x00000000, 0x00000000}},  //   ुसूच,   ,   ,\n  { {0x256f0010, 0xe7f2013d, 0x00000000, 0x00000000}},  //   vül_, _आँखा_,   ,\n  { {0xab2701f9, 0x644734e3, 0x26c90082, 0x00000000}},  //   _која_, _reji, thao_,\n  { {0x256f34e4, 0x644734e5, 0x644a01e5, 0x00000000}},  //   tül_, _seji, ðfin,\n  { {0x442300fa, 0x443100f6, 0x38c80014, 0x00000000}},  // [b210] _pgj_, _pfz_, _چاپی_,\n  { {0x35e4008b, 0x256f0047, 0x26c901ee, 0x00000000}},  //   іцтв, rül_, shao_,\n  { {0x9f5e0065, 0x644700d0, 0x29030ecc, 0x00000000}},  //   _dytë_, _veji, mlja_,\n  { {0xb69b00f4, 0x29031204, 0x64550036, 0x00000000}},  //   _chât, llja_, _wdzi,\n  { {0x64470211, 0x3ead016e, 0x816b0c74, 0x00000000}},  //   _teji, vjet_, треб_,\n  { {0x64550046, 0x764d00e0, 0x798d0418, 0x00000000}},  //   _udzi, laay, _msaw,\n  { {0x3ead0065, 0x987c0049, 0x02a7007e, 0x00000000}},  //   tjet_, דרוק, _крам,\n  { {0x764d0058, 0x212b009d, 0x00000000, 0x00000000}},  //   naay, _écho_,   ,\n  { {0x3ead0065, 0x3ebf045f, 0x2d990048, 0x00000000}},  //   rjet_, rkut_, íse_,\n  { {0x3ead0d00, 0x26c0002d, 0x3ebf0ed1, 0x00000000}},  //   sjet_, zkio_, skut_,\n  { {0x798d006a, 0x764d107e, 0x5f9501d8, 0x00000000}},  //   _asaw, kaay, _دلائ,\n  { {0xddd9002b, 0x3ead0023, 0x00000000, 0x00000000}},  //   _kawż, qjet_,   ,\n  { {0xfe70031d, 0x764d0020, 0x6bd500a1, 0x00000000}},  //   _آدم_, daay, شتگر,\n  { {0x6c350167, 0x2903050f, 0x7e69010e, 0x00000000}},  //   _افغا, glja_, lgep,\n  { {0x5b35004b, 0xdc360049, 0x798d000a, 0x00000000}},  //   _اعتر, _פאקט_, _esaw,\n  { {0x7e6900b5, 0x9f5e0065, 0x752d006b, 0x00000000}},  //   ngep, _sytë_, fqaz,\n  { {0x29030f3a, 0x6aa40a34, 0xe5a3003b, 0x00000000}},  // [b220] blja_, _inif, пити,\n  { {0x07fa03ec, 0x764d00e0, 0x26c0007f, 0x00000000}},  //   _مرجع_, aaay, skio_,\n  { {0xa2e634e6, 0xb69b009d, 0x6aa40133, 0x00000000}},  //   божд, _châs, _knif,\n  { {0x10f900a1, 0xa97a0049, 0x00000000, 0x00000000}},  //   یبوں_, ָאַכ,   ,\n  { {0xf1d203d7, 0x7ebc0010, 0x00000000, 0x00000000}},  //   _देखन, _képv,   ,\n  { {0xf993009b, 0x00000000, 0x00000000, 0x00000000}},  //   פרו_,   ,   ,\n  { {0x3cfc00d9, 0x7e6901a2, 0x00000000, 0x00000000}},  //   _rkvv_, fgep,   ,\n  { {0xa5bb0046, 0x1dd903d7, 0x7e6905a6, 0x00000000}},  //   _ogól, _बेहत, ggep,\n  { {0xc693009b, 0xfbd50044, 0x6143003b, 0x00000000}},  //   לאה_, _সুলত, _нета,\n  { {0x6aa40016, 0xb5b7009b, 0x00000000, 0x00000000}},  //   _anif, צליח_,   ,\n  { {0x29030295, 0xb4fb0049, 0x6ab60a6b, 0x00000000}},  //   vlja_, רליר, _boyf,\n  { {0x635c0035, 0x00000000, 0x00000000, 0x00000000}},  //   mănă,   ,   ,\n  { {0x63be0146, 0x80bd0044, 0x00000000, 0x00000000}},  //   hypn, ্চর্,   ,\n  { {0x764d0009, 0xac1801ee, 0x66e5007f, 0x00000000}},  //   waay, _колу_, mėki,\n  { {0x9cdb0104, 0xb6c7005e, 0x66e50006, 0x00000000}},  //   _תקופ, бсай, lėki,\n  { {0x29030e00, 0xbb3b0049, 0x6aa400d9, 0x00000000}},  //   slja_, _געהי, _gnif,\n  { {0x58d500e3, 0x29030825, 0x798d0020, 0x00000000}},  // [b230] _моит, plja_, _usaw,\n  { {0x764d2778, 0x00000000, 0x00000000, 0x00000000}},  //   saay,   ,   ,\n  { {0x7c2d011f, 0x764d00e0, 0x00000000, 0x00000000}},  //   _şark, paay,   ,\n  { {0x26d901a2, 0xddd90066, 0x66e5007f, 0x00000000}},  //   _umso_, _pawż, kėki,\n  { {0x602500e2, 0x00000000, 0x00000000, 0x00000000}},  //   одла,   ,   ,\n  { {0x10a20113, 0x66e50006, 0x90c5041f, 0x00000000}},  //   дишн, dėki, юбле,\n  { {0x7e690112, 0xaa7b000c, 0x9ea9007c, 0x00000000}},  //   tgep, rnýj, ивка_,\n  { {0x8d550242, 0x00000000, 0x00000000, 0x00000000}},  //   оточ,   ,   ,\n  { {0x2d94007e, 0xed590069, 0x00000000, 0x00000000}},  //   прэс, шоп_,   ,\n  { {0x7aed021e, 0xcd280379, 0x7e690d18, 0x00000000}},  //   _ajat, حسين_, sgep,\n  { {0x6a8608f3, 0x00000000, 0x00000000, 0x00000000}},  //   олна,   ,   ,\n  { {0x78a50082, 0x00000000, 0x00000000, 0x00000000}},  //   _anhv,   ,   ,\n  { {0x7aed0065, 0x0f18023c, 0x272e000c, 0x00000000}},  //   _djat, _اغلب_, _sýn_,\n  { {0x8afd0046, 0x186a01f9, 0x78b70061, 0x00000000}},  //   stęp, јави_, _coxv,\n  { {0xd7f20025, 0x00000000, 0x00000000, 0x00000000}},  //   ذكر_,   ,   ,\n  { {0x7aed008d, 0xb6a3017f, 0x6aa414dc, 0x00000000}},  //   _gjat, мисл, _unif,\n  { {0x0b170025, 0x00000000, 0x00000000, 0x00000000}},  // [b240] _بقية_,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x68fc05ad, 0xb5fb0051, 0x987b0049, 0x00000000}},  //   mord, _scát, _דריק,\n  { {0xe5a600d7, 0x68fc0056, 0xa2060264, 0x00000000}},  //   _дими, lord, опед,\n  { {0x9c7c018b, 0x68fc00b5, 0x29180048, 0x00000000}},  //   liče, oord, omra_,\n  { {0x68fc277a, 0x25740073, 0xdce9013e, 0x00000000}},  //   nord, mäl_, čněn,\n  { {0x9c7c0091, 0x00000000, 0x00000000, 0x00000000}},  //   niče,   ,   ,\n  { {0x1ef70025, 0x68fc34e7, 0xb5fb0051, 0x00000000}},  //   يعية_, hord, _gcás,\n  { {0x68fc0004, 0x65761241, 0x0caa04f9, 0x00000000}},  //   kord, ntyh, атни_,\n  { {0xf063012b, 0x7ebc00f4, 0x68fc05d5, 0x00000000}},  //   _окуп, _répu, jord,\n  { {0x9c7c0e00, 0x7aed002b, 0x68fc0190, 0x00000000}},  //   jiče, _pjat, dord,\n  { {0xf3ec0055, 0x8afd0036, 0x00000000, 0x00000000}},  //   _করার_, dręc,   ,\n  { {0x68fc27eb, 0x25740039, 0xfd380025, 0x00000000}},  //   ford, jäl_, _اكتب_,\n  { {0x2bca007d, 0x00000000, 0x00000000, 0x00000000}},  //   ानदा,   ,   ,\n  { {0xd6db0113, 0xcb67003b, 0x7aed00f8, 0x00000000}},  //   ата_, _даје_, _tjat,\n  { {0xa5350099, 0x3f9e0087, 0x00000000, 0x00000000}},  //   знач, _mrtu_,   ,\n  { {0x68fc0056, 0x06cd0044, 0xdb170036, 0x00000000}},  // [b250] bord, রচলি, ńców,\n  { {0x7afd34e8, 0x9c7c0059, 0x3f9e0093, 0x00000000}},  //   lost, biče, _ortu_,\n  { {0xfbca0061, 0x00000000, 0x00000000, 0x00000000}},  //   ानिम,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x3f9e0032, 0x66c3010e, 0x00000000, 0x00000000}},  //   _artu_, _lõkk,   ,\n  { {0xe0d801fb, 0x55ba009b, 0x3ea60006, 0x00000000}},  //   ові_, _המשו, _anot_,\n  { {0x7afd001f, 0x7ebc0010, 0x12e70088, 0x00000000}},  //   kost, _néps, _діаг,\n  { {0x0ea90057, 0xee39005e, 0x7afd0091, 0x00000000}},  //   ский_, щни_, jost,\n  { {0x68fc011f, 0x3f9e000c, 0xfce51662, 0x00000000}},  //   yord, _ertu_, зопо,\n  { {0x2b47018e, 0x7ebc0f08, 0x3ea634e9, 0x00000000}},  //   _pwnc_, _sépt, _enot_,\n  { {0x68fc00c7, 0x7afd0051, 0x224d00bb, 0x00000000}},  //   vord, fost, _keek_,\n  { {0x7afd34ea, 0x9c7c0059, 0xef0e0088, 0x00000000}},  //   gost, viče, _їм_,\n  { {0x9916007e, 0x6da50545, 0x00000000, 0x00000000}},  //   зьві, _хила,   ,\n  { {0xa3bd0164, 0x9c7c0059, 0x2012005f, 0x00000000}},  //   ेना_, tiče, əyib_,\n  { {0x07a30264, 0x2d8d00fa, 0x3ea634eb, 0x00000000}},  //   нарн, lwee_, _ynot_,\n  { {0xcf9200bd, 0x9c7c016c, 0x7afd0207, 0x00000000}},  //   עטן_, riče, cost,\n  { {0x056634ec, 0x68fc01b9, 0x38b4010f, 0x00000000}},  // [b260] яван, pord, _märz_,\n  { {0x9c7c34ed, 0x00000000, 0x00000000, 0x00000000}},  //   piče,   ,   ,\n  { {0x224d00bb, 0x7ebc009d, 0x00000000, 0x00000000}},  //   _beek_, _mépr,   ,\n  { {0xc7b300a3, 0x212d004a, 0x00000000, 0x00000000}},  //   _טבת_, _bueh_,   ,\n  { {0xd24f0558, 0x7644019a, 0x7bc100d2, 0x00000000}},  //   انه_, mbiy, hylu,\n  { {0x7afd1551, 0x20050c0f, 0x3ea601d6, 0x00000000}},  //   zost, _byli_, _snot_,\n  { {0x645c34ee, 0x44380009, 0x6d5d0051, 0x00000000}},  //   _idri, _ifr_, ásan,\n  { {0x4444001f, 0x645c0e08, 0x3f9e02db, 0x00000000}},  //   lb_, _hdri, _vrtu_,\n  { {0x44440ac9, 0x644e0169, 0x442a2a36, 0x00000000}},  //   ob_, _kebi, _kgb_,\n  { {0x44440173, 0xdb1b0010, 0x7afd0036, 0x00000000}},  //   nb_, sztü, wost,\n  { {0x7afd004f, 0x6606068f, 0x7ebc00f4, 0x00000000}},  //   tost, _lykk, _dépr,\n  { {0x644e0149, 0x13df0044, 0x67260059, 0x00000000}},  //   _lebi, _বুড়, _nikj,\n  { {0x7afd0428, 0x645c037e, 0xdca6003b, 0x00000000}},  //   rost, _odri, _нади,\n  { {0x644e001e, 0x645c0065, 0x442a01c3, 0x00000000}},  //   _nebi, _ndri, _ngb_,\n  { {0x44440059, 0x6c7b009b, 0xe7840902, 0x00000000}},  //   db_, _האופ, нуто,\n  { {0x444434ef, 0x645c001a, 0x442a010f, 0x00000000}},  //   eb_, _adri, _agb_,\n  { {0xdb1b115b, 0x6726002b, 0x442a01a2, 0x00000000}},  // [b270] sztó, _dikj, _bgb_,\n  { {0x4438001a, 0x644e014a, 0x29070051, 0x00000000}},  //   _cfr_, _cebi, _óna_,\n  { {0x644e0211, 0x645c005b, 0x443834f0, 0x00000000}},  //   _debi, _ddri, _dfr_,\n  { {0x44440004, 0x3cf00061, 0x645c0145, 0x00000000}},  //   ab_, ीकडे_, _edri,\n  { {0x444434f1, 0x9c7c0006, 0xc6920049, 0x00000000}},  //   bb_, anči, _סאך_,\n  { {0x644e0683, 0x224d05d0, 0x444412fe, 0x00000000}},  //   _gebi, _week_, cb_,\n  { {0x7ebc009d, 0x6d4001c3, 0x224d00bb, 0x00000000}},  //   _répr, epma, _teek_,\n  { {0x3eb9000c, 0x644e0032, 0x2d8d01d6, 0x00000000}},  //   ðst_, _zebi, twee_,\n  { {0x802700a2, 0x628b34f2, 0x3cfe34f3, 0x00000000}},  //   _فرام, mego, fotv_,\n  { {0x628b002d, 0x629934f4, 0x7d1a0009, 0x00000000}},  //   lego, ldwo, gmts,\n  { {0x64450051, 0x752700bb, 0x752f34f5, 0x00000000}},  //   ibhi, _mijz, _lucz,\n  { {0x628b34f6, 0xbe150355, 0x98a0012d, 0x00000000}},  //   nego, _قواع, _kuić_,\n  { {0xed4e27c6, 0x6f1b0026, 0x67260066, 0x00000000}},  //   _шо_, mmuc, _rikj,\n  { {0x6f09030a, 0x6606068f, 0x628b004a, 0x00000000}},  //   llec, _rykk, hego,\n  { {0x442a211e, 0xa3dd006e, 0xd7060088, 0x00000000}},  //   _rgb_, _तेल_, дзви,\n  { {0x644e0085, 0x443800f4, 0x65640c55, 0x00000000}},  //   _sebi, _sfr_, trih,\n  { {0x764f0036, 0x752700b5, 0x9c7c0ecc, 0x00000000}},  // [b280] _decy, _bijz, liča,\n  { {0x6f0934f7, 0x4444010f, 0x6f1b010f, 0x00000000}},  //   hlec, ub_, hmuc,\n  { {0x9c7c0091, 0xe29a007e, 0x444403a1, 0x00000000}},  //   niča, жае_, rb_,\n  { {0x644e0142, 0x65640142, 0x66061934, 0x00000000}},  //   _webi, prih, _tykk,\n  { {0x44380197, 0x6f0900d2, 0x644e033b, 0x00000000}},  //   _tfr_, dlec, _tebi,\n  { {0x6f090951, 0x6f020036, 0x629900d9, 0x00000000}},  //   elec, _skoc, adwo,\n  { {0x6f0900ab, 0xdfd00025, 0x628b16c5, 0x00000000}},  //   flec, طية_, bego,\n  { {0x24980133, 0x6f090133, 0x00000000, 0x00000000}},  //   _harm_, glec,   ,\n  { {0x224604cb, 0x6d400173, 0x249825f0, 0x00000000}},  //   mbok_, upma, _karm_,\n  { {0xa2da03d7, 0xd24f00a1, 0x22462b6f, 0x00000000}},  //   पोर्, _منہ_, lbok_,\n  { {0x6f090211, 0x7d080039, 0x2498004a, 0x00000000}},  //   blec, rlds, _marm_,\n  { {0x7c2d014a, 0x03570049, 0x6d401341, 0x00000000}},  //   _şart, ויטש_, ppma,\n  { {0xace9025a, 0x00000000, 0x00000000, 0x00000000}},  //   _کرنل_,   ,   ,\n  { {0x9c7c0ce4, 0x7b7600a2, 0x316600c4, 0x00000000}},  //   biča, _قطعا, iroz_,\n  { {0x764f0016, 0x628b015e, 0x67d50088, 0x00000000}},  //   _pecy, yego, хову,\n  { {0x929d0036, 0x290a004a, 0xaa7b01e5, 0x00000000}},  //   _okła, alba_, gnýt,\n  { {0x224615b3, 0x99480025, 0x628b04e7, 0x00000000}},  // [b290] dbok_, _قليل_, vego,\n  { {0x24980022, 0x6f0934f8, 0x00000000, 0x00000000}},  //   _carm_, zlec,   ,\n  { {0x6f0920d5, 0x64450048, 0xdce904eb, 0x00000000}},  //   ylec, rbhi, steć,\n  { {0x752702ae, 0xd25b008b, 0x21750088, 0x00000000}},  //   _wijz, іце_, еукр,\n  { {0x629900b5, 0x9c7c037e, 0xa158085f, 0x00000000}},  //   rdwo, ziča, дачу_,\n  { {0x628b30dc, 0x4f9500ed, 0x6d5d0048, 0x00000000}},  //   sego, ериу, ásam,\n  { {0x6f090009, 0x628b00f8, 0xfe710025, 0x00000000}},  //   tlec, pego, هدة_,\n  { {0xf53f0c7b, 0x27350039, 0x9c7c0213, 0x00000000}},  //   _tråd_, _mån_, viča,\n  { {0x99800036, 0x6f091a98, 0x27350193, 0x00000000}},  //   _dziś_, rlec, _lån_,\n  { {0x9c7c12d6, 0xc4d2007b, 0x6f0900b9, 0x00000000}},  //   tiča, ָגט_, slec,\n  { {0x656d008e, 0x27350039, 0x6f0900b4, 0x00000000}},  //   huah, _nån_, plec,\n  { {0x5fd80061, 0x73da0049, 0x0f360049, 0x00000000}},  //   _भेटल, פֿיצ, _טרעט_,\n  { {0x9c7c0746, 0x00000000, 0x00000000, 0x00000000}},  //   mičn,   ,   ,\n  { {0x9c7c34f9, 0x00000000, 0x00000000, 0x00000000}},  //   ličn,   ,   ,\n  { {0x9cd600b6, 0x8cac013d, 0xe9df000c, 0x00000000}},  //   _רוצה_, जारो, rbúa_,\n  { {0x9c7c0027, 0x7bda00b6, 0x66ca0428, 0x00000000}},  //   ničn, _מקצו, _výko,\n  { {0x27ff005d, 0x213f0022, 0x656d0058, 0x00000000}},  // [b2a0] ğuna_, _ntuh_, guah,\n  { {0x7ae60a5c, 0x33f631c9, 0xca4a0014, 0x00000000}},  //   likt, нчес, _بلکه_,\n  { {0x929d0046, 0x24981861, 0x69c60007, 0x00000000}},  //   _skła, _varm_, lyke,\n  { {0x24980007, 0x7d0101a2, 0x9c7c133f, 0x00000000}},  //   _warm_, hols, jičn,\n  { {0x9c7c01ca, 0x27f2001e, 0x7d0109fc, 0x00000000}},  //   dičn, šanā_, kols,\n  { {0x7ae600b5, 0x31660032, 0x224634fa, 0x00000000}},  //   hikt, rroz_, sbok_,\n  { {0x9c7c0059, 0x443a00f6, 0x929d0036, 0x00000000}},  //   fičn, mcp_, _wkła,\n  { {0xdd9001af, 0xc7b30104, 0x9c7c0295, 0x00000000}},  //   لوب_, רבה_, gičn,\n  { {0x929d0036, 0x25a001aa, 0xe0da0478, 0x00000000}},  //   _ukła, nvil_, _ева_,\n  { {0x23670f3a, 0x2012006b, 0x2a6034fb, 0x00000000}},  //   šnje_, əyin_, _adib_,\n  { {0xdeef1036, 0x394001aa, 0xa803006b, 0x00000000}},  //   _бы_, _atis_, _çıxm,\n  { {0x7ec600f4, 0x7aef0009, 0x273500f8, 0x00000000}},  //   _dépê, unct, _rån_,\n  { {0x27350afc, 0x7d0119d5, 0x6ce60451, 0x00000000}},  //   _sån_, bols, _піке,\n  { {0x2a60005f, 0x7d010026, 0x00000000, 0x00000000}},  //   _edib_, cols,   ,\n  { {0xb909001c, 0xf53f044f, 0x39400093, 0x00000000}},  //   _मग_, _stå_, _etis_,\n  { {0x56940373, 0xf1c6001d, 0x39590085, 0x00000000}},  //   ласт, _đánh_, psss_,\n  { {0x225f0061, 0x6aad0020, 0xdce9001a, 0x00000000}},  // [b2b0] _rduk_, _inaf, _înăl,\n  { {0x9c7c00d0, 0x4735007c, 0x76560058, 0x00000000}},  //   zičn, _инос, aayy,\n  { {0x2903000b, 0x656d00fa, 0x7c3a0048, 0x00000000}},  //   moja_, suah, ictr,\n  { {0xd6db0822, 0x290300b0, 0x68e700bb, 0x00000000}},  //   _хто_, loja_, lijd,\n  { {0x9c7c003b, 0x6aad00e7, 0x00000000, 0x00000000}},  //   vičn, _mnaf,   ,\n  { {0x29030778, 0x443a1156, 0x9c7c120f, 0x00000000}},  //   noja_, ccp_, dičo,\n  { {0x9c7c0bf8, 0x6aad01b5, 0x7d010010, 0x00000000}},  //   tičn, _onaf, vols,\n  { {0x290300b0, 0x00000000, 0x00000000, 0x00000000}},  //   hoja_,   ,   ,\n  { {0x9c7c02aa, 0x290300b0, 0x213f04be, 0x00000000}},  //   ričn, koja_, _utuh_,\n  { {0x6aad0012, 0x9c7c0e3b, 0xd7d10061, 0x00000000}},  //   _anaf, sičn, सनाच,\n  { {0x7ae634fc, 0x29030d90, 0x39400300, 0x00000000}},  //   tikt, doja_, _stis_,\n  { {0xd01000a1, 0x00000000, 0x00000000, 0x00000000}},  //   _چلے_,   ,   ,\n  { {0x7ae60039, 0x7d010046, 0x00000000, 0x00000000}},  //   rikt, pols,   ,\n  { {0x29030627, 0x7ae60039, 0x69c600ea, 0x00000000}},  //   goja_, sikt, ryke,\n  { {0x66e6007c, 0x6d5b34fd, 0x6457006b, 0x00000000}},  //   вова, lsua, daxi,\n  { {0x24640089, 0x6e3b01a3, 0xe3b200a6, 0x00000000}},  //   zīmē_, ncub, یرا_,\n  { {0x6d5b0211, 0x78be0640, 0x2903016e, 0x00000000}},  // [b2c0] nsua, _topv, boja_,\n  { {0xa443026b, 0x2903008e, 0xe0bc0044, 0x00000000}},  //   инуд, coja_, _অগ্ন,\n  { {0x443a34fe, 0x6d5b01a3, 0x7ae40062, 0x00000000}},  //   rcp_, hsua, _kmit,\n  { {0x6146008b, 0xd041005f, 0x25ad0059, 0x00000000}},  //   веда, _illə, _šele_,\n  { {0x28a7013d, 0x00000000, 0x00000000, 0x00000000}},  //   खाचि,   ,   ,\n  { {0x04430057, 0x7ae40045, 0x2fc7005b, 0x00000000}},  //   _верн, _lmit, fyng_,\n  { {0xc6070044, 0x66d10039, 0x7ae40f7f, 0x00000000}},  //   লেদা_, _håka, _omit,\n  { {0xe81a013d, 0x417600a1, 0x9c7c2dff, 0x00000000}},  //   _धरना_, _لائس, tičo,\n  { {0xaca900a1, 0x127b0049, 0xa3e60316, 0x00000000}},  //   کھنے_, _קאמע, _बेत_,\n  { {0x62820007, 0x7ae400f4, 0x26170061, 0x00000000}},  //   lfoo, _amit, पेटी_,\n  { {0x29031747, 0x2fd80190, 0x7c3a01c5, 0x00000000}},  //   voja_, _årg_, rctr,\n  { {0x62820052, 0x68e700bb, 0x7e98023c, 0x00000000}},  //   nfoo, wijd, _سنتر_,\n  { {0x2903021e, 0x7ae417ee, 0x68e700b5, 0x00000000}},  //   toja_, _dmit, tijd,\n  { {0x6282107b, 0x5ba6017a, 0x2903007f, 0x00000000}},  //   hfoo, _ариз, uoja_,\n  { {0x68e700b5, 0x7ae40026, 0x212c000a, 0x00000000}},  //   rijd, _fmit, _midh_,\n  { {0x6aad0020, 0x29030110, 0x8f9b071c, 0x00000000}},  //   _unaf, soja_, וילי,\n  { {0x9634008b, 0xa61534ff, 0x290300b0, 0x00000000}},  // [b2d0] рнуц, умач, poja_,\n  { {0x6d5d0d6a, 0x03c700e2, 0xca2a0049, 0x00000000}},  //   ásai, ксем, _אופֿ,\n  { {0x64573500, 0xed460167, 0x442700b0, 0x00000000}},  //   raxi, _گپ_, än_,\n  { {0xe8e10011, 0x7bda2efd, 0x6d5d0089, 0x00000000}},  //   _đột_, iztu, šsai,\n  { {0x212c0d12, 0x2089073b, 0x00000000, 0x00000000}},  //   _bidh_, ейли_,   ,\n  { {0x92e30044, 0xaf991aca, 0x200c01c3, 0x00000000}},  //   নকে_, етих_, _bydi_,\n  { {0x2f54007e, 0x6d420032, 0xd0060478, 0x00000000}},  //   атыс, _atoa, леше_,\n  { {0xdd912aea, 0x6455002d, 0x6d5b002d, 0x00000000}},  //   موع_, _hezi, tsua,\n  { {0x6e3b01a3, 0x6d5b004a, 0x2012006b, 0x00000000}},  //   rcub, usua, əyim_,\n  { {0x6d5b01a3, 0x6e3b0211, 0x332d0066, 0x00000000}},  //   rsua, scub, _hiex_,\n  { {0xd0110379, 0x645500b9, 0x6d5b0d87, 0x00000000}},  //   _الا_, _mezi, ssua,\n  { {0xd9460200, 0x60c104d3, 0x64550207, 0x00000000}},  //   леми, _holm, _lezi,\n  { {0x60c108b2, 0xdbc9006c, 0xc27a0049, 0x00000000}},  //   _kolm, _rõõm, ערשי,\n  { {0x64550ba5, 0x8d5a009b, 0x66d10039, 0x00000000}},  //   _nezi, _טכני, _råka,\n  { {0x62820009, 0x66d101e3, 0x7bc80036, 0x00000000}},  //   yfoo, _såka, cydu,\n  { {0xdb040068, 0x00000000, 0x00000000, 0x00000000}},  //   _orné,   ,   ,\n  { {0x645515a6, 0x25a60051, 0xdb090014, 0x00000000}},  // [b2e0] _bezi, íol_, _جزوه_,\n  { {0x779402fd, 0xbf0f0061, 0x00000000, 0x00000000}},  //   _پیرا, ातुन_,   ,\n  { {0x332d0f68, 0x64553501, 0x287b009b, 0x00000000}},  //   _biex_, _dezi, _אנימ,\n  { {0x44311669, 0xe1fa0404, 0xf367009e, 0x00000000}},  //   _egz_, нге_, ائلی,\n  { {0xa0540088, 0x7e620066, 0x628214f4, 0x00000000}},  //   авлі, _rdop, rfoo,\n  { {0x645500d9, 0x60c108d3, 0xb42600f3, 0x00000000}},  //   _gezi, _colm, _معزو,\n  { {0xbf0f0183, 0x26c2021e, 0x60c1014a, 0x00000000}},  //   ातून_, _koko_, _dolm,\n  { {0x26c23502, 0x64553503, 0x332d01f3, 0x00000000}},  //   _joko_, _zezi, _giex_,\n  { {0x504603f3, 0x7ebc0047, 0x3d260088, 0x00000000}},  //   _безб, _képz, льов,\n  { {0x8597007b, 0x26c20058, 0x9c7c0142, 0x00000000}},  //   נדיג_, _loko_, mičk,\n  { {0x9c7c040d, 0x9b430167, 0xee8607d0, 0x00000000}},  //   ličk, ینیو, _было,\n  { {0xbda60076, 0xdfcf006d, 0x26c20292, 0x00000000}},  //   _محتو, _عين_, _noko_,\n  { {0x7bda1a53, 0x9c7c0091, 0x6d420020, 0x00000000}},  //   sztu, ničk, _utoa,\n  { {0xb934003b, 0x3aeb0173, 0x3952005b, 0x00000000}},  //   серј, _bòpè_, _dwys_,\n  { {0x645507b9, 0xdc3c0059, 0x9c7c0166, 0x00000000}},  //   _rezi, nšči, hičk,\n  { {0x64550198, 0x00000000, 0x00000000, 0x00000000}},  //   _sezi,   ,   ,\n  { {0x545501f9, 0xa3dd006e, 0x64550142, 0x00000000}},  // [b2f0] иват, _तेज_, _pezi,\n  { {0xf53f0901, 0x9c7c01ca, 0xdc3c010a, 0x00000000}},  //   _från_, dičk, kšči,\n  { {0x92590057, 0x64551322, 0x5c370049, 0x00000000}},  //   вает_, _vezi, ארבן_,\n  { {0x60c10943, 0x9c7c0166, 0x00000000, 0x00000000}},  //   _solm, fičk,   ,\n  { {0x6455016c, 0x764d3504, 0x60c10724, 0x00000000}},  //   _tezi, mbay, _polm,\n  { {0xe0570167, 0xd5ae00a1, 0x656d01e5, 0x00000000}},  //   ایات_, _کہے_, mrah,\n  { {0x60c10007, 0xa3dd0061, 0x26c20504, 0x00000000}},  //   _volm, _तेच_, _yoko_,\n  { {0x8c0a0055, 0x9c7c0387, 0x0ea9004c, 0x00000000}},  //   রধান_, bičk, ткий_,\n  { {0x60c1253f, 0xc6070044, 0x656d3505, 0x00000000}},  //   _tolm, লেরা_, nrah,\n  { {0x660f0073, 0x3b85005c, 0xdc3c0059, 0x00000000}},  //   _myck, алог, bšči,\n  { {0x660f0073, 0x764d0058, 0x5f9500a1, 0x00000000}},  //   _lyck, kbay, _خلائ,\n  { {0x2023002b, 0x3eaf01e5, 0x656d12e2, 0x00000000}},  //   ħriġ_, _ungt_, krah,\n  { {0x26c23506, 0x660f0039, 0x00000000, 0x00000000}},  //   _roko_, _nyck,   ,\n  { {0x6d49002a, 0x26c20020, 0x7c94005e, 0x00000000}},  //   mpea, _soko_, _гръц,\n  { {0x26c201aa, 0x9c7c0091, 0x6d490d48, 0x00000000}},  //   _poko_, zičk, lpea,\n  { {0x764d011c, 0xdce2002b, 0x2bde0061, 0x00000000}},  //   gbay, _ipoġ, _फेटा,\n  { {0x7afd147e, 0x656d3507, 0x6d491f56, 0x00000000}},  // [b300] érte, grah, npea,\n  { {0x9c7c0161, 0x20a40061, 0x6d492ff0, 0x00000000}},  //   vičk, _गोंध, ipea,\n  { {0x3dbd0055, 0x26c20390, 0xb4db0129, 0x00000000}},  //   েছিল, _toko_, _itàl,\n  { {0x9c7c0119, 0x656d03b0, 0xdc3c0059, 0x00000000}},  //   tičk, brah, všči,\n  { {0x6724002b, 0xa3e60164, 0x752e01f3, 0x00000000}},  //   mmij, _बेर_, _tibz,\n  { {0x9c7c19e2, 0x273c3508, 0x3f660098, 0x00000000}},  //   ričk, _kín_, атиб,\n  { {0x6d493509, 0xdce20066, 0x00000000, 0x00000000}},  //   epea, _npoġ,   ,\n  { {0x273c009f, 0x3de70044, 0x9c7c350a, 0x00000000}},  //   _mín_, _পড়ল, pičk,\n  { {0x9c7c0209, 0x248a0022, 0x5096003b, 0x00000000}},  //   liči, _kbbm_, _вређ,\n  { {0xdc3c0059, 0x00e3004d, 0xccb80088, 0x00000000}},  //   pšči, _джун, угої_,\n  { {0x764d17e5, 0x798d0075, 0x9c7c0142, 0x00000000}},  //   ybay, _spaw, niči,\n  { {0x7b22009d, 0x6724350b, 0x00000000, 0x00000000}},  //   _sœur, jmij,   ,\n  { {0x2c06001c, 0x00000000, 0x00000000, 0x00000000}},  //   _सुरू_,   ,   ,\n  { {0x386d010f, 0xa3d60164, 0x660f00f8, 0x00000000}},  //   ßer_, िना_, _ryck,\n  { {0x386d011f, 0x9c7c0ebe, 0x57a400ed, 0x00000000}},  //   ğer_, jiči, ошта,\n  { {0xd6d80088, 0x656d05da, 0x9c7c0142, 0x00000000}},  //   ату_, trah, diči,\n  { {0x764d006b, 0x89da00a1, 0x672f00f6, 0x00000000}},  // [b310] rbay, _موٹر_, _vicj,\n  { {0xb8950054, 0x656d014a, 0x273c350c, 0x00000000}},  //   _الدع, rrah, _fín_,\n  { {0x656d03b6, 0x06cc0044, 0xb5fb013e, 0x00000000}},  //   srah, রোধি, _zdál,\n  { {0x660f0073, 0x23670059, 0x56940152, 0x00000000}},  //   _tyck, šnjo_, _дают,\n  { {0xe1f00380, 0x00000000, 0x00000000, 0x00000000}},  //   وسه_,   ,   ,\n  { {0x66d80161, 0x9c7c016e, 0x00000000, 0x00000000}},  //   _víke, biči,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x77f800b3, 0x29f80082, 0x00000000, 0x00000000}},  //   ימוד_, ọai_,   ,\n  { {0x6d49009d, 0xdcfb1246, 0x00000000, 0x00000000}},  //   upea, stuč,   ,\n  { {0x2ba5001e, 0x6d490032, 0x66d10039, 0x00000000}},  //   _pēc_, rpea, _såkl,\n  { {0xe21701f5, 0x1fe50044, 0xcfe50044, 0x00000000}},  //   _तरुण_, _পুরস, _পুরন,\n  { {0x2d99002b, 0x6d4900ab, 0x00000000, 0x00000000}},  //   ħseb_, ppea,   ,\n  { {0xdca50088, 0x273c000c, 0xfe700014, 0x00000000}},  //   _гали, _sín_, _زدن_,\n  { {0x2eed00ab, 0x7b330035, 0xbbe80014, 0x00000000}},  //   lief_, _băut, اریم_,\n  { {0xdc12005f, 0x7b33001a, 0xb8f0013d, 0x00000000}},  //   _işğa, _căut, _शव_,\n  { {0x9c7c350d, 0x3ebf020c, 0x66e302e9, 0x00000000}},  //   viči, njut_, поса,\n  { {0xe61a013b, 0x672400b5, 0x99860025, 0x00000000}},  // [b320] уда_, rmij, _الخو,\n  { {0x273c001d, 0x2eed0270, 0x6724016e, 0x00000000}},  //   _tín_, hief_, smij,\n  { {0x1d160049, 0x00000000, 0x00000000, 0x00000000}},  //   צקער_,   ,   ,\n  { {0x9c7c04a5, 0x2d030204, 0x68ee013f, 0x00000000}},  //   riči, रकुल_, libd,\n  { {0x9c7c00ca, 0x2eed040f, 0x00000000, 0x00000000}},  //   siči, dief_,   ,\n  { {0x290a2698, 0x9c7c021c, 0x154300d7, 0x00000000}},  //   noba_, piči, _херм,\n  { {0x645e036b, 0x7d080059, 0x2d9d0173, 0x00000000}},  //   mapi, vods, _aswe_,\n  { {0x645e350e, 0x2eed0007, 0x26c004eb, 0x00000000}},  //   lapi, gief_, njio_,\n  { {0x7cd80069, 0x290a0213, 0x00000000, 0x00000000}},  //   имир_, koba_,   ,\n  { {0x645e1084, 0x290a0062, 0x00000000, 0x00000000}},  //   napi, joba_,   ,\n  { {0x290a0036, 0xbb470752, 0x8af90e75, 0x00000000}},  //   doba_, یلین_, инос_,\n  { {0x645e006c, 0x3f9e0091, 0xee3a0245, 0x00000000}},  //   hapi, _istu_, _снд_,\n  { {0x645e0013, 0x1ea90f8b, 0x00000000, 0x00000000}},  //   kapi, _خالي_,   ,\n  { {0x645e006c, 0x7d7b00a3, 0x290a01ed, 0x00000000}},  //   japi, _ענוו, goba_,\n  { {0xccf800b9, 0x67d4350f, 0x645e05cd, 0x00000000}},  //   mně_, пору, dapi,\n  { {0xccf80224, 0xe3df0044, 0x2d84016c, 0x00000000}},  //   lně_, _বুঝব, otme_,\n  { {0x6345010a, 0x290a012d, 0xfaf80014, 0x00000000}},  // [b330] _mėne, boba_, _دروغ_,\n  { {0x7aef029a, 0x645e011c, 0x290a0093, 0x00000000}},  //   lict, gapi, coba_,\n  { {0x1635007c, 0x4394007c, 0x22490032, 0x00000000}},  //   _меня, захс, ñako_,\n  { {0x7aef3510, 0xd048006b, 0xdce93191, 0x00000000}},  //   nict, _ildə, vreč,\n  { {0x416b003b, 0xccf800b9, 0x3f9e20d4, 0x00000000}},  //   ујем_, kně_, _astu_,\n  { {0x661d001e, 0xccf80224, 0x9fc90aed, 0x00000000}},  //   _izsk, jně_, игла_,\n  { {0xccf80224, 0x2eed049b, 0x3ebf0052, 0x00000000}},  //   dně_, tief_, tjut_,\n  { {0xee39017a, 0x290a0010, 0xef190545, 0x00000000}},  //   шни_, zoba_, јми_,\n  { {0x7aef1ee1, 0x2eed049b, 0x0c95008b, 0x00000000}},  //   dict, rief_, ошня,\n  { {0xdce90059, 0x2eed00c1, 0xe4560049, 0x00000000}},  //   preč, sief_, ֿירט_,\n  { {0x39490149, 0x66d8009f, 0xf53f1d43, 0x00000000}},  //   _atas_, _líka, _bråk_,\n  { {0xeb960057, 0xc9aa00ed, 0x290a0009, 0x00000000}},  //   цию_, авме_, woba_,\n  { {0xdd94008b, 0x290a0020, 0xccf800b9, 0x00000000}},  //   _нацы, toba_, bně_,\n  { {0x26d923b9, 0xccf800b9, 0x6efe0089, 0x00000000}},  //   _also_, cně_, mība,\n  { {0x290a0161, 0x6efe001e, 0x25a90403, 0x00000000}},  //   roba_, lība, eval_,\n  { {0x7e7b1330, 0x645e0020, 0x25a90328, 0x00000000}},  //   ngup, wapi, fval_,\n  { {0x056601fb, 0x6efe001e, 0x645e16c3, 0x00000000}},  // [b340] юван, nība, tapi,\n  { {0xdb2100b0, 0x6aa40020, 0xa3d50164, 0x00000000}},  //   ätök, _haif, ाईं_,\n  { {0x39840039, 0x6aa43511, 0x00000000, 0x00000000}},  //   lös_, _kaif,   ,\n  { {0x41aa00d7, 0x645e0013, 0x914a00aa, 0x00000000}},  //   ивен_, sapi, ачка_,\n  { {0xccf800b9, 0x645e293d, 0x39840b90, 0x00000000}},  //   yně_, papi, nös_,\n  { {0x6efe0089, 0x3f9e0ab2, 0x656400e7, 0x00000000}},  //   dība, _pstu_, msih,\n  { {0xccf80224, 0xc059008b, 0x645c01c5, 0x00000000}},  //   vně_, сіі_, _ieri,\n  { {0x44443278, 0xeeb80f97, 0x398401ba, 0x00000000}},  //   lc_, слиш_, kös_,\n  { {0x01630b11, 0xccf80224, 0x645c04cb, 0x00000000}},  //   _окто, tně_, _keri,\n  { {0x4444018e, 0x645c3512, 0x44383513, 0x00000000}},  //   nc_, _jeri, _jgr_,\n  { {0x44440051, 0x44383514, 0x2018009f, 0x00000000}},  //   ic_, _mgr_, _ári_,\n  { {0x6aa413b2, 0xccf80224, 0x25a90725, 0x00000000}},  //   _caif, sně_, yval_,\n  { {0x6efe001e, 0x7e6004d4, 0x61e20142, 0x00000000}},  //   cība, mamp, nzol,\n  { {0x645c0006, 0x444400ca, 0x61e20142, 0x00000000}},  //   _neri, jc_, izol,\n  { {0x7aef0857, 0x444423bb, 0x25a90d4d, 0x00000000}},  //   pict, dc_, wval_,\n  { {0x645c001a, 0x7e6004d4, 0x44440036, 0x00000000}},  //   _aeri, namp, ec_,\n  { {0x7aed04bd, 0x645c3515, 0x44380c3f, 0x00000000}},  // [b350] _imat, _beri, _bgr_,\n  { {0x25a9095c, 0x645c0127, 0x7e6001a3, 0x00000000}},  //   rval_, _ceri, hamp,\n  { {0x6efe001e, 0x7e602f6c, 0x25a904d3, 0x00000000}},  //   zība, kamp, sval_,\n  { {0x44443516, 0x44381ac4, 0x7e600006, 0x00000000}},  //   ac_, _egr_, jamp,\n  { {0x645c0240, 0x27ff01f6, 0x78a5115d, 0x00000000}},  //   _feri, ğunu_, _kahv,\n  { {0x645c010a, 0x850502fd, 0xb5fb002a, 0x00000000}},  //   _geri, _روزن, _ndái,\n  { {0x765d0263, 0xd34302fd, 0x39840010, 0x00000000}},  //   _kesy, _آفری, zös_,\n  { {0x64450016, 0x6efe0089, 0x645c19e1, 0x00000000}},  //   lchi, tība, _zeri,\n  { {0x645c01f6, 0x765d3517, 0x629900ab, 0x00000000}},  //   _yeri, _mesy, mewo,\n  { {0x7aed3518, 0x753d0036, 0x6efe0089, 0x00000000}},  //   _amat, _musz, rība,\n  { {0x6efe001e, 0x75350066, 0x6445010f, 0x00000000}},  //   sība, _mizz, ichi,\n  { {0x6efe12d1, 0x319d0173, 0x64451139, 0x00000000}},  //   lībn, _kňz_, hchi,\n  { {0xec6e0088, 0x6445068d, 0x9c7c013e, 0x00000000}},  //   _пп_, kchi, tičt,\n  { {0x7aed022b, 0x17fa0054, 0x7535054f, 0x00000000}},  //   _emat, مرأة_, _nizz,\n  { {0x6aa43519, 0x753d18de, 0x61e20207, 0x00000000}},  //   _taif, _ausz, zzol,\n  { {0x645c000b, 0x3b070265, 0x443822c7, 0x00000000}},  //   _seri, _нещо_, _sgr_,\n  { {0x645c020c, 0x765d000a, 0x443800d6, 0x00000000}},  // [b360] _peri, _desy, _pgr_,\n  { {0x44440089, 0x656404cb, 0x753d0036, 0x00000000}},  //   uc_, rsih, _dusz,\n  { {0x7535002b, 0x44440051, 0x645c351a, 0x00000000}},  //   _dizz, rc_, _veri,\n  { {0xd7bb00b6, 0x4444351b, 0x62990546, 0x00000000}},  //   _הצטר, sc_, gewo,\n  { {0x60c80428, 0x75350c0d, 0x7e6000b0, 0x00000000}},  //   _podm, _fizz, vamp,\n  { {0x64450198, 0x61e2001b, 0x75350912, 0x00000000}},  //   cchi, rzol, _gizz,\n  { {0x7e6014e8, 0x6d4b010a, 0x61e20047, 0x00000000}},  //   tamp, _atga, szol,\n  { {0x62990c0d, 0x6f0411af, 0x00000000, 0x00000000}},  //   cewo, čico,   ,\n  { {0x7e600169, 0x60c8000a, 0xa06a00a8, 0x00000000}},  //   ramp, _todm, _газа_,\n  { {0x7aed0119, 0x7e600fef, 0xa0c90025, 0x00000000}},  //   _smat, samp, _وذلك_,\n  { {0x78a50004, 0x6d40001c, 0x7e600225, 0x00000000}},  //   _rahv, sqma, pamp,\n  { {0xdee30131, 0x00000000, 0x00000000, 0x00000000}},  //   _похи,   ,   ,\n  { {0x644513f7, 0xf2d3007b, 0x765d0016, 0x00000000}},  //   ychi, גער_, _resy,\n  { {0x23670295, 0x3d1403d7, 0x62990036, 0x00000000}},  //   šnji_, _नीचे_, zewo,\n  { {0x78a50b3e, 0x75350197, 0x6445012d, 0x00000000}},  //   _vahv, _rizz, vchi,\n  { {0xabfb00b6, 0x753d115b, 0x7aed0518, 0x00000000}},  //   _להור, _pusz, _umat,\n  { {0x75351d7a, 0x644500ab, 0xa5350816, 0x00000000}},  // [b370] _pizz, tchi, днач,\n  { {0xda070014, 0x3ea61ecd, 0x00000000, 0x00000000}},  //   _ويژه_, _laot_,   ,\n  { {0x62990e9e, 0x75350066, 0x00000000, 0x00000000}},  //   tewo, _vizz,   ,\n  { {0x7afd351c, 0x64452f66, 0x386301d5, 0x00000000}},  //   nnst, schi, lajr_,\n  { {0x7afd010f, 0x644527ec, 0x75350026, 0x00000000}},  //   inst, pchi, _tizz,\n  { {0x66d8000c, 0x7afd2cd7, 0xb4db00f6, 0x00000000}},  //   _líkl, hnst, _atàv,\n  { {0xdb240010, 0x4394007e, 0x00000000, 0x00000000}},  //   őség, _парс,   ,\n  { {0xdd9105f3, 0x24bf0055, 0x7afd351d, 0x00000000}},  //   نوع_, _ইতিহ, jnst,\n  { {0xfce50594, 0x00000000, 0x00000000, 0x00000000}},  //   допо,   ,   ,\n  { {0xd1310a90, 0x26cb0e1d, 0x7afd351e, 0x00000000}},  //   _شما_, _loco_, enst,\n  { {0x6d5900e7, 0x00000000, 0x00000000, 0x00000000}},  //   _wwwa,   ,   ,\n  { {0xc86900b6, 0x673e0089, 0x7afd0fd1, 0x00000000}},  //   _כן_, _rupj, gnst,\n  { {0x6d4b0292, 0xdce20059, 0xad882638, 0x00000000}},  //   _utga, _zvoč, _فضول_,\n  { {0x225f02ae, 0x7afd0039, 0xe73a0fd8, 0x00000000}},  //   _leuk_, anst, жев_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x225f002d, 0x7afd012d, 0x00000000, 0x00000000}},  //   _neuk_, cnst,   ,\n  { {0x3a200009, 0x2ca70239, 0x09060088, 0x00000000}},  // [b380] _uzip_, _kand_, _опин,\n  { {0xa5bb0010, 0x27010006, 0x00000000, 0x00000000}},  //   _szóc, rėna_,   ,\n  { {0x39400100, 0x2ca70018, 0x33d5008b, 0x00000000}},  //   _huis_, _mand_, ніцт,\n  { {0x2ca7351f, 0x3940033b, 0x26cb012d, 0x00000000}},  //   _land_, _kuis_, _goco_,\n  { {0xa158007c, 0x61433520, 0x39400007, 0x00000000}},  //   чалу_, веча, _juis_,\n  { {0x2ca71ebf, 0x394000c7, 0x2a6003e1, 0x00000000}},  //   _nand_, _muis_, _leib_,\n  { {0x39400211, 0x25a025f4, 0xc306009e, 0x00000000}},  //   _luis_, lwil_, _قبرو,\n  { {0x2ca70007, 0x225f0032, 0xbd6a007c, 0x00000000}},  //   _aand_, _geuk_, орое_,\n  { {0x25a03521, 0xdb1b0036, 0x64430089, 0x00000000}},  //   nwil_, zytó, žnie,\n  { {0x2ca7000d, 0x225f002d, 0x7afd0133, 0x00000000}},  //   _cand_, _zeuk_, wnst,\n  { {0xc47700b3, 0x2ca70035, 0x2cb8006b, 0x00000000}},  //   ותיו_, _dand_, ırd_,\n  { {0x394000bb, 0xf9e70044, 0x2bac00b9, 0x00000000}},  //   _buis_, _গুগল_, _věc_,\n  { {0x7afd2ac9, 0xb5fb0051, 0x2ca712dc, 0x00000000}},  //   rnst, _meác, _fand_,\n  { {0x6e2201d9, 0xa803014a, 0x2ca70035, 0x00000000}},  //   _izob, _çıkm, _gand_,\n  { {0x26cb156d, 0x55fb0044, 0x39400022, 0x00000000}},  //   _poco_, _আরেক_, _euis_,\n  { {0x2ca700bb, 0x00000000, 0x00000000, 0x00000000}},  //   _zand_,   ,   ,\n  { {0x66d8000c, 0x225f0007, 0x2b4e0009, 0x00000000}},  // [b390] _kíkj, _reuk_, _htfc_,\n  { {0xdb04010f, 0x651503ab, 0xd1380036, 0x00000000}},  //   _ernä, روائ, _nią_,\n  { {0x68f501f6, 0x26cb0b33, 0xd34100a1, 0x00000000}},  //   mizd, _toco_, اہری,\n  { {0x29111140, 0x00000000, 0x00000000, 0x00000000}},  //   loza_,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6458009f, 0x68f5047f, 0x2911206d, 0x00000000}},  //   ðvit, nizd, noza_,\n  { {0x386108ba, 0x2ca70938, 0x6e2200d2, 0x00000000}},  //   _mehr_, _rand_, _azob,\n  { {0xf838019b, 0xfaff048a, 0x29113522, 0x00000000}},  //   ונות_, jnë_, hoza_,\n  { {0x2ca700bb, 0x213f012d, 0x6f020066, 0x00000000}},  //   _pand_, _uuuh_, _djoc,\n  { {0x23670091, 0x394000bb, 0xa28100a1, 0x00000000}},  //   šnju_, _ruis_, _شیڈو,\n  { {0x3940028c, 0x2ca7161c, 0x2b4e00f6, 0x00000000}},  //   _suis_, _vand_, _ctfc_,\n  { {0x3940028c, 0x2ca705c6, 0xdd8e0014, 0x00000000}},  //   _puis_, _wand_, جوی_,\n  { {0x394000c4, 0x2ca73523, 0x634c0095, 0x00000000}},  //   _quis_, _tand_, _iğne,\n  { {0x2911231e, 0x65760007, 0x68f5016c, 0x00000000}},  //   goza_, vryh, gizd,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x39400343, 0x6f1b0197, 0x63a20036, 0x00000000}},  //   _tuis_, nluc, łonk,\n  { {0xb5fb0051, 0x29113524, 0xe6e0013d, 0x00000000}},  // [b3a0] _reác, boza_, _नतीज,\n  { {0x25a00093, 0x6f1b01a2, 0x29113525, 0x00000000}},  //   rwil_, hluc, coza_,\n  { {0x6f1b3526, 0x657600b0, 0x00000000, 0x00000000}},  //   kluc, sryh,   ,\n  { {0xc7b300b3, 0x672d00f6, 0x0166005c, 0x00000000}},  //   _עבר_, cmaj, екдо,\n  { {0xc693007b, 0xd1380036, 0x00000000, 0x00000000}},  //   _גאר_, _pią_,   ,\n  { {0x6aa90055, 0x7f413527, 0x00000000, 0x00000000}},  //   গাযো, _bulq,   ,\n  { {0x6443167a, 0x6e220047, 0x66d8000c, 0x00000000}},  //   žnic, _szob, _ríkj,\n  { {0x7d03002f, 0x2389093f, 0x8fa300ed, 0x00000000}},  //   _ajns, žují_, ѓање,\n  { {0x62820168, 0xfe6f0025, 0x00000000, 0x00000000}},  //   mgoo, حدى_,   ,\n  { {0x6f1b0026, 0x00000000, 0x00000000, 0x00000000}},  //   aluc,   ,   ,\n  { {0x6f020039, 0x291111cc, 0xd12f0379, 0x00000000}},  //   _tjoc, voza_, _امل_,\n  { {0x3861001f, 0x6f1b00e5, 0x00000000, 0x00000000}},  //   _sehr_, cluc,   ,\n  { {0x4dd305f3, 0x291100e7, 0x7ae80023, 0x00000000}},  //   _متوس, toza_, ëjta,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7e621220, 0xd6db00c0, 0xed35007e, 0x00000000}},  //   _keop, пта_, _рэцэ,\n  { {0xf5e701ff, 0x29110009, 0x6d4200e7, 0x00000000}},  //   нізм, soza_, _kuoa,\n  { {0x672d3528, 0x95cb06e3, 0x68f5016e, 0x00000000}},  // [b3b0] rmaj, чува_, pizd,\n  { {0x672d006c, 0x9964005e, 0x00000000, 0x00000000}},  //   smaj, _стъл,   ,\n  { {0xd2510647, 0x00000000, 0x00000000, 0x00000000}},  //   لنا_,   ,   ,\n  { {0x7e62041a, 0x6282040f, 0x00000000, 0x00000000}},  //   _neop, ggoo,   ,\n  { {0x6f1b00bb, 0x00000000, 0x00000000, 0x00000000}},  //   vluc,   ,   ,\n  { {0xf07500a1, 0x26c904eb, 0x7f41004a, 0x00000000}},  //   ئیاں_, ljao_, _pulq,\n  { {0x2cac0142, 0xc4d2009b, 0xbea5005e, 0x00000000}},  //   dddd_, _דגם_, вайк,\n  { {0x26c90091, 0x00000000, 0x00000000, 0x00000000}},  //   njao_,   ,   ,\n  { {0x6f1b0145, 0x7e620035, 0x00000000, 0x00000000}},  //   rluc, _deop,   ,\n  { {0x6f1b002a, 0x63b510ec, 0xdbde000c, 0x00000000}},  //   sluc, _krzn, tíða,\n  { {0x3b0a00ed, 0x2d980035, 0xef740bb6, 0x00000000}},  //   дено_, ărea_, _مدنظ,\n  { {0x7e6200b5, 0xf41200b6, 0x63b52270, 0x00000000}},  //   _geop, שפט_, _mrzn,\n  { {0x4e780054, 0x26c90107, 0xdbde01e5, 0x00000000}},  //   _أحمد_, djao_, _bíóm,\n  { {0x3ead0374, 0x7ce400f6, 0x63a200b4, 0x00000000}},  //   ldet_, _còrd, łoni,\n  { {0xb90a02f4, 0x62820a89, 0x2d8d04e7, 0x00000000}},  //   _मत_, ygoo, ltee_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x3ead08db, 0x4ad900a1, 0x2d8d03cf, 0x00000000}},  // [b3c0] idet_, _ساٹھ_, ntee_,\n  { {0xb97b073e, 0x3ead00b0, 0x628200d9, 0x00000000}},  //   _קניי, hdet_, wgoo,\n  { {0x316d028c, 0x1877009b, 0x628201d6, 0x00000000}},  //   _avez_, _בעיר_, tgoo,\n  { {0x3ead0030, 0x63b5089f, 0xdb0400f6, 0x00000000}},  //   jdet_, _drzn, _arnú,\n  { {0x3ead3529, 0x64430006, 0x628200b4, 0x00000000}},  //   ddet_, žnia, rgoo,\n  { {0x224d10ed, 0xc953009b, 0x7e620022, 0x00000000}},  //   _efek_, סמו_, _seop,\n  { {0x7e620038, 0x7416007a, 0x6282352a, 0x00000000}},  //   _peop, _شورا, pgoo,\n  { {0xb5fb0051, 0x3ead0023, 0x395200d9, 0x00000000}},  //   _meán, gdet_, _otys_,\n  { {0x6ce6007e, 0x80c201f5, 0xb5fb0010, 0x00000000}},  //   віне, लादे, _leán,\n  { {0x9b5801f9, 0x8f760088, 0x00000000, 0x00000000}},  //   ниот_, _ауді,   ,\n  { {0x753c006b, 0x7e62004a, 0x5eaa0044, 0x00000000}},  //   _mirz, _teop, কাবে,\n  { {0xbe850379, 0x75da0089, 0xf413034e, 0x00000000}},  //   _مجهو, _kāzā, יפת_,\n  { {0x7e7d00d6, 0xba3b00f6, 0x00000000, 0x00000000}},  //   óspe, deïc,   ,\n  { {0x0d970104, 0xdce60089, 0xab62013f, 0x00000000}},  //   _סכום_, ēmēj, _şüur,\n  { {0x09cb0055, 0xd7f8007c, 0xdd31006b, 0x00000000}},  //   _লেখা, вут_, ləşi,\n  { {0xdce00006, 0x644e1e2e, 0x00000000, 0x00000000}},  //   tumė, _afbi,   ,\n  { {0xa5f8352b, 0x753c0fec, 0x00000000, 0x00000000}},  // [b3d0] вету_, _birz,   ,\n  { {0x798d01f3, 0x6aad00d9, 0x00000000, 0x00000000}},  //   _iqaw, _haaf,   ,\n  { {0xdce90091, 0x753c352c, 0x3ead115d, 0x00000000}},  //   sreć, _dirz, ydet_,\n  { {0xdce9016c, 0x6aad0145, 0xa6db000c, 0x00000000}},  //   preć, _jaaf, _siðf,\n  { {0x6aad00f0, 0x667a009b, 0x3ead352d, 0x00000000}},  //   _maaf, _אטרק, vdet_,\n  { {0x66d8009f, 0x89dc009b, 0x656d1be0, 0x00000000}},  //   _ríki, וחדי, msah,\n  { {0x938800ed, 0xd3470014, 0xa6db000c, 0x00000000}},  //   _иста_, _شیشه_, _viðf,\n  { {0x2d8d00ab, 0x3ead00b0, 0x63b80030, 0x00000000}},  //   ttee_, udet_, ævne,\n  { {0x3ead00ea, 0x656d006a, 0x673d352e, 0x00000000}},  //   rdet_, nsah, _misj,\n  { {0x29030107, 0x656d352f, 0x661d2593, 0x00000000}},  //   jnja_, isah, _mysk,\n  { {0x290301ae, 0x2d8d0ace, 0x9f550216, 0x00000000}},  //   dnja_, stee_, _свеч,\n  { {0xa5bb0047, 0x673d3530, 0x6aad00d9, 0x00000000}},  //   _gyóg, _nisj, _caaf,\n  { {0x661d04d3, 0x6dc40151, 0xb5fb0048, 0x00000000}},  //   _nysk, _نزول, _seán,\n  { {0xd943026b, 0x9409006b, 0x61eb012d, 0x00000000}},  //   сери, şkən_, izgl,\n  { {0x66e600aa, 0x1cb801d8, 0x37e30152, 0x00000000}},  //   гова, _جانب_, борг,\n  { {0x6b810f6a, 0x673d02d0, 0x290308f0, 0x00000000}},  //   mulg, _cisj, anja_,\n  { {0x7ae422b2, 0x2903016e, 0x656d2c6b, 0x00000000}},  // [b3e0] _ilit, bnja_, gsah,\n  { {0x661d0046, 0xe61702e9, 0x05770025, 0x00000000}},  //   _dysk, уду_, املة_,\n  { {0x2b4f001a, 0x753c0089, 0x656d011c, 0x00000000}},  //   _încă_, _virz, asah,\n  { {0x55e601fc, 0x6efe0089, 0x331a0439, 0x00000000}},  //   _бомб, lībv, رزاد_,\n  { {0x6b81050d, 0x753c2234, 0x00000000, 0x00000000}},  //   hulg, _tirz,   ,\n  { {0x7ae40221, 0x779100a1, 0xbfaa09da, 0x00000000}},  //   _llit, _دیہا, етие_,\n  { {0xfbc70379, 0x661d0036, 0x6b81010e, 0x00000000}},  //   _ات_, _zysk, julg,\n  { {0x29030107, 0xa6db000c, 0x62890048, 0x00000000}},  //   znja_, _viðg, _gceo,\n  { {0xa206008b, 0x386a3531, 0x2903000c, 0x00000000}},  //   _спад, kabr_, ynja_,\n  { {0x7ae4000b, 0x764d0553, 0x90d50082, 0x00000000}},  //   _alit, zcay, _hìn,\n  { {0x7ae40292, 0x447b0049, 0x2903016e, 0x00000000}},  //   _blit, ענטע, vnja_,\n  { {0x7ae421e3, 0xf4260044, 0xb5fb0010, 0x00000000}},  //   _clit, _বলার_, _beál,\n  { {0x29030166, 0x8d5601fc, 0x90d50082, 0x00000000}},  //   tnja_, _стеч, _mìn,\n  { {0x661d3532, 0x6aad0020, 0x6b813533, 0x00000000}},  //   _rysk, _waaf, bulg,\n  { {0x7ae40065, 0x66d8000c, 0x661d0039, 0x00000000}},  //   _flit, _líku, _sysk,\n  { {0x2903016c, 0x213e0460, 0x656d0176, 0x00000000}},  //   snja_, _lith_, tsah,\n  { {0x29033534, 0x764d3535, 0x673d0056, 0x00000000}},  // [b3f0] pnja_, rcay, _visj,\n  { {0x661d3536, 0x764d01a3, 0x656d003f, 0x00000000}},  //   _vysk, scay, rsah,\n  { {0x5695008b, 0x7ae400b0, 0x656d0052, 0x00000000}},  //   _кант, _ylit, ssah,\n  { {0x661d05fe, 0x51550088, 0x98b30035, 0x00000000}},  //   _tysk, атку, _fixă_,\n  { {0x213e002a, 0x201e0173, 0xd5f90049, 0x00000000}},  //   _bith_, _ayti_, _ספֿר,\n  { {0x6ae202fb, 0x7bda3537, 0x3a290288, 0x00000000}},  //   _पत्र, kytu, _mzap_,\n  { {0xbf100061, 0x00000000, 0x00000000, 0x00000000}},  //   ावून_,   ,   ,\n  { {0x6b811160, 0xfe4501f9, 0x201e0065, 0x00000000}},  //   vulg, шнио, _dyti_,\n  { {0x386a06db, 0x5187012b, 0x60870025, 0x00000000}},  //   yabr_, _љуба, _مشاك,\n  { {0x7ae403ed, 0xb5fb0d7f, 0xa2c30061, 0x00000000}},  //   _slit, _reál, ळाव्,\n  { {0xa6db000c, 0x7ae40091, 0x66d8000c, 0x00000000}},  //   _miðb, _plit, _kíkt,\n  { {0x4e190057, 0xf1b90107, 0xa3b6007d, 0x00000000}},  //   _июля_, _krš_, जित_,\n  { {0xd9463538, 0x291a0085, 0x00000000, 0x00000000}},  //   реги, _pkpa_,   ,\n  { {0xcc89007a, 0x9d520025, 0x271e0309, 0x00000000}},  //   _شنبه_, _بنوت, पत्र_,\n  { {0x46f61280, 0xbebd0dec, 0x366a0088, 0x00000000}},  //   ачат, plūd, каво_,\n  { {0xfd4c0011, 0x3eaf3539, 0x7ae409bd, 0x00000000}},  //   _nhiễ, _jagt_, _ulit,\n\n  { {0xb46601e0, 0x25ab041d, 0x3eaf0030, 0x00000000}},  // [b400] икал, _cscl_, _magt_,\n  { {0x3eaf030e, 0xe4570cb3, 0xdb0b01a2, 0x00000000}},  //   _lagt_, ижу_, _erfä,\n  { {0x213e0051, 0xa87b009b, 0x287b0104, 0x00000000}},  //   _rith_, _באיר, _בנימ,\n  { {0x29180198, 0xeb96007b, 0x969601fc, 0x00000000}},  //   lora_, ידער_, _трош,\n  { {0xaa7b0802, 0x7bda00b4, 0x00000000, 0x00000000}},  //   lkýc, zytu,   ,\n  { {0x29180555, 0xa87a0049, 0xa6db000c, 0x00000000}},  //   nora_, דאַר, _viðe,\n  { {0x7ee60c96, 0x90d50082, 0x2d9d0173, 0x00000000}},  //   ицие, _tìn, _apwe_,\n  { {0x213e0a8a, 0x29180129, 0x68fc353a, 0x00000000}},  //   _with_, hora_, hird,\n  { {0x291807ef, 0x68fc005a, 0x91e302e9, 0x00000000}},  //   kora_, kird, _доте,\n  { {0x29180211, 0x7bda093c, 0x00000000, 0x00000000}},  //   jora_, tytu,   ,\n  { {0x291800d6, 0x26c2021e, 0x68fc0180, 0x00000000}},  //   dora_, _onko_, dird,\n  { {0x3f9e353b, 0x7bda0fed, 0xdce70089, 0x00000000}},  //   _iptu_, rytu, ālāk,\n  { {0x0f120061, 0x442a00d9, 0x00000000, 0x00000000}},  //   डकीस_, _lzb_,   ,\n  { {0x29180aa8, 0x26c201aa, 0x68fc353c, 0x00000000}},  //   gora_, _anko_, gird,\n  { {0xbb840054, 0x2d840053, 0x442a02c2, 0x00000000}},  //   _العي, lume_, _nzb_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7afd0368, 0xb9950054, 0x68fc1352, 0x00000000}},  // [b410] mist, _الخب, bird,\n  { {0x7afd0004, 0x29180198, 0x26c219c5, 0x00000000}},  //   list, cora_, _enko_,\n  { {0x69dd05d5, 0xa6db009f, 0xaa7b0428, 0x00000000}},  //   lyse, _viðb, ckýc,\n  { {0x2d84002d, 0x7b1d008e, 0x39490022, 0x00000000}},  //   kume_, céut, _kuas_,\n  { {0xf1a7007c, 0x2d84251b, 0x442a0f30, 0x00000000}},  //   ррен, jume_, _ezb_,\n  { {0x3eaf009f, 0x7afd1d2e, 0x2d84353d, 0x00000000}},  //   _sagt_, hist, dume_,\n  { {0x7afd021e, 0x3949353e, 0x2ee60173, 0x00000000}},  //   kist, _luas_, _blof_,\n  { {0x7afd353f, 0x29180091, 0x2d840022, 0x00000000}},  //   jist, zora_, fume_,\n  { {0x7afd021e, 0x25a9006a, 0x2d84001a, 0x00000000}},  //   dist, nwal_, gume_,\n  { {0x50db02f4, 0x7afd0877, 0x2b470d0a, 0x00000000}},  //   _भविष, eist, _punc_,\n  { {0x29180119, 0x7f840025, 0x25a90022, 0x00000000}},  //   vora_, _ولكن, hwal_,\n  { {0x2d840f04, 0x3949008a, 0x68fc005b, 0x00000000}},  //   bume_, _buas_, wird,\n  { {0x68fc005d, 0x8c4510d6, 0x00000000, 0x00000000}},  //   tird, _леле,   ,\n  { {0x394902d5, 0x7d7604e8, 0x6d5b020c, 0x00000000}},  //   _duas_, _امور_, mpua,\n  { {0x7afd022b, 0x291804f8, 0x5eaa0055, 0x00000000}},  //   bist, rora_, কারে,\n  { {0x2918231e, 0x68fc3540, 0x69dd3541, 0x00000000}},  //   sora_, sird, byse,\n  { {0xf50a08fc, 0xaa7b01ca, 0x9fa2000c, 0x00000000}},  // [b420] гнал_, skýc, _líða_,\n  { {0x77ca01e0, 0x88860aed, 0xfe7900b9, 0x00000000}},  //   _блог_, _улож, chův_,\n  { {0x493b00b6, 0x2d84003b, 0x7b1d008e, 0x00000000}},  //   _תגיו, zume_, péut,\n  { {0x2ca50056, 0xa2940088, 0xca7b0049, 0x00000000}},  //   held_, іалі, ָנסט,\n  { {0x672407e3, 0x2ca52398, 0x673600d9, 0x00000000}},  //   mlij, keld_, mmyj,\n  { {0x7afd008d, 0x836a0014, 0x9fa2000c, 0x00000000}},  //   zist, _مصرف_, _bíða_,\n  { {0x7afd19db, 0x8f3400e2, 0x3ea43542, 0x00000000}},  //   yist, оекц, temt_,\n  { {0x7afd049a, 0x2d84218d, 0x672402ae, 0x00000000}},  //   xist, tume_, nlij,\n  { {0x6724178a, 0x2ca5010f, 0x6d5b011c, 0x00000000}},  //   ilij, feld_, gpua,\n  { {0x2d84010a, 0x2ca5333c, 0x39493543, 0x00000000}},  //   rume_, geld_, _ruas_,\n  { {0x3949304c, 0x2a690004, 0x6724200c, 0x00000000}},  //   _suas_, _peab_, klij,\n  { {0x69dd0541, 0x612d000c, 0x3949003f, 0x00000000}},  //   tyse, rúle, _puas_,\n  { {0x2ca500b5, 0x672401ed, 0xdb0401e5, 0x00000000}},  //   beld_, dlij, _arnó,\n  { {0x69dd0fb6, 0x672400b5, 0x6e220009, 0x00000000}},  //   ryse, elij, _iyob,\n  { {0x7afd3544, 0x64430059, 0x7d1a0479, 0x00000000}},  //   pist, žnik, mots,\n  { {0xaae70070, 0x25a90a1d, 0x67240006, 0x00000000}},  //   _دستو, twal_, glij,\n  { {0x8627008b, 0x555500a1, 0xf8ae00a6, 0x00000000}},  // [b430] сьве, زپار, رکی_,\n  { {0xf9900025, 0xfaff01b5, 0x6e223545, 0x00000000}},  //   _أبي_, lië_, _myob,\n  { {0x78b50061, 0xb5fb0051, 0x67240d7d, 0x00000000}},  //   mdzv, _meái, blij,\n  { {0xfaff01b5, 0x326b0025, 0x7d1a0471, 0x00000000}},  //   nië_, احاً_, hots,\n  { {0xdd860167, 0x6e223546, 0x9fa2000c, 0x00000000}},  //   _تو_, _nyob, _síða_,\n  { {0x7bc5009f, 0xa3b6013d, 0x2f550793, 0x00000000}},  //   _áhug, जिश_, отис,\n  { {0x2ca501b5, 0x7f4200d6, 0x1ec902dc, 0x00000000}},  //   veld_, _bioq, илки_,\n  { {0x2ca53547, 0x9fa2000c, 0x7d0800fe, 0x00000000}},  //   weld_, _víða_, ends,\n  { {0x2ca53548, 0xfaff054c, 0x44230023, 0x00000000}},  //   teld_, dië_, _hyj_,\n  { {0x7d1a0032, 0x6d5b01a3, 0x463c0049, 0x00000000}},  //   gots, rpua, נעזע,\n  { {0x2ca50100, 0xeb990264, 0x7ced00f6, 0x00000000}},  //   reld_, шин_, _lúrg,\n  { {0x628b3549, 0x3f87014a, 0x20c70061, 0x00000000}},  //   nggo, munu_, लावध,\n  { {0x7d1a0056, 0x3f870279, 0x6f1b00b9, 0x00000000}},  //   bots, lunu_, mouc,\n  { {0x6d59002b, 0x64470065, 0x6f1b013e, 0x00000000}},  //   _itwa, _ngji, louc,\n  { {0x67241fed, 0x3f87005d, 0x6d4b354a, 0x00000000}},  //   tlij, nunu_, _huga,\n  { {0x6d43006a, 0x6f09028a, 0x6f1b24b0, 0x00000000}},  //   _hina, nnec, nouc,\n  { {0x6d431bc6, 0x672402ae, 0x6d4b354b, 0x00000000}},  // [b440] _kina, rlij, _juga,\n  { {0x67240209, 0x6d4b1e17, 0x6d430224, 0x00000000}},  //   slij, _muga, _jina,\n  { {0x6d4b354c, 0x6d43354d, 0x389b01ce, 0x00000000}},  //   _luga, _mina, _דיינ,\n  { {0xe29a08fd, 0xd25000b8, 0x6d43000b, 0x00000000}},  //   рад_, رنت_, _lina,\n  { {0x6d43022b, 0x6f1b00b9, 0x6d4b0006, 0x00000000}},  //   _oina, douc, _nuga,\n  { {0x6d43000b, 0x99bb01ce, 0xc0e3007c, 0x00000000}},  //   _nina, יזנט, мочк,\n  { {0x6d4b354e, 0x7d1a039a, 0x3f87014a, 0x00000000}},  //   _auga, vots, gunu_,\n  { {0x6d4b037e, 0x6447008d, 0x6d43021e, 0x00000000}},  //   _buga, _zgji, _aina,\n  { {0x6d4b0129, 0x6d432ce2, 0x7d1a0288, 0x00000000}},  //   _cuga, _bina, tots,\n  { {0x6d43005f, 0x332601d5, 0x7d08010f, 0x00000000}},  //   _cina, llox_, unds,\n  { {0x6d59001f, 0x7c230016, 0x7d1a006c, 0x00000000}},  //   _etwa, _cynr, rots,\n  { {0x2eed01bf, 0x6d4305ed, 0x6f1b00f4, 0x00000000}},  //   chef_, _eina, couc,\n  { {0x5a44007e, 0x6d4b1640, 0xdd8f0025, 0x00000000}},  //   дэра, _guga, _لون_,\n  { {0x6d43006a, 0xfaff0116, 0x6f0015dc, 0x00000000}},  //   _gina, sië_, limc,\n  { {0x466b1281, 0x6d4b0fa5, 0xd66b00ec, 0x00000000}},  //   ирам_, _zuga, ијал_,\n  { {0x6d43000b, 0x497518ea, 0xdb040190, 0x00000000}},  //   _zina, _елис, _asnæ,\n  { {0x3f87005d, 0x612d0048, 0x6d4b002b, 0x00000000}},  // [b450] zunu_, húla, _xuga,\n  { {0xb9a4026c, 0x6d430288, 0x3f87026d, 0x00000000}},  //   _کمیٹ, _xina, yunu_,\n  { {0x14190054, 0xa5bb0010, 0x612400f6, 0x00000000}},  //   حياة_, _azót, còli,\n  { {0x994801ef, 0x00000000, 0x00000000, 0x00000000}},  //   _دلیل_,   ,   ,\n  { {0x6f1b013e, 0xdce9016c, 0x00000000, 0x00000000}},  //   vouc, zređ,   ,\n  { {0x6d4b00e5, 0x463a00a3, 0x3f870095, 0x00000000}},  //   _ruga, _לערע, tunu_,\n  { {0x6d430207, 0x33260ace, 0x6d4b354f, 0x00000000}},  //   _rina, blox_, _suga,\n  { {0x6d43006a, 0x3f87014a, 0x5334007c, 0x00000000}},  //   _sina, runu_, _жест,\n  { {0x6f093550, 0x6d431084, 0x26d901aa, 0x00000000}},  //   rnec, _pina, _moso_,\n  { {0xa3df02d2, 0x6f0900c4, 0x6f1b0f8e, 0x00000000}},  //   _तथा_, snec, souc,\n  { {0x6d433551, 0x6f000ce4, 0xf989071c, 0x00000000}},  //   _vina, bimc, _תר_,\n  { {0x6d4b1b39, 0x26d9027b, 0xfeb8006d, 0x00000000}},  //   _tuga, _noso_, _وانت_,\n  { {0x6d43006a, 0xdc3c0089, 0x44260082, 0x00000000}},  //   _tina, kšķi, ́o_,\n  { {0xe8e10011, 0x6b880c95, 0x61240129, 0x00000000}},  //   _đợt_, budg, tòli,\n  { {0x3f77001a, 0xb8e4007d, 0x5fbd006e, 0x00000000}},  //   nău_, _एफ_, ्मिल,\n  { {0x3f510011, 0x9c7c01ca, 0x00000000, 0x00000000}},  //   _máu_, nkčn,   ,\n  { {0xe5a331c9, 0x00000000, 0x00000000, 0x00000000}},  // [b460] нити,   ,   ,\n  { {0xe5230081, 0x7d0100c4, 0x993400a1, 0x00000000}},  //   едуп, nils, _آہست,\n  { {0xa5bb0010, 0x68e106d4, 0x26d9004a, 0x00000000}},  //   _szót, ölde, _foso_,\n  { {0x26d900f6, 0x7d010190, 0x8b560049, 0x00000000}},  //   _goso_, hils, ליעס_,\n  { {0x7d010039, 0xa6db000c, 0x399608c8, 0x00000000}},  //   kils, _miðl, næs_,\n  { {0x3f510082, 0x612d1445, 0x26d900e5, 0x00000000}},  //   _báu_, túla, _zoso_,\n  { {0x03a304b6, 0x3f510082, 0x6f000095, 0x00000000}},  //   _пиро, _cáu_, timc,\n  { {0xc7b300b6, 0x04430088, 0x64620036, 0x00000000}},  //   תבה_, _чесн, świę,\n  { {0x2167012b, 0x612d29de, 0x00000000, 0x00000000}},  //   _нити_, súla,   ,\n  { {0x61e20b3d, 0xa17700a0, 0x7d012c50, 0x00000000}},  //   myol, _מעמד_, gils,\n  { {0x60c80030, 0x3f77001a, 0x61e20284, 0x00000000}},  //   _indm, cău_, lyol,\n  { {0x77750009, 0x60da0781, 0x9f0402fd, 0x00000000}},  //   vszx, _hotm, _کوچو,\n  { {0x61e23552, 0x7d01001e, 0xa3b3007d, 0x00000000}},  //   nyol, bils, _जैन_,\n  { {0x7d5700b6, 0x26d906d2, 0x00000000, 0x00000000}},  //   _ציוד_, _soso_,   ,\n  { {0xb8f5013d, 0x26d93553, 0x57a40072, 0x00000000}},  //   _सच_, _poso_, ншта,\n  { {0xf77000f3, 0xd6d801ee, 0x6ab60288, 0x00000000}},  //   طاف_, пту_, _gayf,\n  { {0xf6500a4f, 0x7aed0058, 0x3f770035, 0x00000000}},  // [b470] ائف_, _ilat, zău_,\n  { {0x60da0146, 0x61e2014a, 0x7aed01c3, 0x00000000}},  //   _notm, dyol, _hlat,\n  { {0x9295007e, 0x00000000, 0x00000000, 0x00000000}},  //   даец,   ,   ,\n  { {0x2903021e, 0x60c80004, 0x629e0047, 0x00000000}},  //   lija_, _andm, őpon,\n  { {0x3f5114ab, 0x60da2ba6, 0x20d50088, 0x00000000}},  //   _sáu_, _botm, дійс,\n  { {0x290301d9, 0x7aed1d90, 0x60da0087, 0x00000000}},  //   nija_, _llat, _cotm,\n  { {0x7d0100ca, 0x7aed002d, 0x7ae6000c, 0x00000000}},  //   vils, _olat, ykkt,\n  { {0x29030089, 0x443100d9, 0x00000000, 0x00000000}},  //   hija_, _izz_,   ,\n  { {0x7d010030, 0x6ab602d4, 0x00000000, 0x00000000}},  //   tils, _rayf,   ,\n  { {0x6ab6011f, 0x7aed3554, 0x290300ee, 0x00000000}},  //   _sayf, _alat, jija_,\n  { {0x7d010279, 0xa3b6013d, 0x2d841965, 0x00000000}},  //   rils, जिए_, arme_,\n  { {0x7aed0035, 0x7d012d33, 0x68fe0022, 0x00000000}},  //   _clat, sils, _smpd,\n  { {0x7aed0036, 0x80b4013d, 0x82760049, 0x00000000}},  //   _dlat, _इसमे, וערע_,\n  { {0x7aed3555, 0xdcfb0089, 0xfc050081, 0x00000000}},  //   _elat, bruā, _опло,\n  { {0x7aed03fa, 0xd9430069, 0x6ab6005d, 0x00000000}},  //   _flat, тери, _tayf,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xcb1300b6, 0x2903012b, 0xe57a2546, 0x00000000}},  // [b480] _שלח_, bija_, юза_,\n  { {0x61e200e7, 0x00000000, 0x00000000, 0x00000000}},  //   vyol,   ,   ,\n  { {0xa6db000c, 0x00000000, 0x00000000, 0x00000000}},  //   _miðj,   ,   ,\n  { {0x05000055, 0x60da0ac7, 0x2bb00164, 0x00000000}},  //   ্তের_, _sotm, _जनसा,\n  { {0x443100d9, 0x00000000, 0x00000000, 0x00000000}},  //   _ezz_,   ,   ,\n  { {0x61e2019a, 0xd259000a, 0xd130006d, 0x00000000}},  //   ryol, _efņ_, دمت_,\n  { {0x61e23556, 0x00000000, 0x00000000, 0x00000000}},  //   syol,   ,   ,\n  { {0x29030209, 0x3f802198, 0x877b0049, 0x00000000}},  //   zija_, čiu_, קאפי,\n  { {0x64590046, 0xa3b6007d, 0x60da3557, 0x00000000}},  //   świe, जिक_, _totm,\n  { {0x7aed0363, 0x290301d5, 0xe05601b2, 0x00000000}},  //   _slat, xija_, _غیبت_,\n  { {0x29030213, 0xa2c30061, 0xaa7b0062, 0x00000000}},  //   vija_, ळाच्, ským,\n  { {0x8c3c014a, 0x00000000, 0x00000000, 0x00000000}},  //   neği,   ,   ,\n  { {0xf2d3007b, 0x7aed016e, 0x7ce400f6, 0x00000000}},  //   דער_, _vlat, _lòri,\n  { {0xa6db000c, 0x3cf70025, 0x00000000, 0x00000000}},  //   _viðm, _يعود_,   ,\n  { {0xd6db0242, 0x3cf90065, 0x7aed004a, 0x00000000}},  //   ота_, ësve_, _tlat,\n  { {0x7aed006c, 0x2cac0016, 0x3b120023, 0x00000000}},  //   _ulat, ledd_, _gjyq_,\n  { {0x2cac018e, 0xa53501ee, 0x00000000, 0x00000000}},  // [b490] oedd_, енач,   ,\n  { {0x2cac018e, 0x29030023, 0x4431004a, 0x00000000}},  //   nedd_, qija_, _pzz_,\n  { {0xd37b0920, 0x00000000, 0x00000000, 0x00000000}},  //   юча_,   ,   ,\n  { {0x2cac018e, 0x7ce400f6, 0x00000000, 0x00000000}},  //   hedd_, _dòri,   ,\n  { {0x865a00b6, 0x2169013b, 0x26cb0022, 0x00000000}},  //   _מדרי, чили_, _inco_,\n  { {0x2cac0056, 0x00000000, 0x00000000, 0x00000000}},  //   jedd_,   ,   ,\n  { {0x8c3c014a, 0xdfd103ec, 0x2cac0016, 0x00000000}},  //   beği, ايع_, dedd_,\n  { {0x8c3c011f, 0xb4db0129, 0x680e0010, 0x00000000}},  //   ceği, _guàr, lődé,\n  { {0x2cac0016, 0x3a2900d4, 0x00000000, 0x00000000}},  //   fedd_, _nyap_,   ,\n  { {0xdb0b010f, 0x2cac1e3d, 0x2b4900f6, 0x00000000}},  //   _erfü, gedd_, _aiac_,\n  { {0xab2a31c9, 0x7ced002a, 0xe81f01f5, 0x00000000}},  //   зона_, _cúra, _मुला_,\n  { {0xf4120049, 0x7ced0048, 0xdceb0066, 0x00000000}},  //   רפט_, _dúra, _oqgħ,\n  { {0xc332019b, 0x3ead04fd, 0x2cac3558, 0x00000000}},  //   טוט_, meet_, bedd_,\n  { {0xdce901a8, 0x3ead0dcd, 0x26cb0375, 0x00000000}},  //   dseć, leet_, _anco_,\n  { {0x6b9a001c, 0x07a31fd9, 0x68e1000c, 0x00000000}},  //   cttg, ларн, ölda,\n  { {0x3ead021e, 0x29010022, 0x224d0058, 0x00000000}},  //   neet_, _emha_, _ngek_,\n  { {0xd5af00a1, 0x6ea10316, 0x6aa40045, 0x00000000}},  // [b4a0] یفہ_, क्यु, _ibif,\n  { {0x3ead00b0, 0x05000044, 0x69c40203, 0x00000000}},  //   heet_, ্ত্র_, _irie,\n  { {0x3ead003c, 0x66e6005e, 0xdb0409af, 0x00000000}},  //   keet_, _зона, _apné,\n  { {0x69c43559, 0x3ead00b0, 0x00000000, 0x00000000}},  //   _krie, jeet_,   ,\n  { {0x67260c64, 0x8c3c014a, 0xf1260259, 0x00000000}},  //   _ikkj, reği, нько,\n  { {0x3ead0fd5, 0xab6801f3, 0x6564355a, 0x00000000}},  //   eeet_, _heżż, mpih,\n  { {0x3ead01bb, 0x645c2264, 0x656400e0, 0x00000000}},  //   feet_, _ifri, lpih,\n  { {0x2cac018e, 0x81af0044, 0x539b009b, 0x00000000}},  //   wedd_, _ওপর_, _מילו,\n  { {0xcd060088, 0xdce2016c, 0x10a6004d, 0x00000000}},  //   ечни, _svođ, _пиан,\n  { {0x559700bd, 0x6b9a001c, 0x9b5800ed, 0x00000000}},  //   עדיע_, tttg, миот_,\n  { {0x69c404cb, 0x2cac024d, 0xe1ff000c, 0x00000000}},  //   _arie, redd_, _þór_,\n  { {0xa6db000c, 0x290401aa, 0x2cac2eb3, 0x00000000}},  //   _viðk, èman_, sedd_,\n  { {0xfce60081, 0x2b490027, 0x7fb3006b, 0x00000000}},  //   _подо, _viac_, _rəqə,\n  { {0x69c42c42, 0x6aa40009, 0x00000000, 0x00000000}},  //   _drie, _ebif,   ,\n  { {0x62800091, 0x69c40032, 0xdce204eb, 0x00000000}},  //   _odmo, _erie, _uvođ,\n  { {0x645c1273, 0x69c40038, 0x6d4a0020, 0x00000000}},  //   _afri, _frie, _hifa,\n  { {0x6d4a1926, 0x395200ab, 0x69c4191c, 0x00000000}},  // [b4b0] _kifa, _guys_, _grie,\n  { {0x3f8e0020, 0x6abd05d5, 0x29010048, 0x00000000}},  //   kufu_, ldsf, _umha_,\n  { {0xa6db000c, 0x6d4a0020, 0x6f020026, 0x00000000}},  //   _liði, _mifa, _omoc,\n  { {0xf679007b, 0x6abd158f, 0x6d4a000c, 0x00000000}},  //   _קאָמ, ndsf, _lifa,\n  { {0x645c0016, 0xf6e4007e, 0x7c2a0016, 0x00000000}},  //   _ffri, _сцэн, _lyfr,\n  { {0x3ead0007, 0x672d0211, 0x91e2007c, 0x00000000}},  //   weet_, llaj, роше,\n  { {0x02a7008b, 0x3ead0103, 0x6fb20025, 0x00000000}},  //   _прам, teet_, لموا,\n  { {0x6d4a0697, 0xdce00089, 0x6abd0190, 0x00000000}},  //   _aifa, ksmē, jdsf,\n  { {0x260703d7, 0x3ead00ab, 0xa6db000c, 0x00000000}},  //   _सेमी_, reet_, _viðh,\n  { {0x2d832794, 0x82340054, 0x3ead0056, 0x00000000}},  //   čje_, _إرفا, seet_,\n  { {0x7c2a12a7, 0x6d4a01a3, 0x672d0059, 0x00000000}},  //   _cyfr, _difa, klaj,\n  { {0x69c416a4, 0x29110207, 0x7c2a0016, 0x00000000}},  //   _prie, enza_, _dyfr,\n  { {0x69c401f3, 0x2d8d06d2, 0x00000000, 0x00000000}},  //   _qrie, quee_,   ,\n  { {0x69c4049b, 0x7bc3016c, 0x6d4a1bb7, 0x00000000}},  //   _vrie, _trnu, _gifa,\n  { {0x7c2a018e, 0xf092012e, 0x81d70044, 0x00000000}},  //   _gyfr, ינם_, ানি_,\n  { {0x69c40027, 0x2911355b, 0x442a2cbd, 0x00000000}},  //   _trie, anza_, _ryb_,\n  { {0x69c400d4, 0x7afd0065, 0x6d4a0045, 0x00000000}},  // [b4c0] _urie, ërte, _yifa,\n  { {0x81d70055, 0x25b20343, 0x7ce404bd, 0x00000000}},  //   ানা_, rwyl_, _fòru,\n  { {0xe29a008b, 0x25b20016, 0x672d2aaa, 0x00000000}},  //   дае_, swyl_, blaj,\n  { {0x672d008e, 0x6d4601ca, 0x14170025, 0x00000000}},  //   claj, íkaz, خيمة_,\n  { {0x64590046, 0x00000000, 0x00000000, 0x00000000}},  //   świa,   ,   ,\n  { {0x6f0200b4, 0x7e6900d9, 0x01e10044, 0x00000000}},  //   _smoc, ebep, _মেহদ,\n  { {0xdfd00054, 0xc29a003b, 0x00000000, 0x00000000}},  //   صية_, _отац_,   ,\n  { {0x3f8e0020, 0x6d4a355c, 0x7bc101d6, 0x00000000}},  //   rufu_, _sifa, dvlu,\n  { {0x3f9c12ac, 0x3f8e00e7, 0x6d4a007f, 0x00000000}},  //   stvu_, sufu_, _pifa,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6d4a000b, 0x00000000, 0x00000000, 0x00000000}},  //   _vifa,   ,   ,\n  { {0xb69b1138, 0x6f020ad0, 0x00000000, 0x00000000}},  //   _amân, _umoc,   ,\n  { {0x6d4a1b3e, 0x6abd02e7, 0x00000000, 0x00000000}},  //   _tifa, rdsf,   ,\n  { {0x3878219f, 0xac180242, 0xdb0b000c, 0x00000000}},  //   garr_, _полу_, _erfð,\n  { {0xa6db000c, 0x799d0544, 0x00000000, 0x00000000}},  //   _miðv, stsw,   ,\n  { {0x6609009f, 0x7d0800ca, 0x3878012d, 0x00000000}},  //   _þekk, lids, aarr_,\n  { {0x06c50055, 0xd49b0140, 0x953900ed, 0x00000000}},  // [b4d0] _একদি, дре_, езат_,\n  { {0x672d0329, 0x04f416e8, 0x38780203, 0x00000000}},  //   slaj, азую, carr_,\n  { {0xd2510b03, 0xf99f0173, 0xd498005e, 0x00000000}},  //   منا_, ltè_, ърт_,\n  { {0x6ef510fa, 0x7d08355d, 0xddc00006, 0x00000000}},  //   _kábe, hids, namų,\n  { {0xf99f0263, 0x656f0016, 0x00000000, 0x00000000}},  //   ntè_, _uwch,   ,\n  { {0xf07500a1, 0x3ea61876, 0x6e2b0016, 0x00000000}},  //   ایاں_, _abot_, _rygb,\n  { {0x3f580181, 0x4ac30061, 0x63b80030, 0x00000000}},  //   _céu_, षयाव, ævnt,\n  { {0xf83800b6, 0xf99f0263, 0x3f580129, 0x00000000}},  //   כנות_, ktè_, _déu_,\n  { {0x7e6901a2, 0x3dc60133, 0x00000000, 0x00000000}},  //   rbep, _crow_,   ,\n  { {0xee36008b, 0x3dc60022, 0x7bc10116, 0x00000000}},  //   ыны_, _drow_, tvlu,\n  { {0xfc050264, 0x67241519, 0x00000000, 0x00000000}},  //   упно, yoij,   ,\n  { {0x9407005f, 0x00000000, 0x00000000, 0x00000000}},  //   ünə_,   ,   ,\n  { {0x6f090036, 0x3878150e, 0x3dc600ab, 0x00000000}},  //   miec, tarr_, _grow_,\n  { {0x6f09001e, 0xa6db000c, 0x3ebd041d, 0x00000000}},  //   liec, _miðu, _hawt_,\n  { {0x9d1a00b3, 0xa6db000c, 0xcc2400a1, 0x00000000}},  //   _אוסט, _liðu, _پروٹ,\n  { {0x6f093221, 0x3ebf355e, 0x6d4101ee, 0x00000000}},  //   niec, ndut_, lmla,\n  { {0xa6db009f, 0x6d4101d6, 0x2d9f355f, 0x00000000}},  // [b4e0] _niðu, omla, ntue_,\n  { {0x690900ca, 0x7cf600e5, 0x00000000, 0x00000000}},  //   lžen, _gârd,   ,\n  { {0x389b007b, 0x6f090a62, 0xb89b0097, 0x00000000}},  //   _איינ, kiec, _אביש,\n  { {0x290a014a, 0x7cf6001a, 0x3f5800c4, 0x00000000}},  //   liba_, _târg, _réu_,\n  { {0xc05a01fb, 0x2813007a, 0x3f58009f, 0x00000000}},  //   ній_, _نویس, _séu_,\n  { {0xe5a3003b, 0x290a01c5, 0x26c03560, 0x00000000}},  //   _ћири, niba_, ldio_,\n  { {0x7d080030, 0x6d4110c1, 0xa857009b, 0x00000000}},  //   vids, dmla, ניקה_,\n  { {0x2d821501, 0x81ac0044, 0x443800ca, 0x00000000}},  //   škem_, গিব_, _izr_,\n  { {0x25a006c0, 0x7d0803bd, 0x6909016c, 0x00000000}},  //   ntil_, tids, džen,\n  { {0x8f7601fb, 0xdce90027, 0x00000000, 0x00000000}},  //   _буді, ateľ,   ,\n  { {0x6f093561, 0x7d0805ad, 0x290a01d6, 0x00000000}},  //   biec, rids, diba_,\n  { {0x6f090036, 0x7ce400d4, 0xf99f0026, 0x00000000}},  //   ciec, _còrr, ttè_,\n  { {0x7d080611, 0x26c0018e, 0x588700a5, 0x00000000}},  //   pids, ddio_, лыва,\n  { {0x7faa005f, 0xac970054, 0x5d830054, 0x00000000}},  //   _təqd, _منها_, _الول,\n  { {0xd7f80057, 0xf99f2965, 0x00000000, 0x00000000}},  //   гут_, stè_,   ,\n  { {0x7c380295, 0xa4ff0309, 0x00000000, 0x00000000}},  //   _izvr, ोच्च_,   ,\n  { {0x290a2db6, 0x00000000, 0x00000000, 0x00000000}},  // [b4f0] biba_,   ,   ,\n  { {0x290a008e, 0x753c0036, 0x6f090036, 0x00000000}},  //   ciba_, _chrz, ziec,\n  { {0x3255007e, 0x00000000, 0x00000000, 0x00000000}},  //   авер,   ,   ,\n  { {0xd6db222e, 0x6595008b, 0xb7da0104, 0x00000000}},  //   _что_, _каму, _סקרי,\n  { {0x25a00efe, 0x8c080044, 0x6f090253, 0x00000000}},  //   ctil_, _রুমন_, viec,\n  { {0x6f090046, 0xa6db000c, 0xc05b0088, 0x00000000}},  //   wiec, _viðu, хід_,\n  { {0x6f09001e, 0x00000000, 0x00000000, 0x00000000}},  //   tiec,   ,   ,\n  { {0x0d85012b, 0x290a0020, 0x2d9f3562, 0x00000000}},  //   алин, ziba_, ttue_,\n  { {0xa1590264, 0x3ebf1825, 0x6f090253, 0x00000000}},  //   _разу_, rdut_, riec,\n  { {0x6f0912a7, 0x2d9f060b, 0xa5bb0325, 0x00000000}},  //   siec, rtue_, _exóg,\n  { {0x6f09001e, 0x6d41145c, 0xd0110355, 0x00000000}},  //   piec, rmla, _بلا_,\n  { {0x1f5a009b, 0x690900b9, 0xa6db000c, 0x00000000}},  //   _סדנא, užen, _miðs,\n  { {0x290a30ed, 0x25a00161, 0x690905d2, 0x00000000}},  //   tiba_, xtil_, ržen,\n  { {0x2ca70011, 0x7e7b0127, 0xa9670751, 0x00000000}},  //   _ubnd_, laup, рира_,\n  { {0x290a19bb, 0x61eb000c, 0x2f1a0089, 0x00000000}},  //   riba_, hygl, līga_,\n  { {0x26c00207, 0x25a000ea, 0x09e610f2, 0x00000000}},  //   udio_, ttil_, _воин,\n  { {0x6d5b1e5a, 0x2f1a0089, 0x00000000, 0x00000000}},  // [b500] nqua, nīga_,   ,\n  { {0x25a00030, 0x7ae417f9, 0xb97b0104, 0x00000000}},  //   rtil_, _hoit, _שניי,\n  { {0x7e7b021e, 0x7ae400b0, 0xb4d60061, 0x00000000}},  //   kaup, _koit, _ाची_,\n  { {0x82a6008b, 0x7ae400b0, 0x877b01ce, 0x00000000}},  //   радж, _joit, _באטי,\n  { {0x44260046, 0x7ae43563, 0xe297017a, 0x00000000}},  //   ło_, _moit, рач_,\n  { {0xb1140055, 0x7af60016, 0x6b5e0089, 0x00000000}},  //   িত্ব_, _llyt, _līga,\n  { {0xd00f006d, 0xa50700ed, 0x4fb30025, 0x00000000}},  //   وله_, _тера_, قصير,\n  { {0x7ae43564, 0x7e7b10c9, 0x3da6007e, 0x00000000}},  //   _noit, gaup, ароб,\n  { {0x2d8d00ab, 0x50b60088, 0x00000000, 0x00000000}},  //   gree_, _всеу,   ,\n  { {0x7af60006, 0x7cf60035, 0xc19b009b, 0x00000000}},  //   _alyt, _sârb, _בשמי,\n  { {0xdeef008b, 0x7ae400f4, 0x2d8d0026, 0x00000000}},  //   _ды_, _boit, aree_,\n  { {0x7ae4002a, 0x6da601fb, 0x7ce40045, 0x00000000}},  //   _coit, _вида, _eòrp,\n  { {0x7ae40032, 0x4efb00a3, 0x7cf60035, 0x00000000}},  //   _doit, _בלאג, _cârc,\n  { {0xa6db000c, 0x7af604a5, 0x6abf002b, 0x00000000}},  //   _niðr, _elyt, _waqf,\n  { {0x9a871561, 0x7c380091, 0x7d1d0010, 0x00000000}},  //   _купл, _uzvr, ésse,\n  { {0x31a001aa, 0x7ae4002d, 0x00000000, 0x00000000}},  //   kòz_, _goit,   ,\n  { {0x63ae0022, 0xc6390088, 0x00000000, 0x00000000}},  // [b510] _apbn, упає_,   ,\n  { {0x629b0198, 0x04670264, 0x612d16b2, 0x00000000}},  //   _scuo, ртам, núlt,\n  { {0xd6d10054, 0x6136001a, 0x6ef50010, 0x00000000}},  //   _فقد_, tâln, _lába,\n  { {0xa6db009f, 0x6d5b0082, 0xc6a72180, 0x00000000}},  //   _viðs, yqua, _трои,\n  { {0x68e5021e, 0x80a50044, 0xf9940049, 0x00000000}},  //   _kohd, _গোষ্, ַרק_,\n  { {0x61eb0016, 0x68e500b0, 0x92d70044, 0x00000000}},  //   rygl, _johd, িসে_,\n  { {0x7e7b0d90, 0x92030089, 0x68e50145, 0x00000000}},  //   taup, _šādu, _mohd,\n  { {0x2d8d0007, 0x2d95007c, 0x381800b3, 0x00000000}},  //   tree_, брос, יקום_,\n  { {0x6b5e001e, 0x7e7b1a19, 0x4d650184, 0x00000000}},  //   _rīga, raup, љков,\n  { {0x7ae4021e, 0x6d5b00f4, 0x62990007, 0x00000000}},  //   _soit, rqua, lgwo,\n  { {0x6d5b0207, 0x7ae400f4, 0x6909010a, 0x00000000}},  //   squa, _poit, ržel,\n  { {0x60c1154f, 0xdce00089, 0xa96a003b, 0x00000000}},  //   _halm, rpmā, лима_,\n  { {0x7ae402af, 0x333f01d5, 0x60c13565, 0x00000000}},  //   _voit, _mhux_, _kalm,\n  { {0xb4d60061, 0xeb990478, 0x00000000, 0x00000000}},  //   _ाचे_, _бик_,   ,\n  { {0xbb850054, 0x60c10073, 0x6d59006a, 0x00000000}},  //   _البي, _malm, _huwa,\n  { {0x6d59000b, 0xaa7b000c, 0xcaf600a6, 0x00000000}},  //   _kuwa, skýr, _دستب,\n  { {0xe73700ed, 0x7faa005f, 0x629902c2, 0x00000000}},  // [b520] сет_, _məqa, dgwo,\n  { {0x6d5900e7, 0x00000000, 0x00000000, 0x00000000}},  //   _muwa,   ,   ,\n  { {0xcc7a0049, 0x6d591ecd, 0x8ca9013d, 0x00000000}},  //   רװער, _luwa, ज्यो,\n  { {0x64550263, 0x91860025, 0x60c101c3, 0x00000000}},  //   _egzi, مجتم, _aalm,\n  { {0x26c20091, 0x60c10982, 0x6d590697, 0x00000000}},  //   _iako_, _balm, _nuwa,\n  { {0xa50a0200, 0x60c100f4, 0x8637009b, 0x00000000}},  //   _сега_, _calm, _לרכב_,\n  { {0x6ef532be, 0x26c201d9, 0x60c1016e, 0x00000000}},  //   _sába, _kako_, _dalm,\n  { {0x26c23566, 0x6d59006a, 0x232a00e2, 0x00000000}},  //   _jako_, _buwa, _соби_,\n  { {0x2dda0025, 0xbd870379, 0xa2d50316, 0x00000000}},  //   ابعة_, منين_, णार्,\n  { {0x26c20020, 0x2d8a0235, 0x6d593567, 0x00000000}},  //   _lako_, čbe_, _duwa,\n  { {0x68e50240, 0x7afd0065, 0x09e60044, 0x00000000}},  //   _rohd, ërto, _পেলা,\n  { {0x26c2011c, 0x2b40009d, 0x00000000, 0x00000000}},  //   _nako_, _chic_,   ,\n  { {0x6d59011c, 0x13b10044, 0x68e500b0, 0x00000000}},  //   _guwa, ছিয়, _pohd,\n  { {0xa2d5001c, 0x2ee60007, 0x93f80061, 0x00000000}},  //   णाऱ्, _hoof_, ंनाच_,\n  { {0x6e3c0163, 0x78b50065, 0x2f1a0089, 0x00000000}},  //   ərba, rezv, nīgo_,\n  { {0xceb900b9, 0xdce00089, 0x2c4e006b, 0x00000000}},  //   toři_, ksmī, məd_,\n  { {0x26c20e6a, 0x26c700b9, 0x746b09da, 0x00000000}},  // [b530] _dako_, ěno_, грев_,\n  { {0xdce2040d, 0xe415007e, 0x2ee601d6, 0x00000000}},  //   _otoč, одзь, _loof_,\n  { {0x2c4e006b, 0xaadd01f5, 0x00000000, 0x00000000}},  //   nəd_, यापक,   ,\n  { {0x26c20032, 0x69cd03e1, 0x81bd0044, 0x00000000}},  //   _gako_, _krae, ইমস_,\n  { {0x99480123, 0x7faa006b, 0x00000000, 0x00000000}},  //   _خلیل_, _rəqa,   ,\n  { {0x60c1005f, 0x26c20020, 0x6d590020, 0x00000000}},  //   _qalm, _zako_, _ruwa,\n  { {0x60c1044e, 0x26c2000b, 0xfe57026c, 0x00000000}},  //   _valm, _yako_, میاب_,\n  { {0x6d59011c, 0xb2753568, 0xa3ae01f5, 0x00000000}},  //   _puwa, _флаш, _कहत_,\n  { {0x60c10051, 0x63a50300, 0x30a720d2, 0x00000000}},  //   _talm, lthn, _грев,\n  { {0x3b850264, 0x5ba9003b, 0x6aad3569, 0x00000000}},  //   олог, аком_, _abaf,\n  { {0x2f1a0089, 0x63a50009, 0x7faa006b, 0x00000000}},  //   cīgo_, nthn, _təqa,\n  { {0x2b83005f, 0x63a5002a, 0x6d5909bd, 0x00000000}},  //   rıc_, ithn, _tuwa,\n  { {0xabd7026c, 0x6f0b0d12, 0x26c2002d, 0x00000000}},  //   _گزشت, _imgc, _rako_,\n  { {0x672f0036, 0x26c20006, 0x69cd0016, 0x00000000}},  //   _akcj, _sako_, _drae,\n  { {0x62890023, 0x69cd1a9f, 0x00000000, 0x00000000}},  //   _odeo, _erae,   ,\n  { {0x7afd001f, 0x1b180044, 0x62890048, 0x00000000}},  //   chst, _ধীরে_, _ndeo,\n  { {0x69cd00d4, 0xceb200a0, 0xf50a0745, 0x00000000}},  // [b540] _grae, וין_, анал_,\n  { {0x26c2000b, 0xe57700c2, 0x62890258, 0x00000000}},  //   _wako_, юзу_, _adeo,\n  { {0x26c201d9, 0x66e6025f, 0x6efc356a, 0x00000000}},  //   _tako_, _дона, _hébe,\n  { {0x657b0048, 0x81b30044, 0x8c1a009b, 0x00000000}},  //   úchó, টিন_, בועי,\n  { {0x63a5002a, 0x2ee60aba, 0x2c4e006b, 0x00000000}},  //   athn, _roof_, zəd_,\n  { {0xc5f300b6, 0x67360052, 0x00000000, 0x00000000}},  //   _חדש_, llyj,   ,\n  { {0x4aca0316, 0x7cf600e5, 0xe8d90082, 0x00000000}},  //   ियाव, _bârn, _quỉ_,\n  { {0x2f1a0089, 0xe29701a4, 0x7cf60035, 0x00000000}},  //   rīgo_, _мас_, _cârn,\n  { {0xfd46007e, 0x00000000, 0x00000000, 0x00000000}},  //   жэнн,   ,   ,\n  { {0xa3ae03d7, 0xbc4a0407, 0x6aad0026, 0x00000000}},  //   _कहा_, ичне_, _sbaf,\n  { {0x6ef507fd, 0x656d0032, 0xdce211af, 0x00000000}},  //   _gábo, zpah, _utoč,\n  { {0xeb0701fb, 0x69cd356b, 0x7f19007e, 0x00000000}},  //   ічно, _prae, _лічу_,\n  { {0xad5a007c, 0x9e650014, 0x00000000, 0x00000000}},  //   _трех_, _رانن,   ,\n  { {0x69cd0007, 0xd90f00a6, 0x63a50016, 0x00000000}},  //   _vrae, ئید_, ythn,\n  { {0x6d4804f2, 0x36d502ea, 0x00000000, 0x00000000}},  //   mmda, повр,   ,\n  { {0x69cd356c, 0x6d4800f8, 0x8b24003b, 0x00000000}},  //   _trae, lmda, _одје,\n  { {0x61e400b0, 0x00000000, 0x00000000, 0x00000000}},  // [b550] äill,   ,   ,\n  { {0x2d8400d4, 0x88830014, 0x81e00044, 0x00000000}},  //   isme_, _زیرن, দনা_,\n  { {0x29110020, 0x68e1000c, 0x7d1a0032, 0x00000000}},  //   miza_, öldu, ints,\n  { {0x2911356d, 0x63a5018e, 0x2d840089, 0x00000000}},  //   liza_, rthn, ksme_,\n  { {0x81b30044, 0x6d48006b, 0x2d84013e, 0x00000000}},  //   টিভ_, kmda, jsme_,\n  { {0xdcfb0089, 0x672d0052, 0x00000000, 0x00000000}},  //   ksuā, loaj,   ,\n  { {0xdce9002b, 0x3cf00061, 0x00000000, 0x00000000}},  //   speċ, ेसने_,   ,\n  { {0x2d9501be, 0x7f42356e, 0x7d1a0471, 0x00000000}},  //   прос, _choq, ents,\n  { {0xfaff0065, 0x2911356f, 0x00000000, 0x00000000}},  //   dhë_, kiza_,   ,\n  { {0x6ef509ee, 0xeb99012b, 0x29110020, 0x00000000}},  //   _tábo, био_, jiza_,\n  { {0xca29019b, 0xc104023c, 0x2d841de2, 0x00000000}},  //   _עם_, _تولي, asme_,\n  { {0xdb040030, 0x5e590025, 0x00000000, 0x00000000}},  //   _opnå, _الإس_,   ,\n  { {0x29113570, 0x00000000, 0x00000000, 0x00000000}},  //   fiza_,   ,   ,\n  { {0x29110020, 0x18673571, 0xccc40088, 0x00000000}},  //   giza_, зари_, _обій,\n  { {0x7faa005f, 0x00000000, 0x00000000, 0x00000000}},  //   _nəql,   ,   ,\n  { {0x05660057, 0x6f1b1a9a, 0x4b7a0049, 0x00000000}},  //   зван, nnuc, _פאפו,\n  { {0x29110061, 0x9c7c089f, 0x8afb009b, 0x00000000}},  // [b560] biza_, ljča, _להקי,\n  { {0x29111bf1, 0x00000000, 0x00000000, 0x00000000}},  //   ciza_,   ,   ,\n  { {0x9c7c0e3d, 0xd336007e, 0x00000000, 0x00000000}},  //   njča, пэды,   ,\n  { {0xe29a0839, 0x2d843572, 0x00000000, 0x00000000}},  //   сад_, ysme_,   ,\n  { {0x5ee10055, 0x7cf60035, 0x6d4808e6, 0x00000000}},  //   বসাই, _bârl, ymda,\n  { {0x7f42008d, 0x66040020, 0xfaff0023, 0x00000000}},  //   _shoq, mzik, zhë_,\n  { {0xd0100054, 0x6ef51430, 0x7f420068, 0x00000000}},  //   ضلة_, _tábl, _phoq,\n  { {0xe2f8026c, 0x29110066, 0x6f1b3573, 0x00000000}},  //   _بورڈ_, ziza_, gnuc,\n  { {0x29110009, 0x27f10036, 0x2cae0270, 0x00000000}},  //   yiza_, zyzn_, _pbfd_,\n  { {0x7d1a0288, 0x6d431218, 0x69cb00fa, 0x00000000}},  //   unts, _chna, _ágei,\n  { {0xfaff008d, 0x29110232, 0x2d840087, 0x00000000}},  //   thë_, viza_, ssme_,\n  { {0xf773026c, 0x23be00b9, 0x29113574, 0x00000000}},  //   ہار_, _můj_, wiza_,\n  { {0x7ced002a, 0x29110020, 0xdd8f002c, 0x00000000}},  //   _cúrs, tiza_, _مون_,\n  { {0xfaff008d, 0x7bdc006c, 0xc2fa0044, 0x00000000}},  //   shë_, ärus, েকটি_,\n  { {0x29110311, 0x3d2b00a1, 0x672d00d4, 0x00000000}},  //   riza_, _اتنی_, toaj,\n  { {0x70b9007d, 0xb8f4006e, 0x8c1b0104, 0x00000000}},  //   _इस्ल, _सो_, _לווי,\n  { {0xdce90428, 0x29111b6f, 0x68e11faf, 0x00000000}},  // [b570] zpeč, piza_, ölds,\n  { {0xe9450167, 0x28de0164, 0x672d00e7, 0x00000000}},  //   _تربی, माणि, soaj,\n  { {0xccf3007b, 0xc7ab0025, 0xd25100a1, 0x00000000}},  //   עכע_, _ادخل_, چنا_,\n  { {0xd2510a4f, 0x7afd0065, 0xa3ae006e, 0x00000000}},  //   ننا_, ërth, _कहर_,\n  { {0xdd8600a1, 0x6f000051, 0x2d910036, 0x00000000}},  //   _جو_, dhmc, ązek_,\n  { {0xc24401ff, 0xf770007a, 0x25a90039, 0x00000000}},  //   хнік, _جای_, mtal_,\n  { {0x25a900f8, 0x7cf600e5, 0x00000000, 0x00000000}},  //   ltal_, _cârm,   ,\n  { {0x26c9000b, 0x6f1b016c, 0x25a92ea9, 0x00000000}},  //   ndao_, unuc, otal_,\n  { {0x2cac0009, 0xa194007c, 0x00000000, 0x00000000}},  //   ffdd_, _патч,   ,\n  { {0xab650264, 0xb11401ff, 0x2a692202, 0x00000000}},  //   мвол, _змуш, _afab_,\n  { {0x1c4502d3, 0x7cff0007, 0x25a93575, 0x00000000}},  //   ьном, _nêre, htal_,\n  { {0xc9aa00ed, 0x25a90145, 0x00000000, 0x00000000}},  //   овме_, ktal_,   ,\n  { {0xdca50098, 0x00000000, 0x00000000, 0x00000000}},  //   _жали,   ,   ,\n  { {0xa3ae0061, 0x7cff01c3, 0x6b9a3576, 0x00000000}},  //   _कहल_, _bêre, butg,\n  { {0x07a30088, 0x25a900bb, 0x7cff01c3, 0x00000000}},  //   карн, etal_, _vêrd,\n  { {0x6604002d, 0x25a900bb, 0xdcfb002b, 0x00000000}},  //   tzik, ftal_, ftuħ,\n  { {0x25a90270, 0x54c609e6, 0x00000000, 0x00000000}},  // [b580] gtal_, мбаб,   ,\n  { {0x26d9059f, 0x3f873577, 0xf53f0d32, 0x00000000}},  //   _enso_, ksnu_, _spår_,\n  { {0x69c40066, 0x78bc00bb, 0x316d0032, 0x00000000}},  //   _hsie, merv, _atez_,\n  { {0xf7730097, 0x69c43578, 0x7cf600e5, 0x00000000}},  //   _שקר_, _ksie, _cârj,\n  { {0x8c110055, 0x7afd0065, 0x914a007c, 0x00000000}},  //   _সুমন_, ërti, очка_,\n  { {0x7bc300ee, 0x69c40066, 0x2f1a0089, 0x00000000}},  //   _osnu, _msie, mīgi_,\n  { {0x3ead01e3, 0x645c10f7, 0x2f1a0089, 0x00000000}},  //   ffet_, _igri, līgi_,\n  { {0x78bc0725, 0x78a90091, 0x69c40036, 0x00000000}},  //   herv, đevi, _osie,\n  { {0x44383579, 0x5d5400e3, 0x78bc1b17, 0x00000000}},  //   _hyr_, нкит, kerv,\n  { {0x62800211, 0x6efc00f4, 0x443800ea, 0x00000000}},  //   _hemo, _déba, _kyr_,\n  { {0x78bc0018, 0x69c40885, 0x628001ed, 0x00000000}},  //   derv, _asie, _kemo,\n  { {0x6b9a0056, 0x00000000, 0x00000000, 0x00000000}},  //   rutg,   ,   ,\n  { {0x5ea3026c, 0x81ac0044, 0x0d8317a4, 0x00000000}},  //   _شمول, গিক_, _алчн,\n  { {0x645c008d, 0x78bc158f, 0x25a90039, 0x00000000}},  //   _ngri, gerv, vtal_,\n  { {0x69090ebc, 0x60c80253, 0xe7330025, 0x00000000}},  //   džet, _madm, نصر_,\n  { {0x25a90010, 0x6d580047, 0x60c8096b, 0x00000000}},  //   ttal_, _hiva, _ladm,\n  { {0x7cff0343, 0x60da06b2, 0x6d5800b0, 0x00000000}},  // [b590] _wêre, _ontm, _kiva,\n  { {0x4438030c, 0x3f9c0009, 0x6d5800e5, 0x00000000}},  //   _byr_, kuvu_, _jiva,\n  { {0x25a92a92, 0x62800007, 0x443800df, 0x00000000}},  //   stal_, _bemo, _cyr_,\n  { {0x443805b7, 0x7aed002d, 0x25a9013e, 0x00000000}},  //   _dyr_, _joat, ptal_,\n  { {0xa0690b7a, 0x7aed16cc, 0x7d080006, 0x00000000}},  //   пала_, _moat, _kūrė,\n  { {0x443801e3, 0x7aed135b, 0x6d580511, 0x00000000}},  //   _fyr_, _loat, _niva,\n  { {0x6ef5357a, 0xa295008b, 0x6efc009d, 0x00000000}},  //   _hábi, _паві, _séba,\n  { {0x628000c7, 0x6d58021e, 0x799d0022, 0x00000000}},  //   _gemo, _aiva, kusw,\n  { {0x6d580059, 0x3ead1c29, 0x6abd2297, 0x00000000}},  //   _biva, rfet_, desf,\n  { {0x3ead00d4, 0x6aa40052, 0x6201005a, 0x00000000}},  //   sfet_, _scif, ızlı,\n  { {0x2903008d, 0x7c95007a, 0xa3c1013d, 0x00000000}},  //   dhja_, وشگا, ्टि_,\n  { {0x78bc00d9, 0x7aed00ab, 0x00000000, 0x00000000}},  //   werv, _coat,   ,\n  { {0x99d6026c, 0x799d00e7, 0x6e920f8b, 0x00000000}},  //   رتحا, gusw, _صلوا,\n  { {0x6ef50051, 0xa3c10309, 0x6d580479, 0x00000000}},  //   _sábh, ्टा_, _giva,\n  { {0x656f005b, 0x78bc0bc7, 0xfc64005e, 0x00000000}},  //   _atch, rerv, _ръчн,\n  { {0xc4c6007a, 0x645c0016, 0x6abd00f6, 0x00000000}},  //   کترو, _sgri, cesf,\n  { {0x443e357b, 0xf98a0025, 0x443813f7, 0x00000000}},  // [b5a0] _št_, _عندي_, _syr_,\n  { {0x4aac024c, 0x2f1a001e, 0x628004cb, 0x00000000}},  //   ट्रव, rīgi_, _semo,\n  { {0x6ef5002a, 0x60c805fa, 0x628004cb, 0x00000000}},  //   _tábh, _radm, _pemo,\n  { {0x869a0057, 0x2228007a, 0xe363007c, 0x00000000}},  //   _этот_, وزشی_, укци,\n  { {0x75350061, 0x62800211, 0x395a06ba, 0x00000000}},  //   _fkzz, _vemo, _kips_,\n  { {0x7faa005f, 0x443810c5, 0xc0e30077, 0x00000000}},  //   _həqi, _tyr_, лочк,\n  { {0x62801325, 0x443e0047, 0xa5230545, 0x00000000}},  //   _temo, _át_, _смрд,\n  { {0x03d7009b, 0x6d58014a, 0x69090107, 0x00000000}},  //   _אולם_, _siva, nžer,\n  { {0x7aed0035, 0x7ced004a, 0x6d58016e, 0x00000000}},  //   _roat, _púrp, _piva,\n  { {0x81b30055, 0x395a0606, 0x00000000, 0x00000000}},  //   টিশ_, _nips_,   ,\n  { {0x6d5811aa, 0x7aed000d, 0xa2d50061, 0x00000000}},  //   _viva, _poat, णाच्,\n  { {0x81b30055, 0x7e6900bb, 0x141b0049, 0x00000000}},  //   টির_, ccep, לויב,\n  { {0x6d580023, 0xdc12005d, 0x29030023, 0x00000000}},  //   _tiva, rşım, thja_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7aed000d, 0xed4d00a1, 0x7a490089, 0x00000000}},  //   _toat, _بھي_, _sūtī,\n  { {0x29030065, 0xdc3b00b3, 0x00000000, 0x00000000}},  //   shja_, _מעור,   ,\n  { {0x7faa006b, 0x7afd0065, 0x00000000, 0x00000000}},  // [b5b0] _dəqi, ërtu,   ,\n  { {0x2f1a0089, 0xd7e7007e, 0x00000000, 0x00000000}},  //   mīgu_, _зімо,   ,\n  { {0x2901357c, 0x2b490082, 0xd498007e, 0x00000000}},  //   _ilha_, _khac_, эрт_,\n  { {0x7e690133, 0xf7760104, 0x395a0253, 0x00000000}},  //   xcep, _שערי_, _zips_,\n  { {0x10a524dd, 0x2b490051, 0xf99f0026, 0x00000000}},  //   вилн, _mhac_, nuè_,\n  { {0x6e390016, 0x25b901f3, 0xdddb0089, 0x00000000}},  //   _rywb, _ipsl_, jauš,\n  { {0x7faa006b, 0x26cb0085, 0x00000000, 0x00000000}},  //   _yəqi, _kaco_,   ,\n  { {0x26cb0007, 0x2b490011, 0x200700ca, 0x00000000}},  //   _jaco_, _nhac_, rzni_,\n  { {0x26cb0c56, 0xf2d20049, 0x29010181, 0x00000000}},  //   _maco_, _דען_, _olha_,\n  { {0x6b5e001e, 0x7e6906fa, 0xfc3f00b9, 0x00000000}},  //   _līgu, scep, řím_,\n  { {0x4add0061, 0xab2a017a, 0xaadd0309, 0x00000000}},  //   यांव, дона_, यांक,\n  { {0x395a01c3, 0x2b491e16, 0xf1b90087, 0x00000000}},  //   _sips_, _chac_, _kpš_,\n  { {0xed4e1b70, 0x7faa006b, 0x395a357d, 0x00000000}},  //   _во_, _rəqi, _pips_,\n  { {0x7c8700c0, 0xd94608d6, 0xabd50098, 0x00000000}},  //   _чуде, теги, _ациј,\n  { {0x395a357e, 0xe73a17a4, 0x00000000, 0x00000000}},  //   _vips_, дев_,   ,\n  { {0x07a3300e, 0xcf9200a0, 0x3ebf010f, 0x00000000}},  //   јатн, יטל_, neut_,\n  { {0x6ab60009, 0x69090925, 0x24830023, 0x00000000}},  // [b5c0] _ibyf, ržer, _bejm_,\n  { {0x3ebf357f, 0x00000000, 0x00000000, 0x00000000}},  //   heut_,   ,   ,\n  { {0x29180091, 0x94060014, 0x7faa013f, 0x00000000}},  //   mira_, خواه, _təqi,\n  { {0x69d6008d, 0x2918016e, 0x26cb0146, 0x00000000}},  //   _krye, lira_, _gaco_,\n  { {0x6efc009d, 0x00000000, 0x00000000, 0x00000000}},  //   _débl,   ,   ,\n  { {0x81b30055, 0x3ea6001a, 0x26c00851, 0x00000000}},  //   টিং_, _scot_, leio_,\n  { {0x0fe00055, 0x73e3007c, 0x26cb004a, 0x00000000}},  //   বন্ধ, _корз, _yaco_,\n  { {0x2918011c, 0xa3c102d2, 0x14e00061, 0x00000000}},  //   hira_, ्टर_, नावण,\n  { {0x29182092, 0xf1aa007a, 0x1d34005e, 0x00000000}},  //   kira_, _تازه_, лния,\n  { {0x6443208b, 0x29180f70, 0x26c000c4, 0x00000000}},  //   żnie, jira_, heio_,\n  { {0x2918002d, 0x69d60173, 0x25a03580, 0x00000000}},  //   dira_, _arye, huil_,\n  { {0x29180181, 0x7cff01c3, 0x2f1a01c5, 0x00000000}},  //   eira_, _vêra, tīgu_,\n  { {0xc33300b6, 0x6f0200b5, 0x26cb00d4, 0x00000000}},  //   שור_, _iloc, _raco_,\n  { {0x29180569, 0x26cb0285, 0x2f1a0089, 0x00000000}},  //   gira_, _saco_, rīgu_,\n  { {0x6f023581, 0x195807d0, 0x26cb0efe, 0x00000000}},  //   _kloc, тары_, _paco_,\n  { {0x25a00195, 0x37043582, 0x6ef50b33, 0x00000000}},  //   fuil_, ачув, _fábu,\n  { {0x29180059, 0x2f1a0089, 0x69d6000a, 0x00000000}},  // [b5d0] bira_, līgs_, _grye,\n  { {0x2918016c, 0x6f021d90, 0x7afd3583, 0x00000000}},  //   cira_, _lloc, lkst,\n  { {0xf2b10044, 0x7afd01d6, 0x7d1d2560, 0x00000000}},  //   _ঘোষণ, okst, éssi,\n  { {0x7afd1ec2, 0x26c000c4, 0x442a0203, 0x00000000}},  //   nkst, ceio_, _dxb_,\n  { {0xf1a70679, 0xf62b0088, 0x442a3584, 0x00000000}},  //   трен, _ціни_, _exb_,\n  { {0xa5da0049, 0x6f02001a, 0x00000000, 0x00000000}},  //   _אַלי, _aloc,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x29180091, 0x7afd00b5, 0xfe710025, 0x00000000}},  //   zira_, jkst, حدث_,\n  { {0x6d4a002a, 0x291827a5, 0xdfd100a1, 0x00000000}},  //   _bhfa, yira_, _گيا_,\n  { {0x6f02058b, 0x7afd0ebd, 0x00000000, 0x00000000}},  //   _eloc, ekst,   ,\n  { {0x2918231b, 0xdfd11234, 0x00000000, 0x00000000}},  //   vira_, _ديا_,   ,\n  { {0x6f020abe, 0x139a0049, 0x291816c3, 0x00000000}},  //   _gloc, עברע, wira_,\n  { {0x7c2a04ce, 0x6b9a00d9, 0x00000000, 0x00000000}},  //   _exfr, artg,   ,\n  { {0x6f022270, 0x7c2a3585, 0x2d8d012d, 0x00000000}},  //   _zloc, _fxfr, msee_,\n  { {0x29182645, 0x31560049, 0x81e90044, 0x00000000}},  //   rira_, טישן_, মনি_,\n  { {0x7afd05b4, 0xef1901d5, 0x7faa006b, 0x00000000}},  //   ckst, niż_, _təqv,\n  { {0xb90a0055, 0x2d8d010f, 0x29180091, 0x00000000}},  // [b5e0] _মত_, nsee_, pira_,\n  { {0x81e90044, 0x25a00112, 0x26c000c4, 0x00000000}},  //   মনা_, ruil_, seio_,\n  { {0x1d160049, 0xdb020190, 0x00000000, 0x00000000}},  //   נקער_, rtlæ,   ,\n  { {0x5c360049, 0x7cf60035, 0x65763586, 0x00000000}},  //   ארען_, _hârt, ppyh,\n  { {0x25a0008e, 0x67240091, 0x2f1a01c5, 0x00000000}},  //   quil_, mnij, zīgs_,\n  { {0x6f0200f8, 0x67240091, 0xf4870bb6, 0x00000000}},  //   _sloc, lnij, _مافی,\n  { {0x6d4701d5, 0x6f020161, 0xf50316b6, 0x00000000}},  //   ċjal, _ploc, _узро,\n  { {0x67240f68, 0x6d4a008d, 0x64430036, 0x00000000}},  //   nnij, _shfa, żnic,\n  { {0x0caa06e1, 0xb226007e, 0x1ed70025, 0x00000000}},  //   нтни_, _смал, طبيب_,\n  { {0x65661084, 0x2f1a01c5, 0x00000000, 0x00000000}},  //   _mukh, tīgs_,   ,\n  { {0x5ea6026c, 0xdb0200f8, 0x00000000, 0x00000000}},  //   _ممال, ktlä,   ,\n  { {0xe4570049, 0x2f1a0089, 0x67243587, 0x00000000}},  //   טייט_, rīgs_, jnij,\n  { {0x67243588, 0xb69b0035, 0x00000000, 0x00000000}},  //   dnij, _blân,   ,\n  { {0x7afd074d, 0x7cf600e5, 0x00000000, 0x00000000}},  //   skst, _cârt,   ,\n  { {0xd6db0265, 0x7d1a00b0, 0xd7e4030d, 0x00000000}},  //   нта_, mits, біто,\n  { {0x7d1a0004, 0xc8780279, 0x656604d4, 0x00000000}},  //   lits, ığa_, _bukh,\n  { {0xd49b0679, 0xb4c2006e, 0xdb020007, 0x00000000}},  // [b5f0] ере_, ्यू_, kulê,\n  { {0x7d1a03b6, 0x3f9c016c, 0x65660058, 0x00000000}},  //   nits, krvu_, _dukh,\n  { {0x67243589, 0x7faa005f, 0x7e620258, 0x00000000}},  //   bnij, _məqs, _ogop,\n  { {0x6724037e, 0x2d8d0190, 0x7d1a010e, 0x00000000}},  //   cnij, ysee_, hits,\n  { {0xd49b01f9, 0x91e5007c, 0xef1901d5, 0x00000000}},  //   _прв_, роле, viż_,\n  { {0x7e620197, 0x4f95358a, 0x00000000, 0x00000000}},  //   _agop, ариу,   ,\n  { {0x7d1a33d1, 0x660d00bb, 0xb444007e, 0x00000000}},  //   dits, lzak, _гэтк,\n  { {0x2d8d0ba4, 0x0e65007c, 0x6463014a, 0x00000000}},  //   tsee_, шкин, ştiğ,\n  { {0x628b1892, 0x7bd80004, 0x660d0020, 0x00000000}},  //   mago, _arvu, nzak,\n  { {0x628b1431, 0x67241279, 0x5f95005e, 0x00000000}},  //   lago, znij, _вижт,\n  { {0x3b0a064b, 0x60c30c10, 0x8c45041f, 0x00000000}},  //   вено_, menm, рене,\n  { {0x628b149a, 0x60c3011f, 0x81d80044, 0x00000000}},  //   nago, lenm, াহর_,\n  { {0xfce50373, 0x7bca0211, 0x6ef5029d, 0x00000000}},  //   _воло, _esfu, _fábr,\n  { {0x660d00b5, 0x7d1a0009, 0x6f0900c4, 0x00000000}},  //   dzak, cits, lhec,\n  { {0x67240091, 0xc71600ed, 0x6566008a, 0x00000000}},  //   tnij, аќањ, _sukh,\n  { {0x6f0902d5, 0x67240089, 0x60c301a2, 0x00000000}},  //   nhec, unij, henm,\n  { {0x67240091, 0xa56800a1, 0x60c3046a, 0x00000000}},  // [b600] rnij, اشرے_, kenm,\n  { {0xb4c2001c, 0x67240119, 0x6d41018e, 0x00000000}},  //   ्ये_, snij, nlla,\n  { {0x6d4100f4, 0x672400ee, 0x845a0088, 0x00000000}},  //   illa, pnij, трат_,\n  { {0x7d1a022b, 0x628b23f7, 0xe29a086c, 0x00000000}},  //   zits, gago, тад_,\n  { {0x867b0104, 0x7d1a23f6, 0x00000000, 0x00000000}},  //   _ברכו, yits,   ,\n  { {0x3f9c0521, 0x2fc70016, 0x60c301a2, 0x00000000}},  //   trvu_, fwng_, genm,\n  { {0x628b358b, 0x7d1a044e, 0x7b160006, 0x00000000}},  //   bago, vits, ršuj,\n  { {0xa85700b6, 0x6d410211, 0x00000000, 0x00000000}},  //   סיקה_, ella,   ,\n  { {0x10a60088, 0xa0a6003b, 0xdb0201d6, 0x00000000}},  //   _визн, _вазд, pulê,\n  { {0x6208005a, 0x61460478, 0x00000000, 0x00000000}},  //   ırlı, _теза,   ,\n  { {0x9b5900ed, 0x14d90049, 0xe8d90011, 0x00000000}},  //   лиот_, אַרמ, _huệ_,\n  { {0x6f0909fa, 0x6d41230b, 0x7d1a006c, 0x00000000}},  //   chec, alla, sits,\n  { {0x7faa006b, 0x799d01d6, 0xfaff0023, 0x00000000}},  //   _təqs, ursw, rkë_,\n  { {0x2905009f, 0x7cf6001a, 0x628b0dd6, 0x00000000}},  //   óla_, _vârs, zago,\n  { {0x9b940879, 0xdb0b0030, 0x628b0010, 0x00000000}},  //   _البت, _opfø, yago,\n  { {0x660d022b, 0x27ed0091, 0x60c3358c, 0x00000000}},  //   tzak, ćen_, zenm,\n  { {0x628b0232, 0x60c30082, 0xd6d800e2, 0x00000000}},  // [b610] vago, yenm, јтс_,\n  { {0x6efc358d, 0x660d358e, 0x69cd1de0, 0x00000000}},  //   _débi, rzak, _isae,\n  { {0x660d0047, 0x60c301aa, 0xfc3f013e, 0x00000000}},  //   szak, venm, řív_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x628b04f3, 0x6d41358f, 0x60c31e49, 0x00000000}},  //   rago, ylla, tenm,\n  { {0x628b011c, 0x2fc7005b, 0x80a80088, 0x00000000}},  //   sago, twng_, ивів_,\n  { {0x628b011c, 0x60c3014a, 0xa2d80061, 0x00000000}},  //   pago, renm, _नोव्,\n  { {0x60c30cba, 0x533400aa, 0xf99f01aa, 0x00000000}},  //   senm, _дест, krè_,\n  { {0x20c70057, 0xc332052f, 0x6d410129, 0x00000000}},  //   _всег, _זון_, tlla,\n  { {0xa5da0049, 0xf99f0197, 0x6f09004a, 0x00000000}},  //   אַטי, drè_, shec,\n  { {0x63a5003f, 0x673d006c, 0x6d410016, 0x00000000}},  //   nuhn, _oksj, rlla,\n  { {0x6d410ac7, 0xc8690049, 0x9f550816, 0x00000000}},  //   slla, _טן_, _увеч,\n  { {0xf99f01aa, 0xdb023590, 0x4add0061, 0x00000000}},  //   grè_, nulé, याजव,\n  { {0xcd76009b, 0xed440088, 0xa9671592, 0x00000000}},  //   _העסק_, _дніп, сира_,\n  { {0x69cd0032, 0x66e6007c, 0x00000000, 0x00000000}},  //   _esae, бова,   ,\n  { {0x753c241b, 0x96660a78, 0x49ca007c, 0x00000000}},  //   _skrz, скае, _блин_,\n  { {0x98a602d3, 0x00000000, 0x00000000, 0x00000000}},  // [b620] _липе,   ,   ,\n  { {0x88ca041f, 0x7af6004a, 0x673d21db, 0x00000000}},  //   _слов_, _hoyt, _eksj,\n  { {0x63a504cb, 0x25b20df1, 0x7ae4086a, 0x00000000}},  //   guhn, styl_, _knit,\n  { {0x82a6013a, 0x2d9f1f6e, 0x00000000, 0x00000000}},  //   садж, krue_,   ,\n  { {0x61460893, 0xdce20091, 0xdb0200d2, 0x00000000}},  //   беда, _suoč, gulé,\n  { {0x63a504cb, 0x69d90061, 0x291a0145, 0x00000000}},  //   buhn, मिती, _jmpa_,\n  { {0x6f1900f6, 0x7ae4149f, 0x00000000, 0x00000000}},  //   _bmwc, _onit,   ,\n  { {0xe8d90011, 0x3da60b81, 0x00000000, 0x00000000}},  //   _tuệ_, броб,   ,\n  { {0xa206003b, 0xfe6f0076, 0xdb02009d, 0x00000000}},  //   _упад, ردي_, culé,\n  { {0x7ae4002d, 0x6aad0197, 0xf99f01aa, 0x00000000}},  //   _anit, _scaf, vrè_,\n  { {0x853b0097, 0x7af63591, 0x25a0008a, 0x00000000}},  //   רגיי, _boyt, hril_,\n  { {0x291a0129, 0xf99f3592, 0x25a000ca, 0x00000000}},  //   _ampa_, trè_, kril_,\n  { {0x4aaa024c, 0x2d9f3593, 0xaaaa01f5, 0x00000000}},  //   _कारव, crue_, _कारक,\n  { {0x7ae400b0, 0xf99f0026, 0x25a012c9, 0x00000000}},  //   _enit, rrè_, dril_,\n  { {0x28de0309, 0x00000000, 0x00000000, 0x00000000}},  //   माजि,   ,   ,\n  { {0xf99f01aa, 0x7af600c4, 0x7ae400e0, 0x00000000}},  //   prè_, _goyt, _gnit,\n  { {0x44f5003b, 0xddc90de5, 0x7a1c0089, 0x00000000}},  // [b630] опас, zbež, gātī,\n  { {0x04670888, 0x63a50093, 0x00000000, 0x00000000}},  //   стам, tuhn,   ,\n  { {0x645a3594, 0x25a0010e, 0x00000000, 0x00000000}},  //   _útil, aril_,   ,\n  { {0xa29401fb, 0x63a50169, 0x25a0006c, 0x00000000}},  //   заці, ruhn, bril_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xaf993595, 0x29030eb6, 0xdb020010, 0x00000000}},  //   атих_, nkja_, rulé,\n  { {0x2903000c, 0x4aaa0963, 0x00000000, 0x00000000}},  //   ikja_, _कालव,   ,\n  { {0x2d950242, 0x4ad90061, 0xdb020068, 0x00000000}},  //   орос, _बोलव, pulé,\n  { {0x29030c32, 0xdd8e006d, 0xa0c5023c, 0x00000000}},  //   kkja_, نوي_, _ويرو,\n  { {0x2d9f1176, 0x7b24012d, 0xb65c0049, 0x00000000}},  //   rrue_, nđuv, נדזש,\n  { {0xddc20036, 0x00000000, 0x00000000, 0x00000000}},  //   _czoł,   ,   ,\n  { {0x6b9c004a, 0x68e50082, 0xbdf801b2, 0x00000000}},  //   árga, _anhd, _گرما_,\n  { {0x7ae400b9, 0x68f70fcf, 0xa96a02dc, 0x00000000}},  //   _vnit, _boxd, рига_,\n  { {0x6efc028c, 0x25a00035, 0x61f600ea, 0x00000000}},  //   _débu, vril_, øyli,\n  { {0x46f60088, 0x00000000, 0x00000000, 0x00000000}},  //   очат,   ,   ,\n  { {0x25a00253, 0x224d0087, 0x00000000, 0x00000000}},  //   tril_, _ozek_,   ,\n  { {0x3cf00061, 0x236a0019, 0x24980145, 0x00000000}},  // [b640] ेसचे_, _subj_, _pdrm_,\n  { {0x25a0029a, 0x81cf0044, 0x7a1c0089, 0x00000000}},  //   rril_, ষমা_, rātī,\n  { {0xba290167, 0xb3760014, 0x25a0008a, 0x00000000}},  //   _نسیم_, زداش, sril_,\n  { {0x645a3360, 0x3bba0049, 0x00000000, 0x00000000}},  //   _útim, ימעד,   ,\n  { {0x68f7005f, 0x00000000, 0x00000000, 0x00000000}},  //   _yoxd,   ,   ,\n  { {0xdfd0023c, 0x224d012d, 0xcf9a003b, 0x00000000}},  //   فيت_, _dzek_, аји_,\n  { {0x224d0047, 0x28b2013d, 0x00000000, 0x00000000}},  //   _ezek_, _जानि,   ,\n  { {0x644e0087, 0x63b301ca, 0x741300a1, 0x00000000}},  //   _izbi, žení, _کوہا,\n  { {0x628200b5, 0xd1320647, 0x2903000c, 0x00000000}},  //   mboo, _قمر_, ykja_,\n  { {0x62820270, 0x00000000, 0x00000000, 0x00000000}},  //   lboo,   ,   ,\n  { {0x443100f6, 0x00000000, 0x00000000, 0x00000000}},  //   _xxz_,   ,   ,\n  { {0x628200bb, 0x539b009b, 0x00000000, 0x00000000}},  //   nboo, סיכו,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x644e01cd, 0x6282086d, 0x00000000, 0x00000000}},  //   _ozbi, hboo,   ,\n  { {0x368b012d, 0x2903021a, 0x62820133, 0x00000000}},  //   исан_, rkja_, kboo,\n  { {0x442d0119, 0x8f9b00a0, 0x27030044, 0x00000000}},  //   _će_, יילי, রোনো_,\n  { {0x95cb00ed, 0xc4cf0044, 0x00000000, 0x00000000}},  // [b650] шува_, রাসঙ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x62820168, 0x00000000, 0x00000000, 0x00000000}},  //   fboo,   ,   ,\n  { {0x62821f65, 0x224400c4, 0x2d4b0056, 0x00000000}},  //   gboo, _bymk_, jøen_,\n  { {0xdb021565, 0x00000000, 0x00000000, 0x00000000}},  //   rtlø,   ,   ,\n  { {0x98aa00b9, 0x93970025, 0x26c900fa, 0x00000000}},  //   době_, _وجزا, leao_,\n  { {0x62820068, 0x5ed40044, 0x00000000, 0x00000000}},  //   bboo, থানে,   ,\n  { {0x0d8500c0, 0x6b8d0036, 0x6296004a, 0x00000000}},  //   плин, _łago, óyot,\n  { {0xb364005e, 0x00000000, 0x00000000, 0x00000000}},  //   _църк,   ,   ,\n  { {0x7d09003b, 0x2a6901c3, 0x2ee600d9, 0x00000000}},  //   сног_, _agab_, _enof_,\n  { {0x0ff20061, 0x6b730035, 0x25a9004a, 0x00000000}},  //   _अपयश_, _băga, hual_,\n  { {0x7d0a0039, 0x6910006c, 0x00000000, 0x00000000}},  //   _elfs, _käeg,   ,\n  { {0x316d0ea1, 0x25a904cb, 0x14ac0061, 0x00000000}},  //   _juez_, jual_, _चालण,\n  { {0x25a9354d, 0x672f0061, 0x3ead3596, 0x00000000}},  //   dual_, _ajcj, lget_,\n  { {0x66e60407, 0x8c420256, 0x7d060089, 0x00000000}},  //   пова, _пеше, īkst,\n  { {0x7d06008f, 0x05d70061, 0x9bfa009b, 0x00000000}},  //   ūkst, ठिंब, _להצט,\n  { {0xf651026c, 0x25a90919, 0x316d02a0, 0x00000000}},  // [b660] ہئے_, gual_, _nuez_,\n  { {0xd8840014, 0x00000000, 0x00000000, 0x00000000}},  //   _تهدی,   ,   ,\n  { {0xc95300b6, 0x62820011, 0xe73a02dc, 0x00000000}},  //   _רמת_, tboo, _ген_,\n  { {0xcfc30044, 0x69c40066, 0xe2972e81, 0x00000000}},  //   ্মান, _kpie, зац_,\n  { {0x62820168, 0x237f0091, 0xd046006b, 0x00000000}},  //   rboo, _čuje_, əmən,\n  { {0x628201d6, 0x7bc30d08, 0x00000000, 0x00000000}},  //   sboo, _opnu,   ,\n  { {0xdfda005e, 0x00000000, 0x00000000, 0x00000000}},  //   съл_,   ,   ,\n  { {0x3ead05fe, 0x69c40832, 0x3da6041f, 0x00000000}},  //   gget_, _opie, проб,\n  { {0x5d54026b, 0xdbcb004a, 0xa0a6007e, 0x00000000}},  //   мкит, dóñe, _наад,\n  { {0xcb9801fb, 0xa617009b, 0x48d70044, 0x00000000}},  //   ової_, פקיד_, _সক্র,\n  { {0xc0590088, 0x6efc009d, 0x69c401c5, 0x00000000}},  //   _дії_, _débr, _apie,\n  { {0xbd870014, 0x77660066, 0xcb0b01ab, 0x00000000}},  //   _کنون_, _nikx, сход_,\n  { {0x7646021e, 0xfe4601ab, 0x00000000, 0x00000000}},  //   _nyky, _эндо,   ,\n  { {0xa3df007d, 0xd90f007a, 0x00000000, 0x00000000}},  //   तिम_, اید_,   ,\n  { {0xc7c40088, 0x1cbb00b3, 0x8c41010f, 0x00000000}},  //   нсти, _המוע, ößte,\n  { {0x6d4800db, 0x64430036, 0x6d5a0333, 0x00000000}},  //   llda, żnik, lmta,\n  { {0xa63401fb, 0x7b160006, 0xdb0200c4, 0x00000000}},  // [b670] енті, ršut, bulâ,\n  { {0x25a90022, 0x6d5a0173, 0x6abd04f2, 0x00000000}},  //   rual_, nmta, lfsf,\n  { {0x316d0923, 0x3ead0039, 0x6d4801e5, 0x00000000}},  //   _suez_, yget_, ilda,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x672d00ca, 0x00000000, 0x00000000, 0x00000000}},  //   mnaj,   ,   ,\n  { {0x69dd006c, 0x7b24016c, 0x656f0045, 0x00000000}},  //   ivse, nđur, _iuch,\n  { {0xdfce0025, 0xdb090181, 0x656f0020, 0x00000000}},  //   ليو_, rudê, _huch,\n  { {0x656f000b, 0xe3b20049, 0x6d48010e, 0x00000000}},  //   _kuch, _שױן_, elda,\n  { {0x3ead001c, 0x51870265, 0x61e004eb, 0x00000000}},  //   rget_, _хуба, _grml,\n  { {0x656f0219, 0x69dd01d9, 0x3ead0009, 0x00000000}},  //   _much, dvse, sget_,\n  { {0x69c4001f, 0x656f3597, 0xfaa600ed, 0x00000000}},  //   _spie, _luch, мано,\n  { {0x6d48049a, 0x656f1259, 0x00000000, 0x00000000}},  //   alda, _ouch,   ,\n  { {0x656f00bb, 0x00000000, 0x00000000, 0x00000000}},  //   _nuch,   ,   ,\n  { {0x656700d9, 0xa3c2006e, 0x6d5a0009, 0x00000000}},  //   _nijh, ्बम_, cmta,\n  { {0x18670216, 0x656f009d, 0x00000000, 0x00000000}},  //   дари_, _auch,   ,\n  { {0x656f001f, 0x69c0014a, 0xeab20464, 0x00000000}},  //   _buch, çmes, _شعب_,\n  { {0x656f1526, 0xf74301fc, 0x05663598, 0x00000000}},  // [b680] _cuch, тето, дван,\n  { {0x656f07e4, 0xe5a30517, 0x80bf00e8, 0x00000000}},  //   _duch, тифи, ल्मे,\n  { {0x656f05e1, 0x77660066, 0x6d430145, 0x00000000}},  //   _euch, _tikx, _mkna,\n  { {0x2bf6007b, 0x71a6007e, 0x656f01a2, 0x00000000}},  //   ומען_, дадз, _fuch,\n  { {0xc69300b3, 0x6d48000c, 0x2fc50022, 0x00000000}},  //   _באר_, ylda, _aplg_,\n  { {0x6d4600b9, 0x60c10045, 0x26c20288, 0x00000000}},  //   ůkaz, _cblm, _hbko_,\n  { {0xd0100054, 0x656f3599, 0xa067003b, 0x00000000}},  //   طلة_, _zuch, маља_,\n  { {0x6d43006c, 0x00000000, 0x00000000, 0x00000000}},  //   _akna,   ,   ,\n  { {0x66041eb9, 0xd1b302fd, 0x6da3003b, 0x00000000}},  //   nyik, _لینک, виња,\n  { {0x672d0119, 0x28c00204, 0x00000000, 0x00000000}},  //   znaj, श्मि,   ,\n  { {0x6d4800f8, 0x672d0036, 0x6d5a007f, 0x00000000}},  //   rlda, ynaj, rmta,\n  { {0xdd8f007a, 0x6abd01a2, 0xa3df006e, 0x00000000}},  //   _چون_, ufsf, तित_,\n  { {0x6ef50428, 0x6abd000c, 0xdd8f03d6, 0x00000000}},  //   _náby, rfsf, _نون_,\n  { {0x656f0871, 0xab94003b, 0x200101a2, 0x00000000}},  //   _ruch, _закљ, ähig_,\n  { {0x656f001f, 0xb8820027, 0x672d0d0a, 0x00000000}},  //   _such, _číta, tnaj,\n  { {0x656f2c37, 0x63a504bb, 0x00000000, 0x00000000}},  //   _puch, vrhn,   ,\n  { {0xdb02004a, 0x672d0161, 0x656f004a, 0x00000000}},  // [b690] atló, rnaj, _quch,\n  { {0x88c40036, 0x798d027f, 0xdb0213aa, 0x00000000}},  //   ęści, _iwaw, mulá,\n  { {0x442b007e, 0x656f01a2, 0xdce3002b, 0x00000000}},  //   ццам_, _wuch, _sinċ,\n  { {0x656f15f4, 0x9259007c, 0x798d00e7, 0x00000000}},  //   _tuch, пает_, _kwaw,\n  { {0xdb020344, 0x90c5022a, 0x66160036, 0x00000000}},  //   nulá, ебле, czyk,\n  { {0x26d90166, 0x798d0258, 0x00000000, 0x00000000}},  //   _haso_, _mwaw,   ,\n  { {0x26d9006a, 0x6b56140e, 0x00000000, 0x00000000}},  //   _kaso_, láge,   ,\n  { {0x26d9022b, 0xdb02359a, 0xd1bb0025, 0x00000000}},  //   _jaso_, kulá, _واذا_,\n  { {0x2d990047, 0x2d8b00f4, 0x26d900b9, 0x00000000}},  //   ése_, èce_, _maso_,\n  { {0x26d900e0, 0xdb0213a5, 0x00000000, 0x00000000}},  //   _laso_, dulá,   ,\n  { {0x8b26170a, 0x6b5f0089, 0x798d00e7, 0x00000000}},  //   едне, _lūgu, _awaw,\n  { {0x28b20201, 0x26d90197, 0x798d047b, 0x00000000}},  //   _जाहि, _naso_, _bwaw,\n  { {0xdca501fb, 0x645a000c, 0xdb02359b, 0x00000000}},  //   _зали, _útiv, gulá,\n  { {0xfe7900b9, 0x00000000, 0x00000000, 0x00000000}},  //   lců_,   ,   ,\n  { {0x3b0a012b, 0x26d9359c, 0x00000000, 0x00000000}},  //   _неко_, _baso_,   ,\n  { {0x6d41023a, 0x9666012b, 0xfe7900b9, 0x00000000}},  //   lola, екбе, nců_,\n  { {0xe5a301f9, 0xdce30107, 0x26d918d9, 0x00000000}},  // [b6a0] лити, _linč, _daso_,\n  { {0x6d4104cb, 0x387a00c4, 0x66160036, 0x00000000}},  //   nola, _ufpr_, rzyk,\n  { {0x66160036, 0x26d9359d, 0xb69b009d, 0x00000000}},  //   szyk, _faso_, _plât,\n  { {0xe2920025, 0x6d4100ab, 0x6b560010, 0x00000000}},  //   اذا_, hola, lágb,\n  { {0x6d41020c, 0xfe7900b9, 0x68fe359e, 0x00000000}},  //   kola, dců_, _kopd,\n  { {0x6d410093, 0x00000000, 0x00000000, 0x00000000}},  //   jola,   ,   ,\n  { {0x6d41018e, 0x7cf6001a, 0x68fe0022, 0x00000000}},  //   dola, _târz, _mopd,\n  { {0xdce3016c, 0x26c000c4, 0xb1830f6c, 0x00000000}},  //   _dinč, nfio_, šťan,\n  { {0xe2a6000c, 0x6d410051, 0x68fe01c3, 0x00000000}},  //   æðum_, fola, _oopd,\n  { {0x6d4113f0, 0x2175003b, 0x798d0045, 0x00000000}},  //   gola, _јутр, _rwaw,\n  { {0xac18165b, 0xdee60404, 0xfe7900b9, 0x00000000}},  //   фону_, _пожи, bců_,\n  { {0x60da00e7, 0xdb0207fd, 0xbebd0006, 0x00000000}},  //   _hatm, tulá, liūn,\n  { {0x6d410039, 0xc333009b, 0x26d9007f, 0x00000000}},  //   bola, רור_, _raso_,\n  { {0xd048006b, 0xbebd0006, 0xa3c2006e, 0x00000000}},  //   _sadə, niūn, ्बा_,\n  { {0x26d90211, 0x60da007f, 0x3cf70a4f, 0x00000000}},  //   _paso_, _matm, _سعود_,\n  { {0xd6d801e1, 0xf7700188, 0xddc20059, 0x00000000}},  //   нту_, صاف_, _zgoš,\n  { {0x7aed000b, 0xe5730380, 0x8939359f, 0x00000000}},  // [b6b0] _inat, اطر_, _опис_,\n  { {0x60da123c, 0x81d60044, 0xdb02068f, 0x00000000}},  //   _natm, িমা_, gulæ,\n  { {0x9295008b, 0x7aed000c, 0x64150025, 0x00000000}},  //   ваец, _knat, خواط,\n  { {0x6d412352, 0x7aff0066, 0x25760146, 0x00000000}},  //   zola, _joqt, _fæl_,\n  { {0xe4a7098c, 0xdce302aa, 0x7aed0020, 0x00000000}},  //   _прво, _sinč, _mnat,\n  { {0x60da2b9a, 0x4fa5005e, 0x6d410032, 0x00000000}},  //   _catm, викв, xola,\n  { {0x6d410062, 0xe534007c, 0x7aed2865, 0x00000000}},  //   vola, _серь, _onat,\n  { {0x645535a0, 0x6b560010, 0x25a900fa, 0x00000000}},  //   _izzi, zágb, oral_,\n  { {0x6d41022b, 0x60da02ba, 0x20090089, 0x00000000}},  //   tola, _fatm, ņai_,\n  { {0x7aed000b, 0x270e006e, 0x25a9011c, 0x00000000}},  //   _anat, _सत्र_, iral_,\n  { {0x6d41022b, 0x21270082, 0x6d5801f3, 0x00000000}},  //   rola, minh_, _dhva,\n  { {0x25a927f1, 0x21270082, 0x6d410e69, 0x00000000}},  //   kral_, linh_, sola,\n  { {0x6d411a64, 0xd6b90044, 0x68fe35a1, 0x00000000}},  //   pola, ুযায, _popd,\n  { {0x645535a2, 0xdca5017f, 0x7aed1382, 0x00000000}},  //   _ozzi, _раки, _enat,\n  { {0xa96700e3, 0x7aed00f8, 0x2576000c, 0x00000000}},  //   тира_, _fnat, _sæl_,\n  { {0x21270082, 0x7e7b0329, 0x6b560010, 0x00000000}},  //   hinh_, ncup, ságb,\n  { {0x26c00016, 0x660301a4, 0xd6270cb3, 0x00000000}},  // [b6c0] rfio_, апта, воте_,\n  { {0xd910026c, 0x7aed0119, 0x61e6016c, 0x00000000}},  //   _ایس_, _znat, _šklo,\n  { {0x60da115e, 0x21270082, 0xa3df006e, 0x00000000}},  //   _ratm, dinh_, तिष_,\n  { {0xf626007e, 0x2ba90309, 0x60da005d, 0x00000000}},  //   _адмо, _किना, _satm,\n  { {0xdb0205b7, 0x41b606e3, 0x60da189a, 0x00000000}},  //   pulæ, тсет, _patm,\n  { {0x2127012d, 0x00000000, 0x00000000, 0x00000000}},  //   ginh_,   ,   ,\n  { {0xd00f006d, 0x2d9d0173, 0x20070010, 0x00000000}},  //   يله_, _avwe_, gyni_,\n  { {0x6d580119, 0xa3df0201, 0xc059007e, 0x00000000}},  //   _shva, तिर_, хіі_,\n  { {0x324601fc, 0x21270082, 0x7aed0087, 0x00000000}},  //   _реаг, binh_, _rnat,\n  { {0x61e2013f, 0x00000000, 0x00000000, 0x00000000}},  //   mvol,   ,   ,\n  { {0x61e20625, 0xdb0212f9, 0x3fa5221c, 0x00000000}},  //   lvol, kulä, _مصنف,\n  { {0x7e7b117e, 0xbb9301ab, 0x00000000, 0x00000000}},  //   ccup, шающ,   ,\n  { {0xf2d300bd, 0x61e21596, 0x316c121e, 0x00000000}},  //   בער_, nvol, _kidz_,\n  { {0x6d580091, 0xa8a4003b, 0x25a9006b, 0x00000000}},  //   _uhva, ирск, vral_,\n  { {0xe894007e, 0x39430089, 0xd918007c, 0x00000000}},  //   рась, rojs_, тья_,\n  { {0x7aed181e, 0x61e20168, 0xdb0201a2, 0x00000000}},  //   _unat, kvol, gulä,\n  { {0x27370f68, 0x25a902ed, 0x00000000, 0x00000000}},  // [b6d0] għna_, ural_,   ,\n  { {0x58d50057, 0x2ba901f5, 0x21270082, 0x00000000}},  //   _соот, _किमा, xinh_,\n  { {0xdd860167, 0x61e2007f, 0xb88200b9, 0x00000000}},  //   _گو_, evol, číte,\n  { {0x25a901aa, 0xf6790049, 0xef1f0036, 0x00000000}},  //   pral_, _ראָמ, ężko_,\n  { {0xdd860167, 0x29010715, 0x21270011, 0x00000000}},  //   _دو_, _koha_, tinh_,\n  { {0xe3b302fd, 0xe1f00025, 0x958200b4, 0x00000000}},  //   _پرس_, تسم_, żące,\n  { {0x6455001e, 0xb4c1006e, 0xf3671281, 0x00000000}},  //   _uzzi, ्जी_, _атан,\n  { {0xa3c2062e, 0x21270082, 0x00000000, 0x00000000}},  //   ्बर_, sinh_,   ,\n  { {0x7e7b0035, 0x2007000c, 0x629900d9, 0x00000000}},  //   rcup, syni_, mawo,\n  { {0x6299224b, 0x63730066, 0x290113ae, 0x00000000}},  //   lawo, _aħni, _noha_,\n  { {0x5edb0044, 0x00000000, 0x00000000, 0x00000000}},  //   ভাবে,   ,   ,\n  { {0x62990058, 0x00000000, 0x00000000, 0x00000000}},  //   nawo,   ,   ,\n  { {0xed4e053c, 0x6da5003b, 0xf99f01aa, 0x00000000}},  //   _го_, _сила, syèn_,\n  { {0xdce30089, 0xf99f01aa, 0x00000000, 0x00000000}},  //   _finā, myèl_,   ,\n  { {0x61e235a3, 0xab2a0057, 0x290100ea, 0x00000000}},  //   zvol, _пока_, _doha_,\n  { {0x236d0036, 0xdb2401b2, 0x00000000, 0x00000000}},  //   _niej_, _خوبی,   ,\n  { {0xe7370057, 0xdce3001e, 0xf99f01aa, 0x00000000}},  // [b6e0] ует_, _zinā, nyèl_,\n  { {0xa3c20309, 0x61e20026, 0x00000000, 0x00000000}},  //   ्बल_, vvol,   ,\n  { {0xdb0209fe, 0x6e2d0107, 0x29180048, 0x00000000}},  //   pulä, _žabl, mhra_,\n  { {0x62990173, 0x248701df, 0x798401c3, 0x00000000}},  //   gawo, ınma_, _ktiw,\n  { {0xf126105c, 0x26d20026, 0x00000000, 0x00000000}},  //   лько, meyo_,   ,\n  { {0x61e20664, 0xbebd010a, 0xdfd00025, 0x00000000}},  //   rvol, siūl, قيت_,\n  { {0x61e20125, 0x62992b98, 0x3d07006e, 0x00000000}},  //   svol, bawo, ाउने_,\n  { {0x3f8301d5, 0x61e20116, 0x26d200e7, 0x00000000}},  //   _ħjut_, pvol, neyo_,\n  { {0x9d14081e, 0x79840009, 0x6b8300e0, 0x00000000}},  //   идич, _ntiw, _atng,\n  { {0x6aa40843, 0x00000000, 0x00000000, 0x00000000}},  //   _adif,   ,   ,\n  { {0x9b5901f9, 0xef86003b, 0x88c40036, 0x00000000}},  //   киот_, _слеп, ęśli,\n  { {0x29010010, 0x644e0145, 0x7de60380, 0x00000000}},  //   _soha_, _mybi, _مستم,\n  { {0xf2d3007b, 0x6aa40016, 0x26d201aa, 0x00000000}},  //   זער_, _ddif, deyo_,\n  { {0x6aa40118, 0x6f0201ee, 0x291835a4, 0x00000000}},  //   _edif, _hooc, ghra_,\n  { {0x19580a78, 0x7bca0045, 0x644e35a5, 0x00000000}},  //   уары_, _upfu, _nybi,\n  { {0x2ba900e8, 0x656e0051, 0x26d20045, 0x00000000}},  //   _किता, _aibh, geyo_,\n  { {0x2918002a, 0x35f5007e, 0x6f0200c4, 0x00000000}},  // [b6f0] bhra_, шпар, _mooc,\n  { {0x7afd00ee, 0x291835a6, 0x6f0235a7, 0x00000000}},  //   ljst, chra_, _looc,\n  { {0x629935a8, 0xa87a009b, 0xdb0235a9, 0x00000000}},  //   tawo, _באתר, rtlö,\n  { {0x7afd0295, 0xdb0235aa, 0x656e0048, 0x00000000}},  //   njst, stlö, _eibh,\n  { {0x629935ab, 0xf99f01aa, 0xb60735ac, 0x00000000}},  //   rawo, nsè_, _сянк,\n  { {0x7777002b, 0x00000000, 0x00000000, 0x00000000}},  //   _kuxx,   ,   ,\n  { {0xfe710054, 0x23e4007e, 0x6f020785, 0x00000000}},  //   يدة_, _літв, _booc,\n  { {0xf99f01aa, 0x3eb91bd5, 0x638100e5, 0x00000000}},  //   ksè_, üst_, _cânţ,\n  { {0x7afd0645, 0x6b8400ca, 0x00000000, 0x00000000}},  //   djst, _čiga,   ,\n  { {0xf99f01aa, 0x61e9038f, 0xdca500ec, 0x00000000}},  //   ryèl_, _irel, јани,\n  { {0x5ea70055, 0xf99f01aa, 0x26d20600, 0x00000000}},  //   ক্ষে, syèl_, yeyo_,\n  { {0xda660603, 0x2bb60164, 0x6f0200bb, 0x00000000}},  //   ивни, _अमरा, _gooc,\n  { {0x82d6061e, 0x29181706, 0x4a43005e, 0x00000000}},  //   בורג_, thra_, жняв,\n  { {0xdce300e5, 0x00000000, 0x00000000, 0x00000000}},  //   _dină,   ,   ,\n  { {0xa696098c, 0x7d030051, 0x969635ad, 0x00000000}},  //   ирај, _ions, ираш,\n  { {0x61e90e98, 0x656e0051, 0x5ea70044, 0x00000000}},  //   _orel, _sibh, ক্রে,\n  { {0x7d03134e, 0xa526008b, 0x644e0061, 0x00000000}},  // [b700] _kons, амад, _sybi,\n  { {0x7d03093b, 0x64a60679, 0x00000000, 0x00000000}},  //   _jons, ража,   ,\n  { {0xe29a008b, 0x7d03032c, 0x61e9008e, 0x00000000}},  //   вае_, _mons, _arel,\n  { {0xf99f0263, 0x7d030471, 0x98a30089, 0x00000000}},  //   zyèm_, _lons, mijā_,\n  { {0x644e0046, 0x98a30089, 0x7bc1006c, 0x00000000}},  //   _wybi, lijā_, htlu,\n  { {0x25a00279, 0x656e23a3, 0x6f020087, 0x00000000}},  //   msil_, _uibh, _sooc,\n  { {0xdfd00054, 0x03a3007c, 0x98a30089, 0x00000000}},  //   سية_, _миро, nijā_,\n  { {0x61e935ae, 0x3ec30783, 0x24980145, 0x00000000}},  //   _frel, осьб, _herm_,\n  { {0x61e935af, 0xf99f01aa, 0x7d03032c, 0x00000000}},  //   _grel, tyèm_, _bons,\n  { {0x8fa6026b, 0xdceb001a, 0x00000000, 0x00000000}},  //   _важе, _rugă,   ,\n  { {0x25a002b9, 0x69cd0240, 0x6c340025, 0x00000000}},  //   hsil_, _spae, صفحا,\n  { {0x4cd30044, 0x25a00058, 0x98a30089, 0x00000000}},  //   তাগু, ksil_, dijā_,\n  { {0x7d03185b, 0xdd8e00a1, 0x5ebe0044, 0x00000000}},  //   _fons, _کوڈ_, ্যদে,\n  { {0x7d0301d6, 0x2d8600e7, 0x00000000, 0x00000000}},  //   _gons, _itoe_,   ,\n  { {0x6d481529, 0x6b56027b, 0x00000000, 0x00000000}},  //   moda, cágo,   ,\n  { {0x6d4835b0, 0x7d0300bb, 0x2d86000a, 0x00000000}},  //   loda, _zons, _ktoe_,\n  { {0x24980f46, 0xe6670764, 0xd49b0140, 0x00000000}},  // [b710] _berm_, ртво, вре_,\n  { {0x6d480ecf, 0x00000000, 0x00000000, 0x00000000}},  //   noda,   ,   ,\n  { {0x98a30089, 0x9cd700b3, 0x39460051, 0x00000000}},  //   cijā_, שובה_, _íosa_,\n  { {0xfaff008d, 0x2ba903d7, 0x6d480733, 0x00000000}},  //   një_, _किसा, hoda,\n  { {0x672d000b, 0x2498002b, 0x6d48006c, 0x00000000}},  //   miaj, _ferm_, koda,\n  { {0xe134007e, 0x672d0020, 0x61e90466, 0x00000000}},  //   ончы, liaj, _vrel,\n  { {0x6d4812db, 0x8352026c, 0x656500f6, 0x00000000}},  //   doda, _کھلا, mmhh,\n  { {0x61e9027b, 0x7d03001f, 0xf838019b, 0x00000000}},  //   _trel, _sons, ינות_,\n  { {0x660d2943, 0x7d03023a, 0xa3df007d, 0x00000000}},  //   nyak, _pons, तिक_,\n  { {0x7d1a0857, 0x7bc1010f, 0x6d480091, 0x00000000}},  //   ghts, ttlu, goda,\n  { {0x660d24a8, 0x2d9f00ab, 0x672d00e7, 0x00000000}},  //   hyak, ssue_, kiaj,\n  { {0xfaff0065, 0xa3e8006e, 0x7d03000a, 0x00000000}},  //   gjë_, बित_, _wons,\n  { {0xfce50373, 0x6d48018e, 0x7bc135b1, 0x00000000}},  //   _голо, boda, stlu,\n  { {0x7d1a04e5, 0x6d480036, 0x2f180010, 0x00000000}},  //   chts, coda, _vége_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x98a3001e, 0x6b5d00f4, 0x25a0010e, 0x00000000}},  //   rijā_, tége, tsil_,\n  { {0x24980c0d, 0x660d0390, 0x98a30089, 0x00000000}},  // [b720] _perm_, gyak, sijā_,\n  { {0x2ed4006e, 0x25a003f2, 0xaa7b0161, 0x00000000}},  //   _दस्त, rsil_, ndýn,\n  { {0x6b5d0047, 0x25a00ab5, 0xf746003b, 0x00000000}},  //   sége, ssil_, _гено,\n  { {0x734901fb, 0x9f580190, 0x394a009d, 0x00000000}},  //   ачів_, _ærø_, lobs_,\n  { {0xc297008b, 0x249800ab, 0x6d480969, 0x00000000}},  //   скіх_, _term_, yoda,\n  { {0x614301e0, 0xc05a03e8, 0x394a01c3, 0x00000000}},  //   печа, лій_, nobs_,\n  { {0xf487026c, 0x6d480428, 0x08770049, 0x00000000}},  //   _چاہی, voda, זעצט_,\n  { {0x645c2ad6, 0x6d480036, 0xf773009b, 0x00000000}},  //   _izri, woda, הקה_,\n  { {0x6ce603e8, 0xa0a6025f, 0x394a01e5, 0x00000000}},  //   біне, _газд, kobs_,\n  { {0x628235b2, 0xd24f0025, 0xdb0201a2, 0x00000000}},  //   lcoo, _أنك_, hrlä,\n  { {0x6d4835b3, 0xa4fb00a0, 0x00000000, 0x00000000}},  //   roda, אליט,   ,\n  { {0x2ba9013d, 0x8fa3007e, 0x6d480ff8, 0x00000000}},  //   _किरा, _хаце, soda,\n  { {0x6d480062, 0x63ab0036, 0x2bda0316, 0x00000000}},  //   poda, ągni, _बनवा,\n  { {0x672d0036, 0x47d20044, 0x2905000c, 0x00000000}},  //   wiaj, হিনী, ðla_,\n  { {0x672d010e, 0x00000000, 0x00000000, 0x00000000}},  //   tiaj,   ,   ,\n  { {0xec37009b, 0x6b5d0010, 0x6e2d0b4a, 0x00000000}},  //   _לאור_, ségb, _žabi,\n  { {0x645c1827, 0x672d0052, 0x4499054d, 0x00000000}},  // [b730] _azri, riaj, иваю_,\n  { {0x394a01d6, 0x2fde0009, 0xe6c00166, 0x00000000}},  //   cobs_, _ostg_, čišć,\n  { {0x3e6f014a, 0x73d900e2, 0x660d21e6, 0x00000000}},  //   _kötü_, рдер_, syak,\n  { {0x32551023, 0x00000000, 0x00000000, 0x00000000}},  //   овер,   ,   ,\n  { {0x28c0006e, 0x673d00bb, 0x00000000, 0x00000000}},  //   श्कि, _ijsj,   ,\n  { {0x64400046, 0xc244007e, 0xc5f2009b, 0x00000000}},  //   _śmie, чнік, _קדם_,\n  { {0xdbf100b9, 0x628200fd, 0x29380049, 0x00000000}},  //   _přít, bcoo, זאגן_,\n  { {0x0d85025f, 0x38180104, 0x00000000, 0x00000000}},  //   олин, מקום_,   ,\n  { {0x0cc401f5, 0xa6e2000c, 0x00000000, 0x00000000}},  //   वभूम, öðin,   ,\n  { {0x929d0036, 0x00000000, 0x00000000, 0x00000000}},  //   _koło,   ,   ,\n  { {0xeb99012b, 0x28c4013d, 0x6f1b0082, 0x00000000}},  //   јим_, _लॉगि, phuc,\n  { {0xd250026c, 0x4421009d, 0x00000000, 0x00000000}},  //   _آنے_, izh_,   ,\n  { {0x4e7801f7, 0x7de70014, 0x00000000, 0x00000000}},  //   _احمد_, _دسام,   ,\n  { {0x2d8d35b4, 0x00000000, 0x00000000, 0x00000000}},  //   mpee_,   ,   ,\n  { {0x394a000a, 0x869a0745, 0x2d8d004a, 0x00000000}},  //   robs_, итат_, lpee_,\n  { {0x81d00044, 0x628200d2, 0x629b27d7, 0x00000000}},  //   ষিত_, xcoo, _neuo,\n  { {0x7ae41419, 0xd7f8001a, 0x9b4400a1, 0x00000000}},  // [b740] _iait, ţă_, _ونڈو,\n  { {0x7ae40d2a, 0x8c3c006b, 0x628200d9, 0x00000000}},  //   _hait, bağd, wcoo,\n  { {0x7ae40004, 0x62820061, 0x6b5d00f4, 0x00000000}},  //   _kait, tcoo, léga,\n  { {0x7ae4002d, 0x74130025, 0xfaff0065, 0x00000000}},  //   _jait, بوما, hmën_,\n  { {0x7ae4002a, 0x69c60047, 0x2240006b, 0x00000000}},  //   _mait, ntke, çik_,\n  { {0x7ae4021e, 0x628200b5, 0x45d90049, 0x00000000}},  //   _lait, scoo, _פֿרא,\n  { {0xea010011, 0x6f190016, 0x00000000, 0x00000000}},  //   _đậu_, _blwc,   ,\n  { {0x7ae4011c, 0x3da60088, 0x98a3007f, 0x00000000}},  //   _nait, ороб, miją_,\n  { {0xaf070380, 0x69c401f3, 0x98a3007f, 0x00000000}},  //   تقيم_, _nqie, liją_,\n  { {0x7af600ab, 0xad260025, 0x85f70049, 0x00000000}},  //   _anyt, تربو, קציע_,\n  { {0x7ae4022b, 0x747b01ce, 0x98a30006, 0x00000000}},  //   _bait, יניג, niją_,\n  { {0x7ae4002a, 0x291a12da, 0x74ca006e, 0x00000000}},  //   _cait, _alpa_, स्तृ,\n  { {0x7ae435b5, 0x00000000, 0x00000000, 0x00000000}},  //   _dait,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xa2db001c, 0x7ae40549, 0x370735b6, 0x00000000}},  //   _नसल्, _fait, очав,\n  { {0x7ae419c0, 0xab2807d8, 0xba3b009d, 0x00000000}},  //   _gait, _моја_, raïb,\n  { {0x690b0129, 0x69c600d9, 0x00000000, 0x00000000}},  // [b750] _qües, ctke,   ,\n  { {0x929d0036, 0x7ae4002d, 0x6abd0302, 0x00000000}},  //   _poło, _zait, lgsf,\n  { {0x7ae4023a, 0xb4ab03d7, 0x98a30006, 0x00000000}},  //   _yait, _गयी_, giją_,\n  { {0x8cca013d, 0x9294007e, 0x6aad0044, 0x00000000}},  //   त्तो, дацц, ট্রো,\n  { {0x68e5021e, 0x8234007a, 0x5eb90044, 0x00000000}},  //   _kahd, ورها, _আসলে,\n  { {0x673b0091, 0x68e535b7, 0xd6d70044, 0x00000000}},  //   čuju, _jahd, হাওয,\n  { {0xa2950822, 0x68e5021e, 0x657d0039, 0x00000000}},  //   _наві, _mahd, _hush,\n  { {0x657d06b7, 0xdfce007a, 0x68e500b0, 0x00000000}},  //   _kush, ايي_, _lahd,\n  { {0x7ae400b0, 0x2d8d0045, 0xc3320049, 0x00000000}},  //   _rait, upee_, _נומ_,\n  { {0x7ae435b8, 0x68e535b9, 0x80b435ba, 0x00000000}},  //   _sait, _nahd, _обух,\n  { {0x7ae400b0, 0x657d0065, 0xfaff0065, 0x00000000}},  //   _pait, _lush, rmën_,\n  { {0x0eb8007e, 0xaa460256, 0xfaff0023, 0x00000000}},  //   _душы_, земл, smën_,\n  { {0x7ae40006, 0x98a30006, 0x657d1264, 0x00000000}},  //   _vait, ziją_, _nush,\n  { {0x29030065, 0x7ae402f1, 0x6b5d0299, 0x00000000}},  //   gjja_, _wait, réga,\n  { {0x7ae435bb, 0x657d01a2, 0x69c63250, 0x00000000}},  //   _tait, _aush, stke,\n  { {0x657d0065, 0x6910006c, 0x7ae40048, 0x00000000}},  //   _bush, _näev, _uait,\n  { {0xf1da03d7, 0x7abb009b, 0x2b810082, 0x00000000}},  // [b760] _मैंन, _הצפו, _hóc_,\n  { {0x657d0350, 0x6b5600c4, 0x98a3007f, 0x00000000}},  //   _dush, dági, tiją_,\n  { {0xa87b009b, 0x387a00e5, 0x00000000, 0x00000000}},  //   _לאיר, _igpr_,   ,\n  { {0x657d008d, 0x2b8135bc, 0x98a30006, 0x00000000}},  //   _fush, _móc_, riją_,\n  { {0xc6930452, 0x657d2b7f, 0x673b06fc, 0x00000000}},  //   _ראש_, _gush, čujt,\n  { {0x28c00309, 0x2d8200b9, 0x64550161, 0x00000000}},  //   श्चि, íkem_, _fyzi,\n  { {0x044335bd, 0x2b810082, 0xb4b8013d, 0x00000000}},  //   _зерн, _nóc_, छली_,\n  { {0x543b009b, 0x671c007d, 0xadf420e6, 0x00000000}},  //   _העלא, नसिक_, дпиш,\n  { {0xf99f01aa, 0x00000000, 0x00000000, 0x00000000}},  //   nyèt_,   ,   ,\n  { {0x2b810011, 0x00000000, 0x00000000, 0x00000000}},  //   _bóc_,   ,   ,\n  { {0xdbf100b9, 0x2b810011, 0x00000000, 0x00000000}},  //   _přát, _cóc_,   ,\n  { {0x7c420089, 0x60c4016e, 0xaa590152, 0x00000000}},  //   _ātrā, đimu, жиму_,\n  { {0x6abd35be, 0x00000000, 0x00000000, 0x00000000}},  //   rgsf,   ,   ,\n  { {0x61ed005f, 0xb4ab03d7, 0x67d50175, 0x00000000}},  //   çilə, _गये_, могу,\n  { {0x2b81001d, 0xd7f8003b, 0x31570049, 0x00000000}},  //   _góc_, пут_, פילן_,\n  { {0x443f0363, 0x7d0a130e, 0x68e535bf, 0x00000000}},  //   _ću_, _hofs, _wahd,\n  { {0x68e535c0, 0x6aad0045, 0x7d0a35c1, 0x00000000}},  // [b770] _tahd, _idaf, _kofs,\n  { {0x04670b11, 0xe61f018e, 0x798d35c2, 0x00000000}},  //   птем, _ffôn_, _itaw,\n  { {0x69100004, 0x657d0361, 0x7bc8046a, 0x00000000}},  //   _päev, _wush, ntdu,\n  { {0x6b560181, 0x657d0f3e, 0x63a535c3, 0x00000000}},  //   tági, _tush, rshn,\n  { {0x798d0066, 0xbebd007f, 0x00000000, 0x00000000}},  //   _jtaw, kiūr,   ,\n  { {0xdb1b0c4d, 0xe4e40088, 0x7d0a002b, 0x00000000}},  //   lttä, _пісн, _nofs,\n  { {0x2054005e, 0xd006005e, 0x00000000, 0x00000000}},  //   нтър, деще_,   ,\n  { {0xdb1b00b0, 0x41e701ff, 0x798d0173, 0x00000000}},  //   nttä, _ніза, _otaw,\n  { {0x2b810a91, 0x2d99023f, 0x798d14a5, 0x00000000}},  //   _sóc_, èse_, _ntaw,\n  { {0xee360642, 0x6910006c, 0x6aad0045, 0x00000000}},  //   ьны_, _jäet, _adaf,\n  { {0x3c6501fb, 0x798d0020, 0xcb6a02dc, 0x00000000}},  //   ьког, _ataw, жане_,\n  { {0x2b810082, 0x6b5d0010, 0x00000000, 0x00000000}},  //   _vóc_, ségn,   ,\n  { {0xc6120044, 0xddcb00b4, 0xbebd007f, 0x00000000}},  //   _সেনা_, _wygł, siūs,\n  { {0x2b81001d, 0x3ebf0129, 0xeb9900ed, 0x00000000}},  //   _tóc_, lgut_, _дик_,\n  { {0x798d0022, 0x39410146, 0x00000000, 0x00000000}},  //   _etaw, _djhs_,   ,\n  { {0x3ebf04bd, 0x00000000, 0x00000000, 0x00000000}},  //   ngut_,   ,   ,\n  { {0x69c80035, 0x8c3c0095, 0xe737017a, 0x00000000}},  // [b780] ădes, mağa, фет_,\n  { {0xb4b803d7, 0x3ce735c4, 0x6f0b0d12, 0x00000000}},  //   छले_, _janv_, _logc,\n  { {0x6f0b00d9, 0x00000000, 0x00000000, 0x00000000}},  //   _oogc,   ,   ,\n  { {0xdb090190, 0x958602b3, 0x00000000, 0x00000000}},  //   ardæ, _олме,   ,\n  { {0x316a243b, 0x00000000, 0x00000000, 0x00000000}},  //   ошко_,   ,   ,\n  { {0x26c01875, 0x29180010, 0x00000000, 0x00000000}},  //   lgio_, nkra_,   ,\n  { {0x6f0b0146, 0x7d0a130e, 0x2bdd006e, 0x00000000}},  //   _bogc, _rofs, _फैला,\n  { {0x69100004, 0xef91007a, 0x26c00419, 0x00000000}},  //   _käes, ایند, ngio_,\n  { {0x2918000c, 0x8c3c006b, 0x6d470173, 0x00000000}},  //   kkra_, dağa, čjan,\n  { {0x6b5d028c, 0x7d0a0065, 0x5edb0044, 0x00000000}},  //   tégo, _qofs, ভাগে,\n  { {0xdb1b0f3c, 0xccf800b9, 0x798d0036, 0x00000000}},  //   yttä, dmět_, _staw,\n  { {0x7bc800c7, 0xef690025, 0x00000000, 0x00000000}},  //   rtdu, _فإنه_,   ,\n  { {0xff2700d3, 0xdb1b0023, 0x00000000, 0x00000000}},  //   _تبلی, lutë,   ,\n  { {0xfc2f00d3, 0x7e6204eb, 0x3ea42bf0, 0x00000000}},  //   احی_, _izop, lamt_,\n  { {0x36d50242, 0xba3b35c5, 0x9be60088, 0x00000000}},  //   новр, caïn, _цілк,\n  { {0x26c005d3, 0x8cca03d7, 0x6d5a0065, 0x00000000}},  //   ggio_, त्रो, llta,\n  { {0x798d000b, 0x6d5a35c6, 0x6458002b, 0x00000000}},  // [b790] _utaw, olta, żvil,\n  { {0x29180039, 0x6d5a0009, 0xb8f40044, 0x00000000}},  //   ckra_, nlta, _সো_,\n  { {0xa77510d8, 0x6d5a14a7, 0x6910010e, 0x00000000}},  //   _плоч, ilta, _väet,\n  { {0xfe0e02fb, 0x659502dc, 0x00000000, 0x00000000}},  //   िहास_, _паму,   ,\n  { {0xa159003b, 0x00000000, 0x00000000, 0x00000000}},  //   паду_,   ,   ,\n  { {0x25a9014a, 0xdb1b0023, 0xd5b8007e, 0x00000000}},  //   msal_, futë, _ўся_,\n  { {0x25a90058, 0x442505fe, 0x92c704ac, 0x00000000}},  //   lsal_, _ål_, _ощад,\n  { {0x26160061, 0x6d5a35c7, 0x00000000, 0x00000000}},  //   पैकी_, elta,   ,\n  { {0x25a935c8, 0x3ebf02ba, 0x98a30006, 0x00000000}},  //   nsal_, rgut_, siję_,\n  { {0x25a90133, 0xb69b0173, 0x00000000, 0x00000000}},  //   isal_, _goâv,   ,\n  { {0xc4d2007b, 0x25a90180, 0xd0110025, 0x00000000}},  //   נגט_, hsal_, _حلا_,\n  { {0x6d5a0129, 0x25a90095, 0x441a00b3, 0x00000000}},  //   alta, ksal_, פורס,\n  { {0x88e40044, 0x776d004a, 0x00000000, 0x00000000}},  //   মাসক, dmax,   ,\n  { {0x291e0092, 0x8d651523, 0x7f5b006b, 0x00000000}},  //   óta_, _явле, lluq,\n  { {0x9d1a007b, 0xc0520049, 0x46f6007e, 0x00000000}},  //   _מוסט, ָזן_, нчат,\n  { {0x66e302b8, 0x291835c9, 0xeab20379, 0x00000000}},  //   лоса, skra_, _صعب_,\n  { {0xea0100ad, 0x26c00a15, 0x0566013b, 0x00000000}},  // [b7a0] _đầu_, rgio_, еван,\n  { {0x7d7a0049, 0x691000b0, 0x2019006b, 0x00000000}},  //   פרעג, _väes, _əsir_,\n  { {0x389b007b, 0x00000000, 0x00000000, 0x00000000}},  //   _מיינ,   ,   ,\n  { {0xfe67004b, 0x2ca50fdc, 0xb80800a1, 0x00000000}},  //   _مد_, hald_, _ٹکڑے_,\n  { {0x6d5a00f8, 0x2ca50190, 0xa3e5013d, 0x00000000}},  //   ylta, kald_, _बैठ_,\n  { {0xdb1b0065, 0x2ca507a8, 0x00000000, 0x00000000}},  //   tutë, jald_,   ,\n  { {0x4ac60061, 0x7e620c59, 0x2ca500d4, 0x00000000}},  //   _वाढव, _szop, dald_,\n  { {0x91e601f9, 0x6d4327a9, 0x00000000, 0x00000000}},  //   _побе, _ajna,   ,\n  { {0xb1462436, 0x3ea40302, 0x2ca52141, 0x00000000}},  //   _знал, ramt_, fald_,\n  { {0x3ea4073d, 0x61e201a2, 0x00000000, 0x00000000}},  //   samt_, mwol,   ,\n  { {0xe5710049, 0x00000000, 0x00000000, 0x00000000}},  //   יַט_,   ,   ,\n  { {0xa4fd007d, 0xd00f0014, 0x6d430146, 0x00000000}},  //   _उच्च_, _دلم_, _ejna,\n  { {0x2ca5010f, 0x298b35ca, 0x80d501f5, 0x00000000}},  //   bald_, ясно_, _मॉडे,\n  { {0x63be0161, 0xed59016c, 0x00000000, 0x00000000}},  //   kupn, tuže_,   ,\n  { {0x67d4004c, 0x9848005e, 0x776d06d3, 0x00000000}},  //   лору, еята_, tmax,\n  { {0x25a9014a, 0x63be04cb, 0x7bcf0036, 0x00000000}},  //   tsal_, dupn, ńcuc,\n  { {0xf6531298, 0x00000000, 0x00000000, 0x00000000}},  // [b7b0] ائز_,   ,   ,\n  { {0x2edd062e, 0xf9900379, 0x7d1a006c, 0x00000000}},  //   _मस्त, _ابي_, nkts,\n  { {0x25a92c71, 0x00000000, 0x00000000, 0x00000000}},  //   ssal_,   ,   ,\n  { {0x672402ae, 0x25a900b9, 0x62750025, 0x00000000}},  //   chij, psal_, نهائ,\n  { {0xaad30164, 0x66640265, 0xa6ca0044, 0x00000000}},  //   ध्यक, _бърз, _লোকট,\n  { {0xccf800b9, 0x7bd82c09, 0x78a71d9b, 0x00000000}},  //   změr_, _opvu, najv,\n  { {0x22950025, 0x2ca5104b, 0xa4d40088, 0x00000000}},  //   _للأس, vald_, _щорі,\n  { {0x256600f4, 0x2ca50dcc, 0x2d8f00f6, 0x00000000}},  //   rôle_, wald_, _ptge_,\n  { {0x628401a8, 0x2ca500f8, 0xd05a013f, 0x00000000}},  //   žioc, tald_, _matə,\n  { {0x61e4014a, 0x2f110b33, 0x6724012d, 0x00000000}},  //   çile, _págs_, zhij,\n  { {0x8c450256, 0x00000000, 0x00000000, 0x00000000}},  //   тене,   ,   ,\n  { {0x2b16005e, 0x398600c4, 0xde95003b, 0x00000000}},  //   тьор, _pôs_, _радњ,\n  { {0xdd94008b, 0xb5fb0010, 0x00000000, 0x00000000}},  //   _бачы, _szán,   ,\n  { {0x9e6401fb, 0x6f09016e, 0x00000000, 0x00000000}},  //   _свід, ljec,   ,\n  { {0xea01001d, 0x6e290173, 0x61e235cb, 0x00000000}},  //   _đấu_, lzeb, zwol,\n  { {0x6604002d, 0x2eed00fa, 0x00000000, 0x00000000}},  //   txik, ndef_,   ,\n  { {0x6d4131f7, 0x6b830e69, 0xcb130104, 0x00000000}},  // [b7c0] onla, _hung, _כלה_,\n  { {0x6b8335cc, 0x672422cb, 0x63be01ca, 0x00000000}},  //   _kung, shij, tupn,\n  { {0x6b83125e, 0x6d41010f, 0x798401d6, 0x00000000}},  //   _jung, inla, _huiw,\n  { {0x6b833193, 0x61e22a9c, 0x9c7c013e, 0x00000000}},  //   _mung, twol, meče,\n  { {0x9c7c004f, 0x2eed0016, 0x6b8335cd, 0x00000000}},  //   leče, ddef_, _lung,\n  { {0x61e20016, 0x6aa4000c, 0x85470006, 0x00000000}},  //   rwol, _leif, _plėš,\n  { {0x03a30364, 0x8f340265, 0x63630004, 0x00000000}},  //   _висо, лекц, sõna,\n  { {0xdb1b00f4, 0x044300a8, 0x00000000, 0x00000000}},  //   puté, _тесн,   ,\n  { {0x91e30364, 0x5d5405f6, 0x3eb935ce, 0x00000000}},  //   _коте, лкит, ósta_,\n  { {0x6b83183a, 0xb0c90164, 0x6d4102d8, 0x00000000}},  //   _bung, _रायग, gnla,\n  { {0x6f092cb9, 0x6b5d35cf, 0x9c7c016e, 0x00000000}},  //   bjec, légi, ječe,\n  { {0x6b8301a3, 0x9c7c1282, 0x7d1a00e0, 0x00000000}},  //   _dung, deče, skts,\n  { {0x645c0038, 0x7def0010, 0x6aa41f74, 0x00000000}},  //   _lyri, rősö, _deif,\n  { {0x79840007, 0x00000000, 0x00000000, 0x00000000}},  //   _duiw,   ,   ,\n  { {0xf77301fa, 0x6b8300f8, 0x6b560181, 0x00000000}},  //   لار_, _gung, rágr,\n  { {0x6aa4005b, 0x6b560010, 0x00000000, 0x00000000}},  //   _geif, ságr,   ,\n  { {0x657c0058, 0x6b832a95, 0x645c005a, 0x00000000}},  // [b7d0] _birh, _zung, _ayri,\n  { {0x6b831a16, 0xe5c4025f, 0x7aed0007, 0x00000000}},  //   _yung, јсто, _haat,\n  { {0x645c048d, 0x5ea80044, 0x7aed00b0, 0x00000000}},  //   _cyri, _গানে, _kaat,\n  { {0x7aed35d0, 0x645c0146, 0x00000000, 0x00000000}},  //   _jaat, _dyri,   ,\n  { {0x7aed0168, 0x69cf0f36, 0x6d580059, 0x00000000}},  //   _maat, ntce, _okva,\n  { {0x645c0359, 0x7aed35d1, 0x1bf4013d, 0x00000000}},  //   _fyri, _laat, ेमाल_,\n  { {0x6f090209, 0xed59016c, 0x645c35d2, 0x00000000}},  //   tjec, juža_, _gyri,\n  { {0x6b88001c, 0x765d021e, 0x6b83236c, 0x00000000}},  //   dqdg, _kysy, _rung,\n  { {0x74ca02f4, 0x6aa4010f, 0x6b830971, 0x00000000}},  //   स्कृ, _reif, _sung,\n  { {0x61e90004, 0x6b8304cb, 0xeb99025f, 0x00000000}},  //   _isel, _pung, нио_,\n  { {0xb5fb0047, 0xfaa60407, 0x79840007, 0x00000000}},  //   _szál, лано, _suiw,\n  { {0x7aed001c, 0x69cf2635, 0x6b830082, 0x00000000}},  //   _caat, ftce, _vung,\n  { {0x3f8504cb, 0x9c7c016e, 0x6b8324a8, 0x00000000}},  //   _hulu_, veče, _wung,\n  { {0x6b83006a, 0x2f180010, 0x6aa40066, 0x00000000}},  //   _tung, _régi_, _weif,\n  { {0xc81501fb, 0x3f850107, 0x765d01aa, 0x00000000}},  //   аєть, _julu_, _aysy,\n  { {0x7bc1000d, 0x3f8535d3, 0x7aed0112, 0x00000000}},  //   mulu, _mulu_, _gaat,\n  { {0x765d018e, 0x7bc13219, 0x166615c4, 0x00000000}},  // [b7e0] _cysy, lulu, увам,\n  { {0x645c00b0, 0x9c7c0107, 0x3f8500b0, 0x00000000}},  //   _pyri, seče, _oulu_,\n  { {0x7bc1000d, 0x657c00b0, 0x06b00044, 0x00000000}},  //   nulu, _virh, ঙ্গি,\n  { {0x645c16a4, 0x6363006c, 0x7bc10035, 0x00000000}},  //   _vyri, sõnn, iulu,\n  { {0x7bc117ca, 0x765d018e, 0x1a9b0049, 0x00000000}},  //   hulu, _gysy, גינע,\n  { {0x7bc1022b, 0x645c010a, 0xdce3001e, 0x00000000}},  //   kulu, _tyri, _minē,\n  { {0x61e90093, 0x7bc1001a, 0x395a0022, 0x00000000}},  //   _esel, julu, _mkps_,\n  { {0x7bc1001a, 0x3f85027e, 0x6d58141b, 0x00000000}},  //   dulu, _dulu_, _skva,\n  { {0xd335008b, 0x7aed01b1, 0xb6370049, 0x00000000}},  //   _тэры, _raat, ָריס_,\n  { {0x7aed35d4, 0x2dd70025, 0x7bc1001a, 0x00000000}},  //   _saat, ابية_, fulu,\n  { {0x7bc1148e, 0xeb9700ed, 0x78a5006c, 0x00000000}},  //   gulu, лиќ_, _rehv,\n  { {0xb5fb0047, 0x6da601f9, 0x317e022b, 0x00000000}},  //   _szám, _бида, _hitz_,\n  { {0x7aed08b2, 0xaac60061, 0x00000000, 0x00000000}},  //   _vaat, _वारक,   ,\n  { {0x7bc12bd0, 0x2727006c, 0x6d580059, 0x00000000}},  //   bulu, _mõne_, _ukva,\n  { {0x7bc1000d, 0x7aed001c, 0x69cf0142, 0x00000000}},  //   culu, _taat, stce,\n  { {0xcb69007a, 0x765d00b0, 0x7bcf0035, 0x00000000}},  //   _جمعه_, _pysy, ăcut,\n  { {0x4ca70055, 0xb8db0044, 0x3ea600d9, 0x00000000}},  // [b7f0] _খাতু, _ইউ_, _meot_,\n  { {0x395a0022, 0x317e0203, 0x00000000, 0x00000000}},  //   _gkps_, _nitz_,   ,\n  { {0x765d0046, 0x61e9107b, 0xb97a009b, 0x00000000}},  //   _wysy, _ssel, _שנתי,\n  { {0x92eb0025, 0x14c701f5, 0x317e0288, 0x00000000}},  //   عراق_, _लावण, _aitz_,\n  { {0x7bc10ac8, 0x3f8524ac, 0x69360089, 0x00000000}},  //   zulu, _sulu_, zņem,\n  { {0xf77f011f, 0x1fb509ae, 0x7bc10180, 0x00000000}},  //   _hiç_, асир, yulu,\n  { {0x6b5d009d, 0x7bc10035, 0x1aec0044, 0x00000000}},  //   légu, xulu, টাতে_,\n  { {0xd3430123, 0xe0d300a1, 0x7bc1001a, 0x00000000}},  //   _افری, _گزر_, vulu,\n  { {0xfaff0023, 0xb5fb0010, 0x835200a1, 0x00000000}},  //   hmës_, _száj, _بھلا,\n  { {0x7bc1000d, 0x3f850795, 0x6ffc0035, 0x00000000}},  //   tulu, _tulu_, _băcă,\n  { {0x30840054, 0x237f07b9, 0xc1040025, 0x00000000}},  //   _المف, _kiuj_, _دولي,\n  { {0x7bc1228e, 0xb5fb01ca, 0x69360089, 0x00000000}},  //   rulu, _vzáj, rņem,\n  { {0xfe9a00b6, 0x7bc11a04, 0x395a0022, 0x00000000}},  //   _סיסמ, sulu, _pkps_,\n  { {0x8276007b, 0x7bc1001a, 0x7c8700a8, 0x00000000}},  //   יערע_, pulu, _суде,\n  { {0xbd6806e3, 0x291335d5, 0x225f35d6, 0x00000000}},  //   _срце_, _doxa_, _lyuk_,\n  { {0xd91000e9, 0x273f00b0, 0x6fd8007d, 0x00000000}},  //   _کیس_, vänä_, _महसू,\n\n  { {0x2ca70023, 0xfaff0023, 0xf77f0023, 0x00000000}},  // [b800] _kend_, rmët_, _diç_,\n  { {0x33f601be, 0x26cb0207, 0x2ca70c35, 0x00000000}},  //   ичес, _ecco_, _jend_,\n  { {0x2ca70065, 0x3958230d, 0x225f0022, 0x00000000}},  //   _mend_, mors_, _ayuk_,\n  { {0x395812a0, 0x317e010f, 0x6b5d0010, 0x00000000}},  //   lors_, _sitz_, ségv,\n  { {0x317e0288, 0x273f00b0, 0xdb0200f8, 0x00000000}},  //   _pitz_, sänä_, mslä,\n  { {0x39581ce2, 0xc05a01fb, 0xd12f2638, 0x00000000}},  //   nors_, кій_, ومن_,\n  { {0xf8b300b6, 0x443e059f, 0x98b10035, 0x00000000}},  //   קשה_, _ät_, liză_,\n  { {0x9c7c0209, 0x395800f4, 0xdb020a35, 0x00000000}},  //   ječa, hors_, nslä,\n  { {0x60ea0200, 0x39580066, 0x2ca7016e, 0x00000000}},  //   _имам_, kors_, _bend_,\n  { {0x39580129, 0x64430036, 0x7fd60088, 0x00000000}},  //   jors_, źnie, _віді,\n  { {0x395804bd, 0x291300c4, 0x2ca70146, 0x00000000}},  //   dors_, _roxa_, _dend_,\n  { {0x2ca70112, 0x6ffc0035, 0x00000000, 0x00000000}},  //   _eend_, _văcă,   ,\n  { {0x8d940054, 0x6f020b33, 0x39580039, 0x00000000}},  //   _التش, _inoc, fors_,\n  { {0xf77f008d, 0x395801c5, 0x00000000, 0x00000000}},  //   _siç_, gors_,   ,\n  { {0x6f02192b, 0x00000000, 0x00000000, 0x00000000}},  //   _knoc,   ,   ,\n  { {0x6c7b00a0, 0x2ca700bb, 0x370435d7, 0x00000000}},  //   _באופ, _zend_, очув,\n  { {0x39580133, 0xfaff0023, 0x00000000, 0x00000000}},  // [b810] bors_, smës_,   ,\n  { {0x2901081d, 0x39580666, 0x6b5d2496, 0x00000000}},  //   _unha_, cors_, régu,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x1fcc0055, 0x2b592387, 0x256f006c, 0x00000000}},  //   লবাস, nosc_, külg_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6f0235d8, 0x00000000, 0x00000000, 0x00000000}},  //   _anoc,   ,   ,\n  { {0x2ca735d9, 0x6458010e, 0x00000000, 0x00000000}},  //   _rend_, üvit,   ,\n  { {0x8505013d, 0x24890006, 0x395801c5, 0x00000000}},  //   रावट_, šimą_, zors_,\n  { {0x9c7c0059, 0xa1940b87, 0x2ca701a3, 0x00000000}},  //   veča, _матч, _pend_,\n  { {0x0d8201e1, 0x61fb0032, 0xd13101b7, 0x00000000}},  //   яльн, _irul, _عما_,\n  { {0x39582bf9, 0x2ca7008d, 0x7f850025, 0x00000000}},  //   vors_, _vend_, _الصن,\n  { {0x39580007, 0x80cd0061, 0x6f020197, 0x00000000}},  //   wors_, _साडे, _gnoc,\n  { {0x2ca735da, 0x3958230d, 0x3ead043e, 0x00000000}},  //   _tend_, tors_, maet_,\n  { {0x9c7c35db, 0x00000000, 0x00000000, 0x00000000}},  //   seča,   ,   ,\n  { {0x9c7c35dc, 0x7d0335dd, 0x7d1c35de, 0x00000000}},  //   lečn, _inns, örse,\n  { {0x39580bd3, 0xdc3901d5, 0x86990088, 0x00000000}},  //   sors_, _aħħa, итут_,\n  { {0xa3ca001c, 0x7ae6011f, 0x9c7c0428, 0x00000000}},  // [b820] ळून_, mekt, nečn,\n  { {0x98b10035, 0x69c6017b, 0x63b80142, 0x00000000}},  //   riză_, muke, ávno,\n  { {0x9418006b, 0x69c600b0, 0xe73a00d7, 0x00000000}},  //   _yerə_, luke, _бен_,\n  { {0x61fb009d, 0x6b5d32e2, 0x00000000, 0x00000000}},  //   _brul, légr,   ,\n  { {0x7ae6022b, 0x9c7c0209, 0x69c61e17, 0x00000000}},  //   iekt, ječn, nuke,\n  { {0x9f981418, 0x776401f3, 0x9c7c01ca, 0x00000000}},  //   авку_, llix, dečn,\n  { {0xdfd00025, 0x7416025a, 0x64a3003b, 0x00000000}},  //   ذية_, _اوزا, _хаса,\n  { {0x69c600b0, 0x80c4006e, 0x7d0335df, 0x00000000}},  //   kuke, _राके, _anns,\n  { {0xa63b0049, 0xb2261fe6, 0x64cf0061, 0x00000000}},  //   ָגיר, _умал, स्कळ,\n  { {0x69c615d6, 0xdce30006, 0x26c9016c, 0x00000000}},  //   duke, _minė, zgao_,\n  { {0x7ae601e2, 0x628500b9, 0x2cac0016, 0x00000000}},  //   fekt, ěhov, radd_,\n  { {0x8e860025, 0x3c0e006b, 0x6f020675, 0x00000000}},  //   _الإه, nəvi_, _unoc,\n  { {0xc33300b6, 0x9418006b, 0x69c635e0, 0x00000000}},  //   פוש_, _verə_, guke,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x0d3b00b6, 0xd6db0887, 0x6d5a016e, 0x00000000}},  //   _תגוב, лта_, mota,\n  { {0xf7700355, 0x6d5a002d, 0x7ae6011f, 0x00000000}},  //   فاق_, lota, cekt,\n  { {0xe6670256, 0xdb240010, 0x6d480325, 0x00000000}},  // [b830] ство, _írás, onda,\n  { {0x6d4803e3, 0x6aaf0051, 0xdb020748, 0x00000000}},  //   nnda, lacf, rslå,\n  { {0x6d48121f, 0x1aec0044, 0x68e70035, 0x00000000}},  //   inda, টারে_, mejd,\n  { {0x61fb00bb, 0x68e700ca, 0x321d0036, 0x00000000}},  //   _prul, lejd, tywy_,\n  { {0x6d5a21d4, 0x7e6208e0, 0x00000000, 0x00000000}},  //   kota, _nyop,   ,\n  { {0x9c7c0db7, 0x68e70091, 0x855700a1, 0x00000000}},  //   večn, nejd, _ایئر_,\n  { {0x6d5a0dec, 0x7ae635e1, 0x3d0c013d, 0x00000000}},  //   dota, yekt, ़ाने_,\n  { {0xef190364, 0x6d4835e2, 0x9c7c0224, 0x00000000}},  //   рми_, enda, tečn,\n  { {0x6b8a001f, 0x6d48009f, 0x6d5a04be, 0x00000000}},  //   _aufg, fnda, fota,\n  { {0x6d5a0059, 0x9c7c07ac, 0x1c450088, 0x00000000}},  //   gota, rečn, жном,\n  { {0x5fdd02fb, 0x9c7c0087, 0x63710039, 0x00000000}},  //   _महिल, sečn, gång,\n  { {0x6d480020, 0x69c603b6, 0x2fc701a2, 0x00000000}},  //   anda, tuke, mung_,\n  { {0x2fc735e3, 0x1d0901f9, 0x6b5d00f4, 0x00000000}},  //   lung_, _вели_, tégr,\n  { {0x69c60056, 0x7f5b00c4, 0x7d030bdc, 0x00000000}},  //   ruke, louq, _unns,\n  { {0x2fc7001f, 0x3cee001c, 0x2727006c, 0x00000000}},  //   nung_, _असते_, _sõna_,\n  { {0x7f49009d, 0x291e006c, 0x6b5d0010, 0x00000000}},  //   nneq, ötab_, ségr,\n  { {0xf09f001d, 0x68e70018, 0x2fc735e4, 0x00000000}},  // [b840] _đàn_, bejd, hung_,\n  { {0x2fc70390, 0x61e40279, 0xf53f0039, 0x00000000}},  //   kung_, çilm, _svår_,\n  { {0x2bb50089, 0x2fc701a3, 0x753e0032, 0x00000000}},  //   nāc_, jung_, ripz,\n  { {0x2fc7033b, 0xe1fa0aed, 0x672d0142, 0x00000000}},  //   dung_, иге_, chaj,\n  { {0x6d48009f, 0x6d5a0020, 0x00000000, 0x00000000}},  //   ynda, yota,   ,\n  { {0x6b840004, 0x2fc7010f, 0x6d5a002d, 0x00000000}},  //   _liig, fung_, xota,\n  { {0x2fc735e5, 0x6d5a00b0, 0x4fc605b8, 0x00000000}},  //   gung_, vota, іска,\n  { {0x67240006, 0x68e70036, 0x3f82000c, 0x00000000}},  //   nkij, zejd, öku_,\n  { {0x6d5a1759, 0xf77300b6, 0x1ee80014, 0x00000000}},  //   tota, וקה_, لوژی_,\n  { {0x2fc735e6, 0x236635e7, 0x6d4820c2, 0x00000000}},  //   bung_, lloj_, unda,\n  { {0x6d480028, 0x6d5a35e8, 0x6724317c, 0x00000000}},  //   rnda, rota, kkij,\n  { {0x6d5a002d, 0x67241a8f, 0x8ae70088, 0x00000000}},  //   sota, jkij, ціол,\n  { {0x6d5a01aa, 0x9f4c0051, 0x5a34165b, 0x00000000}},  //   pota, _ordú_, днят,\n  { {0x3f8c2887, 0x00000000, 0x00000000, 0x00000000}},  //   _kudu_,   ,   ,\n  { {0xfe6d00a1, 0x76ab26d0, 0x29050276, 0x00000000}},  //   _لگی_, итав_, ıla_,\n  { {0x9f4c0051, 0x7bc801a3, 0xa3e5013d, 0x00000000}},  //   _ardú_, mudu, _बैग_,\n  { {0x7bc81ece, 0x2fc7010f, 0x7d1835e9, 0x00000000}},  // [b850] ludu, zung_, _kovs,\n  { {0x672d000b, 0xf09f001d, 0x850500e8, 0x00000000}},  //   shaj, _đào_, राइट_,\n  { {0x3eb9010a, 0x80c4007d, 0x7bc8083a, 0x00000000}},  //   ųsti_, _राजे, nudu,\n  { {0x80cd01f5, 0x7d1800ca, 0x00000000, 0x00000000}},  //   _साहे, _lovs,   ,\n  { {0x2fc70170, 0x7bc80020, 0xa2cc007d, 0x00000000}},  //   wung_, hudu, _हार्,\n  { {0x2fc735ea, 0x3f8c01ca, 0x7bc8002d, 0x00000000}},  //   tung_, _budu_, kudu,\n  { {0xe8d90011, 0x2fc7010f, 0x63710039, 0x00000000}},  //   _quỹ_, uung_, tånd,\n  { {0x2fc735eb, 0xc6120055, 0x7bc801a3, 0x00000000}},  //   rung_, _সেটা_, dudu,\n  { {0x6b840004, 0x2fc735ec, 0x2d990065, 0x00000000}},  //   _riig, sung_, ëse_,\n  { {0x2fc704cb, 0xee3600a5, 0x00000000, 0x00000000}},  //   pung_, яны_,   ,\n  { {0x3c65109f, 0x798d00e7, 0x7bc8006c, 0x00000000}},  //   яког, _auaw, gudu,\n  { {0x09e60121, 0x1bec006e, 0x612f01e3, 0x00000000}},  //   помн, _जनरल_, _bølg,\n  { {0xb0d203d7, 0x7ed402fd, 0x6aad04d2, 0x00000000}},  //   _सामग, _آزما, _deaf,\n  { {0xfe70007a, 0x14c70061, 0x6f190719, 0x00000000}},  //   _شدن_, _लागण, _howc,\n  { {0xab99039d, 0x672400b0, 0x7bc8014a, 0x00000000}},  //   _اختر_, tkij, cudu,\n  { {0x612f02cc, 0xfaff0065, 0x3bba00a0, 0x00000000}},  //   _følg, llën_, _המקד,\n  { {0x672435ed, 0x6443000c, 0xb9930025, 0x00000000}},  // [b860] rkij, únin, _كليب,\n  { {0x6d4118a8, 0x9a3b009b, 0xe8ca01ab, 0x00000000}},  //   nila, _לתפק, _угол_,\n  { {0x64a300c0, 0x7af635ee, 0x00000000, 0x00000000}},  //   хаха, _kayt,   ,\n  { {0xeb96007b, 0x6d4120c0, 0x6f190026, 0x00000000}},  //   לדער_, hila, _nowc,\n  { {0x6d4118a8, 0x7af60082, 0x3f8c10c6, 0x00000000}},  //   kila, _mayt, _sudu_,\n  { {0x25a00169, 0x291a00b0, 0x7af600ea, 0x00000000}},  //   mpil_, _jopa_, _layt,\n  { {0xc448089d, 0x6d410169, 0x80cd0316, 0x00000000}},  //   _بیان_, dila, _सारे,\n  { {0x57fb009b, 0x7d1802e7, 0x7bc8013f, 0x00000000}},  //   מלצו, _sovs, vudu,\n  { {0x6aad0285, 0x7d180e3c, 0x4ac60061, 0x00000000}},  //   _reaf, _povs, _वाजव,\n  { {0x6d410760, 0x7bc801a3, 0x00000000, 0x00000000}},  //   gila, tudu,   ,\n  { {0xd12f031d, 0x6db501f6, 0x9dd300a1, 0x00000000}},  //   _حمل_, _aşağ, وزیش,\n  { {0x7bc8023a, 0x9c7c0802, 0x00000000, 0x00000000}},  //   rudu, lečk,   ,\n  { {0x6d41006a, 0xc333009b, 0xc882006b, 0x00000000}},  //   bila, תור_, əşə_,\n  { {0x291a02d5, 0x9c7c35ef, 0x256f006c, 0x00000000}},  //   _copa_, nečk, küla_,\n  { {0xd148001d, 0xf99f01aa, 0xaac601f5, 0x00000000}},  //   yễn_, spè_, _वाचक,\n  { {0xf09f0011, 0x8f9b00a3, 0x64910059, 0x00000000}},  //   _đàm_, מילי, zžič,\n  { {0x9f5e0023, 0x291a0087, 0xdb0200ea, 0x00000000}},  // [b870] _artë_, _fopa_, vslø,\n  { {0xf994012f, 0x612f0030, 0x9c7c32e0, 0x00000000}},  //   _ארץ_, _køle, ječk,\n  { {0x442735f0, 0x9c7c0861, 0x00000000, 0x00000000}},  //   án_, dečk,   ,\n  { {0x3943001e, 0x99990036, 0xf8ae00a1, 0x00000000}},  //   lijs_, mysł_, _مکہ_,\n  { {0x6f190b69, 0x291a1b5e, 0x6d410cca, 0x00000000}},  //   _rowc, _yopa_, yila,\n  { {0x39430089, 0x9c7c35f1, 0xe4c50167, 0x00000000}},  //   nijs_, rečj, _تصحی,\n  { {0x213e0065, 0x9c7c0e0d, 0x6d41016e, 0x00000000}},  //   _dmth_, sečj, vila,\n  { {0x6fcf0061, 0x394300bb, 0x850300a1, 0x00000000}},  //   संबं, hijs_, _توڑن,\n  { {0x6d41021e, 0x7af6013f, 0x3f86000a, 0x00000000}},  //   tila, _rayt, _diou_,\n  { {0x7af6005f, 0xfe420088, 0x00000000, 0x00000000}},  //   _sayt, тньо,   ,\n  { {0x291a0211, 0x7af6006b, 0x68ec006b, 0x00000000}},  //   _ropa_, _payt, _öndə,\n  { {0x2d8b008e, 0x7af6006b, 0xf1d1006e, 0x00000000}},  //   íces_, _qayt, _समान,\n  { {0x6d41322f, 0xdb1b021e, 0x291a00e5, 0x00000000}},  //   pila, yttö, _popa_,\n  { {0x61e40180, 0x612f068f, 0x6d41006b, 0x00000000}},  //   çili, _føle, qila,\n  { {0xb8f60183, 0x2d8f00ab, 0x257401a2, 0x00000000}},  //   _हा_, _huge_, näle_,\n  { {0x2d8700e0, 0x00000000, 0x00000000, 0x00000000}},  //   _hine_,   ,   ,\n  { {0xb5fb0047, 0x2d8f1fd2, 0x6db5006b, 0x00000000}},  // [b880] _szár, _juge_, _uşağ,\n  { {0xc8ca007a, 0x3eaf35f2, 0x25a02461, 0x00000000}},  //   _بودن_, _legt_, rpil_,\n  { {0x2d87113d, 0x25a00030, 0x2d8f0023, 0x00000000}},  //   _mine_, spil_, _luge_,\n  { {0x2d8735f3, 0x2bc50164, 0x660935f4, 0x00000000}},  //   _line_, _विना, _šeke,\n  { {0x3cee0061, 0xd00f0014, 0x9c7c0062, 0x00000000}},  //   _असले_, یله_, tečk,\n  { {0xcf9a012b, 0x2d8700ab, 0xd24f0025, 0x00000000}},  //   оји_, _nine_, جنه_,\n  { {0x39940073, 0x2d8f0109, 0x3d1101f5, 0x00000000}},  //   _läs_, _auge_, ताने_,\n  { {0x9c7c35f5, 0x2d8705e0, 0xadf435f6, 0x00000000}},  //   sečk, _aine_, епиш,\n  { {0x2d87000d, 0xc6200044, 0x9c7c35f7, 0x00000000}},  //   _bine_, _নেতা_, meči,\n  { {0x2d8735f8, 0x2b4004bd, 0x9c7c0059, 0x00000000}},  //   _cine_, _amic_, leči,\n  { {0x2d8705ba, 0x69c00387, 0xdb0213f6, 0x00000000}},  //   _dine_, ámen, mplê,\n  { {0x2d8708ba, 0x394300b5, 0x7e26007c, 0x00000000}},  //   _eine_, wijs_, _одеж,\n  { {0x2d870198, 0x69c00c47, 0x13e70044, 0x00000000}},  //   _fine_, šmen, ফিয়,\n  { {0x3eaf00b5, 0x2d870c42, 0x2b4000f6, 0x00000000}},  //   _zegt_, _gine_, _emic_,\n  { {0x394329dc, 0x67d4072b, 0x69c60056, 0x00000000}},  //   rijs_, кору, arke,\n  { {0x9c7c10ec, 0x2d87002d, 0x00000000, 0x00000000}},  //   ječi, _zine_,   ,\n  { {0x2d87011f, 0x7bda021e, 0xe784004c, 0x00000000}},  // [b890] _yine_, lttu, туро,\n  { {0x88c60055, 0x2bc50309, 0xe46b007c, 0x00000000}},  //   শ্বক, _विमा, ошел_,\n  { {0x7bda0052, 0x00000000, 0x00000000, 0x00000000}},  //   nttu,   ,   ,\n  { {0x25c401df, 0x9c7c0391, 0x7bda0fc8, 0x00000000}},  //   ürlü_, geči, ittu,\n  { {0x2bc50201, 0xa1eb0025, 0x332d0285, 0x00000000}},  //   _विभा, تراك_, _vlex_,\n  { {0x70c90204, 0x7d1c0039, 0xf6520104, 0x00000000}},  //   रलेल, örsl, _עצם_,\n  { {0x2d8f0c0e, 0x9c7c00d0, 0x13f4004d, 0x00000000}},  //   _suge_, beči, _изря,\n  { {0x2d8702cc, 0x69c605fe, 0x2d8f00f6, 0x00000000}},  //   _sine_, yrke, _puge_,\n  { {0x6ff3006b, 0x2d87112b, 0xf1a70245, 0x00000000}},  //   _məcə, _pine_, _іран,\n  { {0x28df006e, 0xfd110025, 0x3ea2014a, 0x00000000}},  //   _पॉलि, اجة_, ıkta_,\n  { {0x2d87001a, 0x6ed70061, 0xcb6a01c0, 0x00000000}},  //   _vine_, _यापु, зане_,\n  { {0x2d8700ab, 0x2d8f35f9, 0x81e20044, 0x00000000}},  //   _wine_, _tuge_, ধির_,\n  { {0xed4e0822, 0x2d87000d, 0xee2e02dc, 0x00000000}},  //   _бо_, _tine_, _сн_,\n  { {0x2eed07a5, 0x2a6901aa, 0x00000000, 0x00000000}},  //   leef_, _dyab_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x637802a0, 0x2a69000a, 0x2eed00d9, 0x00000000}},  //   míng, _fyab_, neef_,\n  { {0x7ae40061, 0x9c7c00ca, 0x69da0035, 0x00000000}},  // [b8a0] _ibit, veči, ătes,\n  { {0x63710039, 0x00000000, 0x00000000, 0x00000000}},  //   våna,   ,   ,\n  { {0x20c9007d, 0xb0c90316, 0x9c7c16d0, 0x00000000}},  //   _राजध, _राजग, teči,\n  { {0xeb9200bd, 0x00000000, 0x00000000, 0x00000000}},  //   אָס_,   ,   ,\n  { {0x9c7c0006, 0x00000000, 0x00000000, 0x00000000}},  //   reči,   ,   ,\n  { {0xdfd00076, 0x2eed0009, 0x7bda000c, 0x00000000}},  //   ليت_, eeef_, yttu,\n  { {0x50b70054, 0x7ae41d7a, 0xfbc70389, 0x00000000}},  //   ردود_, _obit, _حت_,\n  { {0x26d200e0, 0x20d2007d, 0x68ee0249, 0x00000000}},  //   ngyo_, _सावध, hebd,\n  { {0x020601fb, 0xdb0200f4, 0x657e009d, 0x00000000}},  //   _язан, mplè, omph,\n  { {0x7ae435fa, 0xe7b1013d, 0x00000000, 0x00000000}},  //   _abit, _जबलप,   ,\n  { {0x2eed05a6, 0x6c5435fb, 0x6f0b00e5, 0x00000000}},  //   beef_, ткну, _fngc,\n  { {0xf09f001d, 0xbacf0044, 0x7bda00b0, 0x00000000}},  //   _đài_, িজ্ঞ, rttu,\n  { {0x6ff3006b, 0xfaff0023, 0x00000000, 0x00000000}},  //   _rəcə, llëk_,   ,\n  { {0x7ae411a8, 0x63780919, 0x00000000, 0x00000000}},  //   _ebit, línd,   ,\n  { {0xc6a7025f, 0x78b5089f, 0x6ed70061, 0x00000000}},  //   ерзи, razv, _यामु,\n  { {0x64430036, 0x00000000, 0x00000000, 0x00000000}},  //   źnik,   ,   ,\n  { {0x27350039, 0x6126000c, 0xe8d90082, 0x00000000}},  // [b8b0] _lång_, _eðli, _quỳ_,\n  { {0x7afd0030, 0x48ab007c, 0x2727006c, 0x00000000}},  //   ldst, _этим_, _mõni_,\n  { {0x98c40057, 0x320400ab, 0xd404007c, 0x00000000}},  //   _ссыл, _army_, ляци,\n  { {0x7aef0219, 0xe8d90011, 0xa3b4013d, 0x00000000}},  //   nect, _tuỳ_, _फ़िर_,\n  { {0x69dd35fc, 0x6378027b, 0x7aef000d, 0x00000000}},  //   ntse, dínd, iect,\n  { {0xe61f001d, 0xa06902be, 0x69dd006c, 0x00000000}},  //   _ngôi_, мала_, itse,\n  { {0x2bc502fb, 0x6296011f, 0xb4cd0061, 0x00000000}},  //   _विधा, ıyor, ळली_,\n  { {0x7aef01cb, 0x7afd2c1a, 0x69dd006c, 0x00000000}},  //   ject, jdst, ktse,\n  { {0x2eed0007, 0x69cf055a, 0xa195005e, 0x00000000}},  //   reef_, juce, _разч,\n  { {0xdb0235fd, 0x7afd1cc8, 0x273501e3, 0x00000000}},  //   mplé, edst, _hånd_,\n  { {0x7aef030a, 0x27350073, 0xfaa6003b, 0x00000000}},  //   fect, _gång_, кано,\n  { {0x69dd0109, 0x637811c3, 0x2005010e, 0x00000000}},  //   ftse, ríng, _irli_,\n  { {0x69cf0521, 0x2f180010, 0x7ae401f3, 0x00000000}},  //   guce, _négy_, _vbit,\n  { {0x7afd0168, 0xa021006c, 0x6378013e, 0x00000000}},  //   adst, _ööse, míne,\n  { {0x1867012d, 0x69dd02ae, 0x63780051, 0x00000000}},  //   вари_, atse, líne,\n  { {0xc6c30680, 0xcf920049, 0xed590091, 0x00000000}},  //   ийск, שטן_, drži_,\n  { {0xceb20452, 0x69dd0009, 0x69cf0035, 0x00000000}},  // [b8c0] יין_, ctse, cuce,\n  { {0x61ed01d5, 0x5ea80044, 0x613400f6, 0x00000000}},  //   ħall, _গাছে, _xàld,\n  { {0xf651026c, 0x6b5d0010, 0x27350190, 0x00000000}},  //   لئے_, végz, _bånd_,\n  { {0x8c1a0049, 0x3329007e, 0x00000000, 0x00000000}},  //   וועי, нцін_,   ,\n  { {0x80da0044, 0x273500f8, 0x067523ee, 0x00000000}},  //   _যোগ্, _sång_, _буря,\n  { {0x64a3132e, 0x00000000, 0x00000000, 0x00000000}},  //   _вара,   ,   ,\n  { {0x154301fb, 0x7aef0219, 0x63bc0107, 0x00000000}},  //   _терм, yect, _uvrn,\n  { {0x7aef049a, 0xd007012b, 0x6d4300e5, 0x00000000}},  //   xect, ђење_, _amna,\n  { {0xe0da01f9, 0x629e00b9, 0x28d3007d, 0x00000000}},  //   _ова_, ěpod, _तालि,\n  { {0x69cf0107, 0x00000000, 0x00000000, 0x00000000}},  //   vuce,   ,   ,\n  { {0x776d0f10, 0x637800fa, 0xeb9700e2, 0x00000000}},  //   ylax, pínd, киќ_,\n  { {0x69cf00f4, 0x69dd0635, 0x7afd0190, 0x00000000}},  //   tuce, ttse, udst,\n  { {0x7afd0239, 0x9c7c00ca, 0x69dd00ea, 0x00000000}},  //   rdst, veču, utse,\n  { {0x69dd0da6, 0xdc5500a1, 0x69cf0253, 0x00000000}},  //   rtse, ئریک, ruce,\n  { {0x6d48029d, 0x660600b0, 0x27350190, 0x00000000}},  //   mida, _arkk, _låne_,\n  { {0x6d480682, 0x69dd01a2, 0x9f5e00f6, 0x00000000}},  //   lida, ptse, _ortí_,\n  { {0xb0d2001c, 0x65940242, 0x7c28005b, 0x00000000}},  // [b8d0] _सांग, иату, lydr,\n  { {0x6d480977, 0xb4cd0061, 0xdb0b00ea, 0x00000000}},  //   nida, ळले_, _avfø,\n  { {0x61e92419, 0xe3b00025, 0x6606003c, 0x00000000}},  //   _spel, قرن_, _erkk,\n  { {0x6d480518, 0xfaff0065, 0xe3b00025, 0x00000000}},  //   hida, ndë_, ترك_,\n  { {0x6d48286b, 0x6b8d0058, 0xe9df07da, 0x00000000}},  //   kida, _miag, ntú_,\n  { {0x3075007c, 0xe4f90049, 0x6d482378, 0x00000000}},  //   луйс, _אפֿש, jida,\n  { {0x6d482b05, 0xe9df0048, 0x9982013e, 0x00000000}},  //   dida, htú_, zyků_,\n  { {0xdb0200f4, 0x6b8d04cb, 0xe1f30014, 0x00000000}},  //   pplé, _niag, _پسر_,\n  { {0x6d4835fe, 0x61e935ff, 0x65650058, 0x00000000}},  //   fida, _upel, oohh,\n  { {0x5ba9012c, 0x672d3600, 0xacf50143, 0x00000000}},  //   нком_, hkaj, учиј,\n  { {0x6b8d0197, 0xe8d90082, 0x20050026, 0x00000000}},  //   _biag, _huỷ_, _urli_,\n  { {0x6b8d00b4, 0x6d48055f, 0x63783601, 0x00000000}},  //   _ciag, aida, píne,\n  { {0x2bc502fb, 0xfce5013b, 0x3cfc00d9, 0x00000000}},  //   _विवा, _боло, _favv_,\n  { {0x6d483602, 0x6f1b12d6, 0x82760049, 0x00000000}},  //   cida, ljuc, טערע_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x25a20022, 0x6b8d3603, 0x6f1d01a2, 0x00000000}},  //   _ptkl_, _giag, ösch,\n  { {0x6e293604, 0xe57a003b, 0x635c0235, 0x00000000}},  // [b8e0] nyeb, еза_, nčne,\n  { {0xdff30164, 0xd910025a, 0x2a3b00b3, 0x00000000}},  //   _आनंद_, _بیس_, _נעימ,\n  { {0x6ab60279, 0xceb900b9, 0xe4d70014, 0x00000000}},  //   _keyf, kař_, اومت_,\n  { {0xe73a0057, 0x6d480263, 0x672d0107, 0x00000000}},  //   _чем_, zida, ckaj,\n  { {0x6d48013f, 0x00000000, 0x00000000, 0x00000000}},  //   yida,   ,   ,\n  { {0x6d48027b, 0x6ab6009f, 0x66043605, 0x00000000}},  //   xida, _leyf, mvik,\n  { {0x6d481596, 0x6604000c, 0x9fe60076, 0x00000000}},  //   vida, lvik, استه,\n  { {0xcfe70025, 0x6d480066, 0x6e3b01a2, 0x00000000}},  //   افيه_, wida, fzub,\n  { {0x10a60256, 0x6d48049a, 0x66040173, 0x00000000}},  //   _бизн, tida, nvik,\n  { {0x6b8d1164, 0x2bc5007d, 0xb5f70049, 0x00000000}},  //   _siag, _विशा, נציג_,\n  { {0x205606b6, 0x409306ea, 0x6d480325, 0x00000000}},  //   _стар, _المر, rida,\n  { {0x8aa7007e, 0x2bc50309, 0xde960025, 0x00000000}},  //   ырод, _विरा, _إجاب,\n  { {0x6b8d3606, 0x7c3a0047, 0xfe7200a1, 0x00000000}},  //   _viag, sztr, _ادا_,\n  { {0x66040193, 0x68fe0129, 0xe9df0051, 0x00000000}},  //   dvik, _capd, rtú_,\n  { {0xf77306dd, 0xb8fd006e, 0x6b8d0181, 0x00000000}},  //   مار_, _डा_, _tiag,\n  { {0x96f800e3, 0x672d00e7, 0xd6d816b6, 0x00000000}},  //   лест_, ukaj, лту_,\n  { {0x6d5d009d, 0x672d055a, 0x2d8e0173, 0x00000000}},  // [b8f0] ésag, rkaj, _kife_,\n  { {0x672d12db, 0x6fea006b, 0x45d40088, 0x00000000}},  //   skaj, _məcb, софс,\n  { {0xa926001e, 0x53a40025, 0x672d016e, 0x00000000}},  //   _dažā, مملك, pkaj,\n  { {0x2d8e0038, 0x63780a06, 0x929d0036, 0x00000000}},  //   _life_, vínc, _małg,\n  { {0xd5af026c, 0xe8d90011, 0x8627007e, 0x00000000}},  //   _رہا_, _quỷ_, _сьне,\n  { {0x2cf3001c, 0x25a904d4, 0xc0c8012b, 0x00000000}},  //   _असेल_, mpal_, гуће_,\n  { {0x60de0263, 0x25a900e0, 0x98b10089, 0x00000000}},  //   òpma, lpal_, lizē_,\n  { {0x6d580107, 0x29040089, 0xcf250025, 0x00000000}},  //   _ajva, ēmai_, شرعي,\n  { {0xed590113, 0xef160783, 0xa28301b2, 0x00000000}},  //   кои_, рмы_, _ایشو,\n  { {0xd1670265, 0xed450088, 0x61fb011c, 0x00000000}},  //   _съби, рноп, _isul,\n  { {0x2d8e0263, 0x610b001e, 0x6e3b06f2, 0x00000000}},  //   _dife_, _vēlē, szub,\n  { {0x6a860745, 0xdb1b00fa, 0x8f9a034e, 0x00000000}},  //   илна, dutó, _סיני,\n  { {0x3da7044b, 0x3ead0065, 0x68fe0173, 0x00000000}},  //   _среб, mbet_, _papd,\n  { {0xdca50764, 0x3ead1ed6, 0x8b95005c, 0x00000000}},  //   _таки, lbet_, _крич,\n  { {0x290400b9, 0xdb1b0010, 0x25a91163, 0x00000000}},  //   ěma_, gutó, epal_,\n  { {0xb6a601be, 0x66040056, 0x7d1c18f7, 0x00000000}},  //   риал, tvik, örsv,\n  { {0x68fe006b, 0x5976007c, 0x3f8f0087, 0x00000000}},  // [b900] _tapd, _выну, _migu_,\n  { {0x66040368, 0x3ead014a, 0x499100a1, 0x00000000}},  //   rvik, hbet_, _ریفر,\n  { {0x66e6003b, 0x66040039, 0x3cdd013d, 0x00000000}},  //   _кона, svik, _खाने_,\n  { {0x78bc006c, 0xf3c9023c, 0x74130439, 0x00000000}},  //   larv, ابله_, توما,\n  { {0x637803fd, 0x27f80016, 0x09e40044, 0x00000000}},  //   gína, lwrn_, মিকা,\n  { {0x78bc3607, 0xfaff0065, 0x3f8f1a0f, 0x00000000}},  //   narv, llët_, _aigu_,\n  { {0x61fb3608, 0x613400f6, 0x00000000, 0x00000000}},  //   _esul, _càla,   ,\n  { {0x78bc01b1, 0x2327017f, 0x2d8e0ac8, 0x00000000}},  //   harv, _коси_, _sife_,\n  { {0xb5fb0047, 0xad260025, 0x3f8f002d, 0x00000000}},  //   _száz, لردو, _digu_,\n  { {0xdce10e0d, 0x3f8f000c, 0x61e23609, 0x00000000}},  //   bolč, _eigu_, mtol,\n  { {0x3ead30e7, 0x25740039, 0x80db0061, 0x00000000}},  //   bbet_, väll_, _नाते,\n  { {0x25a9001c, 0x27f80016, 0x2d8e2f94, 0x00000000}},  //   ypal_, dwrn_, _wife_,\n  { {0x61e2021e, 0x9da7005e, 0x2d960072, 0x00000000}},  //   ntol, _къща_, _трес,\n  { {0x27030011, 0x78bc20db, 0xdce30066, 0x00000000}},  //   _ổn_, garv, _tinġ,\n  { {0xd6db0242, 0xb5fb0010, 0xed57003b, 0x00000000}},  //   кта_, _nyár, _њој_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xdb020039, 0x78bc11b9, 0x58d5003b, 0x00000000}},  // [b910] tslö, barv, _лопт,\n  { {0x25a90145, 0x78bc0026, 0x929d0036, 0x00000000}},  //   rpal_, carv, _małe,\n  { {0x75880077, 0x25a902c1, 0xdb0200f8, 0x00000000}},  //   рств_, spal_, rslö,\n  { {0x2901011c, 0x25a90010, 0x52152485, 0x00000000}},  //   _haha_, ppal_, йдет,\n  { {0x877a00b6, 0x10a50751, 0xfaff0065, 0x00000000}},  //   _תארי, билн, llës_,\n  { {0xb34701d5, 0x69cf05d7, 0xe0d80088, 0x00000000}},  //   _saħħ, irce, иві_,\n  { {0x290117f6, 0xb5fb0047, 0xdb09000c, 0x00000000}},  //   _maha_, _gyár, nsdó,\n  { {0x81e60055, 0x63780161, 0x00000000, 0x00000000}},  //   _বছর_, pína,   ,\n  { {0xf2d200bd, 0x61fb08a9, 0x3ead02ba, 0x00000000}},  //   _מען_, _usul, rbet_,\n  { {0x68f5360a, 0x3ead0066, 0xdce301d5, 0x00000000}},  //   jezd, sbet_, _minħ,\n  { {0x68f5360b, 0x00000000, 0x00000000, 0x00000000}},  //   dezd,   ,   ,\n  { {0x5e950025, 0xdce70095, 0x00000000, 0x00000000}},  //   _الإط, ımıy,   ,\n  { {0x8e850054, 0x78bc250b, 0x290107b1, 0x00000000}},  //   _الشه, tarv, _baha_,\n  { {0x7d1c0073, 0x2b490943, 0x18a302dc, 0x00000000}},  //   örst, _emac_, зарм,\n  { {0x290101f6, 0x236d0039, 0x6d4f009d, 0x00000000}},  //   _daha_, _okej_, écau,\n  { {0x6abd0066, 0x78bc1603, 0xdceb0066, 0x00000000}},  //   casf, sarv, _bugħ,\n  { {0x3bc3005f, 0x7bc10030, 0x78bc0daa, 0x00000000}},  // [b920] lıq_, lslu, parv,\n  { {0xfaff0023, 0xba49013e, 0x00000000, 0x00000000}},  //   blës_, ulůž,   ,\n  { {0x7bc100b5, 0x69c40027, 0x4abe0061, 0x00000000}},  //   nslu, _hvie, _्याव,\n  { {0x61e2360c, 0x69c40006, 0x59af013d, 0x00000000}},  //   ttol, _kvie, जीकर,\n  { {0x21250087, 0x7ce1000a, 0x00000000, 0x00000000}},  //   _bolh_, _kňrč,   ,\n  { {0x61e2360d, 0x7bc1360e, 0x67260376, 0x00000000}},  //   rtol, kslu, _hokj,\n  { {0x443e1f82, 0x7bc100bb, 0x09e40044, 0x00000000}},  //   _åt_, jslu, মিটা,\n  { {0x69c4008e, 0x2903012d, 0x3bc3006b, 0x00000000}},  //   _ovie, zdja_, dıq_,\n  { {0x171b0049, 0x6b4f0173, 0x8e140088, 0x00000000}},  //   רופע, _lògè, ідоц,\n  { {0xccfa012b, 0x69cf016c, 0x2b490026, 0x00000000}},  //   ући_, vrce, _smac_,\n  { {0x29010004, 0x351b007b, 0x69c41228, 0x00000000}},  //   _raha_, אוינ, _avie,\n  { {0x290129c8, 0x447701ce, 0x00000000, 0x00000000}},  //   _saha_, מעיל_,   ,\n  { {0x69cf360f, 0x4f650025, 0xf2d30049, 0x00000000}},  //   urce, _بالف, הער_,\n  { {0x69c430e2, 0x63711565, 0xdd90009e, 0x00000000}},  //   _dvie, råni, _غوث_,\n  { {0x2903002b, 0x6d4a3610, 0x3cdd0309, 0x00000000}},  //   rdja_, _imfa, _खाते_,\n  { {0x69c40009, 0xdb09000c, 0x00000000, 0x00000000}},  //   _fvie, rsdó,   ,\n  { {0x2901006c, 0x7aed3611, 0x69c0008e, 0x00000000}},  // [b930] _taha_, _ibat, ámet,\n  { {0xdb1b0051, 0x6f020051, 0x200c009d, 0x00000000}},  //   istí, _laoc, _ordi_,\n  { {0x69c43612, 0x69c00089, 0x00000000, 0x00000000}},  //   _zvie, šmet,   ,\n  { {0x6f020107, 0x60c81042, 0xd25101af, 0x00000000}},  //   _naoc, _addm, ونا_,\n  { {0x6d4a044f, 0x4cd00044, 0x200c002d, 0x00000000}},  //   _omfa, ত্যু, _ardi_,\n  { {0xdb1b0f6e, 0x7bc112de, 0x3bc3006b, 0x00000000}},  //   nstâ, yslu, yıq_,\n  { {0x69a002fb, 0x7aed023a, 0x200c0471, 0x00000000}},  //   _गंभी, _obat, _crdi_,\n  { {0xf838019b, 0x3eb9009f, 0x200701ae, 0x00000000}},  //   מנות_, úst_, rvni_,\n  { {0x200c0a3f, 0x00000000, 0x00000000, 0x00000000}},  //   _erdi_,   ,   ,\n  { {0x7aed001c, 0x3bc3005f, 0x7bc10250, 0x00000000}},  //   _abat, tıq_, tslu,\n  { {0x81bb0044, 0x69c431b3, 0xc4d2009b, 0x00000000}},  //   _অমি_, _svie, וגי_,\n  { {0xf8a900b6, 0x7bc1009f, 0xcb6a00ed, 0x00000000}},  //   _יש_, rslu, раме_,\n  { {0x2bc502fb, 0xfe700025, 0x91620082, 0x00000000}},  //   _विका, _كده_, _sử_,\n  { {0x7aed006c, 0x3ebf293e, 0x2d9f00f6, 0x00000000}},  //   _ebat, laut_, mque_,\n  { {0x273c002a, 0x2d9f00f4, 0x67260093, 0x00000000}},  //   _líne_, lque_, _pokj,\n  { {0x7d0302bd, 0x3ebf22d7, 0x00000000, 0x00000000}},  //   _hans, naut_,   ,\n  { {0x7d031382, 0x2d9f3613, 0xa52601fb, 0x00000000}},  // [b940] _kans, nque_, омад,\n  { {0x2904001e, 0x7aed0065, 0x2bed03d7, 0x00000000}},  //   ēmas_, _zbat, _जहां_,\n  { {0x3ebf0036, 0x0d3a0049, 0x00000000, 0x00000000}},  //   kaut_, סגעב,   ,\n  { {0x7d031502, 0x4c6c0049, 0x386d01a2, 0x00000000}},  //   _lans, נדאַ, ßere_,\n  { {0x26c00032, 0x3ebf00e0, 0xdb210010, 0x00000000}},  //   maio_, daut_, áték,\n  { {0x752710c1, 0x26c00207, 0x257400b0, 0x00000000}},  //   _gojz, laio_, käli_,\n  { {0xdfd00054, 0x256f0047, 0x3ebf00f4, 0x00000000}},  //   رية_, rült_, faut_,\n  { {0x7d03049b, 0x26c00197, 0x03670242, 0x00000000}},  //   _aans, naio_, _диск_,\n  { {0x7d030480, 0x320d0339, 0x2600006e, 0x00000000}},  //   _bans, _grey_, रिटी_,\n  { {0x7aed0cc8, 0x6440006b, 0x200c0059, 0x00000000}},  //   _sbat, _əmin, _trdi_,\n  { {0x7d030018, 0x3ebf010f, 0x2d9f263c, 0x00000000}},  //   _dans, baut_, aque_,\n  { {0x3ebf3614, 0x6d4f009d, 0x00000000, 0x00000000}},  //   caut_, écar,   ,\n  { {0xde03012b, 0x7d030056, 0x2d9f117e, 0x00000000}},  //   _опци, _fans, cque_,\n  { {0x7d030cb2, 0x6d4a05e9, 0x00000000, 0x00000000}},  //   _gans, _umfa,   ,\n  { {0x28dc013d, 0xdb1b010e, 0x7aed002b, 0x00000000}},  //   _बारि, dutö, _tbat,\n  { {0x4c3b00b6, 0x7d0301aa, 0x7aed3615, 0x00000000}},  //   _כתוב, _zans, _ubat,\n  { {0xd49b003b, 0x6d5a3616, 0x7d03014a, 0x00000000}},  // [b950] аре_, onta, _yans,\n  { {0x25a60051, 0x00000000, 0x00000000, 0x00000000}},  //   íola_,   ,   ,\n  { {0xa2f501fb, 0x6d5a0cc9, 0x273c0051, 0x00000000}},  //   зпеч, inta, _síne_,\n  { {0x2cbc00ea, 0x320d0133, 0x659501ee, 0x00000000}},  //   _levd_, _prey_, _наму,\n  { {0x86350049, 0xf1d50061, 0x10a500e2, 0x00000000}},  //   _זאָג_, डूंन, пилн,\n  { {0x9f6501e5, 0x00000000, 0x00000000, 0x00000000}},  //   _útúr_,   ,   ,\n  { {0x7d0300b0, 0xc9540097, 0x91a900a1, 0x00000000}},  //   _rans, ומס_, جنڈے_,\n  { {0x7d033617, 0x660f0ebe, 0x257405e0, 0x00000000}},  //   _sans, _krck, väli_,\n  { {0x7d033618, 0x3ebf00db, 0x30a70242, 0x00000000}},  //   _pans, raut_, _древ,\n  { {0x2d9f0325, 0x1c4502d3, 0x3ebf009d, 0x00000000}},  //   rque_, зном, saut_,\n  { {0xc4d2007b, 0x7d030056, 0x2d9f032c, 0x00000000}},  //   עגט_, _vans, sque_,\n  { {0x6d5a19dd, 0x2d990489, 0x6fea005f, 0x00000000}},  //   anta, íses_, _məcl,\n  { {0x7d0300b0, 0x26c00026, 0x81e90044, 0x00000000}},  //   _tans, vaio_, যিক_,\n  { {0x7d0301e3, 0x00000000, 0x00000000, 0x00000000}},  //   _uans,   ,   ,\n  { {0x26c00197, 0x25ab00e7, 0xdb1b1e71, 0x00000000}},  //   taio_, _atcl_, ustã,\n  { {0x2d9d00e7, 0xac16003b, 0x06d40044, 0x00000000}},  //   _kuwe_, _хоћу_, হ্নি,\n  { {0x26c00198, 0x3ebd002b, 0x6b840058, 0x00000000}},  // [b960] raio_, _mewt_, _ihig,\n  { {0x649a2472, 0x26c00181, 0x69c63619, 0x00000000}},  //   стар_, saio_, mske,\n  { {0x389b007b, 0x69c60235, 0x26c0004a, 0x00000000}},  //   _ליינ, lske, paio_,\n  { {0x637800b9, 0x929d0036, 0x2d9d00bb, 0x00000000}},  //   mínk, _pała, _ouwe_,\n  { {0x2d9d0343, 0x69c60c30, 0x660f0107, 0x00000000}},  //   _nuwe_, nske, _grck,\n  { {0x6724089f, 0x98a40006, 0x867b009b, 0x00000000}},  //   ljij, ėmė_, _לרכו,\n  { {0xb4ca0164, 0x653b0049, 0x00000000, 0x00000000}},  //   ोली_, _פעלד,   ,\n  { {0x6724002b, 0x69c6109a, 0xe80d007d, 0x00000000}},  //   njij, kske, हिता_,\n  { {0x4444010f, 0x69c61a2d, 0x76440180, 0x00000000}},  //   lz_, jske, nziy,\n  { {0x44440061, 0x613d03eb, 0x6fea006b, 0x00000000}},  //   oz_, _pèle, _həcm,\n  { {0x4444001f, 0x6d5a0c7a, 0x4c9400e2, 0x00000000}},  //   nz_, rnta, ќинс,\n  { {0x44440668, 0xdee60069, 0x6b841063, 0x00000000}},  //   iz_, _ходи, _chig,\n  { {0x6e930054, 0x3e8500f4, 0x6724361a, 0x00000000}},  //   _كلما, rêté_, djij,\n  { {0x2bc50201, 0xfbcf00a2, 0x3f9e361b, 0x00000000}},  //   _विचा, ختی_, _kutu_,\n  { {0x4444361c, 0xa4270044, 0x63a9012d, 0x00000000}},  //   jz_, _মধ্য_, _čeno,\n  { {0x4444361d, 0x7bda1577, 0x3f9e0169, 0x00000000}},  //   dz_, mutu, _mutu_,\n  { {0x444406d2, 0x7bda08b2, 0x69c60010, 0x00000000}},  // [b970] ez_, lutu, cske,\n  { {0x272e000c, 0x2a58009b, 0xe4a40143, 0x00000000}},  //   _sýnt_, _מבחן_, ерцо,\n  { {0x25f903d7, 0xe5700076, 0x9f5e0211, 0x00000000}},  //   _उनकी_, اطق_, _esté_,\n  { {0x660f041a, 0x25ab361e, 0x00000000, 0x00000000}},  //   _trck, _ttcl_,   ,\n  { {0x7bda17b8, 0x4444002d, 0x62341e6a, 0x00000000}},  //   hutu, az_, нецу,\n  { {0x7bda02b1, 0x3f9e0964, 0x4444361f, 0x00000000}},  //   kutu, _butu_, bz_,\n  { {0x44440046, 0x64e20061, 0x660d0039, 0x00000000}},  //   cz_, _पातळ, lvak,\n  { {0xee3900aa, 0x273c05ee, 0x3f9e1378, 0x00000000}},  //   жни_, _kína_, _dutu_,\n  { {0x4433098e, 0x660d3620, 0x6b84005b, 0x00000000}},  //   lyx_, nvak, _rhig,\n  { {0x273c000c, 0x6b840f87, 0x7bda2174, 0x00000000}},  //   _mína_, _shig, futu,\n  { {0x7bda023e, 0x60c31198, 0x88e30044, 0x00000000}},  //   gutu, manm, য়াক,\n  { {0x60c3049d, 0x09e20044, 0x929d0036, 0x00000000}},  //   lanm, যবসা, _mało,\n  { {0xba230088, 0x612f05b7, 0x6f0900d9, 0x00000000}},  //   вдяк, _følt, mdec,\n  { {0x69c6068f, 0x7bda0390, 0x6f0906b9, 0x00000000}},  //   rske, butu, ldec,\n  { {0x6d41002a, 0x69c62228, 0x66e601e1, 0x00000000}},  //   mhla, sske, мова,\n  { {0x6f09001a, 0x629b0011, 0x2574010f, 0x00000000}},  //   ndec, _nguo, hält_,\n  { {0x09e20055, 0xdb1b009f, 0xa5f700ed, 0x00000000}},  // [b980] যবহা, fstæ, меѓу_,\n  { {0x44440577, 0x63780181, 0x25740039, 0x00000000}},  //   tz_, míni, jält_,\n  { {0xd91b052f, 0x68fc0169, 0x60c30190, 0x00000000}},  //   _וויל, merd, danm,\n  { {0x44440661, 0x68fc23c7, 0x273c01e5, 0x00000000}},  //   rz_, lerd, _fína_,\n  { {0x4444268a, 0x7d080039, 0x6f090016, 0x00000000}},  //   sz_, ydds, ddec,\n  { {0x44440061, 0x68fc0207, 0x60c31ba1, 0x00000000}},  //   pz_, nerd, ganm,\n  { {0xd01003ec, 0x2b0e03d7, 0x7ae4040d, 0x00000000}},  //   الب_, ियाँ_, _ocit,\n  { {0x68fc0016, 0x7bda03b6, 0x00000000, 0x00000000}},  //   herd, vutu,   ,\n  { {0x10a6007c, 0x929d0036, 0x62800550, 0x00000000}},  //   _жизн, _zało, _uzmo,\n  { {0x6d41002a, 0x7bda006a, 0x3f9e0007, 0x00000000}},  //   ghla, tutu, _tutu_,\n  { {0x68fc11fe, 0x660d01c5, 0x6f092297, 0x00000000}},  //   derd, zvak, bdec,\n  { {0x2cb1005d, 0x7bda01a3, 0x7ae400ea, 0x00000000}},  //   ızda_, rutu, _ccit,\n  { {0x7bda0004, 0x68fc122f, 0x6d413621, 0x00000000}},  //   sutu, ferd, bhla,\n  { {0x6d41001f, 0x7bda033b, 0x68fc0ee6, 0x00000000}},  //   chla, putu, gerd,\n  { {0x273c009f, 0x44330061, 0xf7730647, 0x00000000}},  //   _sína_, xyx_, نار_,\n  { {0x60c33622, 0xb8e6013d, 0x212c0023, 0x00000000}},  //   zanm, _उड़_, _lodh_,\n  { {0x7afd0027, 0x68fc3623, 0xa3dc0061, 0x00000000}},  // [b990] mest, berd, णूस_,\n  { {0x69dd0004, 0x660901ee, 0x660d29f9, 0x00000000}},  //   muse, _šeks, rvak,\n  { {0x69dd0004, 0xdb1b158f, 0xfe080011, 0x00000000}},  //   luse, rstæ, _lữ_,\n  { {0x44330912, 0x6d4101ca, 0x7bc80009, 0x00000000}},  //   ryx_, zhla, isdu,\n  { {0xfe08001d, 0x69dd0004, 0x9294008b, 0x00000000}},  //   _nữ_, nuse, вацц,\n  { {0xdb1b09b0, 0x613d0173, 0xc0e20184, 0x00000000}},  //   lstä, _bèla, гошк,\n  { {0x69dd0193, 0x60c3006b, 0x6f09010f, 0x00000000}},  //   huse, ranm, tdec,\n  { {0xdb1b0002, 0x7afd3624, 0x2d8c00c7, 0x00000000}},  //   nstä, jest, emde_,\n  { {0x7afd021e, 0x6f0907f2, 0x6d410048, 0x00000000}},  //   dest, rdec, thla,\n  { {0x69dd3625, 0xfe08001d, 0x0c25004c, 0x00000000}},  //   duse, _dữ_, емон,\n  { {0x68fc0c46, 0x116a01ef, 0x69dd009d, 0x00000000}},  //   verd, _علمی_, euse,\n  { {0x7afd0168, 0x60c10329, 0xf412007b, 0x00000000}},  //   gest, _helm, אפט_,\n  { {0x68fc0168, 0x69dd0004, 0x60c13626, 0x00000000}},  //   terd, guse, _kelm,\n  { {0xf1b2019b, 0xfc31039d, 0xfce50545, 0x00000000}},  //   רסם_, _محب_, _чоко,\n  { {0x60c1059a, 0xdb1b01a2, 0x00000000, 0x00000000}},  //   _melm, fstä,   ,\n  { {0x69dd2f30, 0x14e20061, 0x68fc006c, 0x00000000}},  //   buse, _पाहण, serd,\n  { {0xcf92061e, 0x6996041f, 0xceb20104, 0x00000000}},  // [b9a0] רטן_, _прох, טין_,\n  { {0xec09001d, 0xe5773627, 0x60c101c3, 0x00000000}},  //   _kế_, езу_, _nelm,\n  { {0x2b4000ca, 0xccf2009b, 0x59d80061, 0x00000000}},  //   _klic_, רכב_, भंकर,\n  { {0x44260166, 0xdcea0066, 0x661b01ed, 0x00000000}},  //   ćo_, _tifħ, _šuke,\n  { {0x2d87001f, 0x200504cb, 0x635c0059, 0x00000000}},  //   _ohne_, _asli_, nčni,\n  { {0x7afd0046, 0x59d30061, 0xdb1b0945, 0x00000000}},  //   zest, _तिसर, mstå,\n  { {0x333f00f4, 0x60c10056, 0x7afd0056, 0x00000000}},  //   _flux_, _delm, yest,\n  { {0x7afd049a, 0x60c10004, 0x8003007c, 0x00000000}},  //   xest, _eelm, учше,\n  { {0xdb1b0c88, 0x60c109e9, 0x91620011, 0x00000000}},  //   nstå, _felm, _từ_,\n  { {0x7afd0036, 0x60c1011f, 0x69dd0004, 0x00000000}},  //   west, _gelm, vuse,\n  { {0x2b40003b, 0x69dd0061, 0x7afd0585, 0x00000000}},  //   _blic_, wuse, test,\n  { {0x69dd0004, 0x26c23628, 0xec090011, 0x00000000}},  //   tuse, _neko_, _dế_,\n  { {0x7afd0585, 0xdb1b0039, 0x60c1004a, 0x00000000}},  //   rest, vstä, _yelm,\n  { {0x7afd0f3c, 0x69dd006c, 0xe80d0061, 0x00000000}},  //   sest, ruse, हिला_,\n  { {0x69dd2153, 0xdb1b0002, 0xd7f81c4a, 0x00000000}},  //   suse, tstä, нут_,\n  { {0x69dd1f37, 0x26c21e36, 0x7d0a000c, 0x00000000}},  //   puse, _ceko_, _hafs,\n  { {0xdb1b03a9, 0x7d0a0065, 0xa5f80088, 0x00000000}},  // [b9b0] rstä, _kafs, нету_,\n  { {0xdb1b0a5d, 0xfaff0007, 0x6fea006b, 0x00000000}},  //   sstä, leë_, _təch,\n  { {0xec090011, 0x9f4706b8, 0x660600e0, 0x00000000}},  //   _xế_, stné_, _eskk,\n  { {0xd6db222e, 0x60c101aa, 0xd3240077, 0x00000000}},  //   _это_, _selm, льчи,\n  { {0x39840039, 0xa2cd0164, 0x52740143, 0x00000000}},  //   lösa_, दृष्, лушу,\n  { {0x7d0a16da, 0xd18401e1, 0x200a002b, 0x00000000}},  //   _nafs, глій, _ġbir_,\n  { {0xe81402d2, 0x60c1004f, 0x3cfe00c4, 0x00000000}},  //   डिया_, _velm, detv_,\n  { {0x27e70073, 0x4394007c, 0x60c12ba6, 0x00000000}},  //   _ännu_, _басс, _welm,\n  { {0x60c101aa, 0x5f760025, 0x1ea80014, 0x00000000}},  //   _telm, خميس_, رايي_,\n  { {0x29cd0027, 0x635c0059, 0x6aad0258, 0x00000000}},  //   dľa_, včni, _afaf,\n  { {0xcb6a005e, 0xbb4600ed, 0x2b403629, 0x00000000}},  //   дане_, венк, _plic_,\n  { {0xec090082, 0x00000000, 0x00000000, 0x00000000}},  //   _vế_,   ,   ,\n  { {0x26c200ca, 0xee2e00d7, 0x613400f6, 0x00000000}},  //   _reko_, _тн_, _vàlv,\n  { {0x49990057, 0xec09001d, 0x23d102fb, 0x00000000}},  //   ется_, _tế_, _हिंद,\n  { {0x929d0036, 0x69ce0061, 0x8c420242, 0x00000000}},  //   _całk, _तिकी, _веще,\n  { {0xdb1b342b, 0x752e0521, 0x41d2013d, 0x00000000}},  //   tstå, _sobz, _सिलस,\n  { {0x9676008b, 0x6f0b00d2, 0x00000000, 0x00000000}},  // [b9c0] тыві, _magc,   ,\n  { {0xdb1b03bd, 0x1dd4001c, 0xb4cc0061, 0x00000000}},  //   rstå, _दिसत, ळणे_,\n  { {0xd7ca007a, 0xd4f5007e, 0x26c20997, 0x00000000}},  //   _توجه_, ыяты, _teko_,\n  { {0xdb1b17db, 0xdceb0089, 0x6f0b0087, 0x00000000}},  //   pstå, _augļ, _nagc,\n  { {0xe297012b, 0xcb130097, 0x7af60065, 0x00000000}},  //   вац_, ילא_, _mbyt,\n  { {0x6604049a, 0x395800f4, 0xdfd005f3, 0x00000000}},  //   mwik, nirs_, ميت_,\n  { {0xa87a0049, 0x3cfe0203, 0x7d0a01e5, 0x00000000}},  //   ואַר, vetv_, _rafs,\n  { {0x3ce7000a, 0x6f0b10f0, 0x00000000, 0x00000000}},  //   _acnv_, _cagc,   ,\n  { {0x613400d4, 0xf4e40044, 0x6f0b362a, 0x00000000}},  //   _bàlt, নজীব, _dagc,\n  { {0x27fa00ca, 0x00000000, 0x00000000, 0x00000000}},  //   _oppn_,   ,   ,\n  { {0x3cfe000a, 0xa3b60061, 0x6aad01a2, 0x00000000}},  //   retv_, चीच_, _pfaf,\n  { {0xee3a012b, 0x005700b3, 0x613400f6, 0x00000000}},  //   _оне_, _בשבת_, _vàlu,\n  { {0x7d0a362b, 0x6d86000c, 0x6f0000e7, 0x00000000}},  //   _tafs, rðab, memc,\n  { {0xf99f01aa, 0x27fa0093, 0x672f2db7, 0x00000000}},  //   twèb_, _bppn_, _socj,\n  { {0x63780b32, 0x57a4362c, 0x3cfb009b, 0x00000000}},  //   níns, ишта, _חלונ,\n  { {0x2d9c0606, 0xd6d80099, 0x48e30055, 0x00000000}},  //   _hive_, кту_, য়ের,\n  { {0x69c000c4, 0xf794007e, 0x66040058, 0x00000000}},  // [b9d0] âmet, ратэ, gwik,\n  { {0xf8b702fb, 0x7af6197c, 0x2d9c14f9, 0x00000000}},  //   _अभिय, _zbyt, _jive_,\n  { {0x82d900d7, 0xc7ab0025, 0x7afa0010, 0x00000000}},  //   едес_, _تدخل_, őtte,\n  { {0x6f000387, 0x6604000a, 0x00000000, 0x00000000}},  //   jemc, bwik,   ,\n  { {0xd179007e, 0x66040146, 0x66f600a3, 0x00000000}},  //   нскі_, cwik, _גמרא_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7ff50380, 0x5ebe0044, 0xdb020056, 0x00000000}},  //   استا, োলনে, pplø,\n  { {0xaf0516e0, 0x64580036, 0x00000000, 0x00000000}},  //   упил, ócił,   ,\n  { {0x2018000c, 0x6f0b0190, 0x9f5e00f6, 0x00000000}},  //   _árin_, _vagc, _artó_,\n  { {0x9f5e04bd, 0x63780051, 0x7f42301e, 0x00000000}},  //   _està_, sínt, _eloq,\n  { {0x6f0b0e89, 0x7f42362d, 0xccf800b9, 0x00000000}},  //   _tagc, _floq, mněl_,\n  { {0x660400e0, 0x273500f8, 0xa09a0049, 0x00000000}},  //   ywik, _måns_, _װינט,\n  { {0x2d9c00ab, 0x9f4701dc, 0xdd8e0123, 0x00000000}},  //   _five_, ntní_, توی_,\n  { {0x2d9c1ef2, 0x61fb01c3, 0x9876003b, 0x00000000}},  //   _give_, _mpul, губљ,\n  { {0x7d01101e, 0x1867026b, 0x39580026, 0x00000000}},  //   mels, гари_, rirs_,\n  { {0x290c0119, 0x6604049b, 0x3958028c, 0x00000000}},  //   žda_, twik, sirs_,\n  { {0x395800f6, 0x93cb00a1, 0x056635ac, 0x00000000}},  // [b9e0] pirs_, ہانہ_, гван,\n  { {0x7d010190, 0x66040116, 0x27350039, 0x00000000}},  //   nels, rwik, _sånt_,\n  { {0x48e9001c, 0x0d3a0049, 0x6604055f, 0x00000000}},  //   _जातो_, עגעב, swik,\n  { {0xb7db0097, 0x71a6007e, 0xf26a0745, 0x00000000}},  //   _אקטי, гадз, ниел_,\n  { {0x7d010239, 0x00000000, 0x00000000, 0x00000000}},  //   kels,   ,   ,\n  { {0x64a3008b, 0x7d010030, 0x00000000, 0x00000000}},  //   _гара, jels,   ,\n  { {0x2d9c0263, 0x7d0127a1, 0x6f00362e, 0x00000000}},  //   _rive_, dels, temc,\n  { {0x2d9c00ca, 0x6d430203, 0x2dd4007c, 0x00000000}},  //   _sive_, _alna, ажир,\n  { {0x7d0102fa, 0x443a175b, 0xd266004d, 0x00000000}},  //   fels, lyp_, _скай,\n  { {0x7d01068f, 0x61e20006, 0xdb1b08e0, 0x00000000}},  //   gels, muol, lstø,\n  { {0x9f5e362f, 0x7ee60025, 0x0577009b, 0x00000000}},  //   _está_, _مكان, רגים_,\n  { {0xe9f90082, 0x6d43013f, 0x543b0049, 0x00000000}},  //   _ngả_, _elna, געטא,\n  { {0x7d0123dc, 0x2d9c0181, 0x2b593630, 0x00000000}},  //   bels, _tive_, risc_,\n  { {0xdd8f0d0b, 0x7d010089, 0xdd9004b1, 0x00000000}},  //   _فون_, cels, _بوت_,\n  { {0x273c001d, 0x3f9d1163, 0x6d480051, 0x00000000}},  //   _kính_, _yiwu_, mhda,\n  { {0x6d5a0d8a, 0x8c1b00b3, 0x61e23631, 0x00000000}},  //   lita, _טווי, kuol,\n  { {0x613d0263, 0x6b8d22dc, 0x7c3a00ea, 0x00000000}},  // [b9f0] _sèlm, _ihag, lytr,\n  { {0x6d5a2c49, 0x273c0011, 0x6d480082, 0x00000000}},  //   nita, _lính_, nhda,\n  { {0x2903023a, 0x61fb00b5, 0x02d00061, 0x00000000}},  //   meja_, _spul, हणून,\n  { {0x6d5a000b, 0x5215022a, 0x7d0100bb, 0x00000000}},  //   hita, идет, zels,\n  { {0x6d5a0149, 0x90c5008b, 0x7d01032e, 0x00000000}},  //   kita, абле, yels,\n  { {0x6d5a1102, 0xdb04008d, 0x672d0209, 0x00000000}},  //   jita, _punë, ljaj,\n  { {0x7d0111b6, 0x9f4713c7, 0x4ab50061, 0x00000000}},  //   vels, stní_, ंडाव,\n  { {0x613d01aa, 0x7d010fb6, 0xcb140061, 0x00000000}},  //   _kèlk, wels, _तोंड_,\n  { {0x6d5a3632, 0x7d010224, 0x3f83001e, 0x00000000}},  //   fita, tels, ēju_,\n  { {0x6d5a3633, 0xa3dc0061, 0x6d480051, 0x00000000}},  //   gita, णूक_, ghda,\n  { {0x7d0100eb, 0x69dd0112, 0x6b8d0051, 0x00000000}},  //   rels, erse, _bhag,\n  { {0x7d01004e, 0x6b8d0020, 0x672d008e, 0x00000000}},  //   sels, _chag, jjaj,\n  { {0x9f04026c, 0x672d003b, 0x6d5a01cb, 0x00000000}},  //   _دونو, djaj, bita,\n  { {0x6d5a04bd, 0x6d4823bb, 0x2903006c, 0x00000000}},  //   cita, chda, geja_,\n  { {0x6c790049, 0x63a70059, 0x5c790049, 0x00000000}},  //   _באַפ, _nujn, _באַה,\n  { {0x6b8d01f3, 0x00000000, 0x00000000, 0x00000000}},  //   _ghag,   ,   ,\n  { {0x4b7b052f, 0x6aa43634, 0x7b080089, 0x00000000}},  // [ba00] _באקו, _igif, āstī,\n  { {0xf53f05cb, 0x443a0f86, 0x14c80014, 0x00000000}},  //   _står_, typ_, اهای_,\n  { {0x69c40066, 0x00000000, 0x00000000, 0x00000000}},  //   _hwie,   ,   ,\n  { {0x6d5a28f8, 0x1bf6007b, 0x2bf600a3, 0x00000000}},  //   zita, יצער_, ימען_,\n  { {0x65770061, 0x6d5a08cb, 0xdb1b01e3, 0x00000000}},  //   boxh, yita, rstø,\n  { {0x6d5a049a, 0x61e20419, 0x41530088, 0x00000000}},  //   xita, ruol, овіс,\n  { {0x4034008b, 0x6d5a3635, 0x61e23636, 0x00000000}},  //   сейс, vita, suol,\n  { {0x61e22bb3, 0x29032e3f, 0xd1160061, 0x00000000}},  //   puol, zeja_, _धोरण_,\n  { {0x6d5a04bd, 0x6b8d018e, 0xe2970088, 0x00000000}},  //   tita, _rhag, _ват_,\n  { {0x69dd037e, 0x6b8d3637, 0x23660091, 0x00000000}},  //   vrse, _shag, lnoj_,\n  { {0x273c00ad, 0xa3c90309, 0x6b8d066d, 0x00000000}},  //   _tính_, लीप_, _phag,\n  { {0x69cf0190, 0x60c803b1, 0x7f490691, 0x00000000}},  //   tsce, _hedm, cheq,\n  { {0x29030308, 0x69dd3638, 0x6e3b0009, 0x00000000}},  //   teja_, urse, cyub,\n  { {0x69c41f27, 0x69cf0a75, 0x6440006b, 0x00000000}},  //   _dwie, rsce, _əmir,\n  { {0x2903029d, 0x6b8d0051, 0x6d580009, 0x00000000}},  //   reja_, _thag, _imva,\n  { {0x29031329, 0x63a7016e, 0x6b8d11a8, 0x00000000}},  //   seja_, _rujn, _uhag,\n  { {0xa3c90316, 0x23660119, 0x672d0059, 0x00000000}},  // [ba10] लीन_, dnoj_, rjaj,\n  { {0x64410004, 0x4a7c009b, 0xe9df1445, 0x00000000}},  //   _ülik, _ברחב, mrú_,\n  { {0x69c40046, 0x628000fa, 0x93f502be, 0x00000000}},  //   _zwie, _aymo, спец,\n  { {0x63a026e4, 0xc7b2009b, 0x9295007e, 0x00000000}},  //   _cimn, _מבט_, баец,\n  { {0x6280018e, 0x63a002aa, 0x6d5807a2, 0x00000000}},  //   _cymo, _dimn, _omva,\n  { {0x2bac0224, 0xb4b8025a, 0x62801e11, 0x00000000}},  //   _něco_, _نافذ_, _dymo,\n  { {0xe9df002a, 0x7aed00f6, 0x7f49009d, 0x00000000}},  //   hrú_, _ocat, theq,\n  { {0x75351bc0, 0x23660107, 0x929d0036, 0x00000000}},  //   _hozz, cnoj_, _bałt,\n  { {0x6d86009f, 0x7f490065, 0x62800016, 0x00000000}},  //   rðan, rheq, _gymo,\n  { {0x63a00387, 0x41540ae0, 0x61e60039, 0x00000000}},  //   _zimn, _двус, _åkla,\n  { {0x69c43639, 0x7aed0061, 0x753517f4, 0x00000000}},  //   _swie, _bcat, _mozz,\n  { {0x6fea006b, 0x75350026, 0xa3c90164, 0x00000000}},  //   _təcr, _lozz, लीय_,\n  { {0x3da701f9, 0x3ebf0149, 0x5f740025, 0x00000000}},  //   _треб, mbut_, _بالر,\n  { {0x4e7a007b, 0x75352525, 0x7aed058b, 0x00000000}},  //   _גאנצ, _nozz, _ecat,\n  { {0xa7860379, 0x7aed0009, 0x6d410190, 0x00000000}},  //   مشرو, _fcat, mkla,\n  { {0x6d410039, 0x7aed0051, 0x6b6b0036, 0x00000000}},  //   lkla, _gcat, lęgn,\n  { {0xd62711a6, 0x23660091, 0xe9df0051, 0x00000000}},  // [ba20] боте_, vnoj_, crú_,\n  { {0x4cd90055, 0x6d41010a, 0x75350197, 0x00000000}},  //   ব্রু, nkla, _cozz,\n  { {0x23660091, 0x75350197, 0x395a0277, 0x00000000}},  //   tnoj_, _dozz, _imps_,\n  { {0xd3790088, 0x00000000, 0x00000000, 0x00000000}},  //   ачі_,   ,   ,\n  { {0x26c0156d, 0x23660091, 0x6d41000c, 0x00000000}},  //   mbio_, rnoj_, kkla,\n  { {0x75350cff, 0x23660091, 0x6d4100bb, 0x00000000}},  //   _gozz, snoj_, jkla,\n  { {0x63a0363a, 0x6d4107e4, 0x62800036, 0x00000000}},  //   _timn, dkla, _wymo,\n  { {0x543b0049, 0x62800016, 0x6d410772, 0x00000000}},  //   _געלא, _tymo, ekla,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xf1bf00b9, 0x7aed051b, 0xd6c00044, 0x00000000}},  //   ášen_, _scat, েলিয,\n  { {0xdefa0057, 0x30860054, 0x9f4704bb, 0x00000000}},  //   _был_, _الاف, stná_,\n  { {0x395a0133, 0x00000000, 0x00000000, 0x00000000}},  //   _amps_,   ,   ,\n  { {0x6e960025, 0x395a0022, 0x09e4007e, 0x00000000}},  //   _الشا, _bmps_, поўн,\n  { {0x6d410039, 0x273c000c, 0x3f8401d5, 0x00000000}},  //   ckla, _mínu_, llmu_,\n  { {0x753531a6, 0xa8990245, 0x273c01e5, 0x00000000}},  //   _rozz, ркву_, _línu_,\n  { {0x6b460051, 0x75350638, 0xdb1b01a2, 0x00000000}},  //   _tóga, _sozz, nstü,\n  { {0xa53500ed, 0x7535363b, 0x54a70025, 0x00000000}},  // [ba30] онач, _pozz, محاف,\n  { {0x98c70242, 0x00000000, 0x00000000, 0x00000000}},  //   _усил,   ,   ,\n  { {0x26c00207, 0x293801ce, 0x63550088, 0x00000000}},  //   bbio_, _לאזן_, овжу,\n  { {0xdb1b000c, 0xd8b80014, 0x00000000, 0x00000000}},  //   mstó, _پدیا_,   ,\n  { {0x75350197, 0x6d41074d, 0x65950545, 0x00000000}},  //   _tozz, ykla, _маму,\n  { {0xa5bb009f, 0x2b491e13, 0x3ea600e0, 0x00000000}},  //   _próf, _llac_, _agot_,\n  { {0x6d410039, 0x6d86000c, 0xa5bb0051, 0x00000000}},  //   vkla, rðal, _bróg,\n  { {0xfe4500ed, 0x26cb01ee, 0x291300f6, 0x00000000}},  //   жнио, _jeco_, _laxa_,\n  { {0xee36045a, 0x6d410af1, 0x3ebf0995, 0x00000000}},  //   жны_, tkla, rbut_,\n  { {0xbc19007e, 0x2b4900e5, 0xdb1b0036, 0x00000000}},  //   аімі_, _alac_, kstó,\n  { {0x2b490544, 0x25a300bb, 0x6e240066, 0x00000000}},  //   _blac_, _mijl_, _ġibe,\n  { {0xa3e102d2, 0x6e24016e, 0x395a112d, 0x00000000}},  //   _दिन_, _šibe, _smps_,\n  { {0xa3c90061, 0x6d410bc7, 0x21250022, 0x00000000}},  //   लीत_, pkla, _knlh_,\n  { {0x07a6363c, 0x26d90056, 0x25a300d9, 0x00000000}},  //   жавн, _adso_, _nijl_,\n  { {0xe73a16c4, 0x98a30545, 0x26cb363d, 0x00000000}},  //   аев_, дире, _beco_,\n  { {0x661d0059, 0x236d0059, 0x26cb04c6, 0x00000000}},  //   _brsk, _njej_, _ceco_,\n  { {0x26c0027b, 0x80ca0055, 0x26cb2701, 0x00000000}},  // [ba40] rbio_, _রাস্, _deco_,\n  { {0x661d04eb, 0x00000000, 0x00000000, 0x00000000}},  //   _drsk,   ,   ,\n  { {0x273c000c, 0x661d01d6, 0x2d85363e, 0x00000000}},  //   _sínu_, _ersk, ille_,\n  { {0x03260242, 0xa5bb0d28, 0x25b90022, 0x00000000}},  //   юден, _bród, _ftsl_,\n  { {0x6726002b, 0xb77b0049, 0x2d090164, 0x00000000}},  //   _inkj, _כאטש, _वसूल_,\n  { {0x6143007c, 0x00000000, 0x00000000, 0x00000000}},  //   меча,   ,   ,\n  { {0x273c000c, 0xb4e6006e, 0x00000000, 0x00000000}},  //   _fínt_, फली_,   ,\n  { {0x236d008d, 0x6d86000c, 0xf1b90087, 0x00000000}},  //   _gjej_, rðam, _ftš_,\n  { {0xdb1b010f, 0xcd06005c, 0x00000000, 0x00000000}},  //   rstü, очни,   ,\n  { {0xdd9006dd, 0xdb1b068d, 0x00000000, 0x00000000}},  //   عود_, mpté,   ,\n  { {0x2b491507, 0x46aa0204, 0x61e20109, 0x00000000}},  //   _plac_, कशाह, lrol,\n  { {0x2d8500b0, 0x201e00b0, 0x9f5e16ff, 0x00000000}},  //   alle_, _irti_, _opté_,\n  { {0xf2d3012f, 0xfd0f00d3, 0x26cb00f8, 0x00000000}},  //   וער_, رجی_, _reco_,\n  { {0x26cb0285, 0x201e012d, 0x67260146, 0x00000000}},  //   _seco_, _krti_, _ankj,\n  { {0x7d081c1a, 0x6d4a0026, 0x661d012d, 0x00000000}},  //   meds, _ilfa, _srsk,\n  { {0x661d016e, 0x7d08363f, 0x25b90145, 0x00000000}},  //   _prsk, leds, _ptsl_,\n  { {0x29131c37, 0x25a300bb, 0x26cb0089, 0x00000000}},  // [ba50] _taxa_, _pijl_, _veco_,\n  { {0x61e20adc, 0x7d08004e, 0x201e1d1d, 0x00000000}},  //   drol, neds, _orti_,\n  { {0x61e200d4, 0xf3f9005e, 0xfa3400a6, 0x00000000}},  //   erol, снеш_, _فرید,\n  { {0x7d080018, 0x80ca0055, 0x4bfb0049, 0x00000000}},  //   heds, _রাষ্, שלאס,\n  { {0x61e2002d, 0x201e3640, 0x2d8525b9, 0x00000000}},  //   grol, _arti_, ylle_,\n  { {0x2b920027, 0x201e0022, 0x660d047b, 0x00000000}},  //   máce_, _brti_, mwak,\n  { {0x236d0039, 0x660d0022, 0x7d080009, 0x00000000}},  //   _tjej_, lwak, deds,\n  { {0x6d4a049a, 0x81aa0055, 0x61e2007f, 0x00000000}},  //   _alfa, _খবর_, brol,\n  { {0x61e20129, 0x2d8500d4, 0x802700a1, 0x00000000}},  //   crol, tlle_, _ڈرام,\n  { {0xc5f200b3, 0x613d00f6, 0x7d080d22, 0x00000000}},  //   עדי_, _cèlt, geds,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x660d0093, 0x6d4a2a22, 0xdb0400fa, 0x00000000}},  //   kwak, _elfa, _tuní,\n  { {0x7d083641, 0x4a43005e, 0x00000000, 0x00000000}},  //   beds, еняв,   ,\n  { {0xfbd10054, 0xdce10089, 0x00000000, 0x00000000}},  //   _كتب_, rolē,   ,\n  { {0xeb9a20d2, 0x99190088, 0x613d00f6, 0x00000000}},  //   _лик_, ціях_, _hèls,\n  { {0xcc3a007b, 0x38650a87, 0x61e20133, 0x00000000}},  //   _לעצט, úlra_, yrol,\n  { {0xa3c9024c, 0xe737007c, 0x273c000c, 0x00000000}},  // [ba60] लीस_, чет_, _síns_,\n  { {0x458300ed, 0x2bc2007d, 0x3dbd0044, 0x00000000}},  //   егув, वीका, _ইটাল,\n  { {0x491502fb, 0x493b009b, 0x29183642, 0x00000000}},  //   _फोटो_, _הגיו, mdra_,\n  { {0x7d080046, 0x2918021a, 0x290a0142, 0x00000000}},  //   zeds, ldra_, leba_,\n  { {0x26d2011c, 0xe5a60954, 0x613d000a, 0x00000000}},  //   mayo_, _хиги, _nèls,\n  { {0x29180073, 0xe4da06c6, 0x61e20219, 0x00000000}},  //   ndra_, _دوست_, rrol,\n  { {0x9f98080d, 0x7d0801e3, 0x657e06fa, 0x00000000}},  //   овку_, veds, moph,\n  { {0x64a3008b, 0x26d20e1a, 0x290a0173, 0x00000000}},  //   _часа, nayo_, heba_,\n  { {0x7d0804b3, 0x63ae00b9, 0x60da0009, 0x00000000}},  //   teds, _hubn, _tdtm,\n  { {0x657e0ace, 0x63ae016c, 0x26d200e7, 0x00000000}},  //   noph, _kubn, hayo_,\n  { {0x7d080030, 0x290a0173, 0x201e1a48, 0x00000000}},  //   reds, deba_, _urti_,\n  { {0x26d200e7, 0xbebd0089, 0x657e0133, 0x00000000}},  //   jayo_, sjūr, hoph,\n  { {0x26d2107e, 0x63ae0504, 0x657e0146, 0x00000000}},  //   dayo_, _lubn, koph,\n  { {0xada300ed, 0x290a0006, 0x6d4a0022, 0x00000000}},  //   _зачл, geba_, _ulfa,\n  { {0xd6db3643, 0x657e06fa, 0x6cfb009b, 0x00000000}},  //   йта_, doph, _הפוס,\n  { {0x29183644, 0x26d20058, 0x7bd80066, 0x00000000}},  //   adra_, gayo_, _ivvu,\n  { {0xaac302f4, 0x4ac302fb, 0x290a0020, 0x00000000}},  // [ba70] _व्यक, _व्यव, beba_,\n  { {0xa5bb0e17, 0xd49b0265, 0x290a0181, 0x00000000}},  //   _prób, бре_, ceba_,\n  { {0x26d20e19, 0x7afd01d6, 0xa5bb00d6, 0x00000000}},  //   bayo_, ofst, _bróc,\n  { {0x1ddd013d, 0x63ae01ca, 0x26d2004a, 0x00000000}},  //   _मिलत, _dubn, cayo_,\n  { {0xdb0200f8, 0x63bc000a, 0x00000000, 0x00000000}},  //   pplö, _etrn,   ,\n  { {0xf8bf0201, 0x2bac00b9, 0xdca60025, 0x00000000}},  //   ्रिय, _těch_, _لى_,\n  { {0xe0d003ec, 0x7bdc0010, 0xaf950184, 0x00000000}},  //   ازه_, árul, мшиј,\n  { {0x39840002, 0x290a0046, 0x321f001d, 0x00000000}},  //   löst_, zeba_, _truy_,\n  { {0x1ddd0061, 0x63ae0161, 0xdb08000c, 0x00000000}},  //   _मिळत, _zubn, ílík,\n  { {0x61e415a1, 0x1c452e44, 0x853a0049, 0x00000000}},  //   áile, дном, ַגרי,\n  { {0x6f0901f3, 0x776d0009, 0x7afd09b0, 0x00000000}},  //   peec, knax, ffst,\n  { {0x657e287f, 0x290a0058, 0x00000000, 0x00000000}},  //   zoph, weba_,   ,\n  { {0x290a033f, 0x26d20045, 0x00000000, 0x00000000}},  //   teba_, vayo_,   ,\n  { {0x7aef001c, 0x26d200e7, 0x2005008a, 0x00000000}},  //   agct, wayo_, _kpli_,\n  { {0x26d211b3, 0x290a1786, 0x29182280, 0x00000000}},  //   tayo_, reba_, rdra_,\n  { {0x7aef001c, 0x7bc123b4, 0x290a002d, 0x00000000}},  //   cgct, mplu, seba_,\n  { {0x63ae2ac7, 0x6b843645, 0x26d20922, 0x00000000}},  // [ba80] _subn, _ikig, rayo_,\n  { {0x26d23646, 0x00000000, 0x00000000, 0x00000000}},  //   sayo_,   ,   ,\n  { {0xe73a0200, 0x7bc10032, 0xa3c90067, 0x00000000}},  //   _ден_, nplu, लील_,\n  { {0x27e50027, 0x657e287f, 0xd62a0783, 0x00000000}},  //   álne_, soph, _доме_,\n  { {0x75490047, 0x2bac00b9, 0x20053647, 0x00000000}},  //   ászó, _věci_, _apli_,\n  { {0xa5bb0036, 0x7bc100bb, 0x5183004d, 0x00000000}},  //   _wróc, kplu, куща,\n  { {0x6b640010, 0xdb1b2d3c, 0xa5bb0048, 0x00000000}},  //   zőga, mstö, _tróc,\n  { {0x8e14025f, 0x444405a9, 0x61eb0026, 0x00000000}},  //   едиц, my_, bugl,\n  { {0x44440387, 0x753c1551, 0x3ea20039, 0x00000000}},  //   ly_, _korz, äkt_,\n  { {0x444401d6, 0xdb1b3648, 0xe2a6000c, 0x00000000}},  //   oy_, nstö, áðum_,\n  { {0x44440df0, 0x8c4300ed, 0x753c0036, 0x00000000}},  //   ny_, веќе, _morz,\n  { {0x7afd01a2, 0x44440258, 0x00000000, 0x00000000}},  //   ufst, iy_,   ,\n  { {0x4444004f, 0xc333019b, 0x527b0049, 0x00000000}},  //   hy_, דור_, ַנלא,\n  { {0x44440428, 0x6b840b99, 0x6e22013e, 0x00000000}},  //   ky_, _ekig, _irob,\n  { {0x80d30055, 0x7afd01a2, 0x00000000, 0x00000000}},  //   _সাম্, pfst,   ,\n  { {0xf7700137, 0x7d18192d, 0x7d1a00eb, 0x00000000}},  //   لاق_, _havs, ldts,\n  { {0x753c3649, 0xddc90036, 0xa5f8003b, 0x00000000}},  // [ba90] _borz, czeń, мету_,\n  { {0x7d1a0302, 0x444400ab, 0x6d480006, 0x00000000}},  //   ndts, fy_, nkda,\n  { {0x444413ae, 0x36d5007c, 0x7985008a, 0x00000000}},  //   gy_, _понр, _ikhw,\n  { {0x1635005e, 0x6e220032, 0x661b364a, 0x00000000}},  //   _земя, _orob, _šuku,\n  { {0x753c0207, 0x44441dc0, 0xb6ba00a0, 0x00000000}},  //   _forz, ay_, _מצרי,\n  { {0x44441712, 0x6f0200d4, 0x7d180142, 0x00000000}},  //   by_, _aboc, _navs,\n  { {0x62860378, 0x44440652, 0x6e2200e7, 0x00000000}},  //   _økon, cy_, _arob,\n  { {0xee390069, 0x6e22364b, 0x61eb0026, 0x00000000}},  //   зни_, _brob, pugl,\n  { {0xe1f004e8, 0x7bc10288, 0x00000000, 0x00000000}},  //   _نسل_, wplu,   ,\n  { {0x31590b03, 0x29cd1a47, 0x6aad0129, 0x00000000}},  //   _علاج_, dža_, _agaf,\n  { {0x63a901d5, 0x6e220c7a, 0x6b660893, 0x00000000}},  //   _kien, _erob, екна,\n  { {0xf98900a0, 0x63a9002b, 0x09e60088, 0x00000000}},  //   _הר_, _jien, номн,\n  { {0x44440046, 0x63a90219, 0xdc3b0746, 0x00000000}},  //   zy_, _mien, _išče,\n  { {0x63a9028c, 0x6f1b1f38, 0x7f8500c4, 0x00000000}},  //   _lien, lduc, róqu,\n  { {0x6e220046, 0x6b460489, 0xe7eb0061, 0x00000000}},  //   _zrob, _lógi, जूला_,\n  { {0x44440428, 0xe73701f9, 0x63a9364c, 0x00000000}},  //   vy_, нес_, _nien,\n  { {0x44440046, 0xb8f60055, 0x673d364d, 0x00000000}},  // [baa0] wy_, _হা_, _dosj,\n  { {0x63a9009d, 0xdce10006, 0x649a00e2, 0x00000000}},  //   _aien, rolė, птер_,\n  { {0x63a9364e, 0xdb1b364f, 0x44440a5f, 0x00000000}},  //   _bien, rstö, uy_,\n  { {0x44440a8a, 0x291a000b, 0x63a90219, 0x00000000}},  //   ry_, _hapa_, _cien,\n  { {0x44440395, 0x63a92e3a, 0x291a0058, 0x00000000}},  //   sy_, _dien, _kapa_,\n  { {0x63a93650, 0xdb040181, 0xa5bb3651, 0x00000000}},  //   _eien, _funç, _krón,\n  { {0x291a049a, 0x63a901c9, 0xa2c70061, 0x00000000}},  //   _mapa_, _fien, ारख्,\n  { {0x291a001e, 0x7d180089, 0xdb0b0292, 0x00000000}},  //   _lapa_, _savs, _utfø,\n  { {0x628900e0, 0x00000000, 0x00000000, 0x00000000}},  //   _gyeo,   ,   ,\n  { {0x291a0487, 0x63a9022b, 0xd24f0025, 0x00000000}},  //   _napa_, _zien, _انك_,\n  { {0x6d4800b5, 0x6f190a2e, 0x6f1b00f6, 0x00000000}},  //   rkda, _fawc, bduc,\n  { {0x6e2204bd, 0x59dc013d, 0x00000000, 0x00000000}},  //   _trob, _बिखर,   ,\n  { {0x7d18011f, 0x22460010, 0x673d0036, 0x00000000}},  //   _tavs, nyok_, _rosj,\n  { {0xa3e103d7, 0x291a0181, 0x29cd0d90, 0x00000000}},  //   _दिल_, _capa_, rža_,\n  { {0x44330846, 0x673d0182, 0xf7730076, 0x00000000}},  //   xxx_, _posj, هار_,\n  { {0x7bda1c23, 0x2d8c0039, 0x478801fc, 0x00000000}},  //   mstu, llde_, есум_,\n  { {0x7bda0a74, 0x63a9133c, 0x44230521, 0x00000000}},  // [bab0] lstu, _rien, _srj_,\n  { {0x63a90219, 0x44232224, 0xd49b0072, 0x00000000}},  //   _sien, _prj_, пре_,\n  { {0x63a9021e, 0x9cd700b6, 0x2d9e0250, 0x00000000}},  //   _pien, גובה_, imte_,\n  { {0x7bda3652, 0x2d9e01a2, 0xdb19013e, 0x00000000}},  //   istu, hmte_, _otví,\n  { {0x63a90ebc, 0x213e0038, 0x22460047, 0x00000000}},  //   _vien, _both_, gyok_,\n  { {0x7bda3653, 0x26c92a9f, 0xdb04010f, 0x00000000}},  //   kstu, lbao_, _zunä,\n  { {0x63a90219, 0x7f490065, 0x00000000, 0x00000000}},  //   _tien, tkeq,   ,\n  { {0x2d8c00c7, 0x61e43654, 0x212c0022, 0x00000000}},  //   elde_, šila, _endh_,\n  { {0xb115026b, 0xc11507d8, 0x6f1b0197, 0x00000000}},  //   _имаш, _имај, rduc,\n  { {0x7bda0007, 0x2d8c00ea, 0xdca502ea, 0x00000000}},  //   fstu, glde_, капи,\n  { {0x7bda3583, 0x291a01c5, 0x2ef5007c, 0x00000000}},  //   gstu, _rapa_, _азер,\n  { {0x2d8c3655, 0x291a01a3, 0x2d9e0bed, 0x00000000}},  //   alde_, _sapa_, amte_,\n  { {0x291a0263, 0x3b1b0066, 0x7bda304b, 0x00000000}},  //   _papa_, _daqq_, astu,\n  { {0xfce5072b, 0x3f8d3656, 0xf99f0173, 0x00000000}},  //   _роко, lleu_, dwès_,\n  { {0x5d7a0049, 0x291a25b9, 0xbc190088, 0x00000000}},  //   _קאצק, _vapa_, _цілі_,\n  { {0x1fe30044, 0x27e50027, 0xcfe30044, 0x00000000}},  //   _মহাস, álna_, _মহান,\n  { {0x291a0ba2, 0x07a301be, 0xdcfa0089, 0x00000000}},  // [bac0] _tapa_, ратн, lotā,\n  { {0x44210045, 0x3b1b01f3, 0x00000000, 0x00000000}},  //   fvh_, _zaqq_,   ,\n  { {0x213e3657, 0x66e6003b, 0xdcfa0089, 0x00000000}},  //   _roth_, _иона, notā,\n  { {0xf7460364, 0xa5bb0036, 0x798e005b, 0x00000000}},  //   _ремо, _król, llbw,\n  { {0x333f00f4, 0xe28300e2, 0x8af0006b, 0x00000000}},  //   _doux_, алци, _iləd,\n  { {0x9103005e, 0x7bda2d22, 0x3f8601d6, 0x00000000}},  //   ипче, ystu, _skou_,\n  { {0xb5020201, 0xcf9a01f9, 0xdfd00025, 0x00000000}},  //   र्णय_, мји_, حيب_,\n  { {0x2d870263, 0x3f1400ed, 0xdcfa0089, 0x00000000}},  //   _akne_, удис, dotā,\n  { {0x7bda3658, 0x213e1db2, 0x00000000, 0x00000000}},  //   wstu, _toth_,   ,\n  { {0xfe6f06ea, 0x7bda006c, 0xdce1050f, 0x00000000}},  //   تدى_, tstu, bilč,\n  { {0x6fb6026c, 0xc0a90025, 0xa0a6005e, 0x00000000}},  //   _شمشا, _كامل_, _ражд,\n  { {0x7bda02ae, 0x6d86000c, 0xe502006e, 0x00000000}},  //   rstu, gðar, र्ति_,\n  { {0x290411af, 0xeb9f0374, 0x00000000, 0x00000000}},  //   đman_, rmø_,   ,\n  { {0x6d86000c, 0x7bda01d6, 0x3dc80044, 0x00000000}},  //   rðas, pstu, _শিপল,\n  { {0x1b080055, 0xed57012b, 0x26c90011, 0x00000000}},  //   ষয়ে_, _јој_, tbao_,\n  { {0x3f843659, 0x5ba4007e, 0x34cb0316, 0x00000000}},  //   nomu_, _крыз, िर्द,\n  { {0x333f1b30, 0x80d80044, 0x387a0716, 0x00000000}},  // [bad0] _roux_, _ঠান্, _expr_,\n  { {0xeaaa007b, 0x69dd004e, 0x8af0006b, 0x00000000}},  //   _אױפֿ, msse, _eləd,\n  { {0x2911365a, 0x3f840161, 0x69dd00ea, 0x00000000}},  //   meza_, komu_, lsse,\n  { {0x291100e4, 0xd498019d, 0xdce100ca, 0x00000000}},  //   leza_, тру_, vilč,\n  { {0x80ca0055, 0x672f0061, 0x3f840089, 0x00000000}},  //   _রাজ্, _incj, domu_,\n  { {0xd5fa00b6, 0x69dd00f4, 0x29110020, 0x00000000}},  //   _אפשר, isse, neza_,\n  { {0x614201e0, 0xd3a701fc, 0x6d86000c, 0x00000000}},  //   сеща, _арап, yðar,\n  { {0x291100e7, 0x00000000, 0x00000000, 0x00000000}},  //   heza_,   ,   ,\n  { {0x2911000b, 0x69dd00bb, 0x00000000, 0x00000000}},  //   keza_, jsse,   ,\n  { {0x80ca0164, 0xdcfa001e, 0x69dd0146, 0x00000000}},  //   _स्पे, totā, dsse,\n  { {0x63b5003b, 0x2911097c, 0x69dd010f, 0x00000000}},  //   _juzn, deza_, esse,\n  { {0xa5bb365b, 0xdcfa0089, 0x00000000, 0x00000000}},  //   _pról, rotā,   ,\n  { {0x6d86009f, 0xee2e0407, 0x69c600e7, 0x00000000}},  //   rðar, _ун_, upke,\n  { {0x291114a5, 0x28a50963, 0x00000000, 0x00000000}},  //   geza_, _गृहि,   ,\n  { {0x66e612ab, 0x31b90173, 0x00000000, 0x00000000}},  //   лова, _lèz_,   ,\n  { {0x69dd365c, 0xfaff040f, 0x80ca0309, 0x00000000}},  //   bsse, niël_, _स्ने,\n  { {0x29110211, 0x7ae40107, 0xceb2019b, 0x00000000}},  // [bae0] beza_, _idit, מין_,\n  { {0x2d85001a, 0xd7640014, 0x6e2400ca, 0x00000000}},  //   nole_, _چندی, _šibk,\n  { {0x68fb0104, 0x61eb08ed, 0x69c40066, 0x00000000}},  //   _אליה, ergl, _htie,\n  { {0x63b50107, 0x2d8504d2, 0x69c4002b, 0x00000000}},  //   _duzn, hole_, _ktie,\n  { {0x614601f9, 0xdb040051, 0x5ea90044, 0x00000000}},  //   леда, _bunú, ছুতে,\n  { {0xca7b0049, 0x61e41282, 0x00000000, 0x00000000}},  //   ענסט, šilo,   ,\n  { {0xa3e103d7, 0x2d85231e, 0x61eb0026, 0x00000000}},  //   _दिए_, dole_, argl,\n  { {0x69dd0039, 0x20d8010a, 0x2911365d, 0x00000000}},  //   ysse, džių_, zeza_,\n  { {0x70f6035b, 0x80d30055, 0x63a21685, 0x00000000}},  //   _مسائ, _সার্, mmon,\n  { {0x2d850207, 0x7ae4002d, 0x00000000, 0x00000000}},  //   gole_, _adit,   ,\n  { {0x4c9401f9, 0x69c412b9, 0x29110091, 0x00000000}},  //   ринс, _atie, veza_,\n  { {0x29110be3, 0x69dd00ea, 0x5e2601fa, 0x00000000}},  //   weza_, tsse, _معتق,\n  { {0x6abd001c, 0x2911365e, 0x2d8532df, 0x00000000}},  //   rcsf, teza_, bole_,\n  { {0x2d85000d, 0x6e93057d, 0x69dd00b0, 0x00000000}},  //   cole_, _الها, rsse,\n  { {0x2911365f, 0x69c41c83, 0x69dd0c3f, 0x00000000}},  //   reza_, _etie, ssse,\n  { {0x63b51127, 0xa6db000c, 0x9f470062, 0x00000000}},  //   _ruzn, _boða, trné_,\n  { {0x61e40051, 0x00000000, 0x00000000, 0x00000000}},  // [baf0] áill,   ,   ,\n  { {0x63a2010a, 0x3a290fd9, 0x61eb0618, 0x00000000}},  //   emon, _irap_, vrgl,\n  { {0x442716b8, 0x63a2046a, 0x6b460051, 0x00000000}},  //   ín_, fmon, _tógt,\n  { {0xd2510054, 0x3a2901bb, 0x2bf70049, 0x00000000}},  //   ينا_, _krap_, רמאן_,\n  { {0xe7040167, 0xa3c9007d, 0x2d853660, 0x00000000}},  //   _اسپی, लीज_, yole_,\n  { {0x63b53661, 0x98ba001e, 0x63a20253, 0x00000000}},  //   _tuzn, _kopā_, amon,\n  { {0x2d850207, 0x2f550a27, 0xe9df0051, 0x00000000}},  //   vole_, итис, hsú_,\n  { {0x2d8501aa, 0xddc90036, 0x63a20ede, 0x00000000}},  //   wole_, cześ, cmon,\n  { {0x00e50014, 0x00000000, 0x00000000, 0x00000000}},  //   _نتای,   ,   ,\n  { {0xa5bb008e, 0x1d09003b, 0x00000000, 0x00000000}},  //   _prój, њени_,   ,\n  { {0x2d8506f9, 0x69c40fd6, 0x66160036, 0x00000000}},  //   role_, _stie, zwyk,\n  { {0x2d8506f9, 0x34b2006e, 0xcd350752, 0x00000000}},  //   sole_, _जल्द, ارکب,\n  { {0x2d853662, 0xde4600a1, 0x6d5d01aa, 0x00000000}},  //   pole_, _نیٹو_, èsas,\n  { {0xa5bb0036, 0x9ce700a1, 0x3a290056, 0x00000000}},  //   _trój, _صوبے_, _drap_,\n  { {0x6d43002a, 0xccf20104, 0x3a293663, 0x00000000}},  //   _iona, _וכו_, _erap_,\n  { {0x6d43022b, 0x7ae40cc8, 0x3a290173, 0x00000000}},  //   _hona, _udit, _frap_,\n  { {0x05661c19, 0x6b46002a, 0x3a291896, 0x00000000}},  // [bb00] аван, _fógr, _grap_,\n  { {0x6d430981, 0xa6db000c, 0x63a20537, 0x00000000}},  //   _jona, _voða, wmon,\n  { {0xaaba03d7, 0x63a213f4, 0x6d4303a1, 0x00000000}},  //   _इलाक, tmon, _mona,\n  { {0xa3e7007c, 0x63a2028a, 0x6d4304eb, 0x00000000}},  //   рдца_, umon, _lona,\n  { {0xddc90036, 0x70d10316, 0x00000000, 0x00000000}},  //   rześ, हरूल,   ,\n  { {0x63a21439, 0x26c00207, 0x200c0022, 0x00000000}},  //   smon, lcio_, _ppdi_,\n  { {0xd0100025, 0x63a201d6, 0x201a0026, 0x00000000}},  //   سلة_, pmon, ìpi_,\n  { {0x26c0156d, 0x6d43002a, 0x6e2d0107, 0x00000000}},  //   ncio_, _aona, _šaba,\n  { {0x6db20036, 0x26c0157e, 0x2cab006b, 0x00000000}},  //   _słab, icio_, əkdə_,\n  { {0x6d43002a, 0x20b9008b, 0x5d540113, 0x00000000}},  //   _cona, _быць_, скот,\n  { {0x34b700b6, 0x6d4301cb, 0xaee80044, 0x00000000}},  //   יפים_, _dona, ক্ষণ_,\n  { {0x2b923664, 0x3a290065, 0x00000000, 0x00000000}},  //   nách_, _prap_,   ,\n  { {0x6d430129, 0x4cd50044, 0xee9400a1, 0x00000000}},  //   _fona, _দারু, _اداک,\n  { {0x6d4301aa, 0x442a0089, 0xc987026b, 0x00000000}},  //   _gona, _orb_, руми,\n  { {0x2b9201ca, 0x3d2b00a1, 0x3a290339, 0x00000000}},  //   kách_, _جتنی_, _wrap_,\n  { {0x442d17fd, 0x6d430211, 0xf77300f3, 0x00000000}},  //   _če_, _zona, زاز_,\n  { {0x61e40746, 0x6d430022, 0x6b8d3665, 0x00000000}},  // [bb10] šilj, _yona, _ikag,\n  { {0x443a008e, 0x6d5a0082, 0x170500a1, 0x00000000}},  //   fxp_, nhta, _گہری_,\n  { {0xdcf800b9, 0x442a005b, 0xd83b0a7c, 0x00000000}},  //   _skvě, _crb_, _рэп_,\n  { {0x26c00198, 0x9259007c, 0x7c2a0258, 0x00000000}},  //   ccio_, лает_, _mrfr,\n  { {0x6d5a0145, 0x3ebf014a, 0x826900a1, 0x00000000}},  //   khta, vcut_, دشاہ_,\n  { {0x442a0146, 0x661d007f, 0x00000000, 0x00000000}},  //   _frb_, _issk,   ,\n  { {0x3f693666, 0x44252fbf, 0x442a0107, 0x00000000}},  //   лико_, _él_, _grb_,\n  { {0x6d43003b, 0x7c25009f, 0xef1900ed, 0x00000000}},  //   _sona, _áhri, уми_,\n  { {0x764d3667, 0x26d90213, 0xa5bb0051, 0x00000000}},  //   nyay, _meso_, _brói,\n  { {0x3ebf1efc, 0x6d43005f, 0x6b8d0cd1, 0x00000000}},  //   scut_, _qona, _akag,\n  { {0x40950025, 0x6d433668, 0x6db20036, 0x00000000}},  //   _الار, _vona, _płac,\n  { {0x26d9016c, 0x6d4301a2, 0x2c57013f, 0x00000000}},  //   _neso_, _wona, nədə_,\n  { {0x5ea50044, 0xc332009b, 0x42790049, 0x00000000}},  //   _গ্রে, פוך_, ראָג,\n  { {0x6d5a0195, 0x2c57006b, 0xd99a0014, 0x00000000}},  //   chta, hədə_, انست_,\n  { {0x2c57005f, 0x26d90211, 0x25b90026, 0x00000000}},  //   kədə_, _beso_, _ausl_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xf74301f9, 0x64433669, 0x442a0107, 0x00000000}},  // [bb20] чето, änin, _srb_,\n  { {0x26c00207, 0xd91000a1, 0x442a0145, 0x00000000}},  //   scio_, _تیس_, _prb_,\n  { {0xe3b200a1, 0x232a00e3, 0xe2ca04f9, 0x00000000}},  //   سرا_, ложи_, глед_,\n  { {0xd048006b, 0xe73a007e, 0x764d0009, 0x00000000}},  //   _gedə, _сем_, byay,\n  { {0x2b920161, 0x93c800a1, 0x00000000, 0x00000000}},  //   rách_, _چارہ_,   ,\n  { {0xfd070318, 0xdb0b010f, 0xf1b90087, 0x00000000}},  //   _عج_, _zufä, _duš_,\n  { {0x80d90164, 0x6604006c, 0x442a008e, 0x00000000}},  //   _नजरे, ltik, _urb_,\n  { {0xc7b3009b, 0x2c57006b, 0x66041583, 0x00000000}},  //   הבה_, cədə_, otik,\n  { {0x6604020c, 0xa5bb002a, 0x50d60014, 0x00000000}},  //   ntik, _prói, _هزار,\n  { {0x50cf02f4, 0x6b8d0dba, 0x660406aa, 0x00000000}},  //   _स्पष, _skag, itik,\n  { {0x660400b0, 0x61e201b8, 0x69b2013d, 0x00000000}},  //   htik, lsol, _इंजी,\n  { {0x6604022b, 0x6d5a1ea5, 0x201e2d33, 0x00000000}},  //   ktik, shta, _isti_,\n  { {0x4e960070, 0x26d90207, 0x539b071c, 0x00000000}},  //   _اشار, _reso_, טיטו,\n  { {0x60da0023, 0x2c57006b, 0x6ab60010, 0x00000000}},  //   _jetm, zədə_, _egyf,\n  { {0x26d90325, 0x2c57006b, 0x6604006c, 0x00000000}},  //   _peso_, yədə_, etik,\n  { {0xd6d835bd, 0x6b8d09df, 0xdce10035, 0x00000000}},  //   йту_, _ukag, pilă,\n  { {0xf7700d3a, 0x26d90173, 0x35b4007e, 0x00000000}},  // [bb30] راف_, _veso_, збур,\n  { {0x60da05d2, 0x61e200f8, 0x201e0052, 0x00000000}},  //   _netm, dsol, _osti_,\n  { {0xd49b0113, 0x6724366a, 0xf99400b3, 0x00000000}},  //   ура_, bdij, _מרץ_,\n  { {0xdb190039, 0x00000000, 0x00000000, 0x00000000}},  //   _utvä,   ,   ,\n  { {0x4cde0055, 0x2c57005f, 0x6d580047, 0x00000000}},  //   _মানু, rədə_, _olva,\n  { {0x2c57006b, 0x00000000, 0x00000000, 0x00000000}},  //   sədə_,   ,   ,\n  { {0x5edd0044, 0x7f9e0023, 0x60da366b, 0x00000000}},  //   _যাবে, zëqe, _detm,\n  { {0x6d581652, 0x61e20035, 0xf1b90059, 0x00000000}},  //   _alva, bsol, _tuš_,\n  { {0x201e000d, 0x9f5c0224, 0xbd390088, 0x00000000}},  //   _esti_, ctví_, аїні_,\n  { {0x60da005f, 0x80d30055, 0x67241a72, 0x00000000}},  //   _getm, _সাক্, zdij,\n  { {0xca29019b, 0x66042f69, 0x8c4502dc, 0x00000000}},  //   _שם_, ztik, цене,\n  { {0x60da00d9, 0x7f9e0023, 0x66040d8f, 0x00000000}},  //   _zetm, tëqe, ytik,\n  { {0x8d740063, 0xfce50131, 0x60da005a, 0x00000000}},  //   _کانا, _доло, _yetm,\n  { {0xa3ea02d2, 0x66040059, 0x61e40051, 0x00000000}},  //   _मिल_, vtik, áili,\n  { {0x1b0f0055, 0xdb190173, 0x6e29068f, 0x00000000}},  //   িয়ে_, _ouvè, lveb,\n  { {0x6604366c, 0x61e4366d, 0x236f0065, 0x00000000}},  //   ttik, šili, jigj_,\n  { {0x68fe0022, 0x88d90044, 0x00000000, 0x00000000}},  // [bb40] _tcpd, _তারক,   ,\n  { {0x3a20006a, 0xd6cf00a1, 0x240a0143, 0x00000000}},  //   _isip_, فقہ_, инзи_,\n  { {0x03260741, 0xf74601f9, 0x2937034e, 0x00000000}},  //   жден, _дено, _ואין_,\n  { {0x2918022b, 0x60da04bd, 0x61e204d3, 0x00000000}},  //   lera_, _setm, tsol,\n  { {0x61e2366e, 0x26d20922, 0x9c7c0340, 0x00000000}},  //   usol, mbyo_, mače,\n  { {0x29180ed6, 0xdb0b0039, 0x9c7c1470, 0x00000000}},  //   nera_, _utfö, lače,\n  { {0x6f090016, 0x60da008d, 0x29182352, 0x00000000}},  //   ffec, _vetm, iera_,\n  { {0x9c7c190a, 0x2918002d, 0x61e20190, 0x00000000}},  //   nače, hera_, psol,\n  { {0x2918022b, 0x63bc0058, 0x3f980089, 0x00000000}},  //   kera_, _hurn, ēru_,\n  { {0xa06a005e, 0x29180091, 0x0caa00e3, 0x00000000}},  //   _каза_, jera_, итни_,\n  { {0x63bc005f, 0x9c7c04eb, 0x201e1504, 0x00000000}},  //   _jurn, kače, _usti_,\n  { {0x9c7c050f, 0xa5bb0036, 0x63bc04cb, 0x00000000}},  //   jače, _krót, _murn,\n  { {0x2918001a, 0x9c7c0c76, 0xfd7900a1, 0x00000000}},  //   fera_, dače, ششیں_,\n  { {0x09bd0044, 0x00000000, 0x00000000, 0x00000000}},  //   _অবদা,   ,   ,\n  { {0xa8990eec, 0x36d50cee, 0xa2aa0061, 0x00000000}},  //   скву_, зобр, जेत्,\n  { {0x27ed01d9, 0x9c7c089f, 0x2d8c01c5, 0x00000000}},  //   čen_, gače, lode_,\n  { {0x2918022b, 0xe4cb0084, 0x63bc0288, 0x00000000}},  // [bb50] bera_, لبان_, _aurn,\n  { {0x29180039, 0x2d8c0007, 0x63bc00ab, 0x00000000}},  //   cera_, node_, _burn,\n  { {0xf77000a1, 0x69cf00bb, 0x29010022, 0x00000000}},  //   راہ_, lpce, _icha_,\n  { {0x63bc0006, 0x2d8c0142, 0x29010288, 0x00000000}},  //   _durn, hode_, _hcha_,\n  { {0x2d8c15c8, 0x7afd0171, 0xdb19009d, 0x00000000}},  //   kode_, igst, _cuvé,\n  { {0x63bc0e5f, 0x88d90044, 0xe8b9013d, 0x00000000}},  //   _furn, _তাঁক, _आलोच,\n  { {0x63bc0d6b, 0xb4d70316, 0xa5bb366f, 0x00000000}},  //   _gurn, सरी_, _erót,\n  { {0x63680256, 0xd00e0379, 0x2918119a, 0x00000000}},  //   _друг_, الي_, zera_,\n  { {0x5edd0044, 0x29180065, 0x63bc0042, 0x00000000}},  //   _যাদে, yera_, _zurn,\n  { {0x6f0900dc, 0x291823ca, 0x7afd144a, 0x00000000}},  //   sfec, xera_, egst,\n  { {0x317a0049, 0x395a0022, 0x31560049, 0x00000000}},  //   _פרעמ, _rlps_, _ציען_,\n  { {0x29180066, 0x29010181, 0xe456007b, 0x00000000}},  //   wera_, _acha_, פירט_,\n  { {0x2918022b, 0x2d8c0091, 0x9c7c05c5, 0x00000000}},  //   tera_, bode_, vače,\n  { {0x2d8c00b5, 0x27f80866, 0x7afd00c7, 0x00000000}},  //   code_, turn_, agst,\n  { {0x29180073, 0x200701aa, 0x9c7c0b46, 0x00000000}},  //   rera_, ntni_, tače,\n  { {0x29180039, 0x63ba0d7b, 0x2901008e, 0x00000000}},  //   sera_, _étni, _echa_,\n  { {0x63bc006c, 0xe4d60025, 0x4cde0044, 0x00000000}},  // [bb60] _surn, كتاب, _মাতু,\n  { {0x20070059, 0x63bc023a, 0x27f8000c, 0x00000000}},  //   ktni_, _purn, purn_,\n  { {0x9c7c00ee, 0xf993009b, 0xd2520014, 0x00000000}},  //   pače, _ארז_, کنش_,\n  { {0xa5bb0a58, 0xf99f01aa, 0x09230044, 0x00000000}},  //   _prót, ntèn_, মাণু_,\n  { {0x61ed089f, 0x20073670, 0x00000000, 0x00000000}},  //   šaln, etni_,   ,\n  { {0x20070618, 0x4a9b0097, 0xb0c60061, 0x00000000}},  //   ftni_, זינג, रुंग,\n  { {0x35a3008b, 0x2d8c0466, 0x8af0006b, 0x00000000}},  //   _чарг, vode_, _aləm,\n  { {0xf8b30104, 0x6449005d, 0x547b009b, 0x00000000}},  //   עשה_, çmiş, _הטלו,\n  { {0x2d8c023a, 0x798e0061, 0x67260145, 0x00000000}},  //   tode_, kobw, _makj,\n  { {0x7c860269, 0xdb190035, 0x2cb800ea, 0x00000000}},  //   зуме, _cuvî, ørd_,\n  { {0x2d8c0091, 0xbae10044, 0x8af0006b, 0x00000000}},  //   rode_, _ভাবছ, _eləm,\n  { {0x2d8c028a, 0x7afd3671, 0x09b50061, 0x00000000}},  //   sode_, ugst, ंद्य,\n  { {0x7afd0002, 0xdb040011, 0x60cb0010, 0x00000000}},  //   rgst, _khiê, _élmé,\n  { {0x6db200b4, 0x67260146, 0x00000000, 0x00000000}},  //   _kłam, _aakj,   ,\n  { {0xd90f007a, 0x7d1a017b, 0xd1380036, 0x00000000}},  //   نیک_, mets, _mną_,\n  { {0x7d1a0016, 0x95d9005e, 0x3cfe00e7, 0x00000000}},  //   lets, ждат_, lgtv_,\n  { {0x7aed022b, 0xf1d70055, 0x59b702d2, 0x00000000}},  // [bb70] _idat, _সম্ভ, _इंटर,\n  { {0xb4d70164, 0xdb04001d, 0xb4c90061, 0x00000000}},  //   सरे_, _nhiê, ैरे_,\n  { {0xa5bb000c, 0x9cd7009b, 0xbb1b009d, 0x00000000}},  //   _prós, פואה_, boît,\n  { {0x7d1a3672, 0xfaff0065, 0x6d4a000c, 0x00000000}},  //   hets, ngë_, _lofa,\n  { {0x7d1a0b79, 0x00000000, 0x00000000, 0x00000000}},  //   kets,   ,   ,\n  { {0x7d1a0209, 0xdb040011, 0x672600bb, 0x00000000}},  //   jets, _chiê, _zakj,\n  { {0x7aed3673, 0x6e2212fe, 0x7d1a073a, 0x00000000}},  //   _odat, _asob, dets,\n  { {0x20070059, 0x2d830c0a, 0xa6db000c, 0x00000000}},  //   rtni_, čjem_, _boði,\n  { {0x6adc0055, 0x61e4002a, 0x200701d9, 0x00000000}},  //   _ভালো, áilt, stni_,\n  { {0x7aed0047, 0x7d1a27a5, 0x6d4a07ad, 0x00000000}},  //   _adat, gets, _cofa,\n  { {0x69cd11f3, 0x00000000, 0x00000000, 0x00000000}},  //   _atae,   ,   ,\n  { {0x7aed0009, 0x61e90635, 0x2b9207fd, 0x00000000}},  //   _cdat, _kvel, vács_,\n  { {0x7d1a0073, 0x7aed018e, 0x6d4a00fa, 0x00000000}},  //   bets, _ddat, _fofa,\n  { {0x752709fc, 0x6d4a018e, 0x7aed0ec8, 0x00000000}},  //   _najz, _gofa, _edat,\n  { {0x7aed0066, 0x672600bb, 0x00000000, 0x00000000}},  //   _fdat, _pakj,   ,\n  { {0xd70a007e, 0x61e90ac1, 0x798e0045, 0x00000000}},  //   ўнае_, _ovel, sobw,\n  { {0xe96a0545, 0x672600bb, 0x44310095, 0x00000000}},  // [bb80] _маил_, _vakj, _arz_,\n  { {0x9c7c00ca, 0xa5bb004a, 0xf99f0173, 0x00000000}},  //   lača, _prór, ntèl_,\n  { {0x61e907c5, 0x6f1b0c7d, 0x4423004a, 0x00000000}},  //   _avel, keuc, _csj_,\n  { {0x9c7c0091, 0x65c60fd7, 0x7d1a1833, 0x00000000}},  //   nača, _обма, zets,\n  { {0xdb04001d, 0xa3de013d, 0x61e90e00, 0x00000000}},  //   _phiê, _दौर_, _cvel,\n  { {0x6f020197, 0x61e93674, 0x7d030087, 0x00000000}},  //   _scoc, _dvel, _ncns,\n  { {0xd5ad00a1, 0x44310197, 0x7d1a0010, 0x00000000}},  //   _اہل_, _grz_, vets,\n  { {0x6d4a0030, 0x9c7c10ec, 0x00000000, 0x00000000}},  //   _sofa, jača,   ,\n  { {0xdb04001d, 0x7d1a05d5, 0xb0cf0061, 0x00000000}},  //   _thiê, tets, _स्वग,\n  { {0x657e0051, 0xab640036, 0x00000000, 0x00000000}},  //   nnph, óżni,   ,\n  { {0x7d1a011f, 0xcf8f01fc, 0xdb1601aa, 0x00000000}},  //   rets, _ај_, _kiyè,\n  { {0xee3a03c8, 0x7d1a01d6, 0x61e9009d, 0x00000000}},  //   _мне_, sets, _yvel,\n  { {0xf2d3007b, 0x6d4a000b, 0x5eac0044, 0x00000000}},  //   כער_, _tofa, _ট্রে,\n  { {0x9f4e0051, 0xf1b801f3, 0x3a320146, 0x00000000}},  //   irfí_, _jiġ_, _dryp_,\n  { {0x7aed00ea, 0x75270010, 0x9c7c11af, 0x00000000}},  //   _tdat, _rajz, bača,\n  { {0xb4d70061, 0x44230022, 0x7aed04eb, 0x00000000}},  //   सर्_, _rsj_, _udat,\n  { {0x3a320007, 0x69cd00e7, 0x75270232, 0x00000000}},  // [bb90] _gryp_, _utae, _pajz,\n  { {0xd49b0175, 0x15f30061, 0x44230c5d, 0x00000000}},  //   оре_, ेंबर_, _psj_,\n  { {0xf48500e9, 0x7527008d, 0x61e90197, 0x00000000}},  //   رائی, _vajz, _svel,\n  { {0x3d0e013d, 0xe94500a1, 0x25b8004a, 0x00000000}},  //   त्ते_, _آرکی, _eirl_,\n  { {0xeb920049, 0x44310036, 0xe5c4007c, 0x00000000}},  //   אָג_, _wrz_, _ассо,\n  { {0x25b8190f, 0xe8e00011, 0xa0a50893, 0x00000000}},  //   _girl_, _kiều_, налд,\n  { {0x1fb500e3, 0xd00e023c, 0xdb16000a, 0x00000000}},  //   нсир, ملو_, _fiyè,\n  { {0xa29505b8, 0x26c900c4, 0x61e900ea, 0x00000000}},  //   _забі, ncao_, _tvel,\n  { {0x61e90bf8, 0xfce5004c, 0xe8e00011, 0x00000000}},  //   _uvel, нопо, _liều_,\n  { {0x653a007b, 0x1c450088, 0x7d09003b, 0x00000000}},  //   ִערד, еном, чног_,\n  { {0xeb9a01e0, 0xab2a0e75, 0x15f3013d, 0x00000000}},  //   зин_, пона_, ेंडर_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x9c7c0e3b, 0x00000000, 0x00000000, 0x00000000}},  //   rača,   ,   ,\n  { {0xdb19001a, 0x9c7c0161, 0x00000000, 0x00000000}},  //   _cuvâ, mačn,   ,\n  { {0x8b96012b, 0x9c7c07ac, 0x2bc60164, 0x00000000}},  //   _прич, lačn, _रूपा,\n  { {0xa5bb02d5, 0x28d0007d, 0x3958016c, 0x00000000}},  //   _próp, _त्रि, skrs_,\n  { {0x61ed021d, 0x9c7c0363, 0x7ae63675, 0x00000000}},  // [bba0] šalj, načn, makt,\n  { {0x26c900fa, 0x394616e8, 0x00000000, 0x00000000}},  //   acao_, _чног,   ,\n  { {0x66e602e9, 0xa3db0061, 0xed560049, 0x00000000}},  //   _пона, ढील_, עבער_,\n  { {0x9c7c0161, 0x26c93676, 0xa5bb3677, 0x00000000}},  //   kačn, ccao_, _tróp,\n  { {0x9c7c1531, 0x3ce502e1, 0x799c005b, 0x00000000}},  //   jačn, kalv_, olrw,\n  { {0x6fc7014a, 0x6143091b, 0x216700d7, 0x00000000}},  //   _sıca, леча, ничи_,\n  { {0x64a319ec, 0x7ae63678, 0x3ddd0319, 0x00000000}},  //   _бара, kakt, _awww_,\n  { {0x4444002b, 0x7ae60255, 0x8c250044, 0x00000000}},  //   mx_, jakt, যমান_,\n  { {0x44443679, 0x9c7c1b4e, 0x00000000, 0x00000000}},  //   lx_, gačn,   ,\n  { {0xc0aa05d4, 0x44441b4d, 0x5d54367a, 0x00000000}},  //   _فاضل_, ox_, ткот,\n  { {0x7ae601aa, 0x4444049e, 0x20b9007e, 0x00000000}},  //   fakt, nx_, _жыць_,\n  { {0x444403d5, 0x3ddd158d, 0xdd2f00b9, 0x00000000}},  //   ix_, _fwww_, _měři,\n  { {0xf99f0263, 0xc333019b, 0x44440066, 0x00000000}},  //   stèm_, אור_, hx_,\n  { {0x2b840676, 0x4444002b, 0xd90f0167, 0x00000000}},  //   rıca_, kx_, حید_,\n  { {0x97a70545, 0x7b0600b0, 0xe89501ab, 0x00000000}},  //   ерал, ättö, тавь,\n  { {0x7ae6011f, 0x4444002b, 0x6d5a064a, 0x00000000}},  //   cakt, dx_, lkta,\n  { {0x4444002b, 0x69c00325, 0x80e10044, 0x00000000}},  // [bbb0] ex_, ímet, _নাস্,\n  { {0x44440066, 0x6d5a0006, 0x61ed0059, 0x00000000}},  //   fx_, nkta, šalk,\n  { {0x44440066, 0xf48700ed, 0x9c7c0161, 0x00000000}},  //   gx_, хуан, začn,\n  { {0x68e7367b, 0x29030635, 0x9c7c220f, 0x00000000}},  //   lajd, lgja_, hačo,\n  { {0x2258007c, 0x7c210009, 0x673d00f8, 0x00000000}},  //   ницы_, zwlr, _insj,\n  { {0x660d19bd, 0x865a01f8, 0x2903009f, 0x00000000}},  //   mtak, _חדשי, ngja_,\n  { {0x7d01001c, 0xe8e0001d, 0x660d1603, 0x00000000}},  //   vgls, _hiểu_, ltak,\n  { {0x672d367c, 0xee39017f, 0xe8e0001d, 0x00000000}},  //   ndaj, дни_, _kiểu_,\n  { {0x7ae6074d, 0x65650058, 0x25640010, 0x00000000}},  //   vakt, ohhh, _föld_,\n  { {0x41b500d3, 0x9c7c367d, 0x6b9602d8, 0x00000000}},  //   _شمار, račn, _skyg,\n  { {0x80ca02fb, 0x63bb0020, 0x660d0b48, 0x00000000}},  //   _स्टे, _kiun, htak,\n  { {0x65651d50, 0x9c7c0627, 0x628c0036, 0x00000000}},  //   hhhh, pačn, żnoś,\n  { {0x63bb0020, 0x1d09003b, 0x63a90016, 0x00000000}},  //   _miun, _жели_, _mhen,\n  { {0x7ae6011c, 0x29030635, 0x660d00ea, 0x00000000}},  //   sakt, ggja_, dtak,\n  { {0x660d022b, 0x7ae60058, 0x00000000, 0x00000000}},  //   etak, pakt,   ,\n  { {0x660d002b, 0xe8e0001d, 0x69df00f6, 0x00000000}},  //   ftak, _biểu_, _fwqe,\n  { {0x660d367e, 0x7e69010f, 0x7ae40016, 0x00000000}},  // [bbc0] gtak, nzep, _ieit,\n  { {0x7ae4367f, 0x4444158a, 0x7bc30020, 0x00000000}},  //   _heit, tx_, _kunu,\n  { {0x4444028c, 0x9980085c, 0x7bc3033b, 0x00000000}},  //   ux_, _križ_, _junu,\n  { {0x4444002b, 0x63a90020, 0x69c432c8, 0x00000000}},  //   rx_, _chen, _kuie,\n  { {0x7ae43680, 0x63a90065, 0x44440066, 0x00000000}},  //   _meit, _dhen, sx_,\n  { {0x7ae40a58, 0x44440026, 0x23a7010e, 0x00000000}},  //   _leit, px_, võje_,\n  { {0x7bc304d4, 0x69c424b6, 0x256401e5, 0x00000000}},  //   _nunu, _luie, _völd_,\n  { {0x63bb0207, 0x63a9001a, 0x03a6005e, 0x00000000}},  //   _giun, _ghen, _рибо,\n  { {0xf77300b6, 0x3da60264, 0x9c7c0161, 0x00000000}},  //   יקה_, кроб, tačo,\n  { {0x63a90066, 0x7bc301f6, 0x00000000, 0x00000000}},  //   _zhen, _bunu,   ,\n  { {0x7ae408ba, 0xaf060d68, 0x6d5a0218, 0x00000000}},  //   _beit, _апел, rkta,\n  { {0x3f80010a, 0xbf13026c, 0x16dc0061, 0x00000000}},  //   čius_, _نومب, बरोब,\n  { {0x3ea0002a, 0x7ae43681, 0x7bc31901, 0x00000000}},  //   _áit_, _deit, _eunu,\n  { {0xbea3003b, 0x7bc30016, 0x69c400d4, 0x00000000}},  //   _тачк, _funu, _duie,\n  { {0x7ae402d5, 0x212c008d, 0x7bc30169, 0x00000000}},  //   _feit, _madh_, _gunu,\n  { {0x2d9e001f, 0x61ed3682, 0x660d1603, 0x00000000}},  //   llte_, šali, ttak,\n  { {0x63bb0207, 0x69c40129, 0x63a90016, 0x00000000}},  // [bbd0] _riun, _guie, _rhen,\n  { {0x660d1b5c, 0x7ae4001f, 0x63a9008d, 0x00000000}},  //   rtak, _zeit, _shen,\n  { {0x2d9e3683, 0x63a93684, 0xd49b0216, 0x00000000}},  //   ilte_, _phen, фра_,\n  { {0xe8e0001d, 0x660d0169, 0x2d9e010f, 0x00000000}},  //   _tiểu_, ptak, hlte_,\n  { {0x63bb000b, 0x64450ede, 0x00000000, 0x00000000}},  //   _viun, sxhi,   ,\n  { {0x349500ed, 0x3f860173, 0x63a91012, 0x00000000}},  //   _багр, _ajou_, _when,\n  { {0xd4980887, 0x68e5006b, 0xf07500a1, 0x00000000}},  //   _арт_, _mehd, دیاں_,\n  { {0x68e500b0, 0x7bc300e7, 0x2d5b00c4, 0x00000000}},  //   _lehd, _runu, _vêem_,\n  { {0xa3e703d7, 0x7bc33685, 0x79950009, 0x00000000}},  //   _मौत_, _sunu, kozw,\n  { {0x7ae4001f, 0x7bc33686, 0x7bc4007f, 0x00000000}},  //   _seit, _punu, _čiur,\n  { {0x7ae4044e, 0x3a2904cb, 0x3b0a0920, 0x00000000}},  //   _peit, _asap_, нено_,\n  { {0xa2aa007d, 0x69c42c2c, 0x00000000, 0x00000000}},  //   जेक्, _puie,   ,\n  { {0x7ae4009f, 0x69c40781, 0xe8e00011, 0x00000000}},  //   _veit, _quie, _liễu_,\n  { {0x7ae43687, 0xdb190030, 0xa3e40316, 0x00000000}},  //   _weit, _nuvæ, पीड_,\n  { {0x7ae4018e, 0x00000000, 0x00000000, 0x00000000}},  //   _teit,   ,   ,\n  { {0xfbd200b3, 0x00000000, 0x00000000, 0x00000000}},  //   _פתח_,   ,   ,\n  { {0x3667107f, 0x00000000, 0x00000000, 0x00000000}},  // [bbe0] гато_,   ,   ,\n  { {0x04460069, 0x00000000, 0x00000000, 0x00000000}},  //   лезн,   ,   ,\n  { {0x98a8007d, 0x212c2927, 0x00000000, 0x00000000}},  //   _गरिए, _radh_,   ,\n  { {0xb827004c, 0xe8e00082, 0x22460032, 0x00000000}},  //   _союз_, _diễu_, txok_,\n  { {0x5b7b0049, 0x2d9e00ea, 0x00000000, 0x00000000}},  //   ערנא, ylte_,   ,\n  { {0x29360049, 0x23660065, 0x31341737, 0x00000000}},  //   ראַן_, shoj_, рекр,\n  { {0xfaff0065, 0x00000000, 0x00000000, 0x00000000}},  //   dhën_,   ,   ,\n  { {0x44380022, 0xbdf40143, 0x9f540a85, 0x00000000}},  //   _irr_, апиј, рвич,\n  { {0x442a00f8, 0x00000000, 0x00000000, 0x00000000}},  //   _hsb_,   ,   ,\n  { {0x44380093, 0x98ba000a, 0x621b0049, 0x00000000}},  //   _krr_, _anpč_, _אומק,\n  { {0x9c7c0119, 0x2cb80039, 0x55970049, 0x00000000}},  //   mačk, ärd_, רדיע_,\n  { {0xda351001, 0x4fa3005e, 0x3a290022, 0x00000000}},  //   аемы, _лихв, _psap_,\n  { {0xed5a34b3, 0x629e0036, 0x799500e7, 0x00000000}},  //   _под_, ępow, tozw,\n  { {0xceb301ce, 0x442a3688, 0x44383689, 0x00000000}},  //   _פיס_, _osb_, _orr_,\n  { {0x442a1372, 0x37ab0f93, 0x58d40131, 0x00000000}},  //   _nsb_, етан_, сост,\n  { {0xf40a0044, 0xcb9900a2, 0x9c7c040d, 0x00000000}},  //   রবার_, _جنبش_, hačk,\n  { {0x68e5368a, 0x9c7c18a2, 0x442a0007, 0x00000000}},  // [bbf0] _tehd, kačk, _asb_,\n  { {0x9c7c1d9b, 0x442a00c4, 0x4438368b, 0x00000000}},  //   jačk, _bsb_, _brr_,\n  { {0x9c7c0387, 0x824b025a, 0xa2d50439, 0x00000000}},  //   dačk, کشاف_, ليات,\n  { {0x442a0169, 0x3dda0044, 0x91d5007e, 0x00000000}},  //   _dsb_, _দিনল, ацкі,\n  { {0x81c7001e, 0x442a000c, 0x443803f2, 0x00000000}},  //   klēš, _esb_, _err_,\n  { {0xb42500a1, 0x9c7c0091, 0x2fc5004a, 0x00000000}},  //   _پٹرو, gačk, _pulg_,\n  { {0x44381346, 0xa156012b, 0x00000000, 0x00000000}},  //   _grr_, рају_,   ,\n  { {0xbe390088, 0x00000000, 0x00000000, 0x00000000}},  //   вчої_,   ,   ,\n  { {0x9c7c016e, 0x3eb90039, 0x6234368c, 0x00000000}},  //   bačk, äst_, _лету,\n  { {0x8d55026b, 0x00000000, 0x00000000, 0x00000000}},  //   ртич,   ,   ,\n  { {0xdca50001, 0xcb6a0265, 0xe8e0001d, 0x00000000}},  //   рани, ване_, _hiệu_,\n  { {0x661d368d, 0xfaff0065, 0x61ed14f8, 0x00000000}},  //   _opsk, shën_, šalu,\n  { {0x6db20036, 0x7c2a368e, 0xe7e8013d, 0x00000000}},  //   _płat, _esfr, टीना_,\n  { {0x3941000a, 0x00000000, 0x00000000, 0x00000000}},  //   _cnhs_,   ,   ,\n  { {0xb8ce03d7, 0xe8e0001d, 0x661d0a5c, 0x00000000}},  //   _और_, _liệu_, _apsk,\n  { {0x2b40001a, 0x92e70044, 0x9c7c049c, 0x00000000}},  //   _unic_, পলু_, začk,\n\n  { {0x442a0093, 0xc4e6007c, 0x4438368f, 0x00000000}},  // [bc00] _ssb_, ижай, _srr_,\n  { {0x845a003b, 0x442a24b9, 0x6e2b278b, 0x00000000}},  //   крет_, _psb_, _msgb,\n  { {0xb4d603d7, 0x9c7c0466, 0xc7a60140, 0x00000000}},  //   _सभी_, vačk, _винк,\n  { {0x442a06ed, 0x2d853690, 0x00000000, 0x00000000}},  //   _vsb_, hnle_,   ,\n  { {0x2d820047, 0x9c7c0142, 0xdb1b009d, 0x00000000}},  //   ékek_, tačk, mptô,\n  { {0x442a023a, 0xe8e00011, 0x44380059, 0x00000000}},  //   _tsb_, _diệu_, _trr_,\n  { {0x442a067b, 0x6b5f0065, 0x9c7c0091, 0x00000000}},  //   _usb_, _dëgj, račk,\n  { {0xd1380046, 0x03d700b6, 0x9c7c0eae, 0x00000000}},  //   _skąd_, _כולם_, sačk,\n  { {0x9c7c3691, 0x70f60025, 0xf11a13d9, 0x00000000}},  //   mači, _نسائ, _لغات_,\n  { {0x63a20219, 0x9c7c0627, 0x4096003b, 0x00000000}},  //   llon, lači, _крет,\n  { {0x63a2095f, 0x4c94012d, 0x61ed007f, 0x00000000}},  //   olon, синс, šalt,\n  { {0x9c7c3692, 0x63a21e16, 0x6db20036, 0x00000000}},  //   nači, nlon, _płas,\n  { {0x672f0036, 0x63a20026, 0xa2aa0061, 0x00000000}},  //   _racj, ilon, जेच्,\n  { {0x7af60046, 0x63a2005b, 0x661d012d, 0x00000000}},  //   _edyt, hlon, _rpsk,\n  { {0x6db20046, 0xd7c9007a, 0x63a20091, 0x00000000}},  //   _włas, اوره_, klon,\n  { {0xd6d803c0, 0x501b00b3, 0xdb1f0065, 0x00000000}},  //   иту_, כולו, _miqë,\n  { {0x63a23693, 0xd84300b9, 0x9c7c09fc, 0x00000000}},  // [bc10] dlon, dičů_, dači,\n  { {0x63a20036, 0xdce800b9, 0x00000000, 0x00000000}},  //   elon, vidě,   ,\n  { {0xd5b802ea, 0xf9900025, 0x317c01a2, 0x00000000}},  //   рст_, _تبي_, divz_,\n  { {0x9c7c0091, 0x3384005e, 0x660400d9, 0x00000000}},  //   gači, оучв, buik,\n  { {0x569401fb, 0xa1593694, 0x9647007e, 0x00000000}},  //   _мают, ладу_, _тэнд,\n  { {0x63a201d6, 0x00000000, 0x00000000, 0x00000000}},  //   alon,   ,   ,\n  { {0x63a200b9, 0x2564010f, 0xdc3b01d5, 0x00000000}},  //   blon, _köln_, _oġġe,\n  { {0x43850054, 0x9f4e01aa, 0x645800b0, 0x00000000}},  //   _الرق, nsfè_, ävie,\n  { {0xf99f0197, 0x00000000, 0x00000000, 0x00000000}},  //   ntès_,   ,   ,\n  { {0x4d6501e0, 0xdc3b002b, 0x201e0022, 0x00000000}},  //   сков, _aġġe, _fpti_,\n  { {0x3f5800c4, 0x00000000, 0x00000000, 0x00000000}},  //   _céus_,   ,   ,\n  { {0x8e390439, 0x3f5800d4, 0xcc08009e, 0x00000000}},  //   _مستر_, _déus_, گزین_,\n  { {0xed4e02dc, 0x00000000, 0x00000000, 0x00000000}},  //   _ео_,   ,   ,\n  { {0x2bcf02f4, 0xe503007d, 0x63a20a4b, 0x00000000}},  //   _संपा, _लागि_, zlon,\n  { {0x6d433695, 0x6e2927f4, 0x1867017a, 0x00000000}},  //   _inna, lweb, бари_,\n  { {0x6f0904cb, 0x290c0036, 0x7c3c0190, 0x00000000}},  //   ngec, żda_, ærre,\n  { {0x9c7c12a8, 0x6e290462, 0x00000000, 0x00000000}},  // [bc20] vači, nweb,   ,\n  { {0x660400c7, 0x00000000, 0x00000000, 0x00000000}},  //   ruik,   ,   ,\n  { {0x63a2006a, 0xdd7a0049, 0x6e2901a2, 0x00000000}},  //   tlon, נטעל, hweb,\n  { {0xf77200f3, 0xd24f0014, 0x68ee079c, 0x00000000}},  //   _راج_, کنه_, labd,\n  { {0x9c7c0b4d, 0x63a21e5a, 0x6d430010, 0x00000000}},  //   rači, rlon, _onna,\n  { {0x63a202db, 0x6e2900ea, 0x29180810, 0x00000000}},  //   slon, dweb, nfra_,\n  { {0x6e2901c3, 0x00000000, 0x00000000, 0x00000000}},  //   eweb,   ,   ,\n  { {0x6d433696, 0x9df80081, 0x984c0089, 0x00000000}},  //   _anna, анит_, dēļa_,\n  { {0xa5bb362f, 0x2cea0e09, 0x645e18ef, 0x00000000}},  //   _próx, льно_, lypi,\n  { {0x2c4e013f, 0x00000000, 0x00000000, 0x00000000}},  //   lədi_,   ,   ,\n  { {0xaf0a0123, 0xfaff008d, 0x459b007b, 0x00000000}},  //   _مقام_, shëm_, רסיע,\n  { {0x6d4303b6, 0x7b6700ed, 0x657e063f, 0x00000000}},  //   _enna, стое, hiph,\n  { {0x29183697, 0xbc670167, 0x5e5a083e, 0x00000000}},  //   ffra_, لمین_, _حجاج_,\n  { {0xdd900439, 0x29180190, 0xfbcf02fd, 0x00000000}},  //   _توت_, gfra_, بتی_,\n  { {0x115b0049, 0x9848007c, 0x00000000, 0x00000000}},  //   נדלע, бята_,   ,\n  { {0x28d902fb, 0xc6220044, 0x443f016e, 0x00000000}},  //   _ब्रि, নিনা_, _ču_,\n  { {0x7aef1de2, 0x657e0009, 0x29050009, 0x00000000}},  // [bc30] mact, fiph, òlas_,\n  { {0x7bca000b, 0x657e0009, 0x7aef0531, 0x00000000}},  //   _kufu, giph, lact,\n  { {0x59d4025a, 0x7aef02d0, 0xf99f1c88, 0x00000000}},  //   _وغیر, oact, stès_,\n  { {0x7aef00bb, 0x2564072d, 0x7bca0ea6, 0x00000000}},  //   nact, _höll_, _mufu,\n  { {0x2bcf02fb, 0xe29900ec, 0x944500a1, 0x00000000}},  //   _संभा, јал_, _ڈھان,\n  { {0x7aef0927, 0x6142003b, 0xc1e8007e, 0x00000000}},  //   hact, деша, сьце_,\n  { {0x7aef00b5, 0x00000000, 0x00000000, 0x00000000}},  //   kact,   ,   ,\n  { {0x9c7c01ca, 0x27e50027, 0x6b8d05bd, 0x00000000}},  //   naču, álny_, _njag,\n  { {0x7aef0382, 0x7c24012d, 0x6f09020d, 0x00000000}},  //   dact, _ćira, rgec,\n  { {0x6e2900e7, 0x6b8d006c, 0x7bca0045, 0x00000000}},  //   rweb, _ajag, _bufu,\n  { {0x3a2003eb, 0x7aef00ab, 0x8b26003b, 0x00000000}},  //   _spip_, fact, одне,\n  { {0x920d0164, 0xeb9a04b6, 0x200701bc, 0x00000000}},  //   _समाज_, рим_, muni_,\n  { {0x20070b37, 0xc9aa00ed, 0x6b8d000a, 0x00000000}},  //   luni_, ивме_, _djag,\n  { {0x7aef001c, 0x7bca142e, 0x6d4315c1, 0x00000000}},  //   aact, _fufu, _unna,\n  { {0x20071926, 0x5b36007e, 0x7bca2a98, 0x00000000}},  //   nuni_, _дэпу, _gufu,\n  { {0x7aef001c, 0x00000000, 0x00000000, 0x00000000}},  //   cact,   ,   ,\n  { {0x200707d7, 0xe57a0242, 0x25640039, 0x00000000}},  // [bc40] huni_, аза_, _föll_,\n  { {0x645e0065, 0x7bc4006c, 0x00000000, 0x00000000}},  //   typi, _hiiu,   ,\n  { {0x20070d5d, 0x657e3698, 0x93cb00a1, 0x00000000}},  //   juni_, riph, لانہ_,\n  { {0xe73a0057, 0x20070020, 0x9f5c00b9, 0x00000000}},  //   _тем_, duni_, prvé_,\n  { {0x914a0072, 0x27ed0091, 0x645e00b4, 0x00000000}},  //   ичка_, ćene_, sypi,\n  { {0xd5b200a1, 0x799c3699, 0x200700e7, 0x00000000}},  //   _آفس_, norw, funi_,\n  { {0x200712e8, 0xdb0f0161, 0xa067003b, 0x00000000}},  //   guni_, ždéh, жаја_,\n  { {0x799c0016, 0x7aef009d, 0x2c4e006b, 0x00000000}},  //   horw, xact, qədi_,\n  { {0xc7b3019b, 0x799c369a, 0xed8a369b, 0x00000000}},  //   ובה_, korw, исок_,\n  { {0x2007000b, 0x6616010a, 0xdb0d00f4, 0x00000000}},  //   buni_, ityk, _chaî,\n  { {0x7aef001c, 0x20070198, 0x6aad0036, 0x00000000}},  //   tact, cuni_, _szaf,\n  { {0x6616369c, 0x6aa40045, 0x00000000, 0x00000000}},  //   ktyk, _byif,   ,\n  { {0x799c0675, 0xdcfa369d, 0x7bc40022, 0x00000000}},  //   forw, litč, _diiu,\n  { {0x7aef2318, 0x69dd00ea, 0x7bca00e7, 0x00000000}},  //   sact, rpse, _tufu,\n  { {0x7e600253, 0x6d58093e, 0x2fcc000a, 0x00000000}},  //   lymp, _iova, _judg_,\n  { {0x2bcf0164, 0x69dd04d3, 0x6d580471, 0x00000000}},  //   _संता, ppse, _hova,\n  { {0x6d580e88, 0x9c7c1034, 0x20070509, 0x00000000}},  // [bc50] _kova, raču, zuni_,\n  { {0x6d58012b, 0x7aed167c, 0x20071475, 0x00000000}},  //   _jova, _heat, yuni_,\n  { {0x49b8007a, 0x7aed003f, 0x6d580403, 0x00000000}},  //   _بايد_, _keat, _mova,\n  { {0x6d580010, 0x200700e7, 0x69c50010, 0x00000000}},  //   _lova, vuni_, _hihe,\n  { {0x69c5225a, 0x7aed369e, 0x6145007e, 0x00000000}},  //   _kihe, _meat, зела,\n  { {0x6d5819fa, 0x412900e3, 0x7aed0122, 0x00000000}},  //   _nova, соко_, _leat,\n  { {0x69c52460, 0x2bc601f5, 0xe0420131, 0x00000000}},  //   _mihe, _रंगा, енщи,\n  { {0xd34300a6, 0x6e220051, 0x200700a9, 0x00000000}},  //   _تفری, _bpob, runi_,\n  { {0xc332007b, 0x75350066, 0x6d581c35, 0x00000000}},  //   _און_, _kazz, _bova,\n  { {0x6d58001a, 0x200720b9, 0xceb900b9, 0x00000000}},  //   _cova, puni_, neři_,\n  { {0x6d58369f, 0x75350207, 0x7aed038f, 0x00000000}},  //   _dova, _mazz, _beat,\n  { {0x61e936a0, 0x69c5021e, 0x66160639, 0x00000000}},  //   _kwel, _aihe, ytyk,\n  { {0x7aed00ab, 0xf1c3002b, 0x69c50032, 0x00000000}},  //   _deat, poġġ_, _bihe,\n  { {0x753501d5, 0x61e90020, 0x2d820010, 0x00000000}},  //   _nazz, _mwel, éket_,\n  { {0x7aed0038, 0x69c50065, 0x25640039, 0x00000000}},  //   _feat, _dihe, _följ_,\n  { {0x7aed36a1, 0x66160052, 0x799c0045, 0x00000000}},  //   _geat, ttyk, sorw,\n  { {0x442336a2, 0x75350197, 0x799c00e7, 0x00000000}},  // [bc60] _apj_, _bazz, porw,\n  { {0x75350207, 0xaa3b009b, 0x661636a3, 0x00000000}},  //   _cazz, _פתיח, rtyk,\n  { {0x66161d20, 0x44310009, 0x395a0190, 0x00000000}},  //   styk, _csz_, _iops_,\n  { {0x69c500d0, 0x644801d5, 0x61e91163, 0x00000000}},  //   _zihe, _ġdid, _bwel,\n  { {0x75350197, 0x69c500e0, 0x443a0087, 0x00000000}},  //   _fazz, _yihe, svp_,\n  { {0x7535054f, 0x61e9112b, 0x00000000, 0x00000000}},  //   _gazz, _dwel,   ,\n  { {0x442c0263, 0x6d5836a4, 0xa3c50061, 0x00000000}},  //   _èd_, _rova, _उंच_,\n  { {0x6d5815d8, 0x09e20044, 0x00000000, 0x00000000}},  //   _sova, _বিনা,   ,\n  { {0x61e9018e, 0x6d5829e4, 0x7aed1acc, 0x00000000}},  //   _gwel, _pova, _reat,\n  { {0x7aed00ab, 0x63ae0006, 0x7bcd016c, 0x00000000}},  //   _seat, šinė, _čaur,\n  { {0x7aed0004, 0x6d580061, 0x7e600052, 0x00000000}},  //   _peat, _vova, symp,\n  { {0x66040007, 0xa3e4006e, 0x395a0045, 0x00000000}},  //   krik, पीए_, _aops_,\n  { {0x09e4008b, 0x6d580027, 0x65ab010f, 0x00000000}},  //   ноўн, _tova, fühl,\n  { {0x395a0129, 0x7aed00ab, 0xdb0d009d, 0x00000000}},  //   _cops_, _weat, _thaï,\n  { {0x7aed0004, 0x36d501f9, 0x753501bc, 0x00000000}},  //   _teat, добр, _razz,\n  { {0x27ff0746, 0x2d9e36a5, 0x660436a6, 0x00000000}},  //   čun_, lote_, frik,\n  { {0x75350207, 0x2d8c36a7, 0x69c501c2, 0x00000000}},  // [bc70] _pazz, onde_, _tihe,\n  { {0x2d9e0263, 0x2d8c36a8, 0x2fc60058, 0x00000000}},  //   note_, nnde_, _liog_,\n  { {0x6604006c, 0xf9900025, 0x61e92c41, 0x00000000}},  //   arik, _حبي_, _swel,\n  { {0x2bcf007d, 0xe1f10014, 0x2d9e0142, 0x00000000}},  //   _संसा, نست_, hote_,\n  { {0xb90a001d, 0x7535002b, 0x45d4109f, 0x00000000}},  //   _nghệ_, _tazz, _пояс,\n  { {0x2d9e36a9, 0x09e20044, 0x1a9c0049, 0x00000000}},  //   jote_, _বিমা, זידע,\n  { {0xd12e0439, 0x442336aa, 0x2fc601c3, 0x00000000}},  //   شمي_, _upj_, _biog_,\n  { {0x2d8c1296, 0x2366037e, 0xfe4500ed, 0x00000000}},  //   ende_, ckoj_, днио,\n  { {0x09e20055, 0x88c50055, 0xee360642, 0x00000000}},  //   _বিভা, ্রিক, дны_,\n  { {0xe81e03d7, 0x2d9e1ebf, 0x2b4900c4, 0x00000000}},  //   _पहला_, gote_, _anac_,\n  { {0x61fc0089, 0x395a0943, 0x26d900d9, 0x00000000}},  //   _ārli, _rops_, _ofso_,\n  { {0x2d8c2a27, 0x09e20044, 0x395a0943, 0x00000000}},  //   ande_, _বিবা, _sops_,\n  { {0x2d9e001f, 0x2bcf02d2, 0xfe4503e8, 0x00000000}},  //   bote_, _संवा, _інко,\n  { {0x2d9e0181, 0x2b490026, 0x26cb17f1, 0x00000000}},  //   cote_, _enac_, _agco_,\n  { {0x2b4900f4, 0x07a6005c, 0x236d0ce2, 0x00000000}},  //   _fnac_, давн, _olej_,\n  { {0x6604022b, 0x2904047f, 0x8b95008b, 0x00000000}},  //   trik, şma_, _прыч,\n  { {0xdcfa001e, 0x07a30783, 0x27ed0091, 0x00000000}},  // [bc80] litā, татн, ćena_,\n  { {0x6604022b, 0x59830eec, 0xfaff0023, 0x00000000}},  //   rrik, _альб, nkën_,\n  { {0x66040004, 0xdcfa0089, 0x236d0023, 0x00000000}},  //   srik, nitā, _blej_,\n  { {0x2ca7069c, 0x491a006e, 0x2d9e0020, 0x00000000}},  //   _mynd_, म्रो_, zote_,\n  { {0x23660065, 0x2d9e03ef, 0x2d8c36ab, 0x00000000}},  //   rkoj_, yote_, ynde_,\n  { {0x23660091, 0x2d9e28f0, 0xdb040048, 0x00000000}},  //   skoj_, xote_, _chiú,\n  { {0x2d9e0142, 0x656318ee, 0xdb040051, 0x00000000}},  //   vote_, önhe, _dhiú,\n  { {0x2d9e0020, 0x236d0059, 0xdcfa0089, 0x00000000}},  //   wote_, _glej_, ditā,\n  { {0x2d9e0006, 0x00000000, 0x00000000, 0x00000000}},  //   tote_,   ,   ,\n  { {0x2d8c36ac, 0xdb040048, 0x61e2046e, 0x00000000}},  //   unde_, _ghiú, mpol,\n  { {0x61e2006c, 0xcfa900a1, 0xdcfa0089, 0x00000000}},  //   lpol, _کالم_, gitā,\n  { {0x61e236ad, 0xdb0d00c4, 0xa5bb00fa, 0x00000000}},  //   opol, _thaí, _apól,\n  { {0x320601d6, 0x61e21469, 0xfaff0065, 0x00000000}},  //   nroy_, npol, dhët_,\n  { {0x3f84000b, 0x2ca70909, 0x61e20026, 0x00000000}},  //   limu_, _fynd_, ipol,\n  { {0xb8d70183, 0x58d40088, 0xdcfa0089, 0x00000000}},  //   _जर_, тост, citā,\n  { {0x3f8436ae, 0x65ab0bea, 0x61e204d3, 0x00000000}},  //   nimu_, rühm, kpol,\n  { {0x35b501f9, 0x60da01a2, 0x00000000, 0x00000000}},  // [bc90] ебар, _oftm,   ,\n  { {0x3f84000b, 0x61e20142, 0x236d00ca, 0x00000000}},  //   himu_, dpol, _slej_,\n  { {0x3f840a64, 0x68f50279, 0x61e20be1, 0x00000000}},  //   kimu_, mazd, epol,\n  { {0x14df02fb, 0xdb040051, 0x3f840006, 0x00000000}},  //   _प्रण, _shiú, jimu_,\n  { {0xdb1600f4, 0x69d80059, 0x3f840006, 0x00000000}},  //   écéd, _čvek, dimu_,\n  { {0x6d5c0039, 0x672d0217, 0x00000000, 0x00000000}},  //   öral, leaj,   ,\n  { {0x6033006b, 0x10a219a5, 0x25a101dc, 0x00000000}},  //   _kəmə, лишн, mohl_,\n  { {0x6d4a010f, 0xdcfa0089, 0x3f840bc3, 0x00000000}},  //   _anfa, vitā, gimu_,\n  { {0x2ca736af, 0x3f8d36b0, 0x656e0022, 0x00000000}},  //   _synd_, rneu_, _ylbh,\n  { {0x68f50620, 0x128a0167, 0x98a30089, 0x00000000}},  //   jazd, _عملی_, zejā_,\n  { {0x1ae70044, 0x09e20044, 0x660d0022, 0x00000000}},  //   _কাজে_, _বিধা, huak,\n  { {0x6d4a028c, 0xdcfa0089, 0xfaff0065, 0x00000000}},  //   _enfa, ritā, dhës_,\n  { {0x672d0035, 0x00000000, 0x00000000, 0x00000000}},  //   deaj,   ,   ,\n  { {0x09e20044, 0x20070197, 0xdcfa0089, 0x00000000}},  //   _বিদা, orni_, pitā,\n  { {0x61e20059, 0xd7be0061, 0x00000000, 0x00000000}},  //   zpol, ्दलच,   ,\n  { {0x2d85048f, 0xc7a300ed, 0x07a30478, 0x00000000}},  //   lile_, гиск, гасн,\n  { {0x61e20288, 0x660d0032, 0x00000000, 0x00000000}},  // [bca0] xpol, guak,   ,\n  { {0x2d850938, 0xba9b034e, 0x3f840020, 0x00000000}},  //   nile_, _מספי, zimu_,\n  { {0xdcfa001a, 0x130600ed, 0x61fb00b0, 0x00000000}},  //   lită, езем, _avul,\n  { {0x2d850912, 0x00000000, 0x00000000, 0x00000000}},  //   hile_,   ,   ,\n  { {0x2d8536b1, 0xdcfa001a, 0x3f840006, 0x00000000}},  //   kile_, nită, vimu_,\n  { {0x1ae70055, 0x61e236b2, 0x61e4000d, 0x00000000}},  //   _কাছে_, rpol, ţilo,\n  { {0x2d8520b9, 0x61e20091, 0x3f8416c3, 0x00000000}},  //   dile_, spol, timu_,\n  { {0x61e20197, 0x7c3e0010, 0x2d85006c, 0x00000000}},  //   ppol, _ápri, eile_,\n  { {0x2d8521f3, 0x63a20160, 0xfaff0023, 0x00000000}},  //   file_, moon, zhës_,\n  { {0x2d85023e, 0x3f840020, 0x00000000, 0x00000000}},  //   gile_, simu_,   ,\n  { {0x4c94005e, 0x61e00009, 0xfaff2f53, 0x00000000}},  //   тинс, _html, xhës_,\n  { {0x63a2011c, 0xe0df0011, 0x00000000, 0x00000000}},  //   noon, _đòi_,   ,\n  { {0x2d85051b, 0x00000000, 0x00000000, 0x00000000}},  //   bile_,   ,   ,\n  { {0x2d851e5a, 0x63a217c6, 0x6d4a2cd7, 0x00000000}},  //   cile_, hoon, _unfa,\n  { {0x63a2003c, 0x27ed0091, 0x2bac0316, 0x00000000}},  //   koon, ćeno_, _टीका,\n  { {0x25a1010f, 0x63a2006c, 0x660d2092, 0x00000000}},  //   wohl_, joon, tuak,\n  { {0xfaff0065, 0xf48500a1, 0xb999003b, 0x00000000}},  // [bcb0] shës_, ھائی, _ових_,\n  { {0xd2510167, 0x660d0032, 0x6d9c014a, 0x00000000}},  //   ینا_, ruak, _uçağ,\n  { {0x63a202ae, 0x44270115, 0x79870009, 0x00000000}},  //   foon, ïn_, mijw,\n  { {0x63a20be4, 0xdb16000a, 0x00000000, 0x00000000}},  //   goon, _chyè,   ,\n  { {0xdb0400bb, 0x00000000, 0x00000000, 0x00000000}},  //   _skië,   ,   ,\n  { {0x79870009, 0x2d85010e, 0x3a29000a, 0x00000000}},  //   nijw, xile_, _mpap_,\n  { {0x63a201d6, 0x200e0009, 0xdcfa0035, 0x00000000}},  //   boon, gufi_, zită,\n  { {0xc01c0011, 0x20070065, 0x63a2062a, 0x00000000}},  //   _hước_, rrni_, coon,\n  { {0xe3b00188, 0x2d85001a, 0x32190076, 0x00000000}},  //   _طرف_, tile_, _زياد_,\n  { {0x4d6501fb, 0x1c450aef, 0xdcfa001a, 0x00000000}},  //   тков, вном, vită,\n  { {0x2d851305, 0xeb9a1662, 0x3b0a1123, 0x00000000}},  //   rile_, дин_, мено_,\n  { {0x2d85001a, 0x29011799, 0x00560097, 0x00000000}},  //   sile_, _adha_, _בשעת_,\n  { {0x3f7a0049, 0x3a290436, 0x3b000065, 0x00000000}},  //   _קאנס, _cpap_, _vdiq_,\n  { {0xc01c00ad, 0xdcfa001a, 0xdce80006, 0x00000000}},  //   _nước_, rită, didė,\n  { {0x98a61666, 0x63a20020, 0x00000000, 0x00000000}},  //   тиве, yoon,   ,\n  { {0x9a6a0025, 0x00000000, 0x00000000, 0x00000000}},  //   _يمثل_,   ,   ,\n  { {0x6b8436b3, 0xc01c001d, 0x7c240107, 0x00000000}},  // [bcc0] _imig, _bước_, _ćiri,\n  { {0x63a201bb, 0xc01c0011, 0x09f700a0, 0x00000000}},  //   woon, _cước_, _שמים_,\n  { {0x63a20fd5, 0x80c70055, 0x9f4e0065, 0x00000000}},  //   toon, রুত্, ënës_,\n  { {0x91e60849, 0x9343073b, 0x00000000, 0x00000000}},  //   воде, инхе,   ,\n  { {0x2564000c, 0x63a2006c, 0x82330025, 0x00000000}},  //   _sölu_, roon, لروا,\n  { {0x63a2006c, 0x42d20044, 0xe0cf0025, 0x00000000}},  //   soon, ারেশ, يزى_,\n  { {0x63a20020, 0xf993009b, 0x00000000, 0x00000000}},  //   poon, ברג_,   ,\n  { {0x442a023a, 0x65b0010f, 0x44381352, 0x00000000}},  //   _ipb_, zähl, _isr_,\n  { {0x442a1ce1, 0x753c00b4, 0x201c050f, 0x00000000}},  //   _hpb_, _karz, stvi_,\n  { {0x6b840977, 0x44380022, 0xc01c0082, 0x00000000}},  //   _amig, _ksr_, _xước_,\n  { {0x217501c0, 0x09e20044, 0x442a0085, 0x00000000}},  //   _сутр, _বিষা, _jpb_,\n  { {0xf41300b6, 0x65b0010f, 0xdce10089, 0x00000000}},  //   ספר_, wähl, rklā,\n  { {0xc33301f8, 0x80c70055, 0xed5a005e, 0x00000000}},  //   בור_, রুদ্, _оод_,\n  { {0x6b8436b4, 0x753c0046, 0x09e20044, 0x00000000}},  //   _emig, _narz, _বিশা,\n  { {0x97a7007c, 0x798722b1, 0x443836b5, 0x00000000}},  //   врал, rijw, _nsr_,\n  { {0x25fe013d, 0x09e20044, 0x24b80044, 0x00000000}},  //   _लिखी_, _বিরা, জশাহ,\n  { {0xc7c8007c, 0x443836b6, 0x45d40072, 0x00000000}},  // [bcd0] тыре_, _asr_, иотс,\n  { {0x753c0026, 0x44380aa0, 0x6b840087, 0x00000000}},  //   _carz, _bsr_, _zmig,\n  { {0x6f020061, 0x443805ae, 0xdce80006, 0x00000000}},  //   _odoc, _csr_, sidė,\n  { {0x44380179, 0x386c068f, 0x6f0203e7, 0x00000000}},  //   _dsr_, ødre_, _ndoc,\n  { {0x4438104a, 0xc01c0082, 0x753c0095, 0x00000000}},  //   _esr_, _tước_, _farz,\n  { {0x753c1ee4, 0x7c380091, 0x7bcd0006, 0x00000000}},  //   _garz, _osvr, _liau,\n  { {0xc9540097, 0x44380145, 0x673d21ca, 0x00000000}},  //   ימס_, _gsr_, _kasj,\n  { {0xee390113, 0x753c0046, 0x9324026c, 0x00000000}},  //   ени_, _zarz, _پرِن,\n  { {0x673d36b7, 0x63bb1721, 0x5cf5105c, 0x00000000}},  //   _masj, _ihun, ляну,\n  { {0x257618f9, 0x6b840066, 0x27fe0059, 0x00000000}},  //   _vælg_, _smig, štni_,\n  { {0x9f0506b4, 0x63bb0011, 0x6f020009, 0x00000000}},  //   _موضو, _khun, _fdoc,\n  { {0x673d36b8, 0x2bba0025, 0x7bcd2b0f, 0x00000000}},  //   _nasj, عادة_, _ciau,\n  { {0x7c2a107b, 0x7bcd0093, 0x63a900e7, 0x00000000}},  //   _epfr, _diau, _mken,\n  { {0x6447014a, 0xfce20aa2, 0x6aad000a, 0x00000000}},  //   _orji, _лошо, _dyaf,\n  { {0x63a90263, 0xbd9a0049, 0x673d0168, 0x00000000}},  //   _oken, _אױסט, _basj,\n  { {0xe73700ed, 0x63bb0011, 0x753c2820, 0x00000000}},  //   лес_, _nhun, _sarz,\n  { {0x64430698, 0x753c0207, 0x4438013f, 0x00000000}},  // [bce0] ænin, _parz, _ssr_,\n  { {0x20180193, 0x44380b7d, 0x63a9010e, 0x00000000}},  //   _årig_, _psr_, _aken,\n  { {0x63bb002a, 0x7af601c3, 0x753c2005, 0x00000000}},  //   _bhun, _keyt, _varz,\n  { {0xe29a36b9, 0x63bb001d, 0x753c0036, 0x00000000}},  //   нае_, _chun, _warz,\n  { {0xa683132a, 0x63bb0065, 0x753c1c17, 0x00000000}},  //   _гляд, _dhun, _tarz,\n  { {0x64a60106, 0x7af61ea9, 0x63bb002d, 0x00000000}},  //   _бага, _leyt, _ehun,\n  { {0x629c0046, 0x442a00ca, 0x80260014, 0x00000000}},  //   _środ, _upb_, ارتم,\n  { {0x7af6000c, 0x444400e5, 0x63bb0177, 0x00000000}},  //   _neyt, mv_, _ghun,\n  { {0xa5bb0051, 0x44442d0f, 0x7bcd007f, 0x00000000}},  //   _spói, lv_, _riau,\n  { {0xa3d303d7, 0x71d7009b, 0x7bcd0006, 0x00000000}},  //   _हूँ_, _עובד_, _siau,\n  { {0x7bcd0181, 0xdb55007c, 0x444436ba, 0x00000000}},  //   _piau, авны, nv_,\n  { {0x444436bb, 0x69d600ab, 0x63bb0023, 0x00000000}},  //   iv_, _buye, _xhun,\n  { {0xc33300b6, 0x673d0056, 0x4444006c, 0x00000000}},  //   זור_, _rasj, hv_,\n  { {0x4444012d, 0xef19002b, 0x69d60082, 0x00000000}},  //   kv_, viżi_, _duye,\n  { {0xa3d303d7, 0x672436bc, 0x673d05c9, 0x00000000}},  //   _हूं_, ffij, _pasj,\n  { {0x44440232, 0x673d0065, 0x213e0544, 0x00000000}},  //   dv_, _qasj, _lath_,\n  { {0x44440253, 0x673d00ca, 0xc987013b, 0x00000000}},  // [bcf0] ev_, _vasj, _буни,\n  { {0x63a91105, 0x63bb1706, 0x64470061, 0x00000000}},  //   _sken, _shun, _prji,\n  { {0xd6d10054, 0x63bb2088, 0x3d1c007d, 0x00000000}},  //   _وقد_, _phun, _माने_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x4444164f, 0x213e00ab, 0x90d50082, 0x00000000}},  //   av_, _bath_, _dàn,\n  { {0x3ce90107, 0xa5930167, 0x3f8636bd, 0x00000000}},  //   _đavo_, _اگرچ, _amou_,\n  { {0x213e0051, 0x70520025, 0x63bb0122, 0x00000000}},  //   _dath_, قنوا, _thun,\n  { {0x63a90637, 0x6f65005e, 0x660d0032, 0x00000000}},  //   _uken, рвиз, orak,\n  { {0x44210038, 0x660d005d, 0x213e018e, 0x00000000}},  //   lth_, nrak, _fath_,\n  { {0x213e005b, 0x660d36be, 0x65b0010e, 0x00000000}},  //   _gath_, irak, vähk,\n  { {0x44210038, 0xdcfa0089, 0x69d60022, 0x00000000}},  //   nth_, entē, _suye,\n  { {0x4421016d, 0x660d0089, 0x1ee700a2, 0x00000000}},  //   ith_, krak, _صوتی_,\n  { {0xeb9701e0, 0x386a0016, 0x7ae904de, 0x00000000}},  //   рия_, wybr_, ñeta,\n  { {0xfce5012b, 0x44210023, 0x7af600e0, 0x00000000}},  //   _токо, kth_, _weyt,\n  { {0x46f6013b, 0x660d006c, 0x02b2006e, 0x00000000}},  //   ичат, erak, _जर्न,\n  { {0x44210365, 0x69d60011, 0x44441768, 0x00000000}},  //   dth_, _tuye, vv_,\n  { {0x44210bc4, 0x672400b5, 0xe737007c, 0x00000000}},  // [bd00] eth_, rfij, шет_,\n  { {0x6d4107dc, 0x44440035, 0xe5770057, 0x00000000}},  //   ndla, tv_, азу_,\n  { {0x68fc003b, 0x442108cb, 0x213e1d6c, 0x00000000}},  //   mard, gth_, _rath_,\n  { {0x779401ef, 0x68fc01f6, 0x44440030, 0x00000000}},  //   _ایرا, lard, rv_,\n  { {0x80ad0055, 0x213e0339, 0x44210122, 0x00000000}},  //   টেম্, _path_, ath_,\n  { {0x2918000c, 0x333f00f4, 0x444400f6, 0x00000000}},  //   ngra_, _eaux_, pv_,\n  { {0x333f00f4, 0x6d4136bf, 0x2167003b, 0x00000000}},  //   _faux_, ddla, рији_,\n  { {0x68fc0c54, 0x931602fd, 0x3eaf00ea, 0x00000000}},  //   hard, _خورش, _bygt_,\n  { {0x68fc014a, 0x27ed0091, 0x602a006b, 0x00000000}},  //   kard, ćeni_, _qəmb,\n  { {0x5d66012b, 0x65b0010f, 0xe2a6000c, 0x00000000}},  //   ртиз, fähi, íðum_,\n  { {0x2cb80d32, 0x10a60088, 0x6441000c, 0x00000000}},  //   ård_, _тижн, _álit,\n  { {0x2d872cba, 0xbb94007c, 0x80ad0044, 0x00000000}},  //   _emne_, жающ, _চলচ্,\n  { {0x68fc0056, 0x00000000, 0x00000000, 0x00000000}},  //   fard,   ,   ,\n  { {0xac180245, 0x44210016, 0x68fc36c0, 0x00000000}},  //   _боку_, yth_, gard,\n  { {0x2d8c006c, 0xb868098c, 0x2bd002fb, 0x00000000}},  //   mide_, ајте_, _संचा,\n  { {0x2d8c11be, 0x291836c1, 0x8b67035b, 0x00000000}},  //   lide_, agra_, _خاتم,\n  { {0x7afd36c2, 0x68fc027b, 0x7bd80073, 0x00000000}},  // [bd10] mast, bard, _huvu,\n  { {0x7afd1c0b, 0x68fc0181, 0x660d22d1, 0x00000000}},  //   last, card, rrak,\n  { {0x65ab001f, 0x442103a1, 0x660d0052, 0x00000000}},  //   führ, uth_, srak,\n  { {0x7afd0073, 0x44213339, 0x660d36c3, 0x00000000}},  //   nast, rth_, prak,\n  { {0x2bd0001c, 0x075600b6, 0x2d8c066f, 0x00000000}},  //   _संघा, _הסרט_, kide_,\n  { {0x463a007b, 0x7afd0ac2, 0x4421275b, 0x00000000}},  //   _געשע, hast, pth_,\n  { {0x7afd021e, 0x333f00f4, 0x65ab010f, 0x00000000}},  //   kast, _taux_, bühr,\n  { {0x7afd044e, 0x2d8c0328, 0x67070309, 0x00000000}},  //   jast, eide_, षणिक_,\n  { {0x7afd02d5, 0x68fc005d, 0x52850025, 0x00000000}},  //   dast, yard, _الذك,\n  { {0x7bd80006, 0x30a701fc, 0x2d8c1683, 0x00000000}},  //   _buvu, _крев, gide_,\n  { {0x68fc143d, 0x7afd141a, 0x6d4128e0, 0x00000000}},  //   vard, fast, rdla,\n  { {0xe4560049, 0x68fc00ab, 0x3165010f, 0x00000000}},  //   צירט_, ward, _holz_,\n  { {0x2d8c022b, 0x139a0049, 0x2b401690, 0x00000000}},  //   bide_, רברע, _vaic_,\n  { {0x3f8d05f2, 0x7afd006c, 0x6d5c006c, 0x00000000}},  //   lieu_, aast, örat,\n  { {0x2b400061, 0x2918000c, 0x00000000, 0x00000000}},  //   _taic_, rgra_,   ,\n  { {0xea5a0080, 0x68fc0089, 0x5fa70061, 0x00000000}},  //   _број_, sard, खविल,\n  { {0x09e20055, 0x7ae431d8, 0xe4d60025, 0x00000000}},  // [bd20] _বিকা, _ifit, متاب,\n  { {0xceb200a0, 0x3f8d2afd, 0x7bc600ea, 0x00000000}},  //   לין_, hieu_, lmku,\n  { {0xd8d7007b, 0xa5bb0d4e, 0x07a617fa, 0x00000000}},  //   _לויט_, _após, _ганн,\n  { {0x798e0117, 0xdce300b9, 0x2d8c014a, 0x00000000}},  //   libw, _plně, zide_,\n  { {0x7ae436c4, 0x65ab010f, 0x3f8d0082, 0x00000000}},  //   _mfit, rühr, dieu_,\n  { {0x7afd26b5, 0x645800b0, 0x2d8c0133, 0x00000000}},  //   zast, ävis, xide_,\n  { {0x2d8c00ab, 0x7ae40035, 0x55770049, 0x00000000}},  //   vide_, _ofit, _פעלן_,\n  { {0x7bd80648, 0x7ae40066, 0x38c3009d, 0x00000000}},  //   _ruvu, _nfit, léré_,\n  { {0x7afd0368, 0x2d8c006c, 0x798e0009, 0x00000000}},  //   vast, tide_, kibw,\n  { {0x867b00b6, 0x71650054, 0x7ae436c5, 0x00000000}},  //   טרפו, _والك, _afit,\n  { {0x2d8c10ea, 0xb09a0088, 0xad660014, 0x00000000}},  //   ride_, _стає_, لاگه,\n  { {0x005700b3, 0x3f8d00d4, 0x00000000, 0x00000000}},  //   _לשבת_, cieu_,   ,\n  { {0x2d8c00f4, 0x256f014a, 0x6d5c010e, 0x00000000}},  //   pide_, _yılı_, öras,\n  { {0x7bd80089, 0x7afd36c6, 0x3eb9035a, 0x00000000}},  //   _tuvu, sast, üste_,\n  { {0x38c300f4, 0x7ae40016, 0x3cfe00e5, 0x00000000}},  //   déré_, _ffit, matv_,\n  { {0xe894007e, 0x3cfe004a, 0x89d90014, 0x00000000}},  //   чась, latv_, _پودر_,\n  { {0xfa280044, 0x798e0009, 0x38c3009d, 0x00000000}},  // [bd30] মিউল_, bibw, féré_,\n  { {0x67d50006, 0x7d1a0039, 0x3cfe0089, 0x00000000}},  //   _sąju, ngts, natv_,\n  { {0xe4350014, 0x3b090009, 0x00000000, 0x00000000}},  //   تفاد, _kdaq_,   ,\n  { {0xdfc60025, 0x316500ca, 0x00000000, 0x00000000}},  //   _زي_, _solz_,   ,\n  { {0x3f8d00d4, 0x38c3009d, 0x31650066, 0x00000000}},  //   vieu_, béré_, _polz_,\n  { {0xa069004d, 0x00000000, 0x00000000, 0x00000000}},  //   иала_,   ,   ,\n  { {0xfaff0023, 0x80240025, 0x31e60044, 0x00000000}},  //   nkës_, كريم, _নিঃশ,\n  { {0x798e0dfc, 0x65670087, 0x00000000, 0x00000000}},  //   zibw, _hojh,   ,\n  { {0x63ab037e, 0x332d008e, 0x3f8d0666, 0x00000000}},  //   mogn, _ibex_, rieu_,\n  { {0x63ab27b9, 0x98ba0089, 0x61e92f60, 0x00000000}},  //   logn, _lapā_, _itel,\n  { {0x61e905fa, 0x602a006b, 0x00000000, 0x00000000}},  //   _htel, _təma,   ,\n  { {0xcaca09ae, 0x65b00103, 0x6d5c00f8, 0x00000000}},  //   игне_, läht, örar,\n  { {0x798e0a5f, 0x433a0049, 0x61e90066, 0x00000000}},  //   tibw, בערב, _jtel,\n  { {0x2eff010f, 0x65b036c7, 0x3cfe0197, 0x00000000}},  //   lauf_, näht, catv_,\n  { {0x7ae401d5, 0x798e002b, 0x6d43034a, 0x00000000}},  //   _tfit, ribw, _iana,\n  { {0x6d43006a, 0x61e9014a, 0x7ae40061, 0x00000000}},  //   _hana, _otel, _ufit,\n  { {0x056607ca, 0x6d430127, 0x63ab0026, 0x00000000}},  // [bd40] ован, _kana, dogn,\n  { {0x6d4320eb, 0xa5bb1a43, 0xa50a0088, 0x00000000}},  //   _jana, _spór, режа_,\n  { {0x61e900f4, 0x2eff01a2, 0x00000000, 0x00000000}},  //   _atel, kauf_,   ,\n  { {0x6d43022b, 0xfe670379, 0x232a0088, 0x00000000}},  //   _lana, _قد_, роди_,\n  { {0x38c3009d, 0x20050087, 0x224d0e98, 0x00000000}},  //   péré_, _avli_, _crek_,\n  { {0x6d43006a, 0x66040020, 0x2d992656, 0x00000000}},  //   _nana, msik, ésel_,\n  { {0x657e002a, 0x61e900b0, 0x66040f20, 0x00000000}},  //   mhph, _etel, lsik,\n  { {0x69c70243, 0x63ab00ab, 0x6d430058, 0x00000000}},  //   zmje, cogn, _aana,\n  { {0x224d0065, 0x660420d9, 0x6d430238, 0x00000000}},  //   _grek_, nsik, _bana,\n  { {0x105600a1, 0x660436c8, 0x657e0011, 0x00000000}},  //   _وضاح, isik, nhph,\n  { {0x6d430119, 0xdd97007e, 0x00000000, 0x00000000}},  //   _dana, ўшы_,   ,\n  { {0x9e660188, 0x61e90056, 0x6d430048, 0x00000000}},  //   _واشن, _ytel, _eana,\n  { {0x6d4336c9, 0x62820270, 0x09e4007e, 0x00000000}},  //   _fana, nzoo, моўн,\n  { {0x6d4336ca, 0x2735001d, 0x6f000284, 0x00000000}},  //   _gana, _ấn_, lamc,\n  { {0xf77305d4, 0x69c70065, 0x9848005e, 0x00000000}},  //   وار_, rmje, оята_,\n  { {0x6d432097, 0x69c701ed, 0x6f0000e7, 0x00000000}},  //   _zana, smje, namc,\n  { {0x6b8d0365, 0x6d4336cb, 0x63ab0737, 0x00000000}},  // [bd50] _imag, _yana, vogn,\n  { {0x6d43001c, 0x09e20055, 0x344b1666, 0x00000000}},  //   _xana, _বিচা, ичен_,\n  { {0x61e9001f, 0x917b0082, 0x6f0000e7, 0x00000000}},  //   _stel, hệ_, kamc,\n  { {0x224d3019, 0x883a009b, 0x6f00016c, 0x00000000}},  //   _prek_, _פתרו, jamc,\n  { {0x644e00b5, 0x63ab00f8, 0x6b8d00f6, 0x00000000}},  //   _erbi, rogn, _mmag,\n  { {0xc244008b, 0x63ab0198, 0xd24e031d, 0x00000000}},  //   ьнік, sogn, انو_,\n  { {0xddc90036, 0x6b8d0207, 0xf9940104, 0x00000000}},  //   rzeż, _omag, ורס_,\n  { {0x6d43011f, 0x224d0aba, 0x7d0a0045, 0x00000000}},  //   _sana, _trek_, _adfs,\n  { {0x6d43006a, 0x2eff010f, 0x61e90056, 0x00000000}},  //   _pana, rauf_, _utel,\n  { {0x0d820194, 0x6b8d25f2, 0x4177004b, 0x00000000}},  //   ельн, _amag, _بارس,\n  { {0x6d430277, 0x3d1c006e, 0xa3b800a1, 0x00000000}},  //   _vana, _मारे_, _طاہر_,\n  { {0x6d430be3, 0x65b0010f, 0xeb9a017f, 0x00000000}},  //   _wana, nähr, сим_,\n  { {0x6d43020c, 0xee2e007e, 0x80d00044, 0x00000000}},  //   _tana, _ян_, _স্প্,\n  { {0xdce336cc, 0x6b8d00c4, 0x6d430020, 0x00000000}},  //   _konč, _emag, _uana,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x66041e17, 0xab660088, 0x65b0010f, 0x00000000}},  //   tsik, _хвил, jähr,\n  { {0x644e01a8, 0xfbd300b6, 0xf99f0e16, 0x00000000}},  // [bd60] _srbi, _אתה_, grès_,\n  { {0x6b8d0059, 0x644e0087, 0x00000000, 0x00000000}},  //   _zmag, _prbi,   ,\n  { {0x6604006c, 0x65b0010f, 0xf8db009b, 0x00000000}},  //   ssik, fähr, _לחימ,\n  { {0x7d010052, 0x628200bb, 0x93cb00a1, 0x00000000}},  //   hals, tzoo, مانہ_,\n  { {0x7d0105d5, 0x4b4d0049, 0x7bd602d4, 0x00000000}},  //   kals, יגאַ, _miyu,\n  { {0x4034004c, 0x7d010059, 0x7bd600e7, 0x00000000}},  //   декс, jals, _liyu,\n  { {0x50d600a1, 0x644e117a, 0x645a00d0, 0x00000000}},  //   _ہزار, _urbi, _štif,\n  { {0x5ea50055, 0x232700e3, 0x7bd600e0, 0x00000000}},  //   খেছে, _носи_, _niyu,\n  { {0x80a60123, 0x7d01094f, 0x00000000, 0x00000000}},  //   _کمان, fals,   ,\n  { {0x6b8d36cd, 0xc2430500, 0x6f000107, 0x00000000}},  //   _smag, _янук, samc,\n  { {0x6f00016c, 0x7bd60045, 0x00000000, 0x00000000}},  //   pamc, _biyu,   ,\n  { {0x7bc40198, 0x7d01006c, 0xdce801df, 0x00000000}},  //   _chiu, aals, ğlıy,\n  { {0x7d01001e, 0x602a005f, 0x2aab0242, 0x00000000}},  //   bals, _məmm, стно_,\n  { {0x5e5700b6, 0xd90f01ef, 0x7c37049a, 0x00000000}},  //   _מידע_, دید_, ñarí,\n  { {0x68fe023a, 0x6d580585, 0x6b8d00e0, 0x00000000}},  //   _depd, _inva, _tmag,\n  { {0x5ba4008b, 0x6b8d011c, 0xf99f10cf, 0x00000000}},  //   _прыз, _umag, très_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  // [bd70]   ,   ,   ,\n  { {0x6d4836ce, 0x65b0010f, 0xdb1f06c0, 0x00000000}},  //   ndda, währ, _liqü,\n  { {0x290304d4, 0x6b9d07eb, 0x7c280146, 0x00000000}},  //   maja_, onsg, ntdr,\n  { {0xf99f36cf, 0x69df0023, 0x9295007e, 0x00000000}},  //   près_, _kuqe, маец,\n  { {0x21690175, 0x2d990047, 0x614500da, 0x00000000}},  //   жили_, ések_, дела,\n  { {0x290301a3, 0xdce30c76, 0xe1f003e6, 0x00000000}},  //   naja_, _ponč, اسن_,\n  { {0x7d01066e, 0x69d700ab, 0x7ae60039, 0x00000000}},  //   vals, _mixe, yckt,\n  { {0x6d580263, 0x290336d0, 0x0858009b, 0x00000000}},  //   _anva, haja_, לבום_,\n  { {0x2903006c, 0x7c2800d9, 0x00000000, 0x00000000}},  //   kaja_, etdr,   ,\n  { {0x29030211, 0x7bc436d1, 0x7bd60058, 0x00000000}},  //   jaja_, _shiu, _siyu,\n  { {0x290301d9, 0xd7bf001c, 0x7bd600e0, 0x00000000}},  //   daja_, ्षाच, _piyu,\n  { {0x7d010058, 0x69d70129, 0x6d48005b, 0x00000000}},  //   sals, _aixe, adda,\n  { {0x7d0100b0, 0x1d0901fc, 0x69d70032, 0x00000000}},  //   pals, _дели_, _bixe,\n  { {0x29030059, 0x7bd60022, 0x00000000, 0x00000000}},  //   gaja_, _wiyu,   ,\n  { {0xcb6a00ed, 0x66e60d68, 0xb906013d, 0x00000000}},  //   _маке_, доба, _फल_,\n  { {0x69c50010, 0x69df0066, 0x5bc60025, 0x00000000}},  //   _ehhe, _fuqe, _تقبل,\n  { {0x29030211, 0x7546003b, 0x69d70549, 0x00000000}},  // [bd80] baja_, мназ, _fixe,\n  { {0x20070b2e, 0x29030091, 0xf1e1013d, 0x00000000}},  //   ksni_, caja_, _पढ़न,\n  { {0x53e501fb, 0x395a0197, 0x2007016c, 0x00000000}},  //   еціа, _inps_, jsni_,\n  { {0xb347002b, 0x320600e0, 0x00000000, 0x00000000}},  //   _neħħ, tsoy_,   ,\n  { {0x6d4836d2, 0x6e29012d, 0x91e3007c, 0x00000000}},  //   ydda, jteb, воче,\n  { {0xc693007b, 0xc1a80061, 0x25760030, 0x00000000}},  //   _יאר_, गवेग, _mælk_,\n  { {0x443e0173, 0x6e2900c4, 0xd24e009e, 0x00000000}},  //   _èt_, eteb, انڈ_,\n  { {0x2903016c, 0x602a006b, 0x3366007e, 0x00000000}},  //   zaja_, _həmk, _ўваг,\n  { {0x6e291810, 0x6d580032, 0x00000000, 0x00000000}},  //   gteb, _pnva,   ,\n  { {0x3eb80089, 0x98b10035, 0x236604eb, 0x00000000}},  //   ārt_, neză_, ljoj_,\n  { {0x290300ee, 0x6d480016, 0x61e0032e, 0x00000000}},  //   vaja_, rdda, _huml,\n  { {0x69d736d3, 0x7c2801d6, 0x61e036d4, 0x00000000}},  //   _sixe, rtdr, _kuml,\n  { {0x29030cfc, 0x69d736d5, 0x61e0252e, 0x00000000}},  //   taja_, _pixe, _juml,\n  { {0x66160142, 0x6d58019a, 0x00000000, 0x00000000}},  //   dryk, _unva,   ,\n  { {0x29030518, 0x80d00044, 0x61e000e0, 0x00000000}},  //   raja_, _স্ত্, _luml,\n  { {0x29032222, 0x316c0d28, 0x36d502b8, 0x00000000}},  //   saja_, _lodz_, еобр,\n  { {0x98bf006b, 0x2366016c, 0x2d9e0026, 0x00000000}},  // [bd90] ırıb_, djoj_, onte_,\n  { {0x2d9e23b7, 0x201c36d6, 0xd5bb0451, 0x00000000}},  //   nnte_, kuvi_, іса_,\n  { {0x2d9e000d, 0x79950020, 0x6e290f30, 0x00000000}},  //   inte_, mizw, zteb,\n  { {0x7995000b, 0x23660065, 0x2d9e010f, 0x00000000}},  //   lizw, gjoj_, hnte_,\n  { {0x2901006c, 0x6fc5008e, 0xc6a701fc, 0x00000000}},  //   _keha_, nóce, _црни,\n  { {0x27e12c1f, 0xc105067a, 0xb3470066, 0x00000000}},  //   _kuhn_, روبي, _seħħ,\n  { {0xe05700a2, 0xdce30089, 0x2fc623a3, 0x00000000}},  //   بیات_, _nonā, _bhog_,\n  { {0x2d9e0219, 0xfe4500ed, 0x6e2918ee, 0x00000000}},  //   ente_, енио, tteb,\n  { {0xee3603c8, 0x6e290009, 0x79950020, 0x00000000}},  //   ены_, uteb, kizw,\n  { {0x316c0036, 0x290136d7, 0xed4502dc, 0x00000000}},  //   _godz_, _neha_, хноп,\n  { {0x6e29010a, 0x00000000, 0x00000000, 0x00000000}},  //   steb,   ,   ,\n  { {0x2d9e0576, 0x6e2936d8, 0x00000000, 0x00000000}},  //   ante_, pteb,   ,\n  { {0x395a0022, 0x29010032, 0x00000000, 0x00000000}},  //   _pnps_, _beha_,   ,\n  { {0xdca5019d, 0x7995047b, 0x00000000, 0x00000000}},  //   _пали, gizw,   ,\n  { {0x0d16009b, 0x00000000, 0x00000000, 0x00000000}},  //   _טקסט_,   ,   ,\n  { {0x6616043e, 0x613301df, 0xf743007c, 0x00000000}},  //   tryk, lılı, лесо,\n  { {0xe61a005e, 0x7dec0049, 0x98b10035, 0x00000000}},  // [bda0] яда_, ַקאַ, teză_,\n  { {0x6133005d, 0x661604fd, 0xfaff0065, 0x00000000}},  //   nılı, rryk, njën_,\n  { {0x61e00bf8, 0x69ce01a2, 0x00000000, 0x00000000}},  //   _suml, mmbe,   ,\n  { {0x237f000d, 0x69ce17f2, 0x2576000c, 0x00000000}},  //   _cluj_, lmbe, _mæli_,\n  { {0x6133005d, 0x2d9e36d9, 0x290100e0, 0x00000000}},  //   kılı, ynte_, _yeha_,\n  { {0x602a005f, 0x7646007f, 0x00000000, 0x00000000}},  //   _həmi, _isky,   ,\n  { {0x613300c3, 0xc0e701b7, 0x69ce0b57, 0x00000000}},  //   dılı, رفين_, imbe,\n  { {0x44380146, 0x61e036da, 0x7bde009d, 0x00000000}},  //   _ipr_, _tuml, _épui,\n  { {0x79950009, 0x44380bd3, 0x929d0036, 0x00000000}},  //   yizw, _hpr_, _pełe,\n  { {0x44380093, 0x2d9e0026, 0xfaff0023, 0x00000000}},  //   _kpr_, unte_, gjën_,\n  { {0x443829f0, 0x799501aa, 0x2cb805b7, 0x00000000}},  //   _jpr_, vizw, ærd_,\n  { {0x4438023a, 0x69ce36db, 0xab950088, 0x00000000}},  //   _mpr_, embe, тимі,\n  { {0xdb0f2656, 0x799500e7, 0x29010145, 0x00000000}},  //   nocé, tizw, _peha_,\n  { {0x6133005d, 0x443800ca, 0x6f022139, 0x00000000}},  //   cılı, _opr_, _heoc,\n  { {0x44380059, 0x79950009, 0x67260022, 0x00000000}},  //   _npr_, rizw, _bckj,\n  { {0x6d4a018e, 0x602a005f, 0xba550545, 0x00000000}},  //   _hafa, _cəmi, _авиј,\n  { {0x29010004, 0xc8f50265, 0x6d4a0dad, 0x00000000}},  // [bdb0] _teha_, _изпъ, _kafa,\n  { {0x6d4a0697, 0x443804be, 0x656e0051, 0x00000000}},  //   _jafa, _bpr_, _cobh,\n  { {0x44380030, 0x6d4a000b, 0x656e07da, 0x00000000}},  //   _cpr_, _mafa, _dobh,\n  { {0x6d4a00be, 0x4438023a, 0x613301f6, 0x00000000}},  //   _lafa, _dpr_, zılı,\n  { {0x6133005d, 0x00000000, 0x00000000, 0x00000000}},  //   yılı,   ,   ,\n  { {0x6d4a36dc, 0x6133005f, 0x3d1c001c, 0x00000000}},  //   _nafa, xılı, _मागे_,\n  { {0x8ffa00a1, 0xa156003b, 0xa3b5007e, 0x00000000}},  //   ورٹر_, тају_, _абві,\n  { {0x64550066, 0x00000000, 0x00000000, 0x00000000}},  //   _irzi,   ,   ,\n  { {0x0ea901fb, 0x6d4a130a, 0x6133047f, 0x00000000}},  //   ький_, _bafa, tılı,\n  { {0x7aed0065, 0x673f0065, 0x320d0606, 0x00000000}},  //   _afat, heqj, _ivey_,\n  { {0x6133038c, 0xdca50057, 0x6d4a0016, 0x00000000}},  //   rılı, тани, _dafa,\n  { {0x1eea04e1, 0x6f020253, 0x64550091, 0x00000000}},  //   _قومی_, _geoc, _mrzi,\n  { {0x6133005a, 0x6d4a36dd, 0x4a43005e, 0x00000000}},  //   pılı, _fafa, аняв,\n  { {0x6d4a04bf, 0x602a006b, 0x64550026, 0x00000000}},  //   _gafa, _səmi, _orzi,\n  { {0xbbe80025, 0x7aed0016, 0x69ce0c4c, 0x00000000}},  //   _كريم_, _ffat, rmbe,\n  { {0x7d032bb0, 0xd910025a, 0x6d4a0253, 0x00000000}},  //   _hens, _گیس_, _zafa,\n  { {0xc9aa01f9, 0x443836de, 0x6d4a14a5, 0x00000000}},  // [bdc0] _овие_, _spr_, _yafa,\n  { {0x7d030030, 0x44380061, 0x64550091, 0x00000000}},  //   _jens, _ppr_, _brzi,\n  { {0x602a005f, 0x00000000, 0x00000000, 0x00000000}},  //   _təmi,   ,   ,\n  { {0xe29a007e, 0x64551238, 0x29cf01f3, 0x00000000}},  //   мае_, _drzi, _wżat_,\n  { {0x6d2103d7, 0x645536df, 0x6f02041d, 0x00000000}},  //   _मांग_, _erzi, _reoc,\n  { {0x7d030065, 0x09df0044, 0x4438033b, 0x00000000}},  //   _nens, বীকা, _tpr_,\n  { {0x5f9408d6, 0xccf800b9, 0x00000000, 0x00000000}},  //   ликт, vbě_,   ,\n  { {0x6724006c, 0x6d4a03ef, 0xfaff0023, 0x00000000}},  //   ngij, _safa, gjël_,\n  { {0x6d4a0065, 0x44440016, 0x4ea6005e, 0x00000000}},  //   _pafa, lw_, ърка,\n  { {0x7aed001a, 0x6d4a31ad, 0x44441651, 0x00000000}},  //   _sfat, _qafa, ow_,\n  { {0x351b0476, 0xfe6f01ef, 0x7c2a0061, 0x00000000}},  //   ווינ, مدی_, _qqfr,\n  { {0x6d4a000b, 0x76440061, 0x7d030007, 0x00000000}},  //   _wafa, kwiy, _eens,\n  { {0x6d4a000b, 0x7d03010f, 0x6e2b0061, 0x00000000}},  //   _tafa, _fens, _gqgb,\n  { {0xf2d30476, 0x7d0336e0, 0x2d8501ca, 0x00000000}},  //   יער_, _gens, chle_,\n  { {0x6d3b012f, 0x63a20058, 0x29cf0066, 0x00000000}},  //   _חתונ, knon, _bżar_,\n  { {0x7d03037e, 0x7d080030, 0x7aed0190, 0x00000000}},  //   _zens, lads, _ufat,\n  { {0x6e20006c, 0x444400ab, 0x63a2138b, 0x00000000}},  // [bdd0] numb, ew_, dnon,\n  { {0x7d080203, 0x2713001d, 0x04f40131, 0x00000000}},  //   nads, ện_, изую,\n  { {0x6e200020, 0x98ba00b9, 0x83190084, 0x00000000}},  //   humb, _mapě_, فقار_,\n  { {0x6e20000b, 0x3d1c001c, 0x63a236e1, 0x00000000}},  //   kumb, _माझे_, gnon,\n  { {0x6e200020, 0x602a006b, 0x471a009b, 0x00000000}},  //   jumb, _məmu, _אורג,\n  { {0x645536e2, 0x6e20008e, 0xdca60025, 0x00000000}},  //   _trzi, dumb, _هى_,\n  { {0x7d0300f4, 0x6455001a, 0x660d0755, 0x00000000}},  //   _rens, _urzi, lsak,\n  { {0x2f540057, 0x7d0301cb, 0x6e2036e3, 0x00000000}},  //   атьс, _sens, fumb,\n  { {0x660d3277, 0x442104cb, 0x644500d2, 0x00000000}},  //   nsak, luh_, lwhi,\n  { {0x4d6501fb, 0x00000000, 0x00000000, 0x00000000}},  //   уков,   ,   ,\n  { {0x4421020c, 0x7d0301e3, 0xa3c7007d, 0x00000000}},  //   nuh_, _vens, _उठा_,\n  { {0x4fa401fb, 0x7d030250, 0x6e200d59, 0x00000000}},  //   _києв, _wens, bumb,\n  { {0x2d8b028c, 0x7d080010, 0x442114c3, 0x00000000}},  //   èces_, bads, huh_,\n  { {0xfe9a0049, 0x660d0056, 0x09e3003b, 0x00000000}},  //   _אינמ, dsak, сорн,\n  { {0xa6db009f, 0xe73a17be, 0x442104cb, 0x00000000}},  //   _maðu, нев_, juh_,\n  { {0x6d4136e4, 0x8a96007a, 0x6f09020f, 0x00000000}},  //   lela, _مشخص, naec,\n  { {0x67240655, 0x6b84011c, 0xa7a701e0, 0x00000000}},  // [bde0] rgij, _ilig, укта_,\n  { {0x6d410cf8, 0x850600a2, 0x76440022, 0x00000000}},  //   nela, اوان, rwiy,\n  { {0x444402ae, 0x290a2345, 0x442104cb, 0x00000000}},  //   uw_, maba_, guh_,\n  { {0x6d41175f, 0x290a2378, 0x6e2014a5, 0x00000000}},  //   hela, laba_, yumb,\n  { {0x63a2011c, 0x69de33be, 0x44440026, 0x00000000}},  //   rnon, _kipe, sw_,\n  { {0x4421020c, 0x6b840129, 0x290a0dfb, 0x00000000}},  //   buh_, _llig, naba_,\n  { {0x6d4101d9, 0x6b842b35, 0x7f400009, 0x00000000}},  //   dela, _olig, temq,\n  { {0x6e20036b, 0x290a036b, 0xa85700b6, 0x00000000}},  //   tumb, haba_, ריקה_,\n  { {0x290a36e5, 0x6d410016, 0x7d080239, 0x00000000}},  //   kaba_, fela, tads,\n  { {0x6b840365, 0x01d70644, 0x6e2013df, 0x00000000}},  //   _alig, _موقع_, rumb,\n  { {0x290a0211, 0x6b84011a, 0x6e200d92, 0x00000000}},  //   daba_, _blig, sumb,\n  { {0x7d0836e6, 0x6e202984, 0x2b820051, 0x00000000}},  //   sads, pumb, _póca_,\n  { {0x6d410127, 0x7d0836e7, 0x6b841270, 0x00000000}},  //   bela, pads, _dlig,\n  { {0x2905002a, 0x6b84058a, 0x6d410169, 0x00000000}},  //   úla_, _elig, cela,\n  { {0x69de25ff, 0x4cd20044, 0x6b8400ab, 0x00000000}},  //   _dipe, _দ্রু, _flig,\n  { {0x660d143d, 0x602a006b, 0x69de0048, 0x00000000}},  //   tsak, _həms, _eipe,\n  { {0x290a006a, 0x98a5005d, 0xdb0f008e, 0x00000000}},  // [bdf0] baba_, ılı_, nocí,\n  { {0x7afd010f, 0x290a029d, 0x442104cb, 0x00000000}},  //   lbst, caba_, tuh_,\n  { {0x660d00b0, 0xe5c4007c, 0x7bcd05cd, 0x00000000}},  //   ssak, ссто, _khau,\n  { {0x44210149, 0x6d41002d, 0x660d010e, 0x00000000}},  //   ruh_, zela, psak,\n  { {0x7bdf0129, 0x4421003f, 0x201c0026, 0x00000000}},  //   _miqu, suh_, ervi_,\n  { {0x6edb001e, 0x657e2fe9, 0x442104cb, 0x00000000}},  //   _jābū, ckph, puh_,\n  { {0xddcb010a, 0x98b8001a, 0x6f09005b, 0x00000000}},  //   žiūr, meră_, taec,\n  { {0xee3909bb, 0x290a008e, 0x7bdf009d, 0x00000000}},  //   вни_, zaba_, _niqu,\n  { {0x6d410149, 0x63bb01d5, 0x52380123, 0x00000000}},  //   tela, _ikun, _مسلح_,\n  { {0x6b8400ab, 0x6b9636e8, 0x290a00c4, 0x00000000}},  //   _slig, _smyg, xaba_,\n  { {0x6b840286, 0x69de0207, 0x30a70242, 0x00000000}},  //   _plig, _ripe, _срав,\n  { {0xeb9a012b, 0x7bcd028c, 0x6d410127, 0x00000000}},  //   тим_, _chau, sela,\n  { {0x290a36e9, 0x63a936ea, 0x7bdf004a, 0x00000000}},  //   taba_, _mjen, _diqu,\n  { {0x7aef001c, 0x63a901ed, 0xb6070066, 0x00000000}},  //   acct, _ljen, _miġġ,\n  { {0x290a300f, 0x63bb011f, 0x7bdf0181, 0x00000000}},  //   raba_, _okun, _fiqu,\n  { {0x7aef001c, 0x63a90295, 0x63bb36eb, 0x00000000}},  //   ccct, _njen, _nkun,\n  { {0xaa46004c, 0x7ae40061, 0x69de36ec, 0x00000000}},  // [be00] _тепл, _igit, _tipe,\n  { {0x63a90c8f, 0x929d0046, 0x63bb023a, 0x00000000}},  //   _ajen, _pełn, _akun,\n  { {0x9986025a, 0x799c0009, 0x00000000, 0x00000000}},  //   _ملکو, mirw,   ,\n  { {0x7bdf0129, 0x799c0009, 0x63a9016e, 0x00000000}},  //   _xiqu, lirw, _cjen,\n  { {0x63a901ee, 0x42540025, 0x98b8001a, 0x00000000}},  //   _djen, إنتر, beră_,\n  { {0x63a90030, 0x799c0009, 0xf1aa0025, 0x00000000}},  //   _ejen, nirw, خاصه_,\n  { {0x64a3007e, 0x63a90030, 0x7ae40032, 0x00000000}},  //   _дара, _fjen, _ogit,\n  { {0x63a936ed, 0x799c0009, 0x7ae4011c, 0x00000000}},  //   _gjen, hirw, _ngit,\n  { {0x799c0009, 0xddc200e5, 0x00000000, 0x00000000}},  //   kirw, _croş,   ,\n  { {0x7bdf0489, 0x7bcd00f0, 0x63a901ed, 0x00000000}},  //   _siqu, _shau, _zjen,\n  { {0xdeef04af, 0x7aef001c, 0xfe1802f4, 0x00000000}},  //   _мы_, tcct, _दिवस_,\n  { {0x63a9002b, 0x81cb0044, 0x2fc00048, 0x00000000}},  //   _xjen, _রূপ_, _óig_,\n  { {0xc33300b6, 0x7bdf04bd, 0x602a006b, 0x00000000}},  //   חור_, _viqu, _təms,\n  { {0x7ae40756, 0x799c0009, 0x7bdf00f6, 0x00000000}},  //   _egit, girw, _wiqu,\n  { {0x7bdf0f57, 0x7bcd0066, 0x3707005e, 0x00000000}},  //   _tiqu, _thau, ичав,\n  { {0x386d0166, 0x7bcd00fa, 0xc9270044, 0x00000000}},  //   ćer_, _uhau, য়েত_,\n  { {0x6b8701ef, 0xfaff0065, 0x799c0009, 0x00000000}},  // [be10] _مشکل, mbë_, birw,\n  { {0x63a90166, 0x799c0045, 0xe5c40194, 0x00000000}},  //   _sjen, cirw, осхо,\n  { {0xaab8007a, 0x63a9016e, 0x04670b81, 0x00000000}},  //   _مدیر_, _pjen, штам,\n  { {0x6cd90049, 0x6b9d0016, 0x98b8001a, 0x00000000}},  //   אַנצ, nisg, seră_,\n  { {0x4ec10055, 0x63a9016e, 0x926b005e, 0x00000000}},  //   _উল্ল, _vjen, ържа_,\n  { {0x61450081, 0x6b9d00e0, 0x00000000, 0x00000000}},  //   сека, hisg,   ,\n  { {0x3f860007, 0x63a92229, 0x63bb002b, 0x00000000}},  //   _blou_, _tjen, _tkun,\n  { {0x63a90020, 0x63bb0dfc, 0x1f65007c, 0x00000000}},  //   _ujen, _ukun, ским,\n  { {0x799c0009, 0x6b9d0271, 0x98b80a62, 0x00000000}},  //   yirw, disg, merą_,\n  { {0x51740054, 0x417401b7, 0xbd890014, 0x00000000}},  //   _والأ, _والس, اندن_,\n  { {0x3b0a0264, 0x61e90211, 0x443336ee, 0x00000000}},  //   лено_, _huel, ntx_,\n  { {0x61e9000b, 0x63b936ef, 0x3fc9007a, 0x00000000}},  //   _kuel, nown, _صدای_,\n  { {0xeb97046c, 0x61e101a6, 0x61e90190, 0x00000000}},  //   сия_, _kill, _juel,\n  { {0x61e1002b, 0x61e9008e, 0x60c100b0, 0x00000000}},  //   _jill, _muel, _kylm,\n  { {0x63b90046, 0xdca20517, 0x7dc6009f, 0x00000000}},  //   kown, _наши, iðsl,\n  { {0x61e10018, 0x61e90068, 0x63b900b4, 0x00000000}},  //   _lill, _ouel, jown,\n  { {0x63b90036, 0x9f4500f6, 0x61e9002d, 0x00000000}},  // [be20] down, _culé_, _nuel,\n  { {0xd91001ef, 0x61e10239, 0xb8ce0044, 0x00000000}},  //   _زیر_, _nill, _ঔর_,\n  { {0x74130025, 0x44331291, 0xdb0f004a, 0x00000000}},  //   كولا, gtx_, locá,\n  { {0x61e100f4, 0x61e9002d, 0x9a55009e, 0x00000000}},  //   _aill, _buel, _اٹیچ,\n  { {0x61e10905, 0x61e90211, 0x200501f3, 0x00000000}},  //   _bill, _cuel, _awli_,\n  { {0x61e9022b, 0x61e136f0, 0xa15801ee, 0x00000000}},  //   _duel, _cill, раку_,\n  { {0x61e104bd, 0x01330054, 0xdfd0023c, 0x00000000}},  //   _dill, سعود, ويت_,\n  { {0x63b90046, 0x645c086a, 0xadf400e2, 0x00000000}},  //   cown, _irri, опиш,\n  { {0x61e136f1, 0xbdf7009e, 0x00000000, 0x00000000}},  //   _fill, یریا_,   ,\n  { {0x61e10073, 0x61ef00f4, 0xf99f01aa, 0x00000000}},  //   _gill, _écla, nsèt_,\n  { {0xb5fb0489, 0x61e9002d, 0xe0850025, 0x00000000}},  //   _gráf, _zuel, _وجمي,\n  { {0x60db0049, 0x255f0089, 0x00000000, 0x00000000}},  //   _עקאנ, _zālē_,   ,\n  { {0xfaff0065, 0x26c20146, 0x6b9d0fd1, 0x00000000}},  //   rbë_, _nyko_, risg,\n  { {0x645c022b, 0x6b9d00bb, 0x00000000, 0x00000000}},  //   _orri, sisg,   ,\n  { {0x2d9e36f2, 0x65750428, 0x2d8c0048, 0x00000000}},  //   mite_, _rozh, mhde_,\n  { {0x2d9e09d8, 0x4735007e, 0x7d0a000c, 0x00000000}},  //   lite_, ўнас, _hefs,\n  { {0x557500ed, 0x2d9e0051, 0x644e174d, 0x00000000}},  // [be30] огат, oite_, _asbi,\n  { {0x2d9e1d7a, 0x645c0284, 0x0907243b, 0x00000000}},  //   nite_, _brri, _учим,\n  { {0x61e90211, 0x61e101d6, 0x63b90036, 0x00000000}},  //   _suel, _rill, town,\n  { {0x61e1021e, 0x2d9e36f3, 0x44330066, 0x00000000}},  //   _sill, hite_, rtx_,\n  { {0x2d9e010a, 0x61e911c5, 0x645c09ce, 0x00000000}},  //   kite_, _quel, _erri,\n  { {0x61e90219, 0x2d9e0209, 0x1a9c0049, 0x00000000}},  //   _vuel, jite_, ניגע,\n  { {0x61e1028c, 0x2d9e0209, 0x94750014, 0x00000000}},  //   _vill, dite_, _بگذا,\n  { {0x5334012b, 0x7d180061, 0x61e907a4, 0x00000000}},  //   _нест, _advs, _tuel,\n  { {0x2d9e0600, 0x61e102e1, 0xb5fb0010, 0x00000000}},  //   fite_, _till, _drág,\n  { {0xb5fb029d, 0x2d9e0181, 0x2d8c0051, 0x00000000}},  //   _tráf, gite_, ghde_,\n  { {0x5baa2672, 0xb5fb36f4, 0x7f190014, 0x00000000}},  //   иком_, _frág, _نياز_,\n  { {0xf4120104, 0xdb960088, 0x2c57001a, 0x00000000}},  //   ופט_, ішнь, _văd_,\n  { {0x2d9e0059, 0xab5b01df, 0x00000000, 0x00000000}},  //   bite_, mlül,   ,\n  { {0x2d9e0209, 0x80d00044, 0x3f8d00c4, 0x00000000}},  //   cite_, _স্ট্, lheu_,\n  { {0x765d008d, 0xa4140044, 0x00000000, 0x00000000}},  //   _arsy, _সহ্য_,   ,\n  { {0xfbc3005e, 0xfaa620e6, 0x00000000, 0x00000000}},  //   _общо, _майо,   ,\n  { {0xf50a012b, 0xb6a601be, 0x6f0b0010, 0x00000000}},  // [be40] инал_, циал, _megc,\n  { {0x7bc60023, 0x26c20006, 0x644e012d, 0x00000000}},  //   llku, _vyko_, _psbi,\n  { {0x66e6013b, 0x2db6007b, 0xf65100a1, 0x00000000}},  //   _мона, קלען_, وئے_,\n  { {0x2d9e0209, 0x8936026c, 0xd62a012b, 0x00000000}},  //   zite_, _اٹھا, _коме_,\n  { {0x2d9e01aa, 0xdce300b9, 0xbb3b0049, 0x00000000}},  //   yite_, _poně, שעני,\n  { {0x753c0091, 0x201a00c4, 0x2d9e0082, 0x00000000}},  //   _ubrz, ápio_, xite_,\n  { {0xcc240055, 0x645c022b, 0x7d0a000c, 0x00000000}},  //   _বন্ধ_, _urri, _refs,\n  { {0x93fb0104, 0xfc460802, 0xfaff0023, 0x00000000}},  //   _כללי, šíku_, njët_,\n  { {0x2d9e36f5, 0xe29a01f9, 0x4fb300a1, 0x00000000}},  //   tite_, _таа_, بصور,\n  { {0x6609014a, 0x7bc6046a, 0x00000000, 0x00000000}},  //   _çeke, elku,   ,\n  { {0x2d9e36f6, 0x7d0a009f, 0xb5fb2ff2, 0x00000000}},  //   rite_, _vefs, _trág,\n  { {0x2d9e09d8, 0x3f8d00c4, 0x00000000, 0x00000000}},  //   site_, cheu_,   ,\n  { {0x7fd700bd, 0x2d9e0209, 0x7ae9016c, 0x00000000}},  //   _וואס_, pite_, žeto,\n  { {0x27fa0281, 0x2d9e0023, 0x00000000, 0x00000000}},  //   _btpn_, qite_,   ,\n  { {0x6d48006c, 0x67d502d3, 0x00000000, 0x00000000}},  //   meda, зову,   ,\n  { {0x6d4801d9, 0x442101ca, 0x7c2836f7, 0x00000000}},  //   leda, vrh_, mudr,\n  { {0xd6db0131, 0x1634073b, 0x00000000, 0x00000000}},  // [be50] ртв_, метя,   ,\n  { {0x6d48018e, 0x4421013e, 0x00000000, 0x00000000}},  //   neda, trh_,   ,\n  { {0x69c70f3a, 0x290332fc, 0x29110da4, 0x00000000}},  //   mlje, mbja_, maza_,\n  { {0x6d48006c, 0x69c70af9, 0xb5fb01ca, 0x00000000}},  //   heda, llje, _prád,\n  { {0x0204008b, 0x6d48023a, 0xd179007e, 0x00000000}},  //   дзін, keda, йскі_,\n  { {0x88df0055, 0x764d01aa, 0x6d480091, 0x00000000}},  //   _ব্যক, mway, jeda,\n  { {0x6d48148f, 0xfaff0065, 0x601007da, 0x00000000}},  //   deda, njës_, _rómá,\n  { {0x672d21c4, 0xb5fb002a, 0x291129df, 0x00000000}},  //   ngaj, _trád, haza_,\n  { {0x60b500a1, 0x29110091, 0x6d4800f6, 0x00000000}},  //   _کمائ, kaza_, feda,\n  { {0x61fb1535, 0x6d48095c, 0x69c70243, 0x00000000}},  //   _itul, geda, jlje,\n  { {0x63ab0082, 0x7c280089, 0x00000000, 0x00000000}},  //   ongn, gudr,   ,\n  { {0x61fb001c, 0x764d0173, 0x2911001a, 0x00000000}},  //   _ktul, kway, eaza_,\n  { {0x6d4836f8, 0xed59091b, 0x63ab0048, 0x00000000}},  //   beda, _гол_, ingn,\n  { {0x290c027b, 0x6e290211, 0x6d48001a, 0x00000000}},  //   úda_, mueb, ceda,\n  { {0xfaff0065, 0x6e290045, 0x7c28004a, 0x00000000}},  //   gjës_, lueb, cudr,\n  { {0xc0520049, 0x00000000, 0x00000000, 0x00000000}},  //   עזן_,   ,   ,\n  { {0x69c7092f, 0x6fc502d5, 0x29110061, 0x00000000}},  // [be60] blje, góci, baza_,\n  { {0x2d8536f9, 0xe61701e1, 0x2911004a, 0x00000000}},  //   nkle_, яду_, caza_,\n  { {0x98160355, 0x225f0022, 0x61fb25d0, 0x00000000}},  //   _عبدا, _aruk_, _atul,\n  { {0x394a0050, 0x225f36fa, 0x764d0019, 0x00000000}},  //   lebs_, _bruk_, bway,\n  { {0x11540259, 0x6d480020, 0x6fc516b5, 0x00000000}},  //   дклю, yeda, cóci,\n  { {0x225f0100, 0xb5fb009f, 0xc6930049, 0x00000000}},  //   _druk_, _fráb, _טאר_,\n  { {0x6d4836fb, 0x0443005e, 0x39580089, 0x00000000}},  //   veda, _перн, idrs_,\n  { {0x7c280479, 0x645b0036, 0x6d481e11, 0x00000000}},  //   vudr, śció, weda,\n  { {0x6d48006b, 0x6e2936fc, 0x225f0146, 0x00000000}},  //   teda, gueb, _gruk_,\n  { {0x63a236fd, 0x71a3003b, 0x667b0049, 0x00000000}},  //   lion, _зауз, צטיק,\n  { {0x69c701ae, 0xfe6f0167, 0x29110107, 0x00000000}},  //   vlje, ندی_, vaza_,\n  { {0x63a22820, 0x29110020, 0x799e000a, 0x00000000}},  //   nion, waza_, _ampw,\n  { {0x6d480207, 0x69c710f7, 0x291100e7, 0x00000000}},  //   peda, tlje, taza_,\n  { {0x63a20197, 0xed57007e, 0x2d8500ab, 0x00000000}},  //   hion, _ноч_, ckle_,\n  { {0x2911000b, 0x63a236fe, 0xb5fb00d6, 0x00000000}},  //   raza_, kion, _orác,\n  { {0x69c70363, 0x764d0ed7, 0xf77301fa, 0x00000000}},  //   slje, tway, راز_,\n  { {0x63a2096f, 0x69c710f7, 0xab5b005f, 0x00000000}},  // [be70] dion, plje, hlük,\n  { {0x6fc50036, 0x26c70089, 0x764d0133, 0x00000000}},  //   róci, āno_, rway,\n  { {0x6b8d0030, 0x80c20055, 0x61fb0ba5, 0x00000000}},  //   _klag, ষেত্, _stul,\n  { {0x63a20198, 0xf65f0030, 0xf8b200b3, 0x00000000}},  //   gion, _træ_, _ישי_,\n  { {0x2d850036, 0xb5fb004a, 0x00000000, 0x00000000}},  //   ykle_, _drác,   ,\n  { {0x6b8d36ff, 0x98140014, 0x00000000, 0x00000000}},  //   _llag, _تبیا,   ,\n  { {0x63a20046, 0x6b8d0039, 0x6b8600ea, 0x00000000}},  //   bion, _olag, ykkg,\n  { {0x63a20919, 0x225f023a, 0x0e650131, 0x00000000}},  //   cion, _truk_, дкин,\n  { {0xe3b0025a, 0x61fb0020, 0x00000000, 0x00000000}},  //   _صرف_, _utul,   ,\n  { {0x6b8d3700, 0x6e290211, 0x00000000, 0x00000000}},  //   _alag, rueb,   ,\n  { {0x6b8d073a, 0x1b4a00e3, 0x00000000, 0x00000000}},  //   _blag, озни_,   ,\n  { {0x394a3701, 0xf9890104, 0x6e29004a, 0x00000000}},  //   webs_, _דר_, pueb,\n  { {0x2a60002b, 0x6e290666, 0x00000000, 0x00000000}},  //   _qrib_, queb,   ,\n  { {0x63a205d3, 0x57b60061, 0x6b8d010e, 0x00000000}},  //   zion, ंव्ह, _elag,\n  { {0x394a01a2, 0x00000000, 0x00000000, 0x00000000}},  //   rebs_,   ,   ,\n  { {0x63a20919, 0x2905000c, 0x2a60237d, 0x00000000}},  //   xion, ðlar_, _trib_,\n  { {0xab5b014a, 0x9f4500f6, 0x7bc43702, 0x00000000}},  // [be80] zlük, _mulà_, _ikiu,\n  { {0x63a20046, 0x62820020, 0x6b8d00ca, 0x00000000}},  //   wion, vyoo, _zlag,\n  { {0xb5fb3703, 0x69dc0210, 0x661606d5, 0x00000000}},  //   _prác, mmre, ssyk,\n  { {0x69dc03f1, 0x66163704, 0x27f70161, 0x00000000}},  //   lmre, psyk, žené_,\n  { {0x63a23322, 0xd041006b, 0xb5fb01dc, 0x00000000}},  //   rion, _izlə, _vrác,\n  { {0x14b70061, 0x00000000, 0x00000000, 0x00000000}},  //   _अडचण,   ,   ,\n  { {0x03a6017a, 0xb5fb10b3, 0x63a20036, 0x00000000}},  //   _живо, _trác, pion,\n  { {0xab5b014a, 0x04430545, 0x2269013e, 0x00000000}},  //   rlük, _шесн, átký_,\n  { {0x657c3705, 0x113a007e, 0x03a310f3, 0x00000000}},  //   _korh, _мяжы_, _рито,\n  { {0xe1660380, 0x7bc400e7, 0xe12301ee, 0x00000000}},  //   _تدري, _akiu, _амфи,\n  { {0x6b8d3706, 0xe0460088, 0x657c0145, 0x00000000}},  //   _plag, _інди, _morh,\n  { {0x0a6b005e, 0x61e8005b, 0x4ea6173a, 0x00000000}},  //   орги_, _hidl, _орла,\n  { {0xfe720426, 0x6b8d0059, 0x61e80058, 0x00000000}},  //   _جدا_, _vlag, _kidl,\n  { {0x7dcf0637, 0x657c3707, 0x00000000, 0x00000000}},  //   løsn, _norh,   ,\n  { {0x61e8122f, 0x6b8d011c, 0x6d580026, 0x00000000}},  //   _midl, _tlag, _iava,\n  { {0x7e620073, 0x6d58011f, 0x6d5a004e, 0x00000000}},  //   _krop, _hava, ldta,\n  { {0x6d580004, 0x7aed006c, 0x657c01a3, 0x00000000}},  // [be90] _kava, _igat, _borh,\n  { {0x6d580365, 0x6d5a0333, 0xca48007a, 0x00000000}},  //   _java, ndta, _کلیه_,\n  { {0x6d5824fc, 0x3c380010, 0x200c0022, 0x00000000}},  //   _mava, név_, _nwdi_,\n  { {0x6d580263, 0x7e62097c, 0xc79700a1, 0x00000000}},  //   _lava, _orop, _کھڑا_,\n  { {0x657c02cc, 0x61e8002b, 0x2169003b, 0x00000000}},  //   _forh, _bidl, зили_,\n  { {0x6d583708, 0x205500c0, 0xdb1d03a2, 0x00000000}},  //   _nava, етир, llsä,\n  { {0x7aed012d, 0x7e620022, 0x61e83709, 0x00000000}},  //   _ogat, _arop, _didl,\n  { {0xa4d401fb, 0x7aed0065, 0x7e620190, 0x00000000}},  //   _росі, _ngat, _brop,\n  { {0x7c3a2b6e, 0x7e620133, 0x78b700e5, 0x00000000}},  //   ettr, _crop, _lxxv,\n  { {0x6d58005f, 0x7c3a04d3, 0xb06b09b9, 0x00000000}},  //   _cava, fttr, _وصال_,\n  { {0x6d58005f, 0x7e620169, 0x7aed012d, 0x00000000}},  //   _dava, _erop, _bgat,\n  { {0x69c500e7, 0xa11300a1, 0x7e620022, 0x00000000}},  //   _akhe, _سوچت, _frop,\n  { {0xbe8701f7, 0x7e6211c9, 0x6d580197, 0x00000000}},  //   _تجاو, _grop, _fava,\n  { {0x6d580416, 0x6e3b00d9, 0x602a006b, 0x00000000}},  //   _gava, mtub, _rəmz,\n  { {0x186701f9, 0xf7460131, 0x6e3b0032, 0x00000000}},  //   нари_, нево, ltub,\n  { {0x6d5801d9, 0x9f460207, 0x7bc40020, 0x00000000}},  //   _zava, _cioè_, _ukiu,\n  { {0xcf92007b, 0x6d58005a, 0x3ea0000c, 0x00000000}},  // [bea0] אטן_, _yava, _þitt_,\n  { {0x443a0061, 0x09060069, 0x6d581052, 0x00000000}},  //   ttp_, _япон, _xava,\n  { {0x03260373, 0x657c001f, 0x399b0049, 0x00000000}},  //   еден, _vorh, _זייד,\n  { {0xb5fb1f2c, 0x6e3b370a, 0x443a000a, 0x00000000}},  //   _irán, ktub, rtp_,\n  { {0x6d430087, 0x443a0146, 0x71a600a5, 0x00000000}},  //   _obna, stp_, надз,\n  { {0x64a60099, 0x6604370b, 0xa3dc0061, 0x00000000}},  //   _зага, mpik, _ठळक_,\n  { {0x61e8016e, 0x395a06d7, 0x78b70288, 0x00000000}},  //   _vidl, _maps_, _xxxv,\n  { {0xdb1d00f4, 0x395a006c, 0x6d58370c, 0x00000000}},  //   posé, _laps_, _sava,\n  { {0x6d582154, 0x61e802cc, 0x64550009, 0x00000000}},  //   _pava, _tidl, _zszi,\n  { {0x409600e1, 0x721b00b3, 0x5096003b, 0x00000000}},  //   _прет, _מומח, _пређ,\n  { {0x6fc500dc, 0x6e3b00c4, 0x6d580052, 0x00000000}},  //   tóct, atub, _vava,\n  { {0x7e620198, 0x6d430009, 0x317e0032, 0x00000000}},  //   _trop, _ebna, _hotz_,\n  { {0x6d5808b2, 0x7c3a00f8, 0xb5fb370d, 0x00000000}},  //   _tava, sttr, _arán,\n  { {0xf2d3007b, 0x395a0129, 0x09e4008b, 0x00000000}},  //   טער_, _caps_, лоўн,\n  { {0x7aed001c, 0x8d5b00b6, 0x9848005e, 0x00000000}},  //   _tgat, _זכוי, нята_,\n  { {0x0aeb0379, 0x317e01c3, 0x36d502dc, 0x00000000}},  //   _عربي_, _lotz_, вобр,\n  { {0x9f460026, 0x66040058, 0x00000000, 0x00000000}},  // [beb0] _cioé_, gpik,   ,\n  { {0x57f501e0, 0x64550010, 0x61ef009d, 0x00000000}},  //   _ипот, _pszi, _écli,\n  { {0x26e20055, 0xdcf80182, 0x645a0059, 0x00000000}},  //   গুলো_, _novč, _štir,\n  { {0x291300c4, 0xae21006e, 0x00000000, 0x00000000}},  //   _hexa_, _मिलन_,   ,\n  { {0x2bb60089, 0x29130032, 0x00000000, 0x00000000}},  //   nāca_, _kexa_,   ,\n  { {0x25a5009f, 0xdcf80087, 0x00000000, 0x00000000}},  //   _öll_, _bovč,   ,\n  { {0x94d4025f, 0xf33300a1, 0x1fb50069, 0x00000000}},  //   _борц, _مہاج, ксир,\n  { {0xfe4501f9, 0x883c009b, 0x291305d2, 0x00000000}},  //   внио, פתחו, _lexa_,\n  { {0xdb0f0023, 0x6e3b05f0, 0x00000000, 0x00000000}},  //   ancë, utub,   ,\n  { {0x6e3b04cb, 0x399401a2, 0x00000000, 0x00000000}},  //   rtub, _käse_,   ,\n  { {0x6e3b006c, 0x6604002d, 0x317a0049, 0x00000000}},  //   stub, zpik, _קרעמ,\n  { {0x395a0129, 0x6ff10089, 0xdb060023, 0x00000000}},  //   _saps_, _nāci, mikë,\n  { {0xed4e012b, 0xeb9701be, 0x395a0058, 0x00000000}},  //   _ко_, тия_, _paps_,\n  { {0x2fcd000c, 0x00000000, 0x00000000, 0x00000000}},  //   lleg_,   ,   ,\n  { {0x6f092dd6, 0x661d093b, 0xdb060023, 0x00000000}},  //   obec, _avsk, nikë,\n  { {0x2fcd0e58, 0x6d410b36, 0xeafa0123, 0x00000000}},  //   nleg_, lfla, _غربت_,\n  { {0x395a0006, 0x3cee0009, 0xa922000c, 0x00000000}},  // [bec0] _taps_, _ygfv_, _óþol,\n  { {0x6d4121ba, 0xb5fb370e, 0x6604023a, 0x00000000}},  //   nfla, _trán, rpik,\n  { {0x291800d6, 0x660423d6, 0x382a0ae0, 0x00000000}},  //   mara_, spik, _южно_,\n  { {0x291801f6, 0x69ce0039, 0xb5fb01c8, 0x00000000}},  //   lara_, llbe, _král,\n  { {0x27e0021e, 0x2fcd0c31, 0x29181b90, 0x00000000}},  //   mmin_, dleg_, oara_,\n  { {0x2918037e, 0xf503007c, 0x4a9b01ce, 0x00000000}},  //   nara_, _взро, וינג,\n  { {0x656e0033, 0xf04400a1, 0x6e290197, 0x00000000}},  //   _inbh, اعتی, ereb,\n  { {0x29180127, 0x27e0370f, 0x2fcd3710, 0x00000000}},  //   hara_, nmin_, gleg_,\n  { {0x2918011f, 0x6e290209, 0x6d4100f8, 0x00000000}},  //   kara_, greb, ffla,\n  { {0x29180211, 0x27e0014a, 0x6d413711, 0x00000000}},  //   jara_, hmin_, gfla,\n  { {0x291804cb, 0x6fc5027b, 0x27e0008a, 0x00000000}},  //   dara_, rócr, kmin_,\n  { {0x2913027b, 0xdb0601aa, 0x69ce01a2, 0x00000000}},  //   _sexa_, nikè, elbe,\n  { {0x27e0002b, 0x291806ab, 0x6fc50325, 0x00000000}},  //   dmin_, fara_, pócr,\n  { {0x2918020c, 0x7dc6000c, 0x6d410146, 0x00000000}},  //   gara_, rðss, cfla,\n  { {0x28f80077, 0xc3130044, 0x62993712, 0x00000000}},  //   тесь_, _হাসি_, zzwo,\n  { {0xe4e3013d, 0x00000000, 0x00000000, 0x00000000}},  //   _कृषि_,   ,   ,\n  { {0x2918000b, 0x6ff1001e, 0xdb1d0010, 0x00000000}},  // [bed0] bara_, _vāci, nosí,\n  { {0x29183713, 0x27e00058, 0x6609014a, 0x00000000}},  //   cara_, amin_, _çekm,\n  { {0x80a2001c, 0x27e000f6, 0x2fcd005b, 0x00000000}},  //   _केले, bmin_, yleg_,\n  { {0x9f81000c, 0x27eb00f6, 0x92390131, 0x00000000}},  //   jóð_, _uicn_, ечку_,\n  { {0x6d410016, 0x13080088, 0x2fcd3714, 0x00000000}},  //   yfla, тній_, vleg_,\n  { {0x6e290207, 0xdb060065, 0x237f01aa, 0x00000000}},  //   vreb, tikë, _wouj_,\n  { {0x2fcd2c77, 0x3495003b, 0x14c70014, 0x00000000}},  //   tleg_, _савр, _شهری_,\n  { {0x291828d3, 0xdb060065, 0x236d0022, 0x00000000}},  //   zara_, rikë, _unej_,\n  { {0x2fcd1dc6, 0x6d41152f, 0xab5b010f, 0x00000000}},  //   rleg_, tfla, hlüs,\n  { {0x27e03715, 0x6e2926d8, 0xdb0d000c, 0x00000000}},  //   zmin_, rreb, _skað,\n  { {0x291807ea, 0x6d4101e3, 0x27e01544, 0x00000000}},  //   vara_, rfla, ymin_,\n  { {0x29180518, 0x6e290c06, 0x60c40095, 0x00000000}},  //   wara_, preb, şimc,\n  { {0x2918020c, 0x2905005d, 0x6d4101a2, 0x00000000}},  //   tara_, ılan_, pfla,\n  { {0xab5b01a2, 0xed5600d7, 0x00000000, 0x00000000}},  //   flüs, _бош_,   ,\n  { {0x29183716, 0xf99f0263, 0xb5fb3717, 0x00000000}},  //   rara_, nsèy_, _drám,\n  { {0x291801a3, 0x7c3c0129, 0x3f8d0093, 0x00000000}},  //   sara_, àrre, nkeu_,\n  { {0xb5fb0051, 0x00000000, 0x00000000, 0x00000000}},  // [bee0] _frám,   ,   ,\n  { {0x7bc600b0, 0x1a9b007b, 0x7e640c76, 0x00000000}},  //   loku, _נייע, _šipk,\n  { {0xef190046, 0x0d160049, 0x07a60077, 0x00000000}},  //   każ_, רקעט_, _банн,\n  { {0x44260b8e, 0x4ad80061, 0xef190036, 0x00000000}},  //   čo_, _ठराव, jaż_,\n  { {0xef190036, 0x69650123, 0xdb060173, 0x00000000}},  //   daż_, _صدیق, rikè,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7bc61c86, 0x853b00b3, 0xdcf80089, 0x00000000}},  //   koku, _רגלי, _novā,\n  { {0x083b0049, 0x2d8300b0, 0x7bc601ed, 0x00000000}},  //   געקל, öjen_, joku,\n  { {0x7bc6006c, 0x0136023c, 0xdb160173, 0x00000000}},  //   doku, _معاد, _ijyè,\n  { {0xdd900025, 0xc8850279, 0x5c061cf4, 0x00000000}},  //   زوج_, _yaşı_, ляма,\n  { {0x7bc60007, 0x00000000, 0x00000000, 0x00000000}},  //   foku,   ,   ,\n  { {0x7bc63718, 0x3f8d00f6, 0x00000000, 0x00000000}},  //   goku, ckeu_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7afd0f02, 0x00000000, 0x00000000, 0x00000000}},  //   scst,   ,   ,\n  { {0x7bc6006b, 0x3a200087, 0x3cfb009b, 0x00000000}},  //   boku, _evip_, _אלונ,\n  { {0x7d1a225c, 0x291e000c, 0x00000000, 0x00000000}},  //   lats, ótar_,   ,\n  { {0xb5fb049a, 0x00000000, 0x00000000, 0x00000000}},  // [bef0] _trám,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x69c70052, 0xd5b802ea, 0x545502dc, 0x00000000}},  //   moje, уст_, рвет,\n  { {0x69c71011, 0xfaff008d, 0x7d1a014a, 0x00000000}},  //   loje, ncë_, hats,\n  { {0x7d1a03b6, 0x00000000, 0x00000000, 0x00000000}},  //   kats,   ,   ,\n  { {0x69c700b0, 0xef190036, 0x7bc60020, 0x00000000}},  //   noje, waż_, zoku,\n  { {0x7bc60020, 0x2b490129, 0x7d1a0232, 0x00000000}},  //   yoku, _obac_, dats,\n  { {0x82f80054, 0x44330066, 0xd3460014, 0x00000000}},  //   _مركز_, mux_, _نیمه_,\n  { {0x69c73719, 0x44330142, 0x39940039, 0x00000000}},  //   koje, lux_, _läsa_,\n  { {0x63ab218c, 0x1c4502f0, 0x2007000c, 0x00000000}},  //   lign, аном, ppni_,\n  { {0x2a690169, 0x5f74007a, 0xeb9a0088, 0x00000000}},  //   _arab_, _گالر, вин_,\n  { {0x63ab03d2, 0x00000000, 0x00000000, 0x00000000}},  //   nign,   ,   ,\n  { {0x61ee014a, 0x7bc60213, 0x6f1b06ed, 0x00000000}},  //   _ünlü, roku, mauc,\n  { {0x69c70087, 0x2a690190, 0xf1b20049, 0x00000000}},  //   goje, _drab_, ַסן_,\n  { {0xdca20069, 0x7bc6000b, 0xa3d5007d, 0x00000000}},  //   _маши, poku, हता_,\n  { {0x4433002b, 0xcc3a007b, 0x00000000, 0x00000000}},  //   dux_, _סעפט,   ,\n  { {0x443300f4, 0x69c700ca, 0x63ab18a7, 0x00000000}},  // [bf00] eux_, boje, dign,\n  { {0x75d30076, 0x4433002b, 0x69c7004a, 0x00000000}},  //   قيقا, fux_, coje,\n  { {0x7afb24f2, 0x224d0145, 0xdb040010, 0x00000000}},  //   žute, _apek_, _amié,\n  { {0x232a371a, 0x05160044, 0x626600ed, 0x00000000}},  //   тоди_, ালের_, ивеа,\n  { {0x4433028c, 0x3f82000c, 0x2005000c, 0x00000000}},  //   aux_, ökum_, _atli_,\n  { {0xa507003b, 0x44330066, 0x6b96018e, 0x00000000}},  //   _вера_, bux_, _llyg,\n  { {0x7d1a0209, 0x6b960016, 0x63ab009d, 0x00000000}},  //   vats, _olyg, bign,\n  { {0x628b0016, 0x63ab3608, 0x6f1b0dfc, 0x00000000}},  //   bygo, cign, gauc,\n  { {0xb355026c, 0x644e0009, 0x7d1a006c, 0x00000000}},  //   _دینا_, _hpbi, tats,\n  { {0xddc20046, 0x71ea035b, 0xeb880049, 0x00000000}},  //   _społ, _شفاف_, _אָ_,\n  { {0x7d1a168e, 0x1b19007c, 0x69c70091, 0x00000000}},  //   rats, лжны_, voje,\n  { {0x7d1a225c, 0x6f1b0efe, 0x6b840051, 0x00000000}},  //   sats, cauc, _coig,\n  { {0x69c700b0, 0x6b8400f4, 0x37cc0044, 0x00000000}},  //   toje, _doig, লগার,\n  { {0x6609014a, 0xdb0f00c4, 0x644e00d9, 0x00000000}},  //   _çeki, tocó, _opbi,\n  { {0x628b0046, 0x6b9605cc, 0xf7730076, 0x00000000}},  //   zygo, _flyg, يار_,\n  { {0x2a69002b, 0x69c72001, 0x8aa7007c, 0x00000000}},  //   _trab_, soje, _врод,\n  { {0xa935371b, 0x69c70161, 0x7bcd371c, 0x00000000}},  // [bf10] _лепш, poje, _ikau,\n  { {0x44330066, 0x5574371d, 0x7d180087, 0x00000000}},  //   tux_, огут, _jevs,\n  { {0x63ab2d54, 0x6b84008e, 0xf48700ed, 0x00000000}},  //   tign, _yoig, јузн,\n  { {0x44330066, 0x00000000, 0x00000000, 0x00000000}},  //   rux_,   ,   ,\n  { {0xd6db317a, 0x63ab117e, 0x44330066, 0x00000000}},  //   _што_, rign, sux_,\n  { {0x63ab0038, 0x628b0036, 0x798500ea, 0x00000000}},  //   sign, rygo, _johw,\n  { {0x04950054, 0x63ab0026, 0xa2b30204, 0x00000000}},  //   _الأح, pign, _अशक्,\n  { {0x53340256, 0x28b800b6, 0x636800da, 0x00000000}},  //   _мест, יפוש_, _круг_,\n  { {0x63a900ee, 0x6f1b125c, 0x22940088, 0x00000000}},  //   _imen, rauc, _дитя,\n  { {0x7bcd0518, 0x6f1b0089, 0x6b8400f4, 0x00000000}},  //   _akau, sauc, _soig,\n  { {0x30a701fb, 0x6b840c81, 0x44210089, 0x00000000}},  //   _трав, _poig, nsh_,\n  { {0x69de008d, 0x63a900b9, 0xf98900a3, 0x00000000}},  //   _shpe, _jmen, _אר_,\n  { {0xeab2026c, 0x6b840302, 0xdef8008b, 0x00000000}},  //   سٹس_, _voig, _тых_,\n  { {0x63a9088f, 0x63bb0039, 0x44210ede, 0x00000000}},  //   _lmen, _ljun, ksh_,\n  { {0xb9000183, 0x63a90144, 0x765d00f8, 0x00000000}},  //   _तर_, _omen, _assy,\n  { {0x07a3022a, 0x63bb00ca, 0xc7a308d6, 0x00000000}},  //   пасн, _njun, писк,\n  { {0x44212154, 0x75d60076, 0x00000000, 0x00000000}},  // [bf20] esh_, ميرا,   ,\n  { {0x63bb0d8a, 0x63a9371e, 0x44210065, 0x00000000}},  //   _ajun, _amen, fsh_,\n  { {0x63a904e6, 0x291a371f, 0x00000000, 0x00000000}},  //   _bmen, _iepa_,   ,\n  { {0x63a92b3c, 0xe29a03f6, 0x291a0253, 0x00000000}},  //   _cmen, лае_, _hepa_,\n  { {0x232700e3, 0x291a0032, 0x63bb00f8, 0x00000000}},  //   сочи_, _kepa_, _djun,\n  { {0x63a93720, 0x55e3007c, 0xf5960025, 0x00000000}},  //   _emen, _нояб, _السج,\n  { {0x6e222086, 0xe04a0014, 0x7d180190, 0x00000000}},  //   _svob, اشته_, _revs,\n  { {0xb5fb0051, 0x291a0059, 0x6f190016, 0x00000000}},  //   _srái, _lepa_, _cewc,\n  { {0x7644163c, 0xa3d5013d, 0x877b00a3, 0x00000000}},  //   ntiy, हतर_, ראפי,\n  { {0x7bcd0006, 0x63a90027, 0x444429e7, 0x00000000}},  //   _skau, _zmen, ot_,\n  { {0xe6d5007d, 0x6cd40439, 0x6aa60044, 0x00000000}},  //   _दर्ज, تقدا, _গুলো,\n  { {0x44443721, 0x6f190016, 0x63a90288, 0x00000000}},  //   it_, _gewc, _xmen,\n  { {0x44443722, 0x2aab003b, 0xb5fb16b8, 0x00000000}},  //   ht_, утно_, _trái,\n  { {0x398f006c, 0x44210023, 0x00000000, 0x00000000}},  //   _küsi_, ysh_,   ,\n  { {0x444432fc, 0x6f0d001a, 0xbc670014, 0x00000000}},  //   jt_, _încâ, _همون_,\n  { {0x44441440, 0x6d4801d6, 0x06150077, 0x00000000}},  //   dt_, lfda, ждаю,\n  { {0x44440e23, 0xaa5902d3, 0x76440058, 0x00000000}},  // [bf30] et_, _типу_, gtiy,\n  { {0x44440f12, 0x63a9003b, 0x63bb0039, 0x00000000}},  //   ft_, _smen, _sjun,\n  { {0x44440cb2, 0x490f013d, 0x4421060f, 0x00000000}},  //   gt_, _त्यो_, ush_,\n  { {0x69d5010f, 0x7dcf068f, 0x291a00f6, 0x00000000}},  //   llze, løst, _zepa_,\n  { {0x60c401df, 0x44210023, 0x442301c3, 0x00000000}},  //   şiml, ssh_, _wvj_,\n  { {0x660d01a3, 0x29030036, 0x444403a1, 0x00000000}},  //   mpak, ncja_, bt_,\n  { {0x44440f44, 0x93e90025, 0x63bb016c, 0x00000000}},  //   ct_, _نفسك_, _tjun,\n  { {0xdfd10025, 0x63a90027, 0x63bb0169, 0x00000000}},  //   بيع_, _umen, _ujun,\n  { {0x29030046, 0x660d00bb, 0x6d480c3f, 0x00000000}},  //   kcja_, npak, ffda,\n  { {0xb5fb01e5, 0xb65c0049, 0x00000000, 0x00000000}},  //   _fráv, רדזש,   ,\n  { {0x64450181, 0x7e640e00, 0xb5fb00c4, 0x00000000}},  //   nthi, _šipt, _gráv,\n  { {0x61fb3723, 0x64451b88, 0x291a008e, 0x00000000}},  //   _kuul, ithi, _sepa_,\n  { {0x61fb0004, 0x44440010, 0xb69b001a, 0x00000000}},  //   _juul, zt_, _sfân,\n  { {0x61fb044e, 0x44443724, 0x64450065, 0x00000000}},  //   _muul, yt_, kthi,\n  { {0x61fb003c, 0x44440866, 0x6fea0036, 0x00000000}},  //   _luul, xt_, _ręcz,\n  { {0x444405fe, 0x29030036, 0xd70a007e, 0x00000000}},  //   vt_, acja_, рнае_,\n  { {0x44443725, 0x2d873726, 0x660d011c, 0x00000000}},  // [bf40] wt_, _kone_, gpak,\n  { {0x44443727, 0x764402b9, 0x2d870065, 0x00000000}},  //   tt_, rtiy, _jone_,\n  { {0x44440a8a, 0x76440b78, 0x644500ea, 0x00000000}},  //   ut_, stiy, gthi,\n  { {0x39580018, 0x2a600066, 0x76441c39, 0x00000000}},  //   lers_, _ksib_, ptiy,\n  { {0x4444061f, 0x644527a4, 0x2a60002b, 0x00000000}},  //   st_, athi, _jsib_,\n  { {0x44443728, 0xb5fb0428, 0x2d870866, 0x00000000}},  //   pt_, _práv, _none_,\n  { {0xcf9a012b, 0x444401d5, 0x39583729, 0x00000000}},  //   ији_, qt_, iers_,\n  { {0x39580038, 0x2d87327e, 0x00000000, 0x00000000}},  //   hers_, _aone_,   ,\n  { {0x395813e2, 0x6609014a, 0x2d8700ab, 0x00000000}},  //   kers_, _çekt, _bone_,\n  { {0x2d980036, 0x395801d5, 0x2b4006c0, 0x00000000}},  //   óre_, jers_, _acic_,\n  { {0x39580f12, 0x2d8700ab, 0xe4fb0049, 0x00000000}},  //   ders_, _done_, יפיש,\n  { {0x2366008d, 0xddc2001e, 0xb5fb0161, 0x00000000}},  //   ndoj_, _droš, _krát,\n  { {0x395800ab, 0x2d870181, 0x6fc70061, 0x00000000}},  //   fers_, _fone_, ावरू,\n  { {0x644500ab, 0x2d872f94, 0x60cd0c4f, 0x00000000}},  //   ythi, _gone_, şame,\n  { {0xd7fb007c, 0xddc200ca, 0x6ca3005e, 0x00000000}},  //   руг_, _groš, _оръж,\n  { {0x2246011c, 0x660d00bb, 0x7ddd01aa, 0x00000000}},  //   ktok_, tpak, mèsa,\n  { {0x2b59000d, 0x3958192b, 0x29030036, 0x00000000}},  // [bf50] mesc_, bers_, pcja_,\n  { {0x660d0281, 0x6445010f, 0x2b59001a, 0x00000000}},  //   rpak, tthi, lesc_,\n  { {0x43750a94, 0x64450082, 0xe9df008e, 0x00000000}},  //   зулт, uthi, ctúa_,\n  { {0x6445018e, 0x2b59001a, 0x660d00b0, 0x00000000}},  //   rthi, nesc_, ppak,\n  { {0x27e9171a, 0xd25b0887, 0xdb06372a, 0x00000000}},  //   mman_, рце_, niká,\n  { {0x27e9372b, 0x6b9d0065, 0xb5fb372c, 0x00000000}},  //   lman_, ërgj, _drát,\n  { {0x76590477, 0x2d9e372d, 0x27e9337a, 0x00000000}},  //   şayı, dhte_, oman_,\n  { {0x27e92900, 0x395800b5, 0x61fb003c, 0x00000000}},  //   nman_, zers_, _tuul,\n  { {0x28d202d2, 0xb5fb02d5, 0x2d87372e, 0x00000000}},  //   _दुनि, _grát, _pone_,\n  { {0xddc206a6, 0x27e901a3, 0x2d9e0051, 0x00000000}},  //   _proš, hman_, ghte_,\n  { {0x1b200055, 0x3958032c, 0x27e9134e, 0x00000000}},  //   _ভাবে_, vers_, kman_,\n  { {0x27e90263, 0x39580b8d, 0xdb0629c5, 0x00000000}},  //   jman_, wers_, fiká,\n  { {0x27e90b3d, 0x2d9e0051, 0x00000000, 0x00000000}},  //   dman_, bhte_,   ,\n  { {0x2d9e1626, 0xdca50242, 0xddc20466, 0x00000000}},  //   chte_, _нали, _troš,\n  { {0x22460a50, 0x2b59001a, 0x7d7a009b, 0x00000000}},  //   ztok_, besc_, _לנסו,\n  { {0x39582a7d, 0x2fcd0100, 0xab9a007a, 0x00000000}},  //   sers_, noeg_, _دختر_,\n  { {0x395800ab, 0x41cb0309, 0x00000000, 0x00000000}},  // [bf60] pers_, िवास,   ,\n  { {0xfaff0065, 0x27e90358, 0x00000000, 0x00000000}},  //   ndën_, aman_,   ,\n  { {0x27e9005b, 0xdb0f00f6, 0x67ce007f, 0x00000000}},  //   bman_, ficè, tėję,\n  { {0xb5fb0181, 0x27e901ee, 0x22462d0f, 0x00000000}},  //   _prát, cman_, ttok_,\n  { {0xb5fb372f, 0x00000000, 0x00000000, 0x00000000}},  //   _drás,   ,   ,\n  { {0x4736007a, 0x69ce0039, 0xb5fb06b8, 0x00000000}},  //   _برگز, nobe, _vrát,\n  { {0x34a7358a, 0x224605fd, 0xb5fb3730, 0x00000000}},  //   _евро_, stok_, _frás,\n  { {0x443a0061, 0xb5fb3731, 0x69ce010f, 0x00000000}},  //   mup_, _trát, hobe,\n  { {0x443a3732, 0xed580027, 0x2b59001a, 0x00000000}},  //   lup_, teľ_, vesc_,\n  { {0x27e901aa, 0x291e000c, 0x4c940a85, 0x00000000}},  //   zman_, ðtal_, диос,\n  { {0x27e90f99, 0x2b59001a, 0x443a0095, 0x00000000}},  //   yman_, tesc_, nup_,\n  { {0x2d9e008d, 0xdb060a50, 0xbe4a0014, 0x00000000}},  //   shte_, tiká, _هشتم_,\n  { {0x27e90263, 0x2b59000d, 0x69ce00bb, 0x00000000}},  //   vman_, resc_, fobe,\n  { {0x2b59001a, 0x23de013d, 0x69ce29d8, 0x00000000}},  //   sesc_, _फीसद, gobe,\n  { {0x6d5a20b9, 0xa3be006e, 0x27e9060b, 0x00000000}},  //   meta, ीका_, tman_,\n  { {0x1cbb00b6, 0x443a020c, 0x27e901a3, 0x00000000}},  //   _למוע, dup_, uman_,\n  { {0xd6db0373, 0xddc200b9, 0x9f4c0027, 0x00000000}},  // [bf70] ств_, _spoř, _budú_,\n  { {0x6d5a0756, 0x27e90263, 0x7bcf001a, 0x00000000}},  //   neta, sman_, locu,\n  { {0x44270219, 0x27e90263, 0x443a01a3, 0x00000000}},  //   én_, pman_, gup_,\n  { {0x6d5a006c, 0x245e00b9, 0x316501a2, 0x00000000}},  //   heta, _dům_, _salz_,\n  { {0x6d5a022b, 0x2fcd0343, 0xa29403e8, 0x00000000}},  //   keta, voeg_, наці,\n  { {0x2d8a050d, 0x443a0093, 0x7c3a059f, 0x00000000}},  //   öbel_, bup_, kutr,\n  { {0x6d5a006c, 0x950800a1, 0x00000000, 0x00000000}},  //   deta, _رہنے_,   ,\n  { {0x389c00a3, 0x69ce2061, 0x7c3a141a, 0x00000000}},  //   מיונ, zobe, dutr,\n  { {0x200c005f, 0x7bcf00bb, 0x7e620047, 0x00000000}},  //   _etdi_, docu, _csop,\n  { {0x6d5a0585, 0xa3a90164, 0x200c0544, 0x00000000}},  //   geta, गोर_, _ftdi_,\n  { {0x7bcf15e0, 0x65670059, 0x69ce01ee, 0x00000000}},  //   focu, _majh, vobe,\n  { {0x2d9c3733, 0xeb9701ab, 0x00000000, 0x00000000}},  //   _elve_, дию_,   ,\n  { {0x6d5a05ad, 0x65a0010f, 0xdce3002b, 0x00000000}},  //   beta, _höhe, _kanċ,\n  { {0x9f5e0f3c, 0x6d5a0211, 0x64553734, 0x00000000}},  //   _että_, ceta, _opzi,\n  { {0x69ce3735, 0x65a00010, 0x18671867, 0x00000000}},  //   robe, _jöhe, мари_,\n  { {0xe61a1ef9, 0x69ce01ca, 0x7bcf3736, 0x00000000}},  //   жда_, sobe, cocu,\n  { {0x60c4011f, 0x645508ad, 0x69ce144f, 0x00000000}},  // [bf80] ğimi, _apzi, pobe,\n  { {0x60c4005a, 0x65670087, 0xca37009b, 0x00000000}},  //   şimi, _cajh, _קניה_,\n  { {0x6d4302f1, 0x00000000, 0x00000000, 0x00000000}},  //   _mcna,   ,   ,\n  { {0x443a0018, 0x6d5a2828, 0x7dd400f6, 0x00000000}},  //   rup_, zeta, làst,\n  { {0x6d5a23d3, 0x925a031d, 0xd2501095, 0x00000000}},  //   yeta, تشار_, انت_,\n  { {0x443a0061, 0x6d5a002d, 0xdce301f3, 0x00000000}},  //   pup_, xeta, _canċ,\n  { {0x6d5a04bd, 0xa3d9007d, 0x61ea04f2, 0x00000000}},  //   veta, _ठीक_, rmfl,\n  { {0x6d5a002b, 0x88c00044, 0x6629000c, 0x00000000}},  //   weta, _ইরাক, _óskö,\n  { {0xb1460264, 0x3df400ed, 0x63a22c4f, 0x00000000}},  //   _онал, нзис, mhon,\n  { {0x60cd005d, 0xf99f01aa, 0xaad2013d, 0x00000000}},  //   şama, npèt_, _सड़क,\n  { {0x6d5a02e1, 0x7bcf009d, 0x67243287, 0x00000000}},  //   reta, tocu, kaij,\n  { {0x69c0028c, 0x6d5a0091, 0x442a3737, 0x00000000}},  //   émen, seta, _mvb_,\n  { {0x6d5a0004, 0x7bcf0035, 0x7e620146, 0x00000000}},  //   peta, rocu, _usop,\n  { {0x7bcf06c0, 0x7c3a04be, 0x6d430048, 0x00000000}},  //   socu, putr, _gcna,\n  { {0x4bdb0025, 0x656701ee, 0x9848005e, 0x00000000}},  //   _وبعد_, _rajh, мята_,\n  { {0x1b190055, 0xab5b014a, 0x7c2800f8, 0x00000000}},  //   _থাকে_, ylüy, msdr,\n  { {0x1515007e, 0x7c281b0d, 0x63a20023, 0x00000000}},  // [bf90] едзя, lsdr, dhon,\n  { {0x442a0de1, 0xab5b006b, 0x9f5e0023, 0x00000000}},  //   _bvb_, vlüy, _butë_,\n  { {0x7c2801c5, 0x7bc8009d, 0x63a201c3, 0x00000000}},  //   nsdr, éjug, fhon,\n  { {0xa3a903d7, 0xd6d0026c, 0xa5f93738, 0x00000000}},  //   गों_, اقے_, _нему_,\n  { {0xdcf800b9, 0x7d0a00ab, 0x442a0296, 0x00000000}},  //   _pově, _offs, _evb_,\n  { {0xe0450174, 0x00000000, 0x00000000, 0x00000000}},  //   енки,   ,   ,\n  { {0x442a00bb, 0x00000000, 0x00000000, 0x00000000}},  //   _gvb_,   ,   ,\n  { {0x63a23739, 0x0e6501fc, 0xdbd70103, 0x00000000}},  //   chon, екин, _jääh,\n  { {0xa3cc007d, 0xa3be01f5, 0x7c2801c3, 0x00000000}},  //   रकर_, ीकर_, esdr,\n  { {0x4c85013b, 0xac850959, 0x3f82000c, 0x00000000}},  //   елов, егол, ökur_,\n  { {0xe572007b, 0x3f150057, 0x8014008b, 0x00000000}},  //   אַר_, _здес, _афіц,\n  { {0xfe7106c6, 0x27f9023a, 0x4c820088, 0x00000000}},  //   _مدت_, _nisn_, улюв,\n  { {0xc3320104, 0x998400b9, 0xdd95007e, 0x00000000}},  //   נוך_, émů_, _пады,\n  { {0xc212012f, 0x63a225c3, 0x00000000, 0x00000000}},  //   רהם_, zhon,   ,\n  { {0xeb9a007c, 0x6e2902e7, 0x9f5e0173, 0x00000000}},  //   _ник_, lseb, _butè_,\n  { {0x6d41006c, 0x6f0901a3, 0x1ae6007c, 0x00000000}},  //   lgla, ncec, _пойм,\n  { {0x290501f6, 0xdce301ee, 0x6e291a3d, 0x00000000}},  // [bfa0] ılar_, _manč, nseb,\n  { {0xdce30209, 0x65a0005f, 0x442a00d9, 0x00000000}},  //   _lanč, _söhb, _pvb_,\n  { {0x63a20e69, 0x6fcf0061, 0x6d4117b4, 0x00000000}},  //   thon, हकां, igla,\n  { {0x69dc0061, 0x24860091, 0x8c1a009b, 0x00000000}},  //   llre, ćom_, פוני,\n  { {0xe297003b, 0x45240044, 0x63a200b0, 0x00000000}},  //   нац_, _পাঠক_, rhon,\n  { {0x63a2373a, 0x442a0082, 0x6e290059, 0x00000000}},  //   shon, _tvb_, dseb,\n  { {0x63a2028c, 0xdce30059, 0xb88200b9, 0x00000000}},  //   phon, _banč, _říjn,\n  { {0x69dc010f, 0xdd250006, 0xa857009b, 0x00000000}},  //   hlre, _rūši, תיקה_,\n  { {0x7ae40020, 0x67c50006, 0xd3450014, 0x00000000}},  //   _nzit, nėja, _شیوه_,\n  { {0x7bc40020, 0x7c28373b, 0x6d4100f8, 0x00000000}},  //   _ajiu, tsdr, ggla,\n  { {0xdcba005e, 0xaf1f0044, 0x0ee20061, 0x00000000}},  //   ящи_, _ধারণ_, _परवड,\n  { {0x67c50006, 0x2918008e, 0xdce30087, 0x00000000}},  //   kėja, ebra_, _ganč,\n  { {0xdfcf0014, 0x4e930084, 0x61fa014a, 0x00000000}},  //   _اين_, _مشور, _kitl,\n  { {0x67c50006, 0xdb0f0181, 0x61fa002b, 0x00000000}},  //   dėja, micí, _jitl,\n  { {0x61fa0bdf, 0xdb0f0211, 0x7ae41cff, 0x00000000}},  //   _mitl, licí, _ezit,\n  { {0x61fa0635, 0x657c0016, 0x69dc0009, 0x00000000}},  //   _litl, _anrh, alre,\n  { {0xdb0f2d7d, 0x2918373c, 0x391501fc, 0x00000000}},  // [bfb0] nicí, bbra_, _импр,\n  { {0x27f90022, 0x7bdd01a2, 0x69dc0009, 0x00000000}},  //   _wisn_, llsu, clre,\n  { {0xe3be005d, 0xc952009b, 0xdce3002b, 0x00000000}},  //   ğına_, _דמי_, _konġ,\n  { {0x04c80054, 0xe3be01f6, 0x6d4100ee, 0x00000000}},  //   روني_, şına_, zgla,\n  { {0x2169013b, 0x6d410016, 0x61fa373d, 0x00000000}},  //   дили_, ygla, _bitl,\n  { {0x23690e00, 0xd83801d9, 0x657c0022, 0x00000000}},  //   žaj_, šče_, _gnrh,\n  { {0xa0660265, 0xdce30b30, 0x6e290009, 0x00000000}},  //   ваща_, _panč, wseb,\n  { {0x39940039, 0x61fa0051, 0x6e291db4, 0x00000000}},  //   _häst_, _eitl, tseb,\n  { {0x764d0176, 0x6f090093, 0x6d4100f8, 0x00000000}},  //   ntay, rcec, tgla,\n  { {0x30a7012b, 0x6e290149, 0xfe420088, 0x00000000}},  //   _прев, rseb, шньо,\n  { {0x6e290010, 0xdce3013e, 0x21272e7e, 0x00000000}},  //   sseb, _tanč, manh_,\n  { {0x09da001c, 0x39940039, 0x6d41005b, 0x00000000}},  //   णत्य, _läst_, sgla,\n  { {0x68e5016c, 0xdb0f0adb, 0x8d651ac0, 0x00000000}},  //   _azhd, ficâ, _авле,\n  { {0x21270082, 0x67c50006, 0x7bdd006c, 0x00000000}},  //   nanh_, vėja, alsu,\n  { {0x3f8f0004, 0x2918277c, 0x69dc01e5, 0x00000000}},  //   _kogu_, rbra_, rlre,\n  { {0x21270011, 0x7ae4012d, 0x67c50006, 0x00000000}},  //   hanh_, _tzit, tėja,\n  { {0x3f8f0091, 0x39940039, 0x7ae40020, 0x00000000}},  // [bfc0] _mogu_, _bäst_, _uzit,\n  { {0x67c50006, 0x3f8f0089, 0x00000000, 0x00000000}},  //   rėja, _logu_,   ,\n  { {0x499b0104, 0x03260088, 0x764d0020, 0x00000000}},  //   _חשיב, вден, atay,\n  { {0x78a302b9, 0x3f8f0091, 0x61ca006e, 0x00000000}},  //   _ünva, _nogu_, ाक्ष,\n  { {0x4254006d, 0x15ba007e, 0x60cd01df, 0x00000000}},  //   انتر, _жывы_, şaml,\n  { {0x657c018e, 0x7f95029d, 0x39940039, 0x00000000}},  //   _unrh, _máqu, _gäst_,\n  { {0x93460517, 0x61fa000c, 0x3f8f0091, 0x00000000}},  //   _инве, _vitl, _bogu_,\n  { {0x61fa046a, 0x2d8e1ce1, 0xdb0f373e, 0x00000000}},  //   _witl, _sofe_, ticí,\n  { {0x61fa0365, 0xc7b301f8, 0x3f8f002d, 0x00000000}},  //   _titl, יבה_, _dogu_,\n  { {0x61fa01b5, 0x2ca900b9, 0x21270082, 0x00000000}},  //   _uitl, _řada_, canh_,\n  { {0x853b0104, 0x00000000, 0x00000000, 0x00000000}},  //   וגיי,   ,   ,\n  { {0x3f8f0035, 0x443a0048, 0xc4d3009b, 0x00000000}},  //   _gogu_, irp_, יגת_,\n  { {0xa5bb000c, 0xee940014, 0x00000000, 0x00000000}},  //   _kvót, _حداک,   ,\n  { {0xdd93007e, 0x3f8f0065, 0xdee30364, 0x00000000}},  //   _вашы, _zogu_, _точи,\n  { {0x316c0007, 0x60e6013e, 0x3a390045, 0x00000000}},  //   _madz_, _úsmě, srsp_,\n  { {0x764d0048, 0xddd9000a, 0xe894007e, 0x00000000}},  //   ttay, _apwň, шась,\n  { {0x8bb4004b, 0xeb1f006e, 0x00000000, 0x00000000}},  // [bfd0] _خصوص, परीत_,   ,\n  { {0x6b9d0546, 0x21270082, 0x9f9a006c, 0x00000000}},  //   lksg, xanh_, _hääl_,\n  { {0xf99200b3, 0xdce30089, 0x69d50142, 0x00000000}},  //   _הרי_, _kanā, moze,\n  { {0x69d5041a, 0x317e0032, 0x6b9d0133, 0x00000000}},  //   loze, _antz_, nksg,\n  { {0xdb1d373f, 0xf9900123, 0x6b9d0328, 0x00000000}},  //   losó, _طبی_, iksg,\n  { {0x644a0129, 0xa5bb0036, 0x69d50692, 0x00000000}},  //   àfic, _dwóc, noze,\n  { {0x65a0006b, 0xf3670081, 0x27eb0082, 0x00000000}},  //   _köhn, _итан, _khcn_,\n  { {0x69d50062, 0x4394007c, 0x6d5c006c, 0x00000000}},  //   hoze, _касс, õran,\n  { {0x69d500b5, 0x00000000, 0x00000000, 0x00000000}},  //   koze,   ,   ,\n  { {0x9f4c00f6, 0x6b9d00bb, 0xc69200a0, 0x00000000}},  //   _budó_, eksg, צאי_,\n  { {0x75eb005a, 0x62990462, 0x301501ab, 0x00000000}},  //   müzd, lywo, _сдер,\n  { {0x29cd0027, 0x9f4c004a, 0xe4560049, 0x00000000}},  //   hľad_, _dudó_, נירט_,\n  { {0x539a007b, 0x6f1b0181, 0xff04005e, 0x00000000}},  //   גירו, mbuc, _тяхн,\n  { {0x6f1b027b, 0x186a0265, 0x2fdf01d5, 0x00000000}},  //   lbuc, наги_, llug_,\n  { {0xc4be0044, 0x237f012d, 0x58950088, 0x00000000}},  //   _অর্জ, _onuj_, ашту,\n  { {0x2005006a, 0x6f1b010f, 0x2be00061, 0x00000000}},  //   _muli_, nbuc, नतळा,\n  { {0x6e3b00d9, 0xe57a004d, 0x69d50861, 0x00000000}},  // [bfe0] nrub, нза_, boze,\n  { {0xc9663740, 0x629904d2, 0xab5b0010, 0x00000000}},  //   _свой, dywo, nnün,\n  { {0x62990009, 0xdb0f00c4, 0xe3be005a, 0x00000000}},  //   eywo, licá, şıma_,\n  { {0xa22a0ae0, 0x42ca00e2, 0x7c2e004a, 0x00000000}},  //   ежда_, нген_, ábri,\n  { {0x27e03741, 0x75840014, 0xdb0f004a, 0x00000000}},  //   mlin_, _پیام, nicá,\n  { {0x27e03327, 0xb42606b4, 0x20052c13, 0x00000000}},  //   llin_, _معرو, _buli_,\n  { {0x660601c2, 0x27e00052, 0x20053742, 0x00000000}},  //   _hukk, olin_, _culi_,\n  { {0x660603b6, 0x5f94026b, 0x63b90036, 0x00000000}},  //   _kukk, риит, ciwn,\n  { {0x660600b0, 0xdd900025, 0x244e0161, 0x00000000}},  //   _jukk, قوة_, lým_,\n  { {0x27e00039, 0xdce30089, 0x6606054f, 0x00000000}},  //   hlin_, _sanā, _mukk,\n  { {0x244e004f, 0x6606068f, 0x69d5013e, 0x00000000}},  //   ným_, _lukk, voze,\n  { {0x656e002a, 0x67260059, 0x6e3b1d56, 0x00000000}},  //   _labh, _nekj, brub,\n  { {0x6b9d01d6, 0x69d5002d, 0x660600b0, 0x00000000}},  //   rksg, toze, _nukk,\n  { {0xf2d3007b, 0x645c1de0, 0x244e0428, 0x00000000}},  //   מער_, _opri, kým_,\n  { {0x69d507e4, 0xddc20059, 0x67260056, 0x00000000}},  //   roze, _krož, _bekj,\n  { {0x66060d22, 0x7ddd01aa, 0x27e03743, 0x00000000}},  //   _bukk, vèsi, glin_,\n  { {0xa9c70084, 0x656e0051, 0x2a69011c, 0x00000000}},  // [bff0] _مزدو, _babh, _usab_,\n  { {0x656e002a, 0x2d9e03a9, 0xd83801d9, 0x00000000}},  //   _cabh, nkte_, šča_,\n  { {0x27e00036, 0x6d4a01c3, 0x2d9e00c1, 0x00000000}},  //   blin_, _mcfa, ikte_,\n  { {0xb7670ae0, 0xae04006e, 0x656e0051, 0x00000000}},  //   _стой, रदान_, _eabh,\n  { {0x92070089, 0x2fdf01d6, 0xc4cf00a1, 0x00000000}},  //   klāš, vlug_, _کےا_,\n  { {0x6f02049a, 0x656e0051, 0xe29604cf, 0x00000000}},  //   _agoc, _gabh, раш_,\n  { {0x10a504ef, 0xddc20062, 0x349516e8, 0x00000000}},  //   рийн, _brož, _тавр,\n  { {0xe3b0002c, 0xa29501ff, 0xe3b300a6, 0x00000000}},  //   _فرق_, _кабі, _طرز_,\n  { {0xdb06008d, 0x6f1b0c3f, 0xddc80064, 0x00000000}},  //   shkë, rbuc, _šošk,\n  { {0x20050368, 0xdcf8001e, 0x6e3b00c4, 0x00000000}},  //   _tuli_, _novē, rrub,\n  { {0xb17a0049, 0xa17a0049, 0x27e00052, 0x00000000}},  //   _שטער, _שטעט, ylin_,\n  { {0xddc2010a, 0x765d224b, 0x2d9e00c7, 0x00000000}},  //   _grož, _opsy, akte_,\n  { {0x7ff40151, 0x27e000ca, 0x6e220016, 0x00000000}},  //   _اسلا, vlin_, _gwob,\n  { {0x2d9e0002, 0x66060007, 0x5e560049, 0x00000000}},  //   ckte_, _rukk, _כינע_,\n  { {0xd706026b, 0x6606018d, 0x27e0010e, 0x00000000}},  //   изви, _sukk, tlin_,\n  { {0x656e2423, 0x244e0428, 0x27e001f3, 0x00000000}},  //   _sabh, vým_, ulin_,\n\n  { {0x27f232b3, 0x27e003a1, 0xb69b001a, 0x00000000}},  // [c000] rmyn_, rlin_, _sfâr,\n  { {0x1a9b00a3, 0x645c1087, 0x27e0016e, 0x00000000}},  //   _סייע, _ppri, slin_,\n  { {0x27e004cb, 0x6726000c, 0xf8ca0061, 0x00000000}},  //   plin_, _tekj, _रशिय,\n  { {0xe29a008b, 0xa3b003d7, 0x244e01ca, 0x00000000}},  //   кае_, टों_, rým_,\n  { {0x656e002a, 0x395a0161, 0x4431001a, 0x00000000}},  //   _tabh, _kbps_, _evz_,\n  { {0xfe08001d, 0x76440020, 0x77640129, 0x00000000}},  //   _nữa_, muiy, leix,\n  { {0x395a0082, 0xddc232e0, 0xdb0400b5, 0x00000000}},  //   _mbps_, _prož, _clië,\n  { {0x44440be3, 0x6e220263, 0x776404bd, 0x00000000}},  //   mu_, _pwob, neix,\n  { {0x4444021e, 0xfe080011, 0x6146003b, 0x00000000}},  //   lu_, _bữa_, _веза,\n  { {0x3d160061, 0x00000000, 0x00000000, 0x00000000}},  //   पुढे_,   ,   ,\n  { {0x2d9e046a, 0x8fa61023, 0xb5fb0161, 0x00000000}},  //   rkte_, _каже, _práz,\n  { {0x9ffa0025, 0xa3cc006e, 0xddc90340, 0x00000000}},  //   _شراء_, रकट_, rveš,\n  { {0x44440387, 0x77640129, 0x7e790016, 0x00000000}},  //   hu_, deix, _grwp,\n  { {0x1cba0025, 0x6b5c0030, 0x65a001a2, 0x00000000}},  //   _لاعب_, _pågæ, _böhm,\n  { {0x444404a9, 0x776400d4, 0x752717d8, 0x00000000}},  //   ju_, feix, _rejz,\n  { {0xf7700025, 0x77640129, 0x3cfb009b, 0x00000000}},  //   واق_, geix, _בלונ,\n  { {0x444402ad, 0x44230022, 0xe66701fc, 0x00000000}},  // [c010] eu_, _swj_, штво,\n  { {0x4444000b, 0x44310006, 0x00000000, 0x00000000}},  //   fu_, _pvz_,   ,\n  { {0x54551deb, 0x7ddd25b8, 0x776400d4, 0x00000000}},  //   свет, mèst, beix,\n  { {0xdfc60379, 0x69c70059, 0x7ddd00d4, 0x00000000}},  //   _ري_, lnje, lèst,\n  { {0x44440bc4, 0x672d01c5, 0xc244007e, 0x00000000}},  //   au_, maaj, жнік,\n  { {0xdca60054, 0x672d021e, 0x00000000, 0x00000000}},  //   _فى_, laaj,   ,\n  { {0x44440119, 0x3f9f00b0, 0xddc20036, 0x00000000}},  //   cu_, tkuu_, _droż,\n  { {0xfe080011, 0x64450058, 0x69c7050f, 0x00000000}},  //   _sữa_, muhi, hnje,\n  { {0x3ead0107, 0x64453744, 0xe7f801f5, 0x00000000}},  //   uzet_, luhi, ंगता_,\n  { {0xcda9023c, 0x4c6900ed, 0x3ead0f5d, 0x00000000}},  //   اهده_, гион_, rzet_,\n  { {0x69c7092f, 0x6445006a, 0xeb9a007c, 0x00000000}},  //   dnje, nuhi, гин_,\n  { {0xe0d00151, 0x672d3745, 0x65651084, 0x00000000}},  //   _غزل_, jaaj, hehh,\n  { {0x7bc63746, 0x00000000, 0x00000000, 0x00000000}},  //   rnku,   ,   ,\n  { {0x69c70a0f, 0x6445191a, 0x44440357, 0x00000000}},  //   gnje, kuhi, yu_,\n  { {0x776404bd, 0x68e90224, 0xe73a009a, 0x00000000}},  //   teix, ředn, лев_,\n  { {0x81cd0055, 0x81bf0055, 0x6445011c, 0x00000000}},  //   রতি_, ীতি_, duhi,\n  { {0x776404bd, 0x4444047a, 0xe4d0006b, 0x00000000}},  // [c020] reix, wu_, _küçə,\n  { {0x44440756, 0x7644000a, 0x6b9604f3, 0x00000000}},  //   tu_, ruiy, _hoyg,\n  { {0x6445011c, 0x7ae90089, 0xdb04009d, 0x00000000}},  //   guhi, ļete, _alié,\n  { {0x7e690020, 0x672d012d, 0x78a1068f, 0x00000000}},  //   kwep, caaj, ølve,\n  { {0x91e60794, 0x425631c9, 0x62340a85, 0x00000000}},  //   боде, стет, целу,\n  { {0x44440209, 0xa97a0049, 0x65a0006b, 0x00000000}},  //   pu_, ראַכ, _möhk,\n  { {0xfaff008d, 0x44440d82, 0x443e001d, 0x00000000}},  //   ndër_, qu_, _ít_,\n  { {0x69c7016c, 0x987b0097, 0x00000000, 0x00000000}},  //   znje, ראקט,   ,\n  { {0x62860059, 0xf773009b, 0x63a2006c, 0x00000000}},  //   _škof, לקה_, mkon,\n  { {0x6b840068, 0x00000000, 0x00000000, 0x00000000}},  //   _anig,   ,   ,\n  { {0x4c940256, 0xcb0403d7, 0xcf8f025f, 0x00000000}},  //   цинс, रखंड_, _еј_,\n  { {0x63a23747, 0xd90f02fd, 0x69de0022, 0x00000000}},  //   nkon, کید_, _akpe,\n  { {0xddc20089, 0x672d00b0, 0x6d340745, 0x00000000}},  //   _esoš, vaaj, _делф,\n  { {0x6b843748, 0xfe370049, 0x67c50006, 0x00000000}},  //   _enig, _פרוי_, mėji,\n  { {0x63a201d5, 0x97a70121, 0x29110036, 0x00000000}},  //   kkon, брал, rcza_,\n  { {0x69c7016c, 0x8aa7008b, 0x68e900b9, 0x00000000}},  //   snje, _грод, ředo,\n  { {0xdb0d014a, 0x67c50006, 0x69c73749, 0x00000000}},  // [c030] _amaç, nėji, pnje,\n  { {0x7aed022b, 0x6445011c, 0xec090011, 0x00000000}},  //   _izat, tuhi, _mến_,\n  { {0x93190025, 0x63a20190, 0x75eb006b, 0x00000000}},  //   لقاء_, fkon, güza,\n  { {0x64451a91, 0x67c50006, 0x756500a1, 0x00000000}},  //   ruhi, kėji, _ڈیرہ_,\n  { {0xe1f10014, 0x64450058, 0x7bcd016c, 0x00000000}},  //   وست_, suhi, _mjau,\n  { {0x67c50006, 0x80150d51, 0x63a2010e, 0x00000000}},  //   dėji, офиц, akon,\n  { {0x63a2003b, 0x299c009b, 0x00000000, 0x00000000}},  //   bkon, רסומ,   ,\n  { {0xee39017a, 0x2d98374a, 0xec090011, 0x00000000}},  //   ани_, ören_, _bến_,\n  { {0xa3e20061, 0x63a905fc, 0xe2930445, 0x00000000}},  //   _नीट_, _ilen, _عذر_,\n  { {0x61e3001c, 0x313402e9, 0x00000000, 0x00000000}},  //   qlnl, _неур,   ,\n  { {0x63a90161, 0x7e6901c3, 0xdce3012d, 0x00000000}},  //   _klen, swep, _manć,\n  { {0xf98901f8, 0x22400521, 0x5e590ae0, 0x00000000}},  //   _בר_, šike_, _видя_,\n  { {0x63bb1607, 0x7bcd0022, 0x63a900e7, 0x00000000}},  //   _mmun, _djau, _mlen,\n  { {0x63a9374b, 0xdca50216, 0x63a20387, 0x00000000}},  //   _llen, _мали, zkon,\n  { {0x929d0046, 0x63a9003c, 0x63bb374c, 0x00000000}},  //   _ogło, _olen, _omun,\n  { {0x6b84018e, 0x9f460011, 0xec090011, 0x00000000}},  //   _unig, _khoá_, _yến_,\n  { {0xe6170001, 0x79970ace, 0xf1a90316, 0x00000000}},  // [c040] жду_, _foxw, कसान,\n  { {0x63a9068f, 0x63bb0129, 0xba9b009b, 0x00000000}},  //   _alen, _amun, _כספי,\n  { {0x63a2006c, 0x546a328b, 0x23c501f5, 0x00000000}},  //   tkon, раем_, लचंद,\n  { {0x69dc374d, 0x63a90253, 0x9f4c00c4, 0x00000000}},  //   lore, _clen, _judô_,\n  { {0x63a2374e, 0x7f9c00d4, 0x63bb0146, 0x00000000}},  //   rkon, _xéqu, _dmun,\n  { {0x63a20004, 0x63bb0288, 0x316701a2, 0x00000000}},  //   skon, _emun, genz_,\n  { {0xe571007b, 0xbfaa1e4d, 0x62860387, 0x00000000}},  //   _אַן_, итие_, _škod,\n  { {0xe29a008b, 0xdfd00054, 0x69dc1c71, 0x00000000}},  //   _каб_, عية_, hore,\n  { {0x69dc002d, 0x7ae40010, 0x80da0061, 0x00000000}},  //   kore, _nyit, _पुरे,\n  { {0x929d0046, 0x69dc0219, 0x81f6026c, 0x00000000}},  //   _zgło, jore, _بہتر_,\n  { {0x69dc00d6, 0x7ae40263, 0xdb1d028c, 0x00000000}},  //   dore, _ayit, lisé,\n  { {0x67c50006, 0x212c0065, 0x7ae40009, 0x00000000}},  //   pėji, _hedh_, _byit,\n  { {0xdb1d374f, 0x7ae40009, 0xdce30006, 0x00000000}},  //   nisé, _cyit, _manę,\n  { {0x7e623750, 0x00000000, 0x00000000, 0x00000000}},  //   _ipop,   ,   ,\n  { {0xa3bc001c, 0x200c3751, 0x98a30036, 0x00000000}},  //   ेचा_, _judi_, kają_,\n  { {0x3167010f, 0x7aed3752, 0x6d5a000c, 0x00000000}},  //   zenz_, _tzat, lfta,\n  { {0x1ab40057, 0x69dc21c5, 0x200c0b54, 0x00000000}},  // [c050] _объя, bore, _ludi_,\n  { {0x69dc001a, 0x8b3500a1, 0x443321b3, 0x00000000}},  //   core, _بڑھت, tsx_,\n  { {0x200c0340, 0x331901e1, 0x00000000, 0x00000000}},  //   _nudi_, біля_,   ,\n  { {0x98a30036, 0xb51b0316, 0x3a290145, 0x00000000}},  //   gają_, _प्रय_, _kwap_,\n  { {0x44330066, 0x3167010f, 0xdb7c0049, 0x00000000}},  //   ssx_, tenz_, ינאכ,\n  { {0x200c016e, 0x7bdd070d, 0x3f860173, 0x00000000}},  //   _budi_, hosu, _anou_,\n  { {0x200c002f, 0x7bdd00b0, 0x3167010f, 0x00000000}},  //   _cudi_, kosu, renz_,\n  { {0x63bb1bf2, 0x69dc0091, 0x200c0bde, 0x00000000}},  //   _umun, zore, _dudi_,\n  { {0xdd91035b, 0x69dc0211, 0x657501ee, 0x00000000}},  //   فوظ_, yore, _kazh,\n  { {0xc05b01fb, 0x41b501d8, 0x7ae40009, 0x00000000}},  //   _від_, _عمار, _ryit,\n  { {0x69dc049c, 0x7e620062, 0x65750065, 0x00000000}},  //   vore, _epop, _mazh,\n  { {0x7bdd1002, 0x6575012d, 0x3f86000a, 0x00000000}},  //   gosu, _lazh, _gnou_,\n  { {0xde58007e, 0xfaff01d6, 0x3a99007c, 0x00000000}},  //   _маці_, seën_, отрю_,\n  { {0xceb2007b, 0xa2cc0061, 0x200c0093, 0x00000000}},  //   _איד_, तपत्, _yudi_,\n  { {0x2d873753, 0x2adc02d2, 0x69dc04f3, 0x00000000}},  //   _inne_, _गुरु_, rore,\n  { {0x69dc0211, 0x7bdd0adb, 0xdb1d0010, 0x00000000}},  //   sore, cosu, yisé,\n  { {0x69dc073a, 0x7e620009, 0x32050133, 0x00000000}},  // [c060] pore, _xpop, _oily_,\n  { {0x7abb009b, 0x98a30036, 0x67c50006, 0x00000000}},  //   _לצפו, wają_, dėju,\n  { {0x999b009b, 0x399b00a3, 0x765600b0, 0x00000000}},  //   _הביט, _הייד, styy,\n  { {0x200c14d2, 0xdb1d3754, 0x320d004a, 0x00000000}},  //   _rudi_, tisé, _buey_,\n  { {0x98a30036, 0x200c01a3, 0x52130088, 0x00000000}},  //   rają_, _sudi_, едіт,\n  { {0xdb1d0353, 0x67243755, 0x00000000, 0x00000000}},  //   risé, lbij,   ,\n  { {0x7e620465, 0x7bdd014a, 0x00000000, 0x00000000}},  //   _spop, yosu,   ,\n  { {0x2d87014a, 0x44383756, 0x44440145, 0x00000000}},  //   _anne_, _ivr_, mr_,\n  { {0x44442c04, 0x442a0016, 0x7bdd0091, 0x00000000}},  //   lr_, _hwb_, vosu,\n  { {0x200c17fd, 0x444413e2, 0x64430089, 0x00000000}},  //   _tudi_, or_, šnie,\n  { {0x7bdd045f, 0x3a2908d0, 0x443801c3, 0x00000000}},  //   tosu, _swap_, _jvr_,\n  { {0x4444038f, 0x2d870004, 0x68e900b9, 0x00000000}},  //   ir_, _enne_, ředk,\n  { {0x44440109, 0x753c3757, 0x7bdd0994, 0x00000000}},  //   hr_, _odrz, rosu,\n  { {0x62800521, 0x7644061d, 0x44380541, 0x00000000}},  //   _mrmo, driy, _ovr_,\n  { {0x44443758, 0x7bdd2cb7, 0xec090082, 0x00000000}},  //   jr_, posu, _yếm_,\n  { {0x44440016, 0x628030dc, 0x6724129d, 0x00000000}},  //   dr_, _ormo, gbij,\n  { {0x444400cc, 0x443800f4, 0x442a0116, 0x00000000}},  // [c070] er_, _avr_, _awb_,\n  { {0x645701d5, 0x443801d6, 0x444403d0, 0x00000000}},  //   ttxi, _bvr_, fr_,\n  { {0x6575008d, 0xf992009b, 0x44380030, 0x00000000}},  //   _vazh, _סרט_, _cvr_,\n  { {0x61e10065, 0x64570032, 0x00000000, 0x00000000}},  //   _skll, rtxi,   ,\n  { {0xd25b3430, 0x44380087, 0x27e90085, 0x00000000}},  //   сце_, _evr_, mlan_,\n  { {0x27e90073, 0x4444252f, 0xfa78009b, 0x00000000}},  //   llan_, br_, פעות_,\n  { {0x660f04d2, 0x27e90032, 0x628001a2, 0x00000000}},  //   _huck, olan_, _ermo,\n  { {0x660f041a, 0x27e90058, 0x2240041a, 0x00000000}},  //   _kuck, nlan_, šika_,\n  { {0x660702ae, 0xc2c40025, 0x27e922f6, 0x00000000}},  //   _kijk, _كيفي, ilan_,\n  { {0x660f3759, 0xd8380059, 0x27e90022, 0x00000000}},  //   _muck, šči_, hlan_,\n  { {0xbb4601e1, 0x673d0166, 0x1b1f0044, 0x00000000}},  //   менк, _odsj, _ভয়ে_,\n  { {0x660702ae, 0x547a00b6, 0xfc3f0428, 0x00000000}},  //   _lijk, קטרו, čí_,\n  { {0xeb972aa3, 0x8db50088, 0x660f01c3, 0x00000000}},  //   фия_, _оскі, _nuck,\n  { {0x7644375a, 0x4444375b, 0xdd94008b, 0x00000000}},  //   vriy, yr_, _пачы,\n  { {0x661d375c, 0x672400b5, 0x65a0006b, 0x00000000}},  //   _atsk, tbij, _möht,\n  { {0x76440263, 0x27e9000c, 0x444401ee, 0x00000000}},  //   triy, glan_, vr_,\n  { {0x67240004, 0x4444018e, 0x660700b5, 0x00000000}},  // [c080] rbij, wr_, _bijk,\n  { {0x44440667, 0x272c001d, 0x27e90149, 0x00000000}},  //   tr_, ến_, alan_,\n  { {0x444400cc, 0x27e9008e, 0x660700bb, 0x00000000}},  //   ur_, blan_, _dijk,\n  { {0x660f001c, 0x444405d7, 0x76440263, 0x00000000}},  //   _fuck, rr_, priy,\n  { {0x27e00c7e, 0x12170380, 0x644508b5, 0x00000000}},  //   moin_, وتوث_, arhi,\n  { {0x4438001a, 0x6443008e, 0xd01a0242, 0x00000000}},  //   _tvr_, ánic, офи_,\n  { {0x660f010f, 0x00000000, 0x00000000, 0x00000000}},  //   _zuck,   ,   ,\n  { {0x64430627, 0x27e000b0, 0x660700bb, 0x00000000}},  //   šnic, noin_, _zijk,\n  { {0x8d6a01fc, 0x33261d33, 0x6ac8013d, 0x00000000}},  //   ојна_, mbox_, रपोर,\n  { {0x68e900b9, 0xf1aa0014, 0x33260fe8, 0x00000000}},  //   ředi, _باره_, lbox_,\n  { {0x27e9014a, 0x27e00052, 0x00000000, 0x00000000}},  //   ylan_, koin_,   ,\n  { {0x61ea1642, 0xf0b70049, 0x27e0375d, 0x00000000}},  //   llfl, _קלאר_, join_,\n  { {0x27e900f8, 0x672f01ee, 0xdb060010, 0x00000000}},  //   vlan_, _recj, zikö,\n  { {0x33260009, 0x0cd4004c, 0x660f010f, 0x00000000}},  //   hbox_, _полю, _ruck,\n  { {0x27e90047, 0x660700b5, 0x332600bb, 0x00000000}},  //   tlan_, _rijk, kbox_,\n  { {0x2fc4375e, 0x2d9c0190, 0x69ce046a, 0x00000000}},  //   nimg_, _hove_, anbe,\n  { {0x33260009, 0x35f5005c, 0x2d9c231b, 0x00000000}},  // [c090] dbox_, епар, _kove_,\n  { {0x27e91402, 0x2d9c0129, 0x660f11cd, 0x00000000}},  //   slan_, _jove_, _vuck,\n  { {0x2d9c19ba, 0x3326009d, 0x672f00f6, 0x00000000}},  //   _move_, fbox_, _tecj,\n  { {0x2d9c0038, 0x64453438, 0x660700b5, 0x00000000}},  //   _love_, rrhi, _wijk,\n  { {0x201e0282, 0x661d093b, 0x2fc40009, 0x00000000}},  //   _atti_, _utsk, dimg_,\n  { {0x2d9c086e, 0x018b007c, 0xdb1d00d6, 0x00000000}},  //   _nove_, ющей_, disí,\n  { {0xc0e201fc, 0x213e0011, 0x6474007c, 0x00000000}},  //   лошк, _ddth_, _игру,\n  { {0x80be0061, 0x2fc40009, 0xe0d0023c, 0x00000000}},  //   _वेळे, gimg_, جزه_,\n  { {0x201e014a, 0x69ce01d6, 0x63a400b0, 0x00000000}},  //   _etti_, ynbe, öine,\n  { {0x2fcd018e, 0x27e0375f, 0x2d9c01cb, 0x00000000}},  //   sneg_, zoin_, _cove_,\n  { {0xdca50069, 0xfbc6007c, 0x2d9c051b, 0x00000000}},  //   хани, ебно, _dove_,\n  { {0x7f840054, 0xdb040181, 0xcc2400a1, 0x00000000}},  //   _للمن, _aliá, کریٹ,\n  { {0x1a66025a, 0x27e000b0, 0x65a001a2, 0x00000000}},  //   ریدی_, voin_, _möhr,\n  { {0xe9df000c, 0x2018009d, 0x06e60044, 0x00000000}},  //   trúa_, _éric_, পেডি,\n  { {0x69ce010f, 0x27e01622, 0x33260253, 0x00000000}},  //   rnbe, toin_, ybox_,\n  { {0x2d9c0091, 0x33261588, 0xc3250044, 0x00000000}},  //   _zove_, xbox_, মৃতি_,\n  { {0x7bc625b4, 0x764d0211, 0x3667026b, 0x00000000}},  // [c0a0] miku, guay, нато_,\n  { {0x7bc61448, 0x27e000f4, 0x291a00c4, 0x00000000}},  //   liku, soin_, _ufpa_,\n  { {0xe899026c, 0x2fc40009, 0x65a0006b, 0x00000000}},  //   _ہمیں_, yimg_, _böhr,\n  { {0x7bc63554, 0x799e005b, 0x22460085, 0x00000000}},  //   niku, _hopw, trok_,\n  { {0x41e60ee0, 0xdb1d00c4, 0x799e29f0, 0x00000000}},  //   ніка, lisã, _kopw,\n  { {0xd8380059, 0xdb1d00c4, 0x7bc6023e, 0x00000000}},  //   šču_, visí, hiku,\n  { {0x232a064b, 0x2fc410e0, 0x7bc60034, 0x00000000}},  //   _нови_, timg_, kiku,\n  { {0x2d9c3760, 0x7bc60020, 0x443a088a, 0x00000000}},  //   _sove_, jiku, msp_,\n  { {0x7bc60d49, 0x443a097e, 0x2d9c0059, 0x00000000}},  //   diku, lsp_, _pove_,\n  { {0x2b4000e5, 0x2fc40045, 0x00000000, 0x00000000}},  //   _adic_, simg_,   ,\n  { {0x7bc63761, 0x443a107b, 0x2fc40009, 0x00000000}},  //   fiku, nsp_, pimg_,\n  { {0xe9df000c, 0x68150036, 0x7bc60010, 0x00000000}},  //   grún_, _sądo, giku,\n  { {0xada6007e, 0x69da00b9, 0x2d9c02e7, 0x00000000}},  //   _падл, čten, _tove_,\n  { {0x7c940025, 0xddd9000a, 0x2b402dc8, 0x00000000}},  //   _للتص, _apwņ, _edic_,\n  { {0x7bc6006c, 0xbd17009b, 0x00000000, 0x00000000}},  //   biku, _אחוז_,   ,\n  { {0x7c3a0030, 0x17f80025, 0x443a01c5, 0x00000000}},  //   mstr, فرقة_, dsp_,\n  { {0x7c3a01e3, 0xe6130025, 0x75eb006b, 0x00000000}},  // [c0b0] lstr, اشر_, lüzi,\n  { {0x7c3a21de, 0xddc90645, 0x2a690026, 0x00000000}},  //   ostr, zvež, _ipab_,\n  { {0x69c73762, 0xdb1d0181, 0x6b8d3763, 0x00000000}},  //   mije, cisã, _knag,\n  { {0x69c70209, 0x7c3a0016, 0x6b9f002b, 0x00000000}},  //   lije, istr, _joqg,\n  { {0xfe08001d, 0xa56500a1, 0xdb0f0b33, 0x00000000}},  //   _hữu_, _لگان, licó,\n  { {0x7bc61a92, 0x69c70363, 0x7c3a000c, 0x00000000}},  //   ziku, nije, kstr,\n  { {0x7c3a0142, 0x7bc60009, 0x443a00fa, 0x00000000}},  //   jstr, yiku, csp_,\n  { {0x7c3a01b5, 0xa5bb0010, 0xc6240044, 0x00000000}},  //   dstr, _utób, _পিতা_,\n  { {0x7bc60004, 0xddc90006, 0x69c704eb, 0x00000000}},  //   viku, rvež, kije,\n  { {0x0d8209c0, 0x6b8d1cae, 0x69c73764, 0x00000000}},  //   альн, _anag, jije,\n  { {0x7c3a0af1, 0x69c7016e, 0x3a203765, 0x00000000}},  //   gstr, dije, _stip_,\n  { {0xdb1d02d5, 0x61e30c2b, 0x799e0022, 0x00000000}},  //   visã, lonl, _sopw,\n  { {0x7bc6020c, 0x7c3a001a, 0x799e3766, 0x00000000}},  //   riku, astr, _popw,\n  { {0x7c3a04d2, 0x7bc6006c, 0x0ea80088, 0x00000000}},  //   bstr, siku, _якій_,\n  { {0x6e3b01e5, 0x00000000, 0x00000000, 0x00000000}},  //   lsub,   ,   ,\n  { {0x6f1b04cb, 0x6b8d0479, 0x61e30052, 0x00000000}},  //   ncuc, _gnag, honl,\n  { {0x69c70119, 0x6443009f, 0x6e3b0276, 0x00000000}},  // [c0c0] bije, ánin, nsub,\n  { {0x75d30025, 0xca37009b, 0x69c70091, 0x00000000}},  //   ليقا, _שניה_, cije,\n  { {0x61e30052, 0x6e3b057e, 0x00000000, 0x00000000}},  //   donl, hsub,   ,\n  { {0x07a600ed, 0x6e3b002b, 0x61e30026, 0x00000000}},  //   _рамн, ksub, eonl,\n  { {0x7c3a09a4, 0x63a901d5, 0x61e3005d, 0x00000000}},  //   zstr, _ċent, fonl,\n  { {0x41530088, 0x201a0181, 0x7c3a0016, 0x00000000}},  //   ивіс, ípio_, ystr,\n  { {0xddc90036, 0xd34200a1, 0x7c3a06d3, 0x00000000}},  //   steś, _نہای, xstr,\n  { {0x7c3a0190, 0x7ddd01aa, 0x245c01ca, 0x00000000}},  //   vstr, mèsy, mím_,\n  { {0x6e3b011c, 0x245c01ca, 0x03a3003b, 0x00000000}},  //   gsub, lím_, _тито,\n  { {0x6b8d0363, 0x7c3a00b5, 0x657e0169, 0x00000000}},  //   _snag, tstr, ndph,\n  { {0x69c70209, 0x245c0428, 0x7c3a3767, 0x00000000}},  //   vije, ním_, ustr,\n  { {0xfe4600ed, 0xa3d5007d, 0x6e3b0009, 0x00000000}},  //   _андо, िचय_, bsub,\n  { {0xfe7206c6, 0xec0a001d, 0x7af60046, 0x00000000}},  //   _خدا_, _nếu_, _czyt,\n  { {0x7c3a2353, 0x6e2d1e00, 0x63a00142, 0x00000000}},  //   pstr, _çaba, _lomn,\n  { {0x62861581, 0x69c70209, 0x245c0161, 0x00000000}},  //   _škol, rije, jím_,\n  { {0x657c0637, 0x245c0161, 0xdb0f16b5, 0x00000000}},  //   _aarh, dím_, ricó,\n  { {0x628202ae, 0x61e3005d, 0x69c719e2, 0x00000000}},  // [c0d0] jvoo, yonl, pije,\n  { {0xdc4200b9, 0x61e30068, 0x8895004d, 0x00000000}},  //   _léče, xonl, _биох,\n  { {0x657c1b6f, 0x61e300b0, 0x260d012d, 0x00000000}},  //   _darh, vonl, _džoa_,\n  { {0x63a00035, 0x6e22014a, 0x6d580009, 0x00000000}},  //   _comn, _otob, _lcva,\n  { {0x63a00704, 0x657c01a3, 0x00000000, 0x00000000}},  //   _domn, _farh,   ,\n  { {0xec0a001d, 0x6e3b0009, 0x7f42004a, 0x00000000}},  //   _hết_, vsub, _adoq,\n  { {0xec0a001d, 0x245c0802, 0x61e30095, 0x00000000}},  //   _kết_, cím_, ronl,\n  { {0x61e30047, 0xec0a001d, 0xdff5007e, 0x00000000}},  //   sonl, _yếu_, ыяль,\n  { {0x7aed04cb, 0x8d7503ec, 0x69c50116, 0x00000000}},  //   _nyat, هادا, _omhe,\n  { {0x6e3b04be, 0xb5fb0051, 0xdb0d009d, 0x00000000}},  //   rsub, _bpái, _plaî,\n  { {0x75350409, 0xc1040025, 0x7aed0727, 0x00000000}},  //   _mezz, _نوكي, _ayat,\n  { {0x69c50016, 0x7aed0061, 0x6e3b22f4, 0x00000000}},  //   _amhe, _byat, psub,\n  { {0x7aed0009, 0x245c01dc, 0x00000000, 0x00000000}},  //   _cyat, zím_,   ,\n  { {0x9d5502fd, 0x99d60025, 0x2d98150e, 0x00000000}},  //   _صنعت, اتحا, öret_,\n  { {0x186701f9, 0xa3e3006e, 0xf746007c, 0x00000000}},  //   лари_, नका_, лево,\n  { {0x245c01c8, 0x657c3768, 0x00000000, 0x00000000}},  //   vím_, _sarh,   ,\n  { {0x657c0fbd, 0x63a00058, 0x0566005e, 0x00000000}},  // [c0e0] _parh, _romn, лван,\n  { {0x245c004f, 0x63a00f4a, 0x3ea00009, 0x00000000}},  //   tím_, _somn, _àite_,\n  { {0x80a80055, 0x63a03769, 0x657c098a, 0x00000000}},  //   _কেন্, _pomn, _varh,\n  { {0x645e09b3, 0x644a0129, 0x99990006, 0x00000000}},  //   rtpi, àfiq, busų_,\n  { {0x4423008d, 0x71a6008b, 0x245c004f, 0x00000000}},  //   _etj_, ладз, sím_,\n  { {0x6282376a, 0x91e3007c, 0x245c01dc, 0x00000000}},  //   rvoo, боче, pím_,\n  { {0x6282376b, 0xf1a9007a, 0xc953009b, 0x00000000}},  //   svoo, خانه_, צמה_,\n  { {0x6d4302ef, 0x61fa0009, 0x78a100ea, 0x00000000}},  //   _adna, _whtl, ølvi,\n  { {0xb5fb376c, 0xae430014, 0x8e1400e2, 0x00000000}},  //   _spái, مپيو, јдоц,\n  { {0x3f8f000c, 0x7aed0009, 0x660e0066, 0x00000000}},  //   _engu_, _ryat, _jibk,\n  { {0xd0120025, 0x7aed05cd, 0x00000000, 0x00000000}},  //   _الص_, _syat,   ,\n  { {0xce350752, 0x660e376d, 0x6d4300fa, 0x00000000}},  //   _چونک, _libk, _edna,\n  { {0x395a000a, 0x317e03a1, 0x00000000, 0x00000000}},  //   _bcps_, _katz_,   ,\n  { {0x2d8e012d, 0x7aed0729, 0x660e01f3, 0x00000000}},  //   _unfe_, _vyat, _nibk,\n  { {0x75350026, 0x9848005e, 0x317e2309, 0x00000000}},  //   _rezz, лята_, _matz_,\n  { {0x7535002b, 0x644303fd, 0x317e209b, 0x00000000}},  //   _sezz, ánim, _latz_,\n  { {0x75350207, 0xec0a0011, 0x44230181, 0x00000000}},  // [c0f0] _pezz, _vết_, _stj_,\n  { {0x64430c0a, 0xe97300a1, 0x69c504f2, 0x00000000}},  //   šnim, _اندھ, _umhe,\n  { {0xec0a0011, 0x75350197, 0xab5b006c, 0x00000000}},  //   _tết_, _vezz, tiüh,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x672d0020, 0x753502e5, 0xab5b006c, 0x00000000}},  //   mbaj, _tezz, riüh,\n  { {0x21690373, 0x644a0977, 0x6025142f, 0x00000000}},  //   тики_, áfic, адка,\n  { {0xdb1d009f, 0xf77f014a, 0x11280088, 0x00000000}},  //   nnsó, _kaç_, уючи_,\n  { {0xfe4500ec, 0xf77f00f6, 0xe3b30257, 0x00000000}},  //   анио, _jaç_, _ارس_,\n  { {0xee3604af, 0xdcf80059, 0x9f5e0010, 0x00000000}},  //   аны_, _davč, _autó_,\n  { {0xbc19007e, 0xdb1d000c, 0x317e0032, 0x00000000}},  //   кімі_, rnsý, _gatz_,\n  { {0xab2a005e, 0x720401d8, 0x764d2408, 0x00000000}},  //   кона_, _اولم, hray,\n  { {0xe4560049, 0x2d9803a2, 0x3f8f376e, 0x00000000}},  //   סירט_, örer_, _ungu_,\n  { {0x764d0146, 0x00000000, 0x00000000, 0x00000000}},  //   jray,   ,   ,\n  { {0x764d376f, 0x6e2924fd, 0x00000000, 0x00000000}},  //   dray, mpeb,   ,\n  { {0xac16012b, 0x77640066, 0x475a005e, 0x00000000}},  //   _коју_, tfix, края_,\n  { {0x6289012d, 0x764d3770, 0x200f002b, 0x00000000}},  //   _oreo, fray, _jigi_,\n  { {0x764d0009, 0x25a3012d, 0x14c80014, 0x00000000}},  // [c100] gray, _bojl_, گهای_,\n  { {0x200f1158, 0x00000000, 0x00000000, 0x00000000}},  //   _ligi_,   ,   ,\n  { {0x14c8007a, 0xddcb0089, 0x25a3012d, 0x00000000}},  //   دهای_, _apgū, _dojl_,\n  { {0x764d3771, 0x317e010f, 0x62890051, 0x00000000}},  //   bray, _satz_, _breo,\n  { {0x62890263, 0x0206007c, 0xdb1d006b, 0x00000000}},  //   _creo, аздн, sisç,\n  { {0x27f21703, 0x2fc60142, 0x62893772, 0x00000000}},  //   llyn_, _smog_, _dreo,\n  { {0x64a6008b, 0x9f44008e, 0x0396007e, 0x00000000}},  //   _тава, lomé_, _края,\n  { {0x27f21ffe, 0x22490091, 0x317e00e7, 0x00000000}},  //   nlyn_, šaka_, _watz_,\n  { {0x623301f9, 0xa3e3006e, 0xd054006b, 0x00000000}},  //   _меѓу, नकर_, _əbəd,\n  { {0xcd0601fb, 0x200f009f, 0x504601fc, 0x00000000}},  //   ични, _eigi_, _вежб,\n  { {0xdd97008b, 0x200f1f69, 0x9df7007e, 0x00000000}},  //   ршы_, _figi_, рнэт_,\n  { {0x200f033b, 0xee8607d0, 0xdb24000c, 0x00000000}},  //   _gigi_, _выко, örðu,\n  { {0xddc20087, 0x27f201c3, 0x00000000, 0x00000000}},  //   _epoš, dlyn_,   ,\n  { {0xf77f014a, 0x394d010f, 0x27f227f5, 0x00000000}},  //   _saç_, ßes_, elyn_,\n  { {0x69d501a2, 0x27f201c3, 0x00000000, 0x00000000}},  //   rnze, flyn_,   ,\n  { {0x644300ee, 0x27f21c26, 0x57b4022a, 0x00000000}},  //   šnik, glyn_, обст,\n  { {0x2cac018e, 0x60150006, 0x00000000, 0x00000000}},  // [c110] lydd_, _išme,   ,\n  { {0xeb9f0637, 0x2d9e0065, 0x00000000, 0x00000000}},  //   ljø_, njte_,   ,\n  { {0x2cac018e, 0x764d0093, 0x00000000, 0x00000000}},  //   nydd_, sray,   ,\n  { {0x77b80b32, 0x764d0460, 0x27f2254e, 0x00000000}},  //   _píxe, pray, clyn_,\n  { {0x27e90032, 0x59bb007d, 0x2cac005b, 0x00000000}},  //   moan_, _उतार, hydd_,\n  { {0xc692007b, 0x27e9002d, 0x6289001a, 0x00000000}},  //   _זאך_, loan_, _vreo,\n  { {0xa4d40088, 0x200f0b53, 0xbebd0e07, 0x00000000}},  //   _дорі, _pigi_, nbūv,\n  { {0x6289002a, 0x2cac018e, 0x63ad006c, 0x00000000}},  //   _treo, dydd_, öand,\n  { {0xddc20059, 0xe3b00025, 0xa2b516b6, 0x00000000}},  //   _spoš, _غرف_, _убач,\n  { {0x2cac018e, 0x27e93773, 0x200f00d9, 0x00000000}},  //   fydd_, hoan_, _wigi_,\n  { {0x27e9022b, 0x200f3774, 0xec0a0011, 0x00000000}},  //   koan_, _tigi_, _bếp_,\n  { {0x5f77023c, 0xb5fb00b9, 0x6e293775, 0x00000000}},  //   _خاطر, _zpát, ppeb,\n  { {0x27e9002d, 0xa5bb3776, 0x00000000, 0x00000000}},  //   doan_, _atóm,   ,\n  { {0xbea2025f, 0x2fcd0007, 0x6fde0089, 0x00000000}},  //   _хашк, lieg_, rīce,\n  { {0x3ead0010, 0xddc20059, 0x27f23777, 0x00000000}},  //   lyet_, _upoš, tlyn_,\n  { {0x27e9002d, 0x2795017a, 0x00000000, 0x00000000}},  //   goan_, ошур,   ,\n  { {0x27f20abb, 0x3ead008a, 0x07a3051f, 0x00000000}},  // [c120] rlyn_, nyet_, чатн,\n  { {0x8b080036, 0x27f23778, 0x29cd00ca, 0x00000000}},  //   _cięż, slyn_, lžan_,\n  { {0xb4b2013d, 0x3d3a0049, 0x27e9002d, 0x00000000}},  //   टने_, רגעס, boan_,\n  { {0xec0a001d, 0xd36f0025, 0x00000000, 0x00000000}},  //   _xếp_, فهم_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x91e3003b, 0xe9df000c, 0x644300c4, 0x00000000}},  //   поче, trúi_, ânic,\n  { {0xe4da02fd, 0x7c2400d2, 0x26c00851, 0x00000000}},  //   _صورت_, _čiro, lzio_,\n  { {0x69ce00d4, 0xdbf100b9, 0x00000000, 0x00000000}},  //   hibe, _příb,   ,\n  { {0x2cac0bc4, 0x26c00fa9, 0xe7f90061, 0x00000000}},  //   wydd_, nzio_, ंतता_,\n  { {0x27e93779, 0xec0a0011, 0x26c000fa, 0x00000000}},  //   zoan_, _sếp_, izio_,\n  { {0x69ce0032, 0x2fcd0036, 0x27e90058, 0x00000000}},  //   dibe, bieg_, yoan_,\n  { {0x2cac018e, 0x26c0002d, 0x22400107, 0x00000000}},  //   rydd_, kzio_, šiku_,\n  { {0x69ce0190, 0x2cac0016, 0x9b58005e, 0x00000000}},  //   fibe, sydd_, щият_,\n  { {0x8b0800b9, 0x26c00a67, 0x260d0087, 0x00000000}},  //   _stří, dzio_, _ežoj_,\n  { {0x27e92ccd, 0xfdf7009b, 0x7883013e, 0x00000000}},  //   toan_, _הצגת_, dívá,\n  { {0xba1902fd, 0x9f5d000a, 0x58d40088, 0x00000000}},  //   _پيدا_, _chwè_, чост,\n  { {0x27e91640, 0x7bcf0035, 0x69ce1793, 0x00000000}},  // [c130] roan_, micu, bibe,\n  { {0x6d5a0006, 0x7bcf0211, 0x69ce008e, 0x00000000}},  //   ngta, licu, cibe,\n  { {0x442700b5, 0x26c0002d, 0xb5fb377a, 0x00000000}},  //   ën_, azio_, _spás,\n  { {0x7bcf001a, 0x00000000, 0x00000000, 0x00000000}},  //   nicu,   ,   ,\n  { {0xe2990517, 0x6b7c0049, 0x326700a8, 0x00000000}},  //   рал_, טראנ, стев,\n  { {0xa2cd001c, 0x7bcf377b, 0x61ea0146, 0x00000000}},  //   _देण्, hicu, gofl,\n  { {0xe1f0023c, 0x2fcd010f, 0xf07500a1, 0x00000000}},  //   رسه_, tieg_, تیاں_,\n  { {0xce4901e0, 0x69ce07ef, 0x6d5a377c, 0x00000000}},  //   азие_, zibe, egta,\n  { {0x69ce0010, 0x7bcf0585, 0x61ea1238, 0x00000000}},  //   yibe, dicu, bofl,\n  { {0x1c45029b, 0x69ce0270, 0xdcf80089, 0x00000000}},  //   оном, xibe, _savā,\n  { {0x3a2909e4, 0x26c0377d, 0x3ead0065, 0x00000000}},  //   _atap_, zzio_, syet_,\n  { {0x7bcf0056, 0x3b0a00e2, 0x00000000, 0x00000000}},  //   gicu, иено_,   ,\n  { {0x29cd0091, 0x00000000, 0x00000000, 0x00000000}},  //   ržan_,   ,   ,\n  { {0x63b80089, 0x3a2926e4, 0x1d09114a, 0x00000000}},  //   īvni, _dtap_, _кели_,\n  { {0x3a29377e, 0x69ce00ab, 0xa7aa014c, 0x00000000}},  //   _etap_, ribe, аква_,\n  { {0xa6db000c, 0x7bcf00e5, 0xdb0f0068, 0x00000000}},  //   _meðf, cicu, ticô,\n  { {0x69ce068f, 0xd5b20379, 0x6fde0089, 0x00000000}},  // [c140] pibe, وفر_, nīca,\n  { {0x6b840004, 0x26c00207, 0x2ca900b9, 0x00000000}},  //   _haig, rzio_, _řady_,\n  { {0x07a601be, 0x6b96010a, 0xc7a601ee, 0x00000000}},  //   _данн, _knyg, _динк,\n  { {0x26c0002d, 0x7afb0036, 0x61fd0089, 0x00000000}},  //   pzio_, żute, _īsla,\n  { {0x6724021c, 0x420a0517, 0x00000000, 0x00000000}},  //   mcij, андо_,   ,\n  { {0x6b840051, 0x7bcf0035, 0x672401ed, 0x00000000}},  //   _laig, zicu, lcij,\n  { {0x2d850339, 0xdb060c4d, 0x29cd012d, 0x00000000}},  //   ddle_, lkkä, džal_,\n  { {0x4444377f, 0x4fc6008b, 0x753c010f, 0x00000000}},  //   ms_, ўска, _herz,\n  { {0x7644163c, 0xdb0d0189, 0x753c01a2, 0x00000000}},  //   nsiy, _ilaç, _kerz,\n  { {0x444400d6, 0x63a229f9, 0x78a10039, 0x00000000}},  //   os_, ljon, älvk,\n  { {0x4444062a, 0x7bcf0211, 0x6b84010a, 0x00000000}},  //   ns_, ticu, _baig,\n  { {0x63a2002b, 0x76443780, 0x6b843781, 0x00000000}},  //   njon, ksiy, _caig,\n  { {0x7bcf0bc0, 0x444428a9, 0x6b84011c, 0x00000000}},  //   ricu, hs_, _daig,\n  { {0x4444061f, 0x7bcf0207, 0xdb0d1e5c, 0x00000000}},  //   ks_, sicu, _llaç,\n  { {0x44440a72, 0x7bcf3782, 0x6b840051, 0x00000000}},  //   js_, picu, _faig,\n  { {0x5bc40025, 0x628004eb, 0x6b840048, 0x00000000}},  //   _يقول, _osmo, _gaig,\n  { {0x4438018e, 0x753c003b, 0xa6db000c, 0x00000000}},  // [c150] _awr_, _berz, _meðg,\n  { {0x4444028c, 0x672400d0, 0x6b840bbb, 0x00000000}},  //   fs_, acij, _zaig,\n  { {0x6280022b, 0x753c010f, 0x442a00fa, 0x00000000}},  //   _asmo, _derz, _ctb_,\n  { {0x987a007b, 0x44380016, 0x63a23783, 0x00000000}},  //   _פארט, _dwr_, gjon,\n  { {0xe66400aa, 0x442a002d, 0x798501a3, 0x00000000}},  //   _отро, _etb_, _kahw,\n  { {0x44443784, 0x79850007, 0x673d00d9, 0x00000000}},  //   bs_, _jahw, _hesj,\n  { {0x444404bd, 0x661d068f, 0x62800129, 0x00000000}},  //   cs_, _husk, _esmo,\n  { {0x6615022b, 0x63a20046, 0xee390aa2, 0x00000000}},  //   _hizk, cjon, бни_,\n  { {0xd14b01ef, 0x661d17cf, 0x63bb002d, 0x00000000}},  //   _نشان_, _jusk, _ilun,\n  { {0xd1310054, 0x6b960039, 0x63a90007, 0x00000000}},  //   _أما_, _snyg, _hoen,\n  { {0x6b84006c, 0x644500ab, 0x7525010f, 0x00000000}},  //   _paig, nshi, ichz,\n  { {0x2d831034, 0xf1b90091, 0x64453785, 0x00000000}},  //   žje_, _duše_, ishi,\n  { {0x79850d7e, 0x63a90007, 0x4279007b, 0x00000000}},  //   _bahw, _moen, זאָג,\n  { {0x63bb3786, 0x63a201d5, 0x44440f7f, 0x00000000}},  //   _llun, zjon, ys_,\n  { {0x63bb02b9, 0x6b8436f9, 0x661d125e, 0x00000000}},  //   _olun, _taig, _ausk,\n  { {0x6d41006a, 0x4444138f, 0x661d05ad, 0x00000000}},  //   lala, vs_, _busk,\n  { {0x44440038, 0x67240ade, 0x6615022b, 0x00000000}},  // [c160] ws_, rcij, _bizk,\n  { {0x444402d0, 0x63bb02d5, 0x76440890, 0x00000000}},  //   ts_, _alun, rsiy,\n  { {0x44440736, 0x661d0756, 0x7644005f, 0x00000000}},  //   us_, _eusk, ssiy,\n  { {0x6d411084, 0x63a901d6, 0x7644005f, 0x00000000}},  //   hala, _coen, psiy,\n  { {0x44440541, 0x753c0207, 0x63a90181, 0x00000000}},  //   ss_, _terz, _doen,\n  { {0x44440038, 0x6d410149, 0x63a20c64, 0x00000000}},  //   ps_, jala, sjon,\n  { {0x6d413787, 0x44440003, 0x3c21000c, 0x00000000}},  //   dala, qs_, _nóv_,\n  { {0x6615002d, 0x63a90032, 0x4fc60b52, 0x00000000}},  //   _zizk, _goen, ясла,\n  { {0x6d410adc, 0x7ae40065, 0xa5bb0048, 0x00000000}},  //   fala, _nxit, _stói,\n  { {0x6d410127, 0xfe6f0380, 0x6ce6007e, 0x00000000}},  //   gala, ادي_, зіме,\n  { {0x79850022, 0x00000000, 0x00000000, 0x00000000}},  //   _rahw,   ,   ,\n  { {0xb4fb00a0, 0x69dc3788, 0xb09b00b3, 0x00000000}},  //   מפיי, enre, _ליבר,\n  { {0xe61f0011, 0xf0b000a1, 0x98b80089, 0x00000000}},  //   _trôi_, _سیکھ, varā_,\n  { {0x6d41001a, 0x661d0161, 0x644508e9, 0x00000000}},  //   cala, _rusk, yshi,\n  { {0x7ae40211, 0x661d0006, 0xd7f5007e, 0x00000000}},  //   _exit, _susk, дзвы,\n  { {0x213e0190, 0x201e01c5, 0x644505d5, 0x00000000}},  //   _leth_, _muti_, vshi,\n  { {0x25aa018e, 0x3f860022, 0x63a904d2, 0x00000000}},  // [c170] _bobl_, _maou_, _roen,\n  { {0x63bb00b9, 0x644501a2, 0x98b80089, 0x00000000}},  //   _slun, tshi, sarā_,\n  { {0x63bb0006, 0x63a93789, 0x7bdd018d, 0x00000000}},  //   _plun, _poen, onsu,\n  { {0x6d411fe0, 0x64450038, 0x661d00b0, 0x00000000}},  //   zala, rshi, _tusk,\n  { {0x213e018e, 0x6d41005f, 0x7bdd01e5, 0x00000000}},  //   _beth_, yala, insu,\n  { {0x201e2301, 0x63a901b5, 0x6d41378a, 0x00000000}},  //   _buti_, _woen, xala,\n  { {0x6d41099e, 0x63a900c7, 0x201e01a3, 0x00000000}},  //   vala, _toen, _cuti_,\n  { {0x6d4109f3, 0x98b8001a, 0x63bb0145, 0x00000000}},  //   wala, lară_, _ulun,\n  { {0x6d4104bd, 0x3f86000a, 0x22460010, 0x00000000}},  //   tala, _daou_, csok_,\n  { {0xe29005f3, 0x98b8001a, 0x201e23eb, 0x00000000}},  //   _حذف_, nară_, _futi_,\n  { {0x6d41011f, 0x201e014a, 0x7af600b0, 0x00000000}},  //   rala, _guti_, _syyt,\n  { {0x333f028c, 0x6d41020c, 0x60150006, 0x00000000}},  //   _jeux_, sala, _išmo,\n  { {0x6d41006a, 0x201e0107, 0x333f00d9, 0x00000000}},  //   pala, _zuti_, _meux_,\n  { {0xceb20104, 0xe61f0142, 0x201800d4, 0x00000000}},  //   _ביד_, _osôb_, _èric_,\n  { {0x69dc0210, 0x7e69378b, 0xfbc6213f, 0x00000000}},  //   rnre, ltep, _обко,\n  { {0x2d870ce3, 0x9b460014, 0x7af600b0, 0x00000000}},  //   _hane_, _کنکو, _tyyt,\n  { {0x2d87008d, 0x25aa018e, 0x05aa007e, 0x00000000}},  // [c180] _kane_, _pobl_, овай_,\n  { {0x2d87071e, 0x6e2d014a, 0x00000000, 0x00000000}},  //   _jane_, _çabu,   ,\n  { {0x2d87378c, 0x48060088, 0xba2900a1, 0x00000000}},  //   _mane_, _опов, _وسیم_,\n  { {0x333f028c, 0x213e0784, 0x201e231b, 0x00000000}},  //   _ceux_, _seth_, _ruti_,\n  { {0x333f028c, 0x213e0016, 0x201e34d6, 0x00000000}},  //   _deux_, _peth_, _suti_,\n  { {0x27ed0059, 0x2d870020, 0x201e011c, 0x00000000}},  //   čene_, _nane_, _puti_,\n  { {0x232a0088, 0x333f00f4, 0x2246002b, 0x00000000}},  //   _мови_, _feux_, ssok_,\n  { {0x61f801ee, 0x00000000, 0x00000000, 0x00000000}},  //   slvl,   ,   ,\n  { {0x2d87378d, 0x7e6900c7, 0x7c2d0166, 0x00000000}},  //   _bane_, gtep, _čara,\n  { {0x2d870207, 0x201e0010, 0x00000000, 0x00000000}},  //   _cane_, _tuti_,   ,\n  { {0x333f00f4, 0x2cb8378e, 0x61430331, 0x00000000}},  //   _yeux_, árd_, _реха,\n  { {0xbb94007c, 0x2b4000d4, 0x7e6900e0, 0x00000000}},  //   вающ, _ceic_, btep,\n  { {0xc33300b3, 0xbda60025, 0x98ba0173, 0x00000000}},  //   כור_, _يحتو, _depč_,\n  { {0x2d87008e, 0x00000000, 0x00000000, 0x00000000}},  //   _gane_,   ,   ,\n  { {0x9cf40088, 0x20061328, 0x98b80035, 0x00000000}},  //   _язкі, _khoi_, vară_,\n  { {0x2d870089, 0x644300c4, 0xdb1d010e, 0x00000000}},  //   _zane_, ânim, nisü,\n  { {0x98b8001a, 0x27e20022, 0x00000000, 0x00000000}},  // [c190] tară_, _djkn_,   ,\n  { {0x05770439, 0xde880082, 0x2d8700f6, 0x00000000}},  //   بارد, _mị_, _xane_,\n  { {0x333f00f4, 0x81e40055, 0x60050e7c, 0x00000000}},  //   _peux_, নতা_, lóme,\n  { {0x98b8001a, 0x2b4000f6, 0x20060082, 0x00000000}},  //   sară_, _xeic_, _nhoi_,\n  { {0x333f00f4, 0x60052bc9, 0x7e69004a, 0x00000000}},  //   _veux_, nóme, xtep,\n  { {0x69d5378f, 0x663a0049, 0x00000000, 0x00000000}},  //   nize, _מעשׂ,   ,\n  { {0x2d870091, 0xdb0d00fa, 0x00000000, 0x00000000}},  //   _rane_, _claú,   ,\n  { {0xde8800ad, 0xc918019b, 0x20060011, 0x00000000}},  //   _bị_, וחות_, _choi_,\n  { {0x2d873790, 0x3eb90047, 0xc175005e, 0x00000000}},  //   _pane_, ást_, _плащ,\n  { {0x69d505fa, 0xde880011, 0x7e69008a, 0x00000000}},  //   jize, _dị_, rtep,\n  { {0x69d52388, 0xc5f200b3, 0x2d870253, 0x00000000}},  //   dize, רדי_, _vane_,\n  { {0x2d873791, 0x00000000, 0x00000000, 0x00000000}},  //   _wane_,   ,   ,\n  { {0x2d8720a7, 0x69d50010, 0xeb970ae0, 0x00000000}},  //   _tane_, fize, хия_,\n  { {0xbed6007b, 0x69d50e69, 0x00000000, 0x00000000}},  //   _אונז_, gize,   ,\n  { {0x98b80006, 0x00000000, 0x00000000, 0x00000000}},  //   karą_,   ,   ,\n  { {0x8c1a0097, 0x200d02d4, 0x2cb800ea, 0x00000000}},  //   _צופי, nmei_, ørde_,\n  { {0xaffa0049, 0x6005004a, 0x00000000, 0x00000000}},  // [c1a0] פּלי, cóme,   ,\n  { {0x69d512fc, 0x386a00ea, 0x273e0082, 0x00000000}},  //   cize, ptbr_, ắn_,\n  { {0x19b700a3, 0x7dc400f6, 0x2db60049, 0x00000000}},  //   _נפטר_, _fòsf, עלען_,\n  { {0xd8d70049, 0x00000000, 0x00000000, 0x00000000}},  //   _טויט_,   ,   ,\n  { {0x2006018e, 0x857400a1, 0x27e01e8d, 0x00000000}},  //   _rhoi_, _لگائ, mnin_,\n  { {0x27e00023, 0xf1b90087, 0x00000000, 0x00000000}},  //   lnin_, _puša_,   ,\n  { {0xc5ec024c, 0x27e0045f, 0x6f020010, 0x00000000}},  //   जकीय_, onin_, _szoc,\n  { {0x27e03792, 0x657e028a, 0xc3150044, 0x00000000}},  //   nnin_, leph, াড়ি_,\n  { {0x69d50009, 0x27e00fc8, 0x00000000, 0x00000000}},  //   yize, inin_,   ,\n  { {0xde88001d, 0x62820640, 0x27e00065, 0x00000000}},  //   _vị_, mwoo, hnin_,\n  { {0xa5bb0df0, 0xa6db009f, 0x62820112, 0x00000000}},  //   _któr, _meða, lwoo,\n  { {0xdb1d0181, 0x20550888, 0x27e03793, 0x00000000}},  //   visó, _штур, jnin_,\n  { {0x628201b5, 0x27e0002b, 0x69d51688, 0x00000000}},  //   nwoo, dnin_, tize,\n  { {0x645e0209, 0xa6db000c, 0x6005004a, 0x00000000}},  //   kupi, _neða, róme,\n  { {0xf8072239, 0x69d53794, 0x645e0089, 0x00000000}},  //   ечан, rize, jupi,\n  { {0x27e03795, 0x62820250, 0x3cfb009b, 0x00000000}},  //   gnin_, kwoo, _מלונ,\n  { {0x69d500e5, 0x00000000, 0x00000000, 0x00000000}},  // [c1b0] pize,   ,   ,\n  { {0xdb1d0036, 0x78a10039, 0x27e00f82, 0x00000000}},  //   pisó, älvs, anin_,\n  { {0xddc20c76, 0x645e14f7, 0x2d8c3796, 0x00000000}},  //   _opož, gupi, idde_,\n  { {0x62350423, 0x628200b5, 0x7f4200fa, 0x00000000}},  //   веду, fwoo, _neoq,\n  { {0x62820343, 0x44330009, 0x6e220006, 0x00000000}},  //   gwoo, spx_, _nuob,\n  { {0xe2960954, 0x98b80006, 0x657e0133, 0x00000000}},  //   таш_, sarą_, ceph,\n  { {0x7c2d016e, 0x4425001a, 0xdcf80006, 0x00000000}},  //   _čaro, _îl_, _tavę,\n  { {0x889c007b, 0x44310032, 0x389c009b, 0x00000000}},  //   לבוי, _itz_, ליונ,\n  { {0x200d001a, 0x26c90020, 0x52740014, 0x00000000}},  //   rmei_, nzao_, _مالز,\n  { {0x2d9501e0, 0x64580964, 0x6e22007f, 0x00000000}},  //   трис, švie, _duob,\n  { {0x27e00180, 0x442302c1, 0x00000000, 0x00000000}},  //   ynin_, _juj_,   ,\n  { {0x442300d2, 0x443117c9, 0x2d9c000a, 0x00000000}},  //   _muj_, _mtz_, _enve_,\n  { {0xf412007b, 0x4423016c, 0x27e01b84, 0x00000000}},  //   יפט_, _luj_, vnin_,\n  { {0xaf0401fb, 0x44313797, 0xddc2013e, 0x00000000}},  //   _спіл, _otz_, _zpož,\n  { {0xd94300ed, 0x18670f93, 0x27e00023, 0x00000000}},  //   реси, кари_, tnin_,\n  { {0x3f8d0181, 0x6d433798, 0x27e00fd1, 0x00000000}},  //   ndeu_, _hena, unin_,\n  { {0x6d43020c, 0x27e0000c, 0x0566005e, 0x00000000}},  // [c1c0] _kena, rnin_, кван,\n  { {0x27ed091e, 0xa5bb1324, 0x645e006c, 0x00000000}},  //   čena_, _stór, tupi,\n  { {0x6d43020c, 0x224d0263, 0x44230107, 0x00000000}},  //   _mena, _avek_, _cuj_,\n  { {0x6282049b, 0x6d4300ca, 0x7c2d0107, 0x00000000}},  //   twoo, _lena, _čarl,\n  { {0x0ed00164, 0x2d8c15c5, 0x657e004a, 0x00000000}},  //   _तेंड, ydde_, peph,\n  { {0x62820ace, 0x6d430428, 0xf1b9073a, 0x00000000}},  //   rwoo, _nena, _dušo_,\n  { {0x044301f9, 0x628200bb, 0x442300fa, 0x00000000}},  //   _весн, swoo, _guj_,\n  { {0x6282005b, 0xa857009b, 0x6d430288, 0x00000000}},  //   pwoo, דיקה_, _aena,\n  { {0x6d430149, 0x661c307d, 0x6fde0089, 0x00000000}},  //   _bena, _kirk, nīci,\n  { {0x6d43001e, 0x68e9000d, 0x661c3799, 0x00000000}},  //   _cena, şedi, _jirk,\n  { {0x6d43379a, 0x443100fa, 0x224d012d, 0x00000000}},  //   _dena, _xtz_, _zvek_,\n  { {0x2d8a01d9, 0x799e0173, 0x6d4300d9, 0x00000000}},  //   žbe_, _anpw, _eena,\n  { {0xdfcf006d, 0x6d43065a, 0x00000000, 0x00000000}},  //   _بين_, _fena,   ,\n  { {0x6d4303a8, 0x6fde0089, 0x661c0093, 0x00000000}},  //   _gena, dīci, _nirk,\n  { {0x6d48011f, 0x7e60011c, 0x290502e1, 0x00000000}},  //   mada, lump, åla_,\n  { {0x6d430032, 0x661c0022, 0x7bc601a2, 0x00000000}},  //   _zena, _airk, chku,\n  { {0x661c014a, 0x7e601451, 0x443100d2, 0x00000000}},  // [c1d0] _birk, nump, _stz_,\n  { {0x6d482378, 0x661c1d33, 0x6d430066, 0x00000000}},  //   nada, _cirk, _xena,\n  { {0x661c0059, 0x6b8d011c, 0x67d50121, 0x00000000}},  //   _dirk, _kaag, _бону,\n  { {0x6d48020c, 0xdfc6023c, 0xa3cd013d, 0x00000000}},  //   hada, _طي_, षों_,\n  { {0x6d48011f, 0x6b8d011c, 0x661c0d22, 0x00000000}},  //   kada, _maag, _firk,\n  { {0x6d48231e, 0x6b8d379b, 0x7e600c46, 0x00000000}},  //   jada, _laag, dump,\n  { {0x6d480489, 0x44310032, 0xc5f2009b, 0x00000000}},  //   dada, _utz_, _הדם_,\n  { {0x6d43379c, 0x661c09ce, 0x6b8d0058, 0x00000000}},  //   _sena, _zirk, _naag,\n  { {0x6d430149, 0x224d3002, 0x31350920, 0x00000000}},  //   _pena, _uvek_, _безр,\n  { {0x6d482346, 0x25b10087, 0x661c0066, 0x00000000}},  //   gada, _jozl_, _xirk,\n  { {0x69c7008d, 0x6d4300f4, 0x6b8d379d, 0x00000000}},  //   dhje, _vena, _baag,\n  { {0x4e9506b4, 0xf9890104, 0x7e6000e0, 0x00000000}},  //   _مشتر, _מר_, bump,\n  { {0x6d43020c, 0x6b8d01bb, 0x7e60008e, 0x00000000}},  //   _tena, _daag, cump,\n  { {0x6d4800d6, 0x7bc6008d, 0x6d430022, 0x00000000}},  //   cada, shku, _uena,\n  { {0x201d01d6, 0xc8b507d0, 0xbca80025, 0x00000000}},  //   _kiwi_, асты, _لديك_,\n  { {0xd24500a1, 0xab66137c, 0x00000000, 0x00000000}},  //   _وچ_, _свил,   ,\n  { {0x661c379e, 0x7bc407d3, 0x7bd60009, 0x00000000}},  // [c1e0] _pirk, _iliu, _imyu,\n  { {0x598602a8, 0x65650487, 0x64a6003b, 0x00000000}},  //   _слоб, gghh, лаза,\n  { {0x661c068f, 0x5a17009b, 0x6289004a, 0x00000000}},  //   _virk, _תקין_, _aseo,\n  { {0x661c001f, 0x6d48029d, 0x929d0046, 0x00000000}},  //   _wirk, zada, _czło,\n  { {0x6d48006b, 0xe29731cd, 0xbb3b01ce, 0x00000000}},  //   yada, лац_, געני,\n  { {0x7bc404bd, 0xa6db000c, 0x6d4809b1, 0x00000000}},  //   _lliu, _meðl, xada,\n  { {0x65c30cee, 0x7bc400f6, 0x00000000, 0x00000000}},  //   _убра, _oliu,   ,\n  { {0x6d480016, 0xdfd001af, 0x60051ae2, 0x00000000}},  //   wada, تيب_, tóma,\n  { {0x6d4804bd, 0xda040061, 0x394a0306, 0x00000000}},  //   tada, ळतात_, kabs_,\n  { {0x7bc40020, 0x6b8d006c, 0xc27b00a3, 0x00000000}},  //   _aliu, _saag, _ארמי,\n  { {0x7e60379f, 0x6b8d0be4, 0x61fa0288, 0x00000000}},  //   sump, _paag, _iktl,\n  { {0x764d006a, 0x321e0c8c, 0x00000000, 0x00000000}},  //   ysay, _hity_,   ,\n  { {0x6b8d018d, 0x69c70065, 0x8f9b01ce, 0x00000000}},  //   _vaag, thje, _רידי,\n  { {0x38350140, 0x00000000, 0x00000000, 0x00000000}},  //   ингр,   ,   ,\n  { {0x4dfb012e, 0x69c70030, 0x7bc40048, 0x00000000}},  //   _רפוא, rhje, _fliu,\n  { {0x69c7008d, 0x8aa70072, 0xdc9b009b, 0x00000000}},  //   shje, _брод, _טיול,\n  { {0x2d8e01aa, 0xdb1d002a, 0x2b4b0026, 0x00000000}},  // [c1f0] _kafe_, bhsá, macc_,\n  { {0x9967041f, 0xb8db0044, 0x764d0357, 0x00000000}},  //   _стил, _আই_, rsay,\n  { {0x7c2d016c, 0x764d0923, 0xb604041f, 0x00000000}},  //   _čark, ssay, сятк,\n  { {0x61fa37a0, 0x321e17cf, 0xdc3b0049, 0x00000000}},  //   _aktl, _aity_, געאר,\n  { {0x2169003b, 0xe1f10380, 0x00000000, 0x00000000}},  //   вили_, يست_,   ,\n  { {0x321e0038, 0x20550256, 0xdce80089, 0x00000000}},  //   _city_, атир, nedē,\n  { {0xdb1d006c, 0xd6c70044, 0x2ba801f5, 0x00000000}},  //   misõ, _এশিয, गामा,\n  { {0xa24600a1, 0xdb1d010e, 0x62890048, 0x00000000}},  //   _چینل_, lisõ, _tseo,\n  { {0x20030089, 0x69c500c4, 0x2b4b009d, 0x00000000}},  //   ēji_, _olhe, dacc_,\n  { {0x7bc80089, 0x2d8e0a60, 0x00000000, 0x00000000}},  //   ījum, _cafe_,   ,\n  { {0x7bc40006, 0xa6db000c, 0x201d1a37, 0x00000000}},  //   _pliu, _seðl, _tiwi_,\n  { {0x69c537a1, 0x68fe01c3, 0x00000000, 0x00000000}},  //   _alhe, _rypd,   ,\n  { {0x394a1651, 0x9e9600a1, 0x8a060069, 0x00000000}},  //   tabs_, _پانچ, изме,\n  { {0x8cb50017, 0xed590517, 0x2d8e00e5, 0x00000000}},  //   _всич, _рок_, _gafe_,\n  { {0x7aed0181, 0x3f8f010e, 0x00000000, 0x00000000}},  //   _exat, _kagu_,   ,\n  { {0x2d8e01aa, 0x69c50010, 0x3f8f006c, 0x00000000}},  //   _zafe_, _elhe, _jagu_,\n  { {0xf1c50061, 0x3f8f0016, 0x394a0009, 0x00000000}},  // [c200] वसान, _magu_, pabs_,\n  { {0x399a00bd, 0x8af0005f, 0x3f8f027e, 0x00000000}},  //   _ייִד, _edəc, _lagu_,\n  { {0x69dc001a, 0x032600d7, 0x98a600ed, 0x00000000}},  //   mire, аден, _тине,\n  { {0x3f8f0004, 0x69dc001a, 0x78a8010e, 0x00000000}},  //   _nagu_, lire, ädvu,\n  { {0x69dc0051, 0x23660023, 0xdb1d010e, 0x00000000}},  //   oire, rgoj_, bisõ,\n  { {0x69dc001a, 0xdb1d0181, 0x51f701e1, 0x00000000}},  //   nire, cisõ, анію_,\n  { {0x25f5006e, 0x3f8f0022, 0x74160014, 0x00000000}},  //   ्तरी_, _bagu_, _نوسا,\n  { {0x443a023a, 0x2d8e00ab, 0xf1b8002b, 0x00000000}},  //   mpp_, _safe_, _diġa_,\n  { {0x443a0061, 0x317a00a6, 0x69dc16c5, 0x00000000}},  //   lpp_, _لحاظ_, kire,\n  { {0x69dc001a, 0x2d8e0023, 0x00000000, 0x00000000}},  //   jire, _qafe_,   ,\n  { {0x69dc0b25, 0x308605d4, 0x60050f08, 0x00000000}},  //   dire, _خلاف, cómo,\n  { {0x69dc03b3, 0x61f80091, 0x98a30036, 0x00000000}},  //   eire, lovl, ncją_,\n  { {0x9b58005e, 0x3f840036, 0x2fc6011c, 0x00000000}},  //   шият_, memu_, _ilog_,\n  { {0x61f800ee, 0x69dc203c, 0x3f8437a2, 0x00000000}},  //   novl, gire, lemu_,\n  { {0xed5701f9, 0x2ee80044, 0xdb1d00c4, 0x00000000}},  //   _тој_, _পরিষ, visõ,\n  { {0x3f840d0a, 0x6aa22a6c, 0x36d5003b, 0x00000000}},  //   nemu_, _šofe, бобр,\n  { {0x69dc001a, 0x7bdd1f37, 0x3b09006b, 0x00000000}},  // [c210] bire, misu, _uzaq_,\n  { {0x3f84000b, 0x7bdd03b6, 0x2707006e, 0x00000000}},  //   hemu_, lisu, _शरीर_,\n  { {0xe47501f9, 0x4427001d, 0x61f800ca, 0x00000000}},  //   слењ, ên_, dovl,\n  { {0x889a0104, 0x2458008b, 0x7bdd11eb, 0x00000000}},  //   _עברי, раць_, nisu,\n  { {0xddc9001a, 0x3f8f04cb, 0x443a0009, 0x00000000}},  //   nteţ, _ragu_, app_,\n  { {0xe1f8007e, 0x3f8f008a, 0x2b492264, 0x00000000}},  //   агі_, _sagu_, _leac_,\n  { {0xd3a701e1, 0x7bdd07a4, 0x00000000, 0x00000000}},  //   _крап, kisu,   ,\n  { {0xdce1001e, 0x69dc002d, 0x2fc60051, 0x00000000}},  //   selī, zire, _clog_,\n  { {0xef190057, 0x61f80087, 0x5fa9013d, 0x00000000}},  //   ыми_, bovl, काबल,\n  { {0x236d0085, 0x7dc40173, 0x00000000, 0x00000000}},  //   _hcej_, _pòsa,   ,\n  { {0x2fc60142, 0x69dc26ee, 0x3f8f0142, 0x00000000}},  //   _flog_, vire, _tagu_,\n  { {0x3f8437a3, 0x2fc6016c, 0x3015007c, 0x00000000}},  //   cemu_, _glog_, _удер,\n  { {0xef0e013b, 0x69dc114e, 0x37cd0044, 0x00000000}},  //   _хм_, tire, রচার,\n  { {0x6e3b2818, 0xfe700014, 0x00000000, 0x00000000}},  //   mpub, _زده_,   ,\n  { {0x2d85000d, 0xa3e7001c, 0x69dc001a, 0x00000000}},  //   mele_, यचा_, rire,\n  { {0x2d8537a4, 0x2cb80039, 0x69dc046e, 0x00000000}},  //   lele_, ärde_, sire,\n  { {0xb8ff02fb, 0xbb3b007b, 0x6e3b1c1a, 0x00000000}},  // [c220] _दे_, _געפי, npub,\n  { {0x99860054, 0x2d85000d, 0xa6db01e5, 0x00000000}},  //   _الدو, nele_, _meðh,\n  { {0xe45a003b, 0xdb0d000c, 0x2d850035, 0x00000000}},  //   уже_, _hlað, iele_,\n  { {0x2d85017b, 0xddc200b9, 0x6cfa0049, 0x00000000}},  //   hele_, _dvoř, אפעס,\n  { {0x2d8502ae, 0x61f80059, 0x3f840c8a, 0x00000000}},  //   kele_, tovl, vemu_,\n  { {0x2d8537a5, 0x2fc637a6, 0x64a6003b, 0x00000000}},  //   jele_, _slog_, _лага,\n  { {0x2d850004, 0xd01001f7, 0x3f8404be, 0x00000000}},  //   dele_, ولت_, temu_,\n  { {0x289b0097, 0x9a290082, 0x00000000, 0x00000000}},  //   ריקא, _lươn_,   ,\n  { {0x7bdd0a53, 0x442a023a, 0x25ef02d2, 0x00000000}},  //   visu, _hub_, _आदमी_,\n  { {0x7bdd0022, 0x44380022, 0x442a3134, 0x00000000}},  //   wisu, _ktr_, _kub_,\n  { {0xfe6f06c6, 0xb5fb0049, 0x3a2937a7, 0x00000000}},  //   ودی_, רליכ, _suap_,\n  { {0xdb0d009f, 0x3a290022, 0xf1b90ecc, 0x00000000}},  //   _blað, _puap_, _ruši_,\n  { {0x442a0046, 0x2d85001a, 0x15fa03d7, 0x00000000}},  //   _lub_, bele_, ्तार_,\n  { {0xf2d3007b, 0x0e5701f8, 0x2d85001a, 0x00000000}},  //   לער_, _פשוט_, cele_,\n  { {0x44380035, 0xeb9f0030, 0xe9190088, 0x00000000}},  //   _ntr_, rløb_, рові_,\n  { {0xf77000a1, 0x60310089, 0x628001c3, 0x00000000}},  //   ٹاف_, _jāma, _opmo,\n  { {0x95d9026b, 0x442a00bb, 0x6d4a01a3, 0x00000000}},  // [c230] адат_, _aub_, _kefa,\n  { {0x442a0191, 0x6d4a008e, 0x6f020133, 0x00000000}},  //   _bub_, _jefa, _myoc,\n  { {0x442a0145, 0x4438120e, 0x62800006, 0x00000000}},  //   _cub_, _ctr_, _apmo,\n  { {0x442a00b9, 0x2d85001a, 0x923906f3, 0x00000000}},  //   _dub_, zele_, ачку_,\n  { {0x6d58091e, 0x27e9011c, 0x44381baa, 0x00000000}},  //   _odva, mnan_, _etr_,\n  { {0xddc200b9, 0x6d4a0142, 0x443837a8, 0x00000000}},  //   _tvoř, _nefa, _ftr_,\n  { {0x2d85001a, 0x27e90b4c, 0x3dce0044, 0x00000000}},  //   vele_, onan_, িচাল,\n  { {0x27e937a9, 0xdbf2101c, 0x6d580038, 0x00000000}},  //   nnan_, _přís, _adva,\n  { {0x2d8537aa, 0x7c2a010f, 0x27e904cb, 0x00000000}},  //   tele_, _aufr, inan_,\n  { {0x6d4a1f5a, 0x6e3b0089, 0x7c2a00ea, 0x00000000}},  //   _cefa, rpub, _bufr,\n  { {0x6d4a0263, 0x6e3b37ab, 0x2d852786, 0x00000000}},  //   _defa, spub, rele_,\n  { {0x2d8537ac, 0x2c710010, 0x6e3b0066, 0x00000000}},  //   sele_, rád_, ppub,\n  { {0xeb970242, 0xff5002fd, 0x8af0006b, 0x00000000}},  //   ция_, _سخن_, _edən,\n  { {0x8c4500e3, 0x6d4a010f, 0x7b3e0036, 0x00000000}},  //   _деке, _gefa, dłuż,\n  { {0x6d410fdb, 0xab5b0279, 0x9a290011, 0x00000000}},  //   mbla, mkün, _vươn_,\n  { {0x442a0089, 0x27e937ad, 0x2904001e, 0x00000000}},  //   _rub_, gnan_, āma_,\n  { {0x442a000d, 0x7c2a010f, 0x6e2336a8, 0x00000000}},  // [c240] _sub_, _zufr, _kinb,\n  { {0x6d4103ed, 0x442a28fe, 0x4438001a, 0x00000000}},  //   nbla, _pub_, _ptr_,\n  { {0x7c24042b, 0x6e23002b, 0x98a30036, 0x00000000}},  //   _kiir, _minb, kcję_,\n  { {0x13060088, 0x99860014, 0x4438004a, 0x00000000}},  //   озем, _الگو, _vtr_,\n  { {0xc7b3019b, 0x27e000b0, 0x7d030190, 0x00000000}},  //   _חבר_, miin_, _lyns,\n  { {0x1a9b007b, 0x4a9b007b, 0x27e0272e, 0x00000000}},  //   יינע, יינג, liin_,\n  { {0x61ed07cd, 0x6d4a10ff, 0x2167012b, 0x00000000}},  //   éala, _refa, цији_,\n  { {0x6d4a2609, 0x6d41008e, 0x6e2b0058, 0x00000000}},  //   _sefa, ebla, _bugb,\n  { {0x7c2a0211, 0x6d4101d6, 0x3f9800b9, 0x00000000}},  //   _sufr, fbla, ěru_,\n  { {0x27ed00ee, 0x44240038, 0x6d410030, 0x00000000}},  //   čeni_, _him_, gbla,\n  { {0x44243206, 0x27e000b0, 0x6e23022c, 0x00000000}},  //   _kim_, kiin_, _dinb,\n  { {0x442437ae, 0x6d4a018e, 0x6e2305e9, 0x00000000}},  //   _jim_, _wefa, _einb,\n  { {0x44240181, 0x6d413220, 0x27e037af, 0x00000000}},  //   _mim_, bbla, diin_,\n  { {0x6d5837b0, 0x442401a3, 0x7d030030, 0x00000000}},  //   _udva, _lim_, _fyns,\n  { {0x61fd009f, 0x7c380091, 0x61ea010f, 0x00000000}},  //   _ísle, _utvr, infl,\n  { {0x44240046, 0x27e937b1, 0x61ea01a2, 0x00000000}},  //   _nim_, unan_, hnfl,\n  { {0x27e903ed, 0x9f440d62, 0x2ba80204, 0x00000000}},  // [c250] rnan_, lomó_, गारा,\n  { {0x69ce010f, 0xd49b0175, 0x27e90058, 0x00000000}},  //   chbe, ире_, snan_,\n  { {0xd76600a1, 0x7aeb0089, 0x7b3e0036, 0x00000000}},  //   _کاپٹ, ņotā, służ,\n  { {0x78fa009b, 0x6d4137b2, 0x442437b3, 0x00000000}},  //   _לפתו, zbla, _cim_,\n  { {0x4424018e, 0xe299022a, 0x80d3013d, 0x00000000}},  //   _dim_, сал_, _भेजे,\n  { {0x6e2b0007, 0x76ba00b6, 0xdb0400f6, 0x00000000}},  //   _rugb, _המשפ, _dniè,\n  { {0x44240181, 0x7dc400f6, 0x6d4137b4, 0x00000000}},  //   _fim_, _còsm, vbla,\n  { {0xffd5007e, 0x6e23002d, 0x6d4100d2, 0x00000000}},  //   яўля, _sinb, wbla,\n  { {0x600537b5, 0x720500f3, 0x7d0311b6, 0x00000000}},  //   nómi, _فورم, _syns,\n  { {0xd1b801d8, 0x7c2437b6, 0x442401d6, 0x00000000}},  //   _والا_, _siir, _zim_,\n  { {0x7c240cfc, 0x6d410007, 0xeb9a003b, 0x00000000}},  //   _piir, rbla, бин_,\n  { {0x6d410343, 0x6e230066, 0x442400f6, 0x00000000}},  //   sbla, _winb, _xim_,\n  { {0x74c30055, 0x6e23002b, 0x27e000b0, 0x00000000}},  //   ্পিউ, _tinb, viin_,\n  { {0x8e080088, 0xab5b0010, 0x2caa0051, 0x00000000}},  //   _днів_, lkül, óidí_,\n  { {0x27e0021e, 0x7c2437b7, 0x7e690943, 0x00000000}},  //   tiin_, _tiir, luep,\n  { {0x69ce013f, 0x00000000, 0x00000000, 0x00000000}},  //   shbe,   ,   ,\n  { {0x44240aa5, 0x27e037b8, 0xc0760082, 0x00000000}},  // [c260] _rim_, riin_, _bướm_,\n  { {0x442437b9, 0x27e0021e, 0x1a9b0049, 0x00000000}},  //   _sim_, siin_, _פייע,\n  { {0xc32a0025, 0xa3e70061, 0x442437ba, 0x00000000}},  //   مكان_, यचं_, _pim_,\n  { {0x7c2e0181, 0x7bc600b0, 0x442401f3, 0x00000000}},  //   íbri, nkku, _qim_,\n  { {0xd056006b, 0x442437bb, 0x6d5c0010, 0x00000000}},  //   əcək, _vim_, órak,\n  { {0x442400c7, 0x3ea005a0, 0x00000000, 0x00000000}},  //   _wim_, _šito_,   ,\n  { {0x61ea01a3, 0x69de0085, 0x00000000, 0x00000000}},  //   rnfl, _mmpe,   ,\n  { {0x44240093, 0x67360036, 0x67220089, 0x00000000}},  //   _uim_, ncyj, žoju,\n  { {0x9f5f00d6, 0x69de0052, 0x00000000, 0x00000000}},  //   cluí_, _ompe,   ,\n  { {0x60e7000c, 0x3eb9225c, 0xddaa37bc, 0x00000000}},  //   ármá, ästa_, стил_,\n  { {0x67360036, 0x31570049, 0x057700a0, 0x00000000}},  //   kcyj, _זיבן_, הגים_,\n  { {0x69de0007, 0x6fd600f3, 0xdb0d00fa, 0x00000000}},  //   _ampe, _عزائ, _joaç,\n  { {0x5fa901f5, 0xada601fc, 0x00000000, 0x00000000}},  //   कारल, _надл,   ,\n  { {0x7bcf0022, 0x64b500b9, 0x00000000, 0x00000000}},  //   shcu, _hřiš,   ,\n  { {0x2905000c, 0x7dc4000a, 0x64b5013e, 0x00000000}},  //   æla_, _lòsk, _křiš,\n  { {0x69de0211, 0x24830022, 0x7bc60203, 0x00000000}},  //   _empe, _rpjm_, ckku,\n  { {0xe6640080, 0x0587007c, 0x66f4030d, 0x00000000}},  // [c270] етхо, зуем, епту,\n  { {0x7bcd000c, 0x673600b4, 0x00000000, 0x00000000}},  //   _hlau, acyj,   ,\n  { {0x7bcd010a, 0x6fe800b9, 0x6b96014a, 0x00000000}},  //   _klau, pěch, _yayg,\n  { {0xdfc60054, 0x69c70056, 0x00000000, 0x00000000}},  //   _شي_, lkje,   ,\n  { {0xdb0d0181, 0xa81b00a1, 0x00000000, 0x00000000}},  //   _doaç, _پتھر_,   ,\n  { {0x7dcd0b33, 0x69c737bd, 0x7bcd00d4, 0x00000000}},  //   _músc, nkje, _llau,\n  { {0xa6db000c, 0x8464005e, 0x7bcd02e1, 0x00000000}},  //   _veðu, _пъте, _olau,\n  { {0xee3901bd, 0xa24700a1, 0x4394007c, 0x00000000}},  //   они_, _فیصل_, _пасс,\n  { {0x63a9046a, 0xab5b014a, 0x69c70056, 0x00000000}},  //   _inen, rkül, kkje,\n  { {0xf1a403d7, 0x6b96014a, 0x7bcd0006, 0x00000000}},  //   _गोपन, _sayg, _alau,\n  { {0x7bcd07eb, 0x63bb0263, 0x9d0b0055, 0x00000000}},  //   _blau, _koun, রশ্ন_,\n  { {0x63bb0263, 0x3b0a0407, 0x61e3014a, 0x00000000}},  //   _joun, жемо_, linl,\n  { {0x63a901d9, 0x63bb2172, 0x7bc600b0, 0x00000000}},  //   _mnen, _moun, rkku,\n  { {0x63bb37be, 0x63a40089, 0x61e3005d, 0x00000000}},  //   _loun, ķini, ninl,\n  { {0x7bcd021a, 0x63a9002d, 0xabf6004c, 0x00000000}},  //   _flau, _onen, _очищ,\n  { {0x7bcd010f, 0x63bb0bf2, 0x7bc80089, 0x00000000}},  //   _glau, _noun, ījus,\n  { {0x61e337bf, 0xfe7900b9, 0xe7df0164, 0x00000000}},  // [c280] kinl, ntů_, _नगरप,\n  { {0x0446007c, 0x69de37c0, 0x00000000, 0x00000000}},  //   дежн, _umpe,   ,\n  { {0x6d5c0051, 0x63bb00ab, 0x929d0036, 0x00000000}},  //   órai, _boun, _było,\n  { {0x63bb0038, 0xfe7900b9, 0x8383007c, 0x00000000}},  //   _coun, ktů_, выше,\n  { {0x63bb0068, 0x61e337c1, 0x6e2d0048, 0x00000000}},  //   _doun, finl, _éabh,\n  { {0x61e3009f, 0xc0aa0151, 0x63a90883, 0x00000000}},  //   ginl, قابل_, _enen,\n  { {0x63bb0038, 0xf1b801d5, 0x64b500b9, 0x00000000}},  //   _foun, _jiġi_, _přiš,\n  { {0x63bb0b8b, 0xdb0400f6, 0xa6db01e5, 0x00000000}},  //   _goun, _joió, _geðs,\n  { {0xf1b801d5, 0x00000000, 0x00000000, 0x00000000}},  //   _liġi_,   ,   ,\n  { {0x7bcd0006, 0x6005000c, 0x61e3064a, 0x00000000}},  //   _slau, dómu, cinl,\n  { {0x61fd009f, 0x7bcd010a, 0xd12f031d, 0x00000000}},  //   _ísla, _plau, _ضمن_,\n  { {0xaec61020, 0x20140036, 0x00000000, 0x00000000}},  //   _обел, ócić_,   ,\n  { {0x501b007b, 0x7bd60065, 0x7bcd0082, 0x00000000}},  //   _וואו, ëzua, _vlau,\n  { {0x7c660070, 0xc9840517, 0x00000000, 0x00000000}},  //   _قابل, куси,   ,\n  { {0x2d8c1045, 0x69c70056, 0xd7f5007c, 0x00000000}},  //   mede_, rkje, езвы,\n  { {0x2d8c018d, 0x69c70292, 0x61e3005d, 0x00000000}},  //   lede_, skje, zinl,\n  { {0x63bb00ab, 0x7dcd000c, 0x61e3005a, 0x00000000}},  // [c290] _roun, _húsa, yinl,\n  { {0x63bb0038, 0xaa88007a, 0x2d8c1ead, 0x00000000}},  //   _soun, _کنیم_, nede_,\n  { {0x63bb00ab, 0xa4390088, 0x61e3013f, 0x00000000}},  //   _poun, їзду_, vinl,\n  { {0xe6670265, 0x2d8c1296, 0x7dcd2396, 0x00000000}},  //   _отго, hede_, _músa,\n  { {0xa2af001c, 0x2d8c064a, 0x61e30180, 0x00000000}},  //   ंमध्, kede_, tinl,\n  { {0x40950517, 0x2d8c016e, 0x63bb0133, 0x00000000}},  //   ерит, jede_, _woun,\n  { {0x63bb0263, 0x2d8c1f11, 0x61e3005d, 0x00000000}},  //   _toun, dede_, rinl,\n  { {0x61e3005a, 0x63a937c2, 0x00000000, 0x00000000}},  //   sinl, _unen,   ,\n  { {0x2ec9007d, 0x2d8c0095, 0x61e3349d, 0x00000000}},  //   िनेत, fede_, pinl,\n  { {0x2d8c26e0, 0xc692012e, 0x1c45041f, 0x00000000}},  //   gede_, נאי_, нном,\n  { {0x44310036, 0xfe7900b9, 0x3b09013f, 0x00000000}},  //   _juz_, stů_, _ayaq_,\n  { {0xeb9a0407, 0x224d0058, 0x7dcd0048, 0x00000000}},  //   чим_, _kwek_, _dúsa,\n  { {0x44310489, 0x2d8c37c3, 0x5ac7007c, 0x00000000}},  //   _luz_, bede_, елям_,\n  { {0xf2d2341b, 0x2d8c0682, 0x3e790263, 0x00000000}},  //   נעם_, cede_, mèt_,\n  { {0x3e7901aa, 0x997d0089, 0xadd608cd, 0x00000000}},  //   lèt_, kāņu_, _רוצח_,\n  { {0x224d0045, 0x00000000, 0x00000000, 0x00000000}},  //   _owek_,   ,   ,\n  { {0x3e790263, 0x6b8437c4, 0x7e7b00c4, 0x00000000}},  // [c2a0] nèt_, _ibig, ntup,\n  { {0xf1b801d5, 0xe4d700a1, 0x4431005a, 0x00000000}},  //   _tiġi_, کومت_, _buz_,\n  { {0x290e0010, 0x6aa4000c, 0x224d01a3, 0x00000000}},  //   _áfa_, _hrif, _awek_,\n  { {0xe9f9001d, 0x3e790263, 0x7e7b145c, 0x00000000}},  //   _trả_, kèt_, ktup,\n  { {0xa2940245, 0xf206005e, 0x2d8c014a, 0x00000000}},  //   талі, няко, yede_,\n  { {0xcb13007b, 0x7644005d, 0x3e790173, 0x00000000}},  //   אלד_, mpiy, dèt_,\n  { {0x2d8c1c72, 0x6005000c, 0x4fc600ec, 0x00000000}},  //   vede_, jóms, еспа,\n  { {0xdfd00054, 0x3e790263, 0x4444065f, 0x00000000}},  //   شيخ_, fèt_, mp_,\n  { {0x44440292, 0x2d8c30c7, 0x3ea2000c, 0x00000000}},  //   lp_, tede_, íkt_,\n  { {0x6b84010e, 0x44441936, 0xddc00010, 0x00000000}},  //   _abig, op_, ttmű,\n  { {0x2d8c068f, 0x44440173, 0x6aa43194, 0x00000000}},  //   rede_, np_, _arif,\n  { {0x4444232d, 0x2d8c0059, 0x6aa40016, 0x00000000}},  //   ip_, sede_, _brif,\n  { {0x44440061, 0x2d8c001a, 0x5a34022a, 0x00000000}},  //   hp_, pede_, лнят,\n  { {0x6aa405d5, 0x7dcd000c, 0x6b8437c5, 0x00000000}},  //   _drif, _húsn, _ebig,\n  { {0x444400b5, 0x6d481382, 0x4cde0044, 0x00000000}},  //   jp_, mbda, _নুরু,\n  { {0x6aa40190, 0x00000000, 0x00000000, 0x00000000}},  //   _frif,   ,   ,\n  { {0xb90802fb, 0x645c0c60, 0x6aa42a9d, 0x00000000}},  // [c2b0] _मे_, _avri, _grif,\n  { {0xd056006b, 0x6b840036, 0x6b9d1f7d, 0x00000000}},  //   şbəx, _zbig, ldsg,\n  { {0xb4bd0204, 0xf1b801d5, 0x9964007e, 0x00000000}},  //   ेने_, _jiġu_, _стыл,\n  { {0x6b9d0c95, 0xf8b60104, 0x3e7901aa, 0x00000000}},  //   ndsg, _ספרי_, yèt_,\n  { {0x444437c6, 0x443100bb, 0x6b9d295a, 0x00000000}},  //   ap_, _wuz_, idsg,\n  { {0xc0e50113, 0x3e7901aa, 0xe4530445, 0x00000000}},  //   колк, vèt_, _مضر_,\n  { {0x44440edc, 0xe1f00647, 0x3e790173, 0x00000000}},  //   cp_, حسن_, wèt_,\n  { {0x5ee20055, 0x3e790263, 0x6b9d14c1, 0x00000000}},  //   _পড়ে, tèt_, jdsg,\n  { {0x644500ab, 0x3f8d0007, 0x60310089, 0x00000000}},  //   lphi, reeu_, _māmi,\n  { {0x3e790263, 0x7e7b0089, 0xe530006b, 0x00000000}},  //   rèt_, rtup, _müğə,\n  { {0x7e7b04c8, 0x3e7901aa, 0xcb6a0256, 0x00000000}},  //   stup, sèt_, мане_,\n  { {0x6aa421ae, 0xa3d703d7, 0x798e37c7, 0x00000000}},  //   _prif, ाफट_, webw,\n  { {0x6ec406b4, 0x444428e5, 0x798e005b, 0x00000000}},  //   _متوق, zp_, tebw,\n  { {0x27e20093, 0x200d16e5, 0xdce10036, 0x00000000}},  //   _smkn_, llei_, zglę,\n  { {0x44440066, 0x7e6900f8, 0xe9a3025f, 0x00000000}},  //   xp_, lrep, јасп,\n  { {0xa2b2001c, 0x6aa437c8, 0x6fde0089, 0x00000000}},  //   _आपल्, _trif, tūci,\n  { {0x78a50018, 0x7e690210, 0x645c1a8f, 0x00000000}},  // [c2c0] _erhv, nrep, _svri,\n  { {0x08c602dd, 0x69d505c6, 0x44440082, 0x00000000}},  //   _абон, chze, tp_,\n  { {0x4444028a, 0x200d37c9, 0x764437ca, 0x00000000}},  //   up_, klei_, spiy,\n  { {0x395804bd, 0x444413e2, 0x7e692b84, 0x00000000}},  //   lars_, rp_, krep,\n  { {0x4444281b, 0x98b80006, 0x7dc4000a, 0x00000000}},  //   sp_, tarė_, _kòst,\n  { {0x39581fb4, 0x444437cb, 0x7e69001a, 0x00000000}},  //   nars_, pp_, drep,\n  { {0x645c0243, 0x00000000, 0x00000000, 0x00000000}},  //   _uvri,   ,   ,\n  { {0xb4250355, 0x27f21703, 0x00000000, 0x00000000}},  //   _معقو, nnyn_,   ,\n  { {0x7e6904d3, 0xb226008b, 0x8fa300ec, 0x00000000}},  //   grep, _амал, рање,\n  { {0x20e3001c, 0x22462819, 0x27010082, 0x00000000}},  //   _केवळ_, mpok_, ỗng_,\n  { {0x1da6001c, 0x3958009d, 0x6d480006, 0x00000000}},  //   _कोणत, dars_, rbda,\n  { {0x7e69008e, 0x200d37cc, 0x7d0a01c3, 0x00000000}},  //   brep, clei_, _vyfs,\n  { {0x7e6903fd, 0x6b9d0cf5, 0x248a0145, 0x00000000}},  //   crep, rdsg, _lpbm_,\n  { {0x39580089, 0xf1b80066, 0x00000000, 0x00000000}},  //   gars_, _tiġu_,   ,\n  { {0xf8071b49, 0xd90f0014, 0x98c4007c, 0x00000000}},  //   вчан, تید_, астл,\n  { {0x2d9c37cd, 0x20040149, 0x2d9e37ce, 0x00000000}},  //   _have_, nomi_, ldte_,\n  { {0x39580061, 0x2d9c0bd9, 0x97152466, 0x00000000}},  // [c2d0] bars_, _kave_, умац,\n  { {0x2d9e0374, 0x68ee002a, 0x7c2d161f, 0x00000000}},  //   ndte_, ándá, _hiar,\n  { {0x659401fb, 0x7c2d0020, 0x200437cf, 0x00000000}},  //   раху, _kiar, komi_,\n  { {0x2d9c37d0, 0xdb040181, 0x200437d1, 0x00000000}},  //   _lave_, _uniã, jomi_,\n  { {0x27e91ff9, 0x20040089, 0x7c2d37d2, 0x00000000}},  //   mian_, domi_, _miar,\n  { {0x2d9c027b, 0x27e90971, 0x3f86009d, 0x00000000}},  //   _nave_, lian_, _abou_,\n  { {0x7c2d002d, 0x7e690d12, 0x316901df, 0x00000000}},  //   _oiar, wrep, ğaz_,\n  { {0x7e69028c, 0x27e9020c, 0x3ea61642, 0x00000000}},  //   trep, nian_, _brot_,\n  { {0x2d9c037e, 0x200d0270, 0x51f90077, 0x00000000}},  //   _bave_, rlei_, _знаю_,\n  { {0x442d01d6, 0x27e9002d, 0x7cd3006b, 0x00000000}},  //   _hie_, hian_, lərə,\n  { {0x1bea0751, 0x27e9033b, 0x39580089, 0x00000000}},  //   едни_, kian_, vars_,\n  { {0x442d010a, 0x27e9027e, 0x7c2d0051, 0x00000000}},  //   _jie_, jian_, _ciar,\n  { {0x7c2d16ca, 0x27e9020c, 0x442d0412, 0x00000000}},  //   _diar, dian_, _mie_,\n  { {0x2d9c2f16, 0x442d046e, 0xddc90087, 0x00000000}},  //   _gave_, _lie_, ltež,\n  { {0x39580203, 0x27e90127, 0x7c2d0035, 0x00000000}},  //   rars_, fian_, _fiar,\n  { {0x442d37d3, 0xb8dc03d7, 0x27e90169, 0x00000000}},  //   _nie_, _आप_, gian_,\n  { {0xe61a0216, 0x39582a1a, 0x26c900e0, 0x00000000}},  // [c2e0] еда_, pars_, gyao_,\n  { {0x7c2d1111, 0x27ff2794, 0xdce3014a, 0x00000000}},  //   _ziar, čuna_, _hanı,\n  { {0x27e937d4, 0xdd560049, 0x442d0065, 0x00000000}},  //   bian_, רבעט_, _bie_,\n  { {0x2ca70020, 0x7c3e00f4, 0x442d0036, 0x00000000}},  //   _mrnd_, _épre, _cie_,\n  { {0x442d15d0, 0x41e60ee0, 0xa3b6062e, 0x00000000}},  //   _die_, ліка, जाब_,\n  { {0x442d0343, 0x69ce0010, 0x00000000, 0x00000000}},  //   _eie_, nkbe,   ,\n  { {0x442d000d, 0x20040b4d, 0x2246012d, 0x00000000}},  //   _fie_, tomi_, spok_,\n  { {0x09d102d2, 0x645e0240, 0x2d9c37d5, 0x00000000}},  //   _हत्य, mspi, _save_,\n  { {0x7c2d002a, 0x2d9c0056, 0x64410065, 0x00000000}},  //   _riar, _pave_, _çlir,\n  { {0x442d02ae, 0x7c2d0544, 0xc693009b, 0x00000000}},  //   _zie_, _siar, צאת_,\n  { {0x7c2d0035, 0x225f047c, 0x645e03a1, 0x00000000}},  //   _piar, _zvuk_, nspi,\n  { {0x442d0c0d, 0xdce3005a, 0x61ea006b, 0x00000000}},  //   _xie_, _canı, lifl,\n  { {0xdce3027d, 0x7c2d1f38, 0x2d9c0006, 0x00000000}},  //   _danı, _viar, _tave_,\n  { {0x645e003b, 0x27e913a7, 0x7c2d0036, 0x00000000}},  //   kspi, wian_, _wiar,\n  { {0x27e90149, 0x248d0119, 0x7c2d0051, 0x00000000}},  //   tian_, _ćemo_, _tiar,\n  { {0x645e0190, 0x69ce00bb, 0x69c000fa, 0x00000000}},  //   dspi, akbe, êmer,\n  { {0x27e9020c, 0x645e05b7, 0x00000000, 0x00000000}},  // [c2f0] rian_, espi,   ,\n  { {0x442d0a80, 0x6d5a2bd0, 0x27e9020c, 0x00000000}},  //   _sie_, nata, sian_,\n  { {0xdce3047f, 0x27e90f7c, 0x442d191c, 0x00000000}},  //   _yanı, pian_, _pie_,\n  { {0x6d5a020c, 0xdce3005f, 0xa3df013d, 0x00000000}},  //   hata, _xanı, धों_,\n  { {0x442d028c, 0x49b806c6, 0xe29908d6, 0x00000000}},  //   _vie_, _شاید_, тал_,\n  { {0x442d0e42, 0x6a6c000c, 0x6b9f002b, 0x00000000}},  //   _wie_, _höfð, _laqg,\n  { {0x442d082e, 0x7d1c000c, 0x31580025, 0x00000000}},  //   _tie_, ýrsl, اجهة_,\n  { {0x442d01d6, 0x41b500a1, 0x6b9f0066, 0x00000000}},  //   _uie_, _ھمار, _naqg,\n  { {0x6d5a29d0, 0x8db501ff, 0x00000000, 0x00000000}},  //   fata, асні,   ,\n  { {0x0d820eec, 0x6d5a001e, 0xdce3014a, 0x00000000}},  //   ольн, gata, _sanı,\n  { {0x320700ab, 0x6b9f002b, 0x5f950478, 0x00000000}},  //   mony_, _baqg, _виет,\n  { {0x8b2605b5, 0x32070652, 0x6d5a0058, 0x00000000}},  //   идне, lony_, aata,\n  { {0x6d5a04be, 0x7bdd0065, 0xa3b6007d, 0x00000000}},  //   bata, ërua, जात_,\n  { {0x6d5a001a, 0xef18007e, 0x32360049, 0x00000000}},  //   cata, _смі_, יטשן_,\n  { {0xdce301f6, 0x9836008b, 0x69ce00bb, 0x00000000}},  //   _tanı, рэгі, rkbe,\n  { {0x320737d6, 0x645e0240, 0x69ce00f8, 0x00000000}},  //   hony_, vspi, skbe,\n  { {0x1b0d0055, 0x2b4d049a, 0x8af0005f, 0x00000000}},  // [c300] সেবে_, ñece_, _edər,\n  { {0x2d851e83, 0x645e01a2, 0xd946003b, 0x00000000}},  //   nfle_, tspi, _њени,\n  { {0x645e37d7, 0x3ea9012d, 0x7bc40288, 0x00000000}},  //   uspi, _šatl_, _koiu,\n  { {0x6d5a1a92, 0xf77200a6, 0x645e010f, 0x00000000}},  //   zata, _باد_, rspi,\n  { {0x6d5a0169, 0x32073510, 0x645e01e7, 0x00000000}},  //   yata, fony_, sspi,\n  { {0x64430576, 0x6abb01a2, 0xf8ba0309, 0x00000000}},  //   ínic, äufi, _उपाय,\n  { {0x61ea049d, 0x00000000, 0x00000000, 0x00000000}},  //   rifl,   ,   ,\n  { {0x6d5a37d8, 0xbfa7007c, 0x201d0016, 0x00000000}},  //   wata, атье_, _chwi_,\n  { {0x6d5a1d2e, 0x44380073, 0x2d8506fa, 0x00000000}},  //   tata, _hur_, ffle_,\n  { {0x44380710, 0x63a037d9, 0x61ed0051, 0x00000000}},  //   _kur_, _hamn, éalt,\n  { {0x6d5a287e, 0xa3ab0316, 0x62820168, 0x00000000}},  //   rata, _कोड_, ltoo,\n  { {0x63a20198, 0x443801d5, 0x00000000, 0x00000000}},  //   ndon, _mur_,   ,\n  { {0x6d5a170b, 0x62820dd7, 0x4438002d, 0x00000000}},  //   pata, ntoo, _lur_,\n  { {0x44380038, 0xa2a70309, 0x6d5a24e5, 0x00000000}},  //   _our_, चित्, qata,\n  { {0x4438001f, 0x6d580089, 0x63a201ee, 0x00000000}},  //   _nur_, _ieva, kdon,\n  { {0x63a037da, 0x63a20047, 0x3207108d, 0x00000000}},  //   _namn, jdon, zony_,\n  { {0x443837db, 0x6d58006c, 0x63a20016, 0x00000000}},  // [c310] _aur_, _keva, ddon,\n  { {0x63a20207, 0x6d5837dc, 0x44380056, 0x00000000}},  //   edon, _jeva, _bur_,\n  { {0x4438002a, 0xd49b0265, 0x799537dd, 0x00000000}},  //   _cur_, ъра_, mezw,\n  { {0x6d5802d5, 0x69c5010f, 0x79950020, 0x00000000}},  //   _leva, _hohe, lezw,\n  { {0x7cca005f, 0x69c5008d, 0xa3ab0183, 0x00000000}},  //   lərd, _kohe, _कोण_,\n  { {0x7c380c69, 0x79951475, 0x6d58191c, 0x00000000}},  //   _ouvr, nezw, _neva,\n  { {0x4438002a, 0x32070046, 0x69c50667, 0x00000000}},  //   _gur_, rony_, _mohe,\n  { {0x63a20875, 0xe3b301d8, 0x628201f3, 0x00000000}},  //   cdon, _برس_, btoo,\n  { {0x4438001f, 0x6d5800b5, 0x7dcd000c, 0x00000000}},  //   _zur_, _beva, _húsi,\n  { {0x6d58011f, 0x7e6202aa, 0x7bc40035, 0x00000000}},  //   _ceva, _dvop, _soiu,\n  { {0x6d5837de, 0x7e620320, 0x6bd60025, 0x00000000}},  //   _deva, _evop, متحر,\n  { {0x7dcd0df5, 0xe9f9001d, 0x7c380026, 0x00000000}},  //   _músi, _trẻ_, _duvr,\n  { {0xed4e0069, 0x69c500b9, 0x00000000, 0x00000000}},  //   _но_, _bohe,   ,\n  { {0x69c5041d, 0x6d58049b, 0xceb20104, 0x00000000}},  //   _cohe, _geva, _מיד_,\n  { {0x69c5010e, 0xab5b035a, 0x6d4104a5, 0x00000000}},  //   _dohe, rkür, mcla,\n  { {0x228001aa, 0x6d580e8c, 0xdc3a0049, 0x00000000}},  //   yòk_, _zeva, _געקר,\n  { {0x44380a8d, 0x63a00035, 0x6ff30035, 0x00000000}},  // [c320] _sur_, _ramn, găci,\n  { {0x63a0009f, 0x443804b4, 0x63a20066, 0x00000000}},  //   _samn, _pur_, wdon,\n  { {0xb8ed08b7, 0x4438013f, 0x69dc0051, 0x00000000}},  //   _শে_, _qur_, mhre,\n  { {0x63a207f2, 0x53e50088, 0x8c360049, 0x00000000}},  //   udon, оціа, צטנס_,\n  { {0x44380270, 0x69c50009, 0x6d430016, 0x00000000}},  //   _wur_, _yohe, _ofna,\n  { {0x4438001e, 0x628237df, 0x9f440048, 0x00000000}},  //   _tur_, rtoo, rimí_,\n  { {0x6d5803eb, 0x63a037e0, 0x4438015c, 0x00000000}},  //   _reva, _tamn, _uur_,\n  { {0x6d4337e1, 0x232a0745, 0x6d411fce, 0x00000000}},  //   _afna, _боби_, ecla,\n  { {0x6d58037e, 0x44260207, 0x7cca005f, 0x00000000}},  //   _peva, mmo_, zərd,\n  { {0x44261325, 0xdd9a0216, 0x6d410009, 0x00000000}},  //   lmo_, уши_, gcla,\n  { {0x69c5006c, 0x69dc03df, 0x5bb9005e, 0x00000000}},  //   _rohe, dhre, алня_,\n  { {0x44261391, 0x6d43000c, 0xddc90035, 0x00000000}},  //   nmo_, _efna, pseş,\n  { {0x6d58007f, 0x79950648, 0x69dc0051, 0x00000000}},  //   _teva, tezw, fhre,\n  { {0x69dc0b73, 0x2fc601b5, 0x6abb0055, 0x00000000}},  //   ghre, _hoog_, উনলো,\n  { {0x58d4004c, 0x79950927, 0x442611d2, 0x00000000}},  //   порт, rezw, kmo_,\n  { {0x4426016c, 0x36d50242, 0x69c501a2, 0x00000000}},  //   jmo_, ообр, _wohe,\n  { {0x6b8d1ebf, 0x69dc0051, 0x163b0025, 0x00000000}},  // [c330] _ibag, bhre, اسرة_,\n  { {0x69dc2a9d, 0x98a301df, 0x6ff30035, 0x00000000}},  //   chre, sajı_, răci,\n  { {0x6d9e01d5, 0x6aad000c, 0x07350401, 0x00000000}},  //   _għaż, _hraf, _меню,\n  { {0xedb503d7, 0x6d410211, 0x2458007e, 0x00000000}},  //   _अच्छ, zcla, саць_,\n  { {0x6b8d0526, 0x601e0065, 0x7cca013f, 0x00000000}},  //   _mbag, këmb, nərb,\n  { {0x442616ba, 0x764d0487, 0x7f59002b, 0x00000000}},  //   amo_, mpay, _sewq,\n  { {0x6025007e, 0x86fb0044, 0x6b8d1b43, 0x00000000}},  //   одка, _আরিফ_, _obag,\n  { {0x7a200039, 0x6aad0026, 0xfe4500e2, 0x00000000}},  //   möte, _oraf, онио,\n  { {0xa3b602fb, 0xee3603c8, 0x764d0263, 0x00000000}},  //   जार_, оны_, npay,\n  { {0x2708001d, 0x6b8d36c5, 0xb8010044, 0x00000000}},  //   ởng_, _abag, ্ষিত_,\n  { {0x6d4137e2, 0x6aad37e3, 0x6b8d0087, 0x00000000}},  //   rcla, _araf, _bbag,\n  { {0x6d412ea8, 0xab2a013b, 0xdb040051, 0x00000000}},  //   scla, иона_, _iniú,\n  { {0x69dc016d, 0x2b4d008e, 0x6aad0787, 0x00000000}},  //   thre, ñeca_, _craf,\n  { {0x6aad018e, 0x442637e4, 0x7a200c49, 0x00000000}},  //   _draf, zmo_, köte,\n  { {0x44260e44, 0x75e9005f, 0xe73a358a, 0x00000000}},  //   ymo_, _gözə, иев_,\n  { {0xe7370057, 0x69dc01e5, 0x6aad08c8, 0x00000000}},  //   жет_, shre, _fraf,\n  { {0x6aad0b25, 0x764d0058, 0x69dc0133, 0x00000000}},  // [c340] _graf, gpay, phre,\n  { {0x056605b8, 0x9f4d01c3, 0x00000000, 0x00000000}},  //   івен, fieë_,   ,\n  { {0x9f4d01d6, 0x24560014, 0x00000000, 0x00000000}},  //   gieë_, زنشس,   ,\n  { {0xccf2009b, 0x442628bc, 0x00000000, 0x00000000}},  //   וכב_, umo_,   ,\n  { {0x44260027, 0x25a3002b, 0x764d0009, 0x00000000}},  //   rmo_, _fajl_, cpay,\n  { {0x442637e5, 0x7d060046, 0x2fc601c3, 0x00000000}},  //   smo_, ększ, _soog_,\n  { {0xfd07026c, 0xd467007c, 0x2fc601d6, 0x00000000}},  //   _آج_, _мире_, _poog_,\n  { {0xef190046, 0xb4d60309, 0xe45300a1, 0x00000000}},  //   leży_, िनी_, _آہنگ,\n  { {0x6fdc00f4, 0xa3d7007d, 0x248d012d, 0x00000000}},  //   _néce, िसर_, _ćemi_,\n  { {0x6b8d0207, 0x06cd0044, 0x6aad0065, 0x00000000}},  //   _sbag, _রেডি, _rraf,\n  { {0x6aad012d, 0x601e0023, 0x2fc600d9, 0x00000000}},  //   _sraf, rëmb, _toog_,\n  { {0x6aad0035, 0x764d00e0, 0x6ff30035, 0x00000000}},  //   _praf, ypay, făcu,\n  { {0x6fe80046, 0x6448009d, 0x6aad006b, 0x00000000}},  //   jści, _édif, _qraf,\n  { {0x6fdc028c, 0x1e33007e, 0x7c3e009d, 0x00000000}},  //   _déce, _жніў, _épro,\n  { {0x6fe80036, 0x6b8d0066, 0x00000000, 0x00000000}},  //   eści, _tbag,   ,\n  { {0x6aad018e, 0x386d0209, 0x764d02d1, 0x00000000}},  //   _traf, čer_, tpay,\n  { {0x6aad37e6, 0xf402001a, 0x00000000, 0x00000000}},  // [c350] _uraf, inţă_,   ,\n  { {0x764d013f, 0xdcea014a, 0x7a2001a2, 0x00000000}},  //   rpay, _hafı, töte,\n  { {0xd3710379, 0x764d0022, 0x00000000, 0x00000000}},  //   فها_, spay,   ,\n  { {0x3cfb0049, 0xf3670088, 0x9f4d0007, 0x00000000}},  //   סלאנ, ітен, rieë_,\n  { {0x645a002b, 0xd3460014, 0x9f4d01d6, 0x00000000}},  //   _ħtie, سیله_, sieë_,\n  { {0x6145371d, 0x1a9c0049, 0xe57004e8, 0x00000000}},  //   чека, יידע, _لطف_,\n  { {0xe0d1009e, 0x00000000, 0x00000000, 0x00000000}},  //   عزت_,   ,   ,\n  { {0xa3b20061, 0x78fc0049, 0x00000000, 0x00000000}},  //   _झोप_, יפוו,   ,\n  { {0xfe710025, 0x00000000, 0x00000000, 0x00000000}},  //   ردة_,   ,   ,\n  { {0x6fdc028c, 0xee360f62, 0x00000000, 0x00000000}},  //   _réce, янь_,   ,\n  { {0xcb0900b6, 0x1d09017a, 0xfbdf0007, 0x00000000}},  //   _על_, сени_, fhê_,\n  { {0x2904014a, 0x6fe80036, 0x00000000, 0x00000000}},  //   şmak_, yści,   ,\n  { {0x7dcd1441, 0xeb970242, 0x200d3143, 0x00000000}},  //   _búst, чия_, moei_,\n  { {0xa3b20204, 0x200d37e7, 0xaec4007e, 0x00000000}},  //   _झोन_, loei_, _юбіл,\n  { {0x291e0039, 0x00000000, 0x00000000, 0x00000000}},  //   åta_,   ,   ,\n  { {0xfbdf00c4, 0x75e00010, 0x2d820010, 0x00000000}},  //   chê_, _közg, őket_,\n  { {0x7cca006b, 0x00000000, 0x00000000, 0x00000000}},  // [c360] məra,   ,   ,\n  { {0x499400a1, 0x7cca006b, 0x6fe80036, 0x00000000}},  //   _تیسر, ləra, rści,\n  { {0xc953012f, 0xb4d60164, 0xd9100167, 0x00000000}},  //   _אמת_, िने_, _شیر_,\n  { {0xa3e60754, 0x3eaf0129, 0x73fc0044, 0x00000000}},  //   यों_, _orgt_, েষ্ট_,\n  { {0x27e037e8, 0x6fd50802, 0x74130014, 0x00000000}},  //   mhin_, _václ, روها,\n  { {0x27e0011c, 0xc297007e, 0x7c240058, 0x00000000}},  //   lhin_, якіх_, _lhir,\n  { {0x0219007e, 0x7c240016, 0x76490095, 0x00000000}},  //   ціць_, _ohir, _çeyr,\n  { {0xdfd00054, 0x27e00dc7, 0xb4fb009b, 0x00000000}},  //   ئية_, nhin_, _הפלי,\n  { {0x4424010f, 0x27e0021e, 0xa1360025, 0x00000000}},  //   _ihm_, ihin_, _فراش,\n  { {0x27ff089f, 0x657e0082, 0x7c240095, 0x00000000}},  //   čuni_, ngph, _ahir,\n  { {0x7dcd1ad4, 0x2b4d008e, 0x442404eb, 0x00000000}},  //   _rúst, ñeco_, _khm_,\n  { {0xdddb00ca, 0xddc9001a, 0xafe31764, 0x00000000}},  //   rtuš, treţ, _похл,\n  { {0x27e00065, 0x9b2400ed, 0xdddb1288, 0x00000000}},  //   dhin_, ефрл, stuš,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x69d5010f, 0x27e0010f, 0xa8490439, 0x00000000}},  //   rkze, fhin_, تلزم_,\n  { {0x2d8c049b, 0x1d1700a0, 0x27e02264, 0x00000000}},  //   lfde_, _מקור_, ghin_,\n  { {0xba6b0025, 0x2d8c040f, 0x00000000, 0x00000000}},  // [c370] _احبك_, ofde_,   ,\n  { {0x06140057, 0x44240b9a, 0x200d0032, 0x00000000}},  //   едую, _ahm_, zoei_,\n  { {0xd9180b87, 0xf8d1013d, 0xdb160173, 0x00000000}},  //   _нью_, _हथिय, _anyè,\n  { {0x27e02b12, 0x7c240065, 0xd8280245, 0x00000000}},  //   chin_, _xhir, _ніяк_,\n  { {0x46a4007e, 0x442400d4, 0x59d1007d, 0x00000000}},  //   _заўв, _dhm_, _सकार,\n  { {0x644a1195, 0xe7d50180, 0x76ba009b, 0x00000000}},  //   ífic, _yığı, _ומשפ,\n  { {0x44240145, 0x69be0061, 0x200d0032, 0x00000000}},  //   _fhm_, शाती, toei_,\n  { {0x2d8c00c7, 0x00000000, 0x00000000, 0x00000000}},  //   efde_,   ,   ,\n  { {0xc91a02fb, 0x200d3143, 0x236d0059, 0x00000000}},  //   _धर्म_, roei_, _idej_,\n  { {0x7c2403ef, 0x7dcd37e9, 0x27e00065, 0x00000000}},  //   _shir, _rúss, zhin_,\n  { {0xa3b8026c, 0xddc90c1e, 0x601e0065, 0x00000000}},  //   _ظاہر_, greš, sëma,\n  { {0x307801b7, 0x2d8c01d6, 0x00000000, 0x00000000}},  //   _رحمة_, afde_,   ,\n  { {0xbdf8026c, 0xbea5007e, 0x3ce900b9, 0x00000000}},  //   _کرنا_, _цалк, _živě_,\n  { {0x7c240142, 0x75e00047, 0xdb060010, 0x00000000}},  //   _whir, _köze, ndké,\n  { {0x27e00038, 0x7c24166d, 0xd7f20025, 0x00000000}},  //   thin_, _thir, نكس_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x27e0191f, 0x00000000, 0x00000000, 0x00000000}},  // [c380] rhin_,   ,   ,\n  { {0x27e0008d, 0x6fdc00f4, 0x44240022, 0x00000000}},  //   shin_, _méca, _shm_,\n  { {0xe73a0265, 0x799c0016, 0x27e006fa, 0x00000000}},  //   _мен_, merw, phin_,\n  { {0xd36f0054, 0x799c010f, 0x68f90010, 0x00000000}},  //   لهم_, lerw, őadó,\n  { {0x91e60069, 0xddc90db7, 0x224d2a53, 0x00000000}},  //   моде, zreš, _ctek_,\n  { {0x799c1091, 0x77642daf, 0xb0a90164, 0x00000000}},  //   nerw, laix, किंग,\n  { {0x6b8401a8, 0xe366003b, 0x442437ea, 0x00000000}},  //   _ocig, _окви, _thm_,\n  { {0x799c00ab, 0x44240082, 0x77640129, 0x00000000}},  //   herw, _uhm_, naix,\n  { {0xcebb006b, 0xe2460558, 0x799c0b28, 0x00000000}},  //   _şərh_, _آخري, kerw,\n  { {0x7dcd0219, 0x6fdc2d7f, 0xddc90c8a, 0x00000000}},  //   _búsq, _déca, treš,\n  { {0x057700b6, 0x4444006b, 0x75e037eb, 0x00000000}},  //   וגים_, nq_, _közb,\n  { {0x69de00f4, 0x6fd50062, 0x6fdc0068, 0x00000000}},  //   _alpe, _nách, _féca,\n  { {0x3ead01ee, 0x753c0036, 0x00000000, 0x00000000}},  //   cvet_, _ogrz,   ,\n  { {0xa3ab03d7, 0x20140046, 0x2baf0061, 0x00000000}},  //   _कोई_, ścią_, _जोरा,\n  { {0x6d4a0066, 0x2905014a, 0x00000000, 0x00000000}},  //   _iffa, çla_,   ,\n  { {0xdc2b007a, 0x290501d5, 0xf7730076, 0x00000000}},  //   _بسته_, ħla_, ضار_,\n  { {0x644e0580, 0x444401d5, 0x6b9d0089, 0x00000000}},  // [c390] _atbi, eq_, mesg,\n  { {0x645c018e, 0x7dc401aa, 0x6b9d005b, 0x00000000}},  //   _bwri, _pòsy, lesg,\n  { {0x776409f7, 0x79850093, 0x645c0016, 0x00000000}},  //   baix, _ichw, _cwri,\n  { {0x644100f4, 0x77641396, 0x6b9d3380, 0x00000000}},  //   _élim, caix, nesg,\n  { {0x224d0066, 0x6d4a0bdc, 0x44440146, 0x00000000}},  //   _qtek_, _offa, aq_,\n  { {0x7ff5026c, 0x27ff10b9, 0x645c0016, 0x00000000}},  //   کستا, čunu_, _fwri,\n  { {0x44441339, 0x6b9d02e1, 0x798500e7, 0x00000000}},  //   cq_, kesg, _mchw,\n  { {0x799c0036, 0x6d4a37ec, 0x7bcd238e, 0x00000000}},  //   zerw, _affa, _noau,\n  { {0x63bb001a, 0xcdf50a78, 0x799c004a, 0x00000000}},  //   _inun, ечны, yerw,\n  { {0x7bdf0211, 0x3ead0030, 0x63a90678, 0x00000000}},  //   _alqu, rvet_, _haen,\n  { {0x3ead0059, 0x63a90217, 0x799c1e7c, 0x00000000}},  //   svet_, _kaen, verw,\n  { {0xff5301f7, 0x6d4a0b73, 0x7bcd00d4, 0x00000000}},  //   _شخص_, _effa, _coau,\n  { {0x63a937ed, 0x799c010f, 0x7cca006b, 0x00000000}},  //   _maen, terw, lərl,\n  { {0x63a9006c, 0x69c1006c, 0x7bdf004a, 0x00000000}},  //   _laen, ölep, _elqu,\n  { {0x799c37ee, 0x63bb0279, 0x98aa005d, 0x00000000}},  //   rerw, _onun, tabı_,\n  { {0x07a301fb, 0x63a937ef, 0x799c0036, 0x00000000}},  //   ласн, _naen, serw,\n  { {0xd7070175, 0x7cca006b, 0x6aa400e7, 0x00000000}},  // [c3a0] енте_, hərl, _usif,\n  { {0xe617261d, 0x2a570097, 0xf0a50011, 0x00000000}},  //   еду_, _רבין_, _đàng_,\n  { {0x6fd5008e, 0x63a9005b, 0x628b01c3, 0x00000000}},  //   _tách, _baen, etgo,\n  { {0x6fd50489, 0x65650487, 0x63a90544, 0x00000000}},  //   _fáci, aahh, _caen,\n  { {0xa3e602d2, 0x7985018e, 0xdbc737f0, 0x00000000}},  //   योग_, _ychw, _tööl,\n  { {0x63bb0035, 0x645c0016, 0x7cca006b, 0x00000000}},  //   _enun, _twri, fərl,\n  { {0x66030822, 0x644e0073, 0x63a903c5, 0x00000000}},  //   _спра, _utbi, _faen,\n  { {0xb4be001c, 0x291a11eb, 0x3a3a37f1, 0x00000000}},  //   ेही_, _mypa_, _lipp_,\n  { {0x25aa016c, 0x628b02c2, 0x43750098, 0x00000000}},  //   _kabl_, ctgo, _јуст,\n  { {0x7cca005f, 0x63a90059, 0x00000000, 0x00000000}},  //   bərl, _zaen,   ,\n  { {0x67fb00b0, 0x63a930c3, 0x7fd60088, 0x00000000}},  //   näjä, _yaen, _піді,\n  { {0x7985001f, 0x6805007f, 0x00000000, 0x00000000}},  //   _schw, kėda,   ,\n  { {0x6b9d022b, 0xd00f0025, 0xdd92023c, 0x00000000}},  //   resg, _الن_, _موش_,\n  { {0x3ea60052, 0x6805007f, 0xa2c10061, 0x00000000}},  //   _isot_, dėda, लमत्,\n  { {0x2d9e006c, 0x4e17009b, 0x3a3a2442, 0x00000000}},  //   mete_, _רחוב_, _dipp_,\n  { {0x6fdc009d, 0x7c8302dc, 0x7bdf06d2, 0x00000000}},  //   _méco, _суше, _ulqu,\n  { {0x4735007e, 0xb8c8013d, 0x65650c2c, 0x00000000}},  // [c3b0] тнас, _खै_, tahh,\n  { {0x7cca006b, 0x395401dc, 0x79850036, 0x00000000}},  //   yərl, časí_, _uchw,\n  { {0xf1bf001d, 0xe1f10014, 0x63a937f2, 0x00000000}},  //   _đá_, یست_, _paen,\n  { {0xe8d600b6, 0x2d9e006c, 0xa85600b3, 0x00000000}},  //   _יותר_, hete_, _שירה_,\n  { {0x2d9e1067, 0x63a9006c, 0xa2c10061, 0x00000000}},  //   kete_, _vaen, लमध्,\n  { {0x2d9e045e, 0x4b38007b, 0xf9940049, 0x00000000}},  //   jete_, ׂראל_, ָרק_,\n  { {0x628b00b5, 0x91e2004c, 0x3ea600e0, 0x00000000}},  //   stgo, роще, _asot_,\n  { {0x6fdc028c, 0x7e69006c, 0x63bb0b48, 0x00000000}},  //   _déco, tsep, _unun,\n  { {0x6fdc0df9, 0x2d9e0b24, 0x7f49009d, 0x00000000}},  //   _técn, fete_, rceq,\n  { {0x7e6904cb, 0x6fdc009d, 0x3f860035, 0x00000000}},  //   rsep, _féco, _ecou_,\n  { {0x7e6914ac, 0x3ea60089, 0x2b4b0022, 0x00000000}},  //   ssep, _esot_, fccc_,\n  { {0xe73f0011, 0x3a3a0022, 0x316701a2, 0x00000000}},  //   _ngõ_, _sipp_, lanz_,\n  { {0x2d9e277a, 0x442f11c7, 0x3a3a0145, 0x00000000}},  //   bete_, img_, _pipp_,\n  { {0x2d9e0428, 0x316701a2, 0x00000000, 0x00000000}},  //   cete_, nanz_,   ,\n  { {0xfce50256, 0x98b80089, 0x00000000, 0x00000000}},  //   _шоко, mbrī_,   ,\n  { {0x2b4b0061, 0x61e1010e, 0x00000000, 0x00000000}},  //   cccc_, _llll,   ,\n  { {0x36670265, 0x3a3a37f3, 0x3a260794, 0x00000000}},  // [c3c0] като_, _tipp_, _имиг,\n  { {0x67fb021e, 0x7a7b0097, 0x68050006, 0x00000000}},  //   täjä, _קריס, rėda,\n  { {0x80a1013d, 0x00000000, 0x00000000, 0x00000000}},  //   _कैले,   ,   ,\n  { {0xdb04076a, 0x69dc0190, 0x6fdc12a3, 0x00000000}},  //   _unió, lkre, _réco,\n  { {0x6fdc00f4, 0x2d9e09e5, 0x25aa0016, 0x00000000}},  //   _décl, yete_, _tabl_,\n  { {0xa13c0089, 0x6fd500fa, 0x442f06c0, 0x00000000}},  //   _kaķi, _mácu, amg_,\n  { {0x75e0014a, 0x2ca70082, 0x00000000, 0x00000000}},  //   _göza, _nsnd_,   ,\n  { {0x2d870051, 0x2d9e0007, 0x08770049, 0x00000000}},  //   _acne_, wete_, דעקט_,\n  { {0x2d9e008d, 0x7d1d005f, 0x69dc17a9, 0x00000000}},  //   tete_, əssi, kkre,\n  { {0xf77f014a, 0x00000000, 0x00000000, 0x00000000}},  //   _ilçe_,   ,   ,\n  { {0x2d9e0eb5, 0xdfd200a2, 0x69dc0036, 0x00000000}},  //   rete_, _پيش_, dkre,\n  { {0x40ab04e1, 0x8fa600ed, 0x10690025, 0x00000000}},  //   _زخمی_, _јаде, _أحلى_,\n  { {0x2d9e1733, 0x6ab60016, 0x69dc0146, 0x00000000}},  //   pete_, _cryf, fkre,\n  { {0x442f0061, 0xc333034e, 0x6ab601d6, 0x00000000}},  //   zmg_, יור_, _dryf,\n  { {0xd83b007e, 0x6d5a0023, 0x7c86007c, 0x00000000}},  //   дэа_, mbta, _руле,\n  { {0x5fc50061, 0x6d5a0006, 0x3f84008a, 0x00000000}},  //   वायल, lbta, ngmu_,\n  { {0x6ab637f4, 0x6fdc00f4, 0x66e400e2, 0x00000000}},  // [c3d0] _gryf, _récl, аоѓа,\n  { {0x69dc0210, 0x00000000, 0x00000000, 0x00000000}},  //   ckre,   ,   ,\n  { {0xdb1d0004, 0x601e0065, 0x316701de, 0x00000000}},  //   rksõ, rëmj, vanz_,\n  { {0x2458008b, 0x7bdd05e0, 0x00000000, 0x00000000}},  //   таць_, nksu,   ,\n  { {0xe3b0007a, 0x81ac0044, 0x316701a2, 0x00000000}},  //   ترل_, গান_, tanz_,\n  { {0x6fd500dc, 0xbbd00204, 0x2fcf0026, 0x00000000}},  //   _láct, _हक्क, _sogg_,\n  { {0x26100061, 0x51840088, 0x316701a2, 0x00000000}},  //   तकरी_, руча, ranz_,\n  { {0xfe7900b9, 0xa3ab013d, 0x7bdd00d9, 0x00000000}},  //   trů_, _कोच_, jksu,\n  { {0xee390265, 0x327900a1, 0x00000000, 0x00000000}},  //   нни_, _سماج_,   ,\n  { {0x2b9e0082, 0x00000000, 0x00000000, 0x00000000}},  //   _ắc_,   ,   ,\n  { {0x90551606, 0xd084007c, 0x00000000, 0x00000000}},  //   _свец, _вычи,   ,\n  { {0x50da0049, 0x00000000, 0x00000000, 0x00000000}},  //   _אקעא,   ,   ,\n  { {0xf4120049, 0x00000000, 0x00000000, 0x00000000}},  //   מפט_,   ,   ,\n  { {0x6fd500c4, 0x7bdd109a, 0x00000000, 0x00000000}},  //   _vácu, aksu,   ,\n  { {0xdd8e03ec, 0xdb0400c4, 0x6fd5004a, 0x00000000}},  //   _روي_, _baiã, _fáct,\n  { {0x69dc0056, 0x61f8037e, 0xad1a0097, 0x00000000}},  //   skre, zivl, _אוצר,\n  { {0x2d8537f5, 0x857a003b, 0x25a101a2, 0x00000000}},  // [c3e0] ogle_, есет_, fehl_,\n  { {0x2d850038, 0x2904006b, 0xe9a6003b, 0x00000000}},  //   ngle_, şmaq_, _саоп,\n  { {0xdcea0521, 0x61f8032e, 0x4ad8009e, 0x00000000}},  //   ćiće, vivl, _ساکھ_,\n  { {0xb5fb00b9, 0xa4f40061, 0x130a0a78, 0x00000000}},  //   _svát, _आधीच_, нней_,\n  { {0x9f440065, 0x61f8006b, 0x00000000, 0x00000000}},  //   shmë_, tivl,   ,\n  { {0x15430517, 0xf1260088, 0xfaff01c3, 0x00000000}},  //   _герм, льйо, daël_,\n  { {0x7cca013f, 0x61f804eb, 0x64430048, 0x00000000}},  //   rərk, rivl, ínit,\n  { {0x4fd4007c, 0x3eca003b, 0x00000000, 0x00000000}},  //   ржит, ећом_,   ,\n  { {0x7e7b0292, 0x63a205a8, 0x7306005e, 0x00000000}},  //   grup, meon, _спаз,\n  { {0x7cca0163, 0x211a0054, 0x27130011, 0x00000000}},  //   ləri, _كتاب_, ệng_,\n  { {0x4c94007c, 0x7c6601b7, 0xdb04000c, 0x00000000}},  //   шинс, داخل, _snið,\n  { {0x63a20061, 0x201f0181, 0x7e7b06c2, 0x00000000}},  //   neon, clui_, brup,\n  { {0x7e7b10c9, 0x7dd600e5, 0x00000000, 0x00000000}},  //   crup, _bâst,   ,\n  { {0x7cca005f, 0x63a20048, 0xcee900a1, 0x00000000}},  //   həri, heon, _جرمن_,\n  { {0x6fd5008e, 0xe9190088, 0x63a201d6, 0x00000000}},  //   _táct, тові_, keon,\n  { {0xb88600c4, 0x0ea8013d, 0x69c800f8, 0x00000000}},  //   _suíç, _कनाड, öder,\n  { {0x63a209f4, 0x7c2d002d, 0x6fc50204, 0x00000000}},  // [c3f0] deon, _ihar, वातं,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7c2d09f5, 0x7cca006b, 0x06d60044, 0x00000000}},  //   _khar, fəri, _সেদি,\n  { {0x43950816, 0x7c2d0003, 0x63a2009d, 0x00000000}},  //   радс, _jhar, geon,\n  { {0x7c2d37f6, 0x27e90051, 0x75e00010, 0x00000000}},  //   _mhar, mhan_, _közl,\n  { {0x27e9006a, 0x867a009b, 0xf67a00a3, 0x00000000}},  //   lhan_, _ברשו, _באשמ,\n  { {0x7c2d37f7, 0xc0e50242, 0x7cca006b, 0x00000000}},  //   _ohar, ройк, bəri,\n  { {0x7e7b0190, 0x27e900b0, 0x201f001a, 0x00000000}},  //   trup, nhan_, ului_,\n  { {0x6fdc009d, 0x64470020, 0xdce10089, 0x00000000}},  //   _méch, _huji, dalā,\n  { {0x7e7b070e, 0x6447000b, 0x4d65003b, 0x00000000}},  //   rrup, _kuji, шков,\n  { {0x7c2d37f8, 0x1d090751, 0x442d0011, 0x00000000}},  //   _bhar, тени_, _khe_,\n  { {0x6447000b, 0x443f001a, 0xca29009b, 0x00000000}},  //   _muji, _jiu_, _חם_,\n  { {0xaa4601fb, 0x7c2d1ff1, 0xfc490011, 0x00000000}},  //   регл, _dhar, _bậc_,\n  { {0x442d0181, 0x7cca006b, 0x2fcd0091, 0x00000000}},  //   _lhe_, zəri, ljeg_,\n  { {0x6d430006, 0x7a20010f, 0xa967013b, 0x00000000}},  //   _igna, nöti, риса_,\n  { {0x27e90319, 0x7c2d37f9, 0x290c01d5, 0x00000000}},  //   ghan_, _ghar, ħda_,\n\n  { {0x6fdc00f4, 0x645537fa, 0xe61a0ab6, 0x00000000}},  // [c400] _déch, _atzi, вда_,\n  { {0x75e0038c, 0x056700b9, 0x6e210082, 0x00000000}},  //   _gözl, říně_, nllb,\n  { {0xb97b00b6, 0x8506004b, 0x766300b9, 0x00000000}},  //   _בניי, جوان, _čtyř,\n  { {0x442d05d3, 0x27e92b15, 0x443f0129, 0x00000000}},  //   _che_, chan_, _ciu_,\n  { {0x442d048a, 0x443f04bd, 0x31c6005e, 0x00000000}},  //   _dhe_, _diu_, искв,\n  { {0xc569025a, 0x63a201ee, 0x442d01a2, 0x00000000}},  //   _محفل_, seon, _ehe_,\n  { {0x443f001a, 0x7e620022, 0x92d60044, 0x00000000}},  //   _fiu_, _swop, াছে_,\n  { {0x27e0021e, 0x06cd0055, 0x7e620263, 0x00000000}},  //   nkin_, _রেটি, _pwop,\n  { {0x41aa358a, 0x27e037fb, 0xf4020035, 0x00000000}},  //   _иван_, ikin_, riţă_,\n  { {0x7c2d0038, 0x2d8a014a, 0x644020bb, 0x00000000}},  //   _shar, übe_, _himi,\n  { {0xa5b70049, 0x644137fc, 0x2702013d, 0x00000000}},  //   בליק_, _élit, लपुर_,\n  { {0x75e001f6, 0xcfd00044, 0x7e6237fd, 0x00000000}},  //   _sözl, ়োজন, _twop,\n  { {0x644001ca, 0x6fdc04ad, 0x6d5c014a, 0x00000000}},  //   _mimi, _réch, ırab,\n  { {0x27e0022b, 0x6fdc009d, 0x27e90058, 0x00000000}},  //   ekin_, _séch, whan_,\n  { {0x6c840025, 0x27e90051, 0x98480265, 0x00000000}},  //   _العم, than_, ията_,\n  { {0x644037fe, 0x7c2d2367, 0xf7730025, 0x00000000}},  //   _nimi, _uhar, غاز_,\n  { {0x443f0129, 0x27e915df, 0x06cd0044, 0x00000000}},  // [c410] _riu_, rhan_, _রেজি,\n  { {0x442d0038, 0x6fdc37ff, 0x27e93800, 0x00000000}},  //   _she_, _déci, shan_,\n  { {0xf8b1007a, 0x27e9063c, 0x443f0198, 0x00000000}},  //   _عکس_, phan_, _piu_,\n  { {0x27e01241, 0x98a1001d, 0x644721f9, 0x00000000}},  //   ckin_, _nghĩ_, _vuji,\n  { {0x443f3801, 0x479a009b, 0x442d2d4d, 0x00000000}},  //   _viu_, _גירס, _vhe_,\n  { {0x64472a0a, 0x764d006b, 0x442d00e0, 0x00000000}},  //   _tuji, mqay, _whe_,\n  { {0x442d2735, 0x6455002d, 0xd178007e, 0x00000000}},  //   _the_, _utzi, рсіі_,\n  { {0x64400006, 0x91780011, 0x00000000, 0x00000000}},  //   _gimi, _với_,   ,\n  { {0xfe710025, 0x6d4300e0, 0xa1590900, 0x00000000}},  //   أدب_, _pgna, _базу_,\n  { {0x27e0022b, 0x3f770011, 0x61ea01a2, 0x00000000}},  //   zkin_, ểu_, chfl,\n  { {0x27e00052, 0xd4790049, 0xcb6a0269, 0x00000000}},  //   ykin_, װאָל, лане_,\n  { {0x6b8d00d9, 0x00000000, 0x00000000, 0x00000000}},  //   _ccag,   ,   ,\n  { {0xdfb80137, 0x6d4300e0, 0x00000000, 0x00000000}},  //   _خالص_, _tgna,   ,\n  { {0x6fdc00f4, 0x6d43006a, 0xed5610d8, 0x00000000}},  //   _réci, _ugna, _лош_,\n  { {0x27e0021e, 0xc8b50783, 0x6aad0026, 0x00000000}},  //   tkin_, осты, _esaf,\n  { {0x27e01241, 0x30da0049, 0xf77f00f6, 0x00000000}},  //   ukin_, אַמע, _plça_,\n  { {0x27e000b0, 0x64400207, 0x7bc4011c, 0x00000000}},  // [c420] rkin_, _rimi, _iniu,\n  { {0xc9aa0bba, 0xdce30c8a, 0x00000000, 0x00000000}},  //   _свое_, _lenč,   ,\n  { {0xc7a6017a, 0x64403802, 0x7bd6014a, 0x00000000}},  //   _линк, _pimi, _koyu,\n  { {0xdb0400c4, 0x320700b4, 0x00000000, 0x00000000}},  //   _caiç, enny_,   ,\n  { {0x6440027b, 0x9f91000c, 0xe29600ed, 0x00000000}},  //   _vimi, _ráð_, среќ,\n  { {0xd46a06b4, 0x00000000, 0x00000000, 0x00000000}},  //   _محرم_,   ,   ,\n  { {0x64400585, 0x00000000, 0x00000000, 0x00000000}},  //   _timi,   ,   ,\n  { {0xa85700b6, 0x64400cc7, 0x61ea0253, 0x00000000}},  //   זיקה_, _uimi, shfl,\n  { {0xdce3012d, 0x437500e2, 0x00000000, 0x00000000}},  //   _denč, _фуст,   ,\n  { {0x6b8d3803, 0x2d990010, 0x9f44004a, 0x00000000}},  //   _scag, ősen_, timó_,\n  { {0x7bd6047f, 0x25f0013d, 0x459b0049, 0x00000000}},  //   _boyu, _इतनी_, נסטע,\n  { {0x7bd6008e, 0xac1916c1, 0x0ed800a1, 0x00000000}},  //   _coyu, рому_, _پاؤں_,\n  { {0xa3d0007d, 0x7bd6019a, 0x00000000, 0x00000000}},  //   _वचन_, _doyu,   ,\n  { {0x2d570057, 0x00000000, 0x00000000, 0x00000000}},  //   _лишь_,   ,   ,\n  { {0xfc490011, 0x06d60044, 0x6805007f, 0x00000000}},  //   _hận_, _সেলি, lėdi,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6aad0020, 0x9f4600d9, 0x00000000, 0x00000000}},  // [c430] _usaf, _aloë_,   ,\n  { {0x9967041f, 0xfc490082, 0x00000000, 0x00000000}},  //   _утил, _mận_,   ,\n  { {0xfc490082, 0x69c5112b, 0x00000000, 0x00000000}},  //   _lận_, _inhe,   ,\n  { {0x7cca006b, 0x321e1c10, 0x61fa01a2, 0x00000000}},  //   lərs, _akty_, _amtl,\n  { {0x3abc0049, 0xdce33804, 0x00000000, 0x00000000}},  //   ָמונ, _renč,   ,\n  { {0xd4e70d99, 0x51870057, 0x95cb07e1, 0x00000000}},  //   _люби, суда, _сума_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x403200ed, 0xb0680025, 0xfc490011, 0x00000000}},  //   мејс, حصول_, _bận_,\n  { {0xdce311e4, 0x6006008b, 0xfc490011, 0x00000000}},  //   _venč, ўным_, _cận_,\n  { {0x7bd60279, 0x00000000, 0x00000000, 0x00000000}},  //   _soyu,   ,   ,\n  { {0x2d8e0009, 0xddc92dff, 0x2cae0062, 0x00000000}},  //   _dcfe_, prež, _csfd_,\n  { {0x7bd6005f, 0x69c50016, 0xeaba004d, 0x00000000}},  //   _qoyu, _anhe, айм_,\n  { {0x81ac0044, 0x201800fa, 0x00000000, 0x00000000}},  //   গার_, _íria_,   ,\n  { {0xfce50373, 0xed5904b6, 0xa9670478, 0x00000000}},  //   _моло, _ток_, жира_,\n  { {0xd94301fc, 0x186a02dc, 0x7bd63805, 0x00000000}},  //   дери, раби_, _toyu,\n  { {0x69c5063b, 0x7bc4001a, 0x13b10044, 0x00000000}},  //   _enhe, _uniu, ছাড়,\n  { {0x2fc00051, 0x00000000, 0x00000000, 0x00000000}},  // [c440] _óige_,   ,   ,\n  { {0x6fdc008e, 0x7c263806, 0x75e00010, 0x00000000}},  //   _héct, llkr, _közi,\n  { {0xdd7a007b, 0xfecf0044, 0xb8ff0044, 0x00000000}},  //   שטעל, িনিধ, _দে_,\n  { {0x03260517, 0xdc8c0049, 0x00000000, 0x00000000}},  //   оден, רװאָ,   ,\n  { {0xdc370049, 0x7791025a, 0x81b30044, 0x00000000}},  //   קאנט_, _سیلا, টান_,\n  { {0x845a0545, 0x91e301ab, 0x7c2601a2, 0x00000000}},  //   _врат_, моче, hlkr,\n  { {0x7cca006b, 0x00000000, 0x00000000, 0x00000000}},  //   hərr,   ,   ,\n  { {0x645e00b0, 0x30170025, 0x6fdc0325, 0x00000000}},  //   mppi, يتية_, _néct,\n  { {0x44260016, 0x3eaf0082, 0x00000000, 0x00000000}},  //   mlo_, _csgt_,   ,\n  { {0x4426051b, 0xfc49001d, 0x6fdc00f4, 0x00000000}},  //   llo_, _vận_, _récu,\n  { {0x6fdc0be0, 0xa3ae01f5, 0x44260207, 0x00000000}},  //   _sécu, _कसा_, olo_,\n  { {0x44261062, 0xfc490011, 0x7a200010, 0x00000000}},  //   nlo_, _tận_, zött,\n  { {0x44262346, 0x7cca006b, 0x00000000, 0x00000000}},  //   ilo_, tərs,   ,\n  { {0x9e65007a, 0x44263807, 0x6fdc009d, 0x00000000}},  //   _راهن, hlo_, _vécu,\n  { {0x628200bb, 0x7cca006b, 0xdcf80095, 0x00000000}},  //   hroo, rərs, _tavı,\n  { {0x62823808, 0x44260107, 0x7df901dc, 0x00000000}},  //   kroo, jlo_, yňsk,\n  { {0x44260428, 0xdce3001e, 0x7a200010, 0x00000000}},  // [c450] dlo_, _ienā, tött,\n  { {0x44260211, 0x2d8c0374, 0x628200ab, 0x00000000}},  //   elo_, ngde_, droo,\n  { {0x2fc60091, 0x321c0161, 0x2d8c2a27, 0x00000000}},  //   _onog_, dovy_, igde_,\n  { {0x44260119, 0x00000000, 0x00000000, 0x00000000}},  //   glo_,   ,   ,\n  { {0xa75600b6, 0x62820112, 0x59df0316, 0x00000000}},  //   _משרד_, groo, _नकार,\n  { {0x2166005e, 0xe1f8007e, 0x00000000, 0x00000000}},  //   пиши_, огі_,   ,\n  { {0x44260219, 0x00000000, 0x00000000, 0x00000000}},  //   blo_,   ,   ,\n  { {0x628201d6, 0xefc905b5, 0xa295013a, 0x00000000}},  //   broo, слил_, _набі,\n  { {0x6282008e, 0x2fc6012d, 0x6d5c0276, 0x00000000}},  //   croo, _dnog_, ıran,\n  { {0x271a0011, 0x4c85004c, 0x236d0190, 0x00000000}},  //   ỏng_, плов, _heej_,\n  { {0x2904019a, 0x7c950025, 0x00000000, 0x00000000}},  //   şmaz_, أشخا,   ,\n  { {0xfaa6008b, 0xeb9a0194, 0xade90014, 0x00000000}},  //   памо, щим_, _گفتم_,\n  { {0x67ea000c, 0x00000000, 0x00000000, 0x00000000}},  //   _nýja,   ,   ,\n  { {0xceb2061e, 0x44262bd5, 0x98560088, 0x00000000}},  //   _ניו_, zlo_, зташ,\n  { {0xdca201be, 0x44260016, 0x75e00010, 0x00000000}},  //   _защи, ylo_, _közv,\n  { {0x6282006a, 0x68430264, 0xdb0400c4, 0x00000000}},  //   yroo, енса, _maiú,\n  { {0x44260173, 0x2c0b025a, 0xe73701ab, 0x00000000}},  // [c460] vlo_, _دعوی_, зет_,\n  { {0x8afb009b, 0x00000000, 0x00000000, 0x00000000}},  //   _להפי,   ,   ,\n  { {0x44261144, 0x89db019b, 0x62823809, 0x00000000}},  //   tlo_, _החיי, wroo,\n  { {0x628201b5, 0xd4690025, 0xc3150044, 0x00000000}},  //   troo, تحكم_, ়েছি_,\n  { {0x44260817, 0xf1c70061, 0x224d0093, 0x00000000}},  //   rlo_, लांन, _cuek_,\n  { {0x98b801f6, 0x442607e4, 0x6282010e, 0x00000000}},  //   ları_, slo_, rroo,\n  { {0x64a3008b, 0x628201d6, 0xd12f0439, 0x00000000}},  //   _пара, sroo, همه_,\n  { {0x644e000d, 0x6282006c, 0x661e00ca, 0x00000000}},  //   _iubi, proo, lopk,\n  { {0x644e0211, 0x656e0022, 0xdce30089, 0x00000000}},  //   _hubi, _kebh, _renā,\n  { {0x644e0dc6, 0x2d8c01bb, 0x67260292, 0x00000000}},  //   _kubi, ugde_, _mykj,\n  { {0x6fdc00f4, 0x98b801df, 0x515b00b3, 0x00000000}},  //   _décr, karı_, _הכבו,\n  { {0x644e380a, 0x2d82014a, 0x7f4a0025, 0x00000000}},  //   _mubi, şke_, _الإق_,\n  { {0x644e0036, 0xdfcf0379, 0x98b80279, 0x00000000}},  //   _lubi, _حين_, darı_,\n  { {0x644e0173, 0x00000000, 0x00000000, 0x00000000}},  //   _oubi,   ,   ,\n  { {0x6aa4380b, 0x645c01f3, 0x59f8005e, 0x00000000}},  //   _epif, _ntri, черя_,\n  { {0xfc15007e, 0x27eb0026, 0xcce50439, 0x00000000}},  //   _імпэ, _qlcn_, _تسهي,\n  { {0x35b5003b, 0x644e009d, 0x95d9003b, 0x00000000}},  // [c470] мбар, _aubi, одат_,\n  { {0x7aef01df, 0x644e380c, 0x3f83007f, 0x00000000}},  //   ıntı, _bubi, ėjui_,\n  { {0x644e0211, 0x98b80276, 0xdcf301ee, 0x00000000}},  //   _cubi, barı_, ćaće,\n  { {0x644e0091, 0x645c0048, 0x22450133, 0x00000000}},  //   _dubi, _dtri, _silk_,\n  { {0x92390077, 0xfc490082, 0x2245010e, 0x00000000}},  //   очку_, _rậm_, _pilk_,\n  { {0xed460014, 0x644e160b, 0x765d225f, 0x00000000}},  //   _لپ_, _fubi, _itsy,\n  { {0x644e0091, 0xf484003b, 0x6fdc009d, 0x00000000}},  //   _gubi, _путн, _récr,\n  { {0x6d5801b5, 0x7ff503ec, 0x6b9d00bb, 0x00000000}},  //   _afva, بستا, jfsg,\n  { {0x644e380d, 0x76470009, 0xddc20087, 0x00000000}},  //   _zubi, _kijy, _dvož,\n  { {0x63ab0030, 0x644e006b, 0x628b0058, 0x00000000}},  //   legn, _yubi, mugo,\n  { {0x6448028c, 0x628b03dd, 0x6aa40085, 0x00000000}},  //   _édit, lugo, _spif,\n  { {0x6b8f001c, 0x2734009f, 0xddc20107, 0x00000000}},  //   ggcg, _júní_, _gvož,\n  { {0x0f5600b6, 0xce3500a1, 0x75e00010, 0x00000000}},  //   _חינם_, _ہوچک, _közt,\n  { {0xbea2003b, 0x997d0089, 0x00000000, 0x00000000}},  //   _рашк, tāšu_,   ,\n  { {0x656e11f0, 0x200d00fa, 0x628b0058, 0x00000000}},  //   _rebh, onei_, hugo,\n  { {0x6b8f001c, 0x644e0e1d, 0x5d440049, 0x00000000}},  //   cgcg, _rubi, _אָפּ_,\n  { {0x644e0375, 0xcf92007b, 0x7c241786, 0x00000000}},  // [c480] _subi, כטן_, _ikir,\n  { {0x628b1431, 0xf98a0014, 0xe57a007e, 0x00000000}},  //   dugo, _بندي_, ізе_,\n  { {0x76470173, 0xe3ba003b, 0xb4e8007d, 0x00000000}},  //   _dijy, жбе_, यने_,\n  { {0x62990719, 0x63ab09fa, 0xd90d026c, 0x00000000}},  //   ftwo, gegn, _ایف_,\n  { {0xf773009b, 0x66840123, 0x764f0009, 0x00000000}},  //   _בקר_, _سیال, _gucy,\n  { {0x644e006a, 0x200d02eb, 0x00000000, 0x00000000}},  //   _tubi, enei_,   ,\n  { {0x645c201a, 0x63ab0229, 0x92ce0044, 0x00000000}},  //   _utri, begn, শনে_,\n  { {0xdfd00054, 0xd7d10061, 0x76470009, 0x00000000}},  //   اية_, हायच, _zijy,\n  { {0x8d8602dc, 0x8fa3025f, 0x4424008a, 0x00000000}},  //   мунд, тање, _ikm_,\n  { {0x7c243551, 0x25b81bea, 0x200d001a, 0x00000000}},  //   _akir, _jarl_, anei_,\n  { {0x6b8f001c, 0x44240145, 0x6e281575, 0x00000000}},  //   tgcg, _kkm_, rldb,\n  { {0x7c360016, 0x26c20501, 0x75e00010, 0x00000000}},  //   _chyr, _orko_, _közs,\n  { {0x20040890, 0x6b9d09cb, 0x6e930025, 0x00000000}},  //   mimi_, rfsg, _للنا,\n  { {0x200402ba, 0x7c241489, 0x44240022, 0x00000000}},  //   limi_, _ekir, _lkm_,\n  { {0xa3ae001c, 0x26c20058, 0x6da30098, 0x00000000}},  //   _कसं_, _arko_, _рија,\n  { {0x2004253f, 0x2d9e380e, 0x00000000, 0x00000000}},  //   nimi_, lfte_,   ,\n  { {0x98af047f, 0x63ab380f, 0xc6f9005e, 0x00000000}},  // [c490] ınız_, vegn, чнах_,\n  { {0x25b805ad, 0x20040065, 0x44240145, 0x00000000}},  //   _carl_, himi_, _akm_,\n  { {0x20041e8d, 0x3914007e, 0xe7590088, 0x00000000}},  //   kimi_, _амэр, _нині_,\n  { {0x6299010f, 0xb5fb0051, 0x628b1fe8, 0x00000000}},  //   ttwo, _stád, tugo,\n  { {0x63ab05b7, 0x27e9020c, 0xe94500d3, 0x00000000}},  //   regn, mkan_, _ترکی,\n  { {0x63ab0198, 0x27e9020c, 0x9f98000c, 0x00000000}},  //   segn, lkan_, _séð_,\n  { {0x545400ed, 0x63ab0207, 0x44240022, 0x00000000}},  //   _авст, pegn, _fkm_,\n  { {0x27e9020c, 0x2004166f, 0x44241856, 0x00000000}},  //   nkan_, gimi_, _gkm_,\n  { {0x27e93810, 0x200d237d, 0x521503e8, 0x00000000}},  //   ikan_, rnei_, _здат,\n  { {0x27e9020c, 0xee36045a, 0xef16007e, 0x00000000}},  //   hkan_, нны_, эмы_,\n  { {0x27e93811, 0x20040065, 0xdb0a00b9, 0x00000000}},  //   kkan_, bimi_, čním,\n  { {0xca2900b6, 0x3015004c, 0x645a009d, 0x00000000}},  //   _הם_, _ядер, _étie,\n  { {0x27e904cb, 0x00000000, 0x00000000, 0x00000000}},  //   dkan_,   ,   ,\n  { {0x67e30004, 0xdddb013e, 0x64490544, 0x00000000}},  //   _mõju, bruš, _liei,\n  { {0x27e904cb, 0x27f20016, 0x7c360133, 0x00000000}},  //   fkan_, thyn_, _thyr,\n  { {0x25b800f4, 0x7c241b81, 0x27e92544, 0x00000000}},  //   _sarl_, _ukir, gkan_,\n  { {0x25b80068, 0x225f033b, 0x00000000, 0x00000000}},  // [c4a0] _parl_, _ntuk_,   ,\n  { {0x2004008d, 0x6e21018e, 0x44240145, 0x00000000}},  //   zimi_, nolb, _skm_,\n  { {0x27e9027e, 0x20040279, 0x442405cd, 0x00000000}},  //   bkan_, yimi_, _pkm_,\n  { {0xe29a0057, 0x27e90073, 0xd36f0025, 0x00000000}},  //   зад_, ckan_, مهم_,\n  { {0xd3230e09, 0x2004024f, 0x2ca70093, 0x00000000}},  //   льши, vimi_, _lpnd_,\n  { {0x69de002b, 0xf48402fd, 0x6e2100f6, 0x00000000}},  //   _jope, _لاری, jolb,\n  { {0x2004153a, 0x69de201a, 0x6722001e, 0x00000000}},  //   timi_, _mope, ļoju,\n  { {0x69de0dd7, 0x44240169, 0x04430216, 0x00000000}},  //   _lope, _ukm_, _бесн,\n  { {0x2004152b, 0x26c00197, 0x69de010e, 0x00000000}},  //   rimi_, nvio_, _oope,\n  { {0xdd900151, 0x20043812, 0x69de3813, 0x00000000}},  //   جود_, simi_, _nope,\n  { {0x6f663814, 0x2d9e0c0c, 0xc5f3009b, 0x00000000}},  //   _звез, rfte_, רדת_,\n  { {0x69de1fdb, 0x78550006, 0x00000000, 0x00000000}},  //   _aope, _sąvo,   ,\n  { {0x81b30055, 0x69de0016, 0x6e2108d1, 0x00000000}},  //   টার_, _bope, bolb,\n  { {0x69de0207, 0xc33300a0, 0x3c32004f, 0x00000000}},  //   _cope, טור_, ráva_,\n  { {0x27e9020c, 0x2a6000d9, 0x00000000, 0x00000000}},  //   tkan_, _etib_,   ,\n  { {0xf77301af, 0x00000000, 0x00000000, 0x00000000}},  //   طار_,   ,   ,\n  { {0x27e9020c, 0xf6530a4f, 0x7d2100a1, 0x00000000}},  // [c4b0] rkan_, ائر_, _مہین,\n  { {0x984b2b26, 0x27e9020c, 0x7bdf0129, 0x00000000}},  //   _няма_, skan_, _hoqu,\n  { {0x27e90149, 0x225f01b5, 0x00000000, 0x00000000}},  //   pkan_, _stuk_,   ,\n  { {0x69de0059, 0xe454007e, 0x987a01ce, 0x00000000}},  //   _zope, укцы, _קארט,\n  { {0x64491994, 0x3267003b, 0x7bdf009d, 0x00000000}},  //   _viei, хтев, _moqu,\n  { {0x7bdf029a, 0x814500a1, 0x69de00f6, 0x00000000}},  //   _loqu, نچان, _xope,\n  { {0xd3a7008b, 0x70bd006e, 0x81b30044, 0x00000000}},  //   _прап, ्मेल, টাল_,\n  { {0x442b0011, 0x6d5a00e5, 0x7bdf004a, 0x00000000}},  //   _óc_, ecta, _noqu,\n  { {0xee3900e3, 0x2284105c, 0x75e00010, 0x00000000}},  //   мни_, _бухг, _közp,\n  { {0x63bb3815, 0x6d5a001c, 0x645a029d, 0x00000000}},  //   _haun, gcta, _étic,\n  { {0x63bb010a, 0xa806005d, 0x69de0c78, 0x00000000}},  //   _kaun, lmış, _rope,\n  { {0x63bb0580, 0x7bdf00f4, 0x69de3816, 0x00000000}},  //   _jaun, _coqu, _sope,\n  { {0x63bb011c, 0xa806005d, 0x7bdf004a, 0x00000000}},  //   _maun, nmış, _doqu,\n  { {0x63bb2d8a, 0x32072dd6, 0x26c00197, 0x00000000}},  //   _laun, niny_, vvio_,\n  { {0x7bdf06c0, 0x44c10006, 0x64c50091, 0x00000000}},  //   _foqu, _nė_, nčić,\n  { {0xb8da02fb, 0x63bb011c, 0xa806014a, 0x00000000}},  //   _आई_, _naun, kmış,\n  { {0x69de00b9, 0x7e7b3817, 0x00000000, 0x00000000}},  // [c4c0] _tope, nsup,   ,\n  { {0x26c01389, 0x64c5016c, 0x320704bb, 0x00000000}},  //   rvio_, kčić, jiny_,\n  { {0x32070428, 0x64c50107, 0x63bb3818, 0x00000000}},  //   diny_, jčić, _baun,\n  { {0x63bb01c5, 0x7e7b01b1, 0x7bdf00f6, 0x00000000}},  //   _caun, ksup, _xoqu,\n  { {0x63bb001a, 0x7e7b016c, 0x6f0d012d, 0x00000000}},  //   _daun, jsup, _žacn,\n  { {0x7e7b00f8, 0x00000000, 0x00000000, 0x00000000}},  //   dsup,   ,   ,\n  { {0x63bb0006, 0xc95300b6, 0xfc4a001d, 0x00000000}},  //   _faun, סמה_, _hậu_,\n  { {0x63bb0006, 0x00000000, 0x00000000, 0x00000000}},  //   _gaun,   ,   ,\n  { {0x6d5a001c, 0x7bdf0129, 0x32073819, 0x00000000}},  //   tcta, _roqu, biny_,\n  { {0x63a20007, 0xfc4a0082, 0xa28200a1, 0x00000000}},  //   lfon, _mậu_, _میچو,\n  { {0x7bdf029a, 0x0cd00044, 0xfc4a0011, 0x00000000}},  //   _poqu, ান্ত, _lậu_,\n  { {0x4ea6007c, 0x9f4600fa, 0x00000000, 0x00000000}},  //   _арка, _eloá_,   ,\n  { {0x7e7b00f6, 0xfc3f00f6, 0xdd9201b2, 0x00000000}},  //   csup, rmí_, _نوش_,\n  { {0x7a320030, 0xfc3f00b9, 0x63a20b3a, 0x00000000}},  //   sætn, smí_, hfon,\n  { {0x7bdf029d, 0xa8060279, 0x00000000, 0x00000000}},  //   _toqu, zmış,   ,\n  { {0x7bcd381a, 0x81d80044, 0x00000000, 0x00000000}},  //   _unau, াসি_,   ,\n  { {0x63bb000c, 0xfc4a0011, 0x8aa4007e, 0x00000000}},  // [c4d0] _raun, _cậu_, _крэд,\n  { {0x63bb00b0, 0x63a201d6, 0xfc4a0082, 0x00000000}},  //   _saun, efon, _dậu_,\n  { {0xb9080055, 0x63bb011c, 0x63a20207, 0x00000000}},  //   _মে_, _paun, ffon,\n  { {0x64c50209, 0xa8060279, 0x63a20010, 0x00000000}},  //   včić, tmış, gfon,\n  { {0x32070161, 0x2ba501f5, 0x63bb00b0, 0x00000000}},  //   tiny_, ग्या, _vaun,\n  { {0x40950545, 0xa8060279, 0x63bb11c2, 0x00000000}},  //   грит, rmış, _waun,\n  { {0x7e62049a, 0x63bb14f7, 0xa4d40088, 0x00000000}},  //   _atop, _taun, _корі,\n  { {0x81b30055, 0x7e7b00f8, 0xa806005d, 0x00000000}},  //   টাই_, tsup, pmış,\n  { {0xfc4a001d, 0x32070161, 0xe315003b, 0x00000000}},  //   _mật_, piny_, _смањ,\n  { {0x6455000b, 0x7e7b1864, 0xfc4a0011, 0x00000000}},  //   _kuzi, rsup, _lật_,\n  { {0xd131023c, 0xeb9a013b, 0x7e7b0129, 0x00000000}},  //   _اما_, нин_, ssup,\n  { {0x65750065, 0x7e620009, 0x7ff40167, 0x00000000}},  //   _lezh, _ftop, _پسما,\n  { {0x61e10f68, 0x6da50081, 0x64552e4d, 0x00000000}},  //   _koll, _била, _luzi,\n  { {0x09050055, 0x61e1021e, 0xceb200a0, 0x00000000}},  //   _শুধু_, _joll, _ליד_,\n  { {0xfc4a001d, 0x64550026, 0x63a20009, 0x00000000}},  //   _bật_, _nuzi, yfon,\n  { {0x61e10114, 0xcb7602ea, 0x00000000, 0x00000000}},  //   _loll, _сукњ,   ,\n  { {0x645526c4, 0x6b840032, 0xfc4a0082, 0x00000000}},  // [c4e0] _auzi, _idig, _dật_,\n  { {0x61e1381b, 0x645500b4, 0x7c26381c, 0x00000000}},  //   _noll, _buzi, lokr,\n  { {0x399b0476, 0x64550f6e, 0x65750066, 0x00000000}},  //   _אייד, _cuzi, _dezh,\n  { {0x64550107, 0x2486013c, 0x25f00061, 0x00000000}},  //   _duzi, čom_, _इतकी_,\n  { {0x0cb00164, 0xc694007b, 0x63a202ab, 0x00000000}},  //   _जन्म, _דאָ_, rfon,\n  { {0x61e106da, 0x64550035, 0x80c00061, 0x00000000}},  //   _coll, _fuzi, विले,\n  { {0xee090055, 0x61e12a24, 0x6b840091, 0x00000000}},  //   রকাশ_, _doll, _odig,\n  { {0xd252007a, 0x80d90044, 0x6b840023, 0x00000000}},  //   _هنر_, _ভেঙ্, _ndig,\n  { {0x61e10038, 0x3df4022a, 0x644200b0, 0x00000000}},  //   _foll, изис, mmoi,\n  { {0x57e1001c, 0x61e10f89, 0x6b840207, 0x00000000}},  //   _नव्ह, _goll, _adig,\n  { {0xc223007a, 0xb5fb0049, 0x44260213, 0x00000000}},  //   _اکنو, גליכ, ooo_,\n  { {0x4426381d, 0x764e06d0, 0x6442191b, 0x00000000}},  //   noo_, _liby, nmoi,\n  { {0x61e101f6, 0x6b84018e, 0x80370049, 0x00000000}},  //   _yoll, _ddig, _ענדע_,\n  { {0x44262117, 0x764e04c4, 0x5a340088, 0x00000000}},  //   hoo_, _niby, йнят,\n  { {0x442600b0, 0x7c8600e2, 0xdcea00e5, 0x00000000}},  //   koo_, _суле, _defă,\n  { {0xb8dd03d7, 0xf65f0190, 0x00000000, 0x00000000}},  //   _इन_, _dræn_,   ,\n  { {0x55750797, 0xfc4a001d, 0x64550006, 0x00000000}},  // [c4f0] игат, _vật_, _suzi,\n  { {0x60c806ec, 0xdb040032, 0x00000000, 0x00000000}},  //   _ordm, _gaiñ,   ,\n  { {0x38c90167, 0xfc4a0011, 0x764e0016, 0x00000000}},  //   _شادی_, _tật_, _diby,\n  { {0x61e1001f, 0x4426381e, 0x628b021c, 0x00000000}},  //   _soll, goo_, trgo,\n  { {0x877a00a3, 0x60c8381f, 0x645a3820, 0x00000000}},  //   _בארי, _ardm, _étin,\n  { {0x645501ee, 0x20060145, 0x61e1013f, 0x00000000}},  //   _tuzi, _amoi_, _qoll,\n  { {0x44260253, 0x61e13431, 0x69c60061, 0x00000000}},  //   boo_, _voll, ायती,\n  { {0x3fe50175, 0x61e103a1, 0xd7d80061, 0x00000000}},  //   ржив, _woll, डायच,\n  { {0x61e10eaa, 0x63a9011c, 0xa02401a2, 0x00000000}},  //   _toll, _iben, _stöß,\n  { {0x67ea00b9, 0xdb06014a, 0x00000000, 0x00000000}},  //   _výji, lekç,   ,\n  { {0x7c260010, 0xa28100a1, 0xcb6a0726, 0x00000000}},  //   tokr, _ایڈو, кане_,\n  { {0x92d70055, 0xf047007e, 0x00000000, 0x00000000}},  //   ানী_, _сэзо,   ,\n  { {0x63a900e7, 0x6e67019d, 0x00000000, 0x00000000}},  //   _mben, _стеж,   ,\n  { {0x4426001a, 0xfe7003ec, 0x7c260010, 0x00000000}},  //   zoo_, _رده_, sokr,\n  { {0x63a90e43, 0x44260145, 0xd946019d, 0x00000000}},  //   _oben, yoo_, реви,\n  { {0x6442009d, 0x63a93821, 0x44260249, 0x00000000}},  //   xmoi, _nben, xoo_,\n  { {0x44260052, 0xa6650379, 0x00000000, 0x00000000}},  // [c500] voo_, مطلو,   ,\n  { {0x63a908a0, 0x44260011, 0xb8dc0044, 0x00000000}},  //   _aben, woo_, _আপ_,\n  { {0xb5fb1c85, 0x63a90066, 0x4426066d, 0x00000000}},  //   _itál, _bben, too_,\n  { {0xb5fb0047, 0xa87b0049, 0x8755005e, 0x00000000}},  //   _után, _באטר, _гърц,\n  { {0x4426095a, 0xdce300b9, 0x2327003b, 0x00000000}},  //   roo_, _peně, аоци_,\n  { {0x80aa0055, 0x63a9010f, 0x44260ac2, 0x00000000}},  //   কিস্, _eben, soo_,\n  { {0x442600b0, 0x40a800a6, 0x7e690c23, 0x00000000}},  //   poo_, اختی_, epep,\n  { {0x4fc61deb, 0x67f8004a, 0x00000000, 0x00000000}},  //   рска, _fíje,   ,\n  { {0x7e6900e0, 0x7e6d0276, 0x00000000, 0x00000000}},  //   gpep, _çapl,   ,\n  { {0x7f8600a1, 0x00000000, 0x00000000, 0x00000000}},  //   _چلان,   ,   ,\n  { {0xf9fc0044, 0x00000000, 0x00000000, 0x00000000}},  //   ঁচাল_,   ,   ,\n  { {0x7afd010f, 0x00000000, 0x00000000, 0x00000000}},  //   tzst,   ,   ,\n  { {0x9ce60044, 0xbea3094b, 0x00000000, 0x00000000}},  //   খছেন_, _мацк,   ,\n  { {0x7afd02fa, 0x00000000, 0x00000000, 0x00000000}},  //   rzst,   ,   ,\n  { {0xfc64089d, 0xf8070245, 0x20180def, 0x00000000}},  //   _اختی, ачан, _íris_,\n  { {0x69da1a17, 0x3f860861, 0x87550088, 0x00000000}},  //   öter, _jdou_, скає,\n  { {0x67ea009f, 0x7c2d0d58, 0xf1c60061, 0x00000000}},  // [c510] _nýju, _ikar, लयान,\n  { {0x63a90145, 0x00000000, 0x00000000, 0x00000000}},  //   _sben,   ,   ,\n  { {0x09050055, 0x7c2d0066, 0x2d9c0045, 0x00000000}},  //   _শুরু_, _kkar, _mcve_,\n  { {0x97a70900, 0x59d50164, 0xdb16004a, 0x00000000}},  //   _трол, दावर, _hayá,\n  { {0x623500ed, 0xfc4a0082, 0xdb06014a, 0x00000000}},  //   беду, _mập_, rekç,\n  { {0xfc4a001d, 0xa4d501ff, 0x5ab80049, 0x00000000}},  //   _lập_, _логі, ילדע_,\n  { {0x92d70055, 0x7c2d016c, 0x601e0089, 0x00000000}},  //   ানে_, _okar, zīme,\n  { {0xc9180104, 0x4394007c, 0x7c2d00e0, 0x00000000}},  //   יחות_, _масс, _nkar,\n  { {0x442d1802, 0xa3bc0061, 0xfaff0065, 0x00000000}},  //   _ike_, _असत_, jzë_,\n  { {0x7c2d0047, 0x6e2801d9, 0x0792013e, 0x00000000}},  //   _akar, godb, _čímž_,\n  { {0x443f001d, 0x7e69001c, 0x442d122f, 0x00000000}},  //   _khu_, spep, _kke_,\n  { {0xfc4a001d, 0xb5fb3822, 0x81b30044, 0x00000000}},  //   _cập_, _stál, টাও_,\n  { {0x442d0020, 0xeb97005e, 0x200d0de3, 0x00000000}},  //   _mke_, щия_, miei_,\n  { {0x7c2d022b, 0x200d0de3, 0x433a0049, 0x00000000}},  //   _ekar, liei_, טערב,\n  { {0x26cb0555, 0x7c950025, 0x291e01df, 0x00000000}},  //   _arco_, _العص, çta_,\n  { {0x200d000d, 0x443f001d, 0x2fdf01ee, 0x00000000}},  //   niei_, _nhu_, njug_,\n  { {0xed16009c, 0xe61a0057, 0x00000000, 0x00000000}},  // [c520] _نہیں_, гда_,   ,\n  { {0x0556007e, 0x442d0142, 0xd6cf0379, 0x00000000}},  //   стая, _ake_, عقل_,\n  { {0x92d70044, 0x3957009b, 0x75e00010, 0x00000000}},  //   ানো_, _לשים_, _közz,\n  { {0x443f0011, 0x037a0426, 0x442d3823, 0x00000000}},  //   _chu_, احات_, _cke_,\n  { {0x200d1b90, 0x21780a78, 0x00000000, 0x00000000}},  //   diei_, айлы_,   ,\n  { {0x27e00d6b, 0x442d3733, 0x443f002d, 0x00000000}},  //   ljin_, _eke_, _ehu_,\n  { {0xdb1f0065, 0x200d0035, 0x00000000, 0x00000000}},  //   _paqë, fiei_,   ,\n  { {0x74160188, 0x5f94026b, 0x200d22cd, 0x00000000}},  //   _اورا, циит, giei_,\n  { {0x6440021e, 0xfc4a0082, 0x2d8700e5, 0x00000000}},  //   _ihmi, _rập_, _bdne_,\n  { {0x22f700b6, 0xf1a9007a, 0x7c2d0036, 0x00000000}},  //   _הזמן_, _نامه_, _skar,\n  { {0xa3bc0183, 0x70561847, 0x11d70025, 0x00000000}},  //   _असा_, _انصا, _دولة_,\n  { {0x27e001d5, 0x442d1278, 0x200d289d, 0x00000000}},  //   jjin_, _xke_, ciei_,\n  { {0x6282006c, 0x6e280059, 0x27e03824, 0x00000000}},  //   nsoo, podb, djin_,\n  { {0x998300b9, 0x23640022, 0x00000000, 0x00000000}},  //   rojů_, _lfmj_,   ,\n  { {0xfc4a001d, 0x16d1013d, 0x64400052, 0x00000000}},  //   _tập_, सम्ब, _ohmi,\n  { {0x27e00065, 0x7c2d0e15, 0xbc670380, 0x00000000}},  //   gjin_, _ukar, _امين_,\n  { {0x36d401fc, 0x44c80279, 0x2bd60204, 0x00000000}},  // [c530] потр, _ağ_, धारा,\n  { {0x9b95007a, 0x442d0193, 0x2ba5007d, 0x00000000}},  //   _الکت, _ske_, ग्रा,\n  { {0x2bdd02fb, 0xe7c40309, 0x443f0011, 0x00000000}},  //   यापा, _लोकप, _phu_,\n  { {0x62823825, 0x437401fc, 0xdb0f00c4, 0x00000000}},  //   fsoo, пушт, mecâ,\n  { {0x200d1290, 0x00000000, 0x00000000, 0x00000000}},  //   viei_,   ,   ,\n  { {0x657e0146, 0x00000000, 0x00000000, 0x00000000}},  //   caph,   ,   ,\n  { {0x443f0ca9, 0x200d000d, 0xdb0f004a, 0x00000000}},  //   _thu_, tiei_, decí,\n  { {0x442d0056, 0xa295007e, 0x4fe908d6, 0x00000000}},  //   _uke_, _мабі, рмин_,\n  { {0x200d04f8, 0xdb0f008e, 0xf1a7034b, 0x00000000}},  //   riei_, fecí, _грен,\n  { {0x4c850175, 0xac85004c, 0x200d0de3, 0x00000000}},  //   олов, огол, siei_,\n  { {0x8c460264, 0xab5b3826, 0x1ddb0061, 0x00000000}},  //   жене, rdün, बाबत,\n  { {0xeb9a02b8, 0x657e0258, 0x00000000, 0x00000000}},  //   шим_, zaph,   ,\n  { {0xce6b08f3, 0x201d0009, 0xdee5005e, 0x00000000}},  //   _сред_, _ijwi_, _фоли,\n  { {0x0dcb012b, 0xd7f10082, 0xf77f00c4, 0x00000000}},  //   _људи_, ễn_, _roça_,\n  { {0x2a69002d, 0x9c650014, 0x75e01e00, 0x00000000}},  //   _etab_, _بهبو, _gözy,\n  { {0xab5b0010, 0xf77f00fa, 0x00000000, 0x00000000}},  //   ndül, _poça_,   ,\n  { {0xe57a00e3, 0x7bd60061, 0x060a2260, 0x00000000}},  // [c540] иза_, _inyu, анак_,\n  { {0x644001ee, 0x67f80010, 0x27f2055f, 0x00000000}},  //   _shmi, _díja, skyn_,\n  { {0x2eb6006e, 0x78ad00b9, 0xd94602b0, 0x00000000}},  //   _अन्त, čová, _фени,\n  { {0x2bdd02f4, 0xd36f0025, 0x67f8008e, 0x00000000}},  //   याया, نهم_, _fíja,\n  { {0xdddb01d9, 0x2bac0061, 0x7bc4225f, 0x00000000}},  //   druž, ट्या, _maiu,\n  { {0x6282049b, 0x7bc4006c, 0x057a0025, 0x00000000}},  //   rsoo, _laiu, _خمسة_,\n  { {0x320e2179, 0x2bdd0204, 0x6282010e, 0x00000000}},  //   rify_, यामा, ssoo,\n  { {0x657c011f, 0xeeaa0081, 0xc95300b3, 0x00000000}},  //   _herh, аток_, ומו_,\n  { {0xdefa0eb1, 0xdde3001a, 0x645c315e, 0x00000000}},  //   рый_, ârşi, _huri,\n  { {0x645c0736, 0x50d606b4, 0x7bd60010, 0x00000000}},  //   _kuri, _وزار, _anyu,\n  { {0xdb0f2bc9, 0x2a6900ea, 0x657c014a, 0x00000000}},  //   recí, _stab_, _merh,\n  { {0x645c0127, 0x5c07007e, 0x7bc411c8, 0x00000000}},  //   _muri, іяна, _caiu,\n  { {0xdb0f045b, 0x61e801df, 0x2bdd0309, 0x00000000}},  //   pecí, _kodl, याबा,\n  { {0x645c00c4, 0x61e800d0, 0xba3b0016, 0x00000000}},  //   _ouri, _jodl, rtïo,\n  { {0x61e81712, 0x645c1ece, 0xf65f0030, 0x00000000}},  //   _modl, _nuri, _træk_,\n  { {0xcb0b0001, 0x3e6001aa, 0x9f5f01e5, 0x00000000}},  //   _вход_, _kòt_, nnuð_,\n  { {0x645c00b0, 0x657c020c, 0xba770025, 0x00000000}},  // [c550] _auri, _berh, _باعت,\n  { {0x2bac03d7, 0xdce10006, 0x645c071e, 0x00000000}},  //   ट्ठा, galė, _buri,\n  { {0x3e600607, 0x645c0335, 0x00000000, 0x00000000}},  //   _lòt_, _curi,   ,\n  { {0x645c0038, 0x6b9d0304, 0x61fa0808, 0x00000000}},  //   _duri, ngsg, _altl,\n  { {0x69c50004, 0x61e80016, 0x3e600263, 0x00000000}},  //   _kahe, _bodl, _nòt_,\n  { {0x69c73827, 0x645c0c99, 0x657c3828, 0x00000000}},  //   ndje, _furi, _gerh,\n  { {0x29031f27, 0x75820cd9, 0x69c506ad, 0x00000000}},  //   nzja_, _سینم, _mahe,\n  { {0x69c50004, 0xb5fb00b9, 0xe3b302fd, 0x00000000}},  //   _lahe, _stáh, _ترس_,\n  { {0x645c002d, 0x61e80016, 0xb5fb0048, 0x00000000}},  //   _zuri, _fodl, _atái,\n  { {0x61e80719, 0x645c0093, 0x765d04be, 0x00000000}},  //   _godl, _yuri, _musy,\n  { {0xa3df0164, 0x7bc400e5, 0x645c1ea8, 0x00000000}},  //   ताप_, _paiu, _xuri,\n  { {0xe672005d, 0xb5fb0051, 0x3e6001aa, 0x00000000}},  //   _ölçü, _dtái, _fòt_,\n  { {0x75f3014a, 0x69c51b1c, 0x7bc60abf, 0x00000000}},  //   _kızı, _bahe, rdku,\n  { {0xa9670b11, 0xcefd0279, 0xee380245, 0x00000000}},  //   зира_, ığın_, _дні_,\n  { {0x69c5010f, 0x31af005d, 0xf77201b7, 0x00000000}},  //   _dahe, mızı_, فاء_,\n  { {0xb8e4006e, 0x8c4301e0, 0x645c3829, 0x00000000}},  //   _एन_, _пеще, _ruri,\n  { {0xa3df02d2, 0x645c1b6a, 0xdb9b00b3, 0x00000000}},  // [c560] तान_, _suri, _הספר,\n  { {0x31af047f, 0x2c610d7f, 0x3c3201ca, 0x00000000}},  //   nızı_, _kód_, rávu_,\n  { {0x657c0168, 0x6fbd001c, 0x5fbd02f4, 0x00000000}},  //   _verh, ्यां, ्याल,\n  { {0x69c511e4, 0xe363007c, 0x2c611a43, 0x00000000}},  //   _zahe, екци, _mód_,\n  { {0x61e8004f, 0x657c020c, 0x7655382a, 0x00000000}},  //   _podl, _terh, _fizy,\n  { {0x645c010a, 0xd25901e1, 0x22bd000a, 0x00000000}},  //   _turi, іці_, _dňk_,\n  { {0x645c0004, 0x3e6001aa, 0x61e8050f, 0x00000000}},  //   _uuri, _sòt_, _vodl,\n  { {0x3e6001aa, 0x22bd01aa, 0xa4f80061, 0x00000000}},  //   _pòt_, _fňk_, ंनीच_,\n  { {0xb5fb002a, 0x2903002b, 0x00000000, 0x00000000}},  //   _stái, zzja_,   ,\n  { {0x7206035b, 0xf1aa007a, 0x3e6001aa, 0x00000000}},  //   _عوام, _داره_, _vòt_,\n  { {0x2c6104ed, 0xdc3f00b9, 0x9f9e01d6, 0x00000000}},  //   _cód_, síčn, _lééf_,\n  { {0x395a1ef5, 0x69c5382b, 0x317e0190, 0x00000000}},  //   _agps_, _sahe, _hetz_,\n  { {0x69c500b0, 0xfe4617e9, 0x6b9d0cf5, 0x00000000}},  //   _pahe, _ендо, rgsg,\n  { {0x22590263, 0x765d014a, 0xf77f00c4, 0x00000000}},  //   _èske_, _rusy, _poço_,\n  { {0x69c50004, 0xa3bc001c, 0x28f80057, 0x00000000}},  //   _vahe, _असं_, перь_,\n  { {0x2d9e21c9, 0x69c500f0, 0x765501aa, 0x00000000}},  //   lgte_, _wahe, _sizy,\n  { {0x6b8d006a, 0x81e70044, 0x69c5006c, 0x00000000}},  // [c570] _idag, মোট_, _tahe,\n  { {0x2d9e00b5, 0x317e010f, 0x7c2f00fa, 0x00000000}},  //   ngte_, _netz_, locr,\n  { {0x7a320f4b, 0x656501a2, 0x765509e5, 0x00000000}},  //   rætt, rchh, _vizy,\n  { {0x7a320018, 0xe3b30025, 0x76550036, 0x00000000}},  //   sætt, عرض_, _wizy,\n  { {0xa3df006e, 0x317e382c, 0x38c700b9, 0x00000000}},  //   ताब_, _betz_, bírá_,\n  { {0xf77f005f, 0x75f3006b, 0x785c01aa, 0x00000000}},  //   _heç_, _qızı, _sčvi,\n  { {0x63b90046, 0xf77f006b, 0xdb060190, 0x00000000}},  //   pewn, _keç_, sekø,\n  { {0xa0090b03, 0x6b8d382d, 0xdcf80925, 0x00000000}},  //   تقبل_, _ndag, _cevč,\n  { {0x442f0213, 0xa3da013d, 0x7c2f0133, 0x00000000}},  //   mog_, ़ार_, docr,\n  { {0x6b8d0010, 0xee3607d0, 0x317e0082, 0x00000000}},  //   _adag, мны_, _getz_,\n  { {0x7c2f1aa3, 0x6284007f, 0x00000000, 0x00000000}},  //   focr, šiot,   ,\n  { {0x442f0119, 0xe7d80055, 0x2ef5041f, 0x00000000}},  //   nog_, _সত্য, _озер,\n  { {0xef0e00ed, 0x00000000, 0x00000000, 0x00000000}},  //   _рм_,   ,   ,\n  { {0x442f0016, 0x7d280010, 0x6b8d0026, 0x00000000}},  //   hog_, épsé, _edag,\n  { {0x442f0119, 0xc8b5007e, 0x225f1aff, 0x00000000}},  //   kog_, нсты, _luuk_,\n  { {0xdb16008e, 0x3f9f00e7, 0x442f1c43, 0x00000000}},  //   _mayú, nguu_, jog_,\n  { {0x442f018e, 0xe7370057, 0xf4130055, 0x00000000}},  // [c580] dog_, дет_, িকার_,\n  { {0x7a320030, 0x3dc70173, 0x00000000, 0x00000000}},  //   ræts, _janw_,   ,\n  { {0xdce1001e, 0xfaff0065, 0x442f0016, 0x00000000}},  //   dalī, ncën_, fog_,\n  { {0x442f0119, 0xf77f014a, 0xb4ae006e, 0x00000000}},  //   gog_, _geç_, _कही_,\n  { {0x26c200b0, 0xc17a0088, 0x2d9e0190, 0x00000000}},  //   _usko_, оїй_, ygte_,\n  { {0xeb9f0637, 0xb5fb0161, 0x2fc601c3, 0x00000000}},  //   niør_, _stáv, _saog_,\n  { {0x442f382e, 0xdcf80087, 0x00000000, 0x00000000}},  //   bog_, _pevč,   ,\n  { {0x232a0457, 0xab5b005d, 0x8fa3003b, 0x00000000}},  //   _доби_, rdük, ваће,\n  { {0x2bdd001c, 0xfbdd0061, 0x00000000, 0x00000000}},  //   यासा, यासम,   ,\n  { {0xdd900d3a, 0xdb0f0181, 0x20180010, 0x00000000}},  //   دود_, lecç, őri_,\n  { {0x2d9e2764, 0x55970097, 0x91e30216, 0x00000000}},  //   rgte_, ודיע_, _шофе,\n  { {0x225f0022, 0x00000000, 0x00000000, 0x00000000}},  //   _yuuk_,   ,   ,\n  { {0xa3df001c, 0x7c2f027b, 0xb4bb0164, 0x00000000}},  //   तात_, rocr, _अन्_,\n  { {0x3f84000b, 0xfd0f00e9, 0xf77f382f, 0x00000000}},  //   lamu_, اجی_, _seç_,\n  { {0xa934165b, 0xcec8001d, 0x442f011c, 0x00000000}},  //   верш, _hộ_, yog_,\n  { {0x3f840020, 0xeb9f0190, 0x6b8d15db, 0x00000000}},  //   namu_, riøs_, _udag,\n  { {0x442f0119, 0xf77f0065, 0xba3b00d4, 0x00000000}},  // [c590] vog_, _veç_, juïg,\n  { {0x3f84000b, 0xcec80011, 0x442f0016, 0x00000000}},  //   hamu_, _mộ_, wog_,\n  { {0x6289037e, 0x442f0119, 0xcec8001d, 0x00000000}},  //   _sveo, tog_, _lộ_,\n  { {0x3f840ba5, 0xfc4a0082, 0xf65f0146, 0x00000000}},  //   jamu_, _bậy_, _bræt_,\n  { {0x3f84000b, 0xfc4a0011, 0xf07500a1, 0x00000000}},  //   damu_, _cậy_, ڑیاں_,\n  { {0x442f3830, 0xfc4a0011, 0x21690077, 0x00000000}},  //   sog_, _dậy_, чики_,\n  { {0x205500d7, 0x09c90044, 0x442f0091, 0x00000000}},  //   нтир, শাপা, pog_,\n  { {0xcec800ad, 0x44393831, 0xa2ba0309, 0x00000000}},  //   _bộ_, _ós_, _शैक्,\n  { {0xef19004c, 0x15f30316, 0x28d10061, 0x00000000}},  //   ями_, _आकार_, हिडि,\n  { {0x645a00d4, 0x00000000, 0x00000000, 0x00000000}},  //   _ètic,   ,   ,\n  { {0x3f840020, 0xc1e600a1, 0xfc4a0082, 0x00000000}},  //   bamu_, _سکول_, _zậy_,\n  { {0xc4d2007b, 0x26c00016, 0xfaff0023, 0x00000000}},  //   אגט_, ywio_, rcën_,\n  { {0x539a009b, 0x501a0049, 0x00000000, 0x00000000}},  //   הירו, _צונו,   ,\n  { {0x1d090893, 0x00000000, 0x00000000, 0x00000000}},  //   _нели_,   ,   ,\n  { {0xd82600aa, 0x2d850114, 0xb4ae007d, 0x00000000}},  //   едви, male_, _कहे_,\n  { {0x6d430091, 0x2d85006c, 0x3cf8023c, 0x00000000}},  //   _izna, lale_, _تعهد_,\n  { {0xd70a007e, 0x3855005e, 0xdb062939, 0x00000000}},  // [c5a0] чнае_, търс, nekü,\n  { {0x2d850198, 0xfbac006e, 0x3f8410d9, 0x00000000}},  //   nale_, ट्रम, zamu_,\n  { {0xdb060004, 0xdb0f00c4, 0x3f840022, 0x00000000}},  //   hekü, tecç, yamu_,\n  { {0xb5fb0224, 0x2d85017b, 0x03c5007e, 0x00000000}},  //   _stát, hale_, ксім,\n  { {0x2d8501e3, 0xdb0f0181, 0xc7b300b3, 0x00000000}},  //   kale_, recç, _גבר_,\n  { {0x2d850004, 0xfc4a001d, 0x64a6008b, 0x00000000}},  //   jale_, _vậy_, _пага,\n  { {0x2d853832, 0xa3ea0ae0, 0x3f840127, 0x00000000}},  //   dale_, _едва_, tamu_,\n  { {0xf65f18f9, 0x6e230087, 0x6b860022, 0x00000000}},  //   _træt_, _ajnb, jakg,\n  { {0xe29701f9, 0x2d850030, 0x24170476, 0x00000000}},  //   _пат_, fale_, _נחמן_,\n  { {0x2d85060c, 0x7c240020, 0x63a20207, 0x00000000}},  //   gale_, _ajir, lgon,\n  { {0x2bdd01f5, 0x00000000, 0x00000000, 0x00000000}},  //   याला,   ,   ,\n  { {0x63a2334f, 0x68f50006, 0x386101a2, 0x00000000}},  //   ngon, vyzd, _ruhr_,\n  { {0x38610240, 0xdcf80089, 0x6d430288, 0x00000000}},  //   _suhr_, _devā, _ezna,\n  { {0x2d85060c, 0x7d0600f4, 0xc3330104, 0x00000000}},  //   cale_, _céré, רוש_,\n  { {0xddc90035, 0xb5fb00fa, 0x6da30098, 0x00000000}},  //   speţ, _otár, _сија,\n  { {0x7c240065, 0x7e6200b0, 0xdb1d0023, 0x00000000}},  //   _gjir, _kuop, nesë,\n  { {0xa3da006e, 0x63a200ca, 0xa3df01f5, 0x00000000}},  // [c5b0] ़ाई_, dgon, तास_,\n  { {0x7c3d3833, 0x7d06009d, 0x63a201c3, 0x00000000}},  //   llsr, _géré, egon,\n  { {0xb7d9026c, 0xd3712aea, 0x44240283, 0x00000000}},  //   _ہوگا_, لها_, _bjm_,\n  { {0x2d85002d, 0x63a22191, 0x30af0044, 0x00000000}},  //   zale_, ggon, কিৎস,\n  { {0x27e900d0, 0xc4cf009e, 0x44243834, 0x00000000}},  //   mjan_, _گےا_, _djm_,\n  { {0x27e92e6e, 0xb5fb00c4, 0xdb0401c3, 0x00000000}},  //   ljan_, _etár, _scië,\n  { {0x2d850004, 0x00000000, 0x00000000, 0x00000000}},  //   vale_,   ,   ,\n  { {0x27e90ba0, 0x2d853835, 0x442413fd, 0x00000000}},  //   njan_, wale_, _gjm_,\n  { {0x27e9006b, 0x64490009, 0x79870045, 0x00000000}},  //   ijan_, _ihei, kajw,\n  { {0x7c36010a, 0x4c690745, 0x27e93836, 0x00000000}},  //   _skyr, мион_, hjan_,\n  { {0x2d85060c, 0xfbdd0164, 0xeb9a0242, 0x00000000}},  //   rale_, यांम, мин_,\n  { {0x0f15007c, 0x7d06009d, 0x88c00044, 0x00000000}},  //   _имею, _séré, _উপলক,\n  { {0xa3b30164, 0x2d850207, 0x27e9087a, 0x00000000}},  //   ज्य_, pale_, djan_,\n  { {0xaa46005e, 0x79870009, 0x7c3d01d6, 0x00000000}},  //   тегл, gajw, alsr,\n  { {0x3ead0c7a, 0x6d430871, 0x7c242332, 0x00000000}},  //   ltet_, _uzna, _tjir,\n  { {0x73ec0044, 0x27e93837, 0x7c2400e7, 0x00000000}},  //   _কষ্ট_, gjan_, _ujir,\n  { {0x3ead11a9, 0x9f4f0129, 0x63a60039, 0x00000000}},  // [c5c0] ntet_, _algú_, _ökni,\n  { {0x6b840472, 0x3ead010f, 0x44243838, 0x00000000}},  //   _heig, itet_, _sjm_,\n  { {0x64490195, 0x26cf0073, 0x6b8406f6, 0x00000000}},  //   _bhei, ågor_, _keig,\n  { {0x64490a47, 0x3ead0292, 0x6b84010a, 0x00000000}},  //   _chei, ktet_, _jeig,\n  { {0x63a20ce3, 0x6449002a, 0x23600059, 0x00000000}},  //   rgon, _dhei, žijo_,\n  { {0x6b84056f, 0x69ce18ee, 0x63a212c5, 0x00000000}},  //   _leig, ndbe, sgon,\n  { {0x6449002a, 0xf9930104, 0xdb1d0065, 0x00000000}},  //   _fhei, ברו_, tesë,\n  { {0x3ead0374, 0xb4de0061, 0x6b84377f, 0x00000000}},  //   ftet_, तमी_, _neig,\n  { {0x3f98047f, 0xa3df007d, 0x765c3839, 0x00000000}},  //   ğru_, तार_, _kiry,\n  { {0x20040065, 0xa8060180, 0x27e9002b, 0x00000000}},  //   shmi_, llığ, zjan_,\n  { {0x6b84001e, 0xf1a90014, 0xd59b009b, 0x00000000}},  //   _beig, _ساله_, וביל,\n  { {0xa80601f6, 0x69de01aa, 0x69ce0270, 0x00000000}},  //   nlığ, _anpe, edbe,\n  { {0x6f090036, 0x6b841646, 0x79870020, 0x00000000}},  //   czec, _deig, tajw,\n  { {0x5a341ba3, 0x69ce00d9, 0x765c0045, 0x00000000}},  //   инят, gdbe, _niry,\n  { {0x27e91edb, 0xa806014a, 0xaa5804b5, 0x00000000}},  //   tjan_, klığ, тиру_,\n  { {0xb5fb0211, 0xf77305f3, 0x69de2e51, 0x00000000}},  //   _cuán, شار_, _enpe,\n  { {0x64490abe, 0x27e90bf4, 0xa806006b, 0x00000000}},  // [c5d0] _rhei, rjan_, dlığ,\n  { {0x6449383a, 0x6b84001f, 0x27e9383b, 0x00000000}},  //   _shei, _zeig, sjan_,\n  { {0x2baa0183, 0xa3df03d7, 0x290a0036, 0x00000000}},  //   _कामा, ताल_, czba_,\n  { {0x7b08005d, 0x3ead383c, 0x628b0a74, 0x00000000}},  //   _örtü, ytet_, tsgo,\n  { {0x3ead00f6, 0x877a00b3, 0xe2990783, 0x00000000}},  //   xtet_, _ראשי, хал_,\n  { {0xb6da0049, 0x7d150142, 0x785c10ec, 0x00000000}},  //   _אַלט, úzsk, _učvr,\n  { {0x64490038, 0x645b00ea, 0x00000000, 0x00000000}},  //   _thei, _tiui,   ,\n  { {0x3ead02cc, 0xb4c102fb, 0x44d3016e, 0x00000000}},  //   ttet_, ्टी_, _ić_,\n  { {0xdbdd000c, 0xf1a7007c, 0xfc3f23aa, 0x00000000}},  //   _ráðs, _арен, dlí_,\n  { {0x6b841fcd, 0x6f090036, 0x7bdf004a, 0x00000000}},  //   _seig, rzec, _anqu,\n  { {0x25a5009f, 0xed580027, 0x6f09115b, 0x00000000}},  //   _öllu_, teľa_, szec,\n  { {0x6aaf001c, 0x3ead01c9, 0x7d1c0051, 0x00000000}},  //   ftcf, ptet_, úrsa,\n  { {0xa3ab0316, 0x6b840def, 0xa806005a, 0x00000000}},  //   _खान_, _veig, nlış,\n  { {0x6e920025, 0x5e920054, 0x6b840498, 0x00000000}},  //   _الوا, _الوط, _weig,\n  { {0x63a9383d, 0xfc3f002a, 0x6b84010a, 0x00000000}},  //   _ocen, blí_, _teig,\n  { {0xfc3f0051, 0x765c0435, 0xb5fb0082, 0x00000000}},  //   clí_, _siry, _quán,\n  { {0x66e32180, 0x00000000, 0x00000000, 0x00000000}},  // [c5e0] бота,   ,   ,\n  { {0x8a7b009b, 0xfdfc013d, 0x3e690082, 0x00000000}},  //   _ראית, एसएस_, _mút_,\n  { {0xa8060279, 0x5dfa0049, 0x53160014, 0x00000000}},  //   tlığ, עפענ, گذار,\n  { {0x289b0049, 0x765c0022, 0x00000000, 0x00000000}},  //   _איטא, _wiry,   ,\n  { {0xa8060279, 0x3e690011, 0x8c1b009b, 0x00000000}},  //   rlığ, _nút_, עוני,\n  { {0x63a90022, 0x00000000, 0x00000000, 0x00000000}},  //   _ecen,   ,   ,\n  { {0xdb1d0047, 0xc653026c, 0xab5b0279, 0x00000000}},  //   resé, _اہلک, ndür,\n  { {0xb4d001f5, 0x3e690011, 0x3a3a0093, 0x00000000}},  //   वटी_, _bút_, _lkpp_,\n  { {0x3e690082, 0xc326013a, 0x9f5f0048, 0x00000000}},  //   _cút_, _смак, chuí_,\n  { {0x32070224, 0xb5fb0051, 0x6f1d0051, 0x00000000}},  //   chny_, _nuál, úsca,\n  { {0x0ce20044, 0x7bcd0dec, 0x459b0049, 0x00000000}},  //   মন্ত, _paau, עסטע,\n  { {0xac190e09, 0xdb55007c, 0x79850ace, 0x00000000}},  //   тому_, ивны, _sehw,\n  { {0x3a3a0022, 0xdd920014, 0xc2f80044, 0x00000000}},  //   _bkpp_, _هوش_, _আইডি_,\n  { {0xc333012e, 0xb5fb008e, 0xfc3f0161, 0x00000000}},  //   מור_, _cuál, slí_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xc86400d7, 0x3207000a, 0x8ae70088, 0x00000000}},  //   стри, zhny_, _біол,\n  { {0xa7fb008e, 0x061509b5, 0xa3e8006e, 0x00000000}},  // [c5f0] _niñe, адаю, बान_,\n  { {0x2bdd0204, 0x225e0087, 0x00000000, 0x00000000}},  //   याका, _nitk_,   ,\n  { {0xb4c103d7, 0x00000000, 0x00000000, 0x00000000}},  //   ्टे_,   ,   ,\n  { {0xa7fb0288, 0x00000000, 0x00000000, 0x00000000}},  //   _biñe,   ,   ,\n  { {0xc7d8005e, 0x3a3a0022, 0x00000000, 0x00000000}},  //   _смях_, _ykpp_,   ,\n  { {0x40950200, 0x3e690011, 0x213e0016, 0x00000000}},  //   арит, _rút_, _byth_,\n  { {0x3e690011, 0x00000000, 0x00000000, 0x00000000}},  //   _sút_,   ,   ,\n  { {0x63a9037e, 0xb275019d, 0xdb16000a, 0x00000000}},  //   _ucen, _влаш, _mayò,\n  { {0x9e650098, 0xd00e0379, 0xa7fb0288, 0x00000000}},  //   јвод, بلي_, _giñe,\n  { {0xed590072, 0xfe420088, 0x5f9500a1, 0x00000000}},  //   коп_, жньо, _چلائ,\n  { {0x9d4500ed, 0x0c2601ee, 0x00000000, 0x00000000}},  //   ренд, имон,   ,\n  { {0x3f89009f, 0x26d90197, 0x2a790045, 0x00000000}},  //   _þau_, _orso_, fpsb_,\n  { {0xeb97005e, 0xb4e201f5, 0xaa460a85, 0x00000000}},  //   шия_, _गप्प_, иемл,\n  { {0x60210089, 0x6da20ab6, 0x00000000, 0x00000000}},  //   dēmi, _диша,   ,\n  { {0x26cb008e, 0xf77201b7, 0x1d06022a, 0x00000000}},  //   _asco_, قاء_, _вещи_,\n  { {0xab5b014a, 0x2fcf0802, 0x2d870023, 0x00000000}},  //   rdür, _jagg_, _hene_,\n  { {0x2d87383e, 0x46a60930, 0xa3df0164, 0x00000000}},  // [c600] _kene_, разв, ताई_,\n  { {0x2d872578, 0xe5770088, 0xe8fa0ab6, 0x00000000}},  //   _jene_, изу_, _ало_,\n  { {0x2d870119, 0x399b007b, 0xdce80089, 0x00000000}},  //   _mene_, _בייד, vadī,\n  { {0x2d871e06, 0x32050020, 0xa7fb008e, 0x00000000}},  //   _lene_, _ally_, _piñe,\n  { {0x213e0016, 0x7c26383f, 0xe7fb013d, 0x00000000}},  //   _syth_, inkr, _एकता_,\n  { {0x2d870065, 0xa7fb008e, 0xdb1d068f, 0x00000000}},  //   _nene_, _viñe, rdsø,\n  { {0xf99300b6, 0xdce80089, 0x91f50082, 0x00000000}},  //   קרה_, radī, _tín,\n  { {0x44c801f6, 0x61e104bd, 0x32051d2a, 0x00000000}},  //   _iş_, _enll, _elly_,\n  { {0x442600ee, 0x539b00b6, 0x2d870198, 0x00000000}},  //   mno_, _שימו, _bene_,\n  { {0x442600ee, 0x6442021e, 0x2d87086e, 0x00000000}},  //   lno_, lloi, _cene_,\n  { {0xd5d9007b, 0x44260207, 0x3a3800c7, 0x00000000}},  //   אַרש, ono_, dorp_,\n  { {0x44260198, 0xef1a064b, 0x92d80044, 0x00000000}},  //   nno_, _име_, াহী_,\n  { {0x2d873840, 0x78be0061, 0x545701ce, 0x00000000}},  //   _fene_, _appv, יסטן_,\n  { {0x4426167a, 0x2d8714f9, 0xedd30380, 0x00000000}},  //   hno_, _gene_, _ويند,\n  { {0x2d8c006c, 0xe7fb001c, 0xb7fb0164, 0x00000000}},  //   made_, _एकदा_, _एकदम_,\n  { {0x442600ee, 0x2d8c3841, 0x2d870010, 0x00000000}},  //   jno_, lade_, _zene_,\n  { {0x44263842, 0x44c83843, 0xac070167, 0x00000000}},  // [c610] dno_, _aş_, _مذکو,\n  { {0x2d8c0a74, 0x4426024f, 0x7afd00b0, 0x00000000}},  //   nade_, eno_, myst,\n  { {0x7afd042c, 0x3ea40374, 0x00000000, 0x00000000}},  //   lyst, humt_,   ,\n  { {0x44260198, 0x2d8c00b5, 0x2d980036, 0x00000000}},  //   gno_, hade_, órej_,\n  { {0xf2c70265, 0x2d8c0039, 0x60da3844, 0x00000000}},  //   рсен, kade_, _artm,\n  { {0x44260198, 0x2d8c006c, 0x13080088, 0x00000000}},  //   ano_, jade_, шній_,\n  { {0x2d8c0917, 0x442601d9, 0x64421c2b, 0x00000000}},  //   dade_, bno_, bloi,\n  { {0x442601cd, 0xe2ab00a1, 0x2d87014a, 0x00000000}},  //   cno_, _لائن_, _sene_,\n  { {0xee390751, 0x2d8c3845, 0x63bb3846, 0x00000000}},  //   лни_, fade_, _ibun,\n  { {0x2d8c049a, 0x2d87008d, 0x41e4007e, 0x00000000}},  //   gade_, _qene_, _міха,\n  { {0x2d870004, 0x2fcf0203, 0x00000000, 0x00000000}},  //   _vene_, _tagg_,   ,\n  { {0xc0b20011, 0x26c900e7, 0x7afd3847, 0x00000000}},  //   _lưới_, kwao_, fyst,\n  { {0x63bb02bf, 0x7c263848, 0x3a380039, 0x00000000}},  //   _mbun, rnkr, torp_,\n  { {0x7f3a007b, 0x49990057, 0x5d850054, 0x00000000}},  //   _גענו, ится_, _الثل,\n  { {0x442604a2, 0x63bb03cc, 0x79970009, 0x00000000}},  //   yno_, _obun, _ddxw,\n  { {0x7afd0142, 0x6c360070, 0x2ca53849, 0x00000000}},  //   byst, _دفعا, muld_,\n  { {0x44260213, 0x7bc6000b, 0x7afd0036, 0x00000000}},  // [c620] vno_, meku, cyst,\n  { {0x63bb006b, 0x44260046, 0x7bc6023e, 0x00000000}},  //   _abun, wno_, leku,\n  { {0x44260e3b, 0xc0b2001d, 0x69ad0164, 0x00000000}},  //   tno_, _dưới_, _जाती,\n  { {0x7bc6006c, 0x2d8c0181, 0x4426384a, 0x00000000}},  //   neku, zade_, uno_,\n  { {0x2ca507eb, 0x64420048, 0x321c01dc, 0x00000000}},  //   huld_, rloi, tivy_,\n  { {0x44260213, 0x3c320428, 0x798e384b, 0x00000000}},  //   sno_, rávy_, nabw,\n  { {0x7afd0df0, 0x64a30269, 0x644200f4, 0x00000000}},  //   zyst, _нара, ploi,\n  { {0x4fc6007c, 0x2ca50b72, 0x7bc6384c, 0x00000000}},  //   сска, duld_, jeku,\n  { {0x2d8c0073, 0xdb1d0010, 0x7afd00ea, 0x00000000}},  //   tade_, tesí, xyst,\n  { {0x2737001d, 0xea010011, 0x63bb384d, 0x00000000}},  //   ủng_, _đắt_, _zbun,\n  { {0x2d8c0aa4, 0x7afd0696, 0xdb1d0142, 0x00000000}},  //   rade_, wyst, resí,\n  { {0x7afd384e, 0x2d8c1493, 0x7bc60020, 0x00000000}},  //   tyst, sade_, geku,\n  { {0xa3ab007d, 0xa7fb0211, 0x6ee50025, 0x00000000}},  //   _खास_, _niña, _وسهل,\n  { {0x7afd0046, 0x00000000, 0x00000000, 0x00000000}},  //   ryst,   ,   ,\n  { {0x1959007e, 0x7bc6002d, 0x59f8005e, 0x00000000}},  //   равы_, beku, щеря_,\n  { {0x26c900e7, 0x00000000, 0x00000000, 0x00000000}},  //   twao_,   ,   ,\n  { {0x798e0009, 0x7c2d0145, 0x68e800f8, 0x00000000}},  // [c630] babw, _ijar, äddr,\n  { {0xd56719ec, 0x7c2d0d3e, 0xa7fb0288, 0x00000000}},  //   стап, _hjar, _diña,\n  { {0x7c2d009f, 0x69c737ef, 0xddc20087, 0x00000000}},  //   _kjar, meje, _otož,\n  { {0x69c70030, 0x69d5384f, 0x690b013f, 0x00000000}},  //   leje, ldze, ıqdı,\n  { {0xc0b20082, 0xa189003b, 0xa7fb0032, 0x00000000}},  //   _tưới_, абла_, _giña,\n  { {0x7bc60c01, 0x69d5245c, 0xdb040036, 0x00000000}},  //   zeku, ndze, _zbió,\n  { {0x92e90055, 0x7bc6000b, 0x349501fc, 0x00000000}},  //   মনে_, yeku, _фабр,\n  { {0x63bb0dfc, 0xfaff0065, 0x2bd90204, 0x00000000}},  //   _ubun, ncës_, _बोला,\n  { {0x69c70023, 0x443f0023, 0x6e3a3850, 0x00000000}},  //   keje, _iku_, fotb,\n  { {0x69c7008e, 0x69d50107, 0x7c2d04cb, 0x00000000}},  //   jeje, jdze, _ajar,\n  { {0x1ee7007a, 0x7c2d0492, 0xfbc60242, 0x00000000}},  //   _گوشی_, _bjar, обно,\n  { {0x2baa001c, 0x7e7b00b0, 0x63ab0022, 0x00000000}},  //   _काळा, ppup, nggn,\n  { {0x69c70047, 0x7c2d0c08, 0x7bc6002d, 0x00000000}},  //   feje, _djar, reku,\n  { {0x7bc604d4, 0x69c70030, 0x201f0006, 0x00000000}},  //   seku, geje, liui_,\n  { {0x7c2d000c, 0x443f3851, 0x7bc60032, 0x00000000}},  //   _fjar, _oku_, peku,\n  { {0x442d0a9e, 0xfc3205d4, 0x6b8f001c, 0x00000000}},  //   _nje_, _تحت_, cacg,\n  { {0xc6050055, 0xe7fb0061, 0x29110026, 0x00000000}},  // [c640] োচনা_, _एकरा_, azza_,\n  { {0x443f117c, 0x7c2d0065, 0xbb1b00f4, 0x00000000}},  //   _aku_, _zjar, raît,\n  { {0x7e630cc0, 0x201f0006, 0xec130014, 0x00000000}},  //   _minp, kiui_, _روید,\n  { {0x6d43005b, 0x442d016c, 0xfe670379, 0x00000000}},  //   _myna, _cje_, _يد_,\n  { {0x442d0065, 0xf7730014, 0x6d4304a5, 0x00000000}},  //   _dje_, _تاپ_, _lyna,\n  { {0xddc20627, 0x6d4301f6, 0x442d18c8, 0x00000000}},  //   _stož, _oyna, _eje_,\n  { {0x6d430146, 0xdcf8013e, 0x00000000, 0x00000000}},  //   _nyna, _devě,   ,\n  { {0x442d212f, 0x78fb0049, 0xdfda005e, 0x00000000}},  //   _gje_, יפצו, рък_,\n  { {0x6d43005a, 0x69c700e7, 0x00000000, 0x00000000}},  //   _ayna, yeje,   ,\n  { {0x6d430fb6, 0x3cfe004a, 0x387a0521, 0x00000000}},  //   _byna, tytv_, _otpr_,\n  { {0x69c70030, 0xa3df0061, 0x6d430016, 0x00000000}},  //   veje, ताच_, _cyna,\n  { {0x69ad001c, 0x7ee60025, 0x200d0bc0, 0x00000000}},  //   _जाही, _وكان, chei_,\n  { {0x69c7001a, 0x6e3a0010, 0x7e630146, 0x00000000}},  //   teje, potb, _finp,\n  { {0x1fbc0044, 0x69d50089, 0xb5fb0048, 0x00000000}},  //   _অফিস, udze, _tuái,\n  { {0x69c73852, 0x29050399, 0x69d509a4, 0x00000000}},  //   reje, ála_, rdze,\n  { {0x7c2d0169, 0x9983010a, 0x69c70030, 0x00000000}},  //   _ujar, tojų_, seje,\n  { {0x29050209, 0x356b00ed, 0x69c73853, 0x00000000}},  // [c650] šla_, арен_, peje,\n  { {0x443f0030, 0x2bb10061, 0x6b8d2ff0, 0x00000000}},  //   _sku_, _झाडा, _heag,\n  { {0x443f0022, 0x6b8d04cb, 0xfa340025, 0x00000000}},  //   _pku_, _keag, _تريد,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6b8d0e9e, 0x442d31b5, 0x23690059, 0x00000000}},  //   _meag, _vje_, žajo_,\n  { {0x6b8d0122, 0xbb3c0049, 0x7e6b0006, 0x00000000}},  //   _leag, בעדי, _rugp,\n  { {0xc5f2019b, 0x442d00bb, 0x7e6b00e0, 0x00000000}},  //   _אדם_, _tje_, _sugp,\n  { {0xd3e300e9, 0x6b8d001a, 0x442d0065, 0x00000000}},  //   _تقری, _neag, _uje_,\n  { {0x6d4305ad, 0xa3e802d2, 0x201f0006, 0x00000000}},  //   _syna, बार_, riui_,\n  { {0x443d0038, 0xee360057, 0x201f007f, 0x00000000}},  //   low_, знь_, siui_,\n  { {0xa7fb0219, 0x7e63227a, 0x443d0146, 0x00000000}},  //   _niño, _vinp, oow_,\n  { {0x443d00b4, 0x7e630141, 0x7c3d012d, 0x00000000}},  //   now_, _winp, gosr,\n  { {0x6d430036, 0xdee500d7, 0x7e630176, 0x00000000}},  //   _wyna, _холи, _tinp,\n  { {0xddc30089, 0x443d00ab, 0x6d4300d9, 0x00000000}},  //   _minū, how_, _tyna,\n  { {0x443d120c, 0xdb1d0161, 0x6b8d0c79, 0x00000000}},  //   kow_, resá, _feag,\n  { {0x661c10d4, 0x4c9a009b, 0x27e604de, 0x00000000}},  //   _smrk, _השקע, ñon_,\n  { {0x443d077a, 0x00000000, 0x00000000, 0x00000000}},  // [c660] dow_,   ,   ,\n  { {0x6569014a, 0x7bd63854, 0x6e210058, 0x00000000}},  //   _şehr, _hayu, nilb,\n  { {0x7bd60058, 0x14c80014, 0x7d010203, 0x00000000}},  //   _kayu, تهای_, nyls,\n  { {0x68e10030, 0x27f90521, 0x7bd60085, 0x00000000}},  //   ælde, _gosn_, _jayu,\n  { {0x7bd61d42, 0x7d0123b5, 0x91fc01c5, 0x00000000}},  //   _mayu, hyls, _diān,\n  { {0x7bd6011c, 0x645900d9, 0x6e210022, 0x00000000}},  //   _layu, amwi, jilb,\n  { {0xddc20006, 0xbfa30082, 0x443d038f, 0x00000000}},  //   _nuoš, _tiề, bow_,\n  { {0x22be0089, 0x7bd600e0, 0x443d00b4, 0x00000000}},  //   tākā_, _nayu, cow_,\n  { {0x6b8d3855, 0x6e2106d3, 0x00000000, 0x00000000}},  //   _reag, filb,   ,\n  { {0xddcb011f, 0x6b8d1d57, 0x7bd60058, 0x00000000}},  //   ğişt, _seag, _aayu,\n  { {0x61e80018, 0x7bd63856, 0x6b8d006c, 0x00000000}},  //   _indl, _bayu, _peag,\n  { {0x61fa0011, 0x101605d4, 0x7bd600f6, 0x00000000}},  //   _hotl, _عباد, _cayu,\n  { {0x61fa0161, 0x7bd621fb, 0x81b30044, 0x00000000}},  //   _kotl, _dayu, _জোট_,\n  { {0xaa6403f3, 0xa7fb008e, 0xcf2505f3, 0x00000000}},  //   етск, _piño, _ترمي,\n  { {0x6b8d002a, 0x61fa00d4, 0x7c3d0059, 0x00000000}},  //   _teag, _motl, posr,\n  { {0xb8e504da, 0x7bd629ea, 0x999800b9, 0x00000000}},  //   _एह_, _gayu, borů_,\n  { {0x473401fb, 0x00000000, 0x00000000, 0x00000000}},  // [c670] ентс,   ,   ,\n  { {0x2d8e0211, 0x61fa014a, 0xf8ae02fd, 0x00000000}},  //   _jefe_, _notl, دکی_,\n  { {0xf9fc009b, 0x443d0036, 0x7bd60022, 0x00000000}},  //   _להזמ, tow_, _yayu,\n  { {0x61e8000c, 0x320c0022, 0x4ab10316, 0x00000000}},  //   _andl, _aldy_, _जमाव,\n  { {0xe3b003ec, 0x443d0498, 0x645901d6, 0x00000000}},  //   ارم_, row_, rmwi,\n  { {0x61fa00e5, 0xa9250142, 0x443d00b4, 0x00000000}},  //   _cotl, poľč, sow_,\n  { {0x9998013e, 0xdfd100a1, 0xa3ab0061, 0x00000000}},  //   zorů_, ہيں_, _खाऊ_,\n  { {0xddc20006, 0x61e803a1, 0x69d73857, 0x00000000}},  //   _ruoš, _endl, _laxe,\n  { {0x3e72001a, 0x6e2102d8, 0x7bd601a3, 0x00000000}},  //   _cât_, tilb, _rayu,\n  { {0x61fa0039, 0x7bd604cb, 0x6fa90061, 0x00000000}},  //   _gotl, _sayu, _टाकू,\n  { {0x7bd60169, 0x23720006, 0x3f840022, 0x00000000}},  //   _payu, žyje_, bbmu_,\n  { {0xea01001d, 0x6e21011c, 0x999800b9, 0x00000000}},  //   _đạt_, silb, torů_,\n  { {0x81d00055, 0x61e80030, 0x3e722d2f, 0x00000000}},  //   ষার_, _yndl, _gât_,\n  { {0x186a00ed, 0x2baa0204, 0xab5b006b, 0x00000000}},  //   жави_, _काका, ndüy,\n  { {0xd94301e0, 0x2d85032c, 0x7bd6011c, 0x00000000}},  //   вери, mble_, _tayu,\n  { {0x7b070010, 0x00000000, 0x00000000, 0x00000000}},  //   örté,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  // [c680]   ,   ,   ,\n  { {0x2d850263, 0x2ca50009, 0x00000000, 0x00000000}},  //   nble_, orld_,   ,\n  { {0x61fa0a16, 0x2d85008e, 0xf241007e, 0x00000000}},  //   _rotl, ible_, _якiя_,\n  { {0x3f8f3858, 0x61fa3859, 0x00000000, 0x00000000}},  //   _negu_, _sotl,   ,\n  { {0xab5b001f, 0x61fa0142, 0x00000000, 0x00000000}},  //   rfüg, _potl,   ,\n  { {0xc5d5008b, 0xd2500439, 0x3f8f010e, 0x00000000}},  //   _пісь, دنت_, _aegu_,\n  { {0x2d8e0173, 0x61fa385a, 0x6d47010e, 0x00000000}},  //   _refe_, _votl, üjal,\n  { {0xf8b3009b, 0x2d85004a, 0x00000000, 0x00000000}},  //   דשה_, eble_,   ,\n  { {0xf65f0030, 0x3f8f0032, 0x934301ab, 0x00000000}},  //   _især_, _degu_, _анте,\n  { {0x62821683, 0x61e80190, 0xdce30066, 0x00000000}},  //   mpoo, _undl, _senġ,\n  { {0xb4bc0061, 0x6282006c, 0xe0d2006d, 0x00000000}},  //   _अहो_, lpoo, _جزء_,\n  { {0xb5fb008e, 0x69d70203, 0x2d85028a, 0x00000000}},  //   _juár, _saxe, able_,\n  { {0xfc3f0051, 0x2d850388, 0xdddb006b, 0x00000000}},  //   roí_, bble_, qquş,\n  { {0x7e7d13a1, 0x00000000, 0x00000000, 0x00000000}},  //   íspe,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x23dd001c, 0x7b67005e, 0xa3b30309, 0x00000000}},  //   _नोंद, _отпе, ज्ञ_,\n  { {0x69d733c8, 0xa3e8007d, 0x00000000, 0x00000000}},  // [c690] _taxe, बाई_,   ,\n  { {0x62820ace, 0x00000000, 0x00000000, 0x00000000}},  //   dpoo,   ,   ,\n  { {0xd49b0131, 0xdb1d385b, 0x00000000, 0x00000000}},  //   юра_, sesä,   ,\n  { {0x6284001e, 0x79950020, 0xdcf8012d, 0x00000000}},  //   ģion, lazw, _jevđ,\n  { {0x6284000d, 0xc2cb007a, 0x3f8f0093, 0x00000000}},  //   ţion, تبال_, _regu_,\n  { {0x3f8f010e, 0x2cac00ea, 0xa06902dc, 0x00000000}},  //   _segu_, kudd_, пака_,\n  { {0xab5b006b, 0x614200e2, 0x00000000, 0x00000000}},  //   rdüy, леша,   ,\n  { {0xb5fb008e, 0x00000000, 0x00000000, 0x00000000}},  //   _guár,   ,   ,\n  { {0xe235003b, 0x442f0eb0, 0x79950258, 0x00000000}},  //   _знањ, mng_, kazw,\n  { {0x273e00ad, 0x272c001d, 0x442f011c, 0x00000000}},  //   ững_, ếng_, lng_,\n  { {0x442f385c, 0x3f8f04fe, 0x2d850133, 0x00000000}},  //   ong_, _tegu_, rble_,\n  { {0x442f0a1d, 0x2d850146, 0xf3f900e5, 0x00000000}},  //   nng_, sble_, _biţi_,\n  { {0xef0e0242, 0x62990112, 0x200f385d, 0x00000000}},  //   _см_, nswo, _ilgi_,\n  { {0x2fcd0250, 0x79950dfc, 0x6f1d16b5, 0x00000000}},  //   leeg_, gazw, úscu,\n  { {0x3ead0022, 0x442f0085, 0xa8562337, 0x00000000}},  //   luet_, kng_, етај,\n  { {0xad1a00b6, 0x80a70164, 0x6282098e, 0x00000000}},  //   _מוצר, _घटने, ypoo,\n  { {0xe7370057, 0xd6cf00a1, 0xab6602d3, 0x00000000}},  // [c6a0] еет_, یقہ_, _явил,\n  { {0x7ae4022b, 0x62990ace, 0x442f0093, 0x00000000}},  //   _irit, dswo, eng_,\n  { {0xe475007e, 0x69dc0544, 0x546a0a78, 0x00000000}},  //   вучэ, mdre, чаем_,\n  { {0x69dc1ef2, 0x69ce010f, 0x442f0058, 0x00000000}},  //   ldre, lebe, gng_,\n  { {0x629901c3, 0x3ead00ea, 0x2fcd01c3, 0x00000000}},  //   gswo, juet_, deeg_,\n  { {0x6282000c, 0x442f09f3, 0x69ce0304, 0x00000000}},  //   rpoo, ang_, nebe,\n  { {0x6282095c, 0x2bb101f5, 0x69dc385e, 0x00000000}},  //   spoo, _झाला, idre,\n  { {0x69ce010f, 0x69dc079d, 0x62820943, 0x00000000}},  //   hebe, hdre, ppoo,\n  { {0xcf260054, 0x6b9f001c, 0x61eb0047, 0x00000000}},  //   عربي, _rdqg, állí,\n  { {0x44261203, 0xba3b385f, 0x7bc40026, 0x00000000}},  //   lio_, nuït, _abiu,\n  { {0x69ce0030, 0x7ae4022b, 0x69dc1d03, 0x00000000}},  //   debe, _arit, ddre,\n  { {0x4426010a, 0x1beb013d, 0x69dc063f, 0x00000000}},  //   nio_, टाइल_, edre,\n  { {0x69ce032e, 0x69dc095d, 0xdcfa0089, 0x00000000}},  //   febe, fdre, tatē,\n  { {0x7ae425c3, 0x44263860, 0x69ce001f, 0x00000000}},  //   _drit, hio_, gebe,\n  { {0x44262fea, 0x7ae40368, 0x442f0271, 0x00000000}},  //   kio_, _erit, yng_,\n  { {0x23690e00, 0x67d402d3, 0x44260091, 0x00000000}},  //   žaji_, лосу, jio_,\n  { {0x44263861, 0x69ce027b, 0x7bcf3862, 0x00000000}},  // [c6b0] dio_, bebe, mecu,\n  { {0x69ce02d5, 0x442f018e, 0x7bcf00ab, 0x00000000}},  //   cebe, wng_, lecu,\n  { {0x44263863, 0xdcf8001e, 0x442f00e0, 0x00000000}},  //   fio_, _ievē, tng_,\n  { {0xf1d902fb, 0x7ae4021e, 0x442f0f5e, 0x00000000}},  //   _योजन, _yrit, ung_,\n  { {0x6abd08e0, 0xed4600a6, 0x442f0145, 0x00000000}},  //   ntsf, _چپ_, rng_,\n  { {0xc692007b, 0x7c2601aa, 0x2fcd07a5, 0x00000000}},  //   _דאך_, zikr, weeg_,\n  { {0x44260119, 0x8c3d005a, 0x442f00e0, 0x00000000}},  //   bio_, luğu, png_,\n  { {0x44260819, 0x69ce0032, 0x387c0010, 0x00000000}},  //   cio_, zebe, _évre_,\n  { {0x69dc0190, 0x7bcf1965, 0x386b0085, 0x00000000}},  //   ydre, decu, _micr_,\n  { {0x7ae4008d, 0x7d09012b, 0x69ce002d, 0x00000000}},  //   _rrit, дног_, xebe,\n  { {0x6d4a018e, 0x7ae4283b, 0x7c26010a, 0x00000000}},  //   _cyfa, _srit, tikr,\n  { {0x6abd3864, 0xab2a0451, 0x69ce0b78, 0x00000000}},  //   ftsf, дома_, webe,\n  { {0x69ce002d, 0x69dc0240, 0x68e10190, 0x00000000}},  //   tebe, tdre, ældn,\n  { {0x4426062b, 0x8c3d01f6, 0x7c263865, 0x00000000}},  //   zio_, duğu, sikr,\n  { {0x7ae40038, 0x69dc0374, 0x6d4a018e, 0x00000000}},  //   _writ, rdre, _gyfa,\n  { {0xea01001d, 0x69ce0059, 0x7ae4010f, 0x00000000}},  //   _đất_, sebe, _trit,\n  { {0x442601cd, 0xcf92007b, 0x7c240051, 0x00000000}},  // [c6c0] vio_, יטן_, _imir,\n  { {0x44260016, 0x68e50009, 0x26d2005b, 0x00000000}},  //   wio_, _frhd, rwyo_,\n  { {0x777d0009, 0x00000000, 0x00000000, 0x00000000}},  //   _ffsx,   ,   ,\n  { {0x64a3007e, 0x62800045, 0x00000000, 0x00000000}},  //   раца, _ptmo,   ,\n  { {0xc7b3019b, 0x38603866, 0x8c3d014a, 0x00000000}},  //   _דבר_, mmir_, cuğu,\n  { {0x44263867, 0x3860006b, 0xa1580839, 0x00000000}},  //   sio_, lmir_, налу_,\n  { {0x7c24016c, 0x00000000, 0x00000000, 0x00000000}},  //   _omir,   ,   ,\n  { {0x4fd4005e, 0x4fc60081, 0x7bcf00e5, 0x00000000}},  //   ужит, тска, xecu,\n  { {0x09aa0055, 0x44240035, 0x7bcf01ee, 0x00000000}},  //   খ্যা, _imm_, vecu,\n  { {0x7c241670, 0x60270263, 0x5fae0061, 0x00000000}},  //   _amir, _pèmè, _टाकल,\n  { {0x6f1d0048, 0x00000000, 0x00000000, 0x00000000}},  //   úscr,   ,   ,\n  { {0x6abd0039, 0xc00600ed, 0x386000ca, 0x00000000}},  //   ttsf, _шпек, jmir_,\n  { {0x7bcf001a, 0x7a290006, 0x7bdd010e, 0x00000000}},  //   recu, ežta, rdsu,\n  { {0x7c24002b, 0x7bcf238d, 0x6abd02e7, 0x00000000}},  //   _emir, secu, rtsf,\n  { {0x7bcf253d, 0xef190036, 0x4424002b, 0x00000000}},  //   pecu, daży_, _omm_,\n  { {0x38602a23, 0xdb1d00ea, 0x2ee60087, 0x00000000}},  //   gmir_, kesø, _krof_,\n  { {0x291e1801, 0x00000000, 0x00000000, 0x00000000}},  // [c6d0] útar_,   ,   ,\n  { {0x80b80055, 0xa5670167, 0xdb1d06ec, 0x00000000}},  //   _আনন্, ندان, desø,\n  { {0xd371057d, 0xdb0d04f3, 0xd5b802dc, 0x00000000}},  //   مها_, _ibañ, ъст_,\n  { {0x7640000c, 0xfbdf00c4, 0x6015013e, 0x00000000}},  //   _ímyn, ndê_, _káme,\n  { {0x44240009, 0x59c00164, 0xeabf0197, 0x00000000}},  //   _dmm_, श्वर, ntù_,\n  { {0x26d902d5, 0x44240145, 0x20021361, 0x00000000}},  //   _isso_, _emm_, ökin_,\n  { {0x74f700a1, 0x44240145, 0xfbab0044, 0x00000000}},  //   _جہاز_, _fmm_, গ্যত,\n  { {0x44240146, 0xdb1d08c8, 0x00000000, 0x00000000}},  //   _gmm_, besø,   ,\n  { {0x2f5407ca, 0xfe4501f9, 0x60150142, 0x00000000}},  //   итьс, лнио, _náme,\n  { {0xaded013d, 0x7c240091, 0x8ca4006e, 0x00000000}},  //   जाइन_, _smir, _किशो,\n  { {0x38603868, 0xd00e01b2, 0x00000000, 0x00000000}},  //   ymir_, زلی_,   ,\n  { {0x26d91862, 0x23690295, 0x26cb0009, 0x00000000}},  //   _osso_, žaju_, _opco_,\n  { {0x8f9a009b, 0x645b0051, 0x00000000, 0x00000000}},  //   _ניסי, _mhui,   ,\n  { {0x2fc60119, 0xad240123, 0xddc30035, 0x00000000}},  //   _zbog_, اریو, _dinţ,\n  { {0x07a6003b, 0x38602f17, 0xc7a604dd, 0x00000000}},  //   лавн, tmir_, ливк,\n  { {0x7c240213, 0x200d007f, 0x00000000, 0x00000000}},  //   _umir, nkei_,   ,\n  { {0x3860027b, 0x3ebf3869, 0xdc3b0049, 0x00000000}},  // [c6e0] rmir_, ntut_, _רעפר,\n  { {0x44243540, 0x386008f4, 0x00000000, 0x00000000}},  //   _smm_, smir_,   ,\n  { {0x26d90207, 0x200d0b90, 0x601501ca, 0x00000000}},  //   _esso_, kkei_, _záme,\n  { {0x645b0195, 0x69de0065, 0x290a0006, 0x00000000}},  //   _chui, _hape, myba_,\n  { {0x244e01ca, 0x645b0051, 0x14170025, 0x00000000}},  //   nými_, _dhui, دينة_,\n  { {0x27e013e4, 0x69de0023, 0x8ca4007d, 0x00000000}},  //   ldin_, _jape, _किलो,\n  { {0x69de000b, 0x645b0051, 0x26c0386a, 0x00000000}},  //   _mape, _fhui, ltio_,\n  { {0x27e02b84, 0x69de386b, 0x44240093, 0x00000000}},  //   ndin_, _lape, _umm_,\n  { {0x26c00016, 0x60e00006, 0x27e00048, 0x00000000}},  //   ntio_, _žymė, idin_,\n  { {0x290a0006, 0x27e000b0, 0x7d080007, 0x00000000}},  //   kyba_, hdin_, tyds,\n  { {0x85f7007b, 0x6b960c87, 0x6e2800ea, 0x00000000}},  //   אציע_, _beyg, ridb,\n  { {0x290a0006, 0x31570049, 0x60da010e, 0x00000000}},  //   dyba_, _גיבן_, _istm,\n  { {0x27e01419, 0x69de04be, 0x6f1b0036, 0x00000000}},  //   ddin_, _bape, czuc,\n  { {0x69de0207, 0xeabf0197, 0x27e000f2, 0x00000000}},  //   _cape, rtù_, edin_,\n  { {0x69de10ed, 0x7d7b0049, 0x4d7b009b, 0x00000000}},  //   _dape, _אנוו, _ארוע,\n  { {0x6d5811e6, 0x6c830025, 0x80d70061, 0x00000000}},  //   _izva, _اليم, _मनसे,\n  { {0x69de00c4, 0x7bdf0026, 0x0a6b0242, 0x00000000}},  // [c6f0] _fape, _iaqu, _прои_,\n  { {0x645b002a, 0x6449375b, 0x60da006c, 0x00000000}},  //   _shui, _skei, _ostm,\n  { {0x6f1b0026, 0x26c00052, 0x76450253, 0x00000000}},  //   zzuc, atio_, rohy,\n  { {0x69de0036, 0x1e010183, 0x7bdf00c4, 0x00000000}},  //   _zape, _लक्ष_, _jaqu,\n  { {0x7bdf0211, 0x26c0005b, 0x04f50044, 0x00000000}},  //   _maqu, ctio_, চনের_,\n  { {0x7bdf00f4, 0x69de00f6, 0xa7fb004a, 0x00000000}},  //   _laqu, _xape, _viñu,\n  { {0x645b386c, 0x801509da, 0x3d0e013d, 0x00000000}},  //   _thui, ифиц, ानों_,\n  { {0x7bdf0181, 0x645b00e7, 0x3ebf0288, 0x00000000}},  //   _naqu, _uhui, ttut_,\n  { {0xddcb001e, 0xcdf50147, 0xf1a7007c, 0x00000000}},  //   _augš, ачны, _брен,\n  { {0x6f1b0036, 0x244e0161, 0x3ebf386d, 0x00000000}},  //   rzuc, vými_, rtut_,\n  { {0xd1310025, 0x22470066, 0x6b96014a, 0x00000000}},  //   _بما_, monk_, _peyg,\n  { {0x69de0198, 0x8c4602b8, 0x6b6605f6, 0x00000000}},  //   _sape, реме, икна,\n  { {0x7bdf0181, 0x63a40051, 0x8c3d0095, 0x00000000}},  //   _daqu, óini, tuğr,\n  { {0xc33200b6, 0x290a0006, 0x3ead386e, 0x00000000}},  //   קום_, tyba_, mret_,\n  { {0x69de31ec, 0x98a3072b, 0x779601fc, 0x00000000}},  //   _vape, жисе, ијац,\n  { {0x69de0b28, 0x6ca404e8, 0x290a0006, 0x00000000}},  //   _wape, _اصول, ryba_,\n  { {0xdce1038c, 0x18670407, 0x7c3d386f, 0x00000000}},  // [c700] malı, рати_, érre,\n  { {0xe6170269, 0x63bb0022, 0x26c01703, 0x00000000}},  //   аду_, _acun, rtio_,\n  { {0x26c03870, 0x224701aa, 0x3ead1bac, 0x00000000}},  //   stio_, donk_, hret_,\n  { {0xdce10279, 0x799c1e28, 0x26c000b0, 0x00000000}},  //   nalı, larw, ptio_,\n  { {0x3ead0030, 0x6266189f, 0xdc370049, 0x00000000}},  //   jret_, авда, סאנט_,\n  { {0x5bd303d7, 0x2cac018e, 0x3ead0374, 0x00000000}},  //   _तस्व, yrdd_, dret_,\n  { {0x64a3132e, 0xdce1005a, 0x3ead3871, 0x00000000}},  //   _мара, kalı, eret_,\n  { {0x0443003b, 0x601501ca, 0x63bb0051, 0x00000000}},  //   _десн, _rámc, _gcun,\n  { {0x3ead0056, 0xdefa007c, 0x2cac0016, 0x00000000}},  //   gret_, тый_, wrdd_,\n  { {0x59b203d7, 0x7bdf1261, 0xb6070066, 0x00000000}},  //   _जागर, _saqu, _gaġġ,\n  { {0x7bdf0211, 0xfc400802, 0x799c0022, 0x00000000}},  //   _paqu, čín_, darw,\n  { {0x3ead3872, 0xdcfa0089, 0x1b1f0044, 0x00000000}},  //   bret_, latī, _যুগে_,\n  { {0x7bdf06c2, 0x799c018e, 0x00000000, 0x00000000}},  //   _vaqu, farw,   ,\n  { {0x5d840025, 0x799c0016, 0xdcea0066, 0x00000000}},  //   _الغل, garw, _nefħ,\n  { {0x6d5818c5, 0x7bdf00d6, 0x6e3d0010, 0x00000000}},  //   _uzva, _taqu, ésbe,\n  { {0x20d80011, 0xdce10276, 0x00000000, 0x00000000}},  //   _mũi_, calı,   ,\n  { {0x799c10ba, 0x6b9d004a, 0xdcfa0089, 0x00000000}},  // [c710] barw, masg, katī,\n  { {0xb8dd0055, 0x63bb0035, 0x79a720d2, 0x00000000}},  //   _ইন_, _scun, _трие,\n  { {0x69d52b09, 0x245c01dc, 0x92d60044, 0x00000000}},  //   meze, zíme_, িমো_,\n  { {0x6b9d0089, 0x3ead1eb5, 0x69c73873, 0x00000000}},  //   nasg, yret_, lfje,\n  { {0x1708026c, 0x00000000, 0x00000000, 0x00000000}},  //   _پہلی_,   ,   ,\n  { {0x4095005e, 0x245c01ca, 0x3ead009d, 0x00000000}},  //   брит, víme_, vret_,\n  { {0xdce1005d, 0x6b9d182b, 0x224701d6, 0x00000000}},  //   yalı, kasg, ronk_,\n  { {0x69d50010, 0x8938009b, 0x2938009b, 0x00000000}},  //   heze, ירוע_, יאון_,\n  { {0x60150845, 0x69d50047, 0xe1f30d3a, 0x00000000}},  //   _cáma, keze, _وسط_,\n  { {0x69d50010, 0x3ead3874, 0xab5b01a2, 0x00000000}},  //   jeze, rret_, rfül,\n  { {0xeb9a005e, 0x69d50010, 0x3ead016e, 0x00000000}},  //   лин_, deze, sret_,\n  { {0x6b9d0435, 0x320500ab, 0x3ead0023, 0x00000000}},  //   gasg, _holy_, pret_,\n  { {0x8e853875, 0x1ee7025a, 0xdce1005a, 0x00000000}},  //   _угле, _خوشی_, ralı,\n  { {0x69d51440, 0x61e106a9, 0x32050068, 0x00000000}},  //   geze, _jall, _joly_,\n  { {0x61e13876, 0xfbdf0181, 0x78b5016c, 0x00000000}},  //   _mall, glês_, guzv,\n  { {0x600e0045, 0x7b070023, 0x3205004a, 0x00000000}},  //   _cùmh, ërtë, _loly_,\n  { {0x69d50e43, 0x3f7a0049, 0x6b8411c8, 0x00000000}},  // [c720] beze, אָבע, _ifig,\n  { {0x61e120d6, 0x499619ea, 0x00000000, 0x00000000}},  //   _nall, _ушит,   ,\n  { {0xd910089d, 0xd05a006b, 0x182802fd, 0x00000000}},  //   _غیر_, _ertə, _نقدی_,\n  { {0xad360049, 0xdb1d0010, 0xdb0d006c, 0x00000000}},  //   זנעס_, yesü, _ebaõ,\n  { {0x61e13877, 0x6a60010f, 0xdcfa0089, 0x00000000}},  //   _ball, röff, tatī,\n  { {0x61e109d9, 0x00000000, 0x00000000, 0x00000000}},  //   _call,   ,   ,\n  { {0x61e1051b, 0x859b009b, 0xdcfa0089, 0x00000000}},  //   _dall, _תשלו, ratī,\n  { {0x68e10f4b, 0xdb1d2939, 0x9ee80025, 0x00000000}},  //   ældi, tesü, لفعل_,\n  { {0x61e11642, 0x69d50010, 0xdcfa0089, 0x00000000}},  //   _fall, yeze, patī,\n  { {0x61e102f1, 0xc27b034e, 0x6ce3006e, 0x00000000}},  //   _gall, _ערבי, गिंग_,\n  { {0x69d50047, 0xab5b2084, 0x00000000, 0x00000000}},  //   veze, rfüm,   ,\n  { {0x69d5114d, 0xc6050061, 0x60150010, 0x00000000}},  //   weze, _शक्य_, _táma,\n  { {0x69d507ef, 0x6b9d0032, 0x940c006b, 0x00000000}},  //   teze, rasg, ülər_,\n  { {0x7f3b0049, 0x6b8400c4, 0x20060112, 0x00000000}},  //   _געדו, _efig, _hooi_,\n  { {0x5d9b00b6, 0x69d5002d, 0x6b840016, 0x00000000}},  //   _גבוה, reze, _ffig,\n  { {0x69d53878, 0xb901007d, 0x08550245, 0x00000000}},  //   seze, _धन_, іваю,\n  { {0x20060100, 0x7c2f01d0, 0x69d515ea, 0x00000000}},  // [c730] _mooi_, micr, peze,\n  { {0xdb04010f, 0x7aed0e49, 0x60330035, 0x00000000}},  //   _heiß, _irat, rămi,\n  { {0x4d7b0049, 0xe4d50774, 0x9379026b, 0x00000000}},  //   ארבע, تقاد, абет_,\n  { {0x61e11815, 0x7aed0340, 0x4cbb007b, 0x00000000}},  //   _sall, _krat, רמאג,\n  { {0x2d9e023e, 0x81e20055, 0x32050133, 0x00000000}},  //   kate_, ধান_, _poly_,\n  { {0x2d9e0004, 0x20893879, 0x20c10010, 0x00000000}},  //   jate_, айки_, tói_,\n  { {0x61e1387a, 0x6019003b, 0x00000000, 0x00000000}},  //   _vall, ицир_,   ,\n  { {0x7aed0af0, 0x20c103f0, 0x60090407, 0x00000000}},  //   _orat, rói_, рним_,\n  { {0x61e10004, 0x442f011c, 0xd5c6007d, 0x00000000}},  //   _tall, mig_, र्वज,\n  { {0x2d9e121e, 0x442f02cc, 0x6b840197, 0x00000000}},  //   gate_, lig_, _sfig,\n  { {0x63a4009f, 0x7aed000d, 0x6d46011f, 0x00000000}},  //   ðing, _arat, şkan,\n  { {0x7aed13a1, 0x200601bb, 0xae1d0164, 0x00000000}},  //   _brat, _gooi_, योजन_,\n  { {0x2d9e1d7a, 0xab5b010f, 0x63a90066, 0x00000000}},  //   bate_, nfüh, _mden,\n  { {0x2d9e000d, 0x2d810004, 0xe81c007d, 0x00000000}},  //   cate_, _ühe_, नसभा_,\n  { {0x63a90030, 0x7aed3098, 0x5fdd006e, 0x00000000}},  //   _oden, _erat, _मसाल,\n  { {0x7aed04b4, 0x442f0059, 0x63a90023, 0x00000000}},  //   _frat, jig_, _nden,\n  { {0x644b0016, 0x562a387b, 0x00000000, 0x00000000}},  // [c740] dogi, ажам_,   ,\n  { {0x63a9148a, 0x442f00d4, 0x00000000, 0x00000000}},  //   _aden, eig_,   ,\n  { {0x442f0a48, 0x2bc10164, 0x6289004a, 0x00000000}},  //   fig_, ष्का, _ateo,\n  { {0x442f138a, 0x2d9e387c, 0xab5b01a2, 0x00000000}},  //   gig_, zate_, ffüh,\n  { {0x20060007, 0x63a90016, 0x2d9e0082, 0x00000000}},  //   _rooi_, _dden, yate_,\n  { {0x66070107, 0xfe6704e8, 0x63a908a7, 0x00000000}},  //   _gojk, _زد_, _eden,\n  { {0x442f006a, 0x2d9e167c, 0x644b1edb, 0x00000000}},  //   big_, vate_, bogi,\n  { {0x644b0211, 0x63a4000c, 0xa2d5013d, 0x00000000}},  //   cogi, ðind, _मैक्,\n  { {0x2d9e0585, 0x81cf0055, 0x601c0047, 0x00000000}},  //   tate_, ষয়_, _néme,\n  { {0x63a918a2, 0x70f60644, 0x27370082, 0x00000000}},  //   _zden, _وسائ, ầng_,\n  { {0xdca300ed, 0x1fac0044, 0x5d54387d, 0x00000000}},  //   маќи, ক্ষস, якот,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x2d9e1575, 0x10690025, 0xaf36023c, 0x00000000}},  //   pate_, _احلى_, _برات,\n  { {0x7aed0119, 0x442f02ae, 0xdb04010f, 0x00000000}},  //   _vrat, zig_, _weiß,\n  { {0x69c3011f, 0xf8070816, 0x644b1856, 0x00000000}},  //   _önem, очан, yogi,\n  { {0x2d9c00ea, 0x9f4f00f6, 0x442f00f8, 0x00000000}},  //   _heve_, _gogó_, xig_,\n  { {0x442f00b5, 0x66070039, 0x7c2d0020, 0x00000000}},  // [c750] vig_, _pojk, _imar,\n  { {0x442f26c3, 0x644b0016, 0x2d9c0087, 0x00000000}},  //   wig_, wogi, _jeve_,\n  { {0x442f04e5, 0x7c2d0093, 0x644b0006, 0x00000000}},  //   tig_, _kmar, togi,\n  { {0x2d9c0263, 0x245c000c, 0xab5b01a2, 0x00000000}},  //   _leve_, tíma_, tfüh,\n  { {0x386902e1, 0x442f21ef, 0x7c2d13e1, 0x00000000}},  //   mmar_, rig_, _mmar,\n  { {0x442f0343, 0x2d9c1a92, 0x386902e1, 0x00000000}},  //   sig_, _neve_, lmar_,\n  { {0xab5b010f, 0x7c2d0059, 0xb88206b8, 0x00000000}},  //   sfüh, _omar, žíva,\n  { {0x63a90030, 0x201911ea, 0x3eab004a, 0x00000000}},  //   _uden, ósi_, ácto_,\n  { {0x442d387e, 0x443f387f, 0x2d9c0197, 0x00000000}},  //   _ime_, _iju_, _beve_,\n  { {0x8c080055, 0x60150047, 0x443f012d, 0x00000000}},  //   _লগইন_, _támo, _hju_,\n  { {0x2d9c220a, 0x3869003b, 0x442d0058, 0x00000000}},  //   _deve_, kmar_, _kme_,\n  { {0xca293880, 0x442d3881, 0x00000000, 0x00000000}},  //   _גם_, _jme_,   ,\n  { {0x442d00f4, 0x386900ca, 0x2d9c3882, 0x00000000}},  //   _mme_, dmar_, _feve_,\n  { {0x7c2d0032, 0x442d3883, 0x443f0087, 0x00000000}},  //   _emar, _lme_, _lju_,\n  { {0xfe700a90, 0x34ba001c, 0x25a10030, 0x00000000}},  //   _شده_, _उमेद, dahl_,\n  { {0xbb46008b, 0x443f0091, 0x201f0066, 0x00000000}},  //   _нейк, _nju_, nhui_,\n  { {0x248a0022, 0x09d10044, 0x00000000, 0x00000000}},  // [c760] _stbm_, ায়া,   ,\n  { {0x442d01aa, 0x2d8500d4, 0x7c2d0832, 0x00000000}},  //   _ame_, ncle_, _zmar,\n  { {0x7c2d018e, 0x443f0093, 0x442d1658, 0x00000000}},  //   _ymar, _bju_, _bme_,\n  { {0x7c2d0126, 0x442d09b8, 0xe4520774, 0x00000000}},  //   _xmar, _cme_, رضا_,\n  { {0xcfc30055, 0x201f0020, 0x2bc10164, 0x00000000}},  //   ্যান, dhui_, ष्टा,\n  { {0x64a60245, 0x442d00f4, 0x6724016c, 0x00000000}},  //   _нага, _eme_, mzij,\n  { {0x67242962, 0x2d9c0e6d, 0x442d0fd1, 0x00000000}},  //   lzij, _reve_, _fme_,\n  { {0xd0100054, 0x93a901f7, 0x853b009b, 0x00000000}},  //   ئلة_, _واقف_, _הגלי,\n  { {0x67242480, 0x0443012b, 0x644300f4, 0x00000000}},  //   nzij, _четн, énie,\n  { {0xab5b0129, 0x63a21ae9, 0x00000000, 0x00000000}},  //   ngüe, laon,   ,\n  { {0x38693884, 0x442d0022, 0x7c2d00d9, 0x00000000}},  //   ymar_, _yme_, _pmar,\n  { {0x63a20020, 0x25a1010f, 0xbb94007c, 0x00000000}},  //   naon, zahl_, нающ,\n  { {0x2d9c0181, 0x7b6402ea, 0x67242570, 0x00000000}},  //   _teve_, етре, jzij,\n  { {0x672401a1, 0x6b860009, 0x58d50088, 0x00000000}},  //   dzij, ackg, могт,\n  { {0x63a20a6e, 0x2600013d, 0xee290025, 0x00000000}},  //   kaon, रानी_, _بأنه_,\n  { {0x7c2d014a, 0x25a1010f, 0x63a200e7, 0x00000000}},  //   _umar, wahl_, jaon,\n  { {0x386900d6, 0xdce8047f, 0xf77f0ddb, 0x00000000}},  // [c770] rmar_, madı, _caça_,\n  { {0x3869027b, 0x442d0027, 0xdce8005d, 0x00000000}},  //   smar_, _sme_, ladı,\n  { {0xf6500a4f, 0x67240107, 0x7c3d0b05, 0x00000000}},  //   ائق_, azij, onsr,\n  { {0xd3712aea, 0xf77f02d5, 0xdce8005d, 0x00000000}},  //   نها_, _faça_, nadı,\n  { {0x27e9005d, 0x6440003b, 0x2d850133, 0x00000000}},  //   mdan_, _djmi, ycle_,\n  { {0xdb1d00f8, 0x3f9d0022, 0x00000000, 0x00000000}},  //   besö, _sewu_,   ,\n  { {0xa4d40088, 0x94d4004d, 0x63a20058, 0x00000000}},  //   _порі, _порц, baon,\n  { {0x27e92408, 0x442d002d, 0x00000000, 0x00000000}},  //   ndan_, _ume_,   ,\n  { {0x26c90058, 0xdce80279, 0x27e9002d, 0x00000000}},  //   ntao_, dadı, idan_,\n  { {0x27e93885, 0x645901a2, 0x7c3d00d9, 0x00000000}},  //   hdan_, llwi, ensr,\n  { {0x6724002b, 0x4d6501fb, 0x799e01aa, 0x00000000}},  //   zzij, ьков, _repw,\n  { {0x3f15004c, 0x443d0016, 0x2d8500ab, 0x00000000}},  //   _одес, nnw_, scle_,\n  { {0x27e93886, 0x64590009, 0x00000000, 0x00000000}},  //   ddan_, ilwi,   ,\n  { {0xf77f153d, 0x9e640088, 0xce6b064b, 0x00000000}},  //   _raça_, _звід, _уред_,\n  { {0x63a22fff, 0x69cd01f5, 0x601c009d, 0x00000000}},  //   yaon, द्धी, _héma,\n  { {0x6f160046, 0x27e9093e, 0x998d0091, 0x00000000}},  //   _życi, gdan_, đeš_,\n  { {0x63a2016e, 0x060a007e, 0x00000000, 0x00000000}},  // [c780] vaon, онак_,   ,\n  { {0x67240209, 0x63a20020, 0x7ae43702, 0x00000000}},  //   rzij, waon, _isit,\n  { {0x63a23887, 0xd94600d7, 0x9f420142, 0x00000000}},  //   taon, _цени, ľké_,\n  { {0x69dc05d5, 0x69ce01bb, 0xf77f0181, 0x00000000}},  //   lere, lfbe, _taça_,\n  { {0x63a201ed, 0x366a0364, 0x00000000, 0x00000000}},  //   raon, _мамо_,   ,\n  { {0x69dc004e, 0x201d04be, 0x7ae40020, 0x00000000}},  //   nere, _alwi_, _msit,\n  { {0x69dc001a, 0x63a20166, 0x644319d5, 0x00000000}},  //   iere, paon, énic,\n  { {0x7ae400b0, 0x00000000, 0x00000000, 0x00000000}},  //   _osit,   ,   ,\n  { {0x69dc0eb6, 0x601504bb, 0xa1c6005e, 0x00000000}},  //   kere, _zámk, _обад,\n  { {0x69dc19da, 0x601c00f4, 0x27e9005d, 0x00000000}},  //   jere, _déma, zdan_,\n  { {0x45b700b6, 0x27e93888, 0x7ae40622, 0x00000000}},  //   ופיל_, ydan_, _asit,\n  { {0x6280011c, 0x61e8011c, 0x63a00161, 0x00000000}},  //   _kumo, _hadl, _jemn,\n  { {0xdce802b9, 0x63a0014a, 0x27e93889, 0x00000000}},  //   radı, _memn, vdan_,\n  { {0x69dc1932, 0x81b00044, 0x63a0001a, 0x00000000}},  //   gere, ট্র_, _lemn,\n  { {0x7ae4388a, 0x61e80058, 0x27e9006b, 0x00000000}},  //   _esit, _madl, tdan_,\n  { {0xb90703d7, 0x63a00056, 0x7ae40009, 0x00000000}},  //   _मई_, _nemn, _fsit,\n  { {0xfc3f0802, 0x61fa00c7, 0x60150051, 0x00000000}},  // [c790] mní_, _ontl, _dámh,\n  { {0x69dc388b, 0xfc3f32ad, 0x61e8016c, 0x00000000}},  //   cere, lní_, _nadl,\n  { {0x26c90119, 0xfa340025, 0x47ab0044, 0x00000000}},  //   stao_, _جريد, ঙ্গী,\n  { {0xfc3f388c, 0x27e9005f, 0x61fa0095, 0x00000000}},  //   nní_, qdan_, _antl,\n  { {0x320c3101, 0x64590719, 0xe299007c, 0x00000000}},  //   _body_, rlwi, чал_,\n  { {0xaab203d7, 0x628015a3, 0x11d90025, 0x00000000}},  //   _जिसक, _dumo, سوعة_,\n  { {0x69c5000b, 0xe0d1026c, 0x03c7025f, 0x00000000}},  //   _mche, ازت_, _осам,\n  { {0x69dc143a, 0xfc3f01ca, 0x61fa010f, 0x00000000}},  //   zere, jní_, _entl,\n  { {0xfc3f13c7, 0x7a22028c, 0x69dc014a, 0x00000000}},  //   dní_, _hôte, yere,\n  { {0x6cea02d2, 0x63a01093, 0x69dc2230, 0x00000000}},  //   टिंग_, _zemn, xere,\n  { {0x26000164, 0x82340025, 0x6015008e, 0x00000000}},  //   राती_, _شركا, _lámi,\n  { {0x69c5028c, 0xeb970057, 0x601c388d, 0x00000000}},  //   _ache, нию_, _téma,\n  { {0x81e20044, 0x60152c52, 0x6d58388e, 0x00000000}},  //   ধার_, _námi, _eyva,\n  { {0x69dc01a2, 0xdca50900, 0x00000000, 0x00000000}},  //   uere, _заки,   ,\n  { {0xfc3f13c7, 0xc212009b, 0x6d580006, 0x00000000}},  //   bní_, נהל_, _gyva,\n  { {0x69dc388f, 0x7bdd001a, 0x7ae40004, 0x00000000}},  //   sere, cesu, _tsit,\n  { {0x69dc0ed6, 0xb907013d, 0x7ae41080, 0x00000000}},  // [c7a0] pere, _मै_, _usit,\n  { {0x63a0000d, 0xf77f0181, 0x62802817, 0x00000000}},  //   _semn, _faço_, _rumo,\n  { {0x62800006, 0x399b0097, 0x7a22009d, 0x00000000}},  //   _sumo, _מייד, _côte,\n  { {0x62800e20, 0x00000000, 0x00000000, 0x00000000}},  //   _pumo,   ,   ,\n  { {0x81e90055, 0x61e82b70, 0x08770049, 0x00000000}},  //   যান_, _padl, _רעכט_,\n  { {0x7bdd114c, 0xfc3f01dc, 0x60e61123, 0x00000000}},  //   zesu, zní_, ециз,\n  { {0xe6430088, 0x63a025c2, 0x320c0161, 0x00000000}},  //   _серп, _temn, _vody_,\n  { {0x320c0036, 0xefb2007a, 0xfc3f093f, 0x00000000}},  //   _wody_, ایشگ, xní_,\n  { {0xfc3f13c7, 0xc24601fe, 0x7bdd01a2, 0x00000000}},  //   vní_, _знак, vesu,\n  { {0x660e0190, 0x7ed30025, 0x00000000, 0x00000000}},  //   _jobk, ازيا,   ,\n  { {0xfc3f13c7, 0xd622007e, 0x660e0022, 0x00000000}},  //   tní_, нiка, _mobk,\n  { {0x637601f6, 0x6abd006c, 0x00000000, 0x00000000}},  //   _günü, tusf,   ,\n  { {0x7bdd0292, 0xfc3f0802, 0x601c009d, 0x00000000}},  //   resu, rní_, _hémo,\n  { {0xfc3f01c8, 0x7bdd014a, 0x673b016c, 0x00000000}},  //   sní_, sesu, _žujo,\n  { {0xfc3f0802, 0xdf00002b, 0x6abd1617, 0x00000000}},  //   pní_, _wiċċ_, susf,\n  { {0x601c00f4, 0x36d50581, 0x7bdd0065, 0x00000000}},  //   _mémo, кобр, qesu,\n  { {0x2bc60164, 0x69c501aa, 0x89d900a1, 0x00000000}},  // [c7b0] _वाता, _tche, _ہوکر_,\n  { {0x69c5018e, 0x63a4009f, 0x163b0025, 0x00000000}},  //   _uche, ðinn, أسرة_,\n  { {0xe1ff00ad, 0x2cbe19cb, 0x81e90044, 0x00000000}},  //   _đó_, nutd_, যাম_,\n  { {0x9f5f009f, 0x69cd006e, 0x00000000, 0x00000000}},  //   kkuð_, द्री,   ,\n  { {0xfbd30201, 0x2bd301f5, 0x8627007e, 0x00000000}},  //   ध्यम, ध्या, _зьве,\n  { {0x1a9c0049, 0x601c2a41, 0xc88200e5, 0x00000000}},  //   לידע, _bémo, _fişă_,\n  { {0x91640054, 0x2ee60007, 0x8af0006b, 0x00000000}},  //   هههه, _asof_, _ayəl,\n  { {0x601c00f4, 0x8f7501ff, 0x7f750088, 0x00000000}},  //   _démo, купі, купц,\n  { {0x25a3002b, 0x81d60044, 0xa3e60061, 0x00000000}},  //   _kejl_, িয়_, _बघत_,\n  { {0x273e001d, 0x6b8d3890, 0x2c7b007f, 0x00000000}},  //   ắng_, _afag, _rūda_,\n  { {0x2bc60061, 0x25a300f8, 0x2ee600f6, 0x00000000}},  //   _वादा, _mejl_, _esof_,\n  { {0x25a3002b, 0x3de10044, 0x00000000, 0x00000000}},  //   _lejl_, বাইল,   ,\n  { {0x8af00163, 0xdb060023, 0xef0e0131, 0x00000000}},  //   _azər, makë, _тм_,\n  { {0xe3d50044, 0x200f01ee, 0xddc3002b, 0x00000000}},  //   _সোমব, _hogi_, _jinż,\n  { {0x3ebf01b5, 0x5e5600f3, 0xe9a30147, 0x00000000}},  //   luut_, _جلوس_, расп,\n  { {0xf77216bb, 0x200f0010, 0x684300ed, 0x00000000}},  //   لاء_, _jogi_, анса,\n  { {0xe7370057, 0x3ebf00c7, 0x200f0181, 0x00000000}},  // [c7c0] вет_, nuut_, _mogi_,\n  { {0x200f0004, 0xdb0400c4, 0x64430d7f, 0x00000000}},  //   _logi_, _adiç, énin,\n  { {0x27eb000a, 0xab5b035a, 0x00000000, 0x00000000}},  //   _facn_, ngün,   ,\n  { {0x7af613c2, 0xb4d2013d, 0x200f3891, 0x00000000}},  //   _kryt, _वही_, _nogi_,\n  { {0x27e0010f, 0x25a30030, 0x245c00b9, 0x00000000}},  //   mein_, _fejl_, ními_,\n  { {0x80db0055, 0xdb0402d5, 0x27e0010f, 0x00000000}},  //   ভিন্, _ediç, lein_,\n  { {0x40340088, 0x29180af9, 0x7af60006, 0x00000000}},  //   лекс, nyra_, _lryt,\n  { {0xaab20061, 0x27e004ec, 0x6823006c, 0x00000000}},  //   _जिंक, nein_, _tõde,\n  { {0x2e4a005e, 0x29183892, 0x00000000, 0x00000000}},  //   дяно_, hyra_,   ,\n  { {0x44260fb3, 0x7c8601fb, 0x601c048d, 0x00000000}},  //   lho_, куме, _témo,\n  { {0x27e0021e, 0xa3e60061, 0x29180065, 0x00000000}},  //   kein_, _बघा_, jyra_,\n  { {0x44260fb3, 0x644200b0, 0x7af63893, 0x00000000}},  //   nho_, nnoi, _bryt,\n  { {0x3fcb0123, 0x44260032, 0x00000000, 0x00000000}},  //   _آدمی_, iho_,   ,\n  { {0x3eb90027, 0x00000000, 0x00000000, 0x00000000}},  //   áste_,   ,   ,\n  { {0x7af637d6, 0x19580783, 0x44260082, 0x00000000}},  //   _eryt, вары_, kho_,\n  { {0x63a4000c, 0x44260027, 0x7c26010f, 0x00000000}},  //   ðinl, jho_, chkr,\n  { {0x26c00058, 0x245c01ca, 0x81e90044, 0x00000000}},  // [c7d0] guio_, cími_, যাত_,\n  { {0xcfeb0055, 0x2fdf010f, 0x85b800ec, 0x00000000}},  //   কায়_, zeug_, клус_,\n  { {0xf96b0a1e, 0x25a30190, 0x9f4f00f8, 0x00000000}},  //   _юрий_, _vejl_, _ingå_,\n  { {0x44260487, 0x6442009d, 0x00000000, 0x00000000}},  //   gho_, gnoi,   ,\n  { {0x1dc20309, 0x200f0208, 0xc2c803ec, 0x00000000}},  //   _शांत, _rogi_, نبول_,\n  { {0x2169013b, 0x78ba0091, 0x00000000, 0x00000000}},  //   нили_, štve,   ,\n  { {0x200f0058, 0x2055092b, 0x1634007c, 0x00000000}},  //   _pogi_, лтир, _теря,\n  { {0x44260219, 0x3ebf3894, 0xe3b0031d, 0x00000000}},  //   cho_, tuut_, _ورق_,\n  { {0x69d7049a, 0xdb060023, 0xddc30066, 0x00000000}},  //   _obxe, rakë, _tinż,\n  { {0x27e0022b, 0x7d09012b, 0xdb1d01e5, 0x00000000}},  //   zein_, еног_, ggsí,\n  { {0x6cc5008b, 0x91aa00a1, 0x611300b9, 0x00000000}},  //   ыйна, _سننے_, _dělá,\n  { {0x2d8e3895, 0x9ef50025, 0xab5b1e49, 0x00000000}},  //   _effe_, _مستش, rgün,\n  { {0x765e0c6a, 0x00000000, 0x00000000, 0x00000000}},  //   ylpy,   ,   ,\n  { {0x29180065, 0x7c260065, 0x3ead010e, 0x00000000}},  //   tyra_, shkr, mset_,\n  { {0x27e0192b, 0x291e3896, 0x3ead269f, 0x00000000}},  //   tein_, áta_, lset_,\n  { {0x7a34006b, 0x3f8d00c4, 0x66e60aed, 0x00000000}},  //   _mütə, nceu_, лоба,\n  { {0x291e0119, 0x7c240065, 0x27e0192b, 0x00000000}},  // [c7e0] šta_, _ilir, rein_,\n  { {0x44260b32, 0x3ead021e, 0xdb060d7f, 0x00000000}},  //   who_, iset_, jaké,\n  { {0x44263059, 0x37b00044, 0xe3ba003b, 0x00000000}},  //   tho_, ঙ্গর, ебе_,\n  { {0x3ead021e, 0x7bc60fef, 0x69c3011f, 0x00000000}},  //   kset_, ngku, _öner,\n  { {0xf77202fd, 0x26c008eb, 0x6442009d, 0x00000000}},  //   _داد_, quio_, rnoi,\n  { {0x4426000b, 0x3ead0030, 0x38603897, 0x00000000}},  //   sho_, dset_, llir_,\n  { {0x6015009f, 0x44260082, 0x3860005b, 0x00000000}},  //   _náms, pho_, olir_,\n  { {0xb4fb0104, 0x3ead0133, 0xdfd00025, 0x00000000}},  //   _אפלי, fset_, آية_,\n  { {0x74130151, 0x4424006c, 0x3ead010e, 0x00000000}},  //   _اوقا, _ilm_, gset_,\n  { {0x7c2404cb, 0x7c36000a, 0x3cd4007e, 0x00000000}},  //   _alir, _amyr, ажос,\n  { {0x442400bb, 0x38600fa2, 0xd657009b, 0x00000000}},  //   _klm_, klir_, ריית_,\n  { {0x7c24278c, 0x60150161, 0x3ead08d0, 0x00000000}},  //   _clir, _dáms, bset_,\n  { {0x4424003f, 0x2bc6006e, 0x00000000, 0x00000000}},  //   _mlm_, _वारा,   ,\n  { {0x4424033b, 0x2d8e032e, 0xa2cc007d, 0x00000000}},  //   _llm_, _uffe_, _समन्,\n  { {0x7c242db6, 0xbd55007a, 0x195907d0, 0x00000000}},  //   _flir, _پروژ, тавы_,\n  { {0x6e3a0030, 0x6d46014a, 0x7c24005b, 0x00000000}},  //   litb, şkas, _glir,\n  { {0xd5bb00ed, 0x9635132e, 0x245c01dc, 0x00000000}},  // [c7f0] есе_, анац, nímu_,\n  { {0x44240030, 0x6e3a05d2, 0x00000000, 0x00000000}},  //   _alm_, nitb,   ,\n  { {0x38600fdb, 0x442404be, 0xb86700a1, 0x00000000}},  //   blir_, _blm_, _ماحو,\n  { {0x69c70292, 0x3ead06d5, 0x44241911, 0x00000000}},  //   lgje, yset_, _clm_,\n  { {0x81e90044, 0x3ead0050, 0x44241444, 0x00000000}},  //   যাস_, xset_, _dlm_,\n  { {0xd05a005f, 0x4424006b, 0x69c70de8, 0x00000000}},  //   _istə, _elm_, ngje,\n  { {0x44240065, 0x6e3a06d3, 0x00000000, 0x00000000}},  //   _flm_, ditb,   ,\n  { {0xe3b30318, 0x3ead03b6, 0x44393898, 0x00000000}},  //   _درس_, tset_, _ös_,\n  { {0x63ab1017, 0x60060147, 0x3f8d3899, 0x00000000}},  //   magn, рным_, rceu_,\n  { {0x3ead389a, 0x3f8d0181, 0x63ab141a, 0x00000000}},  //   rset_, sceu_, lagn,\n  { {0x61e31016, 0x3ead05d5, 0xcb0900b3, 0x00000000}},  //   menl, sset_, _קל_,\n  { {0x61e31038, 0x63ab0058, 0x8f7501e1, 0x00000000}},  //   lenl, nagn, _кулі,\n  { {0x20d1001d, 0x60c3011f, 0xde0501fb, 0x00000000}},  //   _hơi_, lunm, _впли,\n  { {0x7a2b0676, 0x672d0620, 0x8d8701ff, 0x00000000}},  //   _lütf, dzaj, _судд,\n  { {0x63ab00e0, 0x00000000, 0x00000000, 0x00000000}},  //   kagn,   ,   ,\n  { {0x6b8f001c, 0x7c24027f, 0x61e3010f, 0x00000000}},  //   cccg, _ulir, henl,\n\n  { {0x63ab0207, 0x61e3389b, 0x81b00044, 0x00000000}},  // [c800] dagn, kenl, ট্ট_,\n  { {0x645b0093, 0x4424014a, 0x63ab324d, 0x00000000}},  //   _akui, _slm_, eagn,\n  { {0x20d1001d, 0x61e3014a, 0x3860389c, 0x00000000}},  //   _nơi_, denl, plir_,\n  { {0x63ab0039, 0x6aa40009, 0xe29a0269, 0x00000000}},  //   gagn, _kwif, вад_,\n  { {0x9983010a, 0xf194007c, 0x672d0036, 0x00000000}},  //   cijų_, биль, czaj,\n  { {0x61e302ae, 0x20d10011, 0x425600ec, 0x00000000}},  //   genl, _bơi_, штет,\n  { {0x03a601fb, 0x154301e0, 0xa4910014, 0x00000000}},  //   _вибо, _дерм, _فیلت,\n  { {0x7e61001c, 0xdfda0265, 0xdb0b014a, 0x00000000}},  //   ellp, тък_, _çiçe,\n  { {0xe61f0011, 0x26d20022, 0x7e2a05b8, 0x00000000}},  //   _muôn_, ntyo_, віна_,\n  { {0xe61f001d, 0x20d601fb, 0x3eb80059, 0x00000000}},  //   _luôn_, _відс, črt_,\n  { {0x6b8f001c, 0x6e3a032e, 0x64930066, 0x00000000}},  //   tccg, ritb, _għid,\n  { {0x6e3a00d9, 0x691e0066, 0x00000000, 0x00000000}},  //   sitb, _mħeġ,   ,\n  { {0x6e940054, 0x7b670264, 0x27f2018e, 0x00000000}},  //   _التا, ртне, ddyn_,\n  { {0xdd9100a1, 0x6aa40022, 0x6b840032, 0x00000000}},  //   _ٹوٹ_, _dwif, _egig,\n  { {0x69c7008d, 0x97a70216, 0xe61f0011, 0x00000000}},  //   rgje, ирал, _buôn_,\n  { {0x61e3011f, 0x765c0387, 0x69c736d9, 0x00000000}},  //   zenl, _akry, sgje,\n  { {0xf77300a2, 0x63ab0039, 0x61e318cf, 0x00000000}},  // [c810] زار_, vagn, yenl,\n  { {0x6015147e, 0x645b0007, 0x7aed11a8, 0x00000000}},  //   _lámp, _skui, _isat,\n  { {0x63ab389d, 0x99830006, 0x672d1072, 0x00000000}},  //   tagn, sijų_, szaj,\n  { {0x20d10011, 0x601c00f4, 0x7aed223a, 0x00000000}},  //   _rơi_, _fémi, _ksat,\n  { {0xadf8024c, 0x61e300b5, 0x63ab1562, 0x00000000}},  //   ्ञान_, tenl, ragn,\n  { {0x63ab000c, 0x2ff800a1, 0x00000000, 0x00000000}},  //   sagn, یڈنگ_,   ,\n  { {0x26090365, 0x63ab00f4, 0x61e3014a, 0x00000000}},  //   साठी_, pagn, renl,\n  { {0x7aed389e, 0x13aa00a6, 0x16050061, 0x00000000}},  //   _osat, _منفی_, रावर_,\n  { {0x64590036, 0x61e30168, 0x7fe80025, 0x00000000}},  //   mowi, penl, شريف_,\n  { {0x6459389f, 0x6f09049a, 0x443d38a0, 0x00000000}},  //   lowi, rxec, liw_,\n  { {0x909938a1, 0x30850054, 0x63a901a3, 0x00000000}},  //   _свет_, _الصف, _keen,\n  { {0x64590046, 0x7c3d012b, 0x628104de, 0x00000000}},  //   nowi, gisr, _hilo,\n  { {0x7aed0047, 0x63a9224a, 0x9f0b0025, 0x00000000}},  //   _csat, _meen, _جزاك_,\n  { {0x63a900b0, 0x7aed0066, 0x7c3d0048, 0x00000000}},  //   _leen, _dsat, aisr,\n  { {0x628101cd, 0x7aed38a2, 0x64590036, 0x00000000}},  //   _milo, _esat, kowi,\n  { {0x765c38a3, 0x9ac501d5, 0x63a900ca, 0x00000000}},  //   _skry, fiċċ, _neen,\n  { {0x64590036, 0x661538a4, 0x27f20016, 0x00000000}},  // [c820] dowi, _bozk, rdyn_,\n  { {0x6281011c, 0x81e90044, 0x00000000, 0x00000000}},  //   _nilo, যাঁ_,   ,\n  { {0x2e3a0049, 0x78a90107, 0x63a9010f, 0x00000000}},  //   נגענ, ćevc, _been,\n  { {0x3ebf04be, 0xdc190036, 0xf7460131, 0x00000000}},  //   krut_, _błęd, _гемо,\n  { {0x63a900bb, 0x628138a5, 0x63ad000c, 0x00000000}},  //   _deen, _bilo, ðana,\n  { {0x765c0036, 0x30a602e9, 0x78a50045, 0x00000000}},  //   _ukry, брив, _ywhv,\n  { {0x92e80055, 0x628104be, 0x63a9054e, 0x00000000}},  //   যমে_, _dilo, _feen,\n  { {0xf2e80014, 0x63a9095c, 0x24b7009b, 0x00000000}},  //   _نکته_, _geen, _להלן_,\n  { {0x26c000c4, 0x7bcd0026, 0x00000000, 0x00000000}},  //   nrio_, _rcau,   ,\n  { {0x7bcd001a, 0x81c800a1, 0x63a900d9, 0x00000000}},  //   _scau, _خطرہ_, _zeen,\n  { {0xa3bc03d7, 0xa3cf013d, 0x9f4f01aa, 0x00000000}},  //   _आया_, _शाम_, _lagè_,\n  { {0x7f860054, 0x26c00091, 0x628101c5, 0x00000000}},  //   _الإن, krio_, _zilo,\n  { {0x643b0049, 0xe043007c, 0x6a6001e5, 0x00000000}},  //   רעכנ, _энци, höfu,\n  { {0x64590036, 0x26c0008e, 0xab5b1052, 0x00000000}},  //   zowi, drio_, ngüi,\n  { {0x661508d2, 0xde880011, 0x26c004a5, 0x00000000}},  //   _rozk, _xịn_, erio_,\n  { {0x2c7b001e, 0x26c02996, 0x3e6b00ea, 0x00000000}},  //   _līdz_, frio_, møta_,\n  { {0x63a9027b, 0x7aed0198, 0xdce30089, 0x00000000}},  // [c830] _reen, _usat, _iznā,\n  { {0x63a9006c, 0x09b30044, 0x644a38a6, 0x00000000}},  //   _seen, ঞ্জা, éfin,\n  { {0x26c00819, 0x64590036, 0x628138a7, 0x00000000}},  //   ario_, towi, _rilo,\n  { {0x26c00555, 0x8cc00164, 0x62810466, 0x00000000}},  //   brio_, _विनो, _silo,\n  { {0x64590046, 0x63a9224a, 0x248d18e1, 0x00000000}},  //   rowi, _veen, _čemu_,\n  { {0x40950517, 0x63a90007, 0x56940517, 0x00000000}},  //   орит, _ween, _харт,\n  { {0x64590046, 0x628100d4, 0x63a938a8, 0x00000000}},  //   powi, _vilo, _teen,\n  { {0x682a00b9, 0x2eb5034b, 0xe0d6007e, 0x00000000}},  //   _týde, осос, івы_,\n  { {0xdb1d0210, 0x62811603, 0xfc3f01ca, 0x00000000}},  //   ngsä, _tilo, dií_,\n  { {0xfe420088, 0x7fb9007a, 0x3f860173, 0x00000000}},  //   дньо, _چهار_, _egou_,\n  { {0x5f9509de, 0xfc3f0161, 0x16c6013d, 0x00000000}},  //   _диет, fií_, _लम्ब,\n  { {0x5f740167, 0xfc3f0161, 0x00000000, 0x00000000}},  //   _کامر, gií_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xa2cc02fb, 0x5ebe0055, 0xb0dd0061, 0x00000000}},  //   _समस्, ্বশে, _महाग,\n  { {0xfc320025, 0x81ae0044, 0x8af0013f, 0x00000000}},  //   _يحب_, _কাম_, _ayət,\n  { {0xfc3f120f, 0x78ba0f3a, 0x57ea00e2, 0x00000000}},  //   cií_, štvo, јдам_,\n  { {0x32050038, 0x78a90107, 0xba760025, 0x00000000}},  // [c840] _only_, ćeva, _واخت,\n  { {0xa3dc0183, 0x26c00211, 0x55e300ed, 0x00000000}},  //   त्न_, rrio_, моуб,\n  { {0xae560049, 0xdb0f00fa, 0x00000000, 0x00000000}},  //   קסעס_, jacê,   ,\n  { {0xf8b300b6, 0x26c00198, 0x9cda0049, 0x00000000}},  //   _קשר_, prio_, יקעפ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x64a60001, 0x236d016c, 0x00000000, 0x00000000}},  //   _мага, _dzej_,   ,\n  { {0x628f028c, 0x3ea60035, 0x3f86004a, 0x00000000}},  //   _écon, _swot_, _pgou_,\n  { {0xdfd0006d, 0x2d87007f, 0x442201c3, 0x00000000}},  //   ريخ_, _agne_, _ôk_,\n  { {0xe29700ed, 0x63a4000c, 0x11d6013a, 0x00000000}},  //   _мат_, ðinu, _міжр,\n  { {0xddd80825, 0xdb1d0d32, 0x63a20010, 0x00000000}},  //   _bivš, ngså, lbon,\n  { {0x8146026c, 0xc27b009b, 0xeb9f00ea, 0x00000000}},  //   _بنان, _כרמי, kjøt_,\n  { {0x63a21de2, 0x2d8701e3, 0xccf8013e, 0x00000000}},  //   nbon, _egne_, rvě_,\n  { {0xa3dc02f4, 0x447b0049, 0xfc3f0161, 0x00000000}},  //   त्य_, ינטע, rií_,\n  { {0xda1b0061, 0x00000000, 0x00000000, 0x00000000}},  //   _नकळत_,   ,   ,\n  { {0x63a238a9, 0x37ab00e2, 0x00000000, 0x00000000}},  //   kbon, итан_,   ,\n  { {0x248401a2, 0x00000000, 0x00000000, 0x00000000}},  //   _nimm_,   ,   ,\n  { {0x36d40057, 0x4735007e, 0xc987075f, 0x00000000}},  // [c850] мотр, чнас, _муни,\n  { {0x63a200d9, 0xcfc20044, 0x00000000, 0x00000000}},  //   ebon, ্জিন,   ,\n  { {0x89da026c, 0x26000164, 0x00000000, 0x00000000}},  //   _اوپر_, राजी_,   ,\n  { {0x58fa0049, 0x2484088a, 0x764e0146, 0x00000000}},  //   _פּינ, _cimm_, _ejby,\n  { {0x1b1d0044, 0x27e90f45, 0x2338007e, 0x00000000}},  //   _পেতে_, mean_, опцы_,\n  { {0x27e9022b, 0xa2cc02fb, 0xf6790049, 0x00000000}},  //   lean_, _समर्, _לאָמ,\n  { {0x2484000c, 0xd49800ed, 0x7d1c043e, 0x00000000}},  //   _fimm_, _мрт_, ørsl,\n  { {0x27e90756, 0x60090407, 0xd6220451, 0x00000000}},  //   nean_, сним_, нiза,\n  { {0xe293007a, 0xee391662, 0x260001f5, 0x00000000}},  //   _آذر_, йни_, राची_,\n  { {0x27e9002d, 0x629b00e0, 0xddd80087, 0x00000000}},  //   hean_, _ituo, _pivš,\n  { {0x80a40054, 0x27e921be, 0xed5900a8, 0x00000000}},  //   _يمكن, kean_, сон_,\n  { {0x27e907b9, 0xf0f9013d, 0x30f900a1, 0x00000000}},  //   jean_, ्मीद_, _پوچھ_,\n  { {0xf1d20164, 0x27e9022b, 0x644b0020, 0x00000000}},  //   _सामन, dean_, ingi,\n  { {0x81e90044, 0x63a238aa, 0x00000000, 0x00000000}},  //   যাক_, zbon,   ,\n  { {0x25ff013d, 0x27e91760, 0xc90a0044, 0x00000000}},  //   _रफ़ी_, fean_, রন্ত_,\n  { {0x27e90add, 0x63bb0066, 0x2bc60061, 0x00000000}},  //   gean_, _ndun, _वाटा,\n  { {0x6f160036, 0x995500b9, 0xe81d0204, 0x00000000}},  // [c860] _życz, _výši_, _नवरा_,\n  { {0x63bb001a, 0x2484059e, 0x7ae413cb, 0x00000000}},  //   _adun, _simm_, _ipit,\n  { {0x27e9002d, 0x629b17df, 0x69dc2829, 0x00000000}},  //   bean_, _atuo, mfre,\n  { {0x69dc01e7, 0x63a200bb, 0x59aa0061, 0x00000000}},  //   lfre, ubon, करवर,\n  { {0x628f028c, 0x57fb0097, 0x249f012d, 0x00000000}},  //   _écol, _הלכו, _čume_,\n  { {0x69dc010f, 0x30a6003b, 0x644b0b38, 0x00000000}},  //   nfre, прив, angi,\n  { {0x03a61123, 0x64a6060e, 0x7a22009d, 0x00000000}},  //   _ниво, _хаба, _côti,\n  { {0xb60301d5, 0x81e90044, 0x92c1014a, 0x00000000}},  //   ġġet, যাগ_, üğün,\n  { {0x442616d8, 0x64421622, 0x69dc0270, 0x00000000}},  //   mko_, mioi, kfre,\n  { {0x44260046, 0x27e9022b, 0x69dc2ddb, 0x00000000}},  //   lko_, zean_, jfre,\n  { {0x69dc04c0, 0x4426002d, 0x61ea0606, 0x00000000}},  //   dfre, oko_, mefl,\n  { {0x61ea0146, 0x27e9002d, 0xdb0f009d, 0x00000000}},  //   lefl, xean_, lacé,\n  { {0x69dc38ab, 0x4426002d, 0x27e90035, 0x00000000}},  //   ffre, iko_, vean_,\n  { {0x44260c06, 0xa3dc02f4, 0x61ea0190, 0x00000000}},  //   hko_, त्त_, nefl,\n  { {0x7ae401aa, 0x27e90756, 0x4426021e, 0x00000000}},  //   _epit, tean_, kko_,\n  { {0xdc2b007a, 0x44260091, 0x69dc00f6, 0x00000000}},  //   _دسته_, jko_, afre,\n  { {0x7c2d002d, 0x64420052, 0x442605e1, 0x00000000}},  // [c870] _ilar, dioi, dko_,\n  { {0x27e9203c, 0xa3cf006e, 0x7bdd0007, 0x00000000}},  //   sean_, _शाह_, lfsu,\n  { {0x27e91624, 0x7c2d0239, 0xb8350057, 0x00000000}},  //   pean_, _klar, _женщ,\n  { {0xc95200b3, 0x644b38ac, 0x644238ad, 0x00000000}},  //   _ימי_, ungi, gioi,\n  { {0x3869047f, 0x2458008b, 0x64930066, 0x00000000}},  //   mlar_, чаць_, _għin,\n  { {0x4426022b, 0xdd860647, 0x7c2d04bd, 0x00000000}},  //   ako_, _لو_, _llar,\n  { {0x7c2d047f, 0xe61f001d, 0xfbbf007d, 0x00000000}},  //   _olar, _nuôi_, ्लाम,\n  { {0x386901f6, 0x4426004f, 0xb69b00f4, 0x00000000}},  //   nlar_, cko_, _grâc,\n  { {0x442d1355, 0x3869008e, 0x69dc0016, 0x00000000}},  //   _ile_, ilar_, yfre,\n  { {0x7a300103, 0x3869005d, 0x41b50014, 0x00000000}},  //   _käte, hlar_, _آمار,\n  { {0x7ae40de1, 0x386938ae, 0x1bea1281, 0x00000000}},  //   _spit, klar_, одни_,\n  { {0x7c2d0977, 0x3869011f, 0xca2900b3, 0x00000000}},  //   _clar, jlar_, _דם_,\n  { {0x38692865, 0x69dc01a2, 0x765e0f99, 0x00000000}},  //   dlar_, tfre, yopy,\n  { {0x68fc091e, 0x44260756, 0x442d38af, 0x00000000}},  //   tvrd, zko_, _lle_,\n  { {0x442d0368, 0x443f14c7, 0x7a300039, 0x00000000}},  //   _ole_, _omu_, _näte,\n  { {0x69dc0056, 0x3b0001d5, 0x81e90044, 0x00000000}},  //   sfre, _triq_, যাট_,\n  { {0x4426037e, 0xf74338b0, 0x2c56001e, 0x00000000}},  // [c880] vko_, вето, gāde_,\n  { {0xb0dd03d7, 0xf1d20164, 0x44260036, 0x00000000}},  //   _महंग, _साधन, wko_,\n  { {0x4426154d, 0x386938b1, 0x442d0292, 0x00000000}},  //   tko_, blar_, _ble_,\n  { {0x3869005f, 0x68310634, 0x44260d96, 0x00000000}},  //   clar_, _rådg, uko_,\n  { {0x4426022b, 0x442d0224, 0x61ea01e5, 0x00000000}},  //   rko_, _dle_, tefl,\n  { {0x44260027, 0x442d02d5, 0x20ee0224, 0x00000000}},  //   sko_, _ele_, _při_,\n  { {0x44260d0a, 0xc0e301fc, 0x644200b0, 0x00000000}},  //   pko_, војк, pioi,\n  { {0xd0100054, 0x68e3001f, 0x661c01ca, 0x00000000}},  //   الة_, _ände, _hork,\n  { {0x661c1be4, 0x67240061, 0xdcea38b2, 0x00000000}},  //   _kork, nyij, čiče,\n  { {0x3869005d, 0x442d0142, 0x20ee00b9, 0x00000000}},  //   zlar_, _zle_, _tři_,\n  { {0x44fe010a, 0x442d021e, 0x386938b3, 0x00000000}},  //   _jį_, _yle_, ylar_,\n  { {0x661c0107, 0x386938b4, 0x62880085, 0x00000000}},  //   _lork, xlar_, _hido,\n  { {0x628838b5, 0x6440003b, 0x38693142, 0x00000000}},  //   _kido, _mmmi, vlar_,\n  { {0x68310030, 0x7afd05d5, 0x661c007f, 0x00000000}},  //   _måde, rvst, _nork,\n  { {0x38691ed0, 0x64400066, 0x62880020, 0x00000000}},  //   tlar_, _ommi, _mido,\n  { {0x6ce301fb, 0x3869027b, 0x628838b6, 0x00000000}},  //   _ріше, ular_, _lido,\n  { {0x386901f6, 0x78a23002, 0x1995008b, 0x00000000}},  // [c890] rlar_, _čove, _папя,\n  { {0x644038b7, 0x09c60055, 0xdcfa01f6, 0x00000000}},  //   _ammi, শ্বা, latı,\n  { {0x3869011f, 0x442d0129, 0x661c0232, 0x00000000}},  //   plar_, _ple_, _dork,\n  { {0x3869005f, 0xdcfa0279, 0x6aad16e1, 0x00000000}},  //   qlar_, natı, _kwaf,\n  { {0x661c0378, 0x442d0263, 0xdb06006b, 0x00000000}},  //   _fork, _vle_, rakç,\n  { {0x8635007b, 0x6aad0020, 0x661c167f, 0x00000000}},  //   _טאָג_, _mwaf, _gork,\n  { {0x62880169, 0xdcfa0279, 0x6f02004a, 0x00000000}},  //   _dido, katı, _aroc,\n  { {0x442d0020, 0x661c016c, 0x6b8d1820, 0x00000000}},  //   _ule_, _zork, _ngag,\n  { {0x3eb938b8, 0x81ae0044, 0x32550451, 0x00000000}},  //   ést_, _কার_, _звар,\n  { {0xee360b21, 0x6f020051, 0x6288002d, 0x00000000}},  //   ень_, _droc, _gido,\n  { {0xa3dc02fb, 0x1d0900aa, 0x13e30044, 0x00000000}},  //   त्व_, чени_, _নোয়,\n  { {0x8cc002f4, 0xce950265, 0x62880091, 0x00000000}},  //   _विरो, _задъ, _zido,\n  { {0x3860028c, 0x6f0238b9, 0x3f820006, 0x00000000}},  //   voir_, _groc, žkur_,\n  { {0xc33200b3, 0x00000000, 0x00000000, 0x00000000}},  //   רוך_,   ,   ,\n  { {0xdcfa0477, 0x3860009d, 0x6aad000a, 0x00000000}},  //   batı, toir_, _ewaf,\n  { {0x661c002d, 0x9f440802, 0x00000000, 0x00000000}},  //   _sork, zemí_,   ,\n  { {0x661c2e23, 0x7a2b0180, 0x7bd60009, 0x00000000}},  // [c8a0] _pork, _kütl, _icyu,\n  { {0x683103bd, 0x9916007e, 0x3860009d, 0x00000000}},  //   _råde, _зьмі, soir_,\n  { {0xf1c902d2, 0x41c902d2, 0x62880207, 0x00000000}},  //   _राजन, _राजस, _rido,\n  { {0x661c0038, 0xe3b20d0b, 0x628838ba, 0x00000000}},  //   _work, ارا_, _sido,\n  { {0x661c0039, 0xe80d013d, 0x4803007e, 0x00000000}},  //   _tork, हारा_, _спяв,\n  { {0x27e00052, 0x25b10087, 0x00000000, 0x00000000}},  //   lfin_, _gezl_,   ,\n  { {0xdcfa01f6, 0x62880a6e, 0xd5ad00a1, 0x00000000}},  //   yatı, _vido, _ذہن_,\n  { {0x6f020917, 0x644038bb, 0x9f4f00d4, 0x00000000}},  //   _proc, _ummi, _bagà_,\n  { {0x9cec0044, 0x62880145, 0x7d032a1e, 0x00000000}},  //   _ওপেন_, _tido, _arns,\n  { {0xa3dc02f4, 0xd010026c, 0x7e61008e, 0x00000000}},  //   त्र_, الک_, golp,\n  { {0x6f020046, 0x6aad0258, 0x5c750478, 0x00000000}},  //   _wroc, _swaf, клот,\n  { {0x61fa014a, 0x27e00023, 0x00000000, 0x00000000}},  //   _hatl, jfin_,   ,\n  { {0x7d03037f, 0xdcfa005d, 0x61fa38bc, 0x00000000}},  //   _erns, ratı, _katl,\n  { {0x27e001f3, 0x7e610197, 0x2c720062, 0x00000000}},  //   efin_, colp, ráda_,\n  { {0x6b8d001c, 0xe80d001c, 0x61fa01a3, 0x00000000}},  //   _tgag, हाला_, _matl,\n  { {0xb9090754, 0xdb0f0861, 0x6aad00e7, 0x00000000}},  //   _यह_, lací, _twaf,\n  { {0x0c7401fa, 0x3a750143, 0x00000000, 0x00000000}},  // [c8b0] _حدود, _илир,   ,\n  { {0x27f900ab, 0x61fa0253, 0x81e50044, 0x00000000}},  //   _wasn_, _natl, _বোন_,\n  { {0xbc6806c6, 0x6823006c, 0x92ad0044, 0x00000000}},  //   _زمین_, _sõdu, _কমে_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x61fa0129, 0x321e0c05, 0x972200a1, 0x00000000}},  //   _batl, _boty_, _پہلو,\n  { {0x61fa12fe, 0x659500ed, 0x9f4400d4, 0x00000000}},  //   _catl, _јаву, demà_,\n  { {0x205501be, 0x7a30006c, 0x61fa1fae, 0x00000000}},  //   ктир, _jäta, _datl,\n  { {0x26050201, 0x320c1163, 0x7a30150e, 0x00000000}},  //   _होती_, _endy_, _mäta,\n  { {0xf1a7022a, 0x61fa38bd, 0xa2950088, 0x00000000}},  //   _зрен, _fatl, _разі,\n  { {0x61fa010e, 0xdb0f004a, 0x00000000, 0x00000000}},  //   _gatl, gací,   ,\n  { {0x7e610d44, 0x22470006, 0x7a3000f8, 0x00000000}},  //   rolp, mink_, _näta,\n  { {0x224703cf, 0x61fa38be, 0x7e610c10, 0x00000000}},  //   link_, _zatl, solp,\n  { {0x12bf0044, 0x6d58004a, 0x00000000, 0x00000000}},  //   _ইহুদ, _exva,   ,\n  { {0xf2d20049, 0x26c900fa, 0xdb0f004a, 0x00000000}},  //   בעך_, drao_, cací,\n  { {0x64d000e8, 0xa96700aa, 0xa92701c5, 0x00000000}},  //   _हमेश, вира_, _nožē,\n  { {0xde880011, 0x2c08013d, 0x00000000, 0x00000000}},  //   _dịu_, षाओं_,   ,\n  { {0x18670264, 0x27e001e5, 0x26c90091, 0x00000000}},  // [c8c0] тати_, rfin_, grao_,\n  { {0xb69b0181, 0x66e30072, 0x8ab7009b, 0x00000000}},  //   _trân, рофа, _שהיו_,\n  { {0x22470007, 0xd49901fb, 0x61fa2273, 0x00000000}},  //   dink_, ері_, _ratl,\n  { {0xad1a007b, 0xfbdf001d, 0x61fa0563, 0x00000000}},  //   ווער, hiên_, _satl,\n  { {0xe36300da, 0xe2970072, 0x61fa014a, 0x00000000}},  //   акци, вач_, _patl,\n  { {0xbb3b00a0, 0x00000000, 0x00000000, 0x00000000}},  //   ועני,   ,   ,\n  { {0xd12f006d, 0xdb0f3664, 0xe643041f, 0x00000000}},  //   يمه_, vací, _терп,\n  { {0x1ee600a6, 0xc953009b, 0x752301a2, 0x00000000}},  //   نوعی_, ימו_, änze,\n  { {0x09b80055, 0x61fa034f, 0x78a9037e, 0x00000000}},  //   _জানা, _tatl, ćevi,\n  { {0xde880082, 0x00000000, 0x00000000, 0x00000000}},  //   _nịt_,   ,   ,\n  { {0x683100f8, 0x00000000, 0x00000000, 0x00000000}},  //   _låda,   ,   ,\n  { {0x8fa6142c, 0x00000000, 0x00000000, 0x00000000}},  //   _раде,   ,   ,\n  { {0x6fd70061, 0xde880082, 0x290c00f8, 0x00000000}},  //   _यातू, _bịt_, ådan_,\n  { {0x2c560089, 0x00000000, 0x00000000, 0x00000000}},  //   rāda_,   ,   ,\n  { {0x290501e5, 0x6d450062, 0x00000000, 0x00000000}},  //   íla_, _žhav,   ,\n  { {0xdb2300a1, 0x26c90091, 0x00000000, 0x00000000}},  //   _نوعی, trao_,   ,\n  { {0x41d2007d, 0x7a2200f4, 0xdb1d01a2, 0x00000000}},  // [c8d0] _सांस, _vôtr, ngsü,\n  { {0x26c900fa, 0x9634007e, 0xdb0f00f6, 0x00000000}},  //   rrao_, ануц, macà,\n  { {0x22470f46, 0x00000000, 0x00000000, 0x00000000}},  //   vink_,   ,   ,\n  { {0xa2c4013d, 0x224701c3, 0x7a30010e, 0x00000000}},  //   _रिश्, wink_, _jätn,\n  { {0x3e7900f4, 0x7a3000f8, 0x69c10036, 0x00000000}},  //   lète_, _mätn, ólew,\n  { {0xde880082, 0x69d501a2, 0x722b007c, 0x00000000}},  //   _xịt_, ngze, ьцев_,\n  { {0x09b80055, 0x3e7900f4, 0xa069003b, 0x00000000}},  //   _জামা, nète_, нака_,\n  { {0x2247046a, 0x00000000, 0x00000000, 0x00000000}},  //   sink_,   ,   ,\n  { {0x63b90009, 0x3e79009d, 0x22470a0e, 0x00000000}},  //   mawn, hète_, pink_,\n  { {0x7c3f0006, 0x63b938bf, 0x248d0082, 0x00000000}},  //   _įpra, lawn, _hiem_,\n  { {0x248d0011, 0xd7c30061, 0xac86004d, 0x00000000}},  //   _kiem_, षणाच, лгол,\n  { {0x22990263, 0x41df0164, 0x248d38c0, 0x00000000}},  //   _kèk_, प्रस, _jiem_,\n  { {0xef0e003b, 0x270d0061, 0xe4560049, 0x00000000}},  //   _ум_, समोर_, רירט_,\n  { {0xed5901e0, 0x628f00f4, 0x683102e1, 0x00000000}},  //   _пол_, _écou, _råda,\n  { {0x683104d7, 0x7d1c02cc, 0x68fb0036, 0x00000000}},  //   _såda, ørst, łudn,\n  { {0xc2f90055, 0xf7720a4f, 0x248d38c1, 0x00000000}},  //   _আপনি_, ماء_, _niem_,\n  { {0x63b90036, 0xdb0f00c4, 0x229905e6, 0x00000000}},  // [c8e0] dawn, racã, _nèk_,\n  { {0x3e791e83, 0x6aa400e7, 0x00000000, 0x00000000}},  //   bète_, _itif,   ,\n  { {0x200f023e, 0x248d0023, 0x63a4004a, 0x00000000}},  //   _ongi_, _biem_, ñino,\n  { {0x4420009f, 0x98160025, 0x22990173, 0x00000000}},  //   ði_, _إبدا, _bèk_,\n  { {0x248d0011, 0xe2f80088, 0x81e50044, 0x00000000}},  //   _diem_, телі_, _বোধ_,\n  { {0x366a007e, 0x200f0292, 0x27f20943, 0x00000000}},  //   _чаго_, _angi_, leyn_,\n  { {0xc31c0055, 0x26d20c2c, 0x90e60439, 0x00000000}},  //   _দেখি_, luyo_, استن,\n  { {0x229901aa, 0xa067003b, 0x00000000, 0x00000000}},  //   _fèk_, лаја_,   ,\n  { {0x26d21d8b, 0x26090204, 0x00000000, 0x00000000}},  //   nuyo_, साची_,   ,\n  { {0xf297009b, 0x6fa40309, 0x9f5f000c, 0x00000000}},  //   _עכבר_, _ग्रं, rjuð_,\n  { {0x519301b7, 0x6aa438c2, 0x10a63370, 0x00000000}},  //   _المذ, _atif, _сиен,\n  { {0xc0a9035b, 0xf0b1026c, 0xfbdf01c3, 0x00000000}},  //   _شامل_, _بیٹھ, enêr_,\n  { {0x2617007d, 0x00000000, 0x00000000, 0x00000000}},  //   नामी_,   ,   ,\n  { {0xad2600a2, 0x7d1c06ec, 0x00000000, 0x00000000}},  //   _مربو, ørss,   ,\n  { {0x6cc6007e, 0x6aa40016, 0x00000000, 0x00000000}},  //   _сёле, _etif,   ,\n  { {0x3e79009d, 0xfbdf00fa, 0x00000000, 0x00000000}},  //   rète_, rnês_,   ,\n  { {0x26d2015e, 0x248d00bb, 0x6fdc01f5, 0x00000000}},  // [c8f0] guyo_, _riem_, _यानं,\n  { {0x26c700ee, 0x3b09006b, 0x7aed1899, 0x00000000}},  //   čno_, _iraq_, _ipat,\n  { {0xfbdf0011, 0x248d0089, 0x229901aa, 0x00000000}},  //   hiêm_, _piem_, _sèk_,\n  { {0x81bc0089, 0x26d238c3, 0xe3b00025, 0x00000000}},  //   _slēp, buyo_, كره_,\n  { {0x63b90036, 0x645838c4, 0x248d0142, 0x00000000}},  //   rawn, évia, _viem_,\n  { {0x248d0046, 0x23260140, 0x7aed00e7, 0x00000000}},  //   _wiem_, роши_, _mpat,\n  { {0x248d001e, 0xd6a505b8, 0x00000000, 0x00000000}},  //   _tiem_, гiчн,   ,\n  { {0x7aed01ca, 0xaec50081, 0x60092898, 0x00000000}},  //   _opat, абил, тним_,\n  { {0x20030224, 0x644b011c, 0xb3a90279, 0x00000000}},  //   ěji_, migi, ğıdı,\n  { {0x7d09012b, 0xcee80379, 0xb3a9005d, 0x00000000}},  //   вног_, ارين_, şıdı,\n  { {0xed590517, 0x7aed3047, 0x442f01ee, 0x00000000}},  //   тон_, _apat, okg_,\n  { {0x5fdc0061, 0x00000000, 0x00000000, 0x00000000}},  //   _यायल,   ,   ,\n  { {0x7aed0061, 0x683800b9, 0x628f009d, 0x00000000}},  //   _cpat, _jíde, _écos,\n  { {0x644b011c, 0x2605006e, 0xa2cd007d, 0x00000000}},  //   higi, _होली_, _सिन्,\n  { {0x683800d6, 0x7aed0197, 0xdb0f1d59, 0x00000000}},  //   _líde, _epat, racá,\n  { {0x7a301653, 0x26d21c09, 0x69c50023, 0x00000000}},  //   _täto, tuyo_, _edhe,\n  { {0x6e2338c5, 0xde880011, 0x6aa438c6, 0x00000000}},  // [c900] _konb, _kịp_, _utif,\n  { {0x09e40055, 0x27f2006b, 0x3ebf00b0, 0x00000000}},  //   _ফোরা, seyn_, isut_,\n  { {0x644b0051, 0x7c2406d5, 0x37e60072, 0x00000000}},  //   figi, _koir, _конг,\n  { {0x644b006a, 0x7aed0006, 0x73e605b8, 0x00000000}},  //   gigi, _ypat, родз,\n  { {0x7c2421b3, 0x69c1000c, 0x41b60025, 0x00000000}},  //   _moir, ðleg, لمشر,\n  { {0x7c241184, 0x6e23002d, 0xd043006b, 0x00000000}},  //   _loir, _nonb, munə,\n  { {0x644b011c, 0x26c00006, 0x00000000, 0x00000000}},  //   bigi, lsio_,   ,\n  { {0x7c2400f4, 0xb7bb0082, 0x2cbe0009, 0x00000000}},  //   _noir, _loãn, vstd_,\n  { {0xe29a1561, 0x6e23002d, 0xfba7007d, 0x00000000}},  //   _раз_, _bonb, _क्षम,\n  { {0x44240343, 0x26c00016, 0x7c240048, 0x00000000}},  //   _hom_, isio_, _aoir,\n  { {0x7aed000d, 0x44240944, 0xde880011, 0x00000000}},  //   _spat, _kom_, _dịp_,\n  { {0xdee6013b, 0x7c240051, 0x7aed0093, 0x00000000}},  //   _води, _coir, _ppat,\n  { {0x2f0f000c, 0x7c240051, 0x442400ab, 0x00000000}},  //   rögð_, _doir, _mom_,\n  { {0x2ba7007d, 0xfba70309, 0x6e23002d, 0x00000000}},  //   _क्रा, _क्रम, _gonb,\n  { {0x7c242dc6, 0x44240343, 0x644b0061, 0x00000000}},  //   _foir, _oom_, yigi,\n  { {0x442403d5, 0x62830142, 0x6e2338c7, 0x00000000}},  //   _nom_, zmno, _zonb,\n  { {0x7aed0020, 0x25b80240, 0xd5bb007c, 0x00000000}},  // [c910] _upat, _berl_, все_,\n  { {0x69c50065, 0x644b13a7, 0x4424098e, 0x00000000}},  //   _udhe, wigi, _aom_,\n  { {0x442438c8, 0x644b26df, 0x78a90107, 0x00000000}},  //   _bom_, tigi, ćevs,\n  { {0x442416b1, 0x3ea604cb, 0x6838008e, 0x00000000}},  //   _com_, _otot_, _píde,\n  { {0x81ae0055, 0x13a900a1, 0x26c0005b, 0x00000000}},  //   _কাজ_, پنڈی_, csio_,\n  { {0x683838c9, 0x644b26cc, 0xdb0601ca, 0x00000000}},  //   _víde, sigi, jaký,\n  { {0x644b036b, 0x44240173, 0x753e0009, 0x00000000}},  //   pigi, _fom_, czpz,\n  { {0x2ba7007d, 0xf958009b, 0x44240082, 0x00000000}},  //   _क्ला, יסות_, _gom_,\n  { {0x60060147, 0x672d0557, 0x64492984, 0x00000000}},  //   сным_, nyaj, _imei,\n  { {0xee3604af, 0x30e701fb, 0x6e3a0197, 0x00000000}},  //   йны_, _відб, ghtb,\n  { {0x2fd90879, 0x7c2407cd, 0x44240b3d, 0x00000000}},  //   _مواد_, _poir, _yom_,\n  { {0xca2900b6, 0x26c00681, 0x6f950025, 0x00000000}},  //   _אם_, ysio_, _الإض,\n  { {0x6e230263, 0x7c2400f4, 0x386900ea, 0x00000000}},  //   _tonb, _voir, doar_,\n  { {0x6e3a07eb, 0xa2da0164, 0x09b80044, 0x00000000}},  //   chtb, _नमस्, _জাহা,\n  { {0x7c240051, 0x26c00016, 0x00000000, 0x00000000}},  //   _toir, wsio_,   ,\n  { {0x81ae0044, 0xccf200b3, 0x7a30082d, 0x00000000}},  //   _কাছ_, _זכה_, _kätk,\n  { {0x7a30042b, 0x6f1d09b0, 0x26c00006, 0x00000000}},  // [c920] _jätk, äsch, usio_,\n  { {0x4424067e, 0x64490020, 0x26c000b0, 0x00000000}},  //   _som_, _amei, rsio_,\n  { {0xdcea0107, 0x26c008a6, 0x69fb00a3, 0x00000000}},  //   čiće, ssio_, _גליק,\n  { {0x74690088, 0x26c005b9, 0x3c0d0006, 0x00000000}},  //   арів_, psio_, _tėvų_,\n  { {0x442438ca, 0x2498021f, 0xdb0f00c4, 0x00000000}},  //   _vom_, _wurm_, racç,\n  { {0x78a20363, 0xc5d501fb, 0x44240173, 0x00000000}},  //   _čovj, _місь, _wom_,\n  { {0x442407ff, 0xa2c40309, 0x69de0146, 0x00000000}},  //   _tom_, _रिक्, _mcpe,\n  { {0x44240555, 0x7a2b01a2, 0x50b70025, 0x00000000}},  //   _uom_, _hütt, حدود_,\n  { {0x64430c7c, 0x63a200df, 0x7a2b006c, 0x00000000}},  //   ënie, mcon, _kütt,\n  { {0x248609fc, 0x2a6a38cb, 0x63a2051b, 0x00000000}},  //   lmom_, jobb_, lcon,\n  { {0xdd900070, 0x7a2b0c37, 0x40960025, 0x00000000}},  //   بود_, _mütt, _الصر,\n  { {0x63a238cc, 0x7e680010, 0x00000000, 0x00000000}},  //   ncon, sodp,   ,\n  { {0x386900e5, 0x3ea60058, 0x7e680471, 0x00000000}},  //   voar_, _utot_, podp,\n  { {0x2bdb0164, 0x63a238cd, 0x6ab6005b, 0x00000000}},  //   _भावा, hcon, _dwyf,\n  { {0x28d902fb, 0x48770025, 0xd90f00a6, 0x00000000}},  //   बंधि, مدرس, ریح_,\n  { {0x98a5005a, 0x24860142, 0x2004108f, 0x00000000}},  //   çlı_, jmom_, ndmi_,\n  { {0x63a20541, 0xf77300f9, 0xe3ce0044, 0x00000000}},  // [c930] dcon, سار_, রভাব,\n  { {0x672d0022, 0x00000000, 0x00000000, 0x00000000}},  //   ryaj,   ,   ,\n  { {0x63a200d9, 0x25a100d2, 0x00000000, 0x00000000}},  //   fcon, rchl_,   ,\n  { {0x69d80073, 0xa2cd007d, 0x26170061, 0x00000000}},  //   _över, _सिद्, नाही_,\n  { {0x387e028c, 0x27e90203, 0x7a2b2beb, 0x00000000}},  //   ître_, mfan_, _fütt,\n  { {0x27e9018e, 0x63a21762, 0x64480006, 0x00000000}},  //   lfan_, acon, _įdie,\n  { {0x66151f6c, 0x92d90044, 0x008501ab, 0x00000000}},  //   _inzk, ়বে_, олко,\n  { {0x63a20207, 0x27e901aa, 0x2bdb007d, 0x00000000}},  //   ccon, nfan_, _भाषा,\n  { {0xcdf50a78, 0x3255007e, 0x94160061, 0x00000000}},  //   очны, _двар, णारच_,\n  { {0xa6e2009f, 0x7bdf38ce, 0x926b003b, 0x00000000}},  //   æðin, _acqu, _срба_,\n  { {0xcb0900b6, 0x6155026c, 0x63bb04cb, 0x00000000}},  //   _של_, _بنائ, _keun,\n  { {0x63bb028c, 0x645901aa, 0x20030089, 0x00000000}},  //   _jeun, nnwi, ējis_,\n  { {0xa3e10316, 0x628138cf, 0x64db0061, 0x00000000}},  //   _दान_, _khlo, मंडळ,\n  { {0x3ead023a, 0x63bb0599, 0x7bdf0026, 0x00000000}},  //   mpet_, _leun, _ecqu,\n  { {0x290c38d0, 0x63a20009, 0x27e938d1, 0x00000000}},  //   ída_, ycon, ffan_,\n  { {0x63a20061, 0x6ab60007, 0xe7aa004d, 0x00000000}},  //   xcon, _twyf, рвал_,\n  { {0x464a38d2, 0xdb0d0181, 0x63a20009, 0x00000000}},  // [c940] азан_, _reaç, vcon,\n  { {0xe61706b6, 0x63a20b2c, 0x683800d4, 0x00000000}},  //   оду_, wcon, _dída,\n  { {0x69dc0061, 0x63a20061, 0x27e900d9, 0x00000000}},  //   mgre, tcon, bfan_,\n  { {0x69dc0218, 0x87d60355, 0x6d41016e, 0x00000000}},  //   lgre, _بغدا, izla,\n  { {0x6f09037e, 0x63a21017, 0x63bb0016, 0x00000000}},  //   jvec, rcon, _deun,\n  { {0x6281002a, 0x63a22817, 0x24860213, 0x00000000}},  //   _chlo, scon, smom_,\n  { {0x63a200bb, 0x24860606, 0x628101c3, 0x00000000}},  //   pcon, pmom_, _dhlo,\n  { {0x3ec60057, 0x21200091, 0x3ae403ed, 0x00000000}},  //   особ, ćih_, köp_,\n  { {0x3169005a, 0x2be1013d, 0xb69b00e5, 0x00000000}},  //   ğaza_, _काबू_, _frâu,\n  { {0x20020059, 0x63bb0032, 0xb69b0035, 0x00000000}},  //   žki_, _zeun, _grâu,\n  { {0xafe601fb, 0x69dc38d3, 0xc2230014, 0x00000000}},  //   _можл, dgre, _تکنو,\n  { {0x09d3001c, 0x1ee90014, 0x69dc00bb, 0x00000000}},  //   तल्य, جویی_, egre,\n  { {0xfad8005e, 0x69dc141a, 0x00000000, 0x00000000}},  //   одящ_, fgre,   ,\n  { {0x69dc0460, 0xa2cd006e, 0xfc46000c, 0x00000000}},  //   ggre, _सिस्, _þína_,\n  { {0x260503d7, 0x7a3f0224, 0x199406c4, 0x00000000}},  //   _होगी_, vště, даря,\n  { {0xdc2b0014, 0x6483006c, 0x69d70061, 0x00000000}},  //   _خسته_, mõig, _बाकी,\n  { {0x63bb03d1, 0x27e90a2d, 0x69dc0b3a, 0x00000000}},  // [c950] _reun, rfan_, bgre,\n  { {0x63bb0007, 0x61f8041a, 0x1a6500a2, 0x00000000}},  //   _seun, jevl, _ریزی_,\n  { {0x61f80007, 0x63bb0022, 0x00000000, 0x00000000}},  //   devl, _peun,   ,\n  { {0x7bdd2375, 0x29010065, 0x9404006b, 0x00000000}},  //   ngsu, _isha_, _kimə_,\n  { {0x62810863, 0x683138d4, 0x78a20243, 0x00000000}},  //   _phlo, _rådh, _čovi,\n  { {0x960b007e, 0x2c560089, 0xddda00b9, 0x00000000}},  //   _тэма_, rādi_, potř,\n  { {0x63bb1ad9, 0x00000000, 0x00000000, 0x00000000}},  //   _teun,   ,   ,\n  { {0x6f090039, 0x3ead0082, 0x68310146, 0x00000000}},  //   tvec, tpet_, _bådi,\n  { {0x69dc024d, 0xf1a701ee, 0xed6300b9, 0x00000000}},  //   ygre, _дрен, _mužů_,\n  { {0xee390113, 0x6f090ce3, 0x7a30010f, 0x00000000}},  //   сно_, rvec, _täti,\n  { {0x6f09016c, 0x69dc03b1, 0x00000000, 0x00000000}},  //   svec, vgre,   ,\n  { {0x3ead27a1, 0xaa7b00b9, 0x2bbe01f5, 0x00000000}},  //   ppet_, stýl, ्णधा,\n  { {0x7ae4001c, 0xc052007b, 0x69dc38d5, 0x00000000}},  //   _qqit, _אזא_, tgre,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x69dc000c, 0x32050a32, 0x7d1c00f8, 0x00000000}},  //   rgre, _maly_, ärst,\n  { {0x69dc021a, 0x7a300039, 0x61e10093, 0x00000000}},  //   sgre, _nätv, _lcll,\n  { {0x29010093, 0x61f8006b, 0xfc57009b, 0x00000000}},  // [c960] _esha_, yevl, _מבקש_,\n  { {0xd6cf023c, 0x68fc005b, 0x8ebd0044, 0x00000000}},  //   اقل_, pwrd, _আমাগ,\n  { {0xb3a901f6, 0x399b00a3, 0x7a2b006c, 0x00000000}},  //   ğını, _לייד, _tütr,\n  { {0xb3a9005d, 0x1459007e, 0xb69b00e5, 0x00000000}},  //   şını, ошчы_, _crâs,\n  { {0x224c0093, 0x81ad0044, 0x00000000, 0x00000000}},  //   _pmdk_, _কয়_,   ,\n  { {0xd5b2004b, 0xa2cd03d7, 0x5693007e, 0x00000000}},  //   _سفر_, _सिर्, _паўт,\n  { {0x490f03d7, 0x3205013e, 0x61f8014a, 0x00000000}},  //   डियो_, _daly_, revl,\n  { {0x61f80107, 0x8f460265, 0xf99300b3, 0x00000000}},  //   sevl, зход, ערה_,\n  { {0x141b009b, 0x09e30044, 0x00000000, 0x00000000}},  //   _פומב, য়তা,   ,\n  { {0x7bc0000c, 0x2d9805ba, 0x6838008e, 0x00000000}},  //   ðmun, øre_, _oído,\n  { {0xfc3f002a, 0xe0d200a1, 0x1ddd0164, 0x00000000}},  //   thí_, _سزا_, _मारत,\n  { {0x2fc0009f, 0x2c560089, 0x628a00f8, 0x00000000}},  //   _þig_, kādu_, lmfo,\n  { {0x7afd00b5, 0x764e1a95, 0x6483006c, 0x00000000}},  //   uwst, _omby, sõig,\n  { {0x6f021cbd, 0x00000000, 0x00000000, 0x00000000}},  //   _isoc,   ,   ,\n  { {0x7d1c03b1, 0x00000000, 0x00000000, 0x00000000}},  //   årsd,   ,   ,\n  { {0x764e0544, 0x00000000, 0x00000000, 0x00000000}},  //   _amby,   ,   ,\n  { {0x387e009d, 0x7bcd0288, 0x00000000, 0x00000000}},  // [c970] îtra_, _idau,   ,\n  { {0x6aad38d6, 0x20060048, 0x00000000, 0x00000000}},  //   _itaf, _laoi_,   ,\n  { {0xdb04000c, 0x290138d7, 0xa8a4005e, 0x00000000}},  //   _heið, _usha_, _пряк,\n  { {0x4429009f, 0x628a0007, 0x683800b9, 0x00000000}},  //   ða_, emfo, _jídl,\n  { {0xfe780006, 0x15ab02dc, 0x6483010e, 0x00000000}},  //   klį_, _гъби_, võid,\n  { {0x6aad00e7, 0x24840026, 0xd49b0088, 0x00000000}},  //   _mtaf, _ehmm_, _гра_,\n  { {0xdb04009f, 0x208901e0, 0x94770014, 0x00000000}},  //   _leið, ойки_, _فدرا,\n  { {0x7a3038d8, 0x66070107, 0xdb060010, 0x00000000}},  //   _hätt, _hajk, makö,\n  { {0x7a300934, 0x2c210061, 0x1f6502d3, 0x00000000}},  //   _kätt, यानं_, ьким,\n  { {0xf1a70265, 0x7a3038d9, 0x7bcd000d, 0x00000000}},  //   _хран, _jätt, _adau,\n  { {0x20060195, 0x66070119, 0xd9e30055, 0x00000000}},  //   _faoi_, _majk, য়াম,\n  { {0x7a300e2b, 0x6fd6005d, 0xdb04000c, 0x00000000}},  //   _lätt, rücü, _beið,\n  { {0x8d7702fd, 0x00000000, 0x00000000, 0x00000000}},  //   _کاشا,   ,   ,\n  { {0x660709fc, 0x7a3009f0, 0x00000000, 0x00000000}},  //   _najk, _nätt,   ,\n  { {0x20060061, 0x6f0d334d, 0x00000000, 0x00000000}},  //   _yaoi_, _šach,   ,\n  { {0xf77201b7, 0x00000000, 0x00000000, 0x00000000}},  //   ناء_,   ,   ,\n  { {0x6607016c, 0x7a300073, 0x2fc0006c, 0x00000000}},  // [c980] _bajk, _bätt, _õige_,\n  { {0xaad30061, 0x6607016e, 0x644301d6, 0x00000000}},  //   _तितक, _cajk, ënin,\n  { {0x29040089, 0x88860256, 0xca37009b, 0x00000000}},  //   āmas_, _олож, _חניה_,\n  { {0x25fa03d7, 0x66070032, 0x3b120023, 0x00000000}},  //   _उसकी_, _eajk, _kryq_,\n  { {0x59d201f5, 0x7c3d0065, 0x00000000, 0x00000000}},  //   _तयार, ërri,   ,\n  { {0x27e01402, 0x386d0626, 0x63a9014a, 0x00000000}},  //   lgin_, čere_, _efen,\n  { {0x2c0e03d7, 0x63a9018e, 0x6abd0164, 0x00000000}},  //   ियां_, _ffen, _्ट्र,\n  { {0x27e0006a, 0x161c0061, 0x24840058, 0x00000000}},  //   ngin_, नावर_, _uhmm_,\n  { {0x6442002a, 0x7a3031e5, 0x00000000, 0x00000000}},  //   mhoi, _jäts,   ,\n  { {0x442601d9, 0xddc80036, 0xdb04000c, 0x00000000}},  //   ljo_, widł, _reið,\n  { {0x6aad0787, 0xb1430517, 0x44260006, 0x00000000}},  //   _staf, _инфл, ojo_,\n  { {0x44260059, 0x3cdf013d, 0x800b00a1, 0x00000000}},  //   njo_, _कमरे_, _ورنہ_,\n  { {0xf04704e1, 0x442600c4, 0xa3e1007d, 0x00000000}},  //   _تعلی, ijo_, _दास_,\n  { {0xdb04000c, 0xc3330097, 0x44260022, 0x00000000}},  //   _veið, דוש_, hjo_,\n  { {0x7a300073, 0x66070107, 0x8c670aa2, 0x00000000}},  //   _rätt, _rajk, _отид,\n  { {0x7a300274, 0x27e001e5, 0x44262123, 0x00000000}},  //   _sätt, ggin_, jjo_,\n  { {0x4426002b, 0x6aad38da, 0x290c0039, 0x00000000}},  // [c990] djo_, _utaf, ådar_,\n  { {0xb3a9005d, 0x4426007f, 0x3e7900f6, 0x00000000}},  //   ğımı, ejo_, gèth_,\n  { {0xb3a9005d, 0x38c902fd, 0x7c2d1b61, 0x00000000}},  //   şımı, _عادی_, _koar,\n  { {0x442638db, 0xdb16000a, 0x00000000, 0x00000000}},  //   gjo_, _idyò,   ,\n  { {0x7c2d001a, 0x6607021c, 0x160a013d, 0x00000000}},  //   _moar, _tajk, _होकर_,\n  { {0xdd8605f3, 0x13080088, 0x7c2d0288, 0x00000000}},  //   _مو_, ьній_, _loar,\n  { {0x44260087, 0x2eff0145, 0x00000000, 0x00000000}},  //   bjo_, wwuf_,   ,\n  { {0x2bdb001c, 0x2c64005f, 0x644207cd, 0x00000000}},  //   _भागा, kıda_, choi,\n  { {0x443f0acc, 0x26c900fa, 0x8e550245, 0x00000000}},  //   _ilu_, nsao_, етні,\n  { {0x442d0100, 0x26c90011, 0x26cb00f6, 0x00000000}},  //   _hoe_, isao_, _mvco_,\n  { {0x7c2d0038, 0x9f4f008e, 0x443f01a3, 0x00000000}},  //   _boar, _pagó_, _klu_,\n  { {0xcfe90014, 0x7c2d1e47, 0x644a009d, 0x00000000}},  //   _رفته_, _coar, éfix,\n  { {0x442d1696, 0x7c2d001a, 0x9f4f00f6, 0x00000000}},  //   _moe_, _doar, _vagó_,\n  { {0x442d0004, 0x0f56009b, 0x7a300e4d, 0x00000000}},  //   _loe_, _אינם_, _räts,\n  { {0x7c2d000d, 0x3da601fb, 0x44260173, 0x00000000}},  //   _foar, _якщо_, yjo_,\n  { {0x442d0292, 0x7b0500b0, 0xdcf80089, 0x00000000}},  //   _noe_, ättä, _uzvā,\n  { {0x7bc60ea6, 0x27e00472, 0x44260059, 0x00000000}},  // [c9a0] maku, rgin_, vjo_,\n  { {0x7bc60149, 0x442d0082, 0x7a3000f8, 0x00000000}},  //   laku, _aoe_, _väts,\n  { {0x6442002a, 0x442d00d4, 0x61fe006b, 0x00000000}},  //   thoi, _boe_, _özlə,\n  { {0x7bc60020, 0x44261be5, 0x443f00e5, 0x00000000}},  //   naku, ujo_, _clu_,\n  { {0x68e30073, 0x44260022, 0x779400a6, 0x00000000}},  //   _ändr, rjo_, _شیطا,\n  { {0x443f0004, 0x644201c2, 0x6b840020, 0x00000000}},  //   _elu_, shoi, _mzig,\n  { {0x7bc6272e, 0x443f2528, 0x64420051, 0x00000000}},  //   kaku, _flu_, phoi,\n  { {0x386006d6, 0x68e305b7, 0x442d00bb, 0x00000000}},  //   nnir_, _ånde, _goe_,\n  { {0x64400297, 0xcee7003b, 0x7bc60032, 0x00000000}},  //   _ilmi, едње_, daku,\n  { {0x7c2d03c7, 0x9f4f0026, 0x443f0466, 0x00000000}},  //   _soar, _pagò_, _zlu_,\n  { {0x3860009f, 0x443f0009, 0x7c2d001a, 0x00000000}},  //   knir_, _ylu_, _poar,\n  { {0x629a0733, 0x09a90061, 0x00000000, 0x00000000}},  //   _hito, कड्य,   ,\n  { {0x629a010a, 0x2aab01e0, 0x3eaf0082, 0x00000000}},  //   _kito, ятно_, _gtgt_,\n  { {0x629a002b, 0x2c64005a, 0x6b84012d, 0x00000000}},  //   _jito, rıda_, _dzig,\n  { {0x38602abb, 0x7c2d0035, 0xa3e10309, 0x00000000}},  //   fnir_, _toar, _दाल_,\n  { {0xc6a70194, 0x3860000c, 0x6d7b009b, 0x00000000}},  //   ержи, gnir_, _מאוח,\n  { {0x64430065, 0x7c3d0065, 0xf1be002b, 0x00000000}},  // [c9b0] ënim, ërru, ġġja_,\n  { {0x64400030, 0x629a011c, 0x443f38dc, 0x00000000}},  //   _almi, _nito, _slu_,\n  { {0x442d010e, 0x69c725c2, 0x443f2b60, 0x00000000}},  //   _poe_, maje, _plu_,\n  { {0x13a7007a, 0x629a002d, 0xe3b30464, 0x00000000}},  //   رنتی_, _aito, ارض_,\n  { {0x661c0009, 0x443f01c3, 0x00000000, 0x00000000}},  //   _fnrk, _vlu_,   ,\n  { {0x69c70390, 0x6440006b, 0x00000000, 0x00000000}},  //   naje, _elmi,   ,\n  { {0xfa130055, 0x7bc60020, 0x442d26c5, 0x00000000}},  //   _সকাল_, yaku, _toe_,\n  { {0x6288021e, 0x443f200f, 0x6458009d, 0x00000000}},  //   _ehdo, _ulu_, évit,\n  { {0x629a008d, 0x7bc61f47, 0x60060783, 0x00000000}},  //   _fito, vaku, тным_,\n  { {0x7bc6000b, 0x69c700ee, 0x629a38dd, 0x00000000}},  //   waku, jaje, _gito,\n  { {0x69c7016c, 0x7bc60eac, 0x0d8207ca, 0x00000000}},  //   daje, taku, ильн,\n  { {0x629a00e7, 0x6f0d012d, 0x7d1c05fe, 0x00000000}},  //   _zito, _šacu, årsa,\n  { {0x7bc600b0, 0xdee5007c, 0xde051fd9, 0x00000000}},  //   raku, _роли, _апли,\n  { {0xc33200b6, 0x69c7001a, 0x7bc6006c, 0x00000000}},  //   סום_, gaje, saku,\n  { {0x7bc616d8, 0x3860000c, 0x929d00b4, 0x00000000}},  //   paku, tnir_, _osło,\n  { {0x200d0bc0, 0x64430964, 0x6b840a86, 0x00000000}},  //   ndei_, ūnij, _tzig,\n  { {0x3860009f, 0xe9f9001d, 0xe5a60200, 0x00000000}},  // [c9c0] rnir_, _quả_, визи,\n  { {0x69c7037e, 0x68380181, 0x386d0142, 0x00000000}},  //   caje, _mídi, čera_,\n  { {0x69d9007b, 0x629a0207, 0xf8660b81, 0x00000000}},  //   _אַרו, _rito, _авно,\n  { {0x629a0fa8, 0x779400a6, 0x6aa422fc, 0x00000000}},  //   _sito, _میزا, _kuif,\n  { {0x629a016e, 0x6aa4009d, 0x200d0026, 0x00000000}},  //   _pito, _juif, ddei_,\n  { {0x7bc4006c, 0x53331947, 0x9c7d016c, 0x00000000}},  //   _leiu, решт, rtči,\n  { {0x645800f4, 0x2576007a, 0x6aa400d9, 0x00000000}},  //   évis, _شهرس, _luif,\n  { {0xdfd00025, 0x69c70010, 0x7bc4010e, 0x00000000}},  //   حية_, zaje, _neiu,\n  { {0x629a0198, 0x26170061, 0x26c70091, 0x00000000}},  //   _tito, नाची_, ćnog_,\n  { {0x4375008b, 0x629a0112, 0x200d0035, 0x00000000}},  //   _суст, _uito, adei_,\n  { {0x69c700ca, 0x6d480a14, 0x7bc40035, 0x00000000}},  //   vaje, uzda, _beiu,\n  { {0x26cf0010, 0x69c700e7, 0x683800f6, 0x00000000}},  //   ágok_, waje, _fídi,\n  { {0x9c7d1034, 0xa3ea0309, 0xfe4600e2, 0x00000000}},  //   juče, _मान_, _индо,\n  { {0xaa6403f3, 0x6aa401c3, 0x00000000, 0x00000000}},  //   атск, _duif,   ,\n  { {0x69c7016c, 0x27f20016, 0x67d50088, 0x00000000}},  //   raje, ffyn_, лову,\n  { {0x69c7050a, 0x6ebf03d7, 0x64430089, 0x00000000}},  //   saje, लीवु, īnik,\n  { {0x81cd0055, 0x09d80055, 0xc6a4025f, 0x00000000}},  // [c9d0] ষ্ট_, দ্ধা, архи,\n  { {0x7c3d0007, 0x00000000, 0x00000000, 0x00000000}},  //   lksr,   ,   ,\n  { {0x657c0016, 0x97830014, 0x73d900e2, 0x00000000}},  //   _cyrh, _چیزه, едер_,\n  { {0x69c51312, 0xccf3007b, 0x7a2b010f, 0x00000000}},  //   _hehe, יכע_, _nütz,\n  { {0x623500ed, 0x69c5003f, 0x645800d4, 0x00000000}},  //   леду, _kehe, èvia,\n  { {0x683800d4, 0x016509ae, 0x00000000, 0x00000000}},  //   _rídi, лкло,   ,\n  { {0x69c52de6, 0x63a40006, 0x320c0173, 0x00000000}},  //   _mehe, žina, _dady_,\n  { {0x69c538de, 0xa3ea0164, 0x00000000, 0x00000000}},  //   _lehe, _माय_,   ,\n  { {0x200d1290, 0xe8e10082, 0x645901a3, 0x00000000}},  //   rdei_, _ướp_, miwi,\n  { {0x69c50010, 0x41c7013d, 0x64590036, 0x00000000}},  //   _nehe, _रजिस, liwi,\n  { {0xdb1d0010, 0x00000000, 0x00000000, 0x00000000}},  //   vasá,   ,   ,\n  { {0x9f0503ab, 0x6aa400d9, 0x00000000, 0x00000000}},  //   _موصو, _puif,   ,\n  { {0xa2db006e, 0xa3e101f5, 0xc0b9013e, 0x00000000}},  //   _निफ्, _दाई_, žádá,\n  { {0x9c7d0091, 0xfaa300e2, 0x69c5005a, 0x00000000}},  //   vuče, саро, _cehe,\n  { {0x7aef001c, 0x69c5002b, 0xd943007c, 0x00000000}},  //   atct, _dehe, бери,\n  { {0x2b55007a, 0x7d7a0049, 0x69c50058, 0x00000000}},  //   ایید_, _אנצו, _eehe,\n  { {0x7aef001c, 0x27f238df, 0x645901d6, 0x00000000}},  // [c9e0] ctct, rfyn_, diwi,\n  { {0x69c50683, 0x9c7d01ca, 0x1a0609bb, 0x00000000}},  //   _gehe, ruče, _спом,\n  { {0x320c08e2, 0x9916007e, 0x2e3a0049, 0x00000000}},  //   _rady_, _сьпі, עגענ,\n  { {0x320c01ca, 0x69c501a2, 0x00000000, 0x00000000}},  //   _sady_, _zehe,   ,\n  { {0x4caa0055, 0x69c50058, 0x00000000, 0x00000000}},  //   _কিছু, _yehe,   ,\n  { {0x69c538e0, 0xe2970887, 0xc4c61289, 0x00000000}},  //   _xehe, гач_, _مترو,\n  { {0x69c1000c, 0xca7b0049, 0x00000000, 0x00000000}},  //   ðlei, ענצט,   ,\n  { {0x044305b5, 0xc0340184, 0xaa7b000c, 0x00000000}},  //   _лесн, рниј, ntýr,\n  { {0x320c093f, 0x627b0036, 0x44ee01ca, 0x00000000}},  //   _tady_, _słoń, lý_,\n  { {0x1ef70054, 0x98ac013e, 0x00000000, 0x00000000}},  //   اعية_, ádě_,   ,\n  { {0x44ee01ca, 0x2d98010f, 0x69c533be, 0x00000000}},  //   ný_, äre_, _rehe,\n  { {0x7aef001c, 0x69c52934, 0xa2db007d, 0x00000000}},  //   ttct, _sehe, _निम्,\n  { {0xe457007b, 0x98aa0006, 0x7c3d05d5, 0x00000000}},  //   ריכט_, mybę_, rksr,\n  { {0x645900b4, 0x00000000, 0x00000000, 0x00000000}},  //   ziwi,   ,   ,\n  { {0x69c50010, 0x19950c4e, 0x61f5014a, 0x00000000}},  //   _vehe, равя, _özle,\n  { {0x57b50517, 0x36d5007c, 0x3ea600e0, 0x00000000}},  //   рбат, иобр, _kuot_,\n  { {0x69c50010, 0x660e0ad0, 0x00000000, 0x00000000}},  // [c9f0] _tehe, _babk,   ,\n  { {0x81c20089, 0x645900e0, 0x443d0022, 0x00000000}},  //   šēja, wiwi, wkw_,\n  { {0x64590007, 0xc66800ed, 0x98aa0006, 0x00000000}},  //   tiwi, уште_, kybę_,\n  { {0xe315003b, 0x00000000, 0x00000000, 0x00000000}},  //   имењ,   ,   ,\n  { {0x6459023a, 0x3a331445, 0x00000000, 0x00000000}},  //   riwi, _koxp_,   ,\n  { {0x645938e1, 0x8627007e, 0xd5f90049, 0x00000000}},  //   siwi, _сьме, _בפֿר,\n  { {0x90c20680, 0x00000000, 0x00000000, 0x00000000}},  //   обще,   ,   ,\n  { {0x44d1010a, 0xc0a8023c, 0x3ea60058, 0x00000000}},  //   mą_, داول_, _buot_,\n  { {0x41e706b4, 0x5347012b, 0x44d10a67, 0x00000000}},  //   _مساف, _схва, lą_,\n  { {0xee360057, 0x611c0035, 0x00000000, 0x00000000}},  //   ины_, _bălă,   ,\n  { {0x44d10a66, 0x2167008b, 0x611c001a, 0x00000000}},  //   ną_, _стаг, _călă,\n  { {0xed560cab, 0x5c5601e0, 0x2fc600e0, 0x00000000}},  //   рою_, ртоф, _geog_,\n  { {0xfaa6007e, 0x00000000, 0x00000000, 0x00000000}},  //   раго,   ,   ,\n  { {0x44d10eda, 0x7f840054, 0x200f0129, 0x00000000}},  //   ką_, _الهن, _hagi_,\n  { {0x44d11d6e, 0x5d79007b, 0x611c0035, 0x00000000}},  //   ją_, _באַק, _gălă,\n  { {0x44ee0428, 0x44d10bd7, 0x09e30044, 0x00000000}},  //   vý_, dą_, য়গা,\n  { {0xe7370057, 0x2ca700eb, 0x66e6007e, 0x00000000}},  // [ca00] ает_, _hund_, роза,\n  { {0x200f117c, 0x248d0058, 0x2ca70039, 0x00000000}},  //   _lagi_, _ahem_, _kund_,\n  { {0x89db034e, 0x44d1093c, 0x4ca70044, 0x00000000}},  //   _בחיי, gą_, _কৌতু,\n  { {0x2ca7048a, 0x44ee0428, 0x66e602b8, 0x00000000}},  //   _mund_, rý_, _кома,\n  { {0x63a40dc6, 0x2ca701bf, 0xddc10059, 0x00000000}},  //   žino, _lund_, dolž,\n  { {0x248d0f5e, 0x32530088, 0x44d1093c, 0x00000000}},  //   _ehem_, овір, bą_,\n  { {0x200f020c, 0xa3ea005e, 0x3ea6011c, 0x00000000}},  //   _bagi_, _идва_, _suot_,\n  { {0x64a3008b, 0x63ad008e, 0x3ea600e0, 0x00000000}},  //   _фата, ñant, _puot_,\n  { {0x3ea60032, 0x9c7d0ce4, 0x91e60fc0, 0x00000000}},  //   _quot_, juča, _возе,\n  { {0x2ca70c53, 0x63790147, 0x68fe0292, 0x00000000}},  //   _bund_, _ссср_, _oppd,\n  { {0x2a7800f6, 0x00000000, 0x00000000, 0x00000000}},  //   dorb_,   ,   ,\n  { {0x2ca00009, 0xdb060010, 0x00000000, 0x00000000}},  //   _ciid_, bbkü,   ,\n  { {0xba770025, 0x291a38e2, 0xbf1600a6, 0x00000000}},  //   لاست, _arpa_, _خوشب,\n  { {0x2004014a, 0x6483006c, 0x2ca7071e, 0x00000000}},  //   lemi_, võim, _fund_,\n  { {0x6cd4025a, 0x2ca7000a, 0xdd8f023c, 0x00000000}},  //   _اقبا, _gund_, _قوه_,\n  { {0x200438e3, 0x9c7d02aa, 0x44d10006, 0x00000000}},  //   nemi_, buča, vą_,\n  { {0x44d10046, 0xcf930049, 0xe0e20044, 0x00000000}},  // [ca10] wą_, ַטע_, _মনোন,\n  { {0x44d10a66, 0x20040065, 0xaae600a1, 0x00000000}},  //   tą_, hemi_, _اسٹو,\n  { {0x20040066, 0xd041006b, 0xb342006b, 0x00000000}},  //   kemi_, _evlə, əçil,\n  { {0x44d10a66, 0x20041080, 0xa9160049, 0x00000000}},  //   rą_, jemi_, _פֿיס_,\n  { {0x77640265, 0x200401a3, 0x44d10bd7, 0x00000000}},  //   _държ, demi_, są_,\n  { {0x27e91ad4, 0x2169003b, 0x44d10bd7, 0x00000000}},  //   lgan_, лили_, pą_,\n  { {0x248d38e4, 0x200f04cb, 0x660538e5, 0x00000000}},  //   _them_, _pagi_, mehk,\n  { {0x27e91535, 0x2ca7010f, 0x683800c4, 0x00000000}},  //   ngan_, _rund_, _hídr,\n  { {0x2ca7158f, 0x200f0129, 0x27e9004a, 0x00000000}},  //   _sund_, _vagi_, igan_,\n  { {0xf1f800a6, 0xd2510025, 0x200f00b4, 0x00000000}},  //   _نعمت_, _عنا_, _wagi_,\n  { {0x200f0036, 0x802700a1, 0x3dc700d9, 0x00000000}},  //   _tagi_, _پرام, _venw_,\n  { {0x69d7049a, 0x200400b9, 0x6f19005b, 0x00000000}},  //   _adxe, cemi_, _trwc,\n  { {0x291a016c, 0x70740025, 0x6da502dc, 0x00000000}},  //   _srpa_, _بالذ, _лила,\n  { {0x9c7d0166, 0x2ca7006c, 0x2ca001d6, 0x00000000}},  //   ruča, _tund_, _wiid_,\n  { {0xceb4006b, 0x6e2335dd, 0xa3e70061, 0x00000000}},  //   _çər_, _innb, पला_,\n  { {0x9c7d040d, 0x27e901a3, 0x2a780a6b, 0x00000000}},  //   lučn, ggan_, sorb_,\n  { {0x81df0044, 0x7c24011c, 0x644a0023, 0x00000000}},  // [ca20] ধ্য_, _inir, ëfim,\n  { {0xa3ea013d, 0x27e938e6, 0x7ae6033b, 0x00000000}},  //   _माह_, agan_, mukt,\n  { {0xeafa01ef, 0x68fe0073, 0x7ae6066b, 0x00000000}},  //   _شرکت_, _uppd, lukt,\n  { {0x69ce022b, 0x6283145e, 0x03260741, 0x00000000}},  //   labe, elno, йден,\n  { {0x06b20044, 0x26cf0010, 0x61fa0085, 0x00000000}},  //   _চিকি, ágot_, _pbtl,\n  { {0xfe670379, 0x9c7d01ae, 0xd250067a, 0x00000000}},  //   _رد_, jučn, بنت_,\n  { {0x20040617, 0xb3a90180, 0x1a9b0049, 0x00000000}},  //   temi_, ğırı, ניצע,\n  { {0x62831091, 0x09e10044, 0x69ce03ae, 0x00000000}},  //   alno, ম্পা, habe,\n  { {0x69ce0018, 0x200401aa, 0xd0070143, 0x00000000}},  //   kabe, remi_, сење_,\n  { {0x2004000c, 0x7c240129, 0x0737009b, 0x00000000}},  //   semi_, _anir, צאים_,\n  { {0x667b007b, 0x38ae000c, 0x78bc00b9, 0x00000000}},  //   רטיק, _nýr_, jprv,\n  { {0xdee60072, 0x4424000a, 0x644200b0, 0x00000000}},  //   _годи, _jnm_, nkoi,\n  { {0x69ce049a, 0x27e9000a, 0xf1ac013d, 0x00000000}},  //   fabe, vgan_, _चलान,\n  { {0x69ce084b, 0x7c2438e7, 0x61ea000c, 0x00000000}},  //   gabe, _enir, ngfl,\n  { {0x442400bb, 0x27e938e8, 0x644200b0, 0x00000000}},  //   _onm_, tgan_, kkoi,\n  { {0x7ae638e9, 0x38ae000c, 0x44240009, 0x00000000}},  //   bukt, _dýr_, _nnm_,\n  { {0x7bcf106f, 0x69ce0232, 0x27e902f1, 0x00000000}},  // [ca30] macu, babe, rgan_,\n  { {0x69ce0211, 0x6b8d0032, 0x27e91a16, 0x00000000}},  //   cabe, _izag, sgan_,\n  { {0x442401a3, 0x6f0901a2, 0x00000000, 0x00000000}},  //   _bnm_, zwec,   ,\n  { {0x26cf0010, 0x7bcf0035, 0x44240095, 0x00000000}},  //   ágos_, nacu, _cnm_,\n  { {0x386903ed, 0xa3ea006e, 0x23291074, 0x00000000}},  //   mnar_, _मार_, роли_,\n  { {0x386900d0, 0x41e70088, 0x7a3001a2, 0x00000000}},  //   lnar_, сіда, _sätz,\n  { {0x386938ea, 0x64430a5b, 0x00000000, 0x00000000}},  //   onar_, ënis,   ,\n  { {0x38690635, 0xd259000a, 0x7ae60022, 0x00000000}},  //   nnar_, _kwņk_, yukt,\n  { {0x3869009f, 0x09e10044, 0xdb1d0010, 0x00000000}},  //   inar_, ম্যা, bbsé,\n  { {0xc0cb01fb, 0x3f83001e, 0x6f0901a2, 0x00000000}},  //   _буде_, āju_, rwec,\n  { {0x9c7d0c76, 0x64491440, 0x320707e4, 0x00000000}},  //   ručn, _klei, meny_,\n  { {0x32070062, 0x7f190088, 0x09e10044, 0x00000000}},  //   leny_, _віку_, ম্মা,\n  { {0xe04201fb, 0x69ce0181, 0x386938eb, 0x00000000}},  //   _інши, tabe, dnar_,\n  { {0x644938ec, 0x98a6025f, 0x2caa0051, 0x00000000}},  //   _llei, живе, úidí_,\n  { {0x69ce014a, 0x6b8d022b, 0x3ce0013d, 0x00000000}},  //   rabe, _ezag, _किये_,\n  { {0x7c24106f, 0x386906a1, 0x00000000, 0x00000000}},  //   _unir, gnar_,   ,\n  { {0xa2db0309, 0x63a40006, 0x29010058, 0x00000000}},  // [ca40] _निष्, žink, _epha_,\n  { {0x09e10044, 0x645b0051, 0xf65f0030, 0x00000000}},  //   ম্বা, _amui, _svær_,\n  { {0x6449001f, 0x8506007a, 0x320701ca, 0x00000000}},  //   _blei, توان, deny_,\n  { {0x644921b2, 0xa2db0309, 0x9c830027, 0x00000000}},  //   _clei, _निश्, _účto,\n  { {0x6442021e, 0x442438ed, 0x00000000, 0x00000000}},  //   rkoi, _vnm_,   ,\n  { {0xa2db02fb, 0x644902d5, 0x644200b0, 0x00000000}},  //   _निर्, _elei, skoi,\n  { {0x644938ee, 0xf65f000c, 0x7bcf004a, 0x00000000}},  //   _flei, _tvær_, yacu,\n  { {0x6449001f, 0x09b70201, 0x44240022, 0x00000000}},  //   _glei, _अभ्य, _unm_,\n  { {0x7bcf00e5, 0x7e2a007e, 0x32070062, 0x00000000}},  //   vacu, аіна_, beny_,\n  { {0x24860292, 0xa3ea013d, 0x386d0091, 0x00000000}},  //   llom_, _माँ_, čeri_,\n  { {0x6449021e, 0x7bcf0285, 0x38690477, 0x00000000}},  //   _ylei, tacu, ynar_,\n  { {0xa2c1007d, 0x6b840009, 0x00000000, 0x00000000}},  //   रीक्, _byig,   ,\n  { {0x997c0089, 0x6b840045, 0x7e7a04eb, 0x00000000}},  //   _jāņa_, _cyig, potp,\n  { {0x6f02237d, 0x7bcf008e, 0xda7b213f, 0x00000000}},  //   _ipoc, sacu, рям_,\n  { {0xa3ea013d, 0x7bcf0035, 0x3869000c, 0x00000000}},  //   _मां_, pacu, tnar_,\n  { {0x765c018e, 0x2486041a, 0x32070802, 0x00000000}},  //   _amry, jlom_, zeny_,\n  { {0x386938ef, 0xf7730076, 0x24860142, 0x00000000}},  // [ca50] rnar_, ذار_, dlom_,\n  { {0x64491f1c, 0xf1bf0011, 0x386901e5, 0x00000000}},  //   _slei, _đáo_, snar_,\n  { {0x6449028c, 0xd49b0517, 0x38690039, 0x00000000}},  //   _plei, ард_, pnar_,\n  { {0x24860107, 0x3cfb0049, 0x44270025, 0x00000000}},  //   glom_, שלאנ, غراف,\n  { {0x069b007a, 0x64490007, 0x7bcd009d, 0x00000000}},  //   _نخست_, _vlei, _meau,\n  { {0x6aad38f0, 0x64490016, 0xe60100b0, 0x00000000}},  //   _muaf, _wlei, ävää,\n  { {0x24860007, 0x6615002d, 0x768b014a, 0x00000000}},  //   blom_, _iazk, lüyo,\n  { {0x32070129, 0xe45f38f1, 0x6615002d, 0x00000000}},  //   seny_, _öö_, _hazk,\n  { {0x63a938f2, 0x6615010a, 0x768b011f, 0x00000000}},  //   _igen, _kazk, nüyo,\n  { {0x5bb6024c, 0xfe710025, 0x3eb90089, 0x00000000}},  //   ूर्व, عدة_, īst_,\n  { {0x7bcd0549, 0x3eb90089, 0x6f021d28, 0x00000000}},  //   _beau, ūst_, _epoc,\n  { {0x801401fb, 0x7bcd001a, 0x6615002d, 0x00000000}},  //   _офіц, _ceau, _lazk,\n  { {0x7ff400a6, 0x63a90020, 0x7bcd009d, 0x00000000}},  //   _آسما, _mgen, _deau,\n  { {0xdb0f002a, 0x3ebf033b, 0x66150032, 0x00000000}},  //   ódái, mput_, _nazk,\n  { {0x660a005f, 0x929d0046, 0x63a938f3, 0x00000000}},  //   _ölkə, _usłu, _ogen,\n  { {0x63a40dc6, 0x7bcd00bb, 0x6d41005b, 0x00000000}},  //   žini, _geau, myla,\n  { {0x6615002d, 0x6d4138f4, 0x3ebf016e, 0x00000000}},  // [ca60] _bazk, lyla, nput_,\n  { {0xa596007c, 0x00000000, 0x00000000, 0x00000000}},  //   прещ,   ,   ,\n  { {0x6d410010, 0x2c21001c, 0xe9f90011, 0x00000000}},  //   nyla, याचं_, _huế_,\n  { {0x3a3a0039, 0x6d5c0048, 0x00000000, 0x00000000}},  //   _hopp_, úrai,   ,\n  { {0x3a3a00f8, 0x3ebf041d, 0x937a05d4, 0x00000000}},  //   _kopp_, jput_, حصار_,\n  { {0x26c00198, 0x248604a3, 0x63a905cb, 0x00000000}},  //   mpio_, slom_, _egen,\n  { {0x2bed0061, 0x40340242, 0x6f0214a6, 0x00000000}},  //   _झालं_, дейс, _spoc,\n  { {0x6d410190, 0x3a3a00f8, 0xa0a300e2, 0x00000000}},  //   dyla, _lopp_, најд,\n  { {0x7bcd121e, 0x44d838f5, 0x00000000, 0x00000000}},  //   _reau, lč_,   ,\n  { {0x78a60142, 0x9325007a, 0x00000000, 0x00000000}},  //   _likv, _ترفن,   ,\n  { {0xc04f01fb, 0x44d80173, 0x7d030093, 0x00000000}},  //   _зі_, nč_, _cpns,\n  { {0xf04402fd, 0x78a601ee, 0x3a3a0045, 0x00000000}},  //   _تعطی, _nikv, _aopp_,\n  { {0xa3ea0164, 0x9c7d0ebe, 0x7e61002d, 0x00000000}},  //   _माई_, lučk, bilp,\n  { {0x8f9b009b, 0xadbc007e, 0x00000000, 0x00000000}},  //   _הידי, _такi,   ,\n  { {0x66150059, 0x44d838f6, 0x6d4138f7, 0x00000000}},  //   _razk, jč_, cyla,\n  { {0xf1bf0011, 0xb9050309, 0xe8e00011, 0x00000000}},  //   _đám_, _नि_, _giọt_,\n  { {0x2bc30164, 0xb8f4007d, 0x66150032, 0x00000000}},  // [ca70] _व्या, _सौ_, _pazk,\n  { {0x929d0036, 0x768b014a, 0xe2a30082, 0x00000000}},  //   _opła, rüyo, _chữ_,\n  { {0x58d40057, 0x9c7d08fb, 0x6f1b0107, 0x00000000}},  //   _поэт, jučk, zvuc,\n  { {0x9f9d02d5, 0x27ed0190, 0x997500b4, 0x00000000}},  //   nção_, _øen_, _męża_,\n  { {0x9f9d0181, 0xddc801ed, 0x44f50374, 0x00000000}},  //   ição_, dodž, så_,\n  { {0xc244007e, 0x386d016e, 0x00000000, 0x00000000}},  //   ннік, čeru_,   ,\n  { {0x25fd0204, 0x62810059, 0x7e61245c, 0x00000000}},  //   र्णी_, _vklo, vilp,\n  { {0x63a90030, 0x3ebf00ab, 0xf9940049, 0x00000000}},  //   _ugen, tput_, ערק_,\n  { {0x25fd0164, 0x59bf01f5, 0x7e610089, 0x00000000}},  //   र्थी_, ्रार, tilp,\n  { {0x62810182, 0x9c7d145e, 0x6d410133, 0x00000000}},  //   _uklo, bučk, tyla,\n  { {0xac0a1662, 0x3ebf013f, 0x00000000, 0x00000000}},  //   онна_, sput_,   ,\n  { {0x25fd0164, 0x6d41112b, 0x6483006c, 0x00000000}},  //   र्ती_, ryla, mõis,\n  { {0xa2c10061, 0x6d410075, 0xe9f90082, 0x00000000}},  //   रीच्, syla, _quế_,\n  { {0x9f9d02d5, 0x00000000, 0x00000000, 0x00000000}},  //   ação_,   ,   ,\n  { {0xfaa31deb, 0xab5b1a6f, 0x00000000, 0x00000000}},  //   таро, lbül,   ,\n  { {0x9f9d0181, 0x3ea71205, 0x00000000, 0x00000000}},  //   cção_, _hint_,   ,\n  { {0x3a3a38f8, 0xd7ef0025, 0x186700ed, 0x00000000}},  // [ca80] _topp_, شكل_, фати_,\n  { {0x26c0007f, 0xa5f7012b, 0xb9c6006d, 0x00000000}},  //   rpio_, међу_, _تقدي,\n  { {0x3ea70e69, 0x78a604eb, 0x291c0010, 0x00000000}},  //   _mint_, _tikv, _éva_,\n  { {0x26c00207, 0x2d870007, 0x00000000, 0x00000000}},  //   ppio_, _myne_,   ,\n  { {0x2d8701d6, 0xd12f0014, 0x17c70088, 0x00000000}},  //   _lyne_, یمه_, _ігри_,\n  { {0x2d8b0046, 0x9343005e, 0x8b5701ce, 0x00000000}},  //   ęcej_, ънче, וינס_,\n  { {0xd5ad026c, 0xa6b00044, 0x20d30379, 0x00000000}},  //   _اہم_, _ছবিট, نتيج,\n  { {0x8f4604ef, 0x3ea70c78, 0xddc10006, 0x00000000}},  //   дход, _aint_, bilū,\n  { {0x3ea71a07, 0xdefa007e, 0x69de0059, 0x00000000}},  //   _bint_, цый_, _odpe,\n  { {0x9c7d1322, 0x3eb90b33, 0x6483006c, 0x00000000}},  //   muči, ísta_, sõit,\n  { {0x9c7d0363, 0x3ea7121e, 0x00000000, 0x00000000}},  //   luči, _dint_,   ,\n  { {0x628a0061, 0x69de0022, 0x2d8738f9, 0x00000000}},  //   llfo, _adpe, _dyne_,\n  { {0xccf80224, 0x3ea71a95, 0x9c7d0006, 0x00000000}},  //   stě_, _fint_, nuči,\n  { {0x2d8701c3, 0x00000000, 0x00000000, 0x00000000}},  //   _fyne_,   ,   ,\n  { {0x9f9d0181, 0x00000000, 0x00000000, 0x00000000}},  //   pção_,   ,   ,\n  { {0x9c7d366d, 0xdb250035, 0x764e005b, 0x00000000}},  //   kuči, ăpân, _alby,\n  { {0x81e60055, 0x9c7d0c1e, 0xa03b0049, 0x00000000}},  // [ca90] য্য_, juči, קעמפ,\n  { {0x9c7d0391, 0x2ca90048, 0xa56728b7, 0x00000000}},  //   duči, _hiad_, ودان,\n  { {0xdcf8001e, 0x67d503f3, 0x69d50181, 0x00000000}},  //   _izvē, _пону, maze,\n  { {0x442938fa, 0x6483006c, 0x33750888, 0x00000000}},  //   ña_, võis, нгер,\n  { {0x38b503bd, 0xba740014, 0x9c7d0391, 0x00000000}},  //   _hår_, _سایت, guči,\n  { {0x6113006b, 0x2ca90022, 0x69d50095, 0x00000000}},  //   _hələ, _liad_, naze,\n  { {0xd1310076, 0x2fcf0087, 0x7d1c000c, 0x00000000}},  //   امع_, _pegg_, ærsl,\n  { {0x3ea718a6, 0x9c7d0006, 0x38b50039, 0x00000000}},  //   _sint_, buči, _mår_,\n  { {0x69d5061b, 0x2d871810, 0x6113006b, 0x00000000}},  //   kaze, _syne_, _mələ,\n  { {0x7bdf1195, 0x69d500ca, 0x69c738fb, 0x00000000}},  //   _adqu, jaze, jbje,\n  { {0x38b52ad9, 0x63a4010a, 0x3ea70129, 0x00000000}},  //   _når_, žint, _vint_,\n  { {0x3ea700bb, 0x6113006b, 0x2ca900e5, 0x00000000}},  //   _wint_, _nələ, _ciad_,\n  { {0x63bb0020, 0x69d52d5b, 0xe7e3007d, 0x00000000}},  //   _mfun, faze, गणना_,\n  { {0x69d538fc, 0x2d872595, 0x200d002d, 0x00000000}},  //   gaze, _tyne_, leei_,\n  { {0x6113006b, 0x9c830059, 0x00000000, 0x00000000}},  //   _bələ, ščaj,   ,\n  { {0xf7720025, 0x25fd013d, 0x1602006e, 0x00000000}},  //   هاء_, र्सी_, र्नर_,\n  { {0xc05200a3, 0x628a0146, 0x69da21eb, 0x00000000}},  // [caa0] אזן_, ylfo, ótes,\n  { {0x63bb337e, 0x38b50cb2, 0xe61702be, 0x00000000}},  //   _afun, _får_, нду_,\n  { {0x38b50cb2, 0x044638fd, 0x6113006b, 0x00000000}},  //   _går_, нежн, _fələ,\n  { {0x6113005f, 0x29370049, 0x00000000, 0x00000000}},  //   _gələ, _נאכן_,   ,\n  { {0xbb3b007b, 0x200d002d, 0x338302dc, 0x00000000}},  //   ּעצי, deei_, лушв,\n  { {0x63bb01c3, 0xb4250bb6, 0x00000000, 0x00000000}},  //   _efun, _یعقو,   ,\n  { {0xa507132e, 0x00000000, 0x00000000, 0x00000000}},  //   _пера_,   ,   ,\n  { {0x69c7037e, 0xdfd00025, 0x9c7d007f, 0x00000000}},  //   zbje, جية_, puči,\n  { {0x64ac011f, 0x25fd0201, 0x2ca9205b, 0x00000000}},  //   _eğit, र्वी_, _riad_,\n  { {0x2ca9002a, 0x63a40059, 0x3f8a0089, 0x00000000}},  //   _siad_, žins, ābu_,\n  { {0x82770049, 0x4d980088, 0x10f800a1, 0x00000000}},  //   _טעמע_, ькою_, _زباں_,\n  { {0xf1bf0082, 0x38b500ea, 0x00000000, 0x00000000}},  //   _đái_, _rår_,   ,\n  { {0xdb1d0010, 0x38b50b16, 0x3d280241, 0x00000000}},  //   vasó, _sår_, ستگی_,\n  { {0x63ad0211, 0x79a700e2, 0x8fa3003b, 0x00000000}},  //   ñanz, ербе, _саче,\n  { {0x67d50500, 0x2db7009b, 0xdb1d0051, 0x00000000}},  //   кову, _אלון_, tasó,\n  { {0x38b5143e, 0x6113006b, 0x69d500b9, 0x00000000}},  //   _vår_, _qələ, saze,\n  { {0xdb1d0051, 0x69d50181, 0x7c2d0eac, 0x00000000}},  // [cab0] rasó, paze, _inar,\n  { {0xb714007c, 0x2b530276, 0x00000000, 0x00000000}},  //   ыдущ, ıncı_,   ,\n  { {0x6113005f, 0x7c2d0039, 0x7afd0da6, 0x00000000}},  //   _tələ, _knar, ltst,\n  { {0x7afd257d, 0x7af200b9, 0x9fb500b9, 0x00000000}},  //   otst, šetř, třík_,\n  { {0x147401d8, 0x7c2d38fe, 0x7c3f0066, 0x00000000}},  //   دالج, _mnar, _moqr,\n  { {0xdd8604e8, 0x98be0006, 0x68e3043e, 0x00000000}},  //   _نو_, štą_, _ånds,\n  { {0x7c2d37f7, 0x9c7d0466, 0x7afd095d, 0x00000000}},  //   _onar, luču, htst,\n  { {0x63bb0020, 0x7afd02e1, 0x00000000, 0x00000000}},  //   _ufun, ktst,   ,\n  { {0xe803001c, 0x442d0142, 0xc6140044, 0x00000000}},  //   ऱ्या_, _ine_, সারা_,\n  { {0x443f06b2, 0x3384007e, 0x7afd27b7, 0x00000000}},  //   _hou_, _сусв, dtst,\n  { {0x2bc3024c, 0x443f0263, 0x7afd38ff, 0x00000000}},  //   _व्हा, _kou_, etst,\n  { {0x443f3900, 0x442d3901, 0x7afd04fb, 0x00000000}},  //   _jou_, _jne_, ftst,\n  { {0x7afd001c, 0x443f3902, 0x442d06b8, 0x00000000}},  //   gtst, _mou_, _mne_,\n  { {0x443f01aa, 0x6283011c, 0x7c2d04de, 0x00000000}},  //   _lou_, nono, _enar,\n  { {0x442d0038, 0x7afd00b5, 0x7c3f0066, 0x00000000}},  //   _one_, atst, _foqr,\n  { {0x443f0607, 0x442d0020, 0x63ad0f3a, 0x00000000}},  //   _nou_, _nne_, žanj,\n  { {0x98a30001, 0x62830cce, 0xa68601fc, 0x00000000}},  // [cac0] рите, kono, влад,\n  { {0x442d0263, 0x62830aa9, 0x443f1339, 0x00000000}},  //   _ane_, jono, _aou_,\n  { {0x443f0007, 0x64a60245, 0x25ba0089, 0x00000000}},  //   _bou_, важа, rcpl_,\n  { {0xb6090089, 0x3d19013d, 0x443f009d, 0x00000000}},  //   _atšķ, _बनने_, _cou_,\n  { {0x62830885, 0x442d3903, 0xd36f0054, 0x00000000}},  //   fono, _dne_, يهم_,\n  { {0x62830016, 0xfe6705f3, 0xcb1300a0, 0x00000000}},  //   gono, _ضد_, ילד_,\n  { {0x443f1b43, 0xd1300025, 0x442d0085, 0x00000000}},  //   _fou_, صمة_, _fne_,\n  { {0x44fc3904, 0x661c00b0, 0x443f3905, 0x00000000}},  //   mí_, _hark, _gou_,\n  { {0x44fc004f, 0xd00700e1, 0x661c00b0, 0x00000000}},  //   lí_, тење_, _kark,\n  { {0x443f02ae, 0x62830e1d, 0x644000d6, 0x00000000}},  //   _zou_, cono, _homi,\n  { {0x443f0a8a, 0x64403906, 0x44fc004f, 0x00000000}},  //   _you_, _komi, ní_,\n  { {0x7afd0056, 0x98aa0006, 0x6440007f, 0x00000000}},  //   ttst, mybė_, _jomi,\n  { {0x7b6400ed, 0x44fc0142, 0x98aa007f, 0x00000000}},  //   атре, hí_, lybė_,\n  { {0x6440037e, 0x7aef0038, 0x7afd010f, 0x00000000}},  //   _lomi, ruct, rtst,\n  { {0x44fc01c8, 0x7afd05b4, 0x2b4d3907, 0x00000000}},  //   jí_, stst, šec_,\n  { {0x44fc0387, 0x7afd010f, 0x6ca4007e, 0x00000000}},  //   dí_, ptst, _крыж,\n  { {0x661c2b1c, 0x443f0007, 0x63ad1332, 0x00000000}},  // [cad0] _bark, _rou_, žank,\n  { {0x443f0607, 0x9c7d0224, 0x442d0179, 0x00000000}},  //   _sou_, ruču, _sne_,\n  { {0x443f1631, 0xd9d90044, 0x62830253, 0x00000000}},  //   _pou_, _তাপম, vono,\n  { {0x62832b98, 0x6d5a0032, 0x661c0288, 0x00000000}},  //   wono, izta, _eark,\n  { {0x6283117a, 0x661c011f, 0x443f02d5, 0x00000000}},  //   tono, _fark, _vou_,\n  { {0x443f3900, 0x661c01c5, 0x44fc0161, 0x00000000}},  //   _wou_, _gark, bí_,\n  { {0xfaff048a, 0x443f0607, 0x44fc388c, 0x00000000}},  //   htë_, _tou_, cí_,\n  { {0x442d0a8d, 0xef190920, 0x6440016c, 0x00000000}},  //   _une_, еми_, _gomi,\n  { {0xfaff008d, 0x62830036, 0x6b8d3908, 0x00000000}},  //   jtë_, pono, _nyag,\n  { {0x6d48005b, 0x41b50025, 0x00000000, 0x00000000}},  //   fyda, _إمار,   ,\n  { {0x64403909, 0x38690288, 0x6b8d390a, 0x00000000}},  //   _yomi, kiar_, _ayag,\n  { {0xfaff008d, 0x6b8d0061, 0x80d00044, 0x00000000}},  //   ftë_, _byag, সংখ্,\n  { {0x3869390b, 0x44fc01ca, 0x6d5a002d, 0x00000000}},  //   diar_, zí_, azta,\n  { {0x64b7012d, 0x6b8d0173, 0x01e50044, 0x00000000}},  //   _aćim, _dyag, প্রদ,\n  { {0x7c2f0051, 0x610a006b, 0x2d94005e, 0x00000000}},  //   áirí, _gəld, _кръс,\n  { {0x44fc390c, 0x38692609, 0x201f1569, 0x00000000}},  //   ví_, giar_, ndui_,\n  { {0x6440001a, 0x2905011f, 0x5baa0088, 0x00000000}},  // [cae0] _romi, çlar_, _яким_,\n  { {0x44fc004f, 0x6440125c, 0x661c0065, 0x00000000}},  //   tí_, _somi, _qark,\n  { {0x64400213, 0x44fc0181, 0xd94602ea, 0x00000000}},  //   _pomi, uí_, _сени,\n  { {0x44fc390d, 0x629a0065, 0x291a390e, 0x00000000}},  //   rí_, _shto, _ispa_,\n  { {0x661c021e, 0x44fc0b88, 0x291a05ae, 0x00000000}},  //   _tark, sí_, _hspa_,\n  { {0x5b7b0049, 0x44fc01ca, 0x98aa0006, 0x00000000}},  //   ערסא, pí_, tybė_,\n  { {0x6440016e, 0x05270256, 0x291a390f, 0x00000000}},  //   _tomi, _йорк_, _jspa_,\n  { {0x64400207, 0x6d482d4e, 0x00000000, 0x00000000}},  //   _uomi, vyda,   ,\n  { {0x6d480016, 0x61f60025, 0x629a0009, 0x00000000}},  //   wyda, _مساء, _thto,\n  { {0x715a029b, 0x3869002d, 0x6d4833cd, 0x00000000}},  //   _прес_, ziar_, tyda,\n  { {0xdd94007e, 0x127b0049, 0x5c750478, 0x00000000}},  //   раны, _טאמע, илот,\n  { {0x6d4807be, 0x09bf01f5, 0xc0ff0011, 0x00000000}},  //   ryda, ्र्य, _lướt_,\n  { {0x38691195, 0x6d5a182e, 0x321e0253, 0x00000000}},  //   viar_, szta, _katy_,\n  { {0xfaff008d, 0xc9870216, 0x24570095, 0x00000000}},  //   rtë_, губи, _içme_,\n  { {0xfaff0065, 0x6724001e, 0xf8070081, 0x00000000}},  //   stë_, evij, лчан,\n  { {0x6b8d00e0, 0x610a006b, 0xfaff0023, 0x00000000}},  //   _tyag, _kəlb, ptë_,\n  { {0x38690056, 0xfaff0065, 0x291a206d, 0x00000000}},  // [caf0] riar_, qtë_, _espa_,\n  { {0xd01d0055, 0x00000000, 0x00000000, 0x00000000}},  //   থায়_,   ,   ,\n  { {0x386900d6, 0x291a012d, 0x2cf20164, 0x00000000}},  //   piar_, _gspa_, _अमोल_,\n  { {0x69d701a2, 0x3eae0133, 0x59bf0204, 0x00000000}},  //   _hexe, _lift_, ्रकर,\n  { {0xb7da009b, 0x201d0085, 0x26c7012d, 0x00000000}},  //   _בקרי, _rawi_, ćnos_,\n  { {0xd25b007e, 0x201d1463, 0xe2990098, 0x00000000}},  //   эце_, _sawi_, њак_,\n  { {0x2486018d, 0x20550517, 0x69d700c4, 0x00000000}},  //   boom_, итир, _mexe,\n  { {0xdb1d006c, 0x69d7009d, 0x4ab50316, 0x00000000}},  //   lasõ, _lexe, ंदाव,\n  { {0x201f007f, 0x00000000, 0x00000000, 0x00000000}},  //   rdui_,   ,   ,\n  { {0x3eae16b4, 0xdb1d010e, 0xc0ff0082, 0x00000000}},  //   _cift_, nasõ, _xướt_,\n  { {0xa11510fc, 0x67240e3b, 0x201d0020, 0x00000000}},  //   _خوات, zvij, _tawi_,\n  { {0x8b26007e, 0x20d30035, 0x645a007f, 0x00000000}},  //   адме, mţi_, _įtik,\n  { {0x30840054, 0x20d3001a, 0xe8e00011, 0x00000000}},  //   _النف, lţi_, _kiệt_,\n  { {0x24860030, 0x3eae00ab, 0x291a01f3, 0x00000000}},  //   zoom_, _gift_, _pspa_,\n  { {0x20d3001a, 0x290c2560, 0x6846005e, 0x00000000}},  //   nţi_, ïda_, анва,\n  { {0x67240089, 0xe8e00011, 0x7ae90091, 0x00000000}},  //   tvij, _liệt_, šeta,\n  { {0x69d70927, 0x2486016c, 0x09e60072, 0x00000000}},  // [cb00] _fexe, voom_, _копн,\n  { {0x67240089, 0xcb9b0097, 0xdb9b009b, 0x00000000}},  //   rvij, _בספט, _בספר,\n  { {0x69dc26c4, 0x2eed0009, 0x6724016e, 0x00000000}},  //   mare, href_, svij,\n  { {0x69dc02f5, 0x03260264, 0xe482019a, 0x00000000}},  //   lare, иден, _öpüş,\n  { {0xe8e0001d, 0x2486066a, 0xd387007e, 0x00000000}},  //   _biệt_, room_, айце_,\n  { {0x69dc3910, 0x2eed018e, 0x64ac019a, 0x00000000}},  //   nare, dref_, _işim,\n  { {0xe8e00011, 0xdb1f1396, 0x69dc3911, 0x00000000}},  //   _diệt_, _seqü, iare,\n  { {0x64590b70, 0xc034012b, 0x38bc1d6c, 0x00000000}},  //   chwi, сниј, _mír_,\n  { {0x69dc002d, 0x610a006b, 0x25fd013d, 0x00000000}},  //   kare, _qəlb, र्की_,\n  { {0x69dc001a, 0x38bc3912, 0x62720036, 0x00000000}},  //   jare, _oír_, dłog,\n  { {0x45b70049, 0x69d700d2, 0x20d30035, 0x00000000}},  //   יפיל_, _rexe, cţi_,\n  { {0x98be0224, 0x69d722d7, 0x4cb80044, 0x00000000}},  //   ště_, _sexe, _আবদু,\n  { {0x69dc0039, 0x3eae0066, 0x00000000, 0x00000000}},  //   fare, _tift_,   ,\n  { {0xdb1d0010, 0x5ef30061, 0x3b000066, 0x00000000}},  //   ncsé, ंढर्_, _dqiq_,\n  { {0x7e7d008e, 0xa3e60061, 0x6e3c0039, 0x00000000}},  //   éspe, पणा_, örbu,\n  { {0x08540088, 0x8bd5003b, 0x00000000, 0x00000000}},  //   овсю, _ужиц,   ,\n  { {0x7bdd04cb, 0x57a7005e, 0x69d700bb, 0x00000000}},  // [cb10] masu, ршва, _texe,\n  { {0x69dc149f, 0x7bdd010e, 0x78a4010e, 0x00000000}},  //   care, lasu, amiv,\n  { {0x74a706e3, 0x64590ca4, 0xd5b80088, 0x00000000}},  //   ајде, thwi, рсу_,\n  { {0x7bdd0503, 0x68f5005a, 0xd0060025, 0x00000000}},  //   nasu, muzd, _عل_,\n  { {0x2458007e, 0x00000000, 0x00000000, 0x00000000}},  //   шаць_,   ,   ,\n  { {0xf207004c, 0x7bdd0f7c, 0xd2640088, 0x00000000}},  //   рядо, hasu, окій,\n  { {0xe8e000ad, 0x2a58009b, 0x7bdd14f7, 0x00000000}},  //   _việt_, שבון_, kasu,\n  { {0x2eed3913, 0x69dc04f4, 0x20d3000d, 0x00000000}},  //   tref_, zare, rţi_,\n  { {0x69dc011f, 0x7bdd002d, 0xe8e00082, 0x00000000}},  //   yare, dasu, _tiệt_,\n  { {0xee39012b, 0x20d30035, 0x00000000, 0x00000000}},  //   уно_, pţi_,   ,\n  { {0x69dc0378, 0x4c860d99, 0x29030af9, 0x00000000}},  //   vare, йлов, jtja_,\n  { {0x69dc0270, 0x7bdd0058, 0xed560088, 0x00000000}},  //   ware, gasu, сою_,\n  { {0x69dc04f4, 0x224500ca, 0x249f0022, 0x00000000}},  //   tare, _kolk_, _mhum_,\n  { {0x610a006b, 0x69dc1ea8, 0x00000000, 0x00000000}},  //   _həla, uare,   ,\n  { {0x69dc28f8, 0x7d1c344a, 0x7bdd0145, 0x00000000}},  //   rare, ærst, basu,\n  { {0x69dc15cd, 0x7bdd0035, 0x8d740014, 0x00000000}},  //   sare, casu, _باها,\n  { {0xe737030d, 0xfc57009b, 0xf5b60025, 0x00000000}},  // [cb20] бет_, _לבקש_, مصاد,\n  { {0xcf92007b, 0x38bc0051, 0x69dc3914, 0x00000000}},  //   לטן_, _tír_, qare,\n  { {0xf1bf001d, 0xab5b0477, 0x186a073b, 0x00000000}},  //   _đáp_, bbüs, _бани_,\n  { {0x7ae40056, 0x98160426, 0x249f0048, 0x00000000}},  //   _kvit, _ابدا, _chum_,\n  { {0xf7720025, 0x31cf0044, 0x00000000, 0x00000000}},  //   _راح_, _রাজশ,   ,\n  { {0x9416005f, 0x46a30088, 0x38cb0014, 0x00000000}},  //   _əgər_, _наяв, _جایی_,\n  { {0x29360049, 0x9c830e54, 0xab5b01a2, 0x00000000}},  //   מאַן_, ščij, nbür,\n  { {0x7ae400ca, 0xc5630783, 0xd1380036, 0x00000000}},  //   _ovit, _экск, _rząd_,\n  { {0x22453915, 0x7ae400ea, 0x934300e2, 0x00000000}},  //   _folk_, _nvit, _енте,\n  { {0x2903000c, 0x7bdd1b87, 0x00000000, 0x00000000}},  //   ytja_, wasu,   ,\n  { {0x7bdd022b, 0x25fd062e, 0x610a006b, 0x00000000}},  //   tasu, र्टी_, _fəla,\n  { {0x628a00b5, 0x2ca021a4, 0x00000000, 0x00000000}},  //   lofo, _chid_,   ,\n  { {0x3f67007c, 0xab872b20, 0x7ae401ed, 0x00000000}},  //   _лицо_, сунк, _cvit,\n  { {0x29033916, 0x09d90044, 0x7bdd03b6, 0x00000000}},  //   ttja_, _তাহা, sasu,\n  { {0x7bdd011c, 0x1958007e, 0x00000000, 0x00000000}},  //   pasu, бары_,   ,\n  { {0x29033917, 0x2ca03918, 0x4cf700b3, 0x00000000}},  //   rtja_, _ghid_, _הזהב_,\n  { {0x2903002b, 0x95d90517, 0x61e837d6, 0x00000000}},  // [cb30] stja_, идат_, _oddl,\n  { {0x249f008d, 0xceb300a0, 0x95d8007c, 0x00000000}},  //   _shum_, פיע_, йдут_,\n  { {0x7d0d0521, 0x628a0093, 0x69c50066, 0x00000000}},  //   _ćask, dofo, _ifhe,\n  { {0x3cfb007b, 0x25fd03d7, 0xd3710380, 0x00000000}},  //   רלאנ, र्जी_, وها_,\n  { {0x22450e9e, 0x60c80050, 0x92391ab7, 0x00000000}},  //   _polk_, _atdm, ичку_,\n  { {0x610a006b, 0xa4d5007e, 0xa22901ab, 0x00000000}},  //   _səla, _могі, ржка_,\n  { {0x22450343, 0x00000000, 0x00000000, 0x00000000}},  //   _volk_,   ,   ,\n  { {0xaec50088, 0x2245040f, 0x5058007e, 0x00000000}},  //   обил, _wolk_, йшыя_,\n  { {0x26060204, 0x628a0bc7, 0x224500ca, 0x00000000}},  //   स्वी_, bofo, _tolk_,\n  { {0x13de0044, 0x63ad0091, 0xfce502dc, 0x00000000}},  //   _ডায়, žans, оооо,\n  { {0xc5f2019b, 0x1d090331, 0xdca6012c, 0x00000000}},  //   ודי_, шени_, жани,\n  { {0x69c51dab, 0xb4fa00b3, 0x6e3c074d, 0x00000000}},  //   _afhe, ספרי, örbr,\n  { {0x12d70044, 0xcf2704b1, 0x00000000, 0x00000000}},  //   _সমুদ, _دراي,   ,\n  { {0x769000b0, 0x2fdf07a8, 0xfc3f004a, 0x00000000}},  //   näyt, laug_, rmía_,\n  { {0x81ab0044, 0xd826007c, 0x2ca00085, 0x00000000}},  //   কুর_, одви, _thid_,\n  { {0x6e230142, 0xab5b3919, 0x2fdf00e0, 0x00000000}},  //   _hanb, rbür, naug_,\n  { {0x6e232cab, 0x09d90044, 0x769000b0, 0x00000000}},  // [cb40] _kanb, _তারা, käyt,\n  { {0x7c24391a, 0x6e2301aa, 0x2fdf00ea, 0x00000000}},  //   _hair, _janb, haug_,\n  { {0x7c24143d, 0x6e230173, 0x628a087a, 0x00000000}},  //   _kair, _manb, vofo,\n  { {0x7c243890, 0x6e23391b, 0x7c2603a9, 0x00000000}},  //   _jair, _lanb, ndkr,\n  { {0x628a2c69, 0x7c242d2e, 0x2fdf391c, 0x00000000}},  //   tofo, _mair, daug_,\n  { {0x27e00149, 0xa9050014, 0x7aeb0030, 0x00000000}},  //   lain_, _ببین, _ægte,\n  { {0x628a0142, 0x61e80026, 0x12d70044, 0x00000000}},  //   rofo, _vddl, _সমৃদ,\n  { {0x6e23015c, 0x27e00016, 0x7c240020, 0x00000000}},  //   _aanb, nain_, _nair,\n  { {0x44241824, 0x6e230173, 0x81ab0055, 0x00000000}},  //   _iam_, _banb, কুল_,\n  { {0x44240018, 0x442602d5, 0x27e00051, 0x00000000}},  //   _ham_, ldo_, hain_,\n  { {0x4424008d, 0x7c2402d5, 0x27e0006a, 0x00000000}},  //   _kam_, _bair, kain_,\n  { {0x442620e4, 0x442407d7, 0x7c242a9b, 0x00000000}},  //   ndo_, _jam_, _cair,\n  { {0x44241191, 0x7c24005d, 0x44260211, 0x00000000}},  //   _mam_, _dair, ido_,\n  { {0x4424001d, 0x6442021e, 0xfe6f0025, 0x00000000}},  //   _lam_, hjoi, _لدى_,\n  { {0x44260763, 0x7c24032c, 0x27e0005b, 0x00000000}},  //   kdo_, _fair, fain_,\n  { {0x442400ad, 0x7c24391d, 0x27e00016, 0x00000000}},  //   _nam_, _gair, gain_,\n  { {0x4426018e, 0xf7700025, 0xb902006e, 0x00000000}},  // [cb50] ddo_, ناك_, _नौ_,\n  { {0x44260207, 0x44240145, 0xe6130025, 0x00000000}},  //   edo_, _aam_, بشر_,\n  { {0x9c830e54, 0x00000000, 0x00000000, 0x00000000}},  //   ščuj,   ,   ,\n  { {0x27e000f4, 0x4426007f, 0x660e0032, 0x00000000}},  //   cain_, gdo_, _ebbk,\n  { {0x083a0049, 0x769000b0, 0x883a00b3, 0x00000000}},  //   _הערל, täyt, _התרו,\n  { {0x44260977, 0xc244007e, 0x76ba009b, 0x00000000}},  //   ado_, мнік, _למשפ,\n  { {0x44240016, 0x44260196, 0x6e231bcb, 0x00000000}},  //   _fam_, bdo_, _ranb,\n  { {0x7cc1001e, 0x6e230263, 0x44240016, 0x00000000}},  //   _bērn, _sanb, _gam_,\n  { {0x610a006b, 0xdbd9000c, 0xd00e00a1, 0x00000000}},  //   _həll, væði, ھلی_,\n  { {0x44241338, 0x7c243544, 0x27e0002d, 0x00000000}},  //   _zam_, _sair, zain_,\n  { {0x7c24062a, 0xdbd9000c, 0x645b0116, 0x00000000}},  //   _pair, tæði, _klui,\n  { {0x160b007d, 0x6e23391e, 0x442412a2, 0x00000000}},  //   स्तर_, _wanb, _xam_,\n  { {0x7c241a2f, 0x6449049b, 0xdbd9009f, 0x00000000}},  //   _vair, _moei, ræði,\n  { {0x44260006, 0x27e03830, 0xd0190046, 0x00000000}},  //   zdo_, wain_, leń_,\n  { {0x7c24002a, 0x27e0391f, 0xd946003b, 0x00000000}},  //   _tair, tain_, чеви,\n  { {0x7c240051, 0xb3421a6f, 0x00000000, 0x00000000}},  //   _uair, şçil,   ,\n  { {0x27e00675, 0x44240011, 0x4426089f, 0x00000000}},  // [cb60] rain_, _ram_, vdo_,\n  { {0x177901fb, 0x27e00390, 0x44243920, 0x00000000}},  //   ість_, sain_, _sam_,\n  { {0x44240016, 0x644900bb, 0x27e037ad, 0x00000000}},  //   _pam_, _boei, pain_,\n  { {0x645b002a, 0x442600f4, 0x69de1237, 0x00000000}},  //   _clui, udo_, _hepe,\n  { {0x44260851, 0x64420f3c, 0x44242a86, 0x00000000}},  //   rdo_, rjoi, _vam_,\n  { {0xf788005f, 0x69de0065, 0x44240036, 0x00000000}},  //   _neçə_, _jepe, _wam_,\n  { {0x69de1f0f, 0x644901c3, 0x00000000, 0x00000000}},  //   _mepe, _foei,   ,\n  { {0xdb160047, 0x09b9001c, 0x64491f4b, 0x00000000}},  //   _egyé, _आल्य, _goei,\n  { {0x09e20055, 0xa411005a, 0x41b602dc, 0x00000000}},  //   _বানা, lığı_, _есет,\n  { {0x69de2e92, 0x7ae90091, 0x7e7a0190, 0x00000000}},  //   _nepe, šetk, untp,\n  { {0x38600149, 0xfbe10044, 0xcfdb0044, 0x00000000}},  //   khir_, _ভাবত, _ধারন,\n  { {0x6ab502f4, 0x00bb00b6, 0x09c50061, 0x00000000}},  //   ंद्र, _המאמ, वड्य,\n  { {0x7ae6001c, 0x69de01b5, 0x7ac7213f, 0x00000000}},  //   gskt, _bepe, ясне,\n  { {0x69de00f4, 0x1aef0044, 0xda7b04dd, 0x00000000}},  //   _cepe, _চঙদে_, сям_,\n  { {0xdd93007e, 0x00000000, 0x00000000, 0x00000000}},  //   _пашы,   ,   ,\n  { {0xa41101f6, 0x38600048, 0x00000000, 0x00000000}},  //   dığı_, ghir_,   ,\n  { {0xf7730137, 0x06b700a6, 0x64490112, 0x00000000}},  // [cb70] رار_, سناک_, _roei,\n  { {0x645b049b, 0x13d50183, 0x69de00bb, 0x00000000}},  //   _slui, दर्भ, _gepe,\n  { {0x645b00f4, 0x38600033, 0x8c200044, 0x00000000}},  //   _plui, bhir_, ধারন_,\n  { {0x38602587, 0x7bdf16b5, 0x69de1595, 0x00000000}},  //   chir_, _jequ, _zepe,\n  { {0x7bdf00d4, 0x69de004a, 0x6ab70066, 0x00000000}},  //   _mequ, _yepe, _kixf,\n  { {0x672d3921, 0x7bdf00f4, 0xc2930014, 0x00000000}},  //   mvaj, _lequ, ریاب,\n  { {0x672d1ae2, 0x64490082, 0xf4970014, 0x00000000}},  //   lvaj, _toei, _فشرد,\n  { {0x610a005f, 0x7bdf0288, 0x92f2014a, 0x00000000}},  //   _gəlm, _nequ, üğüm,\n  { {0x2d980d85, 0x63bb00e7, 0xd9ed0164, 0x00000000}},  //   üren_, _igun, _जयंत_,\n  { {0x6ab70066, 0x00000000, 0x00000000, 0x00000000}},  //   _nixf,   ,   ,\n  { {0x61e3011f, 0x7bdf3922, 0x1602006e, 0x00000000}},  //   manl, _bequ, र्टर_,\n  { {0x69de3923, 0x9ce7026c, 0x61e3005d, 0x00000000}},  //   _sepe, _ہوتے_, lanl,\n  { {0x69de0127, 0xe8e00011, 0x09e20044, 0x00000000}},  //   _pepe, _thịt_, _বাবা,\n  { {0x672d0059, 0x61e3014a, 0xeab200a1, 0x00000000}},  //   dvaj, nanl, ئٹس_,\n  { {0x9423006b, 0x38603924, 0x69de0023, 0x00000000}},  //   şvət_, thir_, _vepe,\n  { {0x6f090129, 0x63bb006a, 0x61e3006b, 0x00000000}},  //   otec, _ngun, hanl,\n  { {0x6f0902d5, 0x69de0065, 0x61e314d7, 0x00000000}},  // [cb80] ntec, _tepe, kanl,\n  { {0x63bb0169, 0x38600f3e, 0xa411014a, 0x00000000}},  //   _agun, shir_, tığı_,\n  { {0x0446008b, 0x61e30fae, 0x3860068d, 0x00000000}},  //   межн, danl, phir_,\n  { {0x6f09013e, 0x68fc010e, 0x1602013d, 0x00000000}},  //   ktec, murd, र्जर_,\n  { {0x672d012d, 0x61e301e5, 0x68fc3925, 0x00000000}},  //   cvaj, fanl, lurd,\n  { {0x63bb022b, 0x61e3014a, 0xf77300b3, 0x00000000}},  //   _egun, ganl, _יקר_,\n  { {0x200d0026, 0x68fc0477, 0xe8e00082, 0x00000000}},  //   ffei_, nurd, _kiốt_,\n  { {0xdfd00054, 0x2002006c, 0x00000000, 0x00000000}},  //   دية_, üki_,   ,\n  { {0x7bdf0038, 0x41cf0309, 0xa20602e9, 0x00000000}},  //   _requ, _स्वस, _опад,\n  { {0x3f98001e, 0x7bdf0e3e, 0x64ac0279, 0x00000000}},  //   āru_, _sequ, _eşit,\n  { {0x7bdf1cca, 0xab5b0279, 0x6f0904c4, 0x00000000}},  //   _pequ, rcüm, atec,\n  { {0x68fc018e, 0xfbad0044, 0x83fd0010, 0x00000000}},  //   durd, _ক্ষত, _előf,\n  { {0x92bc0044, 0x6f0901c5, 0x3a3a00e0, 0x00000000}},  //   _আবু_, ctec, _bnpp_,\n  { {0x8f9b009b, 0x00000000, 0x00000000, 0x00000000}},  //   _וידי,   ,   ,\n  { {0x19940265, 0x7bdf008e, 0x69c70065, 0x00000000}},  //   варя, _tequ, rcje,\n  { {0x61e3019a, 0x81ab0044, 0x00000000, 0x00000000}},  //   zanl, কুক_,   ,\n  { {0x61e3047f, 0x610a006b, 0xe894007c, 0x00000000}},  // [cb90] yanl, _bəlk, тать,\n  { {0x7afd3926, 0x68fc0032, 0x09d90044, 0x00000000}},  //   must, burd, _তাকা,\n  { {0x3de30055, 0xb8f40055, 0x61e3006b, 0x00000000}},  //   _মামল, _হয়_, vanl,\n  { {0x8c1c0049, 0x6f090036, 0x36d501ee, 0x00000000}},  //   ַווי, ytec, _помр,\n  { {0x61e31bed, 0x09e20044, 0x6f0900d2, 0x00000000}},  //   tanl, _বাতা, xtec,\n  { {0x78ad0006, 0x6f0900d9, 0x62720036, 0x00000000}},  //   lmav, vtec, słon,\n  { {0x61e30279, 0x7afd0004, 0x8557026c, 0x00000000}},  //   ranl, hust, _تیار_,\n  { {0x61e301f6, 0x63bb0089, 0x10a20f6f, 0x00000000}},  //   sanl, _ugun, лищн,\n  { {0xef163927, 0xe8110061, 0xc6220044, 0x00000000}},  //   емы_, ड्या_, নারা_,\n  { {0x6f090198, 0x61e3005f, 0x68fc0279, 0x00000000}},  //   rtec, qanl, yurd,\n  { {0x6f0900b9, 0xc692009b, 0x61e10026, 0x00000000}},  //   stec, ראי_, _iell,\n  { {0x61e100eb, 0x6459002b, 0x68fc01e3, 0x00000000}},  //   _hell, nkwi, vurd,\n  { {0x61e10004, 0x200a006b, 0x60c13928, 0x00000000}},  //   _kell, əbi_, _hulm,\n  { {0x61e10047, 0x60c100b0, 0x3e6001aa, 0x00000000}},  //   _jell, _kulm, _pòte_,\n  { {0xdb1d0010, 0x60c11a17, 0x7afd007f, 0x00000000}},  //   rcsá, _julm, aust,\n  { {0x7afd006c, 0xfbda0055, 0x61e13929, 0x00000000}},  //   bust, _থাকত, _lell,\n  { {0xa5da0025, 0xdb1d0010, 0x00000000, 0x00000000}},  // [cba0] كبار_, pcsá,   ,\n  { {0x61e10198, 0xa926008b, 0x78ad0197, 0x00000000}},  //   _nell, _здол, amav,\n  { {0x89db00b3, 0xc7af009e, 0xc6220044, 0x00000000}},  //   _מחיי, لّہ_, নালা_,\n  { {0x5ed50044, 0x00000000, 0x00000000, 0x00000000}},  //   _দিনে,   ,   ,\n  { {0xe29a00ed, 0x61e1051b, 0xd25901c5, 0x00000000}},  //   пад_, _bell, _suņa_,\n  { {0x61e10472, 0x60c1014a, 0x6726182f, 0x00000000}},  //   _cell, _bulm, _iskj,\n  { {0x61e105d3, 0x26c2000b, 0x60c1001a, 0x00000000}},  //   _dell, _huko_, _culm,\n  { {0x26c20a65, 0x64590b77, 0x60c1392a, 0x00000000}},  //   _kuko_, ckwi, _dulm,\n  { {0x61e1392b, 0x764e23d9, 0x610a013f, 0x00000000}},  //   _fell, _koby, _məli,\n  { {0x61e1018e, 0x3eb80039, 0x7afd0368, 0x00000000}},  //   _gell, ört_, vust,\n  { {0x2d9805b7, 0x7afd01b5, 0x60c10c2c, 0x00000000}},  //   ære_, wust, _gulm,\n  { {0x7afd08b2, 0x61e1010f, 0x7863010e, 0x00000000}},  //   tust, _zell, _kõve,\n  { {0x26c20061, 0x61e100ab, 0x291e014a, 0x00000000}},  //   _nuko_, _yell, çtan_,\n  { {0x7afd021e, 0x61e101d5, 0x764e011c, 0x00000000}},  //   rust, _xell, _noby,\n  { {0x7afd0004, 0x19950401, 0x26c20058, 0x00000000}},  //   sust, тавя, _auko_,\n  { {0x26c200e0, 0xbca50380, 0x610a006b, 0x00000000}},  //   _buko_, _جمعي, _cəli,\n  { {0x78ad0993, 0x610a006b, 0x7afd006b, 0x00000000}},  // [cbb0] rmav, _dəli, qust,\n  { {0xb8f70044, 0x4b7c009b, 0x26cf0089, 0x00000000}},  //   _সি_, _מאחו, īgo_,\n  { {0x61e1392c, 0x7aed392d, 0x2ca900d9, 0x00000000}},  //   _rell, _hvat, _khad_,\n  { {0x610a005f, 0x43751123, 0x61e10114, 0x00000000}},  //   _gəli, култ, _sell,\n  { {0x60c10065, 0x645900b5, 0x44290027, 0x00000000}},  //   _sulm, rkwi, ľa_,\n  { {0x4429264e, 0x60c1006c, 0x61e10065, 0x00000000}},  //   ža_, _pulm, _qell,\n  { {0x26c201ee, 0x63730010, 0x00000000, 0x00000000}},  //   _zuko_, _bűnö,   ,\n  { {0x26c20020, 0x7aed00b0, 0x9f5f392e, 0x00000000}},  //   _yuko_, _ovat, lgué_,\n  { {0x61e1218f, 0x09e20055, 0xef1901fb, 0x00000000}},  //   _tell, _বাসা, ємо_,\n  { {0x9f5f0115, 0x2ca921e6, 0x00000000, 0x00000000}},  //   ngué_, _ahad_,   ,\n  { {0x42360049, 0x7aed0114, 0x00000000, 0x00000000}},  //   _שנעל_, _avat,   ,\n  { {0xed5601fb, 0x91fc0089, 0x2ca903ef, 0x00000000}},  //   тою_, _glāb, _chad_,\n  { {0x6e2a0026, 0x7aed016e, 0x00000000, 0x00000000}},  //   _fafb, _cvat,   ,\n  { {0x26c20093, 0x7aed2267, 0x610a006b, 0x00000000}},  //   _ruko_, _dvat, _səli,\n  { {0xfbe10055, 0x764e02e7, 0x09b50044, 0x00000000}},  //   _ভারত, _roby, _জ্বা,\n  { {0x2ca9002b, 0x764e0058, 0x00000000, 0x00000000}},  //   _ghad_, _soby,   ,\n  { {0x764e067f, 0xd70a007e, 0x7aed0ecf, 0x00000000}},  // [cbc0] _poby, ьнае_, _gvat,\n  { {0x787b021e, 0x7ae901d5, 0xd099006b, 0x00000000}},  //   tävä, ġett, rçən,\n  { {0x610a006b, 0x7aed0091, 0x09f7009b, 0x00000000}},  //   _təli, _zvat, _במים_,\n  { {0x26c20020, 0x97da0025, 0x00000000, 0x00000000}},  //   _tuko_, _تبدأ_,   ,\n  { {0x27fd0036, 0x7783005e, 0x00000000, 0x00000000}},  //   ówne_, _вляз,   ,\n  { {0x672400d9, 0x291a01a3, 0x98b8007f, 0x00000000}},  //   mwij, _kppa_, tyrė_,\n  { {0x672400bb, 0x9f44004a, 0x00000000, 0x00000000}},  //   lwij, mamé_,   ,\n  { {0xc95300b6, 0x628f0d7b, 0x83fd0010, 0x00000000}},  //   שמה_, _ícon, _előb,\n  { {0xa491007a, 0xb226017a, 0x2ca9018e, 0x00000000}},  //   _اینت, _имал, _rhad_,\n  { {0x291a0082, 0x00000000, 0x00000000, 0x00000000}},  //   _oppa_,   ,   ,\n  { {0x7aed091d, 0x7d0a001c, 0x2ca90145, 0x00000000}},  //   _svat, _qqfs, _phad_,\n  { {0x672400bb, 0x00000000, 0x00000000, 0x00000000}},  //   kwij,   ,   ,\n  { {0x291a00d4, 0xfe6f00a2, 0x00000000, 0x00000000}},  //   _appa_, صدی_,   ,\n  { {0xc3330104, 0x672400bb, 0x25fe0316, 0x00000000}},  //   בוש_, dwij, _लागी_,\n  { {0x2ca922af, 0x00000000, 0x00000000, 0x00000000}},  //   _thad_,   ,   ,\n  { {0x1d07012b, 0x9c7d0006, 0x291a000a, 0x00000000}},  //   _рећи_, ksči, _dppa_,\n  { {0x672432fd, 0xec380049, 0x2d9c392f, 0x00000000}},  // [cbd0] gwij, _יאהר_, _hyve_,\n  { {0x7c2f012d, 0x7cc10089, 0x07080379, 0x00000000}},  //   ldcr, _sēri, ئيلي_,\n  { {0x7c2d2e34, 0x9f5f0249, 0x98b902dc, 0x00000000}},  //   _kaar, rgué_, _плот_,\n  { {0x7c2d01b5, 0x00000000, 0x00000000, 0x00000000}},  //   _jaar,   ,   ,\n  { {0x610a005f, 0x27e9021e, 0x81e70044, 0x00000000}},  //   _məlu, maan_, _ভাব_,\n  { {0xdd860025, 0x27e9272e, 0x7c2d015b, 0x00000000}},  //   _هو_, laan_, _laar,\n  { {0xc69200b6, 0xa5f8003b, 0x78bd0010, 0x00000000}},  //   _האם_, _јесу_, _kisv,\n  { {0x27e9033b, 0x7c2d178a, 0x349516b6, 0x00000000}},  //   naan_, _naar, _сабр,\n  { {0xdd2e00b9, 0x78bd130e, 0xe3b30318, 0x00000000}},  //   měře, _misv, _ضرر_,\n  { {0x27e90390, 0x8352026c, 0x442d021e, 0x00000000}},  //   haan_, _دھما, _hae_,\n  { {0x27e93930, 0x2f0b0030, 0x443f0066, 0x00000000}},  //   kaan_, søg_, _knu_,\n  { {0x27e90127, 0x442d0082, 0x78bd00ca, 0x00000000}},  //   jaan_, _jae_, _nisv,\n  { {0x442d0bc4, 0x7c2d0100, 0x443f3931, 0x00000000}},  //   _mae_, _daar, _mnu_,\n  { {0x7c2f0061, 0x442d3932, 0x62833933, 0x00000000}},  //   adcr, _lae_, nnno,\n  { {0x443f038c, 0xa96a01f9, 0xfe7000a2, 0x00000000}},  //   _onu_, хива_, _بدن_,\n  { {0x27e91cd3, 0x7c2d0056, 0x442d1423, 0x00000000}},  //   gaan_, _gaar, _nae_,\n  { {0x98a30264, 0x78bd0026, 0x7ae90142, 0x00000000}},  // [cbe0] сите, _disv, šetr,\n  { {0x672402ae, 0x443f011c, 0x3a26007c, 0x00000000}},  //   rwij, _anu_, _смог,\n  { {0x69dc3247, 0x442d0016, 0x27e90d56, 0x00000000}},  //   mbre, _bae_, baan_,\n  { {0x69dc0030, 0x442d04bf, 0xe4d702fd, 0x00000000}},  //   lbre, _cae_, اونت_,\n  { {0x442d0343, 0x68e30018, 0xcec80011, 0x00000000}},  //   _dae_, _ændr, _mộc_,\n  { {0x69dc07eb, 0x115401e0, 0xcec80011, 0x00000000}},  //   nbre, иклю, _lộc_,\n  { {0x6e210002, 0x442d005b, 0xc0e301fc, 0x00000000}},  //   delb, _fae_, бојк,\n  { {0x6283018e, 0x7863006c, 0x2ef401ee, 0x00000000}},  //   anno, _kõva, азир,\n  { {0xd46701f9, 0x64403934, 0xa857009b, 0x00000000}},  //   _сите_, _inmi, טיקה_,\n  { {0x7c2d3935, 0x6e2119cf, 0x5c140044, 0x00000000}},  //   _saar, gelb, িযোগ_,\n  { {0x7c2d017d, 0x27e9033b, 0xf8b40061, 0x00000000}},  //   _paar, yaan_, ंगाय,\n  { {0x61ea000c, 0xdee6013b, 0x4c95013b, 0x00000000}},  //   lafl, _боди, римс,\n  { {0x7c2d0dde, 0x27e900b0, 0x78bd0197, 0x00000000}},  //   _vaar, vaan_, _risv,\n  { {0x7c2d049b, 0x27e90fe7, 0x69dc0007, 0x00000000}},  //   _waar, waan_, gbre,\n  { {0x27e9021e, 0x7c2d000b, 0x644000c7, 0x00000000}},  //   taan_, _taar, _onmi,\n  { {0x20ca0011, 0x69dc0851, 0x765e01c3, 0x00000000}},  //   _mùi_, abre, ekpy,\n  { {0x27e9027c, 0x6283010b, 0x6d5a0047, 0x00000000}},  // [cbf0] raan_, ynno, lyta,\n  { {0x27e90127, 0x64400c10, 0x443f0091, 0x00000000}},  //   saan_, _anmi, _snu_,\n  { {0x7bcf0207, 0x6d5a0010, 0x27e918ec, 0x00000000}},  //   occu, nyta, paan_,\n  { {0x7afd0036, 0x62880059, 0xd0060025, 0x00000000}},  //   orst, _ajdo, _ظل_,\n  { {0x290300b0, 0x38690051, 0x2911022b, 0x00000000}},  //   luja_, mhar_, ltza_,\n  { {0x261403d7, 0x386902d5, 0x64403936, 0x00000000}},  //   न्दी_, lhar_, _enmi,\n  { {0x29110756, 0x2903166f, 0x442d0ba7, 0x00000000}},  //   ntza_, nuja_, _tae_,\n  { {0x3869357c, 0x2911022b, 0x443f0a29, 0x00000000}},  //   nhar_, itza_, _unu_,\n  { {0xf8bf0211, 0x69dc0026, 0xaec207d0, 0x00000000}},  //   _mié_, ybre, обыл,\n  { {0x63a9022b, 0xee36105c, 0x29033937, 0x00000000}},  //   _izen, ань_, kuja_,\n  { {0xc05b01fb, 0x4c86003b, 0x6da50594, 0x00000000}},  //   _під_, илов, рина,\n  { {0x6e21010f, 0xf8bf0dce, 0x814c0049, 0x00000000}},  //   selb, _nié_, _רעאַ,\n  { {0x69dc0250, 0xdee5012b, 0x610a006b, 0x00000000}},  //   tbre, _толи, _fəls,\n  { {0x6d5a3938, 0x610a006b, 0x20d10066, 0x00000000}},  //   byta, _təlt, _iġib_,\n  { {0xdca60057, 0x69dc010f, 0xcec80011, 0x00000000}},  //   _каки, rbre, _tộc_,\n  { {0xad1a009b, 0x69dc1177, 0x8cca0309, 0x00000000}},  //   _יוצר, sbre, _संतो,\n\n  { {0x27fd0046, 0xf8bf0343, 0xf77f153d, 0x00000000}},  // [cc00] ówna_, _dié_, _peça_,\n  { {0x29033939, 0x7df3007d, 0xfc3f00f6, 0x00000000}},  //   buja_, _आयोग_, bmís_,\n  { {0x3869002a, 0xd94600aa, 0x63a90032, 0x00000000}},  //   bhar_, _тени, _azen,\n  { {0x3869049a, 0x1d16007b, 0x20ca0011, 0x00000000}},  //   char_, יקער_, _rùi_,\n  { {0x61ea000c, 0xcfe90044, 0x3860013f, 0x00000000}},  //   tafl, _গাঢ়_, mkir_,\n  { {0x64580036, 0x7ae40020, 0x63a901c5, 0x00000000}},  //   _ścią, _mwit, _dzen,\n  { {0x61ea005f, 0x361b0049, 0x63a90e0c, 0x00000000}},  //   rafl, _שולד, _ezen,\n  { {0x14d7019b, 0x64402af8, 0x38600022, 0x00000000}},  //   _כולל_, _unmi, nkir_,\n  { {0x7e7a001c, 0x2486049c, 0xd9e60204, 0x00000000}},  //   titp, mnom_, करात_,\n  { {0x7afd0059, 0x3869393a, 0x24860466, 0x00000000}},  //   vrst, zhar_, lnom_,\n  { {0x62980142, 0x160b007d, 0x63a00253, 0x00000000}},  //   movo, स्टर_, _hymn,\n  { {0x62980209, 0x290300b0, 0x2486393b, 0x00000000}},  //   lovo, vuja_, nnom_,\n  { {0x2011005f, 0x2486393c, 0x7afd0112, 0x00000000}},  //   əzi_, inom_, urst,\n  { {0x6d5a0036, 0xda7b004c, 0xaa64025f, 0x00000000}},  //   pyta, тям_, отск,\n  { {0x61e8256b, 0x3869002a, 0x07e70e82, 0x00000000}},  //   _medl, thar_, ицам,\n  { {0x629809fc, 0x7cc1001e, 0x24860b54, 0x00000000}},  //   hovo, _vērt, jnom_,\n  { {0x248609fc, 0xab5b005f, 0x395f0089, 0x00000000}},  // [cc10] dnom_, rcüs, ņus_,\n  { {0x1a65026c, 0x61e805fe, 0x290300b0, 0x00000000}},  //   _ایسی_, _nedl, puja_,\n  { {0x63a9393d, 0x629801d9, 0x91fc001e, 0x00000000}},  //   _szen, dovo, _plān,\n  { {0xef1f011f, 0x24860c56, 0x83fd0010, 0x00000000}},  //   çük_, gnom_, _előn,\n  { {0x2614001c, 0x8c380049, 0x28c0006e, 0x00000000}},  //   न्ही_, יטאס_, _शूटि,\n  { {0x62980de0, 0x5ed50044, 0x95cb003b, 0x00000000}},  //   govo, _দিলে, _шума_,\n  { {0x2486393e, 0x25a50010, 0x61e8012d, 0x00000000}},  //   bnom_, _áll_, _dedl,\n  { {0x2486393f, 0x6add0044, 0x00000000, 0x00000000}},  //   cnom_, _বিনো,   ,\n  { {0x629801ca, 0x63a9013e, 0x7cd30035, 0x00000000}},  //   bovo, _uzen, _măre,\n  { {0x69c525da, 0x765501aa, 0x5e4902e9, 0x00000000}},  //   _nghe, _jozy, упом_,\n  { {0x7ae400ab, 0xfaff0023, 0x00000000, 0x00000000}},  //   _swit, erë_,   ,\n  { {0x69c500e5, 0x00000000, 0x00000000, 0x00000000}},  //   _aghe,   ,   ,\n  { {0x2fdf0022, 0x408600a1, 0x00000000, 0x00000000}},  //   mbug_, _دھوپ_,   ,\n  { {0x24860091, 0xfbd8007d, 0x00000000, 0x00000000}},  //   znom_, _भ्रम,   ,\n  { {0xa96700e3, 0x291e0129, 0x7cc10089, 0x00000000}},  //   бира_, ïta_, _vērs,\n  { {0x7cd3001a, 0x00000000, 0x00000000, 0x00000000}},  //   _căre,   ,   ,\n  { {0x24863940, 0x38603941, 0xe7aa0893, 0x00000000}},  // [cc20] vnom_, rkir_, увал_,\n  { {0x9a2a007c, 0x1a060a1e, 0x3860000c, 0x00000000}},  //   _сооб_, _упом, skir_,\n  { {0x24860466, 0xd9100123, 0x629804c8, 0x00000000}},  //   tnom_, _تیز_, vovo,\n  { {0x61e83942, 0xd49901fb, 0x248600e0, 0x00000000}},  //   _sedl, арі_, unom_,\n  { {0x62980161, 0xa3c903d7, 0x27e00065, 0x00000000}},  //   tovo, ोड़_, mbin_,\n  { {0x78a4006c, 0x24862f38, 0x27e0152b, 0x00000000}},  //   lliv, snom_, lbin_,\n  { {0x61e83943, 0x64a6007e, 0x867b0049, 0x00000000}},  //   _vedl, _гава, _ערלו,\n  { {0x74160084, 0x61e80fb6, 0x78a40161, 0x00000000}},  //   _دورا, _wedl, nliv,\n  { {0x33660099, 0x6298040d, 0x7c2605d5, 0x00000000}},  //   _уваг, povo, dekr,\n  { {0x44263944, 0x2baf013d, 0x78a40161, 0x00000000}},  //   leo_, _घरबा, hliv,\n  { {0xe0da045e, 0x78a40062, 0x00000000, 0x00000000}},  //   _све_, kliv,   ,\n  { {0x4426000b, 0x7c261267, 0x7cd3001a, 0x00000000}},  //   neo_, gekr, _bărb,\n  { {0x78a404bb, 0x501b009b, 0xd2590089, 0x00000000}},  //   dliv, _תודו, _suņi_,\n  { {0xfaff008d, 0x60c23945, 0x27ed01dc, 0x00000000}},  //   rrë_, _hiom, _žen_,\n  { {0x4426000b, 0xe731006b, 0x7cd3001a, 0x00000000}},  //   keo_, _köçü, _păre,\n  { {0xc7d9060e, 0x44261a71, 0x78a40635, 0x00000000}},  //   рмах_, jeo_, gliv,\n  { {0x76550046, 0x00000000, 0x00000000, 0x00000000}},  // [cc30] _pozy,   ,   ,\n  { {0x60c20048, 0x9f5f00c4, 0xc98702dc, 0x00000000}},  //   _liom, nguá_, _гуми,\n  { {0x81e708b7, 0x44260e32, 0x27e0013f, 0x00000000}},  //   _ভাল_, feo_, bbin_,\n  { {0x44260197, 0x24190147, 0xcec80011, 0x00000000}},  //   geo_, роды_, _rộn_,\n  { {0x7eaf0056, 0x00000000, 0x00000000, 0x00000000}},  //   løpe,   ,   ,\n  { {0x7c261072, 0x672f0243, 0x00000000, 0x00000000}},  //   zekr, _iscj,   ,\n  { {0x4426262d, 0x7cd30035, 0xa3d50088, 0x00000000}},  //   beo_, _mărc, _мовч,\n  { {0x26c30211, 0x60c2112d, 0x26cb016c, 0x00000000}},  //   _hijo_, _ciom, _kuco_,\n  { {0x5347019d, 0x60c23946, 0x248d0022, 0x00000000}},  //   _ухва, _diom, _ijem_,\n  { {0x248d01e3, 0x26cb2f43, 0x8cca0309, 0x00000000}},  //   _hjem_, _muco_, _संशो,\n  { {0x7cd3001a, 0x248d0292, 0xf3f9001a, 0x00000000}},  //   _sărb, _kjem_, _alţi_,\n  { {0x26d908d1, 0x8c46003b, 0x753601ce, 0x00000000}},  //   _otso_, цеме, קארד_,\n  { {0x09c50044, 0x7c261929, 0xeb97004d, 0x00000000}},  //   ্রনা, rekr, жия_,\n  { {0xfce50113, 0x7fb60076, 0x7c260695, 0x00000000}},  //   _доко, _ظهور_, sekr,\n  { {0x78a40428, 0x442600e0, 0x9f44004a, 0x00000000}},  //   tliv, yeo_, mamá_,\n  { {0x26cb0197, 0x248d3947, 0x4426008e, 0x00000000}},  //   _buco_, _njem_, xeo_,\n  { {0x4426037e, 0x07a32cb4, 0x27e0013f, 0x00000000}},  // [cc40] veo_, датн, rbin_,\n  { {0x9f442bc9, 0x27e00022, 0x26cb0022, 0x00000000}},  //   namá_, sbin_, _duco_,\n  { {0x26c30219, 0x44260207, 0x78b60068, 0x00000000}},  //   _dijo_, teo_, pmyv,\n  { {0xf74601bd, 0xa5da006e, 0x14170025, 0x00000000}},  //   _демо, _प्रौ, قيمة_,\n  { {0x44260555, 0x26c30211, 0x248d0065, 0x00000000}},  //   reo_, _fijo_, _djem_,\n  { {0x4426002a, 0x366a008b, 0x60c20124, 0x00000000}},  //   seo_, _таго_, _siom,\n  { {0x4426003b, 0x60c20197, 0x26cb00f6, 0x00000000}},  //   peo_, _piom, _zuco_,\n  { {0x3ea50039, 0x65630030, 0x9f540088, 0x00000000}},  //   ellt_, ønhe, звич,\n  { {0xf8b301f8, 0xddc80790, 0xc47700a1, 0x00000000}},  //   ושה_, ridž, _بینچ_,\n  { {0xb5e80044, 0xbbe30164, 0xddc8007f, 0x00000000}},  //   _পাঁচ, पर्क, sidž,\n  { {0x60c2002a, 0xa06a3948, 0x200f0061, 0x00000000}},  //   _tiom, _кажа_, _fcgi_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x09e20055, 0x628a0606, 0x00000000, 0x00000000}},  //   _বাজা, onfo,   ,\n  { {0x32d00011, 0x628a0056, 0x00000000, 0x00000000}},  //   _mày_, nnfo,   ,\n  { {0x628a0056, 0x6e2801ee, 0x26cb00c4, 0x00000000}},  //   info, medb, _suco_,\n  { {0x2c050061, 0x81ac0044, 0x00000000, 0x00000000}},  //   _वाटू_, _গলা_,   ,\n  { {0x32d000ad, 0x7d080190, 0x96eb01ab, 0x00000000}},  // [cc50] _này_, luds, рьба_,\n  { {0x249f07c4, 0x213e0333, 0xcec80082, 0x00000000}},  //   _skum_, _orth_, _nộm_,\n  { {0x5fca0061, 0x27eb0a15, 0x7d080190, 0x00000000}},  //   ाखाल, _tecn_, nuds,\n  { {0x81e70055, 0x32d00011, 0x69d500b4, 0x00000000}},  //   _ভাই_, _bày_, lcze,\n  { {0x4c3c007b, 0x3ea53949, 0x9327023c, 0x00000000}},  //   יגאצ, yllt_, تران,\n  { {0x32d00011, 0x99910010, 0x200f0009, 0x00000000}},  //   _dày_, lező_, _scgi_,\n  { {0x82340054, 0xd24e0025, 0x00000000, 0x00000000}},  //   برنا, انى_,   ,\n  { {0x09e20044, 0x11280088, 0x00000000, 0x00000000}},  //   _বাছা, юючи_,   ,\n  { {0xd2590089, 0x2cb2005b, 0x00000000, 0x00000000}},  //   _suņu_, _rhyd_,   ,\n  { {0x2ca00875, 0x313501e1, 0x3264005e, 0x00000000}},  //   _skid_, _незр, _отхв,\n  { {0xcb0900b6, 0xdca61023, 0x69d50036, 0x00000000}},  //   _תל_, зани, dcze,\n  { {0x69d50046, 0xfaff0023, 0x672d394a, 0x00000000}},  //   ecze, jzës_, kwaj,\n  { {0x705201b7, 0x20d10011, 0x5ed50044, 0x00000000}},  //   _سنوا, _hái_, _দিকে,\n  { {0x09e20055, 0x7d0828e0, 0xcd2800a6, 0x00000000}},  //   _বাঙা, buds, حسین_,\n  { {0xd94300aa, 0x6f090009, 0x6da20918, 0x00000000}},  //   нери, luec, _пиша,\n  { {0x20d10011, 0x786a06b8, 0xfc3f16b8, 0x00000000}},  //   _mái_, _býva, llín_,\n  { {0x3e6001aa, 0x20d10011, 0x29030059, 0x00000000}},  // [cc60] _sòti_, _lái_, arja_,\n  { {0x7c36014a, 0x20d10082, 0x00000000, 0x00000000}},  //   _hayr, _oái_,   ,\n  { {0x4a5b009b, 0xfc3f0051, 0x20d11392, 0x00000000}},  //   _הדיו, ilín_, _nái_,\n  { {0xc20e013d, 0x136a0088, 0x00000000, 0x00000000}},  //   _साहब_, йшли_,   ,\n  { {0x7c36006a, 0x1b1a0044, 0x290a20b9, 0x00000000}},  //   _mayr, দিকে_, luba_,\n  { {0x20d10011, 0x27f2028e, 0x628a00dc, 0x00000000}},  //   _bái_, layn_, unfo,\n  { {0x20d1001d, 0x6e28394b, 0x628a01a2, 0x00000000}},  //   _cái_, vedb, rnfo,\n  { {0x7d0801d2, 0x69d50036, 0x64a30088, 0x00000000}},  //   vuds, zcze, _заса,\n  { {0x213e018e, 0x69d50036, 0x6f09004a, 0x00000000}},  //   _wrth_, ycze, guec,\n  { {0x29180006, 0x290a0020, 0x20d1000c, 0x00000000}},  //   ktra_, kuba_, _fái_,\n  { {0x7c36038c, 0x20d1001d, 0x6e281adc, 0x00000000}},  //   _bayr, _gái_, redb,\n  { {0x7d080737, 0x672d0036, 0x6e2800ca, 0x00000000}},  //   ruds, ywaj, sedb,\n  { {0xfc3f06c2, 0xe8e00082, 0x6e46007e, 0x00000000}},  //   blín_, _thớt_, _недз,\n  { {0xfe6f0025, 0x7c3601d6, 0x290a0045, 0x00000000}},  //   _مدى_, _eayr, fuba_,\n  { {0x8bec0044, 0x69d51072, 0x290a394c, 0x00000000}},  //   _কারন_, rcze, guba_,\n  { {0x29030065, 0x7c36014a, 0x672d394d, 0x00000000}},  //   rrja_, _gayr, twaj,\n  { {0x29180555, 0xcc34006d, 0x7bc02270, 0x00000000}},  // [cc70] atra_, _سريع, žmur,\n  { {0x672d05cd, 0x00000000, 0x00000000, 0x00000000}},  //   rwaj,   ,   ,\n  { {0x290a02e2, 0x291805ac, 0x27f200e0, 0x00000000}},  //   cuba_, ctra_, bayn_,\n  { {0x09c50044, 0x00000000, 0x00000000, 0x00000000}},  //   ্রদা,   ,   ,\n  { {0x9f590279, 0xe3b00380, 0x00000000, 0x00000000}},  //   üsü_, هره_,   ,\n  { {0xa021014a, 0x3f98026d, 0x200201e5, 0x00000000}},  //   _çöze, ğrul_, ókin_,\n  { {0xe1f00076, 0x6594004c, 0xd12e0379, 0x00000000}},  //   اسه_, _зару, لمو_,\n  { {0x427700a2, 0x333f0066, 0x15eb0061, 0x00000000}},  //   _کارآ, _trux_, टरवर_,\n  { {0x290a0009, 0x200d010e, 0x7cd30035, 0x00000000}},  //   zuba_, rgei_, _cărn,\n  { {0x4d650245, 0x20d10011, 0xddc3001a, 0x00000000}},  //   дков, _tái_, _conş,\n  { {0x90e7007a, 0xfc3f0051, 0x291828fa, 0x00000000}},  //   _رسان, rlín_, xtra_,\n  { {0x645b00f4, 0xff510241, 0x25b100d9, 0x00000000}},  //   _joui, _لخت_, _mzzl_,\n  { {0x20180163, 0x6f09394e, 0x25aa0164, 0x00000000}},  //   əri_, quec, _कर्ण,\n  { {0x290a0bd5, 0x291800f4, 0xc33201ce, 0x00000000}},  //   tuba_, ttra_, דוך_,\n  { {0x644900c7, 0xb86600a1, 0x485a007e, 0x00000000}},  //   _onei, وارو, ораў_,\n  { {0x290a01ca, 0x6add0044, 0x7c95007e, 0x00000000}},  //   ruba_, _বিরো, _прыц,\n  { {0x291816a3, 0x628300b0, 0x2b4000ca, 0x00000000}},  // [cc80] stra_, kino, _uric_,\n  { {0x461a007e, 0x6283049c, 0x64490e42, 0x00000000}},  //   ўцаў_, jino, _anei,\n  { {0x6283018e, 0x645b00f4, 0x00000000, 0x00000000}},  //   dino, _boui,   ,\n  { {0x81e70044, 0x645b009d, 0xed560049, 0x00000000}},  //   _ভাগ_, _coui, ובער_,\n  { {0x93cb00a1, 0x62830387, 0x645b009d, 0x00000000}},  //   زانہ_, fino, _doui,\n  { {0xfe670014, 0x6449005b, 0x21250022, 0x00000000}},  //   _شد_, _enei, _bplh_,\n  { {0xe5a60216, 0x65c3008b, 0x645b009d, 0x00000000}},  //   _циви, _абра, _foui,\n  { {0xcec800ad, 0x6b9600ab, 0x644901e5, 0x00000000}},  //   _hội_, _oxyg, _gnei,\n  { {0x62830142, 0x09b50044, 0xd426006b, 0x00000000}},  //   bino, _জ্ঞা, ışdı_,\n  { {0xddc3006b, 0x7cd3001a, 0x5d5427f3, 0x00000000}},  //   _qonş, _căro, екот,\n  { {0x645b00e0, 0x765c005b, 0x00000000, 0x00000000}},  //   _youi, _mory,   ,\n  { {0x765c394f, 0xcec80082, 0x00000000, 0x00000000}},  //   _lory, _lội_,   ,\n  { {0xa6db000c, 0x765c01c3, 0x2bc802dc, 0x00000000}},  //   _orða, _oory, дуро_,\n  { {0x995800b9, 0xb06103b6, 0x28a7013d, 0x00000000}},  //   láře_, _ääre, _कीजि,\n  { {0xcec800ad, 0xf77300a1, 0x787100ea, 0x00000000}},  //   _nội_, ھار_, _låve,\n  { {0x6283022b, 0x995800b9, 0x6e383950, 0x00000000}},  //   zino, náře_, _havb,\n  { {0xb8d6024c, 0x7bcd001e, 0x645b009d, 0x00000000}},  // [cc90] _ची_, _igau, _roui,\n  { {0xb9050055, 0x644919cb, 0xcec80011, 0x00000000}},  //   _নি_, _snei, _bội_,\n  { {0xd49b00ed, 0xcec80082, 0x645b009d, 0x00000000}},  //   орд_, _cội_, _poui,\n  { {0x05df02d2, 0xd5df007d, 0xcec80082, 0x00000000}},  //   _प्रब, _प्रज, _dội_,\n  { {0xe8df001d, 0x765c000c, 0xb7da0104, 0x00000000}},  //   _khỏe_, _fory, _מקרי,\n  { {0x6e380061, 0x7aed0ed7, 0x38690a46, 0x00000000}},  //   _navb, _mwat, lkar_,\n  { {0x442b00d6, 0x23690e3b, 0x610a006b, 0x00000000}},  //   _ºc_, šaj_, _zəlz,\n  { {0x386902e1, 0x64493951, 0x442b0011, 0x00000000}},  //   nkar_, _unei, _úc_,\n  { {0x62830161, 0x7f42009d, 0x38690fdc, 0x00000000}},  //   pino, _croq, ikar_,\n  { {0x7bcd00d4, 0x38691a6f, 0x00000000, 0x00000000}},  //   _agau, hkar_,   ,\n  { {0xd011025a, 0x38693952, 0x7aed00e7, 0x00000000}},  //   _ملا_, kkar_, _awat,\n  { {0xeb9a0e75, 0x7aed0a5f, 0x3e690027, 0x00000000}},  //   зим_, _bwat, _túto_,\n  { {0x386900f8, 0xbf670380, 0x661500b4, 0x00000000}},  //   dkar_, _تداو, _oczk,\n  { {0x4279007b, 0x7aed0173, 0x386901c3, 0x00000000}},  //   לאָג, _dwat, ekar_,\n  { {0xae78008b, 0x48b60f6f, 0xd82600aa, 0x00000000}},  //   _ўсіх_, ещат, ндви,\n  { {0x786a0428, 0x63a9008e, 0xddca000a, 0x00000000}},  //   _vývo, _oyen, _anfň,\n  { {0x7c242ac7, 0x7aed3953, 0x63a90020, 0x00000000}},  // [cca0] _ibir, _gwat, _nyen,\n  { {0xba76007a, 0xdb9b00b3, 0x00000000, 0x00000000}},  //   _ساخت, _מספר,   ,\n  { {0x387201d6, 0x7c2401d5, 0x78710737, 0x00000000}},  //   phyr_, _kbir, _såve,\n  { {0x38690073, 0x66e60072, 0x787101c9, 0x00000000}},  //   ckar_, _пома, _påve,\n  { {0x7cc20089, 0x3e72009d, 0x3a3a141a, 0x00000000}},  //   _bērz, _hâte_, _kapp_,\n  { {0xcec80011, 0x63a909d7, 0x3a3a00f8, 0x00000000}},  //   _tội_, _dyen, _japp_,\n  { {0xfd07035b, 0x3a3a00f8, 0x7c240087, 0x00000000}},  //   _حج_, _mapp_, _obir,\n  { {0x7f42005f, 0x63a93954, 0xc953009b, 0x00000000}},  //   _proq, _fyen, רמה_,\n  { {0x63060879, 0x44241f1b, 0x63a90010, 0x00000000}},  //   _سوال, _ibm_, _gyen,\n  { {0x7c240020, 0xe0ce0044, 0xdbfb006e, 0x00000000}},  //   _abir, _রবীন, ्ल्ड_,\n  { {0xdb160047, 0xfc3f0161, 0x44243955, 0x00000000}},  //   _együ, slím_, _kbm_,\n  { {0x7f423956, 0x26ca3957, 0x4424016c, 0x00000000}},  //   _troq, _libo_, _jbm_,\n  { {0x6d4311fe, 0x44240145, 0x38690910, 0x00000000}},  //   _erna, _mbm_, vkar_,\n  { {0x7c240009, 0x44240c3b, 0x2ba50204, 0x00000000}},  //   _ebir, _lbm_, _गुणा,\n  { {0x3e72001a, 0x3869006b, 0x44240085, 0x00000000}},  //   _câte_, tkar_, _obm_,\n  { {0xe8e00011, 0x7aed38fc, 0x442400fa, 0x00000000}},  //   _chốt_, _twat, _nbm_,\n  { {0x3869313a, 0x7c2f04bd, 0x7aed37dd, 0x00000000}},  // [ccb0] rkar_, mecr, _uwat,\n  { {0x38690073, 0x7c2401ae, 0x26ca0207, 0x00000000}},  //   skar_, _zbir, _cibo_,\n  { {0x4424023a, 0x941910e2, 0xf77f00f4, 0x00000000}},  //   _bbm_, джет_, _reçu_,\n  { {0x7c3d0030, 0x628100b9, 0x6f1b0036, 0x00000000}},  //   ndsr, _smlo, ytuc,\n  { {0xa7fb049a, 0x27e9089a, 0x7c3d0116, 0x00000000}},  //   _coñe, mban_, idsr,\n  { {0x78ad1583, 0x7cc90036, 0x27e93958, 0x00000000}},  //   llav, _ośro, lban_,\n  { {0x409507e1, 0x78ad0026, 0x27e900e0, 0x00000000}},  //   крит, olav, oban_,\n  { {0x27e90047, 0x6f1b301e, 0x7c3d0190, 0x00000000}},  //   nban_, ttuc, jdsr,\n  { {0x442f119e, 0x7c2f1ba1, 0x6d5c03b6, 0x00000000}},  //   meg_, decr, äran,\n  { {0x83fd0047, 0x78ad01ca, 0x6f1b08d3, 0x00000000}},  //   _előt, hlav, rtuc,\n  { {0x261903d7, 0x78ad01aa, 0x27e90047, 0x00000000}},  //   _पानी_, klav, kban_,\n  { {0x442f0016, 0x7c2f0190, 0x20030006, 0x00000000}},  //   neg_, gecr, ėjis_,\n  { {0x207a007b, 0x907a034e, 0x27e90010, 0x00000000}},  //   _קאנא, _קטני, dban_,\n  { {0x24860036, 0x6d430027, 0x3e72009d, 0x00000000}},  //   ziom_, _trna, _pâte_,\n  { {0xc212019b, 0x78ad000c, 0x26ca0de5, 0x00000000}},  //   יהם_, flav, _ribo_,\n  { {0x442f0119, 0x78ad1032, 0x27e90010, 0x00000000}},  //   jeg_, glav, gban_,\n  { {0xbc1b00b6, 0x442f1e3d, 0x6f0905c6, 0x00000000}},  // [ccc0] _חופש, deg_, nrec,\n  { {0x27e901a3, 0x6d410521, 0x442412ea, 0x00000000}},  //   aban_, ovla, _sbm_,\n  { {0x27e90047, 0x44240022, 0x6f09010f, 0x00000000}},  //   bban_, _pbm_, hrec,\n  { {0x2541010a, 0x78ad2262, 0x69dc0190, 0x00000000}},  //   _dėl_, clav, lcre,\n  { {0x24860253, 0x3eac0190, 0x00000000, 0x00000000}},  //   riom_, yldt_,   ,\n  { {0x5b7b007b, 0x6f090016, 0x442f006c, 0x00000000}},  //   ורנא, drec, aeg_,\n  { {0xcec800ad, 0x60cb01e5, 0x44240181, 0x00000000}},  //   _một_, _bigm, _tbm_,\n  { {0x442f037e, 0x75370049, 0x6f09059b, 0x00000000}},  //   ceg_, _באלד_, frec,\n  { {0x83fd0010, 0x6f0900c4, 0x60cb011c, 0x00000000}},  //   _elős, grec, _digm,\n  { {0xa806047f, 0x91ba0879, 0x27e90010, 0x00000000}},  //   ldığ, _قطار_, zban_,\n  { {0x7c2f041d, 0x6f09001a, 0x69dc0606, 0x00000000}},  //   tecr, arec, dcre,\n  { {0x6f093959, 0xa806047f, 0x9ffa01f7, 0x00000000}},  //   brec, ndığ, _آراء_,\n  { {0xcec80011, 0x6f09008e, 0x9b58005e, 0x00000000}},  //   _bột_, crec, вият_,\n  { {0x2be30754, 0x442f115b, 0xcec80011, 0x00000000}},  //   _क्रं_, zeg_, _cột_,\n  { {0x27e90047, 0x78ad01ee, 0xeb9f0190, 0x00000000}},  //   tban_, tlav, ggør_,\n  { {0x764e0a34, 0x27e9009d, 0x60cb0203, 0x00000000}},  //   _anby, uban_, _xigm,\n  { {0x27e9395a, 0x442f009f, 0x78ad1f38, 0x00000000}},  // [ccd0] rban_, veg_, rlav,\n  { {0x61f801ae, 0x78ad13a1, 0x442f0270, 0x00000000}},  //   javl, slav, weg_,\n  { {0x442f0010, 0x7afd000c, 0x27e90010, 0x00000000}},  //   teg_, lsst, pban_,\n  { {0x25410006, 0xfc3f008e, 0xd3b905b8, 0x00000000}},  //   _vėl_, ndí_, нулі_,\n  { {0x442f00ea, 0x2911395b, 0xfc3f0051, 0x00000000}},  //   reg_, luza_, idí_,\n  { {0x7afd01a2, 0x24840145, 0xf6790049, 0x00000000}},  //   isst, _emmm_, _טאָמ,\n  { {0x442f11d1, 0x6f0902c2, 0x2911395c, 0x00000000}},  //   peg_, wrec, nuza_,\n  { {0x6f09001a, 0x83fd0047, 0x7afd02e1, 0x00000000}},  //   trec, _előr, ksst,\n  { {0x61f80825, 0x29110009, 0x2f54007e, 0x00000000}},  //   bavl, huza_, атэс,\n  { {0x7afd00eb, 0x29110020, 0x2ca90f55, 0x00000000}},  //   dsst, kuza_, _akad_,\n  { {0x6f09010f, 0x29110066, 0xcc8a003b, 0x00000000}},  //   srec, juza_, ебне_,\n  { {0x670302d2, 0x6f0903a1, 0x6d41046a, 0x00000000}},  //   _लिंक_, prec, rvla,\n  { {0x6d411c81, 0x7afd06a1, 0x7cd3001a, 0x00000000}},  //   svla, gsst, _mări,\n  { {0x2911395d, 0xa806005d, 0x78710b16, 0x00000000}},  //   fuza_, zdığ, _råva,\n  { {0x69dc00f4, 0x2911395e, 0xa8060279, 0x00000000}},  //   rcre, guza_, ydığ,\n  { {0x61f808de, 0x7afd27b7, 0x1ddf0061, 0x00000000}},  //   zavl, bsst, पुरत,\n  { {0xcec80082, 0x3f89002b, 0x00000000, 0x00000000}},  // [cce0] _tột_, _uċuħ_,   ,\n  { {0x2619001c, 0x29110009, 0x66c90006, 0x00000000}},  //   _पाणी_, buza_, _užkl,\n  { {0x044602be, 0xa806006b, 0x29110c99, 0x00000000}},  //   лежн, tdığ, cuza_,\n  { {0x3ea5010f, 0x32d9000a, 0x7cd300e5, 0x00000000}},  //   holt_, _bèy_, _cări,\n  { {0x61f800ee, 0xa8060279, 0x3ea50232, 0x00000000}},  //   tavl, rdığ, kolt_,\n  { {0xd13a0ae0, 0xfc3f0062, 0x32d90173, 0x00000000}},  //   ехи_, zdí_, _dèy_,\n  { {0x61f8092f, 0x386235f5, 0x00000000, 0x00000000}},  //   ravl, _kokr_,   ,\n  { {0x61f805fa, 0x32d901aa, 0x6d5c006c, 0x00000000}},  //   savl, _fèy_, äram,\n  { {0x7ae40009, 0x5f94007c, 0x2911395f, 0x00000000}},  //   _ntit, рипт, zuza_,\n  { {0x7afd1a95, 0x07370104, 0xd3b901e1, 0x00000000}},  //   vsst, נאים_, _русі_,\n  { {0x7ae42005, 0x628a0190, 0xa1960184, 0x00000000}},  //   _atit, mifo, _сјај,\n  { {0x628a00ab, 0x29113960, 0x00000000, 0x00000000}},  //   lifo, vuza_,   ,\n  { {0x2f18004c, 0x3ea53961, 0xfc3f0387, 0x00000000}},  //   _роль_, bolt_, rdí_,\n  { {0x7afd000c, 0x29110202, 0x7ae40048, 0x00000000}},  //   rsst, tuza_, _dtit,\n  { {0x7afd01a2, 0x7ae40058, 0xd5eb0082, 0x00000000}},  //   ssst, _etit, _đìn,\n  { {0x29110032, 0x7ae401f3, 0x628a0197, 0x00000000}},  //   ruza_, _ftit, hifo,\n  { {0x7c9400a6, 0xa7fb008e, 0x3cfe0009, 0x00000000}},  // [ccf0] _دشوا, _coña, lstv_,\n  { {0x32d901aa, 0x2b490016, 0x7cd30035, 0x00000000}},  //   _rèy_, _irac_, _sări,\n  { {0xceb3061e, 0x7cd3001a, 0x3cfe1c2b, 0x00000000}},  //   ציע_, _pări, nstv_,\n  { {0xd3710054, 0xf48500a1, 0x7c3f002b, 0x00000000}},  //   يها_, جائی, _jaqr,\n  { {0x81e60044, 0x6fcb006b, 0x6d5c0bac, 0x00000000}},  //   _ভয়_, _möcü, äraj,\n  { {0x45d400c0, 0x628a013e, 0x15ab02dc, 0x00000000}},  //   _горс, gifo, _зъби_,\n  { {0xc692009b, 0x7cd30035, 0xf4020035, 0x00000000}},  //   _ואם_, _tări, faţă_,\n  { {0xaf050088, 0x2019006c, 0xfaff0023, 0x00000000}},  //   апил, üsi_, ksë_,\n  { {0x3255005c, 0x443f3962, 0xcf8e007a, 0x00000000}},  //   _квар, _iau_, وژه_,\n  { {0x443f022b, 0xa2b30061, 0xddca0173, 0x00000000}},  //   _hau_, ेगळ्, _enfō,\n  { {0x7ae4001a, 0xb035007c, 0x443f0127, 0x00000000}},  //   _stit, _внеш, _kau_,\n  { {0x443f0ebc, 0xcb6a0200, 0x7ae43963, 0x00000000}},  //   _jau_, ваме_, _ptit,\n  { {0x443f0475, 0xe7b00044, 0x386212a9, 0x00000000}},  //   _mau_, _কল্য, _rokr_,\n  { {0x443f022b, 0x2b490129, 0xee090081, 0x00000000}},  //   _lau_, _drac_, _рекл_,\n  { {0xa7fb0211, 0x443f3964, 0x2eff0022, 0x00000000}},  //   _soña, _oau_, lsuf_,\n  { {0xcec80011, 0x443f0ed6, 0xad1a00a0, 0x00000000}},  //   _hộp_, _nau_, _סופר,\n  { {0x7e6338c5, 0x787802d5, 0x41d50061, 0x00000000}},  // [cd00] _konp, _níve, दशास,\n  { {0x61400010, 0x443f0190, 0x8afb009b, 0x00000000}},  //   nálá, _aau_, _שהיי,\n  { {0x443f293e, 0x7e631339, 0x75560184, 0x00000000}},  //   _bau_, _monp, шњац,\n  { {0x499b012f, 0x443f085b, 0x320505ae, 0x00000000}},  //   _ישיב, _cau_, _adly_,\n  { {0x443f3965, 0x628a113d, 0x78780181, 0x00000000}},  //   _dau_, tifo, _cíve,\n  { {0x443f028c, 0xcec80011, 0x7e630133, 0x00000000}},  //   _eau_, _nộp_, _nonp,\n  { {0xd1300054, 0x628a0016, 0x5275003b, 0x00000000}},  //   سمة_, rifo, ључу,\n  { {0x443f0c54, 0x741600a6, 0x27e001a3, 0x00000000}},  //   _gau_, _خورا, ncin_,\n  { {0x442601c3, 0x27e00145, 0xd46700ed, 0x00000000}},  //   mfo_, icin_, _тите_,\n  { {0x442608d3, 0x6442002d, 0xd337009b, 0x00000000}},  //   lfo_, ldoi, _דרמה_,\n  { {0x64400b9a, 0x7e632f75, 0x44260026, 0x00000000}},  //   _kami, _donp, ofo_,\n  { {0x44260004, 0x644032ca, 0x4fa6007c, 0x00000000}},  //   nfo_, _jami, _киев,\n  { {0x7b640057, 0xdd390035, 0xfbdf00fa, 0x00000000}},  //   отре, păşe, rcê_,\n  { {0x28db0309, 0x4efb00b3, 0x644200b0, 0x00000000}},  //   _मंदि, _יהדו, hdoi,\n  { {0x7c3f002b, 0x888700e2, 0x00000000, 0x00000000}},  //   _taqr, аѓал,   ,\n  { {0x6440026a, 0x2b49005b, 0x6d4a01a3, 0x00000000}},  //   _nami, _trac_, _irfa,\n  { {0x443f3240, 0xd7f8007e, 0x62880030, 0x00000000}},  // [cd10] _rau_, рус_, _omdo,\n  { {0x443f3966, 0x64400dc7, 0xe61301fa, 0x00000000}},  //   _sau_, _aami, تشر_,\n  { {0x443f0129, 0xf8b101ef, 0x44260197, 0x00000000}},  //   _pau_, _فکر_, ffo_,\n  { {0x64400df9, 0x2936007b, 0x6f020161, 0x00000000}},  //   _cami, _פארן_, _ovoc,\n  { {0x64400e42, 0xa6db009f, 0x443f00d4, 0x00000000}},  //   _dami, _orði, _vau_,\n  { {0x443f0145, 0x7878004a, 0x20060145, 0x00000000}},  //   _wau_, _víve, _adoi_,\n  { {0x443f2c5f, 0x26d91d12, 0x659406b6, 0x00000000}},  //   _tau_, _huso_, _дару,\n  { {0x6440181a, 0x26d12ca2, 0xfc3f0051, 0x00000000}},  //   _gami, _hizo_, ilís_,\n  { {0x7e633967, 0x6d4a0016, 0x26d1016c, 0x00000000}},  //   _ponp, _arfa, _kizo_,\n  { {0x6440091e, 0x7e550594, 0xf1a7012b, 0x00000000}},  //   _zami, стиц, _крен,\n  { {0x64400093, 0x6f02060c, 0x41b506b4, 0x00000000}},  //   _yami, _evoc, _امار,\n  { {0xf8bf001d, 0x672f0036, 0xfc320025, 0x00000000}},  //   _nhé_, _opcj, أحد_,\n  { {0x6d4a001f, 0x9f40009f, 0x2d8b0036, 0x00000000}},  //   _erfa, _þið_, ńce_,\n  { {0x7e7a054e, 0x63bb0020, 0x09e30140, 0x00000000}},  //   chtp, _mzun, зорн,\n  { {0x5ef90044, 0x6a6b005d, 0x0dc8003b, 0x00000000}},  //   _আমিও_, _nüfu, _кући_,\n  { {0xf8bf0197, 0x26d90026, 0xbc930098, 0x00000000}},  //   _ché_, _buso_, _најј,\n  { {0x64403540, 0x27e02803, 0x44f50027, 0x00000000}},  // [cd20] _rami, rcin_, eť_,\n  { {0x77c70106, 0x26d904eb, 0x00000000, 0x00000000}},  //   слуг_, _duso_,   ,\n  { {0x64400a71, 0xa96a012d, 0xd6cf0025, 0x00000000}},  //   _pami, _сина_, رقم_,\n  { {0xf8bf0011, 0x26d908eb, 0x7af60007, 0x00000000}},  //   _ghé_, _fuso_, _kwyt,\n  { {0x8c1b01f8, 0x64423968, 0x9f4f00f6, 0x00000000}},  //   רוני, rdoi, _negà_,\n  { {0x66e30265, 0x8b060036, 0x64400020, 0x00000000}},  //   _хора, częś, _wami,\n  { {0x67240ba5, 0x26d90061, 0x2ee63969, 0x00000000}},  //   ltij, _zuso_, _stof_,\n  { {0x04960647, 0x38600169, 0x64400020, 0x00000000}},  //   _الرح, njir_, _uami,\n  { {0x421a0d0b, 0x6d4a0087, 0x9f53007e, 0x00000000}},  //   _مزاج_, _srfa, звыч,\n  { {0xa3e402d2, 0x62650054, 0x1ed70025, 0x00000000}},  //   पुर_, _والق, حبيب_,\n  { {0x6724016e, 0x321e02b5, 0x6a6b026d, 0x00000000}},  //   htij, _icty_, _müft,\n  { {0x672400b5, 0xac190152, 0x7af60016, 0x00000000}},  //   ktij, шому_, _bwyt,\n  { {0x0b8b0f93, 0x38600022, 0x00000000, 0x00000000}},  //   усни_, djir_,   ,\n  { {0x26d90dfb, 0xb69b001a, 0x6298010f, 0x00000000}},  //   _ruso_, _avân, nnvo,\n  { {0xdd93008b, 0x26d9011c, 0x629801c3, 0x00000000}},  //   _нашы, _suso_, invo,\n  { {0x26d9396a, 0x672400b5, 0x5b15041f, 0x00000000}},  //   _puso_, ftij, _дмит,\n  { {0x7c2d177c, 0x6d4800ea, 0x00000000, 0x00000000}},  // [cd30] _ibar, lvda,   ,\n  { {0x32f600b4, 0x00000000, 0x00000000, 0x00000000}},  //   dły_,   ,   ,\n  { {0xf8bf009d, 0x67242c1b, 0x60da010e, 0x00000000}},  //   _thé_, atij, _nutm,\n  { {0x62980328, 0x26d90e20, 0x9a25009e, 0x00000000}},  //   envo, _tuso_, _اٹھن,\n  { {0x7c2d396b, 0x44f513a1, 0x4ad90061, 0x00000000}},  //   _mbar, sť_, ढदिव,\n  { {0xf99002fd, 0x60da012d, 0x6d460089, 0x00000000}},  //   _آبی_, _butm, ākaj,\n  { {0x32f60036, 0x61fa01a2, 0x7c2d0340, 0x00000000}},  //   ały_, _detl, _obar,\n  { {0x4f09003b, 0x7c2d0009, 0x61fa0112, 0x00000000}},  //   анин_, _nbar, _eetl,\n  { {0x63bb0279, 0x442d0058, 0x61fa00ea, 0x00000000}},  //   _uzun, _ibe_, _fetl,\n  { {0x7c2d0885, 0x61fa396c, 0xd10903ec, 0x00000000}},  //   _abar, _getl, _نقطه_,\n  { {0x60da01a2, 0x00000000, 0x00000000, 0x00000000}},  //   _gutm,   ,   ,\n  { {0xc0cb003b, 0x290300ea, 0x6f0e0276, 0x00000000}},  //   _сузе_, dsja_, üncü,\n  { {0xc6110055, 0x543a0049, 0x3b8301ff, 0x00000000}},  //   স্যা_, בערא, дляг,\n  { {0x3e7b009d, 0x60c4002b, 0x7c2d1683, 0x00000000}},  //   _bête_, ċime, _ebar,\n  { {0xd943005e, 0x442d0465, 0x7cd30035, 0x00000000}},  //   мери, _obe_, _vărs,\n  { {0x672401d5, 0xf7720b6c, 0x7c2d0026, 0x00000000}},  //   ttij, واء_, _gbar,\n  { {0x1666060e, 0x3860000c, 0xd5b80089, 0x00000000}},  // [cd40] овам, rjir_, _šā_,\n  { {0x442d0061, 0x3e7b00f4, 0x7c2d043f, 0x00000000}},  //   _abe_, _fête_, _zbar,\n  { {0x672401d5, 0x7c2d0058, 0x442d1494, 0x00000000}},  //   stij, _ybar, _bbe_,\n  { {0x76551153, 0x61fa396d, 0xfbae0061, 0x00000000}},  //   _enzy, _setl, _घडाम,\n  { {0x291801d5, 0x442d0009, 0x83360137, 0x00000000}},  //   lura_, _dbe_, تراض,\n  { {0xa6e2000c, 0x60da00d9, 0x78a90e0d, 0x00000000}},  //   áðun, _putm, čeve,\n  { {0x291807ec, 0xa50702e9, 0x61fa396e, 0x00000000}},  //   nura_, _мера_, _vetl,\n  { {0x61fa0436, 0xb4d6013d, 0x3a3800bb, 0x00000000}},  //   _wetl, सदी_, herp_,\n  { {0x29180065, 0x63060123, 0x7eaf00ea, 0x00000000}},  //   hura_, _ذوال, jøps,\n  { {0x29180307, 0x60da0279, 0x35af013d, 0x00000000}},  //   kura_, _tutm, _जुड़,\n  { {0x29180035, 0x2b400288, 0x98ba0173, 0x00000000}},  //   jura_, _asic_, _aspč_,\n  { {0x2918022b, 0x00000000, 0x00000000, 0x00000000}},  //   dura_,   ,   ,\n  { {0x8ae40088, 0xa09b009b, 0x2b40004a, 0x00000000}},  //   дісл, _דיאט, _csic_,\n  { {0x29181131, 0x29110036, 0x2903010e, 0x00000000}},  //   fura_, trza_, tsja_,\n  { {0x2b4000f6, 0x60c200e7, 0x29050e34, 0x00000000}},  //   _esic_, _khom, éla_,\n  { {0x29030036, 0x1a6500a1, 0xda17007d, 0x00000000}},  //   rsja_, _کیسی_, _ताकत_,\n  { {0xb6c900a1, 0x2903002b, 0x2b400009, 0x00000000}},  // [cd50] مائے_, ssja_, _gsic_,\n  { {0x29180ac9, 0x3e7b00f4, 0x454b0194, 0x00000000}},  //   bura_, _tête_, ичем_,\n  { {0x2918049a, 0xe4a70088, 0x76450023, 0x00000000}},  //   cura_, ордо, rdhy,\n  { {0xe787003b, 0x91fc0089, 0x00000000, 0x00000000}},  //   _дуго, _glāz,   ,\n  { {0xa85a009b, 0x91e5030d, 0x442d007f, 0x00000000}},  //   _הדרכ, поле, _vbe_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x999a0087, 0x00000000, 0x00000000, 0x00000000}},  //   _kapš_,   ,   ,\n  { {0x60c2002a, 0xd12e0380, 0x442d0058, 0x00000000}},  //   _chom, امي_, _ube_,\n  { {0x60c21c75, 0x2918016e, 0x248d0087, 0x00000000}},  //   _dhom, zura_, _imem_,\n  { {0x291824a8, 0xc33201ce, 0x78ad2fa3, 0x00000000}},  //   yura_, _אומ_, hoav,\n  { {0xc6110055, 0x3eb90089, 0x2918002d, 0x00000000}},  //   স্থা_, ēst_, xura_,\n  { {0x29180a15, 0x2245014a, 0x3a3800c7, 0x00000000}},  //   vura_, _halk_, werp_,\n  { {0x60c9027b, 0xeb972aa3, 0xf092009b, 0x00000000}},  //   mmem, зия_, _אנא_,\n  { {0x60c9014a, 0xc6110044, 0x20c10048, 0x00000000}},  //   lmem, স্তা_, sóid_,\n  { {0x6d5c006c, 0xfaa3007e, 0xa6db01e5, 0x00000000}},  //   ärat, харо, _orðs,\n  { {0x60c917d4, 0x83fd0047, 0xa3d70061, 0x00000000}},  //   nmem, _előz, _सलग_,\n  { {0x27f2018e, 0x601601df, 0xe7ba0044, 0x00000000}},  // [cd60] rbyn_, lümü, ংখ্য,\n  { {0x291804cb, 0xf1cb0204, 0x248d00fa, 0x00000000}},  //   pura_, ाधान, _amem_,\n  { {0x89db0104, 0x6016005a, 0xf9920014, 0x00000000}},  //   _לחיי, nümü, _سبد_,\n  { {0x7eb40129, 0xe8e00082, 0x161e013d, 0x00000000}},  //   ràpi, _nhứt_, _पावर_,\n  { {0x224500bb, 0x6d460089, 0x44200089, 0x00000000}},  //   _balk_, ākai, ļi_,\n  { {0x442001d5, 0x60c2191a, 0x25080123, 0x00000000}},  //   żi_, _shom, _ورزی_,\n  { {0x22450343, 0x78710cf5, 0x29360049, 0x00000000}},  //   _dalk_, _såvi, לאַן_,\n  { {0x78712314, 0x859b00b3, 0x60c9011c, 0x00000000}},  //   _påvi, _השלו, gmem,\n  { {0x22450210, 0x00000000, 0x00000000, 0x00000000}},  //   _falk_,   ,   ,\n  { {0xd091005f, 0x78ad00c4, 0xe2450025, 0x00000000}},  //   _müəl, zoav, _يخلي,\n  { {0x70f60a4f, 0x2ba5013d, 0x00000000, 0x00000000}},  //   _رسائ, _गुजा,   ,\n  { {0xef1901d5, 0xf3f9001a, 0x515b00a0, 0x00000000}},  //   buż_, _poţi_, _לכבו,\n  { {0x7680396f, 0x2ca00045, 0x4ae7007e, 0x00000000}},  //   _köyd, _djid_, яўна,\n  { {0x6d5c006c, 0x6016014a, 0xa6db01e5, 0x00000000}},  //   äras, bümü, _orðr,\n  { {0x78ad06d5, 0x39a400e2, 0x79a40900, 0x00000000}},  //   toav, ештв, ерте,\n  { {0x7d1a0c3f, 0x768000b0, 0xf3f9001a, 0x00000000}},  //   muts, _löyd, _toţi_,\n  { {0x7d1a006c, 0x9773007e, 0x78ad00fa, 0x00000000}},  // [cd70] luts, лiся_, roav,\n  { {0xfbd00054, 0xf7700d3a, 0x7aed0503, 0x00000000}},  //   _حتى_, داف_, _itat,\n  { {0x9475089d, 0x7d1a010e, 0x60c916b4, 0x00000000}},  //   وگرا, nuts, ymem,\n  { {0xe3b000a6, 0x320c0145, 0x22450087, 0x00000000}},  //   گرم_, _addy_, _salk_,\n  { {0x2245006c, 0x6e3a01c3, 0x6016005d, 0x00000000}},  //   _palk_, ketb, zümü,\n  { {0x7d1a0d49, 0x7aed00e7, 0x60c9016b, 0x00000000}},  //   kuts, _mtat, wmem,\n  { {0x7d1a00f8, 0x2245015b, 0xa156003b, 0x00000000}},  //   juts, _valk_, дају_,\n  { {0x443904bd, 0x248d05fa, 0x6a700a5d, 0x00000000}},  //   _ús_, _umem_, _häft,\n  { {0x224500ab, 0x60c9014a, 0x7aed3970, 0x00000000}},  //   _talk_, rmem, _ntat,\n  { {0x3e8901fb, 0x4df4004c, 0xfe710025, 0x00000000}},  //   ійно_, няют, ئدة_,\n  { {0x7aed011f, 0xdca60069, 0x7d1a006c, 0x00000000}},  //   _atat, дани, guts,\n  { {0xa0c40025, 0x6016005a, 0x00000000, 0x00000000}},  //   _كيلو, rümü,   ,\n  { {0x6d5c0e2b, 0x3af60454, 0x9f4f07c4, 0x00000000}},  //   ärar, ьянс, _begå_,\n  { {0xaec40088, 0x7d1a09e7, 0x201f0129, 0x00000000}},  //   _збіл, buts, lgui_,\n  { {0x7aed1ca7, 0x2d94005e, 0x7d1a0288, 0x00000000}},  //   _etat, _пръс, cuts,\n  { {0x201f0129, 0x00000000, 0x00000000, 0x00000000}},  //   ngui_,   ,   ,\n  { {0x76470009, 0x7c243971, 0x2d853972, 0x00000000}},  // [cd80] _bajy, _icir, lzle_,\n  { {0x78a901d9, 0x00000000, 0x00000000, 0x00000000}},  //   čeva,   ,   ,\n  { {0x186a1984, 0x29050010, 0xf65100a1, 0x00000000}},  //   _дани_, álat_, ھئے_,\n  { {0xf4870cd9, 0xe3ba22bb, 0x6e3a0c57, 0x00000000}},  //   وانی, обе_, zetb,\n  { {0x63be0036, 0x768000b0, 0x00000000, 0x00000000}},  //   ępno, _pöyd,   ,\n  { {0x6d430e42, 0xfbc00044, 0x00000000, 0x00000000}},  //   _osna, _ইলাত,   ,\n  { {0x28c303d7, 0xfd0700a1, 0x00000000, 0x00000000}},  //   _वीडि, _جج_,   ,\n  { {0x7d1a1add, 0x26d83973, 0x055712c0, 0x00000000}},  //   vuts, _hiro_, _تلفظ_,\n  { {0x26d80087, 0x4226003b, 0x76470009, 0x00000000}},  //   _kiro_, _одав, _yajy,\n  { {0x4424001d, 0x7d1a3974, 0x7c2408eb, 0x00000000}},  //   _hcm_, tuts, _acir,\n  { {0xb80e007d, 0x26d80142, 0x44240022, 0x00000000}},  //   िणाम_, _miro_, _kcm_,\n  { {0x7d1a093b, 0xdefa0642, 0xceb80a62, 0x00000000}},  //   ruts, _дык_, slę_,\n  { {0xc0a903ec, 0x44240127, 0x200405fd, 0x00000000}},  //   _عامل_, _mcm_, mami_,\n  { {0x20040f55, 0x26d80058, 0x44240082, 0x00000000}},  //   lami_, _niro_, _lcm_,\n  { {0x44240082, 0x9983007f, 0x4c950a85, 0x00000000}},  //   _ocm_, vejų_, _пикс,\n  { {0x030e062e, 0x20040142, 0x78780010, 0x00000000}},  //   _सिंह_, nami_, _hívj,\n  { {0x7aed0020, 0x7c3d01a3, 0x20c100fa, 0x00000000}},  // [cd90] _utat, mesr, nóia_,\n  { {0xd5bb0175, 0x2004033b, 0x26d80851, 0x00000000}},  //   осе_, hami_, _ciro_,\n  { {0x26d80026, 0x44241091, 0xe4e40088, 0x00000000}},  //   _diro_, _bcm_, вічн,\n  { {0x44241077, 0x20040042, 0x26d80089, 0x00000000}},  //   _ccm_, jami_, _eiro_,\n  { {0x2004010a, 0x92950131, 0xf8b200a3, 0x00000000}},  //   dami_, надц, _תשכ_,\n  { {0x26d8064c, 0x659500e3, 0x27e90035, 0x00000000}},  //   _giro_, _загу, lcan_,\n  { {0x44242121, 0x6605003f, 0xf2040088, 0x00000000}},  //   _fcm_, mahk, тячо,\n  { {0x40941036, 0x66050169, 0x27e9014a, 0x00000000}},  //   крыт, lahk, ncan_,\n  { {0x443d0066, 0x64a400ed, 0xd426014a, 0x00000000}},  //   mew_, _раѓа, ıştı_,\n  { {0x7c240638, 0x4d65003b, 0xef8209b5, 0x00000000}},  //   _scir, еков, ульп,\n  { {0x50670242, 0x20040c30, 0x645b00d9, 0x00000000}},  //   _отда, bami_, _knui,\n  { {0x443d1a8d, 0x20040d0a, 0x644b02a9, 0x00000000}},  //   new_, cami_, ndgi,\n  { {0x660505cd, 0x7c2401f3, 0x00000000, 0x00000000}},  //   kahk, _vcir,   ,\n  { {0xddc3001a, 0x6f09149f, 0x443d0133, 0x00000000}},  //   _conţ, msec, hew_,\n  { {0x443d1cdc, 0x19b90088, 0x6f090cfe, 0x00000000}},  //   kew_, дуть_, lsec,\n  { {0x443d11ac, 0xdb0f0010, 0x7c3d00d9, 0x00000000}},  //   jew_, őjár, cesr,\n  { {0x6f090f6a, 0xa7a73975, 0xe73708d6, 0x00000000}},  // [cda0] nsec, екта_, нет_,\n  { {0x2004006b, 0x98c00279, 0x645b3976, 0x00000000}},  //   zami_, ırır_, _anui,\n  { {0x44240606, 0x200401aa, 0xc5d5007e, 0x00000000}},  //   _pcm_, yami_, віць,\n  { {0x73e6008b, 0x44240068, 0x26d80022, 0x00000000}},  //   ходз, _qcm_, _wiro_,\n  { {0x2586093f, 0x20040465, 0x66050145, 0x00000000}},  //   _bílé_, vami_, bahk,\n  { {0x6f09003b, 0xfe6704e8, 0x20043977, 0x00000000}},  //   dsec, _صد_, wami_,\n  { {0x20040871, 0x44240253, 0x443d0066, 0x00000000}},  //   tami_, _tcm_, bew_,\n  { {0x6449002a, 0x442f0009, 0xbf34005e, 0x00000000}},  //   _gaei, cfg_, внищ,\n  { {0x2004006a, 0x03a30113, 0x7c3d00f6, 0x00000000}},  //   rami_, _бито, vesr,\n  { {0x20040036, 0x27e93978, 0x64622e90, 0x00000000}},  //   sami_, zcan_, štič,\n  { {0x27e90163, 0x6d410016, 0x200414a6, 0x00000000}},  //   ycan_, gwla, pami_,\n  { {0xdee601e0, 0x787800b9, 0x29180065, 0x00000000}},  //   _зоди, _dívk, drra_,\n  { {0x9f490359, 0x5f730084, 0x7c3d00f8, 0x00000000}},  //   _það_, _ماور, resr,\n  { {0x7bc40fed, 0x443d3979, 0x2bc701f5, 0x00000000}},  //   _dziu, zew_, रेगा,\n  { {0x443d0173, 0x19580930, 0x38c702dc, 0x00000000}},  //   yew_, нары_, ещав,\n  { {0x66050022, 0x00000000, 0x00000000, 0x00000000}},  //   wahk,   ,   ,\n  { {0x27e9014a, 0x443d0066, 0x2918002d, 0x00000000}},  // [cdb0] rcan_, vew_, arra_,\n  { {0x27e9397a, 0x64490089, 0xdb9c009b, 0x00000000}},  //   scan_, _saei, _מסחר,\n  { {0x443d0ee1, 0x660504cb, 0xd00600a6, 0x00000000}},  //   tew_, rahk, _پل_,\n  { {0x660504cb, 0x756800a1, 0x6f09004a, 0x00000000}},  //   sahk, ریقہ_, ysec,\n  { {0x6283018e, 0x387e009d, 0x443d1e4c, 0x00000000}},  //   thno, être_, rew_,\n  { {0x38690056, 0x443d2a04, 0x672d397b, 0x00000000}},  //   ljar_, sew_, mtaj,\n  { {0x672d317c, 0x443d002b, 0x6f09397c, 0x00000000}},  //   ltaj, pew_, wsec,\n  { {0xfd65001d, 0x38693632, 0x6f091a5b, 0x00000000}},  //   _thuậ, njar_, tsec,\n  { {0x672d397d, 0x00000000, 0x00000000, 0x00000000}},  //   ntaj,   ,   ,\n  { {0x6f09121e, 0xd01100a1, 0x63bb2e24, 0x00000000}},  //   rsec, _چلا_, _iyun,\n  { {0x63bb01cf, 0x6281002b, 0xfa270055, 0x00000000}},  //   _hyun, _illo, য়াল_,\n  { {0xeb9a017f, 0x3869002b, 0x672d0089, 0x00000000}},  //   дим_, jjar_, ktaj,\n  { {0xc4d2007b, 0x3869274a, 0x28db006e, 0x00000000}},  //   יגט_, djar_, _मंजि,\n  { {0x672d016c, 0x32070036, 0x63bb02d4, 0x00000000}},  //   dtaj, nany_, _myun,\n  { {0x23e10061, 0x9d450131, 0x00000000, 0x00000000}},  //   _फलंद, _рейд,   ,\n  { {0x63bb047f, 0xbb860025, 0x63b60036, 0x00000000}},  //   _oyun, _للبي, żyni,\n  { {0xb8e903d7, 0x63a90065, 0x63bb00e7, 0x00000000}},  // [cdc0] _ली_, _nxen, _nyun,\n  { {0xe8e00011, 0x32072daa, 0x00000000, 0x00000000}},  //   _chợt_, jany_,   ,\n  { {0x63a9049a, 0x63bb0211, 0x7ae40b37, 0x00000000}},  //   _axen, _ayun, _huit,\n  { {0x74130a4f, 0x7ae41aa2, 0x6281130f, 0x00000000}},  //   لوما, _kuit, _allo,\n  { {0x62810065, 0x7ae400f6, 0xfe21006e, 0x00000000}},  //   _bllo, _juit, _मांस_,\n  { {0x7ae402d5, 0xc7b300b6, 0x32070036, 0x00000000}},  //   _muit, _כבר_, gany_,\n  { {0x4a9b007b, 0x30a600c0, 0x1a9b007b, 0x00000000}},  //   ויסג, крив, ויסע,\n  { {0x62810219, 0xd0100025, 0x44221565, 0x00000000}},  //   _ello, حلة_, _øk_,\n  { {0xa2e60c50, 0x78780129, 0x320704d2, 0x00000000}},  //   _розд, _cívi, bany_,\n  { {0x248601d5, 0xb061021e, 0x78780181, 0x00000000}},  //   lhom_, _ääne, _dívi,\n  { {0x7e7a07eb, 0xfe6f0054, 0x62980059, 0x00000000}},  //   rktp, تدي_, mivo,\n  { {0x7ae4397e, 0x62980027, 0x2486002b, 0x00000000}},  //   _buit, livo, nhom_,\n  { {0x7ae40666, 0xfc3f00c4, 0x00000000, 0x00000000}},  //   _cuit, reí_,   ,\n  { {0x7ae401b5, 0x62980471, 0x00000000, 0x00000000}},  //   _duit, nivo,   ,\n  { {0xfce3012b, 0x38690129, 0x2486233d, 0x00000000}},  //   _којо, tjar_, khom_,\n  { {0x672d021e, 0x7ae4009d, 0x62980035, 0x00000000}},  //   ttaj, _fuit, hivo,\n  { {0x38692d47, 0x2486002b, 0x672d0f81, 0x00000000}},  // [cdd0] rjar_, dhom_, utaj,\n  { {0xd04b005f, 0x672d002d, 0x62980e3b, 0x00000000}},  //   _digə, rtaj, jivo,\n  { {0xdc4300b9, 0x3869002b, 0x32070161, 0x00000000}},  //   _léčb, pjar_, vany_,\n  { {0x32070046, 0x672d1220, 0x62810065, 0x00000000}},  //   wany_, ptaj, _sllo,\n  { {0x32070129, 0x7d1a01a2, 0x862502fd, 0x00000000}},  //   tany_, hrts, _مکال,\n  { {0x6298017b, 0x00000000, 0x00000000, 0x00000000}},  //   givo,   ,   ,\n  { {0x3207067f, 0x99980035, 0x00000000, 0x00000000}},  //   rany_, merţ_,   ,\n  { {0x248601ca, 0x32070036, 0xc44600a1, 0x00000000}},  //   chom_, sany_, _میمن_,\n  { {0x99bf0055, 0xf076009e, 0x3207397f, 0x00000000}},  //   _আলোক, طیوں_, pany_,\n  { {0x7ae40112, 0x7d1a0009, 0x6281004a, 0x00000000}},  //   _ruit, frts, _ullo,\n  { {0x7ae4032c, 0x78a90059, 0x00000000, 0x00000000}},  //   _suit, čevj,   ,\n  { {0x7ae4044e, 0x32050010, 0xdb0d0885, 0x00000000}},  //   _puit, _hely_, _azañ,\n  { {0x7ae41468, 0x7d1a0116, 0x00000000, 0x00000000}},  //   _quit, arts,   ,\n  { {0x7ae400d4, 0xbf9a00a3, 0x1e840245, 0x00000000}},  //   _vuit, _אינש, _клім,\n  { {0x63be0036, 0x32050010, 0xa3d30061, 0x00000000}},  //   ępni, _mely_, हेत_,\n  { {0x62980091, 0x320508d9, 0x7ae40133, 0x00000000}},  //   zivo, _lely_, _tuit,\n  { {0x9b460774, 0x47c600e2, 0x00000000, 0x00000000}},  // [cde0] _صندو, убав,   ,\n  { {0x4a4611a6, 0x2486002b, 0x00000000, 0x00000000}},  //   _снов, whom_,   ,\n  { {0x24861f48, 0x2956005e, 0xd6cf0025, 0x00000000}},  //   thom_, _съпр, أقل_,\n  { {0x7c260169, 0xb386007c, 0x2db60049, 0x00000000}},  //   ngkr, ллел, אלען_,\n  { {0x62980325, 0x2486002b, 0xe29a019d, 0x00000000}},  //   tivo, rhom_, над_,\n  { {0x6f1b3980, 0x2486002b, 0x55e3004c, 0x00000000}},  //   druc, shom_, _горб,\n  { {0x62980733, 0x00000000, 0x00000000, 0x00000000}},  //   rivo,   ,   ,\n  { {0x62980489, 0x764e14a5, 0x78a405e0, 0x00000000}},  //   sivo, _haby, nniv,\n  { {0x64420051, 0x764e009d, 0x62980145, 0x00000000}},  //   meoi, _kaby, pivo,\n  { {0x44260059, 0x64420051, 0x32053981, 0x00000000}},  //   lgo_, leoi, _gely_,\n  { {0x527500ed, 0x44263982, 0x764e000a, 0x00000000}},  //   _туту, ogo_, _maby,\n  { {0x44260bb2, 0x64420051, 0x6f1b125c, 0x00000000}},  //   ngo_, neoi, bruc,\n  { {0x6f1b058b, 0x4426008e, 0xdfd20025, 0x00000000}},  //   cruc, igo_, _ايش_,\n  { {0x64420051, 0x68e500b0, 0x00000000, 0x00000000}},  //   heoi, _puhd,   ,\n  { {0x82770049, 0xd9180454, 0x00000000, 0x00000000}},  //   נעלע_, льт_,   ,\n  { {0x6d4a0066, 0x57f50088, 0x6f0207a3, 0x00000000}},  //   _isfa, рпат, _kwoc,\n  { {0x6d5810f7, 0x6442002a, 0x66cb1a6f, 0x00000000}},  // [cdf0] _hrva, deoi, yükd,\n  { {0x44260046, 0x6d580213, 0xe4e70088, 0x00000000}},  //   ego_, _krva, гідн,\n  { {0x290c2688, 0x320508d0, 0x27e6012d, 0x00000000}},  //   ádat_, _rely_, žona_,\n  { {0x442606b1, 0xd5b80088, 0x6f020036, 0x00000000}},  //   ggo_, усу_, _owoc,\n  { {0xd5af009c, 0x7680014a, 0x44290089, 0x00000000}},  //   _کہا_, _köyl, ļa_,\n  { {0x442602f5, 0x44293983, 0x764e058b, 0x00000000}},  //   ago_, ża_, _gaby,\n  { {0x201900c4, 0x272f005d, 0xfa78009b, 0x00000000}},  //   ósio_, lün_, רעות_,\n  { {0x69c80036, 0x764e0036, 0x64420048, 0x00000000}},  //   żdeg, _zaby, ceoi,\n  { {0x6d580004, 0x8fa5008b, 0x272f01f6, 0x00000000}},  //   _arva, рапе, nün_,\n  { {0x6f1b0207, 0x78a40059, 0x2ca9006c, 0x00000000}},  //   rruc, zniv, _ajad_,\n  { {0x7e54007e, 0x26c100fa, 0x00000000, 0x00000000}},  //   стыц, ilho_,   ,\n  { {0x6d580e00, 0x6f1b010f, 0x673d1a84, 0x00000000}},  //   _drva, pruc, _opsj,\n  { {0x6d58049b, 0x7680011f, 0x9848005f, 0x00000000}},  //   _erva, _böyl, xşı_,\n  { {0x44263984, 0x660700b9, 0x8f1a00a0, 0x00000000}},  //   zgo_, _nejk, _יונת,\n  { {0xd946003b, 0x44260544, 0xc8960098, 0x00000000}},  //   шеви, ygo_, арањ,\n  { {0x7d56009b, 0x78a407c8, 0x7d1c0f3b, 0x00000000}},  //   _כיצד_, univ, árse,\n  { {0x753c0046, 0x272f047f, 0x78a40a6b, 0x00000000}},  // [ce00] _sprz, gün_, rniv,\n  { {0x9848038c, 0x290c0051, 0x7680006b, 0x00000000}},  //   rşı_, ádas_, _göyl,\n  { {0x6442002a, 0x44260085, 0x92020089, 0x00000000}},  //   teoi, tgo_, šāka,\n  { {0x44260006, 0x58d300e2, 0x764e0045, 0x00000000}},  //   ugo_, _моќт, _waby,\n  { {0x44260219, 0x6442002a, 0x6607035f, 0x00000000}},  //   rgo_, reoi, _fejk,\n  { {0x44260966, 0x8b57007b, 0x64423236, 0x00000000}},  //   sgo_, יינס_, seoi,\n  { {0x753c0036, 0xa50701ab, 0x00000000, 0x00000000}},  //   _uprz, _веса_,   ,\n  { {0x6f0201aa, 0x64a60264, 0x9f4f008e, 0x00000000}},  //   _pwoc, _таба, _negó_,\n  { {0x08770049, 0x00000000, 0x00000000, 0x00000000}},  //   שעפט_,   ,   ,\n  { {0x6d581032, 0x78a90c1e, 0xd737009b, 0x00000000}},  //   _prva, čevi, סטית_,\n  { {0x272f005d, 0x395a00d9, 0x00000000, 0x00000000}},  //   zün_, _nrps_,   ,\n  { {0x7680047f, 0xb17b007b, 0xc19b00b6, 0x00000000}},  //   _söyl, _שטאר, _בשבי,\n  { {0xdef407d0, 0x9fe50379, 0xd00f0380, 0x00000000}},  //   _уплы, _اسمه, _آله_,\n  { {0x8af0005f, 0x6d580161, 0x3862000a, 0x00000000}},  //   _irəl, _trva, _ankr_,\n  { {0x6d580039, 0xf807005e, 0xdd93007e, 0x00000000}},  //   _urva, ичан, _машы,\n  { {0x272f038c, 0x00000000, 0x00000000, 0x00000000}},  //   tün_,   ,   ,\n  { {0x7c2d006b, 0x35e70088, 0x395a00d9, 0x00000000}},  // [ce10] _icar, ацев, _erps_,\n  { {0xbebd0ebc, 0xc61f0044, 0x272f3985, 0x00000000}},  //   ltūr, ন্না_, rün_,\n  { {0x19ab00ed, 0xf3f9005e, 0x66073986, 0x00000000}},  //   _штип_, гнеш_, _vejk,\n  { {0xdd86009c, 0xbebd0ebc, 0xe4a40088, 0x00000000}},  //   _ہو_, ntūr, орчо,\n  { {0x66070065, 0x00000000, 0x00000000, 0x00000000}},  //   _tejk,   ,   ,\n  { {0xa5f825aa, 0xa22900a5, 0xdd8603e6, 0x00000000}},  //   _веру_, ужка_, _فو_,\n  { {0xbebd0a5c, 0x7c2d09fc, 0x9877006b, 0x00000000}},  //   ktūr, _ocar, lçı_,\n  { {0xfbdf00c4, 0xd7f80082, 0x00000000, 0x00000000}},  //   ndês_, _đăk_,   ,\n  { {0x442d00ab, 0x9877006b, 0x249d005b, 0x00000000}},  //   _ice_, nçı_, miwm_,\n  { {0xe1f00a4f, 0x7c2d0149, 0x628a010f, 0x00000000}},  //   _قسم_, _acar, chfo,\n  { {0xa3d3001c, 0xc212034e, 0x7af6000c, 0x00000000}},  //   हेर_, _זהב_, _styt,\n  { {0xcb6a05f6, 0x249d0016, 0x9877005d, 0x00000000}},  //   гаме_, niwm_, kçı_,\n  { {0x442d0007, 0x929d0036, 0xc61f0044, 0x00000000}},  //   _mce_, _zwła, ন্যা_,\n  { {0x7c2d009d, 0x00000000, 0x00000000, 0x00000000}},  //   _ecar,   ,   ,\n  { {0xada22194, 0xbcf50647, 0x7e7c01a2, 0x00000000}},  //   _нашл, _استغ, örpe,\n  { {0x442d24ac, 0x7c2d0051, 0xf825013f, 0x00000000}},  //   _nce_, _gcar, şünə_,\n  { {0xa6860741, 0x249d0016, 0x00000000, 0x00000000}},  // [ce20] блад, diwm_,   ,\n  { {0x49ba01b7, 0x7c2d0146, 0x7ebd00d4, 0x00000000}},  //   _ماجد_, _zcar, cèpt,\n  { {0x64a60088, 0x09d60044, 0xfc3f0048, 0x00000000}},  //   бажа, _ত্রা, inín_,\n  { {0xa50708f3, 0x186a051f, 0x442d11c8, 0x00000000}},  //   сеца_, _сами_, _cce_,\n  { {0x442d088a, 0x628a0019, 0x672404f3, 0x00000000}},  //   _dce_, thfo, quij,\n  { {0x4616026c, 0x442d0095, 0xbb3b0049, 0x00000000}},  //   _دوسر, _ece_, רעסי,\n  { {0x442d00b4, 0x00000000, 0x00000000, 0x00000000}},  //   _fce_,   ,   ,\n  { {0x442d0288, 0x2b4000ca, 0x00000000, 0x00000000}},  //   _gce_, _opic_,   ,\n  { {0x93aa00a1, 0x3f820861, 0x00000000, 0x00000000}},  //   _صارف_, áku_,   ,\n  { {0x7c2d0198, 0x6e6602b8, 0x00000000, 0x00000000}},  //   _scar, стиж,   ,\n  { {0xb6bb007b, 0x2b4000f6, 0x6288002d, 0x00000000}},  //   רציי, _apic_, _ildo,\n  { {0x69c12f68, 0x320e0093, 0x00000000, 0x00000000}},  //   ülem, lafy_,   ,\n  { {0x291100b4, 0x00000000, 0x00000000, 0x00000000}},  //   wsza_,   ,   ,\n  { {0xa3da007d, 0x00000000, 0x00000000, 0x00000000}},  //   डेय_,   ,   ,\n  { {0x628800f6, 0xc61f0044, 0x2b400133, 0x00000000}},  //   _mldo, ন্ডা_, _epic_,\n  { {0xc4c4024a, 0x9877005d, 0xdca401fc, 0x00000000}},  //   _سے_, tçı_, _наји,\n  { {0x29110047, 0xe730006d, 0x442d0606, 0x00000000}},  // [ce30] ssza_, فصل_, _rce_,\n  { {0x7afd0056, 0xf7700426, 0x7bcd0089, 0x00000000}},  //   mpst, راق_, _izau,\n  { {0x442d00d4, 0x7afd1903, 0x2cfb0049, 0x00000000}},  //   _pce_, lpst, ָלדא,\n  { {0x6288007f, 0xccf30049, 0x7afd00b5, 0x00000000}},  //   _aldo, לכע_, opst,\n  { {0xa3d3007d, 0xe3b30025, 0xa2c50061, 0x00000000}},  //   हें_, أرض_, ितल्,\n  { {0xd9fb007d, 0x00000000, 0x00000000, 0x00000000}},  //   ्रित_,   ,   ,\n  { {0x442d00c4, 0xdcf50089, 0xb1450088, 0x00000000}},  //   _tce_, ēcīg, інил,\n  { {0xef190373, 0x62882986, 0x442d00f6, 0x00000000}},  //   ами_, _eldo, _uce_,\n  { {0xd9fb0061, 0x70760025, 0xa4d40088, 0x00000000}},  //   ्रात_, تميز_, _хоті,\n  { {0x273b001a, 0xee360b21, 0x00000000, 0x00000000}},  //   mână_, онь_,   ,\n  { {0xf8bf0e24, 0x8c460088, 0xd0190380, 0x00000000}},  //   _oké_, оене, _نقاش_,\n  { {0x2d8b0046, 0x7d1c0010, 0x2247035a, 0x00000000}},  //   ące_, ársa, lenk_,\n  { {0x2d8307a0, 0x25c6007d, 0x10d80025, 0x00000000}},  //   šje_, _वर्ण, _ابلغ_,\n  { {0xc61f0055, 0xefb30014, 0xf8bf0142, 0x00000000}},  //   ন্তা_, _ویژگ, _aké_,\n  { {0x38c801ef, 0x7bcd002d, 0x7afd00d9, 0x00000000}},  //   ماری_, _ezau, apst,\n  { {0x22471265, 0x00000000, 0x00000000, 0x00000000}},  //   henk_,   ,   ,\n  { {0xe1ff0011, 0x628300d9, 0x2b4000f6, 0x00000000}},  // [ce40] _đón_, kkno, _upic_,\n  { {0xd6260025, 0x00000000, 0x00000000, 0x00000000}},  //   تعري,   ,   ,\n  { {0x22470112, 0xa96a3370, 0x44f60014, 0x00000000}},  //   denk_, _тина_, زساز,\n  { {0x657e0085, 0x629a0087, 0x6abc2fe4, 0x00000000}},  //   ryph, _smto, lorf,\n  { {0x133900a1, 0x926a017f, 0x657e0068, 0x00000000}},  //   متوں_, ирка_, syph,\n  { {0x27343987, 0xdce900b9, 0xda0a007d, 0x00000000}},  //   män_, íněn, वरित_,\n  { {0x273400b0, 0xe57a003b, 0x67360205, 0x00000000}},  //   län_, _тзв_, ltyj,\n  { {0xb97b0476, 0xc61f0044, 0xf8bf0026, 0x00000000}},  //   ינצי, ন্দা_, _xké_,\n  { {0xeeaa0088, 0x03a30088, 0x228b0056, 0x00000000}},  //   иток_, _жито, _søke_,\n  { {0x69c1225a, 0x67360006, 0x42230e82, 0x00000000}},  //   ülek, ityj, _одув,\n  { {0x2734021e, 0xc5f30104, 0x7ebd01aa, 0x00000000}},  //   hän_, ודת_, tèpr,\n  { {0xdee6003b, 0x320c00e0, 0x656800d4, 0x00000000}},  //   _доди, _hedy_, _àdhu,\n  { {0x2734021e, 0x6abc068f, 0x320c0027, 0x00000000}},  //   jän_, forf, _kedy_,\n  { {0x2734021e, 0x7afd3988, 0xfc3f013e, 0x00000000}},  //   dän_, rpst, mním_,\n  { {0xfc3f01dc, 0x00000000, 0x00000000, 0x00000000}},  //   lním_,   ,   ,\n  { {0x7afd01c9, 0x5b153989, 0x3aef014a, 0x00000000}},  //   ppst, _емит, _tüp_,\n  { {0xfc3f013e, 0x6283013e, 0x00000000, 0x00000000}},  // [ce50] nním_, ykno,   ,\n  { {0xeb9f0374, 0x00000000, 0x00000000, 0x00000000}},  //   rbød_,   ,   ,\n  { {0xea000011, 0x7aed0051, 0x00000000, 0x00000000}},  //   _hiếu_, _huat,   ,\n  { {0xe3b300a2, 0x7aed16da, 0x78a900ca, 0x00000000}},  //   ورش_, _kuat, čevs,\n  { {0xeab000a2, 0x1304007e, 0x6d5e11ae, 0x00000000}},  //   _سعی_, дзім, _špal,\n  { {0x09df0055, 0xe1f100a6, 0xfc3f0224, 0x00000000}},  //   _ব্যা, رست_, dním_,\n  { {0x91e21e03, 0x7aed0fff, 0x62830168, 0x00000000}},  //   ноше, _luat, rkno,\n  { {0x7ae50004, 0x628300b9, 0x22470173, 0x00000000}},  //   _liht, skno, senk_,\n  { {0x60060147, 0x443f020c, 0x66d00a3c, 0x00000000}},  //   чным_, _ibu_, säke,\n  { {0x76550428, 0x320c0abb, 0x00000000, 0x00000000}},  //   _jazy, _gedy_,   ,\n  { {0x69c50c7b, 0x7f42009d, 0x7655007f, 0x00000000}},  //   _nyhe, _epoq, _mazy,\n  { {0x7aed231c, 0x7655016b, 0xfc3f00b9, 0x00000000}},  //   _buat, _lazy, bním_,\n  { {0x7aed0211, 0x6abc0af1, 0x443f00e7, 0x00000000}},  //   _cuat, torf, _mbu_,\n  { {0x27343987, 0x7aed398a, 0x76550024, 0x00000000}},  //   vän_, _duat, _nazy,\n  { {0x186a0ffa, 0x6d460036, 0x443f0036, 0x00000000}},  //   бави_, łkar, _obu_,\n  { {0x38660211, 0x27340ba4, 0x7aed161f, 0x00000000}},  //   ñor_, tän_, _fuat,\n  { {0x7aed0211, 0xf743072b, 0xa68600ed, 0x00000000}},  // [ce60] _guat, нето, плад,\n  { {0x443f033b, 0x27340a2b, 0x4cd10044, 0x00000000}},  //   _abu_, rän_, _সংযু,\n  { {0x273400b0, 0x67360ecb, 0x20c10048, 0x00000000}},  //   sän_, styj, nóis_,\n  { {0x443f033b, 0x76550146, 0xd4990088, 0x00000000}},  //   _cbu_, _eazy, орі_,\n  { {0x443f0190, 0x833a007c, 0x2a7a00ca, 0x00000000}},  //   _dbu_, счет_, _kopb_,\n  { {0xfc3f0224, 0x67240066, 0x6d432315, 0x00000000}},  //   vním_, mrij, _opna,\n  { {0x1543012b, 0x672400bb, 0x443f0544, 0x00000000}},  //   _перм, lrij, _fbu_,\n  { {0xfc3f00b9, 0x443f0145, 0x7e7807f9, 0x00000000}},  //   tním_, _gbu_, _sovp,\n  { {0x320c0224, 0x7e7801d9, 0x2bde0164, 0x00000000}},  //   _tedy_, _povp, नेमा,\n  { {0x660e001e, 0x2486398b, 0xfc3f00b9, 0x00000000}},  //   _jebk, lkom_, rním_,\n  { {0x672402ae, 0x7aed0149, 0x7ae50b2e, 0x00000000}},  //   hrij, _suat, _riht,\n  { {0x68e6004f, 0x7ae501c2, 0x67240213, 0x00000000}},  //   _nikd, _siht, krij,\n  { {0x60c2002b, 0xfc3f01ca, 0x672400d9, 0x00000000}},  //   _ikom, lník_, jrij,\n  { {0x672402ae, 0xdfa50054, 0x00000000, 0x00000000}},  //   drij, _تحمي,   ,\n  { {0x7ae501c2, 0x60c20066, 0xfc3f0027, 0x00000000}},  //   _viht, _kkom, nník_,\n  { {0x3ebe0010, 0x672401ee, 0xdd8e00a1, 0x00000000}},  //   lott_, frij, _لوڈ_,\n  { {0x6724398c, 0x4735008b, 0x7ae5006c, 0x00000000}},  // [ce70] grij, ьнас, _tiht,\n  { {0xcb1200b6, 0x20c10051, 0x443f398d, 0x00000000}},  //   _שלי_, nóir_, _sbu_,\n  { {0x60c2047c, 0x63a41a13, 0x6d5e0253, 0x00000000}},  //   _okom, úinn, _špaj,\n  { {0x60c20066, 0x20c10051, 0x986500a1, 0x00000000}},  //   _nkom, hóir_, _تیرے_,\n  { {0x3ebe398e, 0x78ad00bb, 0x00000000, 0x00000000}},  //   kott_, mnav,   ,\n  { {0x60c20065, 0x78ad398f, 0xa1c509e6, 0x00000000}},  //   _akom, lnav, мблд,\n  { {0x3ebe2c71, 0x20c10051, 0x00000000, 0x00000000}},  //   dott_, dóir_,   ,\n  { {0x78ad0004, 0x443f0061, 0x24863190, 0x00000000}},  //   nnav, _ubu_, ckom_,\n  { {0x66d00510, 0x66cb005a, 0x644b2b0e, 0x00000000}},  //   läka, yükl, megi,\n  { {0x645900b5, 0x20c10051, 0x3ebe0010, 0x00000000}},  //   ldwi, góir_, gott_,\n  { {0x248d0007, 0x67243990, 0x645901c3, 0x00000000}},  //   _klem_, zrij, odwi,\n  { {0x6459010f, 0x644b0016, 0x442f0145, 0x00000000}},  //   ndwi, negi, ngg_,\n  { {0xeb970001, 0x3ebe04e7, 0xee2e00ed, 0x00000000}},  //   дия_, bott_, _ин_,\n  { {0x60c92fd8, 0x67243991, 0x78ad0009, 0x00000000}},  //   llem, vrij, enav,\n  { {0xb9b5005e, 0x644b1f34, 0x200f0022, 0x00000000}},  //   естъ, kegi, _kegi_,\n  { {0x67243992, 0x7680021e, 0x60c93993, 0x00000000}},  //   trij, _löyt, nlem,\n  { {0xe7370517, 0x07a3012b, 0x644b114f, 0x00000000}},  // [ce80] мет_, ватн, degi,\n  { {0x67243994, 0x200f05f7, 0x2d81006c, 0x00000000}},  //   rrij, _legi_, _ühes_,\n  { {0x60c9011f, 0x2486049c, 0x78ad0d4d, 0x00000000}},  //   klem, tkom_, bnav,\n  { {0x660e3184, 0x3ebe0047, 0x67240119, 0x00000000}},  //   _webk, zott_, prij,\n  { {0x24860007, 0x60c90b16, 0x228b00ea, 0x00000000}},  //   rkom_, dlem, _søka_,\n  { {0x2486049c, 0x60c20036, 0x248d0010, 0x00000000}},  //   skom_, _skom, _elem_,\n  { {0x644b01a3, 0x200f002d, 0xe29700ed, 0x00000000}},  //   begi, _begi_, ќај_,\n  { {0x21200746, 0x60c906f0, 0x30a30783, 0x00000000}},  //   čih_, glem, крыв,\n  { {0x3ebe0047, 0x200f000c, 0x20c10051, 0x00000000}},  //   tott_, _degi_, tóir_,\n  { {0x2ca03995, 0x60c900f4, 0x78ad0340, 0x00000000}},  //   _amid_, alem, znav,\n  { {0x3ebe0039, 0x20c10051, 0x60c2002b, 0x00000000}},  //   rott_, róir_, _tkom,\n  { {0x10160167, 0x60c20020, 0x60c90919, 0x00000000}},  //   _آباد, _ukom, clem,\n  { {0x3ebe0010, 0x78ad1a2d, 0x60c03996, 0x00000000}},  //   pott_, vnav, momm,\n  { {0x60c00010, 0x00000000, 0x00000000, 0x00000000}},  //   lomm,   ,   ,\n  { {0x78ad00bb, 0x442f2b89, 0x768000b0, 0x00000000}},  //   tnav, ygg_, _löys,\n  { {0x58d407ca, 0x60c0010f, 0x31570049, 0x00000000}},  //   вост, nomm, וילן_,\n  { {0x78ad05d5, 0x442f021f, 0x644b000c, 0x00000000}},  // [ce90] rnav, vgg_, vegi,\n  { {0x644b01b5, 0x78ad0056, 0x60c918cf, 0x00000000}},  //   wegi, snav, zlem,\n  { {0x644b022b, 0x60c0001f, 0x78ad3997, 0x00000000}},  //   tegi, komm, pnav,\n  { {0x9475007a, 0x3f840006, 0x7d0d00b4, 0x00000000}},  //   رگزا, kymu_, _łask,\n  { {0x645900b5, 0xa3da0164, 0x60c005d5, 0x00000000}},  //   rdwi, डेल_, domm,\n  { {0x200f0127, 0x644b002d, 0x672d00e7, 0x00000000}},  //   _segi_, segi, muaj,\n  { {0x349524dd, 0x60c91462, 0x200f01a3, 0x00000000}},  //   _завр, tlem, _pegi_,\n  { {0x45d40057, 0x249f020c, 0x60c9009d, 0x00000000}},  //   _росс, _umum_, ulem,\n  { {0x60c90563, 0x200f3998, 0x00000000, 0x00000000}},  //   rlem, _vegi_,   ,\n  { {0xfe710054, 0x60c9014a, 0x2ca0004e, 0x00000000}},  //   ادة_, slem, _smid_,\n  { {0x200f006c, 0x2ca00133, 0x60c000bb, 0x00000000}},  //   _tegi_, _pmid_, bomm,\n  { {0x60c0030a, 0x26c1008a, 0x672d0bd5, 0x00000000}},  //   comm, hoho_, kuaj,\n  { {0xdd8e0167, 0x6d5c0039, 0x26c10161, 0x00000000}},  //   لوی_, årar, koho_,\n  { {0x3f7a0049, 0x291e0091, 0x00000000, 0x00000000}},  //   _מאנס, štam_,   ,\n  { {0xd94300aa, 0x78a408b2, 0x3ea900b9, 0x00000000}},  //   лери, tiiv, čitě_,\n  { {0x33260146, 0x3ea5010e, 0x00000000, 0x00000000}},  //   yrox_, lilt_,   ,\n  { {0x672d1f7c, 0x29183999, 0xdbd2006c, 0x00000000}},  // [cea0] guaj, ssra_, nüüm,\n  { {0x78bb1435, 0xb7d7023c, 0x3ea5006c, 0x00000000}},  //   čuva, رولا_, nilt_,\n  { {0x1a9b00bd, 0x69c1399a, 0x4a9b0049, 0x00000000}},  //   _זייע, ület, _זייג,\n  { {0x3326399b, 0x3ea513d8, 0xb4aa0061, 0x00000000}},  //   trox_, hilt_, गचे_,\n  { {0x3ea50039, 0x93f3007e, 0x00000000, 0x00000000}},  //   kilt_, упіц,   ,\n  { {0x2d850190, 0x3326004a, 0xd1300025, 0x00000000}},  //   kyle_, rrox_, لمت_,\n  { {0xd5b2031d, 0x60c001d6, 0x3ea5010e, 0x00000000}},  //   _صفر_, tomm, dilt_,\n  { {0x653b0049, 0x33260133, 0x3f840006, 0x00000000}},  //   _מעלד, prox_, tymu_,\n  { {0x60c00056, 0x4ea6005c, 0x3ce90082, 0x00000000}},  //   romm, ерна, _riav_,\n  { {0x60c026d8, 0xaca700a1, 0x3ea5399c, 0x00000000}},  //   somm, کھتے_, gilt_,\n  { {0xc693009b, 0x291e0091, 0x4c95025f, 0x00000000}},  //   ראת_, štaj_, винс,\n  { {0xe1ff0011, 0x66cb0d88, 0x00000000, 0x00000000}},  //   _đói_, tükk,   ,\n  { {0x9f340088, 0xab8701ff, 0x3ea501bf, 0x00000000}},  //   _релі, хунк, bilt_,\n  { {0xdfcf0025, 0x628a00ea, 0x2d85009d, 0x00000000}},  //   _ايه_, nkfo, byle_,\n  { {0x3cea03d7, 0x9e6500a1, 0x2d850085, 0x00000000}},  //   _घंटे_, _جانن, cyle_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x66d00039, 0x628a00ea, 0x7d1a01c5, 0x00000000}},  // [ceb0] räkn, kkfo, lsts,\n  { {0xc13b0011, 0x672d0065, 0xd3710014, 0x00000000}},  //   _cướp_, ruaj, یها_,\n  { {0x09df0055, 0x7d1a010f, 0x26c108c1, 0x00000000}},  //   _ব্রা, nsts, roho_,\n  { {0xe4e40106, 0x2bde0309, 0x6aa700b5, 0x00000000}},  //   гічн, नेवा, lijf,\n  { {0x672d0065, 0x69d80142, 0x00000000, 0x00000000}},  //   quaj, _úver,   ,\n  { {0x7d1a0292, 0x59d80061, 0x00000000, 0x00000000}},  //   ksts, णेकर,   ,\n  { {0x45d4005e, 0xd49b1deb, 0x00000000, 0x00000000}},  //   _борс, _ера_,   ,\n  { {0x42d10055, 0xa4d50099, 0x44f701df, 0x00000000}},  //   াদেশ, _робі, _iç_,\n  { {0x3ea50056, 0x91f50082, 0x3f8b0142, 0x00000000}},  //   tilt_, _các, ácu_,\n  { {0x2d850011, 0x4d6502e9, 0x81e60044, 0x00000000}},  //   tyle_, вков, পড়_,\n  { {0xc5f20104, 0x7d1a0089, 0x3ea5006c, 0x00000000}},  //   ידי_, gsts, rilt_,\n  { {0xdca60c96, 0x3ea5010e, 0x00000000, 0x00000000}},  //   тами, silt_,   ,\n  { {0x7d1a0c7d, 0x3ea5399d, 0x2901399e, 0x00000000}},  //   asts, pilt_, _atha_,\n  { {0xc33201ce, 0x66d000b0, 0x6f1b01a2, 0x00000000}},  //   בוך_, väko, msuc,\n  { {0x6f1b01a2, 0x18a600e2, 0x00000000, 0x00000000}},  //   lsuc, вавм,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6f1b010f, 0x69c1014a, 0x44f701df, 0x00000000}},  // [cec0] nsuc, üler, _aç_,\n  { {0x6aa700bb, 0x06b50044, 0x66170032, 0x00000000}},  //   cijf, _জীবি, gaxk,\n  { {0xd82600ed, 0x6f1b010f, 0x98ad014a, 0x00000000}},  //   _идни, hsuc, _çoğu_,\n  { {0x2b490006, 0xe475007e, 0x00000000, 0x00000000}},  //   _ypac_, лучэ,   ,\n  { {0x26d81ad0, 0xe3b20070, 0xe29a01ee, 0x00000000}},  //   _thro_, جرا_, мад_,\n  { {0x6603041f, 0x7d1a0146, 0x00000000, 0x00000000}},  //   _впра, ysts,   ,\n  { {0x628a1205, 0x91f50082, 0x00000000, 0x00000000}},  //   rkfo, _sác,   ,\n  { {0x765c023a, 0x51830888, 0x8557009b, 0x00000000}},  //   _hary, руша, _בשלב_,\n  { {0x765c020c, 0x6d4d012d, 0x2f13007e, 0x00000000}},  //   _kary, _ćaaa, адыё,\n  { {0xd33700b3, 0x66cb006c, 0x00000000, 0x00000000}},  //   _ברמה_, tüki,   ,\n  { {0x765c399f, 0xf297009b, 0x91e60920, 0x00000000}},  //   _mary, _שכבר_, _роже,\n  { {0x4fc602b0, 0x7d1a054e, 0x64420a65, 0x00000000}},  //   _исла, rsts, nfoi,\n  { {0x7d1a01a2, 0x2bd80061, 0x98a30036, 0x00000000}},  //   ssts, _ठरणा, nują_,\n  { {0x765c010a, 0x6f0201f3, 0xbea301ee, 0x00000000}},  //   _nary, _itoc, _качк,\n  { {0x63be0036, 0x3ed90049, 0x6aa700bb, 0x00000000}},  //   ępny, _אַקא, rijf,\n  { {0x6d580006, 0x2aad0243, 0x98a30036, 0x00000000}},  //   _isva, džbe_, kują_,\n  { {0x765c049a, 0xd7d5003b, 0x00000000, 0x00000000}},  // [ced0] _bary, ужањ,   ,\n  { {0xba55098c, 0x765c005b, 0xa507007e, 0x00000000}},  //   _свој, _cary, вядл,\n  { {0x765c010a, 0x645b02d0, 0x00000000, 0x00000000}},  //   _dary, _paui,   ,\n  { {0x6f0239a0, 0xa31901ab, 0x00000000, 0x00000000}},  //   _otoc, ежду_,   ,\n  { {0x4c9c00a3, 0x6d5d0089, 0x645b00d9, 0x00000000}},  //   ובאו, āsai, _vaui,\n  { {0x6d4a0030, 0x6d580091, 0xfb160049, 0x00000000}},  //   _opfa, _osva, אַקט_,\n  { {0x81cb0055, 0xc6920049, 0x6f020016, 0x00000000}},  //   রেন_, _פאל_, _atoc,\n  { {0x661539a1, 0x30190025, 0x765c271d, 0x00000000}},  //   _hezk, رتبة_, _zary,\n  { {0x6d58016c, 0x6615002d, 0x765c0045, 0x00000000}},  //   _asva, _kezk, _yary,\n  { {0x6f1b001f, 0x291e007f, 0x00000000, 0x00000000}},  //   rsuc, štai_,   ,\n  { {0x273d0011, 0xd0110025, 0x6f1b01a2, 0x00000000}},  //   hìn_, _هلا_, ssuc,\n  { {0x7bc10279, 0x66150032, 0x00000000, 0x00000000}},  //   ğlun, _lezk,   ,\n  { {0x6281149d, 0x4fa401fb, 0x6d5e00b9, 0x00000000}},  //   _kolo, _київ, _špat,\n  { {0x62810145, 0x6615013e, 0xc3320049, 0x00000000}},  //   _jolo, _nezk, זוך_,\n  { {0x62810066, 0x98a30036, 0x291e39a2, 0x00000000}},  //   _molo, zują_, éta_,\n  { {0x48c40055, 0x63bb005f, 0x88e6025f, 0x00000000}},  //   ্দ্র, _oxun, ужбе,\n  { {0x7c24002a, 0x66151712, 0x99980006, 0x00000000}},  // [cee0] _idir, _bezk, terų_,\n  { {0xa68301c0, 0x62810052, 0x00000000, 0x00000000}},  //   блуд, _nolo,   ,\n  { {0x765c01aa, 0x63bb006b, 0xd0190036, 0x00000000}},  //   _vary, _axun, kań_,\n  { {0xa85602a8, 0x98a300b4, 0xb4c001f5, 0x00000000}},  //   _стој, tują_, ुते_,\n  { {0x386039a3, 0x62810207, 0x644200f4, 0x00000000}},  //   mdir_, _bolo, rfoi,\n  { {0x628139a4, 0x386039a5, 0xc69200a1, 0x00000000}},  //   _colo, ldir_, _اِس_,\n  { {0x628101d9, 0x6f020aa4, 0x98a30036, 0x00000000}},  //   _dolo, _stoc, sują_,\n  { {0x3860009f, 0xf99300b3, 0x3e8100b9, 0x00000000}},  //   ndir_, מרו_, _létě_,\n  { {0x6281000d, 0x44240082, 0x38600085, 0x00000000}},  //   _folo, _idm_, idir_,\n  { {0xa2e61ae1, 0x62810127, 0x7c240145, 0x00000000}},  //   _созд, _golo, _adir,\n  { {0x3860005f, 0x64bc01ee, 0x44240145, 0x00000000}},  //   kdir_, pčid, _kdm_,\n  { {0xd00f0447, 0xfbcd0044, 0x00000000, 0x00000000}},  //   _فلم_, রেফত,   ,\n  { {0x386039a6, 0x69c0014a, 0x7c240016, 0x00000000}},  //   ddir_, şmel, _ddir,\n  { {0x8f9b0476, 0x7c2402b9, 0x6d5800e7, 0x00000000}},  //   _אידי, _edir, _tsva,\n  { {0x442413e1, 0x6d580107, 0x661500ca, 0x00000000}},  //   _odm_, _usva, _rezk,\n  { {0x69470091, 0x38601ce1, 0x00000000, 0x00000000}},  //   jčeš, gdir_,   ,\n  { {0x3a3a00f6, 0x2eee0068, 0x00000000, 0x00000000}},  // [cef0] _fcpp_, _kiff_,   ,\n  { {0x442439a7, 0x386006c2, 0xd5bb132e, 0x00000000}},  //   _adm_, adir_, нсе_,\n  { {0x3860006b, 0x628110d3, 0xf48700e2, 0x00000000}},  //   bdir_, _rolo, лудн,\n  { {0x44240bd6, 0x297a01ce, 0xa7fb008e, 0x00000000}},  //   _cdm_, _סטרא, _bañe,\n  { {0x62810428, 0x862500a1, 0xa7fb008e, 0x00000000}},  //   _polo, _نکال, _cañe,\n  { {0xe8e0001d, 0x8afc0049, 0xd0190036, 0x00000000}},  //   _đức_, עהוי, wań_,\n  { {0x62811733, 0x44240030, 0xd0190036, 0x00000000}},  //   _volo, _fdm_, tań_,\n  { {0x5f75023c, 0x2eee005b, 0x628100b4, 0x00000000}},  //   لاخر, _aiff_, _wolo,\n  { {0x62810653, 0xef160783, 0x98b80089, 0x00000000}},  //   _tolo, амы_, ntrā_,\n  { {0x99980047, 0x6298010f, 0x3860005d, 0x00000000}},  //   zerű_, chvo, zdir_,\n  { {0x2eee05d8, 0x672d0161, 0x3860019a, 0x00000000}},  //   _diff_, hraj, ydir_,\n  { {0x672d0059, 0x64bc06ac, 0x68ef005b, 0x00000000}},  //   kraj, mčic, _nicd,\n  { {0x6449002a, 0x5f770151, 0x7ff41095, 0x00000000}},  //   _mbei, _حاضر, _اسما,\n  { {0x6f09008e, 0x8f9a009b, 0xb69b001a, 0x00000000}},  //   mpec, _ביני, _stân,\n  { {0x09e602b0, 0x3860006b, 0x64bc016e, 0x00000000}},  //   ровн, tdir_, nčic,\n  { {0xf7720054, 0x6d410039, 0x7c240026, 0x00000000}},  //   ياء_, mtla, _udir,\n  { {0x386001f6, 0x672d0059, 0xdd9100a1, 0x00000000}},  // [cf00] rdir_, graj, _دوں_,\n  { {0x644939a8, 0x4424023a, 0xaa46003b, 0x00000000}},  //   _abei, _sdm_, _теол,\n  { {0x6d4139a9, 0x64bc10ec, 0x4424175f, 0x00000000}},  //   ntla, jčic, _pdm_,\n  { {0x0446058f, 0x6d410270, 0x672d0091, 0x00000000}},  //   редн, itla, braj,\n  { {0x68e4006c, 0x6d41006c, 0x44240068, 0x00000000}},  //   mmid, htla, _vdm_,\n  { {0xd36f0025, 0x68e4006c, 0x6d41006b, 0x00000000}},  //   بهه_, lmid, ktla,\n  { {0x5bd30201, 0x6493047f, 0xddc80036, 0x00000000}},  //   _सर्व, _için, zedł,\n  { {0x8f4602f0, 0x68e40116, 0x78b60232, 0x00000000}},  //   аход, nmid, nnyv,\n  { {0xa067025f, 0x6d410036, 0x749b0097, 0x00000000}},  //   рања_, etla, _סימפ,\n  { {0x26c70091, 0x68e404fb, 0x3ea70087, 0x00000000}},  //   čnog_, hmid, _cmnt_,\n  { {0x85f70049, 0x24840e42, 0xac1901ee, 0x00000000}},  //   יציע_, _komm_, лону_,\n  { {0x2366016c, 0x2aad01ed, 0x98a300b4, 0x00000000}},  //   ovoj_, džba_, buję_,\n  { {0x2eee00ea, 0xa3da0061, 0x6d4139aa, 0x00000000}},  //   _tiff_, डेच_, atla,\n  { {0x68e4006c, 0xadbc007e, 0x248400d9, 0x00000000}},  //   emid, _палi, _lomm_,\n  { {0x2bd302fb, 0x3eac0190, 0xddc8012d, 0x00000000}},  //   _सरका, midt_, ljdž,\n  { {0x8894007c, 0x1410013d, 0x7d7b0049, 0x00000000}},  //   оисх, ारोह_, _ינוו,\n  { {0xaa890151, 0x68ef0279, 0x2d8c05a6, 0x00000000}},  // [cf10] _منظم_, _vicd, lyde_,\n  { {0x672d022b, 0x68e4010e, 0x64491e28, 0x00000000}},  //   rraj, amid, _sbei,\n  { {0x98b80089, 0xbdf80044, 0x672d01b1, 0x00000000}},  //   strā_, _আজাদ_, sraj,\n  { {0x24840d46, 0xb4b10061, 0x00000000, 0x00000000}},  //   _comm_, टचे_,   ,\n  { {0xe3b0006d, 0x08760049, 0x6f090133, 0x00000000}},  //   وره_, _הערט_, xpec,\n  { {0x78ad0006, 0x6d41006b, 0x2fcf0479, 0x00000000}},  //   liav, ytla, _rygg_,\n  { {0xb5e50055, 0xf5950054, 0x6d41006b, 0x00000000}},  //   _প্রচ, _الأج, xtla,\n  { {0x19b800b6, 0xf3f9001a, 0x212900ca, 0x00000000}},  //   יפור_, _faţa_, čah_,\n  { {0x200d010f, 0x63a40051, 0x439410f3, 0x00000000}},  //   rbei_, úint, _датс,\n  { {0x78ad0207, 0x6f09008a, 0x2ca90022, 0x00000000}},  //   hiav, rpec, _amad_,\n  { {0x2ca90022, 0xddd8112e, 0x2d9101dc, 0x00000000}},  //   _bmad_, _povš, áze_,\n  { {0x6d41049d, 0xc18c0049, 0x3b0a00ed, 0x00000000}},  //   rtla, _שטאָ, лемо_,\n  { {0x6d410004, 0x64bc0dc6, 0x78ad39ab, 0x00000000}},  //   stla, nčia, diav,\n  { {0x64bc0006, 0x60c92b9e, 0x2ca9010e, 0x00000000}},  //   ičia, loem, _emad_,\n  { {0x236607ac, 0xfaa301e0, 0xfce60256, 0x00000000}},  //   zvoj_, чаро, _локо,\n  { {0x60c90250, 0x98a3007c, 0x78ad007f, 0x00000000}},  //   noem, писе, giav,\n  { {0xac97031d, 0x3f8d2daf, 0x64bc0142, 0x00000000}},  // [cf20] _دنيا_, nyeu_, jčia,\n  { {0x68e41e7f, 0x60c90007, 0xe6170454, 0x00000000}},  //   smid, hoem, йду_,\n  { {0x64bc0006, 0x452a02b0, 0x2484010e, 0x00000000}},  //   ečia, ужен_, _pomm_,\n  { {0x291e010a, 0x93cb00a1, 0x00000000, 0x00000000}},  //   štas_, گامہ_,   ,\n  { {0x60c90030, 0xcc3b0049, 0x649301df, 0x00000000}},  //   doem, רענט, _içil,\n  { {0xa30b00a1, 0x00000000, 0x00000000, 0x00000000}},  //   ارنے_,   ,   ,\n  { {0x321c0428, 0x361b0097, 0x81cb0044, 0x00000000}},  //   ravy_, _תולד, রেস_,\n  { {0x831a0084, 0x661e07e7, 0x63a40048, 0x00000000}},  //   _مقرر_, lapk, úins,\n  { {0xdfd00054, 0x93fb0097, 0x08770049, 0x00000000}},  //   بية_, _תלמי, מעקט_,\n  { {0xa7fb0211, 0x2d9e001f, 0xb87b0011, 0x00000000}},  //   _maña, tzte_, _khíc,\n  { {0x3eac0637, 0xf8c80316, 0x60c901c3, 0x00000000}},  //   ridt_, लवाय, boem,\n  { {0xb87b0051, 0x2d8c39ac, 0x2d9e01a2, 0x00000000}},  //   _mhíc, ryde_, rzte_,\n  { {0x661e0169, 0xd90f00a1, 0x78ad010e, 0x00000000}},  //   kapk, کیج_, viav,\n  { {0xdd940783, 0x6493026d, 0x00000000, 0x00000000}},  //   _малы, _açil,   ,\n  { {0x66d000b0, 0x661e008a, 0x386239ad, 0x00000000}},  //   näku, dapk, _bakr_,\n  { {0xa7fb04de, 0xb715005e, 0x64bc0006, 0x00000000}},  //   _baña, ждащ, yčia,\n  { {0xa7fb008e, 0x78ad1afb, 0x69c801a2, 0x00000000}},  // [cf30] _caña, riav, üder,\n  { {0xa7fb008e, 0x6c3502fd, 0x3ce0012d, 0x00000000}},  //   _daña, _افکا, _zhiv_,\n  { {0xb87b2088, 0x291e183b, 0xf3f902dc, 0x00000000}},  //   _chíc, štar_, анеш_,\n  { {0xb87b0051, 0x00000000, 0x00000000, 0x00000000}},  //   _dhíc,   ,   ,\n  { {0x98b8001a, 0x083a0049, 0x78bd00d9, 0x00000000}},  //   stră_, _דערל, _ijsv,\n  { {0x64bc0dc6, 0x661e04cb, 0x6493005a, 0x00000000}},  //   rčia, capk, _içim,\n  { {0x91e239ae, 0x64bc39af, 0xb495003b, 0x00000000}},  //   моше, sčia, _дивљ,\n  { {0x3f42009f, 0x64bc0dc6, 0x20190b22, 0x00000000}},  //   fðu_, lčin, úsi_,\n  { {0x443f0145, 0x3f42000c, 0x60c90112, 0x00000000}},  //   _icu_, gðu_, roem,\n  { {0x64bc0142, 0x92b703d6, 0xfd4916e8, 0x00000000}},  //   nčin, _احرا, азок_,\n  { {0xa2c6006e, 0x226400b9, 0x66d00039, 0x00000000}},  //   िवर्, řská_, mäkt,\n  { {0x25e1013d, 0x1bea0954, 0xceb80036, 0x00000000}},  //   _करनी_, идни_, anę_,\n  { {0x98b8007f, 0xe79c0095, 0x00000000, 0x00000000}},  //   ntrą_, düğü,   ,\n  { {0x64bc2479, 0x201f008a, 0x7bda013f, 0x00000000}},  //   jčin, laui_, ətul,\n  { {0x81cb08b7, 0xada50057, 0x1987031b, 0x00000000}},  //   রের_, _файл, обри_,\n  { {0xa7fb008e, 0x7d0500e5, 0x00000000, 0x00000000}},  //   _paña, _cîrţ,   ,\n  { {0xe73a07ca, 0x7e6339b0, 0x661e04cb, 0x00000000}},  // [cf40] рез_, _kanp, tapk,\n  { {0x443f002a, 0xd62a007c, 0x6f040048, 0x00000000}},  //   _acu_, роже_, _éice,\n  { {0x661e0149, 0x00000000, 0x00000000, 0x00000000}},  //   rapk,   ,   ,\n  { {0x7e63002d, 0x938a00ed, 0x443f00e5, 0x00000000}},  //   _lanp, исла_, _ccu_,\n  { {0x66e6007e, 0x6609014a, 0x443f39b1, 0x00000000}},  //   _мома, _şeke, _dcu_,\n  { {0x443f0066, 0xb87b001d, 0x672405fa, 0x00000000}},  //   _ecu_, _thíc, msij,\n  { {0xd1300025, 0xca7b0097, 0x67240e07, 0x00000000}},  //   رمة_, ינסט, lsij,\n  { {0x661c011f, 0x7e630250, 0x443f0022, 0x00000000}},  //   _herk, _aanp, _gcu_,\n  { {0x661c39b2, 0x672411cb, 0x81cb0044, 0x00000000}},  //   _kerk, nsij, রেল_,\n  { {0x3f42009f, 0x63a20197, 0x661c01ed, 0x00000000}},  //   rðu_, mzon, _jerk,\n  { {0x63a20030, 0x64bc010a, 0x81e40044, 0x00000000}},  //   lzon, nčio, ভুজ_,\n  { {0x06de0044, 0xceb80a67, 0x67240091, 0x00000000}},  //   _ভূমি, snę_, ksij,\n  { {0x63a20fa9, 0x69de002d, 0x7d0d00b9, 0x00000000}},  //   nzon, _azpe, _čase,\n  { {0x6288003f, 0x63a20026, 0x661c00b4, 0x00000000}},  //   _jodo, izon, _nerk,\n  { {0x62880325, 0x2d830030, 0x48ab007e, 0x00000000}},  //   _modo, øjet_, атам_,\n  { {0x63a200d9, 0x7e630de2, 0x628800b4, 0x00000000}},  //   kzon, _zanp, _lodo,\n  { {0x661c020c, 0x63a200b5, 0x64bc10b1, 0x00000000}},  // [cf50] _berk, jzon, tčin,\n  { {0x63a20046, 0x6288001e, 0x7bdf0211, 0x00000000}},  //   dzon, _nodo, _izqu,\n  { {0x661c014a, 0x63a239b3, 0x64bc0466, 0x00000000}},  //   _derk, ezon, rčin,\n  { {0x236d39b4, 0xb4d502d2, 0x18350049, 0x00000000}},  //   _prej_, हते_, _צאָל_,\n  { {0x62880027, 0x64bc1890, 0x66d00039, 0x00000000}},  //   _bodo, mčil, täkt,\n  { {0x62880675, 0x661c007f, 0x443f0022, 0x00000000}},  //   _codo, _gerk, _wcu_,\n  { {0x6288315e, 0x7e630263, 0x45d40245, 0x00000000}},  //   _dodo, _ranp, _жорс,\n  { {0x63a21ead, 0x64bc0387, 0x236d361a, 0x00000000}},  //   bzon, nčil, _trej_,\n  { {0x63a20046, 0x628839b5, 0x7e630032, 0x00000000}},  //   czon, _fodo, _panp,\n  { {0x645939b6, 0x66050203, 0x479c009b, 0x00000000}},  //   lewi, nchk, ייחס,\n  { {0x7e63156f, 0xfbc90104, 0x2006005b, 0x00000000}},  //   _vanp, _עת_, _ffoi_,\n  { {0x64590016, 0x62830825, 0x7e6300d9, 0x00000000}},  //   newi, ljno, _wanp,\n  { {0x7e6339b7, 0xee2e0121, 0xaff60025, 0x00000000}},  //   _tanp, _пн_, _عفوا_,\n  { {0xa7fb0211, 0x64bc0006, 0x9e640088, 0x00000000}},  //   _baño, yčio, _овід,\n  { {0x63a201bc, 0xa7fb008e, 0xe7f8013d, 0x00000000}},  //   zzon, _caño, ंखला_,\n  { {0xa7fb0211, 0x6e2100d4, 0xb4d50061, 0x00000000}},  //   _daño, lalb, हतो_,\n  { {0x661c117c, 0x98a30517, 0x64590016, 0x00000000}},  // [cf60] _perk, хите, dewi,\n  { {0x67240ebc, 0x6e210030, 0xddc10047, 0x00000000}},  //   rsij, nalb, lelő,\n  { {0x628839b8, 0x67240acc, 0x645901c3, 0x00000000}},  //   _rodo, ssij, fewi,\n  { {0x661c2295, 0x645901a0, 0x628839b9, 0x00000000}},  //   _werk, gewi, _sodo,\n  { {0x661c020c, 0xd7f20025, 0x6e21010a, 0x00000000}},  //   _terk, _سكس_, kalb,\n  { {0x63a2326f, 0x6e2100ca, 0xf655007c, 0x00000000}},  //   rzon, jalb, _отсю,\n  { {0x63a20e17, 0x6f0b001c, 0x81d40055, 0x00000000}},  //   szon, _atgc, সেন_,\n  { {0x645939ba, 0x25e1013d, 0x63a239bb, 0x00000000}},  //   cewi, _करती_, pzon,\n  { {0x62880977, 0x201d39bc, 0xa87b0049, 0x00000000}},  //   _todo, _dewi_, מאקר,\n  { {0x6e21010a, 0x81cb0044, 0x00000000, 0x00000000}},  //   galb, রেই_,   ,\n  { {0x7bd60022, 0x00000000, 0x00000000, 0x00000000}},  //   _ayyu,   ,   ,\n  { {0xd197009b, 0xddc10010, 0xeb9f1565, 0x00000000}},  //   _מכבי_, gelő, dbør_,\n  { {0x6e2134d4, 0xa0c90025, 0x2d830030, 0x00000000}},  //   balb, _بذلك_, øjer_,\n  { {0xb87b00ad, 0x64590036, 0x2ec70309, 0x00000000}},  //   _chín, zewi, रकृत,\n  { {0xb89500a1, 0xa9c400a5, 0x58d500e2, 0x00000000}},  //   وارڈ, естк, довт,\n  { {0x321e00b9, 0x64bc016e, 0x50cc0204, 0x00000000}},  //   _lety_, učil, ाविष,\n  { {0x7c2d1b94, 0xb90402fb, 0x00000000, 0x00000000}},  // [cf70] _idar, _पी_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6d4806ed, 0x64bc0059, 0x66050b19, 0x00000000}},  //   ntda, mčij, rchk,\n  { {0x6605010f, 0x23b5023c, 0xbb4808d4, 0x00000000}},  //   schk, وماس, _بلین_,\n  { {0x645939bd, 0x626501ee, 0x321e05d2, 0x00000000}},  //   rewi, двла, _bety_,\n  { {0x3869000c, 0x7af701d5, 0x66d00039, 0x00000000}},  //   ldar_, _jixt, säkr,\n  { {0x776d027b, 0x7af725b0, 0x443d0009, 0x00000000}},  //   lvax, _mixt, pgw_,\n  { {0x386904be, 0x7c2d0065, 0xd498007e, 0x00000000}},  //   ndar_, _ndar, _еру_,\n  { {0x442d1b6d, 0x6e2103f1, 0x533400ed, 0x00000000}},  //   _ide_, talb, _петт,\n  { {0x3eae0009, 0x7c2d0d58, 0x7af7002b, 0x00000000}},  //   _cmft_, _adar, _nixt,\n  { {0x442d004f, 0x6d48001c, 0x6da500ed, 0x00000000}},  //   _kde_, gtda, фина,\n  { {0x442d00b9, 0x6e211fc4, 0xb87b0051, 0x00000000}},  //   _jde_, salb, _shín,\n  { {0x7c2d018e, 0x38691b29, 0x442d214e, 0x00000000}},  //   _ddar, ddar_, _mde_,\n  { {0xb87b002a, 0x7c2d0beb, 0xddc10010, 0x00000000}},  //   _bhío, _edar, selő,\n  { {0x442d042e, 0xa967005e, 0xf2d201ce, 0x00000000}},  //   _ode_, мира_, דעם_,\n  { {0xb87b002a, 0x442d2cc3, 0x7f490129, 0x00000000}},  //   _dhío, _nde_, oteq,\n  { {0x4b26007e, 0x7f490886, 0xb87b0082, 0x00000000}},  // [cf80] _ўмов, nteq, _thín,\n  { {0x7c2d197c, 0x442d0127, 0xb87b0051, 0x00000000}},  //   _zdar, _ade_, _fhío,\n  { {0x442d211e, 0x00000000, 0x00000000, 0x00000000}},  //   _bde_,   ,   ,\n  { {0x69c0011f, 0x61fa0145, 0x00000000, 0x00000000}},  //   şmes, _sgtl,   ,\n  { {0x442d0016, 0xb87b0051, 0xf4870123, 0x00000000}},  //   _dde_, _mhíl, بالی,\n  { {0x442d0263, 0x68e9002b, 0xe29702dc, 0x00000000}},  //   _ede_, ċede, мач_,\n  { {0x442d0d3f, 0x6d4839be, 0x64bc0e07, 0x00000000}},  //   _fde_, xtda, nčik,\n  { {0x442d003b, 0xd0100025, 0xb89b0049, 0x00000000}},  //   _gde_, دلة_, ַביש,\n  { {0xc2460098, 0x2ef401e0, 0x2486012d, 0x00000000}},  //   _онак, нзир, mjom_,\n  { {0x442d0224, 0x24860091, 0x6d480056, 0x00000000}},  //   _zde_, ljom_, ttda,\n  { {0x2d980027, 0x600a041f, 0x442d0190, 0x00000000}},  //   áre_, _днем_, _yde_,\n  { {0x6d4839bf, 0x24860091, 0x7af700ab, 0x00000000}},  //   rtda, njom_, _sixt,\n  { {0xfc3f002a, 0x6d4800bb, 0x386939c0, 0x00000000}},  //   rgí_, stda, vdar_,\n  { {0xda7b01ff, 0xb87b0048, 0x00000000, 0x00000000}},  //   цям_, _phío,   ,\n  { {0xa2b103d7, 0x64bc0e54, 0x3869006b, 0x00000000}},  //   _अगस्, rčij, tdar_,\n  { {0x7c2d0209, 0xdd8e026c, 0x81cb0044, 0x00000000}},  //   _udar, _موڈ_, রেক_,\n  { {0x3869206d, 0x7af701d5, 0x24860107, 0x00000000}},  // [cf90] rdar_, _tixt, djom_,\n  { {0x76d50054, 0xb87b0051, 0x38690022, 0x00000000}},  //   رياض, _thío, sdar_,\n  { {0x442d08e3, 0x38690093, 0x4420007e, 0x00000000}},  //   _pde_, pdar_, кi_,\n  { {0xb69b001a, 0x442d116c, 0x60c2016e, 0x00000000}},  //   _atât, _qde_, _njom,\n  { {0x68ed023a, 0xf1b80066, 0x442d01a2, 0x00000000}},  //   mmad, _reġa_, _vde_,\n  { {0x290103dd, 0x68ed014a, 0x216902d3, 0x00000000}},  //   _kuha_, lmad, зики_,\n  { {0x2419008b, 0x290100b0, 0x68ed010e, 0x00000000}},  //   _новы_, _juha_, omad,\n  { {0x442d0030, 0x68ed005d, 0x2901199a, 0x00000000}},  //   _ude_, nmad, _muha_,\n  { {0xda1f0061, 0x68ed00c4, 0x2901011c, 0x00000000}},  //   भरात_, imad, _luha_,\n  { {0x0d8500ed, 0x68ed39c1, 0x629801a2, 0x00000000}},  //   елон, hmad, ckvo,\n  { {0x68ed1a9d, 0x22450009, 0xa6e2000c, 0x00000000}},  //   kmad, _iclk_, íðin,\n  { {0x859a00b3, 0x80270014, 0x1eea00a1, 0x00000000}},  //   פשרו, _آرام, _ہونی_,\n  { {0x0c23007e, 0xf3f900e5, 0x68ed00d2, 0x00000000}},  //   ымян, _baţi_, dmad,\n  { {0x60db006c, 0x249f2067, 0x68ed010e, 0x00000000}},  //   llum, _llum_, emad,\n  { {0xf3f90035, 0x22450009, 0x3a210203, 0x00000000}},  //   _daţi_, _mclk_, _dehp_,\n  { {0x248d01bb, 0x29010091, 0x68ed0058, 0x00000000}},  //   _noem_, _duha_, gmad,\n  { {0x7c2639c2, 0x60db0052, 0x17c70088, 0x00000000}},  // [cfa0] makr, ilum, егти_,\n  { {0xe5a6026b, 0x7c260232, 0x60db01a2, 0x00000000}},  //   низи, lakr, hlum,\n  { {0x60db0127, 0x249f008a, 0x29010009, 0x00000000}},  //   klum, _blum_, _guha_,\n  { {0x24070726, 0x248d0026, 0x00000000, 0x00000000}},  //   енци_, _coem_,   ,\n  { {0x7cfe001e, 0xe3b20445, 0x248d39c3, 0x00000000}},  //   _vīri, درا_, _doem_,\n  { {0x7d0d02db, 0x2ca0005b, 0x00000000, 0x00000000}},  //   _časn, _llid_,   ,\n  { {0x55e31123, 0x64a60099, 0x2ca00004, 0x00000000}},  //   _борб, _зава, _olid_,\n  { {0x60db000c, 0x62980006, 0x7c2616eb, 0x00000000}},  //   glum, skvo, jakr,\n  { {0x59d2024c, 0x64a3003b, 0x44260091, 0x00000000}},  //   _दुसर, _сата, mao_,\n  { {0x2ef8000c, 0xddd800b9, 0xe357009b, 0x00000000}},  //   örf_, _zavř, _אשמח_,\n  { {0xb6370049, 0x5fe20061, 0x01360137, 0x00000000}},  //   ערטס_, _परवल, _سعاد,\n  { {0x442609bd, 0x64420e33, 0x7b670264, 0x00000000}},  //   nao_, ngoi, нтге,\n  { {0x7ac7003b, 0xc3140044, 0x2901073a, 0x00000000}},  //   есве, _সিডি_, _suha_,\n  { {0x81cb0044, 0x442601ed, 0x290139c4, 0x00000000}},  //   রেও_, hao_, _puha_,\n  { {0x442639c5, 0x2ca00991, 0x68ed005d, 0x00000000}},  //   kao_, _flid_, tmad,\n  { {0x26c71c61, 0x44260119, 0x58d40131, 0x00000000}},  //   čnom_, jao_, гост,\n  { {0x44260119, 0x248d01d6, 0x00000000, 0x00000000}},  // [cfb0] dao_, _roem_,   ,\n  { {0x68ed0ee4, 0x81cb0044, 0xe8e00082, 0x00000000}},  //   smad, রেট_, _đục_,\n  { {0x249f3196, 0xceb300a3, 0x442600e7, 0x00000000}},  //   _plum_, ניע_, fao_,\n  { {0x44260119, 0xf4840545, 0x00000000, 0x00000000}},  //   gao_, лучн,   ,\n  { {0xa3cb013d, 0x6f021746, 0x290e0023, 0x00000000}},  //   _रुख_, _nuoc, _çfar_,\n  { {0xc61b0055, 0x6d5819a4, 0x4426012d, 0x00000000}},  //   _ঢাকা_, _opva, aao_,\n  { {0x442639c6, 0x7d0d0410, 0xa156012b, 0x00000000}},  //   bao_, _časo, вају_,\n  { {0x442615f7, 0x249f008a, 0xe610009e, 0x00000000}},  //   cao_, _ulum_, _نشہ_,\n  { {0xc6240055, 0x6f0202cd, 0x6d580d90, 0x00000000}},  //   _পাতা_, _cuoc, _apva,\n  { {0xf1a70216, 0x2ca00875, 0x60db000c, 0x00000000}},  //   _прен, _slid_, slum,\n  { {0xdca60057, 0x4df4041f, 0x60db014a, 0x00000000}},  //   вани, ляют, plum,\n  { {0x6f020207, 0x6609014a, 0x657501ee, 0x00000000}},  //   _fuoc, _şekl, _mrzh,\n  { {0x7c2604be, 0x26c70091, 0xab6302d9, 0x00000000}},  //   rakr, čnoj_, авял,\n  { {0xd0260055, 0x442639c7, 0x7c260065, 0x00000000}},  //   _যায়_, zao_, sakr,\n  { {0x4426107e, 0x64bc11e4, 0x2d8a0030, 0x00000000}},  //   yao_, mčiv, øbet_,\n  { {0x6e2305b7, 0x442628f0, 0x2aad01ed, 0x00000000}},  //   _henb, xao_, džbu_,\n  { {0x442601cd, 0x6e230263, 0x7d031642, 0x00000000}},  // [cfc0] vao_, _kenb, _huns,\n  { {0x78a40f87, 0xb6cb00a1, 0x442600e7, 0x00000000}},  //   shiv, والے_, wao_,\n  { {0x44260119, 0x9586005e, 0x6e23008a, 0x00000000}},  //   tao_, ълже, _menb,\n  { {0x7d033579, 0x6e232cab, 0x6fc10204, 0x00000000}},  //   _muns, _lenb, शपां,\n  { {0x7c24009f, 0x44260119, 0x04430264, 0x00000000}},  //   _meir, rao_, речн,\n  { {0x442601cd, 0xe8e0001d, 0x386000ea, 0x00000000}},  //   sao_, _độc_, leir_,\n  { {0x6f0239c8, 0x44260091, 0x7c2400c4, 0x00000000}},  //   _suoc, pao_, _oeir,\n  { {0xe0cf0b59, 0xf99300b3, 0x7c2401c5, 0x00000000}},  //   يزي_, שרה_, _neir,\n  { {0xf8b300b6, 0x442407e8, 0x48f30061, 0x00000000}},  //   ישה_, _iem_, ंगतो_,\n  { {0x7d031740, 0x33d5007e, 0x15e6007d, 0x00000000}},  //   _buns, _сіст, _करार_,\n  { {0x7c240016, 0x6e23022b, 0x0697009b, 0x00000000}},  //   _beir, _denb, דדים_,\n  { {0x80e00055, 0x44241e8d, 0x7c2431f0, 0x00000000}},  //   _পূর্, _jem_, _ceir,\n  { {0x395a0e40, 0x7c2426b6, 0xd00715c4, 0x00000000}},  //   _apps_, _deir, _рече_,\n  { {0x6e230030, 0x44242a2b, 0x7d030d78, 0x00000000}},  //   _genb, _lem_, _funs,\n  { {0x4424002b, 0x7c2408da, 0x81d40055, 0x00000000}},  //   _oem_, _feir, সের_,\n  { {0x44241bc0, 0x6e23022b, 0x6e280161, 0x00000000}},  //   _nem_, _zenb, ladb,\n  { {0xf77301f7, 0x64bc0006, 0x5884007e, 0x00000000}},  // [cfd0] جاز_, nčiu, шыра,\n  { {0xed4d009c, 0xceb80046, 0x64bc010a, 0x00000000}},  //   _بھی_, nię_, ičiu,\n  { {0x442402d5, 0xa9c42b77, 0x950500a1, 0x00000000}},  //   _bem_, _всяк, اہرے_,\n  { {0x4424077c, 0x6ba8014a, 0xd4e40088, 0x00000000}},  //   _cem_, _örgü, аючи,\n  { {0x44240109, 0xe7840256, 0x4734007e, 0x00000000}},  //   _dem_, _куро, _княс,\n  { {0xdce400b9, 0x98b80089, 0x672d00e7, 0x00000000}},  //   _brně, murā_, msaj,\n  { {0x6e2300ea, 0x672d0039, 0x80cc0044, 0x00000000}},  //   _renb, lsaj, াতন্,\n  { {0x44240030, 0x6e230a7b, 0x2fc00e0d, 0x00000000}},  //   _gem_, _senb, _žiga_,\n  { {0x672d0219, 0x68fd01bb, 0x7d0300ab, 0x00000000}},  //   nsaj, _misd, _suns,\n  { {0x7c24002a, 0x442410d9, 0x7d03309b, 0x00000000}},  //   _seir, _zem_, _puns,\n  { {0xb115017f, 0x7c240fb8, 0xc115003b, 0x00000000}},  //   _смеш, _peir, _смеј,\n  { {0x442400ad, 0x672d1c79, 0x6e2301c3, 0x00000000}},  //   _xem_, ksaj, _wenb,\n  { {0x7d03010f, 0xceb80036, 0x7c2401e5, 0x00000000}},  //   _wuns, bię_, _veir,\n  { {0xd94600c0, 0x7d03027a, 0xdc14006b, 0x00000000}},  //   леги, _tuns, rğız,\n  { {0x7c2432d7, 0x38600016, 0x68fd39c9, 0x00000000}},  //   _teir, teir_, _bisd,\n  { {0x1c460265, 0x186700ec, 0x661b0107, 0x00000000}},  //   _сним, ласи_, _đuka,\n  { {0x6d4100d6, 0xe7c40055, 0x68fd1b3e, 0x00000000}},  // [cfe0] lula, ্ধ্য, _disd,\n  { {0x44240e34, 0xda66234c, 0x644939ca, 0x00000000}},  //   _sem_, _свои, _acei,\n  { {0x6d41011f, 0x672311af, 0x00000000, 0x00000000}},  //   nula, ćnja,   ,\n  { {0x29180977, 0x7e610d4d, 0x64bc003b, 0x00000000}},  //   mpra_, help, jčit,\n  { {0x69de0161, 0x442439cb, 0x6d410ea4, 0x00000000}},  //   _hype, _vem_, hula,\n  { {0x6d413453, 0x6ffb001e, 0x93cb00a1, 0x00000000}},  //   kula, _mācī, رانہ_,\n  { {0x442438c8, 0x7e611ce2, 0xc5f5005e, 0x00000000}},  //   _tem_, delp, _вятъ,\n  { {0x6449002a, 0xa4f80123, 0x7afe0027, 0x00000000}},  //   _gcei, _شکار_, _lipt,\n  { {0x74130063, 0x7e610270, 0x04930025, 0x00000000}},  //   _طولا, felp, _القح,\n  { {0x6e980893, 0xe3b70aef, 0x7e6105da, 0x00000000}},  //   твор_, _сбу_, gelp,\n  { {0x6d410b25, 0xac1901fb, 0x6e2839cc, 0x00000000}},  //   gula, кону_, radb,\n  { {0xbd87007a, 0x7afe0022, 0x459b0049, 0x00000000}},  //   چنین_, _aipt, גסטע,\n  { {0x7e610109, 0xceb80036, 0x68fd0145, 0x00000000}},  //   belp, pię_, _risd,\n  { {0x7afe04cb, 0x6d4139cd, 0x68fd39ce, 0x00000000}},  //   _cipt, bula, _sisd,\n  { {0x6d4105f0, 0x69de154f, 0xc27b0049, 0x00000000}},  //   cula, _cype, ערלי,\n  { {0x672d016c, 0x8afb006b, 0xc4c4009e, 0x00000000}},  //   tsaj, fiəç, _رے_,\n  { {0x68fd0089, 0x00000000, 0x00000000, 0x00000000}},  // [cff0] _visd,   ,   ,\n  { {0xba55098c, 0x64490051, 0x672d00f8, 0x00000000}},  //   _твој, _scei, rsaj,\n  { {0x68fd0039, 0x672d059f, 0x00000000, 0x00000000}},  //   _tisd, ssaj,   ,\n  { {0xc8670057, 0x48670265, 0xddc30059, 0x00000000}},  //   _стои, _съоб, _janš,\n  { {0x6d4123d0, 0x64bc0e0d, 0xa7fb008e, 0x00000000}},  //   zula, včit, _pañu,\n  { {0x6d410279, 0x8237004b, 0x00000000, 0x00000000}},  //   yula, ارشا,   ,\n  { {0x21a50cbc, 0x00000000, 0x00000000, 0x00000000}},  //   рийм,   ,   ,\n  { {0x6d41194a, 0x27e60036, 0x2f55173a, 0x00000000}},  //   vula, żone_, атос,\n  { {0x2d9805b7, 0x6d410093, 0x200d0035, 0x00000000}},  //   øren_, wula, rcei_,\n  { {0x6d41006a, 0xcdf50057, 0x6ea700a1, 0x00000000}},  //   tula, ичны, اندہ_,\n  { {0x628139cf, 0x00000000, 0x00000000, 0x00000000}},  //   _inlo,   ,   ,\n  { {0x6d41011f, 0xeb9a0bbd, 0x7afe01ee, 0x00000000}},  //   rula, вим_, _sipt,\n  { {0x6d41006a, 0xe0d00084, 0x7e6100d9, 0x00000000}},  //   sula, _عزم_, pelp,\n  { {0xdaba007e, 0x00000000, 0x00000000, 0x00000000}},  //   тымі_,   ,   ,\n  { {0xfce6017f, 0x48b60ae0, 0x7bcd13f6, 0x00000000}},  //   _коко, ащат, _exau,\n  { {0x98b80035, 0x00000000, 0x00000000, 0x00000000}},  //   dură_,   ,   ,\n\n  { {0x62810061, 0x7afe013f, 0x98a30a94, 0x00000000}},  // [d000] _onlo, _tipt, ците,\n  { {0x61110089, 0xe6172e4e, 0x291800f8, 0x00000000}},  //   _zāle, иду_, ppra_,\n  { {0x05662b26, 0x98b8001a, 0x00000000, 0x00000000}},  //   рвен, gură_,   ,\n  { {0xed560049, 0x64a600e2, 0x00000000, 0x00000000}},  //   יבער_, јада,   ,\n  { {0x78a30035, 0x00000000, 0x00000000, 0x00000000}},  //   _înva,   ,   ,\n  { {0x387206ec, 0x00000000, 0x00000000, 0x00000000}},  //   ldyr_,   ,   ,\n  { {0xe2970080, 0xc448007a, 0x1219007e, 0x00000000}},  //   рај_, _میان_, уючы_,\n  { {0x04430867, 0xea000011, 0x62810285, 0x00000000}},  //   _месн, _giấu_, _enlo,\n  { {0x6609011f, 0x64bc016c, 0x00000000, 0x00000000}},  //   _şeki, sčis,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xa0a60057, 0x69d60061, 0x1ef70025, 0x00000000}},  //   _кажд, _मुली, جعية_,\n  { {0xd00f06b4, 0x00000000, 0x00000000, 0x00000000}},  //   _قلم_,   ,   ,\n  { {0xdfd20014, 0x7c36005b, 0x00000000, 0x00000000}},  //   _بيش_, _ddyr,   ,\n  { {0x799c018e, 0x8f9b00b3, 0x00000000, 0x00000000}},  //   fyrw, _בידי,   ,\n  { {0x9e650014, 0x61030010, 0x00000000, 0x00000000}},  //   _دانن, _tőle,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x28f80057, 0x7d0d00ca, 0x00000000, 0x00000000}},  // [d010] реть_, _časi,   ,\n  { {0x98b8001a, 0xc7c40088, 0xd0b2006b, 0x00000000}},  //   tură_, істи, rşən,\n  { {0x7cff0006, 0xb87b0048, 0x00000000, 0x00000000}},  //   _jūro, _bhít,   ,\n  { {0xe43c00b9, 0x00000000, 0x00000000, 0x00000000}},  //   bříč,   ,   ,\n  { {0xd7fb012b, 0xb87b0051, 0xf36700c0, 0x00000000}},  //   _јун_, _dhít, ртен,\n  { {0xdd390035, 0xd51708d4, 0x00000000, 0x00000000}},  //   năţe, _نظرب,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xe4a701fc, 0x26c70161, 0x00000000, 0x00000000}},  //   _трго, čnou_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x628103ca, 0x6b9d0016, 0x26e50309, 0x00000000}},  //   _unlo, dysg, _कठोर_,\n  { {0xdd390035, 0x00000000, 0x00000000, 0x00000000}},  //   dăţe,   ,   ,\n  { {0x6b9d018e, 0x00000000, 0x00000000, 0x00000000}},  //   fysg,   ,   ,\n  { {0x61e105ad, 0xbf6702fd, 0x6abc000c, 0x00000000}},  //   _hyll, _خداو, tirf,\n  { {0x61e1021e, 0x6f1b0011, 0x00000000, 0x00000000}},  //   _kyll, mpuc,   ,\n  { {0x61e10030, 0x499901fb, 0x09e6017a, 0x00000000}},  //   _jyll, аття_, совн,\n  { {0x4806007e, 0xa9280161, 0x3b861fd9, 0x00000000}},  //   спав, _nižš, _глиг,\n  { {0x57ea2073, 0x00000000, 0x00000000, 0x00000000}},  // [d020] удам_,   ,   ,\n  { {0x387208e0, 0x645b046a, 0x00000000, 0x00000000}},  //   sdyr_, _abui,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x0446012b, 0xe43c013e, 0xb87b0048, 0x00000000}},  //   седн, příč, _dhís,\n  { {0xe29a0822, 0x68e4014a, 0x61e1004a, 0x00000000}},  //   лад_, mlid, _ayll,\n  { {0x68e4006c, 0x290205e5, 0xb87b0048, 0x00000000}},  //   llid, _hika_, _fhís,\n  { {0xa6c700d3, 0x290239d0, 0x61e10016, 0x00000000}},  //   _اوّل_, _kika_, _cyll,\n  { {0x2902020c, 0x26da1f0f, 0x5066007e, 0x00000000}},  //   _jika_, lopo_, стка,\n  { {0x290200b0, 0x68e43214, 0x7e2a05b8, 0x00000000}},  //   _mika_, ilid, ліна_,\n  { {0x29020073, 0x61e139d1, 0x69c0014a, 0x00000000}},  //   _lika_, _fyll, şmey,\n  { {0x61e10016, 0x68e4014a, 0xe0d6041f, 0x00000000}},  //   _gyll, klid, _людь,\n  { {0xb5fb0049, 0x29020c8a, 0x00000000, 0x00000000}},  //   טליכ, _nika_,   ,\n  { {0x26da39d2, 0x5f9405f6, 0xdd39001a, 0x00000000}},  //   kopo_, _филт, tăţe,\n  { {0x0db9026c, 0x2902021e, 0xcef601fc, 0x00000000}},  //   ائیں_, _aika_, _учењ,\n  { {0x29021431, 0x4c950c96, 0xdd390035, 0x00000000}},  //   _bika_, _микс, răţe,\n  { {0x3ebe01f3, 0x0855007e, 0x2bda006e, 0x00000000}},  //   litt_, ўваю, _युवा,\n  { {0x2d9e39d3, 0x7cff1a2f, 0x22b60036, 0x00000000}},  // [d030] lyte_, _jūrm, ałki_,\n  { {0x7c2f00d4, 0x68e400d6, 0x3ebe05b4, 0x00000000}},  //   lacr, alid, nitt_,\n  { {0x29022096, 0xb87b0051, 0x68e415d6, 0x00000000}},  //   _fika_, _dhír, blid,\n  { {0x3ebe00c4, 0x290200e0, 0x27e60036, 0x00000000}},  //   hitt_, _gika_, żona_,\n  { {0x6eef0030, 0x2ca90ecc, 0xb87b0051, 0x00000000}},  //   løbe, _mlad_, _fhír,\n  { {0x26da08eb, 0x61e139d4, 0x236d0059, 0x00000000}},  //   copo_, _pyll, _vsej_,\n  { {0xd9f90754, 0xa2d20054, 0x229901aa, 0x00000000}},  //   ंधित_, بيوت, _sèks_,\n  { {0x78ad0018, 0x7f5901f9, 0x60090437, 0x00000000}},  //   nhav, ајот_, шним_,\n  { {0xfa010055, 0x442f1892, 0x7d0a010f, 0x00000000}},  //   ্রিল_, mag_, _aufs,\n  { {0x3ebe0292, 0x32050133, 0x61e1005b, 0x00000000}},  //   gitt_, _ugly_, _tyll,\n  { {0x2ca90007, 0xfd44007e, 0x644b39d5, 0x00000000}},  //   _blad_, пэўн, oggi,\n  { {0x442f006a, 0x22990263, 0x644b1463, 0x00000000}},  //   nag_, _tèks_, nggi,\n  { {0xee2e3475, 0x7cd20089, 0x26da0020, 0x00000000}},  //   _он_, vārd, yopo_,\n  { {0x6da501fc, 0xe8e00011, 0x60c900b5, 0x00000000}},  //   _мила, _đốc_, lnem,\n  { {0x290215d6, 0x442f39d6, 0x2ca90190, 0x00000000}},  //   _pika_, kag_, _flad_,\n  { {0x2ca9018d, 0x442f001e, 0x6f030211, 0x00000000}},  //   _glad_, jag_, _hinc,\n  { {0x60c900f4, 0x6f030010, 0x29021f47, 0x00000000}},  // [d040] inem, _kinc, _vika_,\n  { {0x68e40190, 0xc96610df, 0x2902006a, 0x00000000}},  //   slid, _двой, _wika_,\n  { {0xa2d802fb, 0x2902001e, 0x7d0439d7, 0x00000000}},  //   यवस्, _tika_, _kiis,\n  { {0x26da0058, 0xf48301ee, 0x60c900ca, 0x00000000}},  //   sopo_, душн, jnem,\n  { {0x60c90142, 0xa3d40309, 0x26da00ca, 0x00000000}},  //   dnem, _सुख_, popo_,\n  { {0x6f030047, 0x644b0207, 0x7d0403b6, 0x00000000}},  //   _ninc, aggi, _liis,\n  { {0x6e2a057e, 0x40340887, 0x3ebe03f1, 0x00000000}},  //   _refb, пейс, vitt_,\n  { {0x7d04003c, 0x60c900f4, 0x2240005d, 0x00000000}},  //   _niis, gnem, şik_,\n  { {0x7d0a0007, 0x6f0301a3, 0xbe8a0a27, 0x00000000}},  //   _sufs, _binc, асне_,\n  { {0x78ad01ee, 0xbdb406e3, 0x2d9e007f, 0x00000000}},  //   zhav, збој, tyte_,\n  { {0x3ebe010f, 0x6f03001a, 0x867b00a3, 0x00000000}},  //   ritt_, _dinc, בריו,\n  { {0x7d0d06b8, 0x60c9041a, 0x6b820089, 0x00000000}},  //   _čast, cnem, _šoga,\n  { {0x6f030555, 0x7d0406cb, 0x7c2f0211, 0x00000000}},  //   _finc, _diis, racr,\n  { {0x2ca90016, 0x7c2f008e, 0x60c000b0, 0x00000000}},  //   _wlad_, sacr, limm,\n  { {0x644b0fdc, 0x442f39d8, 0x78ad00b5, 0x00000000}},  //   yggi, yag_, thav,\n  { {0x6d48003f, 0x60c00cba, 0xa3aa013d, 0x00000000}},  //   muda, nimm, खना_,\n  { {0x442f0e24, 0x69da39d9, 0x00000000, 0x00000000}},  // [d050] vag_, üter,   ,\n  { {0x7c2d0038, 0x442f006a, 0x60c000f2, 0x00000000}},  //   _hear, wag_, himm,\n  { {0x442f06d3, 0x6d481402, 0x7c2d04be, 0x00000000}},  //   tag_, nuda, _kear,\n  { {0x5fca001c, 0xb4d5013d, 0x7c2d0173, 0x00000000}},  //   ापाल, सके_, _jear,\n  { {0xdfc60054, 0x442f001f, 0x7c2d094e, 0x00000000}},  //   _أي_, rag_, _mear,\n  { {0x3869029a, 0x7c2d0038, 0x442f11fa, 0x00000000}},  //   lear_, _lear, sag_,\n  { {0x442f006a, 0x6f0339da, 0x6d48274e, 0x00000000}},  //   pag_, _rinc, juda,\n  { {0x386939db, 0x6f030038, 0x7c2d0531, 0x00000000}},  //   near_, _sinc, _near,\n  { {0x60c91250, 0x6f031ae2, 0x7d0439dc, 0x00000000}},  //   rnem, _pinc, _riis,\n  { {0x0ea90057, 0x7d040cfc, 0xe3b00076, 0x00000000}},  //   ской_, _siis, _شرق_,\n  { {0x6f030198, 0x442d002b, 0x7d0401c2, 0x00000000}},  //   _vinc, _kee_, _piis,\n  { {0x7c2d39dd, 0x6d410039, 0x3869008e, 0x00000000}},  //   _cear, rrla, jear_,\n  { {0x7c2d002a, 0x442d02ae, 0xdd8e089d, 0x00000000}},  //   _dear, _mee_, نوی_,\n  { {0x6d4804cb, 0x7d04113b, 0x00000000, 0x00000000}},  //   buda, _wiis,   ,\n  { {0xea00001d, 0x38690051, 0x78a40e88, 0x00000000}},  //   _khẩu_, fear_, tkiv,\n  { {0x7c2d002a, 0x442d0100, 0x386904bc, 0x00000000}},  //   _gear, _nee_, gear_,\n  { {0x6843008b, 0x78a40292, 0xed1600a1, 0x00000000}},  // [d060] энта, rkiv, _وہیں_,\n  { {0x78a400b0, 0x60c0010f, 0x6b7b00a3, 0x00000000}},  //   skiv, zimm, _פרינ,\n  { {0x7c2d0038, 0x186a00ed, 0x6a9b009b, 0x00000000}},  //   _year, _лани_, _השינ,\n  { {0x442d049a, 0x3869004a, 0x0d3a0049, 0x00000000}},  //   _cee_, cear_, מגעב,\n  { {0x1ddd0061, 0x6d4828f0, 0x60c000b0, 0x00000000}},  //   _नुसत, zuda, vimm,\n  { {0x3f80010a, 0x6d48033b, 0x60c039de, 0x00000000}},  //   _šiuo_, yuda, wimm,\n  { {0x8233026c, 0x3958001e, 0x60c017f7, 0x00000000}},  //   رروا, ntrs_, timm,\n  { {0x442d0343, 0x25ae014a, 0x98b80036, 0x00000000}},  //   _gee_, ıklı_, turę_,\n  { {0x60c000b0, 0x7c2d0133, 0x00000000, 0x00000000}},  //   rimm, _rear,   ,\n  { {0x7c2d0038, 0x60c0021e, 0x6d480a92, 0x00000000}},  //   _sear, simm, tuda,\n  { {0x7c2d002a, 0x62881c13, 0x63a20ae5, 0x00000000}},  //   _pear, _indo, lyon,\n  { {0x0cab026b, 0x629a01ca, 0x6d480020, 0x00000000}},  //   стои_, _hoto, ruda,\n  { {0x629a00b0, 0x6d4804cb, 0x7ead0142, 0x00000000}},  //   _koto, suda, _súpe,\n  { {0x7c2d00ab, 0x629a00e7, 0x7cff39df, 0x00000000}},  //   _wear, _joto, _mūri,\n  { {0x3869002a, 0x63a20093, 0x7c2d0531, 0x00000000}},  //   tear_, hyon, _tear,\n  { {0x6abe001f, 0xe894008b, 0x25e0013d, 0x00000000}},  //   _empf, нась, _कड़ी_,\n  { {0x6288022b, 0x4c3c00b6, 0x386910c9, 0x00000000}},  // [d070] _ondo, _התחב, rear_,\n  { {0x442d1eed, 0xcb14007b, 0x386910c9, 0x00000000}},  //   _see_, _אלץ_, sear_,\n  { {0x26c139e0, 0x386900ab, 0xdbd700b0, 0x00000000}},  //   riho_, pear_, sääm,\n  { {0x62880948, 0x442d004a, 0x63a200e7, 0x00000000}},  //   _ando, _qee_, fyon,\n  { {0x442d095a, 0xe299103d, 0xc5de0044, 0x00000000}},  //   _vee_, жал_, ভেলপ,\n  { {0x442d01d6, 0x91e501e0, 0x629a11c6, 0x00000000}},  //   _wee_, моле, _coto,\n  { {0x442d0004, 0x2419008b, 0x629a0347, 0x00000000}},  //   _tee_, _мовы_, _doto,\n  { {0x92bf0055, 0x628800ab, 0x92cd0044, 0x00000000}},  //   ীতে_, _endo, রতে_,\n  { {0x2d9839e1, 0x00000000, 0x00000000, 0x00000000}},  //   ären_,   ,   ,\n  { {0x629a39e2, 0xddc80dec, 0x6da50081, 0x00000000}},  //   _goto, cedū, диоа,\n  { {0x8c46007c, 0xed1600a1, 0x2a6a0010, 0x00000000}},  //   мене, وہوں_, vebb_,\n  { {0x629a39e3, 0xe45f010e, 0x4c830088, 0x00000000}},  //   _zoto, _ööd_, влюв,\n  { {0x2a6a27a5, 0x629a000a, 0x7f4900fa, 0x00000000}},  //   tebb_, _yoto, queq,\n  { {0xddc5003b, 0xf8bf004a, 0x00000000, 0x00000000}},  //   _обли, _amé_,   ,\n  { {0x09e30113, 0x63a22047, 0x00000000, 0x00000000}},  //   ворн, zyon,   ,\n  { {0x2a6a0047, 0x394a0133, 0x00000000, 0x00000000}},  //   sebb_, rubs_,   ,\n  { {0x39580089, 0x00000000, 0x00000000, 0x00000000}},  // [d080] strs_,   ,   ,\n  { {0x290c029d, 0xe5a60256, 0x63a211f3, 0x00000000}},  //   ídas_, мизи, vyon,\n  { {0xd826041f, 0x7cff0006, 0x00000000, 0x00000000}},  //   _одни, _sūri,   ,\n  { {0x63a201aa, 0x629a016e, 0x2eaa006e, 0x00000000}},  //   tyon, _soto, _छत्त,\n  { {0x629a0027, 0x41c3006e, 0x6f0d0051, 0x00000000}},  //   _poto, _वेबस, _éach,\n  { {0x63a239e4, 0x68e30065, 0x629a12d7, 0x00000000}},  //   ryon, _ëndr, _qoto,\n  { {0x63a22691, 0x629a39e5, 0x6603007e, 0x00000000}},  //   syon, _voto, _апра,\n  { {0x7cff1a2f, 0xc9530104, 0x63a20156, 0x00000000}},  //   _tūri, דמה_, pyon,\n  { {0x44260be3, 0x629a006a, 0xb4bc0061, 0x00000000}},  //   mbo_, _toto, ेची_,\n  { {0x7e980054, 0x4426002d, 0x628839e6, 0x00000000}},  //   سنجر_, lbo_, _undo,\n  { {0xfeb70379, 0xfe78007f, 0x1d34007e, 0x00000000}},  //   بايت_, rdį_, эння,\n  { {0x44260173, 0x7cd20089, 0xf5370097, 0x00000000}},  //   nbo_, tāra, ונטי_,\n  { {0x9be40088, 0x78a3001a, 0x8ae70088, 0x00000000}},  //   вірк, _învi, дівл,\n  { {0xc333009b, 0xe7e2006e, 0x00000000, 0x00000000}},  //   כוש_, _खड़ा_,   ,\n  { {0x4426006a, 0x00000000, 0x00000000, 0x00000000}},  //   kbo_,   ,   ,\n  { {0x2d5800f4, 0x442639e7, 0x7e780146, 0x00000000}},  //   mée_, jbo_, _havp,\n  { {0x2d5800f4, 0x442601d9, 0x6d5a00b0, 0x00000000}},  // [d090] lée_, dbo_, ltta,\n  { {0x4975025f, 0x44261770, 0x7c3b000c, 0x00000000}},  //   _злос, ebo_, ðurf,\n  { {0x2d58028c, 0x6d5a0b90, 0x7ea40129, 0x00000000}},  //   née_, ntta, _còpi,\n  { {0x6d5a021e, 0x44260058, 0x7e780190, 0x00000000}},  //   itta, gbo_, _lavp,\n  { {0x2d5800f4, 0x62650088, 0x00000000, 0x00000000}},  //   hée_, евла,   ,\n  { {0x61e8004f, 0x7e7800ca, 0x6d5a04ce, 0x00000000}},  //   _bydl, _navp, ktta,\n  { {0x91e2025f, 0x6d5a0030, 0x38a7006c, 0x00000000}},  //   лоше, jtta, _nõrk_,\n  { {0x2d5800f4, 0x00000000, 0x00000000, 0x00000000}},  //   dée_,   ,   ,\n  { {0x41df02f4, 0x443f0091, 0x6d5a39e8, 0x00000000}},  //   _पुरस, _idu_, etta,\n  { {0xf1a702d3, 0x6d5a02e1, 0x2d58009d, 0x00000000}},  //   _орен, ftta, fée_,\n  { {0x6cc6008b, 0x2d5800f4, 0x6d5a0030, 0x00000000}},  //   ейна, gée_, gtta,\n  { {0x443f07e4, 0x30840025, 0x00000000, 0x00000000}},  //   _jdu_, _للمف,   ,\n  { {0x6d5a001c, 0x76550046, 0x69d70066, 0x00000000}},  //   atta, _oczy, _axxe,\n  { {0x8f9a012f, 0x442600ca, 0x6ee6000c, 0x00000000}},  //   _מיני, zbo_, fðbu,\n  { {0x6d5a001c, 0x2d5800f4, 0x442639e9, 0x00000000}},  //   ctta, cée_, ybo_,\n  { {0x291e0089, 0x443f00e5, 0x7afc016e, 0x00000000}},  //   īta_, _ndu_, smrt,\n  { {0x2b460051, 0x1ae600e2, 0xf743007c, 0x00000000}},  // [d0a0] _íoc_, _поим, лето,\n  { {0xfc3f0051, 0xddc30161, 0x45d60517, 0x00000000}},  //   bhís_, _manž, нцет,\n  { {0x44260173, 0x7f5b0065, 0xca57071c, 0x00000000}},  //   tbo_, htuq, _אייז_,\n  { {0xb4bc001c, 0x6b8405fe, 0x443f010f, 0x00000000}},  //   ेचे_, _krig, _cdu_,\n  { {0x442639ea, 0x443f0016, 0x61e807c4, 0x00000000}},  //   rbo_, _ddu_, _sydl,\n  { {0x443f10c5, 0x67240627, 0x44260059, 0x00000000}},  //   _edu_, mpij, sbo_,\n  { {0x044601fb, 0x2d58009d, 0xf1c30164, 0x00000000}},  //   _певн, xée_, _वेदन,\n  { {0x2d58028c, 0xea000011, 0x0f260088, 0x00000000}},  //   vée_, _nhậu_, ньом,\n  { {0x3f820f1e, 0x68e30129, 0xb35500a1, 0x00000000}},  //   íku_, _índe, _لینا_,\n  { {0x6d5a39eb, 0x2d5800f4, 0x61e80039, 0x00000000}},  //   ttta, tée_, _tydl,\n  { {0xa00a0025, 0x6d5a00b0, 0x6b84010e, 0x00000000}},  //   _فقال_, utta, _arig,\n  { {0x2d58028c, 0x61e4011f, 0x6d5a00b0, 0x00000000}},  //   rée_, ğild, rtta,\n  { {0x2d58028c, 0xbea6007e, 0x69c8350c, 0x00000000}},  //   sée_, _падк, úden,\n  { {0x2d5800f4, 0x2d9801e3, 0x6b840016, 0x00000000}},  //   pée_, øres_, _drig,\n  { {0x81e208b7, 0x644005fd, 0x38600066, 0x00000000}},  //   নের_, _odmi, ffir_,\n  { {0x61e5010f, 0x661c01c3, 0x6d480d9b, 0x00000000}},  //   ühli, _afrk, mrda,\n  { {0xf773089d, 0x6b84060c, 0x443f01ee, 0x00000000}},  // [d0b0] داز_, _grig, _rdu_,\n  { {0x443f0190, 0x7ae50022, 0x6d482c09, 0x00000000}},  //   _sdu_, _ukht, orda,\n  { {0x15a8005e, 0x38790142, 0x00000000, 0x00000000}},  //   нъци_, _tasr_,   ,\n  { {0x6b84004a, 0x00000000, 0x00000000, 0x00000000}},  //   _yrig,   ,   ,\n  { {0x889a019b, 0xc886010f, 0x443f007f, 0x00000000}},  //   _חברי, ößen_, _vdu_,\n  { {0x216910e1, 0xd6e20036, 0x76550036, 0x00000000}},  //   дики_, _całą_, _uczy,\n  { {0x68ed002a, 0x8234023c, 0x290b016c, 0x00000000}},  //   olad, ارها, _kica_,\n  { {0x68ed14c9, 0xd6c40044, 0x290b0022, 0x00000000}},  //   nlad, ্তৃপ, _jica_,\n  { {0x290b05f7, 0x68ed018e, 0x6d48008e, 0x00000000}},  //   _mica_, ilad, erda,\n  { {0x290b037e, 0x68ed0142, 0x38b501bf, 0x00000000}},  //   _lica_, hlad, _hård_,\n  { {0x68ed0428, 0x6b840022, 0x09c60044, 0x00000000}},  //   klad, _srig, _শুনা,\n  { {0x6b84016e, 0x290b0035, 0x68ed0190, 0x00000000}},  //   _prig, _nica_, jlad,\n  { {0xeb970001, 0x2d980378, 0x6d480a47, 0x00000000}},  //   вия_, ører_, arda,\n  { {0xc33200b6, 0x61e4014a, 0xf772025a, 0x00000000}},  //   שום_, şile, یاء_,\n  { {0x68ed0240, 0x6cda0ae0, 0x09e60088, 0x00000000}},  //   flad, _офис_, товн,\n  { {0x290b26bb, 0x7a3f014a, 0x291300f6, 0x00000000}},  //   _cica_, _açtı, _duxa_,\n  { {0x290b39ec, 0x96ba0025, 0x6b840240, 0x00000000}},  // [d0c0] _dica_, وائز_, _urig,\n  { {0x68ed18bd, 0xe610006b, 0x248d0129, 0x00000000}},  //   alad, _düşə, _anem_,\n  { {0x68ed1ba1, 0x200f0198, 0x290b26b8, 0x00000000}},  //   blad, _oggi_, _fica_,\n  { {0x68ed0489, 0x67243994, 0xb73400a1, 0x00000000}},  //   clad, ppij, _مہرب,\n  { {0x2bc8001c, 0x29000625, 0x68e4089b, 0x00000000}},  //   रपटा, mmia_, moid,\n  { {0xe737012b, 0x248d239d, 0x68e41747, 0x00000000}},  //   _јер_, _enem_, loid,\n  { {0x29130d7b, 0x290b0045, 0x2ab401a2, 0x00000000}},  //   _xuxa_, _yica_, _gäbe_,\n  { {0x68e400b0, 0x64a3007c, 0x290b06c2, 0x00000000}},  //   noid, _каса, _xica_,\n  { {0x7306008b, 0x64a30888, 0xa067012b, 0x00000000}},  //   _апаз, _тата, тања_,\n  { {0x3c3200ad, 0x68e403b6, 0xd35700b3, 0x00000000}},  //   _được_, hoid, _בימי_,\n  { {0x68e400b0, 0x6d48046a, 0x68ed0095, 0x00000000}},  //   koid, urda, ylad,\n  { {0x68e400b0, 0x38b505fe, 0x68ed39ed, 0x00000000}},  //   joid, _kåre_, xlad,\n  { {0xe0b7007b, 0x290b0211, 0x68ed0213, 0x00000000}},  //   _בלאט_, _rica_, vlad,\n  { {0x1ddd0061, 0x2900006c, 0x291316b5, 0x00000000}},  //   _नुकत, emia_, _puxa_,\n  { {0x68ed014a, 0x1ea90025, 0xeef7009b, 0x00000000}},  //   tlad, _ثاني_, _שמור_,\n  { {0xdc550098, 0x2ca00048, 0x68e40052, 0x00000000}},  //   _свињ, _goid_, goid,\n  { {0x57f500ed, 0xc6f90121, 0x00000000, 0x00000000}},  // [d0d0] упат, енах_,   ,\n  { {0x68ed0211, 0x7d0d39ee, 0x2ca001d6, 0x00000000}},  //   slad, _hias, _zoid_,\n  { {0x68ed0030, 0x7d0d000b, 0xceb30049, 0x00000000}},  //   plad, _kias, סיע_,\n  { {0x78b6010a, 0x73d90081, 0x24190783, 0x00000000}},  //   chyv, ндер_, ходы_,\n  { {0x7d0d0046, 0xe3b02aea, 0x38b50039, 0x00000000}},  //   _mias, يره_, _vård_,\n  { {0x7ead0051, 0x78ad0006, 0xe1f90081, 0x00000000}},  //   _cúpl, lkav, нгл_,\n  { {0xe5340a78, 0x7ead0efe, 0x1a9c0049, 0x00000000}},  //   _весь, _dúpl, ויגע,\n  { {0x78ad39ef, 0x3f8624cf, 0x2249014a, 0x00000000}},  //   nkav, _brou_, şak_,\n  { {0xf1bf00b9, 0x7cf60010, 0x00000000, 0x00000000}},  //   _řád_, jára,   ,\n  { {0x63a4021e, 0x81e20044, 0xe3b000a6, 0x00000000}},  //   äine, নেই_, _برف_,\n  { {0xdca60081, 0x7d0d2943, 0x3cca0aa2, 0x00000000}},  //   гани, _bias, елно_,\n  { {0x7d0d0e68, 0x61e501a2, 0x00000000, 0x00000000}},  //   _cias, ühlu,   ,\n  { {0x7d0d39f0, 0x60c932b3, 0x68e439f1, 0x00000000}},  //   _dias, miem, void,\n  { {0x7f3a0097, 0x60c90006, 0x00000000, 0x00000000}},  //   _טענו, liem,   ,\n  { {0x1a6600d3, 0x39160014, 0xdb060010, 0x00000000}},  //   نیکی_, اورز, nyké,\n  { {0x60c900b0, 0x290007a4, 0x7d0d02d4, 0x00000000}},  //   niem, umia_, _gias,\n  { {0x68e41414, 0x29000197, 0x38cb0014, 0x00000000}},  // [d0e0] roid, rmia_, رافی_,\n  { {0x7c3639f2, 0xd702008b, 0x68e400b0, 0x00000000}},  //   _heyr, пiса, soid,\n  { {0xa9a60216, 0x7c36000c, 0x60c9093c, 0x00000000}},  //   _синд, _keyr, kiem,\n  { {0x7ead0d8e, 0x60c939f3, 0x00000000, 0x00000000}},  //   _súpl, jiem,   ,\n  { {0x044309bb, 0x13940088, 0x00000000, 0x00000000}},  //   сечн, рилю,   ,\n  { {0x38b50292, 0x2d87009d, 0xe29701ee, 0x00000000}},  //   _våre_, _orne_, лач_,\n  { {0x2ee5366b, 0xe5a30256, 0xb4260151, 0x00000000}},  //   dolf_, _лири, _معذو,\n  { {0x3f860129, 0x60c90007, 0x89370049, 0x00000000}},  //   _prou_, giem, ארקע_,\n  { {0xdfd00025, 0x2d8704d3, 0x7d0d39f4, 0x00000000}},  //   تية_, _arne_, _rias,\n  { {0x7d0d0518, 0x3f860343, 0x7cf62c01, 0x00000000}},  //   _sias, _vrou_, vára,\n  { {0x7d0d39f5, 0x2d870091, 0x7cfd0325, 0x00000000}},  //   _pias, _crne_, nérg,\n  { {0x60c939f6, 0x3f8639f7, 0xab5b0a36, 0x00000000}},  //   ciem, _trou_, nzüg,\n  { {0x2d870030, 0x7d0d0ba3, 0x7c360016, 0x00000000}},  //   _erne_, _vias, _deyr,\n  { {0xbda6004b, 0x5b140098, 0xdb240010, 0x00000000}},  //   _محبو, смрт, ásáb,\n  { {0x7cf60062, 0x78ad01b1, 0x2d8701ee, 0x00000000}},  //   márn, tkav, _grne_,\n  { {0x7cf61a2c, 0x6e3a0047, 0x00000000, 0x00000000}},  //   lárn, latb,   ,\n  { {0x963500aa, 0x78ad0d96, 0x00000000, 0x00000000}},  // [d0f0] инац, rkav,   ,\n  { {0x78ad39f8, 0x60c90036, 0xda19007d, 0x00000000}},  //   skav, ziem, _दलित_,\n  { {0x7ae70091, 0x78ad0089, 0x55750088, 0x00000000}},  //   mojt, pkav, ргет,\n  { {0x81cd0055, 0x7c36006b, 0x60c9009d, 0x00000000}},  //   রথম_, _xeyr, xiem,\n  { {0x60c939f9, 0xa8560104, 0x7cf60161, 0x00000000}},  //   viem, _דירה_, kárn,\n  { {0xddda0047, 0x46b902fb, 0x38a7006c, 0x00000000}},  //   hető, _इतिह, _võru_,\n  { {0x746b0264, 0x60c93988, 0x7cf60062, 0x00000000}},  //   _прав_, tiem, dárn,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x60c90dc6, 0x229502fd, 0x6eef0030, 0x00000000}},  //   riem, _پلاس, løbi,\n  { {0x60c92104, 0x4d650175, 0x7c36014a, 0x00000000}},  //   siem, аков, _seyr,\n  { {0xcc8a0014, 0x60c90089, 0x7c36009d, 0x00000000}},  //   ننده_, piem, _peyr,\n  { {0x7c36005f, 0xfce60088, 0x2d8700ca, 0x00000000}},  //   _qeyr, ромо, _vrne_,\n  { {0x7c290553, 0x7cd20089, 0x7cc40010, 0x00000000}},  //   ñera, nāri, nőri,\n  { {0xceb80036, 0x6eef0030, 0xab27142c, 0x00000000}},  //   chę_, købi, рора_,\n  { {0x81130044, 0x7c360016, 0x00000000, 0x00000000}},  //   _সবুজ_, _teyr,   ,\n  { {0xf1b20049, 0x7cf62fc2, 0x00000000, 0x00000000}},  //   קסן_, máro,   ,\n  { {0xe801001c, 0xc87f001f, 0x2b4000d4, 0x00000000}},  // [d100] लेला_, _daß_, _uvic_,\n  { {0x645b0325, 0x63ab0039, 0xda660d54, 0x00000000}},  //   _acui, dygn, _твои,\n  { {0x7cf629c5, 0x00000000, 0x00000000, 0x00000000}},  //   náro,   ,   ,\n  { {0x232a003b, 0x6e3a39fa, 0xe45f010e, 0x00000000}},  //   води_, zatb, _ööl_,\n  { {0xf746012b, 0x93770054, 0xe29a012b, 0x00000000}},  //   _њего, لصور_, кад_,\n  { {0xddda0047, 0x7cfd0010, 0xea000082, 0x00000000}},  //   zető, mére, _chầu_,\n  { {0x7cf6015f, 0x7456005e, 0x6e3a0010, 0x00000000}},  //   várn, _възх, vatb,\n  { {0x645b002a, 0x92d60044, 0x63ab0030, 0x00000000}},  //   _gcui, সতে_, bygn,\n  { {0x7cfd00f4, 0x6e3a0056, 0xddda0010, 0x00000000}},  //   nére, tatb, vető,\n  { {0x600b0095, 0x00000000, 0x00000000, 0x00000000}},  //   _sömü,   ,   ,\n  { {0x7cfd0353, 0x7cf61ade, 0x6e3a0232, 0x00000000}},  //   hére, rárn, ratb,\n  { {0x5577007b, 0x13aa0044, 0x7cf60a50, 0x00000000}},  //   בעטן_, _খেয়, sárn,\n  { {0x00bb009b, 0x00000000, 0x00000000, 0x00000000}},  //   _במאמ,   ,   ,\n  { {0x7cfd009d, 0x6b4c000c, 0xc87f01a2, 0x00000000}},  //   dére, _sögð, _saß_,\n  { {0x7ae7008d, 0x98c70216, 0x63ab0036, 0x00000000}},  //   rojt, асал, zygn,\n  { {0x7cfd028c, 0x290f0dac, 0x00000000, 0x00000000}},  //   fére, öga_,   ,\n  { {0x7c3d0022, 0x7cfd1152, 0xd838007e, 0x00000000}},  // [d110] masr, gére, рэс_,\n  { {0x94e8006b, 0x645b2264, 0x7c3d01a3, 0x00000000}},  //   _işə_, _scui, lasr,\n  { {0x64150025, 0x68e32a65, 0xaadc009b, 0x00000000}},  //   مواط, _índo, _בחזר,\n  { {0x7cfd01cc, 0x7cd20089, 0x00000000, 0x00000000}},  //   bére, tāri,   ,\n  { {0x7bdf0082, 0x61fa004a, 0x22450173, 0x00000000}},  //   _jxqu, _aztl, _pdlk_,\n  { {0x7c3d0052, 0x00000000, 0x00000000, 0x00000000}},  //   hasr,   ,   ,\n  { {0xc6920049, 0x00000000, 0x00000000, 0x00000000}},  //   _צאל_,   ,   ,\n  { {0x2602001c, 0x7cf60344, 0x00000000, 0x00000000}},  //   वेळी_, váro,   ,\n  { {0x443d39fb, 0xea000011, 0x201f0026, 0x00000000}},  //   maw_, _thầu_, rcui_,\n  { {0xe8e0001d, 0x443d39fc, 0x7cf61f2c, 0x00000000}},  //   _đọc_, law_, táro,\n  { {0xd0110025, 0xea000011, 0x6281001a, 0x00000000}},  //   _فلا_, _khấu_, _ialo,\n  { {0x62810a1f, 0x645901aa, 0x443d39fd, 0x00000000}},  //   _halo, ngwi, naw_,\n  { {0x6281008d, 0x7cf607fd, 0x62830116, 0x00000000}},  //   _kalo, sáro, odno,\n  { {0x443d103f, 0x628100b0, 0xed59007e, 0x00000000}},  //   haw_, _jalo, _бок_,\n  { {0x62810868, 0x443d39fe, 0x38b503b1, 0x00000000}},  //   _malo, kaw_, _såra_,\n  { {0x7cfd028c, 0x443d2612, 0x6281011c, 0x00000000}},  //   tére, jaw_, _lalo,\n  { {0x98a301e0, 0x443d0066, 0x6d4101c9, 0x00000000}},  // [d120] чите, daw_, lsla,\n  { {0x628101d9, 0x38b50073, 0x81e20044, 0x00000000}},  //   _nalo, _våra_, নেট_,\n  { {0x99860054, 0xdb060c59, 0x2e3a0049, 0x00000000}},  //   _الجو, szkó, רגענ,\n  { {0x7cfd1729, 0x443d006a, 0x6281011c, 0x00000000}},  //   mérc, gaw_, _aalo,\n  { {0x62810209, 0x672600ea, 0xb801006e, 0x00000000}},  //   _balo, _utkj, लेआम_,\n  { {0x248006a6, 0x6d410a5c, 0x628109d5, 0x00000000}},  //   žim_, ksla, _calo,\n  { {0x443d31fe, 0x91860025, 0x7c24012d, 0x00000000}},  //   baw_, إجتم, _ofir,\n  { {0x6d41004e, 0x236901d5, 0x442f000a, 0x00000000}},  //   dsla, ħajr_, cbg_,\n  { {0x6281285a, 0x291a027c, 0x6d4100b5, 0x00000000}},  //   _falo, _lupa_, esla,\n  { {0x6d4139ff, 0x7cf60047, 0xd36f0076, 0x00000000}},  //   fsla, sárl, _سهم_,\n  { {0x7c290211, 0xdceb0b54, 0x6d4100f8, 0x00000000}},  //   ñero, žiča, gsla,\n  { {0x628123d9, 0x6b820066, 0x00000000, 0x00000000}},  //   _zalo, _ġogr,   ,\n  { {0x6111001e, 0x291a0a02, 0x6281014a, 0x00000000}},  //   _tālr, _aupa_, _yalo,\n  { {0x62813a00, 0x291a0146, 0x443d0066, 0x00000000}},  //   _xalo, _bupa_, zaw_,\n  { {0x44240066, 0x443d011c, 0x6d41003b, 0x00000000}},  //   _ofm_, yaw_, csla,\n  { {0x291a000d, 0x4735008b, 0x7764002b, 0x00000000}},  //   _dupa_, жнас, ftix,\n  { {0x7bda011f, 0xfc3f002a, 0xdd9000a1, 0x00000000}},  // [d130] ştur, maí_, _روک_,\n  { {0xfc3f002a, 0x6b8d022b, 0x442400bb, 0x00000000}},  //   laí_, _irag, _afm_,\n  { {0x443d3a01, 0x7c24009f, 0x62810173, 0x00000000}},  //   taw_, _yfir, _ralo,\n  { {0xfc3f002a, 0x6b8d3a02, 0x44240061, 0x00000000}},  //   naí_, _krag, _cfm_,\n  { {0x628100b0, 0xf36700d7, 0x20d3001a, 0x00000000}},  //   _palo, стен, nţie_,\n  { {0xfc3f002a, 0x443d103f, 0x672d0107, 0x00000000}},  //   haí_, saw_, mpaj,\n  { {0x443d39fb, 0x62830056, 0x44240f5e, 0x00000000}},  //   paw_, rdno, _ffm_,\n  { {0x62810a71, 0x38690051, 0x7c3b000c, 0x00000000}},  //   _walo, nfar_, ðurl,\n  { {0x6281021e, 0xef16045a, 0xfc3f002a, 0x00000000}},  //   _talo, омы_, daí_,\n  { {0x8234089d, 0xee39026b, 0x6d4101b5, 0x00000000}},  //   _فرما, шно_, tsla,\n  { {0x7cd2001e, 0x10e702be, 0xfc3f0051, 0x00000000}},  //   kārt, _людм, faí_,\n  { {0xca2901f8, 0x6b8d0a92, 0xfc3f0051, 0x00000000}},  //   _ים_, _brag, gaí_,\n  { {0x6d41093b, 0x2d9803a2, 0x291a0035, 0x00000000}},  //   ssla, ärer_, _supa_,\n  { {0x6b8d3a03, 0x6d410056, 0x38bc0048, 0x00000000}},  //   _drag, psla, _míre_,\n  { {0xed592b26, 0x6b8d022b, 0x38690039, 0x00000000}},  //   _той_, _erag, ffar_,\n  { {0x6b8d03a1, 0xfc3f07a7, 0x64490051, 0x00000000}},  //   _frag, caí_, _ndei,\n  { {0x3ea703bb, 0xc31f0055, 0x20d3001a, 0x00000000}},  // [d140] _kont_, নীতি_, cţie_,\n  { {0x6449018e, 0x7cfd00f4, 0x291a011c, 0x00000000}},  //   _adei, méra, _tupa_,\n  { {0x3ea700f4, 0x7cfd00f4, 0x44240145, 0x00000000}},  //   _mont_, léra, _pfm_,\n  { {0x39580089, 0x38690051, 0x3ea701c3, 0x00000000}},  //   murs_, cfar_, _lont_,\n  { {0x7cfd028c, 0xf48702fd, 0x64490016, 0x00000000}},  //   néra, تالی, _ddei,\n  { {0x68f60016, 0xe73700ec, 0x26ca00e7, 0x00000000}},  //   llyd, _фер_, _umbo_,\n  { {0x1a9b0049, 0x7cfd3a04, 0x68f60016, 0x00000000}},  //   ייסע, héra, olyd,\n  { {0x8f46041f, 0xddd80161, 0xdb1d0010, 0x00000000}},  //   оход, _navš, szsé,\n  { {0x629e021e, 0x3ea70016, 0x24840026, 0x00000000}},  //   öpos, _bont_, _iamm_,\n  { {0x3ea7000d, 0x7cfd028c, 0x3eb821d9, 0x00000000}},  //   _cont_, déra, órt_,\n  { {0xfc3f0195, 0x3ea7028c, 0xdd900426, 0x00000000}},  //   taí_, _dont_, روح_,\n  { {0x6b8d3a05, 0xe5710049, 0x2e0e006b, 0x00000000}},  //   _prag, ײַט_, rəf_,\n  { {0x3ea70365, 0xfc3f3244, 0x395800f4, 0x00000000}},  //   _font_, raí_, eurs_,\n  { {0x6b8d02ae, 0xfc3f002a, 0x24840210, 0x00000000}},  //   _vrag, saí_, _lamm_,\n  { {0x2988058e, 0x24863a06, 0x6b8d01d6, 0x00000000}},  //   осто_, kdom_, _wrag,\n  { {0x7cfd00f4, 0x20d3001a, 0x23660023, 0x00000000}},  //   béra, pţie_, ktoj_,\n  { {0x23660065, 0x7cfd0ee5, 0x24863a07, 0x00000000}},  // [d150] jtoj_, céra, ddom_,\n  { {0x6127011f, 0x672d023a, 0xe801013d, 0x00000000}},  //   _yıld, rpaj, लेगा_,\n  { {0x39583a08, 0x7cd20089, 0x38690d28, 0x00000000}},  //   curs_, pārt, pfar_,\n  { {0x2486004e, 0xa8790049, 0x2458007e, 0x00000000}},  //   gdom_, _פאָר, жаць_,\n  { {0x889a00b6, 0xd37b026b, 0x248401b8, 0x00000000}},  //   _הברי, рче_, _damm_,\n  { {0x68ed0f44, 0x2ca9190f, 0x290900b0, 0x00000000}},  //   load, _load_, lmaa_,\n  { {0x3ea73a09, 0x248417cf, 0x00000000, 0x00000000}},  //   _ront_, _famm_,   ,\n  { {0x3ea7028c, 0x38bc0051, 0x2ca905a1, 0x00000000}},  //   _sont_, _tíre_, _noad_,\n  { {0x3ea70010, 0xd040006b, 0x29090052, 0x00000000}},  //   _pont_, nimə, imaa_,\n  { {0x92b7035b, 0x7cf61b62, 0xddd80087, 0x00000000}},  //   _بحرا, mári, _savš,\n  { {0x7cf605e2, 0x3ea700f4, 0xf6520049, 0x00000000}},  //   lári, _vont_, עצט_,\n  { {0x7cfd3a0a, 0x2a78010f, 0x7cff0006, 0x00000000}},  //   téra, werb_, _kūry,\n  { {0x7cf602d5, 0x60db00ea, 0x68ed00fa, 0x00000000}},  //   nári, mnum, doad,\n  { {0x39580089, 0x248609fc, 0xdd010089, 0x00000000}},  //   turs_, zdom_, ītāj,\n  { {0x24860203, 0xda79007e, 0x8a03013b, 0x00000000}},  //   ydom_, цяў_, езре,\n  { {0x7cfd00f4, 0xb87b000c, 0x98a300e2, 0x00000000}},  //   péra, _skír, нисе,\n  { {0x24860107, 0x68f605a6, 0xfaff0023, 0x00000000}},  // [d160] vdom_, rlyd, mtën_,\n  { {0x7cf63a0b, 0x39580066, 0x2484010e, 0x00000000}},  //   dári, purs_, _samm_,\n  { {0x3a3700a0, 0x3f8f01c3, 0x2486004a, 0x00000000}},  //   _מרים_, _lrgu_, tdom_,\n  { {0xa5070e8a, 0xeab200a1, 0x04570025, 0x00000000}},  //   пеха_, _آٹھ_, كلمة_,\n  { {0x24861656, 0x33f60025, 0x60db1dcd, 0x00000000}},  //   rdom_, أساس, dnum,\n  { {0x78a40295, 0xa3a500b9, 0x2366116b, 0x00000000}},  //   ljiv, nářů_, rtoj_,\n  { {0x60db2967, 0x386b0051, 0x7c3b000c, 0x00000000}},  //   fnum, _éirí_, ðurk,\n  { {0x78a40091, 0xfaff0065, 0x23660065, 0x00000000}},  //   njiv, jtën_, ptoj_,\n  { {0x442601ca, 0x2ca900ab, 0x7cf600c4, 0x00000000}},  //   mco_, _road_, cári,\n  { {0x44260851, 0x64420051, 0x7d04010e, 0x00000000}},  //   lco_, laoi, _ahis,\n  { {0xfaff0065, 0x44260026, 0xd6be0044, 0x00000000}},  //   ftën_, oco_, _আদায,\n  { {0x44263442, 0x64423a0c, 0x00000000, 0x00000000}},  //   nco_, naoi,   ,\n  { {0x68e300d6, 0x78a405fa, 0x44260a15, 0x00000000}},  //   _índi, djiv, ico_,\n  { {0x64420048, 0xd040013f, 0x00000000, 0x00000000}},  //   haoi, vimə,   ,\n  { {0x2ca9010e, 0x68ed0462, 0x44263a0d, 0x00000000}},  //   _toad_, toad, kco_,\n  { {0x6d5a3a0e, 0x7cfd00f4, 0xe8b5014a, 0x00000000}},  //   muta, méro, _dışı,\n  { {0x6d5a0198, 0x44261fb8, 0x20d3001a, 0x00000000}},  // [d170] luta, dco_, nţia_,\n  { {0x29090934, 0x60c00058, 0x7cf608aa, 0x00000000}},  //   smaa_, hhmm, vári,\n  { {0x6d5a21c2, 0xf5790355, 0x44260253, 0x00000000}},  //   nuta, تماع_, fco_,\n  { {0x7cf602d5, 0xdd860123, 0x43750264, 0x00000000}},  //   tári, _یو_, дукт,\n  { {0x6d5a3a0f, 0x60db00ea, 0x7c3f0066, 0x00000000}},  //   huta, vnum, _meqr,\n  { {0x7cf602d5, 0x6d5a1cce, 0x44261278, 0x00000000}},  //   rári, kuta, aco_,\n  { {0x6d5a017b, 0x7cf63a10, 0x60db00bb, 0x00000000}},  //   juta, sári, tnum,\n  { {0x44260198, 0x6d5a006c, 0x64420048, 0x00000000}},  //   cco_, duta, caoi,\n  { {0x60db006c, 0x7d04005b, 0x00000000, 0x00000000}},  //   rnum, _rhis,   ,\n  { {0x443f0129, 0x7d040065, 0x60db0056, 0x00000000}},  //   _heu_, _shis, snum,\n  { {0x6d5a14f7, 0x1d0a10d8, 0xfce60072, 0x00000000}},  //   guta, жени_, доно,\n  { {0x443f028c, 0x3f8f092f, 0xa3b8026c, 0x00000000}},  //   _jeu_, _trgu_, _باہر_,\n  { {0x443f3a11, 0x20d3001a, 0xfaff0065, 0x00000000}},  //   _meu_, cţia_, rtën_,\n  { {0x443f3a12, 0x44260211, 0xfaff0065, 0x00000000}},  //   _leu_, zco_, stën_,\n  { {0x7d040606, 0x3f8d0181, 0x6d550010, 0x00000000}},  //   _this, lveu_, ázad,\n  { {0x443f0b70, 0xe8fa02f0, 0x4426316c, 0x00000000}},  //   _neu_, іла_, xco_,\n  { {0x2ab40004, 0x7c85012b, 0x61e4014a, 0x00000000}},  // [d180] _läbi_, _чује, ğili,\n  { {0x61e401df, 0x6b840006, 0x257e00b9, 0x00000000}},  //   şili, _isig, _půl_,\n  { {0x44260082, 0xf1c30006, 0x443f3a13, 0x00000000}},  //   tco_, nešė_, _beu_,\n  { {0x4426027b, 0x69da009d, 0x00000000, 0x00000000}},  //   uco_, ûteu,   ,\n  { {0x44260198, 0x7c3b009f, 0x443f09f7, 0x00000000}},  //   rco_, ðuri, _deu_,\n  { {0x442620e4, 0x443f0007, 0x7bc60059, 0x00000000}},  //   sco_, _eeu_, izku,\n  { {0x443f0fdb, 0x6d5a0032, 0xdc30007f, 0x00000000}},  //   _feu_, xuta, _užėm,\n  { {0x38603a14, 0x6b840091, 0x6d5a006c, 0x00000000}},  //   ngir_, _osig, vuta,\n  { {0x4fc600a5, 0x27240010, 0x6d5a0022, 0x00000000}},  //   ьска, _jön_, wuta,\n  { {0x6d5a022b, 0x6440003b, 0x41b6003b, 0x00000000}},  //   tuta, _hemi, _осет,\n  { {0x629a0412, 0x6b843a15, 0x443f0011, 0x00000000}},  //   _into, _asig, _yeu_,\n  { {0x6d5a020c, 0x628a0240, 0xe5710049, 0x00000000}},  //   ruta, ldfo, אַך_,\n  { {0x6d5a061f, 0x64400149, 0x62883a16, 0x00000000}},  //   suta, _memi, _kado,\n  { {0x628a0030, 0x644038c0, 0x62882480, 0x00000000}},  //   ndfo, _lemi, _jado,\n  { {0x6b840207, 0xaf070025, 0x6127014a, 0x00000000}},  //   _esig, _تقوم_, _kıla,\n  { {0xfb1a026c, 0x62880d8e, 0x64400091, 0x00000000}},  //   _کريں_, _lado, _nemi,\n  { {0x6d4805b7, 0x443f00bb, 0x2b4901ee, 0x00000000}},  // [d190] lsda, _reu_, _uvac_,\n  { {0x443f2b7d, 0x272401df, 0xceb8093c, 0x00000000}},  //   _seu_, _dön_, nkę_,\n  { {0x443f0293, 0x6d4801b5, 0x628a018e, 0x00000000}},  //   _peu_, nsda, ddfo,\n  { {0x629a022b, 0x64403a17, 0x443f2a65, 0x00000000}},  //   _anto, _cemi, _qeu_,\n  { {0x66c00073, 0x443f0129, 0x62880032, 0x00000000}},  //   _söke, _veu_, _bado,\n  { {0x2919000b, 0x6288001a, 0x6d480039, 0x00000000}},  //   _hisa_, _cado, ksda,\n  { {0x64403a18, 0x29190263, 0x628802d5, 0x00000000}},  //   _femi, _kisa_, _dado,\n  { {0x629a0919, 0x64400397, 0x6d4805d5, 0x00000000}},  //   _ento, _gemi, dsda,\n  { {0xb2750216, 0x291938a5, 0x6d4a093b, 0x00000000}},  //   _плаш, _misa_, _avfa,\n  { {0x29190004, 0x62880089, 0x7ce802b9, 0x00000000}},  //   _lisa_, _gado, zırd,\n  { {0xab5b0047, 0x6f1801ee, 0x6d481642, 0x00000000}},  //   szül, _divc, gsda,\n  { {0x628801d9, 0x2919097f, 0x0fd00061, 0x00000000}},  //   _zado, _nisa_, _तेवढ,\n  { {0x2bba0025, 0x6d4801c3, 0x00000000, 0x00000000}},  //   ساحة_, asda,   ,\n  { {0xc332019b, 0xf8bf0e6d, 0x29190032, 0x00000000}},  //   רום_, _alé_, _aisa_,\n  { {0x29190762, 0x27240039, 0xf8bf009d, 0x00000000}},  //   _bisa_, _sön_, _blé_,\n  { {0xf8bf1321, 0x291900f6, 0xad1a0049, 0x00000000}},  //   _clé_, _cisa_, _צופר,\n  { {0x2919008d, 0x3860009f, 0x27e600f4, 0x00000000}},  // [d1a0] _disa_, rgir_, çon_,\n  { {0x5986013b, 0xf8bf0010, 0x291e00fa, 0x00000000}},  //   _злоб, _elé_, ítas_,\n  { {0x62880b54, 0x6440020c, 0x29190bc2, 0x00000000}},  //   _rado, _pemi, _fisa_,\n  { {0x2919022b, 0x63a23a19, 0x44f60014, 0x00000000}},  //   _gisa_, txon, رساز,\n  { {0x6288001e, 0x7cf60142, 0xceb81f00, 0x00000000}},  //   _pado, lárs, ykę_,\n  { {0x764e0030, 0x76450022, 0x29190035, 0x00000000}},  //   _udby, cahy, _zisa_,\n  { {0x66e301f9, 0x6288010a, 0x6440011f, 0x00000000}},  //   _сора, _vado, _temi,\n  { {0xd5b9008b, 0x62880020, 0x6d4e008e, 0x00000000}},  //   _ўсё_, _wado, ábam,\n  { {0x62880af2, 0x6f1810c1, 0xdfd0023c, 0x00000000}},  //   _tado, _pivc, شيد_,\n  { {0x69c70036, 0xc7b3009b, 0x201d000a, 0x00000000}},  //   yzje, טבח_, _egwi_,\n  { {0xceb81f00, 0x6d48007f, 0x6ef400f6, 0x00000000}},  //   rkę_, usda, fàbr,\n  { {0xdd12005d, 0x6d483a1a, 0x7cf60027, 0x00000000}},  //   rüşl, rsda, dárs,\n  { {0x291911c4, 0x6d480056, 0xceb800b4, 0x00000000}},  //   _risa_, ssda, pkę_,\n  { {0x291904d4, 0x8f9b0097, 0x6d4802e1, 0x00000000}},  //   _sisa_, _מידי, psda,\n  { {0xf8bf002a, 0x2919133a, 0x7cf6140e, 0x00000000}},  //   _plé_, _pisa_, tárt,\n  { {0xc4c400a1, 0x3f86000a, 0x7645008a, 0x00000000}},  //   _طے_, _ksou_, wahy,\n  { {0x29190073, 0x3f860224, 0xddc810d9, 0x00000000}},  // [d1b0] _visa_, _jsou_, nedž,\n  { {0x65950407, 0x35e7004c, 0x1a6500a1, 0x00000000}},  //   казу, нцев, _جیسی_,\n  { {0x29190020, 0x76450093, 0x7c3b014a, 0x00000000}},  //   _tisa_, rahy, ıurf,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x45180123, 0x7c2d00e7, 0x80a400e8, 0x00000000}},  //   رآمد_, _mfar, काने,\n  { {0x2489325c, 0xbb3c0104, 0x00000000, 0x00000000}},  //   žam_, לעדי,   ,\n  { {0x3f860173, 0x7cfd0010, 0xe0570bb6, 0x00000000}},  //   _asou_, gérk, فیات_,\n  { {0xa99c00a3, 0xddc8012d, 0x712403ec, 0x00000000}},  //   לבור, fedž, درول,\n  { {0x776d027b, 0x442d1595, 0x2480010e, 0x00000000}},  //   ntax, _ife_, õime_,\n  { {0x7c2d001a, 0xf77200a0, 0x1e950256, 0x00000000}},  //   _afar, סקי_, трир,\n  { {0x7f490026, 0xdcf4016c, 0x22473a1b, 0x00000000}},  //   sseq, žača, mank_,\n  { {0x7c2d008d, 0x22470007, 0x442d17fe, 0x00000000}},  //   _cfar, lank_, _jfe_,\n  { {0x30d80049, 0x3b83007e, 0xef0e004d, 0x00000000}},  //   _אַװע, аляг, _вм_,\n  { {0x7cf607fd, 0x442d0943, 0x00000000, 0x00000000}},  //   társ, _lfe_,   ,\n  { {0xaa4302d3, 0x78af003b, 0xa967017a, 0x00000000}},  //   ресл, _bocv, кира_,\n  { {0x442d00fa, 0x00000000, 0x00000000, 0x00000000}},  //   _nfe_,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  // [d1c0]   ,   ,   ,\n  { {0x442d01aa, 0xa926003b, 0xaca800a1, 0x00000000}},  //   _afe_, _идол, _آپکے_,\n  { {0x05660057, 0x22470007, 0x442d3a1c, 0x00000000}},  //   твен, dank_, _bfe_,\n  { {0x6b960007, 0x442d06d2, 0x2b4000ea, 0x00000000}},  //   _kryg, _cfe_, _kwic_,\n  { {0x442d0009, 0x61ed005d, 0x7cf600d6, 0x00000000}},  //   _dfe_, şall, nárq,\n  { {0x6263012b, 0x66e60b81, 0x61fa3a1d, 0x00000000}},  //   авља, _рога, _pytl,\n  { {0xe29700e1, 0xe5a30517, 0x442d0009, 0x00000000}},  //   тај_, _кири, _ffe_,\n  { {0x6b960036, 0x3eae3a1e, 0x442d02c2, 0x00000000}},  //   _oryg, _soft_, _gfe_,\n  { {0xd3f4007e, 0xb3550241, 0x00000000, 0x00000000}},  //   _лiст, _مینا_,   ,\n  { {0x7cfd00f4, 0x7c2d3a1f, 0x38b50039, 0x00000000}},  //   méri, _sfar, _hårt_,\n  { {0x7cfd1b6d, 0x7c2d010f, 0x61e4014a, 0x00000000}},  //   léri, _pfar, ğils,\n  { {0x6b9600eb, 0x776d006b, 0xc5f3009b, 0x00000000}},  //   _bryg, ytax, ידת_,\n  { {0x3f8600c4, 0x3eae0190, 0x2d870032, 0x00000000}},  //   _usou_, _toft_, _esne_,\n  { {0x6b960039, 0x00000000, 0x00000000, 0x00000000}},  //   _dryg,   ,   ,\n  { {0x7c3b009f, 0x60c20007, 0x7cfd009d, 0x00000000}},  //   ðurs, _klom, héri,\n  { {0x7c2d0020, 0x38720016, 0x6b960030, 0x00000000}},  //   _ufar, gfyr_, _fryg,\n  { {0x66c00039, 0x442d013f, 0x7cf6004a, 0x00000000}},  // [d1d0] _söka, _rfe_, párr,\n  { {0x776d027b, 0x60c21460, 0xe3b30014, 0x00000000}},  //   rtax, _llom, یرش_,\n  { {0x6d5a001c, 0x776d049a, 0x60c200b9, 0x00000000}},  //   nrta, stax, _olom,\n  { {0x7cfd00f4, 0x6d5a0056, 0xde150049, 0x00000000}},  //   féri, irta, אַנץ_,\n  { {0x7cfd00f4, 0x22470190, 0x42d50245, 0x00000000}},  //   géri, tank_, ліку,\n  { {0x60c201d6, 0x91e500da, 0xf9900167, 0x00000000}},  //   _alom, лоле, _ابی_,\n  { {0xfa7800b6, 0x22470c30, 0x36d4007c, 0x00000000}},  //   דעות_, rank_, _торр,\n  { {0x60c224be, 0x7cfd0f07, 0x442d0258, 0x00000000}},  //   _clom, béri, _ufe_,\n  { {0x7af50047, 0x62350783, 0x6d5a24c6, 0x00000000}},  //   kozt, _безу, erta,\n  { {0x6127011f, 0x52740167, 0x7ce8019a, 0x00000000}},  //   _yıll, _نامز, dıra,\n  { {0x60c23a20, 0x8c460256, 0x61270095, 0x00000000}},  //   _flom, лене, _kılm,\n  { {0x7cf600c4, 0x60c22f3d, 0x55760049, 0x00000000}},  //   tárq, _glom, נערן_,\n  { {0xfc471526, 0xeb9701e0, 0x20240027, 0x00000000}},  //   ñías_, гия_, ásiť_,\n  { {0x7cc40010, 0x6b960007, 0x7cf60d7b, 0x00000000}},  //   nőrz, _vryg, rárq,\n  { {0x5d790049, 0x224500c7, 0x2d870166, 0x00000000}},  //   _טאַק, _melk_, _usne_,\n  { {0x6b96009f, 0xbc66213a, 0x4dfa0049, 0x00000000}},  //   _tryg, _свик, _אפצא,\n  { {0x48060887, 0x2d000061, 0xc7a3003b, 0x00000000}},  // [d1e0] упав, ईतील_, битк,\n  { {0xe5a60c96, 0x8c1b009b, 0x249f0145, 0x00000000}},  //   лизи, _אופי, _anum_,\n  { {0xd946022a, 0xe45a003b, 0x96f9007e, 0x00000000}},  //   _щени, еже_, тэту_,\n  { {0x7cfd3a21, 0xa34a003b, 0x136a00e3, 0x00000000}},  //   téri, езда_, ешки_,\n  { {0x38b501c9, 0xcc3b0049, 0x68e41319, 0x00000000}},  //   _vårt_, גענט, mnid,\n  { {0x29000dc9, 0x60c20091, 0x249f00ea, 0x00000000}},  //   llia_, _slom, _enum_,\n  { {0x60c200f4, 0x68e4006c, 0x8cc70061, 0x00000000}},  //   _plom, onid, ासमो,\n  { {0x7cfd028c, 0x92e40055, 0x26da0020, 0x00000000}},  //   péri, নতে_, lipo_,\n  { {0x68e40016, 0x290017b4, 0x7ce8006b, 0x00000000}},  //   inid, ilia_, xıra,\n  { {0x29003015, 0x224501f3, 0xe3eb0049, 0x00000000}},  //   hlia_, _gelk_, _אַבֿ,\n  { {0xd6db00b3, 0x29000020, 0x6127014a, 0x00000000}},  //   תחיל, klia_, _yılm,\n  { {0x7ce8005d, 0x6d5a0048, 0x2ca00009, 0x00000000}},  //   tıra, rrta, _cnid_,\n  { {0x7af53a22, 0xd0120025, 0xda7b0131, 0x00000000}},  //   tozt, _الش_, няв_,\n  { {0x66c03a23, 0x2ca01e11, 0x3d940088, 0x00000000}},  //   _sökn, _enid_, _викр,\n  { {0x68e40016, 0x7af5028d, 0x26da0026, 0x00000000}},  //   fnid, rozt, dipo_,\n  { {0x29000198, 0x68e40b33, 0x7ebf01c3, 0x00000000}},  //   glia_, gnid, _lêpl,\n  { {0x96f900ed, 0xe894007c, 0x7d0d00b0, 0x00000000}},  // [d1f0] веат_, щать, _ihas,\n  { {0x29003a24, 0xaa670256, 0x67260065, 0x00000000}},  //   alia_, _стик, _dukj,\n  { {0x2900011c, 0x7d0d1636, 0x00000000, 0x00000000}},  //   blia_, _khas,   ,\n  { {0x63b90046, 0x29000129, 0xddc80027, 0x00000000}},  //   tywn, clia_, radň,\n  { {0x7d0d00e7, 0x66c0019a, 0x248d012d, 0x00000000}},  //   _mhas, _kökl, _vaem_,\n  { {0x26da0207, 0x2d85005b, 0xb7da009b, 0x00000000}},  //   cipo_, ywle_, _יקרי,\n  { {0x02c50061, 0x63b90036, 0xe2c900a6, 0x00000000}},  //   _वतीन, sywn, _یورو_,\n  { {0x78ad0a0f, 0x224500b5, 0xb97c0049, 0x00000000}},  //   njav, _welk_, גנהי,\n  { {0x644b1921, 0x09d2001c, 0x4f2501f9, 0x00000000}},  //   magi, _सध्य, јдоб,\n  { {0x644b3a25, 0x7f5b0f57, 0x7d0d12ea, 0x00000000}},  //   lagi, rruq, _ahas,\n  { {0x7d0d1fec, 0x29003a26, 0x00000000, 0x00000000}},  //   _bhas, ylia_,   ,\n  { {0x644b011c, 0x62833a27, 0x30e4007e, 0x00000000}},  //   nagi, leno, _лічб,\n  { {0x78ad1985, 0x60db01a2, 0xee2e005e, 0x00000000}},  //   djav, mium, _мн_,\n  { {0x644b117c, 0x60db0d8f, 0xfc030088, 0x00000000}},  //   hagi, lium, іпро,\n  { {0xd9460175, 0x66c00039, 0x644b22f6, 0x00000000}},  //   реби, _söko, kagi,\n  { {0x6283005b, 0x60c920ac, 0x7d0d0020, 0x00000000}},  //   heno, nhem, _ghas,\n  { {0x644b3a28, 0x68e400d6, 0x26da0325, 0x00000000}},  // [d200] dagi, rnid, tipo_,\n  { {0xfd4c001d, 0x62830213, 0xdcf900b9, 0x00000000}},  //   _nhiệ, jeno, _osvě,\n  { {0x1426019d, 0x4a5b00b6, 0x29000919, 0x00000000}},  //   адем, _בדיו, plia_,\n  { {0x644b05af, 0x26da0020, 0x7cfd0ee5, 0x00000000}},  //   gagi, sipo_, sérv,\n  { {0x60db2af8, 0x20d3001a, 0x66c0006b, 0x00000000}},  //   dium, cţii_, _hökm,\n  { {0x628302ae, 0x6d430943, 0xfd4c0082, 0x00000000}},  //   geno, _owna, _chiệ,\n  { {0x644b023a, 0x6d55139d, 0x22420011, 0x00000000}},  //   bagi, ázal, _đkkd_,\n  { {0x7c243a29, 0x92c80044, 0x60c900e7, 0x00000000}},  //   _ngir, োকে_, ghem,\n  { {0x4ea6007e, 0xa805004a, 0x232a02dc, 0x00000000}},  //   арна, muñé, _рози_,\n  { {0x62830089, 0x7c24022b, 0x6233012b, 0x00000000}},  //   ceno, _agir, _међу,\n  { {0x0697009b, 0x7d0d00ab, 0x7cfd0010, 0x00000000}},  //   בדים_, _phas, kért,\n  { {0x60c9084d, 0x60db0035, 0x211a0014, 0x00000000}},  //   chem, cium, _شتاب_,\n  { {0x44240253, 0xdee601ab, 0x00000000, 0x00000000}},  //   _mgm_, _коди,   ,\n  { {0x644b002d, 0xd007017f, 0x7ce8005d, 0x00000000}},  //   zagi, _тече_, lırl,\n  { {0x1fe80055, 0x7d0d0065, 0x764701aa, 0x00000000}},  //   _পরিস, _thas, _rejy,\n  { {0x6283137e, 0x31570049, 0x26d800bb, 0x00000000}},  //   zeno, יילן_, _amro_,\n  { {0x78ad3a2a, 0x644b313b, 0x628300bb, 0x00000000}},  // [d210] rjav, vagi, yeno,\n  { {0xed4d026c, 0x644b11b3, 0x6b8d0be4, 0x00000000}},  //   _تھی_, wagi, _isag,\n  { {0x62833a2b, 0x442400f6, 0xb9950025, 0x00000000}},  //   veno, _bgm_, _الجب,\n  { {0x77640129, 0x6b8d1174, 0x20d30035, 0x00000000}},  //   buix, _ksag, pţii_,\n  { {0x62833000, 0x7ce80279, 0x38690022, 0x00000000}},  //   teno, dırl, mgar_,\n  { {0x38690181, 0x442f012d, 0x6b8d3a2c, 0x00000000}},  //   lgar_, scg_, _msag,\n  { {0x644b02ae, 0x62830091, 0x3495004c, 0x00000000}},  //   pagi, reno, _лавр,\n  { {0x38692161, 0x62830073, 0x6b8d002d, 0x00000000}},  //   ngar_, seno, _osag,\n  { {0xfd4c001d, 0x60db06aa, 0x6283003b, 0x00000000}},  //   _thiệ, rium, peno,\n  { {0x60db0c75, 0x60c90f3e, 0x3869005b, 0x00000000}},  //   sium, shem, hgar_,\n  { {0xa2940088, 0x7cfd0010, 0x02fa0049, 0x00000000}},  //   _фахі, yért, _עלעמ,\n  { {0xe1f0083e, 0xb1152337, 0x00000000, 0x00000000}},  //   _غسل_, _умеш,   ,\n  { {0xfaff0065, 0x386900f8, 0x66c03a2d, 0x00000000}},  //   jtës_, dgar_, _sökm,\n  { {0xa3af0316, 0x69ce010f, 0x6d5c1866, 0x00000000}},  //   _ओपन_, tzbe, árac,\n  { {0xcd3503ec, 0x6b8d0197, 0x68fd0022, 0x00000000}},  //   _ارتب, _esag, _bksd,\n  { {0x38692d47, 0xfaff0065, 0x69ce010f, 0x00000000}},  //   ggar_, ftës_, rzbe,\n  { {0x03e20044, 0xc7a301e0, 0xdc3b0049, 0x00000000}},  // [d220] _বর্ণ, питк, _געפר,\n  { {0x7ce8038c, 0x38693a2e, 0x44240145, 0x00000000}},  //   zırl, agar_, _sgm_,\n  { {0xb8ce0055, 0x6449010f, 0x7ce8005d, 0x00000000}},  //   _কত_, _beei, yırl,\n  { {0xed56007b, 0xfaff0065, 0x232a0603, 0x00000000}},  //   מבער_, stët_, годи_,\n  { {0x20d30035, 0x33f60025, 0x00000000, 0x00000000}},  //   nţiu_, حساس,   ,\n  { {0xd62700e3, 0x26d80091, 0x954a01d8, 0x00000000}},  //   _горе_, _umro_, _مشرق_,\n  { {0x7ce801f6, 0x44243a2f, 0xfc3f093f, 0x00000000}},  //   tırl, _tgm_, ybí_,\n  { {0x6449010f, 0x4424023a, 0x399b0049, 0x00000000}},  //   _geei, _ugm_, ריקד,\n  { {0xdbf100b9, 0x30770025, 0x7ce81a6f, 0x00000000}},  //   _příc, صحية_, rırl,\n  { {0x66fa0164, 0x3869014a, 0x91e6005e, 0x00000000}},  //   ्तिक_, zgar_, _лозе,\n  { {0xd24f083e, 0x00000000, 0x00000000, 0x00000000}},  //   _سنن_,   ,   ,\n  { {0x7cfd0e03, 0xac190e82, 0x7bcf004a, 0x00000000}},  //   vérs, иону_, tzcu,\n  { {0x06fa007d, 0xc4d3009b, 0x00000000, 0x00000000}},  //   ्ताव_, פגש_,   ,\n  { {0x38bc00b9, 0x3da6041f, 0x38690016, 0x00000000}},  //   _míru_, _гриб, wgar_,\n  { {0xf8bf009d, 0xa803014a, 0x386900e0, 0x00000000}},  //   _liée_, ğıms, tgar_,\n  { {0x320c04bb, 0x6b8d3a30, 0x00000000, 0x00000000}},  //   _mzdy_, _tsag,   ,\n  { {0x38693a31, 0xf7700025, 0x2cf70061, 0x00000000}},  // [d230] rgar_, فال_, ीतील_,\n  { {0x6efd00f4, 0x3869005b, 0x644900ab, 0x00000000}},  //   lèbr, sgar_, _seei,\n  { {0x64490719, 0x986500a1, 0xfaff0065, 0x00000000}},  //   _peei, _ویسے_, stës_,\n  { {0xe61000a1, 0x6efd009d, 0x7ce828fc, 0x00000000}},  //   رشل_, nèbr, yırm,\n  { {0x69d8000c, 0x00000000, 0x00000000, 0x00000000}},  //   _þver,   ,   ,\n  { {0xe299132e, 0x04fb0044, 0x715902dc, 0x00000000}},  //   рак_, েদের_, арис_,\n  { {0x96080551, 0x32cb0056, 0x00000000, 0x00000000}},  //   _гэта_, _nøye_,   ,\n  { {0x7ce8005d, 0x69da00c4, 0x00000000, 0x00000000}},  //   tırm, útei,   ,\n  { {0x2d981565, 0x2d9c010e, 0x00000000, 0x00000000}},  //   æren_, _arve_,   ,\n  { {0x20030089, 0xd2510084, 0x00000000, 0x00000000}},  //   āji_, _آنا_,   ,\n  { {0xb035005e, 0xdb060036, 0xf8c90061, 0x00000000}},  //   _днеш, zykó, रसाय,\n  { {0xc0ab1298, 0x236001ed, 0x6efd0068, 0x00000000}},  //   _حائل_, šije_, gèbr,\n  { {0xab2a0888, 0xb4fa01ce, 0x4438006b, 0x00000000}},  //   рога_, שפרי, _ər_,\n  { {0x81cc0055, 0x66c0014a, 0xc332009b, 0x00000000}},  //   রপর_, _gökh, ווך_,\n  { {0x2d98044f, 0x7ce8014a, 0x00000000, 0x00000000}},  //   året_, nırk,   ,\n  { {0xdb060036, 0x00000000, 0x00000000, 0x00000000}},  //   tykó,   ,   ,\n  { {0xe8f70c50, 0x464a003b, 0xfaff0065, 0x00000000}},  // [d240] ілу_, изан_, rtër_,\n  { {0xfaff0065, 0x7ce80095, 0x00000000, 0x00000000}},  //   stër_, kırk,   ,\n  { {0x7afc02f1, 0x08fa0025, 0x00000000, 0x00000000}},  //   mort, _نرحب_,   ,\n  { {0x7afc0203, 0x66c000b0, 0xc7a60c96, 0x00000000}},  //   lort, _möki, _димк,\n  { {0x78a600ea, 0x00000000, 0x00000000, 0x00000000}},  //   _inkv,   ,   ,\n  { {0x7afc0016, 0x62340545, 0x7cf60010, 0x00000000}},  //   nort, чеку, gárz,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7afc0e67, 0x2002009f, 0x64422665, 0x00000000}},  //   kort, æki_, mboi,\n  { {0x2d9c1a2d, 0x7afc032e, 0x644200f6, 0x00000000}},  //   _prve_, jort, lboi,\n  { {0xa2a7007d, 0x7afc06d4, 0x1df80930, 0x00000000}},  //   चार्, dort, сены_,\n  { {0x64420288, 0x61ed019a, 0xff0a0044, 0x00000000}},  //   nboi, ğalt, রদেশ_,\n  { {0x7afc06da, 0xd007003b, 0xdb1d33df, 0x00000000}},  //   fort, _деце_, lysé,\n  { {0x7afc04a0, 0x00000000, 0x00000000, 0x00000000}},  //   gort,   ,   ,\n  { {0xdb1d0047, 0x7c360016, 0x0994003b, 0x00000000}},  //   nysé, _ffyr, марџ,\n  { {0x26ca0046, 0x473503f6, 0xa2a70061, 0x00000000}},  //   _albo_, знас, चाऱ्,\n  { {0x7afc0016, 0x7ce8006b, 0x00000000, 0x00000000}},  // [d250] bort, zırk,   ,\n  { {0x501b009b, 0x7afc3a32, 0x78a60087, 0x00000000}},  //   שומו, cort, _enkv,\n  { {0x63b600b0, 0x00000000, 0x00000000, 0x00000000}},  //   äynn,   ,   ,\n  { {0xf9fa009b, 0x26ca0146, 0x224c0288, 0x00000000}},  //   _להתמ, _elbo_, _aedk_,\n  { {0xb87b004a, 0x00000000, 0x00000000, 0x00000000}},  //   _amíg,   ,   ,\n  { {0x02c5024c, 0x77ba00b6, 0x67ba009b, 0x00000000}},  //   वसेन, _המשח, _המשק,\n  { {0xca7c0097, 0x20090089, 0xe0570123, 0x00000000}},  //   ינגט, _šai_, قیات_,\n  { {0x25750634, 0x7afc3a33, 0x00000000, 0x00000000}},  //   mål_, zort,   ,\n  { {0xb4e7001c, 0xf07600a1, 0x00000000, 0x00000000}},  //   यची_, سیوں_,   ,\n  { {0xf1950088, 0x4d6500e2, 0x00000000, 0x00000000}},  //   _низь, пков,   ,\n  { {0x6da50057, 0x7cfd0b33, 0x7afc0716, 0x00000000}},  //   чина, térp, vort,\n  { {0x7afc001f, 0xbfb70f8b, 0xdb0d0142, 0x00000000}},  //   wort, _وحشت, ľkýc,\n  { {0x7afc001e, 0x7f19007e, 0xa2d200e8, 0x00000000}},  //   tort, _ліку_, भोक्,\n  { {0x6442001a, 0x8f9a00a3, 0x8d5507e1, 0x00000000}},  //   zboi, _ליני, _етич,\n  { {0x7d110047, 0x7afc0d90, 0x9998007f, 0x00000000}},  //   üksé, rort, varų_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  // [d260]   ,   ,   ,\n  { {0x645b0085, 0x6b840258, 0x00000000, 0x00000000}},  //   _adui, _ipig,   ,\n  { {0x3abb00b3, 0x7abb009b, 0x02c50316, 0x00000000}},  //   _המינ, _הציו, वसैन,\n  { {0x27ed0119, 0x00000000, 0x00000000, 0x00000000}},  //   _žene_,   ,   ,\n  { {0x29020004, 0xa3fc0044, 0xa2940245, 0x00000000}},  //   _ikka_, েশ্য_, далі,\n  { {0x32051167, 0x6b840020, 0x26ca00e0, 0x00000000}},  //   _byly_, _mpig, _ulbo_,\n  { {0xb9090011, 0xa13c01c5, 0x00000000, 0x00000000}},  //   _nghỉ_, _orķe,   ,\n  { {0xf48400a2, 0xc1040025, 0x00000000, 0x00000000}},  //   _تاسی, بوعي,   ,\n  { {0xdd1f00b9, 0x4fc6094b, 0x00000000, 0x00000000}},  //   tížn, яска,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x255801aa, 0x6b8400e7, 0xaab00309, 0x00000000}},  //   nčl_, _apig, ञानक,\n  { {0x629800bb, 0x63a005d2, 0x00000000, 0x00000000}},  //   ldvo, _krmn,   ,\n  { {0x66c0005f, 0xde5801ff, 0x00000000, 0x00000000}},  //   _höku, _далі_,   ,\n  { {0x765c008d, 0x753c0046, 0x764e0802, 0x00000000}},  //   _ndry, _otrz, _neby,\n  { {0x25dc001c, 0xc984019d, 0x66c0000c, 0x00000000}},  //   _गेली_, нути, _jöku,\n  { {0x628a0190, 0x765c0208, 0xf773009e, 0x00000000}},  //   hefo, _adry, ٹار_,\n  { {0xf7730d3a, 0x628a00ea, 0x23db0061, 0x00000000}},  // [d270] عار_, kefo, _मेंद,\n  { {0x628a3a34, 0xda4b09da, 0x00000000, 0x00000000}},  //   jefo, _учил_,   ,\n  { {0x764e018e, 0x765c0016, 0x00000000, 0x00000000}},  //   _deby, _ddry,   ,\n  { {0xb4e7001c, 0x765c018e, 0x2458008b, 0x00000000}},  //   यचे_, _edry, заць_,\n  { {0x68ed0039, 0x6d4a0016, 0x889a009b, 0x00000000}},  //   mnad, _lwfa, _וברי,\n  { {0x628a0302, 0x68ed0056, 0x764e0030, 0x00000000}},  //   gefo, lnad, _geby,\n  { {0x68ed0489, 0x236001d5, 0x95c50025, 0x00000000}},  //   onad, ġija_, _غيره,\n  { {0x7f5901f9, 0x68ed13d8, 0x672700e7, 0x00000000}},  //   ојот_, nnad, _hijj,\n  { {0x6d5801d5, 0x68ed0181, 0xa2270014, 0x00000000}},  //   _avva, inad, _فراه,\n  { {0x628a0190, 0x68ed0016, 0x85430006, 0x00000000}},  //   cefo, hnad, _įėji,\n  { {0x6b840197, 0x628101d6, 0x6727219f, 0x00000000}},  //   _spig, _iblo, _mijj,\n  { {0x81b60044, 0x00000000, 0x00000000, 0x00000000}},  //   _চেক_,   ,   ,\n  { {0x68ed035f, 0xdce20089, 0x6d580026, 0x00000000}},  //   dnad, gulā, _evva,\n  { {0x7d0700f4, 0x255801aa, 0x3200014a, 0x00000000}},  //   térê, yčl_, şiye_,\n  { {0x62812a5e, 0x764e00e0, 0xacf6003b, 0x00000000}},  //   _mblo, _reby, _очиј,\n  { {0x68ed003d, 0x77640066, 0x629804eb, 0x00000000}},  //   gnad, trix, zdvo,\n  { {0x6d41006c, 0x753c0036, 0x7d04049d, 0x00000000}},  // [d280] lpla, _strz, _ikis,\n  { {0x6d4100f6, 0x7764002d, 0x68ed0051, 0x00000000}},  //   opla, rrix, anad,\n  { {0x6d4102ae, 0x628a0606, 0x7e7e0039, 0x00000000}},  //   npla, vefo, _öppe,\n  { {0x628100f8, 0xcdb6009b, 0x6d41037f, 0x00000000}},  //   _ablo, ופעה_, ipla,\n  { {0x628a00f4, 0x764e0016, 0x6298016c, 0x00000000}},  //   tefo, _teby, tdvo,\n  { {0x6d410a5e, 0x68e4224c, 0xd13a02d3, 0x00000000}},  //   kpla, liid, охи_,\n  { {0x62810c08, 0x753c0036, 0xf623007e, 0x00000000}},  //   _dblo, _utrz, _адро,\n  { {0x6d410142, 0x628104e6, 0x628a0287, 0x00000000}},  //   dpla, _eblo, sefo,\n  { {0x7c2906ac, 0x628a00bb, 0xa29f0061, 0x00000000}},  //   žerk, pefo, _गोव्,\n  { {0x7d040020, 0x2ca90802, 0x68ed0821, 0x00000000}},  //   _akis, _snad_, znad,\n  { {0x6f0801d0, 0x29000032, 0x68ed3a35, 0x00000000}},  //   rldc, koia_, ynad,\n  { {0xbfc6005e, 0x66c03a2d, 0x7d163a36, 0x00000000}},  //   _обек, _köks, _chys,\n  { {0x5c04007e, 0x68ed00f8, 0xf8bf008e, 0x00000000}},  //   вяра, vnad, _bién_,\n  { {0x6d413a37, 0x7d043a38, 0x00000000, 0x00000000}},  //   bpla, _ekis,   ,\n  { {0x6d550344, 0x68ed0056, 0xe9190088, 0x00000000}},  //   ázat, tnad, зові_,\n  { {0xdce2001e, 0x29000032, 0xddc80036, 0x00000000}},  //   pulā, goia_, padł,\n  { {0x68ed03d1, 0x7c2d167f, 0x00000000, 0x00000000}},  // [d290] rnad, _igar,   ,\n  { {0x68ed3a39, 0x672f016c, 0x7d1d1faf, 0x00000000}},  //   snad, _vucj, lmss,\n  { {0xa29f0183, 0xe3b0007a, 0x68ed0039, 0x00000000}},  //   _गोष्, یره_, pnad,\n  { {0x62813a3a, 0x66c00d47, 0x290000f6, 0x00000000}},  //   _sblo, _sökt, coia_,\n  { {0x6d41086e, 0x673d02e8, 0x9cd800b3, 0x00000000}},  //   zpla, _utsj, וואה_,\n  { {0x6d411f4c, 0x7c2d00f6, 0x00000000, 0x00000000}},  //   ypla, _lgar,   ,\n  { {0x7c2d00b4, 0x00000000, 0x00000000, 0x00000000}},  //   _ogar,   ,   ,\n  { {0x1fb5003b, 0x7c2d0065, 0x6d41032e, 0x00000000}},  //   есор, _ngar, vpla,\n  { {0x442d0695, 0x6d4100bb, 0x2366012d, 0x00000000}},  //   _ige_, wpla, croj_,\n  { {0x6d413a3b, 0x1dca001c, 0x7c2d0211, 0x00000000}},  //   tpla, ानंत, _agar,\n  { {0x7d163a3c, 0x1d0a05f6, 0x752900b5, 0x00000000}},  //   _phys, зени_, _kiez,\n  { {0x55da0049, 0xeafa01f5, 0x425300a1, 0x00000000}},  //   פֿינ, ृत्त_, _سنچر,\n  { {0x75293a3d, 0x2900174b, 0x442d0178, 0x00000000}},  //   _miez, voia_, _mge_,\n  { {0x6d410039, 0x60c92fac, 0x75292ba6, 0x00000000}},  //   ppla, lkem, _liez,\n  { {0x2cab0051, 0x7d16005b, 0x38c800a6, 0x00000000}},  //   áidí_, _thys, واری_,\n  { {0x75290046, 0x27ed049c, 0x442d0093, 0x00000000}},  //   _niez, _žena_, _nge_,\n  { {0x68e401c2, 0xfaff0065, 0xdbc7006c, 0x00000000}},  // [d2a0] riid, mrën_, _sööm,\n  { {0x442d0549, 0x60c91252, 0x7c2d1507, 0x00000000}},  //   _age_, hkem, _zgar,\n  { {0x75290089, 0x60c90bbc, 0x7bc60006, 0x00000000}},  //   _biez, kkem, lyku,\n  { {0x23660161, 0xe452004b, 0xd497007e, 0x00000000}},  //   troj_, اضا_, ерш_,\n  { {0x75291f2e, 0x6abe010f, 0x4394007c, 0x00000000}},  //   _diez, _kopf, талс,\n  { {0x23600e54, 0x442d014a, 0x23660065, 0x00000000}},  //   šijo_, _ege_, rroj_,\n  { {0x6f010197, 0x7ce8005a, 0xa29f0061, 0x00000000}},  //   dolc, nırs, _गोळ्,\n  { {0x23660023, 0x00000000, 0x00000000, 0x00000000}},  //   proj_,   ,   ,\n  { {0xb4be006e, 0x6f010026, 0xfaff0023, 0x00000000}},  //   ेसी_, folc, drën_,\n  { {0x7c2d09f9, 0xfaff0023, 0x75293a3e, 0x00000000}},  //   _sgar, erën_, _ziez,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x629a17b0, 0x60c91962, 0xe3a700a1, 0x00000000}},  //   _hato, ckem, _تشہی,\n  { {0x9b580265, 0x6f010010, 0x2b4000f6, 0x00000000}},  //   ният_, bolc, _ctic_,\n  { {0x2f9700b6, 0x629a002d, 0xd00f006d, 0x00000000}},  //   _נכון_, _jato, _اله_,\n  { {0x629a3a3f, 0x3a250073, 0x78bd0340, 0x00000000}},  //   _mato, älp_, _posv,\n  { {0x6d5a2f9a, 0x629a01aa, 0x7c2d022b, 0x00000000}},  //   msta, _lato, _ugar,\n  { {0x7c840057, 0xe73306dd, 0x2aab01ee, 0x00000000}},  // [d2b0] _суще, اصر_, _етно_,\n  { {0x629a0036, 0x6d5a0213, 0x66c00039, 0x00000000}},  //   _nato, osta, _sökr,\n  { {0x6c6a026c, 0x75293a40, 0xeef70049, 0x00000000}},  //   _علیہ_, _piez, עמבר_,\n  { {0x6d5a00b0, 0xe5070014, 0x7ae701ed, 0x00000000}},  //   ista, رباي, lijt,\n  { {0xe2990069, 0x75291768, 0x66d20146, 0x00000000}},  //   дал_, _viez, _dækb,\n  { {0x629a0e98, 0x6d5a2018, 0x91e50242, 0x00000000}},  //   _cato, ksta, коле,\n  { {0x6f01004a, 0x60c901b1, 0x00000000, 0x00000000}},  //   volc, tkem,   ,\n  { {0x442d0018, 0xceb80036, 0x6fa9034b, 0x00000000}},  //   _uge_, eję_, двиг_,\n  { {0x6d5a0211, 0x60c904d4, 0x629a3a41, 0x00000000}},  //   esta, rkem, _fato,\n  { {0x6d5a00c7, 0x37e30044, 0xfbd70044, 0x00000000}},  //   fsta, _মডার, সপাত,\n  { {0x6d5a0006, 0xfaff0065, 0x2d9a012d, 0x00000000}},  //   gsta, trën_, _šper_,\n  { {0x7bc60046, 0x83fd0010, 0x629a0874, 0x00000000}},  //   tyku, _időb, _zato,\n  { {0x6d5a002a, 0x629a0020, 0x7ae70065, 0x00000000}},  //   asta, _yato, fijt,\n  { {0xceb80046, 0x6d5a0b25, 0x3d12007d, 0x00000000}},  //   cję_, bsta, _धीरे_,\n  { {0xab27102a, 0x6d5a00bb, 0xfaff0065, 0x00000000}},  //   тора_, csta, prën_,\n  { {0x09e10044, 0x2018006b, 0x26d1069d, 0x00000000}},  //   _মুহা, ərib_, _alzo_,\n  { {0xc052052f, 0x7ae70c76, 0x97c320e6, 0x00000000}},  // [d2c0] יזן_, bijt, айте,\n  { {0xb8c90164, 0x00000000, 0x00000000, 0x00000000}},  //   _गो_,   ,   ,\n  { {0x629a037e, 0xd946022a, 0xbebc0089, 0x00000000}},  //   _rato, _шени, smīg,\n  { {0x6d5c002a, 0x629a0e88, 0xa3ce0316, 0x00000000}},  //   árai, _sato, शनल_,\n  { {0x629a0006, 0x6d5a0059, 0x93930025, 0x00000000}},  //   _pato, zsta, لجوا,\n  { {0x6d5a3a42, 0x6d5c08ad, 0xf8bf0068, 0x00000000}},  //   ysta, šrai, _zoé_,\n  { {0xdb1d0010, 0x6d5a013f, 0x32cb00ea, 0x00000000}},  //   nysá, xsta, _gøym_,\n  { {0x629a000b, 0x6d5a20dc, 0x23760b03, 0x00000000}},  //   _wato, vsta, _لائح,\n  { {0x6d5a0046, 0x69c70036, 0xdfd00025, 0x00000000}},  //   wsta, zyje, صيد_,\n  { {0x6d5a0270, 0x4ea60a85, 0x00000000, 0x00000000}},  //   tsta, триа,   ,\n  { {0x63a201ba, 0x42d5007e, 0xdb041155, 0x00000000}},  //   lvon, _сіту, _triê,\n  { {0x13c60044, 0xceb80036, 0x61fa004a, 0x00000000}},  //   _শেয়, sję_, _ixtl,\n  { {0x6d5a05b4, 0x3f98001e, 0x6e960025, 0x00000000}},  //   ssta, ārus_, _للشا,\n  { {0x6d5a0007, 0xaa6400e2, 0x27ed0059, 0x00000000}},  //   psta, итск, _ženo_,\n  { {0xa9c40783, 0x6d5a002b, 0xdb1d0010, 0x00000000}},  //   астк, qsta, gysá,\n  { {0xc19b0452, 0x257c00b9, 0x63a22277, 0x00000000}},  //   ושלי, díl_, kvon,\n  { {0xf7700025, 0x09e10044, 0x00000000, 0x00000000}},  // [d2d0] قال_, _মুশা,   ,\n  { {0x257c0051, 0x63a20725, 0x00000000, 0x00000000}},  //   fíl_, dvon,   ,\n  { {0x1bab00a1, 0x00000000, 0x00000000, 0x00000000}},  //   _راکٹ_,   ,   ,\n  { {0xb87b3a43, 0xe791014a, 0xdb04009d, 0x00000000}},  //   _zmín, _göğü, _ariè,\n  { {0x2f19009d, 0xdb04009d, 0x00000000, 0x00000000}},  //   lège_, _briè,   ,\n  { {0xe3b006b4, 0x257c000c, 0x00000000, 0x00000000}},  //   ترم_, bíl_,   ,\n  { {0x45d5007c, 0xa3e30164, 0x2f19009d, 0x00000000}},  //   _совс, _फेर_, nège_,\n  { {0xd6c50044, 0x320c0016, 0x00000000, 0x00000000}},  //   _এগিয, _dydy_,   ,\n  { {0x61fa0009, 0x645935a8, 0x443d00c4, 0x00000000}},  //   _extl, mawi, mcw_,\n  { {0x1e95012b, 0x64590bc9, 0xe7aa010e, 0x00000000}},  //   урир, lawi, _tööõ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7e7e0073, 0x75350c7d, 0x64593a44, 0x00000000}},  //   _öppn, _muzz, nawi,\n  { {0x75350026, 0x31a3014a, 0x443f00e7, 0x00000000}},  //   _luzz, _hız_, _mfu_,\n  { {0x2d9500ec, 0x31a3014a, 0x645909bd, 0x00000000}},  //   _брис, _kız_, hawi,\n  { {0x64590036, 0x75350026, 0x2d9808e0, 0x00000000}},  //   kawi, _nuzz, æret_,\n  { {0x64590036, 0xddc800b9, 0x443f3a45, 0x00000000}},  //   jawi, jadř, _nfu_,\n  { {0xad1b01ce, 0x9d1b0104, 0x98a30ae0, 0x00000000}},  // [d2e0] _אוקר, _אוקט, щите,\n  { {0x7d063a46, 0x443f04c0, 0x75350133, 0x00000000}},  //   loks, _afu_, _buzz,\n  { {0x76553a47, 0x4a7b0049, 0x2d5100ca, 0x00000000}},  //   _dezy, _אריב, nše_,\n  { {0x257c1185, 0x6459006a, 0x7d0600b0, 0x00000000}},  //   ríl_, gawi, noks,\n  { {0xdb0400f4, 0x443f0190, 0x63a20dd9, 0x00000000}},  //   _priè, _dfu_, uvon,\n  { {0x75350403, 0x63a208a6, 0x2d510091, 0x00000000}},  //   _fuzz, rvon, kše_,\n  { {0x2d5101d9, 0x91860025, 0x75350197, 0x00000000}},  //   jše_, اجتم, _guzz,\n  { {0xc953009b, 0x00000000, 0x00000000, 0x00000000}},  //   זמה_,   ,   ,\n  { {0x7d060110, 0x6d430006, 0x752217f8, 0x00000000}},  //   doks, _atna, mmoz,\n  { {0x61fa0009, 0xb77b0049, 0x75220232, 0x00000000}},  //   _txtl, עאיש, lmoz,\n  { {0x672e002b, 0x00000000, 0x00000000, 0x00000000}},  //   _mibj,   ,   ,\n  { {0x672e0066, 0x7f830241, 0x00000000, 0x00000000}},  //   _libj, جلین,   ,\n  { {0x6d430026, 0x3eb800f8, 0x00000000, 0x00000000}},  //   _etna, örts_,   ,\n  { {0x945d0046, 0x64590036, 0x2f19009d, 0x00000000}},  //   _końc, zawi, tège_,\n  { {0x7d060056, 0x48ab0888, 0x60c201c2, 0x00000000}},  //   boks, нтам_, _koom,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x628811b0, 0x466b3a48, 0x00000000, 0x00000000}},  // [d2f0] _obdo, ерем_,   ,\n  { {0x60c20004, 0x7c290c76, 0x6b8d011c, 0x00000000}},  //   _loom, žers, _ipag,\n  { {0x64590046, 0x64400009, 0x81c90044, 0x00000000}},  //   tawi, _bfmi, _লেন_,\n  { {0xfc3f23aa, 0x5c380049, 0xc50b0014, 0x00000000}},  //   ncí_, ָרגן_, رتال_,\n  { {0x64590046, 0x20d8002a, 0x6b8d3a49, 0x00000000}},  //   rawi, _méid_, _jpag,\n  { {0x64590058, 0x21690264, 0x20d10048, 0x00000000}},  //   sawi, вики_, _cáin_,\n  { {0x31a3006b, 0xfc3f0802, 0x64590058, 0x00000000}},  //   _qız_, kcí_, pawi,\n  { {0x6b8d3a4a, 0x26c300ca, 0x2d510213, 0x00000000}},  //   _opag, _hojo_, vše_,\n  { {0x26c3016c, 0x98a50006, 0x7d0631d5, 0x00000000}},  //   _kojo_, ūlė_, voks,\n  { {0x66d2009f, 0x26c30253, 0x0d8500c0, 0x00000000}},  //   _lækn, _jojo_, алон,\n  { {0x249f3a4b, 0x7d06021e, 0x6b8d00d6, 0x00000000}},  //   _kaum_, toks, _apag,\n  { {0x63a90119, 0xe1f00076, 0x2d510059, 0x00000000}},  //   _kren, _عسل_, rše_,\n  { {0x9f6b0265, 0x7d063a4c, 0x2d980030, 0x00000000}},  //   _чрез_, roks, ærer_,\n  { {0x212f0038, 0x6da5026b, 0x2d5102db, 0x00000000}},  //   _high_, _вика, pše_,\n  { {0x7d0608a8, 0x6b8d00fa, 0xa8560098, 0x00000000}},  //   poks, _epag, итај,\n  { {0xfc3206dd, 0x6b8d3a4d, 0x249f00c4, 0x00000000}},  //   _بحث_, _fpag, _naum_,\n  { {0x26c33a4e, 0xa6e60088, 0x66d20190, 0x00000000}},  // [d300] _bojo_, ажал, _dækn,\n  { {0x26c3008e, 0x2ca001a3, 0x00000000, 0x00000000}},  //   _cojo_, _haid_,   ,\n  { {0x63a90004, 0x26c300ea, 0x249f01a2, 0x00000000}},  //   _aren, _dojo_, _baum_,\n  { {0x63a93a4f, 0x776d049a, 0x212f3a50, 0x00000000}},  //   _bren, brax, _nigh_,\n  { {0x24070331, 0x63a90181, 0xcc3b0049, 0x00000000}},  //   анци_, _cren, דענט,\n  { {0x63a9158f, 0x60c20004, 0x809e03d7, 0x00000000}},  //   _dren, _soom, _खोजे,\n  { {0xd5b2025a, 0x63a90095, 0x649a0081, 0x00000000}},  //   _ظفر_, _eren, _итар_,\n  { {0x63a93861, 0x68f6018e, 0x2ca00675, 0x00000000}},  //   _fren, nnyd, _naid_,\n  { {0x63a90292, 0x68f60016, 0x1eaa0025, 0x00000000}},  //   _gren, inyd, نادي_,\n  { {0x68f6000a, 0x60c201c3, 0x00000000, 0x00000000}},  //   hnyd, _woom,   ,\n  { {0x6b8d0207, 0x60c2006c, 0x63a911e4, 0x00000000}},  //   _spag, _toom, _zren,\n  { {0x2018005f, 0x9b953a51, 0x0ea60061, 0x00000000}},  //   ərin_, бимц, _कोरड,\n  { {0xd0100014, 0x2ca022f0, 0xfc3f0916, 0x00000000}},  //   _علت_, _daid_, rcí_,\n  { {0xfc3f0051, 0x0ead01f5, 0x6d480056, 0x00000000}},  //   scí_, _झोपड, ppda,\n  { {0x68f60bc4, 0x0dca01f9, 0x26c30211, 0x00000000}},  //   fnyd, _јули_, _rojo_,\n  { {0xfce401fc, 0x2f0b0190, 0x26c32a7a, 0x00000000}},  //   _мојо, søgt_, _sojo_,\n  { {0x7d0d0756, 0x693c16d0, 0x249f010f, 0x00000000}},  // [d310] _ikas, _učen, _raum_,\n  { {0x63a90065, 0xba990088, 0x85a7003b, 0x00000000}},  //   _rren, _своє_, ијед,\n  { {0x66d2000c, 0x63a90093, 0x8c090044, 0x00000000}},  //   _tækn, _sren, রেশন_,\n  { {0x20d10051, 0x776d01a2, 0x9848005e, 0x00000000}},  //   _cáil_, prax, _вяра_,\n  { {0x68ed06c0, 0x26c30066, 0xd37b17a4, 0x00000000}},  //   miad, _tojo_, тче_,\n  { {0x68ed018e, 0x130801ff, 0x057700a6, 0x00000000}},  //   liad, аній_, _پاسد,\n  { {0x20d1002a, 0x70130044, 0xf9940049, 0x00000000}},  //   _fáil_, _হলেও_, ַרץ_,\n  { {0x68ed018e, 0x09f80104, 0x00000000, 0x00000000}},  //   niad, ימום_,   ,\n  { {0xc0c8003b, 0x63a92917, 0x2d9c012d, 0x00000000}},  //   рује_, _uren, _asve_,\n  { {0x2ca00038, 0x7d0d0020, 0x68ed0016, 0x00000000}},  //   _said_, _akas, hiad,\n  { {0xdca601fc, 0x68f6018e, 0x2ca000ab, 0x00000000}},  //   бани, ynyd, _paid_,\n  { {0x32d9000a, 0xdb0e013e, 0x00000000, 0x00000000}},  //   _dèye_, ějíc,   ,\n  { {0x68ed018e, 0x2ca00004, 0x8f6a00a1, 0x00000000}},  //   diad, _vaid_, _ملنے_,\n  { {0x6449006b, 0x3ce900f6, 0x60db004a, 0x00000000}},  //   əmiş, _emav_, lhum,\n  { {0x68ed018e, 0x186a0517, 0x00000000, 0x00000000}},  //   fiad, лави_,   ,\n  { {0xa3d702fb, 0x68ed3a52, 0x60db0181, 0x00000000}},  //   ाना_, giad, nhum,\n  { {0xbb860054, 0x2fdf01a2, 0x386f0048, 0x00000000}},  // [d320] _الخي, nzug_, ógra_,\n  { {0x68f601d6, 0x00000000, 0x00000000, 0x00000000}},  //   snyd,   ,   ,\n  { {0x9412005f, 0x1a9b0049, 0x68ed0b9b, 0x00000000}},  //   ədən_, _גייע, biad,\n  { {0x68ed0489, 0x045a0426, 0x69ce0006, 0x00000000}},  //   ciad, اجات_, mybe,\n  { {0x69ce3a53, 0x60db0020, 0xd46700e2, 0x00000000}},  //   lybe, dhum, сиче_,\n  { {0x78a4006c, 0xf743025f, 0xd5d60783, 0x00000000}},  //   ldiv, _херо, _любы,\n  { {0x69ce29f6, 0x6f080142, 0xc5d50088, 0x00000000}},  //   nybe, vodc, _діть,\n  { {0x78a43a54, 0x765e0006, 0x27ed0825, 0x00000000}},  //   ndiv, lapy, _ženi_,\n  { {0x27e0006b, 0xd0100025, 0x00000000, 0x00000000}},  //   nzin_, بلة_,   ,\n  { {0x693c037e, 0x7d0d00b4, 0x66fa0316, 0x00000000}},  //   _pčel, _skas, ौकिक_,\n  { {0xc04f0822, 0xb8000055, 0x4c95234c, 0x00000000}},  //   _ні_, ্ধিত_, оинс,\n  { {0x64421b30, 0x6913011f, 0x60db1dec, 0x00000000}},  //   ncoi, rçek, chum,\n  { {0x68ed253d, 0x78a40197, 0x00000000, 0x00000000}},  //   viad, ddiv,   ,\n  { {0x68ed34c3, 0x27e00036, 0x7c360010, 0x00000000}},  //   wiad, dzin_, _egyr,\n  { {0x68ed018e, 0x6ce703e8, 0x27e00288, 0x00000000}},  //   tiad, _гіпе, ezin_,\n  { {0x98c4004d, 0x7d0d00e7, 0x32cb00ea, 0x00000000}},  //   псул, _ukas, _høyt_,\n  { {0x68ed0027, 0x799e01aa, 0x7aee1b5f, 0x00000000}},  // [d330] riad, _espw, bibt,\n  { {0x68ed3a55, 0xa3ac013d, 0x69ce0a5e, 0x00000000}},  //   siad, गिन_, bybe,\n  { {0x68ed0211, 0x69ce00b5, 0x78a40133, 0x00000000}},  //   piad, cybe, bdiv,\n  { {0x76490279, 0x26d80146, 0x00000000, 0x00000000}},  //   _şeyd, _elro_,   ,\n  { {0xd0061095, 0x987a0049, 0x7cef01aa, 0x00000000}},  //   _آل_, _דארט, _zòrè,\n  { {0x23690059, 0x799e0045, 0x66d203e3, 0x00000000}},  //   šajo_, _yspw, _lækj,\n  { {0xa4d501fb, 0x60db0009, 0xe5c401bd, 0x00000000}},  //   _дові, thum, _есто,\n  { {0x2b490091, 0x20d10051, 0xdce20089, 0x00000000}},  //   _otac_, _táim_, rtlī,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x60db0035, 0x4d651662, 0xdb04004a, 0x00000000}},  //   shum, оков, _prií,\n  { {0x27e0057e, 0xed59012b, 0x2b493a56, 0x00000000}},  //   zzin_, јом_, _atac_,\n  { {0x7fd502f0, 0x1d0a017f, 0x69ce3a57, 0x00000000}},  //   _мілі, реми_, vybe,\n  { {0xf8bf00f4, 0x78a404bb, 0xf8b80082, 0x00000000}},  //   _liés_, vdiv, _đĩ_,\n  { {0x69ce0006, 0x201d0045, 0x00000000, 0x00000000}},  //   tybe, _izwi_,   ,\n  { {0x78a42fec, 0xde02003b, 0x19b90152, 0x00000000}},  //   tdiv, _опши, буть_,\n  { {0x27e00c2f, 0x645b3a58, 0x69ce007f, 0x00000000}},  //   tzin_, _neui, rybe,\n  { {0xeb9a01e0, 0x78a408a7, 0xf092009b, 0x00000000}},  // [d340] _тип_, rdiv, ונן_,\n  { {0x78a423b5, 0x3200026d, 0x00000000, 0x00000000}},  //   sdiv, şiyi_,   ,\n  { {0x66d207a8, 0x765e103b, 0xfc3f02a0, 0x00000000}},  //   _hækk, rapy, ldía_,\n  { {0x2d850009, 0x83fd0010, 0x00000000, 0x00000000}},  //   itle_, _időj,   ,\n  { {0x693c3a59, 0xfc3f008e, 0x6442009d, 0x00000000}},  //   _oček, ndía_, rcoi,\n  { {0x386000b5, 0x644207a7, 0x248d08df, 0x00000000}},  //   lair_, scoi, _ebem_,\n  { {0xd2590ee0, 0x645b00f4, 0x66d20dba, 0x00000000}},  //   сці_, _feui, _lækk,\n  { {0x38601625, 0xf48600a1, 0xf8bf01c3, 0x00000000}},  //   nair_, _گاڑی, _hiér_,\n  { {0x60f7008b, 0xb60200b9, 0x7bcf00ea, 0x00000000}},  //   ўныя_, řádn, xycu,\n  { {0x3860002a, 0x66d2000c, 0x61010089, 0x00000000}},  //   hair_, _sækj, vēle,\n  { {0x765c330c, 0xf8bf008e, 0x25a50010, 0x00000000}},  //   _mery, _miér_, _állt_,\n  { {0x628a0016, 0xa6db000c, 0x66d20190, 0x00000000}},  //   lffo, _guðf, _bækk,\n  { {0x38600fb8, 0xd0f90049, 0x61350006, 0x00000000}},  //   dair_, _פּער, _išla,\n  { {0x66d20030, 0x32cb00ea, 0x765c007f, 0x00000000}},  //   _dækk, _høyr_, _nery,\n  { {0x38600905, 0x32cb00ea, 0x66d2000c, 0x00000000}},  //   fair_, _køyr_, _tækj,\n  { {0x386031f0, 0x765c000a, 0x66d2000c, 0x00000000}},  //   gair_, _aery, _fækk,\n  { {0x14ab007d, 0x765c0016, 0xb8e3007d, 0x00000000}},  // [d350] _घोषण, _bery, _एच_,\n  { {0x753c0142, 0x6298016e, 0x645b009d, 0x00000000}},  //   _burz, jevo, _seui,\n  { {0x62980197, 0x753c0026, 0x38600051, 0x00000000}},  //   devo, _curz, bair_,\n  { {0x38601aed, 0x27ed016e, 0x291e0129, 0x00000000}},  //   cair_, _ženu_, ïtat_,\n  { {0x645b00f4, 0x6aa504d4, 0x753c0087, 0x00000000}},  //   _veui, _kahf, _eurz,\n  { {0x62980100, 0x753c01f3, 0x765c01d6, 0x00000000}},  //   gevo, _furz, _gery,\n  { {0x248d00fa, 0x6d4a01f3, 0x00000000, 0x00000000}},  //   _tbem_, _ntfa,   ,\n  { {0x673d3a5a, 0x7645005b, 0xbebc01c5, 0x00000000}},  //   _kusj, lchy, smīl,\n  { {0x73d90517, 0x62980125, 0x32cb00ea, 0x00000000}},  //   _удар_, bevo, _døyr_,\n  { {0x2d850038, 0xd2510054, 0x629836e1, 0x00000000}},  //   ttle_, _أنا_, cevo,\n  { {0xdca601e0, 0x62810146, 0x67350066, 0x00000000}},  //   пани, _iclo, _mizj,\n  { {0xeb9a3975, 0x386001f3, 0x2d850133, 0x00000000}},  //   бим_, xair_, rtle_,\n  { {0x386000d4, 0x2d8500ab, 0xcee800a1, 0x00000000}},  //   vair_, stle_, صرین_,\n  { {0xfaff0065, 0x255801aa, 0xfc3f13ac, 0x00000000}},  //   drës_, yōl_, rdía_,\n  { {0x38600882, 0x6281004a, 0xfaff0023, 0x00000000}},  //   tair_, _mclo, erës_,\n  { {0x765c3a5b, 0x76450016, 0xe2070036, 0x00000000}},  //   _sery, echy, ciół_,\n  { {0x38603a5c, 0x96960242, 0x765c1cdf, 0x00000000}},  // [d360] rair_, зреш, _pery,\n  { {0xfc3f0d62, 0x38600048, 0x00000000, 0x00000000}},  //   ndín_, sair_,   ,\n  { {0x765c2238, 0x80db006e, 0x2a57034e, 0x00000000}},  //   _very, बसाइ, _מבין_,\n  { {0xa3d70061, 0x628100f6, 0xfaff0023, 0x00000000}},  //   ानं_, _aclo, brës_,\n  { {0x7e61001e, 0x62982100, 0xaae50014, 0x00000000}},  //   kalp, tevo, _رسیو,\n  { {0x753c0716, 0x00000000, 0x00000000, 0x00000000}},  //   _turz,   ,   ,\n  { {0x78a601cd, 0x628a018e, 0x6298321f, 0x00000000}},  //   _kakv, rffo, revo,\n  { {0x64a33a5d, 0x4034005e, 0x318e006b, 0x00000000}},  //   _паса, мейс, _cəza_,\n  { {0x20d8002a, 0x2002005f, 0x62983a5e, 0x00000000}},  //   _féin_, çki_, pevo,\n  { {0x7e610dfb, 0xe804013d, 0x62810048, 0x00000000}},  //   galp, _रखना_, _gclo,\n  { {0x26ca1b3e, 0xdc990088, 0x00000000, 0x00000000}},  //   _mobo_, овні_,   ,\n  { {0x26ca1a16, 0x78a60006, 0x98ab001a, 0x00000000}},  //   _lobo_, _nakv, _mică_,\n  { {0x7e6107ef, 0x6b9d00bb, 0x66d3014a, 0x00000000}},  //   balp, uwsg, _yıkı,\n  { {0x7e61004a, 0x6125000c, 0x8f9b034e, 0x00000000}},  //   calp, gólf, _לידי,\n  { {0x673d0243, 0x6d4a02e1, 0x78a62259, 0x00000000}},  //   _susj, _utfa, _bakv,\n  { {0xfaff0065, 0x23660023, 0x6934030d, 0x00000000}},  //   trës_, ksoj_, енсу,\n  { {0x26ca34bd, 0x4735008b, 0x78a600d9, 0x00000000}},  // [d370] _bobo_, днас, _dakv,\n  { {0xfaff0065, 0xb9990088, 0x26ca0919, 0x00000000}},  //   rrës_, _двох_, _cobo_,\n  { {0x76450016, 0x26ca00ca, 0xfc3f004a, 0x00000000}},  //   rchy, _dobo_, ndío_,\n  { {0xe4e401e1, 0x66d3014a, 0x661500b9, 0x00000000}},  //   нічн, _sıkı, _vyzk,\n  { {0x656510e8, 0xa7fb0288, 0x00000000, 0x00000000}},  //   sshh, _beñe,   ,\n  { {0x26ca0087, 0x90d50082, 0xf2c70930, 0x00000000}},  //   _gobo_, _cùn, ясен,\n  { {0x65941734, 0x26fb006e, 0x7e610239, 0x00000000}},  //   _пару, ्वीर_, valp,\n  { {0xb4650014, 0x318e006b, 0xe1f00439, 0x00000000}},  //   _آگاه, _qəza_, دسه_,\n  { {0x7e61215b, 0x7d0f230c, 0x66d2000c, 0x00000000}},  //   talp, docs, _sæki,\n  { {0xe3b00318, 0xef160057, 0xb87b00b9, 0x00000000}},  //   _حرف_, ммы_, _hlíd,\n  { {0xfc3f03bc, 0x7e610240, 0x213e0051, 0x00000000}},  //   rdín_, ralp, _guth_,\n  { {0x2d670107, 0xe3e40044, 0x00000000, 0x00000000}},  //   rđe_, _ফুটব,   ,\n  { {0x78a6006c, 0x7e610058, 0xef0e094b, 0x00000000}},  //   _rakv, palp, _ам_,\n  { {0xed59012b, 0x66d2000c, 0x6913014a, 0x00000000}},  //   _док_, _tæki, kçes,\n  { {0x26ca113f, 0x78a60006, 0x7d0f0010, 0x00000000}},  //   _robo_, _pakv, bocs,\n  { {0x693c0091, 0x26ca0059, 0x00000000, 0x00000000}},  //   _očev, _sobo_,   ,\n  { {0xf7720025, 0x3ea700c7, 0x59ba03d7, 0x00000000}},  // [d380] ضاء_, _kant_, _उपकर,\n  { {0x60cb0190, 0x2366016c, 0x6125000c, 0x00000000}},  //   _logm, vsoj_, bólg,\n  { {0x78a61353, 0xa9263a5f, 0x3ea7000a, 0x00000000}},  //   _takv, _одол, _mant_,\n  { {0x26ca0263, 0x60cb00c1, 0x3ea71a50, 0x00000000}},  //   _wobo_, _nogm, _lant_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x64490181, 0x61010089, 0x3ea70016, 0x00000000}},  //   _efei, vēla, _nant_,\n  { {0x60cb0eea, 0x6449018e, 0xdb0400f6, 0x00000000}},  //   _bogm, _ffei, _eriç,\n  { {0xa6db000c, 0x3ea700d9, 0xd702007e, 0x00000000}},  //   _guðb, _aant_, нiча,\n  { {0xa7fb049a, 0xe2920076, 0x00000000, 0x00000000}},  //   _teñe, _لذا_,   ,\n  { {0x3ea70675, 0x2018001e, 0x2902012d, 0x00000000}},  //   _cant_, āri_, _ljka_,\n  { {0x8af7006b, 0x3ea7005b, 0x6b960006, 0x00000000}},  //   şəka, _dant_, _apyg,\n  { {0xfc3f004a, 0x00000000, 0x00000000, 0x00000000}},  //   rdío_,   ,   ,\n  { {0x800800a1, 0x9b58005e, 0x3ea71bc1, 0x00000000}},  //   _عرصہ_, мият_, _fant_,\n  { {0x3ea70f75, 0x00000000, 0x00000000, 0x00000000}},  //   _gant_,   ,   ,\n  { {0x20d80051, 0xdb0d009d, 0xdce20089, 0x00000000}},  //   _léim_, _fraî, gulē,\n  { {0xe894007e, 0xcd2b0014, 0x2369066c, 0x00000000}},  //   кась, _بستن_, šaji_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  // [d390]   ,   ,   ,\n  { {0x4a550088, 0xfc3f00b9, 0x20d10051, 0x00000000}},  //   _якос, zdíl_, _háit_,\n  { {0x6449010f, 0x7cf6012d, 0x00000000, 0x00000000}},  //   _pfei, lšra,   ,\n  { {0x2458008b, 0x20d80051, 0x00000000, 0x00000000}},  //   даць_, _béim_,   ,\n  { {0xe6670072, 0x20d80051, 0x69d51688, 0x00000000}},  //   _отво, _céim_, lyze,\n  { {0x66d2000c, 0x2ca9015b, 0x7af51113, 0x00000000}},  //   _bæku, _laad_, nizt,\n  { {0xb87b00b9, 0x3ea719aa, 0x00000000, 0x00000000}},  //   _umís, _rant_,   ,\n  { {0x3a3800b6, 0x3ea704bd, 0x00000000, 0x00000000}},  //   ורום_, _sant_,   ,\n  { {0x3ea70190, 0x00000000, 0x00000000, 0x00000000}},  //   _pant_,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xa3d70309, 0x3ea71129, 0xc69201ce, 0x00000000}},  //   ानक_, _vant_, נאט_,\n  { {0x3ea73a60, 0xeb9a3a61, 0x98ac0089, 0x00000000}},  //   _want_, пим_, īdī_,\n  { {0x3ea704bd, 0x2ca900c7, 0x00000000, 0x00000000}},  //   _tant_, _daad_,   ,\n  { {0x693c08fb, 0x7af52512, 0xbea22882, 0x00000000}},  //   _očet, gizt, _башк,\n  { {0x09e60407, 0xc5fa0044, 0x682a0010, 0x00000000}},  //   ховн, _অর্থ_, ködé,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xcb6a0014, 0x66760014, 0x7af50e0c, 0x00000000}},  // [d3a0] _عمده_, فدار, bizt,\n  { {0x2ca900bb, 0x20d80048, 0x69c808e0, 0x00000000}},  //   _zaad_, _réim_, ødes,\n  { {0x69c1006c, 0x61010089, 0x00000000, 0x00000000}},  //   älet, vēln,   ,\n  { {0x20d1081d, 0xe73a007c, 0x00000000, 0x00000000}},  //   _máis_, _нем_,   ,\n  { {0x883b00b6, 0x29000208, 0x98160647, 0x00000000}},  //   _מתכו, mnia_, _سبحا,\n  { {0x68e40181, 0x21260065, 0x29003a62, 0x00000000}},  //   lhid, _shoh_, lnia_,\n  { {0x0496008b, 0x3ce001aa, 0x290001b1, 0x00000000}},  //   _праў, _oliv_, onia_,\n  { {0x7c2401d9, 0x29000056, 0xb87b0285, 0x00000000}},  //   _ozir, nnia_, _ilíc,\n  { {0xd2520054, 0x2ca900c7, 0x7c2414a5, 0x00000000}},  //   _منذ_, _raad_, _nzir,\n  { {0x15f402d2, 0x7d040ed7, 0x2ca9006c, 0x00000000}},  //   _आधार_, _ajis, _saad_,\n  { {0x20d601fb, 0x3ce00030, 0x7c240202, 0x00000000}},  //   _підс, _bliv_, _azir,\n  { {0xa7fb004a, 0x212601c3, 0x00000000, 0x00000000}},  //   _leña, _uhoh_,   ,\n  { {0x29003a63, 0x29121d42, 0x63a21248, 0x00000000}},  //   dnia_, doya_, nwon,\n  { {0x29000046, 0x7c240089, 0xf8bf0011, 0x00000000}},  //   enia_, _dzir, _chén_,\n  { {0x20d10051, 0xe9190088, 0x7de601cc, 0x00000000}},  //   _gáis_, дові_, _désé,\n  { {0x29000207, 0x5ba70088, 0x68e40051, 0x00000000}},  //   gnia_, _зроз, ghid,\n  { {0xb87b19bf, 0xa7fb0032, 0x7c240066, 0x00000000}},  // [d3b0] _alíc, _beña, _gzir,\n  { {0x2900006c, 0x7d0400b9, 0x7d1d074d, 0x00000000}},  //   ania_, _zjis, llss,\n  { {0x66d2000c, 0x63a200bb, 0x68e420c4, 0x00000000}},  //   _rækt, ewon, bhid,\n  { {0x693c0224, 0xdb04000a, 0x68e40585, 0x00000000}},  //   _včet, _asiè, chid,\n  { {0xd414007e, 0x78ad2b0e, 0x00000000, 0x00000000}},  //   льшы, mdav,   ,\n  { {0xe2960aa2, 0x78ad006c, 0xf8bf0011, 0x00000000}},  //   ваш_, ldav, _khéo_,\n  { {0x27e90066, 0x693c0059, 0x80aa0044, 0x00000000}},  //   lzan_, _hčer, কান্,\n  { {0x78ad0ad1, 0x63a20009, 0x00000000, 0x00000000}},  //   ndav, bwon,   ,\n  { {0x27e90211, 0x64590117, 0x60090088, 0x00000000}},  //   nzan_, mbwi, ьним_,\n  { {0x7d160006, 0x29000036, 0x443f0022, 0x00000000}},  //   _skys, znia_, _hgu_,\n  { {0x1d0a0794, 0x29000036, 0x68e40009, 0x00000000}},  //   дени_, ynia_, yhid,\n  { {0x7649005a, 0xcb6a026b, 0x23690091, 0x00000000}},  //   _şeyl, маме_, šaju_,\n  { {0x83fd0010, 0x60db0020, 0x3ce000b9, 0x00000000}},  //   _idős, mkum, _vliv_,\n  { {0x78bd05cb, 0x68e43a64, 0x60c9006c, 0x00000000}},  //   _ansv, whid, ljem,\n  { {0x29000036, 0x3f8d0129, 0x68e40048, 0x00000000}},  //   tnia_, lteu_, thid,\n  { {0xa7fb0211, 0x60c92755, 0x443f0011, 0x00000000}},  //   _seña, njem, _ngu_,\n  { {0xa6860099, 0x6d43018e, 0x7e630173, 0x00000000}},  // [d3c0] клад, _huna, _kenp,\n  { {0x6d431448, 0x68e40727, 0x3946007c, 0x00000000}},  //   _kuna, shid, _иног,\n  { {0x60db3a65, 0x64a600ed, 0x7e633a66, 0x00000000}},  //   kkum, кажа, _menp,\n  { {0x385a00a1, 0x63a201aa, 0x443f009d, 0x00000000}},  //   _تشدد_, twon, _cgu_,\n  { {0x6d431143, 0xa7fb027b, 0x60c90107, 0x00000000}},  //   _luna, _teña, djem,\n  { {0x7e630263, 0x66d20030, 0x63a23a67, 0x00000000}},  //   _nenp, _væks, rwon,\n  { {0x693c05fa, 0x63a23a68, 0x557927f9, 0x00000000}},  //   _učes, swon, _пётр_,\n  { {0x75290afb, 0x63a200b5, 0x60c90023, 0x00000000}},  //   _ghez, pwon, gjem,\n  { {0x673c0368, 0x68e3001a, 0x7ce60051, 0x00000000}},  //   _kirj, _înde, _mórd,\n  { {0x6d43002a, 0x661c067e, 0x78ad3a69, 0x00000000}},  //   _buna, _kyrk, zdav,\n  { {0x7e63023a, 0x867b009b, 0x6d430023, 0x00000000}},  //   _denp, וריו, _cuna,\n  { {0x6d430142, 0x661c12de, 0x9f640010, 0x00000000}},  //   _duna, _myrk, ától_,\n  { {0x78ad3a6a, 0x7d1d0039, 0x3f8d00d4, 0x00000000}},  //   vdav, rlss, cteu_,\n  { {0x67da0089, 0x6d4300c4, 0x7e630146, 0x00000000}},  //   _mājā, _funa, _genp,\n  { {0x6d4304cb, 0x7e680190, 0x661c00b0, 0x00000000}},  //   _guna, madp, _nyrk,\n  { {0x7ce60211, 0x27e9002d, 0x2018006b, 0x00000000}},  //   _córd, tzan_, ərir_,\n  { {0x78ad010a, 0x6d433a6b, 0x673c177c, 0x00000000}},  // [d3d0] rdav, _zuna, _birj,\n  { {0xe719006d, 0x443f0030, 0x6d43049d, 0x00000000}},  //   ريات_, _sgu_, _yuna,\n  { {0x673c023a, 0x693c1e90, 0xb87b3a6c, 0x00000000}},  //   _dirj, _včer, _elía,\n  { {0x6125000c, 0x661c2314, 0xa6db000c, 0x00000000}},  //   kóla, _dyrk, _guðn,\n  { {0xdfc606f1, 0x386901b5, 0xf8bf0027, 0x00000000}},  //   _اي_, maar_, _iné_,\n  { {0x386900c7, 0x9f9c009f, 0x61350006, 0x00000000}},  //   laar_, _ræða_, _išli,\n  { {0x628300ea, 0x7e68004a, 0x60c9037a, 0x00000000}},  //   rgno, dadp, tjem,\n  { {0x6d430089, 0x38690100, 0x7e6301aa, 0x00000000}},  //   _runa, naar_, _senp,\n  { {0x776d049a, 0x60db3a6d, 0x7e63134e, 0x00000000}},  //   nsax, rkum, _penp,\n  { {0xfe710054, 0x6d4303b6, 0x63a935c8, 0x00000000}},  //   حدة_, _puna, _isen,\n  { {0x38690100, 0x415501fc, 0x26d1008e, 0x00000000}},  //   kaar_, _свес, _mozo_,\n  { {0x386901b5, 0x7e6301d6, 0x55960049, 0x00000000}},  //   jaar_, _wenp, נדרע_,\n  { {0xf8bf0011, 0xd110006e, 0x7e63002d, 0x00000000}},  //   _chém_, ावरण_, _tenp,\n  { {0x6d430503, 0xf8bf18d9, 0x7ce600d6, 0x00000000}},  //   _tuna, _ané_, _sórd,\n  { {0x09e302a8, 0x6d430058, 0x00000000, 0x00000000}},  //   борн, _uuna,   ,\n  { {0x673c0acc, 0x4c86005e, 0x386901d6, 0x00000000}},  //   _sirj, _слив, gaar_,\n  { {0x6b8f001c, 0x673c1c79, 0x63a90020, 0x00000000}},  // [d3e0] ctcg, _pirj, _nsen,\n  { {0x661c00b0, 0x29190022, 0x00000000, 0x00000000}},  //   _pyrk, _eksa_,   ,\n  { {0x63a90368, 0x3869049b, 0x44220626, 0x00000000}},  //   _asen, baar_, _šk_,\n  { {0x98ba000d, 0x938a005e, 0xb97b0097, 0x00000000}},  //   _după_, еска_, _אנטי,\n  { {0x667402fd, 0x63a90010, 0x628800c4, 0x00000000}},  //   _نگار, _csen, _pcdo,\n  { {0x26d122d1, 0x661c01e3, 0x610800b9, 0x00000000}},  //   _gozo_, _tyrk, děla,\n  { {0x63a9106f, 0x7ce600fa, 0x7e68109c, 0x00000000}},  //   _esen, _mórb, vadp,\n  { {0x6ad1006e, 0x26d10173, 0x6125134d, 0x00000000}},  //   _सक्र, _zozo_, tóla,\n  { {0xdfd00379, 0x8406007e, 0x00000000, 0x00000000}},  //   زيد_, _спаж,   ,\n  { {0x83fd0047, 0x61460175, 0x539b009b, 0x00000000}},  //   _időp, _бежа, _אימו,\n  { {0x02d51662, 0x067b0049, 0xdd94007e, 0x00000000}},  //   _тютю, ענטל, шаны,\n  { {0x13d80055, 0x248639d0, 0xc5f3009b, 0x00000000}},  //   _দেয়, ngom_, מדת_,\n  { {0x386901bb, 0xfd1f0197, 0x7e680058, 0x00000000}},  //   vaar_, rlì_, padp,\n  { {0xa7fb0211, 0xb87b0576, 0x386901b5, 0x00000000}},  //   _seño, _clín, waar_,\n  { {0x318e005f, 0x3869256d, 0x29190022, 0x00000000}},  //   _bəzi_, taar_, _pksa_,\n  { {0x3eae0239, 0x00000000, 0x00000000, 0x00000000}},  //   _haft_,   ,   ,\n  { {0x386900c7, 0x26d1008e, 0xf7700025, 0x00000000}},  // [d3f0] raar_, _pozo_, كال_,\n  { {0xa3d80204, 0x3869006c, 0xa3b3006e, 0x00000000}},  //   ाहन_, saar_, टिस_,\n  { {0x63a9013f, 0xe8950139, 0x00000000, 0x00000000}},  //   _ssen, _кань,   ,\n  { {0xb87b01dc, 0xa8a70242, 0xddc10035, 0x00000000}},  //   _zlín, _срок, lalţ,\n  { {0x3cfd006e, 0xb4640088, 0x2738013f, 0x00000000}},  //   _लगने_, скіл, zünə_,\n  { {0xe29908fd, 0x61250046, 0x321e06b8, 0x00000000}},  //   так_, góln, _byty_,\n  { {0xd49b0551, 0x333e0288, 0x00000000, 0x00000000}},  //   _пра_, _ditx_,   ,\n  { {0xdfd10054, 0x63a93a6e, 0x2a6a0010, 0x00000000}},  //   قيع_, _tsen, zabb_,\n  { {0x78af01ee, 0x82870464, 0x6d4e0f3b, 0x00000000}},  //   _macv, _مجال, íban,\n  { {0x2738006b, 0x877c0049, 0x00000000, 0x00000000}},  //   tünə_, גאזי,   ,\n  { {0xf2c40ae0, 0x6cc6326d, 0xb2ba08cd, 0x00000000}},  //   _устн, айна, _שמער,\n  { {0x6125004a, 0x00000000, 0x00000000, 0x00000000}},  //   mólo,   ,   ,\n  { {0xb87b1050, 0x6125004a, 0x00000000, 0x00000000}},  //   _plín, lólo,   ,\n  { {0xab2a16b6, 0x00000000, 0x00000000, 0x00000000}},  //   тога_,   ,   ,\n  { {0x61253a6f, 0xb87b0048, 0x186a00c0, 0x00000000}},  //   nólo, _clío, кави_,\n  { {0x2a6a0047, 0xb87b0048, 0x386600fa, 0x00000000}},  //   sabb_, _dlío, úor_,\n\n  { {0xb8fe03d7, 0x974800a1, 0x9666007c, 0x00000000}},  // [d400] _तक_, اثرہ_, икае,\n  { {0xe9da00e3, 0xf6560245, 0x3eae0066, 0x00000000}},  //   _ако_, ртаю, _xaft_,\n  { {0xa6db000c, 0x546a0865, 0x7afc3a70, 0x00000000}},  //   _guðm, ваем_, mirt,\n  { {0x7afc011f, 0x69dc00ea, 0x61250325, 0x00000000}},  //   lirt, myre, dólo,\n  { {0x33f600ed, 0x24860010, 0x69dc0010, 0x00000000}},  //   јчес, rgom_, lyre,\n  { {0x66e60113, 0x78a40006, 0x05260044, 0x00000000}},  //   _тога, leiv, যদের_,\n  { {0x64a603e0, 0x69dc0065, 0x00000000, 0x00000000}},  //   _кава, nyre,   ,\n  { {0xc953012f, 0x21100204, 0xa3b3006e, 0x00000000}},  //   חמה_, ावेश_, टिश_,\n  { {0x61250036, 0x7afc007f, 0x69dc07c3, 0x00000000}},  //   póln, kirt, hyre,\n  { {0x752200bb, 0x69dc0032, 0x00000000, 0x00000000}},  //   lloz, kyre,   ,\n  { {0x61250285, 0x7afc2c50, 0x10a6026b, 0x00000000}},  //   cólo, dirt, _виен,\n  { {0x69dc05d5, 0x00000000, 0x00000000, 0x00000000}},  //   dyre,   ,   ,\n  { {0x8f5401fa, 0x60c20039, 0x799e00e5, 0x00000000}},  //   _انتش, _inom, _appw,\n  { {0x3f84150a, 0x6e9400f9, 0x260f0061, 0x00000000}},  //   mumu_, _طلبا, _तुझी_,\n  { {0x5d840025, 0x3f840020, 0x75223a71, 0x00000000}},  //   _العل, lumu_, kloz,\n  { {0x6d5a0fdb, 0xdb0d0181, 0x91fc0089, 0x00000000}},  //   mpta, _oraç, _reāl,\n  { {0x7afc049a, 0x3f843a72, 0x629a0059, 0x00000000}},  // [d410] birt, numu_, _obto,\n  { {0x45450025, 0x7afc1363, 0x69dc0190, 0x00000000}},  //   منطق, cirt, byre,\n  { {0xdb0d3a73, 0xc50b00a1, 0x60c20091, 0x00000000}},  //   _araç, پتال_, _onom,\n  { {0x3f843a74, 0x451801fb, 0x78a40038, 0x00000000}},  //   kumu_, ація_, ceiv,\n  { {0x3f84001e, 0x889a00b3, 0x07a4007e, 0x00000000}},  //   jumu_, _גברי, _даўн,\n  { {0x60c20129, 0x3f8412bd, 0x61253a75, 0x00000000}},  //   _anom, dumu_, tólo,\n  { {0xe05702fd, 0xfa7800b3, 0x75220173, 0x00000000}},  //   لیات_, בעות_, bloz,\n  { {0xb87b3a76, 0x27ed0428, 0x8505025a, 0x00000000}},  //   _olím, _ženy_, _اورن,\n  { {0x3f843a74, 0xdb0d0181, 0xef190265, 0x00000000}},  //   gumu_, _graç, лми_,\n  { {0x63bb002d, 0xa1f700a1, 0x0d85007c, 0x00000000}},  //   _irun, _پڑتا_, блон,\n  { {0xdc6a00ed, 0x6da5005e, 0x63bb000c, 0x00000000}},  //   ланд_, щина, _hrun,\n  { {0x7afc010f, 0x3f8410d9, 0x63bb0cde, 0x00000000}},  //   wirt, bumu_, _krun,\n  { {0x7ce6002a, 0x7afc0006, 0x3f843443, 0x00000000}},  //   _córa, tirt, cumu_,\n  { {0x7522037e, 0x69dc0ce3, 0x7c28006b, 0x00000000}},  //   zloz, tyre, ədrl,\n  { {0xf2d2007b, 0x7afc009f, 0x3ea53a77, 0x00000000}},  //   לעך_, rirt, melt_,\n  { {0x7ce6002a, 0xdcfb0089, 0x26c300c4, 0x00000000}},  //   _fóra, putā, _anjo_,\n  { {0x7afc3a78, 0x2d850938, 0x69dc121d, 0x00000000}},  // [d420] pirt, lule_, syre,\n  { {0x3ea50056, 0x69c83a79, 0x7c5700a2, 0x00000000}},  //   nelt_, ädes, _پلیر_,\n  { {0x63bb001a, 0xfad70049, 0x41a6013d, 0x00000000}},  //   _arun, _הויך_, _कैंस,\n  { {0x20d8002a, 0xdb0d0181, 0x63bb288f, 0x00000000}},  //   _léir_, _praç, _brun,\n  { {0x2d85001f, 0x3ea501e2, 0xd91b009b, 0x00000000}},  //   hule_, kelt_, _תוכל,\n  { {0x2d850004, 0x6d5a2671, 0x3f840089, 0x00000000}},  //   kule_, ypta, vumu_,\n  { {0xd13004e1, 0x2167012b, 0x3ea5006c, 0x00000000}},  //   ومت_, бији_, delt_,\n  { {0x3f8427dc, 0x63bb2ed2, 0x9f5402d3, 0x00000000}},  //   tumu_, _frun, ович,\n  { {0x39420004, 0x3ea50056, 0x386000c4, 0x00000000}},  //   _miks_, felt_, ibir_,\n  { {0x3f843a7a, 0x3ea50eaa, 0xd36f0025, 0x00000000}},  //   rumu_, gelt_, _أهل_,\n  { {0x3f8401c5, 0x2d85006c, 0x171b0049, 0x00000000}},  //   sumu_, gule_, רויע,\n  { {0x39423a7b, 0x6d5a0ebc, 0xf1b30104, 0x00000000}},  //   _niks_, rpta, _מסע_,\n  { {0x3ea50193, 0x38603a7c, 0xddc10b18, 0x00000000}},  //   belt_, dbir_, ralš,\n  { {0x628a0193, 0xde580099, 0x3ea5001e, 0x00000000}},  //   ngfo, _такі_, celt_,\n  { {0x2d853a7d, 0x13c30044, 0xf3f9001a, 0x00000000}},  //   cule_, ্নয়, _veţi_,\n  { {0x7ce63a7e, 0x6f1a0943, 0x2a7f013f, 0x00000000}},  //   _tóra, lotc, şub_,\n  { {0x6bda00a1, 0x69c803a2, 0x6d4a0020, 0x00000000}},  // [d430] _نوٹس_, äder, _hufa,\n  { {0x6d4a000b, 0x7c2d3138, 0x6f1a0085, 0x00000000}},  //   _kufa, _izar, notc,\n  { {0x3860002b, 0xbb3c0049, 0x39422a2b, 0x00000000}},  //   bbir_, _געזי, _fiks_,\n  { {0xa6340088, 0x3ea502fa, 0x63bb0585, 0x00000000}},  //   їнці, zelt_, _prun,\n  { {0xd37b003b, 0x68ed0051, 0x2d850032, 0x00000000}},  //   уче_, mhad, zule_,\n  { {0x68ed3a7f, 0x6d581435, 0xa5e71561, 0x00000000}},  //   lhad, _otva, _любл,\n  { {0x20d8002a, 0x3ea51957, 0x23600089, 0x00000000}},  //   _réir_, velt_, ģija_,\n  { {0x68ed0767, 0xe0d9005e, 0x63bb0a60, 0x00000000}},  //   nhad, рви_, _trun,\n  { {0x443902d5, 0x3ea53a77, 0x6d580dec, 0x00000000}},  //   _às_, telt_, _atva,\n  { {0x2d852836, 0x7d0d03b6, 0x7ce61343, 0x00000000}},  //   tule_, _ajas, _córn,\n  { {0x3cca09ae, 0x3ea505b7, 0x7079089d, 0x00000000}},  //   ално_, relt_, _نماز_,\n  { {0x3ea50004, 0x2d85006c, 0x8f6a00a1, 0x00000000}},  //   selt_, rule_, _چلنے_,\n  { {0x7c2d0046, 0xdb040b33, 0x3ea50232, 0x00000000}},  //   _czar, _asiá, pelt_,\n  { {0x76470065, 0x7ce60036, 0x2d85010e, 0x00000000}},  //   _ngjy, _górn, pule_,\n  { {0x7c2d022b, 0x442d0224, 0x6d4a3a80, 0x00000000}},  //   _ezar, _lze_, _gufa,\n  { {0xa3e90164, 0xa92601fb, 0x7d0d0065, 0x00000000}},  //   मना_, ідал, _gjas,\n  { {0x442d0009, 0x6d4a0598, 0x386b0026, 0x00000000}},  // [d440] _nze_, _zufa, _decr_,\n  { {0x98b90089, 0x7f43002b, 0x6125000c, 0x00000000}},  //   _visā_, _jinq, fólk,\n  { {0x39420e3f, 0x68ed0051, 0x442d006b, 0x00000000}},  //   _tiks_, bhad, _aze_,\n  { {0x76490279, 0x14260131, 0x6e2301d6, 0x00000000}},  //   _şeyt, одем, _mynb,\n  { {0x442d0036, 0xf77205d4, 0x68e43a81, 0x00000000}},  //   _cze_, _تاج_, mkid,\n  { {0x6d440b3e, 0xe57100a1, 0x272f014a, 0x00000000}},  //   _liia, بطے_, tüne_,\n  { {0x442d0032, 0x7e6a04df, 0x628a0168, 0x00000000}},  //   _eze_, _refp, rgfo,\n  { {0x6d4a0020, 0x68e43a82, 0x98a0050f, 0x00000000}},  //   _rufa, nkid, klič_,\n  { {0x6d580825, 0xb87b009f, 0x27e001aa, 0x00000000}},  //   _stva, _slík, nyin_,\n  { {0x232a0265, 0x7f430207, 0x6f080061, 0x00000000}},  //   _този_, _cinq, undc,\n  { {0x7c2d115b, 0xf653009b, 0x68e4006c, 0x00000000}},  //   _szar, וצת_, kkid,\n  { {0x26d80198, 0x6e230009, 0x44240142, 0x00000000}},  //   _loro_, _dynb, _kym_,\n  { {0x7f4300d4, 0x6f1a0087, 0xa7fb008e, 0x00000000}},  //   _finq, potc, _teñi,\n  { {0x26d82066, 0x6d4a0c04, 0x6e232c4a, 0x00000000}},  //   _noro_, _tufa, _fynb,\n  { {0x5b1401fb, 0x6d5815b3, 0x68ed0051, 0x00000000}},  //   ємст, _utva, thad,\n  { {0x7d0d3a83, 0x02b7007d, 0x7c2d15ed, 0x00000000}},  //   _ujas, _आफ्न, _tzar,\n  { {0x68ed0149, 0x26d8016c, 0x7d1d0207, 0x00000000}},  // [d450] rhad, _boro_, moss,\n  { {0x7d1d178a, 0x68ed0061, 0x26d808d3, 0x00000000}},  //   loss, shad, _coro_,\n  { {0x25480279, 0x68ed297d, 0xdb04004a, 0x00000000}},  //   _oğlu_, phad, _griñ,\n  { {0x7d1d00f2, 0xe4e401ff, 0x44240036, 0x00000000}},  //   noss, мічн, _bym_,\n  { {0x26d80219, 0xa3a7031d, 0x27f20036, 0x00000000}},  //   _foro_, تحان, czyn_,\n  { {0xa6db009f, 0x6d0203d7, 0xdb0d0181, 0x00000000}},  //   _auðv, _लगभग_, _araú,\n  { {0x7d1d0ae4, 0xddc3001a, 0x1a9c0049, 0x00000000}},  //   koss, _menţ, ייגע,\n  { {0x7f4308b6, 0x54550cee, 0xf8bf0011, 0x00000000}},  //   _sinq, _хват, _ghét_,\n  { {0x7d1d0625, 0x6d44010e, 0xbebc0089, 0x00000000}},  //   doss, _riia, rlīn,\n  { {0x68e4002d, 0x6d44006c, 0x62670688, 0x00000000}},  //   zkid, _siia, _ذائق,\n  { {0xa3b3006e, 0x61253a84, 0x7d1d2bf1, 0x00000000}},  //   टिक_, hóli, foss,\n  { {0x692c010f, 0x7d1d0010, 0x6eed06c2, 0x00000000}},  //   eßen, goss, _súbd,\n  { {0xeb9701e0, 0x7f433a85, 0x6e2301d6, 0x00000000}},  //   пия_, _tinq, _wynb,\n  { {0x2734006c, 0xddc300e5, 0x6fb20025, 0x00000000}},  //   mäng_, _cenţ, _أموا,\n  { {0xc332009b, 0x26d83466, 0x7ced009d, 0x00000000}},  //   גום_, _roro_, _sûre,\n  { {0xf1b20049, 0x7d1d00c4, 0x26d811c8, 0x00000000}},  //   עסן_, coss, _soro_,\n  { {0xdb04000c, 0x68e43a86, 0x2ca006fa, 0x00000000}},  // [d460] _frið, rkid, _ibid_,\n  { {0x68e4002d, 0x7cf60dec, 0x44242108, 0x00000000}},  //   skid, ršru, _rym_,\n  { {0x44240f02, 0x27f20036, 0x26d800f8, 0x00000000}},  //   _sym_, szyn_, _voro_,\n  { {0xf74602e9, 0xed560049, 0x61250285, 0x00000000}},  //   _немо, לבער_, bóli,\n  { {0x26d8203d, 0x232a0478, 0xd8d70049, 0x00000000}},  //   _toro_, боди_, _זוכט_,\n  { {0xe7370265, 0xd046006b, 0x00000000, 0x00000000}},  //   _нея_, əməl,   ,\n  { {0xe5a300d7, 0x6f0100ca, 0xf8bf0082, 0x00000000}},  //   _пири, dilc, _thét_,\n  { {0x442405fd, 0x2ca00066, 0x00000000, 0x00000000}},  //   _tym_, _nbid_,   ,\n  { {0x40530054, 0x7d1d3a87, 0x00000000, 0x00000000}},  //   رئيس, voss,   ,\n  { {0xd24f0025, 0xb23a0025, 0x69c100ea, 0x00000000}},  //   _منك_, _هكذا_, ålek,\n  { {0x7d1d0ae4, 0x10a6041f, 0x6449019a, 0x00000000}},  //   toss, _нижн, şmiş,\n  { {0x7ce61195, 0x7afe0007, 0x239e0089, 0x00000000}},  //   _fórm, _ampt, pājā_,\n  { {0x00bb009b, 0x00000000, 0x00000000, 0x00000000}},  //   _למאמ,   ,   ,\n  { {0x3f7b0049, 0x7d1d0052, 0x2ca0007f, 0x00000000}},  //   _פאוס, soss, _ebid_,\n  { {0xd30800ad, 0x3a250018, 0x0e9b009b, 0x00000000}},  //   yện_, ælp_, _השול,\n  { {0x58d40057, 0x6125029d, 0x7afe00ab, 0x00000000}},  //   ност, tóli, _empt,\n  { {0xc64b0025, 0x00000000, 0x00000000, 0x00000000}},  // [d470] مجال_,   ,   ,\n  { {0xac99026c, 0x3f520082, 0xdb0d00f6, 0x00000000}},  //   _اچھا_, _mâu_, _isaï,\n  { {0x3f52001d, 0x612500dc, 0x94d50245, 0x00000000}},  //   _lâu_, sóli, можц,\n  { {0x2cab0146, 0x612500c4, 0xb87b00c4, 0x00000000}},  //   necd_, póli, _alív,\n  { {0xa6db000c, 0x3f520011, 0xddc30161, 0x00000000}},  //   _suðu, _nâu_, _menš,\n  { {0xddc3012d, 0xf8bf0068, 0xceb800b4, 0x00000000}},  //   _lenš, _thés_, jdę_,\n  { {0x950800a1, 0x6f0132cd, 0x6ab70b77, 0x00000000}},  //   _کہنے_, vilc, _maxf,\n  { {0x6449005b, 0x00000000, 0x00000000, 0x00000000}},  //   _ugei,   ,   ,\n  { {0x3f52001d, 0x442b0011, 0x00000000, 0x00000000}},  //   _câu_, _ác_,   ,\n  { {0x60060147, 0x0ecd013d, 0x3f520011, 0x00000000}},  //   ьным_, ़ाधड, _dâu_,\n  { {0x81bc0089, 0x6f010059, 0xdb0d01a2, 0x00000000}},  //   _dzēs, rilc, _spaß,\n  { {0x13e10055, 0xeb9a007c, 0xc1050076, 0x00000000}},  //   _মেয়, оим_, _توصي,\n  { {0x800900a1, 0xa2c20061, 0x6f010087, 0x00000000}},  //   _براہ_, लाच्, pilc,\n  { {0xfe710167, 0x63a4005a, 0x3f98001a, 0x00000000}},  //   _شدت_, çini, ărut_,\n  { {0xbb4300da, 0x61130035, 0xa3b4007d, 0x00000000}},  //   терк, călc, _छैन_,\n  { {0xb87b000c, 0xddc3012d, 0x52da006e, 0x00000000}},  //   _olíu, _genš, _बक्स,\n  { {0x3cf90065, 0x403a0049, 0x3f520082, 0x00000000}},  // [d480] ërve_, ַגעג, _xâu_,\n  { {0x6c68026c, 0x61e30007, 0x7afe0022, 0x00000000}},  //   _بلکہ_, kynl, _umpt,\n  { {0x27340039, 0x00000000, 0x00000000, 0x00000000}},  //   vänd_,   ,   ,\n  { {0x2d85002a, 0x2d530181, 0xd467003b, 0x00000000}},  //   irle_, _mãe_, дице_,\n  { {0x2d8510a2, 0x25ad016c, 0x00000000, 0x00000000}},  //   hrle_, _ćele_,   ,\n  { {0x98b90006, 0x3f523a88, 0x24920036, 0x00000000}},  //   _visą_, _râu_, żym_,\n  { {0x05660106, 0x3f520011, 0xf8bf0082, 0x00000000}},  //   _іван, _sâu_, _khép_,\n  { {0xf99300b6, 0xceb80036, 0x612501e5, 0x00000000}},  //   דרה_, wdę_, kólu,\n  { {0xb7db007b, 0x2cab3a89, 0x2d850026, 0x00000000}},  //   ַקטי, vecd_, erle_,\n  { {0x81bc0089, 0x00000000, 0x00000000, 0x00000000}},  //   _dzēr,   ,   ,\n  { {0x7ce60010, 0xdb210010, 0x61250d7b, 0x00000000}},  //   _kórh, _ítél, vólv,\n  { {0x6ee40129, 0xf8bf0082, 0x4103005e, 0x00000000}},  //   _mòbi, _nhép_, _изхв,\n  { {0x2d85203d, 0x69c811b8, 0x5eda0044, 0x00000000}},  //   arle_, åden, যোগে,\n  { {0x1eaa00f3, 0x00000000, 0x00000000, 0x00000000}},  //   _ذاتي_,   ,   ,\n  { {0x39150200, 0x26cd0011, 0x61130035, 0x00000000}},  //   емвр, _đeo_, lăla,\n  { {0xf8bf0011, 0xdb0d0285, 0x2d8c0ec2, 0x00000000}},  //   _chép_, _isaí, mude_,\n  { {0x2d8c006c, 0xf77005f3, 0x47350c4e, 0x00000000}},  // [d490] lude_, لال_, енас,\n  { {0x6ee400f6, 0x00000000, 0x00000000, 0x00000000}},  //   _bòbi,   ,   ,\n  { {0x2d8c3a8a, 0x00000000, 0x00000000, 0x00000000}},  //   nude_,   ,   ,\n  { {0xf8bf0011, 0xb87b004a, 0xd7fb003b, 0x00000000}},  //   _ghép_, _clít, _дуг_,\n  { {0xb87b0051, 0x78ad1254, 0x00000000, 0x00000000}},  //   _dlít, meav,   ,\n  { {0x41b5003b, 0x78ad010e, 0x2d8c010e, 0x00000000}},  //   есит, leav, kude_,\n  { {0xa3b3013d, 0x2d8c010e, 0x00000000, 0x00000000}},  //   टिङ_, jude_,   ,\n  { {0x2d8c006c, 0xa6db000c, 0xfa0d0082, 0x00000000}},  //   dude_, _guðr, _đầu_,\n  { {0xf076026c, 0x61e301e3, 0x2d8c01c3, 0x00000000}},  //   ریوں_, synl, eude_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x2d8c006c, 0x00000000, 0x00000000, 0x00000000}},  //   gude_,   ,   ,\n  { {0x998d0036, 0xa1070014, 0x6eed0051, 0x00000000}},  //   łeś_, _غذاه, _dúba,\n  { {0x60cb0061, 0x78ad0133, 0x2d85012d, 0x00000000}},  //   _ingm, deav, srle_,\n  { {0x2d8c0161, 0x91fc0089, 0x7ff4035b, 0x00000000}},  //   bude_, _teāt, _جسما,\n  { {0xf8bf001d, 0x2d8c004a, 0x18a617b9, 0x00000000}},  //   _phép_, cude_, навм,\n  { {0xb4ae0061, 0x395e0089, 0xfd1202fd, 0x00000000}},  //   _कसे_, īts_, _حجت_,\n  { {0xf7720025, 0x5eb20044, 0xa7a70121, 0x00000000}},  // [d4a0] طاء_, জারে, нкта_,\n  { {0x7d06011c, 0x8c1b009b, 0x5a662485, 0x00000000}},  //   liks, _מופי, _якоб,\n  { {0xf8bf0011, 0xc486030d, 0x00000000, 0x00000000}},  //   _thép_, елек,   ,\n  { {0x78ad001a, 0x7d0600b0, 0x798e0009, 0x00000000}},  //   ceav, niks, mubw,\n  { {0xa2940245, 0xd3260077, 0xf77203ec, 0x00000000}},  //   валі, ньки, _حاج_,\n  { {0xd24f03ec, 0x60cb00e0, 0x7ce600fa, 0x00000000}},  //   منه_, _angm, _dóri,\n  { {0xe3d80044, 0x7d0600b0, 0xe7370d15, 0x00000000}},  //   _দেখব, kiks, _чер_,\n  { {0xd372007a, 0x859b00b6, 0x7bc403c7, 0x00000000}},  //   _مهر_, _משלו, _oriu,\n  { {0x7d060263, 0x3eac0002, 0x3f8d0129, 0x00000000}},  //   diks, tedt_, gueu_,\n  { {0x2d8c062a, 0x798e000b, 0x60cb00f8, 0x00000000}},  //   tude_, kubw, _engm,\n  { {0x7d061992, 0x3eac26fe, 0x69da00b0, 0x00000000}},  //   fiks, redt_, ätel,\n  { {0x2d820119, 0x2d8c23fc, 0xb87b00d4, 0x00000000}},  //   čke_, rude_, _llír,\n  { {0xdee602e9, 0x2d8c3a8a, 0xddd80010, 0x00000000}},  //   _поди, sude_, _vevő,\n  { {0x78ad0436, 0x29023a8b, 0x00000000, 0x00000000}},  //   weav, _amka_,   ,\n  { {0x98c701a4, 0xc9840184, 0x78ad3a8c, 0x00000000}},  //   нсал, лути, teav,\n  { {0x7bc40207, 0x61f50047, 0x28d10061, 0x00000000}},  //   _friu, _üzle, हाधि,\n  { {0x78ad11d1, 0x7bc43a8d, 0x00000000, 0x00000000}},  // [d4b0] reav, _griu,   ,\n  { {0xb87b013e, 0x00000000, 0x00000000, 0x00000000}},  //   _plís,   ,   ,\n  { {0xd915007e, 0x610800b9, 0x6b9d01a2, 0x00000000}},  //   _адны, něls, ltsg,\n  { {0xa8790049, 0xdc9c0049, 0x00000000, 0x00000000}},  //   _קאָר, ּיגל,   ,\n  { {0x38693a8e, 0x98ab0036, 0x765c005b, 0x00000000}},  //   mbar_, _chcą_, _ffry,\n  { {0x7d0602ba, 0x38693a8f, 0x6b9d010f, 0x00000000}},  //   ziks, lbar_, itsg,\n  { {0x75220009, 0x00000000, 0x00000000, 0x00000000}},  //   booz,   ,   ,\n  { {0x3869010f, 0x610800b9, 0x629c00f8, 0x00000000}},  //   nbar_, děls, _öron,\n  { {0x7d06003c, 0x38690022, 0x6ee400f6, 0x00000000}},  //   viks, ibar_, _lòbu,\n  { {0x3f831034, 0x38693a90, 0x394b2271, 0x00000000}},  //   čju_, hbar_, _lics_,\n  { {0xee3907ca, 0x7d06001e, 0x386910f8, 0x00000000}},  //   ьно_, tiks, kbar_,\n  { {0x7bc40091, 0x60cb1dab, 0x6b9d01a2, 0x00000000}},  //   _priu, _ungm, ftsg,\n  { {0x7d06033b, 0x2ef50216, 0x3f8d0129, 0x00000000}},  //   riks, _издр, queu_,\n  { {0x7d06115d, 0x2d6e00b9, 0x63a90020, 0x00000000}},  //   siks, bře_, _mpen,\n  { {0x6b9d20bf, 0x7d060052, 0xb87b00c4, 0x00000000}},  //   atsg, piks, _alíq,\n  { {0x63a902ae, 0x7bc4183d, 0x38693a91, 0x00000000}},  //   _open, _triu, gbar_,\n  { {0x7d040e1e, 0x628101d9, 0xd94302e9, 0x00000000}},  // [d4c0] _imis, _odlo, рети,\n  { {0x75220009, 0x7d040066, 0x07a30425, 0x00000000}},  //   wooz, _hmis, рафн,\n  { {0x63a902d5, 0x38692d00, 0x394b0325, 0x00000000}},  //   _apen, bbar_, _fics_,\n  { {0x62810016, 0x80a10309, 0x7d0401d5, 0x00000000}},  //   _adlo, _कॉले, _jmis,\n  { {0x29120149, 0x394029f9, 0x7d04191a, 0x00000000}},  //   mnya_, mmis_, _mmis,\n  { {0x29120149, 0x39400004, 0x68f60039, 0x00000000}},  //   lnya_, lmis_, lhyd,\n  { {0x7d04021e, 0x39400006, 0x291200e7, 0x00000000}},  //   _omis, omis_, onya_,\n  { {0x29120149, 0x64a60816, 0x68f601a2, 0x00000000}},  //   nnya_, _шаба, nhyd,\n  { {0x291204cb, 0xa8e00082, 0xb87b0048, 0x00000000}},  //   inya_, _độn, _hoíc,\n  { {0x2912020c, 0x7d040779, 0x2d6e00b9, 0x00000000}},  //   hnya_, _amis, tře_,\n  { {0x29120149, 0xfdd00044, 0x38690203, 0x00000000}},  //   knya_, ান্ড, ybar_,\n  { {0x6b9d2ba1, 0x3940012d, 0x00000000, 0x00000000}},  //   ttsg, jmis_,   ,\n  { {0x38690061, 0x394b00d4, 0x291204cb, 0x00000000}},  //   vbar_, _rics_, dnya_,\n  { {0x7d041053, 0x6b9d0190, 0x38690319, 0x00000000}},  //   _emis, rtsg, wbar_,\n  { {0x394b0365, 0x3869010f, 0x291204cb, 0x00000000}},  //   _pics_, tbar_, fnya_,\n  { {0x7d160065, 0x2fc60059, 0x6f08000a, 0x00000000}},  //   _gjys, _krog_, lidc,\n  { {0x38693a92, 0x383501e0, 0x38663a93, 0x00000000}},  // [d4d0] rbar_, унар, ñora_,\n  { {0x2d9e01b5, 0x291204cb, 0xb6f4003b, 0x00000000}},  //   otte_, anya_, азуј,\n  { {0x69c506e0, 0x63a92d8a, 0x38693a94, 0x00000000}},  //   _urhe, _spen, pbar_,\n  { {0x7ce60321, 0x3ebc068f, 0x68f6005b, 0x00000000}},  //   _fóru, _lavt_, chyd,\n  { {0xd2a93a5f, 0x568300a1, 0xd37b02dc, 0x00000000}},  //   екле_, _نگاہ, фче_,\n  { {0xe29601f9, 0x68ed023a, 0x7c2d0c3f, 0x00000000}},  //   гаш_, lkad, _myar,\n  { {0x78bd0368, 0x27e9165e, 0x45d4004d, 0x00000000}},  //   _kasv, lyan_, _корс,\n  { {0x272f0010, 0x78bf0203, 0x7c2d004a, 0x00000000}},  //   künk_, ndqv, _oyar,\n  { {0x27e9011c, 0x7c2d3a95, 0x63a90020, 0x00000000}},  //   nyan_, _nyar, _upen,\n  { {0x7d040ecc, 0x2fc60039, 0xb06203b6, 0x00000000}},  //   _smis, _drog_, ääri,\n  { {0xde0501fb, 0x7c2d011f, 0x442d0011, 0x00000000}},  //   упни, _ayar, _hye_,\n  { {0x78bd01d9, 0x7c2d3a96, 0x442d27c1, 0x00000000}},  //   _nasv, _byar, _kye_,\n  { {0xbea501f9, 0x8edf0055, 0x7c2d0009, 0x00000000}},  //   _балк, যোগগ, _cyar,\n  { {0x27e90a1d, 0x442d0056, 0x7c2d09d7, 0x00000000}},  //   dyan_, _mye_, _dyar,\n  { {0x29120149, 0x442d01aa, 0x68f60016, 0x00000000}},  //   tnya_, _lye_, thyd,\n  { {0x442d008e, 0x27e90093, 0x35fb0044, 0x00000000}},  //   _oye_, fyan_, ্থাৎ_,\n  { {0x2912020c, 0x27e924c4, 0x442d02cc, 0x00000000}},  // [d4e0] rnya_, gyan_, _nye_,\n  { {0x2912020c, 0x7bcb0181, 0x394012e8, 0x00000000}},  //   snya_, _água, smis_,\n  { {0x4a9b007b, 0x29120149, 0x1a9b007b, 0x00000000}},  //   _אייג, pnya_, _אייע,\n  { {0x68ed0039, 0xdb0d000c, 0x78bd01d6, 0x00000000}},  //   ckad, _hrað, _gasv,\n  { {0x6eed049a, 0xf487026c, 0x442d0009, 0x00000000}},  //   _públ, طانی, _cye_,\n  { {0x442d2fdb, 0x2d9e01e3, 0x68e3001a, 0x00000000}},  //   _dye_, ytte_, _îndr,\n  { {0x442d00ab, 0x6abe004a, 0x272f0010, 0x00000000}},  //   _eye_, _mapf, zünk_,\n  { {0x442d0173, 0x7df3006b, 0x3ea700c4, 0x00000000}},  //   _fye_, cəsə, _abnt_,\n  { {0x2ef40113, 0x442d0009, 0x98ab0036, 0x00000000}},  //   изир, _gye_, _chcę_,\n  { {0x7c2d22b1, 0x68ed2d53, 0x2d9e0203, 0x00000000}},  //   _ryar, zkad, ttte_,\n  { {0x7c2d027e, 0x442d01aa, 0x23600089, 0x00000000}},  //   _syar, _zye_, ģiju_,\n  { {0x272f0047, 0x61e5010f, 0x2d9e08af, 0x00000000}},  //   tünk_, ähle, rtte_,\n  { {0x78bd3a97, 0x6abe0009, 0xbed400ed, 0x00000000}},  //   _rasv, _bapf, _волј,\n  { {0x78bd01cd, 0xbebc001e, 0x7ce60051, 0x00000000}},  //   _sasv, glīt, _sórt,\n  { {0xc33300b6, 0x78bd0006, 0x68ed202e, 0x00000000}},  //   מוש_, _pasv, tkad,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x68ed082c, 0x7c2d011f, 0xd795005e, 0x00000000}},  // [d4f0] rkad, _uyar, ризъ,\n  { {0x68ed022b, 0x442d01d6, 0x2d8c01bb, 0x00000000}},  //   skad, _rye_, orde_,\n  { {0x5455005e, 0x2bc30061, 0x27e90cae, 0x00000000}},  //   авет, शिवा, syan_,\n  { {0x442d0263, 0xf795008b, 0x2d8c0051, 0x00000000}},  //   _pye_, _камэ, irde_,\n  { {0xe29908d6, 0x6abe0009, 0x672500b0, 0x00000000}},  //   вал_, _yapf, pohj,\n  { {0x442d0263, 0x629a0009, 0x6e38012d, 0x00000000}},  //   _vye_, _ccto, _ozvb,\n  { {0x442d0007, 0x929200ed, 0x81c70089, 0x00000000}},  //   _wye_, цајц, ktēš,\n  { {0x442d0007, 0x3f9f00b0, 0x0cc00044, 0x00000000}},  //   _tye_, ttuu_, _উক্ত,\n  { {0x2d8c049b, 0x60db17f6, 0x80a10309, 0x00000000}},  //   erde_, rjum, क्षे,\n  { {0x2ca90169, 0x63bb3a98, 0xaf050545, 0x00000000}},  //   _abad_, _isun, рпол,\n  { {0xe80c006e, 0x3f9f021e, 0x5184007e, 0x00000000}},  //   _सेना_, stuu_, _гуча,\n  { {0xdfd1006d, 0x6abe06ed, 0x00000000, 0x00000000}},  //   _ويا_, _sapf,   ,\n  { {0x2d8c046a, 0x3f6701bd, 0x63ad00c4, 0x00000000}},  //   arde_, _стеб, çanh,\n  { {0x7ce60a0a, 0x80a1007d, 0x7a400010, 0x00000000}},  //   _córr, क्रे, játé,\n  { {0x2be20061, 0x00000000, 0x00000000, 0x00000000}},  //   _पथका,   ,   ,\n  { {0xc955045a, 0x3f5b0011, 0x63bb1c79, 0x00000000}},  //   стры, _kêu_, _osun,\n  { {0xb8de0754, 0x3706007e, 0x00000000, 0x00000000}},  // [d500] _इस_, апаг,   ,\n  { {0x8ca703d7, 0x657e010f, 0x98ab0089, 0x00000000}},  //   ट्ठो, tsph, ījās_,\n  { {0x63bb397d, 0x98a60072, 0xd9100167, 0x00000000}},  //   _asun, _кине, _فیس_,\n  { {0x64a6008b, 0x26d1184e, 0x938a0c24, 0x00000000}},  //   рада, _enzo_, вска_,\n  { {0xe3b2031d, 0x3f5b0011, 0x9676007e, 0x00000000}},  //   ترا_, _nêu_, _выбі,\n  { {0x3f8d0129, 0x6d5a0065, 0xfc3f008e, 0x00000000}},  //   dreu_, yqta, nfía_,\n  { {0x7e7a0039, 0x00000000, 0x00000000, 0x00000000}},  //   vatp,   ,   ,\n  { {0x3860027b, 0x3f8d00c4, 0x1fa60888, 0x00000000}},  //   ncir_, freu_, арог,\n  { {0xdfd0006d, 0x3f8d012d, 0x7649013f, 0x00000000}},  //   سيد_, greu_, _şeyx,\n  { {0xe465000c, 0x9ed800ed, 0x00000000, 0x00000000}},  //   _þörf_, умот_,   ,\n  { {0x63a21ec2, 0x0737009b, 0x667b0049, 0x00000000}},  //   lton, שאים_, כטיק,\n  { {0xa06a0088, 0x3f8d00d4, 0x3fc800a2, 0x00000000}},  //   _рада_, breu_, _مدتی_,\n  { {0x63a20b9a, 0x92d80055, 0x81c70089, 0x00000000}},  //   nton, াসী_, rtēš,\n  { {0x62982053, 0xdce20006, 0x81c70089, 0x00000000}},  //   ngvo, kslė, stēš,\n  { {0xed5701b3, 0x63a21c79, 0x58d500e3, 0x00000000}},  //   _кој_, hton, бовт,\n  { {0x3f5b00ad, 0x63a2006a, 0xa3d60309, 0x00000000}},  //   _yêu_, kton, िमा_,\n  { {0xfb8500a2, 0x63a223c6, 0xddda0e3f, 0x00000000}},  // [d510] _ادبی, jton, katū,\n  { {0x6d58021e, 0x63a23a99, 0x39b80173, 0x00000000}},  //   _kuva, dton, _fōs_,\n  { {0xdfc604e1, 0x24550426, 0x63a20052, 0x00000000}},  //   _کي_, مناس, eton,\n  { {0x63a23a9a, 0x6d580823, 0x7e780087, 0x00000000}},  //   fton, _muva, _levp,\n  { {0x7ae508b2, 0xd308001d, 0x6d583a9b, 0x00000000}},  //   _koht, yệt_, _luva,\n  { {0x7ae5021e, 0x3f5b0082, 0x6d580022, 0x00000000}},  //   _joht, _rêu_, _ouva,\n  { {0x6d583a9c, 0x256c01aa, 0x63a2010e, 0x00000000}},  //   _nuva, _vòlò_, aton,\n  { {0x3f8d0191, 0x5a1800b3, 0x00000000, 0x00000000}},  //   treu_, יקון_,   ,\n  { {0x63bb0046, 0xd3710063, 0x3de40044, 0x00000000}},  //   _usun, _رها_, _ফেলল,\n  { {0x3f8d3a9d, 0x6d580006, 0x79950020, 0x00000000}},  //   rreu_, _buva, kuzw,\n  { {0x6d5817ef, 0x69c70166, 0x6eed0325, 0x00000000}},  //   _cuva, jvje, _júbi,\n  { {0x6d58014a, 0xf1c3010a, 0x69c71a84, 0x00000000}},  //   _duva, rašė_, dvje,\n  { {0x7052004b, 0x21c70082, 0x7ae500f6, 0x00000000}},  //   _عنوا, _hđh_, _boht,\n  { {0x543a007b, 0x6113001a, 0x643a0049, 0x00000000}},  //   טערא, dăli, טערנ,\n  { {0x5d850379, 0xc332019b, 0x8d950025, 0x00000000}},  //   _البل, פול_, _العش,\n  { {0x97da007c, 0x00000000, 0x00000000, 0x00000000}},  //   льзу_,   ,   ,\n  { {0x38600129, 0xddc300b9, 0x63a2010e, 0x00000000}},  // [d520] rcir_, _jenž, xton,\n  { {0x0656008b, 0x3860027b, 0xf6560230, 0x00000000}},  //   стаў, scir_, стаю,\n  { {0x2a57009b, 0x463a0ae0, 0x27340039, 0x00000000}},  //   _לבין_, учая_, länk_,\n  { {0x63a20207, 0x67230166, 0xb0a6001c, 0x00000000}},  //   tton, čnja, _कॉंग,\n  { {0x63a20dd9, 0x00000000, 0x00000000, 0x00000000}},  //   uton,   ,   ,\n  { {0x63a23a9e, 0x04fa0044, 0x21c70082, 0x00000000}},  //   rton, েকের_, _bđh_,\n  { {0xddda0a5c, 0x00000000, 0x00000000, 0x00000000}},  //   ratū,   ,   ,\n  { {0x64a302be, 0x63a20065, 0x92d80044, 0x00000000}},  //   _наса, pton, াসে_,\n  { {0x6d580006, 0x69c70243, 0x00000000, 0x00000000}},  //   _suva, zvje,   ,\n  { {0x395a009d, 0x00000000, 0x00000000, 0x00000000}},  //   _oups_,   ,   ,\n  { {0x6b8400f4, 0x62880066, 0x7ae5010e, 0x00000000}},  //   _avig, _iddo, _roht,\n  { {0xa157009b, 0x79950009, 0x69cc0204, 0x00000000}},  //   _הבאה_, vuzw, हिनी,\n  { {0x7ae500b0, 0x6ab50068, 0x00000000, 0x00000000}},  //   _poht, tezf,   ,\n  { {0x6d58078f, 0x6b84024f, 0xdce901df, 0x00000000}},  //   _tuva, _dvig, rtdı,\n  { {0x6b840945, 0xb6c900a1, 0x395a0133, 0x00000000}},  //   _evig, یائے_, _cups_,\n  { {0x3e4e005f, 0x6113001a, 0x799521a4, 0x00000000}},  //   mət_, tăli, ruzw,\n  { {0x60c20020, 0x69c70243, 0x7ae50027, 0x00000000}},  // [d530] _maom, svje, _toht,\n  { {0x7bcd022b, 0x6eed00d6, 0x00000000, 0x00000000}},  //   _irau, _púbi,   ,\n  { {0x3e4e006b, 0x7bcd000c, 0x69c80bda, 0x00000000}},  //   nət_, _hrau, ådet,\n  { {0x7bcd0006, 0x62880207, 0x60c21dec, 0x00000000}},  //   _krau, _addo, _naom,\n  { {0x889a019b, 0x3e4e006b, 0x31a100b4, 0x00000000}},  //   _דברי, hət_, wóz_,\n  { {0x3e4e006b, 0x4b7c01ce, 0xddc8012d, 0x00000000}},  //   kət_, נאוו, dadž,\n  { {0x6aaa001f, 0x6a9c00b6, 0x6594007c, 0x00000000}},  //   _öffe, אשונ, _нару,\n  { {0x7a40000c, 0x6f6500ed, 0x3e4e006b, 0x00000000}},  //   _hátí, овиз, dət_,\n  { {0xb87b01ca, 0xc44700a1, 0x7b090062, 0x00000000}},  //   _blíz, _ایشن_, ržuj,\n  { {0x3e4e006b, 0xe4500025, 0x0d850088, 0x00000000}},  //   fət_, _أضف_, олон,\n  { {0x7bcd022b, 0x26c30059, 0x6b843a9f, 0x00000000}},  //   _arau, _majo_, _svig,\n  { {0x7bcd3aa0, 0x2d8b00b9, 0x395a3aa1, 0x00000000}},  //   _brau, čce_, _rups_,\n  { {0x6d5e009d, 0x7bcd00d9, 0x6d460397, 0x00000000}},  //   _épan, _crau, rmka,\n  { {0x7bcd0ebc, 0x395a3aa2, 0x3e4e006b, 0x00000000}},  //   _drau, _pups_, bət_,\n  { {0x7bcd0032, 0x60c200e7, 0x68e60022, 0x00000000}},  //   _erau, _yaom, _pokd,\n  { {0x7bcd03a1, 0x7d0f3aa3, 0x00000000, 0x00000000}},  //   _frau, cics,   ,\n  { {0x7bcd125b, 0x26c30219, 0x07a300e2, 0x00000000}},  // [d540] _grau, _bajo_, матн,\n  { {0x249f000d, 0xeb910049, 0x69c800d8, 0x00000000}},  //   _acum_, _אָט_, ådes,\n  { {0xe45a0175, 0x26c300ca, 0x249f00f6, 0x00000000}},  //   аже_, _dajo_, _bcum_,\n  { {0x136a0072, 0x236a00e2, 0x00000000, 0x00000000}},  //   ашки_, ајко_,   ,\n  { {0xf746189f, 0x44202e5c, 0x2ca00045, 0x00000000}},  //   _мемо, çi_, _mcid_,\n  { {0x3e4e005f, 0x6b8b0637, 0x018a0131, 0x00000000}},  //   yət_, _ægge, ащий_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xc0ca012b, 0x89db009b, 0x3e4e006b, 0x00000000}},  //   руке_, שחקי, vət_,\n  { {0x63ad0065, 0xe29a007c, 0x00000000, 0x00000000}},  //   çant, _ваз_,   ,\n  { {0xddc82270, 0x2018001a, 0x2ca000ab, 0x00000000}},  //   radž, ări_, _acid_,\n  { {0xb65b007b, 0x7bcd0006, 0x14cf0061, 0x00000000}},  //   ידיש, _srau, _सोडण,\n  { {0x3e4e005f, 0xcd0701fb, 0x7bcd007f, 0x00000000}},  //   rət_, ічни, _prau,\n  { {0x7d0f297d, 0x7ac70216, 0x3e4e005f, 0x00000000}},  //   rics, осве, sət_,\n  { {0x7d0f0387, 0x00000000, 0x00000000, 0x00000000}},  //   sics,   ,   ,\n  { {0x7d0f00bb, 0x3e4e006b, 0x2ca00009, 0x00000000}},  //   pics, qət_, _fcid_,\n  { {0x58d407ca, 0x5c75007c, 0x2ca00009, 0x00000000}},  //   мост, _элит, _gcid_,\n  { {0x7cff008d, 0x7d0d3470, 0x69da3aa4, 0x00000000}},  // [d550] _përf, _imas, äter,\n  { {0x8ca7007d, 0xc66b007e, 0x00000000, 0x00000000}},  //   ट्रो, ршае_,   ,\n  { {0x2aba009b, 0x26c300ca, 0x3aba009b, 0x00000000}},  //   _המתא, _vajo_, _המתנ,\n  { {0x7cff008d, 0xe80c02fb, 0xf99200a3, 0x00000000}},  //   _dërg, _सेवा_, _ארט_,\n  { {0x3949001e, 0x26c31d12, 0x7d0d3aa5, 0x00000000}},  //   mmas_, _tajo_, _mmas,\n  { {0x39490047, 0x1fd00055, 0xaacb0164, 0x00000000}},  //   lmas_, িহাস, ायिक,\n  { {0xd49b01f9, 0x39490b76, 0x7d0d003c, 0x00000000}},  //   _врз_, omas_, _omas,\n  { {0x69cc0061, 0x39490093, 0x6b4b01f3, 0x00000000}},  //   हिती, nmas_, _iżgu,\n  { {0x4439049a, 0x3cdf0204, 0x39490089, 0x00000000}},  //   _ás_, गाने_, imas_,\n  { {0x7d0d0c2b, 0x3f8600b9, 0x443f0032, 0x00000000}},  //   _amas, _dvou_, _izu_,\n  { {0xdcfb010a, 0xcee80014, 0x39490022, 0x00000000}},  //   nutė, ترين_, kmas_,\n  { {0xcb0900b3, 0xdcfb0089, 0x61130035, 0x00000000}},  //   _גל_, tstā, tălu,\n  { {0x2fc90051, 0x7d0d0085, 0x2bba0025, 0x00000000}},  //   _éag_, _dmas, حاجة_,\n  { {0xdcfb001e, 0x7d0d010e, 0xbf3700a1, 0x00000000}},  //   rstā, _emas, _برصغ,\n  { {0x78af0082, 0x00000000, 0x00000000, 0x00000000}},  //   _bbcv,   ,   ,\n  { {0x2d8500ea, 0x443f013f, 0x7d0d00fa, 0x00000000}},  //   msle_, _ozu_, _gmas,\n  { {0x81b10055, 0x69d81288, 0x443f0009, 0x00000000}},  // [d560] টটি_, _šved, _nzu_,\n  { {0x7cff008d, 0x6d56011c, 0xaa46007c, 0x00000000}},  //   _përg, _hiya, _непл,\n  { {0x7e7e0004, 0x6d560cd7, 0x4a5b009b, 0x00000000}},  //   _õppe, _kiya, _לדיו,\n  { {0x7cff0065, 0x7d0d01f3, 0x14c60061, 0x00000000}},  //   _gërd, _xmas, _रोखण,\n  { {0x6d5601aa, 0x2912028e, 0x6d440051, 0x00000000}},  //   _miya, miya_, _mhia,\n  { {0x2912006b, 0xd25000a1, 0x6ef600f4, 0x00000000}},  //   liya_, نچا_, _câbl,\n  { {0x3f8600b9, 0x6d440e3a, 0x27e0002b, 0x00000000}},  //   _svou_, _ohia, lxin_,\n  { {0x29120f95, 0x6d56006a, 0x29000181, 0x00000000}},  //   niya_, _niya, nhia_,\n  { {0x7c240065, 0x7d0d00ea, 0x27e0272c, 0x00000000}},  //   _nxir, _rmas, nxin_,\n  { {0x6440011f, 0x2912006a, 0x39490964, 0x00000000}},  //   _izmi, hiya_, zmas_,\n  { {0x3949010a, 0x6d56011c, 0x2912013f, 0x00000000}},  //   ymas_, _biya, kiya_,\n  { {0x6d442b7c, 0x6601011f, 0x00000000, 0x00000000}},  //   _chia, _ülke,   ,\n  { {0x703a03ec, 0x6d561aa0, 0x6d443aa6, 0x00000000}},  //   _اساس_, _diya, _dhia,\n  { {0xdee300c0, 0x1959008b, 0x3f820006, 0x00000000}},  //   _почи, жавы_, škus_,\n  { {0x7cff008d, 0x6d56011f, 0x6d440051, 0x00000000}},  //   _përd, _fiya, _fhia,\n  { {0x2912005f, 0x7d0d09bd, 0x6d440207, 0x00000000}},  //   giya_, _umas, _ghia,\n  { {0xb8e502fb, 0xade500a1, 0x00000000, 0x00000000}},  // [d570] _एस_, _فہیم_,   ,\n  { {0x6d5601f6, 0x4b7c009b, 0x98b20089, 0x00000000}},  //   _ziya, _האזו, ībās_,\n  { {0x7d1d0b05, 0x29123aa7, 0x6d560009, 0x00000000}},  //   onss, biya_, _yiya,\n  { {0x290027ce, 0x7d1d0c31, 0x6d56006b, 0x00000000}},  //   chia_, nnss, _xiya,\n  { {0x7d1d000c, 0x03a50216, 0x27e00082, 0x00000000}},  //   inss, фило, cxin_,\n  { {0x7d1d00f8, 0x4424059f, 0x2d850142, 0x00000000}},  //   hnss, _dxm_, ysle_,\n  { {0xb4570123, 0x00000000, 0x00000000, 0x00000000}},  //   _فیاض_,   ,   ,\n  { {0x443f0032, 0x78ad0026, 0x35b30088, 0x00000000}},  //   _tzu_, nfav, _обґр,\n  { {0x6d563aa8, 0x6d440016, 0x248d0142, 0x00000000}},  //   _riya, _rhia, _idem_,\n  { {0x6d563aa9, 0x2912006b, 0x8e7401e1, 0x00000000}},  //   _siya, ziya_, нуюч,\n  { {0x57ba02d2, 0x112b07ca, 0x6d56014a, 0x00000000}},  //   _उन्ह, _люди_, _piya,\n  { {0x6283018e, 0xd00e089d, 0x6d56006b, 0x00000000}},  //   lano, الی_, _qiya,\n  { {0x78ad0009, 0xbea50242, 0x2d9a0056, 0x00000000}},  //   dfav, _жалк, _åpen_,\n  { {0x62833973, 0x6d560022, 0x291206fe, 0x00000000}},  //   nano, _wiya, wiya_,\n  { {0x6d56034f, 0x6d4421e7, 0xc33200b6, 0x00000000}},  //   _tiya, _thia, דום_,\n  { {0xb4bc0365, 0x6283018e, 0x60c90670, 0x00000000}},  //   _असे_, hano, ndem,\n  { {0x291235e1, 0x46ea0216, 0x3af400b0, 0x00000000}},  // [d580] riya_, одан_, _läpi_,\n  { {0x2912005f, 0x6283037e, 0x2900000b, 0x00000000}},  //   siya_, jano, shia_,\n  { {0x6283018e, 0x29000142, 0x6abc054e, 0x00000000}},  //   dano, phia_, merf,\n  { {0x6abc0302, 0x60c90161, 0x799c0009, 0x00000000}},  //   lerf, jdem, murw,\n  { {0x60c908e0, 0x628309fc, 0x69ce0030, 0x00000000}},  //   ddem, fano, lvbe,\n  { {0x416a012b, 0x7cff0065, 0x645b28f0, 0x00000000}},  //   ојим_, _kërc, _egui,\n  { {0xbebc0089, 0x65c300e2, 0x799c0009, 0x00000000}},  //   lnīg, _ибра, nurw,\n  { {0xe643004c, 0x6abc04f2, 0x60c900ea, 0x00000000}},  //   _респ, herf, gdem,\n  { {0x64400209, 0x6abc009f, 0x20040107, 0x00000000}},  //   _uzmi, kerf, uzmi_,\n  { {0x62830489, 0x799c0a37, 0x6abc068f, 0x00000000}},  //   cano, kurw, jerf,\n  { {0x069700b6, 0x60c904a5, 0x00000000, 0x00000000}},  //   ודים_, bdem,   ,\n  { {0xb4bc0061, 0x7cff0023, 0x7afe0808, 0x00000000}},  //   _असो_, _sërb, _alpt,\n  { {0x7cff008d, 0x6abc01a2, 0x7d1d01e5, 0x00000000}},  //   _përb, ferf, rnss,\n  { {0x6abc2a1c, 0xdbdc000c, 0x73f90049, 0x00000000}},  //   gerf, ráðg, פּרו,\n  { {0x799c0009, 0x0f570104, 0xbebc01c5, 0x00000000}},  //   gurw, _קיום_, enīg,\n  { {0x6aaa010f, 0x7e6d01ed, 0x00000000, 0x00000000}},  //   _öffn, _đapi,   ,\n  { {0x78ad275a, 0x62830010, 0x6abc010f, 0x00000000}},  // [d590] rfav, yano, berf,\n  { {0x6283013f, 0x60c907fd, 0x645b0026, 0x00000000}},  //   xano, zdem, _sgui,\n  { {0x6283010a, 0x60c91c39, 0x27340039, 0x00000000}},  //   vano, ydem, vänt_,\n  { {0x26c71144, 0x69cc0061, 0xf7731739, 0x00000000}},  //   žno_, हिरी, _لاس_,\n  { {0x7e6a00ea, 0x38690382, 0x6b9d00f8, 0x00000000}},  //   _offp, mcar_, nusg,\n  { {0x3959006b, 0x38690232, 0x877a00a3, 0x00000000}},  //   _hiss_, lcar_, _מאשי,\n  { {0x62833aaa, 0x60c9158a, 0x6b9d3aab, 0x00000000}},  //   rano, tdem, husg,\n  { {0x62831b03, 0x38690129, 0x60c91408, 0x00000000}},  //   sano, ncar_, udem,\n  { {0x6283011c, 0x60c922c2, 0x613e0023, 0x00000000}},  //   pano, rdem, mëll,\n  { {0x60c90052, 0x3959098e, 0x0ea90a78, 0x00000000}},  //   sdem, _liss_, чкой_,\n  { {0x62810089, 0x60c900f6, 0xee390088, 0x00000000}},  //   _ielo, pdem, яно_,\n  { {0x628100c4, 0x6abc00ab, 0xfce60088, 0x00000000}},  //   _helo, werf, хомо,\n  { {0x62813aac, 0x69c50133, 0x00000000, 0x00000000}},  //   _kelo, _ashe,   ,\n  { {0x7cff008d, 0xa3d002fb, 0x799c01a2, 0x00000000}},  //   _përc, षित_, turw,\n  { {0x395901d5, 0x6abc0240, 0x4efa009b, 0x00000000}},  //   _biss_, rerf, _מהסו,\n  { {0x6abc0302, 0x0d820265, 0x6281065c, 0x00000000}},  //   serf, _слън, _lelo,\n  { {0x69c51833, 0xc955007e, 0x628101c3, 0x00000000}},  // [d5a0] _eshe, ттры, _oelo,\n  { {0xf1c5001d, 0x62810e88, 0x69c50065, 0x00000000}},  //   _đáng_, _nelo, _fshe,\n  { {0xceb200a0, 0x3959002b, 0xeef60049, 0x00000000}},  //   ריב_, _fiss_, עמער_,\n  { {0x6281018e, 0xe8110061, 0x142601ee, 0x00000000}},  //   _aelo, _ठेवा_, ндем,\n  { {0x62810b8d, 0xe3af0151, 0x00000000, 0x00000000}},  //   _belo, مرو_,   ,\n  { {0x31c60216, 0x00000000, 0x00000000, 0x00000000}},  //   есив,   ,   ,\n  { {0x628101d9, 0x00000000, 0x00000000, 0x00000000}},  //   _delo,   ,   ,\n  { {0x6d5e00f4, 0x6281010e, 0xf993009b, 0x00000000}},  //   _épai, _eelo, ארה_,\n  { {0x62810010, 0x925a0014, 0x0326007c, 0x00000000}},  //   _felo, _فشار_, _здан,\n  { {0x62810100, 0x1ddb02fb, 0xfaff0065, 0x00000000}},  //   _gelo, यमंत, hpër_,\n  { {0x32070046, 0x2d8a0010, 0x123100a1, 0x00000000}},  //   czny_, ébe_, _پڑوس,\n  { {0x26ca08f7, 0x628100ca, 0xac1917fa, 0x00000000}},  //   _labo_, _zelo, дому_,\n  { {0xd12f025a, 0x62813aad, 0x6aa500ea, 0x00000000}},  //   _امن_, _yelo, _pchf,\n  { {0x26ca1d03, 0x2fc600e0, 0x6b9d01c3, 0x00000000}},  //   _nabo_, _isog_, rusg,\n  { {0x3959023a, 0x6b40010f, 0x318c00b9, 0x00000000}},  //   _piss_, mögl, něz_,\n  { {0x2eee1014, 0x2d9e010e, 0xa2dd0061, 0x00000000}},  //   _hoff_, mute_, पाऱ्,\n  { {0xf77001f7, 0x38690118, 0x2d9e0207, 0x00000000}},  // [d5b0] مال_, rcar_, lute_,\n  { {0x38690219, 0x3ebe2fac, 0x26ca0489, 0x00000000}},  //   scar_, nett_, _cabo_,\n  { {0x62810211, 0x2d9e3aae, 0x26ca0173, 0x00000000}},  //   _relo, nute_, _dabo_,\n  { {0x62810c60, 0xd4e41523, 0xd046006b, 0x00000000}},  //   _selo, лючи, şməl,\n  { {0x628102d5, 0x3ebe1341, 0x00000000, 0x00000000}},  //   _pelo, kett_,   ,\n  { {0x2d9e006c, 0x3ebe0056, 0x26ca0253, 0x00000000}},  //   kute_, jett_, _gabo_,\n  { {0x3ebe121b, 0x2d9e0079, 0x00000000, 0x00000000}},  //   dett_, jute_,   ,\n  { {0x2d9e3aaf, 0x26ca0009, 0xed6301ca, 0x00000000}},  //   dute_, _zabo_, _leží_,\n  { {0x3ebe002b, 0x62810c30, 0x26ca0061, 0x00000000}},  //   fett_, _telo, _yabo_,\n  { {0x2d9e0258, 0x2eee0026, 0x6eff00c4, 0x00000000}},  //   fute_, _coff_, _bêba,\n  { {0x2d9e002d, 0x6b8d1bd5, 0xcfa81125, 0x00000000}},  //   gute_, _avag, وایم_,\n  { {0x7cff0023, 0x00000000, 0x00000000, 0x00000000}},  //   _përa,   ,   ,\n  { {0x3ebe053d, 0x09ca0204, 0x00000000, 0x00000000}},  //   bett_, ाट्य,   ,\n  { {0x2eee3ab0, 0x2d9e00ab, 0x6d4f008e, 0x00000000}},  //   _goff_, bute_, amca,\n  { {0x19b90077, 0x26ca16ab, 0x6b400039, 0x00000000}},  //   нуть_, _rabo_, sögo,\n  { {0x26ca0059, 0x60cb04a5, 0x00000000, 0x00000000}},  //   _sabo_, _jagm,   ,\n  { {0x60cb011c, 0xf7720a4f, 0xccf300b6, 0x00000000}},  // [d5c0] _magm, شاء_, _ככה_,\n  { {0xbebc0089, 0x60cb04d3, 0x00000000, 0x00000000}},  //   mnīc, _lagm,   ,\n  { {0xd6cf002c, 0xc4863ab1, 0xd5d5007e, 0x00000000}},  //   تقل_, влек, люцы,\n  { {0x3ebe0047, 0x3dc70061, 0x60cb3ab2, 0x00000000}},  //   zett_, _msnw_, _nagm,\n  { {0xa3b40822, 0x2d9e3ab3, 0x64a303e0, 0x00000000}},  //   ублі, zute_, рача,\n  { {0x78a43ab4, 0x7afc00d0, 0x934302dc, 0x00000000}},  //   lgiv, nkrt, анче,\n  { {0x3ebe302e, 0x60cb0190, 0x2eee0c0e, 0x00000000}},  //   vett_, _bagm, _roff_,\n  { {0x3ebe0003, 0x2d9e3ab5, 0x3f42000c, 0x00000000}},  //   wett_, vute_, gðun_,\n  { {0x3ebe0047, 0x65690089, 0xbebc0089, 0x00000000}},  //   tett_, _čehi, jnīc,\n  { {0x248401d5, 0x2d9e00ab, 0x75223ab6, 0x00000000}},  //   _hemm_, tute_, lnoz,\n  { {0x6b8d1bce, 0x69d8010a, 0x4207005e, 0x00000000}},  //   _svag, _šven, _инфо_,\n  { {0x2d9e058b, 0x3ebe0292, 0x60cb00e0, 0x00000000}},  //   rute_, sett_, _gagm,\n  { {0x78a41a95, 0x6d4f00d4, 0x24843ab7, 0x00000000}},  //   dgiv, rmca, _memm_,\n  { {0x2d9e0035, 0x9b58005e, 0x9b4503ec, 0x00000000}},  //   pute_, кият_, انسو,\n  { {0xd90f00a1, 0xdbdd01d6, 0x3eab0161, 0x00000000}},  //   قید_, _dáár, žitý_,\n  { {0x60c000b0, 0x78a40026, 0x00000000, 0x00000000}},  //   nemm, ggiv,   ,\n  { {0x75220387, 0x5884007e, 0x613e01c3, 0x00000000}},  // [d5d0] dnoz, рыса, eëlk,\n  { {0x60c000b0, 0x29020093, 0xb87b00b9, 0x00000000}},  //   hemm, _elka_, _sníd,\n  { {0x60c0014a, 0x2d8c040f, 0x68ef0082, 0x00000000}},  //   kemm, nsde_, _tocd,\n  { {0x60c03356, 0x21260065, 0x6d5e009d, 0x00000000}},  //   jemm, _njoh_, _épau,\n  { {0x2458008b, 0x44290ca7, 0x25f3001c, 0x00000000}},  //   ваць_, ça_, ूनही_,\n  { {0x05130044, 0x4429002b, 0x60cb01d6, 0x00000000}},  //   িকের_, ħa_, _sagm,\n  { {0x60cb006a, 0x60c00197, 0xbebc0089, 0x00000000}},  //   _pagm, femm, znīc,\n  { {0x5045005e, 0x75220197, 0xefc9358a, 0x00000000}},  //   лейб, cnoz, елил_,\n  { {0x3f42000c, 0x7cff3ab8, 0x2d8c0116, 0x00000000}},  //   rðun_, _përn, esde_,\n  { {0x26c10027, 0xfde92c0c, 0x63bb0058, 0x00000000}},  //   neho_, едок_, _ipun,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xeb9a02e9, 0xe0d00879, 0x60c000f4, 0x00000000}},  //   ним_, _وزن_, cemm,\n  { {0x8ca503d7, 0x78a405b7, 0x26c10027, 0x00000000}},  //   _कारो, vgiv, keho_,\n  { {0x26c1107b, 0x4e2900da, 0x6f920025, 0x00000000}},  //   jeho_, _полн_, _الوض,\n  { {0xceb200b6, 0xbebc001e, 0x660900b9, 0x00000000}},  //   _היו_, snīc, _řekn,\n  { {0x63bb00e5, 0xb87b0b33, 0xbebc0089, 0x00000000}},  //   _opun, _aníb, pnīc,\n  { {0x7d040020, 0x6b8911cd, 0x3f8d00d4, 0x00000000}},  // [d5e0] _ilis, šegr, nseu_,\n  { {0x78a40030, 0x4b7b0104, 0x7522261b, 0x00000000}},  //   sgiv, _ראיו, wnoz,\n  { {0x63bb029a, 0x5efa0049, 0x3ce01afa, 0x00000000}},  //   _apun, עפעד, _kniv_,\n  { {0xd76600a1, 0x00000000, 0x00000000, 0x00000000}},  //   _ماسٹ,   ,   ,\n  { {0x26c13ab9, 0x7d041c27, 0x75220cd3, 0x00000000}},  //   beho_, _mlis, rnoz,\n  { {0x3940006c, 0x7d0404bd, 0x26c10027, 0x00000000}},  //   llis_, _llis, ceho_,\n  { {0x7d04021e, 0x60c00dd7, 0x2f00000a, 0x00000000}},  //   _olis, temm, _bògn_,\n  { {0xb87b02d5, 0x76430036, 0x7522006b, 0x00000000}},  //   _iníc, żnyc, qnoz,\n  { {0x60c000b0, 0x7dea005f, 0x69d83aba, 0x00000000}},  //   remm, məsi, _švel,\n  { {0x7d04000b, 0xd24f007a, 0x7dea005f, 0x00000000}},  //   _alis, _کنم_, ləsi,\n  { {0x394000c8, 0x073700b3, 0x7d043abb, 0x00000000}},  //   klis_, ראים_, _blis,\n  { {0x26c10009, 0x39400127, 0x7d040051, 0x00000000}},  //   zeho_, jlis_, _clis,\n  { {0x26c10061, 0x8ff70076, 0xab62014a, 0x00000000}},  //   yeho_, _مرور_, şüne,\n  { {0xe1f1026c, 0x7dea005f, 0xc6bf0044, 0x00000000}},  //   _اسے_, həsi, _উচ্চ,\n  { {0x63a23abc, 0x7d040ede, 0x1efb0049, 0x00000000}},  //   huon, _flis, _אלגע,\n  { {0x7d0400f4, 0x26c10009, 0x39400089, 0x00000000}},  //   _glis, weho_, glis_,\n  { {0x6c78006d, 0x7dea006b, 0x6d4d016c, 0x00000000}},  // [d5f0] _صحيح_, dəsi, _ihaa,\n  { {0x39400013, 0x63a20ded, 0x7d16025d, 0x00000000}},  //   alis_, duon, _zmys,\n  { {0x63bb000d, 0x26c1011c, 0x7dea006b, 0x00000000}},  //   _spun, reho_, fəsi,\n  { {0x297a00a3, 0x39403abd, 0x6f1a1896, 0x00000000}},  //   _שטרא, clis_, hitc,\n  { {0xdfc60464, 0x63a21875, 0x6f1a3abe, 0x00000000}},  //   _بي_, guon, kitc,\n  { {0x68ed003b, 0x628a3abf, 0x6d5f006b, 0x00000000}},  //   ljad, gafo, _liqa,\n  { {0x6f1a00b5, 0x7dea006b, 0xf07500a1, 0x00000000}},  //   ditc, bəsi, لیاں_,\n  { {0x68ed0149, 0x7dea005f, 0xe0d90072, 0x00000000}},  //   njad, cəsi, тви_,\n  { {0x63bb0020, 0x753b2170, 0x63a20082, 0x00000000}},  //   _upun, _ikuz, cuon,\n  { {0x5187008b, 0x628a00d4, 0x7d0429da, 0x00000000}},  //   _буда, cafo, _slis,\n  { {0x1d0a09ae, 0x3f8d00d4, 0x245a014a, 0x00000000}},  //   вени_, sseu_, _tümü_,\n  { {0x443f16d4, 0xcb6a3ac0, 0x7fd501e1, 0x00000000}},  //   _kyu_, каме_, _вікі,\n  { {0x2909000b, 0xdee50bbd, 0x6f1a0107, 0x00000000}},  //   dhaa_, _воли, bitc,\n  { {0x7dea006b, 0xdce4002b, 0xbea2007e, 0x00000000}},  //   zəsi, _kunċ, _дашк,\n  { {0xfc3f0211, 0x753b27e1, 0xda79007e, 0x00000000}},  //   rgía_, _okuz, ыяў_,\n  { {0x3ce00c7d, 0x75290209, 0x7d040020, 0x00000000}},  //   _univ_, _njez, _ulis,\n  { {0x7dea006b, 0x39403ac1, 0x443f35e1, 0x00000000}},  // [d600] vəsi, rlis_, _nyu_,\n  { {0x39400007, 0x753b008d, 0x6d5f009d, 0x00000000}},  //   slis_, _akuz, _épar,\n  { {0x394001aa, 0x7dea005f, 0x442d0923, 0x00000000}},  //   plis_, təsi, _axe_,\n  { {0x63a2218d, 0x6b840061, 0x07a6007c, 0x00000000}},  //   tuon, _kwig, _камн,\n  { {0xf86301fb, 0x7dea005f, 0xb607001e, 0x00000000}},  //   _євро, rəsi, ekšē,\n  { {0x2900117b, 0x7dea006b, 0x61130035, 0x00000000}},  //   lkia_, səsi, călz,\n  { {0xe81a02d2, 0x64490e65, 0x63a23ac2, 0x00000000}},  //   _नेता_, _ezei, suon,\n  { {0x7cff008d, 0x3f42009f, 0x64a30c4e, 0x00000000}},  //   _përm, rðum_, _маса,\n  { {0x29002d53, 0x6f1a00df, 0x63a2009d, 0x00000000}},  //   ikia_, titc, quon,\n  { {0x6d4d0727, 0x3eb8000c, 0x6d5f006b, 0x00000000}},  //   _shaa, ýrt_, _siqa,\n  { {0xb6d90049, 0x290000b0, 0x62880089, 0x00000000}},  //   אַרט, kkia_, _iedo,\n  { {0x7cff0023, 0x215a0445, 0x6b840009, 0x00000000}},  //   _tërm, _شجاع_, _bwig,\n  { {0x628810ed, 0x442d009d, 0x00000000, 0x00000000}},  //   _kedo, _xxe_,   ,\n  { {0x7cff008d, 0x6288010f, 0x6d4d2d2d, 0x00000000}},  //   _kërk, _jedo, _whaa,\n  { {0x6b841058, 0x8d940054, 0x6da301fc, 0x00000000}},  //   _ewig, _البش, _дија,\n  { {0x7c2d022b, 0x6288013e, 0x7cff0065, 0x00000000}},  //   _txar, _ledo, _mërk,\n  { {0x68ed0390, 0xf7730355, 0x62880016, 0x00000000}},  // [d610] rjad, تاز_, _oedo,\n  { {0x7d1d0e23, 0x7bcd007f, 0x752900b9, 0x00000000}},  //   liss, _isau, _sjez,\n  { {0x200d0a15, 0x442d0048, 0x7d1d00b0, 0x00000000}},  //   zzei_, _sxe_, oiss,\n  { {0x7d1d0dc9, 0xd1260774, 0x81bc0044, 0x00000000}},  //   niss, _رم_, ইটা_,\n  { {0x6288049b, 0x7cff0065, 0xe29901e0, 0x00000000}},  //   _bedo, _përj, гал_,\n  { {0x7d1d1684, 0x62883982, 0xb0620933, 0x00000000}},  //   hiss, _cedo, ääni,\n  { {0x7d1d1ced, 0xc5940098, 0x32010062, 0x00000000}},  //   kiss, _мирј, áhy_,\n  { {0x7d1d3ac3, 0x200d1424, 0x753b047b, 0x00000000}},  //   jiss, tzei_, _ukuz,\n  { {0x62881a7b, 0x7d1d00b0, 0x2d9e3ac4, 0x00000000}},  //   _fedo, diss, erte_,\n  { {0x628806b2, 0xaf050404, 0x2900002d, 0x00000000}},  //   _gedo, спол, zkia_,\n  { {0x7d1d3ac5, 0x26d10089, 0x7bcd00e0, 0x00000000}},  //   fiss, _mazo_, _asau,\n  { {0x4155007e, 0x26d1008e, 0x6288277a, 0x00000000}},  //   _увес, _lazo_, _zedo,\n  { {0x38c801ef, 0x2d9e0d48, 0x8fc70188, 0x00000000}},  //   یاری_, arte_, _خزان,\n  { {0x26d10020, 0x63a40009, 0x29190085, 0x00000000}},  //   _nazo_, àini, _amsa_,\n  { {0x7bcd0207, 0x290000b0, 0x00000000, 0x00000000}},  //   _esau, tkia_,   ,\n  { {0x7d1d0197, 0x78660783, 0x29002eff, 0x00000000}},  //   ciss, сказ, ukia_,\n  { {0x69030004, 0x2900002d, 0x26d100ca, 0x00000000}},  // [d620] _tõen, rkia_, _bazo_,\n  { {0x29000006, 0x2bd50204, 0x656000f8, 0x00000000}},  //   skia_, दिरा, _simh,\n  { {0xf99201b7, 0x62880119, 0x20a7007d, 0x00000000}},  //   _عبد_, _redo, _गांध,\n  { {0xe76a004b, 0x6288008a, 0x133900a1, 0x00000000}},  //   _محسن_, _sedo, یتوں_,\n  { {0x6903006c, 0x7dea006b, 0x54360025, 0x00000000}},  //   _mõel, ləst, حرار,\n  { {0x7cff008d, 0x2d9e0056, 0x00000000, 0x00000000}},  //   _përk, yrte_,   ,\n  { {0x64400046, 0x628801ca, 0x7e7e006c, 0x00000000}},  //   _wymi, _vedo, _õppi,\n  { {0x65600051, 0x60f80401, 0x6288013e, 0x00000000}},  //   _uimh, рния_, _wedo,\n  { {0x7d1d06d5, 0x6b40000c, 0x26d10045, 0x00000000}},  //   viss, lögu, _yazo_,\n  { {0x7d1d0e42, 0x613e01d6, 0x00000000, 0x00000000}},  //   wiss, eëlt,   ,\n  { {0x200201d9, 0x7d1d00b0, 0xa3d0007d, 0x00000000}},  //   ški_, tiss, षिक_,\n  { {0xa06a003b, 0xc5f3009b, 0x2d9e2578, 0x00000000}},  //   _сада_, לדת_, rrte_,\n  { {0x7d1d3ac6, 0x70560355, 0xa2dd0061, 0x00000000}},  //   riss, _انشا, पाच्,\n  { {0xde58008b, 0x7d1d021e, 0x2d9e00ca, 0x00000000}},  //   _калі_, siss, prte_,\n  { {0x7d1d0c7e, 0x7afa00f8, 0x00000000, 0x00000000}},  //   piss, ötta,   ,\n  { {0x6b40000c, 0x00000000, 0x00000000, 0x00000000}},  //   dögu,   ,   ,\n  { {0x26d1004a, 0x02fa0309, 0x56f500e2, 0x00000000}},  // [d630] _pazo_, ्साह_, опаѓ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7cff0065, 0x7e6d0095, 0x00000000, 0x00000000}},  //   _përh, _şapk,   ,\n  { {0x2ec502f4, 0x26d10020, 0xb87b0051, 0x00000000}},  //   _वस्त, _wazo_, _inío,\n  { {0x626502e9, 0x7af70288, 0x00000000, 0x00000000}},  //   овла, _koxt,   ,\n  { {0x69d80dec, 0x00000000, 0x00000000, 0x00000000}},  //   _švei,   ,   ,\n  { {0x945d0046, 0x7cff0065, 0xdce40166, 0x00000000}},  //   _pańs, _tërh, _sunč,\n  { {0xdce411b9, 0x7af701c3, 0x33872337, 0x00000000}},  //   _punč, _loxt, _гужв,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xef190745, 0xbebc0089, 0x92940b81, 0x00000000}},  //   рмо_, lnīj, _науц,\n  { {0x6b520030, 0xacea00ed, 0x7cff0065, 0x00000000}},  //   lægg, амна_, _zëri,\n  { {0x7ae50082, 0x00000000, 0x00000000, 0x00000000}},  //   _anht,   ,   ,\n  { {0x7af70e94, 0xb87b0051, 0x1b4a017f, 0x00000000}},  //   _boxt, _anío, изми_,\n  { {0x613e0023, 0x00000000, 0x00000000, 0x00000000}},  //   bëls,   ,   ,\n  { {0xfd120054, 0x6903006c, 0xab1901e1, 0x00000000}},  //   _يجب_, _tõel, сцях_,\n  { {0x18670407, 0x48e30900, 0x00000000, 0x00000000}},  //   жати_, мосв,   ,\n  { {0x7af70253, 0x9aa501b2, 0x00000000, 0x00000000}},  // [d640] _foxt, _کمپو,   ,\n  { {0x6d46008d, 0x00000000, 0x00000000, 0x00000000}},  //   llka,   ,   ,\n  { {0xb87b002a, 0xa2d40201, 0xe61a00e1, 0x00000000}},  //   _gnío, _योग्, јде_,\n  { {0x69de0197, 0xec360049, 0xd94602dc, 0x00000000}},  //   _irpe, ֿאַר_, _феми,\n  { {0x6b40000c, 0x00000000, 0x00000000, 0x00000000}},  //   sögu,   ,   ,\n  { {0x2ae3013d, 0x6d4601a2, 0xb06200b0, 0x00000000}},  //   खाएँ_, hlka, äämi,\n  { {0xaab203d7, 0x4ab2006e, 0x00000000, 0x00000000}},  //   _जानक, _जानव,   ,\n  { {0xd1300025, 0x00000000, 0x00000000, 0x00000000}},  //   عمة_,   ,   ,\n  { {0xc953012e, 0x5ed30044, 0xdde1012d, 0x00000000}},  //   ומה_, তানে, _ćušn,\n  { {0x7b10010f, 0xeeb7007e, 0x69de3ac7, 0x00000000}},  //   _häuf, ольш_, _orpe,\n  { {0x63a201c3, 0x7b10010f, 0x6b4000f8, 0x00000000}},  //   lron, _käuf, högs,\n  { {0x3f8601aa, 0x7afa00f8, 0x00000000, 0x00000000}},  //   _twou_, öttn,   ,\n  { {0x9f46010f, 0x69de3ac8, 0x00000000, 0x00000000}},  //   _groß_, _arpe,   ,\n  { {0x7b10010f, 0x6d4601a3, 0xbd6a0478, 0x00000000}},  //   _läuf, alka, _крие_,\n  { {0x63a20046, 0x59ce007d, 0x69de016c, 0x00000000}},  //   hron, _हैदर, _crpe,\n  { {0x63a20065, 0x8d180d3a, 0xf77000a2, 0x00000000}},  //   kron, _وزير_, چال_,\n  { {0xf77001fa, 0x63a22097, 0x466b0131, 0x00000000}},  // [d650] نال_, jron, арем_,\n  { {0x63a20207, 0x3f7b0049, 0x629e00f7, 0x00000000}},  //   dron, יאמס, ópol,\n  { {0x63a2009d, 0x7e7e010e, 0x6903010e, 0x00000000}},  //   eron, _õppu, _jõek,\n  { {0x63a20207, 0xf9da0049, 0x613e0065, 0x00000000}},  //   fron, _פֿיל, këlq,\n  { {0x63a200c7, 0x00000000, 0x00000000, 0x00000000}},  //   gron,   ,   ,\n  { {0x78ad001e, 0xe738007e, 0xe9d80bb6, 0x00000000}},  //   lgav, _меў_, _اذیت_,\n  { {0x63a20197, 0x00000000, 0x00000000, 0x00000000}},  //   aron,   ,   ,\n  { {0x78ad000c, 0x63a20036, 0x7bdf03d1, 0x00000000}},  //   ngav, bron, _orqu,\n  { {0x6b520030, 0x63a40045, 0x00000000, 0x00000000}},  //   læge, àint,   ,\n  { {0x248d00d9, 0x00000000, 0x00000000, 0x00000000}},  //   _heem_,   ,   ,\n  { {0x7bdf02d5, 0xb87b008e, 0x628300ca, 0x00000000}},  //   _arqu, _aním, mbno,\n  { {0xc1ba00a0, 0x71d600b3, 0x00000000, 0x00000000}},  //   _למעש, _מועד_,   ,\n  { {0x80270054, 0x69de00b9, 0x60c90943, 0x00000000}},  //   _برام, _srpe, meem,\n  { {0x3d020036, 0x63a40079, 0x2fcd054e, 0x00000000}},  //   _mówi_, šing, mweg_,\n  { {0x2fcd3ac9, 0x23650089, 0x6f1800f3, 0x00000000}},  //   lweg_, _milj_, _بزنس_,\n  { {0x248d0100, 0x60c9178a, 0x63a2070d, 0x00000000}},  //   _neem_, neem, yron,\n  { {0x7cff008d, 0x2fcd0c4c, 0xb87b0048, 0x00000000}},  // [d660] _përv, nweg_, _gním,\n  { {0x63a200f4, 0x69de0142, 0x60c901d6, 0x00000000}},  //   vron, _trpe, heem,\n  { {0x69de3a19, 0x60c90961, 0x248d00fa, 0x00000000}},  //   _urpe, keem, _beem_,\n  { {0x60c90045, 0x00000000, 0x00000000, 0x00000000}},  //   jeem,   ,   ,\n  { {0x63a216cc, 0x248d08ce, 0x645d0062, 0x00000000}},  //   uron, _deem_, _úsil,\n  { {0x23650059, 0xb3e901b7, 0x2fcd01a2, 0x00000000}},  //   _cilj_, تعمل_, dweg_,\n  { {0x69dc3079, 0xe2970545, 0x39420022, 0x00000000}},  //   nvre, чај_, _kkks_,\n  { {0x63a201b5, 0x859b009b, 0xe01d013d, 0x00000000}},  //   pron, _לשלו, _बेहद_,\n  { {0x2fcd0116, 0x39420022, 0x00000000, 0x00000000}},  //   gweg_, _mkks_,   ,\n  { {0x0dca026b, 0xdce40089, 0x75220459, 0x00000000}},  //   буми_, _runā, lioz,\n  { {0x908a0054, 0x127b0049, 0xb87b01ca, 0x00000000}},  //   _هناك_, _האבע, _sním,\n  { {0x75220032, 0x613e0023, 0x69dc01c3, 0x00000000}},  //   nioz, pëlq, dvre,\n  { {0x673e1275, 0x8ae70088, 0x656e011c, 0x00000000}},  //   kopj, півл, _lubh,\n  { {0x7b6401f9, 0x4ab20061, 0x75220026, 0x00000000}},  //   етсе, _जाणव, hioz,\n  { {0x7cff0065, 0x78ad1696, 0xceb30097, 0x00000000}},  //   _bërt, tgav, _ניק_,\n  { {0x8e470054, 0x6b520030, 0x78ad0e3f, 0x00000000}},  //   _عليك_, væge, ugav,\n  { {0x78ad00b5, 0xc6f9004c, 0x75220032, 0x00000000}},  // [d670] rgav, онах_, dioz,\n  { {0x04f90055, 0x7d0d0428, 0x248d00ab, 0x00000000}},  //   _আগের_, _hlas, _seem_,\n  { {0x28f907ca, 0x78ad3aca, 0x75220023, 0x00000000}},  //   _день_, pgav, fioz,\n  { {0x656e0051, 0x69c500f6, 0x75220091, 0x00000000}},  //   _dubh, _iphe, gioz,\n  { {0xe28e05b8, 0x394908c9, 0x248d00fa, 0x00000000}},  //   ка_, mlas_, _veem_,\n  { {0x49b8007a, 0x39490781, 0xe3b0023c, 0x00000000}},  //   _باید_, llas_, طره_,\n  { {0x7d0d0148, 0x60c903b6, 0x3949007f, 0x00000000}},  //   _olas, teem, olas_,\n  { {0x7c3a0046, 0x2fcd01a0, 0xa4d40088, 0x00000000}},  //   ętrz, tweg_, _посі,\n  { {0xa2b50265, 0x69dc0107, 0x60c900ab, 0x00000000}},  //   _обач, zvre, reem,\n  { {0x2fcd2e0b, 0x69c50116, 0x39493acb, 0x00000000}},  //   rweg_, _ophe, hlas_,\n  { {0x7d0d002b, 0xdca602b0, 0x39490995, 0x00000000}},  //   _blas, мани, klas_,\n  { {0x7d0d0365, 0x69dc012d, 0x3866012d, 0x00000000}},  //   _clas, vvre, žori_,\n  { {0x69c51624, 0x2ef5137c, 0xed570088, 0x00000000}},  //   _aphe, _оздр, ьою_,\n  { {0x39493acc, 0xada10027, 0x75220032, 0x00000000}},  //   elas_, ľúbe, zioz,\n  { {0x7cff0065, 0xaa4300e2, 0x5ed30044, 0x00000000}},  //   _përt, верл, তাদে,\n  { {0x39490211, 0x7d0d3a03, 0xdce4001a, 0x00000000}},  //   glas_, _glas, _dună,\n  { {0x7cff008d, 0x69dc01d6, 0x6d4430b2, 0x00000000}},  // [d680] _vërt, svre, _ikia,\n  { {0x7d0d0059, 0x61e10016, 0x63ab3acd, 0x00000000}},  //   _zlas, _orll, dugn,\n  { {0x39490211, 0x673e0023, 0x75d60025, 0x00000000}},  //   blas_, ropj, بيضا,\n  { {0x3949275a, 0x100d007d, 0x660300ea, 0x00000000}},  //   clas_, िनाश_, ønka,\n  { {0x75220065, 0x31c6006e, 0x3940009d, 0x00000000}},  //   rioz, लब्ध, mois_,\n  { {0x3940009d, 0x75221126, 0x00000000, 0x00000000}},  //   lois_, sioz,   ,\n  { {0xaac0007d, 0x9663019d, 0x00000000, 0x00000000}},  //   श्यक, _акре,   ,\n  { {0x3940084d, 0x399b00b3, 0x6285000c, 0x00000000}},  //   nois_, קיפד, ðhor,\n  { {0x8fa300e1, 0x26d80006, 0x24860823, 0x00000000}},  //   вање, _karo_, mbom_,\n  { {0x26d80062, 0x6d443ace, 0x7d0d1d7a, 0x00000000}},  //   _jaro_, _akia, _slas,\n  { {0x7d0d3acf, 0x2d982fef, 0x26d80035, 0x00000000}},  //   _plas, ére_, _maro_,\n  { {0x26d8006a, 0x7e6d001a, 0x3f42000c, 0x00000000}},  //   _laro_, _şapt, gður_,\n  { {0x69c50133, 0x3ce93ad0, 0x3940263c, 0x00000000}},  //   _sphe, _vnav_, dois_,\n  { {0x7cff008d, 0x6d44002d, 0x21240051, 0x00000000}},  //   _përs, _ekia, limh_,\n  { {0x394000f4, 0x3eb9006b, 0x39490253, 0x00000000}},  //   fois_, əst_, tlas_,\n  { {0x7d0d0127, 0x21240051, 0x7cff0023, 0x00000000}},  //   _ulas, nimh_, _vërs,\n  { {0x20041551, 0x39490211, 0x8bd4007e, 0x00000000}},  // [d690] nymi_, rlas_, _ажыц,\n  { {0x26d80a15, 0x08540057, 0x39490089, 0x00000000}},  //   _caro_, твую, slas_,\n  { {0x39490154, 0x26d80006, 0x3940009d, 0x00000000}},  //   plas_, _daro_, bois_,\n  { {0x6b8d3ad1, 0x2912000a, 0x3940009d, 0x00000000}},  //   _kwag, chya_, cois_,\n  { {0x26d80851, 0xf3cb023c, 0xc3cb01d8, 0x00000000}},  //   _faro_, تباه_, تظام_,\n  { {0x26d83ad2, 0x63ab00d9, 0x6b8d21a4, 0x00000000}},  //   _garo_, rugn, _mwag,\n  { {0x6145003b, 0x63b90016, 0x2fc60058, 0x00000000}},  //   нека, stwn, _apog_,\n  { {0x63ab08eb, 0x29090052, 0x00000000, 0x00000000}},  //   pugn, nkaa_,   ,\n  { {0x83350822, 0xafe501ff, 0x249f0066, 0x00000000}},  //   _знах, хопл, _idum_,\n  { {0x6d560058, 0x6d4405d2, 0x68fd00f6, 0x00000000}},  //   _shya, _skia, _losd,\n  { {0x2909021e, 0xd12e00a6, 0x656900b0, 0x00000000}},  //   kkaa_, شمی_, _kieh,\n  { {0x28df0201, 0xfd120647, 0x6b8d0dfc, 0x00000000}},  //   _पोलि, اجد_, _bwag,\n  { {0xeb9701be, 0x3f42009f, 0x6569021e, 0x00000000}},  //   ния_, rður_, _mieh,\n  { {0x3b0a0057, 0x60db002d, 0x6d5d01c3, 0x00000000}},  //   чего_, ldum, amsa,\n  { {0xf2d2007b, 0x26d83ad3, 0xc3320104, 0x00000000}},  //   װען_, _raro_, אום_,\n  { {0x60db006c, 0x65690066, 0x26d81fc4, 0x00000000}},  //   ndum, _nieh, _saro_,\n  { {0x07a30057, 0x26d8008e, 0x3940009d, 0x00000000}},  // [d6a0] латн, _paro_, rois_,\n  { {0x29123ad4, 0x7bd60058, 0x2a7a00c4, 0x00000000}},  //   shya_, _isyu, _ufpb_,\n  { {0x394002d5, 0x68fd0026, 0x26d819ae, 0x00000000}},  //   pois_, _fosd, _varo_,\n  { {0x98a013f1, 0xbebc01c5, 0x00000000, 0x00000000}},  //   dnić_, lnīt,   ,\n  { {0x65690066, 0x7afe0056, 0x26d80016, 0x00000000}},  //   _dieh, _kopt, _taro_,\n  { {0xbcfb009d, 0xeb930049, 0x656901c3, 0x00000000}},  //   mmée, אָק_, _eieh,\n  { {0x27e01241, 0x64a6007e, 0x20040036, 0x00000000}},  //   lvin_, _пава, wymi_,\n  { {0x7afe3ad5, 0x25bb009b, 0x2167003b, 0x00000000}},  //   _lopt, _מצלמ, нији_,\n  { {0x27e03ad6, 0x21240051, 0x25af0036, 0x00000000}},  //   nvin_, rimh_, ągle_,\n  { {0x6569010f, 0x2ca02c0b, 0x6b8d0009, 0x00000000}},  //   _zieh, _adid_, _rwag,\n  { {0x6b8d0e9e, 0x80bd0061, 0x7bd60022, 0x00000000}},  //   _swag, व्हे, _asyu,\n  { {0x7cff0065, 0x614600ed, 0x65690066, 0x00000000}},  //   _përq, _џеда, _xieh,\n  { {0x6d5d104b, 0x68fd0145, 0x69d804a5, 0x00000000}},  //   rmsa, _rosd, _švep,\n  { {0x7afe0023, 0x27e00190, 0x2ca03ad7, 0x00000000}},  //   _copt, dvin_, _edid_,\n  { {0x68fd023a, 0x290900b0, 0xb9250025, 0x00000000}},  //   _posd, tkaa_, نفسي,\n  { {0x58d4013b, 0x6b8d0117, 0x290f0051, 0x00000000}},  //   лост, _twag, óga_,\n  { {0x6b8d0046, 0xbcfb1184, 0x07090774, 0x00000000}},  // [d6b0] _uwag, rméd, ويري_,\n  { {0x6569001f, 0x81d70044, 0x6b520030, 0x00000000}},  //   _sieh, ামত_, lægn,\n  { {0xfb1c009b, 0x3ce60067, 0x644921e6, 0x00000000}},  //   _מוזמ, टाचे_, _syei,\n  { {0x48ab0057, 0x237f0059, 0x98a0012d, 0x00000000}},  //   _этом_, _ptuj_, vnić_,\n  { {0xc6a700e1, 0x65690ba4, 0x98a000b4, 0x00000000}},  //   _први, _vieh, wnić_,\n  { {0x6569002b, 0x8c1c009b, 0x13080088, 0x00000000}},  //   _wieh, הודי, нній_,\n  { {0x15a80265, 0x63a4002b, 0x656918fb, 0x00000000}},  //   _пъти_, ġina, _tieh,\n  { {0xf994061e, 0x60d90066, 0x98a011af, 0x00000000}},  //   ארק_, _qawm, rnić_,\n  { {0xe0d60642, 0x200b01ca, 0x00000000, 0x00000000}},  //   твы_, áci_,   ,\n  { {0xaf0500ed, 0x00000000, 0x00000000, 0x00000000}},  //   тпол,   ,   ,\n  { {0x7cff008d, 0x60db0022, 0x6903006c, 0x00000000}},  //   _përp, pdum, _jões,\n  { {0xeb9a004c, 0x7afe18be, 0x332704d2, 0x00000000}},  //   мим_, _sopt, linx_,\n  { {0x7afe0224, 0x00000000, 0x00000000, 0x00000000}},  //   _popt,   ,   ,\n  { {0xa3e202fb, 0xe8ff00f4, 0x00000000, 0x00000000}},  //   धित_, _aoû_,   ,\n  { {0xcb670140, 0x00000000, 0x00000000, 0x00000000}},  //   таре_,   ,   ,\n  { {0x2d85030a, 0x33270685, 0x27e0014a, 0x00000000}},  //   mple_, hinx_, tvin_,\n  { {0x7afe1e54, 0x81d70044, 0xa696003b, 0x00000000}},  // [d6c0] _topt, ামি_, вреј,\n  { {0xbcfb009d, 0x06830088, 0x00000000, 0x00000000}},  //   rmée, игун,   ,\n  { {0x27e00239, 0x2d852ed5, 0xdbe3009d, 0x00000000}},  //   svin_, nple_, _rééc,\n  { {0xd826051f, 0x779400a6, 0x7c22000c, 0x00000000}},  //   _адми, _میرا, _þors,\n  { {0x6903006c, 0x290c0089, 0xd4670fa6, 0x00000000}},  //   _võet, ūdas_, вице_,\n  { {0x8c1b00b3, 0xa89401c5, 0x00000000, 0x00000000}},  //   ווני, šķīr,   ,\n  { {0x7bc10035, 0x00000000, 0x00000000, 0x00000000}},  //   ălui,   ,   ,\n  { {0xf99300b6, 0x31ba0065, 0x66031598, 0x00000000}},  //   ברה_, rëz_, änke,\n  { {0xa2bf001c, 0x2d850bd3, 0x2489004a, 0x00000000}},  //   ल्ह्, eple_, ñame_,\n  { {0x9df800ed, 0xb87b06c2, 0x00000000, 0x00000000}},  //   енот_, _unív,   ,\n  { {0x4c950088, 0x62980161, 0x320700b4, 0x00000000}},  //   линс, mavo, cyny_,\n  { {0x629806ae, 0xd0260ae0, 0x00000000, 0x00000000}},  //   lavo, _имей,   ,\n  { {0xdcfb001e, 0xd00f0025, 0x7ff315dd, 0x00000000}},  //   lstī, _ولم_, _نسوا,\n  { {0xb3450181, 0x62983ad8, 0x5b270088, 0x00000000}},  //   moçã, navo, тьма,\n  { {0x1db6007d, 0x6b520030, 0x236c00d9, 0x00000000}},  //   _अमित, mægl, _midj_,\n  { {0x27ed002b, 0x6934060e, 0x00000000, 0x00000000}},  //   _ġenb_, ансу,   ,\n  { {0x80be0044, 0x08550088, 0x320700b4, 0x00000000}},  // [d6d0] ্যপ্, уваю, zyny_,\n  { {0xdcfb001e, 0x6d4f00d4, 0x629809fc, 0x00000000}},  //   kstī, llca, javo,\n  { {0x63a40051, 0x62980dc6, 0x7c22000c, 0x00000000}},  //   áinn, davo, _þorr,\n  { {0x588404af, 0x394d01d5, 0xf487019d, 0x00000000}},  //   _выра, ċess_, тужн,\n  { {0xad1c007b, 0x4ac000e8, 0x9d1c01ce, 0x00000000}},  //   וואר, श्वव, וואט,\n  { {0x6903006c, 0x62982289, 0x05950bb6, 0x00000000}},  //   _tões, gavo, _مارگ,\n  { {0x80be0055, 0xb594005e, 0xd5b800ed, 0x00000000}},  //   ্যন্, _висш, _ист_,\n  { {0xdfd10025, 0x7c3a0035, 0x657a0068, 0x00000000}},  //   ميع_, ştri, _étha,\n  { {0x62980387, 0x657501f3, 0x00000000, 0x00000000}},  //   bavo, _huzh,   ,\n  { {0x65750065, 0x637f0035, 0x00000000, 0x00000000}},  //   _kuzh, _vână,   ,\n  { {0xd2510025, 0x4d660265, 0x2d850173, 0x00000000}},  //   _انا_, лков, uple_,\n  { {0x637f001a, 0x2d850133, 0xdb060d24, 0x00000000}},  //   _tână, rple_, stkü,\n  { {0x6575145d, 0x4fa500e3, 0xbebc0089, 0x00000000}},  //   _luzh, _силв, rnīr,\n  { {0x8f9a007b, 0xe4560049, 0x6d4f0009, 0x00000000}},  //   _װיקי, טירט_, alca,\n  { {0xfce60088, 0x98a601ee, 0x9404013f, 0x00000000}},  //   _бойо, ливе, _demə_,\n  { {0x62983ad9, 0x00000000, 0x00000000, 0x00000000}},  //   zavo,   ,   ,\n  { {0x6d46010a, 0x27e6002a, 0x46ea003b, 0x00000000}},  // [d6e0] moka, íon_, ндан_,\n  { {0x6b840058, 0x00000000, 0x00000000, 0x00000000}},  //   _itig,   ,   ,\n  { {0x69370243, 0xa3b601f5, 0x6b840066, 0x00000000}},  //   mćen, चून_, _htig,\n  { {0xb87b0b76, 0x849600a1, 0x6575012d, 0x00000000}},  //   _caíd, اجائ, _duzh,\n  { {0x6298001e, 0x4420001d, 0x06cf0044, 0x00000000}},  //   tavo, ài_, রাজি,\n  { {0x63a41288, 0x533401fc, 0x65750066, 0x00000000}},  //   šino, јект, _fuzh,\n  { {0x62980428, 0x290206ed, 0x6d463ada, 0x00000000}},  //   ravo, _koka_, koka,\n  { {0x2902021e, 0xf993009b, 0x6d460006, 0x00000000}},  //   _joka_, זרה_, joka,\n  { {0xe29206ea, 0x6298000c, 0x29020006, 0x00000000}},  //   _هذا_, pavo, _moka_,\n  { {0x290227ad, 0x65620023, 0x3eb801a2, 0x00000000}},  //   _loka_, lmoh, ürt_,\n  { {0x3f820089, 0x6d46253f, 0x10a60d51, 0x00000000}},  //   ūku_, foka, _биен,\n  { {0x6d460010, 0x29020056, 0xdb0f0023, 0x00000000}},  //   goka, _noka_, pucë,\n  { {0xdb1d0047, 0xc621007d, 0x3157009b, 0x00000000}},  //   ltsé, _मध्य_, _עידן_,\n  { {0x501b00b6, 0x65620023, 0x00000000, 0x00000000}},  //   _אודו, hmoh,   ,\n  { {0x13cd0055, 0x290201c9, 0x6d4607ef, 0x00000000}},  //   লিয়, _boka_, boka,\n  { {0x2d9e0007, 0x6d463adb, 0x2902016c, 0x00000000}},  //   mste_, coka, _coka_,\n  { {0x65750066, 0x2d9e01b5, 0xab5b01a2, 0x00000000}},  // [d6f0] _suzh, lste_, rtüb,\n  { {0xb87b0181, 0x61e801c9, 0xeb9f1565, 0x00000000}},  //   _saíd, _ordl, msø_,\n  { {0x2d9e0168, 0x290209c8, 0x44270241, 0x00000000}},  //   nste_, _foka_, گراف,\n  { {0x2d9e3adc, 0x39a1010a, 0x01ba0044, 0x00000000}},  //   iste_, mės_, ংবাদ,\n  { {0x39a1010a, 0x657501f3, 0x61e80048, 0x00000000}},  //   lės_, _wuzh, _ardl,\n  { {0x2d9e3add, 0x6b7c0049, 0x6d46016a, 0x00000000}},  //   kste_, ערונ, zoka,\n  { {0x39a10736, 0x6d4613df, 0xb87b052a, 0x00000000}},  //   nės_, yoka, _unís,\n  { {0x2d9e0018, 0xd131057d, 0xb0f30044, 0x00000000}},  //   dste_, تمع_, জস্ব_,\n  { {0x2d9e08ed, 0x02a7005e, 0x7f19007e, 0x00000000}},  //   este_, _брем, віну_,\n  { {0x39a1010a, 0x2d9e3ade, 0x21260022, 0x00000000}},  //   kės_, fste_, _emoh_,\n  { {0x2d9e018d, 0x6d46000b, 0x7bcd0ba5, 0x00000000}},  //   gste_, toka, _apau,\n  { {0x39a10006, 0x00000000, 0x00000000, 0x00000000}},  //   dės_,   ,   ,\n  { {0x2d9e0e66, 0x29020027, 0xef0e01ee, 0x00000000}},  //   aste_, _roka_, _дм_,\n  { {0x29020020, 0x6d463adf, 0x5f74023c, 0x00000000}},  //   _soka_, soka, _طاهر,\n  { {0xc89603f3, 0x6d463ae0, 0x6f030051, 0x00000000}},  //   ирањ, poka, _ionc,\n  { {0xbcfb0010, 0xdb06014a, 0x00000000, 0x00000000}},  //   lmén, kukç,   ,\n  { {0xa967005e, 0x3f9f00b0, 0x29022289, 0x00000000}},  // [d700] рита_, nsuu_, _voka_,\n  { {0x39a1010a, 0xdb06014a, 0x6f03009d, 0x00000000}},  //   bės_, dukç, _jonc,\n  { {0x6f0301aa, 0x29021de9, 0xab5b010f, 0x00000000}},  //   _monc, _toka_, stüc,\n  { {0x628100b5, 0x7d04021e, 0x660309f0, 0x00000000}},  //   _aflo, _jois, änka,\n  { {0x65623ae1, 0xbcfb0010, 0x00000000, 0x00000000}},  //   rmoh, kmén,   ,\n  { {0x7d043ae2, 0x6f030207, 0x2d9e0c0f, 0x00000000}},  //   _lois, _nonc, yste_,\n  { {0xbcfb0047, 0xe5a3017f, 0x60280089, 0x00000000}},  //   dmén, _мири, zīmī,\n  { {0x7d0422d0, 0x628100fa, 0x7b1001a2, 0x00000000}},  //   _nois, _eflo, _säul,\n  { {0x39a10006, 0x60f7007e, 0x6f030095, 0x00000000}},  //   zės_, рныя_, _bonc,\n  { {0x2d9e049b, 0x7d160058, 0x7b1001a2, 0x00000000}},  //   tste_, _alys, _bäum,\n  { {0x7bcd010a, 0x6f0304bd, 0x7d0411b1, 0x00000000}},  //   _spau, _donc, _bois,\n  { {0x7d043ae3, 0x39a1010a, 0xf8bf008e, 0x00000000}},  //   _cois, vės_, _amén_,\n  { {0x6f03028c, 0x2d9e3ae4, 0x7d04016e, 0x00000000}},  //   _fonc, sste_, _dois,\n  { {0x6e940054, 0x39a1010a, 0x8f9b007b, 0x00000000}},  //   _الثا, tės_, _יידי,\n  { {0x7d160030, 0x7cff0023, 0xba08005e, 0x00000000}},  //   _flys, _mërz, ахте_,\n  { {0x9875008b, 0x39a1010a, 0x6f030026, 0x00000000}},  //   слац, rės_, _zonc,\n  { {0x39a1010a, 0x6d4d3ae5, 0x63a43ae6, 0x00000000}},  // [d710] sės_, _ikaa, šinj,\n  { {0x8aa7013b, 0x39a1010a, 0x67ca0089, 0x00000000}},  //   _трид, pės_, dējā,\n  { {0x09f90054, 0x466b0878, 0x00000000, 0x00000000}},  //   _صفحة_, трам_,   ,\n  { {0xbcfb0047, 0x3f860173, 0x26d3004a, 0x00000000}},  //   zmén, _otou_, sexo_,\n  { {0x6d4d00e7, 0xd7f802be, 0x00000000, 0x00000000}},  //   _mkaa, _кур_,   ,\n  { {0xc3240099, 0x973500a6, 0x00000000, 0x00000000}},  //   омік, _اکرا,   ,\n  { {0x6f030197, 0x2002021e, 0x75820014, 0x00000000}},  //   _ronc, äkin_, _فیلم,\n  { {0x6f030059, 0x7b10010f, 0x394900c4, 0x00000000}},  //   _sonc, _räum, noas_,\n  { {0x6f030299, 0x7d04110a, 0xbcfb0010, 0x00000000}},  //   _ponc, _rois, tmén,\n  { {0x7d16000c, 0x6d4d0020, 0x7d041063, 0x00000000}},  //   _slys, _akaa, _sois,\n  { {0x7d040e4a, 0xb6da0049, 0x21ce006b, 0x00000000}},  //   _pois, אַכט, _cəhd_,\n  { {0xcb0900b6, 0xd256009b, 0x27ed0066, 0x00000000}},  //   _אל_, _השעה_, _ġenn_,\n  { {0x7d043ae7, 0x7f850054, 0x853a01ce, 0x00000000}},  //   _vois, _التن, רגרי,\n  { {0x6f1a0270, 0x81bc0044, 0x00000000, 0x00000000}},  //   chtc, েটর_,   ,\n  { {0x7d043ae8, 0x752900b9, 0x7d16005b, 0x00000000}},  //   _tois, _omez, _tlys,\n  { {0x39490181, 0xb87b008e, 0x443f006b, 0x00000000}},  //   goas_, _raíc, _oxu_,\n  { {0x66760426, 0x3952005b, 0xd7ea007e, 0x00000000}},  // [d720] مدار, rlys_, ымае_,\n  { {0xe64601fb, 0x75292367, 0x395216a7, 0x00000000}},  //   безп, _amez, slys_,\n  { {0x645b17df, 0x395204a5, 0x00000000, 0x00000000}},  //   _azui, plys_,   ,\n  { {0x69de002b, 0x443f0066, 0x98ac0089, 0x00000000}},  //   _ispe, _bxu_, ēlēs_,\n  { {0x7cff0065, 0x68e4014a, 0x5eaf0044, 0x00000000}},  //   _përz, mdid, জ্যে,\n  { {0x67ca0089, 0x68e41e17, 0x00000000, 0x00000000}},  //   rējā, ldid,   ,\n  { {0x443f3ae9, 0x80be0044, 0x68e4010e, 0x00000000}},  //   _exu_, ্যস্, odid,\n  { {0xd1300025, 0x290000e7, 0x443f0066, 0x00000000}},  //   ظمة_, njia_, _fxu_,\n  { {0xc6000044, 0x200d0010, 0x3dce00c4, 0x00000000}},  //   _এইটা_, gyei_, _spfw_,\n  { {0x63a201c5, 0x6d4d0343, 0x69de064c, 0x00000000}},  //   mson, _skaa, _ospe,\n  { {0x63a21fcb, 0x00000000, 0x00000000, 0x00000000}},  //   lson,   ,   ,\n  { {0x629a3aea, 0x0db900a1, 0xe1f100a1, 0x00000000}},  //   _heto, گئیں_, _کسے_,\n  { {0x63a22d2e, 0x68e422aa, 0xe04307e1, 0x00000000}},  //   nson, ddid, _енци,\n  { {0x629a008d, 0xdd900084, 0x63a2009d, 0x00000000}},  //   _jeto, _قوت_, ison,\n  { {0x80db0044, 0xc333009b, 0x127b0049, 0x00000000}},  //   ভার্, לוש_, ראלע,\n  { {0x629a3692, 0x99550099, 0x29000065, 0x00000000}},  //   _leto, ікац, gjia_,\n  { {0xdb0f0211, 0x394900c4, 0x63a200ea, 0x00000000}},  // [d730] lucí, roas_, json,\n  { {0x629a0030, 0x63a200bb, 0x7bdf1343, 0x00000000}},  //   _neto, dson, _isqu,\n  { {0x6eca0164, 0x63a201d6, 0x2489004a, 0x00000000}},  //   त्यु, eson, ñamo_,\n  { {0x54550265, 0xa3b90070, 0x629a01d6, 0x00000000}},  //   овет, لاتر_, _aeto,\n  { {0x63a23aeb, 0x29190146, 0x2bdf013d, 0x00000000}},  //   gson, _ilsa_, _पैमा,\n  { {0x629a0a16, 0x6595007e, 0xdb063aec, 0x00000000}},  //   _ceto, _магу, stkö,\n  { {0x27e9141a, 0x63a200d9, 0xf1a803ec, 0x00000000}},  //   lvan_, ason, مايه_,\n  { {0x63a201c5, 0x753b0020, 0xdb0f008e, 0x00000000}},  //   bson, _ujuz, ducí,\n  { {0xef190264, 0x63a20010, 0x60060147, 0x00000000}},  //   ими_, cson, жным_,\n  { {0x629a0250, 0xc34b008b, 0x2ca93aed, 0x00000000}},  //   _geto, _сябе_, _adad_,\n  { {0x2919005d, 0x7bdf008e, 0xab5b0010, 0x00000000}},  //   _olsa_, _asqu, ttün,\n  { {0x69de1c1a, 0x629a21b0, 0x2ca9004a, 0x00000000}},  //   _rspe, _zeto, _cdad_,\n  { {0x2d5900f4, 0xe134007e, 0x814c0049, 0x00000000}},  //   péen_, _энцы, _געאַ,\n  { {0x2ca91433, 0x63a4002a, 0x3f8d1374, 0x00000000}},  //   _edad_, áini, mpeu_,\n  { {0x7bdf0ca7, 0x2ca90045, 0x6ee43aee, 0x00000000}},  //   _esqu, _fdad_, _رسول,\n  { {0x63a40006, 0x63a23aef, 0x7d1d01a2, 0x00000000}},  //   šini, yson, chss,\n  { {0x68e40b76, 0x370601bd, 0x98a90036, 0x00000000}},  // [d740] rdid, опаг, znać_,\n  { {0x2919130e, 0xab5b0676, 0xdceb012d, 0x00000000}},  //   _elsa_, ntül, _pufć,\n  { {0x39460256, 0x629a028c, 0x69de0a38, 0x00000000}},  //   _мног, _reto, _uspe,\n  { {0x629a0181, 0x63a20007, 0x938a003b, 0x00000000}},  //   _seto, tson, аска_,\n  { {0x629a016c, 0x9346178d, 0xd403007c, 0x00000000}},  //   _peto, онде, дящи,\n  { {0x47d9007b, 0x37d90049, 0xa3bb006e, 0x00000000}},  //   _פֿרײ, _פֿרע, _अमर_,\n  { {0x65c30057, 0x629a00b0, 0x60c922c2, 0x00000000}},  //   _обра, _veto, ffem,\n  { {0x63ad0580, 0x63a200bb, 0x1fa6041f, 0x00000000}},  //   šana, pson, орог,\n  { {0x629a0065, 0xdfd00380, 0x50b70014, 0x00000000}},  //   _teto, ريد_, زديد_,\n  { {0xcf260025, 0xbcfb00f4, 0x00000000, 0x00000000}},  //   تربي, rmém,   ,\n  { {0x27e91140, 0x667b0097, 0xa3e2007d, 0x00000000}},  //   zvan_, יטיק, धिक_,\n  { {0x27e9005a, 0xbfa30082, 0x7bc600ea, 0x00000000}},  //   yvan_, _kiế, ftku,\n  { {0x1ae40055, 0x4ae7008b, 0xa06a012b, 0x00000000}},  //   খানে_, оўва, _тада_,\n  { {0xb87b027b, 0xdce4012d, 0x00000000, 0x00000000}},  //   _caín, _dunđ,   ,\n  { {0x7bc601a3, 0x00000000, 0x00000000, 0x00000000}},  //   atku,   ,   ,\n  { {0x27e90232, 0x00000000, 0x00000000, 0x00000000}},  //   tvan_,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  // [d750]   ,   ,   ,\n  { {0x27e90100, 0xa92800b9, 0xd6db0184, 0x00000000}},  //   rvan_, _požá, јта_,\n  { {0x657c0093, 0xab5b010f, 0x056b00ed, 0x00000000}},  //   _curh, ntüm, ајди_,\n  { {0x657c0784, 0xbfa30082, 0x00000000, 0x00000000}},  //   _durh, _biế,   ,\n  { {0x7ae501c2, 0x78fa009b, 0x69c700b5, 0x00000000}},  //   _kaht, _הפרו, ltje,\n  { {0x20e70082, 0x7d1d0023, 0x00000000, 0x00000000}},  //   _ối_, ërsj,   ,\n  { {0x4648008b, 0x9445026c, 0x69c700b5, 0x00000000}},  //   _дзён_, _کھان, ntje,\n  { {0x212b0263, 0x7ae501c2, 0x04c90379, 0x00000000}},  //   òch_, _laht, _دوري_,\n  { {0x60c9049a, 0x69c7016e, 0xe3e90123, 0x00000000}},  //   rfem, htje, _دکان_,\n  { {0xa2b404b6, 0xef191020, 0x765500ea, 0x00000000}},  //   _обуч, смо_, _kyzy,\n  { {0x69c7008d, 0xdce40645, 0xb87b0051, 0x00000000}},  //   jtje, _sunđ, _naío,\n  { {0x8c4600ed, 0x7bc600ea, 0xab5b0010, 0x00000000}},  //   земе, ttku, stül,\n  { {0x69c700b5, 0x7ae50145, 0x00000000, 0x00000000}},  //   etje, _baht,   ,\n  { {0xa3ae03d7, 0x692c014a, 0x00000000, 0x00000000}},  //   _किस_, rşem,   ,\n  { {0x7bc60dac, 0x00000000, 0x00000000, 0x00000000}},  //   stku,   ,   ,\n  { {0x657a009d, 0x00000000, 0x00000000, 0x00000000}},  //   _éthi,   ,   ,\n  { {0x68430057, 0x69c700b5, 0x1867019d, 0x00000000}},  // [d760] ента, atje, зати_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xfebd0044, 0x00000000, 0x00000000, 0x00000000}},  //   _অসাধ,   ,   ,\n  { {0x7ae51034, 0xd946025f, 0x00000000, 0x00000000}},  //   _zaht, _хеми,   ,\n  { {0xf8b3019b, 0x2d980211, 0xdb1d0010, 0x00000000}},  //   _אשר_, árez_, ltsá,\n  { {0x657c2316, 0xbfa30082, 0x3f82000c, 0x00000000}},  //   _turh, _viế, íkum_,\n  { {0x7d1d0007, 0x6b520698, 0x672e0066, 0x00000000}},  //   ërsk, lægs, _imbj,\n  { {0xbcfb0047, 0xbfa30011, 0xd259007e, 0x00000000}},  //   rmék, _tiế, цці_,\n  { {0x61e100f6, 0x442200f8, 0x24860253, 0x00000000}},  //   _esll, _åk_, mcom_,\n  { {0x24861401, 0x61e10066, 0x91e600e2, 0x00000000}},  //   lcom_, _fsll, _нозе,\n  { {0x2d98028c, 0x1cd907d0, 0x68e60ace, 0x00000000}},  //   ère_, одны_, _oakd,\n  { {0x24863af0, 0xf99300a1, 0x7ae508a7, 0x00000000}},  //   ncom_, ہبر_, _saht,\n  { {0x61dc007d, 0x672e00ea, 0xab5b3af1, 0x00000000}},  //   _मनुष, _ombj, stüm,\n  { {0x26da0182, 0xbcfb002a, 0x81cf0044, 0x00000000}},  //   jepo_, iméi, শির_,\n  { {0x24860093, 0x7ae501c2, 0x68e600f8, 0x00000000}},  //   kcom_, _vaht, _bakd,\n  { {0x672e0226, 0x69c700b5, 0x76550036, 0x00000000}},  //   _ambj, rtje, _ryzy,\n  { {0x5ba4008b, 0x7ae53af2, 0x69c705d5, 0x00000000}},  // [d770] _прэз, _taht, stje,\n  { {0x6d4f02d5, 0x6b8d011c, 0xec38009b, 0x00000000}},  //   loca, _itag, _מאחר_,\n  { {0x692c014a, 0x60c2004a, 0x00000000, 0x00000000}},  //   kşeh, _ocom,   ,\n  { {0x7d1d0065, 0x24860190, 0x32cf014a, 0x00000000}},  //   ërsh, gcom_, zıyı_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x60c216b2, 0x63ad0089, 0x6d4f0051, 0x00000000}},  //   _acom, šano, hoca,\n  { {0x24860062, 0x290b014a, 0xdb240010, 0x00000000}},  //   bcom_, _koca_, éséb,\n  { {0x6b8d009d, 0x6d4f3af3, 0x290b3af4, 0x00000000}},  //   _otag, joca, _joca_,\n  { {0x63a4002a, 0xd0a80025, 0xb4b90164, 0x00000000}},  //   áint, سطين_, चली_,\n  { {0xee390057, 0x290b02a0, 0x3f8b0089, 0x00000000}},  //   жно_, _loca_, īcu_,\n  { {0x9d4600ed, 0x63a9000c, 0x60c20009, 0x00000000}},  //   денд, _hven, _fcom,\n  { {0x60c2002a, 0x63a9000c, 0x30150088, 0x00000000}},  //   _gcom, _kven, _одер,\n  { {0xeb9702dd, 0x249f000a, 0x60db00e7, 0x00000000}},  //   мия_, _meum_, meum,\n  { {0xdb1d0010, 0x6b8d0051, 0x60db00ea, 0x00000000}},  //   ttsá, _dtag, leum,\n  { {0x290b0682, 0x68e60022, 0x6b8d04fb, 0x00000000}},  //   _boca_, _pakd, _etag,\n  { {0x26da000b, 0x63a901e3, 0x6d4f033f, 0x00000000}},  //   wepo_, _oven, coca,\n  { {0xcece0011, 0x290b3035, 0x68e600d9, 0x00000000}},  // [d780] _mộng_, _doca_, _vakd,\n  { {0x36360014, 0xcece0082, 0x2ca000d9, 0x00000000}},  //   وراس, _lộng_, _heid_,\n  { {0x68e63af5, 0x24861f1b, 0x26da0065, 0x00000000}},  //   _takd, tcom_, repo_,\n  { {0xe45a019d, 0x290b0023, 0x00000000, 0x00000000}},  //   оже_, _goca_,   ,\n  { {0xc3da03ec, 0x24860142, 0x136a01fc, 0x00000000}},  //   تباط_, rcom_, ошки_,\n  { {0x6d4f037e, 0x60c20207, 0x24860253, 0x00000000}},  //   zoca, _scom, scom_,\n  { {0x24860142, 0x7b10010f, 0x249f0009, 0x00000000}},  //   pcom_, _häus, _feum_,\n  { {0xcece001d, 0x2ca00004, 0x78a40173, 0x00000000}},  //   _cộng_, _neid_, naiv,\n  { {0x27e004c7, 0xc9530104, 0x692c014a, 0x00000000}},  //   nwin_, כמה_, rşeh,\n  { {0x44260020, 0x2216005e, 0x3d9400ed, 0x00000000}},  //   mzo_, _офер, ниор,\n  { {0x1d350822, 0x6d4f0207, 0x6b8d0e02, 0x00000000}},  //   ення, toca, _stag,\n  { {0x66030ba4, 0x00000000, 0x00000000, 0x00000000}},  //   änki,   ,   ,\n  { {0x44260fb1, 0x101606b4, 0x290b029a, 0x00000000}},  //   nzo_, _تباد, _roca_,\n  { {0x290b03d1, 0x39420146, 0x00000000, 0x00000000}},  //   _soca_, _ajks_,   ,\n  { {0x290b3af6, 0xd90f00d3, 0xc1dc0061, 0x00000000}},  //   _poca_, لید_, _मनोग,\n  { {0x58d4004c, 0x80be0044, 0x78a4007f, 0x00000000}},  //   кост, ্যক্, gaiv,\n  { {0x3fbc0055, 0x290b0107, 0x6b8d3af7, 0x00000000}},  // [d790] _অনুষ, _voca_, _utag,\n  { {0x60db0010, 0x00000000, 0x00000000, 0x00000000}},  //   zeum,   ,   ,\n  { {0xb8e50055, 0x63a902e1, 0x290b10af, 0x00000000}},  //   _এস_, _sven, _toca_,\n  { {0xb4b90164, 0x7d0d2034, 0x00000000, 0x00000000}},  //   चले_, _joas,   ,\n  { {0xcece001d, 0xdb1d0030, 0x7d0d0035, 0x00000000}},  //   _rộng_, rtsæ, _moas,\n  { {0xfbb203d7, 0x31662512, 0xdb1d0030, 0x00000000}},  //   _जिसम, _ahoz_, stsæ,\n  { {0xe5c4013b, 0x24800091, 0x4426007f, 0x00000000}},  //   _исто, žima_, azo_,\n  { {0x75222e09, 0x7d0d000d, 0x3fe50216, 0x00000000}},  //   choz, _noas, ежив,\n  { {0xe454008b, 0x61f80027, 0x20190344, 0x00000000}},  //   _акты, _ďalš, ási_,\n  { {0x60db24c7, 0x2ca0010f, 0xeb0e0061, 0x00000000}},  //   seum, _seid_, _हवेत_,\n  { {0xa2c40201, 0xed5a0256, 0x7d0d0133, 0x00000000}},  //   _रात्, зон_, _boas,\n  { {0x7d0d00ab, 0xdb060062, 0x7c2601a2, 0x00000000}},  //   _coas, mské, tzkr,\n  { {0xdb0601ca, 0x2ee7000a, 0x09a80061, 0x00000000}},  //   lské, _tanf_, गळ्य,\n  { {0xada501a4, 0x316d014a, 0x00000000, 0x00000000}},  //   _закл, lmez_,   ,\n  { {0x44260198, 0x3ea50004, 0xdb060428, 0x00000000}},  //   zzo_, malt_, nské,\n  { {0x3ea510fb, 0x316d014a, 0x27e00253, 0x00000000}},  //   lalt_, nmez_, twin_,\n  { {0x63ad01ae, 0x81d50055, 0x78a400c4, 0x00000000}},  // [d7a0] šanj, িটি_, raiv,\n  { {0x27e00007, 0xff7a007b, 0x3ea501e3, 0x00000000}},  //   rwin_, פטעמ, nalt_,\n  { {0x316d1db3, 0xba9b00b3, 0x362400a1, 0x00000000}},  //   kmez_, _מסיי, خواہ,\n  { {0x3ea5001f, 0x27e00061, 0x81d50044, 0x00000000}},  //   halt_, pwin_, িটা_,\n  { {0x3ea50cfd, 0x39403af8, 0x6937016c, 0x00000000}},  //   kalt_, mnis_, rćet,\n  { {0x44262fd0, 0xf651026c, 0x3ea5006c, 0x00000000}},  //   rzo_, ائے_, jalt_,\n  { {0x8cc1013d, 0x3ea53a77, 0xaad20061, 0x00000000}},  //   _वालो, dalt_, द्यक,\n  { {0x39403af9, 0x6d440020, 0x00000000, 0x00000000}},  //   nnis_, _njia,   ,\n  { {0x934634b3, 0x93c8026c, 0xbcfb33df, 0x00000000}},  //   _знае, _تازہ_, llég,\n  { {0x3940010f, 0x80170025, 0x6d470161, 0x00000000}},  //   hnis_, عزيز_, čkam,\n  { {0xd36f0076, 0x39400e48, 0x7d0d0065, 0x00000000}},  //   _اهل_, knis_, _poas,\n  { {0x2724000c, 0x213f012d, 0x39520133, 0x00000000}},  //   _hönd_, cnuh_, joys_,\n  { {0x3ea5006c, 0x7d0d001a, 0x0b8b005e, 0x00000000}},  //   balt_, _voas, ясни_,\n  { {0x39400007, 0x6d560009, 0x628a009d, 0x00000000}},  //   enis_, _ekya, ncfo,\n  { {0x39402be7, 0xcf57009b, 0x9967003b, 0x00000000}},  //   fnis_, _רבות_, етал,\n  { {0x0e5b00b6, 0x394001a2, 0x6e2e000c, 0x00000000}},  //   _מדוב, gnis_, úbbu,\n  { {0xdb1d0210, 0xb909007d, 0x00000000, 0x00000000}},  // [d7b0] ttsä, _यस_,   ,\n  { {0x6d5d0073, 0x63ad016c, 0x3940006c, 0x00000000}},  //   llsa, šank, anis_,\n  { {0xdb1d0073, 0x3940010f, 0x6d5d0007, 0x00000000}},  //   rtsä, bnis_, olsa,\n  { {0xdb060161, 0xdb1d04ce, 0x00000000, 0x00000000}},  //   vské, stsä,   ,\n  { {0xdb1d01a2, 0x81d50044, 0x3ea516ec, 0x00000000}},  //   ptsä, িয়া_, yalt_,\n  { {0x68ed3afa, 0xdb0601ca, 0x290900b0, 0x00000000}},  //   ldad, tské, ljaa_,\n  { {0x3ea50004, 0x9f4b3afb, 0x316d014a, 0x00000000}},  //   valt_, ící_, tmez_,\n  { {0x68ed0004, 0x3ea5010f, 0x2bb2013d, 0x00000000}},  //   ndad, walt_, _जिला,\n  { {0xa3ae03d7, 0x3ea5122f, 0xf8bf0047, 0x00000000}},  //   _किए_, talt_, _elég_,\n  { {0x39400c66, 0xbcfb00b9, 0x68ed0d12, 0x00000000}},  //   znis_, hléd, hdad,\n  { {0x68fd0193, 0xa3e9007d, 0x3ea501e3, 0x00000000}},  //   _onsd, यिक_, ralt_,\n  { {0x3ea50004, 0x4087005e, 0x7db4007e, 0x00000000}},  //   salt_, _чужб, ысьц,\n  { {0x68ed3afc, 0x3ea500f8, 0x00000000, 0x00000000}},  //   ddad, palt_,   ,\n  { {0x68ed0181, 0x68fd000a, 0x6d5d129a, 0x00000000}},  //   edad, _ansd, alsa,\n  { {0xa2c4006e, 0x39403afd, 0x81cf0044, 0x00000000}},  //   _रास्, tnis_, শিক_,\n  { {0x68ed011c, 0xf1b201ce, 0x6d4404cb, 0x00000000}},  //   gdad, יסל_, _ujia,\n  { {0x39400007, 0xfc3f0051, 0xf8bf00f6, 0x00000000}},  // [d7c0] rnis_, laín_, _amés_,\n  { {0x39401ba5, 0x667600a2, 0x68ed3afe, 0x00000000}},  //   snis_, ندار, adad,\n  { {0x6449027b, 0x75890088, 0x6b8407a9, 0x00000000}},  //   _axei, есів_, _huig,\n  { {0x6b842d34, 0x63b90016, 0xbcfb0010, 0x00000000}},  //   _kuig, frwn, lmér,\n  { {0x0fbc0044, 0x24800091, 0xf8bf00f6, 0x00000000}},  //   _অন্ধ, žimo_, _emés_,\n  { {0x65690487, 0x6b84010e, 0x645b00e0, 0x00000000}},  //   _eheh, _muig, _dyui,\n  { {0x6b840207, 0xe5a3025f, 0xbcfb00f4, 0x00000000}},  //   _luig, _виси, llée,\n  { {0x2fcd001c, 0x656900d9, 0x00000000, 0x00000000}},  //   fteg_, _gheh,   ,\n  { {0xa4b70097, 0x42ca00e2, 0x00000000, 0x00000000}},  //   _שלמה_, _оган_,   ,\n  { {0x69ce03a9, 0x4d980088, 0x00000000, 0x00000000}},  //   ktbe, нкою_,   ,\n  { {0xc0e7025a, 0x68ed006b, 0x79950009, 0x00000000}},  //   رفین_, ydad, xpzw,\n  { {0x2002006c, 0x6b840112, 0x65690023, 0x00000000}},  //   äkis_, _buig, _xheh,\n  { {0x6d5d01f3, 0x6eb90061, 0x7afe0022, 0x00000000}},  //   rlsa, ऊलखु, _bnpt,\n  { {0x81d50044, 0x69ce01a2, 0xdce60089, 0x00000000}},  //   িটর_, ftbe, rmkā,\n  { {0x987e011f, 0xaa58003b, 0x765c00ea, 0x00000000}},  //   _açık_, виру_, _nyry,\n  { {0xbcfb3aff, 0x68ed3b00, 0xdcf900e5, 0x00000000}},  //   rmés, udad, _duvă,\n  { {0x68ed02d5, 0x19580783, 0x6b84009d, 0x00000000}},  // [d7d0] rdad, таты_, _guig,\n  { {0xa2c402f4, 0x65690a9e, 0x68ed00c7, 0x00000000}},  //   _राष्, _sheh, sdad,\n  { {0x27ff0e00, 0x6b8400b5, 0x69ce00bb, 0x00000000}},  //   _šund_, _zuig, ctbe,\n  { {0x99f600b6, 0x2d5900f4, 0x7d1d006c, 0x00000000}},  //   _עזרה_, mées_, nkss,\n  { {0xd0060379, 0x63a0018e, 0x2d5900f4, 0x00000000}},  //   _ال_, _cwmn, lées_,\n  { {0x56940099, 0xdb1d009d, 0x00000000, 0x00000000}},  //   _варт, fusé,   ,\n  { {0x2d59028c, 0x39590022, 0x00000000, 0x00000000}},  //   nées_, _kkss_,   ,\n  { {0x00e50264, 0x069700a1, 0x4fe900ed, 0x00000000}},  //   ужин, _ساڑھ, емин_,\n  { {0x7ff50380, 0x63a00016, 0x2d59009d, 0x00000000}},  //   اسبا, _gwmn, hées_,\n  { {0x6b8400bb, 0x2fcd0093, 0x8e090242, 0x00000000}},  //   _ruig, rteg_, енов_,\n  { {0xdca60242, 0x69ce3b01, 0xdb1d009d, 0x00000000}},  //   лани, xtbe, cusé,\n  { {0xa3e703d7, 0x2d91001e, 0x6b840129, 0x00000000}},  //   _बना_, īze_, _puig,\n  { {0xdcf90089, 0xcee8009e, 0xdb0400fa, 0x00000000}},  //   _atvē, ررین_, _aviá,\n  { {0x69ce010f, 0x6fb20879, 0x7d1d01c3, 0x00000000}},  //   ttbe, _اموا, akss,\n  { {0x2d5900f4, 0xc332009b, 0x00000000, 0x00000000}},  //   gées_, מוך_,   ,\n  { {0x6b840051, 0x7d1d09b0, 0x00000000, 0x00000000}},  //   _tuig, ckss,   ,\n  { {0x69ce010f, 0x96960216, 0x628100b4, 0x00000000}},  // [d7e0] stbe, греш, _oglo,\n  { {0x613e0089, 0xbcfb0068, 0x69ce3b02, 0x00000000}},  //   rīli, rlée, ptbe,\n  { {0x2d5900f4, 0x692c001a, 0x00000000, 0x00000000}},  //   cées_, uşes,   ,\n  { {0x62812234, 0x291e0089, 0x142600ed, 0x00000000}},  //   _aglo, ītas_, лдем,\n  { {0xbd2d007b, 0x628f001a, 0x98a90036, 0x00000000}},  //   וואָ, _şcoa, wiać_,\n  { {0xab5b014a, 0x7cfb0052, 0x00000000, 0x00000000}},  //   ltür, _kärä,   ,\n  { {0x154600ed, 0x00000000, 0x00000000, 0x00000000}},  //   _бевм,   ,   ,\n  { {0x62810173, 0x60f8005e, 0xab5b3b03, 0x00000000}},  //   _eglo, тния_, ntür,\n  { {0x62810009, 0xd3f403e8, 0x00000000, 0x00000000}},  //   _fglo, _мiст,   ,\n  { {0x2d59009d, 0x8f340131, 0x00000000, 0x00000000}},  //   yées_, реоц,   ,\n  { {0xab5b0808, 0x2d59009d, 0xe29b009b, 0x00000000}},  //   ktür, xées_, _נשאר,\n  { {0xac1902d3, 0x2d5900f4, 0x8fa6017f, 0x00000000}},  //   вому_, vées_, _баде,\n  { {0xddcb1282, 0xbcfb008e, 0xd12f0439, 0x00000000}},  //   čišt, eléc, _عمه_,\n  { {0x7bcf0857, 0x2d5900f4, 0xce94005e, 0x00000000}},  //   rtcu, tées_, _такъ,\n  { {0xa3ab03d7, 0x78a60039, 0xaa590a33, 0x00000000}},  //   _कौन_, _bekv, тиву_,\n  { {0x2d5900f4, 0x26d80b33, 0x00000000, 0x00000000}},  //   rées_, _abro_,   ,\n  { {0x2d5900f4, 0x47350780, 0x78a600d9, 0x00000000}},  // [d7f0] sées_, анас, _dekv,\n  { {0x291e008d, 0x2d5900f4, 0xe7330879, 0x00000000}},  //   ëtar_, pées_, حصر_,\n  { {0x78a60010, 0xab5b013f, 0x2eee0544, 0x00000000}},  //   _fekv, stüs, _maff_,\n  { {0x057402fd, 0x26d80d48, 0x2eee0544, 0x00000000}},  //   ماند, _ebro_, _laff_,\n  { {0xab5b006b, 0x00000000, 0x00000000, 0x00000000}},  //   rrüf,   ,   ,\n  { {0x41b50175, 0x77ba009b, 0x883a009b, 0x00000000}},  //   асит, _במשח, _יתרו,\n  { {0xab5b010f, 0x2249005e, 0x00000000, 0x00000000}},  //   prüf, ъпки_,   ,\n  { {0x5eaf0044, 0x00000000, 0x00000000, 0x00000000}},  //   জ্ঞে,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x62810107, 0xe80d007d, 0x00000000, 0x00000000}},  //   _uglo, _सपना_,   ,\n  { {0x52840054, 0x60b500e9, 0x3f82000c, 0x00000000}},  //   _المك, _نمائ, íkur_,\n  { {0x2d52004a, 0xee36078e, 0xc19a00a0, 0x00000000}},  //   láez_, рню_, _ישעי,\n  { {0xa09a007b, 0x8fa53b04, 0x8d55007e, 0x00000000}},  //   _סיסט, _тале, стэч,\n  { {0x5e87007e, 0xfaa300ed, 0xeb9702ea, 0x00000000}},  //   _судз, жаро, рир_,\n  { {0xc33200b3, 0x83fd0010, 0x2d590068, 0x00000000}},  //   קול_, _szől, réer_,\n  { {0x3ea73b05, 0x00000000, 0x00000000, 0x00000000}},  //   _hent_,   ,   ,\n\n  { {0x3ea736c3, 0xb8ee0164, 0xab5b085e, 0x00000000}},  // [d800] _kent_, _रा_, rtür,\n  { {0xf7721298, 0x27eb0009, 0xab5b0d85, 0x00000000}},  //   زاء_, _dscn_, stür,\n  { {0x2d870038, 0x3ea7121b, 0xc4860264, 0x00000000}},  //   _june_, _ment_, алек,\n  { {0x63640129, 0x69de002b, 0x6d46000c, 0x00000000}},  //   tòno, _ippe, nnka,\n  { {0x68e43b06, 0x2902255a, 0x44200011, 0x00000000}},  //   meid, _inka_, ái_,\n  { {0x8c1b00b6, 0x21ce006b, 0xa59601ab, 0x00000000}},  //   כוני, _məhv_, _вращ,\n  { {0x4420001e, 0x1bed013d, 0x2d8701ee, 0x00000000}},  //   ši_, _चैनल_, _nune_,\n  { {0x68e400b0, 0x2eee0af2, 0xdb1d00ea, 0x00000000}},  //   neid, _saff_, stsø,\n  { {0x8f46007c, 0x42ea012b, 0xff06007e, 0x00000000}},  //   иход, _имао_, аянн,\n  { {0x65620065, 0x69de01b5, 0x2d87001a, 0x00000000}},  //   lloh, _oppe, _bune_,\n  { {0x68e40128, 0x3ea7009d, 0x171b0049, 0x00000000}},  //   keid, _dent_, דויע,\n  { {0xb87b00fa, 0x00000000, 0x00000000, 0x00000000}},  //   _maír,   ,   ,\n  { {0x69de028a, 0x3ea71c98, 0xa3c90061, 0x00000000}},  //   _appe, _fent_, लंय_,\n  { {0x3ea704bd, 0x2d870026, 0x6d460052, 0x00000000}},  //   _gent_, _fune_, anka,\n  { {0x68e4002a, 0x29881662, 0x2d87065c, 0x00000000}},  //   feid, исто_, _gune_,\n  { {0x68e40006, 0xdb1d01ca, 0x1d08003b, 0x00000000}},  //   geid, musí, _већи_,\n  { {0xbcfb2d2e, 0x69de1b8a, 0xad27009e, 0x00000000}},  // [d810] cléa, _eppe, _مرکو,\n  { {0x307700b6, 0x2ca9167c, 0xb87b00fa, 0x00000000}},  //   שתמש_, _head_, _saís,\n  { {0xb87b0b76, 0xa3c90183, 0x68e40292, 0x00000000}},  //   _país, लून_, beid,\n  { {0x6705007d, 0x45840088, 0x5e790049, 0x00000000}},  //   राहक_, ігів, אָנד,\n  { {0xc651026c, 0x37e4007e, 0x61fa00ea, 0x00000000}},  //   _کہاک, _доўг, _artl,\n  { {0x97250123, 0x2ca900ab, 0xa3c90164, 0x00000000}},  //   _افسو, _lead_, लंब_,\n  { {0x349509b2, 0x3ea73b07, 0x27e90022, 0x00000000}},  //   _габр, _rent_, lwan_,\n  { {0x3ea73b08, 0x2d870030, 0x78ad05e0, 0x00000000}},  //   _sent_, _rune_, naav,\n  { {0x3ea70173, 0x2d871de0, 0x00000000, 0x00000000}},  //   _pent_, _sune_,   ,\n  { {0x2d871d24, 0x27e9011c, 0x68e40171, 0x00000000}},  //   _pune_, iwan_, zeid,\n  { {0x6b963b09, 0x78ad00b0, 0x27e9008a, 0x00000000}},  //   _styg, kaav, hwan_,\n  { {0xeb9a012b, 0x2ca90051, 0x3ea700ab, 0x00000000}},  //   лим_, _cead_, _went_,\n  { {0x68e4001e, 0x2ca900ab, 0x6d4606d3, 0x00000000}},  //   veid, _dead_, rnka,\n  { {0x60c9001f, 0x6e950054, 0x27e90739, 0x00000000}},  //   lgem, _الغا, dwan_,\n  { {0x68e416a6, 0x3f8d0023, 0xa3c90061, 0x00000000}},  //   teid, lqeu_, लंड_,\n  { {0x60c90149, 0x628f001a, 0x6ed30061, 0x00000000}},  //   ngem, _şcol, ब्रु,\n  { {0x636401aa, 0x27e90c2d, 0x60c901d6, 0x00000000}},  // [d820] wònm, gwan_, igem,\n  { {0x68e40232, 0x78ad041a, 0x7d16004a, 0x00000000}},  //   seid, aaav, _hoys,\n  { {0x7bc60dc7, 0x7d04002b, 0x27e90093, 0x00000000}},  //   luku, _knis, awan_,\n  { {0xab5b01f6, 0x7d160471, 0xdcf90006, 0x00000000}},  //   crüb, _joys, _buvę,\n  { {0x7bc6015e, 0x60c90aba, 0x7d1600fa, 0x00000000}},  //   nuku, dgem, _moys,\n  { {0x81e10055, 0x61fa00ee, 0xff470167, 0x00000000}},  //   দিন_, _prtl, _رخ_,\n  { {0x7bc632ca, 0xdb1d0181, 0x248904eb, 0x00000000}},  //   huku, lusã, žama_,\n  { {0xf8ba02d2, 0xa4910123, 0x7bc609bd, 0x00000000}},  //   ेलिय, _قیمت, kuku,\n  { {0x2ca90038, 0x3eac010f, 0x7bc60020, 0x00000000}},  //   _read_, tadt_, juku,\n  { {0x75220047, 0x2ca90181, 0x61fa016c, 0x00000000}},  //   lkoz, _sead_, _trtl,\n  { {0x2ca9006c, 0x3eac0010, 0x80a60014, 0x00000000}},  //   _pead_, radt_, _همان,\n  { {0x7bc60020, 0x30860025, 0x867b00b3, 0x00000000}},  //   fuku, _الإف, טריו,\n  { {0x7bc60c4a, 0x78ad0052, 0x2ca9010e, 0x00000000}},  //   guku, vaav, _vead_,\n  { {0x7d04049a, 0xab5b010f, 0x00000000, 0x00000000}},  //   _enis, drüc,   ,\n  { {0x2ca9006c, 0xdb0f0051, 0xc33900b9, 0x00000000}},  //   _tead_, nscé, _říká,\n  { {0x7bc62552, 0x27e9002b, 0xdb1d00c4, 0x00000000}},  //   buku, twan_, fusã,\n  { {0xc8671e03, 0x78ad021e, 0x636d09f7, 0x00000000}},  // [d830] стви, raav, núnc,\n  { {0x78ad3b0a, 0x27e90093, 0xa2cd0164, 0x00000000}},  //   saav, rwan_, _साध्,\n  { {0x27e905ae, 0x60c93b0b, 0x78ad00b0, 0x00000000}},  //   swan_, ygem, paav,\n  { {0x7ae73b0c, 0x2ee502ae, 0xab5b010f, 0x00000000}},  //   lejt, zelf_, brüc,\n  { {0x69d5022b, 0x69c71414, 0x39493b0d, 0x00000000}},  //   ltze, luje, mnas_,\n  { {0xa3aa02d2, 0x39490d90, 0x69d5002d, 0x00000000}},  //   _खबर_, lnas_, otze,\n  { {0x69d50756, 0x5ea70044, 0x69c705fd, 0x00000000}},  //   ntze, _খালে, nuje,\n  { {0x39490004, 0x69d5022b, 0x7bc6003f, 0x00000000}},  //   nnas_, itze, yuku,\n  { {0x60c9028c, 0x69d5010f, 0x39492395, 0x00000000}},  //   rgem, htze, inas_,\n  { {0x69c70027, 0x60c93b0e, 0x7d04012d, 0x00000000}},  //   kuje, sgem, _snis,\n  { {0xf1dd0183, 0x69c700ee, 0x39493b0f, 0x00000000}},  //   _महिन, juje, knas_,\n  { {0xed5a02b8, 0x2ee50b8d, 0x7bc60020, 0x00000000}},  //   ром_, self_, tuku,\n  { {0xc178023c, 0x75290020, 0xbcfb076d, 0x00000000}},  //   _اصلا_, _mlez, plén,\n  { {0xada508fd, 0x7bc60169, 0x39490d90, 0x00000000}},  //   _дакл, ruku, enas_,\n  { {0x69c7045e, 0x6d4700ca, 0x7d160190, 0x00000000}},  //   guje, čkar, _toys,\n  { {0x7d04006c, 0x7bc60145, 0x799c0016, 0x00000000}},  //   _unis, puku, rprw,\n  { {0x69d5002d, 0x2b8f006b, 0xecb00044, 0x00000000}},  // [d840] atze, _güc_, _কাপড,\n  { {0x39490211, 0x69c70b41, 0x753b001a, 0x00000000}},  //   anas_, buje, _amuz,\n  { {0x75220047, 0x69c70142, 0x00000000, 0x00000000}},  //   tkoz, cuje,   ,\n  { {0xab5b01a2, 0xd5760088, 0x7e6301c3, 0x00000000}},  //   prüc, цузь, _mynp,\n  { {0x752200f4, 0x63640129, 0x61e10146, 0x00000000}},  //   rkoz, lòni, _apll,\n  { {0x752916df, 0x96fa007e, 0x673e0065, 0x00000000}},  //   _elez, _тэму_, qipj,\n  { {0x745400a1, 0xdb1d009d, 0x00000000, 0x00000000}},  //   _کھائ, ursé,   ,\n  { {0x61f8001c, 0x68f60036, 0x75290089, 0x00000000}},  //   rvvl, ndyd, _glez,\n  { {0xd0070098, 0x68f60016, 0x00000000, 0x00000000}},  //   жење_, idyd,   ,\n  { {0xa3df013d, 0x6d4d00bb, 0xb7db0097, 0x00000000}},  //   _तहत_, _sjaa, סקיי,\n  { {0x7ae70a9f, 0x39490006, 0xc693009b, 0x00000000}},  //   vejt, ynas_, ואת_,\n  { {0xc0c70175, 0x248001ca, 0x69c70142, 0x00000000}},  //   _душе_, žimu_, vuje,\n  { {0x7ae700b9, 0x68f60016, 0xdfcf0025, 0x00000000}},  //   tejt, ddyd, _لين_,\n  { {0x4f570318, 0x636400d4, 0x7e6301d6, 0x00000000}},  //   _وجود_, fòni, _fynp,\n  { {0x7ae73b10, 0x3a25000c, 0x636d0051, 0x00000000}},  //   rejt, álp_, núna,\n  { {0x69c7041a, 0x69d50756, 0x2d9e053e, 0x00000000}},  //   ruje, rtze, mpte_,\n  { {0x39492593, 0x7ae70065, 0x6d5d076a, 0x00000000}},  // [d850] rnas_, pejt, mosa,\n  { {0x6d5d002d, 0x69c70142, 0x75291581, 0x00000000}},  //   losa, puje, _slez,\n  { {0xa2c40201, 0x75293b11, 0x6b8d0066, 0x00000000}},  //   _राज्, _plez, _huag,\n  { {0x636d0051, 0x6b8d0020, 0x6f18049c, 0x00000000}},  //   dúna, _kuag, _lovc,\n  { {0x24891332, 0x3cfc00a3, 0x29191a0b, 0x00000000}},  //   žamo_, ילאנ, _iosa_,\n  { {0x6f180091, 0x6d5d19dd, 0x291906ed, 0x00000000}},  //   _novc, hosa, _hosa_,\n  { {0x29190020, 0x6d5d0010, 0xf6280088, 0x00000000}},  //   _kosa_, kosa, _діти_,\n  { {0x753b3b12, 0x291900d4, 0x6b8d0068, 0x00000000}},  //   _umuz, _josa_, _ouag,\n  { {0x6d5d023a, 0x6b8d1fd2, 0x7e630039, 0x00000000}},  //   dosa, _nuag, _synp,\n  { {0x29193b13, 0x636d000c, 0x91f70025, 0x00000000}},  //   _losa_, búna, _وأضا,\n  { {0xf8bf02d5, 0x68f60016, 0x6d5d00ea, 0x00000000}},  //   _além_, ydyd, fosa,\n  { {0x63a91a60, 0xbcfb3ad9, 0x2919049a, 0x00000000}},  //   _kwen, blém, _nosa_,\n  { {0x63a90263, 0x60db00e7, 0x7e6301d6, 0x00000000}},  //   _jwen, mfum, _wynp,\n  { {0x63a93b14, 0x3b0a007c, 0x699601fb, 0x00000000}},  //   _mwen, щего_, зрах,\n  { {0xa3ab0061, 0x6d5d0093, 0x39403b15, 0x00000000}},  //   कीत_, bosa, tiis_,\n  { {0x29193b16, 0x636404bd, 0xed57005e, 0x00000000}},  //   _cosa_, ròni, _нощ_,\n  { {0x8ca203d7, 0x68f6018e, 0x63a90009, 0x00000000}},  // [d860] _क्यो, rdyd, _nwen,\n  { {0x3940006c, 0x4bfb01ce, 0x69c1013e, 0x00000000}},  //   siis_, _פליס, álec,\n  { {0xceb2009b, 0x6e21098e, 0x2919004a, 0x00000000}},  //   גיב_, nylb, _fosa_,\n  { {0x80db0044, 0x6e3c00c4, 0x63a934ce, 0x00000000}},  //   _মোস্, úrbi, _bwen,\n  { {0x78a4129a, 0xb4bc013d, 0xa3e6007d, 0x00000000}},  //   mbiv, _आयी_, यौं_,\n  { {0xf1a6013b, 0x2d9e2b60, 0x6d5d00e7, 0x00000000}},  //   прин, ypte_, zosa,\n  { {0x64a6008b, 0x7986000b, 0xa2cd02fb, 0x00000000}},  //   _нава, _kikw, _सार्,\n  { {0x63a90173, 0x25080167, 0x00000000, 0x00000000}},  //   _fwen, _برسی_,   ,\n  { {0x63a9018e, 0x79860ed7, 0x6d5d3316, 0x00000000}},  //   _gwen, _mikw, vosa,\n  { {0x539b019b, 0x79862db7, 0xb4bc013d, 0x00000000}},  //   _לימו, _likw, _आयु_,\n  { {0x6d5d0010, 0x2baf01f5, 0x63a900bb, 0x00000000}},  //   tosa, जीना, _zwen,\n  { {0xab5b010f, 0x2d9e0116, 0xa2cd0061, 0x00000000}},  //   grün, rpte_, _साऱ्,\n  { {0x6d5d0127, 0xbcfb0010, 0x6b8d17f4, 0x00000000}},  //   rosa, llék, _quag,\n  { {0x2919008e, 0x6d5d0ac2, 0x2d9e09b0, 0x00000000}},  //   _sosa_, sosa, ppte_,\n  { {0x29190129, 0x6d5d0238, 0x6edb009b, 0x00000000}},  //   _posa_, posa, _החופ,\n  { {0x3eae010f, 0x00000000, 0x00000000, 0x00000000}},  //   _heft_,   ,   ,\n  { {0x798607a5, 0x57190930, 0x00000000, 0x00000000}},  // [d870] _dikw, ожая_,   ,\n  { {0x9f4d3b17, 0x2d8e0087, 0x00000000, 0x00000000}},  //   rveç_, _kufe_,   ,\n  { {0x63a927f5, 0x291900fa, 0x38c80752, 0x00000000}},  //   _swen, _tosa_, _کاپی_,\n  { {0xe8eb026c, 0x3eae0866, 0x63a901aa, 0x00000000}},  //   _اردو_, _left_, _pwen,\n  { {0xdb060039, 0xbfa30082, 0x00000000, 0x00000000}},  //   rrkö, _chế,   ,\n  { {0x3eae005f, 0xa2d20061, 0xc2c40025, 0x00000000}},  //   _neft_, _ठाण्, فيهي,\n  { {0x29d73b18, 0x25aa0016, 0xdce40243, 0x00000000}},  //   nça_, _gwbl_, _uhić,\n  { {0x212b0036, 0x85050380, 0x29d700fa, 0x00000000}},  //   óch_, _تورن, iça_,\n  { {0xab5b006b, 0x00000000, 0x00000000, 0x00000000}},  //   vrün,   ,   ,\n  { {0x29d7014a, 0xa29401e1, 0x00000000, 0x00000000}},  //   kça_, _зафі,   ,\n  { {0xc33200b6, 0x60db211e, 0x78bd0e3b, 0x00000000}},  //   _שוב_, pfum, _odsv,\n  { {0x80db0044, 0x3f9f00b0, 0x00000000, 0x00000000}},  //   _মোর্, ppuu_,   ,\n  { {0x7af70436, 0x798601f3, 0x9f4d0007, 0x00000000}},  //   _baxt, _rikw, nweë_,\n  { {0x09e609ae, 0x79863b19, 0x78bd0009, 0x00000000}},  //   могн, _sikw, _adsv,\n  { {0x79860173, 0x00000000, 0x00000000, 0x00000000}},  //   _pikw,   ,   ,\n  { {0xb4bc006e, 0x3f87000c, 0x00000000, 0x00000000}},  //   _आये_, _hinu_,   ,\n  { {0x18673b1a, 0x79860d16, 0x29d700c4, 0x00000000}},  // [d880] дати_, _vikw, aça_,\n  { {0x8c43010f, 0x917a0082, 0x7af70288, 0x00000000}},  //   ößer, _mấy_, _gaxt,\n  { {0x3f870004, 0x3f8f006c, 0x3ea1006c, 0x00000000}},  //   _minu_, _lugu_, _õhtu_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xf8b300b3, 0x5eee0061, 0x00000000, 0x00000000}},  //   _בשר_, _असल्_,   ,\n  { {0xae0d0164, 0x80db0044, 0x7bc600ea, 0x00000000}},  //   िमान_, _মোল্, irku,\n  { {0x3f8f127f, 0x91e3003b, 0x201900b0, 0x00000000}},  //   _augu_, воје, äsin_,\n  { {0x92ae0055, 0x66030030, 0x70c80061, 0x00000000}},  //   কলে_, ænke, ळलेल,\n  { {0x3f8f0fcd, 0x00000000, 0x00000000, 0x00000000}},  //   _cugu_,   ,   ,\n  { {0x3f8f022b, 0x692c014a, 0x8e1406e3, 0x00000000}},  //   _dugu_, rşey, едоц,\n  { {0x3f87001a, 0x63a20232, 0xbcfb124d, 0x00000000}},  //   _dinu_, lpon, lléi,\n  { {0x3f873b1b, 0xa00a0025, 0x7af7006b, 0x00000000}},  //   _einu_, _وقال_, _saxt,\n  { {0x7b67004c, 0x7af70066, 0x63a2002d, 0x00000000}},  //   дтве, _paxt, npon,\n  { {0xf047089d, 0x78af0035, 0xbcfb0048, 0x00000000}},  //   _تعمی, _secv, iléi,\n  { {0x7af7005f, 0xb34500c4, 0x59f8005e, 0x00000000}},  //   _vaxt, liçã, меря_,\n  { {0x29d703d1, 0x63762dfb, 0x3f870089, 0x00000000}},  //   rça_, lând, _zinu_,\n  { {0xb8f7006e, 0xb3450181, 0x7af7006b, 0x00000000}},  // [d890] _सा_, niçã, _taxt,\n  { {0x63760035, 0x29d73b1c, 0x3f8701f3, 0x00000000}},  //   nând, pça_, _xinu_,\n  { {0xfc3f008e, 0x6d4f0026, 0x00000000, 0x00000000}},  //   país_, onca,   ,\n  { {0x629a0039, 0x6d4f0d28, 0x672e0146, 0x00000000}},  //   _afto, nnca, _elbj,\n  { {0x290b000d, 0x68ed0181, 0xe299007c, 0x00000000}},  //   _inca_, mead, пал_,\n  { {0x68ed002a, 0xe299012b, 0xb3450181, 0x00000000}},  //   lead, чак_, diçã,\n  { {0x44293b1d, 0xe0d10054, 0x3f8f3b1e, 0x00000000}},  //   ša_, هزة_, _sugu_,\n  { {0x3f870004, 0x68ed3b1f, 0x636d008e, 0x00000000}},  //   _sinu_, nead, múnm,\n  { {0x3995032e, 0x3f870032, 0x637600c4, 0x00000000}},  //   _lås_, _pinu_, fând,\n  { {0x27e40073, 0x68ed30b3, 0x809f007d, 0x00000000}},  //   _ämne_, head, _ग्रे,\n  { {0x68ed00ea, 0x3995063b, 0x3f871093, 0x00000000}},  //   kead, _nås_, _vinu_,\n  { {0xb3450181, 0x68ed0285, 0x3f8f0091, 0x00000000}},  //   biçã, jead, _tugu_,\n  { {0x68ed2582, 0xa11605f3, 0x6376001a, 0x00000000}},  //   dead, _سقوط_, bând,\n  { {0x643a007b, 0xab2a008b, 0x290b001a, 0x00000000}},  //   לערנ, чога_, _anca_,\n  { {0x63a20010, 0x68ed0051, 0x69c100b9, 0x00000000}},  //   zpon, fead, šlen,\n  { {0x6376001a, 0x63bb3b20, 0x68ed2870, 0x00000000}},  //   mâne, _ovun, gead,\n  { {0x6d463b21, 0x27e60016, 0x69c733c6, 0x00000000}},  // [d8a0] mika, ïon_, arje,\n  { {0x39951c8c, 0xe9da00c0, 0x290b0087, 0x00000000}},  //   _fås_, _еко_, _enca_,\n  { {0xfad700bd, 0x63bb00f8, 0x68ed17c9, 0x00000000}},  //   _אויך_, _avun, bead,\n  { {0x69dc0fb6, 0x938a025f, 0x6135009f, 0x00000000}},  //   mtre, пска_, _hálf,\n  { {0x69dc04bd, 0x63a200e0, 0xe2f80088, 0x00000000}},  //   ltre, upon, делі_,\n  { {0x6d46015e, 0x63a20aa3, 0x69dc01d6, 0x00000000}},  //   hika, rpon, otre,\n  { {0x69dc0f8e, 0x6d46083a, 0x27f23b22, 0x00000000}},  //   ntre, kika, lwyn_,\n  { {0x63a20207, 0x6d4604cb, 0xb3450181, 0x00000000}},  //   ppon, jika, tiçã,\n  { {0x6d463b23, 0xb4cc0061, 0x27f20016, 0x00000000}},  //   dika, लली_, nwyn_,\n  { {0xb34502d5, 0x44260058, 0x2d890197, 0x00000000}},  //   riçã, myo_, _siae_,\n  { {0x6d4601d5, 0xa0a6053c, 0xb34502d5, 0x00000000}},  //   fika, _заед, siçã,\n  { {0x6d461330, 0x69dc0109, 0x69ce0032, 0x00000000}},  //   gika, dtre, dube,\n  { {0x4426006a, 0x48fb013d, 0x68ed00fa, 0x00000000}},  //   nyo_, _लोगो_, vead,\n  { {0x69dc010f, 0x69c70059, 0x6f0a0022, 0x00000000}},  //   ftre, trje, _unfc,\n  { {0x68ed006c, 0x6d461158, 0xdb040211, 0x00000000}},  //   tead, bika, _avió,\n  { {0x69c7008d, 0x7bda001a, 0x6d48004a, 0x00000000}},  //   rrje, ătur, éjat,\n  { {0x68ed038f, 0x69dc00bb, 0x7d0d0020, 0x00000000}},  // [d8b0] read, atre, _inas,\n  { {0x68ed0004, 0x44263b24, 0x69c7002b, 0x00000000}},  //   sead, dyo_, prje,\n  { {0xceb3061e, 0x69dc0051, 0x7bcf12cb, 0x00000000}},  //   ריע_, ctre, lucu,\n  { {0xa5670014, 0x88830014, 0x7bdd006c, 0x00000000}},  //   ردان, _میزن, otsu,\n  { {0x7bdd168e, 0x4426011c, 0x7bcf014a, 0x00000000}},  //   ntsu, gyo_, nucu,\n  { {0x6d461e86, 0x316601aa, 0x02c20451, 0x00000000}},  //   zika, _akoz_, айшо,\n  { {0x95c8012b, 0x1a9c0049, 0x7bdd006c, 0x00000000}},  //   _пута_, ליגע, htsu,\n  { {0x25be009f, 0x44260111, 0x600926f0, 0x00000000}},  //   _ætla_, byo_, дним_,\n  { {0x442631c8, 0x4395005e, 0x7bcf0107, 0x00000000}},  //   cyo_, _разс, jucu,\n  { {0x7d0d27c9, 0xd2f7026c, 0x69dc1291, 0x00000000}},  //   _anas, _سکتا_, ytre,\n  { {0x6ea7026c, 0xdca60256, 0xed5a0072, 0x00000000}},  //   ونکہ_, кани, дон_,\n  { {0x2cb2005f, 0xd24e007a, 0x63760181, 0x00000000}},  //   _qeyd_, _بچه_, râne,\n  { {0x317f011f, 0x69dc00d9, 0x00000000, 0x00000000}},  //   mmuz_, wtre,   ,\n  { {0x69dc193b, 0x316d00f4, 0x8ca2006e, 0x00000000}},  //   ttre, llez_, _क्रो,\n  { {0x6d462092, 0xf2d201ce, 0x63760181, 0x00000000}},  //   pika, יעם_, lânc,\n  { {0x69dc1014, 0xdb0f0051, 0x7d0d1473, 0x00000000}},  //   rtre, rscá, _gnas,\n  { {0x63761290, 0x7bdd0e9c, 0x7bcf0145, 0x00000000}},  // [d8c0] nânc, ctsu, cucu,\n  { {0x4426000b, 0x9bb7009b, 0x3ce3013d, 0x00000000}},  //   vyo_, _שהיה_, ट्ठे_,\n  { {0x44260016, 0x6562012d, 0x14c80014, 0x00000000}},  //   wyo_, tooh, فهای_,\n  { {0x44260d3b, 0xb4cc0204, 0x03a6003b, 0x00000000}},  //   tyo_, लले_, видо,\n  { {0x32053b25, 0x07a600e2, 0x00000000, 0x00000000}},  //   _arly_, _јагн,   ,\n  { {0x4426006a, 0x04430077, 0x316600ca, 0x00000000}},  //   ryo_, шечн, _skoz_,\n  { {0x4426006a, 0xf74301fc, 0x39520006, 0x00000000}},  //   syo_, _теро, onys_,\n  { {0x63760181, 0x395200b0, 0x6d560009, 0x00000000}},  //   fânc, nnys_, _njya,\n  { {0xe80502fb, 0x60f7007e, 0x637600c4, 0x00000000}},  //   रिया_, тныя_, gânc,\n  { {0x7d0d3b26, 0x21ce006b, 0xbcfb009d, 0x00000000}},  //   _snas, _məhz_, hlét,\n  { {0x7d0d0022, 0xb87b00fa, 0x316d0068, 0x00000000}},  //   _pnas, _abíl, blez_,\n  { {0x7bdd00f8, 0x7bcf3b27, 0x00000000, 0x00000000}},  //   ttsu, tucu,   ,\n  { {0x60c20006, 0x10130014, 0x637600c4, 0x00000000}},  //   _idom, _نبود, cânc,\n  { {0x7bcf22d9, 0x7bdd1e17, 0x752004c4, 0x00000000}},  //   rucu, rtsu, _lomz,\n  { {0x27361e14, 0x7bdd010e, 0x7bcf00e5, 0x00000000}},  //   _mænd_, stsu, sucu,\n  { {0x7d0d0020, 0xdb060062, 0xb4cc0061, 0x00000000}},  //   _unas, mský, ललो_,\n  { {0xdb0601ca, 0x98750794, 0x02d20204, 0x00000000}},  // [d8d0] lský, улац, _सांभ,\n  { {0x6d440046, 0x00000000, 0x00000000, 0x00000000}},  //   _zmia,   ,   ,\n  { {0xdb0606b8, 0x60c214ba, 0x2baf01f5, 0x00000000}},  //   nský, _odom, जीरा,\n  { {0x60c2035e, 0xe7951125, 0x00000000, 0x00000000}},  //   _ndom, _ماسک,   ,\n  { {0x3949029d, 0xbcfb01cc, 0x752028e5, 0x00000000}},  //   mias_, llés, _domz,\n  { {0x39491325, 0x27f90387, 0x61351365, 0x00000000}},  //   lias_, _issn_, _mále,\n  { {0x21690373, 0x6145007c, 0x68fd0006, 0x00000000}},  //   ники_, лека, _kasd,\n  { {0x63760181, 0x68fd0022, 0x27f900d9, 0x00000000}},  //   tânc, _jasd, _kssn_,\n  { {0x5455005e, 0x68fd3b28, 0x1c07013d, 0x00000000}},  //   _сват, _masd, शिफल_,\n  { {0x39493b29, 0x637600c4, 0x60c20052, 0x00000000}},  //   hias_, rânc, _edom,\n  { {0x39490006, 0x2006237d, 0xd12e0123, 0x00000000}},  //   kias_, _eroi_, زمی_,\n  { {0x40940098, 0x3949004a, 0x00000000, 0x00000000}},  //   _кршт, jias_,   ,\n  { {0x39493b2a, 0xeb97046c, 0x81b50044, 0x00000000}},  //   dias_, лия_, _জমি_,\n  { {0x2d910181, 0x00000000, 0x00000000, 0x00000000}},  //   ízes_,   ,   ,\n  { {0x3949029d, 0xbcfb0129, 0x06b20044, 0x00000000}},  //   fias_, glés, _চালি,\n  { {0x3949029d, 0x81b50044, 0x2cb9012d, 0x00000000}},  //   gias_, _জমা_, casd_,\n  { {0x7d7b00a3, 0x68fd1b34, 0xa9d10044, 0x00000000}},  // [d8e0] _אנקו, _dasd, াবগঞ,\n  { {0x81ea0055, 0x66760014, 0x657b2a10, 0x00000000}},  //   মিত_, هدار, _ahuh,\n  { {0x394906d3, 0xf8bf00f4, 0x61350161, 0x00000000}},  //   bias_, _clés_, _zále,\n  { {0x39490df9, 0x7afe0065, 0x27e63b2b, 0x00000000}},  //   cias_, _hapt, çons_,\n  { {0xbef3001c, 0x7afe121b, 0x9cd7009b, 0x00000000}},  //   _असून_, _kapt, רונה_,\n  { {0x08fc0055, 0xf7460057, 0x2900022b, 0x00000000}},  //   _একটু_, _сего, ldia_,\n  { {0x27e0002b, 0x41e60025, 0x7afe0203, 0x00000000}},  //   ltin_, استف, _mapt,\n  { {0x2900022b, 0xd0100025, 0x7afe0a60, 0x00000000}},  //   ndia_, قلب_, _lapt,\n  { {0x29000020, 0x62870010, 0x2b4a00f6, 0x00000000}},  //   idia_, _újon, kibc_,\n  { {0x138a0054, 0x27e03b2c, 0xe805006e, 0x00000000}},  //   _أخرى_, itin_, रिता_,\n  { {0x22930025, 0x9f4f00f6, 0x27e028a2, 0x00000000}},  //   _المس, _argó_, htin_,\n  { {0x27e00065, 0xdb0626a6, 0x39491c9e, 0x00000000}},  //   ktin_, kskó, xias_,\n  { {0x7afe00f4, 0x39490489, 0xa2db0067, 0x00000000}},  //   _bapt, vias_, _नाम्,\n  { {0x6b96014a, 0x61350802, 0xdb0601dc, 0x00000000}},  //   _duyg, _vále, pský,\n  { {0x394900b0, 0x68e40197, 0x7afe0022, 0x00000000}},  //   tias_, ffid, _dapt,\n  { {0x27e00a89, 0x29000129, 0x06cc0044, 0x00000000}},  //   ftin_, gdia_, র্মি,\n  { {0x39490df9, 0x7afe000d, 0x68fd01d6, 0x00000000}},  // [d8f0] rias_, _fapt, _vasd,\n  { {0x3949010a, 0xaadc0061, 0x657b3b2d, 0x00000000}},  //   sias_, _बायक, _shuh,\n  { {0x39490489, 0x06cc0044, 0x00000000, 0x00000000}},  //   pias_, র্ভি,   ,\n  { {0xc56b0d0b, 0x7afe331a, 0x68e40051, 0x00000000}},  //   رحال_, _zapt, cfid,\n  { {0x27e01a86, 0x7afe011f, 0x78ad0bd5, 0x00000000}},  //   ctin_, _yapt, mbav,\n  { {0x06cc0044, 0x26c30022, 0x27360190, 0x00000000}},  //   র্বি, _udjo_, _pæne_,\n  { {0x657b3b2e, 0xe4a72337, 0x00000000, 0x00000000}},  //   _thuh, _брзо,   ,\n  { {0x657b0145, 0x00000000, 0x00000000, 0x00000000}},  //   _uhuh,   ,   ,\n  { {0x61fa01e2, 0x2f5502b8, 0x3f8e00e7, 0x00000000}},  //   _estl, итос, _bifu_,\n  { {0x80d70061, 0x69cb0089, 0x2fdf3b2f, 0x00000000}},  //   _यावे, _āgen, rtug_,\n  { {0xd2510355, 0x6135029d, 0x43840025, 0x00000000}},  //   _بنا_, _cálc, _اللق,\n  { {0xeb9a2672, 0xd0110054, 0x7afe000d, 0x00000000}},  //   ким_, _ولا_, _sapt,\n  { {0x98a00521, 0xed570121, 0x2d82016c, 0x00000000}},  //   lkić_, роя_, rmke_,\n  { {0x2d9500d7, 0x2fcd3b30, 0xa3e8013d, 0x00000000}},  //   _крис, mreg_, _बहस_,\n  { {0xc33200b6, 0x98a005fa, 0x20dc0061, 0x00000000}},  //   חום_, nkić_, _यामध,\n  { {0x27e0014a, 0x7afe3b31, 0xab5b01a2, 0x00000000}},  //   ttin_, _wapt, gsüb,\n  { {0x29000207, 0x7afe3b32, 0x2fcd01d6, 0x00000000}},  // [d900] rdia_, _tapt, nreg_,\n  { {0xdb06000c, 0x4a46007c, 0x68e40de2, 0x00000000}},  //   rskó, _внов, sfid,\n  { {0x27e0021e, 0xdb24007a, 0x98a00107, 0x00000000}},  //   stin_, _نوکی, jkić_,\n  { {0x27e02741, 0x84e601ff, 0x6abc01e5, 0x00000000}},  //   ptin_, родж, larf,\n  { {0xa803007e, 0x00000000, 0x00000000, 0x00000000}},  //   _дзял,   ,   ,\n  { {0x69ce02ae, 0x31c60242, 0x6abc000c, 0x00000000}},  //   orbe, асив, narf,\n  { {0xd24f00b8, 0xe297003b, 0x00000000, 0x00000000}},  //   ونه_, шај_,   ,\n  { {0xbcfb00b9, 0x6abc01a2, 0x3f8e0145, 0x00000000}},  //   jlép, harf, _sifu_,\n  { {0xd0e202f4, 0x2fcd0022, 0x03a300c0, 0x00000000}},  //   क्षण_, greg_, _мито,\n  { {0x80a602d2, 0x25750039, 0x6abc000c, 0x00000000}},  //   _ट्रे, håll_, jarf,\n  { {0x06970452, 0x6abc04f2, 0x2fcd0253, 0x00000000}},  //   ידים_, darf, areg_,\n  { {0x61350802, 0x00000000, 0x00000000, 0x00000000}},  //   _válc,   ,   ,\n  { {0x6abc018e, 0x69ce3b33, 0x00000000, 0x00000000}},  //   farf, erbe,   ,\n  { {0xa3ab0061, 0x6d5d009d, 0x98a9050f, 0x00000000}},  //   कीट_, érab, rkač_,\n  { {0xff7b0049, 0x98a90087, 0xc178007f, 0x00000000}},  //   _שטומ, skač_, _upės_,\n  { {0x3ce9016c, 0x2d5204eb, 0x636d0048, 0x00000000}},  //   _ubav_, všeg_, lúnt,\n  { {0x58870783, 0xdb0400c4, 0x69ce010f, 0x00000000}},  // [d910] рыва, _aviõ, arbe,\n  { {0x61353b34, 0x399c03df, 0x6abc0203, 0x00000000}},  //   _mála, _fís_, carf,\n  { {0xd00606c6, 0x04950025, 0x00000000, 0x00000000}},  //   _کل_, ملاح,   ,\n  { {0x69d500d2, 0x7af50232, 0x00000000, 0x00000000}},  //   muze, lezt,   ,\n  { {0xfc3f00b9, 0x613513ae, 0x69d5002d, 0x00000000}},  //   nzí_, _nála, luze,\n  { {0xf36701fc, 0x7af515ea, 0x00000000, 0x00000000}},  //   штен, nezt,   ,\n  { {0x236731e1, 0x27f50276, 0x00000000, 0x00000000}},  //   ronj_, şanı_,   ,\n  { {0x06cc0044, 0x2fcd001a, 0x257c0048, 0x00000000}},  //   র্দি, treg_, tíle_,\n  { {0xdee508f3, 0x7af50010, 0xc2eb0025, 0x00000000}},  //   бопи, kezt, _لعام_,\n  { {0x41e705b8, 0x2fcd1194, 0x636d008e, 0x00000000}},  //   _віда, rreg_, gúnt,\n  { {0x4d6602dc, 0x7af50e0c, 0x2fcd01d6, 0x00000000}},  //   йков, dezt, sreg_,\n  { {0x69d50091, 0xee360259, 0x40950025, 0x00000000}},  //   duze, сню_, _الإر,\n  { {0x6abc000c, 0x30850025, 0x00000000, 0x00000000}},  //   tarf, _الشف,   ,\n  { {0xfaa300ed, 0x69d52997, 0x7af53a22, 0x00000000}},  //   заро, fuze, gezt,\n  { {0x8e3a00a1, 0xbb4304dd, 0x69ce00bb, 0x00000000}},  //   _مسٹر_, черк, urbe,\n  { {0x3a250039, 0x69ce11f0, 0xab5b01a2, 0x00000000}},  //   älpa_, rrbe, früs,\n  { {0xc6960025, 0x6abc205b, 0x79843b35, 0x00000000}},  // [d920] مشاع, parf, rmiw,\n  { {0xf7720025, 0x69d50704, 0xdb1d009d, 0x00000000}},  //   ساء_, buze, yssé,\n  { {0x31950089, 0xd0f90309, 0xa50a026b, 0x00000000}},  //   _kāzu_, ्याण_, лежа_,\n  { {0xd91000d3, 0x5a1700b3, 0x93aa0025, 0x00000000}},  //   _تیر_, _הקטן_, هاتف_,\n  { {0x2d9200e7, 0xe5050025, 0x68f6349d, 0x00000000}},  //   _miye_, تبلي, meyd,\n  { {0xf6d501fb, 0x2902011c, 0x2d920173, 0x00000000}},  //   _міся, _haka_, _liye_,\n  { {0x29020244, 0xdb1d009d, 0x1a9b0049, 0x00000000}},  //   _kaka_, ussé, ניקע,\n  { {0x29020036, 0xf99300b3, 0x2d92005a, 0x00000000}},  //   _jaka_, הרה_, _niye_,\n  { {0x3d1c001c, 0x7454026c, 0x29020149, 0x00000000}},  //   याने_, _بھائ, _maka_,\n  { {0x61351bc0, 0x539b0097, 0x11d601ff, 0x00000000}},  //   _vála, _עיבו, _гідр,\n  { {0x2d980007, 0x6146007c, 0x68f602d1, 0x00000000}},  //   êre_, _лежа, keyd,\n  { {0xd7fe00ad, 0x2902006a, 0xd6de0055, 0x00000000}},  //   _đăng_, _naka_, ড়িয,\n  { {0x2d92011f, 0x71650025, 0x7af515ea, 0x00000000}},  //   _diye_, _بالك, tezt,\n  { {0x69d50107, 0x637f0181, 0x613c0d4e, 0x00000000}},  //   tuze, cênd, _bélg,\n  { {0x29022de7, 0xd6de0044, 0x68f60016, 0x00000000}},  //   _baka_, ড়ায, feyd,\n  { {0x69d5003b, 0x4975008b, 0x3ebe0da6, 0x00000000}},  //   ruze, ілас, latt_,\n  { {0x6d4f1e91, 0x290700b9, 0x981700a1, 0x00000000}},  // [d930] mica, ěna_, حبزا,\n  { {0xec3800b6, 0x06cc0044, 0x613c3b36, 0x00000000}},  //   _לאחר_, র্সি, _héld,\n  { {0x2126309b, 0xa3db0061, 0xab5b010f, 0x00000000}},  //   _oooh_, ढून_, srüs,\n  { {0x68f6343e, 0x2902000a, 0x3ebe0203, 0x00000000}},  //   ceyd, _gaka_, hatt_,\n  { {0x3ebe00f8, 0x320c0aa3, 0x5ed00044, 0x00000000}},  //   katt_, _ardy_, ত্যে,\n  { {0x55bb0014, 0x85bb0380, 0xdcb6007d, 0x00000000}},  //   _مطرح_, _مارس_, _अज्ञ,\n  { {0x6d4f19e4, 0x7aea010f, 0x613501dc, 0x00000000}},  //   kica, _öfte, _dáln,\n  { {0x212602d4, 0x81ea0044, 0x6d4f199a, 0x00000000}},  //   _cooh_, মিং_, jica,\n  { {0x200b0428, 0x320c0058, 0x3f990082, 0x00000000}},  //   íci_, _erdy_, êsu_,\n  { {0x63a90181, 0x2d92065e, 0x656b0207, 0x00000000}},  //   _iten, _siye_, logh,\n  { {0x2d923b37, 0x637f00c4, 0x442f3b38, 0x00000000}},  //   _piye_, gêne, lyg_,\n  { {0x6d4f0e3e, 0xdb060039, 0x656b140b, 0x00000000}},  //   gica, nskö, nogh,\n  { {0x3ebe05ad, 0xae1701ef, 0x2cad008e, 0x00000000}},  //   batt_, _گذشت, ñeda_,\n  { {0x3b0a0057, 0x29020225, 0x6d4f0211, 0x00000000}},  //   шего_, _saka_, ébar,\n  { {0x6d4f12cb, 0x290201aa, 0x68f6021e, 0x00000000}},  //   bica, _paka_, teyd,\n  { {0x6f0304cb, 0x6d4f00c4, 0x25be000c, 0x00000000}},  //   _hanc, cica, _ætli_,\n  { {0x6f03004f, 0x574a0888, 0x394b01ee, 0x00000000}},  // [d940] _kanc, азам_, _dmcs_,\n  { {0x6f0301d6, 0x442f1938, 0x68f63b39, 0x00000000}},  //   _janc, dyg_, seyd,\n  { {0x6f0308ed, 0x2902009f, 0x3ce10061, 0x00000000}},  //   _manc, _taka_, _कामे_,\n  { {0x186a0077, 0x7d04002d, 0xd6b20044, 0x00000000}},  //   _вами_, _jais, _চাওয,\n  { {0x7d0418dc, 0x69c10802, 0x06cc0044, 0x00000000}},  //   _mais, šlet, র্ষি,\n  { {0x7d043b3a, 0x6d4f001a, 0xf1a60407, 0x00000000}},  //   _lais, zica, орин,\n  { {0x63a90315, 0x613c0092, 0xd13a007c, 0x00000000}},  //   _eten, _léle, ихи_,\n  { {0x7d040ac2, 0x442f018e, 0x6d4f0781, 0x00000000}},  //   _nais, byg_, xica,\n  { {0x3ebe0056, 0x00000000, 0x00000000, 0x00000000}},  //   tatt_,   ,   ,\n  { {0x6d4f1fad, 0x7d16175e, 0x212600e0, 0x00000000}},  //   wica, _anys, _wooh_,\n  { {0x7d043b3b, 0x3ebe0aca, 0x613c0047, 0x00000000}},  //   _bais, ratt_, _péld,\n  { {0x7d041321, 0x3ebe01c9, 0x78a4012d, 0x00000000}},  //   _cais, satt_, jciv,\n  { {0xe133008b, 0x64420173, 0x613c0249, 0x00000000}},  //   _іншы, nzoi, _céle,\n  { {0x6d4f0df9, 0x60c001a3, 0x613c3b3c, 0x00000000}},  //   sica, lamm, _déle,\n  { {0x7d043b3d, 0xd90f007a, 0x9e6601ef, 0x00000000}},  //   _fais, نید_, _باشن,\n  { {0x7d04001e, 0x6f030197, 0x60c00883, 0x00000000}},  //   _gais, _zanc, namm,\n  { {0x637f00c4, 0x6d4d00e7, 0x00000000, 0x00000000}},  // [d950] nênc, _imaa,   ,\n  { {0x7d04016c, 0x1bf4007e, 0x6f0300f6, 0x00000000}},  //   _zais, _ўпэў, _xanc,\n  { {0x2d9c16b3, 0x442f0b04, 0x7d160016, 0x00000000}},  //   _juve_, wyg_, _ynys,\n  { {0x2fc60119, 0x442f0073, 0x2d9c1aa8, 0x00000000}},  //   _ovog_, tyg_, _muve_,\n  { {0x1835007b, 0x656b0420, 0xdb063b3e, 0x00000000}},  //   _זאָל_, rogh, rskö,\n  { {0x637f02d5, 0x442f3b3f, 0x2d9c0154, 0x00000000}},  //   dênc, ryg_, _ouve_,\n  { {0x6d4d0103, 0x26c100e0, 0x6f030a6b, 0x00000000}},  //   _omaa, maho_, _ranc,\n  { {0x60c00232, 0x61350010, 0xda5c009b, 0x00000000}},  //   gamm, _válo, יכול,\n  { {0x63a913f0, 0x753b037e, 0x6f0304cb, 0x00000000}},  //   _uten, _iluz, _panc,\n  { {0x7d0433fd, 0x26c123fe, 0x6d4d0101, 0x00000000}},  //   _sais, naho_, _amaa,\n  { {0xc332012f, 0x613c028c, 0x1d0a10d8, 0x00000000}},  //   _רוב_, _séle, бени_,\n  { {0x78bd1322, 0xed5a0b9d, 0xc1040025, 0x00000000}},  //   _nesv, сом_, _يولي,\n  { {0x7d04010a, 0x6f0304bd, 0x637f00c4, 0x00000000}},  //   _vais, _tanc, cênc,\n  { {0x613c0047, 0x200f010a, 0x68ef0b33, 0x00000000}},  //   _véle, _irgi_, _abcd,\n  { {0x7d043b40, 0x78bd04d7, 0xd356009b, 0x00000000}},  //   _tais, _besv, לישי_,\n  { {0x613c1152, 0x3f9d0022, 0x7d040048, 0x00000000}},  //   _téle, _kuwu_, _uais,\n  { {0x78bd0030, 0xeaaf00a1, 0xaa8a0167, 0x00000000}},  // [d960] _desv, ئٹہ_, _گندم_,\n  { {0x869a00ed, 0x753b016c, 0x78a40197, 0x00000000}},  //   стат_, _aluz, sciv,\n  { {0x1a9b0476, 0x4a9b007b, 0x7bc60030, 0x00000000}},  //   _לייע, _לייג, lsku,\n  { {0x6376000d, 0xdb0d009f, 0xdbf2013e, 0x00000000}},  //   mâni, _hvað, hřív,\n  { {0x26c1006a, 0x61350047, 0x7bc6000c, 0x00000000}},  //   baho_, _váll, nsku,\n  { {0x637f0181, 0x7bc61081, 0xf4870167, 0x00000000}},  //   vênc, isku, سانی,\n  { {0x2fc60119, 0x60c000f4, 0xa50a005e, 0x00000000}},  //   _svog_, tamm, _лева_,\n  { {0xd1300054, 0x637f0181, 0x7bc601b6, 0x00000000}},  //   ئمة_, tênc, ksku,\n  { {0x60c005b7, 0x2d9c006c, 0xd00700e2, 0x00000000}},  //   ramm, _suve_, зење_,\n  { {0x60c0051d, 0x637f02d5, 0x6d4d3b41, 0x00000000}},  //   samm, rênc, _smaa,\n  { {0x637f0181, 0xbfa50011, 0x2cad004a, 0x00000000}},  //   sênc, _hiệ, ñedo_,\n  { {0x26c10009, 0xc27b00a3, 0x2fc60091, 0x00000000}},  //   zaho_, _פראי, _tvog_,\n  { {0x78bd00f8, 0xdfcf0025, 0x00000000, 0x00000000}},  //   _resv, _مين_,   ,\n  { {0x2d9c0211, 0x6ffb009b, 0x78bd016e, 0x00000000}},  //   _tuve_, _להדפ, _sesv,\n  { {0x26c10009, 0x63760181, 0xde570088, 0x00000000}},  //   vaho_, gâni, _наші_,\n  { {0x6d4d11b3, 0x39400051, 0xdff3006e, 0x00000000}},  //   _umaa, ghis_, _अहमद_,\n  { {0xb9050201, 0x26c10922, 0x98750a94, 0x00000000}},  // [d970] _ना_, taho_, флац,\n  { {0x753b041a, 0x6fcf0061, 0x6abe010f, 0x00000000}},  //   _sluz, _दिसू, _gepf,\n  { {0x26c10061, 0x63760181, 0x6d5d0051, 0x00000000}},  //   raho_, câni, onsa,\n  { {0x6d5d000c, 0x3940001a, 0xdced0521, 0x00000000}},  //   nnsa, chis_, _okač,\n  { {0x2919000d, 0x2d520059, 0xdfc60426, 0x00000000}},  //   _insa_, kšen_, _جي_,\n  { {0x27e90058, 0x68ed3b42, 0xe3b001fa, 0x00000000}},  //   mtan_, lfad, ارن_,\n  { {0x2eec0009, 0x752900b5, 0x69c70056, 0x00000000}},  //   dfdf_, _toez, nsje,\n  { {0x5694005c, 0x29090020, 0x7bc600b0, 0x00000000}},  //   _част, ndaa_, ysku,\n  { {0x27e93b43, 0x69d5001f, 0x60060147, 0x00000000}},  //   ntan_, hrze, дным_,\n  { {0x02a7003b, 0x333900d3, 0x27e91611, 0x00000000}},  //   _храм, _بزرگ_, itan_,\n  { {0x69d50036, 0xbae30044, 0x69c71869, 0x00000000}},  //   jrze, য়াছ, jsje,\n  { {0x69c73b44, 0x27e93335, 0x62810091, 0x00000000}},  //   dsje, ktan_, _izlo,\n  { {0x68ed002a, 0x7bc600f2, 0x20030089, 0x00000000}},  //   dfad, usku, ājis_,\n  { {0x7bc60286, 0x9f8401fb, 0x29193b45, 0x00000000}},  //   rsku, _згід, _ansa_,\n  { {0xfc3f1024, 0x27e9022b, 0x68ed00f8, 0x00000000}},  //   rcía_, etan_, ffad,\n  { {0x637600c4, 0x27e9014a, 0xdb1d006c, 0x00000000}},  //   râni, ftan_, dusõ,\n  { {0xb87b00b9, 0x27e90b5a, 0x69d52eef, 0x00000000}},  // [d980] _sbír, gtan_, arze,\n  { {0x613c00f4, 0x62810107, 0x3d1c0061, 0x00000000}},  //   _méla, _ozlo, यावे_,\n  { {0x7afc0010, 0xd94600d7, 0x27e90149, 0x00000000}},  //   mert, _жени, atan_,\n  { {0x69dc001a, 0x7afc133a, 0x61353b46, 0x00000000}},  //   mure, lert, _dálk,\n  { {0x0edd0183, 0x27e933eb, 0x03a30077, 0x00000000}},  //   _मांड, ctan_, вичо,\n  { {0x7afc0056, 0xbfa50011, 0x00000000, 0x00000000}},  //   nert, _việ,   ,\n  { {0xdced016e, 0x6d5d000c, 0x628100b4, 0x00000000}},  //   _skač, ynsa, _czlo,\n  { {0xab5b006b, 0x613c0ee5, 0xbfa50082, 0x00000000}},  //   vsüm, _béla, _tiệ,\n  { {0xbcfb028c, 0x69dc00bb, 0x6d5d3b47, 0x00000000}},  //   nnée, hure, éram,\n  { {0x613c00f4, 0x69dc0f77, 0x3ce101f5, 0x00000000}},  //   _déla, kure, _काहे_,\n  { {0x68ed014a, 0x27e90032, 0x69dc0aa4, 0x00000000}},  //   yfad, ztan_, jure,\n  { {0x613c009f, 0x69dc29e7, 0x27e90890, 0x00000000}},  //   _féla, dure, ytan_,\n  { {0x7afc0198, 0x2d520521, 0x6d5d0332, 0x00000000}},  //   fert, pšen_, rnsa,\n  { {0x69d50046, 0xc4c4026c, 0x7afc002d, 0x00000000}},  //   trze, _ھے_, gert,\n  { {0x69dc3b48, 0xda7801e0, 0x613c0253, 0x00000000}},  //   gure, дят_, _zéla,\n  { {0x69c700ea, 0x63760035, 0x00000000, 0x00000000}},  //   rsje, mânu,   ,\n  { {0x69c73b49, 0xbcfb009d, 0x27e90173, 0x00000000}},  // [d990] ssje, gnée, utan_,\n  { {0x27e9022b, 0x69d50046, 0x7bdd006a, 0x00000000}},  //   rtan_, prze, musu,\n  { {0x27e93b4a, 0x7bdd006a, 0x69dc3b4b, 0x00000000}},  //   stan_, lusu, cure,\n  { {0x27e9014a, 0x2919011c, 0x613501dc, 0x00000000}},  //   ptan_, _unsa_, _válk,\n  { {0x7bdd3335, 0x9f9a021e, 0x62810010, 0x00000000}},  //   nusu, nään_, _szlo,\n  { {0x63a0000d, 0xc2c50025, 0x61ea0332, 0x00000000}},  //   _dumn, ريبي, ftfl,\n  { {0xe1f100a6, 0xa4d501fb, 0xe29606e3, 0x00000000}},  //   است_, _пові, наш_,\n  { {0x7afc002d, 0x9f9a021e, 0x7bdd0453, 0x00000000}},  //   zert, kään_, kusu,\n  { {0x7ae53b4c, 0x69dc01a2, 0x7afc3b4d, 0x00000000}},  //   _ocht, zure, yert,\n  { {0x6135009f, 0x7bdd1aba, 0x200d3553, 0x00000000}},  //   _máli, dusu, rvei_,\n  { {0x7afc0f12, 0x06cc0055, 0x06d50055, 0x00000000}},  //   vert, র্কি, স্থি,\n  { {0x7afc001f, 0x7ae502ae, 0xc0e90014, 0x00000000}},  //   wert, _acht, _رفتن_,\n  { {0x7afc1ddc, 0x7bdd104e, 0xfc3f0048, 0x00000000}},  //   tert, gusu, scín_,\n  { {0x06d50044, 0x7afc01a2, 0xdbd2006c, 0x00000000}},  //   স্তি, uert, müüj,\n  { {0x637603c7, 0x7afc3120, 0x2cab0051, 0x00000000}},  //   mânt, rert, éidí_,\n  { {0x7ae50db5, 0x69dc15a9, 0x63760181, 0x00000000}},  //   _echt, rure, lânt,\n  { {0x7afc020c, 0x69dc028a, 0x613500dc, 0x00000000}},  // [d9a0] pert, sure, _cáli,\n  { {0xe205001d, 0x386601d5, 0x69dc0778, 0x00000000}},  //   _đóng_, ħor_, pure,\n  { {0x63a00091, 0x1f360097, 0x3d150061, 0x00000000}},  //   _sumn, ערער_, धाचे_,\n  { {0x80be03d7, 0x63a00035, 0x89360025, 0x00000000}},  //   _एजें, _pumn, _أعدا,\n  { {0x289b0104, 0x2d520059, 0x00000000, 0x00000000}},  //   _מיכא, jšem_,   ,\n  { {0xae1f0164, 0x61ea2058, 0x98a900b4, 0x00000000}},  //   यमान_, ttfl, tkać_,\n  { {0x3ce1013d, 0x61350062, 0x7bdd1a6f, 0x00000000}},  //   _काले_, _záli, zusu,\n  { {0x61ea0239, 0x2d52013e, 0x7bdd0276, 0x00000000}},  //   rtfl, ušel_, yusu,\n  { {0x98a900b4, 0x00000000, 0x00000000, 0x00000000}},  //   skać_,   ,   ,\n  { {0x798d0036, 0x9f9a00b0, 0x3f9801e5, 0x00000000}},  //   zmaw, vään_, öru_,\n  { {0xb1e50025, 0x00000000, 0x00000000, 0x00000000}},  //   _لأنه,   ,   ,\n  { {0x9f9a021e, 0x3ce10061, 0x8fa6007c, 0x00000000}},  //   tään_, _काळे_, _заде,\n  { {0x3c46009d, 0x00000000, 0x00000000, 0x00000000}},  //   _rêvé_,   ,   ,\n  { {0xf8b80011, 0x7bdd014a, 0x63761290, 0x00000000}},  //   _đĩa_, rusu, cânt,\n  { {0x0a6801e0, 0x7bdd011c, 0x798d0093, 0x00000000}},  //   ерти_, susu, tmaw,\n  { {0x9f9a021e, 0x999800ed, 0x613510fa, 0x00000000}},  //   sään_, екст_, _páli,\n  { {0x798d0093, 0x671c0309, 0xa775003b, 0x00000000}},  // [d9b0] rmaw, नांक_, влач,\n  { {0x61353b4e, 0x65c70047, 0x368b00ed, 0x00000000}},  //   _váli, _néhá, псен_,\n  { {0x78a206b8, 0xb6060089, 0x2d520142, 0x00000000}},  //   žova, jušā, dšej_,\n  { {0x60c200b9, 0xa4d50088, 0xb4cb0061, 0x00000000}},  //   _neom, тоді, लणे_,\n  { {0x290b00e5, 0x00000000, 0x00000000, 0x00000000}},  //   _iaca_,   ,   ,\n  { {0x69da008e, 0xd78900a1, 0x6ad30044, 0x00000000}},  //   áteg, _آنسو_, দ্রো,\n  { {0x290b0169, 0x6376001a, 0x6135000c, 0x00000000}},  //   _kaca_, vânt, _málv,\n  { {0x613c009d, 0x26c300d9, 0x290b04eb, 0x00000000}},  //   _délo, _hejo_, _jaca_,\n  { {0x33f40a4f, 0x290b0c56, 0x60c200e0, 0x00000000}},  //   _مسلس, _maca_, _deom,\n  { {0xee39012b, 0x2cb91962, 0xddd80006, 0x00000000}},  //   дно_, ebsd_, _gyvū,\n  { {0x0d86013b, 0x26c300ca, 0x7bcd00b0, 0x00000000}},  //   клон, _mejo_, _avau,\n  { {0xd14b0025, 0x70520167, 0xc0cb007c, 0x00000000}},  //   _عشان_, انیا, _хуже_,\n  { {0x06cc0044, 0x27f90093, 0x00000000, 0x00000000}},  //   র্টি, _npsn_,   ,\n  { {0xeb970265, 0xbea202dc, 0xfc0302ea, 0x00000000}},  //   кия_, _кашк, јпро,\n  { {0x290b04cb, 0x2d5200ca, 0x672e00f6, 0x00000000}},  //   _baca_, nšek_, _robj,\n  { {0x23650087, 0x00000000, 0x00000000, 0x00000000}},  //   _ljlj_,   ,   ,\n  { {0x290b000d, 0x672e0182, 0x26c30093, 0x00000000}},  // [d9c0] _daca_, _pobj, _bejo_,\n  { {0x5fd40061, 0x6fd4013d, 0x249f3b4f, 0x00000000}},  //   _दिसल, _दिसं, _agum_,\n  { {0xe7fe02d2, 0x26c31de3, 0x290b001a, 0x00000000}},  //   _उनका_, _dejo_, _faca_,\n  { {0x6d460082, 0x00000000, 0x00000000, 0x00000000}},  //   nhka,   ,   ,\n  { {0x29001138, 0x6d5d00f4, 0x5ed90044, 0x00000000}},  //   meia_, érai, ব্যে,\n  { {0x60c2002a, 0x29002888, 0x6135000c, 0x00000000}},  //   _seom, leia_, _málu,\n  { {0x4420000d, 0x5fd40061, 0x27e03b50, 0x00000000}},  //   ţi_, _दिहल, luin_,\n  { {0x68e4224a, 0x29001052, 0x613c009d, 0x00000000}},  //   ngid, neia_, _vélo,\n  { {0x53a60265, 0x60c2037e, 0xc953019b, 0x00000000}},  //   _разб, _veom, ימה_,\n  { {0x777e0009, 0x290000c4, 0x63760035, 0x00000000}},  //   nlpx, heia_, râns,\n  { {0x212f0030, 0x27e01ea7, 0xceb80a55, 0x00000000}},  //   _fogh_, huin_, rbę_,\n  { {0x09b10044, 0x27e00315, 0x61350b33, 0x00000000}},  //   _ছিলা, kuin_, _sálv,\n  { {0x442600d4, 0x29000181, 0x2ca00009, 0x00000000}},  //   nxo_, deia_, _dgid_,\n  { {0x44263b51, 0x290b008e, 0x27e00052, 0x00000000}},  //   ixo_, _saca_, duin_,\n  { {0x4f9b00b6, 0x39a40098, 0x61350b33, 0x00000000}},  //   _קבוצ, иштв, _válv,\n  { {0x6d8700a1, 0x290000c4, 0x68e40026, 0x00000000}},  //   _جمعہ_, geia_, ggid,\n  { {0x27e004bd, 0x4815008b, 0x656200b9, 0x00000000}},  // [d9d0] guin_, ымас, dnoh,\n  { {0x7d0d00b0, 0x4ab7007d, 0xa6cc0044, 0x00000000}},  //   _haas, _अभिव, র্ঘট,\n  { {0x7d0d0cfc, 0x26c33012, 0x290b0048, 0x00000000}},  //   _kaas, _vejo_, _taca_,\n  { {0x2d520059, 0xb33c01f3, 0x27e000e0, 0x00000000}},  //   všek_, _jiħf, buin_,\n  { {0x7d0d003c, 0x286b00ec, 0x61353b52, 0x00000000}},  //   _maas, _црно_, _mált,\n  { {0x7d0d0343, 0x78ad111b, 0x00000000, 0x00000000}},  //   _laas, lcav,   ,\n  { {0x799d000b, 0x51f50025, 0x00000000, 0x00000000}},  //   _kisw, استر,   ,\n  { {0x7d0d0cf0, 0x78ad0065, 0x60090407, 0x00000000}},  //   _naas, ncav, еним_,\n  { {0x3494003b, 0x799d1b87, 0x00000000, 0x00000000}},  //   _ватр, _misw,   ,\n  { {0x257c01ca, 0x48160049, 0x5f4503ab, 0x00000000}},  //   víli_, אַטן_, اندل,\n  { {0x2ca00009, 0x7d0d017d, 0x3f9c2169, 0x00000000}},  //   _pgid_, _baas, _divu_,\n  { {0x799d000a, 0x6d463b53, 0x10150d3a, 0x00000000}},  //   _nisw, uhka, _مبتد,\n  { {0x29000ddb, 0xbad6007e, 0x60c9010e, 0x00000000}},  //   veia_, лівы, maem,\n  { {0x6d460065, 0x60c908a8, 0xa03a0049, 0x00000000}},  //   shka, laem, _רעספ,\n  { {0x29001290, 0x61350048, 0x39420145, 0x00000000}},  //   teia_, _fált, _plks_,\n  { {0x7d0d006c, 0x27e02e23, 0x60c9006c, 0x00000000}},  //   _gaas, tuin_, naem,\n  { {0x6d560061, 0x6d440020, 0x29000bc0, 0x00000000}},  // [d9e0] _imya, _ilia, reia_,\n  { {0x613c0010, 0x27e0067c, 0x68e4046a, 0x00000000}},  //   _célj, ruin_, sgid,\n  { {0x290000c4, 0x6d443b54, 0x27e001d6, 0x00000000}},  //   peia_, _klia, suin_,\n  { {0x442605b3, 0x6135000c, 0x25b70014, 0x00000000}},  //   txo_, _máls, اهند_,\n  { {0x27e000f4, 0x6f010023, 0x00000000, 0x00000000}},  //   quin_, kelc,   ,\n  { {0x442600d4, 0x6f01016e, 0x69dc0288, 0x00000000}},  //   rxo_, jelc, orre,\n  { {0x6d440006, 0x00000000, 0x00000000, 0x00000000}},  //   _olia,   ,   ,\n  { {0x3d0e0754, 0x3f9c021e, 0x69ce0270, 0x00000000}},  //   ियों_, _sivu_, isbe,\n  { {0x3f9c016e, 0x7d0d01b1, 0xddcf085c, 0x00000000}},  //   _pivu_, _raas, _češn,\n  { {0x6d4400e4, 0x4376005e, 0x69ce0030, 0x00000000}},  //   _alia, _субт, ksbe,\n  { {0x6d44002a, 0x3f82001e, 0x7d0d0128, 0x00000000}},  //   _blia, ēku_, _paas,\n  { {0x6d44002a, 0x62880089, 0x69ce00eb, 0x00000000}},  //   _clia, _izdo, dsbe,\n  { {0x61350047, 0x69dc0032, 0x7d0d00b0, 0x00000000}},  //   _vált, erre, _vaas,\n  { {0x799d0390, 0x6d440181, 0x7d0d0020, 0x00000000}},  //   _sisw, _elia, _waas,\n  { {0x7d0d06ad, 0x69ce0240, 0x613c0047, 0x00000000}},  //   _taas, gsbe, _nélk,\n  { {0xeab0026c, 0x78ad0107, 0x00000000, 0x00000000}},  //   قعہ_, ucav,   ,\n  { {0xd6db0265, 0x78ad16b3, 0x799d0066, 0x00000000}},  // [d9f0] ете_, rcav, _visw,\n  { {0x78ad00c4, 0x62880ce2, 0x69da013e, 0x00000000}},  //   scav, _ozdo, átec,\n  { {0x799d002b, 0x00000000, 0x00000000, 0x00000000}},  //   _tisw,   ,   ,\n  { {0xf8b106c6, 0x613c3b55, 0x637f00c4, 0x00000000}},  //   _ذکر_, _délk, mêni,\n  { {0xd0061298, 0x7bcf008e, 0x27360030, 0x00000000}},  //   _بل_, nscu, _pænt_,\n  { {0x39490181, 0x973204e1, 0x2fcd0107, 0x00000000}},  //   lhas_, _وکلا, vseg_,\n  { {0xe12508f3, 0x6f01013f, 0x2002014a, 0x00000000}},  //   имки, velc, çkin_,\n  { {0x394902d5, 0xb4f9007b, 0x6f01010f, 0x00000000}},  //   nhas_, _שפּי, welc,\n  { {0x60c9023a, 0xbcfb0010, 0x00000000, 0x00000000}},  //   raem, tnén,   ,\n  { {0xff5101f7, 0x7777002b, 0x69dc0f03, 0x00000000}},  //   تخب_, noxx, yrre,\n  { {0x23ab0030, 0x6d442005, 0x2fcd3b56, 0x00000000}},  //   _høj_, _plia, sseg_,\n  { {0xed5a0086, 0x2fcd016c, 0x8d56007c, 0x00000000}},  //   том_, pseg_, рточ,\n  { {0x65690209, 0x212d0243, 0x913a0049, 0x00000000}},  //   _mjeh, mjeh_, _שענק,\n  { {0x2ee5001c, 0x69ce010f, 0x7c22002b, 0x00000000}},  //   qglf_, tsbe, _ġord,\n  { {0x61e3027d, 0x7e79007b, 0x395600ed, 0x00000000}},  //   nunl, _באַז, ањат,\n  { {0x98a301e0, 0x6d5d028c, 0x69ce00b5, 0x00000000}},  //   жите, érat, rsbe,\n  { {0x69ce01a2, 0xf99f01d6, 0x37a8009e, 0x00000000}},  // [da00] ssbe, _diè_, ائری_,\n  { {0x61e3006b, 0xe6c50025, 0x69ce00bb, 0x00000000}},  //   kunl, متمي, psbe,\n  { {0xaadb00b3, 0x39490051, 0x00000000, 0x00000000}},  //   _בחיר, bhas_,   ,\n  { {0x39493b57, 0x23ab0146, 0x00000000, 0x00000000}},  //   chas_, _bøj_,   ,\n  { {0xb6a60088, 0xe3af01d8, 0x212d01ed, 0x00000000}},  //   _вигл, ورو_, djeh_,\n  { {0x68f60016, 0x39400a0e, 0x657b0087, 0x00000000}},  //   lfyd, lkis_, _ekuh,\n  { {0x613c09af, 0x61e3014a, 0x66840014, 0x00000000}},  //   _héli, gunl, _ایال,\n  { {0x23ab0030, 0x394012ca, 0x29120022, 0x00000000}},  //   _føj_, nkis_, ndya_,\n  { {0xa2e600a8, 0x27f2018e, 0x29370049, 0x00000000}},  //   _возд, ntyn_, שאפן_,\n  { {0x613c009d, 0x00000000, 0x00000000, 0x00000000}},  //   _méli,   ,   ,\n  { {0x62883b58, 0x394001c2, 0x3e6100e5, 0x00000000}},  //   _uzdo, kkis_, _cγt_,\n  { {0x637f00fa, 0x00000000, 0x00000000, 0x00000000}},  //   vêni,   ,   ,\n  { {0xed58007e, 0x2d850089, 0x3940012d, 0x00000000}},  //   роў_, ēle_, dkis_,\n  { {0x7bcf0146, 0x00000000, 0x00000000, 0x00000000}},  //   rscu,   ,   ,\n  { {0x98c7012d, 0x39491218, 0xf99f15e1, 0x00000000}},  //   исал, thas_, _piè_,\n  { {0x613c038e, 0x2d68016c, 0x7c220089, 0x00000000}},  //   _béli, nđel_, _šore,\n  { {0x6d5d12ea, 0xf093007b, 0x613c1184, 0x00000000}},  // [da10] misa, ַנע_, _céli,\n  { {0x6d5d1ec1, 0x613c00f4, 0xf7700137, 0x00000000}},  //   lisa, _déli, وال_,\n  { {0x3d1c001c, 0xab5b006c, 0x2d520059, 0x00000000}},  //   याचे_, ssüs, ršev_,\n  { {0x613c2b25, 0x39400ba5, 0x00000000, 0x00000000}},  //   _féli, ckis_,   ,\n  { {0x3959008e, 0xdb23000c, 0x270f0044, 0x00000000}},  //   _imss_, _þróa, সাবো_,\n  { {0xdb04002a, 0xfbb800b6, 0xd7f8007e, 0x00000000}},  //   _stiú, ספות_, _тую_,\n  { {0x3ce8001c, 0xdb040211, 0x45d40256, 0x00000000}},  //   _झाले_, _quié, _морс,\n  { {0x61e3011f, 0x6b4b0010, 0x23ab0030, 0x00000000}},  //   runl, _függ, _tøj_,\n  { {0x61e30890, 0x6d5d0213, 0x6735199a, 0x00000000}},  //   sunl, disa, _kozj,\n  { {0x98a9012d, 0x43850025, 0x61e300e0, 0x00000000}},  //   djač_, _الطق, punl,\n  { {0x63a90020, 0x6d5d0020, 0x212d0243, 0x00000000}},  //   _huen, fisa, pjeh_,\n  { {0x63a9000b, 0x6d5d0058, 0x200b0030, 0x00000000}},  //   _kuen, gisa, æcis_,\n  { {0x814c00bd, 0x51740054, 0x41740025, 0x00000000}},  //   _בעאַ, _بالأ, _بالس,\n  { {0x7fb400e9, 0x63a90d65, 0x6d5d009d, 0x00000000}},  //   _بلوچ, _muen, érar,\n  { {0x6d5d0760, 0x39403b59, 0x63a900b0, 0x00000000}},  //   bisa, tkis_, _luen,\n  { {0x6d5d0181, 0x63a90007, 0x62810082, 0x00000000}},  //   cisa, _ouen, _mylo,\n  { {0x7d0600b0, 0x3940006c, 0x63a90032, 0x00000000}},  // [da20] meks, rkis_, _nuen,\n  { {0x7d060149, 0xdb0e00b0, 0x3940143d, 0x00000000}},  //   leks, äkär, skis_,\n  { {0xb8ee0055, 0x27f21194, 0x2f5a0049, 0x00000000}},  //   _রা_, styn_, נדענ,\n  { {0x63a90219, 0x7d0600b0, 0x56930088, 0x00000000}},  //   _buen, neks, чаєт,\n  { {0x63a90219, 0xdb040009, 0x63a1004e, 0x00000000}},  //   _cuen, _stiù, _biln,\n  { {0x63a9022b, 0x7d06006c, 0x27e00065, 0x00000000}},  //   _duen, heks, mrin_,\n  { {0x6d5d3b5a, 0x7d0623b5, 0x63a10065, 0x00000000}},  //   yisa, keks, _diln,\n  { {0x7984001c, 0x63a90219, 0x463b007b, 0x00000000}},  //   nliw, _fuen, _געלע,\n  { {0x7d060292, 0xe8e00011, 0x26ca0093, 0x00000000}},  //   deks, _ngọt_, _kebo_,\n  { {0x9df801f9, 0x6d5d023a, 0x26ca0091, 0x00000000}},  //   анот_, wisa, _jebo_,\n  { {0x6d5d005f, 0xa3e4024c, 0x877b061e, 0x00000000}},  //   tisa, पूर_, ראיי,\n  { {0x27e0178e, 0x63a1001a, 0x26ca0027, 0x00000000}},  //   krin_, _ziln, _lebo_,\n  { {0x40960054, 0x703a004b, 0x79840036, 0x00000000}},  //   _الشر, _حساس_, dliw,\n  { {0x26ca101c, 0x6d5d010a, 0x27e021ae, 0x00000000}},  //   _nebo_, sisa, drin_,\n  { {0x69da0119, 0x6ce7008b, 0x67353510, 0x00000000}},  //   šten, _ліпе, _rozj,\n  { {0x8e830054, 0x7d06014a, 0xbcfb009d, 0x00000000}},  //   _عليه, ceks, fiée,\n  { {0x5887007c, 0x26ca0133, 0xe894007c, 0x00000000}},  // [da30] сыва, _bebo_, зать,\n  { {0x6b4b01a2, 0x26ca004a, 0x2b5a0087, 0x00000000}},  //   _büge, _cebo_, _gmpc_,\n  { {0x25b80056, 0x63a90211, 0x26ca0211, 0x00000000}},  //   _ctrl_, _suen, _debo_,\n  { {0x63a12a89, 0x63a90211, 0x27e00065, 0x00000000}},  //   _siln, _puen, brin_,\n  { {0x63a13b5b, 0x63a90181, 0xbcfb009d, 0x00000000}},  //   _piln, _quen, ciée,\n  { {0x41b50264, 0x62811ee1, 0x443d0016, 0x00000000}},  //   осит, _pylo, ryw_,\n  { {0x63a1010a, 0x63bc00ca, 0x7d063b5c, 0x00000000}},  //   _viln, _črne, yeks,\n  { {0x13a70014, 0x628101ca, 0x63a93b5d, 0x00000000}},  //   _هنری_, _vylo, _tuen,\n  { {0xe81c02d2, 0x63a9006c, 0x2ba50164, 0x00000000}},  //   निया_, _uuen, _गंगा,\n  { {0x289c0049, 0x2eee0009, 0xef39003b, 0x00000000}},  //   ניזא, _ccff_, рџић_,\n  { {0x2bdc02fb, 0x7d060292, 0x79960036, 0x00000000}},  //   _बिहा, teks, ymyw,\n  { {0x6d5d00f4, 0xbcfb0161, 0x2fdf04eb, 0x00000000}},  //   érap, nnéh, prug_,\n  { {0x7d062045, 0x613c2ffd, 0x4c36007e, 0x00000000}},  //   reks, _célu, цэнт,\n  { {0x7d06021e, 0x613c26f7, 0x27e006e6, 0x00000000}},  //   seks, _délu, vrin_,\n  { {0xfaa30888, 0x7d060058, 0x999e00b9, 0x00000000}},  //   даро, peks, átů_,\n  { {0x27e0045f, 0xbcfb01ca, 0x26ca00c4, 0x00000000}},  //   trin_, jnéh, _sebo_,\n  { {0x60cb0010, 0xbcfb06b8, 0x27e000f2, 0x00000000}},  // [da40] _megm, dnéh, urin_,\n  { {0x27e0008d, 0x25aa06d3, 0xbcfb009d, 0x00000000}},  //   rrin_, _publ_, riée,\n  { {0x98a60256, 0x248d0023, 0xb87b0051, 0x00000000}},  //   _мине, _azem_, _scít,\n  { {0x27e00350, 0x92a600b4, 0x26ca28cd, 0x00000000}},  //   prin_, zyłą, _webo_,\n  { {0x613c0010, 0x26ca008a, 0x00000000, 0x00000000}},  //   _mélt, _tebo_,   ,\n  { {0x8c1b009b, 0x7afe023a, 0xb33c01f3, 0x00000000}},  //   יוני, _jbpt, _biħa,\n  { {0x2d800082, 0xbcfb04bb, 0x00000000, 0x00000000}},  //   _okie_, bnéh,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xf99301f8, 0xff0601be, 0x637f00c4, 0x00000000}},  //   ורה_, оянн, tênt,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x69da00b9, 0x171b0049, 0x82660014, 0x00000000}},  //   átel, בויע, _بهان,\n  { {0x8fa600e3, 0xd24f00a1, 0x21b700a1, 0x00000000}},  //   _даде, _جنم_, _بھوک_,\n  { {0xa6d50055, 0x4f65026c, 0x06d50044, 0x00000000}},  //   স্টট, _کانف, স্টি,\n  { {0xada50142, 0xbcfb3b5e, 0x23b0009d, 0x00000000}},  //   _skúš, inéi, _màj_,\n  { {0xb33c0066, 0x613c0010, 0x00000000, 0x00000000}},  //   _xiħa, _félt,   ,\n  { {0xed5807d8, 0x00000000, 0x00000000, 0x00000000}},  //   _мој_,   ,   ,\n  { {0xbcfb06b8, 0xfc3f00d4, 0x27140044, 0x00000000}},  // [da50] vnéh, rcís_, ঠানো_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xab980025, 0xbcfb06b8, 0x63760035, 0x00000000}},  //   _بخير_, tnéh, bânz,\n  { {0xaae70123, 0xaba80014, 0x69d50010, 0x00000000}},  //   _اسکو, _دهیم_, msze,\n  { {0x69d50c59, 0x60cb01d6, 0xbcfb0161, 0x00000000}},  //   lsze, _regm, rnéh,\n  { {0x68ed00d6, 0x27e92111, 0x883a009b, 0x00000000}},  //   lgad, muan_, _התשו,\n  { {0x69d51297, 0x27e90127, 0x4429000d, 0x00000000}},  //   nsze, luan_, ţa_,\n  { {0x68ed04d4, 0x2600013d, 0x2bdc007d, 0x00000000}},  //   ngad, _रहती_, _बिला,\n  { {0x27e91511, 0xb4e70164, 0x24840146, 0x00000000}},  //   nuan_, पली_, _gymm_,\n  { {0x2ca9006a, 0x69d50010, 0x00000000, 0x00000000}},  //   _agad_, ksze,   ,\n  { {0x27e9020c, 0x69d50036, 0x29d7002b, 0x00000000}},  //   huan_, jsze, jħa_,\n  { {0x69d50c59, 0x311401e1, 0x656b2088, 0x00000000}},  //   dsze, _офіс, nngh,\n  { {0x27e90149, 0x81ad0044, 0x31b10010, 0x00000000}},  //   juan_, _কবি_, _ház_,\n  { {0x27e91130, 0xa026009f, 0x2d9900bb, 0x00000000}},  //   duan_, stöð, amse_,\n  { {0x6b500073, 0x69d53b5f, 0x29d701d5, 0x00000000}},  //   _lägg, gsze, għa_,\n  { {0x68ed0039, 0xc2120049, 0x63bb019a, 0x00000000}},  //   ggad, עהן_, _otun,\n  { {0x27e904cb, 0x200d144d, 0x63bb00e5, 0x00000000}},  // [da60] guan_, nwei_, _ntun,\n  { {0x6d4600b0, 0x7d16149f, 0x68ed090b, 0x00000000}},  //   lkka, _hays, agad,\n  { {0x63bb000d, 0x7d16066b, 0x00000000, 0x00000000}},  //   _atun, _kays,   ,\n  { {0x92e80055, 0x6d460ff8, 0x27e904cb, 0x00000000}},  //   _বসে_, nkka, buan_,\n  { {0x2937007b, 0x9f4400f4, 0x7d160058, 0x00000000}},  //   _זאכן_, sumé_, _mays,\n  { {0x656b002a, 0xd6e30044, 0x7d1600e0, 0x00000000}},  //   angh, ন্বয, _lays,\n  { {0xbcfb002a, 0xf107013d, 0x63bb00b0, 0x00000000}},  //   snéi, वजूद_, _etun,\n  { {0xb6a30764, 0x7d160b3d, 0x9c8701dc, 0x00000000}},  //   _числ, _nays, _jičí,\n  { {0x6f080ba5, 0x69d5108d, 0x00000000, 0x00000000}},  //   tedc, zsze,   ,\n  { {0x69d51a53, 0xa857009b, 0x68ed3b60, 0x00000000}},  //   ysze, פייה_, zgad,\n  { {0x6d4f09e0, 0x27e90307, 0x6f08245a, 0x00000000}},  //   thca, zuan_, redc,\n  { {0x27e909f3, 0xd8430161, 0x613c01e5, 0x00000000}},  //   yuan_, ničí_, _véls,\n  { {0x7d160541, 0x69d50036, 0x61ea000c, 0x00000000}},  //   _days, wsze, lufl,\n  { {0x69d51297, 0x8fa3007c, 0x6d4f0784, 0x00000000}},  //   tsze, _заче, shca,\n  { {0x61ea00f6, 0xd90f0014, 0x656b3b61, 0x00000000}},  //   nufl, هید_, yngh,\n  { {0x27e904be, 0x69d509c8, 0x394b0026, 0x00000000}},  //   tuan_, rsze, _qlcs_,\n  { {0x68ed3b57, 0x69d50a36, 0x36d5005c, 0x00000000}},  // [da70] rgad, ssze, дозр,\n  { {0x27e9022b, 0x68ed3b62, 0x69d5115b, 0x00000000}},  //   ruan_, sgad, psze,\n  { {0x63bb3b63, 0xfbaf0055, 0x6d4d046a, 0x00000000}},  //   _stun, _কবিত, _klaa,\n  { {0x27e904cb, 0xb4e70204, 0x656b0035, 0x00000000}},  //   puan_, पले_, ungh,\n  { {0xe1f10014, 0x27e90082, 0x00000000, 0x00000000}},  //   چسب_, quan_,   ,\n  { {0xaabf02fb, 0xd040005f, 0x07a4007e, 0x00000000}},  //   ्रिक, qamə, _паўн,\n  { {0x919500ed, 0xe29600d7, 0x6d4600ea, 0x00000000}},  //   мјиш, маш_, ykka,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x944500a1, 0x63bb0020, 0x752900fa, 0x00000000}},  //   _تھان, _utun, _inez,\n  { {0xf8aa0164, 0x6d4d011c, 0x7d163b64, 0x00000000}},  //   _कल्प, _alaa, _says,\n  { {0x75290107, 0x6d4d00c7, 0x7d1600f4, 0x00000000}},  //   _knez, _blaa, _pays,\n  { {0x69da167a, 0x6b50010e, 0x00000000, 0x00000000}},  //   štek, _mäge,   ,\n  { {0x6b500039, 0x6d46021e, 0x6b4b006c, 0x00000000}},  //   _läge, rkka, _süga,\n  { {0x06e30044, 0x2f18007c, 0x317f0173, 0x00000000}},  //   ন্তি, _ночь_, louz_,\n  { {0x6b50050d, 0xbcfb008e, 0x316d0035, 0x00000000}},  //   _näge, mién, onez_,\n  { {0x316d00f4, 0x6d4d3b65, 0x753b013e, 0x00000000}},  //   nnez_, _glaa, _nouz,\n  { {0xbf8a001d, 0xd7f90088, 0x316d1fcd, 0x00000000}},  // [da80] _đoạn_, зує_, inez_,\n  { {0xbcfb008e, 0x64420020, 0xdb0400d4, 0x00000000}},  //   nién, vyoi, _etiò,\n  { {0x753b0e6d, 0x6562006c, 0xd5b000a1, 0x00000000}},  //   _bouz, tioh, اہر_,\n  { {0x448a0c96, 0x273f001a, 0x998a007f, 0x00000000}},  //   обен_, _sînt_, rybų_,\n  { {0x753b023f, 0x320500e0, 0x656201b1, 0x00000000}},  //   _douz, _aply_, rioh,\n  { {0x316d002d, 0xa29401e1, 0xdced002b, 0x00000000}},  //   enez_, налі, _pjaċ,\n  { {0xbcfb008e, 0xd2500025, 0x24f6226c, 0x00000000}},  //   dién, طنة_, _очар,\n  { {0xd1300054, 0x316d00f4, 0x61f800bb, 0x00000000}},  //   امة_, gnez_, rtvl,\n  { {0x673c00b0, 0xd00706e3, 0x61ea0035, 0x00000000}},  //   _korj, дење_, sufl,\n  { {0x6d4d0100, 0xbcfb167d, 0x753b3b66, 0x00000000}},  //   _slaa, gién, _zouz,\n  { {0x6d4d1787, 0x673c0059, 0x753b000a, 0x00000000}},  //   _plaa, _morj, _youz,\n  { {0x5066004d, 0xdfcf02fd, 0x50d601b2, 0x00000000}},  //   _отла, _چين_, _آزار,\n  { {0x63a82fdb, 0x6d4d00b5, 0xbcfb008e, 0x00000000}},  //   _kidn, _vlaa, bién,\n  { {0xbcfb008e, 0x673c00b0, 0x00000000, 0x00000000}},  //   cién, _norj,   ,\n  { {0x65600066, 0x00000000, 0x00000000, 0x00000000}},  //   _ommh,   ,   ,\n  { {0xbcfb3b67, 0xac95007e, 0x62880052, 0x00000000}},  //   gnét, _пайш, _mydo,\n  { {0x6b500073, 0x628806ec, 0x753b1339, 0x00000000}},  // [da90] _säge, _lydo, _rouz,\n  { {0x753b0181, 0x7529003b, 0x20060009, 0x00000000}},  //   _souz, _snez, _mpoi_,\n  { {0x753b0224, 0x58d5034b, 0x673c0fda, 0x00000000}},  //   _pouz, _понт, _dorj,\n  { {0xa835012b, 0x6b500274, 0xdced0f3a, 0x00000000}},  //   _земљ, _väge, _ojač,\n  { {0xd40b00f3, 0x29190035, 0x753b0c5e, 0x00000000}},  //   تتام_, _iasa_, _vouz,\n  { {0x2919000b, 0x6f18045d, 0x39490dec, 0x00000000}},  //   _hasa_, _navc, lkas_,\n  { {0x2006000d, 0x23690091, 0x4b38009b, 0x00000000}},  //   _apoi_, đaj_, ורגל_,\n  { {0x3949030b, 0x291904fa, 0x69da0181, 0x00000000}},  //   nkas_, _jasa_, átei,\n  { {0x29190127, 0x2d8b377e, 0xbcfb008e, 0x00000000}},  //   _masa_, dlce_, tién,\n  { {0x2919001a, 0x8c150044, 0xdced012d, 0x00000000}},  //   _lasa_, ামান_, _djač,\n  { {0x8d66004c, 0x3949006c, 0x628810fd, 0x00000000}},  //   евне, kkas_, _gydo,\n  { {0x2d8400f4, 0x2919066d, 0x26d10032, 0x00000000}},  //   ôme_, _nasa_, _lezo_,\n  { {0x66f0007d, 0x6f180066, 0x39490ebd, 0x00000000}},  //   _चालक_, _favc, dkas_,\n  { {0x29190be4, 0x39493b68, 0x00000000, 0x00000000}},  //   _aasa_, ekas_,   ,\n  { {0x2919011c, 0xdb0f0051, 0xa3cf0061, 0x00000000}},  //   _basa_, ádái, वीत_,\n  { {0x61350047, 0x3949011c, 0x00000000, 0x00000000}},  //   _pály, gkas_,   ,\n  { {0x63bc0627, 0x7d040061, 0x25bf0091, 0x00000000}},  // [daa0] _črno, _ibis, _čula_,\n  { {0x394900b0, 0x06e30044, 0x2d820943, 0x00000000}},  //   akas_, ন্সি, loke_,\n  { {0xd639007e, 0xdd7500a1, 0x63a802e7, 0x00000000}},  //   мяці_, _سپیک, _ridn,\n  { {0x39492eb2, 0x3a250030, 0x9695034b, 0x00000000}},  //   ckas_, ælpe_, труш,\n  { {0x66150047, 0x673c00b0, 0x7d0423eb, 0x00000000}},  //   _eszk, _torj, _mbis,\n  { {0x7c2b000c, 0x00000000, 0x00000000, 0x00000000}},  //   _ágre,   ,   ,\n  { {0x7d0401d9, 0x3fac0044, 0x2d820022, 0x00000000}},  //   _obis, _গবেষ, koke_,\n  { {0x63a81a79, 0x7afb0091, 0x290006c0, 0x00000000}},  //   _widn, đuti, nfia_,\n  { {0x63a80073, 0x62880036, 0x6f180087, 0x00000000}},  //   _tidn, _wydo, _pavc,\n  { {0x7d040d49, 0x461300a1, 0xd13000a2, 0x00000000}},  //   _abis, _جوہر, امک_,\n  { {0x7c243676, 0x7bcd00e7, 0x00000000, 0x00000000}},  //   _arir, _swau,   ,\n  { {0x2d820032, 0x442422ae, 0x7c240023, 0x00000000}},  //   goke_, _krm_, _brir,\n  { {0x2919027e, 0x5c04007e, 0x201f0082, 0x00000000}},  //   _rasa_, ляра, cvui_,\n  { {0x2919000b, 0x7d040009, 0x7986002b, 0x00000000}},  //   _sasa_, _ebis, _akkw,\n  { {0xb9e401fb, 0x29192352, 0x26d101aa, 0x00000000}},  //   літи, _pasa_, _rezo_,\n  { {0x4424002a, 0x2d820c0d, 0x69da00f4, 0x00000000}},  //   _orm_, coke_, âtea,\n  { {0xb8d902d2, 0x2919016c, 0xf6e7005e, 0x00000000}},  // [dab0] _चल_, _vasa_, ецен,\n  { {0x39490a5c, 0x7d1d03fa, 0x2900006c, 0x00000000}},  //   skas_, ldss, afia_,\n  { {0x442400fe, 0xb8f70044, 0xdb0400c4, 0x00000000}},  //   _arm_, _সা_, _suiç,\n  { {0x59b6024c, 0x7d1d000c, 0xbc68025a, 0x00000000}},  //   _आंतर, ndss, _آمین_,\n  { {0x7d1d00bb, 0x798d0258, 0x26d10087, 0x00000000}},  //   idss, mlaw, _tezo_,\n  { {0x044200ed, 0x2d680521, 0x27e9013f, 0x00000000}},  //   решн, nđer_, mran_,\n  { {0x69da0059, 0x442401a3, 0x66150036, 0x00000000}},  //   štev, _erm_, _uszk,\n  { {0x44240061, 0x3f8c3b69, 0x798d00e0, 0x00000000}},  //   _frm_, eldu_, nlaw,\n  { {0x2d8201aa, 0x27e90016, 0x4424073a, 0x00000000}},  //   voke_, nran_, _grm_,\n  { {0x27e9008a, 0x798d04cb, 0x4f221001, 0x00000000}},  //   iran_, hlaw, адьб,\n  { {0x27e93b6a, 0x7c243b6b, 0x64590270, 0x00000000}},  //   hran_, _srir, lzwi,\n  { {0x7c240119, 0x27e90010, 0xd00e01b2, 0x00000000}},  //   _prir, kran_, حلی_,\n  { {0x2d8201d9, 0x798d0058, 0x118600a1, 0x00000000}},  //   roke_, dlaw, _جھوٹ_,\n  { {0x27e93b6c, 0x0056009b, 0x2d821a2d, 0x00000000}},  //   dran_, _בשנת_, soke_,\n  { {0x798d018e, 0x27e92352, 0x78af00d9, 0x00000000}},  //   flaw, eran_, _bgcv,\n  { {0x7d04003b, 0x27e90016, 0x236700ca, 0x00000000}},  //   _ubis, fran_, hinj_,\n  { {0x1867058f, 0x27e93b6d, 0x6843007e, 0x00000000}},  // [dac0] вати_, gran_, анта,\n  { {0x998d0091, 0x79860022, 0x7bc606ec, 0x00000000}},  //   ćeš_, _wkkw, mpku,\n  { {0xd5b90088, 0x27e901a3, 0x2a36007e, 0x00000000}},  //   есі_, aran_, _рэпр,\n  { {0x69dc01c9, 0x27e90213, 0x442412e9, 0x00000000}},  //   msre, bran_, _prm_,\n  { {0x3f8c000c, 0x69dc01a2, 0x3f871ab2, 0x00000000}},  //   yldu_, lsre, _oknu_,\n  { {0x4424007f, 0x00000000, 0x00000000, 0x00000000}},  //   _vrm_,   ,   ,\n  { {0xd24f06f1, 0x69dc0c7a, 0xbebc001e, 0x00000000}},  //   ينه_, nsre, ldīg,\n  { {0xdce60006, 0xdef8002b, 0x60f802dc, 0x00000000}},  //   mokė, miċi_, хния_,\n  { {0xdef801d5, 0x4fd3007e, 0x6702007d, 0x00000000}},  //   liċi_, ажыт, र्थक_,\n  { {0xa2c10309, 0x69dc04d3, 0xbebc0089, 0x00000000}},  //   रुद्, ksre, idīg,\n  { {0x13d70055, 0x2bd00061, 0xdef8002b, 0x00000000}},  //   _সময়, तीसा, niċi_,\n  { {0xe7e20061, 0x27e9005d, 0xa00a0025, 0x00000000}},  //   _पिंप, yran_, _يقال_,\n  { {0x2018001e, 0x7d1d01c9, 0x6b5000f8, 0x00000000}},  //   āris_, rdss, _säga,\n  { {0x2bb5013d, 0x69dc1177, 0x27e901ed, 0x00000000}},  //   ंदबा, fsre, vran_,\n  { {0x25bf04eb, 0x00000000, 0x00000000, 0x00000000}},  //   _čulo_,   ,   ,\n  { {0x2e59008b, 0xdef801d5, 0x6b5003af, 0x00000000}},  //   _яшчэ_, diċi_, _väga,\n  { {0x9b4504e8, 0x58870a78, 0x27e90173, 0x00000000}},  // [dad0] _منظو, тыва, uran_,\n  { {0x27e9021e, 0x5b150057, 0x69dc0302, 0x00000000}},  //   rran_, _смот, bsre,\n  { {0xc6a7007c, 0x798d000a, 0x6b820048, 0x00000000}},  //   траи, plaw, _íoga,\n  { {0x27e91a7c, 0x69c73994, 0x45180088, 0x00000000}},  //   pran_, mpje, кція_,\n  { {0x69da0bf8, 0xdfc60464, 0xe8e00082, 0x00000000}},  //   štet, _دي_, _ngột_,\n  { {0xe2990517, 0x7bdd0cba, 0x64590270, 0x00000000}},  //   нал_, issu, rzwi,\n  { {0x45d4007c, 0x23670023, 0xc6a40184, 0x00000000}},  //   _восс, rinj_, _врти,\n  { {0x7bdd0190, 0x00000000, 0x00000000, 0x00000000}},  //   kssu,   ,   ,\n  { {0xe475012b, 0x23673b6e, 0xfd1f0026, 0x00000000}},  //   _слањ, pinj_, ddì_,\n  { {0x69dc1241, 0x60c93b6f, 0x25ad00d9, 0x00000000}},  //   ysre, sbem, _hiel_,\n  { {0x7bdf0689, 0x25ad01a2, 0x68070089, 0x00000000}},  //   _avqu, _kiel_, lījā,\n  { {0x69dc01e3, 0xab5b01a2, 0xc69200b3, 0x00000000}},  //   vsre, spül, מאי_,\n  { {0x25ad038e, 0x7bdd0240, 0x69c700bb, 0x00000000}},  //   _miel_, gssu, epje,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x3f8501c5, 0x2b410145, 0xdb0d00c4, 0x00000000}},  //   molu_, _dohc_, _guaí,\n  { {0x69dc00b5, 0x25ad0168, 0xfe700014, 0x00000000}},  //   rsre, _niel_, _بده_,\n  { {0x69dc00ab, 0x271d0044, 0x23b90173, 0x00000000}},  // [dae0] ssre, নানো_, _nèj_,\n  { {0xdef801d5, 0x68070089, 0x69dc00f8, 0x00000000}},  //   tiċi_, dījā, psre,\n  { {0x25ad033f, 0x8afb00a3, 0x248d0022, 0x00000000}},  //   _biel_, _אהיי, _ayem_,\n  { {0x25ad00f4, 0xa2c10164, 0xd5af03ec, 0x00000000}},  //   _ciel_, रुस्, سفه_,\n  { {0x938a01f9, 0x3f8501d5, 0x43460605, 0x00000000}},  //   нска_, kolu_, ледв,\n  { {0x2bb7013d, 0x00000000, 0x00000000, 0x00000000}},  //   _इंसा,   ,   ,\n  { {0x3f85014a, 0x39420964, 0x25ad24c6, 0x00000000}},  //   dolu_, _koks_, _fiel_,\n  { {0x39420e07, 0x25ad00bb, 0x7bdd0fc8, 0x00000000}},  //   _joks_, _giel_, yssu,\n  { {0x9f5401fc, 0x2d680010, 0x98ac007f, 0x00000000}},  //   ивич, tően_, ėlės_,\n  { {0x25ad059b, 0x3f85002b, 0x3817009b, 0x00000000}},  //   _ziel_, golu_, נקים_,\n  { {0x1d350099, 0x7bdd00f6, 0x69da009d, 0x00000000}},  //   ання, wssu, âtel,\n  { {0xc27b0476, 0xa3e80061, 0x2b410145, 0x00000000}},  //   _ארבי, _मटा_, _sohc_,\n  { {0xfd1f0207, 0x7bdd00f4, 0x26da0020, 0x00000000}},  //   rdì_, ussu, kapo_,\n  { {0x90970088, 0x40930025, 0xdb160082, 0x00000000}},  //   _світ_, _الهر, _huyê,\n  { {0xf9930123, 0xa1430089, 0x26da254f, 0x00000000}},  //   مبر_, _šķir, dapo_,\n  { {0x69c70065, 0x291221a4, 0x2d8900e7, 0x00000000}},  //   rpje, geya_, _ukae_,\n  { {0x69c73b70, 0xbebc0089, 0x7d740014, 0x00000000}},  // [daf0] spje, mdīb, _داوط,\n  { {0xbebc001e, 0x25ad3b71, 0x6d4f0146, 0x00000000}},  //   ldīb, _siel_, lkca,\n  { {0xcf93007b, 0x25ad0211, 0x29123b72, 0x00000000}},  //   צטע_, _piel_, beya_,\n  { {0x6d4f0ace, 0x7d1f002b, 0x69c50048, 0x00000000}},  //   nkca, _jaqs, _ithe,\n  { {0x25ad001f, 0x26da000b, 0x9fdf0044, 0x00000000}},  //   _viel_, bapo_, _বঙ্গ,\n  { {0x69c5008d, 0x25ad0116, 0x26da0026, 0x00000000}},  //   _kthe, _wiel_, capo_,\n  { {0x3f853b73, 0x25ad1768, 0x00000000, 0x00000000}},  //   volu_, _tiel_,   ,\n  { {0x3fe50aed, 0x6009019d, 0x7d1f002b, 0x00000000}},  //   ажив, вним_, _naqs,\n  { {0x3f85002b, 0xdb160011, 0x6702007d, 0x00000000}},  //   tolu_, _duyê, र्वक_,\n  { {0x656b0018, 0x69c50038, 0x20d30011, 0x00000000}},  //   ligh, _othe, ải_,\n  { {0x644b1203, 0x7bc4001a, 0x63bc00ca, 0x00000000}},  //   lygi, _stiu, _črni,\n  { {0xe1f006b4, 0x3f851d61, 0x656b2f16, 0x00000000}},  //   _رسم_, solu_, nigh,\n  { {0x69c511d1, 0x60db0020, 0x7d1f002b, 0x00000000}},  //   _athe, maum, _daqs,\n  { {0xb3d70044, 0x60db0020, 0xbea51281, 0x00000000}},  //   _সমাজ, laum, _калк,\n  { {0xfaa60887, 0x6d9d0051, 0xa96a0893, 0x00000000}},  //   раво, féad, вива_,\n  { {0x1c460589, 0x60db0020, 0xdb160011, 0x00000000}},  //   _вним, naum, _xuyê,\n  { {0x656b00eb, 0x7f43006b, 0x2912006b, 0x00000000}},  // [db00] digh, _konq, reya_,\n  { {0x656b001c, 0x7f433b74, 0x6d44006c, 0x00000000}},  //   eigh, _jonq, _hoia,\n  { {0xb8fc0055, 0x3942010a, 0x6702007d, 0x00000000}},  //   _ঠা_, _toks_, र्षक_,\n  { {0x14260081, 0x26da2721, 0x6d4428f0, 0x00000000}},  //   идем, sapo_, _joia,\n  { {0x6b4b006c, 0x4ada0061, 0x6d4400d4, 0x00000000}},  //   _sügi, _बजाव, _moia,\n  { {0x7f4301f3, 0x6d443b75, 0x67020164, 0x00000000}},  //   _nonq, _loia, र्शक_,\n  { {0x6d560047, 0x27e00279, 0x656b0058, 0x00000000}},  //   _olya, lsin_, bigh,\n  { {0xdb160011, 0xf1260194, 0x644b02d4, 0x00000000}},  //   _quyê, рько, bygi,\n  { {0x27e0006a, 0x26d80020, 0xe3aa02e9, 0x00000000}},  //   nsin_, _kero_, _акад_,\n  { {0x27e031b2, 0x7f430181, 0x26d80093, 0x00000000}},  //   isin_, _conq, _jero_,\n  { {0x4426320b, 0xdb160011, 0x26d8007f, 0x00000000}},  //   lvo_, _tuyê, _mero_,\n  { {0x7522147e, 0x27e0006c, 0xa2ca0309, 0x00000000}},  //   ndoz, ksin_, _स्त्,\n  { {0xae43007a, 0x6b50010f, 0x442601a3, 0x00000000}},  //   مپیو, _tägl, nvo_,\n  { {0x26d80207, 0x656b00b5, 0x442612db, 0x00000000}},  //   _nero_, zigh, ivo_,\n  { {0x6d560146, 0x7d1f002b, 0xbcfb009d, 0x00000000}},  //   _flya, _taqs, diév,\n  { {0x44260091, 0x26d80142, 0x6d441327, 0x00000000}},  //   kvo_, _aero_, _goia,\n  { {0xd6db00ed, 0x26d83b76, 0x656b0035, 0x00000000}},  // [db10] вте_, _bero_, vigh,\n  { {0x26d80211, 0x629a002d, 0x69c500e0, 0x00000000}},  //   _cero_, _ozto, _tthe,\n  { {0x4b7c0452, 0x656b046a, 0x60db00f4, 0x00000000}},  //   _באזו, tigh, yaum,\n  { {0x27e00066, 0x3cf90009, 0x26d801b1, 0x00000000}},  //   bsin_, ngsv_, _eero_,\n  { {0x44293b77, 0x656b0038, 0x27e00094, 0x00000000}},  //   ía_, righ, csin_,\n  { {0x26d83b78, 0x25b82ed8, 0x850500a1, 0x00000000}},  //   _gero_, _furl_, _گورن,\n  { {0x2169102a, 0x25b80058, 0x442605fc, 0x00000000}},  //   лики_, _gurl_, avo_,\n  { {0xc692007b, 0xfa7801f8, 0xf8bf008e, 0x00000000}},  //   _זאל_, יעות_, _inés_,\n  { {0x60db0635, 0x65691dce, 0x26d80058, 0x00000000}},  //   raum, _imeh, _yero_,\n  { {0xf207008b, 0x26c10211, 0x6d440026, 0x00000000}},  //   _вядо, ncho_, _soia,\n  { {0x229501b7, 0xb87b00b9, 0x60db0020, 0x00000000}},  //   _الاس, _sdíl, paum,\n  { {0x27e000b0, 0x8d56007c, 0x82340025, 0x00000000}},  //   ysin_, сточ, _بركا,\n  { {0x7f433b79, 0x6d443b7a, 0x408701fc, 0x00000000}},  //   _tonq, _voia, _тужб,\n  { {0xaa462260, 0x213f016c, 0x316d009d, 0x00000000}},  //   бегл, ljuh_, liez_,\n  { {0x26d80061, 0xfbd20167, 0xf99f0197, 0x00000000}},  //   _rero_, _کتب_, _bhè_,\n  { {0xf99f16c9, 0x27e003b6, 0x26d8005b, 0x00000000}},  //   _chè_, tsin_, _sero_,\n  { {0x26d83b7b, 0x98a3025f, 0x25b80009, 0x00000000}},  // [db20] _pero_, зите, _surl_,\n  { {0x27e03b7c, 0x25b80050, 0x316d009d, 0x00000000}},  //   rsin_, _purl_, hiez_,\n  { {0x26d80207, 0x14c8007a, 0x316d0032, 0x00000000}},  //   _vero_, لهای_, kiez_,\n  { {0x44260b4a, 0x95eb00a1, 0x27e00052, 0x00000000}},  //   tvo_, ابلہ_, psin_,\n  { {0x75220010, 0x316d0035, 0x629a0c59, 0x00000000}},  //   rdoz, diez_, _szto,\n  { {0x8c1b009b, 0x00000000, 0x00000000, 0x00000000}},  //   טוני,   ,   ,\n  { {0x316d00f4, 0x9f5f009d, 0x6d9d0051, 0x00000000}},  //   fiez_, ctué_, néac,\n  { {0x657b008d, 0x316d0288, 0x39400145, 0x00000000}},  //   _gjuh, giez_, njis_,\n  { {0x25bf0091, 0x60dd000c, 0x60d90066, 0x00000000}},  //   _čuli_, ðsma, _dewm,\n  { {0xb356025a, 0x25a6103f, 0xdbd4008e, 0x00000000}},  //   _دیتا_, lmol_, _núñe,\n  { {0xab5b1396, 0x316d0288, 0x00000000, 0x00000000}},  //   nqüe, biez_,   ,\n  { {0x069700b3, 0x316d28eb, 0x25a60016, 0x00000000}},  //   מדים_, ciez_, nmol_,\n  { {0x26c100f4, 0xed58007e, 0x06e30044, 0x00000000}},  //   ycho_, соў_, ন্টি,\n  { {0x139b0049, 0x0eba0930, 0x00000000, 0x00000000}},  //   ָבלע, _суды_,   ,\n  { {0x6d9d00f4, 0x3e57013f, 0x00000000, 0x00000000}},  //   réab, yətə_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x26c10173, 0x7d0d1a8d, 0x657b00ca, 0x00000000}},  // [db30] tcho_, _ibas, _rjuh,\n  { {0x2d8b0207, 0x65692d13, 0x26c1004a, 0x00000000}},  //   loce_, _smeh, ucho_,\n  { {0x26c1157e, 0xf99f0026, 0x0c780123, 0x00000000}},  //   rcho_, _thè_, _نصیب_,\n  { {0xbcfb028c, 0x2d8b3b7d, 0x7d0d0066, 0x00000000}},  //   ciét, noce_, _jbas,\n  { {0x7d0d0065, 0x316d009d, 0xdce60089, 0x00000000}},  //   _mbas, viez_, nikā,\n  { {0xbcfb0344, 0x2329041f, 0x00000000, 0x00000000}},  //   gnéz, роки_,   ,\n  { {0x25a60007, 0x7d0d0166, 0x3ce9006c, 0x00000000}},  //   bmol_, _obas, _odav_,\n  { {0x7c2d0207, 0xbfc505f6, 0x656900e7, 0x00000000}},  //   _orar, обик, _umeh,\n  { {0x316d3b7e, 0xdb0d00c4, 0x2d8b15f7, 0x00000000}},  //   riez_, _guaç, doce_,\n  { {0x7d0d0129, 0x8e0900d7, 0x316d3562, 0x00000000}},  //   _abas, анов_, siez_,\n  { {0x6e450264, 0x7c2d0181, 0xa15931cd, 0x00000000}},  //   ценз, _arar, _кажу_,\n  { {0xdb0d009f, 0x63bb04ff, 0x4ca80044, 0x00000000}},  //   _stað, _kuun, _ক্ষু,\n  { {0x63bb0004, 0x1b230044, 0xbcfb3b7f, 0x00000000}},  //   _juun, মানে_, viét,\n  { {0x7d0d0004, 0x63bb3937, 0x2fcd3b80, 0x00000000}},  //   _ebas, _muun, mpeg_,\n  { {0x6d5d0051, 0x7c2d0f4f, 0x25a60544, 0x00000000}},  //   bhsa, _erar, ymol_,\n  { {0x442d139c, 0xae7801e1, 0x2d8b1c37, 0x00000000}},  //   _ore_, _усіх_, coce_,\n  { {0xfe4100a1, 0xbcfb00f4, 0x442d0145, 0x00000000}},  // [db40] _رکھی, riét, _nre_,\n  { {0x969600ed, 0x7f410045, 0xbcfb004a, 0x00000000}},  //   ореш, njlq, biés,\n  { {0x442d0a8a, 0xe61a003b, 0xd9460242, 0x00000000}},  //   _are_, рде_, _дени,\n  { {0xa50a3627, 0x442d1264, 0xdb0500b0, 0x00000000}},  //   реда_, _bre_, _eihä,\n  { {0x442d3b81, 0x25a6148a, 0x24803b82, 0x00000000}},  //   _cre_, rmol_, çim_,\n  { {0x442d0016, 0x69ce00bb, 0x27f2005b, 0x00000000}},  //   _dre_, opbe, mryn_,\n  { {0x442d0756, 0x66030726, 0xab5b006b, 0x00000000}},  //   _ere_, _опра, mpüt,\n  { {0x442d277c, 0x79961f75, 0x00000000, 0x00000000}},  //   _fre_, nlyw,   ,\n  { {0xb4e602d2, 0x442d01d9, 0x2d8b0197, 0x00000000}},  //   पणी_, _gre_, voce_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xb4ab009f, 0x20043b83, 0x7d0d0050, 0x00000000}},  //   _íþró, stmi_, _pbas,\n  { {0x6ed60061, 0xdce60089, 0xac190a7c, 0x00000000}},  //   _मजकु, tikā, бому_,\n  { {0x98b30089, 0x40340143, 0x9f5f00f6, 0x00000000}},  //   ādīt_, _хелс, ctuï_,\n  { {0x7c2d2852, 0x70530014, 0x2d8b00b9, 0x00000000}},  //   _vrar, _تنها, soce_,\n  { {0x80dd0044, 0x3f8c0032, 0xbcfb009d, 0x00000000}},  //   _যাত্, modu_, théd,\n  { {0x98b90098, 0x4cd50044, 0x7c2d1862, 0x00000000}},  //   слат_, _থাকু, _trar,\n  { {0x7c2d04f4, 0x1b100044, 0xbcfb004a, 0x00000000}},  // [db50] _urar, ায়ে_, biér,\n  { {0x4e1e013d, 0xbcfb004a, 0x00000000, 0x00000000}},  //   _बनाई_, ciér,   ,\n  { {0x63bb0368, 0x67251e20, 0x442d0059, 0x00000000}},  //   _suun, rdhj, _sre_,\n  { {0x442d13a1, 0x63bb3b84, 0x3f8c0b41, 0x00000000}},  //   _pre_, _puun, hodu_,\n  { {0xbcfb00f4, 0xdb04008e, 0x3f8c3b85, 0x00000000}},  //   chée, _guió, kodu_,\n  { {0x442d0263, 0x77ba009b, 0x00000000, 0x00000000}},  //   _vre_, _למשח,   ,\n  { {0x94d5003b, 0xa4d501ff, 0x56942210, 0x00000000}},  //   _новц, _нові, _жарт,\n  { {0x950500a1, 0x6b50006c, 0x63bb212c, 0x00000000}},  //   _رہتے_, _vägi, _tuun,\n  { {0x442d3b86, 0x2458007c, 0x63bb00e0, 0x00000000}},  //   _ure_, _дать_, _uuun,\n  { {0x9e6534b3, 0xa2ca0061, 0xf8b80309, 0x00000000}},  //   звод, सुद्, _अल्प,\n  { {0x22770167, 0xc7b4009b, 0xbcfb0253, 0x00000000}},  //   _بلاگ_, ובץ_, viér,\n  { {0x670b007d, 0x070b007d, 0x27e6012d, 0x00000000}},  //   स्तक_, स्तव_, šoni_,\n  { {0xbcfb008e, 0xa3cf0204, 0x9f350088, 0x00000000}},  //   tiér, वीच_, _неді,\n  { {0xef1801c5, 0x00000000, 0x00000000, 0x00000000}},  //   ceļ_,   ,   ,\n  { {0xb87b0211, 0xbcfb06b8, 0xc332009b, 0x00000000}},  //   _leíd, riér, עול_,\n  { {0xa9670999, 0x47c600c2, 0x6d9d00f4, 0x00000000}},  //   писа_, збав, léan,\n  { {0x27e6009d, 0x69ce0133, 0x00000000, 0x00000000}},  // [db60] éon_, spbe,   ,\n  { {0xfaa6013b, 0xf7720a4f, 0xd7ef0054, 0x00000000}},  //   _напо, راء_, اكل_,\n  { {0x14ca007c, 0x7abb009b, 0x98a20006, 0x00000000}},  //   были_, _לציו, _tokį_,\n  { {0xb4e60061, 0x6d9d1059, 0x35690088, 0x00000000}},  //   पणे_, héan, орін_,\n  { {0x999e0006, 0x32070036, 0x00000000, 0x00000000}},  //   štų_, etny_,   ,\n  { {0x3a210061, 0x6703006e, 0x6ab00044, 0x00000000}},  //   _yshp_, _लायक_, _জ্যো,\n  { {0x3f8c0161, 0x07a3007e, 0xb6cb00a1, 0x00000000}},  //   vodu_, _чарн, _چاہے_,\n  { {0x3f8c0036, 0xb034003b, 0xc034003b, 0x00000000}},  //   wodu_, дниш, дниј,\n  { {0xb4ca0164, 0x3f8c1f8b, 0x1b230044, 0x00000000}},  //   ोरी_, todu_, মাতে_,\n  { {0x3eb801e3, 0xe2920025, 0x2d800022, 0x00000000}},  //   ørt_, _كذا_, _ajie_,\n  { {0x3f8c037e, 0x2d920045, 0x00000000, 0x00000000}},  //   rodu_, _bkye_,   ,\n  { {0x4fc60478, 0x00000000, 0x00000000, 0x00000000}},  //   _еска,   ,   ,\n  { {0x2d80000a, 0x00000000, 0x00000000, 0x00000000}},  //   _djie_,   ,   ,\n  { {0x9053007e, 0x00000000, 0x00000000, 0x00000000}},  //   _явіц,   ,   ,\n  { {0x6e9301f9, 0x00000000, 0x00000000, 0x00000000}},  //   _пишу,   ,   ,\n  { {0x69c83b87, 0x2d8001d6, 0x00000000, 0x00000000}},  //   ídea, _gjie_,   ,\n  { {0x57b53b88, 0x81bc0089, 0x61e800f6, 0x00000000}},  // [db70] дбат, _krēs, _lvdl,\n  { {0x64d50164, 0xb8f4013d, 0x7bcd3b89, 0x00000000}},  //   दर्श, _स्_, _itau,\n  { {0xdb04008e, 0x2d991c9d, 0x2ca00066, 0x00000000}},  //   _guiñ, olse_, _zzid_,\n  { {0xceb30452, 0x21260082, 0x00000000, 0x00000000}},  //   גיע_, _naoh_,   ,\n  { {0xe454007e, 0x6f1a00d9, 0x6b5000f8, 0x00000000}},  //   нкцы, ketc, _vägv,\n  { {0x883a009b, 0x973500a2, 0xe7870794, 0x00000000}},  //   _ותשו, _تکرا, _хумо,\n  { {0x6fd5013d, 0xd5670088, 0x22540142, 0x00000000}},  //   _मौजू, _етап, _čaká_,\n  { {0x6727002b, 0x394b04bd, 0x65940264, 0x00000000}},  //   _hajj, _jocs_, _засу,\n  { {0x394b00f6, 0x67270c33, 0x32070142, 0x00000000}},  //   _mocs_, _kajj, stny_,\n  { {0xbebc0089, 0x6727008e, 0x394b00d9, 0x00000000}},  //   ldīj, _jajj, _locs_,\n  { {0x67273b8a, 0x7bcd04cb, 0x00000000, 0x00000000}},  //   _majj, _atau,   ,\n  { {0xed5703e8, 0x394b0066, 0x00000000, 0x00000000}},  //   дою_, _nocs_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xfaa601fb, 0x5eb70044, 0x67271d9b, 0x00000000}},  //   даго, _আজকে, _najj,\n  { {0xb0d10164, 0xdb04004a, 0x394b119e, 0x00000000}},  //   _सभाग, _quiñ, _bocs_,\n  { {0x6d9d009d, 0x61ee05b7, 0x9f440065, 0x00000000}},  //   néal, _æble, ysmë_,\n  { {0x6727002b, 0x60dd000c, 0x394b1e55, 0x00000000}},  // [db80] _bajj, ósmy, _docs_,\n  { {0x7c24002b, 0xbcfb0051, 0x3ce000ea, 0x00000000}},  //   _isir, mhéa, _heiv_,\n  { {0x5b57009b, 0x394b1e13, 0x67270145, 0x00000000}},  //   _חייב_, _focs_, _dajj,\n  { {0x6d4601ae, 0x6e230133, 0x00000000, 0x00000000}},  //   njka, _msnb,   ,\n  { {0x68e426fb, 0x5ede0044, 0xbf1d0061, 0x00000000}},  //   maid, _মাসে, _बघून_,\n  { {0x68e40a5c, 0xf8bf008e, 0x3ce00288, 0x00000000}},  //   laid, _jaén_, _leiv_,\n  { {0x7d040107, 0x65c3007e, 0x6d9d0048, 0x00000000}},  //   _ocis, _абса, féal,\n  { {0x2900000b, 0x68e41218, 0x46a30545, 0x00000000}},  //   ngia_, naid, _расв,\n  { {0x02cf0164, 0x73063b8b, 0xf993009b, 0x00000000}},  //   _स्वभ, _опаз, כרה_,\n  { {0x68e4002a, 0xb356007a, 0x44240232, 0x00000000}},  //   haid, _زیبا_, _ism_,\n  { {0x7c240263, 0x36f7009b, 0x7bcd010f, 0x00000000}},  //   _asir, וצים_, _stau,\n  { {0xc0a900d3, 0x442402c1, 0x202300b0, 0x00000000}},  //   _کامل_, _ksm_, äriä_,\n  { {0xe0430893, 0x68e4002d, 0x7c240010, 0x00000000}},  //   _инци, daid, _csir,\n  { {0xfe6f06c6, 0xe1f1026c, 0x442400c4, 0x00000000}},  //   ادی_, _جسے_, _msm_,\n  { {0x68e41ab6, 0x44240093, 0x394b0129, 0x00000000}},  //   faid, _lsm_, _pocs_,\n  { {0x68e421bc, 0xbcfb002a, 0x29000207, 0x00000000}},  //   gaid, bhéa, ggia_,\n  { {0x7d1d021e, 0x672701d5, 0x6d9d0efe, 0x00000000}},  // [db90] mess, _pajj, néam,\n  { {0x7d1d1015, 0x70bb007d, 0x67270066, 0x00000000}},  //   less, _उल्ल, _qajj,\n  { {0xb90508b7, 0x8aa7081e, 0xfad600b6, 0x00000000}},  //   _না_, _юрид, _אותך_,\n  { {0x656200e0, 0x67d50140, 0x00000000, 0x00000000}},  //   ghoh, _пому,   ,\n  { {0x44240035, 0x672701d5, 0x94750014, 0x00000000}},  //   _csm_, _tajj, رگرا,\n  { {0x7d1d0010, 0x44241575, 0x27e93b8c, 0x00000000}},  //   hess, _dsm_, msan_,\n  { {0x07a4008b, 0x7d1d0010, 0x27e91fbc, 0x00000000}},  //   _раён, kess, lsan_,\n  { {0x34950265, 0x442412f0, 0x656200e7, 0x00000000}},  //   _забр, _fsm_, choh,\n  { {0x7d1d0368, 0x27e9006a, 0xa2ca007d, 0x00000000}},  //   dess, nsan_, _स्क्,\n  { {0x6b500039, 0x68e40f0d, 0x6d5f0ede, 0x00000000}},  //   _lägr, zaid, _alqa,\n  { {0x27e904be, 0x44240bca, 0x7c240066, 0x00000000}},  //   hsan_, _zsm_, _ssir,\n  { {0x27e90155, 0x26070061, 0x7d1d2d75, 0x00000000}},  //   ksan_, _हमनी_, gess,\n  { {0x27e90039, 0x68e406aa, 0x75290843, 0x00000000}},  //   jsan_, vaid, _maez,\n  { {0xdb1c005f, 0x68e43b8d, 0x60c90197, 0x00000000}},  //   _özün, waid, lcem,\n  { {0x29000011, 0x7d1d0010, 0x68e4175e, 0x00000000}},  //   tgia_, bess, taid,\n  { {0x60c93b8e, 0x68ef00f6, 0x7c24010e, 0x00000000}},  //   ncem, _cdcd, _tsir,\n  { {0x68e4111c, 0x7c2400e7, 0x27e900e0, 0x00000000}},  // [dba0] raid, _usir, gsan_,\n  { {0x68e4000b, 0x3a2601e1, 0x6d5d0065, 0x00000000}},  //   said, _змог, ërav,\n  { {0xaadb009b, 0x79e800a1, 0x27e90169, 0x00000000}},  //   _מחיר, _توجہ_, asan_,\n  { {0x44240ec1, 0x27e93b8f, 0x2ee50133, 0x00000000}},  //   _psm_, bsan_, half_,\n  { {0x3d12001c, 0xb87b02d5, 0x88bb034e, 0x00000000}},  //   ध्ये_, _veíc, _מזכי,\n  { {0x08770049, 0xf48700a2, 0x7d1d3b90, 0x00000000}},  //   _װעלט_, رانی, zess,\n  { {0x44240146, 0x7d1d0b90, 0x317f0045, 0x00000000}},  //   _wsm_, yess, fnuz_,\n  { {0x44240284, 0x00000000, 0x00000000, 0x00000000}},  //   _tsm_,   ,   ,\n  { {0x7d1d0181, 0x442401a3, 0xd00700ed, 0x00000000}},  //   vess, _usm_, еење_,\n  { {0x7d1d01d6, 0x00000000, 0x00000000, 0x00000000}},  //   wess,   ,   ,\n  { {0x26c70091, 0x6dba01f3, 0x00000000, 0x00000000}},  //   žnog_, _aċar,   ,\n  { {0x63ba3b91, 0x27e90890, 0x61f8016c, 0x00000000}},  //   _hitn, ysan_, mrvl,\n  { {0x7c8400e3, 0x61ea02e1, 0x0ca800e2, 0x00000000}},  //   гуре, lsfl, етри_,\n  { {0x7d1d021e, 0x63ba002b, 0x68ef107b, 0x00000000}},  //   sess, _jitn, _sdcd,\n  { {0x7d1d0010, 0x61ea3b92, 0x63ba01a2, 0x00000000}},  //   pess, nsfl, _mitn,\n  { {0x63ba0007, 0x629a1962, 0x27e91136, 0x00000000}},  //   _litn, _myto, tsan_,\n  { {0x6b500039, 0x00000000, 0x00000000, 0x00000000}},  // [dbb0] _vägr,   ,   ,\n  { {0x27e9049d, 0xb88301dc, 0x61ea0210, 0x00000000}},  //   rsan_, vlíč, ksfl,\n  { {0xf7480025, 0x629a3b93, 0x7ae704eb, 0x00000000}},  //   علمي_, _nyto, majt,\n  { {0x442f027b, 0x27e90066, 0x7ae70142, 0x00000000}},  //   tvg_, psan_, lajt,\n  { {0x63ba0119, 0x2458007e, 0x27e9006b, 0x00000000}},  //   _bitn, наць_, qsan_,\n  { {0x629a2dd6, 0x39490dac, 0xe29900a8, 0x00000000}},  //   _byto, ljas_, мал_,\n  { {0x38690b32, 0x6352025f, 0x629a1f61, 0x00000000}},  //   lzar_, рвју, _cyto,\n  { {0x7ae71db2, 0x56943b94, 0x7777002b, 0x00000000}},  //   hajt, _саст, lixx,\n  { {0x7ae70059, 0x38690211, 0x7ed50088, 0x00000000}},  //   kajt, nzar_, кінч,\n  { {0x7ae70ed8, 0xdb17009d, 0x63ba011c, 0x00000000}},  //   jajt, _fixé, _gitn,\n  { {0x7ae70027, 0xa2ca007d, 0xc3240044, 0x00000000}},  //   dajt, _स्ट्, পাশি_,\n  { {0x2ee50c6b, 0xed5a312f, 0x00000000, 0x00000000}},  //   salf_, фом_,   ,\n  { {0x0d8302dc, 0x644f00f6, 0x7ae73677, 0x00000000}},  //   рлян, _àcid, fajt,\n  { {0x93fa009b, 0x7ae70059, 0xf8bf0068, 0x00000000}},  //   ולשי, gajt, _agé_,\n  { {0x200d2522, 0xbcfb009d, 0x49960ab6, 0x00000000}},  //   ltei_, chéo, вшат,\n  { {0x6d5d0023, 0x8d76009e, 0x00000000, 0x00000000}},  //   ërat, _جاتا,   ,\n  { {0x200d289d, 0x7ae73b95, 0xcc8a0014, 0x00000000}},  // [dbc0] ntei_, bajt, _زنده_,\n  { {0x443801c8, 0x7bfb009b, 0xcb6a0014, 0x00000000}},  //   _čr_, _קפיצ, _آمده_,\n  { {0xb87b008e, 0x63ba074d, 0xd2450014, 0x00000000}},  //   _veía, _ritn, _اچ_,\n  { {0xd9100167, 0x63ba0091, 0x629a0006, 0x00000000}},  //   _دیر_, _sitn, _ryto,\n  { {0xa3dd001c, 0x61ea3774, 0x938a0072, 0x00000000}},  //   थील_, wsfl, мска_,\n  { {0x61ea22f8, 0x61f8012d, 0x00000000, 0x00000000}},  //   tsfl, trvl,   ,\n  { {0xf5060849, 0xd5b20d3a, 0x63ba0d3e, 0x00000000}},  //   _изво, _نفس_, _vitn,\n  { {0x2d540181, 0xc05a0088, 0x63ba3177, 0x00000000}},  //   _mães_, діо_, _witn,\n  { {0x61ea0109, 0x63ba0066, 0x5f94114a, 0x00000000}},  //   ssfl, _titn, лиит,\n  { {0x7d1600b9, 0x63ba01b5, 0x9f53007c, 0x00000000}},  //   _abys, _uitn, ивыч,\n  { {0x7ae70209, 0x3869002b, 0x00000000, 0x00000000}},  //   vajt, zzar_,   ,\n  { {0xc69300a0, 0xdb16000c, 0x7c360146, 0x00000000}},  //   יאת_, _styð, _bryr,\n  { {0x7ae71187, 0x06e80044, 0x6d9d009d, 0x00000000}},  //   tajt, _পানি, néai,\n  { {0x69c30010, 0x10a30088, 0x79860022, 0x00000000}},  //   _ének, _тичн, _ajkw,\n  { {0x7ae70209, 0xda780ae0, 0xe9190088, 0x00000000}},  //   rajt, вят_, нові_,\n  { {0x3f9e0a2d, 0x38693b96, 0x7ae73b97, 0x00000000}},  //   lltu_, tzar_, sajt,\n  { {0x7ae7050f, 0x3949006c, 0x971501ee, 0x00000000}},  // [dbd0] pajt, rjas_, лмац,\n  { {0xf7700380, 0x6d5d00f8, 0x00000000, 0x00000000}},  //   يال_, lksa,   ,\n  { {0x3a840147, 0x5a47007e, 0x7777002b, 0x00000000}},  //   _выяв, _рэпа, rixx,\n  { {0x6d5d01a2, 0xa8a7007e, 0xe0df0082, 0x00000000}},  //   nksa, _аргк, ưòi_,\n  { {0x7ae50004, 0x24893b98, 0x6d5d00bb, 0x00000000}},  //   _keht, çam_, iksa,\n  { {0x42090805, 0x69c50020, 0x2489002b, 0x00000000}},  //   енко_, _kuhe, ħam_,\n  { {0x69c5006c, 0x7ae528e3, 0x6d5d0bdc, 0x00000000}},  //   _juhe, _meht, kksa,\n  { {0x7ae53b99, 0x69c51158, 0x200d00b0, 0x00000000}},  //   _leht, _muhe, ttei_,\n  { {0x69c50023, 0x00000000, 0x00000000, 0x00000000}},  //   _luhe,   ,   ,\n  { {0x200d0c75, 0x7ae500b9, 0x6d5d0944, 0x00000000}},  //   rtei_, _neht, eksa,\n  { {0x200d03c7, 0xfce60175, 0x1d0a005e, 0x00000000}},  //   stei_, лоно, нени_,\n  { {0x200d20c5, 0x7bc40035, 0x657901c3, 0x00000000}},  //   ptei_, _puiu, niwh,\n  { {0xff53007a, 0x00000000, 0x00000000, 0x00000000}},  //   _پخش_,   ,   ,\n  { {0x60db0027, 0xdfcf0014, 0x2d5400c4, 0x00000000}},  //   lbum, _هيچ_, _pães_,\n  { {0x61e100d9, 0x00000000, 0x00000000, 0x00000000}},  //   _jwll,   ,   ,\n  { {0x69c5008d, 0x6d5d0002, 0x98a00166, 0x00000000}},  //   _duhe, cksa, ndić_,\n  { {0x999e0010, 0x7ae50087, 0x2d83012d, 0x00000000}},  // [dbe0] ítő_, _feht, čket_,\n  { {0x64590036, 0x7ae5010f, 0x00000000, 0x00000000}},  //   dywi, _geht,   ,\n  { {0x9bb7009b, 0x69c50009, 0x75d30025, 0x00000000}},  //   _תהיה_, _guhe, ميلا,\n  { {0x64590016, 0x4a7b00a3, 0x00000000, 0x00000000}},  //   fywi, _טריב,   ,\n  { {0x4d7b007b, 0xbebc0089, 0x06e80044, 0x00000000}},  //   ערנע, ldīt, _পাঠি,\n  { {0x69c50022, 0x00000000, 0x00000000, 0x00000000}},  //   _yuhe,   ,   ,\n  { {0x3d0503d7, 0xed610062, 0xa79b009b, 0x00000000}},  //   _वाले_, ážky_, _נשלח,\n  { {0x41542257, 0x41c30025, 0xbcfb00f4, 0x00000000}},  //   рвис, حقيق, thém,\n  { {0xa3cb03d7, 0x68e60521, 0x798404c0, 0x00000000}},  //   _रूप_, _mekd, iniw,\n  { {0x752200ea, 0x141b0049, 0x66e4007d, 0x00000000}},  //   leoz, _אומב, गरिक_,\n  { {0x3eb83b9a, 0x59b40316, 0x7ae50052, 0x00000000}},  //   ärt_, ंगार, _reht,\n  { {0x69c52af8, 0x68e618e1, 0x5c073b9b, 0x00000000}},  //   _ruhe, _nekd, ляга,\n  { {0x6d5d0073, 0x69c5006c, 0x60c20dfc, 0x00000000}},  //   rksa, _suhe, _igom,\n  { {0x69c5021e, 0xdcef001a, 0x0703013d, 0x00000000}},  //   _puhe, fică, _लाइव_,\n  { {0x64590046, 0x69c50065, 0xab5b00c4, 0x00000000}},  //   zywi, _quhe, nqüi,\n  { {0x2608001c, 0x44262dd5, 0x58d5189f, 0x00000000}},  //   ांनी_, kwo_, роат,\n  { {0x7ae53b9c, 0x60c20020, 0xb6060091, 0x00000000}},  // [dbf0] _teht, _mgom, _lišć,\n  { {0x2fc600e0, 0xe8740025, 0x368b0517, 0x00000000}},  //   _muog_, حافظ, нсен_,\n  { {0x57a4041f, 0x60c2016c, 0x00000000, 0x00000000}},  //   сшта, _ogom,   ,\n  { {0x60c23b9d, 0x64590036, 0x89da00a3, 0x00000000}},  //   _ngom, tywi, _שחרי,\n  { {0x44263b9e, 0x672e00ca, 0xbcfb009d, 0x00000000}},  //   gwo_, _fabj, ckée,\n  { {0x64590b35, 0x1b230044, 0x60c20dfc, 0x00000000}},  //   rywi, মাকে_, _agom,\n  { {0x6455006b, 0x44260045, 0x00000000, 0x00000000}},  //   _əziy, awo_,   ,\n  { {0x44260061, 0x672e016c, 0x00000000, 0x00000000}},  //   bwo_, _zabj,   ,\n  { {0x84670265, 0xdb1700f6, 0x60db189b, 0x00000000}},  //   _съве, _així, rbum,\n  { {0x2f5500ed, 0x60c21288, 0x60db28e2, 0x00000000}},  //   ртис, _egom, sbum,\n  { {0xc2c40076, 0xbea5012b, 0x2ca9006b, 0x00000000}},  //   _ايمي, ранк, _azad_,\n  { {0xa3a902fb, 0x518402be, 0x290b0048, 0x00000000}},  //   _गीत_, _луча, _ncca_,\n  { {0x26d100b5, 0x6f0a0045, 0xa3cb007d, 0x00000000}},  //   _ofzo_, _fcfc, _रूम_,\n  { {0x68e63b9f, 0x291901d6, 0x98a20036, 0x00000000}},  //   _sekd, _absa_, _jaką_,\n  { {0x09e601fb, 0x2d8b00f4, 0xb97600ed, 0x00000000}},  //   робн, ébec_, аѓањ,\n  { {0x29190022, 0x3ceb0026, 0x00000000, 0x00000000}},  //   _cbsa_, cacv_,   ,\n\n  { {0x661c012d, 0x7c95007e, 0x00000000, 0x00000000}},  // [dc00] _sprk, _грэц,   ,\n  { {0x7c290095, 0x212f0045, 0x00000000, 0x00000000}},  //   çere, _lagh_,   ,\n  { {0xa9a6007c, 0x59a70309, 0x7a6a0478, 0x00000000}},  //   _винд, _कीवर, _ринг_,\n  { {0x44260046, 0xe45a0057, 0x61fc05fe, 0x00000000}},  //   two_, кже_, _årli,\n  { {0x240701fc, 0xd90d0167, 0xa533007e, 0x00000000}},  //   инци_, _سیل_, ўніч,\n  { {0x44263ba0, 0x60c20197, 0x2ca00145, 0x00000000}},  //   rwo_, _sgom, _myid_,\n  { {0x661c05fa, 0x25bf001a, 0x44260022, 0x00000000}},  //   _uprk, _fiul_, swo_,\n  { {0x1fda0044, 0x00000000, 0x00000000, 0x00000000}},  //   _দিবস,   ,   ,\n  { {0x7f9d00f4, 0x00000000, 0x00000000, 0x00000000}},  //   hèqu,   ,   ,\n  { {0x381700b3, 0x200b0129, 0xc30600f3, 0x00000000}},  //   סקים_, àcia_, _خبرو,\n  { {0x201d01aa, 0xdb1700c4, 0x00000000, 0x00000000}},  //   _epwi_, _lixã,   ,\n  { {0x61430264, 0x60c214a5, 0x2ca00022, 0x00000000}},  //   _меха, _ugom, _byid_,\n  { {0xd0070265, 0x80dd0055, 0x2f180783, 0x00000000}},  //   _вече_, _যাচ্, _боль_,\n  { {0x20040089, 0x271700b9, 0x2ee701a2, 0x00000000}},  //   mumi_, _mění_, _genf_,\n  { {0x20041a99, 0x00000000, 0x00000000, 0x00000000}},  //   lumi_,   ,   ,\n  { {0x644d00b0, 0x00000000, 0x00000000, 0x00000000}},  //   äaik,   ,   ,\n  { {0x2004001e, 0x2d990a59, 0x7d0d03d1, 0x00000000}},  // [dc10] numi_, mose_, _icas,\n  { {0x2d990007, 0x7c2d011c, 0x25bf1a0b, 0x00000000}},  //   lose_, _isar, _siul_,\n  { {0x2004000b, 0xcf9301ce, 0x7c2d0066, 0x00000000}},  //   humi_, קטע_, _hsar,\n  { {0x2004001e, 0x2d99037e, 0xe5700379, 0x00000000}},  //   kumi_, nose_, وطن_,\n  { {0x20040580, 0x68ed3ba1, 0x7d0d0066, 0x00000000}},  //   jumi_, maad, _mcas,\n  { {0xb5c90b03, 0x68ed006c, 0x20043ba2, 0x00000000}},  //   _موسم_, laad, dumi_,\n  { {0x7d0d1d66, 0x2d990006, 0xdb1e0065, 0x00000000}},  //   _ocas, kose_, _sipë,\n  { {0x29090020, 0xbcfb0051, 0x20040197, 0x00000000}},  //   ngaa_, bhéi, fumi_,\n  { {0x2d990211, 0x20040089, 0x656b0051, 0x00000000}},  //   dose_, gumi_, mhgh,\n  { {0x442d08a1, 0x7d0d34cd, 0x1f65007c, 0x00000000}},  //   _ise_, _acas, ском,\n  { {0x442d1978, 0x7c2d01c5, 0x68ed006c, 0x00000000}},  //   _hse_, _asar, kaad,\n  { {0x2004359e, 0x442d0058, 0x01340025, 0x00000000}},  //   bumi_, _kse_, _وعند,\n  { {0x442d38a3, 0x68ed006c, 0x672500ea, 0x00000000}},  //   _jse_, daad, kehj,\n  { {0x6d4b0263, 0xb47a007b, 0x442d0085, 0x00000000}},  //   _ògan, אָלי, _mse_,\n  { {0x2d99007f, 0x442d0bd5, 0x00000000, 0x00000000}},  //   bose_, _lse_,   ,\n  { {0x442d008d, 0x68ed3ba3, 0x2d990133, 0x00000000}},  //   _ose_, gaad, cose_,\n  { {0x69d7022b, 0x442d007f, 0x6d440058, 0x00000000}},  // [dc20] _etxe, _nse_, _inia,\n  { {0x5fdf0067, 0x00000000, 0x00000000, 0x00000000}},  //   पीएल,   ,   ,\n  { {0x442d01aa, 0x6d56014a, 0x68ed2c26, 0x00000000}},  //   _ase_, _koya, baad,\n  { {0x6d563ba4, 0xdb1e01aa, 0xbcfb0051, 0x00000000}},  //   _joya, _sipè, théi,\n  { {0x69dc2a06, 0x6d560145, 0x442d25cf, 0x00000000}},  //   lpre, _moya, _cse_,\n  { {0x442d2635, 0xe1d8007e, 0x20040089, 0x00000000}},  //   _dse_, адкі_, vumi_,\n  { {0x442d0219, 0x69dc053b, 0x27f23481, 0x00000000}},  //   _ese_, npre, lsyn_,\n  { {0xf126103e, 0x4fd40265, 0x6d56005f, 0x00000000}},  //   сько, ожит, _noya,\n  { {0xa49400d3, 0x3e4e006b, 0x27f205fe, 0x00000000}},  //   _بیشت, məti_, nsyn_,\n  { {0x543b007b, 0x160c01f5, 0x6d44005b, 0x00000000}},  //   _געמא, _हमार_, _ania,\n  { {0xeb9f0378, 0x69dc0b9f, 0xa3e4007d, 0x00000000}},  //   ktør_, jpre, भीर_,\n  { {0x656200b0, 0x2d990006, 0x69dc0134, 0x00000000}},  //   nkoh, uose_, dpre,\n  { {0x2d990207, 0x7d0d3ba5, 0x69dc0270, 0x00000000}},  //   rose_, _vcas, epre,\n  { {0x6d4401ee, 0x69dc010f, 0x2d990006, 0x00000000}},  //   _enia, fpre, sose_,\n  { {0x2d99032c, 0x68ed0f81, 0x3e4e006b, 0x00000000}},  //   pose_, taad, kəti_,\n  { {0x6d9d0051, 0x7c2d1fe8, 0x6d56008a, 0x00000000}},  //   réas, _tsar, _goya,\n  { {0xb8d103d7, 0x7c2d3ba6, 0x68ed006c, 0x00000000}},  // [dc30] _ओर_, _usar, raad,\n  { {0x68ed06ad, 0x660504fa, 0x7bdd006c, 0x00000000}},  //   saad, tuhk, mpsu,\n  { {0x442d010e, 0x3e4e006b, 0x68ed0abf, 0x00000000}},  //   _sse_, fəti_, paad,\n  { {0x442d008d, 0xd12604e8, 0x67250190, 0x00000000}},  //   _pse_, _غم_, sehj,\n  { {0xe3b1035b, 0x06e80044, 0x442d088a, 0x00000000}},  //   ورت_, _পারি, _qse_,\n  { {0x442d17fd, 0x31b301f5, 0x6605006c, 0x00000000}},  //   _vse_, ुद्ध, puhk,\n  { {0x3e4e006b, 0x78c80010, 0x00000000, 0x00000000}},  //   bəti_, _ásvá,   ,\n  { {0x442d00c4, 0x34951606, 0xd1b900a1, 0x00000000}},  //   _tse_, _дабр, جاتا_,\n  { {0x442d0038, 0x1aef0044, 0x6d560549, 0x00000000}},  //   _use_, _জানে_, _roya,\n  { {0x2d8b0047, 0x69dc1651, 0x6d56005a, 0x00000000}},  //   ében_, ypre, _soya,\n  { {0x69dc0011, 0x6d560c79, 0xd12e01b2, 0x00000000}},  //   xpre, _poya, رمی_,\n  { {0x69dc0059, 0x6d56006b, 0x3327004a, 0x00000000}},  //   vpre, _qoya, lenx_,\n  { {0x6d56028c, 0x9f350088, 0x6d9d0048, 0x00000000}},  //   _voya, _меді, téar,\n  { {0x3b0a003b, 0xf99f000a, 0x00000000, 0x00000000}},  //   јево_, _akè_,   ,\n  { {0x3e4e006b, 0xa3cb013d, 0x06e80044, 0x00000000}},  //   yəti_, _रूस_, _পালি,\n  { {0xdce40059, 0x6d440016, 0x7aee3ba7, 0x00000000}},  //   _klič, _unia, sabt,\n  { {0x69dc0343, 0x3ff90049, 0xf0b60049, 0x00000000}},  // [dc40] spre, יפּע, ַלער_,\n  { {0xbf8700ad, 0x81df0055, 0xbcfb0010, 0x00000000}},  //   _điện_, _তিন_, nkén,\n  { {0x6b9c06a1, 0x2018001a, 0x316d0010, 0x00000000}},  //   morg, ării_, khez_,\n  { {0x96da0164, 0x6b9c00ea, 0x00000000, 0x00000000}},  //   _प्रॉ, lorg,   ,\n  { {0xc2f30055, 0x65620065, 0x3e4e006b, 0x00000000}},  //   চ্ছি_, rkoh, rəti_,\n  { {0x47c30265, 0x69c300f4, 0x9c8301ca, 0x00000000}},  //   _обяв, _éner, _účel,\n  { {0xe1ef0025, 0x416a003b, 0x00000000, 0x00000000}},  //   نسي_, ијим_,   ,\n  { {0xdced0521, 0x6b9c0b5e, 0xf99f0197, 0x00000000}},  //   _imać, horg, _xkè_,\n  { {0xe5a30242, 0x6b9c0b0b, 0x7f4a0088, 0x00000000}},  //   _цити, korg, аїна_,\n  { {0x25a60016, 0x6b9c0023, 0x00000000, 0x00000000}},  //   llol_, jorg,   ,\n  { {0xe8a70164, 0x81e40044, 0x6b9c01c5, 0x00000000}},  //   _खर्च, ভূজ_, dorg,\n  { {0xd13002fd, 0x316d00f4, 0x3d270088, 0x00000000}},  //   _سمت_, chez_, цьов,\n  { {0x6b9c297d, 0xbcfb0010, 0x0cab0f93, 0x00000000}},  //   forg, bkén, ртни_,\n  { {0xa3b0062e, 0x99d70025, 0x6b9c009d, 0x00000000}},  //   _टीम_, قترا, gorg,\n  { {0x0eba007e, 0x00000000, 0x00000000, 0x00000000}},  //   _туды_,   ,   ,\n  { {0x65a3010e, 0x00000000, 0x00000000, 0x00000000}},  //   põhi,   ,   ,\n  { {0x6b9c0039, 0x26c71187, 0x00000000, 0x00000000}},  // [dc50] borg, žnom_,   ,\n  { {0xd6db0256, 0x5a47008b, 0x6b9c0207, 0x00000000}},  //   рта_, _дэма, corg,\n  { {0xcb1200b3, 0x65690065, 0x7bcd00d6, 0x00000000}},  //   _אלי_, _pleh, _huau,\n  { {0x8aa4007e, 0xa6e30044, 0xd83e089f, 0x00000000}},  //   _юрыд, _পাওয়, ščad_,\n  { {0x7bc53ba8, 0xb4270025, 0x2d8b0051, 0x00000000}},  //   _kihu, تعاو, ince_,\n  { {0x2329026b, 0x3959146c, 0x26080061, 0x00000000}},  //   соки_, _hoss_, ांशी_,\n  { {0xdce40119, 0x7afa009f, 0x96f800ed, 0x00000000}},  //   _slič, ótti, _фест_,\n  { {0x6b9c00b5, 0x657b14a5, 0x645c006b, 0x00000000}},  //   zorg, _umuh, _əriz,\n  { {0x44393ba9, 0x229500a6, 0x6b9c00ea, 0x00000000}},  //   _és_, _کلاس, yorg,\n  { {0x2d8b030a, 0x39591442, 0x316d0010, 0x00000000}},  //   ence_, _loss_, shez_,\n  { {0x80a500a1, 0x443f0161, 0xada6005e, 0x00000000}},  //   _کمشن, _hru_, занл,\n  { {0xbcfb1465, 0x443f01a3, 0x39590145, 0x00000000}},  //   skén, _kru_, _noss_,\n  { {0x7bc5022b, 0x6b9c0039, 0x7bcd008e, 0x00000000}},  //   _bihu, torg, _cuau,\n  { {0x2d8b3baa, 0xd00e0054, 0x7bc50022, 0x00000000}},  //   ance_, _صلى_, _cihu,\n  { {0xbcfb00f4, 0x6b9c0056, 0x7bc5003f, 0x00000000}},  //   thét, rorg, _dihu,\n  { {0x39460958, 0x88ca003b, 0x443f139b, 0x00000000}},  //   ños_, слав_, _oru_,\n  { {0x2d82008d, 0x443f01d5, 0x3b0a003b, 0x00000000}},  // [dc60] mike_, _nru_, _лепо_,\n  { {0x2d820343, 0x7bc51bf2, 0x7c2400c4, 0x00000000}},  //   like_, _gihu, _ipir,\n  { {0x443f006c, 0x6735002b, 0xbcfb009d, 0x00000000}},  //   _aru_, _dazj, phét,\n  { {0x2d820c33, 0xa50a01c0, 0x443f3120, 0x00000000}},  //   nike_, седа_, _bru_,\n  { {0xe80303d7, 0xdce6001e, 0x27ee0224, 0x00000000}},  //   _लिया_, dokļ, álně_,\n  { {0x8c1b012f, 0x68e4022b, 0x27e004cb, 0x00000000}},  //   מוני, lbid, mpin_,\n  { {0x443f0359, 0x69c60010, 0x26ca00ea, 0x00000000}},  //   _eru_, _kike, _igbo_,\n  { {0x68e43bab, 0x443f01bf, 0x2d820d61, 0x00000000}},  //   nbid, _fru_, jike_,\n  { {0x69c633fa, 0x68e43bac, 0x2d823bad, 0x00000000}},  //   _mike, ibid, dike_,\n  { {0x69c624e3, 0x9df800ed, 0x442404be, 0x00000000}},  //   _like, онот_, _ipm_,\n  { {0x69c6021e, 0x2d820065, 0x7c24022b, 0x00000000}},  //   _oike, fike_, _apir,\n  { {0x160d0164, 0x64400387, 0x442401a3, 0x00000000}},  //   ांतर_, _krmi, _kpm_,\n  { {0x442401a3, 0x7bc5006c, 0x2b5a00d4, 0x00000000}},  //   _jpm_, _pihu, _bopc_,\n  { {0x7fb8007a, 0xddda0010, 0x69c61241, 0x00000000}},  //   _بهتر_, sztő, _aike,\n  { {0x44240690, 0x7c240065, 0x69c63bae, 0x00000000}},  //   _lpm_, _epir, _bike,\n  { {0x26d80d69, 0x3f9e1cc7, 0x6da401fc, 0x00000000}},  //   _afro_, lotu_, _пија,\n  { {0xa2bc02fb, 0x69c6020c, 0x39590240, 0x00000000}},  // [dc70] षेत्, _dike, _voss_,\n  { {0x69c61696, 0x3f9e0089, 0x7d1d2f7b, 0x00000000}},  //   _eike, notu_, lfss,\n  { {0x64400065, 0xda670076, 0x6d40009d, 0x00000000}},  //   _armi, _رادي, ômag,\n  { {0x44240f2c, 0x443f01a3, 0x68e41995, 0x00000000}},  //   _bpm_, _pru_, cbid,\n  { {0x98ab000d, 0x240901fb, 0x444500a1, 0x00000000}},  //   _dacă_, інки_, براہ,\n  { {0x2d820213, 0x8c1c01ce, 0x2eee0a3a, 0x00000000}},  //   zike_, צווי, _neff_,\n  { {0x6440010f, 0x442400f6, 0x98ab001a, 0x00000000}},  //   _ermi, _epm_, _facă_,\n  { {0x636f05df, 0xd179008b, 0x443f3baf, 0x00000000}},  //   _sønd, ўскі_, _tru_,\n  { {0x443f3bb0, 0xf2c700d7, 0x4424007f, 0x00000000}},  //   _uru_, _есен, _gpm_,\n  { {0x8af7006b, 0xd00e00a6, 0x6e230022, 0x00000000}},  //   _şənb, گلی_, _ppnb,\n  { {0x7c24121e, 0x2d82008d, 0x442f018e, 0x00000000}},  //   _spir, tike_, lwg_,\n  { {0xd00e00a6, 0xb33c0066, 0x27e00052, 0x00000000}},  //   دلی_, _ikħa, ypin_,\n  { {0xef0e0072, 0x2d821a5d, 0x3f9e047c, 0x00000000}},  //   _им_, rike_, botu_,\n  { {0x69c60047, 0x8e8509ae, 0x2d821583, 0x00000000}},  //   _sike, _огле, sike_,\n  { {0xfaa303e0, 0x69c61583, 0x2d820023, 0x00000000}},  //   варо, _pike, pike_,\n  { {0x2d95008b, 0x140d03d7, 0x57ea005e, 0x00000000}},  //   _прыс, _समूह_, ждам_,\n  { {0x69c6016e, 0x2fc700ab, 0xbcfb00f4, 0x00000000}},  // [dc80] _vike, _king_, phér,\n  { {0x27e00052, 0x69c60f65, 0x68e4002d, 0x00000000}},  //   rpin_, _wike, sbid,\n  { {0x442401a3, 0x7afa000c, 0x00000000, 0x00000000}},  //   _spm_, óttu,   ,\n  { {0x27e00635, 0x3ea73bb1, 0xdb1e00f6, 0x00000000}},  //   ppin_, _mynt_, _hipà,\n  { {0xd24f007a, 0xf4870014, 0x3f8c000c, 0x00000000}},  //   ینه_, واهی, yndu_,\n  { {0x2fc706ba, 0x06e80055, 0x00000000, 0x00000000}},  //   _ning_, _পাকি,   ,\n  { {0x3f9e0119, 0x2eee008a, 0x2d8032e8, 0x00000000}},  //   votu_, _reff_, _omie_,\n  { {0xc034025f, 0x2d920009, 0x44240145, 0x00000000}},  //   ениј, _njye_, _tpm_,\n  { {0x442401a3, 0xdce60006, 0x636f00ea, 0x00000000}},  //   _upm_, likė, _søne,\n  { {0x69de0107, 0x2fcf0186, 0x2d8000f4, 0x00000000}},  //   _otpe, _dugg_, _amie_,\n  { {0xe0da17a4, 0x2fc70343, 0x3f9e09a4, 0x00000000}},  //   _две_, _ding_, rotu_,\n  { {0x3f9e3bb2, 0x7d1d01a2, 0x28de0316, 0x00000000}},  //   sotu_, ufss, _फ्लि,\n  { {0xb87b0047, 0x3f9e0091, 0x7d1d000c, 0x00000000}},  //   _leír, potu_, rfss,\n  { {0x2fc707eb, 0x0a6b05b5, 0x7c3d0190, 0x00000000}},  //   _ging_, орби_, rvsr,\n  { {0x8fa3012b, 0x3ea70016, 0x798d01d6, 0x00000000}},  //   _шаље, _gynt_, tnaw,\n  { {0x69da002a, 0x2fc7001d, 0x798d3bb3, 0x00000000}},  //   ítea, _zing_, unaw,\n  { {0x61f8001c, 0x57b501fc, 0x00000000, 0x00000000}},  // [dc90] hsvl, ебат,   ,\n  { {0x2fc70f10, 0x798d3bb4, 0xb87b3007, 0x00000000}},  //   _xing_, snaw, _beír,\n  { {0xfc3f008e, 0x06e80044, 0x00000000, 0x00000000}},  //   lví_, _পাখি,   ,\n  { {0xceb30097, 0xa4d501fb, 0x46df0309, 0x00000000}},  //   דיע_, ході, _प्रह,\n  { {0xd006002c, 0x2458008b, 0xd6db00ed, 0x00000000}},  //   _حل_, маць_, _мтв_,\n  { {0x442f068a, 0x00000000, 0x00000000, 0x00000000}},  //   rwg_,   ,   ,\n  { {0xd251023c, 0x2fc7066d, 0x7c3a0089, 0x00000000}},  //   انع_, _ring_, ātri,\n  { {0x2fc70007, 0x7af5002d, 0x3cfb013d, 0x00000000}},  //   _sing_, hazt, ्लों_,\n  { {0x160d001c, 0x7af50032, 0x00000000, 0x00000000}},  //   ांवर_, kazt,   ,\n  { {0xa3d4007d, 0xbcfb013e, 0x23790d3a, 0x00000000}},  //   _संत_, lkéh, _عماد_,\n  { {0x2fc700f8, 0x00000000, 0x00000000, 0x00000000}},  //   _ving_,   ,   ,\n  { {0x20020006, 0x2fc70133, 0xc6920097, 0x00000000}},  //   škia_, _wing_, ראט_,\n  { {0x2fc70018, 0xf5390027, 0x3ea7005b, 0x00000000}},  //   _ting_, _mať_, _wynt_,\n  { {0x7af5002d, 0x3ea700ea, 0x00000000, 0x00000000}},  //   gazt, _tynt_,   ,\n  { {0x3f85023a, 0x200d0032, 0xda6604b1, 0x00000000}},  //   milu_, luei_, راسي,\n  { {0x2d8022df, 0x3f850035, 0x2d920009, 0x00000000}},  //   _umie_, lilu_, _ujye_,\n  { {0xa3cb02fb, 0x7af5002d, 0xcc360025, 0x00000000}},  // [dca0] _रंग_, bazt, _أربع,\n  { {0x212d0058, 0xdce60006, 0x00000000, 0x00000000}},  //   heeh_, tikė,   ,\n  { {0x69de02e1, 0x00000000, 0x00000000, 0x00000000}},  //   _utpe,   ,   ,\n  { {0xd6e80055, 0xd9100167, 0x200d0032, 0x00000000}},  //   _পাওয, _خیر_, kuei_,\n  { {0xd4670f09, 0xd90d0167, 0xdce60006, 0x00000000}},  //   нице_, _ذیل_, sikė,\n  { {0xf8af026c, 0x212d00e0, 0x2337007e, 0x00000000}},  //   _چکے_, eeeh_, епшы_,\n  { {0x3f8500d0, 0x31c6004c, 0x00000000, 0x00000000}},  //   dilu_, нсив,   ,\n  { {0x64a6091b, 0xbcfb004f, 0x29123bb5, 0x00000000}},  //   _заба, ckéh, ngya_,\n  { {0x59d203d7, 0x3f8510d9, 0x200d0181, 0x00000000}},  //   _दूसर, filu_, guei_,\n  { {0x68f600fa, 0x3f850032, 0x2907007f, 0x00000000}},  //   hayd, gilu_, ėnai_,\n  { {0x539b00a0, 0x7c360145, 0x00ca0920, 0x00000000}},  //   _ציבו, _asyr, _елек_,\n  { {0xfc3f0224, 0x68f600e7, 0x00000000, 0x00000000}},  //   tví_, jayd,   ,\n  { {0x69da0010, 0x3f850387, 0x00000000, 0x00000000}},  //   íten, bilu_,   ,\n  { {0xdced0066, 0x00000000, 0x00000000, 0x00000000}},  //   _klaċ,   ,   ,\n  { {0x7af5022b, 0x3dc900e0, 0x7ed50088, 0x00000000}},  //   razt, _tiaw_, _річч,\n  { {0x29121233, 0x6c850025, 0x00000000, 0x00000000}},  //   ggya_, _للعم,   ,\n  { {0x6d4d11ad, 0xa8980b81, 0xfcab009e, 0x00000000}},  // [dcb0] _inaa, екту_, _ڈاکو_,\n  { {0x81bc001e, 0x7641000c, 0x00000000, 0x00000000}},  //   _spēl, _ályk,   ,\n  { {0x6d4d0116, 0x394b0082, 0x68f6013f, 0x00000000}},  //   _knaa, _tncs_, bayd,\n  { {0x3f85199a, 0x00000000, 0x00000000, 0x00000000}},  //   zilu_,   ,   ,\n  { {0x5887008b, 0x6d4d1c27, 0x9cd8009b, 0x00000000}},  //   _чына, _mnaa, גודה_,\n  { {0xbcfb01ca, 0x00000000, 0x00000000, 0x00000000}},  //   skéh,   ,   ,\n  { {0xe29600e3, 0x6d4d01bb, 0x3f850213, 0x00000000}},  //   каш_, _onaa, vilu_,\n  { {0x6d4d00e0, 0x200d3bb6, 0x7fd900e2, 0x00000000}},  //   _nnaa, tuei_, мфот_,\n  { {0x3f8504a7, 0xa3d50088, 0x637400d4, 0x00000000}},  //   tilu_, _розч, _bànd,\n  { {0x20030627, 0x6d4d0020, 0x753b1b2c, 0x00000000}},  //   čji_, _anaa, _hauz,\n  { {0x13e608b7, 0xfce601fb, 0x1d0a00ed, 0x00000000}},  //   _নিয়, коно, мени_,\n  { {0xd25600b6, 0x3f850c8a, 0x753b002d, 0x00000000}},  //   _בשעה_, silu_, _jauz,\n  { {0x200d09f7, 0x753b2d1b, 0x317a0049, 0x00000000}},  //   quei_, _mauz, _קאנד,\n  { {0x753b0e07, 0x63a30d0e, 0x68f60190, 0x00000000}},  //   _lauz, nonn, wayd,\n  { {0xfaa601fc, 0x60db0009, 0x00000000, 0x00000000}},  //   таво, ocum,   ,\n  { {0x1c4604b6, 0x63a30016, 0x753b0032, 0x00000000}},  //   _аним, honn, _nauz,\n  { {0x63a30004, 0xf8630131, 0x4c36007e, 0x00000000}},  // [dcc0] konn, авто, _рэйт,\n  { {0x63a33bb7, 0x68f6005d, 0x6d4d016c, 0x00000000}},  //   jonn, sayd, _znaa,\n  { {0x5a961523, 0x68f60058, 0x753b01a2, 0x00000000}},  //   _шриф, payd, _bauz,\n  { {0x753b000d, 0x73e6007e, 0x59830242, 0x00000000}},  //   _cauz, водз, _влюб,\n  { {0x753b075c, 0xf48700a2, 0x00000000, 0x00000000}},  //   _dauz, پانی,   ,\n  { {0x63a307eb, 0x66e3007e, 0xdced0066, 0x00000000}},  //   gonn, _вора, _plaċ,\n  { {0x753b0145, 0x00000000, 0x00000000, 0x00000000}},  //   _fauz,   ,   ,\n  { {0x753b022b, 0x673c08b2, 0xd627245d, 0x00000000}},  //   _gauz, _harj, _шосе_,\n  { {0xb4250355, 0x34a70256, 0x63a30056, 0x00000000}},  //   _معلو, _авто_, bonn,\n  { {0x63a3028c, 0x6d4d07a5, 0x753b0091, 0x00000000}},  //   conn, _snaa, _zauz,\n  { {0x673c2a48, 0x3eaa0030, 0x644200b0, 0x00000000}},  //   _marj, æbt_, lvoi,\n  { {0x673c0023, 0x629a0288, 0x00000000, 0x00000000}},  //   _larj, _ixto,   ,\n  { {0x64420c7e, 0x637400d4, 0x00000000, 0x00000000}},  //   nvoi, _tànd,   ,\n  { {0x636f01e3, 0x65600eb6, 0x6d5f0045, 0x00000000}},  //   _lønn, _lomh, _woqa,\n  { {0x5fb700b6, 0xdced0627, 0x5ec00055, 0x00000000}},  //   _שהוא_, _hlač, _শ্রে,\n  { {0x81bc0089, 0x261c008e, 0x6d4d0020, 0x00000000}},  //   _spēj, dío_, _unaa,\n  { {0x69d82b25, 0x63a3023f, 0xeab000a1, 0x00000000}},  // [dcd0] _éven, yonn, معہ_,\n  { {0x261c008e, 0xf77313d9, 0xdced050f, 0x00000000}},  //   fío_, جار_, _mlač,\n  { {0x673c3bb8, 0x63a30052, 0x636f068f, 0x00000000}},  //   _darj, vonn, _bønn,\n  { {0x65600195, 0x63a31440, 0x00000000, 0x00000000}},  //   _comh, wonn,   ,\n  { {0x6560002a, 0x63a300f4, 0x44290f57, 0x00000000}},  //   _domh, tonn, ïa_,\n  { {0x261c008e, 0x753b00e7, 0x673c0087, 0x00000000}},  //   bío_, _wauz, _garj,\n  { {0x63a3028c, 0xb5950f97, 0x261c0211, 0x00000000}},  //   ronn, _бивш, cío_,\n  { {0xf2df001d, 0x63a300f4, 0xdce40107, 0x00000000}},  //   _đâu_, sonn, _ilić,\n  { {0x60db01a3, 0x38693bb9, 0x63a31339, 0x00000000}},  //   rcum, nyar_, ponn,\n  { {0x2608001c, 0x60db3bba, 0x8fa500e2, 0x00000000}},  //   ांची_, scum, ѓане,\n  { {0x38690022, 0xa3d9013d, 0xfe710439, 0x00000000}},  //   hyar_, _ठंड_, صدد_,\n  { {0xed5a1843, 0x2b460035, 0x645800b4, 0x00000000}},  //   хом_, _şoc_, ścił,\n  { {0x644f0b33, 0xe5360049, 0x00000000, 0x00000000}},  //   _ácid, נטשט_,   ,\n  { {0x50b80014, 0xdcef0089, 0xdee20b11, 0x00000000}},  //   _شدند_, ficē, _лоши,\n  { {0x201f3bbb, 0x00000000, 0x00000000, 0x00000000}},  //   ltui_,   ,   ,\n  { {0x261c0211, 0x673c3373, 0xb88600b9, 0x00000000}},  //   vío_, _sarj, hlíž,\n  { {0x38690047, 0x81bc001e, 0x65600051, 0x00000000}},  // [dce0] gyar_, _spēk, _romh,\n  { {0x636f068f, 0x261c004a, 0x7d040203, 0x00000000}},  //   _sønn, tío_, _hdis,\n  { {0x673c0caa, 0x201f00b0, 0xeef60049, 0x00000000}},  //   _varj, htui_, רמער_,\n  { {0x261c008e, 0x14c80014, 0x38693bbc, 0x00000000}},  //   río_, نهای_, byar_,\n  { {0x673c397d, 0x64421339, 0x752215c7, 0x00000000}},  //   _tarj, uvoi, rfoz,\n  { {0x6442110a, 0x39403bbd, 0x3a3a000a, 0x00000000}},  //   rvoi, ldis_, _kspp_,\n  { {0x65600051, 0xa2260076, 0x644200b0, 0x00000000}},  //   _tomh, ارته, svoi,\n  { {0xdced3bbe, 0x39400004, 0x20020f3a, 0x00000000}},  //   _plač, ndis_, škim_,\n  { {0xb88601ca, 0x637400d4, 0x1f74073b, 0x00000000}},  //   blíž, _cànc, илия,\n  { {0x7d043bbf, 0xdced0e0d, 0x7ccc01c5, 0x00000000}},  //   _adis, _vlač, _mērī,\n  { {0x201f0011, 0x7d040288, 0x00000000, 0x00000000}},  //   atui_, _bdis,   ,\n  { {0xdced01ca, 0x7bd60279, 0x7d04009d, 0x00000000}},  //   _tlač, _buyu, _cdis,\n  { {0x39400066, 0x7d043416, 0x601809b2, 0x00000000}},  //   ddis_, _ddis, _роля_,\n  { {0x25a61cd0, 0x7bd63bc0, 0x200b0027, 0x00000000}},  //   hool_, _duyu, ácie_,\n  { {0x25a6196f, 0xb87b00c4, 0x333e00d4, 0x00000000}},  //   kool_, _ofíc, _matx_,\n  { {0x79a70478, 0x00000000, 0x00000000, 0x00000000}},  //   урге,   ,   ,\n  { {0x2d8b001a, 0x56f500ed, 0x7bd60022, 0x00000000}},  // [dcf0] mice_, ипаѓ, _guyu,\n  { {0x2d8b0209, 0x70d1024c, 0x7c2d028d, 0x00000000}},  //   lice_, _हल्ल, _ipar,\n  { {0x6dbc0046, 0x386904be, 0x394004a5, 0x00000000}},  //   _właś, syar_, bdis_,\n  { {0x2d8b05c5, 0x8af8005f, 0x4a5a009b, 0x00000000}},  //   nice_, _şəxs, _סדרו,\n  { {0x78fa00b6, 0xbcfb0010, 0x333e0982, 0x00000000}},  //   _בפרו, lkés, _batx_,\n  { {0x27e93bc1, 0x2d8b0035, 0x68ed1968, 0x00000000}},  //   mpan_, hice_, lbad,\n  { {0xe4e70099, 0xe0d10054, 0x27e90f18, 0x00000000}},  //   _бізн, يزة_, lpan_,\n  { {0x25a60f07, 0x2d8b0213, 0x68ed0173, 0x00000000}},  //   cool_, jice_, nbad,\n  { {0x2d8b3bc2, 0x69cf0253, 0x316d3bc3, 0x00000000}},  //   dice_, _mice, rkez_,\n  { {0x7af7164f, 0x5f05025f, 0x201f0997, 0x00000000}},  //   _next, јзна, rtui_,\n  { {0x6449009f, 0x201f3bc4, 0x7bd6005d, 0x00000000}},  //   _hrei, stui_, _suyu,\n  { {0x69cf1237, 0x6da601fb, 0x2d8b001a, 0x00000000}},  //   _nice, рима, gice_,\n  { {0x69d7009d, 0x7d040023, 0x7bd6006b, 0x00000000}},  //   _auxe, _vdis, _quyu,\n  { {0x442d1a07, 0xdced002b, 0x2d8b00c4, 0x00000000}},  //   _mpe_, _vjaġ, éber_,\n  { {0x2d8b091d, 0x7529003b, 0x7c2d009d, 0x00000000}},  //   bice_, _obez, _epar,\n  { {0x2d8b037e, 0xf1c6009f, 0x644900f4, 0x00000000}},  //   cice_, _þátt_, _orei,\n  { {0x69cf0198, 0x3940143d, 0x1786142c, 0x00000000}},  // [dd00] _dice, rdis_, агам,\n  { {0x25a60190, 0x4bfb0049, 0x68ed0145, 0x00000000}},  //   wool_, _שליס, abad,\n  { {0x7afc2ac3, 0x25a6267c, 0x442d01a3, 0x00000000}},  //   mart, tool_, _ape_,\n  { {0x6449002a, 0x7afc0051, 0x53e6007e, 0x00000000}},  //   _brei, lart, ацка,\n  { {0x64493bc5, 0x25a60004, 0x69c4010f, 0x00000000}},  //   _crei, rool_, mmie,\n  { {0x200d3bc6, 0x2d8b2443, 0x69c411e8, 0x00000000}},  //   drei_, zice_, lmie,\n  { {0x25a60142, 0x442d002d, 0x6449084b, 0x00000000}},  //   pool_, _epe_, _erei,\n  { {0x64493bc7, 0x7afc0c35, 0x29dc3bc8, 0x00000000}},  //   _frei, hart, _mía_,\n  { {0x64493bc9, 0x7afc3bca, 0x2d8b2256, 0x00000000}},  //   _grei, kart, vice_,\n  { {0x2d8b0046, 0x7afc0f18, 0x69c404ca, 0x00000000}},  //   wice_, jart, hmie,\n  { {0x2d8b000d, 0x7afc002d, 0x3eb802e1, 0x00000000}},  //   tice_, dart, årt_,\n  { {0x7af700fa, 0x7c2d3bcb, 0x200d3285, 0x00000000}},  //   _sext, _ppar, brei_,\n  { {0x2d8b06a6, 0x69cf0198, 0x69d7049a, 0x00000000}},  //   rice_, _rice, _suxe,\n  { {0x7afc0051, 0x69cf01d9, 0xc90f013d, 0x00000000}},  //   gart, _sice, िल्म_,\n  { {0xd90f0167, 0x69cf0197, 0x3f8c002d, 0x00000000}},  //   وید_, _pice, midu_,\n  { {0x29dc0819, 0x3f8c002b, 0x69d70039, 0x00000000}},  //   _día_, lidu_, _vuxe,\n  { {0x7afc0f0d, 0x68ed033b, 0x69cf0b25, 0x00000000}},  // [dd10] bart, rbad, _vice,\n  { {0x7afc0682, 0x69c43bcc, 0x68ed01a2, 0x00000000}},  //   cart, amie, sbad,\n  { {0x27e91896, 0x200201ae, 0x69cf0016, 0x00000000}},  //   span_, ških_, _tice,\n  { {0x64493bcd, 0x27e90039, 0x1959007e, 0x00000000}},  //   _prei, ppan_, _самы_,\n  { {0x798d0093, 0xf956009b, 0x61ea1e28, 0x00000000}},  //   miaw, _הסרת_, epfl,\n  { {0x083a0049, 0x200d0207, 0xe299170a, 0x00000000}},  //   _געשל, vrei_, лал_,\n  { {0x64490016, 0x3f8c1080, 0x00000000, 0x00000000}},  //   _wrei, didu_,   ,\n  { {0x7afc2740, 0x75290036, 0x200d0d87, 0x00000000}},  //   zart, _ubez, trei_,\n  { {0x4499008b, 0x25ad01d5, 0x7afc1fb8, 0x00000000}},  //   _сваю_, _ikel_, yart,\n  { {0x200d064c, 0x02a70264, 0x69c40af8, 0x00000000}},  //   rrei_, _крем, zmie,\n  { {0xbea5013a, 0x69c41ac4, 0x798d008a, 0x00000000}},  //   санк, ymie, kiaw,\n  { {0x7afc0046, 0x200d1f95, 0xc692009b, 0x00000000}},  //   wart, prei_, לאי_,\n  { {0x7afc07ef, 0x3f8c0032, 0xdd12002b, 0x00000000}},  //   tart, bidu_, _iżżi,\n  { {0x3f8c016c, 0x69d80010, 0x79960036, 0x00000000}},  //   cidu_, _évek, wnyw,\n  { {0x7afc023a, 0xf2d2007b, 0x5f740076, 0x00000000}},  //   rart, לעם_, _ظاهر,\n  { {0x7afc0493, 0x29dc3bce, 0xe803013d, 0x00000000}},  //   sart, _vía_, _लिखा_,\n  { {0x69c4001f, 0xab9a03ec, 0x00000000, 0x00000000}},  // [dd20] rmie, _مخدر_,   ,\n  { {0x69c41414, 0x29dc316c, 0x7afc0023, 0x00000000}},  //   smie, _tía_, qart,\n  { {0x671e006e, 0x7d770123, 0x69c40089, 0x00000000}},  //   _पाठक_, _ضمیر_, pmie,\n  { {0x893606b4, 0x3f8c002b, 0x61fc0030, 0x00000000}},  //   _اعدا, zidu_, _ærli,\n  { {0xd5af0076, 0x236501d9, 0x938a0a94, 0x00000000}},  //   رفه_, _bolj_, лска_,\n  { {0xeb9f0030, 0x98a20006, 0xdb070023, 0x00000000}},  //   rsøg_, _sakė_, vojë,\n  { {0x39420004, 0x3f8c01a3, 0x2365001a, 0x00000000}},  //   _kaks_, vidu_, _dolj_,\n  { {0xf5960054, 0x7a430047, 0x61ea010f, 0x00000000}},  //   _الرج, lítá, rpfl,\n  { {0x61ea010f, 0x3f8c05d2, 0x2cb2010e, 0x00000000}},  //   spfl, tidu_, _nyyd_,\n  { {0x200b2b8d, 0x741300f9, 0x39420190, 0x00000000}},  //   ácia_, _روما, _laks_,\n  { {0x3f8c002b, 0x2d990325, 0x39a1007f, 0x00000000}},  //   ridu_, éreo_, lėse_,\n  { {0x3f8c0066, 0x39420058, 0xdb070023, 0x00000000}},  //   sidu_, _naks_, pojë,\n  { {0x39a10006, 0x7a430010, 0x3f8c006c, 0x00000000}},  //   nėse_, kítá, pidu_,\n  { {0xa0070025, 0x7a430010, 0x00000000, 0x00000000}},  //   _اقول_, jítá,   ,\n  { {0x798d04be, 0x7de60426, 0x42db0049, 0x00000000}},  //   tiaw, _استم, רקלע,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xc6f9004c, 0x798d0093, 0xa3d4006e, 0x00000000}},  // [dd30] инах_, riaw, _संग_,\n  { {0x798d3bcf, 0xfb150014, 0x63740082, 0x00000000}},  //   siaw, _بودج, _sànn,\n  { {0x58d5005e, 0x394201a3, 0x798d0022, 0x00000000}},  //   _монт, _faks_, piaw,\n  { {0xdb0701aa, 0x2d990048, 0x39420145, 0x00000000}},  //   wojè, nnse_, _gaks_,\n  { {0x68ff006b, 0x2d991946, 0x637400d4, 0x00000000}},  //   maqd, inse_, _càno,\n  { {0x63aa0016, 0xc5fb13d9, 0xe87c0276, 0x00000000}},  //   gofn, _معرض_, lüşü,\n  { {0xdb1e008d, 0xe3b00025, 0x2365016c, 0x00000000}},  //   _shpë, رره_, _volj_,\n  { {0x212b0428, 0x3fe50805, 0x60090407, 0x00000000}},  //   ých_, ожив, аним_,\n  { {0x44393bd0, 0x3dc0005b, 0x00000000, 0x00000000}},  //   _ès_, _rhiw_,   ,\n  { {0x939701fa, 0x443f0127, 0x2d9900d6, 0x00000000}},  //   _اجرا, _isu_, ense_,\n  { {0x3eb90036, 0x7bc703b1, 0x00000000, 0x00000000}},  //   ęsto_, dmju,   ,\n  { {0x3cca09ae, 0x69d801e6, 0x443f3bd1, 0x00000000}},  //   илно_, _évei, _ksu_,\n  { {0xbcfb0010, 0x7a430010, 0x00000000, 0x00000000}},  //   rkép, yítá,   ,\n  { {0x6f1a001c, 0x2d990250, 0x443f3bd2, 0x00000000}},  //   cgtc, anse_, _msu_,\n  { {0x09e301ee, 0x7a43140f, 0xaa430245, 0x00000000}},  //   досн, vítá, мерл,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6d563bd3, 0xa76600ed, 0xeb9a0364, 0x00000000}},  // [dd40] _inya, окад, _вип_,\n  { {0x47c30088, 0xeab20025, 0x39a10006, 0x00000000}},  //   дбув, _يعد_, vėse_,\n  { {0x7f4300f4, 0x7c26125b, 0x394201aa, 0x00000000}},  //   _manq, ltkr, _taks_,\n  { {0x7a430047, 0x6d44022b, 0x68ff006b, 0x00000000}},  //   sítá, _jaia, caqd,\n  { {0x6d44022b, 0x290004f8, 0x6d560020, 0x00000000}},  //   _maia, maia_, _mnya,\n  { {0x6d44006c, 0x29000032, 0x443f0146, 0x00000000}},  //   _laia, laia_, _dsu_,\n  { {0x443f0006, 0x6d563bd4, 0x26d80059, 0x00000000}},  //   _esu_, _onya, _igro_,\n  { {0x68e40919, 0x29003bd5, 0x443f3bd6, 0x00000000}},  //   ncid, naia_, _fsu_,\n  { {0x6f1a001c, 0x7f4300f4, 0x316600c4, 0x00000000}},  //   tgtc, _banq, _vooz_,\n  { {0x64400f31, 0x543b007b, 0x6d560047, 0x00000000}},  //   _ismi, _דעמא, _anya,\n  { {0x44260198, 0x6d4403c7, 0x00e622a7, 0x00000000}},  //   lto_, _baia, _джен,\n  { {0x65620efc, 0x44260205, 0x2d990026, 0x00000000}},  //   njoh, oto_, unse_,\n  { {0x2900002d, 0x6d4400c4, 0x98b9001a, 0x00000000}},  //   daia_, _daia, _masă_,\n  { {0x442602d5, 0xf413009b, 0x98b9001a, 0x00000000}},  //   ito_, ופש_, _lasă_,\n  { {0x442607e2, 0x6d443af3, 0x195907d0, 0x00000000}},  //   hto_, _faia, бавы_,\n  { {0x26d8027b, 0x44260480, 0x6d44002d, 0x00000000}},  //   _agro_, kto_, _gaia,\n  { {0xd6db00c0, 0x47d50054, 0xe87c0180, 0x00000000}},  // [dd50] ате_, سيار, rüşü,\n  { {0x442626f9, 0x443f08b3, 0x27e60051, 0x00000000}},  //   dto_, _rsu_, íona_,\n  { {0x69da0047, 0xbb3a009b, 0xf99000a1, 0x00000000}},  //   ítet, _העתי, ربہ_,\n  { {0xdcef0089, 0x20040089, 0x98b9001a, 0x00000000}},  //   dicī, ksmi_, _casă_,\n  { {0x764e018e, 0x4426011c, 0x78bd0089, 0x00000000}},  //   _erby, gto_, _uzsv,\n  { {0x93422e00, 0x83880088, 0xa3570379, 0x00000000}},  //   енше, обів_, تخصص,\n  { {0x44260198, 0x443f0606, 0x6440007f, 0x00000000}},  //   ato_, _wsu_, _esmi,\n  { {0xf65200b6, 0x200b00c4, 0x44263bd7, 0x00000000}},  //   _אצל_, ácio_, bto_,\n  { {0x44263bd8, 0xf8b90309, 0x68fd3bd9, 0x00000000}},  //   cto_, _आरोप, _mesd,\n  { {0x6d44002d, 0x657b018d, 0x7f74007e, 0x00000000}},  //   _saia, _hluh, дуюц,\n  { {0x2f5401fb, 0x66050065, 0x65693bda, 0x00000000}},  //   єтьс, nshk, _koeh,\n  { {0xb2ba00b6, 0xd00e00d3, 0x27e00023, 0x00000000}},  //   _המער, خلی_, yqin_,\n  { {0x7f4310af, 0xe6b8007d, 0x65690277, 0x00000000}},  //   _tanq, _अर्ज, _moeh,\n  { {0x7c2601d6, 0x6d440258, 0x62830c1e, 0x00000000}},  //   rtkr, _waia, ozno,\n  { {0xa3d40316, 0x637d2560, 0x6f010059, 0x00000000}},  //   _संघ_, _gène, malc,\n  { {0xb87b0b32, 0x6d560020, 0x6f013bdb, 0x00000000}},  //   _efím, _unya, lalc,\n  { {0x68fd08ec, 0x442600d6, 0x68e422e4, 0x00000000}},  // [dd60] _desd, xto_, rcid,\n  { {0x6f0100ca, 0x68e42838, 0x2900002d, 0x00000000}},  //   nalc, scid, saia_,\n  { {0x44260066, 0x657b3bdc, 0x68e4012d, 0x00000000}},  //   wto_, _bluh, pcid,\n  { {0x4426051b, 0xe45a0088, 0x0566005e, 0x00000000}},  //   tto_, йже_, явен,\n  { {0x44263bdd, 0x6f010059, 0x69de0020, 0x00000000}},  //   uto_, kalc, _hupe,\n  { {0x69de000b, 0x6f0101d9, 0x7afe0065, 0x00000000}},  //   _kupe, jalc, _jept,\n  { {0x442605d3, 0x877b007b, 0xdb1e029d, 0x00000000}},  //   sto_, _פאלי, _hipó,\n  { {0x44260211, 0x1543012b, 0x7afe0091, 0x00000000}},  //   pto_, _песм, _lept,\n  { {0x69de016c, 0x60f7008b, 0x6f01005b, 0x00000000}},  //   _lupe, чныя_, falc,\n  { {0x43860188, 0x7afe01aa, 0x32460072, 0x00000000}},  //   _علاق, _nept, _незг,\n  { {0x62830046, 0x69de02eb, 0x00000000, 0x00000000}},  //   czno, _nupe,   ,\n  { {0x069700b6, 0x00000000, 0x00000000, 0x00000000}},  //   לדים_,   ,   ,\n  { {0x0cab005e, 0x6f010d48, 0x7c3d00bb, 0x00000000}},  //   стни_, balc, uwsr,\n  { {0x9a87092b, 0x6f010375, 0x7f580920, 0x00000000}},  //   публ, calc, _факс_,\n  { {0x27e6002a, 0x69de3bde, 0x7afe00ab, 0x00000000}},  //   íonn_, _cupe, _dept,\n  { {0x3197001a, 0x3da4007e, 0x69de016e, 0x00000000}},  //   tăzi_, _прыб, _dupe,\n  { {0x52d00044, 0x65691607, 0x69de0270, 0x00000000}},  // [dd70] _স্মৃ, _roeh, _eupe,\n  { {0x6569023a, 0x31970035, 0x657b049c, 0x00000000}},  //   _soeh, răzi_, _sluh,\n  { {0xcb12019b, 0x6569000a, 0x636f0030, 0x00000000}},  //   _בלי_, _poeh, _mønt,\n  { {0x66050065, 0x7afe00b9, 0x6f0100ca, 0x00000000}},  //   rshk, _zept, zalc,\n  { {0xd006039d, 0x395900c4, 0xf8b10167, 0x00000000}},  //   _جل_, _inss_, _شکر_,\n  { {0x3949143d, 0x8c1c019b, 0xdb1e00d4, 0x00000000}},  //   ldas_, מודי, _hipò,\n  { {0x6f0101d9, 0x7d0d014a, 0x394910fd, 0x00000000}},  //   valc, _odas, odas_,\n  { {0x7d0d0023, 0x6f010036, 0xc69200a0, 0x00000000}},  //   _ndas, walc, _סאן_,\n  { {0x62830047, 0x3949183d, 0x7bdf0068, 0x00000000}},  //   szno, idas_, _nuqu,\n  { {0x8e09022a, 0x7d0d019a, 0xdb1c080a, 0x00000000}},  //   онов_, _adas, områ,\n  { {0x7afe0129, 0x6da603f3, 0x6f010059, 0x00000000}},  //   _rept, дина, ralc,\n  { {0xcb0900b6, 0x69de00b0, 0xed5a012d, 0x00000000}},  //   _כל_, _rupe, цом_,\n  { {0x7bdf06c2, 0x394907c3, 0x671e0164, 0x00000000}},  //   _cuqu, ddas_, _पालक_,\n  { {0x7d0d0004, 0x39490211, 0x7bdf088a, 0x00000000}},  //   _edas, edas_, _duqu,\n  { {0x636f0190, 0x00000000, 0x00000000, 0x00000000}},  //   _høns,   ,   ,\n  { {0x636f0030, 0x7bd700d4, 0x00000000, 0x00000000}},  //   _køns, _eixu,   ,\n  { {0xdb1e0129, 0x7bd73bdf, 0xb95b0082, 0x00000000}},  // [dd80] _dipò, _fixu, _thìn,\n  { {0xdced0091, 0x39493be0, 0x636f01e3, 0x00000000}},  //   _plać, adas_, _møns,\n  { {0x636f0190, 0xeb9f0374, 0x2b5a00fa, 0x00000000}},  //   _løns, prør_, _inpc_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xeaaf00a1, 0xd467003b, 0x00000000, 0x00000000}},  //   _مٹی_, мице_,   ,\n  { {0x533301fc, 0x68f60030, 0x00000000, 0x00000000}},  //   вешт, lbyd,   ,\n  { {0xd2500426, 0x69d80010, 0x00000000, 0x00000000}},  //   انب_, _éves,   ,\n  { {0x637400d4, 0x636f0146, 0xe97b0049, 0x00000000}},  //   _màni, _bøns, ַניש,\n  { {0x637400d4, 0x03260545, 0x00000000, 0x00000000}},  //   _làni, _одан,   ,\n  { {0x3e4c00b9, 0x39490006, 0x637d00d4, 0x00000000}},  //   _pět_, zdas_, _vènc,\n  { {0x7bdf00f6, 0x4e8a007c, 0x7c36007f, 0x00000000}},  //   _suqu, ющим_, _apyr,\n  { {0xdb0701dc, 0x2b5a0035, 0x636f0146, 0x00000000}},  //   rojí, _anpc_, _føns,\n  { {0x3da4008b, 0x403400c0, 0x68f62dd7, 0x00000000}},  //   трэб, _челс, dbyd,\n  { {0xdb1e01aa, 0x2b5a00fa, 0x60c20232, 0x00000000}},  //   _sipò, _cnpc_, _izom,\n  { {0x7e86013e, 0xdb1e000a, 0x00000000, 0x00000000}},  //   úspě, _pipò,   ,\n  { {0xf770007a, 0xbda70025, 0x7d0d0dfc, 0x00000000}},  //   یال_, _تحتو, _udas,\n  { {0xe8940057, 0x39491b18, 0x2486016c, 0x00000000}},  // [dd90] вать, rdas_, jzom_,\n  { {0x394900e7, 0x2a6e0023, 0xbc380380, 0x00000000}},  //   sdas_, ëmbë_, _آسيا_,\n  { {0xb6070082, 0x68f600d9, 0x261a013d, 0x00000000}},  //   _giớ, bbyd, मूली_,\n  { {0xcdd90049, 0x2a76009b, 0x00000000, 0x00000000}},  //   פֿער, _נערך_,   ,\n  { {0xc91600b6, 0xb60701d5, 0x69cd0190, 0x00000000}},  //   _אחרת_, _suġġ, mmae,\n  { {0x637d000a, 0x8c1c0097, 0xcc78009b, 0x00000000}},  //   _bèna, קווי, ועדה_,\n  { {0xd66901b7, 0xf5270849, 0x60c20258, 0x00000000}},  //   _عمرو_, _офан, _azom,\n  { {0x3f9e0089, 0x7dde0089, 0x69cd005b, 0x00000000}},  //   entu_, _mūsd, nmae,\n  { {0x4f952cf1, 0x659402be, 0xd00e006d, 0x00000000}},  //   ерну, _рату, ملي_,\n  { {0x9e65017f, 0xd3d80014, 0x69cd1575, 0x00000000}},  //   евод, _قبلا_, hmae,\n  { {0x7c36000c, 0xc7b2009b, 0x03d600a0, 0x00000000}},  //   _spyr, רבי_, _נועם_,\n  { {0xf2df001d, 0xf67a0049, 0x636f0056, 0x00000000}},  //   _đây_, פארמ, _tøns,\n  { {0x61e11273, 0x636f06ec, 0x00000000, 0x00000000}},  //   _hull, _uøns,   ,\n  { {0x61e11355, 0x69c6008d, 0x2d820065, 0x00000000}},  //   _kull, _shke, shke_,\n  { {0x61e106b2, 0xfaa3007e, 0xfbc300e2, 0x00000000}},  //   _jull, гаро, убро,\n  { {0x61e108b2, 0xe9d700d7, 0xa967017f, 0x00000000}},  //   _mull, екс_, ниса_,\n  { {0x7d061cf7, 0x61e100bb, 0x68f6022c, 0x00000000}},  // [dda0] maks, _lull, rbyd,\n  { {0x7d060149, 0x4a460088, 0x68f60abb, 0x00000000}},  //   laks, _знов, sbyd,\n  { {0x61e10207, 0x00000000, 0x00000000, 0x00000000}},  //   _null,   ,   ,\n  { {0x84e601e1, 0xee490011, 0x7d060052, 0x00000000}},  //   ходж, _mẽ_, naks,\n  { {0xee490011, 0xf9f20044, 0x61e1004a, 0x00000000}},  //   _lẽ_, _জটিল_, _aull,\n  { {0x61e123e9, 0x7d063be1, 0xa2940245, 0x00000000}},  //   _bull, haks, калі,\n  { {0x61e122d8, 0x60c20047, 0x2d803be2, 0x00000000}},  //   _cull, _szom, _olie_,\n  { {0x61e10016, 0x7d063be3, 0x657931e9, 0x00000000}},  //   _dull, jaks, ckwh,\n  { {0x7d0610f8, 0x290204eb, 0x41c30025, 0x00000000}},  //   daks, _meka_, دقيق,\n  { {0x61e103fa, 0x75220047, 0x2fd8000c, 0x00000000}},  //   _full, lgoz, örg_,\n  { {0x61e1000c, 0x3eb8137b, 0xe0da00ed, 0x00000000}},  //   _gull, ært_, _еве_,\n  { {0x7522000b, 0x29020119, 0x2d800026, 0x00000000}},  //   ngoz, _neka_, _clie_,\n  { {0x61e102ae, 0x79840020, 0xdcbb005e, 0x00000000}},  //   _zull, dhiw, ящо_,\n  { {0x2d80097e, 0x661e3be4, 0x00000000, 0x00000000}},  //   _elie_, kupk,   ,\n  { {0x61e1049a, 0x6d96001e, 0xf9c70ae0, 0x00000000}},  //   _xull, mšan, ещан,\n  { {0xdd9101ef, 0x2902016c, 0xf773007a, 0x00000000}},  //   _خوب_, _ceka_, گار_,\n  { {0x69cd0030, 0x3dc90058, 0x00000000, 0x00000000}},  // [ddb0] rmae, _ihaw_,   ,\n  { {0xf773002c, 0x6da40107, 0x200b0142, 0x00000000}},  //   دار_, nđan, ácii_,\n  { {0xcf93007b, 0x57a401fc, 0x00000000, 0x00000000}},  //   נטע_, ушта,   ,\n  { {0x79841bbd, 0x00000000, 0x00000000, 0x00000000}},  //   chiw,   ,   ,\n  { {0x61e10198, 0x04453be5, 0x6d9618c5, 0x00000000}},  //   _sull, телн, kšan,\n  { {0x6d960059, 0x2902014a, 0x7d06277c, 0x00000000}},  //   jšan, _zeka_, zaks,\n  { {0x85bb05f3, 0x7d0601aa, 0x61e1006b, 0x00000000}},  //   _فارس_, yaks, _qull,\n  { {0x205501f9, 0x61e10f7b, 0xee490011, 0x00000000}},  //   втор, _vull, _rẽ_,\n  { {0xee4900ad, 0x7d0600b0, 0x61e10270, 0x00000000}},  //   _sẽ_, vaks, _wull,\n  { {0x61e1021e, 0x76550046, 0x6d960089, 0x00000000}},  //   _tull, _krzy, gšan,\n  { {0x7d060004, 0xbea5003b, 0x9f0400a1, 0x00000000}},  //   taks, танк, دوپو,\n  { {0xed5703e8, 0xee490011, 0x82340025, 0x00000000}},  //   вою_, _vẽ_, _حركا,\n  { {0x7d06001e, 0x290226bd, 0xfebb00a6, 0x00000000}},  //   raks, _reka_, _کاشت_,\n  { {0x29020205, 0xfaa6279d, 0x00000000, 0x00000000}},  //   _seka_, ваго,   ,\n  { {0x7bce0065, 0x79843be6, 0x290201a3, 0x00000000}},  //   rmbu, thiw, _peka_,\n  { {0x6f0300ab, 0x00000000, 0x00000000, 0x00000000}},  //   _henc,   ,   ,\n  { {0x1b170055, 0x6f0304cb, 0xe8be0061, 0x00000000}},  // [ddc0] দ্ধে_, _kenc, ्धेच,\n  { {0x7d04010f, 0x79840020, 0x29020020, 0x00000000}},  //   _heis, shiw, _weka_,\n  { {0x6f03020c, 0x7d04010a, 0x2902011c, 0x00000000}},  //   _menc, _keis, _teka_,\n  { {0x7de10089, 0x7d040032, 0x00000000, 0x00000000}},  //   _cēsi, _jeis,   ,\n  { {0x7d04001f, 0x394000f6, 0xa82300a1, 0x00000000}},  //   _meis, meis_, _نکلن,\n  { {0x66e6098c, 0xf65100a1, 0x93b3007e, 0x00000000}},  //   _јова, جئے_, абіц,\n  { {0xcb13009b, 0x76550036, 0x00000000, 0x00000000}},  //   בלו_, _grzy,   ,\n  { {0x3940004a, 0x3253005e, 0xd259007e, 0x00000000}},  //   neis_, рвър, эці_,\n  { {0xf993019b, 0x6f031c57, 0x637d00f6, 0x00000000}},  //   ירה_, _benc, _gèno,\n  { {0xd378037e, 0x7f4a006b, 0x39400145, 0x00000000}},  //   _biće_, _qafq, heis_,\n  { {0x7d04001f, 0x8266007a, 0x6d960089, 0x00000000}},  //   _beis, _جهان, ršan,\n  { {0xac190805, 0x7d04016d, 0x6146012b, 0x00000000}},  //   ному_, _ceis, _једа,\n  { {0x6d960089, 0x7d040051, 0x3940008e, 0x00000000}},  //   pšan, _deis, deis_,\n  { {0x6f033be7, 0x394b00f4, 0xd378016c, 0x00000000}},  //   _genc, _sacs_, _fiće_,\n  { {0x9e340057, 0x2e4a005e, 0x2d99009d, 0x00000000}},  //   _сейч, _цяло_, éres_,\n  { {0x7d040090, 0x6f030095, 0x3dc90058, 0x00000000}},  //   _geis, _zenc, _uhaw_,\n  { {0x2d99061f, 0x08550a78, 0x6d5f01d5, 0x00000000}},  // [ddd0] mise_, ываю, _inqa,\n  { {0x76550df0, 0x6d4d011c, 0x7d0400bb, 0x00000000}},  //   _przy, _haaa, _zeis,\n  { {0x3940008e, 0x2d99009d, 0x394b0bb4, 0x00000000}},  //   beis_, oise_, _tacs_,\n  { {0x2d990051, 0xa9790049, 0x6d4f3b8c, 0x00000000}},  //   nise_, _נאָכ, ndca,\n  { {0x6d4d006a, 0x7c2d0066, 0xd91a00b3, 0x00000000}},  //   _maaa, _jqar, _אורל,\n  { {0x76550036, 0x69dd0129, 0x6d4d3756, 0x00000000}},  //   _trzy, _hise, _laaa,\n  { {0x69dd11b7, 0x6f033be8, 0xdb07000c, 0x00000000}},  //   _kise, _renc, lljó,\n  { {0x6f030211, 0x68ed0181, 0x6d4d011c, 0x00000000}},  //   _senc, ncad, _naaa,\n  { {0x2d99006c, 0x6f03020c, 0x3f850016, 0x00000000}},  //   dise_, _penc, thlu_,\n  { {0x7d040004, 0x69dd0563, 0x6d4d3be9, 0x00000000}},  //   _seis, _lise, _aaaa,\n  { {0x6f030181, 0x69dd3bea, 0x7d04001a, 0x00000000}},  //   _venc, _oise, _peis,\n  { {0x69dd01d9, 0x63ad002a, 0x7de800b9, 0x00000000}},  //   _nise, éanf, _těsn,\n  { {0x394002d5, 0x7d0406e8, 0x2eee3beb, 0x00000000}},  //   veis_, _veis, _ffff_,\n  { {0xa09a012f, 0x7d04001f, 0x69dd0051, 0x00000000}},  //   _אינט, _weis, _aise,\n  { {0x7d0422a6, 0x69dd0e7d, 0x81e50044, 0x00000000}},  //   _teis, _bise, বীর_,\n  { {0x2d991c28, 0xd24f007e, 0x69dd1059, 0x00000000}},  //   cise_, сцi_, _cise,\n  { {0x69dd033b, 0x39400dcc, 0x200d0181, 0x00000000}},  // [dde0] _dise, reis_, nsei_,\n  { {0x69dd0270, 0x3940006c, 0x2909016e, 0x00000000}},  //   _eise, seis_, aaaa_,\n  { {0x4b7b0049, 0x69dd0023, 0xd245025a, 0x00000000}},  //   _נאטו, _fise, _بچ_,\n  { {0xc486007c, 0x05ba0879, 0x1a9b0049, 0x00000000}},  //   ллек, ردات_, _טייע,\n  { {0x7bde0ac2, 0x7f410065, 0x6e213bec, 0x00000000}},  //   _kipu, kelq, hulb,\n  { {0x66e3008b, 0x987b0049, 0x2d990023, 0x00000000}},  //   _гора, _טאכט, zise_,\n  { {0x200f00ea, 0xfe6701af, 0x64492005, 0x00000000}},  //   _avgi_, _اد_, _esei,\n  { {0x7bde011c, 0x63a300e0, 0xeb9f0056, 0x00000000}},  //   _lipu, annn, tsøk_,\n  { {0x6d961322, 0x2eee1de2, 0x65600051, 0x00000000}},  //   ršal, _pfff_, _inmh,\n  { {0x1e34007e, 0xdb0e000c, 0x6d4d34d6, 0x00000000}},  //   аноў, albú, _saaa,\n  { {0x2d99006c, 0x6d4d1a7e, 0x7c2d0065, 0x00000000}},  //   tise_, _paaa, _sqar,\n  { {0x2d99018d, 0x7bde0032, 0xf04400a1, 0x00000000}},  //   uise_, _aipu, _نعتی,\n  { {0x2d99008d, 0x69dd0198, 0x7bde0032, 0x00000000}},  //   rise_, _rise, _bipu,\n  { {0x69dd0004, 0x2d990065, 0x6d4d011c, 0x00000000}},  //   _sise, sise_, _waaa,\n  { {0xf0b0026c, 0x69dd037e, 0x7bde3553, 0x00000000}},  //   _دیکھ, _pise, _dipu,\n  { {0xd5a4026c, 0x6d4d3bed, 0x2d990065, 0x00000000}},  //   _رہ_, _uaaa, qise_,\n  { {0x68ed0977, 0x69dd0292, 0xdb070052, 0x00000000}},  // [ddf0] rcad, _vise, tojä,\n  { {0x68ed0219, 0xe8ff028c, 0x7bde022b, 0x00000000}},  //   scad, _août_, _gipu,\n  { {0x78bd01c3, 0xdced04eb, 0x00000000, 0x00000000}},  //   _wysv, _hlađ,   ,\n  { {0xe8ff00f4, 0x54553bee, 0x39a10006, 0x00000000}},  //   _coût_, ивет, kėsi_,\n  { {0x23290331, 0x88990049, 0x2458007e, 0x00000000}},  //   воли_, _סבֿי, лаць_,\n  { {0xe2990517, 0xdced0091, 0x2215034b, 0x00000000}},  //   кал_, _mlađ, афир,\n  { {0x442f06be, 0x45d5007c, 0x00000000, 0x00000000}},  //   stg_, _вовс,   ,\n  { {0x200d0004, 0x644931f0, 0xe8ff00f4, 0x00000000}},  //   tsei_, _tsei, _goût_,\n  { {0x6449021e, 0x6006007e, 0x39a10006, 0x00000000}},  //   _usei, аным_, gėsi_,\n  { {0x38691052, 0x200d0035, 0xcf5929a1, 0x00000000}},  //   ixar_, rsei_, трич_,\n  { {0x02a71123, 0x8d662e54, 0x200d0181, 0x00000000}},  //   _срам, авне, ssei_,\n  { {0x7bde0329, 0x200d0035, 0x00000000, 0x00000000}},  //   _sipu, psei_,   ,\n  { {0x0c230ae0, 0xd378016c, 0x26050061, 0x00000000}},  //   омян, _hića_, हीती_,\n  { {0xc3320049, 0x7df30035, 0x00000000, 0x00000000}},  //   ֿון_, _răsf,   ,\n  { {0x7bde0883, 0xaa46007c, 0xa928013e, 0x00000000}},  //   _vipu, шевл, _nežá,\n  { {0xd3780521, 0x316d11e1, 0x00000000, 0x00000000}},  //   _mića_, njez_,   ,\n  { {0x8c4607ca, 0x7bde0a07, 0x00000000, 0x00000000}},  // [de00] _тепе, _tipu,   ,\n  { {0xf77f00f6, 0x6abe00d9, 0x00000000, 0x00000000}},  //   _puça_, _typf,   ,\n  { {0xdd8f007a, 0xe9df13f3, 0x81ab0044, 0x00000000}},  //   _روی_, _fiú_, _গঠন_,\n  { {0x2bb403d7, 0x14c80014, 0x637400d4, 0x00000000}},  //   ंकवा, ههای_, _rànq,\n  { {0xd4030242, 0x934600ed, 0x00000000, 0x00000000}},  //   оящи, инде,   ,\n  { {0xd3780091, 0xd3b70088, 0x00000000, 0x00000000}},  //   _bića_, алії_,   ,\n  { {0xe81e013d, 0x6da4012d, 0x75d60379, 0x00000000}},  //   यंका_, rđaj, _نيسا,\n  { {0x3952125e, 0x1259009e, 0x59b60061, 0x00000000}},  //   ndys_, اثوں_, ंविर,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x1be10316, 0xd378012d, 0x39520052, 0x00000000}},  //   _गूगल_, _fića_, hdys_,\n  { {0x63b80062, 0x4f67007e, 0xdced04eb, 0x00000000}},  //   movn, ршым_, _slađ,\n  { {0x63b801d9, 0x25a6018e, 0xed65006b, 0x00000000}},  //   lovn, nnol_, _şöbə_,\n  { {0x7d160016, 0x61e8032e, 0x38690066, 0x00000000}},  //   _ddys, _hudl, xxar_,\n  { {0x63b800ee, 0x2cad01d5, 0x00000000, 0x00000000}},  //   novn, ħed_,   ,\n  { {0xb34502d5, 0x224c281f, 0x09071aca, 0x00000000}},  //   leçã, _jsdk_, ичам,\n  { {0x7de1001e, 0x0b270044, 0x61e80066, 0x00000000}},  //   _vēst, য়েল_, _mudl,\n  { {0x63b801d9, 0x26c52086, 0x6b9c0218, 0x00000000}},  // [de10] kovn, _šlo_, birg,\n  { {0x25a60016, 0x38690129, 0x63b80161, 0x00000000}},  //   enol_, rxar_, jovn,\n  { {0x63b809fc, 0xd6db0265, 0x61e8013e, 0x00000000}},  //   dovn, тта_, _nudl,\n  { {0xe945007a, 0x25a600f4, 0x3ed90049, 0x00000000}},  //   _اردی, gnol_, אַנא,\n  { {0xb3450181, 0x00000000, 0x00000000, 0x00000000}},  //   jeçã,   ,   ,\n  { {0x63b807a0, 0x61e800e0, 0xd3780091, 0x00000000}},  //   govn, _budl, _pića_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x016501f9, 0x61e83bef, 0x25a606c0, 0x00000000}},  //   скио, _dudl, cnol_,\n  { {0x637d00f6, 0xdb0e0010, 0x68fb010e, 0x00000000}},  //   _lèni, őkés, _õudu,\n  { {0x23740054, 0x63b80428, 0x443f01d1, 0x00000000}},  //   _والح, covn, _ipu_,\n  { {0x1d0a00e3, 0x61e818bb, 0x69cf0087, 0x00000000}},  //   лени_, _gudl, _ohce,\n  { {0x645b0100, 0x443f023a, 0xf77f00c4, 0x00000000}},  //   _krui, _kpu_, _ouço_,\n  { {0xb34500c4, 0x753b0020, 0x443f0093, 0x00000000}},  //   ceçã, _mbuz, _jpu_,\n  { {0x443f00fa, 0x005600b3, 0x7f850014, 0x00000000}},  //   _mpu_, _לשנת_, _دلتن,\n  { {0x25a6018e, 0x7df3001a, 0xed5a3bf0, 0x00000000}},  //   ynol_, _băse, _бой_,\n  { {0x69cf3bf1, 0xfaa3007e, 0x6b9c0006, 0x00000000}},  //   _chce, часо, sirg,\n  { {0x6d4614d2, 0x8d7600e9, 0x25a60082, 0x00000000}},  // [de20] meka, _ناکا, vnol_,\n  { {0x4b260106, 0x6d461aae, 0x753b3bf2, 0x00000000}},  //   _умов, leka, _abuz,\n  { {0xd946007c, 0xe61a1ab7, 0x443f0052, 0x00000000}},  //   _лени, уде_, _apu_,\n  { {0x645b046a, 0x7df3001a, 0x443f0085, 0x00000000}},  //   _brui, _găse, _bpu_,\n  { {0x29002ca2, 0x443f0011, 0x63b80cce, 0x00000000}},  //   mbia_, _cpu_, tovn,\n  { {0x645b07a9, 0x26050061, 0x443f3bf3, 0x00000000}},  //   _drui, हीही_, _dpu_,\n  { {0x63b80428, 0x645b00b5, 0x443f0085, 0x00000000}},  //   rovn, _erui, _epu_,\n  { {0x6d46037e, 0x63b80a0f, 0xb3450181, 0x00000000}},  //   jeka, sovn, teçã,\n  { {0x6d460056, 0x645b00d4, 0xc953009b, 0x00000000}},  //   deka, _grui, למה_,\n  { {0x69c4001f, 0xb3450181, 0x44262301, 0x00000000}},  //   hlie, reçã, muo_,\n  { {0xdceb0627, 0x69c40f81, 0xc106006d, 0x00000000}},  //   žičn, klie, _هواي,\n  { {0x6d46006c, 0xd00a0cb3, 0x00000000, 0x00000000}},  //   geka, _беде_,   ,\n  { {0x44260119, 0x69c41354, 0x637d00d4, 0x00000000}},  //   nuo_, dlie, _sèni,\n  { {0x69c40ebd, 0x2d8b012d, 0x3e5700e5, 0x00000000}},  //   elie, shce_, _făt_,\n  { {0x3f9e002b, 0x98b001d5, 0x6d463bf4, 0x00000000}},  //   mitu_, _ħaġa_, beka,\n  { {0x69c40198, 0x6d4632a2, 0xada40098, 0x00000000}},  //   glie, ceka, _најл,\n  { {0x61e200c4, 0x44260045, 0x00000000, 0x00000000}},  // [de30] _miol, juo_,   ,\n  { {0x60c200d9, 0x443f0460, 0x61e2185c, 0x00000000}},  //   _myom, _rpu_, _liol,\n  { {0x69c40168, 0x29000207, 0x443f12dd, 0x00000000}},  //   blie, bbia_, _spu_,\n  { {0xd6d8058f, 0x3f9e022b, 0x645b3bf5, 0x00000000}},  //   сту_, hitu_, _prui,\n  { {0x60c20047, 0x44263bf6, 0x3f9e002d, 0x00000000}},  //   _nyom, guo_, kitu_,\n  { {0x6d46195b, 0xe81e00e8, 0xcec300b9, 0x00000000}},  //   zeka, _पिता_, _jiří_,\n  { {0x3f9e36ee, 0x2d8205b7, 0x1dc90061, 0x00000000}},  //   ditu_, ykke_, रतात,\n  { {0x753b0061, 0xa2d501f5, 0x290b2178, 0x00000000}},  //   _ubuz, येष्, _jeca_,\n  { {0x61e20016, 0x44261862, 0xf1b90142, 0x00000000}},  //   _diol, cuo_, roš_,\n  { {0xee390265, 0x3f9e3bf7, 0x69c43bf8, 0x00000000}},  //   ано_, gitu_, zlie,\n  { {0x27e30662, 0x6d46022b, 0xa1190380, 0x00000000}},  //   _mijn_, teka, _نقاط_,\n  { {0x68e2010a, 0x27e300b5, 0x61e20048, 0x00000000}},  //   žodi, _lijn_, _giol,\n  { {0x6d46000b, 0x3f9e08f0, 0xef0e0175, 0x00000000}},  //   reka, bitu_, _ом_,\n  { {0x6d4603f2, 0x61e23bf9, 0x29190066, 0x00000000}},  //   seka, _ziol, _adsa_,\n  { {0x290b0b32, 0x69c401c5, 0x25bf014a, 0x00000000}},  //   _beca_, tlie, _okul_,\n  { {0xddc301e0, 0x69c404a5, 0x798d26c3, 0x00000000}},  //   _общи, ulie, ghaw,\n  { {0x29000065, 0x290b012b, 0x92c50044, 0x00000000}},  // [de40] rbia_, _deca_, _এলো_,\n  { {0x69c427dc, 0x29002048, 0x29190058, 0x00000000}},  //   slie, sbia_, _edsa_,\n  { {0x69c40038, 0xfa6a0930, 0x00000000, 0x00000000}},  //   plie, _танк_,   ,\n  { {0x2e3a007b, 0x4426000b, 0xe45a0175, 0x00000000}},  //   יגענ, tuo_, иже_,\n  { {0x27e300b5, 0x61e200bb, 0x00000000, 0x00000000}},  //   _fijn_, _riol,   ,\n  { {0x44260afb, 0xd7c50061, 0x925a0025, 0x00000000}},  //   ruo_, वतःच, لشعر_,\n  { {0x63ad0195, 0x61e20058, 0x4426007f, 0x00000000}},  //   éana, _piol, suo_,\n  { {0x27e30662, 0x44263bfa, 0xeb9f0056, 0x00000000}},  //   _zijn_, puo_, nsør_,\n  { {0x442600d4, 0x3f9e002d, 0x232a0893, 0x00000000}},  //   quo_, titu_, _вози_,\n  { {0x60c2000b, 0xdfd00379, 0x2d8901d6, 0x00000000}},  //   _vyom, عيد_, _slae_,\n  { {0x0dcb00ed, 0xddc90006, 0x798d04d2, 0x00000000}},  //   иуми_, rydž, yhaw,\n  { {0x3f9e16f0, 0xc05a03e8, 0x200600b4, 0x00000000}},  //   situ_, _вік_, _twoi_,\n  { {0x290b0724, 0x160a0061, 0x2d8901d6, 0x00000000}},  //   _reca_, हीतर_, _vlae_,\n  { {0x33f000d4, 0x00000000, 0x00000000, 0x00000000}},  //   _màx_,   ,   ,\n  { {0xd3780091, 0x3f9c3bfb, 0x27e300bb, 0x00000000}},  //   _moć_, _imvu_, _rijn_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x290b3bfc, 0x27e300b5, 0x798d0145, 0x00000000}},  // [de50] _veca_, _pijn_, rhaw,\n  { {0xd3780091, 0x798d0020, 0x25bf0058, 0x00000000}},  //   _noć_, shaw, _skul_,\n  { {0x6e2801d9, 0x7d0d04be, 0x6d96016e, 0x00000000}},  //   nudb, _keas, ršav,\n  { {0xb8d10044, 0x7bc70203, 0xa927006d, 0x00000000}},  //   _ওর_, llju, _بعده,\n  { {0x7d0d21f3, 0xdb1500b9, 0x39492870, 0x00000000}},  //   _meas, hozí, meas_,\n  { {0x7d0d21f3, 0xceb8010a, 0x394916b8, 0x00000000}},  //   _leas, ngęs_, leas_,\n  { {0xa91b000c, 0xb5a70242, 0x170800a1, 0x00000000}},  //   _alþi, _драй, _ذہنی_,\n  { {0x39490211, 0x7d0d0035, 0x60090931, 0x00000000}},  //   neas_, _neas, бним_,\n  { {0x7bc70295, 0x3dd2018e, 0x00000000, 0x00000000}},  //   klju, _rhyw_,   ,\n  { {0x3949002a, 0x7bc70e0f, 0x637d00d4, 0x00000000}},  //   heas_, jlju, _cènt,\n  { {0x7d0d0f54, 0x39493bfd, 0xed5a0517, 0x00000000}},  //   _beas, keas_, бон_,\n  { {0x7d0d189d, 0x523a0049, 0x00000000, 0x00000000}},  //   _ceas, _לײענ,   ,\n  { {0xd1b800a2, 0x7d0d094e, 0x39490051, 0x00000000}},  //   _بالا_, _deas, deas_,\n  { {0xff5106c6, 0x70520025, 0xdb1c0023, 0x00000000}},  //   _سخت_, _أنوا, morë,\n  { {0xa96a0893, 0x672100b0, 0x3ced016e, 0x00000000}},  //   бива_, _öljy, ževa_,\n  { {0x7d0d0168, 0xfe700025, 0xda1d0061, 0x00000000}},  //   _geas, _جده_, _फिरत_,\n  { {0xa2a202d2, 0xdb1c0065, 0x6d560022, 0x00000000}},  // [de60] _केन्, norë, _iaya,\n  { {0x6d5612d9, 0x7af70197, 0x47c310d6, 0x00000000}},  //   _haya, _gfxt, ебув,\n  { {0x394900c4, 0xf62305a5, 0x6d563bfe, 0x00000000}},  //   beas_, едхо, _kaya,\n  { {0x6d560169, 0x63ad0051, 0x39490325, 0x00000000}},  //   _jaya, éann, ceas_,\n  { {0x6d560760, 0x2912011f, 0xe4e301ff, 0x00000000}},  //   _maya, maya_, нішн,\n  { {0x2912000b, 0x6d56020c, 0xcc3b0049, 0x00000000}},  //   laya_, _laya, מענט,\n  { {0xe1d8007e, 0xe6430256, 0xed61013e, 0x00000000}},  //   одкі_, _перп, ížky_,\n  { {0x7de80224, 0x6d561ebf, 0x29120890, 0x00000000}},  //   _měst, _naya, naya_,\n  { {0x7d0d0038, 0x00000000, 0x00000000, 0x00000000}},  //   _reas,   ,   ,\n  { {0x7d0d0531, 0x291204cb, 0xe7be0164, 0x00000000}},  //   _seas, haya_, ्तिप,\n  { {0x6d5603b0, 0x29120453, 0x7bc70091, 0x00000000}},  //   _baya, kaya_, vlju,\n  { {0x291204cb, 0x6e282311, 0x6d560145, 0x00000000}},  //   jaya_, rudb, _caya,\n  { {0x6d56038c, 0x29120149, 0x515b00a0, 0x00000000}},  //   _daya, daya_, _לכאו,\n  { {0x629c000c, 0x7d0d14f9, 0x00000000, 0x00000000}},  //   _þros, _weas,   ,\n  { {0x7d0d0051, 0x39490051, 0x29120276, 0x00000000}},  //   _teas, teas_, faya_,\n  { {0x2912011c, 0x6d560058, 0x7bc700f8, 0x00000000}},  //   gaya_, _gaya, slju,\n  { {0x394910c9, 0x7bc70091, 0x210000d0, 0x00000000}},  // [de70] reas_, plju, mčič_,\n  { {0x39493bff, 0x04fe0044, 0x00000000, 0x00000000}},  //   seas_, ুলোর_,   ,\n  { {0x29120390, 0x6d560169, 0x3949008e, 0x00000000}},  //   baya_, _yaya, peas_,\n  { {0x7ddf008f, 0x2100221d, 0x29123667, 0x00000000}},  //   _būsi, nčič_, caya_,\n  { {0x63ad2656, 0xf99f0173, 0x00000000, 0x00000000}},  //   éano, _imè_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x91fc0089, 0x00000000, 0x00000000, 0x00000000}},  //   _arāb,   ,   ,\n  { {0x806501e0, 0xdb1c008d, 0x26d10026, 0x00000000}},  //   движ, torë, _izzo_,\n  { {0x3494008b, 0x6d56004a, 0xdb1c00f6, 0x00000000}},  //   _затр, _raya, borè,\n  { {0x6d560127, 0x29120279, 0xdb1c0065, 0x00000000}},  //   _saya, zaya_, rorë,\n  { {0x2912005f, 0x63a33c00, 0xdb1c0023, 0x00000000}},  //   yaya_, minn, sorë,\n  { {0x63a30004, 0x865a0049, 0x656901f3, 0x00000000}},  //   linn, קדרי, _jneh,\n  { {0x62832da3, 0x6d563c01, 0x29120279, 0x00000000}},  //   lyno, _vaya, vaya_,\n  { {0xa3cd02d2, 0x63a3000c, 0x6d5601a3, 0x00000000}},  //   रति_, ninn, _waya,\n  { {0x6d5616c3, 0x29123c02, 0x656900d2, 0x00000000}},  //   _taya, taya_, _oneh,\n  { {0x63a303b6, 0xb33c0066, 0x2c170061, 0x00000000}},  //   hinn, _imħe, _तिचं_,\n  { {0xb9060365, 0x63a303fa, 0x29122b16, 0x00000000}},  // [de80] _पण_, kinn, raya_,\n  { {0x29123c03, 0x65692224, 0x7de8013e, 0x00000000}},  //   saya_, _aneh, _těst,\n  { {0x63a31415, 0x6f1c0181, 0x657b0068, 0x00000000}},  //   dinn, órci, _bouh,\n  { {0x186a3c04, 0xdb150010, 0x00000000, 0x00000000}},  //   _дами_, mozá,   ,\n  { {0x63a33696, 0x00000000, 0x00000000, 0x00000000}},  //   finn,   ,   ,\n  { {0xf6263c05, 0x63a314d6, 0xb33c01f3, 0x00000000}},  //   _одго, ginn, _omħe,\n  { {0xe5a6012d, 0x133900a1, 0x6283060a, 0x00000000}},  //   _живи, ستوں_, gyno,\n  { {0xdb1c0039, 0x22450022, 0x90541984, 0x00000000}},  //   llrä, _dplk_, евиц,\n  { {0xd6b00044, 0xdb1513a5, 0xcf2603ec, 0x00000000}},  //   _করিয, hozá, وردي,\n  { {0xdb150010, 0x44260016, 0xdb1c3c06, 0x00000000}},  //   kozá, mro_, boré,\n  { {0xd12f01fe, 0xdb1c009d, 0x657b0068, 0x00000000}},  //   _их_, coré, _youh,\n  { {0x44260032, 0x7de801aa, 0xd6b00044, 0x00000000}},  //   oro_, vèsè, _করায,\n  { {0x5c74041f, 0x3ced050f, 0x00000000, 0x00000000}},  //   влят, ževo_,   ,\n  { {0x44260917, 0xcf26007a, 0xdfa6023c, 0x00000000}},  //   iro_, _آرشي, _تحصي,\n  { {0x44260016, 0x7c260007, 0x00000000, 0x00000000}},  //   hro_, arkr,   ,\n  { {0xea000011, 0x63a300b5, 0x26d1012d, 0x00000000}},  //   _giật_, zinn, _rzzo_,\n  { {0x777c0065, 0x62830036, 0x44263c07, 0x00000000}},  // [de90] _borx, zyno, jro_,\n  { {0x44260df9, 0x657b3c08, 0x65690142, 0x00000000}},  //   dro_, _souh, _sneh,\n  { {0x63a33514, 0x44263c09, 0xe81b0204, 0x00000000}},  //   vinn, ero_, _फटका_,\n  { {0x63a30a70, 0x4426133c, 0x00000000, 0x00000000}},  //   winn, fro_,   ,\n  { {0x44262d24, 0x63a3000c, 0x62830016, 0x00000000}},  //   gro_, tinn, wyno,\n  { {0x4255025f, 0x395905de, 0x62830a3d, 0x00000000}},  //   етит, _hass_, tyno,\n  { {0x63a3009f, 0xdb0e0b32, 0x44260207, 0x00000000}},  //   rinn, tobú, aro_,\n  { {0x63a30056, 0x3f8e00e7, 0x3cf9013d, 0x00000000}},  //   sinn, _alfu_, ंडों_,\n  { {0x20190047, 0x395900ab, 0x63a303b6, 0x00000000}},  //   ési_, _mass_, pinn,\n  { {0x39590bea, 0x82f80014, 0x00000000, 0x00000000}},  //   _lass_, _قرمز_,   ,\n  { {0xd1310025, 0xed5a01c0, 0x398e000c, 0x00000000}},  //   _مما_, пон_, _lýsa_,\n  { {0x3f8e0020, 0xdb0a0161, 0x9f470023, 0x00000000}},  //   _elfu_, čník, _kinë_,\n  { {0xa28300a1, 0x637400f6, 0x0d830c89, 0x00000000}},  //   _سیکو, _pànx, улян,\n  { {0x207a0049, 0xdce40059, 0xdb150a50, 0x00000000}},  //   _מאנא, _unič, tozá,\n  { {0xfb85008b, 0x6da601e0, 0xada616b6, 0x00000000}},  //   тыўн, _пика, _пакл,\n  { {0x39590197, 0x442617c1, 0xdb15313d, 0x00000000}},  //   _cass_, yro_, rozá,\n  { {0x3959001f, 0xfc320025, 0x777c00d4, 0x00000000}},  // [dea0] _dass_, _صحة_, _porx,\n  { {0x442602d5, 0x777c006b, 0xdc3b009b, 0x00000000}},  //   vro_, _qorx, _צעיר,\n  { {0x39590210, 0x98c0006b, 0x4426005b, 0x00000000}},  //   _fass_, ırıq_, wro_,\n  { {0x442616d5, 0xf651026c, 0x39592fac, 0x00000000}},  //   tro_, گئے_, _gass_,\n  { {0x442608eb, 0x69c600ea, 0x777c00d4, 0x00000000}},  //   uro_, _ikke, _torx,\n  { {0x44262522, 0x779100a6, 0x9f470065, 0x00000000}},  //   rro_, _پیما, _dinë_,\n  { {0x60e5006b, 0x4426007f, 0x6d440036, 0x00000000}},  //   ərmə, sro_, _obia,\n  { {0xd259008b, 0x00000000, 0x00000000, 0x00000000}},  //   ьці_,   ,   ,\n  { {0xf99300b6, 0xcfa60242, 0x3860004a, 0x00000000}},  //   טרה_, ешни, nvir_,\n  { {0x25a63c0a, 0x6d44022b, 0x0fce0044, 0x00000000}},  //   liol_, _abia, রদ্ধ,\n  { {0xdd95008b, 0xbcfb0010, 0x9f4701aa, 0x00000000}},  //   ваны, ndég, _minè_,\n  { {0x25a63c0b, 0xac190259, 0x7bc50022, 0x00000000}},  //   niol_, мому_, _skhu,\n  { {0xdb1c0016, 0x395901e5, 0x00000000, 0x00000000}},  //   gorï, _rass_,   ,\n  { {0x63a1001c, 0x25a6018e, 0x69c600c7, 0x00000000}},  //   _xmln, hiol_, _akke,\n  { {0x395905d8, 0x2d99028c, 0x7ddf0006, 0x00000000}},  //   _pass_, ères_, _būst,\n  { {0x62980f3a, 0x2b5a00f6, 0x00000000, 0x00000000}},  //   izvo, _eapc_,   ,\n  { {0x25a6018e, 0x2bd203d7, 0x6d4f04cb, 0x00000000}},  // [deb0] diol_, _दीवा, meca,\n  { {0x69c6009f, 0x6d4f0046, 0x6d5d0039, 0x00000000}},  //   _ekke, leca, ldsa,\n  { {0x7c2f050a, 0xf77005d4, 0x6d5d109a, 0x00000000}},  //   lucr, حاق_, odsa,\n  { {0x6d5d068f, 0x6d4f0adb, 0x2d8b00b9, 0x00000000}},  //   ndsa, neca, nkce_,\n  { {0x76550df0, 0x29090020, 0x6d5d0116, 0x00000000}},  //   _wszy, mbaa_, idsa,\n  { {0x69cd004e, 0x6d4f00d9, 0x7c3d01a2, 0x00000000}},  //   llae, heca, itsr,\n  { {0x69cd018e, 0x41b5005e, 0x25a60133, 0x00000000}},  //   olae, ксит, biol_,\n  { {0x6d4f0182, 0x6d5d1e2e, 0xe2a80025, 0x00000000}},  //   jeca, jdsa, عاون_,\n  { {0x6d4f1ab5, 0xdc3c0089, 0x6e2801c3, 0x00000000}},  //   deca, ršīg, erdb,\n  { {0xd3780107, 0xf07600a1, 0xa2a20061, 0x00000000}},  //   _biću_, ئیوں_, _केव्,\n  { {0x9f470224, 0x442f0125, 0x2b50006b, 0x00000000}},  //   _jiné_, lug_, _öncə_,\n  { {0xb33c01d5, 0x6d4f1588, 0x7c3d254d, 0x00000000}},  //   _imħa, geca, ftsr,\n  { {0x69cd018e, 0x1fb5003b, 0x5576007b, 0x00000000}},  //   dlae, _искр, דערן_,\n  { {0x6d5d00e0, 0x00000000, 0x00000000, 0x00000000}},  //   adsa,   ,   ,\n  { {0xc332019b, 0x442f16e7, 0x00000000, 0x00000000}},  //   יום_, hug_,   ,\n  { {0x3a25000c, 0x644917e3, 0x6d440022, 0x00000000}},  //   álpa_, _opei, _ubia,\n  { {0x61eb0198, 0x39403c0c, 0xdb1c11c4, 0x00000000}},  // [dec0] _migl, rfis_, lorí,\n  { {0x38600129, 0x442f0093, 0x25a60016, 0x00000000}},  //   rvir_, dug_, wiol_,\n  { {0xe9da012b, 0x443d0061, 0x9f470547, 0x00000000}},  //   _око_, etw_, _ciné_,\n  { {0x2d8000f4, 0x8ab7009b, 0x75890088, 0x00000000}},  //   _joie_, _יהיו_, нсів_,\n  { {0x25a60016, 0x442f0022, 0x69c40c79, 0x00000000}},  //   riol_, gug_, moie,\n  { {0xdceb0243, 0x61eb009d, 0x25a6005b, 0x00000000}},  //   žićn, _aigl, siol_,\n  { {0x61eb1921, 0x2d9201aa, 0x82330025, 0x00000000}},  //   _bigl, _olye_, لريا,\n  { {0x6d4f0129, 0xdb1c1429, 0x2fc70058, 0x00000000}},  //   xeca, norâ, _akng_,\n  { {0x6d4f037e, 0xbcfb009d, 0x61eb0166, 0x00000000}},  //   veca, ndée, _digl,\n  { {0x836a0257, 0x2d920173, 0x31ba0089, 0x00000000}},  //   _تصرف_, _alye_, dīze_,\n  { {0xdb1c0819, 0x61eb0198, 0x6d4f0211, 0x00000000}},  //   gorí, _figl, teca,\n  { {0x6026007e, 0x61eb0197, 0xa1831001, 0x00000000}},  //   _адда, _gigl, _вышл,\n  { {0x20190224, 0x6d5d0056, 0xada4007e, 0x00000000}},  //   ásit_, rdsa, раўл,\n  { {0x8fa301be, 0xdb070065, 0x6d4f003b, 0x00000000}},  //   _каче, mijë, seca,\n  { {0x442f010f, 0x7c2f0efe, 0x2d80009d, 0x00000000}},  //   zug_, sucr, _foie_,\n  { {0xa806014a, 0x69c4002d, 0x7bce0142, 0x00000000}},  //   ktığ, goie, albu,\n  { {0x98a2005f, 0x3dc9006a, 0x69cd010e, 0x00000000}},  // [ded0] _bakı_, _ikaw_, rlae,\n  { {0x3b550069, 0x69cd0755, 0x7f8400f6, 0x00000000}},  //   _скор, slae, _tòqu,\n  { {0x64493bc7, 0xa2a2001c, 0xd00601ef, 0x00000000}},  //   _spei, _केल्, _گل_,\n  { {0xceb300a0, 0x442f01e5, 0xc8840276, 0x00000000}},  //   ביע_, tug_, _bağı_,\n  { {0xd0060151, 0xfc3f002a, 0xef18001e, 0x00000000}},  //   _دل_, ntí_, kaļ_,\n  { {0x442f1b7e, 0x61eb0e7f, 0xdb1c0211, 0x00000000}},  //   rug_, _sigl, yorí,\n  { {0x05bb0070, 0x61eb0197, 0x442f0828, 0x00000000}},  //   _قدرت_, _pigl, sug_,\n  { {0x798d2b5e, 0x61fe0161, 0x2fc70145, 0x00000000}},  //   nkaw, ípla, _skng_,\n  { {0x61eb225f, 0xf94a0049, 0x69da01bb, 0x00000000}},  //   _vigl, געפֿ, ïtei,\n  { {0x2d9900b5, 0xdb1c3c0d, 0x2d80009d, 0x00000000}},  //   ëren_, torí, _soie_,\n  { {0x798d002b, 0x61eb3c0e, 0x2d92000a, 0x00000000}},  //   kkaw, _tigl, _plye_,\n  { {0xed570088, 0xc1050025, 0xd00e00a1, 0x00000000}},  //   гою_, _صوتي, _کلو_,\n  { {0x711a00b6, 0x2d8010ff, 0xdb1c073f, 0x00000000}},  //   _נוספ, _voie_, sorí,\n  { {0xe0d00123, 0x798d00b4, 0x00000000, 0x00000000}},  //   _بزم_, ekaw,   ,\n  { {0x69c42f69, 0xdb1c00fa, 0x00000000, 0x00000000}},  //   toie, torâ,   ,\n  { {0x798d011c, 0x00000000, 0x00000000, 0x00000000}},  //   gkaw,   ,   ,\n  { {0x38660048, 0x69c41a19, 0x79960016, 0x00000000}},  // [dee0] íor_, roie, rhyw,\n  { {0xbcfb009d, 0x79960009, 0x91fc0089, 0x00000000}},  //   rdée, shyw, _brāl,\n  { {0x452a0849, 0x7d160133, 0x69c40585, 0x00000000}},  //   ежен_, _keys, poie,\n  { {0xa806014a, 0xc5160076, 0x49ba01d8, 0x00000000}},  //   ttığ, ابات, _ساجد_,\n  { {0xd87605d4, 0x7d160016, 0xd4670e75, 0x00000000}},  //   _صاحب, _meys, лице_,\n  { {0x39521440, 0x9326007a, 0x7d161ea9, 0x00000000}},  //   leys_, ارشن, _leys,\n  { {0x7dd60010, 0xa8061d83, 0x00000000, 0x00000000}},  //   zása, stığ,   ,\n  { {0xa806011f, 0x7d161402, 0x7df3001a, 0x00000000}},  //   ptığ, _neys, _găsi,\n  { {0x2fc5010f, 0xbfaa025f, 0x351b009b, 0x00000000}},  //   folg_, етне_, _רומנ,\n  { {0xa857009b, 0xa2bf013d, 0x2d8406d3, 0x00000000}},  //   נייה_, _लुक्, ömen_,\n  { {0x39520085, 0x00000000, 0x00000000, 0x00000000}},  //   keys_,   ,   ,\n  { {0x7dd60010, 0x00000000, 0x00000000, 0x00000000}},  //   tása,   ,   ,\n  { {0x5b27132a, 0xdced0066, 0x00000000, 0x00000000}},  //   льва, _inaċ,   ,\n  { {0xfc3f3c0f, 0xbe86035b, 0x7dd63c10, 0x00000000}},  //   rtí_, _مجبو, rása,\n  { {0xfc3f05d2, 0x6f1a05ad, 0xe9190088, 0x00000000}},  //   stí_, matc, кові_,\n  { {0x7d1601e5, 0x39520146, 0x195807d0, 0x00000000}},  //   _geys, geys_, ласы_,\n  { {0x971501e0, 0x2d990051, 0x5efb0061, 0x00000000}},  // [def0] имац, mhse_, लुक्_,\n  { {0x6f1a0095, 0x798d1c2e, 0x00000000, 0x00000000}},  //   natc, skaw,   ,\n  { {0xb8cc02d2, 0x941f006b, 0xb87b0ddb, 0x00000000}},  //   _के_, ərək_, _egíp,\n  { {0x7bc71eca, 0x9542006b, 0x6f1a009d, 0x00000000}},  //   loju, əşkə, hatc,\n  { {0x1b180044, 0x6d5f013f, 0x399e013e, 0x00000000}},  //   _তাতে_, _maqa, růst_,\n  { {0x7bc70089, 0x14a40061, 0x6d5f002b, 0x00000000}},  //   noju, _खेळण, _laqa,\n  { {0x2fc500c7, 0xa806014a, 0xdb1c0321, 0x00000000}},  //   volg_, rtış, norá,\n  { {0x91fc12d1, 0x22ae006b, 0x6d5f3c11, 0x00000000}},  //   _grām, _dək_, _naqa,\n  { {0x7bc70089, 0xd347007a, 0x9f470026, 0x00000000}},  //   koju, _میشه_, _finì_,\n  { {0x6f1a001c, 0xff2500ed, 0x2054005e, 0x00000000}},  //   gatc, јмно, стър,\n  { {0x7bc71a2f, 0x6d5f1347, 0x7d1601e5, 0x00000000}},  //   doju, _baqa, _peys,\n  { {0xfce63c12, 0xc27a08cd, 0x00000000, 0x00000000}},  //   ионо, _ברעי,   ,\n  { {0x7bc70d3d, 0x645b009d, 0x39520052, 0x00000000}},  //   foju, _jsui, veys_,\n  { {0xdee5012b, 0x6f1a001c, 0xdb1c07da, 0x00000000}},  //   _коли, catc, forá,\n  { {0xbea200ed, 0x6d5f0066, 0x395200b0, 0x00000000}},  //   _машк, _faqa, teys_,\n  { {0x667600a6, 0x2d99010f, 0x7dd60010, 0x00000000}},  //   یدار, chse_, máso,\n  { {0x7dd60047, 0x201f1f54, 0x7bc71b05, 0x00000000}},  // [df00] láso, nsui_, boju,\n  { {0x753b001a, 0x27ee000c, 0x661b0036, 0x00000000}},  //   _acuz, öfn_, _łuka,\n  { {0x443f0b32, 0x91fc0089, 0x645b00b0, 0x00000000}},  //   _aqu_, _prām, _asui,\n  { {0x7ddd00d4, 0x00000000, 0x00000000, 0x00000000}},  //   césd,   ,   ,\n  { {0x63aa3c13, 0x290014a6, 0x00000000, 0x00000000}},  //   tifn, mcia_,   ,\n  { {0xb4d603d7, 0xbcfb0051, 0x7dd60010, 0x00000000}},  //   _हरी_, idéa, káso,\n  { {0x2b47011f, 0xd2500025, 0x7ddd0047, 0x00000000}},  //   _önce_, سنة_, lése,\n  { {0x7dd60010, 0xd1300025, 0x7bc73c14, 0x00000000}},  //   dáso, أمة_, zoju,\n  { {0x7df3001a, 0x2900008e, 0xd00700ed, 0x00000000}},  //   _măsu, icia_, аење_,\n  { {0x63ad0ea5, 0x244001aa, 0x65600051, 0x00000000}},  //   éant, mòm_, _hamh,\n  { {0xa3e30316, 0x24400263, 0x29000027, 0x00000000}},  //   नगर_, lòm_, kcia_,\n  { {0x6562008d, 0x65600020, 0xdb1c00c4, 0x00000000}},  //   ndoh, _jamh, vorá,\n  { {0x64423c15, 0x7bc73c16, 0x244001aa, 0x00000000}},  //   ntoi, toju, nòm_,\n  { {0xc0a901f7, 0x6d5f3c17, 0x7ddd0010, 0x00000000}},  //   _حامل_, _waqa, dése,\n  { {0xdced0091, 0x7bc70089, 0x69c0041a, 0x00000000}},  //   _inač, roju, čmen,\n  { {0x637d0263, 0x65600e93, 0x6f1801f3, 0x00000000}},  //   _dèny, _namh, _hevc,\n  { {0x7d1d021e, 0x7bc73c18, 0x673c0085, 0x00000000}},  // [df10] mass, poju, _bcrj,\n  { {0xe7190025, 0xe73301f7, 0xa7740264, 0x00000000}},  //   ايات_, تصر_, олуч,\n  { {0x2126037e, 0xc6a4003b, 0x6f18014a, 0x00000000}},  //   _odoh_, орци, _mevc,\n  { {0x29000198, 0x7d1d00b0, 0x244001aa, 0x00000000}},  //   ccia_, nass, fòm_,\n  { {0x7dd60047, 0x65603c19, 0x29190145, 0x00000000}},  //   záso, _damh, _iesa_,\n  { {0x7d1d00b0, 0xb3c801ff, 0xb4c70061, 0x00000000}},  //   hass, аліз_, _उडी_,\n  { {0xd6e50055, 0x06e50055, 0xe6950054, 0x00000000}},  //   _প্রয, _প্রি, _الأد,\n  { {0x201f0052, 0x753b0279, 0x7d1d0103, 0x00000000}},  //   tsui_, _ucuz, jass,\n  { {0x29190576, 0x644200f4, 0x7d1d00b0, 0x00000000}},  //   _mesa_, ctoi, dass,\n  { {0x7dd60047, 0x2919009f, 0xf2c7013b, 0x00000000}},  //   táso, _lesa_, _ксен,\n  { {0x7d1d010f, 0x201f0181, 0x7ddd0047, 0x00000000}},  //   fass, ssui_, zése,\n  { {0x7d1d0010, 0x29190016, 0x7dd60010, 0x00000000}},  //   gass, _nesa_, ráso,\n  { {0x515a009b, 0x7c2900ca, 0x6d460546, 0x00000000}},  //   _תכנו, šern, rfka,\n  { {0x3b95025f, 0x394b0386, 0x442f0048, 0x00000000}},  //   ојст, _abcs_, irg_,\n  { {0x244001aa, 0x29190065, 0xf8bf13f6, 0x00000000}},  //   zòm_, _besa_, _axé_,\n  { {0xe9df001d, 0x7ddd0047, 0x2919097c, 0x00000000}},  //   _chú_, tése, _cesa_,\n  { {0x29000027, 0x291904fa, 0x4ca60055, 0x00000000}},  // [df20] rcia_, _desa_, _গুরু,\n  { {0x65603c1a, 0x29000198, 0x869a0ceb, 0x00000000}},  //   _samh, scia_, лтет_,\n  { {0x2e23014a, 0x244001aa, 0xd7ef0025, 0x00000000}},  //   nıf_, wòm_, ركم_,\n  { {0xdb1c09f7, 0x63140044, 0x6442089e, 0x00000000}},  //   forç, _সাইট_, ttoi,\n  { {0xfe67007a, 0xf3f10082, 0x6fc701f5, 0x00000000}},  //   _کد_, _bị_, रकां,\n  { {0x6442089e, 0x7d1d2c3e, 0x7c2400e7, 0x00000000}},  //   rtoi, zass, _mvir,\n  { {0x64423c1b, 0x7d0438fc, 0x442f3284, 0x00000000}},  //   stoi, _ofis, arg_,\n  { {0x15430cee, 0x7c240059, 0x60f8005e, 0x00000000}},  //   _несм, _ovir, шния_,\n  { {0x7d1d0943, 0x6f1800ca, 0x6e230146, 0x00000000}},  //   vass, _pevc, _avnb,\n  { {0x7d041111, 0x7d1d31c1, 0x442400bb, 0x00000000}},  //   _afis, wass, _ivm_,\n  { {0x7d1d0010, 0x7ddd0010, 0x8266023c, 0x00000000}},  //   tass, vésb, _دهان,\n  { {0x44240193, 0xc69301ce, 0x7c2401f3, 0x00000000}},  //   _kvm_, פאר_, _bvir,\n  { {0x7d1d00f2, 0x29193c1c, 0x442400f8, 0x00000000}},  //   rass, _resa_, _jvm_,\n  { {0x7d040169, 0x29190065, 0x7c240006, 0x00000000}},  //   _efis, _sesa_, _dvir,\n  { {0x7d1d02ae, 0xe9df001d, 0x29190020, 0x00000000}},  //   pass, _phú_, _pesa_,\n  { {0x61fa011f, 0x00000000, 0x00000000, 0x00000000}},  //   _mutl,   ,   ,\n  { {0x29190052, 0x6d4d027f, 0x7c2401ee, 0x00000000}},  // [df30] _vesa_, _ibaa, _gvir,\n  { {0xba55025f, 0x61fa00ab, 0x6fdd00f4, 0x00000000}},  //   _двој, _outl, pèce,\n  { {0xd6db003b, 0xe9df3c1d, 0x29190197, 0x00000000}},  //   ута_, _thú_, _tesa_,\n  { {0x9b4500a1, 0x2e3b0049, 0x442f211e, 0x00000000}},  //   _انھو, רגאנ, trg_,\n  { {0x442f00f4, 0x29d72c6f, 0x442400c4, 0x00000000}},  //   urg_, nçam_, _cvm_,\n  { {0x61fa04bd, 0x4424012d, 0x420900ed, 0x00000000}},  //   _butl, _dvm_, анко_,\n  { {0xe2990265, 0x38693c1e, 0xdb1c00c4, 0x00000000}},  //   рай_, lvar_, sorç,\n  { {0x80dd01f5, 0xdb1c00c4, 0x3949005b, 0x00000000}},  //   _परदे, porç, nfas_,\n  { {0x3869005f, 0x76450e42, 0x00000000, 0x00000000}},  //   nvar_, lthy,   ,\n  { {0x6d4d0061, 0xd00e00a2, 0xf8aa0049, 0x00000000}},  //   _abaa, کلی_, יספֿ,\n  { {0x7c240091, 0x7645018e, 0x6d4d0045, 0x00000000}},  //   _svir, nthy, _bbaa,\n  { {0xe2940049, 0x7645005b, 0x00000000, 0x00000000}},  //   _צװײ_, ithy,   ,\n  { {0x29d71052, 0x06b00044, 0x7dd60a50, 0x00000000}},  //   rçal_, _করছি, lásk,\n  { {0x69cf0046, 0x200d237d, 0x76450065, 0x00000000}},  //   _akce, mpei_, kthy,\n  { {0x75290667, 0x79862bcd, 0x7d04002b, 0x00000000}},  //   _odez, _pokw, _tfis,\n  { {0x3946008b, 0x7d040020, 0x7c240006, 0x00000000}},  //   ўнаг, _ufis, _tvir,\n  { {0x3f87011f, 0x66093a59, 0x76450016, 0x00000000}},  // [df40] _konu_, _čeka, ethy,\n  { {0x2d820ce4, 0x69cf3c1f, 0x75290035, 0x00000000}},  //   ljke_, _ekce, _adez,\n  { {0x2b583c20, 0x4c0500a2, 0x3f870087, 0x00000000}},  //   merc_, _وظیف, _monu_,\n  { {0x61fa1fdb, 0x44240997, 0x8936004b, 0x00000000}},  //   _rutl, _pvm_, _بعدا,\n  { {0x29120dfc, 0x1957009b, 0x00000000, 0x00000000}},  //   mbya_, _ובכל_,   ,\n  { {0x69d60010, 0x366a007e, 0x44240146, 0x00000000}},  //   llye, _каго_, _vvm_,\n  { {0xd627005e, 0xe297003b, 0x1dca0061, 0x00000000}},  //   _море_, жај_, रवात,\n  { {0xfbc20044, 0x399c0051, 0x00000000, 0x00000000}},  //   োগিত, _físe_,   ,\n  { {0x3f87012d, 0xdced0066, 0x44240b77, 0x00000000}},  //   _bonu_, _ilaħ, _uvm_,\n  { {0x7dd60010, 0xff98012b, 0x3f98000c, 0x00000000}},  //   lásh, ској_, óru_,\n  { {0xb7db007b, 0x614601e1, 0x4106007e, 0x00000000}},  //   שקיי, _межа, _дзев,\n  { {0xdced0066, 0xbcfb009d, 0x00000000, 0x00000000}},  //   _jlaħ, rdéo,   ,\n  { {0x7b670589, 0x6eca0183, 0xed58007e, 0x00000000}},  //   отве, _सुरु, цоў_,\n  { {0x7645018e, 0xa00701d8, 0x29d707c2, 0x00000000}},  //   ythy, _بقول_, rçam_,\n  { {0x69d60302, 0x61e20c35, 0x8f9b009b, 0x00000000}},  //   flye, _khol, _דיגי,\n  { {0x6fd400f6, 0x38690095, 0x00000000, 0x00000000}},  //   dàci, tvar_,   ,\n  { {0xbcfb049a, 0x61e20051, 0x39490904, 0x00000000}},  // [df50] ndém, _mhol, rfas_,\n  { {0x386906c2, 0xe94500e9, 0x2b58001a, 0x00000000}},  //   rvar_, _کردی, cerc_,\n  { {0xd5750373, 0x3869004e, 0x61e237b2, 0x00000000}},  //   зуль, svar_, _ohol,\n  { {0x7645018e, 0xbc6800a6, 0x61e201f3, 0x00000000}},  //   rthy, _امین_, _nhol,\n  { {0xa8790049, 0xa3d60061, 0x00000000, 0x00000000}},  //   _האָר, सतं_,   ,\n  { {0x61e2002d, 0x57f4007c, 0x7dd60010, 0x00000000}},  //   _ahol, _опят, tásk,\n  { {0x61e20048, 0xdb150010, 0x9608007e, 0x00000000}},  //   _bhol, lozó, _мэта_,\n  { {0xd24e0380, 0x3f87005d, 0x98ab0279, 0x00000000}},  //   اني_, _sonu_, _hacı_,\n  { {0x25ad3c21, 0x00000000, 0x00000000, 0x00000000}},  //   _imel_,   ,   ,\n  { {0xee39017a, 0x3f9e0846, 0x25bf032e, 0x00000000}},  //   бно_, ghtu_, _hjul_,\n  { {0x59bd0164, 0x61e20051, 0x25bf00ea, 0x00000000}},  //   ्कार, _fhol, _kjul_,\n  { {0x61e23c22, 0xdb150010, 0x00000000, 0x00000000}},  //   _ghol, kozó,   ,\n  { {0xea00001d, 0x61e9365c, 0x7dd600c4, 0x00000000}},  //   _biết_, mmel, nási,\n  { {0x61e93c23, 0x398e000c, 0x2d82012d, 0x00000000}},  //   lmel, _lýst_, sjke_,\n  { {0x09e602e9, 0xeab200a1, 0xea000082, 0x00000000}},  //   зовн, رٹر_, _diết_,\n  { {0x61e902ae, 0xf2d20049, 0x3dd60044, 0x00000000}},  //   nmel, געל_, _সংকল,\n  { {0x61e93396, 0x29120058, 0x98ab28fc, 0x00000000}},  // [df60] imel, rbya_, _bacı_,\n  { {0x7c2602d8, 0xea000011, 0x61e908e8, 0x00000000}},  //   mskr, _giết_, hmel,\n  { {0xd90d026c, 0xeab20647, 0xbafb009b, 0x00000000}},  //   _چیف_, _سعد_, _להיש,\n  { {0x6f1c0036, 0x7dd60325, 0x00000000, 0x00000000}},  //   órcz, fási,   ,\n  { {0x7c2605d1, 0x61e90030, 0x938a2473, 0x00000000}},  //   nskr, dmel, йска_,\n  { {0x61e23c24, 0x5334007c, 0x78a40107, 0x00000000}},  //   _shol, фект, mziv,\n  { {0x61e23c25, 0x9f47021e, 0x2365050f, 0x00000000}},  //   _phol, _minä_, _dalj_,\n  { {0xb6bb009b, 0x7c2600f8, 0x61e9149f, 0x00000000}},  //   _הצלי, kskr, gmel,\n  { {0x7df4000d, 0x7bce01d6, 0x7dd6004a, 0x00000000}},  //   _răsp, kobu, cási,\n  { {0x08e90055, 0x61e200ab, 0x7bc1016c, 0x00000000}},  //   টুকু_, _whol, čluk,\n  { {0x44260576, 0x61e20016, 0xa3c90164, 0x00000000}},  //   lso_, _thol, ईवर_,\n  { {0x3f9e008d, 0x44260cdd, 0x7c26021f, 0x00000000}},  //   shtu_, oso_, fskr,\n  { {0x44260555, 0x7c26000c, 0x29f801ee, 0x00000000}},  //   nso_, gskr, _očas_,\n  { {0x442601c5, 0x200b3c26, 0x78a41ae3, 0x00000000}},  //   iso_, ície_, dziv,\n  { {0xea0000ad, 0x7ac40517, 0xbef701b7, 0x00000000}},  //   _viết_, есте, _عروض_,\n  { {0x44260006, 0x7c260036, 0xb33c0066, 0x00000000}},  //   kso_, bskr, _imħu,\n  { {0xea00001d, 0x91fc001e, 0x00000000, 0x00000000}},  // [df70] _tiết_, _krās,   ,\n  { {0x4c9c009b, 0x7bce0116, 0x442600d9, 0x00000000}},  //   _לבחו, cobu, dso_,\n  { {0x44263c27, 0xcf930049, 0x6e3a00f8, 0x00000000}},  //   eso_, עטע_, nutb,\n  { {0x3ea1006c, 0xfa5600a1, 0x00000000, 0x00000000}},  //   _ühte_, _کریگ,   ,\n  { {0xf8c1013d, 0x44260058, 0xe4cb0167, 0x00000000}},  //   _एशिय, gso_, حبان_,\n  { {0x7dd63c28, 0xf41000a1, 0xc79900a1, 0x00000000}},  //   rási, اؤن_, _بھرا_,\n  { {0x61e9014a, 0x7d060039, 0x44263c29, 0x00000000}},  //   tmel, ycks, aso_,\n  { {0xd9e3013d, 0xdb0e0115, 0x6009007c, 0x00000000}},  //   _कीमत_, ribé, оним_,\n  { {0x7ddd0010, 0x8fa50887, 0x31660288, 0x00000000}},  //   tésn, дапе, _daoz_,\n  { {0x61e93c2a, 0x91fc0089, 0x7c260056, 0x00000000}},  //   smel, _prāt, vskr,\n  { {0xdb1c0027, 0x9f5f009d, 0x00000000, 0x00000000}},  //   porú, nqué_,   ,\n  { {0x61360279, 0x9f4700b0, 0x50b501ee, 0x00000000}},  //   rülü, _sinä_, _ослу,\n  { {0x91aa00a1, 0x4c83005e, 0xd7bf0061, 0x00000000}},  //   _بننے_, вляв, ्वाच,\n  { {0x9fb5005f, 0x6d410010, 0x799d00d9, 0x00000000}},  //   dəçi_, őlap, _alsw,\n  { {0x7c260056, 0x00000000, 0x00000000, 0x00000000}},  //   sskr,   ,   ,\n  { {0xe9da0822, 0x7c26000c, 0x44260016, 0x00000000}},  //   іка_, pskr, yso_,\n  { {0x7bce012d, 0x798405cd, 0x6d440288, 0x00000000}},  // [df80] pobu, rjiw, _icia,\n  { {0x1b180055, 0x799d00d9, 0x799601c3, 0x00000000}},  //   _তাকে_, _elsw, skyw,\n  { {0xe8fa0920, 0x9f5f04bd, 0x29f80062, 0x00000000}},  //   _млн_, rquè_, _včas_,\n  { {0x4426021e, 0xe57a0930, 0x6fd400f6, 0x00000000}},  //   tso_, юзе_, làct,\n  { {0x44261395, 0x045a0025, 0xea000082, 0x00000000}},  //   uso_, تجات_, _khắt_,\n  { {0x4426081d, 0xa3a803d7, 0x9a2500a1, 0x00000000}},  //   rso_, खों_, _تعین,\n  { {0x4426024e, 0x6fdd0129, 0x38600016, 0x00000000}},  //   sso_, tècn, lwir_,\n  { {0x6d440061, 0x32530265, 0x6143003b, 0x00000000}},  //   _ncia, твър, већа,\n  { {0x3940006c, 0xcfaa0025, 0x27f800ca, 0x00000000}},  //   igis_, قادم_, _kirn_,\n  { {0x83fd0047, 0x187b009b, 0xada40036, 0x00000000}},  //   _erős, קטיב, óźni,\n  { {0x6fd40129, 0x0737009b, 0xa3cb0061, 0x00000000}},  //   dàct, ואים_, ळकर_,\n  { {0x6d440197, 0x6e3a00d8, 0x00000000, 0x00000000}},  //   _ccia, rutb,   ,\n  { {0xdb05002a, 0x50e202f4, 0x6e3a1d43, 0x00000000}},  //   _amhá, _परिष, sutb,\n  { {0x2124002a, 0x6e3a0009, 0xbcfb0051, 0x00000000}},  //   lamh_, putb, idéi,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x21240195, 0x75200047, 0x6f0d016c, 0x00000000}},  //   namh_, _nemz, _đaci,\n  { {0x6d5d023a, 0xa3ce01f5, 0x00000000, 0x00000000}},  // [df90] mesa, रवा_,   ,\n  { {0x6d5d033b, 0xd6db17da, 0x399c000c, 0x00000000}},  //   lesa, оте_, _vísa_,\n  { {0x19950878, 0xa53500ed, 0xfbdf00c4, 0x00000000}},  //   _заня, енеч, ntêm_,\n  { {0x6d5d01aa, 0x9f5f3c2b, 0x39400bd3, 0x00000000}},  //   nesa, rqué_, cgis_,\n  { {0x92bb0044, 0x6f0a00ea, 0x9f5f009d, 0x00000000}},  //   _ঘরে_, _offc, squé_,\n  { {0x6d5d0020, 0xd7c90014, 0x7dd604e7, 0x00000000}},  //   hesa, _روزه_, lást,\n  { {0xf99f01aa, 0x6d5d01a3, 0x26d81238, 0x00000000}},  //   _klè_, kesa, _gyro_,\n  { {0x2d9900b5, 0x6d5d3762, 0x7dd63c2c, 0x00000000}},  //   jkse_, jesa, nást,\n  { {0x6d5d023a, 0x00000000, 0x00000000, 0x00000000}},  //   desa,   ,   ,\n  { {0x6d442820, 0x2d9900c7, 0x1e850140, 0x00000000}},  //   _scia, ekse_, елом,\n  { {0x6d5d00c4, 0xf99f0026, 0x65690146, 0x00000000}},  //   fesa, _olè_, _kaeh,\n  { {0x6d5d010f, 0x38600016, 0x00000000, 0x00000000}},  //   gesa, ywir_,   ,\n  { {0xbdf9026c, 0x7c3d006c, 0xdb0700b0, 0x00000000}},  //   _کرتا_, gusr, kijä,\n  { {0x2d99095a, 0x12d10044, 0xf99f3c2d, 0x00000000}},  //   akse_, াধীদ, _alè_,\n  { {0x6d5d0169, 0x6fd40129, 0xc3320097, 0x00000000}},  //   besa, ràct, טום_,\n  { {0x6d5d3c2e, 0x2d9901c3, 0x7dd60010, 0x00000000}},  //   cesa, ckse_, tásu,\n  { {0x26de0119, 0x394006aa, 0xea000011, 0x00000000}},  // [dfa0] _što_, rgis_, _thắt_,\n  { {0x290b0066, 0x443d00bb, 0x1a550026, 0x00000000}},  //   _efca_, duw_, ìììì,\n  { {0xf99f01aa, 0x443d00b5, 0xbb3b0049, 0x00000000}},  //   _flè_, euw_, _צעטי,\n  { {0x2909001c, 0xdce40bf8, 0x7bdc00f8, 0x00000000}},  //   ccaa_, _laič, llru,\n  { {0x7dd60010, 0xc95300b3, 0x00000000, 0x00000000}},  //   láss, _גמר_,   ,\n  { {0xdb1c000c, 0x6d5d1858, 0x326601ee, 0x00000000}},  //   fnré, zesa, етив,\n  { {0x3afb007b, 0x66e3003b, 0x9f4e0026, 0x00000000}},  //   פּגע, _бора, _rifà_,\n  { {0xea00001d, 0x2449000c, 0xdcf6000a, 0x00000000}},  //   _nhật_, búm_, _anyč,\n  { {0x6d5d339c, 0xd5ad00a1, 0x82fa00a6, 0x00000000}},  //   vesa, _بہن_, _فراز_,\n  { {0x200b3c2f, 0x6e980fc0, 0x21240051, 0x00000000}},  //   ícia_, двор_, samh_,\n  { {0x6d5d00d6, 0xdd9105f3, 0x70540014, 0x00000000}},  //   tesa, لود_, رنگا,\n  { {0x29d70129, 0x7c3d017b, 0xea000082, 0x00000000}},  //   nçat_, tusr, _chật_,\n  { {0x2d9900bb, 0x6d4f1595, 0x48c40044, 0x00000000}},  //   rkse_, rfca, ্ধুর,\n  { {0xcf260025, 0x6d5d01a3, 0x09d90061, 0x00000000}},  //   _أرشي, sesa, ढत्य,\n  { {0x7dd63c30, 0x6d5d033b, 0xdb0e008e, 0x00000000}},  //   tást, pesa, cibí,\n  { {0x3f8e0020, 0x67250022, 0x5c7519a2, 0x00000000}},  //   _hofu_, wahj, _алит,\n  { {0xdb150023, 0x7d0d3c31, 0x7dd60142, 0x00000000}},  // [dfb0] nizë, _ifas, rást,\n  { {0x7c2d1263, 0xd12600a1, 0x00000000, 0x00000000}},  //   _ivar, _ھم_,   ,\n  { {0x7c2d3c32, 0xc7c402b8, 0x67250065, 0x00000000}},  //   _hvar, усти, rahj,\n  { {0x7c2d0292, 0x7dd60010, 0x7d0d0066, 0x00000000}},  //   _kvar, lásr, _jfas,\n  { {0x7d0d002b, 0x7c2d002b, 0x7f410009, 0x00000000}},  //   _mfas, _jvar, yglq,\n  { {0x644b0bc7, 0x7c2d0023, 0x00000000, 0x00000000}},  //   rtgi, _mvar,   ,\n  { {0x644b00f8, 0xfc3f0051, 0xdce402c3, 0x00000000}},  //   stgi, huí_, _raič,\n  { {0x96f80893, 0x7c2d0838, 0x00000000, 0x00000000}},  //   _чест_, _ovar,   ,\n  { {0xa156003b, 0x29d700c4, 0x7dd60010, 0x00000000}},  //   тању_, lças_, záss,\n  { {0x02a70216, 0x7d0d0181, 0x442d0133, 0x00000000}},  //   _прем, _afas, _ive_,\n  { {0x6da6017f, 0x29d702d5, 0xa3c0001c, 0x00000000}},  //   вина, nças_, ीवर_,\n  { {0x80d30044, 0xdb0e004a, 0x7bdc00ea, 0x00000000}},  //   দেষ্, ribí, wlru,\n  { {0xb87b0047, 0xfc3f3c33, 0xdb0500f8, 0x00000000}},  //   _szín, guí_, _omhä,\n  { {0x316d0d48, 0x4fe80088, 0x7dd60010, 0x00000000}},  //   ldez_, _змін_, táss,\n  { {0xea00001d, 0x7d0d0016, 0x7f5600e2, 0x00000000}},  //   _thật_, _ffas, _рајс_,\n  { {0x442d0119, 0x316d00f4, 0x7d1b009f, 0x00000000}},  //   _ove_, ndez_, ðust,\n  { {0x6d560061, 0x39460089, 0x316d0325, 0x00000000}},  // [dfc0] _ibya, ļos_, idez_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x4b370049, 0xfaa602e9, 0x442d2172, 0x00000000}},  //   _בריל_, _рано, _ave_,\n  { {0xf8bf0129, 0x63a101e5, 0x25a00048, 0x00000000}},  //   _adéu_, _alln, óil_,\n  { {0x29d71052, 0x69c600d9, 0x24540025, 0x00000000}},  //   rçat_, _ijke, انتس,\n  { {0x442d0cce, 0x57250025, 0x61e4002b, 0x00000000}},  //   _dve_, _مرفق, ċilm,\n  { {0x63a10009, 0x442d114e, 0xdb1c29b3, 0x00000000}},  //   _dlln, _eve_, loró,\n  { {0xd1300025, 0x7dd60010, 0xdb150023, 0x00000000}},  //   حمة_, zásr, tizë,\n  { {0x0326008b, 0x660904a5, 0x4fd400e3, 0x00000000}},  //   _адзн, _čeki, лжит,\n  { {0x29d70d42, 0x6d560173, 0x7d0d237d, 0x00000000}},  //   nçar_, _abya, _sfas,\n  { {0xc7b3009b, 0xb14602dc, 0x7ddd0d95, 0x00000000}},  //   שבת_, _анел, lési,\n  { {0x25a61665, 0x63b800b9, 0xfc3f0ddb, 0x00000000}},  //   nhol_, livn, tuí_,\n  { {0x4fc60265, 0x3f8e17cf, 0x403405f6, 0x00000000}},  //   _иска, _tofu_, _селс,\n  { {0xc0e30001, 0x6d560a5f, 0x09bd0204, 0x00000000}},  //   _точк, _ebya, ्क्य,\n  { {0x75fa0224, 0x7ddd00f4, 0x6fdd0bf2, 0x00000000}},  //   _různ, hési, dèch,\n  { {0x7c2d0a76, 0x39a4072b, 0x7d0d3c34, 0x00000000}},  //   _tvar, ашув, _ufas,\n  { {0xfc3f029a, 0xdb1c0c56, 0x8b0800b4, 0x00000000}},  // [dfd0] quí_, goró, _stęż,\n  { {0x7ddd009d, 0x995c07e4, 0x7c290079, 0x00000000}},  //   dési, _víš_, šers,\n  { {0x442d0119, 0xd6db00ed, 0x63b80091, 0x00000000}},  //   _sve_, фта_, divn,\n  { {0x2d8b0e00, 0x29d700c4, 0xceb300b3, 0x00000000}},  //   njce_, rças_, סיף_,\n  { {0x7ddd0285, 0x236c000a, 0x43950f62, 0x00000000}},  //   gési, _badj_, ладс,\n  { {0x63b80945, 0xe6130137, 0xbcfb0010, 0x00000000}},  //   givn, _نشر_, ldés,\n  { {0x42520025, 0x00000000, 0x00000000, 0x00000000}},  //   منور,   ,   ,\n  { {0x45d50001, 0x200b02d5, 0x25a63c35, 0x00000000}},  //   _собс, ício_, chol_,\n  { {0x316d00f4, 0x659401e0, 0x7bd5199f, 0x00000000}},  //   rdez_, _тату, kozu,\n  { {0xea000011, 0x645b002d, 0x9f8501ee, 0x00000000}},  //   _giặt_, _ipui, угод,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xea000011, 0x399c0161, 0x00000000, 0x00000000}},  //   _nhạt_, _písm_,   ,\n  { {0xa3c701f5, 0x6e3a00d9, 0x645b00f6, 0x00000000}},  //   _उदा_, artb, _jpui,\n  { {0xd00e06ea, 0xf1b90213, 0xfc03007c, 0x00000000}},  //   _على_, liš_, спро,\n  { {0x32053c36, 0xfaa3007e, 0x15f5007d, 0x00000000}},  //   _july_, баро, ेदार_,\n  { {0xdb1c0036, 0x63b8016e, 0xf1b90091, 0x00000000}},  //   toró, zivn, niš_,\n  { {0xa2da001c, 0x57ea00c0, 0xfc320025, 0x00000000}},  // [dfe0] _पुन्, едам_, _احب_,\n  { {0xf8bf00f6, 0x6d460190, 0x00000000, 0x00000000}},  //   _adés_, lgka,   ,\n  { {0x25a60016, 0x29d71396, 0x7c223c37, 0x00000000}},  //   thol_, rçar_, _çorb,\n  { {0x6d461451, 0xb5da01b7, 0xf1b90213, 0x00000000}},  //   ngka, رباء_, jiš_,\n  { {0x2d800046, 0x69c43221, 0xf1b90c1e, 0x00000000}},  //   _mnie_, mnie, diš_,\n  { {0x69c409a4, 0x62983c38, 0x7ddd009d, 0x00000000}},  //   lnie, tyvo, rési,\n  { {0x63b80039, 0x25a6063f, 0x645b3c39, 0x00000000}},  //   rivn, phol_, _epui,\n  { {0xc03400e1, 0x69c4101a, 0xe5a3003b, 0x00000000}},  //   аниј, nnie, _лиси,\n  { {0x80dc0044, 0xf993009b, 0x69c401a2, 0x00000000}},  //   মেন্, מרה_, inie,\n  { {0xbcfb0010, 0x69c418d5, 0x6562010e, 0x00000000}},  //   zdés, hnie, leoh,\n  { {0xf1b90059, 0x69c4000c, 0x9d19007e, 0x00000000}},  //   biš_, knie, конт_,\n  { {0x69c406ed, 0x69d60133, 0xe7eb013d, 0x00000000}},  //   jnie, joye, _जीना_,\n  { {0x69c409a0, 0x2d921de0, 0x00000000, 0x00000000}},  //   dnie, _doye_,   ,\n  { {0x765c1ea2, 0x69c41031, 0x7f96009d, 0x00000000}},  //   _opry, enie, _pâqu,\n  { {0xea000011, 0x9f4700b9, 0x7bd50ce2, 0x00000000}},  //   _phạt_, _jiný_, rozu,\n  { {0x69c40a77, 0x89a7026c, 0x3915005e, 0x00000000}},  //   gnie, اھدہ_, рмар,\n  { {0xbcfb0047, 0x7bd53c3a, 0xa3e4006e, 0x00000000}},  // [dff0] rdés, pozu, नता_,\n  { {0x3f9e3c3b, 0x7c2f0e98, 0xf1b90825, 0x00000000}},  //   nktu_, mscr, ziš_,\n  { {0x69c43221, 0x645b0250, 0x6da400a2, 0x00000000}},  //   bnie, _spui, _ضمیم,\n  { {0x9967005c, 0x7e6a0061, 0xd6d80088, 0x00000000}},  //   _стол, _msfp, уту_,\n  { {0xf1b90c1e, 0x7c2f0b25, 0xd46900ec, 0x00000000}},  //   viš_, nscr, тиле_,\n  { {0x6fdd0129, 0x7c2f0026, 0x386b0026, 0x00000000}},  //   pèci, iscr, _iscr_,\n  { {0xfe09001d, 0xf1b90091, 0x7c3d01a2, 0x00000000}},  //   _mắc_, tiš_, hrsr,\n  { {0x798d027e, 0xfe090011, 0x349500d7, 0x00000000}},  //   njaw, _lắc_, _кабр,\n  { {0x20060011, 0x78ad15e1, 0xb33c0066, 0x00000000}},  //   _cuoi_, nzav, _ilħn,\n  { {0x69c43c3c, 0x81bc001e, 0x442f0009, 0x00000000}},  //   znie, _svēt, msg_,\n  { {0xf1b9003b, 0x672701d5, 0x69c40036, 0x00000000}},  //   piš_, _mejj, ynie,\n  { {0x81bc0089, 0x9f5c000a, 0x00000000, 0x00000000}},  //   _dvēs, _livè_,   ,\n  { {0x69d6028c, 0x2d920263, 0xfe09001d, 0x00000000}},  //   voye, _voye_, _bắc_,\n  { {0x69c40046, 0xb92b0011, 0x442f0544, 0x00000000}},  //   wnie, _thuỷ_, isg_,\n  { {0x69c409a2, 0x69d600f4, 0xc9b601fc, 0x00000000}},  //   tnie, toye, асањ,\n  { {0x7c2f1e53, 0x2d80013e, 0x394b0544, 0x00000000}},  //   bscr, _unie_, _cccs_,\n\n  { {0x69c4028c, 0xe8fa005e, 0x7d041bf2, 0x00000000}},  // [e000] rnie, тла_, _igis,\n  { {0x69c4001e, 0x998d0bf8, 0x61e4002b, 0x00000000}},  //   snie, češ_, ċili,\n  { {0x672701d5, 0x443d0036, 0x69c421bf, 0x00000000}},  //   _dejj, erw_, pnie,\n  { {0x1e56007b, 0x7c240009, 0x6607012d, 0x00000000}},  //   ישער_, _kwir, _dujk,\n  { {0x7ddd3c3d, 0x9f4f008e, 0x99980006, 0x00000000}},  //   mést, _jugó_, strų_,\n  { {0xd25a06e1, 0x6727002b, 0x7c2421a4, 0x00000000}},  //   вци_, _gejj, _mwir,\n  { {0x20060198, 0xfe67004b, 0x7d04012d, 0x00000000}},  //   _suoi_, _بد_, _ogis,\n  { {0x20060198, 0xa2da0201, 0x74160445, 0x00000000}},  //   _puoi_, _पुण्, _نورا,\n  { {0x2006028c, 0x64a30887, 0x7e780009, 0x00000000}},  //   _quoi_, _дата, _srvp,\n  { {0x20060207, 0x7d0411c6, 0x66000cfd, 0x00000000}},  //   _vuoi_, _agis, _himk,\n  { {0x78ad0197, 0x7c2f0050, 0xfe090011, 0x00000000}},  //   zzav, wscr, _rắc_,\n  { {0x20063c3e, 0xfe09001d, 0x7c2f0270, 0x00000000}},  //   _tuoi_, _sắc_, tscr,\n  { {0xa2da007d, 0x98a2000a, 0x29de0016, 0x00000000}},  //   _पुत्, _bekč_, nïau_,\n  { {0x09b1001c, 0x69c800f4, 0x7c2f0051, 0x00000000}},  //   ीच्य, éden, rscr,\n  { {0xff1700b6, 0x9f3700b3, 0x7c2f0a89, 0x00000000}},  //   _דקות_, _כנגד_, sscr,\n  { {0x4efb009b, 0x442f0016, 0x78ad00d4, 0x00000000}},  //   _בלוג, ysg_, tzav,\n  { {0x7c24018e, 0xfe090011, 0x225e0093, 0x00000000}},  // [e010] _gwir, _tắc_, _lptk_,\n  { {0x78ad0091, 0x7c223b1c, 0x7dc80095, 0x00000000}},  //   rzav, _çora, hısl,\n  { {0x17f80025, 0x41d6013d, 0x995c093f, 0x00000000}},  //   شركة_, डकास, _síť_,\n  { {0xeef70104, 0x7bc70059, 0x6607012d, 0x00000000}},  //   במבר_, lnju, _vujk,\n  { {0x44240016, 0x55520123, 0x7bc70168, 0x00000000}},  //   _cwm_, سپور, onju,\n  { {0xfc3f002a, 0x9cd800b6, 0x3949006c, 0x00000000}},  //   irí_, בודה_, lgas_,\n  { {0x356b0153, 0x92640025, 0x38693c3f, 0x00000000}},  //   _иран_, قديم, lwar_,\n  { {0x3949010a, 0xe7eb013d, 0x00000000, 0x00000000}},  //   ngas_, _जीता_,   ,\n  { {0x394901c5, 0x44243c40, 0x00000000, 0x00000000}},  //   igas_, _gwm_,   ,\n  { {0xf8b2009b, 0x399c000c, 0x225e0022, 0x00000000}},  //   פשי_, _vísi_, _fptk_,\n  { {0x9f470129, 0x69dd23b5, 0x59c70164, 0x00000000}},  //   _sinó_, _okse, रचार,\n  { {0xcb09009b, 0xfc3f01e5, 0x2b5a00c4, 0x00000000}},  //   _טל_, frí_, _sbpc_,\n  { {0xfc3f0129, 0x9f4701aa, 0x752900d9, 0x00000000}},  //   grí_, _dinò_, _meez,\n  { {0x386909e2, 0xdb1c0065, 0x39490d94, 0x00000000}},  //   dwar_, mirë, egas_,\n  { {0x68e3005f, 0xfaa300ed, 0x3a990088, 0x00000000}},  //   əndi, паро, аттю_,\n  { {0x39490039, 0x0906007e, 0xf2d20049, 0x00000000}},  //   ggas_, спан, פען_,\n  { {0xea0000ad, 0x660028bc, 0x25bd005b, 0x00000000}},  // [e020] _nhất_, _rimk, diwl_,\n  { {0x69dd0292, 0xe8f70175, 0x3949007f, 0x00000000}},  //   _ekse, слу_, agas_,\n  { {0x44240016, 0x44d4001a, 0x7ddd009d, 0x00000000}},  //   _swm_, _sπ_, céss,\n  { {0x99860054, 0x7ddd0010, 0x00000000, 0x00000000}},  //   _الحو, lésr,   ,\n  { {0xea00001d, 0x75290068, 0x00000000, 0x00000000}},  //   _chất_, _deez,   ,\n  { {0x29de0016, 0xd5b20123, 0x69c1009d, 0x00000000}},  //   rïau_, _کفر_, élev,\n  { {0x3164001c, 0xa7a70088, 0x29de0016, 0x00000000}},  //   temz_, _укра_, sïau_,\n  { {0xdb1c0065, 0x914a01ee, 0x7529297d, 0x00000000}},  //   firë, учка_, _geez,\n  { {0x7ddd0010, 0xd0071e8a, 0x00000000, 0x00000000}},  //   zéss, бење_,   ,\n  { {0xc3220055, 0x752900bb, 0x9f4700f6, 0x00000000}},  //   _নাকি_, _zeez, _sinò_,\n  { {0x8c000044, 0x11d6041f, 0x39490006, 0x00000000}},  //   ্ঠান_, _людя, ygas_,\n  { {0x69c80047, 0xc693009b, 0xdb0500c4, 0x00000000}},  //   édel, לאת_, _ilhé,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7ddd0010, 0xfc3f1ad4, 0x00000000, 0x00000000}},  //   téss, rrí_,   ,\n  { {0x0f57012e, 0xfe090011, 0x3d950242, 0x00000000}},  //   _היום_, _hắn_, _микр,\n  { {0x39490006, 0x3869000a, 0x7ddd1152, 0x00000000}},  //   ugas_, twar_, réss,\n  { {0xa2da02f4, 0x39490211, 0x23ab0030, 0x00000000}},  // [e030] _पुस्, rgas_, _høje_,\n  { {0x386901d6, 0xfe090011, 0x39490058, 0x00000000}},  //   rwar_, _mắn_, sgas_,\n  { {0x38691575, 0x00000000, 0x00000000, 0x00000000}},  //   swar_,   ,   ,\n  { {0x69dd3c41, 0xea000082, 0x76450022, 0x00000000}},  //   _ukse, _phất_, ruhy,\n  { {0xf1c90082, 0xfe090082, 0x00000000, 0x00000000}},  //   hạc_, _nắn_,   ,\n  { {0x752902c2, 0xe29901e0, 0x80dc013d, 0x00000000}},  //   _weez, иал_, _पड़े,\n  { {0xa189007c, 0x25600173, 0x23ab0190, 0x00000000}},  //   ибка_, _bčlč_, _nøje_,\n  { {0xea00001d, 0xfe090011, 0xdb1c0065, 0x00000000}},  //   _thất_, _bắn_, tirë,\n  { {0xfe090011, 0xae03013d, 0x249200ea, 0x00000000}},  //   _cắn_, _रंजन_, øymt_,\n  { {0x5334005e, 0x23ab0190, 0x00000000, 0x00000000}},  //   _неут, _bøje_,   ,\n  { {0x93880175, 0x236731f8, 0xdb1c0065, 0x00000000}},  //   _уста_, menj_, sirë,\n  { {0x82d6007b, 0x7d090006, 0x6e3c0010, 0x00000000}},  //   _וועג_, žesn, árba,\n  { {0x22470047, 0xfe090011, 0x399c01dc, 0x00000000}},  //   lunk_, _gắn_, _míst_,\n  { {0xbea503dc, 0x98a2001e, 0xf1c90082, 0x00000000}},  //   _малк, _nekā_, bạc_,\n  { {0x22470010, 0x23ab0146, 0x00000000, 0x00000000}},  //   nunk_, _gøje_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xe9d70245, 0xfe090082, 0x08c60228, 0x00000000}},  // [e040] іку_, _xắn_, цбан,\n  { {0x9b461880, 0x236731f8, 0x7ddd1f1f, 0x00000000}},  //   _بندو, jenj_, lésp,\n  { {0xa6ca0054, 0x22473c42, 0x7bdc3122, 0x00000000}},  //   جوال_, junk_, moru,\n  { {0xae5a0049, 0xa2da007d, 0x22470010, 0x00000000}},  //   יכער, _पुष्, dunk_,\n  { {0x7986002b, 0xb87b0047, 0x938a00a8, 0x00000000}},  //   _inkw, _szív, иска_,\n  { {0x7bdc0f04, 0xfe090011, 0x7a150036, 0x00000000}},  //   noru, _rắn_, _wąte,\n  { {0xe5a6019d, 0xdb153c43, 0x22470010, 0x00000000}},  //   _диви, nizá, gunk_,\n  { {0xf1260099, 0x7bdc3c44, 0x00000000, 0x00000000}},  //   цько, horu,   ,\n  { {0xa2da0164, 0xd5b9008b, 0x75220020, 0x00000000}},  //   _पुर्, _усё_, mboz,\n  { {0x644201f3, 0x6d40000c, 0xfe090082, 0x00000000}},  //   mroi, óman, _vắn_,\n  { {0x7bdc179c, 0x00000000, 0x00000000, 0x00000000}},  //   doru,   ,   ,\n  { {0xfe090082, 0x00000000, 0x00000000, 0x00000000}},  //   _tắn_,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xbebc001e, 0x7bdc0066, 0x7986000a, 0x00000000}},  //   rbīb, goru, _ankw,\n  { {0xda7801e0, 0x64421c7e, 0x7e2a0088, 0x00000000}},  //   оят_, hroi, _тіла_,\n  { {0x752211e4, 0x23670087, 0x64422c69, 0x00000000}},  //   jboz, zenj_, kroi,\n  { {0x22470010, 0x7bdc0232, 0x7dd60010, 0x00000000}},  // [e050] zunk_, boru, yász,\n  { {0x644200f4, 0x81c20044, 0x7bdc0035, 0x00000000}},  //   droi, ৃতি_, coru,\n  { {0x23670059, 0x69c10010, 0x320c1d48, 0x00000000}},  //   venj_, éles, _nudy_,\n  { {0x6442009d, 0x48c90044, 0x671b0164, 0x00000000}},  //   froi, _শরীর, _प्रक_,\n  { {0x63850081, 0x399c000c, 0x64420052, 0x00000000}},  //   згла, _víst_, groi,\n  { {0x22470047, 0x78fa009b, 0xdb1c009d, 0x00000000}},  //   tunk_, _לפרו, tiré,\n  { {0x3f89001d, 0x23670087, 0x00000000, 0x00000000}},  //   _đau_, renj_,   ,\n  { {0x7bdc3c45, 0x22470010, 0x9f5c3c46, 0x00000000}},  //   zoru, runk_, _diví_,\n  { {0x7bdc011f, 0x2019008d, 0x644200f4, 0x00000000}},  //   yoru, ësi_, croi,\n  { {0x22470010, 0xdb1c009d, 0x00000000, 0x00000000}},  //   punk_, piré,   ,\n  { {0x7bdc0208, 0x3cfe0204, 0x00000000, 0x00000000}},  //   voru, रेने_,   ,\n  { {0x7bdc0022, 0x00000000, 0x00000000, 0x00000000}},  //   woru,   ,   ,\n  { {0x7bdc000d, 0x06e20044, 0x00000000, 0x00000000}},  //   toru, _বলছি,   ,\n  { {0xdb152b92, 0xe1f90006, 0x00000000, 0x00000000}},  //   tizá, lmų_,   ,\n  { {0x6da6012b, 0xdee21534, 0x7bdc1131, 0x00000000}},  //   _ника, _поши, roru,\n  { {0x7d76002c, 0x7bdc001a, 0x64420133, 0x00000000}},  //   _رابط, soru, yroi,\n  { {0x7bdc045e, 0x661b0521, 0xfe090011, 0x00000000}},  // [e060] poru, _čuka, _mắm_,\n  { {0xfe09001d, 0x6c7b00a0, 0x46f6026b, 0x00000000}},  //   _lắm_, _פריד, пчет,\n  { {0xfe050163, 0x8b9b034e, 0xdd8f0014, 0x00000000}},  //   _üçün_, _הבית, _شوی_,\n  { {0xfe090011, 0x80dc0061, 0xb33c01f3, 0x00000000}},  //   _nắm_, _पडले, _ilħi,\n  { {0x845a003b, 0x7522065a, 0x397b009b, 0x00000000}},  //   срет_, rboz, _הטכנ,\n  { {0x64423c47, 0x00000000, 0x00000000, 0x00000000}},  //   rroi,   ,   ,\n  { {0x27f700b9, 0x3f98000c, 0x93cb009e, 0x00000000}},  //   řené_, örum_, حانہ_,\n  { {0xfe090011, 0x6442065d, 0x7ae101a2, 0x00000000}},  //   _cắm_, proi, ülti,\n  { {0x04430b11, 0xb87b0010, 0xb4aa02be, 0x00000000}},  //   _петн, _nyíl, _указ_,\n  { {0x995c01dc, 0x672e0146, 0x00000000, 0x00000000}},  //   _níž_, _jebj,   ,\n  { {0x1df9007c, 0x68e601c3, 0x00000000, 0x00000000}},  //   жены_, _lykd,   ,\n  { {0xfe090082, 0x25a61163, 0x7ae500b0, 0x00000000}},  //   _gắm_, nkol_, _ryht,\n  { {0x61e201d5, 0xf1b3009b, 0xed58007e, 0x00000000}},  //   _ikol, _אסף_, чоў_,\n  { {0x661c01c5, 0x9f5c00fa, 0x00000000, 0x00000000}},  //   _otrk, _divã_,   ,\n  { {0x25a63c48, 0xaf5b009b, 0x1f5b009b, 0x00000000}},  //   kkol_, _הכוכ, _הדוא,\n  { {0xf773089d, 0x61e201d5, 0x1994005e, 0x00000000}},  //   کار_, _jkol, нася,\n  { {0xa2be0316, 0xa3dc0204, 0xe70b09b9, 0x00000000}},  // [e070] _वेस्, ठवा_, متان_,\n  { {0x61e2002b, 0x00000000, 0x00000000, 0x00000000}},  //   _lkol,   ,   ,\n  { {0x61e20cce, 0xfbd00076, 0x363401b7, 0x00000000}},  //   _okol, _حتي_, فرنس,\n  { {0x6d4f0011, 0x29350049, 0xa5f81076, 0x00000000}},  //   ngca, _קאָן_, пеху_,\n  { {0x76430010, 0x69cd0091, 0x00000000, 0x00000000}},  //   ányb, mnae,   ,\n  { {0xfe090011, 0x61e20173, 0x00000000, 0x00000000}},  //   _sắm_, _akol,   ,\n  { {0xa1f50143, 0x00000000, 0x00000000, 0x00000000}},  //   мџиј,   ,   ,\n  { {0x69cd3c49, 0x23600107, 0x6d5d00bb, 0x00000000}},  //   nnae, đija_, jfsa,\n  { {0xbf050201, 0xe1f90006, 0xbcfb009d, 0x00000000}},  //   रश्न_, rmų_, nféd,\n  { {0x644b015e, 0xdb1e00f4, 0x2d893c4a, 0x00000000}},  //   mugi, _empê, _anae_,\n  { {0x9d460259, 0xdb0800f4, 0x644b1f72, 0x00000000}},  //   менд, _élém, lugi,\n  { {0x6d4f001c, 0x9f45146b, 0x656b08eb, 0x00000000}},  //   ggca, illé_, negh,\n  { {0x64590e42, 0x644b0058, 0x61fb010e, 0x00000000}},  //   ntwi, nugi, mmul,\n  { {0x61e90004, 0x61fb001a, 0x645901a0, 0x00000000}},  //   llel, lmul, itwi,\n  { {0xea00001d, 0x09e60072, 0x25bf001a, 0x00000000}},  //   _chết_, довн, _omul_,\n  { {0xfe090082, 0x644b0009, 0xf2d20049, 0x00000000}},  //   _lắk_, kugi, דעל_,\n  { {0x20071532, 0x09e30245, 0x644b2645, 0x00000000}},  // [e080] _kini_, тотн, jugi,\n  { {0x62810fdf, 0x68e60006, 0x200f2248, 0x00000000}},  //   _orlo, _vykd, _mugi_,\n  { {0x61e91322, 0x200f0058, 0xdb1c004a, 0x00000000}},  //   klel, _lugi_, nirí,\n  { {0xea00001d, 0x29d701d5, 0x20070020, 0x00000000}},  //   _đặc_, għad_, _lini_,\n  { {0x62813c4b, 0x644b0026, 0x25a60a3b, 0x00000000}},  //   _arlo, gugi, rkol_,\n  { {0x61e23c4c, 0x2007000b, 0xdb07000c, 0x00000000}},  //   _skol, _nini_, lhjá,\n  { {0x661c016e, 0x644b0006, 0x6d5d01d6, 0x00000000}},  //   _utrk, augi, yfsa,\n  { {0x30a60088, 0x644b3c4d, 0x61fb011c, 0x00000000}},  //   дров, bugi, gmul,\n  { {0xc05a01fb, 0x20073c4e, 0x628109ce, 0x00000000}},  //   цій_, _bini_, _erlo,\n  { {0x2007037e, 0x61e201d5, 0x61e90035, 0x00000000}},  //   _cini_, _wkol, alel,\n  { {0x6d4f001c, 0x20073c4f, 0x61e9007f, 0x00000000}},  //   tgca, _dini_, blel,\n  { {0x61e23c50, 0x61e9121e, 0x56370049, 0x00000000}},  //   _ukol, clel, ואטע_,\n  { {0x20073c51, 0xd90f0014, 0x6d5d000c, 0x00000000}},  //   _fini_, یید_, rfsa,\n  { {0x09c7001c, 0x200704be, 0x9f5800b0, 0x00000000}},  //   रच्य, _gini_, örä_,\n  { {0x69cd0091, 0x644b01ee, 0xdb1c008e, 0x00000000}},  //   tnae, zugi, cirí,\n  { {0x20073c52, 0xdb0700b0, 0x200f02d4, 0x00000000}},  //   _zini_, kijö, _yugi_,\n  { {0x7d0d006c, 0x64590009, 0x656b001a, 0x00000000}},  // [e090] _igas, xtwi, vegh,\n  { {0x644b0061, 0x7c2d01f3, 0x3f9c012d, 0x00000000}},  //   vugi, _iwar, _jovu_,\n  { {0x61e003ed, 0x7c2d00e0, 0x61e90095, 0x00000000}},  //   koml, _hwar, ylel,\n  { {0x91fc0089, 0x3f9c0091, 0x4efb0049, 0x00000000}},  //   _spān, _lovu_, קלאג,\n  { {0x321e103f, 0x656b3c53, 0xe3650aed, 0x00000000}},  //   _atty_, regh, екли,\n  { {0x644b04cb, 0xe6670ae0, 0x3f9c0ec4, 0x00000000}},  //   rugi, _отбо, _novu_,\n  { {0xc2e70055, 0x645900b4, 0x644b0058, 0x00000000}},  //   গেনি_, stwi, sugi,\n  { {0x7d0d3340, 0x2007027e, 0x7dc8006b, 0x00000000}},  //   _ngas, _sini_, nıst,\n  { {0x200701aa, 0x321e1372, 0x61e90145, 0x00000000}},  //   _pini_, _etty_, rlel,\n  { {0x61fb001a, 0x7d0d281b, 0x442d0020, 0x00000000}},  //   smul, _agas, _iwe_,\n  { {0x20073c54, 0x6609010a, 0xddc60256, 0x00000000}},  //   _vini_, _kiek, ебни,\n  { {0x442d01aa, 0xdb1e0f07, 0x7c2d2c0b, 0x00000000}},  //   _kwe_, _impé, _bwar,\n  { {0x442d0263, 0x5e5600a2, 0x660920bd, 0x00000000}},  //   _jwe_, ولیس_, _miek,\n  { {0x7c2d01d5, 0x442d0202, 0x6609082e, 0x00000000}},  //   _dwar, _mwe_, _liek,\n  { {0x442d0f5b, 0x00000000, 0x00000000, 0x00000000}},  //   _lwe_,   ,   ,\n  { {0x66093c55, 0x442d0075, 0x3f9c0091, 0x00000000}},  //   _niek, _owe_, _zovu_,\n  { {0x7c2d30de, 0x186701f9, 0x6d560061, 0x00000000}},  // [e0a0] _gwar, нати_, _icya,\n  { {0x5c5b00a3, 0xdb070030, 0x7d0d2a7b, 0x00000000}},  //   _צדיק, dhjæ, _zgas,\n  { {0x7c2d3c56, 0x660913d1, 0x442d03ef, 0x00000000}},  //   _zwar, _biek, _awe_,\n  { {0x66090046, 0x442d3c57, 0x799d0319, 0x00000000}},  //   _ciek, _bwe_, _gosw,\n  { {0xb4aa03d7, 0x442d0093, 0x6609008a, 0x00000000}},  //   खने_, _cwe_, _diek,\n  { {0x442d0263, 0xd2500025, 0x00000000, 0x00000000}},  //   _dwe_, لنت_,   ,\n  { {0x442d3c58, 0x3872018e, 0x9294007e, 0x00000000}},  //   _ewe_, lwyr_, тайц,\n  { {0xd1300025, 0x39520016, 0x00000000, 0x00000000}},  //   جمة_, ngys_,   ,\n  { {0x442d0016, 0x3872018e, 0x6b9e0007, 0x00000000}},  //   _gwe_, nwyr_, _oopg,\n  { {0x660900b5, 0x7c2d0009, 0x7d0d0026, 0x00000000}},  //   _ziek, _rwar, _sgas,\n  { {0x7c2d0343, 0x3872018e, 0x316d0144, 0x00000000}},  //   _swar, hwyr_, beez_,\n  { {0x717303ec, 0x7dc8006b, 0xdd12005d, 0x00000000}},  //   _مهما, xıst, rüşm,\n  { {0x69c1009d, 0x799d0f10, 0x8fa614df, 0x00000000}},  //   èlem, _rosw, _паде,\n  { {0x3872018e, 0xf4120044, 0x3f9c0d16, 0x00000000}},  //   dwyr_, _হবার_, _uovu_,\n  { {0x6b9e3c59, 0xf99f000a, 0x00000000, 0x00000000}},  //   _dopg, _fièl_,   ,\n  { {0x7c2d0036, 0x7d0d0213, 0xdb1c00c4, 0x00000000}},  //   _twar, _ugas, tirã,\n  { {0x3872018e, 0x7ddd0010, 0x7dc80477, 0x00000000}},  // [e0b0] gwyr_, kész, rıst,\n  { {0x66091404, 0x2cb3005a, 0x442d122a, 0x00000000}},  //   _siek, ındı_, _rwe_,\n  { {0x6609001e, 0x6e3a054e, 0x442d00b4, 0x00000000}},  //   _piek, nstb, _swe_,\n  { {0x7bc70209, 0x27e10066, 0x442d0156, 0x00000000}},  //   liju, sohn_, _pwe_,\n  { {0x3872005b, 0x7524004a, 0x66090d8f, 0x00000000}},  //   cwyr_, ñiza, _viek,\n  { {0x7bc73126, 0x66090036, 0x7ddd0010, 0x00000000}},  //   niju, _wiek, gész,\n  { {0x22560a90, 0x442d18c3, 0x66090995, 0x00000000}},  //   نلود_, _wwe_, _tiek,\n  { {0xceb80036, 0x201900c4, 0x442d00b4, 0x00000000}},  //   dzę_, ísio_, _twe_,\n  { {0x442d1af8, 0x7bc72134, 0x6e3a09d0, 0x00000000}},  //   _uwe_, kiju, estb,\n  { {0xa283007a, 0x645b206d, 0x657b3c5a, 0x00000000}},  //   _میتو, _iqui, _hauh,\n  { {0x273c0224, 0x7bc70006, 0x657b00b0, 0x00000000}},  //   lání_, diju, _kauh,\n  { {0x657b3c5b, 0xdb1c12c5, 0xf99f0026, 0x00000000}},  //   _jauh, dirá, _noè_,\n  { {0x273c00b9, 0x853a009b, 0x6b9e2cdc, 0x00000000}},  //   nání_, וגרי, _popg,\n  { {0x6f1a001c, 0x8fa20057, 0x2d990065, 0x00000000}},  //   cctc, _ваше, ajse_,\n  { {0xceb80036, 0x273c00b9, 0x8db601e1, 0x00000000}},  //   czę_, hání_, _аспі,\n  { {0x273c00b9, 0x657b00b0, 0x9f450051, 0x00000000}},  //   kání_, _nauh, illí_,\n  { {0x26170181, 0x2d5a0059, 0x6b9e0471, 0x00000000}},  // [e0c0] _aço_, _všeč_, _topg,\n  { {0x273c0224, 0x3872018e, 0xdb1c008e, 0x00000000}},  //   dání_, rwyr_, birá,\n  { {0x645b0181, 0x1dc6013d, 0x7ddd0010, 0x00000000}},  //   _aqui, _लगात, vész,\n  { {0xe9a60478, 0x3872005b, 0x00000000, 0x00000000}},  //   _рамп, pwyr_,   ,\n  { {0x77910167, 0x00000000, 0x00000000, 0x00000000}},  //   _گیلا,   ,   ,\n  { {0x7c22014a, 0x00000000, 0x00000000, 0x00000000}},  //   _çoru,   ,   ,\n  { {0x133900a1, 0x877b071c, 0x7ddd0010, 0x00000000}},  //   رتوں_, _קאלי, rész,\n  { {0x80e00055, 0x167700b6, 0x28c7006e, 0x00000000}},  //   _পৃষ্, _בגלל_, _रेडि,\n  { {0xb4650014, 0x39420145, 0x00000000, 0x00000000}},  //   _مدله, _mdks_,   ,\n  { {0x44260555, 0x39420022, 0xdce404eb, 0x00000000}},  //   mpo_, _ldks_, _naiđ,\n  { {0xdd9105d4, 0x777c04bd, 0x03a3012b, 0x00000000}},  //   مود_, _marx, _њихо,\n  { {0x6e3a054e, 0x75f800b9, 0x2b410471, 0x00000000}},  //   rstb, bíze, _sdhc_,\n  { {0xceb80046, 0x4426002d, 0x5c740121, 0x00000000}},  //   szę_, npo_, алят,\n  { {0x44260219, 0x8f340726, 0xdb1c077b, 0x00000000}},  //   ipo_, _секц, tirá,\n  { {0x273c00b9, 0x7bc73c5c, 0xcb3402dc, 0x00000000}},  //   zání_, riju, ресъ,\n  { {0x1e9700b6, 0x7bc7010a, 0x5d550745, 0x00000000}},  //   _יכול_, siju, _скит,\n  { {0x657b00b0, 0x7bc70006, 0xb33c002b, 0x00000000}},  // [e0d0] _rauh, piju, _moħb,\n  { {0x273c0224, 0x76430047, 0x777c00d4, 0x00000000}},  //   vání_, ányo, _carx,\n  { {0x645b085d, 0xdced012d, 0xdce401f3, 0x00000000}},  //   _squi, _baać, _iniġ,\n  { {0xe66402dc, 0x273c01dc, 0x7d090089, 0x00000000}},  //   ртфо, tání_, _tīrī,\n  { {0x798f0016, 0xc7cb007e, 0x657b00b0, 0x00000000}},  //   _incw, _жыве_, _vauh,\n  { {0x273c00b9, 0xfe0a0082, 0xb444007e, 0x00000000}},  //   rání_, _hắt_, рэцк,\n  { {0x56940069, 0x657b170b, 0x44260dd7, 0x00000000}},  //   _карт, _tauh, apo_,\n  { {0x273c00b9, 0x38790085, 0x00000000, 0x00000000}},  //   pání_, _kssr_,   ,\n  { {0xfe0a001d, 0x600902d3, 0x6717013d, 0x00000000}},  //   _mắt_, нним_, _तलाक_,\n  { {0x777c04bd, 0x53b70204, 0x237700a1, 0x00000000}},  //   _xarx, _अतिश, _جارح,\n  { {0x6da600ed, 0xdb1c000c, 0xed5a007e, 0x00000000}},  //   гина, gnrý, нон_,\n  { {0x644b0197, 0x63a10010, 0x40351d84, 0x00000000}},  //   orgi, _holn, _бедс,\n  { {0xd7b30061, 0x00000000, 0x00000000, 0x00000000}},  //   ंघाच,   ,   ,\n  { {0x317f002d, 0x105200a1, 0x903a0049, 0x00000000}},  //   lduz_, _اکٹھ, _טענה,\n  { {0xd94600d7, 0xfe0a001d, 0x63a13c5d, 0x00000000}},  //   леви, _bắt_, _moln,\n  { {0x443f0363, 0xfe0a0011, 0x317f002d, 0x00000000}},  //   _ovu_, _cắt_, nduz_,\n  { {0xe9d7005e, 0x6735129d, 0xfe0a0011, 0x00000000}},  // [e0e0] укт_, _bezj, _dắt_,\n  { {0x7c240279, 0x6b56007c, 0x26180164, 0x00000000}},  //   _itir, _стих, _बंदी_,\n  { {0x443f3c5e, 0x46f6007c, 0x98ab0089, 0x00000000}},  //   _avu_, учат, _vecā_,\n  { {0x35e50cf2, 0xfe0a0082, 0x1e560049, 0x00000000}},  //   аців, _gắt_, טשער_,\n  { {0x63a100ee, 0x69c62998, 0x6615002d, 0x00000000}},  //   _boln, _imke, _euzk,\n  { {0x442608d3, 0x63a10142, 0x7c2400e7, 0x00000000}},  //   rpo_, _coln, _mtir,\n  { {0x63a11124, 0x644b36c5, 0x6d4408d3, 0x00000000}},  //   _doln, argi, _odia,\n  { {0x44260198, 0x6d440051, 0x443f0146, 0x00000000}},  //   ppo_, _ndia, _fvu_,\n  { {0x7c240009, 0x443f0146, 0x00000000, 0x00000000}},  //   _ntir, _gvu_,   ,\n  { {0x6d440181, 0x63a1251a, 0x00000000, 0x00000000}},  //   _adia, _goln,   ,\n  { {0x4424001c, 0x7d1d001c, 0x7c24185b, 0x00000000}},  //   _htm_, tcss, _atir,\n  { {0xac190373, 0x38603261, 0x7a150036, 0x00000000}},  //   кому_, ktir_, _wątk,\n  { {0x6d440016, 0x2a7a00f6, 0xa3c80316, 0x00000000}},  //   _ddia, _aspb_, _उषा_,\n  { {0xfe0a0011, 0x46b40061, 0x442424e7, 0x00000000}},  //   _sắt_, ंनाह, _mtm_,\n  { {0x7c24005f, 0x44240022, 0x386b0009, 0x00000000}},  //   _etir, _ltm_, _spcr_,\n  { {0x38603c5f, 0x8e470025, 0xbebc0089, 0x00000000}},  //   ftir_, _إليك_, ecīg,\n  { {0x9817023c, 0xb6c900a1, 0xfe0a0082, 0x00000000}},  // [e0f0] ابرا, ھائے_, _vắt_,\n  { {0x628802a4, 0xfc3f0051, 0xd6db0679, 0x00000000}},  //   _ordo, msí_, нте_,\n  { {0x4424033b, 0xfe0a001d, 0x63a10036, 0x00000000}},  //   _atm_, _tắt_, _roln,\n  { {0x63a1093b, 0x4424018c, 0x00000000, 0x00000000}},  //   _soln, _btm_,   ,\n  { {0x63a12dec, 0x6288002d, 0x2283014a, 0x00000000}},  //   _poln, _ardo, _sık_,\n  { {0x8c1c0049, 0x443f0020, 0xfc3f0051, 0x00000000}},  //   עווי, _vvu_, isí_,\n  { {0xe299008b, 0x5b5800b6, 0x63a13302, 0x00000000}},  //   тай_, אשון_, _voln,\n  { {0x63a10046, 0x628310b1, 0xe045026b, 0x00000000}},  //   _woln, rvno, ании,\n  { {0x6288014a, 0x442406ed, 0x63a10010, 0x00000000}},  //   _erdo, _gtm_, _toln,\n  { {0xb0680025, 0x9e65007e, 0xdee50216, 0x00000000}},  //   اصيل_, авод, иопи,\n  { {0xf77200b6, 0x60ce006b, 0x42990188, 0x00000000}},  //   חקי_, _əhmə, _جناح_,\n  { {0x2a7a1ad0, 0xee3616e8, 0x3860000c, 0x00000000}},  //   _rspb_, шню_, ytir_,\n  { {0xd1b8007a, 0x55760049, 0x68ef000a, 0x00000000}},  //   _حالا_, בערן_, _nycd,\n  { {0xbcfb009f, 0x61e407ac, 0x00000000, 0x00000000}},  //   mfél, čile,   ,\n  { {0xdb250010, 0xeb970216, 0xdb1c010e, 0x00000000}},  //   ásár, шир_, virä,\n  { {0x38603c60, 0xe206000c, 0xe9d700ed, 0x00000000}},  //   ttir_, _þótt_, акс_,\n  { {0xfbdf0181, 0x47c6008b, 0x38603a04, 0x00000000}},  // [e100] guês_, абав, utir_,\n  { {0x442401a3, 0xdb1c0051, 0x2d80068d, 0x00000000}},  //   _rtm_, rnró, _haie_,\n  { {0x3860009f, 0x44240061, 0x66022224, 0x00000000}},  //   stir_, _stm_, tmok,\n  { {0x38601402, 0xb8cc0044, 0xbcfb0092, 0x00000000}},  //   ptir_, _কই_, kfél,\n  { {0xdce40825, 0x66021b8e, 0x2d80010e, 0x00000000}},  //   _obič, rmok, _maie_,\n  { {0x05160055, 0x66020032, 0x026a0077, 0x00000000}},  //   ারের_, smok, вший_,\n  { {0x69d60020, 0xa5960088, 0x9596012b, 0x00000000}},  //   onye, _кращ, _краљ,\n  { {0x69d60047, 0x23690091, 0x200e0173, 0x00000000}},  //   nnye, đaja_, _sifi_,\n  { {0x442401a3, 0xe5d9025f, 0xbcfb05ee, 0x00000000}},  //   _utm_, _сфрј_, gfél,\n  { {0x81460167, 0x2d920173, 0x65693c61, 0x00000000}},  //   _چنان, _anye_, _zbeh,\n  { {0x2d801273, 0x24860030, 0xc22400a1, 0x00000000}},  //   _baie_, lvom_, _اکتو,\n  { {0x2fc70022, 0xd08601ab, 0x00000000, 0x00000000}},  //   _emng_, _выки,   ,\n  { {0xa3ca03d7, 0x200e3c62, 0x9f4501aa, 0x00000000}},  //   _लगा_, _tifi_, kolè_,\n  { {0x2cab0009, 0xfd1f0197, 0x2d850036, 0x00000000}},  //   rycd_, scì_, śle_,\n  { {0xfb84008b, 0xf9c7005e, 0x1995005e, 0x00000000}},  //   цыян, ащан, бавя,\n  { {0x24860091, 0xdb1e00f6, 0x3915013b, 0x00000000}},  //   kvom_, _empà, смар,\n  { {0xa3d6001c, 0x3dc90058, 0xcbc700a2, 0x00000000}},  // [e110] ाचा_, _imaw_, _نزدي,\n  { {0x2d80002d, 0xe70b023c, 0x00000000, 0x00000000}},  //   _zaie_, نتان_,   ,\n  { {0x75150054, 0x00000000, 0x00000000, 0x00000000}},  //   مواض,   ,   ,\n  { {0xb9950025, 0x24190147, 0xbcfb0010, 0x00000000}},  //   _الحب, годы_, yfél,\n  { {0xb8cc0055, 0x661b0925, 0x248900c4, 0x00000000}},  //   _কে_, _čuku, íam_,\n  { {0xfe0a0011, 0x69cd0016, 0x6a140014, 0x00000000}},  //   _lắp_, liae, _دبیر,\n  { {0x0bb8009b, 0x3875014a, 0xdd2c0006, 0x00000000}},  //   שלום_, şarı_, _lėšo,\n  { {0x69cd018e, 0x22490119, 0xfe0a0011, 0x00000000}},  //   niae, čak_, _nắp_,\n  { {0x78ad00d4, 0xf0a602dc, 0x2d800f69, 0x00000000}},  //   nyav, йкъл_, _raie_,\n  { {0xbcfb009f, 0x3fb70055, 0x67f000b0, 0x00000000}},  //   rfél, ীক্ষ, täji,\n  { {0xbebc001e, 0xfe0a0011, 0x2d803c63, 0x00000000}},  //   ecīb, _bắp_, _paie_,\n  { {0xed571969, 0xea000011, 0xfe0a0011, 0x00000000}},  //   бою_, _đắc_, _cắp_,\n  { {0x3f690a94, 0x69cd018e, 0x61e93c64, 0x00000000}},  //   _било_, diae, moel,\n  { {0x09d00061, 0x61e90554, 0x00000000, 0x00000000}},  //   सच्य, loel,   ,\n  { {0x2d80001a, 0x69cd0bd8, 0x24860142, 0x00000000}},  //   _taie_, fiae, zvom_,\n  { {0xfd12004b, 0x69cd0016, 0x2ef801a2, 0x00000000}},  //   _عجب_, giae, ürfe_,\n  { {0x69d6121b, 0xb7160025, 0x00000000, 0x00000000}},  // [e120] rnye, مباش,   ,\n  { {0x61e91703, 0x00000000, 0x00000000, 0x00000000}},  //   hoel,   ,   ,\n  { {0x6b7b061e, 0x61e93a16, 0x7c360016, 0x00000000}},  //   _גרינ, koel, _hwyr,\n  { {0x24860027, 0x844601b7, 0x61e9323a, 0x00000000}},  //   tvom_, مختل, joel,\n  { {0x61e90250, 0x00000000, 0x00000000, 0x00000000}},  //   doel,   ,   ,\n  { {0xf99f0263, 0x7bce31d9, 0x9f58014a, 0x00000000}},  //   _chèf_, nibu, örü_,\n  { {0x7d16018e, 0xb2860783, 0x9f453c65, 0x00000000}},  //   _ogys, сылк, illä_,\n  { {0x75d60431, 0x61e9022b, 0x7984011c, 0x00000000}},  //   _ايرا, goel, ndiw,\n  { {0xf48400d3, 0x79843c66, 0x7bce0095, 0x00000000}},  //   _بازی, idiw, kibu,\n  { {0xfe0a001d, 0x7bce3c67, 0x673e0010, 0x00000000}},  //   _sắp_, jibu, napj,\n  { {0x7c360016, 0xe21601b7, 0xbcfb0161, 0x00000000}},  //   _awyr, _طباع, rfém,\n  { {0x8cb503d7, 0x644200b0, 0xd24f0025, 0x00000000}},  //   उनलो, osoi, _سنه_,\n  { {0x644216c6, 0xac190888, 0x79840016, 0x00000000}},  //   nsoi, рогу_, ddiw,\n  { {0x7d160047, 0x69da00f4, 0x69cd018e, 0x00000000}},  //   _egys, éten, wiae,\n  { {0x7f3b00bd, 0x5e260d3a, 0x69cd0016, 0x00000000}},  //   _געוו, _اعتق, tiae,\n  { {0x38350099, 0x23ab0030, 0x644200b0, 0x00000000}},  //   жнар, _højt_, ksoi,\n  { {0x69cd018e, 0xdb05008d, 0x9f470051, 0x00000000}},  // [e130] riae, _kohë, _ghnó_,\n  { {0x61e900e7, 0x69cd3c68, 0x7bce2bfe, 0x00000000}},  //   zoel, siae, cibu,\n  { {0x163b0054, 0xb8f003d7, 0x61e900e7, 0x00000000}},  //   اسطة_, _वे_, yoel,\n  { {0x7afa3c69, 0x00000000, 0x00000000, 0x00000000}},  //   ütte,   ,   ,\n  { {0x04670264, 0x61e901b5, 0x9f4500f4, 0x00000000}},  //   стем, voel, solé_,\n  { {0xd2a9003b, 0xc7b8007e, 0x75220026, 0x00000000}},  //   икле_, _лёс_, acoz,\n  { {0x61e900bb, 0x7777002b, 0x00000000, 0x00000000}},  //   toel, mexx,   ,\n  { {0xd9fb02fb, 0x77770066, 0x7bce0232, 0x00000000}},  //   ्षित_, lexx, zibu,\n  { {0x61e90197, 0x9f4500b0, 0x7bce0009, 0x00000000}},  //   roel, yllä_, yibu,\n  { {0x3e7a1a2f, 0x20110010, 0x7777002b, 0x00000000}},  //   _būt_, özi_, nexx,\n  { {0xd9fb001c, 0x753b00b5, 0x61e93c6a, 0x00000000}},  //   ्षात_, _keuz, poel,\n  { {0xed5a0175, 0x1d0a15c4, 0x248d3c6b, 0x00000000}},  //   шом_, иени_, _krem_,\n  { {0x7bce0bb2, 0xccfa01e1, 0x00000000, 0x00000000}},  //   tibu, рхні_,   ,\n  { {0xb33c01f3, 0x00000000, 0x00000000, 0x00000000}},  //   _noħl,   ,   ,\n  { {0x7bce049a, 0x9c870428, 0x3b0a20e6, 0x00000000}},  //   ribu, _počí, рево_,\n  { {0x753b0089, 0x7bce033b, 0x224500d9, 0x00000000}},  //   _neuz, sibu, _mvlk_,\n  { {0x201f0b32, 0x673e15aa, 0x00000000, 0x00000000}},  // [e140] nqui_, tapj,   ,\n  { {0x46f60265, 0xdb07000c, 0x3f853c6c, 0x00000000}},  //   очет, skjá, ndlu_,\n  { {0xa96a00ed, 0x869a2798, 0x00000000, 0x00000000}},  //   _кина_, штат_,   ,\n  { {0x213f04cb, 0x644200b0, 0x00000000, 0x00000000}},  //   jauh_, tsoi,   ,\n  { {0x248d07c8, 0x439401ab, 0x240a030d, 0x00000000}},  //   _crem_, залс, анди_,\n  { {0x64420dd9, 0xdb050bdb, 0x00000000, 0x00000000}},  //   rsoi, _bohè,   ,\n  { {0x6442028c, 0x966319f1, 0x3f85103c, 0x00000000}},  //   ssoi, _окре, ddlu_,\n  { {0x248d02cc, 0x753b08ff, 0xe476007e, 0x00000000}},  //   _frem_, _geuz, _музэ,\n  { {0x673c0149, 0x248d0059, 0xcf9a0143, 0x00000000}},  //   _kerj, _grem_, ајн_,\n  { {0x39400051, 0x661c00b0, 0xd00700ed, 0x00000000}},  //   hais_, _kurk, оење_,\n  { {0x39401104, 0x673c0059, 0x6e94300e, 0x00000000}},  //   kais_, _merj, чину,\n  { {0x63a8004f, 0x69da0047, 0x39400ebc, 0x00000000}},  //   _hodn, étel, jais_,\n  { {0x661c20bb, 0x39400006, 0x0ca80cee, 0x00000000}},  //   _lurk, dais_, отри_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x63a80627, 0x661c301a, 0xaff90049, 0x00000000}},  //   _modn, _nurk, _פּני,\n  { {0x3940049a, 0x2d85001e, 0x63a80062, 0x00000000}},  //   gais_, ēles_, _lodn,\n  { {0x661c022b, 0x673c3210, 0x753b00bb, 0x00000000}},  // [e150] _aurk, _berj, _reuz,\n  { {0xf773031d, 0x661c1422, 0x65600051, 0x00000000}},  //   بار_, _burk, _acmh,\n  { {0x39403c6d, 0x248d01ee, 0x661c016e, 0x00000000}},  //   bais_, _srem_, _curk,\n  { {0x39400917, 0x248d00d4, 0xe6180088, 0x00000000}},  //   cais_, _prem_, іді_,\n  { {0xc8640aef, 0xa3d60061, 0x673c0635, 0x00000000}},  //   _отри, ाचं_, _ferj,\n  { {0x248d001a, 0x661c0095, 0x1a6800a1, 0x00000000}},  //   _vrem_, _furk, _دیہی_,\n  { {0x661c0210, 0x05770070, 0x61e40059, 0x00000000}},  //   _gurk, _وارد, čiln,\n  { {0x248d00c4, 0xdb05009d, 0x673c012d, 0x00000000}},  //   _trem_, _cohé, _zerj,\n  { {0xdb1e021e, 0x661c01ee, 0xb367005e, 0x00000000}},  //   _ympä, _zurk, _мъжк,\n  { {0xd9c30044, 0x201f0d62, 0x394008ad, 0x00000000}},  //   ্কিম, rqui_, zais_,\n  { {0x6d5d001c, 0x201f0efe, 0x764504b3, 0x00000000}},  //   fgsa, squi_, nshy,\n  { {0xdb1c0051, 0x6281002b, 0x247d01aa, 0x00000000}},  //   mhré, _islo, _kňm_,\n  { {0x69da027b, 0x394000f4, 0x1c4301e1, 0x00000000}},  //   étem, vais_, нням,\n  { {0x7e630061, 0xe81f013d, 0x201d00e0, 0x00000000}},  //   _tqnp, _बढ़ा_, _iuwi_,\n  { {0x6459112f, 0x3af5007c, 0x29190145, 0x00000000}},  //   huwi, дятс, _bgsa_,\n  { {0x673c01d5, 0x64590007, 0x442f1721, 0x00000000}},  //   _serj, kuwi, kpg_,\n  { {0x39400917, 0x661c00b0, 0x2e2101e5, 0x00000000}},  // [e160] rais_, _surk, _hóf_,\n  { {0x39403b3b, 0x62810466, 0x661c00b0, 0x00000000}},  //   sais_, _oslo, _purk,\n  { {0x39400a0a, 0x673c01d9, 0x63a80466, 0x00000000}},  //   pais_, _verj, _rodn,\n  { {0x63a80059, 0x271900b9, 0x6e3c0035, 0x00000000}},  //   _sodn, třní_, ârbi,\n  { {0x63a80428, 0x673c0149, 0xc953019b, 0x00000000}},  //   _podn, _terj, _אמר_,\n  { {0x60d60006, 0x79860ea6, 0x00000000, 0x00000000}},  //   _žymo, _hakw,   ,\n  { {0x66e30216, 0x63a80b41, 0x79860058, 0x00000000}},  //   _зора, _vodn, _kakw,\n  { {0xcb1300b6, 0x63a80036, 0x61e40059, 0x00000000}},  //   עלה_, _wodn, čilo,\n  { {0x5ea90055, 0x69c1013d, 0x798600e7, 0x00000000}},  //   _ছেলে, रोटी, _makw,\n  { {0x79863c6e, 0xbcfb009d, 0x00000000, 0x00000000}},  //   _lakw, ngée,   ,\n  { {0x79860319, 0xdd910439, 0x00000000, 0x00000000}},  //   _oakw, نود_,   ,\n  { {0xa0a60081, 0x79860eb0, 0x00000000, 0x00000000}},  //   _наед, _nakw,   ,\n  { {0x5c0709b2, 0xdcef001a, 0x77b3013f, 0x00000000}},  //   зява, decă, _yıxı,\n  { {0xea000082, 0x7f41088a, 0x628100ea, 0x00000000}},  //   _đạc_, calq, _yslo,\n  { {0x798621a4, 0x2cb300b9, 0x64593c6f, 0x00000000}},  //   _bakw, _řadě_, zuwi,\n  { {0x6d5d001c, 0x79860093, 0x2fce0009, 0x00000000}},  //   qgsa, _cakw, _hmfg_,\n  { {0x798604cb, 0x321e0036, 0x6d4d0058, 0x00000000}},  // [e170] _dakw, _luty_, _idaa,\n  { {0x7c2d3c70, 0x9cd800a3, 0x37070867, 0x00000000}},  //   _itar, _מוחה_, пчев,\n  { {0x1a6500a1, 0xf7700379, 0x65790045, 0x00000000}},  //   _تیزی_, طال_, tewh,\n  { {0xf6500355, 0x25a9009f, 0x6459011c, 0x00000000}},  //   ائل_, ðal_, tuwi,\n  { {0xfc4600b9, 0x00000000, 0x00000000, 0x00000000}},  //   říve_,   ,   ,\n  { {0x386900ce, 0x321e0036, 0xe2990816, 0x00000000}},  //   mtar_, _buty_, жак_,\n  { {0xf77200b6, 0x64590022, 0x798621a4, 0x00000000}},  //   _שקל_, suwi, _yakw,\n  { {0x321e00ab, 0x645900e0, 0x00000000, 0x00000000}},  //   _duty_, puwi,   ,\n  { {0x7c2d0061, 0x00000000, 0x00000000, 0x00000000}},  //   _ntar,   ,   ,\n  { {0x442d00b0, 0x386909f7, 0x6d4d3c71, 0x00000000}},  //   _ite_, itar_, _adaa,\n  { {0x7c2d002d, 0x628105fa, 0x90e702fd, 0x00000000}},  //   _atar, _uslo, _کسان,\n  { {0x7a1c016c, 0x442d0065, 0x64490fdc, 0x00000000}},  //   _učti, _kte_, _kvei,\n  { {0xa158007e, 0xdc13006b, 0xdb1e00f6, 0x00000000}},  //   _хачу_, _ağıl, _impú,\n  { {0x38693c72, 0x442d00c4, 0x7c2d0051, 0x00000000}},  //   dtar_, _mte_, _dtar,\n  { {0x7c2d0347, 0xca750783, 0x38690035, 0x00000000}},  //   _etar, нуты, etar_,\n  { {0x3869020c, 0x442d002d, 0xcee702fd, 0x00000000}},  //   ftar_, _ote_, _ورژن_,\n  { {0x3869002a, 0x18670088, 0xe7aa007c, 0x00000000}},  // [e180] gtar_, мати_, овал_,\n  { {0x0903012b, 0x69cf0145, 0x7a150036, 0x00000000}},  //   тпун, _emce, _wątp,\n  { {0x442d008d, 0x3f870089, 0x7986015d, 0x00000000}},  //   _ate_, _manu_, _takw,\n  { {0x893600a6, 0x38693c73, 0xd91002fd, 0x00000000}},  //   _تعدا, btar_, _میز_,\n  { {0x3869095e, 0x442d0023, 0x7c2d0066, 0x00000000}},  //   ctar_, _cte_, _xtar,\n  { {0x75290173, 0x28c7007d, 0x3f873c74, 0x00000000}},  //   _efez, _रेटि, _nanu_,\n  { {0xe29702a8, 0xfd650011, 0xf623007e, 0x00000000}},  //   дај_, _chuố, _адсо,\n  { {0xd1300025, 0x442d00d9, 0xe1f90006, 0x00000000}},  //   دمة_, _fte_, glų_,\n  { {0x442d2635, 0x67230825, 0x3f872ebd, 0x00000000}},  //   _gte_, žnje, _banu_,\n  { {0xdb1e0129, 0x3f870016, 0xdefa007e, 0x00000000}},  //   _empú, _canu_, жым_,\n  { {0x442d3c75, 0x1df9007e, 0x3eb83c76, 0x00000000}},  //   _zte_, зены_, árt_,\n  { {0x25a61b28, 0x7c2d00f6, 0x386928e0, 0x00000000}},  //   njol_, _ptar, ytar_,\n  { {0x4fc60088, 0x3869006b, 0x3f8708ad, 0x00000000}},  //   _оска, xtar_, _fanu_,\n  { {0xb34502d5, 0x3f873c77, 0x9f4500f6, 0x00000000}},  //   maçã, _ganu_, colà_,\n  { {0xb34502d5, 0xa0070025, 0x61e238d4, 0x00000000}},  //   laçã, _تقول_, _kjol,\n  { {0x38693c78, 0x2369037e, 0x3f871aef, 0x00000000}},  //   ttar_, đaji_, _zanu_,\n  { {0xb34502d5, 0x28f8007c, 0x61e20203, 0x00000000}},  // [e190] naçã, деть_, _mjol,\n  { {0x442d07c9, 0xe1f90006, 0x7d001a4a, 0x00000000}},  //   _rte_, zlų_, ümse,\n  { {0x64493c79, 0x442d0cce, 0x06b20044, 0x00000000}},  //   _svei, _ste_, _টেবি,\n  { {0x3869008d, 0x29d701d5, 0x61e20023, 0x00000000}},  //   ptar_, għat_, _njol,\n  { {0x442d3c7a, 0x2329017a, 0x00000000, 0x00000000}},  //   _qte_, поли_,   ,\n  { {0xb3450181, 0xe7301095, 0x32060fd5, 0x00000000}},  //   daçã, _نصف_, _ahoy_,\n  { {0x3f870466, 0x00000000, 0x00000000, 0x00000000}},  //   _ranu_,   ,   ,\n  { {0x64490635, 0x3f870107, 0x32060145, 0x00000000}},  //   _tvei, _sanu_, _choy_,\n  { {0xe0d93c7b, 0x442d093b, 0xb34502d5, 0x00000000}},  //   яви_, _ute_, gaçã,\n  { {0x60061036, 0xfd65001d, 0x3fcd0044, 0x00000000}},  //   нным_, _thuố, রক্ষ,\n  { {0xf7720476, 0x25ad0116, 0x61e202e7, 0x00000000}},  //   נקט_, _koel_, _fjol,\n  { {0xb34500c4, 0x00000000, 0x00000000, 0x00000000}},  //   baçã,   ,   ,\n  { {0xb34502d5, 0x61fb014a, 0x7bd50065, 0x00000000}},  //   caçã, mlul, fizu,\n  { {0xdee501f9, 0x61fb0207, 0x7bd50032, 0x00000000}},  //   _поли, llul, gizu,\n  { {0x63730279, 0x6e950025, 0xdce411af, 0x00000000}},  //   mını, _ألعا, _obić,\n  { {0x63730279, 0x25ad1cbb, 0x3eb801e3, 0x00000000}},  //   lını, _noel_, ørte_,\n  { {0x6d460281, 0xa8060140, 0x7bd50032, 0x00000000}},  // [e1a0] maka, езал, bizu,\n  { {0x6d46027c, 0x6373005d, 0x7bd50023, 0x00000000}},  //   laka, nını, cizu,\n  { {0xb34502d5, 0x25ad00bb, 0xbb3b034e, 0x00000000}},  //   zaçã, _boel_, _מעיי,\n  { {0x6d46033b, 0xb9060044, 0x1c0400e8, 0x00000000}},  //   naka, _ফর_, _शीतल_,\n  { {0x25ad3c7c, 0x63730279, 0xb34500c4, 0x00000000}},  //   _doel_, kını, xaçã,\n  { {0x6d4606fe, 0xb34502d5, 0x69d601f6, 0x00000000}},  //   haka, vaçã, liye,\n  { {0x6d461084, 0xbcfb00f4, 0x6373005d, 0x00000000}},  //   kaka, nfér, dını,\n  { {0xb34502d5, 0x6d460390, 0x30a6003b, 0x00000000}},  //   taçã, jaka, еров,\n  { {0x6d46020c, 0xe45300a1, 0x61e20ca2, 0x00000000}},  //   daka, _مہنگ, _vjol,\n  { {0xb34502d5, 0x50b70025, 0x201800b0, 0x00000000}},  //   raçã, عديد_, öri_,\n  { {0xd33700b6, 0x7bd50314, 0x6d460020, 0x00000000}},  //   _נראה_, vizu, faka,\n  { {0xb3450181, 0x6d4604cb, 0xa3cc006e, 0x00000000}},  //   paçã, gaka, शोर_,\n  { {0x69d601df, 0x63730279, 0x7bd50142, 0x00000000}},  //   diye, bını, tizu,\n  { {0xbcfb028c, 0xf99f2ef4, 0x7d040046, 0x00000000}},  //   ffér, _chèn_, _dzis,\n  { {0xda780ae0, 0x7bd50c55, 0x69d6026d, 0x00000000}},  //   нят_, rizu, fiye,\n  { {0x69c40207, 0x6d46033b, 0x4efb009b, 0x00000000}},  //   ghie, caka, _מהוו,\n  { {0x25ad00bb, 0x00000000, 0x00000000, 0x00000000}},  // [e1b0] _roel_,   ,   ,\n  { {0x29d7002b, 0x25ad01c3, 0x3f8c005b, 0x00000000}},  //   għar_, _soel_, nddu_,\n  { {0x25ad0116, 0x69d60284, 0x39420190, 0x00000000}},  //   _poel_, biye, _feks_,\n  { {0x6373005d, 0x94790c27, 0x394200d9, 0x00000000}},  //   zını, дску_, _geks_,\n  { {0x25ad1f4b, 0x6373047f, 0xc8670088, 0x00000000}},  //   _voel_, yını, _ятни,\n  { {0x6d460010, 0x798d01d6, 0x394201ee, 0x00000000}},  //   zaka, ldaw, _zeks_,\n  { {0x6d46033b, 0x61fb3c7d, 0x25ad010e, 0x00000000}},  //   yaka, tlul, _toel_,\n  { {0x798d2c60, 0xdce40521, 0xa2240014, 0x00000000}},  //   ndaw, _ubić, دروه,\n  { {0x6373027d, 0x6d46006c, 0x61fb01a3, 0x00000000}},  //   tını, vaka, rlul,\n  { {0x6d4603b0, 0x69d63c7e, 0xddc90521, 0x00000000}},  //   waka, ziye, _ćošk,\n  { {0x6373038c, 0x6d46020c, 0xeadc0055, 0x00000000}},  //   rını, taka, _ধর্ম,\n  { {0x6373038c, 0x23690091, 0x645901c3, 0x00000000}},  //   sını, đaju_, orwi,\n  { {0x6d46020c, 0xdb1c000c, 0x69d6014a, 0x00000000}},  //   raka, firð, viye,\n  { {0x799d0038, 0x6d460127, 0x661b042c, 0x00000000}},  //   _answ, saka, _liuk,\n  { {0x6d460149, 0x69c41eb6, 0x60c9014a, 0x00000000}},  //   paka, thie, lzem,\n  { {0x60d60006, 0xdc14005d, 0x798d00e0, 0x00000000}},  //   _žymi, rşıy, gdaw,\n  { {0x69d6047f, 0x60c9016e, 0x69c40de1, 0x00000000}},  // [e1c0] riye, nzem, rhie,\n  { {0x69d6014a, 0x644b05d5, 0x7c3b0035, 0x00000000}},  //   siye, dsgi, ţurc,\n  { {0x69c408ea, 0x394201a3, 0x64590546, 0x00000000}},  //   phie, _teks_, erwi,\n  { {0x660900e7, 0x7c2400e7, 0x00000000, 0x00000000}},  //   _chek, _kuir,   ,\n  { {0x65620065, 0x67230825, 0x6d443884, 0x00000000}},  //   rgoh, žnja, _meia,\n  { {0x60c91478, 0xa3cc03d7, 0x6d443c7f, 0x00000000}},  //   dzem, शों_, _leia,\n  { {0x386000f7, 0x64590ace, 0x6e231165, 0x00000000}},  //   luir_, arwi, _nunb,\n  { {0xe1ef0076, 0x68ed0065, 0x00000000, 0x00000000}},  //   يسي_, _ëndë,   ,\n  { {0x386029a6, 0x443f0066, 0x7c24009d, 0x00000000}},  //   nuir_, _gwu_, _nuir,\n  { {0x44242a04, 0x6e23004a, 0xdb0700ea, 0x00000000}},  //   _ium_, _bunb, pkjø,\n  { {0xa75b0049, 0x3d150061, 0x38600048, 0x00000000}},  //   ודיר, नेने_, huir_,\n  { {0x3f8a040d, 0x44240362, 0x7c240048, 0x00000000}},  //   žbu_, _kum_, _buir,\n  { {0x7c24002a, 0x6d44022b, 0x44241300, 0x00000000}},  //   _cuir, _deia, _jum_,\n  { {0x38600129, 0x45280044, 0x6e2300f8, 0x00000000}},  //   duir_, মরিক_, _funb,\n  { {0x4424002b, 0xac18007c, 0x6e230e08, 0x00000000}},  //   _lum_, тору_, _gunb,\n  { {0x201c0020, 0x628800e0, 0x7c243c80, 0x00000000}},  //   _hivi_, _msdo, _fuir,\n  { {0x44240181, 0x7c2400d4, 0x798d1576, 0x00000000}},  // [e1d0] _num_, _guir, rdaw,\n  { {0x6609008d, 0x26e70044, 0xf7700426, 0x00000000}},  //   _shek, _করবো_, قام_,\n  { {0x60c90197, 0x98140025, 0x442401e5, 0x00000000}},  //   zzem, شبكا, _aum_,\n  { {0x38602c97, 0x644b0039, 0x44243c81, 0x00000000}},  //   buir_, tsgi, _bum_,\n  { {0x4424000d, 0x3949011c, 0x64590506, 0x00000000}},  //   _cum_, maas_, urwi,\n  { {0x39490250, 0x4424062c, 0x60c93947, 0x00000000}},  //   laas_, _dum_, vzem,\n  { {0x66090065, 0xb364005e, 0x44241a40, 0x00000000}},  //   _thek, ръчк, _eum_,\n  { {0x60c90948, 0x44243c82, 0x39493c83, 0x00000000}},  //   tzem, _fum_, naas_,\n  { {0x6e230051, 0x6d440129, 0xf3670867, 0x00000000}},  //   _sunb, _reia, _атен,\n  { {0xee391523, 0x60c90089, 0x6d443c84, 0x00000000}},  //   нно_, rzem, _seia,\n  { {0x442408ba, 0x60c93c85, 0x201c0089, 0x00000000}},  //   _zum_, szem, _divi_,\n  { {0xb2ba007b, 0x9b9602fd, 0x865a01ce, 0x00000000}},  //   _אמער, گلست, עדרי,\n  { {0x7c240efe, 0x6d4400d6, 0x2a7a0022, 0x00000000}},  //   _quir, _veia, _sppb_,\n  { {0x7052023c, 0xa066003b, 0x7bc7032e, 0x00000000}},  //   _انوا, _саша_, ghju,\n  { {0xdb050d7f, 0x2d84009d, 0x65690022, 0x00000000}},  //   _pohá, ômes_, _oceh,\n  { {0x201c037e, 0x3b0701f9, 0xf2d20049, 0x00000000}},  //   _zivi_, ѓето_, צען_,\n  { {0xbcfb00fd, 0x98a3007c, 0x2d820020, 0x00000000}},  // [e1e0] ngél, бите, meke_,\n  { {0x44240039, 0x2d8200d0, 0x3b860216, 0x00000000}},  //   _rum_, leke_, _слог,\n  { {0x39490160, 0xdb1c0051, 0x4fba0049, 0x00000000}},  //   baas_, bhrá, עזעצ,\n  { {0x44240016, 0x3935007e, 0x7ae1004a, 0x00000000}},  //   _pum_, _вэрс, últe,\n  { {0x7e613c86, 0x386000d4, 0x7afe000a, 0x00000000}},  //   hulp, quir_, _hypt,\n  { {0x2d8236b1, 0x00000000, 0x00000000, 0x00000000}},  //   heke_,   ,   ,\n  { {0x66840123, 0x2d820145, 0x61ed0087, 0x00000000}},  //   _خیال, keke_, čaln,\n  { {0x2d820243, 0x44243c87, 0x7e610240, 0x00000000}},  //   jeke_, _tum_, dulp,\n  { {0x2d820232, 0x44240145, 0x00000000, 0x00000000}},  //   deke_, _uum_,   ,\n  { {0x30770025, 0xdcf6006b, 0x212f03b2, 0x00000000}},  //   احية_, _sayğ, _efgh_,\n  { {0x2002001e, 0x201c0197, 0x741301f7, 0x00000000}},  //   ēki_, _vivi_, _اولا,\n  { {0xdcf6006b, 0x2b530203, 0x00000000, 0x00000000}},  //   _qayğ, _sdxc_,   ,\n  { {0xdfda0265, 0x201c0011, 0x5c7402d3, 0x00000000}},  //   _пък_, _tivi_, блят,\n  { {0x6e9404ac, 0xaedc0088, 0x00000000, 0x00000000}},  //   _вику, _облi,   ,\n  { {0x2d82064a, 0x3949006a, 0x7e610035, 0x00000000}},  //   beke_, taas_, culp,\n  { {0xf99f0011, 0xb33c01f3, 0x00000000, 0x00000000}},  //   _thèm_, _moħq,   ,\n  { {0x3f8e05fa, 0x06b20044, 0x39492b48, 0x00000000}},  // [e1f0] _kafu_, _টেলি, raas_,\n  { {0xb8cd006e, 0x3f8e002b, 0x394900ea, 0x00000000}},  //   _कप_, _jafu_, saas_,\n  { {0x37073c88, 0x672304eb, 0xfc300bb6, 0x00000000}},  //   учав, žnjo, _وحی_,\n  { {0x645d0039, 0xdb1e00c4, 0x68fd00ea, 0x00000000}},  //   _åsik, _empó, _tysd,\n  { {0x64a5003b, 0xdcfd010a, 0x7e61002d, 0x00000000}},  //   рала, kesč, zulp,\n  { {0x3f8e002b, 0x2d820032, 0xdb1e000a, 0x00000000}},  //   _nafu_, zeke_, _impò,\n  { {0xfbb8009b, 0x00000000, 0x00000000, 0x00000000}},  //   רפות_,   ,   ,\n  { {0x020501f9, 0x00000000, 0x00000000, 0x00000000}},  //   јзин,   ,   ,\n  { {0x798f0090, 0x3f8e0258, 0x00000000, 0x00000000}},  //   _macw, _bafu_,   ,\n  { {0xd00e0426, 0x2d8236a6, 0x1fb50216, 0x00000000}},  //   ولي_, weke_, рсир,\n  { {0x2d82022b, 0x539a00a0, 0xd5b90309, 0x00000000}},  //   teke_, _שיעו, _आवाज,\n  { {0x41e4007e, 0x7bc50085, 0x00000000, 0x00000000}},  //   _ліча, _alhu,   ,\n  { {0x7e6112b5, 0x814c0049, 0x8afb013f, 0x00000000}},  //   sulp, _טעאַ, yyəç,\n  { {0x09de0061, 0x2d8238fc, 0x7a1c0173, 0x00000000}},  //   नच्य, seke_, _pōto,\n  { {0x7ff40879, 0xaa46007c, 0x09d6007e, 0x00000000}},  //   _اسنا, ребл, ацаў,\n  { {0x7bc50dd6, 0xdb1c08aa, 0x00000000, 0x00000000}},  //   _elhu, nkré,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  // [e200]   ,   ,   ,\n  { {0xeb9a0478, 0xe73a0072, 0x7afe00d9, 0x00000000}},  //   _рио_, теж_, _typt,\n  { {0x39ea007e, 0xfaa60256, 0xdb1c00fa, 0x00000000}},  //   _адно_, _тано, tirõ,\n  { {0x7bdc01a3, 0x25a0008e, 0x00000000, 0x00000000}},  //   liru, ñil_,   ,\n  { {0x69c6396f, 0x00000000, 0x00000000, 0x00000000}},  //   _ilke,   ,   ,\n  { {0x7bdc0006, 0x06661125, 0x7d010048, 0x00000000}},  //   niru, _پاسپ, lárú,\n  { {0x6d560173, 0x3f8e39c6, 0x31c6003b, 0x00000000}},  //   _odya, _rafu_, исив,\n  { {0x3f8e0020, 0x00000000, 0x00000000, 0x00000000}},  //   _safu_,   ,   ,\n  { {0x3872004e, 0xcfa600ed, 0xdfa60098, 0x00000000}},  //   ntyr_, ашни, ајно,\n  { {0x6602317c, 0x6d56004a, 0x7bdc00e7, 0x00000000}},  //   llok, _adya, jiru,\n  { {0x7c36008d, 0x7bdc2399, 0x6e630194, 0x00000000}},  //   _atyr, diru, отяж,\n  { {0x3f8e1475, 0x629a3c89, 0x00000000, 0x00000000}},  //   _wafu_, _irto,   ,\n  { {0x76430047, 0x3f8e0418, 0x99890036, 0x00000000}},  //   ányz, _tafu_, ymał_,\n  { {0x69c61c79, 0x7bdc0032, 0x7ff30f8b, 0x00000000}},  //   _alke, giru, _وسوا,\n  { {0xe0e80044, 0x66020032, 0xf96b005e, 0x00000000}},  //   _পরিভ, klok, край_,\n  { {0x39a40457, 0x89370025, 0x00000000, 0x00000000}},  //   ошув, شعرا,   ,\n  { {0xdb5b007c, 0x6602013e, 0x00000000, 0x00000000}},  // [e210] _июн_, dlok,   ,\n  { {0x629a0632, 0x69c63c8a, 0xc60f02f4, 0x00000000}},  //   _orto, _elke, िष्य_,\n  { {0xb8fe03d7, 0x6602009f, 0x00000000, 0x00000000}},  //   _थे_, flok,   ,\n  { {0x66023c8b, 0x00000000, 0x00000000, 0x00000000}},  //   glok,   ,   ,\n  { {0x629a184d, 0xa8790049, 0x24f80147, 0x00000000}},  //   _arto, _גאָר, анцы_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xb5a701e0, 0x9567005e, 0xdb1c010f, 0x00000000}},  //   _край, _възд, chrä,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7dc60051, 0x629a00bb, 0x657b0058, 0x00000000}},  //   _nósa, _erto, _ibuh,\n  { {0x248d01d5, 0x724200a1, 0xdb1c209e, 0x00000000}},  //   _isem_, _کھول, skré,\n  { {0x7bdc0006, 0xb4e7013d, 0x00000000, 0x00000000}},  //   viru, _पशु_,   ,\n  { {0xb33c002b, 0xc0a8009e, 0x51842742, 0x00000000}},  //   _inħa, _چاول_, _муча,\n  { {0x248d0224, 0x213f0169, 0x7bdc0035, 0x00000000}},  //   _jsem_, mbuh_, tiru,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x4e3503ab, 0xdd110161, 0x657b0091, 0x00000000}},  //   _اعتز, _výšk, _obuh,\n  { {0x7bdc0006, 0x7ae10a87, 0x3e710010, 0x00000000}},  //   siru, últa, mát_,\n  { {0x7bdc0056, 0x98a300da, 0x3e7113ae, 0x00000000}},  // [e220] piru, пите, lát_,\n  { {0xbb860054, 0x387205ad, 0x2d920068, 0x00000000}},  //   _الدي, rtyr_, _haye_,\n  { {0x2d9209e0, 0x38723c8c, 0x248d0007, 0x00000000}},  //   _kaye_, styr_, _asem_,\n  { {0x5efa0049, 0x00000000, 0x00000000, 0x00000000}},  //   אפעד,   ,   ,\n  { {0x3e710047, 0x6ba5000c, 0x66020093, 0x00000000}},  //   hát_, _útgá, rlok,\n  { {0x3f850243, 0x3e71139d, 0x39400dec, 0x00000000}},  //   jelu_, kát_, lbis_,\n  { {0x3e710047, 0x3f851712, 0x66021487, 0x00000000}},  //   ját_, delu_, plok,\n  { {0x2d9236e3, 0x4a9b0049, 0xc034025f, 0x00000000}},  //   _naye_, ריקג, ониј,\n  { {0x39400051, 0x38600fd1, 0x600601e5, 0x00000000}},  //   ibis_, nrir_, uðmo,\n  { {0x3f850016, 0xb7fa007d, 0x6e5402dc, 0x00000000}},  //   gelu_, ्तिम_, овоф,\n  { {0xd33700b6, 0x3e710047, 0x2d922efe, 0x00000000}},  //   _הרבה_, gát_, _baye_,\n  { {0x7dc60051, 0x00000000, 0x00000000, 0x00000000}},  //   _pósa,   ,   ,\n  { {0x3f8510b0, 0x2d920173, 0x50ba0257, 0x00000000}},  //   belu_, _daye_, _حداد_,\n  { {0x2f1807d0, 0x3e7128e4, 0x38603c8d, 0x00000000}},  //   _коль_, bát_, drir_,\n  { {0x38600115, 0x6d5a0023, 0x00000000, 0x00000000}},  //   erir_, ėtar,   ,\n  { {0x2d9201aa, 0x386012a3, 0x26e70044, 0x00000000}},  //   _gaye_, frir_, _করলো_,\n  { {0xbbeb007a, 0x6d4f0169, 0xa3e80061, 0x00000000}},  // [e230] _مردم_, maca, मचा_,\n  { {0x6d4f049d, 0x7d0d3c8e, 0x2a980173, 0x00000000}},  //   laca, _izas, _fčb_,\n  { {0x39402f08, 0x21260093, 0x3ebe0039, 0x00000000}},  //   bbis_, _ogoh_, nytt_,\n  { {0x6d4f038c, 0x3860045b, 0x3f85016c, 0x00000000}},  //   naca, brir_, zelu_,\n  { {0x9980038c, 0x69df0023, 0x00000000, 0x00000000}},  //   lmiş_, miqe,   ,\n  { {0x248d0059, 0x3dc90016, 0x36d53c8f, 0x00000000}},  //   _vsem_, _llaw_, _догр,\n  { {0xd5ae026c, 0x9980005a, 0x6d4f0dd2, 0x00000000}},  //   رہے_, nmiş_, kaca,\n  { {0x3e710a50, 0x657b0061, 0x69cd005b, 0x00000000}},  //   vát_, _ubuh, nhae,\n  { {0x6e2a010f, 0x6d4f006b, 0x394b00f4, 0x00000000}},  //   _aufb, daca, _mecs_,\n  { {0x3e7128e4, 0x2d9201a3, 0x9980005a, 0x00000000}},  //   tát_, _saye_, kmiş_,\n  { {0x59c90309, 0x2d923c90, 0x6d4f3c91, 0x00000000}},  //   रसार, _paye_, faca,\n  { {0x6d4f001c, 0x3e710d7f, 0x3860000c, 0x00000000}},  //   gaca, rát_, yrir_,\n  { {0x7d0d0046, 0x00e5026c, 0x3e710047, 0x00000000}},  //   _czas, _بتای, sát_,\n  { {0x3860028c, 0xcb6a003b, 0x2480005a, 0x00000000}},  //   vrir_, јаве_, çimi_,\n  { {0xdde9007a, 0x2d9201aa, 0xdcfd0089, 0x00000000}},  //   _گروه_, _taye_, resā,\n  { {0x61e90018, 0x6d4f0ab2, 0x3e550089, 0x00000000}},  //   nnel, caca, māt_,\n  { {0x20c90201, 0x394036f9, 0x574a0867, 0x00000000}},  // [e240] िनिध, rbis_, изам_,\n  { {0x61e93c92, 0x628102ae, 0x38600249, 0x00000000}},  //   hnel, _oplo, rrir_,\n  { {0x3e55001e, 0x61fb00b0, 0x61e90006, 0x00000000}},  //   nāt_, koul, knel,\n  { {0x98a601fc, 0x656b00e0, 0x386000c4, 0x00000000}},  //   _диме, gggh, prir_,\n  { {0x69c401d5, 0x61e901ee, 0x62813c52, 0x00000000}},  //   mkie, dnel, _aplo,\n  { {0x69c40036, 0xd25a0331, 0x3e550089, 0x00000000}},  //   lkie, аци_, kāt_,\n  { {0x04fc0055, 0x6d4f01f6, 0x69c40009, 0x00000000}},  //   েশের_, yaca, okie,\n  { {0x69c4270b, 0x799600e0, 0x61e901e3, 0x00000000}},  //   nkie, ndyw, gnel,\n  { {0xbfaa0407, 0xdb1e00c4, 0x6d4f01ed, 0x00000000}},  //   атне_, _impõ, vaca,\n  { {0x7dc6027b, 0x61e9001a, 0x3dc90606, 0x00000000}},  //   _bóso, anel, _slaw_,\n  { {0x7d040263, 0x6d4f03fe, 0x69c429be, 0x00000000}},  //   _ayis, taca, kkie,\n  { {0x61fb009d, 0x7d040045, 0xdb1c0048, 0x00000000}},  //   coul, _byis, bhrú,\n  { {0x6d4f014a, 0x394b1a86, 0x48cc0044, 0x00000000}},  //   raca, _recs_, লপুর,\n  { {0x6d4f0c2b, 0x62810061, 0x60cc005d, 0x00000000}},  //   saca, _yplo, ılmı,\n  { {0x69cd01d6, 0x2e4a005e, 0x656b0039, 0x00000000}},  //   thae, _тяло_, yggh,\n  { {0x61e00119, 0x9980005d, 0x3c2f010f, 0x00000000}},  //   niml, rmiş_, _tüv_,\n  { {0x69cd2801, 0xef180089, 0xfb270014, 0x00000000}},  // [e250] rhae, deļi_, _وردپ,\n  { {0x61ed003b, 0x7bce01a2, 0x7de40010, 0x00000000}},  //   čali, chbu, rőse,\n  { {0x61e00279, 0x61e9004e, 0x7c2d3c93, 0x00000000}},  //   kiml, ynel, _huar,\n  { {0x69c4114b, 0x7c2d04be, 0x8afa009b, 0x00000000}},  //   ckie, _kuar, _להתי,\n  { {0x1835007b, 0x69dd002b, 0x628101d9, 0x00000000}},  //   _מאָל_, _imse, _splo,\n  { {0x61fb01aa, 0x38690065, 0x7c2d3c94, 0x00000000}},  //   woul, muar_, _muar,\n  { {0x386930ea, 0xc5f30044, 0x7c2d2c5f, 0x00000000}},  //   luar_, জতবা_, _luar,\n  { {0xdb1e1ffa, 0x61e90035, 0x7c2d009d, 0x00000000}},  //   _impô, unel, _ouar,\n  { {0x3869008d, 0xa3b8026c, 0x61fb3c95, 0x00000000}},  //   nuar_, _ڈالر_, roul,\n  { {0x69c43c96, 0x6f030016, 0x20050026, 0x00000000}},  //   zkie, _pync, ulli_,\n  { {0x62811f9c, 0x61fb36a5, 0x69dd15c8, 0x00000000}},  //   _uplo, poul, _omse,\n  { {0x3869008d, 0x4425002d, 0x442d023a, 0x00000000}},  //   kuar_, _hil_, _kue_,\n  { {0x7c2d3c97, 0x3869008d, 0x442d3c98, 0x00000000}},  //   _cuar, juar_, _jue_,\n  { {0x38693c99, 0x69dd018e, 0x7c2d0065, 0x00000000}},  //   duar_, _amse, _duar,\n  { {0xfaa303f3, 0xa3ac0183, 0x442d021e, 0x00000000}},  //   наро, गात_, _lue_,\n  { {0x442501d5, 0x7c2d2d82, 0x316d009d, 0x00000000}},  //   _lil_, _fuar, ngez_,\n  { {0x69c40125, 0x442500ab, 0x442d00f4, 0x00000000}},  // [e260] rkie, _oil_, _nue_,\n  { {0x69c43c9a, 0xdc9b00b3, 0x61e00279, 0x00000000}},  //   skie, _פסיכ, ziml,\n  { {0x3bbb009b, 0x249f0093, 0x3a0602fd, 0x00000000}},  //   _המיד, _arum_, _فکری_,\n  { {0x4425018e, 0x38691e20, 0x442d3c9b, 0x00000000}},  //   _ail_, buar_, _bue_,\n  { {0x44250233, 0x61e00279, 0x299b0104, 0x00000000}},  //   _bil_, viml, _הסכמ,\n  { {0x442d3c9c, 0x395200ab, 0x44252ca6, 0x00000000}},  //   _due_, lays_, _cil_,\n  { {0x44250279, 0x249f009f, 0x61e0014a, 0x00000000}},  //   _dil_, _erum_, timl,\n  { {0x442d0219, 0x11d80054, 0x44252238, 0x00000000}},  //   _fue_, توبة_, _eil_,\n  { {0x64490bc4, 0x442502c0, 0x442d0169, 0x00000000}},  //   _gwei, _fil_, _gue_,\n  { {0x61e0011f, 0x93c800a1, 0xe3a40167, 0x00000000}},  //   siml, _بارہ_, _تشری,\n  { {0x3869008d, 0x6449001f, 0x7c2d0149, 0x00000000}},  //   zuar_, _zwei, _suar,\n  { {0x7bde3be3, 0x442d05e6, 0x63ba001a, 0x00000000}},  //   _ampu, _yue_, _hotn,\n  { {0x8fa6313f, 0xf1a90204, 0x38690065, 0x00000000}},  //   _наде, कारन, xuar_,\n  { {0xe10b007b, 0x38690065, 0xbcfb009d, 0x00000000}},  //   _פּאָ, vuar_, dgét,\n  { {0xfc3f3c9d, 0x63ba0059, 0x7c2500b0, 0x00000000}},  //   spí_, _motn, _vihr,\n  { {0x3869008d, 0x7c2d002a, 0x7bde1902, 0x00000000}},  //   tuar_, _tuar, _empu,\n  { {0x290f0073, 0x2d8b00c4, 0x2ca000ab, 0x00000000}},  // [e270] åga_, mece_, _grid_,\n  { {0x3869008d, 0x442d028c, 0x2d8b3af4, 0x00000000}},  //   ruar_, _rue_, lece_,\n  { {0x38690a0d, 0xf559036d, 0x26c700b9, 0x00000000}},  //   suar_, قلاب_, áno_,\n  { {0x44251baf, 0x2d9901b5, 0x2d8b0b76, 0x00000000}},  //   _sil_, ndse_, nece_,\n  { {0x442d0919, 0x26c7092f, 0x44250272, 0x00000000}},  //   _que_, šno_, _pil_,\n  { {0x442d028c, 0xfe780006, 0x63ba3c9e, 0x00000000}},  //   _vue_, ktį_, _cotn,\n  { {0x44250374, 0x994d0027, 0x221500e2, 0x00000000}},  //   _vil_, _môžu_, мфир,\n  { {0x44250100, 0x63a83c9f, 0xbcfb0010, 0x00000000}},  //   _wil_, _endn, ngés,\n  { {0x4425137b, 0x2d8b011f, 0x932704e8, 0x00000000}},  //   _til_, dece_, _فران,\n  { {0x442502e4, 0x2d990116, 0x60060783, 0x00000000}},  //   _uil_, edse_, мным_,\n  { {0xaf09006d, 0x00000000, 0x00000000, 0x00000000}},  //   تقدم_,   ,   ,\n  { {0xfce602d3, 0x9f450026, 0x63ba108f, 0x00000000}},  //   домо, golò_, _zotn,\n  { {0x68e904eb, 0xef1801c5, 0x7bde0085, 0x00000000}},  //   _žedn, deļu_, _pmpu,\n  { {0x39520038, 0x2d9901d6, 0xe9df0048, 0x00000000}},  //   ways_, adse_, _amú_,\n  { {0x2d8b012d, 0x8a06007e, 0x00000000, 0x00000000}},  //   bece_, дзве,   ,\n  { {0x2ca001d5, 0x2d8b3ca0, 0x9f453ca1, 0x00000000}},  //   _trid_, cece_, colò_,\n  { {0x39520133, 0x48e3003b, 0x00000000, 0x00000000}},  // [e280] rays_, вотв,   ,\n  { {0xbcfb1055, 0x395200ab, 0x2cad0190, 0x00000000}},  //   rgét, says_, åede_,\n  { {0x39520f36, 0x63a80009, 0x63ba3ca2, 0x00000000}},  //   pays_, _rndn, _rotn,\n  { {0x80d40044, 0xe5c50088, 0x63ba3237, 0x00000000}},  //   দপত্, нсіо, _sotn,\n  { {0x63ba0059, 0xc9530104, 0x00000000, 0x00000000}},  //   _potn, _שמש_,   ,\n  { {0x2d8b0035, 0x9cd70104, 0x00000000, 0x00000000}},  //   zece_, וונה_,   ,\n  { {0xf1a9001c, 0x2d993ca3, 0x41a90061, 0x00000000}},  //   कांन, ydse_, कांस,\n  { {0xcb1300b6, 0x3d0f0061, 0xa3ac006e, 0x00000000}},  //   כלו_, _ठरले_, गाह_,\n  { {0x2d8b0198, 0x63ba00d9, 0x00000000, 0x00000000}},  //   vece_, _totn,   ,\n  { {0xdfd00076, 0x9ed800ed, 0x64423ca4, 0x00000000}},  //   ايد_, змот_, mpoi,\n  { {0x644200b0, 0xdd91006d, 0x9f450026, 0x00000000}},  //   lpoi, هود_, tolò_,\n  { {0xa3ac0183, 0xfe780006, 0x00000000, 0x00000000}},  //   गाव_, rtį_,   ,\n  { {0x2d8b3ca5, 0x644200b0, 0x2d991eda, 0x00000000}},  //   rece_, npoi, rdse_,\n  { {0x2d8b0059, 0xab84005e, 0x00000000, 0x00000000}},  //   sece_, куск,   ,\n  { {0x7bc7009f, 0xbcfb00f4, 0x2d8b038e, 0x00000000}},  //   rkju, ggér, pece_,\n  { {0x3f8c2da3, 0x3e780047, 0x68290107, 0x00000000}},  //   ledu_, mét_, _ažda,\n  { {0xb81507d8, 0x2aff007d, 0xc4c400a1, 0x00000000}},  // [e290] едај, _शुरु_, _ئے_,\n  { {0xdb1c000c, 0x64420aa4, 0x3f8c1703, 0x00000000}},  //   skrá, dpoi, nedu_,\n  { {0x3e7807fd, 0x6fcd004a, 0x00000000, 0x00000000}},  //   nét_, _júca,   ,\n  { {0x25a90211, 0x6fc400f6, 0x00000000, 0x00000000}},  //   ñal_, _dòci,   ,\n  { {0x63850216, 0x7c38012d, 0xa928013e, 0x00000000}},  //   егла, _čvrk, _vyžá,\n  { {0xe299003b, 0x3e780010, 0x3f8c3ca6, 0x00000000}},  //   зак_, két_, jedu_,\n  { {0x3e780010, 0xdd32006b, 0x45d50088, 0x00000000}},  //   jét_, _nəşr, _зовс,\n  { {0x69da009d, 0x00000000, 0x00000000, 0x00000000}},  //   étex,   ,   ,\n  { {0x60250401, 0x00000000, 0x00000000, 0x00000000}},  //   ндиа,   ,   ,\n  { {0x443f0149, 0xf2c7007c, 0x9f5e01aa, 0x00000000}},  //   _itu_, _осен, notè_,\n  { {0x3e780010, 0x5de61deb, 0xa3ac0309, 0x00000000}},  //   gét_, ежна, गार_,\n  { {0x443f3ca7, 0x00000000, 0x00000000, 0x00000000}},  //   _ktu_,   ,   ,\n  { {0xe0ce0216, 0x64590270, 0x2d9e0224, 0x00000000}},  //   _св_, nswi, ěte_,\n  { {0x443f000b, 0x69cf00c4, 0x645900bb, 0x00000000}},  //   _mtu_, _alce, iswi,\n  { {0x443f3ca8, 0x00000000, 0x00000000, 0x00000000}},  //   _ltu_,   ,   ,\n  { {0x644200bb, 0x6926003b, 0x317f031a, 0x00000000}},  //   ypoi, емба, nfuz_,\n  { {0x443f0093, 0x64420026, 0x645900bb, 0x00000000}},  // [e2a0] _ntu_, xpoi, jswi,\n  { {0x64593ca9, 0x46f6014c, 0x69cf1ad6, 0x00000000}},  //   dswi, нчет, _elce,\n  { {0xd91006c6, 0x443f0035, 0x0566017a, 0x00000000}},  //   _چیز_, _atu_, евен,\n  { {0xd9100cd9, 0x443f0082, 0x64420253, 0x00000000}},  //   _نیز_, _btu_, tpoi,\n  { {0xa3ac006e, 0x3e780010, 0x00000000, 0x00000000}},  //   गाल_, zét_,   ,\n  { {0x443f0190, 0x3e780010, 0x00000000, 0x00000000}},  //   _dtu_, yét_,   ,\n  { {0xfe6706b4, 0x6829010a, 0x443f0052, 0x00000000}},  //   _حد_, _užda, _etu_,\n  { {0x3e780010, 0x7dc6008e, 0x64420e2d, 0x00000000}},  //   vét_, _fósi, ppoi,\n  { {0x63ab0224, 0x443f0093, 0xdb1c0210, 0x00000000}},  //   ální, _gtu_, lkrä,\n  { {0x3e780047, 0x6602164e, 0x629c01dc, 0x00000000}},  //   tét_, look, _šrou,\n  { {0x3f8c13f7, 0xe0cf0014, 0x66023caa, 0x00000000}},  //   redu_, لزی_, oook,\n  { {0x66020107, 0x3e780f11, 0x00000000, 0x00000000}},  //   nook, rét_,   ,\n  { {0x3e780047, 0x61e20197, 0x0ca8072b, 0x00000000}},  //   sét_, _imol, нтри_,\n  { {0x6fe600f4, 0x66020ace, 0xd9c90316, 0x00000000}},  //   _décè, hook, रस्ट,\n  { {0x660200bb, 0x5fa6013d, 0x39a7007e, 0x00000000}},  //   kook, _कोयल, ншав,\n  { {0x6602006c, 0x645901c3, 0x644004eb, 0x00000000}},  //   jook, yswi, _otmi,\n  { {0x8dfc009b, 0x00000000, 0x00000000, 0x00000000}},  // [e2b0] _מההת,   ,   ,\n  { {0x65600051, 0x443f0089, 0x62880112, 0x00000000}},  //   _admh, _rtu_, _opdo,\n  { {0x6444000d, 0x659500ed, 0x64590784, 0x00000000}},  //   ţiil, кажу, wswi,\n  { {0x69cf0951, 0xcb12019b, 0x37043cab, 0x00000000}},  //   _ulce, _כלי_, учув,\n  { {0x62880964, 0x3d150061, 0xe22f0011, 0x00000000}},  //   _apdo, नेचे_, ợđiệ,\n  { {0x6459054e, 0x39492059, 0x61e20232, 0x00000000}},  //   rswi, lbas_, _amol,\n  { {0x66020428, 0x6440038c, 0x64593cac, 0x00000000}},  //   book, _etmi, sswi,\n  { {0x66020045, 0x56941662, 0x1b1e0044, 0x00000000}},  //   cook, _щаст, বুকে_,\n  { {0x443f0020, 0x629c0c8a, 0x25ad0035, 0x00000000}},  //   _utu_, _šrot, _inel_,\n  { {0x61e20052, 0x386908da, 0x62880045, 0x00000000}},  //   _emol, irar_, _fpdo,\n  { {0x9d460849, 0x25bf3cad, 0x7e7e00f8, 0x00000000}},  //   кенд, _koul_, _äppl,\n  { {0x38693cae, 0x200c002d, 0xdced012d, 0x00000000}},  //   krar_, aldi_, _abađ,\n  { {0x7de40010, 0x25bf0173, 0x5cf6007c, 0x00000000}},  //   sőso, _moul_, тяну,\n  { {0x38691d43, 0x39490211, 0x5f05003b, 0x00000000}},  //   drar_, ebas_, _изла,\n  { {0x2d9b008d, 0x25ad00f6, 0xa6ec0044, 0x00000000}},  //   _faqe_, _onel_, _কর্ম_,\n  { {0x25bf001a, 0xb222000c, 0x386901e5, 0x00000000}},  //   _noul_, _þætt, frar_,\n  { {0x386911c3, 0xdb1c0051, 0x00000000, 0x00000000}},  // [e2c0] grar_, thró,   ,\n  { {0x46a61963, 0x320d0857, 0x7bd5010f, 0x00000000}},  //   казв, hley_, chzu,\n  { {0xe57a0551, 0x25bf01aa, 0x64402224, 0x00000000}},  //   дзе_, _boul_, _stmi,\n  { {0xceb2012f, 0x0446008b, 0x38690df5, 0x00000000}},  //   ייב_, ведн, brar_,\n  { {0x660200bb, 0x200c000c, 0xdb1c09b0, 0x00000000}},  //   rook, yldi_, skrä,\n  { {0xf743012b, 0x61e20871, 0x25ad0197, 0x00000000}},  //   _веро, _smol, _enel_,\n  { {0x37e30373, 0x25bf01aa, 0x66e63caf, 0x00000000}},  //   _торг, _foul_, _рова,\n  { {0x320d0675, 0x2b580a87, 0x30a600ed, 0x00000000}},  //   gley_, harc_, вров,\n  { {0xa06702a8, 0x1426007e, 0xf99f000a, 0x00000000}},  //   вања_, _адам, _okèn_,\n  { {0xb4ce006e, 0x0eea041f, 0x78a60733, 0x00000000}},  //   शनी_, дьми_, _mrkv,\n  { {0x442c0cfe, 0x320d2f33, 0x2d9b0065, 0x00000000}},  //   _iid_, bley_, _paqe_,\n  { {0x38693cb0, 0x320600e0, 0x3dd2005b, 0x00000000}},  //   yrar_, _ukoy_, _clyw_,\n  { {0x7d160036, 0x442c00ab, 0x4cb80194, 0x00000000}},  //   _czys, _kid_, вляю_,\n  { {0x442c0173, 0x1ae40044, 0x386900c4, 0x00000000}},  //   _jid_, _গড়ে_, vrar_,\n  { {0x442c18a9, 0xa3b30061, 0x1ae60055, 0x00000000}},  //   _mid_, टात_, _খুবই_,\n  { {0x442c02ae, 0x3869029d, 0x320400ab, 0x00000000}},  //   _lid_, trar_, nomy_,\n  { {0x78a60119, 0x3949010a, 0x442c0061, 0x00000000}},  // [e2d0] _crkv, rbas_, _oid_,\n  { {0x442c018e, 0x38690219, 0x25ad02ae, 0x00000000}},  //   _nid_, rrar_, _snel_,\n  { {0x25bf3cb1, 0x320d0ca4, 0x6e2d0232, 0x00000000}},  //   _poul_, yley_, _kiab,\n  { {0x320d00ea, 0x386900d4, 0x76450403, 0x00000000}},  //   xley_, prar_, rphy,\n  { {0x442c11ce, 0x320d01c3, 0xd83807d0, 0x00000000}},  //   _bid_, vley_, _аэс_,\n  { {0x442c0061, 0x6e2d2f94, 0x799d0020, 0x00000000}},  //   _cid_, _liab, _hasw,\n  { {0x442c0038, 0x36d50f40, 0x799d0058, 0x00000000}},  //   _did_, _совр, _kasw,\n  { {0x442c0019, 0x6e2d0e1a, 0x600f068f, 0x00000000}},  //   _eid_, _niab, rømm,\n  { {0x44f504af, 0x442c01d5, 0xe4e701fb, 0x00000000}},  //   _спас, _fid_, _рівн,\n  { {0x442c01aa, 0x6ed3006b, 0x799d3242, 0x00000000}},  //   _gid_, ləbə, _lasw,\n  { {0xc7d6009b, 0x02d90188, 0x80240025, 0x00000000}},  //   רותי_, _ثواب_, جريم,\n  { {0x8c46003b, 0x7d0d2c0b, 0x442c0091, 0x00000000}},  //   леме, _byas, _zid_,\n  { {0x4079007b, 0x61e90639, 0x1ae10044, 0x00000000}},  //   _נאַװ, miel, _খুলে_,\n  { {0x61e9001e, 0x7d0d01aa, 0x799d00e0, 0x00000000}},  //   liel, _dyas, _aasw,\n  { {0x09cc0044, 0x6e2d00f4, 0x69d60065, 0x00000000}},  //   রোফা, _fiab, thye,\n  { {0x61e90027, 0xa2a4006e, 0x09cc0044, 0x00000000}},  //   niel, कित्, রোনা,\n  { {0x7d160036, 0x60c904cb, 0x18670088, 0x00000000}},  // [e2e0] _uzys, nyem, лати_,\n  { {0x61e9010f, 0x20050016, 0x661b0020, 0x00000000}},  //   hiel, noli_, _ahuk,\n  { {0x61e900b0, 0x5b7b00b3, 0x7dc6000c, 0x00000000}},  //   kiel, _אריא, _fóst,\n  { {0x442c0600, 0x661b0020, 0x2005006c, 0x00000000}},  //   _sid_, _chuk, holi_,\n  { {0x442c0061, 0x20053cb2, 0x100302fb, 0x00000000}},  //   _pid_, koli_, रकाश_,\n  { {0xa3de03d7, 0x7bce3cb3, 0x60db0089, 0x00000000}},  //   दों_, nkbu, dzum,\n  { {0x61e92ea8, 0x442c0073, 0x20050016, 0x00000000}},  //   fiel, _vid_, doli_,\n  { {0x3f9c001e, 0x61e90036, 0x442c01a3, 0x00000000}},  //   _savu_, giel, _wid_,\n  { {0x442c05fe, 0x6e2d0197, 0x20050c42, 0x00000000}},  //   _tid_, _riab, foli_,\n  { {0x200501d5, 0x987b007b, 0x442c01a3, 0x00000000}},  //   goli_, עריק, _uid_,\n  { {0x61e900b5, 0x6d56011f, 0x3df53cb4, 0x00000000}},  //   biel, _beya, изос,\n  { {0x60c9011c, 0xad67023c, 0x57c10061, 0x00000000}},  //   byem, داده, _एव्ह,\n  { {0x6e2d027b, 0x20050142, 0x3f9c0089, 0x00000000}},  //   _viab, boli_, _tavu_,\n  { {0x20050198, 0x6b9e0129, 0x7d0d0258, 0x00000000}},  //   coli_, _capg, _vyas,\n  { {0x7dc62363, 0x799d00bb, 0x2f3b00a0, 0x00000000}},  //   _póst, _pasw, _אגוד,\n  { {0x6e430439, 0x6d560288, 0x00000000, 0x00000000}},  //   _انيم, _geya,   ,\n  { {0x799d01c3, 0x69cd2dbb, 0x00000000, 0x00000000}},  // [e2f0] _vasw, rkae,   ,\n  { {0x61e928f5, 0x661b3cb5, 0x629a00b0, 0x00000000}},  //   ziel, _shuk, _osto,\n  { {0xa3d8007d, 0x0555004d, 0x799d3cb6, 0x00000000}},  //   ासन_, атля, _tasw,\n  { {0x78870089, 0x00000000, 0x00000000, 0x00000000}},  //   tīvā,   ,   ,\n  { {0x61e9125b, 0x629a191c, 0x2ca90087, 0x00000000}},  //   viel, _asto, _jrad_,\n  { {0x61e90036, 0xa4e50061, 0x6ed3006b, 0x00000000}},  //   wiel, _कधीच_, səbə,\n  { {0x200501bc, 0x61e900b0, 0x00000000, 0x00000000}},  //   voli_, tiel,   ,\n  { {0x60db0b7c, 0x60c93cb7, 0x200509db, 0x00000000}},  //   tzum, tyem, woli_,\n  { {0x61e900f4, 0x6d560263, 0x2005086f, 0x00000000}},  //   riel, _reya, toli_,\n  { {0x61e93cb8, 0x09d2007d, 0x629a0009, 0x00000000}},  //   siel, _सत्य, _fsto,\n  { {0x612b0676, 0x2005001e, 0x61e90f48, 0x00000000}},  //   _bölü, roli_, piel,\n  { {0xb2ba009b, 0x20050442, 0x724200a1, 0x00000000}},  //   _במער, soli_, _بھول,\n  { {0x4b230055, 0x200507c5, 0x7c3810ec, 0x00000000}},  //   _ব্লগ_, poli_, _čvrs,\n  { {0x629a018e, 0x78a40197, 0x00000000, 0x00000000}},  //   _ysto, vviv,   ,\n  { {0x6d5601aa, 0x395600ec, 0x3946008e, 0x00000000}},  //   _teya, ињат, ñoso_,\n  { {0xf2d2007b, 0x3946007e, 0x78a43cb9, 0x00000000}},  //   קען_, рнаг, tviv,\n  { {0xe73a003b, 0x6b9e00e0, 0x7984005b, 0x00000000}},  // [e300] вез_, _tapg, rfiw,\n  { {0x78a400ab, 0x076a0379, 0x3cf10161, 0x00000000}},  //   rviv, ئماً_, šová_,\n  { {0xdb050190, 0x00000000, 0x00000000, 0x00000000}},  //   _anhæ,   ,   ,\n  { {0xa2a402fb, 0x32ee006b, 0xfc3f1ad4, 0x00000000}},  //   किस्, _rəy_, lvía_,\n  { {0x998c007f, 0x27f800fa, 0x00000000, 0x00000000}},  //   ūdų_, _tjrn_,   ,\n  { {0x38603cba, 0xfc3f008e, 0x629a00d9, 0x00000000}},  //   msir_, nvía_, _psto,\n  { {0xd257008b, 0xfe060164, 0x4e060309, 0x00000000}},  //   ацы_, रवास_, रवाई_,\n  { {0x39403cbb, 0x629a18e1, 0x00000000, 0x00000000}},  //   ncis_, _vsto,   ,\n  { {0xdfda005e, 0x38600093, 0x39400051, 0x00000000}},  //   вън_, nsir_, icis_,\n  { {0x3860028c, 0x09b30061, 0x4ea6007e, 0x00000000}},  //   isir_, _ंच्य, арма,\n  { {0xa3b3007d, 0x073700b3, 0x2ca90851, 0x00000000}},  //   टार_, יאים_, _srad_,\n  { {0xb33c01d5, 0x38600897, 0x7de70088, 0x00000000}},  //   _waħd, ksir_, ріод,\n  { {0xed58007e, 0xb33c002b, 0x5c740131, 0x00000000}},  //   шоў_, _taħd, олят,\n  { {0xdb1e0016, 0x5fad0061, 0x00000000, 0x00000000}},  //   _copï, _झोपल,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x3860008a, 0xb33c0066, 0x00000000, 0x00000000}},  //   fsir_, _jaħb,   ,\n  { {0x2ca91aab, 0x7afe2b63, 0x89380679, 0x00000000}},  // [e310] _urad_, _expt, рпус_,\n  { {0xd759031d, 0xf77306dd, 0xcb990088, 0x00000000}},  //   الات_, تار_, _свої_,\n  { {0x6fcd0051, 0x29070036, 0xdd1f013e, 0x00000000}},  //   _dúch, łna_, vířo,\n  { {0x6d5d006a, 0x39400203, 0x00000000, 0x00000000}},  //   nasa, ccis_,   ,\n  { {0x7bc50004, 0xdff8006e, 0x3959004a, 0x00000000}},  //   _kohu, ुवाद_, _iess_,\n  { {0x42550401, 0xf6770014, 0x395901a2, 0x00000000}},  //   бтит, _پاسخ, _hess_,\n  { {0x6d5d006a, 0x7bc50dc1, 0x395909d8, 0x00000000}},  //   kasa, _mohu, _kess_,\n  { {0x39590860, 0x7bc5010e, 0xdb1c00ea, 0x00000000}},  //   _jess_, _lohu, rkrø,\n  { {0x39590951, 0x6d5d04d4, 0x6009003b, 0x00000000}},  //   _mess_, dasa, лним_,\n  { {0x395900ab, 0xe81d013d, 0x9f5e16a3, 0x00000000}},  //   _less_, _बीमा_, gotà_,\n  { {0xd1310025, 0x6d5d0145, 0x81d60044, 0x00000000}},  //   _فما_, fasa, _সদর_,\n  { {0xfbc900b6, 0x63a13cbc, 0x657900e0, 0x00000000}},  //   _את_, _haln, ngwh,\n  { {0x8fa50200, 0x63a10dec, 0x22810047, 0x00000000}},  //   _гале, _kaln, lók_,\n  { {0x63a13cbd, 0x8fa40025, 0x3940005b, 0x00000000}},  //   _jaln, _ومنه, wcis_,\n  { {0xc332019b, 0x6d5d3cbe, 0x628309fc, 0x00000000}},  //   לום_, basa, ntno,\n  { {0x6d5d106f, 0x1a2a3cbf, 0x38600093, 0x00000000}},  //   casa, ужби_, tsir_,\n  { {0x39590039, 0x6c860025, 0xdb050788, 0x00000000}},  // [e320] _dess_, _الخم, _anhä,\n  { {0x6283041a, 0x3940008e, 0x63a10058, 0x00000000}},  //   ktno, scis_, _naln,\n  { {0x38600fd1, 0x3e63014a, 0xdb1e0161, 0x00000000}},  //   ssir_, nıt_, _kopí,\n  { {0x250b00a2, 0x22810010, 0x00000000, 0x00000000}},  //   گرمی_, dók_,   ,\n  { {0x779400d3, 0x00000000, 0x00000000, 0x00000000}},  //   _ویرا,   ,   ,\n  { {0x69c6082e, 0x25a03cc0, 0xd3700025, 0x00000000}},  //   _hoke, žil_, ذهب_,\n  { {0x69c6021e, 0x6d5d3cc1, 0x6d440036, 0x00000000}},  //   _koke, yasa, _ofia,\n  { {0x66f7009b, 0x69c63cc2, 0x79960133, 0x00000000}},  //   _המלא_, _joke, neyw,\n  { {0x6d5d0d90, 0x69c6010a, 0xa3d804da, 0x00000000}},  //   vasa, _moke, ासद_,\n  { {0x6d5d020c, 0x2281009f, 0x389b00b6, 0x00000000}},  //   wasa, bók_, ניינ,\n  { {0x6d5d014a, 0x66fa0309, 0x9f5e0211, 0x00000000}},  //   tasa, ्थिक_, gotá_,\n  { {0x7bc8006c, 0x7bc501cf, 0x2bd10316, 0x00000000}},  //   ödun, _sohu, हस्थ,\n  { {0x63a1038c, 0x6d5d020c, 0x7bc50023, 0x00000000}},  //   _yaln, rasa, _pohu,\n  { {0x3959002b, 0x6d5d006a, 0x8fa3003b, 0x00000000}},  //   _sess_, sasa, _наче,\n  { {0x69c601c9, 0xcf260379, 0x68290006, 0x00000000}},  //   _boke, _ارشي, _uždi,\n  { {0x69c604be, 0x5c75007c, 0x601d1339, 0x00000000}},  //   _coke, _длит, rème,\n  { {0x22810010, 0x7bc508a7, 0xdc550167, 0x00000000}},  // [e330] zók_, _tohu, _برعک,\n  { {0x67eb01d5, 0x62830802, 0x7bdc1b74, 0x00000000}},  //   rżjo, ytno, chru,\n  { {0xa93501e1, 0x62830009, 0x00000000, 0x00000000}},  //   _менш, xtno,   ,\n  { {0x63a1027b, 0x69c60ace, 0xd56b0088, 0x00000000}},  //   _saln, _goke, рiал,\n  { {0xa879007b, 0xd7fb01fb, 0xa5bd010a, 0x00000000}},  //   _דאָר, _був_, _siųs,\n  { {0x3e6301f6, 0x22810047, 0x224900ed, 0x00000000}},  //   yıt_, tók_, апки_,\n  { {0x657a002a, 0x62810061, 0x6eca006b, 0x00000000}},  //   úchá, _qqlo, həbb,\n  { {0x644b0039, 0x62830091, 0x63a13cc3, 0x00000000}},  //   ppgi, rtno, _waln,\n  { {0x62830428, 0x63a13cc4, 0x4f95078e, 0x00000000}},  //   stno, _taln, орну,\n  { {0x9e650373, 0x6d440026, 0x4fe90256, 0x00000000}},  //   овод, _sfia, рмон_,\n  { {0xd12e00a1, 0x44270058, 0xf77200b3, 0x00000000}},  //   ٹمی_, mmn_, וקי_,\n  { {0x2b5a00d4, 0x00000000, 0x00000000, 0x00000000}},  //   _sepc_,   ,   ,\n  { {0x69c63cc5, 0x3a3a10c5, 0x7bdc0051, 0x00000000}},  //   _roke, _supp_, thru,\n  { {0x69c600b0, 0x44272dd5, 0xe1f90006, 0x00000000}},  //   _soke, nmn_, lnų_,\n  { {0x69c608d0, 0xfaa31abd, 0xd00e0014, 0x00000000}},  //   _poke, маро, _جلو_,\n  { {0x69d80006, 0xe9d7004d, 0x64490032, 0x00000000}},  //   _įves, окс_, _otei,\n  { {0x2fc7006a, 0x47c602e9, 0x57ea007e, 0x00000000}},  // [e340] _kong_, обав, адам_,\n  { {0x2fc700c7, 0x95f4006e, 0x9f4c0023, 0x00000000}},  //   _jong_, ेक्ट_, vidë_,\n  { {0x2fc73cc6, 0x6449010a, 0x69c63cc7, 0x00000000}},  //   _mong_, _atei, _toke,\n  { {0x2fc7190f, 0x68fb012d, 0x291c006b, 0x00000000}},  //   _long_, _žude, əvan_,\n  { {0x649a00d7, 0x7de40010, 0x6569005b, 0x00000000}},  //   ртер_, lőss, _ddeh,\n  { {0x66e6012b, 0x2fc73cc8, 0x64490051, 0x00000000}},  //   _дога, _nong_, _dtei,\n  { {0x9f450197, 0x64490c67, 0x00000000, 0x00000000}},  //   dilà_, _etei,   ,\n  { {0xa3d80061, 0xb33c002b, 0xe5770245, 0x00000000}},  //   ासह_, _daħa, _мзс_,\n  { {0xdfd00054, 0x2fc71f36, 0x9f4c009d, 0x00000000}},  //   فية_, _bong_, lidé_,\n  { {0x2fc70011, 0x388e0089, 0xb33c0066, 0x00000000}},  //   _cong_, mērā_, _faħa,\n  { {0x2fc70011, 0x25a60016, 0x60140129, 0x00000000}},  //   _dong_, odol_, nàmi,\n  { {0x25a60129, 0x2d80016b, 0xd0eb0061, 0x00000000}},  //   ndol_, _ccie_, _जेवण_,\n  { {0xd7da0061, 0x2fc70145, 0x248608d0, 0x00000000}},  //   णसाच, _fong_, ntom_,\n  { {0x2fc70056, 0xfc3f004a, 0x2a780068, 0x00000000}},  //   _gong_, svío_, furb_,\n  { {0x69d8010a, 0x200c09f9, 0x6fcd004a, 0x00000000}},  //   _įver, modi_, _cúcu,\n  { {0x24860142, 0x2fc73cc9, 0x2ca00045, 0x00000000}},  //   ktom_, _zong_, _fsid_,\n  { {0x25a6018e, 0x2d993cca, 0x2fc73ccb, 0x00000000}},  // [e350] ddol_, mese_, _yong_,\n  { {0x2fc7001d, 0x200c0016, 0x249f012d, 0x00000000}},  //   _xong_, nodi_, _rsum_,\n  { {0x644905de, 0x395224c6, 0xe1f9007f, 0x00000000}},  //   _stei, bbys_, ynų_,\n  { {0x1a9a0049, 0xb33c002b, 0xa7140088, 0x00000000}},  //   _פירע, _raħa, ємці,\n  { {0x200c0020, 0x2d990026, 0xb33c002b, 0x00000000}},  //   kodi_, iese_, _saħa,\n  { {0x25a63ccc, 0xe019013d, 0xf1a3013d, 0x00000000}},  //   adol_, _नींद_, _खोजन,\n  { {0x2d99006c, 0x9f4c00f4, 0x2fc73ccd, 0x00000000}},  //   kese_, cidé_, _rong_,\n  { {0x2fc713ec, 0x016500ed, 0x2d990c33, 0x00000000}},  //   _song_, чкио, jese_,\n  { {0x2fc7011c, 0x2d993cce, 0x1015007e, 0x00000000}},  //   _pong_, dese_, зьня,\n  { {0xb4d702fb, 0x200c0209, 0x2d80117e, 0x00000000}},  //   ानी_, godi_, _scie_,\n  { {0xf772007b, 0x2d8005d2, 0x2fc70011, 0x00000000}},  //   עקט_, _pcie_, _vong_,\n  { {0x2d9901d6, 0xa3e70204, 0xdb16013e, 0x00000000}},  //   gese_, मोर_, ícíc,\n  { {0x2fc7011c, 0x621a061e, 0x61fb001a, 0x00000000}},  //   _tong_, _פונק, mnul,\n  { {0x8fa5007e, 0x200c00f6, 0x69cb09b0, 0x00000000}},  //   _хаке, codi_, ögen,\n  { {0x25a63ccf, 0x61fb11e1, 0x6fcd00f6, 0x00000000}},  //   ydol_, onul, _dúct,\n  { {0x61fb000c, 0x9f4c008e, 0x684600e2, 0x00000000}},  //   nnul, vidé_, знаа,\n  { {0x09e3005e, 0x61fb00ea, 0x3952074e, 0x00000000}},  // [e360] хотн, inul, rbys_,\n  { {0x7bd5010f, 0x25a400eb, 0x7b070010, 0x00000000}},  //   ckzu, _saml_, érté,\n  { {0x61fb0166, 0xd9460a85, 0x00000000, 0x00000000}},  //   knul, _нени,   ,\n  { {0x24860339, 0x60140129, 0x00000000, 0x00000000}},  //   ttom_, ràmi,   ,\n  { {0x2937007b, 0x00000000, 0x00000000, 0x00000000}},  //   _מאכן_,   ,   ,\n  { {0x5497007e, 0x2d991089, 0x69c41275, 0x00000000}},  //   явіў_, zese_, ljie,\n  { {0x200c0825, 0x2d99152b, 0x00000000, 0x00000000}},  //   vodi_, yese_,   ,\n  { {0x24860209, 0x69c40891, 0x69d60173, 0x00000000}},  //   ptom_, njie, nkye,\n  { {0x200c01bc, 0x2d9921de, 0x74160d0b, 0x00000000}},  //   todi_, vese_, _فورا,\n  { {0x2d990007, 0x61fb02a6, 0x00000000, 0x00000000}},  //   wese_, anul,   ,\n  { {0x2d990d69, 0x200c0213, 0x3a290203, 0x00000000}},  //   tese_, rodi_, ymap_,\n  { {0x200c0207, 0x67e00039, 0x69c4002b, 0x00000000}},  //   sodi_, _höjd, jjie,\n  { {0x69c41a33, 0x200c0026, 0x00000000, 0x00000000}},  //   djie, podi_,   ,\n  { {0x2d9910fb, 0x3a290b19, 0x00000000, 0x00000000}},  //   sese_, wmap_,   ,\n  { {0x7d040bc0, 0x2d9900b5, 0x3a2901d0, 0x00000000}},  //   _exis, pese_, tmap_,\n  { {0x5a340517, 0x64be0061, 0x6e240145, 0x00000000}},  //   енст, ्हाळ, _ghib,\n  { {0x6d5f0066, 0x00000000, 0x00000000, 0x00000000}},  // [e370] _ieqa,   ,   ,\n  { {0x67e00039, 0x6143000c, 0x27210044, 0x00000000}},  //   _nöjd, _kíló, _বলবো_,\n  { {0x6d5f0023, 0x3a290023, 0x6b8a000c, 0x00000000}},  //   _keqa, pmap_, _öfga,\n  { {0x7e9b0049, 0xe81d0204, 0xdb1e0030, 0x00000000}},  //   מסבו, _बीरा_, _bopæ,\n  { {0xb4d702f4, 0x03a50131, 0xdb050146, 0x00000000}},  //   ाने_, дило, _anhø,\n  { {0xa3e703d7, 0x9c8701ca, 0x7c370066, 0x00000000}},  //   मों_, _začí, _jixr,\n  { {0x78ad006c, 0x6d460039, 0xa2291d84, 0x00000000}},  //   lvav, ycka, ожка_,\n  { {0x200302aa, 0x00000000, 0x00000000, 0x00000000}},  //   čjim_,   ,   ,\n  { {0x8f750822, 0x61fb001a, 0x6d4100b9, 0x00000000}},  //   муні, rnul, ělal,\n  { {0x2628001a, 0x798d0016, 0x443f0066, 0x00000000}},  //   _uşor_, hfaw, _iuu_,\n  { {0x69dd04b3, 0x443f000b, 0x7d1600b0, 0x00000000}},  //   _olse, _huu_, _syys,\n  { {0x443f1a0c, 0x9f470051, 0x645b000a, 0x00000000}},  //   _kuu_, _imní_, _kwui,\n  { {0x443f000b, 0x67e00039, 0x7c370066, 0x00000000}},  //   _juu_, _höje, _bixr,\n  { {0x443f03b6, 0xb33c0066, 0xf99f000a, 0x00000000}},  //   _muu_, _naħl, _okès_,\n  { {0x160d02d2, 0x69c43cd0, 0xfebb007a, 0x00000000}},  //   िकार_, tjie, _داشت_,\n  { {0x7d04002d, 0x753b0020, 0x68e40032, 0x00000000}},  //   _txis, _nguz, tzid,\n  { {0x6b930039, 0x3cff0061, 0x2d920045, 0x00000000}},  // [e380] ädgå, रपणे_, _ibye_,\n  { {0x44250142, 0x46f605f6, 0x69c40007, 0x00000000}},  //   _nhl_, мчет, sjie,\n  { {0x6b9c1ec2, 0x67e00039, 0x3a26012b, 0x00000000}},  //   merg, _nöje, _омог,\n  { {0x93bc0011, 0x601d0026, 0x00000000, 0x00000000}},  //   _chăn, kèmo,   ,\n  { {0x249a02fd, 0xfbd20164, 0x443f0082, 0x00000000}},  //   تخاب_, _हवाम, _cuu_,\n  { {0xe73a1e4d, 0x44250190, 0x443f00d4, 0x00000000}},  //   _фев_, _chl_, _duu_,\n  { {0x442504fb, 0x645d002b, 0xfe6700f9, 0x00000000}},  //   _dhl_, _ħsie, _جد_,\n  { {0x6b9c3cd1, 0x68290006, 0x69dd004a, 0x00000000}},  //   herg, _uždr, _xlse,\n  { {0x60f801e0, 0x6b9c00ea, 0xfc3f000c, 0x00000000}},  //   яния_, kerg, rvík_,\n  { {0x60f7008b, 0x2d92000a, 0x6b9c0190, 0x00000000}},  //   ьныя_, _abye_, jerg,\n  { {0x6440006a, 0x7d1a006b, 0x600f0030, 0x00000000}},  //   _humi, ətsi, rømp,\n  { {0xc3330452, 0x644003ea, 0x2cb2018e, 0x00000000}},  //   _סוף_, _kumi, _bryd_,\n  { {0x628a0066, 0x7c840893, 0x64400ef7, 0x00000000}},  //   ltfo, куре, _jumi,\n  { {0x64400006, 0x6b9c0190, 0x63a80091, 0x00000000}},  //   _mumi, gerg, _jadn,\n  { {0x628a0030, 0x64403cd2, 0x9e0705f6, 0x00000000}},  //   ntfo, _lumi, _очил,\n  { {0x7bde12c2, 0x63a800b4, 0x2cb21506, 0x00000000}},  //   _elpu, _ladn, _fryd_,\n  { {0x6440001a, 0x9be70088, 0x63ba01bb, 0x00000000}},  // [e390] _numi, _жінк, _ontn,\n  { {0xf7701095, 0xa77401f9, 0x78ad0a0e, 0x00000000}},  //   لام_, клуч, rvav,\n  { {0x443f03b6, 0x44250022, 0x78ad03b6, 0x00000000}},  //   _suu_, _rhl_, svav,\n  { {0x644017ca, 0x443f2440, 0x00000000, 0x00000000}},  //   _bumi, _puu_,   ,\n  { {0xf99200b3, 0x64400035, 0x63a804eb, 0x00000000}},  //   _ערך_, _cumi, _badn,\n  { {0x64403cd3, 0x386900f8, 0x628a0056, 0x00000000}},  //   _dumi, msar_, ftfo,\n  { {0x93bc0011, 0x765c0016, 0x59d3006e, 0x00000000}},  //   _thăn, _gwry, _सवार,\n  { {0x39490325, 0x2055003b, 0x443f16c3, 0x00000000}},  //   ncas_, нтор, _tuu_,\n  { {0x64402175, 0x39493cd4, 0xdff5007e, 0x00000000}},  //   _gumi, icas_, еянь,\n  { {0x38690181, 0x6b9c00c4, 0x3a3901d0, 0x00000000}},  //   isar_, xerg, _lisp_,\n  { {0x6b9c010f, 0x6440010f, 0xef190077, 0x00000000}},  //   verg, _zumi, ямо_,\n  { {0x63a818e1, 0xed570088, 0x2cb2018e, 0x00000000}},  //   _zadn, ною_, _pryd_,\n  { {0x522c007b, 0x6b9c0125, 0x6eca006b, 0x00000000}},  //   _וואַ, terg, ləbl,\n  { {0xc05802fd, 0x39490089, 0xfaa601e1, 0x00000000}},  //   _آشنا_, ecas_, наго,\n  { {0x6b9c0112, 0x501a0049, 0x00000000, 0x00000000}},  //   rerg, _צוצו,   ,\n  { {0xe9df0051, 0x6b9c1d93, 0x00000000, 0x00000000}},  //   _clú_, serg,   ,\n  { {0x6b9c0169, 0x3a390494, 0x48e300e3, 0x00000000}},  // [e3a0] perg, _disp_, готв,\n  { {0x66e6004d, 0x3949004a, 0x628a0374, 0x00000000}},  //   ноза, acas_, ytfo,\n  { {0x63a806a6, 0x20030746, 0x38690058, 0x00000000}},  //   _radn, čjih_, asar_,\n  { {0x7ddf008d, 0x63a80b4a, 0x6440011c, 0x00000000}},  //   _kësa, _sadn, _pumi,\n  { {0x63a80091, 0x6fd6009d, 0x00000000, 0x00000000}},  //   _padn, _fâch,   ,\n  { {0x02a60088, 0x628a3cd5, 0xa5200061, 0x00000000}},  //   ерим, ttfo, _बरीच_,\n  { {0x764e093b, 0xfbd3009b, 0x628a00ea, 0x00000000}},  //   _utby, רתו_, utfo,\n  { {0x6440006a, 0x64a6007e, 0x00000000, 0x00000000}},  //   _tumi, _паба,   ,\n  { {0x628a004e, 0x98a9002b, 0x7a05007f, 0x00000000}},  //   stfo, rbaħ_, nėta,\n  { {0x628a0240, 0xddc90036, 0x6eca006b, 0x00000000}},  //   ptfo, łożo, bəbl,\n  { {0x11d601fb, 0x00000000, 0x00000000, 0x00000000}},  //   _підр,   ,   ,\n  { {0x7c2e1632, 0x7a050006, 0x00000000, 0x00000000}},  //   embr, kėta,   ,\n  { {0x20d30070, 0x6aa500f6, 0x3a390197, 0x00000000}},  //   _متوج, _sshf, _risp_,\n  { {0x7a050006, 0x29190bde, 0x00000000, 0x00000000}},  //   dėta, _rysa_,   ,\n  { {0x3f9e0627, 0xbea30184, 0x00000000, 0x00000000}},  //   metu_, _бајк,   ,\n  { {0x3f9e0059, 0x38690039, 0x7c2e0026, 0x00000000}},  //   letu_, tsar_, ambr,\n  { {0xc4c4026c, 0x39490489, 0xa89800c2, 0x00000000}},  // [e3b0] _اے_, rcas_, нкту_,\n  { {0x39490489, 0x38693cd6, 0x37070072, 0x00000000}},  //   scas_, rsar_, нчев,\n  { {0xf7700379, 0x98140076, 0x34d90963, 0x00000000}},  //   صال_, ابقا, भन्द,\n  { {0x38693cd7, 0x3a390197, 0x0708006d, 0x00000000}},  //   psar_, _uisp_, ريني_,\n  { {0x6fd600f4, 0x58d43cd8, 0x00000000, 0x00000000}},  //   _tâch, _боят,   ,\n  { {0x69cf037e, 0x3f9e0243, 0x0454026c, 0x00000000}},  //   _hoce, jetu_, ائند,\n  { {0x69cf144f, 0x3f9e002d, 0xfbb800b3, 0x00000000}},  //   _koce, detu_, תפות_,\n  { {0x69cf3cd9, 0xf48500a1, 0x80ca0044, 0x00000000}},  //   _joce, _لائی, িনন্,\n  { {0x3c240039, 0x3f9e16d0, 0xd5ac00a1, 0x00000000}},  //   höva_, fetu_, _رہو_,\n  { {0xd00e006d, 0x44f40679, 0x69cf0089, 0x00000000}},  //   يلي_, _спус, _loce,\n  { {0xfe550025, 0x23670087, 0xdcfd0089, 0x00000000}},  //   خخخخ, manj_, besī,\n  { {0x11f9007a, 0x23670173, 0x91a700a1, 0x00000000}},  //   _کوچک_, lanj_, _سنتے_,\n  { {0xe0ce0072, 0x3f9e119a, 0xddc93cda, 0x00000000}},  //   _тв_, betu_, budž,\n  { {0x2eb50216, 0x3f9e016c, 0xab2a007e, 0x00000000}},  //   _асис, cetu_, дога_,\n  { {0x69cf148a, 0x7c2e0ce3, 0xaf760049, 0x00000000}},  //   _boce, rmbr, _סעקס_,\n  { {0x236701aa, 0x3ea70133, 0x00000000, 0x00000000}},  //   hanj_, _isnt_,   ,\n  { {0x18670088, 0xa5200061, 0xdddb00b9, 0x00000000}},  // [e3c0] кати_, _बरेच_, jstř,\n  { {0x4a46044b, 0xd7f90088, 0x23670059, 0x00000000}},  //   _инов, нує_, janj_,\n  { {0x69cf3cdb, 0x26dc01ca, 0xa2a1013d, 0x00000000}},  //   _foce, ávo_, _कैल्,\n  { {0x69cf0023, 0xb33c01f3, 0x00000000, 0x00000000}},  //   _goce, _taħk,   ,\n  { {0x26dc00ee, 0x3f9e00e7, 0x00000000, 0x00000000}},  //   švo_, yetu_,   ,\n  { {0xdb0e009f, 0x23670618, 0x9cd7009b, 0x00000000}},  //   _þjón, ganj_, כונה_,\n  { {0xe29700ec, 0x3f9e0091, 0x81ab0044, 0x00000000}},  //   вај_, vetu_, খান_,\n  { {0x7bdc0715, 0x79840020, 0x442e0145, 0x00000000}},  //   hkru, ngiw, smf_,\n  { {0x2367016e, 0x7bdc000c, 0x3f9e0091, 0x00000000}},  //   banj_, kkru, tetu_,\n  { {0xa3e6013d, 0xdefa0147, 0x00000000, 0x00000000}},  //   _पति_, дым_,   ,\n  { {0xdef404af, 0x3f9e0006, 0xddc90166, 0x00000000}},  //   упны, retu_, rudž,\n  { {0xe0da012b, 0x92e4014a, 0x660216af, 0x00000000}},  //   _ове_, ışıl, nnok,\n  { {0xa3e6062e, 0xc0e3025f, 0x5f9402ea, 0x00000000}},  //   _पता_, _коцк, _билт,\n  { {0x3d120061, 0x7bdc01d6, 0x69cf2ddd, 0x00000000}},  //   _धुळे_, gkru, _soce,\n  { {0x69cf01cd, 0x66022722, 0x00000000, 0x00000000}},  //   _poce, knok,   ,\n  { {0x1f37009b, 0x66020010, 0x23671827, 0x00000000}},  //   _ברור_, jnok, zanj_,\n  { {0x69cf0f6a, 0x201e0197, 0x9f5e009d, 0x00000000}},  // [e3d0] _voce, olti_, enté_,\n  { {0xb8cb03d7, 0x7bdc01a2, 0x00000000, 0x00000000}},  //   _कई_, ckru,   ,\n  { {0x2367085c, 0xd5753cdc, 0x00000000, 0x00000000}},  //   vanj_, гуль,   ,\n  { {0x9865026c, 0x7ddf0065, 0x2ca90022, 0x00000000}},  //   _میرے_, _mëso, _ksad_,\n  { {0x629a00d6, 0x7a050006, 0x15140088, 0x00000000}},  //   _apto, lėto, адця,\n  { {0xa3b3006e, 0x00000000, 0x00000000, 0x00000000}},  //   _जोश_,   ,   ,\n  { {0x23670209, 0xe2990245, 0x7a050006, 0x00000000}},  //   ranj_, хай_, nėto,\n  { {0xa3b3007d, 0x236712ac, 0x629a0d62, 0x00000000}},  //   _जोर_, sanj_, _dpto,\n  { {0x23670209, 0xe4a4025f, 0x601d0129, 0x00000000}},  //   panj_, _врхо, lèmi,\n  { {0xbfc5007c, 0x61e20010, 0x7a050006, 0x00000000}},  //   убок, _elol, kėto,\n  { {0xa2d50054, 0xe3b003ec, 0x3255007c, 0x00000000}},  //   _حيات, _برق_, _свер,\n  { {0x2d8900d4, 0x8d760d75, 0x00000000, 0x00000000}},  //   _ccae_, دادا,   ,\n  { {0x224509e7, 0xe1f90006, 0x7bdc01d6, 0x00000000}},  //   _hulk_, mių_, tkru,\n  { {0xe1f9010a, 0x8c430088, 0x66020036, 0x00000000}},  //   lių_, сере, znok,\n  { {0x7bdc0168, 0x00000000, 0x00000000, 0x00000000}},  //   rkru,   ,   ,\n  { {0xe1f90736, 0x601d0129, 0x3eb8043e, 0x00000000}},  //   nių_, dèmi, ærte_,\n  { {0x660200ca, 0xa9260545, 0x00000000, 0x00000000}},  // [e3e0] vnok, удал,   ,\n  { {0x25bf0eed, 0x3f850066, 0x3dd2005b, 0x00000000}},  //   _anul_, nglu_, _hoyw_,\n  { {0xe1f9010a, 0xe57a0072, 0xb8cb0164, 0x00000000}},  //   kių_, езе_, _कै_,\n  { {0x25ad0bc4, 0x7c3e14ad, 0x00000000, 0x00000000}},  //   _cael_, _hipr,   ,\n  { {0x7c3e3278, 0x66020010, 0x3ae800a1, 0x00000000}},  //   _kipr, rnok, _سبھی_,\n  { {0x22450133, 0x7c3e0066, 0x61e2010e, 0x00000000}},  //   _bulk_, _jipr, _slol,\n  { {0xdef8002b, 0x00000000, 0x00000000, 0x00000000}},  //   paċi_,   ,   ,\n  { {0x25ad018e, 0xe1f90006, 0x85b5003b, 0x00000000}},  //   _gael_, gių_, _кључ,\n  { {0xdfd00054, 0x5506007e, 0x26da0006, 0x00000000}},  //   قية_, _спаб, lypo_,\n  { {0x749b0097, 0x7ddf0023, 0x224501c3, 0x00000000}},  //   _אימפ, _pëso, _fulk_,\n  { {0x3a200030, 0xe1f90006, 0x629a3cdd, 0x00000000}},  //   klip_, bių_, _upto,\n  { {0x6146003b, 0x443e039f, 0x442c0146, 0x00000000}},  //   _седа, _hit_, _hhd_,\n  { {0x443e060b, 0x3a2000e0, 0x00000000, 0x00000000}},  //   _kit_, dlip_,   ,\n  { {0x7c3e001a, 0xe7bf0055, 0x443e013e, 0x00000000}},  //   _cipr, _ইত্য, _jit_,\n  { {0x443e08ba, 0xda78005e, 0x7c3e3cde, 0x00000000}},  //   _mit_, лят_, _dipr,\n  { {0x443e023f, 0x442c3cdf, 0x9955091b, 0x00000000}},  //   _lit_, _lhd_, ркац,\n  { {0x57f509e6, 0x6e2d0569, 0x6eca013f, 0x00000000}},  // [e3f0] апат, _ihab, dəbi,\n  { {0x443e04bd, 0x601d01aa, 0x442c00d9, 0x00000000}},  //   _nit_, tèmi, _nhd_,\n  { {0x6d5d0061, 0x6e2d01a3, 0xdb050016, 0x00000000}},  //   obsa, _khab, _wahâ,\n  { {0x443e3ce0, 0x3a20001a, 0x6595007e, 0x00000000}},  //   _ait_, clip_, раду,\n  { {0xe1f9010a, 0x443e00ab, 0x442c01a3, 0x00000000}},  //   vių_, _bit_, _bhd_,\n  { {0x443e001a, 0x987a007b, 0xa87a0049, 0x00000000}},  //   _cit_, _באשט, _באשר,\n  { {0x443e0100, 0x67e00073, 0x68ed3ce1, 0x00000000}},  //   _dit_, _möjl, lzad,\n  { {0x25bf000d, 0x443e0c64, 0x40953ce2, 0x00000000}},  //   _unul_, _eit_, арот,\n  { {0x68ed0841, 0xe1f9010a, 0xe45001f7, 0x00000000}},  //   nzad, rių_, _فضل_,\n  { {0xe1f9010a, 0x443e011f, 0x442c0875, 0x00000000}},  //   sių_, _git_, _ghd_,\n  { {0xed5a012b, 0x7c3e3ce3, 0x63a33ce4, 0x00000000}},  //   кон_, _ripr, menn,\n  { {0x6e2d027b, 0x63a3018e, 0x443e02ae, 0x00000000}},  //   _chab, lenn, _zit_,\n  { {0x66090065, 0x61e90016, 0x6283011c, 0x00000000}},  //   _mjek, mhel, luno,\n  { {0x61fb3ce5, 0x61e90304, 0x66090243, 0x00000000}},  //   liul, lhel, _ljek,\n  { {0x661b0061, 0xa96a0265, 0x7d0d0a86, 0x00000000}},  //   _okuk, кива_, _exas,\n  { {0x6d4f001c, 0x6e2d002a, 0x61e90016, 0x00000000}},  //   ccca, _ghab, nhel,\n\n  { {0x63a3021e, 0x60db37d8, 0x656b0058, 0x00000000}},  // [e400] kenn, nyum, dagh,\n  { {0x63a33ce6, 0x3a200bbc, 0x60c90129, 0x00000000}},  //   jenn, slip_, ixem,\n  { {0x63a300b0, 0x5b7b00b6, 0x442c00e0, 0x00000000}},  //   denn, _בריא, _rhd_,\n  { {0xdcf6014a, 0x61fb0020, 0x69960245, 0x00000000}},  //   _hayı, jiul, _трох,\n  { {0xdcf6011f, 0x63a3018e, 0x442c09b8, 0x00000000}},  //   _kayı, fenn, _phd_,\n  { {0x62833711, 0x661b00e0, 0x7529016c, 0x00000000}},  //   funo, _ekuk, _dzez,\n  { {0x62830219, 0x443e0065, 0xdcf601f6, 0x00000000}},  //   guno, _vit_, _mayı,\n  { {0x68fb366d, 0x98b201df, 0x66090056, 0x00000000}},  //   _žudi, layı_, _gjek,\n  { {0x443e09e0, 0x63a3018e, 0x4fc6007e, 0x00000000}},  //   _tit_, benn, асна,\n  { {0x443e049b, 0x63a30207, 0x6e2d1b1c, 0x00000000}},  //   _uit_, cenn, _shab,\n  { {0x6d4f0365, 0x76402d8b, 0x6283001a, 0x00000000}},  //   tcca, _kimy, cuno,\n  { {0x5183003b, 0x61fb3ce7, 0x60db0009, 0x00000000}},  //   _душа, ciul, byum,\n  { {0xe7c901f5, 0x3eb90089, 0xdcf6005a, 0x00000000}},  //   रामप, āsta_, _bayı,\n  { {0x76400263, 0x6d44002d, 0x8fa301fc, 0x00000000}},  //   _limy, _egia, _маче,\n  { {0x6e2d002a, 0x9967007c, 0x9f5e0051, 0x00000000}},  //   _thab, итал, nntí_,\n  { {0x68ed3ce8, 0x8277007b, 0x6e2d0020, 0x00000000}},  //   tzad, יעלע_, _uhab,\n  { {0x63a300f4, 0x7c950025, 0x656b02e5, 0x00000000}},  // [e410] yenn, _الخص, vagh,\n  { {0x68ed2c69, 0x66093ce9, 0xd6db0cee, 0x00000000}},  //   rzad, _sjek, кте_,\n  { {0x95cb0057, 0xdb050002, 0x63a30ef1, 0x00000000}},  //   куда_, _anhö, venn,\n  { {0x361801fb, 0xdcf6014a, 0x261c008e, 0x00000000}},  //   ацію_, _zayı, díos_,\n  { {0xdcf601f6, 0x656b1dec, 0x645902c2, 0x00000000}},  //   _yayı, ragh, upwi,\n  { {0x6283025e, 0xdb050802, 0x261c008e, 0x00000000}},  //   tuno, _zahá, fíos_,\n  { {0x61e91775, 0x66090030, 0x656b011c, 0x00000000}},  //   thel, _tjek, pagh,\n  { {0xc692007b, 0x63a3018e, 0x6283011c, 0x00000000}},  //   _מאל_, senn, runo,\n  { {0x61e90010, 0x20d50099, 0x6283006a, 0x00000000}},  //   rhel, сійс, suno,\n  { {0x61e90010, 0x628319e4, 0x61fb0006, 0x00000000}},  //   shel, puno, siul,\n  { {0xee3a1281, 0x7ddf008d, 0x61e918cf, 0x00000000}},  //   лно_, _kësh, phel,\n  { {0xdcf6047f, 0x682901dc, 0xd12e00a6, 0x00000000}},  //   _sayı, _vždy, ظمی_,\n  { {0x64411ace, 0xdea1026c, 0x60c401d5, 0x00000000}},  //   _kili, _کیجی, _ġimg,\n  { {0xdcf6005f, 0x7ddf0065, 0x66190036, 0x00000000}},  //   _qayı, _lësh, howk,\n  { {0x98b20279, 0x00000000, 0x00000000, 0x00000000}},  //   vayı_,   ,   ,\n  { {0x6441000b, 0x7f3a0049, 0x394605b8, 0x00000000}},  //   _lili, _געצו, снаг,\n  { {0x6441002a, 0xdce40006, 0x64490006, 0x00000000}},  // [e420] _oili, _keič, _nuei,\n  { {0x64411a60, 0x3b8601fc, 0x76400ee4, 0x00000000}},  //   _nili, _улог, _simy,\n  { {0x3cfc013d, 0x98b2005a, 0xa9a60081, 0x00000000}},  //   _लेते_, rayı_, _линд,\n  { {0x261c0211, 0x64410048, 0x2ca00093, 0x00000000}},  //   víos_, _aili, _kpid_,\n  { {0x644114d7, 0x7ddf008d, 0x6449009d, 0x00000000}},  //   _bili, _dësh, _cuei,\n  { {0x6441008d, 0x00000000, 0x00000000, 0x00000000}},  //   _cili,   ,   ,\n  { {0x644100ef, 0xd7e70867, 0xddc9016c, 0x00000000}},  //   _dili, _умре_, vrdž,\n  { {0x64411189, 0x9054003b, 0x656901a2, 0x00000000}},  //   _eili, овиц, _geeh,\n  { {0xc1b70783, 0xc05700a1, 0x644900fa, 0x00000000}},  //   слых_, یشیا_, _guei,\n  { {0x6441011c, 0x6fb4025a, 0x656900bb, 0x00000000}},  //   _gili, آمدا, _zeeh,\n  { {0x200b00c4, 0x079b00a0, 0xa3ad013d, 0x00000000}},  //   écia_, נסטל, _औसत_,\n  { {0x6441000b, 0x25a6004a, 0xddeb0439, 0x00000000}},  //   _zili, neol_, ارده_,\n  { {0xb33c002b, 0x2ca00009, 0x00000000, 0x00000000}},  //   _taħs, _cpid_,   ,\n  { {0x7ddf0065, 0x6441009d, 0x2ca00087, 0x00000000}},  //   _mësi, _xili, _dpid_,\n  { {0x81ab0055, 0x7a05007f, 0x00000000, 0x00000000}},  //   খার_, lėti,   ,\n  { {0xd257009b, 0x2ca00009, 0x7de70014, 0x00000000}},  //   משלה_, _fpid_, _دستم,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  // [e430]   ,   ,   ,\n  { {0xdd310036, 0xe9df0051, 0x8af9005e, 0x00000000}},  //   _mężc, _siúd_, _внос_,\n  { {0x7bc5002b, 0x64413cea, 0x7ddf0023, 0x00000000}},  //   _inhu, _rili, _pësh,\n  { {0x64411aa0, 0x7a050006, 0x9567005e, 0x00000000}},  //   _sili, kėti, съжд,\n  { {0x6441170b, 0x64493ceb, 0x7ddf0065, 0x00000000}},  //   _pili, _quei, _vësh,\n  { {0x7a050006, 0x4255005e, 0x00000000, 0x00000000}},  //   dėti, отит,   ,\n  { {0x64413cec, 0x316d0032, 0x7bdc01ce, 0x00000000}},  //   _vili, taez_, רקוו,\n  { {0x939700a1, 0x6441005b, 0x6594132e, 0x00000000}},  //   _گجرا, _wili, _насу,\n  { {0x644100b0, 0x9f5e0181, 0x63c400b9, 0x00000000}},  //   _tili, mitê_, átní,\n  { {0xcf390088, 0xdb1e014a, 0x64410051, 0x00000000}},  //   ичні_, _popü, _uili,\n  { {0x8e0a0242, 0x63c400b9, 0x9f450026, 0x00000000}},  //   инов_, štní, filò_,\n  { {0xfbc9019b, 0x7bc51a07, 0xcdf6008b, 0x00000000}},  //   _בת_, _anhu, ічны,\n  { {0x683003a2, 0x7bd7175b, 0x00000000, 0x00000000}},  //   läde, _boxu,   ,\n  { {0xdee5012b, 0x8af7006b, 0x653a0049, 0x00000000}},  //   _моли, ğənn, יערד,\n  { {0xed5a0265, 0xe7ff013d, 0x78bd0026, 0x00000000}},  //   _кой_, ोचना_, _arsv,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6fdf00f4, 0x6830010f, 0x00000000, 0x00000000}},  // [e440] _pêch, häde,   ,\n  { {0xfc320025, 0x7bd70288, 0x00000000, 0x00000000}},  //   _تحب_, _goxu,   ,\n  { {0xd946005e, 0xba760464, 0x387200f8, 0x00000000}},  //   _мени, _باخت, ssyr_,\n  { {0xa526005e, 0xad9b0051, 0x64a6007e, 0x00000000}},  //   омед, miúc, жада,\n  { {0xad9b002a, 0x69c6345a, 0x25a61506, 0x00000000}},  //   liúc, _inke, reol_,\n  { {0xb33c0066, 0x00000000, 0x00000000, 0x00000000}},  //   _saħq,   ,   ,\n  { {0x26cc008d, 0xf1c50061, 0xad9b0051, 0x00000000}},  //   _çdo_, वांन, niúc,\n  { {0x672e0243, 0xd5ad00a1, 0xe617005e, 0x00000000}},  //   _izbj, _مہم_, _ддс_,\n  { {0xdfa6025f, 0xc05a0088, 0x6562008a, 0x00000000}},  //   ојно, шій_, mboh,\n  { {0x33d50245, 0x9f5e0023, 0x65620668, 0x00000000}},  //   _ніхт, mitë_, lboh,\n  { {0x69c63409, 0x24500011, 0x9f5e0023, 0x00000000}},  //   _onke, _hàm_, litë_,\n  { {0x7bda01e5, 0x29dc004a, 0x00000000, 0x00000000}},  //   ötun, _mías_,   ,\n  { {0x8cf4007e, 0x9f5e0065, 0xceb8007f, 0x00000000}},  //   дзяц, nitë_, svę_,\n  { {0x212b010f, 0x6b9b016e, 0x00000000, 0x00000000}},  //   üche_, đugo,   ,\n  { {0x245000ad, 0xf96b005e, 0x236c0521, 0x00000000}},  //   _làm_, ирай_, _medj_,\n  { {0x5c750954, 0xdce60089, 0x5fe00061, 0x00000000}},  //   _елит, sakā, _पकडल,\n  { {0x7bd7006b, 0xe894007c, 0x68fb0142, 0x00000000}},  // [e450] _toxu, мать, _ľuds,\n  { {0x3f8c01e5, 0xcd340379, 0x4e9500a1, 0x00000000}},  //   ngdu_, _غريب, _بھیج_,\n  { {0xac380025, 0x6d48013e, 0x00000000, 0x00000000}},  //   _بسيط_, ědav,   ,\n  { {0x29dc0958, 0x9f5e0065, 0x683000f8, 0x00000000}},  //   _días_, fitë_, väde,\n  { {0x24f807d0, 0xf1b9013e, 0x6fbc0061, 0x00000000}},  //   онцы_, noše_, ्ञां,\n  { {0x493a009b, 0xf8bf008e, 0xf8da009b, 0x00000000}},  //   _לגרו, _iré_, _החשמ,\n  { {0x81b40055, 0x5b7c0097, 0x9f5e00d4, 0x00000000}},  //   ঞান_, ברוא, mitè_,\n  { {0x68300002, 0x798d0169, 0x9f5e3ced, 0x00000000}},  //   räde, ngaw, litè_,\n  { {0x2458007c, 0x78ad0146, 0x200b00c4, 0x00000000}},  //   _мать_, nwav, écio_,\n  { {0x1e8500ed, 0x7ddf0065, 0x9f5e01aa, 0x00000000}},  //   плом, _mësu, nitè_,\n  { {0x7a050006, 0xa3b809b9, 0x37bd0044, 0x00000000}},  //   lėtu, _باقر_, _আকার,\n  { {0xd1b81941, 0xcfe9007a, 0x236c016c, 0x00000000}},  //   _وانا_, _گفته_, _zedj_,\n  { {0x6e92025a, 0x00000000, 0x00000000, 0x00000000}},  //   ولیا,   ,   ,\n  { {0x6283321f, 0x00000000, 0x00000000, 0x00000000}},  //   orno,   ,   ,\n  { {0xab2a012b, 0x9f5e0065, 0xee490082, 0x00000000}},  //   сова_, zitë_, _kẽm_,\n  { {0xad9b002a, 0x798d011c, 0x8b6601b2, 0x00000000}},  //   riúc, ggaw, _کاظم,\n  { {0x98a30081, 0xad9b0051, 0xf8bf31bf, 0x00000000}},  // [e460] ните, siúc, _cré_,\n  { {0xf99f0173, 0x798d00e0, 0x657b0145, 0x00000000}},  //   _ebè_, agaw, _aduh,\n  { {0x44270022, 0x236c01c3, 0x24500082, 0x00000000}},  //   dln_, _redj_, _sàm_,\n  { {0x29dc008e, 0x9f5e0023, 0x00000000, 0x00000000}},  //   _vías_, titë_,   ,\n  { {0x649a00da, 0x656201a3, 0x62830116, 0x00000000}},  //   стер_, rboh, erno,\n  { {0x386004cb, 0xa5330106, 0x9f5e0065, 0x00000000}},  //   mpir_, хніч, ritë_,\n  { {0x9f5e0065, 0x386000f6, 0x645b2a48, 0x00000000}},  //   sitë_, lpir_, _etui,\n  { {0x9f5e040a, 0x2fc700e0, 0x3a220085, 0x00000000}},  //   mité_, _anng_, _jkkp_,\n  { {0x9f5e31cb, 0xb034034b, 0xdb070023, 0x00000000}},  //   lité_, мниш, tejë,\n  { {0xb4d80201, 0x66023cee, 0x628310b1, 0x00000000}},  //   ाही_, liok, brno,\n  { {0x9f5e3cef, 0x81460a4f, 0x6283016c, 0x00000000}},  //   nité_, _فنان, crno,\n  { {0x63aa009f, 0x764e0009, 0x9f5e0173, 0x00000000}},  //   lefn, _muby, zitè_,\n  { {0x6298388f, 0x628a00b0, 0xdb1e000a, 0x00000000}},  //   ltvo, lufo, _anpà,\n  { {0x764e0263, 0x63aa009f, 0x62983cf0, 0x00000000}},  //   _ouby, nefn, otvo,\n  { {0x201e007f, 0x798d0007, 0x62980168, 0x00000000}},  //   moti_, tgaw, ntvo,\n  { {0xf8bf1ca5, 0x201e0059, 0x9f5e00f4, 0x00000000}},  //   _pré_, loti_, dité_,\n  { {0x798d0007, 0x2c270088, 0x6d400142, 0x00000000}},  // [e470] rgaw, _ньог, žmar,\n  { {0x201e008f, 0x9f4701ca, 0x9f5e009d, 0x00000000}},  //   noti_, _plné_, fité_,\n  { {0x3dc902c2, 0xd6db005e, 0x645b3cf1, 0x00000000}},  //   _knaw_, щта_, _stui,\n  { {0xf8bf1801, 0x764e0542, 0x660211fe, 0x00000000}},  //   _tré_, _duby, giok,\n  { {0x6283018e, 0x3e4c0224, 0x201e0ecb, 0x00000000}},  //   wrno, _děti_, koti_,\n  { {0x0fe70044, 0x201e0006, 0x7a050006, 0x00000000}},  //   _পদ্ধ, joti_, rėtu,\n  { {0x9f5e3cf2, 0x201e008f, 0x4e1d013d, 0x00000000}},  //   cité_, doti_, नवाई_,\n  { {0x3a290010, 0x200c006c, 0x24800091, 0x00000000}},  //   nlap_, endi_, šima_,\n  { {0x6b9c018e, 0x200c000c, 0x22460288, 0x00000000}},  //   yfrg, fndi_, _diok_,\n  { {0x201e0006, 0x00000000, 0x00000000, 0x00000000}},  //   goti_,   ,   ,\n  { {0xe7f5013d, 0x3a290336, 0x6830006c, 0x00000000}},  //   _इतना_, klap_, näda,\n  { {0xed570088, 0x200c0197, 0x22460022, 0x00000000}},  //   мою_, andi_, _giok_,\n  { {0x201e0995, 0x417402fd, 0xee371734, 0x00000000}},  //   boti_, _سانس, ьню_,\n  { {0x6602002d, 0x320d00fa, 0x201e0420, 0x00000000}},  //   ziok, lney_, coti_,\n  { {0xef1f006b, 0x9f5e009d, 0x3a2901c3, 0x00000000}},  //   şüb_, xité_, flap_,\n  { {0x320d278f, 0x9f5e3cf3, 0xad9b0051, 0x00000000}},  //   nney_, vité_, liún,\n  { {0x765c29bf, 0xd7c90183, 0x6e2401dd, 0x00000000}},  // [e480] _stry, रांच, _ikib,\n  { {0x66e6030d, 0x9f5e009d, 0xad9b0048, 0x00000000}},  //   моза, tité_, niún,\n  { {0x86c60054, 0x38600a16, 0x321f01aa, 0x00000000}},  //   بيان, spir_, kouy_,\n  { {0x9f5e028c, 0x452a01e0, 0xad9b0051, 0x00000000}},  //   rité_, ожен_, hiún,\n  { {0x9f5e00f4, 0x63aa000c, 0x320d00ab, 0x00000000}},  //   sité_, tefn, dney_,\n  { {0xd25a09ae, 0x684601e1, 0x66020416, 0x00000000}},  //   оци_, _інва, siok,\n  { {0x201e0006, 0xf743072b, 0x63aa06d6, 0x00000000}},  //   voti_, _аеро, refn,\n  { {0x321f01aa, 0x6298010f, 0x63aa000c, 0x00000000}},  //   gouy_, rtvo, sefn,\n  { {0x6298037e, 0x68e4023a, 0x201e0089, 0x00000000}},  //   stvo, nyid, toti_,\n  { {0x6e24020c, 0xad9b0051, 0x733601fa, 0x00000000}},  //   _akib, giún, _قرائ,\n  { {0x3c240039, 0x201e0161, 0xdef7007e, 0x00000000}},  //   hövs_, roti_, дыя_,\n  { {0x6e3613a6, 0x00e6005e, 0x64480122, 0x00000000}},  //   _chyb, _ожен, _hidi,\n  { {0x201e000b, 0x64481475, 0xdb0e1f7d, 0x00000000}},  //   poti_, _kidi, ndbæ,\n  { {0x644801aa, 0x6e243cf4, 0x7fb80014, 0x00000000}},  //   _jidi, _ekib, _رهبر_,\n  { {0x6448008d, 0x60c201ca, 0x3a290010, 0x00000000}},  //   _midi, _hrom, tlap_,\n  { {0x60c200b9, 0x1de3007d, 0x248616d0, 0x00000000}},  //   _krom, _पवित, krom_,\n  { {0x3a29031e, 0x7b6701e0, 0xf1b906ed, 0x00000000}},  // [e490] rlap_, _отне, noša_,\n  { {0x248629de, 0x64480197, 0x6e3d3cf5, 0x00000000}},  //   drom_, _nidi, lmsb,\n  { {0xf4140044, 0x9f4c004a, 0x00000000, 0x00000000}},  //   িতার_, lidó_,   ,\n  { {0x2486016c, 0x64480e71, 0x683000f8, 0x00000000}},  //   from_, _aidi, räda,\n  { {0xb4e90164, 0x64481ff1, 0xf1b901c5, 0x00000000}},  //   मने_, _bidi, joša_,\n  { {0x69dd01a2, 0x320d0c78, 0xc6a70256, 0x00000000}},  //   _hose, wney_, _орби,\n  { {0x320d077d, 0x644804d4, 0x387e0089, 0x00000000}},  //   tney_, _didi, _ātri_,\n  { {0x69dd04bd, 0x60c20039, 0xf770026c, 0x00000000}},  //   _jose, _brom, _ماہ_,\n  { {0x69dd0007, 0x320d00ab, 0x6e360016, 0x00000000}},  //   _mose, rney_, _rhyb,\n  { {0x60c20007, 0x6e240030, 0x6448011f, 0x00000000}},  //   _drom, _skib, _gidi,\n  { {0xa2c00061, 0xad9b102e, 0x60c20599, 0x00000000}},  //   विण्, riún, _erom,\n  { {0xad9b002a, 0x69dd01d9, 0x60c2084d, 0x00000000}},  //   siún, _nose, _from,\n  { {0x2e32000c, 0xad9b0051, 0x60c208c5, 0x00000000}},  //   gáfa_, miúl, _grom,\n  { {0x6e3d3cf6, 0xad9b0051, 0x61e91484, 0x00000000}},  //   amsb, liúl, lkel,\n  { {0x2005006a, 0x69dd011c, 0xf1d30309, 0x00000000}},  //   mili_, _bose, थापन,\n  { {0xf2d200bd, 0x61e902ae, 0x69dd3cf7, 0x00000000}},  //   נען_, nkel, _cose,\n  { {0x69dd3cf8, 0xa84a0355, 0x61e900b5, 0x00000000}},  // [e4a0] _dose, سلام_, ikel,\n  { {0x61e9006c, 0xdc9b0049, 0xad9b0051, 0x00000000}},  //   hkel, _צייל, hiúl,\n  { {0x64480585, 0x69dd3cf9, 0x7bde0026, 0x00000000}},  //   _ridi, _fose, _iopu,\n  { {0x248609fc, 0x7ae117ed, 0x200503ef, 0x00000000}},  //   trom_, älte, hili_,\n  { {0x2005187c, 0x64480c1b, 0x7bde3cfa, 0x00000000}},  //   kili_, _pidi, _kopu,\n  { {0x24800006, 0x2005000b, 0x61e90328, 0x00000000}},  //   šimo_, jili_, ekel,\n  { {0x2d800058, 0x44250146, 0x7bde0035, 0x00000000}},  //   _odie_, _dkl_, _mopu,\n  { {0xe6430057, 0x7bde021e, 0x64481300, 0x00000000}},  //   _бесп, _lopu, _widi,\n  { {0x64480073, 0x20050065, 0x09c50044, 0x00000000}},  //   _tidi, fili_, _একমা,\n  { {0x2005011f, 0x32040036, 0x9f4c008e, 0x00000000}},  //   gili_, simy_, vidó_,\n  { {0x211a01ef, 0x1b050044, 0x9f5e0051, 0x00000000}},  //   _کتاب_, _শুনে_, ontú_,\n  { {0x60c20292, 0x61e903a9, 0xad9b0051, 0x00000000}},  //   _trom, ckel, ciúl,\n  { {0x20051ff6, 0x9ccb007e, 0x7bde01c3, 0x00000000}},  //   bili_, чына_, _bopu,\n  { {0x69dd0059, 0x2d8000d2, 0x9f4c00fa, 0x00000000}},  //   _sose, _edie_, ridó_,\n  { {0x69dd0a0f, 0x6d4d001c, 0x7bde0209, 0x00000000}},  //   _pose, _tgaa, _dopu,\n  { {0x8e830025, 0x99cf0044, 0x63ba3cfb, 0x00000000}},  //   _إليه, রস্ক, _latn,\n  { {0x69dd0087, 0x00000000, 0x00000000, 0x00000000}},  // [e4b0] _vose,   ,   ,\n  { {0xf7700137, 0xd7c90014, 0x7bde01f3, 0x00000000}},  //   مام_, بوطه_, _gopu,\n  { {0x56950a1e, 0xfd1000a1, 0x99800295, 0x00000000}},  //   тает, _نجی_, sliš_,\n  { {0x2a610022, 0x2ca90022, 0x7e7a00ea, 0x00000000}},  //   _ithb_, _kpad_, istp,\n  { {0x44250093, 0x63ba000c, 0x00000000, 0x00000000}},  //   _pkl_, _batn,   ,\n  { {0x2005006b, 0x63ba0bec, 0xec720049, 0x00000000}},  //   xili_, _catn, בֿה_,\n  { {0xb5a7008b, 0x61e9182c, 0xad9b0051, 0x00000000}},  //   _прай, tkel, tiúl,\n  { {0x2005195b, 0x1635007c, 0x7777002b, 0x00000000}},  //   wili_, _ребя, laxx,\n  { {0x20050213, 0x63ba01e5, 0x44253cfc, 0x00000000}},  //   tili_, _fatn, _tkl_,\n  { {0x61e92334, 0xe9df0051, 0xad9b0051, 0x00000000}},  //   skel, _siúl_, siúl,\n  { {0x2005006a, 0x2bd50061, 0x2d8000f6, 0x00000000}},  //   rili_, दाना, _pdie_,\n  { {0x7bde0052, 0x00000000, 0x00000000, 0x00000000}},  //   _sopu,   ,   ,\n  { {0x7bde07d4, 0xad9b00c4, 0x63ba0022, 0x00000000}},  //   _popu, ciúm, _yatn,\n  { {0xafe2007c, 0x00000000, 0x00000000, 0x00000000}},  //   _вошл,   ,   ,\n  { {0xab27017f, 0x00000000, 0x00000000, 0x00000000}},  //   вора_,   ,   ,\n  { {0x2a36007e, 0x00000000, 0x00000000, 0x00000000}},  //   тэгр,   ,   ,\n  { {0x25bd018e, 0x7bde149f, 0x673501d5, 0x00000000}},  // [e4c0] ddwl_, _topu, _azzj,\n  { {0xdb1c0065, 0xf1b901c5, 0x00000000, 0x00000000}},  //   ndrë, košo_,   ,\n  { {0x63ba037e, 0xc81501fb, 0xf1b90089, 0x00000000}},  //   _ratn, уєть, jošo_,\n  { {0x7c2e0210, 0x63ba016e, 0xf1b90089, 0x00000000}},  //   llbr, _satn, došo_,\n  { {0x2b06013d, 0x00000000, 0x00000000, 0x00000000}},  //   _हेतु_,   ,   ,\n  { {0xdb0701dc, 0x77770026, 0x82a601ab, 0x00000000}},  //   zejí, caxx, вшие,\n  { {0xfba402fb, 0x63ba021a, 0x2ba40309, 0x00000000}},  //   ख्यम, _vatn, ख्या,\n  { {0xcb130452, 0xbbdf0183, 0x63ba00e0, 0x00000000}},  //   ילו_, _नक्क, _watn,\n  { {0x5edf0044, 0x63ba0066, 0x00000000, 0x00000000}},  //   _ফেলে, _tatn,   ,\n  { {0x9ed800ed, 0xef1f014a, 0x00000000, 0x00000000}},  //   емот_, ğün_,   ,\n  { {0xd36f0014, 0x2ca90145, 0xef1f005d, 0x00000000}},  //   _ذهن_, _spad_, şün_,\n  { {0x7e7a0c46, 0x442e00f6, 0xdb1c0023, 0x00000000}},  //   rstp, llf_, adrë,\n  { {0x5c07005e, 0x6fb60025, 0xa3b60204, 0x00000000}},  //   вява, _لمشا, _जसा_,\n  { {0xdb0700b9, 0x2f180604, 0x00000000, 0x00000000}},  //   sejí, _поль_,   ,\n  { {0x9f5e3cfd, 0x3ced00ca, 0x201900f4, 0x00000000}},  //   mità_, šev_, ésie_,\n  { {0x9f5e0282, 0x7c2e00ea, 0x996416e8, 0x00000000}},  //   lità_, albr, итул,\n  { {0x101700a1, 0x6d5d0010, 0xa8150140, 0x00000000}},  // [e4d0] _سکیں_, mcsa, гдаш,\n  { {0x9f5e13f0, 0x00000000, 0x00000000, 0x00000000}},  //   nità_,   ,   ,\n  { {0x77770066, 0xf7700380, 0x00000000, 0x00000000}},  //   raxx, زال_,   ,\n  { {0x6d5d0010, 0x80b7006e, 0x00000000, 0x00000000}},  //   ncsa, ्टमे,   ,\n  { {0x69cf3cfe, 0x45840088, 0x65943cff, 0x00000000}},  //   _ince, ргів, рачу,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x9f5e0282, 0x36d40194, 0x00000000, 0x00000000}},  //   dità_, _корр,   ,\n  { {0x442e00c7, 0xf48500a1, 0x85040061, 0x00000000}},  //   alf_, _مائی, _शेवट_,\n  { {0xc61f0061, 0xbcfb16ff, 0x9f5e00f6, 0x00000000}},  //   यकीय_, ncéd, fità_,\n  { {0xa2c00164, 0x9f450051, 0x9f5e0026, 0x00000000}},  //   विश्, mhlú_, gità_,\n  { {0x69cf0095, 0x5f05034b, 0x00000000, 0x00000000}},  //   _once, узна,   ,\n  { {0x76550046, 0x2459001d, 0x00000000, 0x00000000}},  //   _muzy, _kèm_,   ,\n  { {0x2d9e0036, 0x245901aa, 0x1fdf0044, 0x00000000}},  //   ęte_, _jèm_, যোগস,\n  { {0x9f5e0198, 0x2d9e00b9, 0x24591e60, 0x00000000}},  //   cità_, řte_, _mèm_,\n  { {0xf8bf0047, 0x2459135a, 0x3eb90089, 0x00000000}},  //   _szép_, _lèm_, āsts_,\n  { {0xdb1c3d00, 0x7ae100f8, 0x00000000, 0x00000000}},  //   ndré, älta,   ,\n  { {0xdb0e000c, 0x6e260010, 0xc7a61b15, 0x00000000}},  // [e4e0] ndbú, mokb, лиак,\n  { {0x67f2009f, 0x998900b4, 0x46f61b15, 0x00000000}},  //   _bæja, gnał_, лчет,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xd5b901ff, 0x657900e0, 0x00000000, 0x00000000}},  //   ксі_, gawh,   ,\n  { {0xbcfb009d, 0xa4d40088, 0x00000000, 0x00000000}},  //   ccéd, ролі,   ,\n  { {0xd7f20025, 0x00000000, 0x00000000, 0x00000000}},  //   _اكس_,   ,   ,\n  { {0x9f5e0409, 0x66e3030d, 0x628a01c3, 0x00000000}},  //   vità_, _лора, urfo,\n  { {0x245901aa, 0x00000000, 0x00000000, 0x00000000}},  //   _fèm_,   ,   ,\n  { {0x463b007b, 0x9f5e17f4, 0xe45f014a, 0x00000000}},  //   _טעלע, tità_, _çöp_,\n  { {0x527604af, 0x09e1001c, 0xad9b0051, 0x00000000}},  //   _буду, _नव्य, miúi,\n  { {0x9f5e13f0, 0xad9b0051, 0x29dc02a0, 0x00000000}},  //   rità_, liúi, _díaz_,\n  { {0x9f5e0207, 0x245901aa, 0x867b009b, 0x00000000}},  //   sità_, _yèm_, ערכו,\n  { {0xcd070216, 0xad9b0051, 0x63a8012d, 0x00000000}},  //   учни, niúi, _kbdn,\n  { {0x61e20004, 0xab95012b, 0x30830025, 0x00000000}},  //   _hool, јављ, _الوف,\n  { {0xc4c4024a, 0xad9b0051, 0x61e20114, 0x00000000}},  //   _کے_, hiúi, _kool,\n  { {0x61e201d6, 0x82770049, 0x7655013e, 0x00000000}},  //   _jool, טעלע_, _ruzy,\n  { {0xcfb70055, 0x61e201d6, 0x26e20044, 0x00000000}},  // [e4f0] জারন, _mool, _গেলো_,\n  { {0xad9b0051, 0x24590082, 0x61e2010e, 0x00000000}},  //   diúi, _rèm_, _lool,\n  { {0x26c70285, 0x65793d01, 0xf77003d6, 0x00000000}},  //   íno_, tawh, ثاق_,\n  { {0x69cf0133, 0x61e2010e, 0x9f450048, 0x00000000}},  //   _unce, _nool, thlú_,\n  { {0xad9b0051, 0xa8790049, 0x65790066, 0x00000000}},  //   giúi, _באָר, rawh,\n  { {0x3206011c, 0x00000000, 0x00000000, 0x00000000}},  //   _amoy_,   ,   ,\n  { {0x38690332, 0x00000000, 0x00000000, 0x00000000}},  //   lpar_,   ,   ,\n  { {0x245901aa, 0x61e200ab, 0x11e5007c, 0x00000000}},  //   _tèm_, _cool, ржим,\n  { {0x61e201d6, 0xad9b0051, 0xe5340088, 0x00000000}},  //   _dool, ciúi, _геть,\n  { {0x25bf3d02, 0x660b0302, 0x249f01f3, 0x00000000}},  //   _haul_, ligk, _iqum_,\n  { {0x02d91847, 0x3255004c, 0x3ea500ed, 0x00000000}},  //   _جواب_, _твер, шинг,\n  { {0x61e20197, 0x720700a1, 0x3f8b0c4f, 0x00000000}},  //   _gool, _حفصہ_, şcu_,\n  { {0x44270004, 0x7ae1010f, 0x200b00f4, 0x00000000}},  //   oon_, ältn, écis_,\n  { {0x1ef90054, 0x64430051, 0x660b010f, 0x00000000}},  //   _لعبة_, nmni, higk,\n  { {0xab2a0265, 0x64433d03, 0x4427186c, 0x00000000}},  //   това_, imni, ion_,\n  { {0x44273d04, 0xdb1e0065, 0x60c4016e, 0x00000000}},  //   hon_, _hapë, _šimi,\n  { {0x44270209, 0xa8061561, 0x9756012b, 0x00000000}},  // [e500] kon_, азал, атељ,\n  { {0x44270292, 0x64430036, 0xdb071748, 0x00000000}},  //   jon_, jmni, sejá,\n  { {0x25bf1ebf, 0x09c50044, 0x20070022, 0x00000000}},  //   _baul_, _একরা, _mmni_,\n  { {0xad9b002a, 0xe5a6142c, 0x4427005b, 0x00000000}},  //   tiúi, риди, eon_,\n  { {0x44272c60, 0x2480002a, 0x20071b27, 0x00000000}},  //   fon_, éim_, _omni_,\n  { {0x44270aa4, 0x61e2006c, 0xad9b0051, 0x00000000}},  //   gon_, _sool, riúi,\n  { {0x66e60373, 0xad9b002a, 0x660b0548, 0x00000000}},  //   _това, siúi, bigk,\n  { {0x24890ade, 0x30a602be, 0x25bf023a, 0x00000000}},  //   šama_, аров, _gaul_,\n  { {0x44271987, 0xdfd00054, 0x61e2006c, 0x00000000}},  //   bon_, كية_, _vool,\n  { {0x44270498, 0x61e20133, 0x20070145, 0x00000000}},  //   con_, _wool, _cmni_,\n  { {0x3fc802fd, 0x20190129, 0x443e1506, 0x00000000}},  //   ندگی_, ésia_, _iht_,\n  { {0x442c0093, 0x10a6007c, 0x443e0082, 0x00000000}},  //   _hkd_, _видн, _hht_,\n  { {0x442c0022, 0x00d70167, 0x13aa0044, 0x00000000}},  //   _kkd_, _نبوت_, _গোয়,\n  { {0x26fc0055, 0x99890036, 0x20070022, 0x00000000}},  //   _এখনো_, znań_, _gmni_,\n  { {0x7ac40373, 0x200c1097, 0x443e0030, 0x00000000}},  //   осте, midi_, _mht_,\n  { {0x4427060b, 0x443e0058, 0x5d850025, 0x00000000}},  //   zon_, _lht_, _الظل,\n  { {0x44272f00, 0xe7d2001c, 0xa3b602d2, 0x00000000}},  // [e510] yon_, सांप, ज़ा_,\n  { {0x44273d05, 0x25bf01d6, 0x38690016, 0x00000000}},  //   xon_, _saul_, rpar_,\n  { {0x44271744, 0x660b010f, 0xe9450014, 0x00000000}},  //   von_, tigk, _گردی,\n  { {0x200c000b, 0x44273d06, 0x38693d07, 0x00000000}},  //   hidi_, won_, ppar_,\n  { {0xd49b00e3, 0x442c3d08, 0x660b01a2, 0x00000000}},  //   тре_, _bkd_, rigk,\n  { {0x660b010f, 0x6443016c, 0x212f0056, 0x00000000}},  //   sigk, umni, _rygh_,\n  { {0x442702e2, 0x68ed1892, 0x64430193, 0x00000000}},  //   ron_, lyad, rmni,\n  { {0x40950726, 0x6e2d0009, 0xef1f014a, 0x00000000}},  //   брот, _nkab, şük_,\n  { {0x68ed0890, 0x6609000b, 0x4427066d, 0x00000000}},  //   nyad, _imek, pon_,\n  { {0x753b037e, 0x6e2d1786, 0x200c0197, 0x00000000}},  //   _izuz, _akab, gidi_,\n  { {0x68ed0022, 0x00000000, 0x00000000, 0x00000000}},  //   hyad,   ,   ,\n  { {0x7c3e008d, 0xc692007b, 0xa159003b, 0x00000000}},  //   _shpr, האט_, _саду_,\n  { {0x661b3d09, 0x200c0020, 0x66091519, 0x00000000}},  //   _mjuk, bidi_, _mmek,\n  { {0x3c19008b, 0x200c0197, 0x6830010f, 0x00000000}},  //   аўся_, cidi_, pädi,\n  { {0x6e950379, 0xa3a902f4, 0x5e950025, 0x00000000}},  //   _العا, ग्य_, _العط,\n  { {0x661b012d, 0x00000000, 0x00000000, 0x00000000}},  //   _njuk,   ,   ,\n  { {0x81cc0044, 0x26ca016c, 0xf99f0173, 0x00000000}},  // [e520] _রকম_, _srbo_, _imèl_,\n  { {0x6609000b, 0xdb1c158b, 0x661b14f0, 0x00000000}},  //   _amek, ldrí, _ajuk,\n  { {0x2bd5001c, 0x5b5701ce, 0xd378016e, 0x00000000}},  //   दारा, _לייב_, _reć_,\n  { {0x200c0020, 0xdb1c0211, 0x442c0059, 0x00000000}},  //   zidi_, ndrí, _skd_,\n  { {0x661b0107, 0x61fb0020, 0xceb80036, 0x00000000}},  //   _djuk, dhul, zwę_,\n  { {0x29000020, 0x6609014a, 0x443e006b, 0x00000000}},  //   mzia_, _emek, _qht_,\n  { {0xd3780119, 0x200c0207, 0xf1d30061, 0x00000000}},  //   _već_, vidi_, थांन,\n  { {0x61fb000b, 0x443e3d0a, 0xda7b0049, 0x00000000}},  //   ghul, _wht_, אנקר,\n  { {0x78a4049a, 0x29003d0b, 0x442c23c4, 0x00000000}},  //   ntiv, nzia_, _tkd_,\n  { {0x6e2d0018, 0x6ee60025, 0x656200d9, 0x00000000}},  //   _skab, مسجل, lcoh,\n  { {0xdd910076, 0x200c0020, 0x78a401c2, 0x00000000}},  //   وود_, ridi_, htiv,\n  { {0x61fb010f, 0x65620023, 0x633b0049, 0x00000000}},  //   chul, ncoh, _געבױ,\n  { {0x69c401d5, 0x200c1d79, 0x2d99046a, 0x00000000}},  //   ddie, pidi_, rgse_,\n  { {0x69c40089, 0x29003d0c, 0x6d560010, 0x00000000}},  //   edie, dzia_, _egya,\n  { {0xec3401fb, 0xcfa9007a, 0x76403d0d, 0x00000000}},  //   їнсь, _خانم_, _ohmy,\n  { {0xf1b90089, 0x69c40116, 0x6e2d3d0e, 0x00000000}},  //   toši_, gdie, _ukab,\n  { {0x7c97004b, 0x2d8900f6, 0x00000000, 0x00000000}},  // [e530] _اشعا, _idae_,   ,\n  { {0x661b01c9, 0x6609074d, 0x68ed0093, 0x00000000}},  //   _sjuk, _smek, ryad,\n  { {0x78a40209, 0x68ed006a, 0x29000197, 0x00000000}},  //   ativ, syad, azia_,\n  { {0xd2460014, 0x99990006, 0xe7f50061, 0x00000000}},  //   _زن_, _visų_, _इतका_,\n  { {0x78a41294, 0x039501c5, 0x00000000, 0x00000000}},  //   ctiv, žīmā_,   ,\n  { {0x248913cf, 0x00000000, 0x00000000, 0x00000000}},  //   šamo_,   ,   ,\n  { {0xdb1e0181, 0x61fb08a5, 0x661b00ea, 0x00000000}},  //   _papé, thul, _tjuk,\n  { {0x66090020, 0xa5f80930, 0x60db0032, 0x00000000}},  //   _umek, _лесу_, txum,\n  { {0x201900c4, 0x00000000, 0x00000000, 0x00000000}},  //   ésio_,   ,   ,\n  { {0x60090175, 0x61fb0041, 0x657b0433, 0x00000000}},  //   рном_, shul, _heuh,\n  { {0xe4480025, 0x29000197, 0x60c40006, 0x00000000}},  //   _اللى_, zzia_, _šimt,\n  { {0x9f4501dc, 0xf8bf009d, 0x645b00e7, 0x00000000}},  //   chlý_, _osé_, _kuui,\n  { {0xc0e51281, 0x628300bb, 0x00000000, 0x00000000}},  //   _фолк, lsno,   ,\n  { {0x317f0232, 0x6d560009, 0x645b00fa, 0x00000000}},  //   lauz_, _wgya, _muui,\n  { {0x60c9049a, 0x69c4125b, 0x1ea80014, 0x00000000}},  //   lvem, tdie, _هايي_,\n  { {0x78a43d0f, 0x6d560047, 0x2900022b, 0x00000000}},  //   ttiv, _ugya, tzia_,\n  { {0x98a300a8, 0xf1b200a3, 0x29002ecb, 0x00000000}},  // [e540] мите, וסן_, uzia_,\n  { {0xda0b0061, 0x29000142, 0x9cb30014, 0x00000000}},  //   सोबत_, rzia_, _کمیت,\n  { {0x56930088, 0x69c412ec, 0xdb0e01a2, 0x00000000}},  //   даєт, pdie, ndbü,\n  { {0x78a400ab, 0xad9b0051, 0x628300d9, 0x00000000}},  //   ptiv, liúr, dsno,\n  { {0x6441002a, 0x21f80010, 0x65620023, 0x00000000}},  //   _bhli, _néha_, rcoh,\n  { {0x20190ff6, 0x64413d10, 0x25ad00ca, 0x00000000}},  //   ésil_, _chli, _ebel_,\n  { {0xfc3f1526, 0xa2bd01f5, 0xa3a9006e, 0x00000000}},  //   ntía_, _वैद्, ग्ध_,\n  { {0xd3780091, 0x6441014a, 0x317f0334, 0x00000000}},  //   _moći_, _ehli, gauz_,\n  { {0xef180089, 0x64a60216, 0x41a601f5, 0x00000000}},  //   daļa_, _фаза, क्षस,\n  { {0x765c011c, 0x4ea60d68, 0x244001aa, 0x00000000}},  //   _kury, орма, fòme_,\n  { {0xd3780091, 0x2bde0067, 0x765c02e1, 0x00000000}},  //   _noći_, माना, _jury,\n  { {0x765c0ef9, 0x00000000, 0x00000000, 0x00000000}},  //   _mury,   ,   ,\n  { {0x5c74060e, 0x202901e5, 0x00000000, 0x00000000}},  //   млят, ótið_,   ,\n  { {0x63b800bf, 0xc04f01e1, 0xdb150010, 0x00000000}},  //   nevn, _іі_, lezé,\n  { {0xc1ee013d, 0x3950006b, 0x765c0f42, 0x00000000}},  //   _जवाब_, ənsə_, _nury,\n  { {0xd3780363, 0x91fc0089, 0xee0800ed, 0x00000000}},  //   _doći_, _stāj, _мејл_,\n  { {0x2e32000c, 0xbd8800a1, 0x62550066, 0x00000000}},  // [e550] gáfu_, _بچپن_, _jġor,\n  { {0x765c0061, 0xf77006b4, 0xdb17006b, 0x00000000}},  //   _bury, نام_, _naxç,\n  { {0xd6db0269, 0xdb150047, 0x35b5005e, 0x00000000}},  //   шта_, kezé, збер,\n  { {0xdb150010, 0x765c0006, 0x64410051, 0x00000000}},  //   jezé, _dury, _shli,\n  { {0x7bc5006a, 0x9f4c0051, 0x765c00ea, 0x00000000}},  //   _kahu, ghdú_, _eury,\n  { {0x628300bb, 0x7bc70010, 0x7bc5006c, 0x00000000}},  //   tsno, ndju, _jahu,\n  { {0x7bc51312, 0x61f90009, 0x657b0023, 0x00000000}},  //   _mahu, _plwl, _teuh,\n  { {0x4095013b, 0xdb1c004a, 0x628301d6, 0x00000000}},  //   прот, ndrá, rsno,\n  { {0x628302e1, 0x60090088, 0xe0d6007e, 0x00000000}},  //   ssno, йним_, звы_,\n  { {0x7bc5011c, 0xaf050265, 0x60c901b1, 0x00000000}},  //   _nahu, зпол, rvem,\n  { {0xed5a0c74, 0x7bc707c4, 0x00000000, 0x00000000}},  //   йон_, ddju,   ,\n  { {0xd1310054, 0xf1b90089, 0x00000000, 0x00000000}},  //   _كما_, tošu_,   ,\n  { {0xf1b90059, 0x7bc524be, 0x00000000, 0x00000000}},  //   meš_, _bahu,   ,\n  { {0x9f470065, 0x7bc50035, 0xf1b90089, 0x00000000}},  //   _jonë_, _cahu, rošu_,\n  { {0x7bc5027e, 0x0f7a009b, 0x39590022, 0x00000000}},  //   _dahu, _הרצל, _bgss_,\n  { {0x09e30113, 0x63b805fa, 0x78660e85, 0x00000000}},  //   носн, zevn, зказ,\n  { {0x2d820d2a, 0x765c023a, 0xfc3f008e, 0x00000000}},  // [e560] make_, _sury, stía_,\n  { {0x2d82011c, 0x9ce7026c, 0xfc3f002a, 0x00000000}},  //   lake_, _روپے_, ltín_,\n  { {0xf1bd024c, 0x41bd001c, 0xdb1e0263, 0x00000000}},  //   ्यान, ्यास, _enpò,\n  { {0x2d820059, 0x7c2e0ade, 0xf1b90091, 0x00000000}},  //   nake_, lobr, ješ_,\n  { {0x63b801ca, 0x7bc50996, 0xf1b90161, 0x00000000}},  //   tevn, _yahu, deš_,\n  { {0x62980736, 0x69c6021e, 0x765c0046, 0x00000000}},  //   tuvo, _hake, _tury,\n  { {0x69c63d11, 0x63b83d12, 0xa2b300a1, 0x00000000}},  //   _kake, revn, ٹینڈ,\n  { {0x2d8209fc, 0x69c60297, 0x64a601fc, 0x00000000}},  //   jake_, _jake, _наба,\n  { {0x69c60f12, 0x2d82006c, 0xdb23000c, 0x00000000}},  //   _make, dake_, _þrön,\n  { {0xe9df0011, 0x2ef40175, 0x69c600ab, 0x00000000}},  //   _khúc_, дзор, _lake,\n  { {0x7bc50004, 0x24863d13, 0x7c2e016e, 0x00000000}},  //   _rahu, lsom_, dobr,\n  { {0xdb1e045b, 0x442e01d6, 0x69c60472, 0x00000000}},  //   _capí, lof_, _nake,\n  { {0x24860145, 0xdb1c000c, 0x1154007e, 0x00000000}},  //   nsom_, ndræ, _ўклю,\n  { {0x60c200b0, 0xc5fa0044, 0xf1da013d, 0x00000000}},  //   _isom, েকটা_, भावन,\n  { {0x69c61624, 0x2d8238d5, 0x7bc70864, 0x00000000}},  //   _bake, bake_, rdju,\n  { {0x24860039, 0x69c601a3, 0x442e0125, 0x00000000}},  //   ksom_, _cake, hof_,\n  { {0x7bc50149, 0x442e1c44, 0xbd450464, 0x00000000}},  // [e570] _tahu, kof_, _تنظي,\n  { {0xd6db1523, 0x9f4701aa, 0x60c20020, 0x00000000}},  //   йте_, _bonè_, _msom,\n  { {0xe9df001d, 0xa7fb0553, 0x3e610011, 0x00000000}},  //   _chúc_, _nuñe, _xót_,\n  { {0xe9df001d, 0x9f470065, 0x69c60045, 0x00000000}},  //   _giúp_, _sonë_, _gake,\n  { {0x8cd0013d, 0x60c201f3, 0x6288012d, 0x00000000}},  //   दियो, _nsom, _avdo,\n  { {0x69c602ae, 0x2d82210c, 0x63ad0107, 0x00000000}},  //   _zake, zake_, đano,\n  { {0xea00001d, 0xddcd0046, 0x9f470065, 0x00000000}},  //   _hoạt_, _miał, _vonë_,\n  { {0x3e6103a3, 0x644a24d9, 0xe5730257, 0x00000000}},  //   _rót_, amfi, _سطر_,\n  { {0x3494008b, 0xf1b901d9, 0x9f47008d, 0x00000000}},  //   _патр, reš_, _tonë_,\n  { {0x2d82000b, 0xdb1e0181, 0xf1b900ee, 0x00000000}},  //   wake_, _japã, seš_,\n  { {0xdb1e3d14, 0xea000011, 0xf1b9144f, 0x00000000}},  //   _papí, _loạt_, peš_,\n  { {0x7c2e026e, 0x00000000, 0x00000000, 0x00000000}},  //   wobr,   ,   ,\n  { {0x69c61c79, 0x7c2e03e2, 0x522a007b, 0x00000000}},  //   _rake, tobr, _ווײַ,\n  { {0x69c63d15, 0xfc3f000c, 0x2d821ec2, 0x00000000}},  //   _sake, stín_, sake_,\n  { {0x69c60b53, 0x2d823d16, 0xfaa30081, 0x00000000}},  //   _pake, pake_, каро,\n  { {0x2fc71d57, 0x7c2e1346, 0x61eb3d17, 0x00000000}},  //   _hang_, sobr, _jogl,\n  { {0x61eb2b24, 0x2fc70b9a, 0x69c600b5, 0x00000000}},  // [e580] _mogl, _kang_, _vake,\n  { {0x442e0061, 0x26d10e45, 0xe9df001d, 0x00000000}},  //   xof_, _brzo_, _phúc_,\n  { {0x2fc73d18, 0x69c60038, 0x99800006, 0x00000000}},  //   _mang_, _take, ulių_,\n  { {0x2fc72b1c, 0x61eb0018, 0x9f5e0065, 0x00000000}},  //   _lang_, _nogl, thtë_,\n  { {0x2d800004, 0x99800006, 0x2fc70085, 0x00000000}},  //   _meie_, slių_, _oang_,\n  { {0x2fc73d19, 0x2486067e, 0xe9df0011, 0x00000000}},  //   _nang_, rsom_, _thúc_,\n  { {0x9f5e008d, 0x96630256, 0x61eb0d22, 0x00000000}},  //   shtë_, _аксе, _bogl,\n  { {0x61eb0207, 0xf743025f, 0x442e2d65, 0x00000000}},  //   _cogl, _ресо, sof_,\n  { {0x2fc73d1a, 0x442e01c3, 0x00000000, 0x00000000}},  //   _bang_, pof_,   ,\n  { {0x44380051, 0x2fc70082, 0x00000000, 0x00000000}},  //   _ór_, _cang_,   ,\n  { {0x61eb3d1b, 0xdb0e0039, 0x2fc70011, 0x00000000}},  //   _fogl, nebä, _dang_,\n  { {0x61eb018e, 0x2fc7018e, 0x99890036, 0x00000000}},  //   _gogl, _eang_, ział_,\n  { {0x2fc70191, 0x79840020, 0x60c23d1c, 0x00000000}},  //   _fang_, daiw, _usom,\n  { {0x2fc71d1b, 0x00000000, 0x00000000, 0x00000000}},  //   _gang_,   ,   ,\n  { {0xef1f0180, 0xa3b001f5, 0x62a20161, 0x00000000}},  //   şür_, ट्य_, _útoč,\n  { {0x2fc700bb, 0x20140036, 0x60cd12db, 0x00000000}},  //   _zang_, ścić_, _šami,\n  { {0x2fc70149, 0xe9df0011, 0x66020023, 0x00000000}},  // [e590] _yang_, _chúa_, dhok,\n  { {0x201e000c, 0x1ddd007d, 0x22460022, 0x00000000}},  //   nnti_, यावत, _lhok_,\n  { {0xa3e20309, 0x201e00b0, 0xf4140044, 0x00000000}},  //   धान_, inti_, াকার_,\n  { {0x22460082, 0x99890036, 0x00000000, 0x00000000}},  //   _nhok_, siał_,   ,\n  { {0x61eb0087, 0x00000000, 0x00000000, 0x00000000}},  //   _rogl,   ,   ,\n  { {0x61eb3d1d, 0x00000000, 0x00000000, 0x00000000}},  //   _sogl,   ,   ,\n  { {0x61eb0340, 0x6b7c00b6, 0x2fc70bf5, 0x00000000}},  //   _pogl, חרונ, _rang_,\n  { {0x2fc7001d, 0xdb1c02d5, 0x201e0207, 0x00000000}},  //   _sang_, ferê, enti_,\n  { {0x61eb3d1e, 0x2fc7006a, 0xdb1e3008, 0x00000000}},  //   _vogl, _pang_, _mapá,\n  { {0xe3b0007a, 0x2d800056, 0x3dc900e0, 0x00000000}},  //   _نرم_, _seie_, _aaaw_,\n  { {0x61eb0207, 0x2fc73d1f, 0x6da600ed, 0x00000000}},  //   _togl, _vang_, нина,\n  { {0x2fc70127, 0x91fc001e, 0x201e06bd, 0x00000000}},  //   _wang_, _stāv, anti_,\n  { {0x2fc70011, 0x51840451, 0xdb0e0538, 0x00000000}},  //   _tang_, _руха, ndbö,\n  { {0x2fc70390, 0x224d3d20, 0x3ced006c, 0x00000000}},  //   _uang_, lmek_, äeva_,\n  { {0x2d800004, 0x3f8500b9, 0x2bd50061, 0x00000000}},  //   _teie_, malu_, दाजा,\n  { {0xe1f9010a, 0x3f85020c, 0x224d014a, 0x00000000}},  //   nkų_, lalu_, nmek_,\n  { {0x63ad0363, 0xdb05010f, 0xcc8a0025, 0x00000000}},  // [e5a0] đanj, _abhä, _عنده_,\n  { {0xfd471001, 0x3f850340, 0xdb1c0065, 0x00000000}},  //   _язык_, nalu_, nerë,\n  { {0xc0490082, 0x869a005e, 0x224d014a, 0x00000000}},  //   _sườn_, ятат_, kmek_,\n  { {0xf5390027, 0x14ca007c, 0x3f85315e, 0x00000000}},  //   _byť_, зыки_, halu_,\n  { {0xc955008b, 0x3f850089, 0x201e00b0, 0x00000000}},  //   _атры, kalu_, ynti_,\n  { {0xc0490011, 0x22460065, 0xf2c6004d, 0x00000000}},  //   _vườn_, _shok_, есин,\n  { {0xf74300e3, 0xdb1c0023, 0x3f850213, 0x00000000}},  //   _беро, derë, dalu_,\n  { {0x68e400f8, 0xdb1c0dce, 0xf99f000a, 0x00000000}},  //   oxid, terê, _elèf_,\n  { {0xdfd00054, 0xbddb00f4, 0x3f850016, 0x00000000}},  //   لية_, llèg, falu_,\n  { {0xa2e6012b, 0x201e3d21, 0x3f85007f, 0x00000000}},  //   _позд, unti_, galu_,\n  { {0x6d443d22, 0x22460022, 0x00000000, 0x00000000}},  //   _azia, _thok_,   ,\n  { {0x628a004e, 0x645a0020, 0x443c06d3, 0x00000000}},  //   msfo, _hiti, llv_,\n  { {0x645a0006, 0x6f0600f4, 0x3f85154c, 0x00000000}},  //   _kiti, _bébé, balu_,\n  { {0x6d440046, 0x645a06a9, 0xbcfb0048, 0x00000000}},  //   _dzia, _jiti, ncéi,\n  { {0x645a006b, 0x03d7009b, 0xe9df0051, 0x00000000}},  //   _miti, עולם_, _dhún_,\n  { {0x62980190, 0x645a124c, 0x00000000, 0x00000000}},  //   irvo, _liti,   ,\n  { {0xab8702be, 0xb955005e, 0x645a2522, 0x00000000}},  // [e5b0] _пунк, тващ, _oiti,\n  { {0x6e3d06a1, 0x628a0944, 0x6298016c, 0x00000000}},  //   llsb, ksfo, krvo,\n  { {0x2bde0204, 0xa7fb008e, 0x9f5e004a, 0x00000000}},  //   मारा, _cuña, litó_,\n  { {0x628a0b09, 0xf650004b, 0x7afa01e3, 0x00000000}},  //   dsfo, مئن_, øtte,\n  { {0x69dd0198, 0x645a005d, 0x629800bb, 0x00000000}},  //   _inse, _biti, ervo,\n  { {0x7415004b, 0x3fcb0055, 0xdb1c04bd, 0x00000000}},  //   ضوعا, _লক্ষ, ferè,\n  { {0x9f4d0279, 0x78ad00b0, 0x645a04cb, 0x00000000}},  //   ünün_, ltav, _diti,\n  { {0xe4e70088, 0xe1f90006, 0x645a0051, 0x00000000}},  //   _пізн, ukų_, _eiti,\n  { {0x78ad0ef7, 0x224d011f, 0x645a0065, 0x00000000}},  //   ntav, rmek_, _fiti,\n  { {0x24550cd9, 0x628a0296, 0x645a1c39, 0x00000000}},  //   _شناس, bsfo, _giti,\n  { {0x69dd3d23, 0x78ad003c, 0x248d01e3, 0x00000000}},  //   _onse, htav, _hvem_,\n  { {0x78ad0dec, 0x645a010f, 0x3f85006c, 0x00000000}},  //   ktav, _ziti, salu_,\n  { {0x6448021e, 0xf6520049, 0x78ad0065, 0x00000000}},  //   _yhdi, יצט_, jtav,\n  { {0x69dd3bc7, 0x61e93d24, 0x78ad016c, 0x00000000}},  //   _anse, ljel, dtav,\n  { {0xa3e2001c, 0xbddb02d0, 0x47ca0044, 0x00000000}},  //   धात_, tmèt, রামী,\n  { {0xba23012b, 0x61e9020c, 0x3eaa01c8, 0x00000000}},  //   адск, njel, žití_,\n  { {0x9f5e3d25, 0x753b00e7, 0x248d0087, 0x00000000}},  // [e5c0] citó_, _nyuz, _nvem_,\n  { {0x480300ed, 0x61e93d26, 0x69dd2fc4, 0x00000000}},  //   апув, hjel, _ense,\n  { {0x7bde001c, 0x645a0207, 0x248d000d, 0x00000000}},  //   _inpu, _riti, _avem_,\n  { {0x645a3d27, 0xa2d503d7, 0xc1bd007d, 0x00000000}},  //   _siti, भिन्, ्योग,\n  { {0x61e90182, 0x645a0607, 0x78ad00d4, 0x00000000}},  //   djel, _piti, ctav,\n  { {0xdb1c25b8, 0x7bce059b, 0xdb1e00d4, 0x00000000}},  //   terè, ndbu, _capç,\n  { {0x645a008d, 0x66e3013b, 0x61e90056, 0x00000000}},  //   _viti, _кора, fjel,\n  { {0x61e93d28, 0x61fb0058, 0x645a0145, 0x00000000}},  //   gjel, gkul, _witi,\n  { {0x91fc001e, 0x673c0065, 0xdb050173, 0x00000000}},  //   _stās, _hyrj, _echè,\n  { {0x645a0112, 0x2d920173, 0x628a00ea, 0x00000000}},  //   _uiti, _adye_, psfo,\n  { {0x7e6401c5, 0x29091081, 0x00000000, 0x00000000}},  //   _čips, zzaa_,   ,\n  { {0xe9df0051, 0x61e9016e, 0x61fb3c61, 0x00000000}},  //   _chúl_, cjel, ckul,\n  { {0x6e3d032e, 0xa3e6013d, 0x78ad0ddd, 0x00000000}},  //   rlsb, _बचा_, xtav,\n  { {0xdfcf0025, 0x7e630270, 0xac240216, 0x00000000}},  //   _وين_, _funp, афск,\n  { {0xdeef03c8, 0x199509b2, 0x9f5e12c5, 0x00000000}},  //   _ты_, лавя, sitó_,\n  { {0x78ad021e, 0x63ad037e, 0x0f5700b6, 0x00000000}},  //   ttav, đani, _ביום_,\n  { {0xc4c4026c, 0x69cd0b32, 0x57b51f24, 0x00000000}},  // [e5d0] _بے_, rdae, лбат,\n  { {0x78ad09fb, 0x673c021a, 0x76490da4, 0x00000000}},  //   rtav, _byrj, _shey,\n  { {0xcf93007b, 0xa3d60316, 0xd838007e, 0x00000000}},  //   שטע_, ियन_, тэт_,\n  { {0x69dd001f, 0xa3b002d2, 0xceb30097, 0x00000000}},  //   _unse, ट्स_, ייע_,\n  { {0x61e93d29, 0xdb1c0a50, 0x58840147, 0x00000000}},  //   vjel, veré, _выса,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xdb1c0211, 0x61e93d2a, 0xad9b0051, 0x00000000}},  //   teré, tjel, thúl,\n  { {0x3a39012d, 0x7ae801a2, 0x47ca0044, 0x00000000}},  //   _jksp_, ädti, রাণী,\n  { {0x61e9006c, 0x7e630c51, 0x28c9007d, 0x00000000}},  //   rjel, _sunp, रिटि,\n  { {0x61e90d00, 0x24890089, 0xa7fb0553, 0x00000000}},  //   sjel, šams_, _muño,\n  { {0x61e90243, 0x61fb01c5, 0x7c350142, 0x00000000}},  //   pjel, pkul, dozr,\n  { {0x2005184a, 0x02fa0049, 0xfbc900b3, 0x00000000}},  //   shli_, _אלעמ, _מת_,\n  { {0xed570088, 0xdb0e08c8, 0x3e68009d, 0x00000000}},  //   лою_, lebø, _eût_,\n  { {0x40920054, 0x75160049, 0x3e68009d, 0x00000000}},  //   _الور, אַלע_, _fût_,\n  { {0xab27005e, 0x7bce068f, 0x9f5e0026, 0x00000000}},  //   гора_, rdbu, pitò_,\n  { {0x316d3d2b, 0x00000000, 0x00000000, 0x00000000}},  //   ncez_,   ,   ,\n  { {0xa3d6013d, 0x48e3005e, 0x673c00b0, 0x00000000}},  // [e5e0] ियम_, ботв, _syrj,\n  { {0x7bde0133, 0x3a390146, 0x00000000, 0x00000000}},  //   _unpu, _eksp_,   ,\n  { {0x09b90044, 0x00000000, 0x00000000, 0x00000000}},  //   ঁয়া,   ,   ,\n  { {0x94aa00e3, 0xc976035b, 0x09e600a8, 0x00000000}},  //   етка_, _حادث, _сомн,\n  { {0x4e370049, 0x00000000, 0x00000000, 0x00000000}},  //   אָגן_,   ,   ,\n  { {0xdb053d2c, 0x9f4e000a, 0x7986046a, 0x00000000}},  //   _sché, _fofè_, _hekw,\n  { {0xd25a092b, 0x1daa0061, 0x798601a3, 0x00000000}},  //   нци_, _काढत, _kekw,\n  { {0xa78500a1, 0x66190036, 0x98a70036, 0x00000000}},  //   _مشہو, ciwk, łną_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x25a60058, 0x5f940143, 0x67db0089, 0x00000000}},  //   lgol_, јинт, _gājē,\n  { {0x6d40014a, 0xdb05009d, 0xf837009b, 0x00000000}},  //   üman, _tché, רנית_,\n  { {0x25a63d2d, 0xa3b0007d, 0x9f473d2e, 0x00000000}},  //   ngol_, ट्र_, _donà_,\n  { {0xbddb00d4, 0x00000000, 0x00000000, 0x00000000}},  //   elèc,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x3ffb007b, 0xfc3f10fa, 0x79860116, 0x00000000}},  //   _אפגע, ktív_, _bekw,\n  { {0x13cd0044, 0xa7fb004a, 0x7afa00ea, 0x00000000}},  //   লায়, _puño, øtta,\n  { {0x2d8b00b9, 0xd7e00067, 0x798601aa, 0x00000000}},  // [e5f0] mace_, नांच, _dekw,\n  { {0x2d8b3d2f, 0x64460006, 0x37070478, 0x00000000}},  //   lace_, _ūkin, лчев,\n  { {0xf770031d, 0x00000000, 0x00000000, 0x00000000}},  //   سال_,   ,   ,\n  { {0x8f3701ce, 0x798600c7, 0x069800a1, 0x00000000}},  //   נטאג_, _gekw, اخلت_,\n  { {0x26d80917, 0xa2bd006e, 0x638501ee, 0x00000000}},  //   _erro_, _वैज्, агла,\n  { {0x69cf0219, 0xe299007e, 0xe944025a, 0x00000000}},  //   _hace, вак_, _درپی,\n  { {0x2d8b0224, 0x38af005d, 0x69cf0471, 0x00000000}},  //   kace_, lür_, _kace,\n  { {0x2d8b3d30, 0xa3a90061, 0x016500ed, 0x00000000}},  //   jace_, ग्ज_, шкио,\n  { {0x2d8b00b9, 0x38af0279, 0x316d3d31, 0x00000000}},  //   dace_, nür_, rcez_,\n  { {0xf07600a1, 0x00000000, 0x00000000, 0x00000000}},  //   جیوں_,   ,   ,\n  { {0xa3e20309, 0x3fc700a1, 0xdced0066, 0x00000000}},  //   धार_, ندھی_, _ffaċ,\n  { {0x2d8b00b9, 0x69cf008e, 0x38af005d, 0x00000000}},  //   gace_, _nace, kür_,\n  { {0x7986002b, 0xef180089, 0x8c4602dc, 0x00000000}},  //   _rekw, daļu_, иеме,\n  { {0x38af038c, 0x798603b2, 0xef67005e, 0x00000000}},  //   dür_, _sekw, _съдо,\n  { {0x2d8b0107, 0x78bd08ad, 0x25a60016, 0x00000000}},  //   bace_, _apsv, ygol_,\n  { {0x38af072f, 0x2d8b11c6, 0x69cf0325, 0x00000000}},  //   für_, cace_, _cace,\n  { {0xdb1c076b, 0x38c800a2, 0x1786003b, 0x00000000}},  // [e600] merí, دازی_, игам,\n  { {0x60040263, 0xdb1c0211, 0x8b960594, 0x00000000}},  //   _kòma, lerí, _трич,\n  { {0x056600d7, 0xa3e902fb, 0x3f873d32, 0x00000000}},  //   авен, यान_, _menu_,\n  { {0xdb1c0211, 0x69cf008e, 0xe61a005e, 0x00000000}},  //   nerí, _gace, ъде_,\n  { {0xa3e20061, 0x25a600d4, 0x8cd9013d, 0x00000000}},  //   धाल_, rgol_, मियो,\n  { {0x2d8b0224, 0x69c4063c, 0x69cf0059, 0x00000000}},  //   zace_, leie, _zace,\n  { {0x60cd0142, 0x60042964, 0x3f9805ee, 0x00000000}},  //   _šamp, _nòma, órum_,\n  { {0xe5a30b86, 0xdb1c0211, 0x1a9b0049, 0x00000000}},  //   _миси, jerí, דיקע,\n  { {0x2d8b00b9, 0xdb1c3d33, 0x78a40026, 0x00000000}},  //   vace_, derí, nuiv,\n  { {0xdefa04af, 0x3f873d34, 0x6abe0292, 0x00000000}},  //   вым_, _cenu_, _oppf,\n  { {0x2d8b00b9, 0xdb1c00dc, 0x3f870016, 0x00000000}},  //   tace_, ferí, _denu_,\n  { {0xdb1c1ad4, 0xfe780006, 0xf1a90014, 0x00000000}},  //   gerí, rpį_, _ماهه_,\n  { {0x69cf022d, 0x2d8b0224, 0x61e23d35, 0x00000000}},  //   _race, race_, _inol,\n  { {0x69cf0089, 0x2d8b00f4, 0x600401aa, 0x00000000}},  //   _sace, sace_, _fòma,\n  { {0x2d8b3d36, 0x69cf0089, 0x6e940025, 0x00000000}},  //   pace_, _pace, _البا,\n  { {0x3f87168d, 0xdb1c0211, 0xb5fd2c1b, 0x00000000}},  //   _zenu_, cerí, _kiše,\n  { {0xa3d60201, 0x478b0242, 0x3f870d16, 0x00000000}},  // [e610] िया_, всем_, _yenu_,\n  { {0x38af0279, 0xf1b9016c, 0xb5fd0733, 0x00000000}},  //   rür_, miše_, _miše,\n  { {0x61e2037e, 0xf1b90107, 0xe7190025, 0x00000000}},  //   _onol, liše_, ديات_,\n  { {0xd6d831cd, 0xb7c60089, 0x78a40026, 0x00000000}},  //   шту_, _apģē, buiv,\n  { {0x81d50055, 0xf1b90107, 0x798d00e0, 0x00000000}},  //   _সকল_, niše_, maaw,\n  { {0x61e20085, 0x32060085, 0x00000000, 0x00000000}},  //   _anol, _aloy_,   ,\n  { {0x5694007c, 0xdb1c008e, 0xe2a80014, 0x00000000}},  //   _март, yerí, لاين_,\n  { {0x1634041f, 0x0085007c, 0x83fc012d, 0x00000000}},  //   _деся, блио, _riđe,\n  { {0x03c7007c, 0xfc3f06c2, 0x25ad0009, 0x00000000}},  //   _всем, ntís_, _icel_,\n  { {0xa3ae001c, 0x61e200ca, 0x63ad0091, 0x00000000}},  //   _काय_, _enol, đans,\n  { {0xdb1c0211, 0x3f8700f4, 0x798d011c, 0x00000000}},  //   terí, _venu_, kaaw,\n  { {0x64430039, 0x32550679, 0x3f870020, 0x00000000}},  //   llni, _увер, _wenu_,\n  { {0xa3ae02f4, 0x3f8700f4, 0x44273d37, 0x00000000}},  //   _काम_, _tenu_, onn_,\n  { {0x2d9e3d38, 0xdb1c3d39, 0x69c401d6, 0x00000000}},  //   şte_, serí, weie,\n  { {0x44271573, 0x09e60256, 0xdb1c3d3a, 0x00000000}},  //   inn_, бовн, derã,\n  { {0xc33200b6, 0xf1b90521, 0x89663d3b, 0x00000000}},  //   פון_, biše_, скаж,\n  { {0xc0440011, 0x69c4010f, 0x7c9604b1, 0x00000000}},  // [e620] _đoạt_, reie, _اشبا,\n  { {0x25ad001a, 0x69c414d3, 0x78a40026, 0x00000000}},  //   _acel_, seie, ruiv,\n  { {0x3ea53d3c, 0x6abe091a, 0x7afc0065, 0x00000000}},  //   nult_, _uppf, qyrt,\n  { {0xad9b002a, 0x64430036, 0x60c90045, 0x00000000}},  //   thúi, elni, kwem,\n  { {0x78a41160, 0x044600ed, 0x3ea50210, 0x00000000}},  //   quiv, бедн, hult_,\n  { {0x3ea50004, 0xdb1c00c4, 0xb5fd0618, 0x00000000}},  //   kult_, cerã, _riše,\n  { {0x7642030a, 0xd2501019, 0x3f8c0089, 0x00000000}},  //   ploy, ونت_, vadu_,\n  { {0x4427002a, 0x30a601c0, 0xa0740242, 0x00000000}},  //   ann_, бров, огич,\n  { {0x3f8c0032, 0x00000000, 0x00000000, 0x00000000}},  //   tadu_,   ,   ,\n  { {0xf1b90119, 0xb5fd0091, 0xdb1c0321, 0x00000000}},  //   više_, _više, ndró,\n  { {0x50d601ef, 0x3f8c0466, 0xdb0e010f, 0x00000000}},  //   _گزار, radu_, gebü,\n  { {0x660200b0, 0x7c3e0022, 0x443e0082, 0x00000000}},  //   nkok, _akpr, _hkt_,\n  { {0x7c3e0283, 0xdddb0d90, 0x3ea53d3d, 0x00000000}},  //   _bkpr, lptū, ault_,\n  { {0x443e1799, 0xf1b90ce4, 0x7bd80b33, 0x00000000}},  //   _jkt_, riše_, _óvul,\n  { {0xa3e9024c, 0x443e0039, 0x201e016e, 0x00000000}},  //   यात_, _mkt_, miti_,\n  { {0x201e0127, 0x26df0091, 0xddc40036, 0x00000000}},  //   liti_, _čuo_, _chiń,\n  { {0x44270ca4, 0x442c2580, 0x57f50256, 0x00000000}},  // [e630] ynn_, _ojd_, опат,\n  { {0x443e3d3e, 0xb767005e, 0x798d0045, 0x00000000}},  //   _nkt_, стай, saaw,\n  { {0xb87b0b32, 0x44270011, 0xd6db0783, 0x00000000}},  //   _oríg, vnn_, ыта_,\n  { {0x7afa06d3, 0x443e0c01, 0xa9c70014, 0x00000000}},  //   ätte, _akt_, _ازدو,\n  { {0xd49b0aed, 0x201e2379, 0xdb1c07fd, 0x00000000}},  //   уре_, kiti_, merá,\n  { {0x201e1adc, 0xc7c7005e, 0x88ba0049, 0x00000000}},  //   jiti_, _усми, _דזשי,\n  { {0x201e0213, 0x443e06fe, 0xdb07006c, 0x00000000}},  //   diti_, _dkt_, pejõ,\n  { {0x40950088, 0xdb1c1238, 0x1dd90309, 0x00000000}},  //   орот, nerá, _बोलत,\n  { {0x201e0020, 0x600902e9, 0x7e6a01a2, 0x00000000}},  //   fiti_, иним_, _aufp,\n  { {0x3ea50004, 0x6e2d0020, 0x3a2900e0, 0x00000000}},  //   tult_, _ajab, hnap_,\n  { {0xa3d6013d, 0xddc6019d, 0x7bc7007f, 0x00000000}},  //   ियर_, обни, deju,\n  { {0xed5a0517, 0x3ea51bd5, 0xdb1c01a2, 0x00000000}},  //   ион_, rult_, rdrü,\n  { {0x6609037a, 0x3ea500ab, 0x3a293d3f, 0x00000000}},  //   _mlek, sult_, dnap_,\n  { {0x3ea50209, 0x201e0091, 0x3ad801aa, 0x00000000}},  //   pult_, citi_, _pčp_,\n  { {0xdd92026c, 0x66090004, 0x8c4300ed, 0x00000000}},  //   _ہوں_, _olek, фере,\n  { {0xf2d201f8, 0xceb200a0, 0x3a290010, 0x00000000}},  //   ועל_, _חיה_, gnap_,\n  { {0x2bb2013d, 0xa7fb004a, 0x00000000, 0x00000000}},  // [e640] _जापा, _zuñi,   ,\n  { {0x6609037e, 0x7f8c0049, 0x39420006, 0x00000000}},  //   _alek, ָנאַ, _vyks_,\n  { {0x06ca2546, 0x66090039, 0xdb1c3d40, 0x00000000}},  //   ргей_, _blek, berá,\n  { {0x201e0213, 0xd0120044, 0xdb1c3d41, 0x00000000}},  //   ziti_, িচয়_, cerá,\n  { {0x201e3d42, 0xb1240055, 0x443e0036, 0x00000000}},  //   yiti_, _পর্ব_, _pkt_,\n  { {0x660200b0, 0x00000000, 0x00000000, 0x00000000}},  //   skok,   ,   ,\n  { {0x201e3d43, 0x6609068f, 0x38b40a5d, 0x00000000}},  //   viti_, _flek, lär_,\n  { {0x7c3c002d, 0x443e0022, 0x69d63d44, 0x00000000}},  //   horr, _wkt_, ndye,\n  { {0x201e0119, 0x7c3c168e, 0x27f80190, 0x00000000}},  //   titi_, korr, _korn_,\n  { {0xdb1c06b8, 0x6e2d01bb, 0x27f80bbc, 0x00000000}},  //   zerá, _sjab, _jorn_,\n  { {0x201e0209, 0x443c0cce, 0x7c3c0129, 0x00000000}},  //   riti_, mov_, dorr,\n  { {0x443c0027, 0x201e0091, 0x69da001c, 0x00000000}},  //   lov_, siti_, _पोली,\n  { {0x201e0209, 0x7c3c06a5, 0x7bc7010e, 0x00000000}},  //   piti_, forr, teju,\n  { {0x443c0c30, 0x7c3c022b, 0x60c2000a, 0x00000000}},  //   nov_, gorr, _ipom,\n  { {0xdb1c0161, 0x6ab50146, 0x298b003b, 0x00000000}},  //   terá, utzf, исао_,\n  { {0x38b40039, 0x68ed05b3, 0xee770025, 0x00000000}},  //   fär_, txad, _بصوت_,\n  { {0x443c0cce, 0x7c3c02f5, 0xb5fd0107, 0x00000000}},  // [e650] kov_, borr, _niša,\n  { {0xd6db0113, 0x661b3d45, 0x443c0027, 0x00000000}},  //   ите_, _smuk, jov_,\n  { {0xa3e90201, 0x443c0cce, 0x66090168, 0x00000000}},  //   यास_, dov_, _plek,\n  { {0xd2460151, 0x60c200ee, 0x38b40039, 0x00000000}},  //   _سن_, _opom, bär_,\n  { {0xd1260054, 0x27f83d46, 0x600d008e, 0x00000000}},  //   _أم_, _forn_, _húme,\n  { {0x443c0235, 0xb5fd11a5, 0x27f80544, 0x00000000}},  //   gov_, _diša, _gorn_,\n  { {0x66b4013b, 0x60c200e5, 0x00000000, 0x00000000}},  //   _обру, _apom,   ,\n  { {0x661b0061, 0x7c3c3d47, 0xddc4001a, 0x00000000}},  //   _umuk, zorr, _munţ,\n  { {0x7e6400b0, 0x92ab0044, 0x443c1caa, 0x00000000}},  //   _riip, গবে_, bov_,\n  { {0x443c0027, 0x60090175, 0x320d0058, 0x00000000}},  //   cov_, сном_, shey_,\n  { {0x600d0c2e, 0xee3a178d, 0x26150027, 0x00000000}},  //   _núme, йно_, sťou_,\n  { {0xbddb028c, 0xb2ba009b, 0xf1b911e4, 0x00000000}},  //   blèm, _למער, biša_,\n  { {0x7c3c022b, 0x7e640103, 0x64410066, 0x00000000}},  //   torr, _viip, _kkli,\n  { {0xdb050062, 0x61f90133, 0xda660025, 0x00000000}},  //   _schá, _howl, كاري,\n  { {0x63bc011f, 0x09e601fb, 0xdb1c0180, 0x00000000}},  //   _örne, повн, _üzün,\n  { {0x443c0027, 0x78b6021e, 0xfc3f02a0, 0x00000000}},  //   zov_, ttyv, quín_,\n  { {0x27f80365, 0x7c3c0207, 0x443c3d48, 0x00000000}},  // [e660] _porn_, porr, yov_,\n  { {0x61f9020f, 0x2005014a, 0x9d1b01ce, 0x00000000}},  //   _lowl, nkli_, _לופט,\n  { {0xe9df001d, 0x443c0465, 0x78b600b0, 0x00000000}},  //   _phút_, vov_, styv,\n  { {0x3ce00213, 0x61f900d9, 0x27f80133, 0x00000000}},  //   _kriv_, _nowl, _worn_,\n  { {0x443c0cce, 0x79840020, 0xd4e3007c, 0x00000000}},  //   tov_, mbiw, еющи,\n  { {0xf1b90e00, 0xb5fd0ecc, 0xa7fb04f3, 0x00000000}},  //   viša_, _viša, _buñu,\n  { {0x443c0c30, 0x6458016e, 0x78a401c3, 0x00000000}},  //   rov_, rmvi, lriv,\n  { {0x443c0cce, 0x30a6004c, 0xc181026c, 0x00000000}},  //   sov_, пров, پیوٹ,\n  { {0x443c0465, 0x78a401d6, 0x61f90082, 0x00000000}},  //   pov_, nriv, _dowl,\n  { {0x6e98003b, 0xdb1e0211, 0xf1b9016c, 0x00000000}},  //   овор_, _japó, riša_,\n  { {0xa3e902d2, 0x6f01018e, 0xdcf6005f, 0x00000000}},  //   यार_, gylc, _peyğ,\n  { {0x78a41dea, 0x61f901d5, 0x600401aa, 0x00000000}},  //   kriv, _gowl, _kòmk,\n  { {0xc05a007e, 0x6e3d0010, 0x60c200b4, 0x00000000}},  //   _лік_, rosb, _upom,\n  { {0x78a405ad, 0x2bb2001c, 0x2005014a, 0x00000000}},  //   driv, _जाणा, ckli_,\n  { {0x81cf0044, 0x78a4006c, 0x76590016, 0x00000000}},  //   শার_, eriv, ymwy,\n  { {0x7afa0039, 0xad9b000c, 0x78a40026, 0x00000000}},  //   ätta, rhús, friv,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  // [e670]   ,   ,   ,\n  { {0xf7700076, 0x39470089, 0xb87b0027, 0x00000000}},  //   هام_, āns_, _príb,\n  { {0x2bb2001c, 0x6d4101f6, 0xdb1c010f, 0x00000000}},  //   _जाता, şlad, gerä,\n  { {0x78a43d49, 0xb87b0051, 0x60db0006, 0x00000000}},  //   briv, _críc, yvum,\n  { {0x78a40207, 0x99f600b6, 0x61f93d4a, 0x00000000}},  //   criv, _חזרה_, _rowl,\n  { {0xb4ad0201, 0xe9df0051, 0xdb1c00f8, 0x00000000}},  //   _कमी_, _thús_, berä,\n  { {0xa3ae02d2, 0x62630047, 0xe5f300e5, 0x00000000}},  //   _कार_, _főol, _căţă,\n  { {0xdb1c00c4, 0x60db006c, 0x9f5e0048, 0x00000000}},  //   serç, tvum, bhtú_,\n  { {0x9f5e002a, 0x81cf0044, 0xdb1c3d4b, 0x00000000}},  //   chtú_, শাল_, perç,\n  { {0x9f4e0285, 0x6441013e, 0xb5fd0091, 0x00000000}},  //   _sofá_, _ukli, _kišo,\n  { {0x6da60081, 0x60c4001e, 0xada600ec, 0x00000000}},  //   мина, _ģime, манл,\n  { {0x3ce0211e, 0x28e00061, 0x38720023, 0x00000000}},  //   _priv_, निमि, yqyr_,\n  { {0x6ff50025, 0x7bd7002d, 0xdea1025a, 0x00000000}},  //   _يستط, _baxu, ریکی,\n  { {0x3f8e0026, 0x00000000, 0x00000000, 0x00000000}},  //   _gefu_,   ,   ,\n  { {0x81b40055, 0x3f850035, 0xcb673d4c, 0x00000000}},  //   _ছোট_, mblu_, даре_,\n  { {0x78a4000d, 0xa3e903d7, 0xc332019b, 0x00000000}},  //   triv, याँ_, דול_,\n  { {0xa3ae0164, 0x6b990048, 0x7bd700e5, 0x00000000}},  // [e680] _काल_, éagó, _faxu,\n  { {0x60040009, 0x07a3007c, 0xdb1c0052, 0x00000000}},  //   _còmh, каун, terä,\n  { {0xa96a00e3, 0x78a400ea, 0xb5fd0091, 0x00000000}},  //   _мина_, sriv, _višn,\n  { {0x78a40091, 0xeef60049, 0x68e9013e, 0x00000000}},  //   priv, ומער_, _šede,\n  { {0xa3e903d7, 0x7bd7006b, 0xdb1e004a, 0x00000000}},  //   यां_, _yaxu, _tapó,\n  { {0xdb1c021e, 0xa3ae0061, 0x7c2e3086, 0x00000000}},  //   perä, _काळ_, nnbr,\n  { {0x07a302a8, 0xb87b3d4d, 0x7c2e01a2, 0x00000000}},  //   _јасн, _tríc, inbr,\n  { {0x3f8e1140, 0xfc3f004a, 0x00000000, 0x00000000}},  //   _sefu_, iría_,   ,\n  { {0xb5fd0ce4, 0xfa1c0082, 0x00000000, 0x00000000}},  //   _mišl, _đất_,   ,\n  { {0xf957009b, 0x6004000a, 0x33f6007e, 0x00000000}},  //   וספת_, _kòmi, _ўчас,\n  { {0x63061289, 0x00000000, 0x00000000, 0x00000000}},  //   _توال,   ,   ,\n  { {0xfc3f0211, 0xceb80fed, 0x7c2e01c3, 0x00000000}},  //   dría_, rtę_, enbr,\n  { {0x7afa0073, 0x11690123, 0xdfd20025, 0x00000000}},  //   ättn, _علوی_, _ليش_,\n  { {0xdb1e01aa, 0xfc3f008e, 0xce94005e, 0x00000000}},  //   _rapò, fría_, _закъ,\n  { {0x27ed001d, 0x20193175, 0xfc3f0211, 0x00000000}},  //   _đen_, ësie_, gría_,\n  { {0x7c2e037f, 0x629801a2, 0xdb1e0173, 0x00000000}},  //   anbr, isvo, _papò,\n  { {0xa3ae0316, 0xdb050788, 0xfc3f008e, 0x00000000}},  // [e690] कला_, _schä, aría_,\n  { {0xfc3f0211, 0xb87b004a, 0x88580c96, 0x00000000}},  //   bría_, _cría, диус_,\n  { {0xdb1c0193, 0x629e1748, 0x1995007e, 0x00000000}},  //   terå, ápol, _паня,\n  { {0x62980c46, 0x600400f6, 0x78a20161, 0x00000000}},  //   dsvo, _dòmi, šova,\n  { {0xe00e001c, 0x629a3d4e, 0xa8790049, 0x00000000}},  //   िसाद_, _avto, _מאָר,\n  { {0x600401aa, 0x62983d4f, 0xdb1c00f8, 0x00000000}},  //   _fòmi, fsvo, rdrö,\n  { {0x44290091, 0x78ad00b0, 0x09040044, 0x00000000}},  //   đa_, luav, _রেপু_,\n  { {0x644a1a4a, 0x69cd010e, 0x00000000, 0x00000000}},  //   alfi, neae,   ,\n  { {0x9f470051, 0x78ad16a3, 0x84350088, 0x00000000}},  //   _inné_, nuav, _знає,\n  { {0xb5fd0087, 0x764b005b, 0x00000000, 0x00000000}},  //   _mišm, llgy,   ,\n  { {0x47ca0044, 0xf99f0173, 0x00000000, 0x00000000}},  //   রাচী, _odè_,   ,\n  { {0x200e0197, 0x6619014a, 0xa3b50061, 0x00000000}},  //   _elfi_, _çakı, _झाड_,\n  { {0x8fa501e1, 0x78ad07a4, 0x00000000, 0x00000000}},  //   _зале, juav,   ,\n  { {0x09a80061, 0xfc3f008e, 0x6b950010, 0x00000000}},  //   गल्य, tría_, gazg,\n  { {0x7c2e06d3, 0xca56003b, 0x48bf0044, 0x00000000}},  //   rnbr, етањ, উটোর,\n  { {0xfc3f008e, 0xdb1c009d, 0x00000000, 0x00000000}},  //   rría_, nfré,   ,\n  { {0x98a308d6, 0x3f81010e, 0x78ad00f6, 0x00000000}},  // [e6a0] лите, _õhus_, guav,\n  { {0x7d06021e, 0x6e260b5a, 0xf99f000a, 0x00000000}},  //   myks, likb, _edè_,\n  { {0x39ea0200, 0x61eb00f4, 0x7bdc0190, 0x00000000}},  //   _едно_, _ongl, mdru,\n  { {0x186a004c, 0x7bdc000c, 0x7bce0095, 0x00000000}},  //   _нами_, ldru, lebu,\n  { {0x2d92042a, 0xb87b00d6, 0xa50702dc, 0x00000000}},  //   _meye_, _tría, неца_,\n  { {0x7bdc0006, 0x6e2602ae, 0x229a0089, 0x00000000}},  //   ndru, hikb, tīk_,\n  { {0x5334007c, 0xe8050061, 0x7869007f, 0x00000000}},  //   ъект, _शकता_, _užva,\n  { {0x20bd0754, 0xd25700a5, 0xb6bb0104, 0x00000000}},  //   ्बंध, нцы_, _מצלי,\n  { {0xe3b202fd, 0x63b70065, 0x629804f2, 0x00000000}},  //   _مرا_, çanë, ssvo,\n  { {0x629a00d9, 0x00000000, 0x00000000, 0x00000000}},  //   _tvto,   ,   ,\n  { {0xd36f006d, 0x2f1901f3, 0x6e260203, 0x00000000}},  //   _اهم_, _nżgħ_, fikb,\n  { {0x7bdc189b, 0x3eac0190, 0xd6e20044, 0x00000000}},  //   edru, rudt_, _যথায,\n  { {0x2d923d50, 0x7bdc0270, 0xb87b00d4, 0x00000000}},  //   _deye_, fdru, _arín,\n  { {0x7bce010f, 0xb87b00f6, 0x7bdc00bb, 0x00000000}},  //   gebu, _brín, gdru,\n  { {0x8ff704e8, 0x61eb3d51, 0xc987003b, 0x00000000}},  //   _سرور_, _yngl, еузи,\n  { {0x78ad00d4, 0x799600e0, 0x00000000, 0x00000000}},  //   tuav, gayw,   ,\n  { {0x9c390b49, 0x97a70088, 0x7bce3d52, 0x00000000}},  // [e6b0] _опит_, ерел, bebu,\n  { {0xc02e0011, 0x7bce0be9, 0x00000000, 0x00000000}},  //   _điệu_, cebu,   ,\n  { {0x8c1c0452, 0x2d92000b, 0x69cd001c, 0x00000000}},  //   _מוזי, _yeye_, peae,\n  { {0xa64700a2, 0x78ad2f47, 0xb5fd016c, 0x00000000}},  //   رخان, puav, _tišm,\n  { {0x78ad0197, 0xb5fd00ca, 0x00000000, 0x00000000}},  //   quav, _hišk,   ,\n  { {0x22460145, 0x61eb01f3, 0x00000000, 0x00000000}},  //   _akok_, _sngl,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xb5fd0006, 0xf99f0263, 0x7bce0036, 0x00000000}},  //   _mišk, _elèv_, zebu,\n  { {0x2d920173, 0x27210316, 0x7bdc0022, 0x00000000}},  //   _reye_, _मधुर_, ydru,\n  { {0xa2a903d7, 0x2d9218ae, 0x7d061b1b, 0x00000000}},  //   _टिप्, _seye_, vyks,\n  { {0x4427048a, 0x2d920263, 0xf7720097, 0x00000000}},  //   min_, _peye_, יקי_,\n  { {0x64430209, 0x61eb00db, 0x7d06021e, 0x00000000}},  //   loni, _ungl, tyks,\n  { {0x64430004, 0xed570088, 0x7bdc0506, 0x00000000}},  //   ooni, кою_, tdru,\n  { {0x4427038c, 0xb5fd2649, 0x6e260190, 0x00000000}},  //   nin_, _bišk, sikb,\n  { {0x7bdc037f, 0x7bce033b, 0xae1f006e, 0x00000000}},  //   rdru, rebu, मोहन_,\n  { {0x44270811, 0xb87b002a, 0x7bce04cb, 0x00000000}},  //   hin_, _crío, sebu,\n  { {0x44273d53, 0x6e240061, 0x6abc0016, 0x00000000}},  // [e6c0] kin_, _imib, strf,\n  { {0x64430f68, 0x44273be4, 0xb87b0051, 0x00000000}},  //   joni, jin_, _trín,\n  { {0x6443008d, 0xb87b0b51, 0x09b90044, 0x00000000}},  //   doni, _frío, ুয়া,\n  { {0xf743004d, 0x44270051, 0x80b70044, 0x00000000}},  //   шехо, ein_, _অনন্,\n  { {0x442703a4, 0x224d002b, 0xcd770049, 0x00000000}},  //   fin_, dlek_, דענק_,\n  { {0xe1f90006, 0x9d1b00b3, 0x224d0066, 0x00000000}},  //   ejų_, וונט, elek_,\n  { {0xd25a2476, 0x92b30025, 0xdb1c06ec, 0x00000000}},  //   мци_, لحيا, gerø,\n  { {0x4427002a, 0x26d80022, 0x224d0032, 0x00000000}},  //   ain_, _isro_, glek_,\n  { {0xdfd00054, 0x64430016, 0xe3ba007c, 0x00000000}},  //   مية_, boni, _оба_,\n  { {0x4427012b, 0x64430035, 0x212b1690, 0x00000000}},  //   cin_, coni, úcha_,\n  { {0xdef7008b, 0x645a011f, 0x20190065, 0x00000000}},  //   выя_, _ihti, ësia_,\n  { {0xd3780521, 0x9f5c00d4, 0x600400d4, 0x00000000}},  //   _daće_, _jové_, _ròmu,\n  { {0xf1b300b6, 0x66000091, 0x24860022, 0x00000000}},  //   _כסף_, _momk, npom_,\n  { {0xb5fd0059, 0xd01001fa, 0x600400f6, 0x00000000}},  //   _pišk, _دلت_, _pòmu,\n  { {0xb87b002a, 0xdb23011f, 0xbddb009d, 0x00000000}},  //   _prío, _ürün, flèt,\n  { {0x442701f6, 0x5a341447, 0xb5fd037e, 0x00000000}},  //   zin_, анст, _višk,\n  { {0x44270890, 0x99551efa, 0x2d99006c, 0x00000000}},  // [e6d0] yin_, укац, mase_,\n  { {0x44270129, 0x2d99006c, 0xf99f0173, 0x00000000}},  //   xin_, lase_, _alèt_,\n  { {0x44273d54, 0x2d99001a, 0x6443016e, 0x00000000}},  //   vin_, oase_, voni,\n  { {0x44270b9a, 0x645a0850, 0xe3b8005a, 0x00000000}},  //   win_, _ahti, _acı_,\n  { {0x4427150f, 0x2bc002f4, 0x224d01d6, 0x00000000}},  //   tin_, श्वा, vlek_,\n  { {0x69dd002d, 0x2d9900ab, 0xb5fd016e, 0x00000000}},  //   _hase, hase_, _miši,\n  { {0xb5fd013e, 0x2d9915d6, 0x00000000, 0x00000000}},  //   _liši, kase_,   ,\n  { {0x69dd037e, 0x645a3d55, 0x44270e2d, 0x00000000}},  //   _jase, _ehti, sin_,\n  { {0x44270a1f, 0x64432f69, 0x224d3d56, 0x00000000}},  //   pin_, poni, rlek_,\n  { {0x442724e5, 0xf07600a1, 0x224d014a, 0x00000000}},  //   qin_, دیوں_, slek_,\n  { {0x765b001d, 0xa347008b, 0x224d0168, 0x00000000}},  //   _khuy, _рэал, plek_,\n  { {0x69dd016c, 0x7c253d57, 0x6d41047f, 0x00000000}},  //   _nase, _amhr, ğlan,\n  { {0x6d4101f6, 0x10a50751, 0x44250089, 0x00000000}},  //   şlan, _силн, _kml_,\n  { {0x44250093, 0xb87b008e, 0xb5fd00ee, 0x00000000}},  //   _jml_, _crím, _diši,\n  { {0x2d9924e3, 0x2fc700e0, 0x61fb00e7, 0x00000000}},  //   base_, _ibng_, ojul,\n  { {0xceb200b6, 0x61fb000c, 0x7e6d0207, 0x00000000}},  //   _היה_, njul, _giap,\n  { {0x69dd0de1, 0x660023b1, 0x6a8901aa, 0x00000000}},  // [e6e0] _dase, _romk, _pèfò,\n  { {0x764901aa, 0xb87b000c, 0x61fb3d58, 0x00000000}},  //   _akey, _grím, hjul,\n  { {0x2c6f01d5, 0x69dd1d47, 0x55e60794, 0x00000000}},  //   _iżda_, _fase, ложб,\n  { {0x765b00ad, 0x69dd001a, 0x7bde008d, 0x00000000}},  //   _chuy, _gase, _hapu,\n  { {0x69c400bb, 0x44250009, 0x61fb016c, 0x00000000}},  //   mfie, _bml_, djul,\n  { {0x69dd01d9, 0x69c401d6, 0x44250145, 0x00000000}},  //   _zase, lfie, _cml_,\n  { {0x7bde036b, 0x68e40181, 0x0cb1007d, 0x00000000}},  //   _mapu, lvid, _जम्म,\n  { {0x2d99049a, 0x69c4038e, 0x7bde002d, 0x00000000}},  //   xase_, nfie, _lapu,\n  { {0x7e6d0ec0, 0x13b60431, 0x2d992c9b, 0x00000000}},  //   _riap, _مصاح, vase_,\n  { {0x7bde3d59, 0x7e6d0149, 0x3ebe0058, 0x00000000}},  //   _napu, _siap, tttt_,\n  { {0x63060447, 0x69c400bb, 0x320d0009, 0x00000000}},  //   _حوال, kfie, bkey_,\n  { {0x68e40142, 0x90e601fa, 0xb5fd0059, 0x00000000}},  //   kvid, _مستن, _piši,\n  { {0x2d99027b, 0xa3e9001c, 0x69dd0cfd, 0x00000000}},  //   rase_, याच_, _rase,\n  { {0x442504d2, 0x68e40059, 0x7bde001a, 0x00000000}},  //   _xml_, dvid, _capu,\n  { {0x69c400c7, 0x2d9915d8, 0x3a290149, 0x00000000}},  //   ffie, pase_, tiap_,\n  { {0xb5fd0295, 0x8e830025, 0x69c400d9, 0x00000000}},  //   _tiši, _اليه, gfie,\n  { {0x69dd00b0, 0x37ab026b, 0x290f0010, 0x00000000}},  // [e6f0] _vase, етен_, ága_,\n  { {0xf1b9016e, 0x69dd0020, 0x7bde0093, 0x00000000}},  //   riši_, _wase, _gapu,\n  { {0x69dd006c, 0x76b900e2, 0x44250022, 0x00000000}},  //   _tase, тлер_, _rml_,\n  { {0x7bde00ee, 0x3ce924fd, 0xc64b0025, 0x00000000}},  //   _zapu, _krav_, رجال_,\n  { {0x798d0fe7, 0x68e406ed, 0x442500fa, 0x00000000}},  //   mbaw, cvid, _pml_,\n  { {0x3ce9057c, 0x23290088, 0x78ad1f7c, 0x00000000}},  //   _mrav_, коли_, mrav,\n  { {0x765b001d, 0x320d0082, 0x44250009, 0x00000000}},  //   _thuy, tkey_, _vml_,\n  { {0x44250066, 0x212b0181, 0x78ad08a6, 0x00000000}},  //   _wml_, úcho_, orav,\n  { {0x44250089, 0x944200a1, 0x320d26d6, 0x00000000}},  //   _tml_, _ڈھون, rkey_,\n  { {0x60090175, 0xb87b0027, 0x6b9701f3, 0x00000000}},  //   тном_, _príj, _nexg,\n  { {0x99890bf8, 0x69c40de7, 0x68e400ca, 0x00000000}},  //   znaš_, yfie, zvid,\n  { {0x68e40009, 0x78ad0056, 0x7bde1922, 0x00000000}},  //   yvid, krav, _sapu,\n  { {0x68e400f4, 0x3eac00bb, 0xee372063, 0x00000000}},  //   xvid, ardt_, рня_,\n  { {0x92d70055, 0xa1360049, 0x78ad016e, 0x00000000}},  //   ামী_, _דאנק_, drav,\n  { {0xeb970216, 0x7bde002b, 0x19960098, 0x00000000}},  //   рис_, _vapu, ијар,\n  { {0x78ad027b, 0x68e400ea, 0x7bde00e7, 0x00000000}},  //   frav, tvid, _wapu,\n  { {0x69c4002b, 0x3ce93d5a, 0x7bde011c, 0x00000000}},  // [e700] rfie, _grav_, _tapu,\n  { {0x68e43d5b, 0x07a601e0, 0xa3e5007d, 0x00000000}},  //   rvid, ражн, _बोल_,\n  { {0x6b9c29d0, 0x78ad0197, 0x69c401a2, 0x00000000}},  //   marg, arav, pfie,\n  { {0x78ad0626, 0x1a9b0049, 0x38710b18, 0x00000000}},  //   brav, _ביטע, _žorž_,\n  { {0xf1b90107, 0x78ad0181, 0x5d7b0049, 0x00000000}},  //   nišu_, crav, דאנק,\n  { {0x66e60265, 0xdb1c0047, 0x6b9c3d5c, 0x00000000}},  //   _кога, kerü, narg,\n  { {0xc7a3025f, 0xe7c60061, 0xdb1500fa, 0x00000000}},  //   _фиск, र्णप, bezõ,\n  { {0x6b9c0169, 0xc48600e3, 0xdb1c3d5d, 0x00000000}},  //   harg, _влак, derü,\n  { {0x6b9c002d, 0x00000000, 0x00000000, 0x00000000}},  //   karg,   ,   ,\n  { {0x6016001a, 0x2bb20061, 0x238900b9, 0x00000000}},  //   _sâmb, _जागा, čují_,\n  { {0x085700b6, 0x6d41005d, 0xb33c01d5, 0x00000000}},  //   שבים_, ğlam, _idħo,\n  { {0x3ce901d9, 0x6d41005d, 0x628a0b4a, 0x00000000}},  //   _prav_, şlam, mpfo,\n  { {0x6b9c00ea, 0xc5f300a0, 0x628a00bb, 0x00000000}},  //   farg, קדש_, lpfo,\n  { {0x7f840025, 0x09af0061, 0x26c10016, 0x00000000}},  //   _الغن, टल्य, ytho_,\n  { {0xda780265, 0xbebc001e, 0xb5fd11e2, 0x00000000}},  //   ият_, dzīg, _kišt,\n  { {0x78ad05d2, 0x3ce900f8, 0x9dab005e, 0x00000000}},  //   trav, _trav_, _ръка_,\n  { {0x6b9c0211, 0x32d80082, 0x9f47000c, 0x00000000}},  // [e710] barg, _lũy_, _inná_,\n  { {0x6b9c0211, 0x78ad0065, 0xdd910014, 0x00000000}},  //   carg, rrav, _بوک_,\n  { {0x8ae401fb, 0xdc3c009b, 0x78ad006c, 0x00000000}},  //   _діял, _בעזר, srav,\n  { {0xb5fd0119, 0x26c13d5e, 0x3ce63d5f, 0x00000000}},  //   _ništ, rtho_, _šovi_,\n  { {0xbb48025a, 0xfc3f0d62, 0xd378016c, 0x00000000}},  //   _ملین_, quís_, _saća_,\n  { {0x7bd50211, 0x87e701ab, 0x00000000, 0x00000000}},  //   nezu, _тюме,   ,\n  { {0x9f5c00f6, 0xd298007e, 0x20190023, 0x00000000}},  //   _boví_, атыі_, ësim_,\n  { {0xcb38009b, 0x6b9c0288, 0x7bd50efd, 0x00000000}},  //   ינוק_, zarg, hezu,\n  { {0x7a33002b, 0x7bd5002d, 0x317f016c, 0x00000000}},  //   għti, kezu, rcuz_,\n  { {0xaffe0011, 0x04590025, 0xf1b93d60, 0x00000000}},  //   _phướ, _صلاة_, višu_,\n  { {0x6b9c0a0e, 0x2eb6006e, 0x5f450025, 0x00000000}},  //   varg, _अमृत, إنجل,\n  { {0x78a218a2, 0x6b9c10ed, 0xe9df0011, 0x00000000}},  //   šovi, warg, _thúy_,\n  { {0x30850054, 0x6b9c0036, 0xafe5041f, 0x00000000}},  //   _التف, targ, _голл,\n  { {0xf1b90107, 0xaffe0011, 0x1c39007c, 0x00000000}},  //   rišu_, _thướ, аясь_,\n  { {0x6b9c006b, 0xe4560049, 0xead60044, 0x00000000}},  //   rarg, מישט_, হম্ম,\n  { {0x6b9c0d90, 0x00000000, 0x00000000, 0x00000000}},  //   sarg,   ,   ,\n  { {0xfc3f027b, 0x1b200044, 0xdb1c1ac3, 0x00000000}},  // [e720] ruír_, _মুখে_, teró,\n  { {0x3cfb00b3, 0x6b9c0009, 0x00000000, 0x00000000}},  //   _עלינ, qarg,   ,\n  { {0x20560049, 0x00000000, 0x00000000, 0x00000000}},  //   ציעל_,   ,   ,\n  { {0x7c2e0219, 0xe5a30081, 0xceb2007b, 0x00000000}},  //   libr, зици, ליב_,\n  { {0x69d6014a, 0xdb05009d, 0x6aa101e5, 0x00000000}},  //   meye, _adhè, álfv,\n  { {0x69d6011f, 0x0443007e, 0x9f5c00f6, 0x00000000}},  //   leye, печн, _soví_,\n  { {0x81e10044, 0x00000000, 0x00000000, 0x00000000}},  //   দান_,   ,   ,\n  { {0x69d6014a, 0x00000000, 0x00000000, 0x00000000}},  //   neye,   ,   ,\n  { {0xdb05001f, 0xb5fd0006, 0x99800006, 0x00000000}},  //   _schü, _višt, lnių_,\n  { {0xa208005d, 0x3f9809ed, 0x9980007f, 0x00000000}},  //   ılış_, úru_, onių_,\n  { {0x601602d5, 0xb5fd0b46, 0xdb1c000c, 0x00000000}},  //   _câma, _tišt, lfræ,\n  { {0x442e038c, 0x644a3ae0, 0x62883d61, 0x00000000}},  //   lif_, lofi, _itdo,\n  { {0x7bd50035, 0x00000000, 0x00000000, 0x00000000}},  //   tezu,   ,   ,\n  { {0xdb05008d, 0x4e93007a, 0x9f5e0065, 0x00000000}},  //   _udhë, _کشور, njtë_,\n  { {0x3f9e1c0b, 0x61e21844, 0xdb0700ea, 0x00000000}},  //   matu_, _kaol, ngjø,\n  { {0x3f9e022b, 0x644a0020, 0x600d000c, 0x00000000}},  //   latu_, hofi, _rúmi,\n  { {0x61e20051, 0x779900e2, 0x00000000, 0x00000000}},  // [e730] _maol, икар_,   ,\n  { {0x3f9e002d, 0x61e22a87, 0xf77305f3, 0x00000000}},  //   natu_, _laol, ساط_,\n  { {0x442e002b, 0x2d9b0065, 0x69d60173, 0x00000000}},  //   dif_, _keqe_, beye,\n  { {0x6aa1009f, 0xdebb00a3, 0x3f9e118e, 0x00000000}},  //   álfu, רמאל, hatu_,\n  { {0x3f9e022b, 0xcc34026c, 0x789300a2, 0x00000000}},  //   katu_, _ذریع, _ریاض,\n  { {0xd7fb01f9, 0xdb0500f4, 0x1b0c0044, 0x00000000}},  //   _сум_, _adhé, _হইতে_,\n  { {0xdc38007b, 0x3f9e022b, 0x6265005e, 0x00000000}},  //   זאגט_, datu_, овка,\n  { {0x20c2009f, 0x80a93d62, 0x61e20048, 0x00000000}},  //   fði_, авив_, _caol,\n  { {0x20c2009f, 0x3494005e, 0x644a058b, 0x00000000}},  //   gði_, _натр, bofi,\n  { {0xbebc001e, 0x3f9e002d, 0x644a1b3e, 0x00000000}},  //   dzīb, gatu_, cofi,\n  { {0xee3a013b, 0x02d906c6, 0xc7b2009b, 0x00000000}},  //   ино_, _خواب_, ובי_,\n  { {0x61e20051, 0x92b4035b, 0x6e2f00d2, 0x00000000}},  //   _gaol, _رحما, gicb,\n  { {0x8fa50b7a, 0x3f9e002d, 0x69d6004a, 0x00000000}},  //   _дале, batu_, veye,\n  { {0xdb1c009f, 0x3f9e00c4, 0x3f690c96, 0x00000000}},  //   ferð, catu_, _кило_,\n  { {0xcb6a00c0, 0xdb1c009f, 0x69d6014a, 0x00000000}},  //   раве_, gerð, teye,\n  { {0x2007022b, 0xe9da00ec, 0x442e003b, 0x00000000}},  //   _honi_, јка_, zif_,\n  { {0x69d601aa, 0xd9100167, 0x644a00e7, 0x00000000}},  // [e740] reye, ریس_, yofi,\n  { {0x69d60173, 0x3b83041f, 0xe7320d3a, 0x00000000}},  //   seye, _ольг, وصا_,\n  { {0xe57a2239, 0x69d601aa, 0x200700b0, 0x00000000}},  //   азе_, peye, _moni_,\n  { {0x3f9e2eee, 0x200700b9, 0xdce60180, 0x00000000}},  //   zatu_, _loni_, lakı,\n  { {0x92e60044, 0x99800006, 0x64a3007e, 0x00000000}},  //   _পথে_, snių_, дача,\n  { {0xdb1c000c, 0x628816b1, 0x2007016e, 0x00000000}},  //   rfræ, _ptdo, _noni_,\n  { {0x442e24a5, 0x644a0129, 0x61e20207, 0x00000000}},  //   rif_, rofi, _paol,\n  { {0x30a608d6, 0x9f5c0428, 0x27e3012d, 0x00000000}},  //   оров, _nová_, _zajn_,\n  { {0x3f9e09c5, 0x78a400ab, 0x200700ca, 0x00000000}},  //   tatu_, nsiv, _boni_,\n  { {0x20c2009f, 0x2018000c, 0x93cb00a1, 0x00000000}},  //   rði_, óri_, _نامہ_,\n  { {0x3f9e022b, 0x20070065, 0x61e2006c, 0x00000000}},  //   ratu_, _doni_, _taol,\n  { {0x3f9e022b, 0xdb1c000c, 0x78a4044e, 0x00000000}},  //   satu_, verð, ksiv,\n  { {0x3f9e3d63, 0x442c0190, 0x913600a1, 0x00000000}},  //   patu_, _kmd_, _براؤ,\n  { {0xdfcf0025, 0x68fb0129, 0x6e2f0253, 0x00000000}},  //   _ليه_, _àudi, sicb,\n  { {0x5fb700b6, 0x600d10af, 0x764b0f4c, 0x00000000}},  //   _והוא_, _cúmu, yogy,\n  { {0x7bda009d, 0x7bc8006c, 0x442c0068, 0x00000000}},  //   ôtur, õdur, _lmd_,\n  { {0x7afa0039, 0x20070146, 0x3f9c0521, 0x00000000}},  // [e750] ättr, _yoni_, _kevu_,\n  { {0x6aa1009f, 0xc7f80088, 0x7986000a, 0x00000000}},  //   álfs, онує_, _efkw,\n  { {0x3a2b0082, 0x81e10044, 0x00000000, 0x00000000}},  //   _tmcp_, দাত_,   ,\n  { {0x94793d64, 0x3f9c0d0a, 0x7afa0cb2, 0x00000000}},  //   бску_, _levu_, åtte,\n  { {0xb87b1195, 0x442c10c5, 0x25a0000c, 0x00000000}},  //   _crít, _bmd_, ðila_,\n  { {0x2eee06b9, 0x442c00ab, 0x764b3d65, 0x00000000}},  //   _orff_, _cmd_, sogy,\n  { {0x6595008b, 0x442c04d2, 0x8c1c0097, 0x00000000}},  //   _наву, _dmd_, שווי,\n  { {0x442c00d4, 0x20070023, 0xb87b000c, 0x00000000}},  //   _emd_, _soni_, _frít,\n  { {0x442c02a9, 0x661b3d66, 0x00000000, 0x00000000}},  //   _fmd_, _iluk,   ,\n  { {0x66091f4b, 0x6e2d0211, 0x201e002b, 0x00000000}},  //   _hoek, _amab, ghti_,\n  { {0x661b009f, 0x660916db, 0x8e8501e1, 0x00000000}},  //   _kluk, _koek, ягне,\n  { {0x8237026c, 0x44dd0173, 0x00000000, 0x00000000}},  //   _برطا, _kň_,   ,\n  { {0x20070129, 0x317a00a3, 0xa3df0061, 0x00000000}},  //   _toni_, _האנד, _तसा_,\n  { {0x201e0c10, 0x6e2d0600, 0x224d37e7, 0x00000000}},  //   chti_, _emab, loek_,\n  { {0x6b630242, 0x661b006c, 0xdce6005d, 0x00000000}},  //   екра, _oluk, rakı,\n  { {0x224d3d67, 0x78a40933, 0x321f0082, 0x00000000}},  //   noek_, tsiv, nhuy_,\n  { {0x799d010f, 0xfbd10044, 0x6aa1000c, 0x00000000}},  // [e760] _desw, ায়ত, álfr,\n  { {0x78a400b0, 0x224d00c7, 0xb8e40309, 0x00000000}},  //   rsiv, hoek_, _एम_,\n  { {0x78a40198, 0x66090100, 0x224d3d68, 0x00000000}},  //   ssiv, _boek, koek_,\n  { {0x442c0048, 0x44dd01aa, 0x799d0007, 0x00000000}},  //   _smd_, _bň_, _gesw,\n  { {0x01c30055, 0x443e0a44, 0x66090116, 0x00000000}},  //   ্যাদ, _pjt_, _doek,\n  { {0x3fe60055, 0x661b006c, 0x78a20f6c, 0x00000000}},  //   _পক্ষ, _eluk, šovs,\n  { {0x661b00ea, 0xe2970098, 0xf48700a1, 0x00000000}},  //   _fluk, пај_, _ہالی,\n  { {0x44dd0173, 0x8cad013d, 0xb87b135c, 0x00000000}},  //   _fň_, _जिलो, _trít,\n  { {0xdfd00054, 0x76430047, 0x0ef4007d, 0x00000000}},  //   نية_, énye, इम्स_,\n  { {0x66090662, 0xe0cf0076, 0x251b0097, 0x00000000}},  //   _zoek, ازي_, _הומא,\n  { {0x224d3d69, 0xa3e501f5, 0x6d440133, 0x00000000}},  //   boek_, _बोट_, _axia,\n  { {0xf27b00b6, 0xa3cd02fb, 0x201e0065, 0x00000000}},  //   _הראש, ष्ठ_, shti_,\n  { {0xfc3f008e, 0x799d0016, 0x63bc0039, 0x00000000}},  //   esía_, _resw, _örns,\n  { {0x7e640058, 0x27f80087, 0x799d0085, 0x00000000}},  //   _ehip, _nnrn_, _sesw,\n  { {0xdb1c009d, 0xe4570049, 0x00000000, 0x00000000}},  //   ngrè, פילט_,   ,\n  { {0x6e2d011c, 0x7f3b00a3, 0x0f57009b, 0x00000000}},  //   _umab, _לעוו, _מיום_,\n  { {0x660901d6, 0x00000000, 0x00000000, 0x00000000}},  // [e770] _roek,   ,   ,\n  { {0x66093d6a, 0x224d02ae, 0x661b0030, 0x00000000}},  //   _soek, zoek_, _sluk,\n  { {0x2ca90018, 0xb87b13a1, 0x6e3d06d3, 0x00000000}},  //   _hvad_, _prís, onsb,\n  { {0x3a201d08, 0x6e3d030e, 0x80d30044, 0x00000000}},  //   chip_, nnsb, তিত্,\n  { {0x629a3d6b, 0xdb1c0039, 0xe8eb0025, 0x00000000}},  //   _awto, rfrå, _ارجو_,\n  { {0xe3b8006b, 0x69cd0016, 0x76430010, 0x00000000}},  //   _alıb_, lfae, ényb,\n  { {0x68ed00d6, 0x66090100, 0x321f0082, 0x00000000}},  //   lvad, _toek, thuy_,\n  { {0x601f00f4, 0xf99f01aa, 0x661b0772, 0x00000000}},  //   _même, _alèz_, _uluk,\n  { {0x224d11fe, 0x68200039, 0x68ed3d6c, 0x00000000}},  //   roek_, _född, nvad,\n  { {0x443102b9, 0x224d3d6d, 0x248d1f9c, 0x00000000}},  //   _öz_, soek_, _item_,\n  { {0x63a3009f, 0xa3cd0316, 0x1f650088, 0x00000000}},  //   mann, ष्ण_, ьком,\n  { {0xd12e06c6, 0x1b0c0044, 0xed5a3520, 0x00000000}},  //   امی_, _হইলে_, жом_,\n  { {0x61e90056, 0x25ad0022, 0x69cd0544, 0x00000000}},  //   mdel, _mdel_, dfae,\n  { {0x61e93d6e, 0x63a33b29, 0xddcd001a, 0x00000000}},  //   ldel, nann, _piaţ,\n  { {0x60c90007, 0x69cd133c, 0x63a305cd, 0x00000000}},  //   ltem, ffae, iann,\n  { {0xdb1c2560, 0xddcd001a, 0x2900002d, 0x00000000}},  //   ngré, _viaţ, txia_,\n  { {0x63a3293e, 0x61e90007, 0x6ea10204, 0x00000000}},  // [e780] kann, idel, _कौतु,\n  { {0x60c900f4, 0xc963007c, 0xb87b0027, 0x00000000}},  //   item, твуй, _prír,\n  { {0x63a30378, 0xdb05001f, 0x7bdc0006, 0x00000000}},  //   dann, _schö, meru,\n  { {0x61e900b5, 0x60c93d6f, 0x6b670047, 0x00000000}},  //   jdel, ktem, ségé,\n  { {0x63a30016, 0xfc3f0051, 0x186a29ef, 0x00000000}},  //   fann, isín_, _мами_,\n  { {0x63a3000c, 0x7bdc0127, 0x61e900bb, 0x00000000}},  //   gann, neru, edel,\n  { {0x61e921cb, 0x7bdc001a, 0xe61a00e2, 0x00000000}},  //   fdel, ieru, _ддв_,\n  { {0xd2570147, 0xdb250010, 0x60c90146, 0x00000000}},  //   мцы_, ésér, ftem,\n  { {0x63a30051, 0x30140242, 0x7bdc00ea, 0x00000000}},  //   bann, едпр, keru,\n  { {0x68200039, 0x7bdc0020, 0x63a30051, 0x00000000}},  //   _föde, jeru, cann,\n  { {0x7bdc001f, 0x74130084, 0x80bd0044, 0x00000000}},  //   deru, _جولا, ্টগ্,\n  { {0xd3780091, 0x61e9004a, 0x6abc3d70, 0x00000000}},  //   _naći_, cdel, durf,\n  { {0x60c900f4, 0x7bdc1c94, 0x6e3d1fbc, 0x00000000}},  //   ctem, feru, rnsb,\n  { {0x20190065, 0x7bdc010f, 0x09a70061, 0x00000000}},  //   ësit_, geru, गण्य,\n  { {0x81e10055, 0xd5a4026c, 0x76590016, 0x00000000}},  //   দার_, _پہ_, ylwy,\n  { {0x799601d6, 0x25a0000c, 0x387800fa, 0x00000000}},  //   gbyw, ðill_, _airr_,\n  { {0x30bc0055, 0x63a30890, 0xc984005e, 0x00000000}},  // [e790] _অনুস, yann, туси,\n  { {0x68ed0df9, 0xee3f0428, 0x9c38007c, 0x00000000}},  //   rvad, lný_, _опыт_,\n  { {0x248d0343, 0x61e931d5, 0x68ed0142, 0x00000000}},  //   _stem_, ydel, svad,\n  { {0x7ae5008d, 0x63a3293e, 0xee3f3d71, 0x00000000}},  //   _isht, wann, nný_,\n  { {0x68200039, 0x61e915b3, 0xb87b000c, 0x00000000}},  //   _söde, vdel, _gríp,\n  { {0x61e900d9, 0x02c51c31, 0x7ae50023, 0x00000000}},  //   wdel, ейко, _ksht,\n  { {0x63a30198, 0x7bc50020, 0x61e900f8, 0x00000000}},  //   rann, _mchu, tdel,\n  { {0x63a3002a, 0x60c90198, 0xee3f01ca, 0x00000000}},  //   sann, ttem, jný_,\n  { {0x61e90376, 0xee3f01ca, 0x63a301a3, 0x00000000}},  //   rdel, dný_, pann,\n  { {0x60c91ec1, 0x61e90056, 0x93bc001a, 0x00000000}},  //   rtem, sdel, _clăd,\n  { {0x7bdc0b30, 0x61e90129, 0xdb1c004a, 0x00000000}},  //   veru, pdel, sfrú,\n  { {0x7bc50016, 0xfbc9009b, 0x63a1032e, 0x00000000}},  //   _achu, _לת_, _heln,\n  { {0x9f47008d, 0x7bdc0127, 0x63a10006, 0x00000000}},  //   _kanë_, teru, _keln,\n  { {0x9f47008d, 0x62810c5d, 0x7bdc010f, 0x00000000}},  //   _janë_, _kulo, ueru,\n  { {0xdbdd009f, 0x7bdc0190, 0x63a10089, 0x00000000}},  //   ráðu, reru, _meln,\n  { {0x09e300ed, 0xb87b0027, 0xbca60025, 0x00000000}},  //   лосн, _príp, _كمبي,\n  { {0x7ae5048a, 0x39460ca7, 0x6d4101f6, 0x00000000}},  // [e7a0] _esht, ços_, şlar,\n  { {0x57e700ed, 0x7bdc0065, 0x1ae610dc, 0x00000000}},  //   ндум_, qeru, _зоом,\n  { {0x28ac013d, 0xdb9b0104, 0x62810471, 0x00000000}},  //   _चिकि, _מסיר, _nulo,\n  { {0x25a0002a, 0xb87b06c2, 0x5ab70049, 0x00000000}},  //   úil_, _tríp, _אלטע_,\n  { {0xb97b009b, 0x69c6035f, 0x62813d72, 0x00000000}},  //   _מרכז, _icke, _aulo,\n  { {0x62811314, 0x63a1137e, 0x93bc0035, 0x00000000}},  //   _bulo, _celn, _amăr,\n  { {0x2bd20201, 0x6281001a, 0x63a10059, 0x00000000}},  //   द्या, _culo, _deln,\n  { {0x63a10004, 0xc7af00a1, 0x6281011c, 0x00000000}},  //   _eeln, _پڑے_, _dulo,\n  { {0xc05a008b, 0xee3f06b8, 0x63a10010, 0x00000000}},  //   зін_, vný_, _feln,\n  { {0x20d30025, 0x25a600e0, 0x9f470173, 0x00000000}},  //   اتيج, laol_, _kanè_,\n  { {0xee3f06b8, 0x6281382e, 0x69c600f8, 0x00000000}},  //   tný_, _gulo, _ocke,\n  { {0x7bc5001f, 0x63a105d2, 0x00000000, 0x00000000}},  //   _schu, _zeln,   ,\n  { {0xee3f01ca, 0x6281002d, 0xdb15000c, 0x00000000}},  //   rný_, _zulo, _íbúa,\n  { {0x7a23006c, 0x79e700a1, 0xee3f0161, 0x00000000}},  //   _mõte, کورہ_, sný_,\n  { {0x005700a0, 0x22ac00b9, 0x27ff0082, 0x00000000}},  //   _רשות_, něk_, _đun_,\n  { {0x9b580088, 0xa2d80204, 0x00000000, 0x00000000}},  //   хист_, _महन्,   ,\n  { {0x26d83d73, 0x200e00e7, 0x3ebe0056, 0x00000000}},  // [e7b0] _apro_, _kofi_, lutt_,\n  { {0xb90902fb, 0x7bc5000b, 0x66190093, 0x00000000}},  //   _मन_, _uchu, wkwk,\n  { {0xf3ff00ad, 0x7ae5008d, 0x3ebe0056, 0x00000000}},  //   _đã_, _usht, nutt_,\n  { {0x62810035, 0x25a60022, 0xceb300a0, 0x00000000}},  //   _rulo, gaol_, ריף_,\n  { {0x63a13d74, 0x628100e0, 0xb22b00e2, 0x00000000}},  //   _peln, _sulo, _наjн,\n  { {0xe3b300a2, 0x628103dd, 0x2936007b, 0x00000000}},  //   ارش_, _pulo, _יארן_,\n  { {0x81ea0055, 0x92e80025, 0x63a10d90, 0x00000000}},  //   মান_, فريق_, _veln,\n  { {0x75e7007e, 0x62813d75, 0x25a6005b, 0x00000000}},  //   _яўге, _vulo, caol_,\n  { {0x63a106d4, 0x9f470065, 0xe3b30644, 0x00000000}},  //   _teln, _tanë_, _مرض_,\n  { {0x6281272e, 0x69df0023, 0x3e7b05a0, 0x00000000}},  //   _tulo, heqe, _rūta_,\n  { {0x62810058, 0x00000000, 0x00000000, 0x00000000}},  //   _uulo,   ,   ,\n  { {0x2374031d, 0xd05f006b, 0x9f470062, 0x00000000}},  //   _صالح, _əvəz, _jané_,\n  { {0xd378016c, 0x200e0026, 0x9f4700c4, 0x00000000}},  //   _daću_, _fofi_, _mané_,\n  { {0x320f1bc0, 0x3ebe02c0, 0x0c79007c, 0x00000000}},  //   _hogy_, butt_, ессы_,\n  { {0xe805006e, 0xf1a501f5, 0x00000000, 0x00000000}},  //   राना_, _गजान,   ,\n  { {0x61eb00ea, 0x00000000, 0x00000000, 0x00000000}},  //   _jagl,   ,   ,\n  { {0x61eb006a, 0x00000000, 0x00000000, 0x00000000}},  // [e7c0] _magl,   ,   ,\n  { {0x61eb0039, 0xe3b8005a, 0x395c0089, 0x00000000}},  //   _lagl, _alın_, āvs_,\n  { {0xf719007e, 0x3d6500a6, 0x25a6005b, 0x00000000}},  //   ніцы_, _لطیف, taol_,\n  { {0x61eb1a7e, 0x22ac00b9, 0x68200039, 0x00000000}},  //   _nagl, věk_, _döda,\n  { {0x9f473d76, 0x7a3b00b0, 0x00000000, 0x00000000}},  //   _dané_, sätä,   ,\n  { {0xa7da007a, 0x93bc001a, 0xa507003b, 0x00000000}},  //   _توسط_, _slăb, теља_,\n  { {0x6234026b, 0x68e43d77, 0x2d803d78, 0x00000000}},  //   леку, lwid, _ogie_,\n  { {0xe3b2007a, 0x69c40142, 0x61eb0207, 0x00000000}},  //   _چرا_, ngie, _cagl,\n  { {0x68e40857, 0x61eb2a8f, 0xad9b000c, 0x00000000}},  //   nwid, _dagl, sjúk,\n  { {0xa3ba0025, 0x69df0065, 0xd378016c, 0x00000000}},  //   _زائر_, zeqe, _saću_,\n  { {0x81d708b7, 0x61eb2165, 0xd7bb0049, 0x00000000}},  //   ায়_, _fagl, וציר,\n  { {0x61eb28a7, 0x24843d79, 0x3ebe3d7a, 0x00000000}},  //   _gagl, _kumm_, rutt_,\n  { {0x69c400bb, 0x23c90309, 0x00000000, 0x00000000}},  //   dgie, _रामद,   ,\n  { {0x61e0011f, 0xdfd00025, 0x68e400ab, 0x00000000}},  //   leml, _طيب_, dwid,\n  { {0x2bd2007d, 0x307b00a3, 0x60c000b0, 0x00000000}},  //   द्धा, _קאונ, lumm,\n  { {0x69c40007, 0x61e0014a, 0x00000000, 0x00000000}},  //   ggie, neml,   ,\n  { {0x60c00056, 0x68e4077e, 0x69df0023, 0x00000000}},  // [e7d0] numm, gwid, reqe,\n  { {0x2bd20164, 0x7d58009b, 0x00000000, 0x00000000}},  //   द्दा, _ביחד_,   ,\n  { {0x12bd0055, 0x25ff0061, 0x60c00145, 0x00000000}},  //   _আন্দ, ळाली_, humm,\n  { {0x60c0002b, 0x61e000ca, 0xe6100426, 0x00000000}},  //   kumm, jeml, يشن_,\n  { {0xe8df001d, 0xa8a401f9, 0x61eb0016, 0x00000000}},  //   _thực_, _врск, _ragl,\n  { {0x61eb2353, 0x78ad0479, 0x248401a2, 0x00000000}},  //   _sagl, msav, _dumm_,\n  { {0x61eb006a, 0x78ad0006, 0x9f4700f6, 0x00000000}},  //   _pagl, lsav, _tané_,\n  { {0x93bc001a, 0x80be0044, 0x26c10058, 0x00000000}},  //   _plăc, ্বন্, muho_,\n  { {0x78ad1395, 0x61eb0197, 0x26c10058, 0x00000000}},  //   nsav, _vagl, luho_,\n  { {0x1dc60061, 0x603901aa, 0x61eb3d7b, 0x00000000}},  //   _वाहत, fňma, _wagl,\n  { {0x61eb0207, 0x6da60256, 0x61e0016c, 0x00000000}},  //   _tagl, лина, beml,\n  { {0xa2d802f4, 0x60c03d7c, 0x00000000, 0x00000000}},  //   _महत्, bumm,   ,\n  { {0x78ad0107, 0x64433d7d, 0xb87b0010, 0x00000000}},  //   jsav, onni, _csík,\n  { {0x78ad0056, 0x81ea0044, 0x64430fd1, 0x00000000}},  //   dsav, মাণ_, nnni,\n  { {0x644331b2, 0xab2a003b, 0x69c401d6, 0x00000000}},  //   inni, хова_, tgie,\n  { {0x69c4001e, 0x6e92067a, 0x68e4278b, 0x00000000}},  //   ugie, _اليا, twid,\n  { {0x69c4010f, 0x6e2409bd, 0x78ad01c4, 0x00000000}},  // [e7e0] rgie, _ilib, gsav,\n  { {0xebe601f9, 0x68e40d4d, 0x69c4054e, 0x00000000}},  //   _сооп, rwid, sgie,\n  { {0x09b00044, 0x7d090065, 0x225f083a, 0x00000000}},  //   ঙ্গা, _tërë, kluk_,\n  { {0x64430046, 0x00000000, 0x00000000, 0x00000000}},  //   enni,   ,   ,\n  { {0xe3b20014, 0xb4ae0061, 0x00000000, 0x00000000}},  //   مرغ_, कळे_,   ,\n  { {0x6e2404bd, 0x2a60006c, 0xdb07000c, 0x00000000}},  //   _llib, llib_, rgjö,\n  { {0x61e0393a, 0x6e242e51, 0xd62a003b, 0x00000000}},  //   teml, _olib, _зове_,\n  { {0x7afa00b0, 0x64433d7e, 0x28c80316, 0x00000000}},  //   ätty, anni, िंपि,\n  { {0x61e03d7f, 0x463b007b, 0xf99300a0, 0x00000000}},  //   reml, _נעמע, זרח_,\n  { {0x60c00193, 0x442701a2, 0x44382c50, 0x00000000}},  //   rumm, chn_, _ör_,\n  { {0x93cb00a1, 0xb33c01d5, 0x60c0006c, 0x00000000}},  //   _سالہ_, _ieħo, summ,\n  { {0x78ad3d80, 0x6e240051, 0x62983d81, 0x00000000}},  //   ysav, _clib, mpvo,\n  { {0x81ea0044, 0x409601fc, 0x00000000, 0x00000000}},  //   মাদ_, _срет,   ,\n  { {0x6e24001a, 0xa2ab0061, 0xb33c01f3, 0x00000000}},  //   _elib, ींच्, _jeħo,\n  { {0x501b0104, 0xdcef0276, 0xfe7001b2, 0x00000000}},  //   _אוגו, racı, تدی_,\n  { {0x63aa000c, 0x78ad010e, 0x00000000, 0x00000000}},  //   hafn, tsav,   ,\n  { {0x644337a9, 0x38350216, 0xe3b801df, 0x00000000}},  // [e7f0] ynni, анар, _alım_,\n  { {0x78ad0066, 0x201e06aa, 0x225f3d82, 0x00000000}},  //   rsav, nkti_, zluk_,\n  { {0x78ad06c0, 0xd6db00a5, 0x2a600058, 0x00000000}},  //   ssav, эта_, blib_,\n  { {0x7afa0030, 0xeef70104, 0x45d5007c, 0x00000000}},  //   ætte, טמבר_, родс,\n  { {0x2bd2007d, 0x44270146, 0x7e6d0fcc, 0x00000000}},  //   द्वा, thn_, _mhap,\n  { {0x7bc7000c, 0x644300b0, 0x00000000, 0x00000000}},  //   ngju, unni,   ,\n  { {0xa3490265, 0xdb1c1f1e, 0x225f3d83, 0x00000000}},  //   ъзка_, ográ, tluk_,\n  { {0xe1ff008e, 0xdb1c3d84, 0x5b7c0049, 0x00000000}},  //   ñó_, ngrá, ערהא,\n  { {0x1b0c0044, 0x225f3d85, 0x61450069, 0x00000000}},  //   _হইছে_, rluk_, репа,\n  { {0x225f0334, 0x6e2400b9, 0xe8df0082, 0x00000000}},  //   sluk_, _slib, _giục_,\n  { {0x44251775, 0x43840025, 0xb87b12b2, 0x00000000}},  //   _ill_, _المق, _epíg,\n  { {0x3eb807da, 0x4155007c, 0x6e240026, 0x00000000}},  //   árta_, _квес, _qlib,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x55760049, 0x7bc7000c, 0x6d5f0065, 0x00000000}},  //   יערן_, ggju, _dyqa,\n  { {0xfaa60081, 0x765b014a, 0x26c70129, 0x00000000}},  //   рабо, _okuy, ànol_,\n  { {0xceb80036, 0x6e241126, 0x442514ea, 0x00000000}},  //   rzęt_, _ulib, _lll_,\n\n  { {0x44250016, 0x2a600f00, 0xe9d70184, 0x00000000}},  // [e800] _oll_, rlib_, јку_,\n  { {0x7a230004, 0x48032798, 0x00000000, 0x00000000}},  //   _võta, опув,   ,\n  { {0x3bbb009b, 0x93bc00e5, 0xf99f000a, 0x00000000}},  //   _במיד, _blăn, _poèt_,\n  { {0x4425130f, 0x9f5c004f, 0x3a2902ae, 0x00000000}},  //   _all_, _nový_, chap_,\n  { {0x44250190, 0x261700fa, 0x00000000, 0x00000000}},  //   _bll_, _aços_,   ,\n  { {0x18a3007e, 0x92f60025, 0x14180025, 0x00000000}},  //   _фарм, لأعض, طيبة_,\n  { {0x44253d86, 0x63aa0016, 0xb7db00b3, 0x00000000}},  //   _dll_, rafn, _שקלי,\n  { {0x442504bd, 0x63aa000c, 0x7c3c01a2, 0x00000000}},  //   _ell_, safn, hirr,\n  { {0xdfd401ab, 0x7c3c0145, 0xb33c0066, 0x00000000}},  //   бопы, kirr, _teħo,\n  { {0x7e6d3d87, 0x201e008f, 0x16040061, 0x00000000}},  //   _shap, ukti_, ळावर_,\n  { {0x64580a14, 0x201e0006, 0x443c3d88, 0x00000000}},  //   movi, rkti_, miv_,\n  { {0x443c0224, 0x63a80cf5, 0x00000000, 0x00000000}},  //   liv_, _hedn,   ,\n  { {0x40940054, 0x0ca8005e, 0x62880027, 0x00000000}},  //   _التر, итри_, _hudo,\n  { {0x645801cd, 0x62881ea7, 0xbebc001e, 0x00000000}},  //   novi, _kudo, dzīv,\n  { {0x63a8115c, 0x7e6d0051, 0x62881d9c, 0x00000000}},  //   _medn, _thap, _judo,\n  { {0x443c01d9, 0x7e6d05fa, 0x64580119, 0x00000000}},  //   hiv_, _uhap, hovi,\n  { {0x64580466, 0x443c063b, 0xc4c400a1, 0x00000000}},  // [e810] kovi, kiv_, _تے_,\n  { {0x645800d2, 0x6e3d2a22, 0x443c0213, 0x00000000}},  //   jovi, lisb, jiv_,\n  { {0x64580340, 0xcfe10044, 0x443c0142, 0x00000000}},  //   dovi, বাচন, div_,\n  { {0x3f790049, 0xdb050010, 0xd24601d8, 0x00000000}},  //   אָנע, _nehé, _رن_,\n  { {0x44253d89, 0x24e70098, 0x65600016, 0x00000000}},  //   _pll_, рцег, _cymh,\n  { {0x645800ee, 0x62881124, 0xb4e700e8, 0x00000000}},  //   govi, _budo, _बनी_,\n  { {0x9f4700b9, 0x62880036, 0x63a83859, 0x00000000}},  //   _paní_, _cudo, _dedn,\n  { {0xddc40059, 0xe8050061, 0x00000000, 0x00000000}},  //   _ohiš, रावा_,   ,\n  { {0x443c3d8a, 0x65600016, 0x76590036, 0x00000000}},  //   biv_, _gymh, mowy,\n  { {0x44250129, 0x64580387, 0x76590036, 0x00000000}},  //   _ull_, covi, lowy,\n  { {0xdb050010, 0x26d33d8b, 0x628800f8, 0x00000000}},  //   _fehé, ntxo_, _gudo,\n  { {0x81b10044, 0x63a8013e, 0x76590036, 0x00000000}},  //   ঞ্জ_, _zedn, nowy,\n  { {0xee37060e, 0x30750751, 0x7c3c0fd1, 0x00000000}},  //   сня_, _лукс, tirr,\n  { {0x62880022, 0x00000000, 0x00000000, 0x00000000}},  //   _yudo,   ,   ,\n  { {0xff5300d3, 0x81ea0055, 0x4e95031d, 0x00000000}},  //   _بخش_, মার_, _اشتر,\n  { {0xbb430680, 0x5986005e, 0x64580340, 0x00000000}},  //   ческ, слаб, zovi,\n  { {0x76590036, 0xe8fa00a5, 0x443c01aa, 0x00000000}},  // [e820] dowy, ыла_, yiv_,\n  { {0x443c006b, 0x3a2003e3, 0x81b10044, 0x00000000}},  //   xiv_, skip_, ঞ্চ_,\n  { {0x6458037e, 0x63a80059, 0x443c19c5, 0x00000000}},  //   vovi, _redn, viv_,\n  { {0x62882727, 0x452a19c9, 0x63a8003b, 0x00000000}},  //   _rudo, лжен_, _sedn,\n  { {0x443c3d8c, 0x98a00046, 0x7a230004, 0x00000000}},  //   tiv_, dzić_, _mõtl,\n  { {0x9cd700b6, 0x628800b0, 0x9f4e0023, 0x00000000}},  //   מונה_, _pudo, _qafë_,\n  { {0x443c00eb, 0x63a801d9, 0x8bf20044, 0x00000000}},  //   riv_, _vedn, ঞাপন_,\n  { {0x443c000d, 0x64580091, 0x76590036, 0x00000000}},  //   siv_, sovi, cowy,\n  { {0x64580213, 0x9f4e0263, 0x63a801d9, 0x00000000}},  //   povi, _zafè_, _tedn,\n  { {0x62883d8d, 0x6016001a, 0x6e3d01d6, 0x00000000}},  //   _tudo, _câmp, wisb,\n  { {0xe0cf00a6, 0xdb1c0210, 0x6e3d1fbc, 0x00000000}},  //   وزی_, ngrä, tisb,\n  { {0xde590451, 0xbebc0089, 0x7d1d3d8e, 0x00000000}},  //   рамі_, dzīt, tyss,\n  { {0x463b0049, 0x5c07005e, 0x25d70049, 0x00000000}},  //   רעכע, бява, זוכן_,\n  { {0x6e3d00bb, 0x7d1d00f8, 0x76590036, 0x00000000}},  //   sisb, ryss, zowy,\n  { {0xa3cd02fb, 0x9f5c00c4, 0x7d1d3d8f, 0x00000000}},  //   ष्ट_, _vovó_, syss,\n  { {0x6e4401f9, 0x7d0900b0, 0xb9c50025, 0x00000000}},  //   _нејз, äess, تقري,\n  { {0xe805024c, 0xb4e703d7, 0xb815003b, 0x00000000}},  // [e830] राला_, _बने_, одај,\n  { {0x2cb400b9, 0x2baa0061, 0x9f4e01aa, 0x00000000}},  //   řadí_, करणा, _pafè_,\n  { {0x76590eeb, 0x67b80025, 0xb87b0325, 0x00000000}},  //   towy, صالح_, _apíc,\n  { {0x9f4e088a, 0x3e7b010a, 0xe3b801f6, 0x00000000}},  //   _café_, _būti_, _adı_,\n  { {0x6385025f, 0x76590036, 0x69dd0056, 0x00000000}},  //   огла, rowy, _ibse,\n  { {0x76590036, 0xe8940194, 0xdb07013e, 0x00000000}},  //   sowy, _харь, hají,\n  { {0x8c1c061e, 0xe299008b, 0x2bdb04da, 0x00000000}},  //   רווי, шай_, म्या,\n  { {0x6d41038c, 0x20183d90, 0x00000000, 0x00000000}},  //   şlay, örin_,   ,\n  { {0x98a00107, 0xdb0700b9, 0x41050088, 0x00000000}},  //   rzić_, dají, ізов,\n  { {0x225d0022, 0x00000000, 0x00000000, 0x00000000}},  //   _wkwk_,   ,   ,\n  { {0x3f6900e2, 0x5e4a2436, 0x69cf000a, 0x00000000}},  //   рино_, ипом_, _occe,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x60160035, 0xd0090fd8, 0x00000000, 0x00000000}},  //   _tâmp, _веле_,   ,\n  { {0x69cf0b63, 0x80dc0044, 0x00000000, 0x00000000}},  //   _acce, বিশ্,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xbebc0089, 0x69cf00e5, 0x00000000, 0x00000000}},  //   rzīt, _ccce,   ,\n  { {0xe7aa0081, 0x3ea70016, 0x69dd0087, 0x00000000}},  // [e840] ивал_, _hwnt_, _dbse,\n  { {0x69cf0207, 0x7d1b010f, 0x201300f6, 0x00000000}},  //   _ecce, äuse, _òxid_,\n  { {0x46ea026b, 0x3e7b0089, 0xf986007c, 0x00000000}},  //   рден_, _sūti_, _мгно,\n  { {0xe5a30256, 0x05661074, 0x090601f9, 0x00000000}},  //   дици, овен, _дпмн,\n  { {0xe8f72329, 0x62820116, 0xdb1c04ce, 0x00000000}},  //   _для_, _rioo, sgrä,\n  { {0xdb07013e, 0x00000000, 0x00000000, 0x00000000}},  //   zají,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xb114003b, 0xb33c01f3, 0x00000000, 0x00000000}},  //   змиш, _jeħi,   ,\n  { {0xdb0700b9, 0x628201d6, 0x00000000, 0x00000000}},  //   vají, _vioo,   ,\n  { {0xf3ca0439, 0xb33c0066, 0xd01a1663, 0x00000000}},  //   _خبره_, _leħi, рфи_,\n  { {0x25ff0061, 0x00000000, 0x00000000, 0x00000000}},  //   ळाची_,   ,   ,\n  { {0x629a0288, 0xddab00e2, 0x7bde384f, 0x00000000}},  //   _itto, штол_, _abpu,\n  { {0x867b00a0, 0x00000000, 0x00000000, 0x00000000}},  //   ירטו,   ,   ,\n  { {0x7a23006c, 0x644a0048, 0xdb07339c, 0x00000000}},  //   _võtm, nnfi, sají,\n  { {0xb0240011, 0x644a0051, 0x00000000, 0x00000000}},  //   _giườ, infi,   ,\n  { {0xddeb03ec, 0xe70b0014, 0x00000000, 0x00000000}},  //   _ضربه_, یتان_,   ,\n  { {0x69dd0051, 0xfbd3007d, 0x00000000, 0x00000000}},  // [e850] _vbse, _तापम,   ,\n  { {0x629a0198, 0xe6160059, 0x7c2e01a2, 0x00000000}},  //   _otto, _čišč, chbr,\n  { {0x98ac0089, 0x7afe0009, 0x9f4e0010, 0x00000000}},  //   ālās_, _grpt, _infó_,\n  { {0x69cf0197, 0xcff30044, 0x3afa0049, 0x00000000}},  //   _ucce, জায়_, _פּיע,\n  { {0x629a19eb, 0x64a50888, 0xa3e7013d, 0x00000000}},  //   _atto, чала, यजल_,\n  { {0xdb0e1c88, 0x3e720161, 0xe8df0082, 0x00000000}},  //   fabè, máte_, _nhức_,\n  { {0x68ed018e, 0x20090011, 0x170700a1, 0x00000000}},  //   lwad, _đai_, _ظفری_,\n  { {0x69cd03e3, 0xd4e72bda, 0x682004ce, 0x00000000}},  //   ngae, _мюзи, _rödi,\n  { {0x629a0197, 0x68ed0016, 0xd5fb0082, 0x00000000}},  //   _etto, nwad, _giú,\n  { {0x25ad015c, 0xe8df001d, 0xb87b0010, 0x00000000}},  //   _heel_, _chức_, _zsír,\n  { {0x961d001e, 0x25ad3d91, 0x764b0016, 0x00000000}},  //   _ziņa, _keel_, ongy,\n  { {0xfce601fb, 0xfe7201f7, 0x3e720062, 0x00000000}},  //   помо, عدد_, káte_,\n  { {0xc1040054, 0x61e9006c, 0x9f5c00f6, 0x00000000}},  //   _يومي, meel, _envà_,\n  { {0xa09a012f, 0x5eda0055, 0x68ed0016, 0x00000000}},  //   _היסט, _বছরে, dwad,\n  { {0x2007349c, 0xab27003b, 0x60c90ede, 0x00000000}},  //   _inni_, пора_, luem,\n  { {0x1dc6001c, 0x3e7b001e, 0x61e900b0, 0x00000000}},  //   _वाटत, _būtu_, neel,\n  { {0x2edb141c, 0x60c90ede, 0x9ac30066, 0x00000000}},  // [e860] _बहुत, nuem, _ċċek,\n  { {0x61e91ea7, 0x7e930035, 0xb33c0066, 0x00000000}},  //   heel, _zăpa, _weħi,\n  { {0x61e93d92, 0x69cd0009, 0x9f450010, 0x00000000}},  //   keel, bgae, felé_,\n  { {0xd6cf0558, 0x68200039, 0xa2ca01f5, 0x00000000}},  //   طقه_, _nödv, संस्,\n  { {0x25ad0100, 0xd5af06f1, 0x61e901b5, 0x00000000}},  //   _deel_, افه_, deel,\n  { {0x02a601be, 0x961d001e, 0x7bce0058, 0x00000000}},  //   прим, _viņa, ngbu,\n  { {0x66e301b3, 0x25ad00ab, 0xd36f0025, 0x00000000}},  //   _пора, _feel_, ههه_,\n  { {0x20070198, 0x25ad0ee3, 0xc1ea0088, 0x00000000}},  //   _anni_, _geel_, ське_,\n  { {0x1dc60061, 0xe8df0011, 0x60c9038e, 0x00000000}},  //   _वाजत, _phức_, guem,\n  { {0x2018000c, 0xb033007c, 0x2d893d93, 0x00000000}},  //   ðri_, еньш, _sgae_,\n  { {0x61e9017c, 0x75220010, 0x442c0190, 0x00000000}},  //   beel, lyoz, _ild_,\n  { {0x443e16d4, 0x7c3e0035, 0x99820173, 0x00000000}},  //   _hmt_, _ampr, _ankō_,\n  { {0xe8df001d, 0xdb050211, 0x5c070c4e, 0x00000000}},  //   _thức_, _vehí, пява,\n  { {0x68fb0181, 0x717b009b, 0x68ed01aa, 0x00000000}},  //   _áudi, _הנדס, vwad,\n  { {0x7e860224, 0x442c0142, 0x443e0724, 0x00000000}},  //   íspě, _mld_, _mmt_,\n  { {0x7c3e081d, 0x442c01f3, 0x443e0089, 0x00000000}},  //   _empr, _lld_, _lmt_,\n  { {0x442c0038, 0xa3d20061, 0x20070016, 0x00000000}},  // [e870] _old_, _वाढ_, _ynni_,\n  { {0x68ed1f0f, 0xb87b1505, 0x442c0082, 0x00000000}},  //   rwad, _psíq, _nld_,\n  { {0x6e2d1ac6, 0x25ad0e9e, 0x9f450224, 0x00000000}},  //   _klab, _peel_, telé_,\n  { {0x443e3d94, 0x442c0032, 0xd774004b, 0x00000000}},  //   _amt_, _ald_, رالع,\n  { {0x25ad2e34, 0x248d02d5, 0x443e006b, 0x00000000}},  //   _veel_, _quem_, _bmt_,\n  { {0x443e0095, 0x2a69010e, 0x25ad0bc7, 0x00000000}},  //   _cmt_, llab_, _weel_,\n  { {0xe3b000b8, 0x6e2d011f, 0x35b500ed, 0x00000000}},  //   اره_, _olab, _обвр,\n  { {0x02dd03d7, 0x442c0332, 0x443e006c, 0x00000000}},  //   _महीन, _eld_, _emt_,\n  { {0x61e92a1d, 0xdb0e0181, 0x443e2b33, 0x00000000}},  //   reel, rabé, _fmt_,\n  { {0x443e001d, 0xa3d40140, 0x61e90c75, 0x00000000}},  //   _gmt_, _поуч, seel,\n  { {0x6e2d00f4, 0x661b24b0, 0x61e9046a, 0x00000000}},  //   _blab, _kouk, peel,\n  { {0x6443010a, 0x661b021e, 0x7c3e00f6, 0x00000000}},  //   lini, _jouk, _smpr,\n  { {0x60c9028c, 0x64430051, 0x661b098a, 0x00000000}},  //   quem, oini, _mouk,\n  { {0x64432b61, 0x7afc0119, 0x3b0a007c, 0x00000000}},  //   nini, tvrt, оего_,\n  { {0x7bdc0146, 0x66092309, 0x442700ea, 0x00000000}},  //   rfru, _onek, ikn_,\n  { {0x7bdc0f2a, 0x224d0010, 0x6443014a, 0x00000000}},  //   sfru, nnek_, hini,\n  { {0x6443010a, 0xd9430057, 0x2bdb02f4, 0x00000000}},  // [e880] kini, вети, म्हा,\n  { {0x66092017, 0x64430006, 0xcb6a003b, 0x00000000}},  //   _anek, jini, _мапе_,\n  { {0x6443010a, 0x224d0047, 0x661b01aa, 0x00000000}},  //   dini, knek_, _bouk,\n  { {0x81e20044, 0xb33c01d5, 0x443e0145, 0x00000000}},  //   _ফোন_, _meħt, _smt_,\n  { {0x6443096e, 0xa3d20164, 0x443e0009, 0x00000000}},  //   fini, _वाद_, _pmt_,\n  { {0x6443010a, 0xe3b8005d, 0x6609002d, 0x00000000}},  //   gini, _alır_, _enek,\n  { {0x7e640263, 0xbddb0129, 0x442c1768, 0x00000000}},  //   _okip, dièn, _vld_,\n  { {0x290200ca, 0x224d0010, 0x64433d95, 0x00000000}},  //   _krka_, gnek_, aini,\n  { {0x6443010a, 0x961d001e, 0x442c0300, 0x00000000}},  //   bini, _ziņo, _tld_,\n  { {0x3f140242, 0x7e640020, 0x442c0190, 0x00000000}},  //   едос, _akip, _uld_,\n  { {0x3eb80047, 0x27f80016, 0x629e3d96, 0x00000000}},  //   ért_, _marn_, ípod,\n  { {0x26c70091, 0x2902074d, 0x25a63d97, 0x00000000}},  //   šnog_, _orka_, nbol_,\n  { {0x03f10044, 0xe0d40049, 0x7ff300a2, 0x00000000}},  //   চারী_, _נײַ_, رسیا,\n  { {0x7e640340, 0xbddb0129, 0x7a310056, 0x00000000}},  //   _ekip, cièn, _måte,\n  { {0x2a6900ea, 0x7a310039, 0x2902014a, 0x00000000}},  //   tlab_, _låte, _arka_,\n  { {0x64430006, 0x3e56001e, 0xb87b12b2, 0x00000000}},  //   zini, tāte_, _epíl,\n  { {0x6443027d, 0x2a6901ee, 0x61e200e7, 0x00000000}},  // [e890] yini, rlab_, _mbol,\n  { {0x661b00b9, 0x47c70044, 0x27f83d98, 0x00000000}},  //   _souk, র্নী, _carn_,\n  { {0x6443010a, 0x661b000a, 0x201c0061, 0x00000000}},  //   vini, _pouk, _movi_,\n  { {0x64430036, 0x7a3100d8, 0x27f83d99, 0x00000000}},  //   wini, _båte, _earn_,\n  { {0x6443010a, 0x27f80016, 0x78f90049, 0x00000000}},  //   tini, _farn_, _צפֿו,\n  { {0x61e20129, 0x201c01d9, 0x68200039, 0x00000000}},  //   _abol, _novi_, _döds,\n  { {0x6443049d, 0x224d0047, 0x661b00b0, 0x00000000}},  //   rini, tnek_, _touk,\n  { {0x64430890, 0x2d9f04f3, 0xdb1c00ea, 0x00000000}},  //   sini, ñuel_, rgrø,\n  { {0x64430006, 0x224d0cca, 0x25bf023a, 0x00000000}},  //   pini, rnek_, _idul_,\n  { {0x7e64009f, 0x224d0010, 0x61e2002d, 0x00000000}},  //   _skip, snek_, _ebol,\n  { {0xfe460741, 0xbddb0129, 0xd24e0123, 0x00000000}},  //   енно, rièn, شنی_,\n  { {0xed5a0a33, 0x6ec0007d, 0x00000000, 0x00000000}},  //   зом_, _विरु,   ,\n  { {0x61fb003f, 0xdb07006c, 0x00000000, 0x00000000}},  //   mdul, hajä,   ,\n  { {0x09ba001c, 0x61f9018e, 0x60db0416, 0x00000000}},  //   ेल्य, _hawl, mtum,\n  { {0x60db3d9a, 0xa3d20164, 0x25a60279, 0x00000000}},  //   ltum, _वास_, ybol_,\n  { {0x3a29023a, 0x60db1b50, 0xbddb1339, 0x00000000}},  //   gkap_, otum, nièl,\n  { {0x60db0ae4, 0x68320030, 0x64410c46, 0x00000000}},  // [e8a0] ntum, _læde, _omli,\n  { {0x25bf0061, 0x6c3400a1, 0x60db0883, 0x00000000}},  //   _adul_, _شہزا, itum,\n  { {0x60db0368, 0x7d041ab0, 0xdb050047, 0x00000000}},  //   htum, _hris, _tehá,\n  { {0x321d0046, 0x4a9b007b, 0x29020107, 0x00000000}},  //   _nowy_, _מיטג, _trka_,\n  { {0x25a61346, 0x27f8009d, 0x61fb0016, 0x00000000}},  //   rbol_, _tarn_, ddul,\n  { {0x7d040020, 0x25a6008e, 0x29003d9b, 0x00000000}},  //   _mris, sbol_, mvia_,\n  { {0x2bd3001c, 0x61f900e0, 0x201c0026, 0x00000000}},  //   _तासा, _bawl, _rovi_,\n  { {0x28c7013d, 0x93bc001a, 0x30a602dc, 0x00000000}},  //   _लिमि, _alăt, нров,\n  { {0x29000129, 0xe8050061, 0x61f900ea, 0x00000000}},  //   nvia_, राचा_, _dawl,\n  { {0x93bc0035, 0x61fb3d9c, 0xd575030d, 0x00000000}},  //   _clăt, adul, _русь,\n  { {0x7d043d9d, 0x61f901c3, 0x61fb1fec, 0x00000000}},  //   _aris, _fawl, bdul,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7e7d01c5, 0x7a230004, 0x2ca00009, 0x00000000}},  //   rmsp, _mõtt, _ctid_,\n  { {0x7d042ddd, 0x00f7009b, 0x3e720062, 0x00000000}},  //   _dris, _נמוך_, ráta_,\n  { {0x7d040ac2, 0xdb58007c, 0x2ca001aa, 0x00000000}},  //   _eris, еют_, _etid_,\n  { {0x7d040e69, 0x00000000, 0x00000000, 0x00000000}},  //   _fris,   ,   ,\n  { {0x7d040016, 0x3a290397, 0x6f030ecc, 0x00000000}},  // [e8b0] _gris, rkap_, _zrnc,\n  { {0x3a29351f, 0x68200039, 0x61fb0010, 0x00000000}},  //   skap_, _södr, zdul,\n  { {0xdcfd01f6, 0xc5d501ff, 0x290000b0, 0x00000000}},  //   ması, віль, avia_,\n  { {0xdcfd0279, 0xd6d8007e, 0x2c760190, 0x00000000}},  //   lası, эту_, ræde_,\n  { {0x61f9020f, 0x3e560089, 0x7d04006b, 0x00000000}},  //   _rawl, nāta_, _xris,\n  { {0xdcfd027d, 0x00000000, 0x00000000, 0x00000000}},  //   nası,   ,   ,\n  { {0xdce40046, 0x61f91a79, 0xb3d20061, 0x00000000}},  //   _dzię, _pawl, _सारख,\n  { {0x60db3d9e, 0x7afa000c, 0x3e5601c5, 0x00000000}},  //   ttum, ætti, kāta_,\n  { {0x212b0dea, 0x34950069, 0xdcfd027d, 0x00000000}},  //   ách_, _разр, kası,\n  { {0x601e00b9, 0x7d0426a1, 0x3e560089, 0x00000000}},  //   _námě, _rris, dāta_,\n  { {0x60db021e, 0x34d102fb, 0x47c70044, 0x00000000}},  //   stum, _समुद, র্থী,\n  { {0x7d04102f, 0x27010006, 0x98a90036, 0x00000000}},  //   _pris, _mėn_, czać_,\n  { {0xee371969, 0xdcfd005a, 0x3e560089, 0x00000000}},  //   тня_, fası, gāta_,\n  { {0x628b00e0, 0xa1360049, 0x29000197, 0x00000000}},  //   _higo, _באנק_, vvia_,\n  { {0x628b0020, 0x0b590a78, 0xeb970072, 0x00000000}},  //   _kigo, ерты_, тис_,\n  { {0x29000089, 0xc3320104, 0x628b2e8a, 0x00000000}},  //   tvia_, בול_, _jigo,\n  { {0xf1b2052f, 0xa3c302f4, 0x60c90207, 0x00000000}},  // [e8c0] יסן_, ्ला_, nrem,\n  { {0x628b010a, 0x60c900f4, 0x29002522, 0x00000000}},  //   _ligo, irem, rvia_,\n  { {0x99990047, 0xfaa60245, 0xbddb147f, 0x00000000}},  //   _első_, _шано, zièm,\n  { {0x64a600ed, 0x601e00b9, 0x44e900fa, 0x00000000}},  //   вада, _zámě, fº_,\n  { {0x7a230004, 0xbddb00f4, 0x34d10309, 0x00000000}},  //   _võtt, xièm, _समृद,\n  { {0x07a30265, 0x07ba0025, 0xfc3f008e, 0x00000000}},  //   _варн, _زهرة_, opía_,\n  { {0x628b027b, 0x77910167, 0x7a230004, 0x00000000}},  //   _bigo, _ایما, _tõtt,\n  { {0x60f801be, 0xf506092b, 0x5186007c, 0x00000000}},  //   ения_, _избо, купа,\n  { {0xdcfd005f, 0x60c90173, 0xfbb80055, 0x00000000}},  //   yası, grem, _জানত,\n  { {0xdcfd006b, 0x98a90036, 0x7a310056, 0x00000000}},  //   xası, szać_, _måta,\n  { {0x7a3138c6, 0x3fc800a6, 0x60c9004a, 0x00000000}},  //   _låta, ودگی_, arem,\n  { {0x63b80213, 0xd36f0076, 0x71a6007e, 0x00000000}},  //   lavn, _بهم_, _радз,\n  { {0x60c9027b, 0xdcfd005d, 0xecc7005e, 0x00000000}},  //   crem, tası, ъщно,\n  { {0x09cb001c, 0x628b002d, 0x63b81565, 0x00000000}},  //   िल्य, _zigo, navn,\n  { {0xdcfd038c, 0x628000d9, 0x00000000, 0x00000000}},  //   rası, ommo,   ,\n  { {0x79a4007c, 0x39a400ed, 0x7a3102e1, 0x00000000}},  //   ируе, ишув, _båta,\n  { {0x497501a4, 0xa3d20309, 0x63b8089f, 0x00000000}},  // [e8d0] улас, वला_, kavn,\n  { {0x63b801d9, 0xc6a70098, 0xdcfd006b, 0x00000000}},  //   javn, врди, qası,\n  { {0x63b80091, 0xdb050afc, 0x588400a5, 0x00000000}},  //   davn, _behå, рыта,\n  { {0x7a23006c, 0x80b80044, 0xa535007c, 0x00000000}},  //   _võts, _আমন্, лнеч,\n  { {0xc9870143, 0x00000000, 0x00000000, 0x00000000}},  //   _јуни,   ,   ,\n  { {0x60c90119, 0x628b014a, 0xf77300a6, 0x00000000}},  //   vrem, _sigo, _ناز_,\n  { {0xe1f10025, 0x8c1c009b, 0x00000000, 0x00000000}},  //   مسة_, ווגי,   ,\n  { {0xc1b90054, 0x628b3d9f, 0x63b8016c, 0x00000000}},  //   رابط_, _qigo, aavn,\n  { {0x63b80209, 0x60c90666, 0x3114007e, 0x00000000}},  //   bavn, urem, афэс,\n  { {0x60c9022b, 0xef19012b, 0x6fd80061, 0x00000000}},  //   rrem, емо_, _माणू,\n  { {0xe7f603d7, 0x5f450025, 0x628b224b, 0x00000000}},  //   ीयता_, انجل, _tigo,\n  { {0xe80a03d7, 0x60c93a03, 0xe29a0049, 0x00000000}},  //   _होना_, prem, _טשער,\n  { {0xb4f90049, 0xf1b90213, 0x518706f3, 0x00000000}},  //   עפֿי, maš_, _ружа,\n  { {0xd040005f, 0x9f050558, 0xf1b90059, 0x00000000}},  //   kumə, _موتو, laš_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x63b812d6, 0x7a310d2b, 0x00000000, 0x00000000}},  //   zavn, _påta,   ,\n  { {0x2bdc0061, 0x00000000, 0x00000000, 0x00000000}},  // [e8e0] _बापा,   ,   ,\n  { {0xf99f01aa, 0xe73a09e6, 0xf1b900ca, 0x00000000}},  //   _efè_, нез_, haš_,\n  { {0xa3ba006e, 0xf1b90213, 0x3e560089, 0x00000000}},  //   _अजब_, kaš_, nāto_,\n  { {0xf1b9092f, 0x7afa000c, 0x7c2e00f8, 0x00000000}},  //   jaš_, ættu, lkbr,\n  { {0x63b80059, 0xa3b4008b, 0xf1b90340, 0x00000000}},  //   tavn, аблі, daš_,\n  { {0x7c2e0112, 0x320f00e5, 0xdb070142, 0x00000000}},  //   nkbr, _angy_, vajú,\n  { {0x63b80340, 0x68f6018e, 0x5334041f, 0x00000000}},  //   ravn, lwyd, рейт,\n  { {0x69d60010, 0xf753023c, 0xddcf0035, 0x00000000}},  //   ngye, _انفج, docş,\n  { {0x2611001c, 0xc034025f, 0x68f60016, 0x00000000}},  //   णारी_, иниј, nwyd,\n  { {0xdb0e0010, 0x00000000, 0x00000000, 0x00000000}},  //   zabá,   ,   ,\n  { {0x33930054, 0x81e90044, 0x7413067a, 0x00000000}},  //   _المز, ময়_, _دولا,\n  { {0x2cb2018e, 0x644a0b25, 0xdd910025, 0x00000000}},  //   _bwyd_, lifi, توح_,\n  { {0x302a004d, 0x00000000, 0x00000000, 0x00000000}},  //   _подп_,   ,   ,\n  { {0x961d0089, 0x9f5c0065, 0x68f60016, 0x00000000}},  //   _viņi, _javë_, dwyd,\n  { {0x28c7001c, 0xf8bf0224, 0xdb0e015f, 0x00000000}},  //   _लिहि, _své_, tabá,\n  { {0x2cb20016, 0xf9930025, 0x644a01b1, 0x00000000}},  //   _fwyd_, صبر_, hifi,\n  { {0x68f6018e, 0x644a16fa, 0x00000000, 0x00000000}},  // [e8f0] gwyd, kifi,   ,\n  { {0x25fd0183, 0x68320030, 0x644a0a13, 0x00000000}},  //   _रोजी_, _pæda, jifi,\n  { {0x81cc0055, 0xf1b90059, 0xc6a708f3, 0x00000000}},  //   শ্য_, ljše_, урзи,\n  { {0xf8bf013e, 0x00000000, 0x00000000, 0x00000000}},  //   _tvé_,   ,   ,\n  { {0xf1b90295, 0x99820173, 0x644a2dbf, 0x00000000}},  //   vaš_, _ankņ_, fifi,\n  { {0xd90e026c, 0x644a3da0, 0x22460190, 0x00000000}},  //   _کیے_, gifi, _amok_,\n  { {0xf1b90091, 0x00000000, 0x00000000, 0x00000000}},  //   taš_,   ,   ,\n  { {0x3e5601c5, 0x00000000, 0x00000000, 0x00000000}},  //   vāto_,   ,   ,\n  { {0x2055007c, 0xf1b90e3b, 0xdcee0089, 0x00000000}},  //   итор, raš_, ājīb,\n  { {0xe3b00014, 0x09b2013d, 0x8467005e, 0x00000000}},  //   _فرم_, _ज़्य, _събе,\n  { {0x2bdc01f5, 0x3ea30023, 0x00000000, 0x00000000}},  //   _बाबा, ëjt_,   ,\n  { {0x7bc50a9e, 0x81cc0044, 0x68f60016, 0x00000000}},  //   _adhu, শ্ব_, ywyd,\n  { {0x9f4c0207, 0x6aa50048, 0x7c660025, 0x00000000}},  //   ledì_, _athf, لاسل,\n  { {0x69cb00dc, 0x4fa50a94, 0x913a0049, 0x00000000}},  //   ógen, _тикв, _בענק,\n  { {0x9f4c0207, 0x290f0039, 0x7ae30039, 0x00000000}},  //   nedì_, ågan_, _äntl,\n  { {0xc33200b3, 0x644a03ae, 0x2d920010, 0x00000000}},  //   קון_, zifi, _ugye_,\n  { {0x87ba007c, 0xada90025, 0x644a0173, 0x00000000}},  // [e900] вует_, _صديق_, yifi,\n  { {0x68f61acd, 0x644a0035, 0x6e240051, 0x00000000}},  //   rwyd, xifi, _hoib,\n  { {0x1036007b, 0x5fdd0061, 0x68f60016, 0x00000000}},  //   סטעם_, _मानल, swyd,\n  { {0x81ab0044, 0x25a00009, 0x644a005b, 0x00000000}},  //   কৃত_, ùil_, wifi,\n  { {0xb903008b, 0x25a9008e, 0x00000000, 0x00000000}},  //   _дзяк, ñala_,   ,\n  { {0x9f5c01aa, 0x0ec5006e, 0xf2c60216, 0x00000000}},  //   _favè_, _विंड, асин,\n  { {0x764b011c, 0xc5d60088, 0x00000000, 0x00000000}},  //   bigy, _візь,   ,\n  { {0xe80a02f4, 0x6e240048, 0x75d60379, 0x00000000}},  //   _होता_, _noib, _خيرا,\n  { {0xd0100025, 0x100a0025, 0x1da7006e, 0x00000000}},  //   كلة_, نتدى_, _क्षत,\n  { {0x66001f0f, 0x91a6013d, 0x660207ef, 0x00000000}},  //   _hamk, _ट्रै, ldok,\n  { {0x44e20011, 0x645a30ad, 0x44e00197, 0x00000000}},  //   _hư_, _ijti, lò_,\n  { {0x66022367, 0x3e720051, 0x6e360016, 0x00000000}},  //   ndok, náth_, _clyb,\n  { {0x44e03da1, 0x00000000, 0x00000000, 0x00000000}},  //   nò_,   ,   ,\n  { {0x78a9005d, 0x660027e4, 0x6fb40439, 0x00000000}},  //   _çevi, _lamk, _امثا,\n  { {0x6e360030, 0x8ff7026c, 0xdddd0036, 0x00000000}},  //   _flyb, _ضرور_, rosł,\n  { {0x0dcb041f, 0xbdb50098, 0x6e243da2, 0x00000000}},  //   _руки_, _убиј, _goib,\n  { {0x5fdd03d7, 0x7e6d0199, 0x644805fe, 0x00000000}},  // [e910] _मामल, _ikap, _omdi,\n  { {0x9f47008e, 0x44e015e1, 0xe8df0082, 0x00000000}},  //   _ganó_, dò_, _nhục_,\n  { {0xfbdc001c, 0xf7700188, 0xda67006d, 0x00000000}},  //   _बातम, وام_, _ناحي,\n  { {0x9f4c0207, 0x60c20091, 0x645a0087, 0x00000000}},  //   vedì_, _ovom, _ajti,\n  { {0x44e2001d, 0x7e6d0020, 0xa3d20061, 0x00000000}},  //   _cư_, _mkap, वलं_,\n  { {0x44e20011, 0xe8df0011, 0xdb050637, 0x00000000}},  //   _dư_, _chục_, _behø,\n  { {0x972500d3, 0x7a2a0161, 0x00000000, 0x00000000}},  //   _افزو, _výtv,   ,\n  { {0xe1f900d7, 0x7c2506be, 0x660001d6, 0x00000000}},  //   уги_, _lohr, _gamk,\n  { {0x44e00197, 0x7649323a, 0xe5340194, 0x00000000}},  //   cò_, _imey, _деть,\n  { {0x66000036, 0x12e70088, 0x7e6d0020, 0x00000000}},  //   _zamk, _відг, _akap,\n  { {0x6e24002a, 0xfeb9007a, 0x4425013e, 0x00000000}},  //   _poib, داخت_, _iol_,\n  { {0x44250010, 0x290b01ee, 0xdb150161, 0x00000000}},  //   _hol_, _orca_, gazí,\n  { {0x4425010a, 0x7c25010f, 0x865a01ce, 0x00000000}},  //   _kol_, _bohr, רדרי,\n  { {0x224d27dc, 0x69dd0093, 0x44250cc1, 0x00000000}},  //   liek_, _acse, _jol_,\n  { {0x09a90055, 0x9f95006c, 0x7c250062, 0x00000000}},  //   _ওয়া, _müük_, _dohr,\n  { {0x4425006a, 0x224d1c71, 0xdb1c0023, 0x00000000}},  //   _lol_, niek_, larë,\n  { {0x19b9007e, 0x69dd0009, 0x660000b4, 0x00000000}},  // [e920] русь_, _dcse, _ramk,\n  { {0x6600009f, 0x80cf0164, 0x44252f06, 0x00000000}},  //   _samk, _दिने, _nol_,\n  { {0x44e2001d, 0x66020030, 0x224d312a, 0x00000000}},  //   _sư_, tdok, kiek_,\n  { {0x05ba1095, 0x69dd0050, 0x44e00197, 0x00000000}},  //   ادات_, _gcse, tò_,\n  { {0xe8df001d, 0x44250027, 0x6fd8006e, 0x00000000}},  //   _phục_, _bol_, _मालू,\n  { {0x44252800, 0x68e41861, 0x44e00207, 0x00000000}},  //   _col_, mtid, rò_,\n  { {0xc5ed0055, 0x68e40004, 0x44250059, 0x00000000}},  //   ওয়া_, ltid, _dol_,\n  { {0x44e2001d, 0x644d00f4, 0x44250d28, 0x00000000}},  //   _tư_, éair, _eol_,\n  { {0x5554026c, 0x44250c55, 0xa5070888, 0x00000000}},  //   _بھار, _fol_, _лета_,\n  { {0x7e6d01e2, 0xa3d20204, 0x16160061, 0x00000000}},  //   _skap, _वाट_, णावर_,\n  { {0xc7b3009b, 0x68e4006c, 0x2d9e00b9, 0x00000000}},  //   הבת_, htid, ěten_,\n  { {0x90e6007a, 0x68e4006c, 0x44250009, 0x00000000}},  //   _هستن, ktid, _zol_,\n  { {0x4425038c, 0x412a01fb, 0x62650379, 0x00000000}},  //   _yol_, _щодо_, _بالق,\n  { {0x629a0be3, 0x80a4007a, 0x39400089, 0x00000000}},  //   _kuto, _همچن, dzis_,\n  { {0x63ba1402, 0x290b0746, 0xf1b90059, 0x00000000}},  //   _metn, _srca_, ljša_,\n  { {0x7e6d01ee, 0x68e40009, 0x31790036, 0x00000000}},  //   _ukap, ftid, ższe_,\n  { {0x7c250066, 0xe9180088, 0xf1b90059, 0x00000000}},  // [e930] _tohr, боті_, njša_,\n  { {0x629a3da3, 0x26c71c61, 0x224d3da4, 0x00000000}},  //   _outo, šnom_, ziek_,\n  { {0x2baf0164, 0x7d0d0340, 0x629a007f, 0x00000000}},  //   _ज्या, _hras, _nuto,\n  { {0x442504bd, 0x68e40146, 0xa3ab0061, 0x00000000}},  //   _sol_, btid, कुन_,\n  { {0x4425086e, 0x68e400d4, 0x25bd3da5, 0x00000000}},  //   _pol_, ctid, rawl_,\n  { {0x63ba01a8, 0x629a12fc, 0xdb1c010f, 0x00000000}},  //   _cetn, _buto, rgrö,\n  { {0x44253da6, 0x224d001e, 0xdb1c3da7, 0x00000000}},  //   _vol_, tiek_, varë,\n  { {0x7d0d001a, 0x44253da8, 0xd7d9013d, 0x00000000}},  //   _oras, _wol_, _ढाँच,\n  { {0xdb1c008d, 0x224d022b, 0x545500e3, 0x00000000}},  //   tarë, riek_, _дват,\n  { {0x224d0343, 0x44250181, 0x629a0232, 0x00000000}},  //   siek_, _uol_, _futo,\n  { {0x7d0d01f6, 0x629a011c, 0x68e40032, 0x00000000}},  //   _aras, _guto, ztid,\n  { {0x7d0d0fb3, 0x7659018e, 0x7afe001c, 0x00000000}},  //   _bras, nnwy, _rspt,\n  { {0x1ddb02f4, 0x3e560089, 0x7d0d00ab, 0x00000000}},  //   _भारत, nāti_, _cras,\n  { {0x61e90292, 0xdd06006b, 0x00000000, 0x00000000}},  //   lfel, çqın,   ,\n  { {0x7d0d0d49, 0xa3d20061, 0x61e90026, 0x00000000}},  //   _eras, _वाघ_, ofel,\n  { {0x61e905b4, 0x68e4225c, 0xdb1700c4, 0x00000000}},  //   nfel, ttid, _xexé,\n  { {0x602500b9, 0xe9d7007e, 0x61e901a2, 0x00000000}},  // [e940] _témě, ўку_, ifel,\n  { {0x20050d82, 0x39400035, 0x3e560089, 0x00000000}},  //   ndli_, rzis_, dāti_,\n  { {0xbddb028c, 0x63ba05ba, 0x76590016, 0x00000000}},  //   mièr, _retn, fnwy,\n  { {0xac97089d, 0xbddb028c, 0x94aa003b, 0x00000000}},  //   _دنیا_, lièr, атка_,\n  { {0x61e900ea, 0xdb153da9, 0x63ba0213, 0x00000000}},  //   dfel, mazá, _petn,\n  { {0x48f9007b, 0xbddb00f4, 0x629a0119, 0x00000000}},  //   _פּרא, nièr, _puto,\n  { {0x645800f8, 0x00000000, 0x00000000, 0x00000000}},  //   rnvi,   ,   ,\n  { {0x61e90047, 0x4444026c, 0xaa370049, 0x00000000}},  //   gfel, _کررہ, ַטיק_,\n  { {0x7bdc01d2, 0x32020142, 0x3e720062, 0x00000000}},  //   kgru, ľky_, nátu_,\n  { {0x32020428, 0xdb1c1d81, 0x7d0d0023, 0x00000000}},  //   žky_, parè, _rras,\n  { {0x91e60069, 0x7bdc1502, 0x59ca0061, 0x00000000}},  //   _може, dgru, िणार,\n  { {0x7d0d0ebc, 0x98b20046, 0xde59007e, 0x00000000}},  //   _pras, czyć_, самі_,\n  { {0x7bdc010f, 0x5c070e85, 0x00000000, 0x00000000}},  //   fgru, оява,   ,\n  { {0x7bdc0030, 0x7d0d0065, 0x212b010f, 0x00000000}},  //   ggru, _vras, äche_,\n  { {0x0dcb00e3, 0x76590016, 0x2bdc0309, 0x00000000}},  //   _купи_, ynwy, _बारा,\n  { {0x7d0d07c5, 0x9999005e, 0x00000000, 0x00000000}},  //   _tras, скат_,   ,\n  { {0xc4c400a1, 0xbddb009d, 0x00000000, 0x00000000}},  // [e950] _جے_, bièr,   ,\n  { {0xbddb009d, 0x57f4007e, 0x62820022, 0x00000000}},  //   cièr, мпут, _lhoo,\n  { {0x78ad037e, 0x5695007c, 0xf77000a1, 0x00000000}},  //   spav, чает, پال_,\n  { {0x3e56001e, 0xfad6009b, 0x78ad0052, 0x00000000}},  //   tāti_, _צורך_, ppav,\n  { {0x0608007e, 0xa5090517, 0x03a5004d, 0x00000000}},  //   ўнік_, села_, пило,\n  { {0xe2990147, 0x03a50194, 0x3e560089, 0x00000000}},  //   бак_, чико, rāti_,\n  { {0x61e90010, 0x68f9005d, 0xf48500a1, 0x00000000}},  //   tfel, şadı, _ہائی,\n  { {0x628200ab, 0xa3ab0316, 0xbddb009d, 0x00000000}},  //   _choo, _क्र_, zièr,\n  { {0xc3cb002c, 0x98b20036, 0x61e9010f, 0x00000000}},  //   _نظام_, rzyć_, rfel,\n  { {0x61e90f11, 0x98b20036, 0x2d9e00b9, 0x00000000}},  //   sfel, szyć_, ětem_,\n  { {0xfd4d001d, 0x61e902fa, 0xbddb00f4, 0x00000000}},  //   _triệ, pfel, vièr,\n  { {0x20032794, 0x244900b4, 0x00000000, 0x00000000}},  //   žji_, dźmi_,   ,\n  { {0xbddb028c, 0xc19a00b6, 0xdb150010, 0x00000000}},  //   tièr, _השני, vazá,\n  { {0x2bdc0061, 0xb068039d, 0xc0040088, 0x00000000}},  //   _बाळा, _وصول_, _опік,\n  { {0x7bdc010f, 0xbddb00f4, 0x6833014a, 0x00000000}},  //   rgru, rièr, _mıdı,\n  { {0x7bdc0056, 0xba230517, 0x28c7006e, 0x00000000}},  //   sgru, ндск, _लिखि,\n  { {0x3946008b, 0xbddb009d, 0x00000000, 0x00000000}},  // [e960] чнаг, pièr,   ,\n  { {0x3e720428, 0xb7da0076, 0xa8030143, 0x00000000}},  //   rátu_, صوصا_, нзул,\n  { {0x04040044, 0xa9a6004d, 0xbf790082, 0x00000000}},  //   লামী_, _нинд, _đuốc_,\n  { {0x6aa3008e, 0x63820048, 0x00000000, 0x00000000}},  //   _énfa, _líní,   ,\n  { {0x628200d9, 0x00000000, 0x00000000, 0x00000000}},  //   _rhoo,   ,   ,\n  { {0x04432763, 0x628200ab, 0xd4990088, 0x00000000}},  //   нечн, _shoo, ірі_,\n  { {0x78a901f6, 0x62820066, 0xb0240082, 0x00000000}},  //   _çevr, _phoo, _nhườ,\n  { {0x75840123, 0x714602dc, 0x85e702dc, 0x00000000}},  //   _قیام, зхож, _ндсв_,\n  { {0x3e560089, 0x26da3daa, 0x00000000, 0x00000000}},  //   nātu_, lupo_,   ,\n  { {0xdefa0147, 0x00000000, 0x00000000, 0x00000000}},  //   бым_,   ,   ,\n  { {0x5fdd0061, 0x26110061, 0x833a18ea, 0x00000000}},  //   _मारल, णाची_, _учат_,\n  { {0xd37b0049, 0x2902006c, 0x31790036, 0x00000000}},  //   _פראט, _oska_, ższa_,\n  { {0xa3c2001c, 0x9405006b, 0x69d8007f, 0x00000000}},  //   _्या_, _ailə_, ėvel,\n  { {0x26da0058, 0x3e560089, 0x00000000, 0x00000000}},  //   kupo_, dātu_,   ,\n  { {0x7a380051, 0x290213ee, 0x00000000, 0x00000000}},  //   _vítn, _aska_,   ,\n  { {0xb606012d, 0xdb1e01c3, 0x9405013f, 0x00000000}},  //   _ješć, _kepê, _dilə_,\n  { {0x3206011c, 0x290f01e5, 0x00000000, 0x00000000}},  // [e970] _maoy_, íga_,   ,\n  { {0x80cf0061, 0xf99013d9, 0x00000000, 0x00000000}},  //   _दिसे, طبق_,   ,\n  { {0xf1dc0365, 0xfbd2019b, 0x26c70224, 0x00000000}},  //   _यांन, _בתי_, éno_,\n  { {0xb8d308b7, 0xcf930049, 0x00000000, 0x00000000}},  //   _টি_, גטע_,   ,\n  { {0xe5340088, 0xd5fb0082, 0x3a2b000a, 0x00000000}},  //   нець, _chú, _iocp_,\n  { {0x61e23a56, 0x3e480010, 0x6fd80061, 0x00000000}},  //   _acol, lőtt_, _मागू,\n  { {0x753c005f, 0x26da0197, 0x94740014, 0x00000000}},  //   _ərzi, cupo_, ردها,\n  { {0x394d009f, 0xfbe30044, 0x61e20009, 0x00000000}},  //   _þess_, য়িত, _ccol,\n  { {0x7fd50099, 0xa4d40088, 0x62890add, 0x00000000}},  //   міні, _поті, rmeo,\n  { {0xb0240011, 0x2c760190, 0x60250088, 0x00000000}},  //   _phườ, pædi_, єдна,\n  { {0x73c4023c, 0xfbe30044, 0xe7ef0061, 0x00000000}},  //   _سينم, য়াত, घ्या_,\n  { {0x200b0df0, 0x61e20051, 0x249f006c, 0x00000000}},  //   ści_, _gcol, _kuum_,\n  { {0x61fb0557, 0x9405013f, 0x37d50044, 0x00000000}},  //   meul, _silə_, স্যর,\n  { {0xb024001d, 0x8c9505b8, 0x3c3400b0, 0x00000000}},  //   _thườ, ерсі, _kävi_,\n  { {0x09e60088, 0x9f5c0129, 0xeb9701fc, 0x00000000}},  //   мовн, _gavà_, дир_,\n  { {0x68ff001c, 0xed5a0865, 0x200715df, 0x00000000}},  //   fwqd, _мой_, _hani_,\n  { {0x2007011c, 0xdb1c3dab, 0x2baf007d, 0x00000000}},  // [e980] _kani_, marí, _ज्वा,\n  { {0x7a3804bd, 0x7d040058, 0x20071d9c, 0x00000000}},  //   _títo, _isis, _jani_,\n  { {0x8c1b007b, 0x20072e43, 0x49ba0d3a, 0x00000000}},  //   _וויי, _mani_, _واحد_,\n  { {0x2ca00004, 0x200707a0, 0xb8e40055, 0x00000000}},  //   _kuid_, _lani_, _এম_,\n  { {0x6e3d0065, 0x61fb00e0, 0x64a30451, 0x00000000}},  //   ërbi, deul, вача,\n  { {0x2ca0244d, 0x2007000b, 0x25a63dac, 0x00000000}},  //   _muid_, _nani_, scol_,\n  { {0x38a403a2, 0x3e56001e, 0x4e0e013d, 0x00000000}},  //   _hör_, nāts_, ियाई_,\n  { {0x38a418c2, 0x80cf0061, 0x69c40f90, 0x00000000}},  //   _kör_, _दिशे, naie,\n  { {0x2007000d, 0xdb1c11c4, 0x7d0401f3, 0x00000000}},  //   _bani_, darí, _nsis,\n  { {0xdfd00380, 0x20070207, 0x69c43dad, 0x00000000}},  //   ديد_, _cani_, haie,\n  { {0x93430256, 0x2007049c, 0x443e2370, 0x00000000}},  //   _инфе, _dani_, _ilt_,\n  { {0x442c0161, 0xdb1c11c4, 0x99800006, 0x00000000}},  //   _hod_, garí, nkių_,\n  { {0x442c0119, 0x2ca0002a, 0x7a31080a, 0x00000000}},  //   _kod_, _cuid_, _mått,\n  { {0x2007000b, 0x20560088, 0x7a3102e1, 0x00000000}},  //   _gani_, _ютер, _lått,\n  { {0x442c3dae, 0xc108001d, 0x7d040198, 0x00000000}},  //   _mod_, _hỗ_, _esis,\n  { {0x38a40073, 0x442c07f4, 0xdb1c00dc, 0x00000000}},  //   _bör_, _lod_, carí,\n  { {0x2007011f, 0x2ca00922, 0x7642023a, 0x00000000}},  // [e990] _yani_, _guid_, dhoy,\n  { {0xe61000e9, 0x25bf00f4, 0x38a40039, 0x00000000}},  //   یشن_, _seul_, _dör_,\n  { {0x2ca000b5, 0xc1080011, 0x249f000a, 0x00000000}},  //   _zuid_, _lỗ_, _suum_,\n  { {0x38a40901, 0x443e28a0, 0x80cf001c, 0x00000000}},  //   _för_, _alt_, _दिले,\n  { {0x442c0bc4, 0x38a43daf, 0x443e274a, 0x00000000}},  //   _bod_, _gör_, _blt_,\n  { {0xd3780046, 0x442c1567, 0xe29901f9, 0x00000000}},  //   _być_, _cod_, пак_,\n  { {0x442c0e87, 0x61fb3db0, 0x45d53db1, 0x00000000}},  //   _dod_, teul, _повс,\n  { {0x20073db2, 0x442c05d2, 0xdb1e0129, 0x00000000}},  //   _sani_, _eod_, _depè,\n  { {0x442c0bc4, 0x200718d5, 0xf07600a1, 0x00000000}},  //   _fod_, _pani_, کیوں_,\n  { {0x442c0aba, 0x7a3810af, 0x60db006c, 0x00000000}},  //   _god_, _rítm, ruum,\n  { {0x2ca00343, 0xdb1c1068, 0x64430051, 0x00000000}},  //   _suid_, tarí, mhni,\n  { {0xa3ab0309, 0x442c358f, 0x6e2d060c, 0x00000000}},  //   कुर_, _zod_, _coab,\n  { {0x2007008d, 0xdb1e008d, 0x443e0061, 0x00000000}},  //   _tani_, _tepë, _ylt_,\n  { {0x38a4072d, 0xdb1c008e, 0x3e560089, 0x00000000}},  //   _rör_, sarí, tāts_,\n  { {0xe80a03d7, 0x6d460046, 0x60c93db3, 0x00000000}},  //   _होगा_, szka, lsem,\n  { {0xdb260047, 0xdd9200a1, 0x2ca00009, 0x00000000}},  //   _épít, _یوں_, _tuid_,\n  { {0x69c41cc3, 0xd9430088, 0x60c93c2a, 0x00000000}},  // [e9a0] raie, гети, nsem,\n  { {0x60c900b0, 0x1aff0044, 0x44e929de, 0x00000000}},  //   isem, _উপরে_, dú_,\n  { {0x9f450d62, 0x64430065, 0x69c41ec5, 0x00000000}},  //   meló_, dhni, paie,\n  { {0x442c002b, 0xdb1e03eb, 0x667600d3, 0x00000000}},  //   _sod_, _repè, ردار,\n  { {0x443e0093, 0xdb1c2c6f, 0x60c90030, 0x00000000}},  //   _plt_, barã, jsem,\n  { {0x66e60088, 0xa2a40309, 0xa3ab007d, 0x00000000}},  //   _пога, _चंद्, कुल_,\n  { {0x81e90055, 0x442c0f8e, 0x62990173, 0x00000000}},  //   য়ন_, _vod_, _biwo,\n  { {0x877b0049, 0x2a60006c, 0xe29702ea, 0x00000000}},  //   _זאלי, nnib_, нај_,\n  { {0xe2130025, 0x60f7007e, 0x442c010f, 0x00000000}},  //   طبيع, еныя_, _tod_,\n  { {0x443e00d4, 0xc1080082, 0x3944000c, 0x00000000}},  //   _ult_, _vỗ_, _ýmsu_,\n  { {0x60c9003c, 0x0857009b, 0x00000000, 0x00000000}},  //   asem, תבים_,   ,\n  { {0x11e9006d, 0x60c90035, 0xdb1c03d1, 0x00000000}},  //   _يعني_, bsem, zarã,\n  { {0xe0d40049, 0x7e64000a, 0x0cab02dc, 0x00000000}},  //   _סײַ_, _djip, ятни_,\n  { {0x7e640173, 0xdb1c00fa, 0x00000000, 0x00000000}},  //   _ejip, xarã,   ,\n  { {0xdb1c1396, 0x3e64014a, 0x201c004a, 0x00000000}},  //   varã, sıta_, _invi_,\n  { {0xa8a7007c, 0x6443012d, 0x9f7b00a0, 0x00000000}},  //   ержк, zhni, _מנוח,\n  { {0x23e00204, 0xdb1c0181, 0x6609006c, 0x00000000}},  // [e9b0] _नांद, tarã, _raek,\n  { {0x7e7d0365, 0xdb1c0129, 0x2a60006c, 0x00000000}},  //   llsp, barà, anib_,\n  { {0xd6db0265, 0x7bc704cb, 0xd6d000a1, 0x00000000}},  //   ята_, maju, یقے_,\n  { {0xdb053db4, 0x60c900ea, 0x7bc701a3, 0x00000000}},  //   _behö, ysem, laju,\n  { {0xdb1c1f18, 0xdb1e009d, 0x64430051, 0x00000000}},  //   mará, _repé, thni,\n  { {0xdb1c000c, 0x7bc70020, 0x44e93db5, 0x00000000}},  //   lará, naju, rú_,\n  { {0x68ed0f19, 0x44e93db6, 0xf1b90059, 0x00000000}},  //   ltad, sú_, ljši_,\n  { {0x60c908b2, 0xb8030055, 0xdb1c1ad4, 0x00000000}},  //   tsem, _উচিত_, nará,\n  { {0x68ed3db7, 0xe66401be, 0x39490211, 0x00000000}},  //   ntad, _стро, nzas_,\n  { {0x7e7603c9, 0x68ed1ce5, 0x60c90127, 0x00000000}},  //   _skyp, itad, rsem,\n  { {0x60c9028c, 0x7bc70091, 0x68ed1e85, 0x00000000}},  //   ssem, daju, htad,\n  { {0xed5a013b, 0x68ed011f, 0x2fc50030, 0x00000000}},  //   дом_, ktad, salg_,\n  { {0xdb1c0051, 0x321d01c3, 0xc69208cd, 0x00000000}},  //   dará, _inwy_, יאט_,\n  { {0x320d0061, 0x09ca001c, 0xd011025a, 0x00000000}},  //   ldey_, िण्य, _ضلع_,\n  { {0xbad5008b, 0x20560049, 0x629c009d, 0x00000000}},  //   літы, _ביסל_, _érot,\n  { {0x3b0701f9, 0xf2d201ce, 0x68ed3db8, 0x00000000}},  //   њето_, יעל_, ftad,\n  { {0x64410052, 0x65690065, 0xdb0e00d6, 0x00000000}},  // [e9c0] _olli, _nxeh, tabó,\n  { {0x7a382c39, 0x7bc704eb, 0x00000000, 0x00000000}},  //   _míti, caju,   ,\n  { {0x7a38009f, 0xdb1c3db9, 0x290f0039, 0x00000000}},  //   _líti, bará, ågar_,\n  { {0x75d30054, 0xe9a6026b, 0x9473089d, 0x00000000}},  //   ليما, _шамп, یدوا,\n  { {0x68ed3dba, 0x200c018e, 0xd4e30057, 0x00000000}},  //   ctad, yddi_, ающи,\n  { {0x07a603f3, 0x00000000, 0x00000000, 0x00000000}},  //   _јавн,   ,   ,\n  { {0x683208c8, 0x00000000, 0x00000000, 0x00000000}},  //   _fædr,   ,   ,\n  { {0x2281000c, 0x64413dbb, 0x00000000, 0x00000000}},  //   sókn_, _elli,   ,\n  { {0x64a6008b, 0x7bc700e7, 0x7a3804bb, 0x00000000}},  //   _раза, yaju, _cíti,\n  { {0xdb1c008e, 0xd575007e, 0x9f450026, 0x00000000}},  //   zará, _сусь, velò_,\n  { {0x2bdc02fb, 0x4815007b, 0x7bc70091, 0x00000000}},  //   _बाजा, אַרן_, vaju,\n  { {0x200a01ae, 0x7d160030, 0xf773009b, 0x00000000}},  //   žbi_, _brys, יקת_,\n  { {0x7bc7037e, 0x7d1600ab, 0xdb1c04e7, 0x00000000}},  //   taju, _crys, vará,\n  { {0x645809a3, 0x7d160016, 0xd00f0025, 0x00000000}},  //   nivi, _drys, _ولن_,\n  { {0x7bc73dbc, 0xdb1c1d59, 0x79a700ed, 0x00000000}},  //   raju, tará, врзе,\n  { {0xcbe30055, 0x68ed129e, 0x7bc7001a, 0x00000000}},  //   য়েছ, ttad, saju,\n  { {0xdb1c0f26, 0x6458003c, 0x7d160007, 0x00000000}},  // [e9d0] rará, kivi, _grys,\n  { {0x6e3d0007, 0x64580ecc, 0x39490211, 0x00000000}},  //   lksb, jivi, rzas_,\n  { {0xdb1c0161, 0x3dd20016, 0x657b3dbd, 0x00000000}},  //   pará, _ydyw_, _syuh,\n  { {0xb9090055, 0x68ed0325, 0xe7ff03d7, 0x00000000}},  //   _মন_, ptad, _उसका_,\n  { {0xd1260774, 0x89da019b, 0x58d40265, 0x00000000}},  //   _ام_, _אחרי, _коят,\n  { {0x64580052, 0x7bc50023, 0x00000000, 0x00000000}},  //   givi, _jehu,   ,\n  { {0x7a380181, 0x7bc51d9c, 0xdb0700ea, 0x00000000}},  //   _síti, _mehu, gbjø,\n  { {0x96f80893, 0x65950121, 0xad9b00c4, 0x00000000}},  //   _шест_, _бабу, ndús,\n  { {0xe4d900a1, 0x6458006c, 0xd0590088, 0x00000000}},  //   _سوات_, bivi, ерні_,\n  { {0x64580e77, 0x7a383451, 0x7bc5041a, 0x00000000}},  //   civi, _víti, _nehu,\n  { {0x8eb20014, 0x00000000, 0x00000000, 0x00000000}},  //   یمیش,   ,   ,\n  { {0x7d163dbe, 0x76590696, 0x00000000, 0x00000000}},  //   _prys, niwy,   ,\n  { {0x7bc50250, 0x463a0049, 0x81e90044, 0x00000000}},  //   _behu, גערע, য়দ_,\n  { {0xd0060113, 0x7d160007, 0x3b0a007c, 0x00000000}},  //   _беше_, _vrys, него_,\n  { {0xdea100a6, 0x7bc50023, 0xbb43030d, 0x00000000}},  //   _دیجی, _dehu, берк,\n  { {0x7d163dbf, 0x64580091, 0x9f5e0023, 0x00000000}},  //   _trys, zivi, zetë_,\n  { {0x76590016, 0x7aee0009, 0x3e79000c, 0x00000000}},  // [e9e0] diwy, stbt, rétt_,\n  { {0x7bc500c7, 0x6458006b, 0x9cbb00a3, 0x00000000}},  //   _gehu, xivi, _רציח,\n  { {0x64580211, 0x60db194f, 0x44220011, 0x00000000}},  //   vivi, hrum, _đk_,\n  { {0x64a6132a, 0x44220010, 0x60db007f, 0x00000000}},  //   гада, _ők_, krum,\n  { {0x6458081d, 0x81e908b7, 0xe5e700a1, 0x00000000}},  //   tivi, য়া_, ازمی,\n  { {0x07a30088, 0x83f800e3, 0x69c63dc0, 0x00000000}},  //   _гарн, текс_, _heke,\n  { {0x69c604cb, 0x81b50044, 0x60db010e, 0x00000000}},  //   _keke, _জয়_, erum,\n  { {0x60f8005e, 0x60db3116, 0xdb07068f, 0x00000000}},  //   вния_, frum, rbjø,\n  { {0xc5660269, 0x64582426, 0x69c618e6, 0x00000000}},  //   _скак, pivi, _meke,\n  { {0x9f5e3dc1, 0x00000000, 0x00000000, 0x00000000}},  //   leté_,   ,   ,\n  { {0x04930025, 0xb7db0049, 0x7bc53dc2, 0x00000000}},  //   _اللح, עקטי, _rehu,\n  { {0x69c60047, 0xde59007e, 0x60db00ea, 0x00000000}},  //   _neke, тамі_, brum,\n  { {0xd24f0054, 0x60db0061, 0x6e3d0c7a, 0x00000000}},  //   _عنه_, crum, rksb,\n  { {0x9f5e023f, 0x69c60288, 0x765900b4, 0x00000000}},  //   heté_, _aeke, ziwy,\n  { {0xab95012b, 0x7a38000c, 0xa3e701f5, 0x00000000}},  //   рављ, _lítu, _भास_,\n  { {0x200e009f, 0x78a6037e, 0x69c60095, 0x00000000}},  //   _hafi_, _bukv, _ceke,\n  { {0x69c61ad9, 0x2bcb003b, 0x200e3046, 0x00000000}},  // [e9f0] _deke, _пуно_, _kafi_,\n  { {0xee3f01dc, 0x2bc60061, 0x60c200e7, 0x00000000}},  //   lký_, वरणा, _mwom,\n  { {0x69c60010, 0x200e0173, 0xdb0f00b0, 0x00000000}},  //   _feke, _mafi_, öjär,\n  { {0x69c60b72, 0x79820036, 0x00000000, 0x00000000}},  //   _geke, żowa,   ,\n  { {0xa50904b6, 0x76590016, 0x00000000, 0x00000000}},  //   тела_, riwy,   ,\n  { {0x69c602ae, 0x7659005b, 0x32d500ed, 0x00000000}},  //   _zeke, siwy, ацис,\n  { {0x249e000a, 0x00000000, 0x00000000, 0x00000000}},  //   _ditm_,   ,   ,\n  { {0xa3e70201, 0xd5f9007b, 0x2919012d, 0x00000000}},  //   _भाव_, _שפּר, _krsa_,\n  { {0x681b0089, 0xd24e0025, 0xe8df0082, 0x00000000}},  //   _tādē, بني_, _diệc_,\n  { {0x29190271, 0x60db008e, 0x628000d9, 0x00000000}},  //   _mrsa_, rrum, almo,\n  { {0x9e66041f, 0x3f690517, 0x0e660364, 0x00000000}},  //   ивод, тино_, икон,\n  { {0x60db3dc3, 0x290b00d4, 0x29193dc4, 0x00000000}},  //   prum, _osca_, _orsa_,\n  { {0x69c6049b, 0x60c20173, 0x32ee013f, 0x00000000}},  //   _reke, _gwom, _rəyi_,\n  { {0x69c63dc5, 0xafe2012b, 0x200e00f6, 0x00000000}},  //   _seke, _дошл, _gafi_,\n  { {0x69c6020c, 0x29193dc6, 0x290b0026, 0x00000000}},  //   _peke, _arsa_, _asca_,\n  { {0xee3f0428, 0xb33c002b, 0x2fc700ea, 0x00000000}},  //   cký_, _jgħa, _heng_,\n  { {0x47c60256, 0x69c60056, 0xb33c002b, 0x00000000}},  // [ea00] ибав, _veke, _mgħa,\n  { {0x3ea702ae, 0x69c602ae, 0x9f473dc7, 0x00000000}},  //   _kunt_, _weke, _acné_,\n  { {0x69c60dde, 0x2fc704d4, 0xf719007e, 0x00000000}},  //   _teke, _meng_, ліцы_,\n  { {0x320f0047, 0x3ea70129, 0xeef60049, 0x00000000}},  //   _nagy_, _munt_, ימער_,\n  { {0x9f5e009d, 0x3ea72555, 0x66021382, 0x00000000}},  //   reté_, _lunt_, reok,\n  { {0x2baf02fb, 0x3ea034b4, 0xb6c800a1, 0x00000000}},  //   _ज्ञा, _liit_, _مارے_,\n  { {0x68e4178a, 0xb33c0066, 0x9f5e0026, 0x00000000}},  //   luid, _bgħa, peté_,\n  { {0x7a381cca, 0x60c20263, 0x200e0020, 0x00000000}},  //   _títu, _pwom, _safi_,\n  { {0xe8df00ad, 0x68e40b33, 0x2d800020, 0x00000000}},  //   _việc_, nuid, _nyie_,\n  { {0x7afe0056, 0x249e01a3, 0x3ea701a2, 0x00000000}},  //   _oppt, _uitm_, _bunt_,\n  { {0xe8df0011, 0x2fc7005b, 0x2d800145, 0x00000000}},  //   _tiệc_, _deng_, _ayie_,\n  { {0x68e40e2f, 0x60c23dc8, 0xd6d80044, 0x00000000}},  //   kuid, _twom, _সহায,\n  { {0x2fc73dc9, 0x7afe016b, 0x00000000, 0x00000000}},  //   _feng_, _appt,   ,\n  { {0xee3f004f, 0xe0fb009b, 0x68e401b5, 0x00000000}},  //   ský_, _סלול, duid,\n  { {0x2246046a, 0x81e90044, 0x3ea700d9, 0x00000000}},  //   _klok_, য়র_, _gunt_,\n  { {0x9f9b009b, 0x3ea000e0, 0x291932e0, 0x00000000}},  //   _בסופ, _giit_, _prsa_,\n  { {0x2fc70085, 0x00000000, 0x00000000, 0x00000000}},  // [ea10] _yeng_,   ,   ,\n  { {0x7d0d011c, 0x00000000, 0x00000000, 0x00000000}},  //   _isas,   ,   ,\n  { {0x81de0044, 0x78ba013e, 0x2246033b, 0x00000000}},  //   দ্য_, _čtve, _olok_,\n  { {0x32040046, 0x68e40489, 0x291900d0, 0x00000000}},  //   jemy_, buid, _trsa_,\n  { {0x320400ab, 0x38c90167, 0x888200a1, 0x00000000}},  //   demy_, _حاجی_, _کیلن,\n  { {0x644a0697, 0x2246011c, 0xdb1e0b33, 0x00000000}},  //   ghfi, _alok_, _hepá,\n  { {0x224604cb, 0x683300b9, 0xdb15004a, 0x00000000}},  //   _blok_, _výdě, mazó,\n  { {0x3ea70073, 0x7d0d0234, 0x2fc70030, 0x00000000}},  //   _runt_, _osas, _seng_,\n  { {0x320f1bc0, 0x3ea71305, 0x2fc70b97, 0x00000000}},  //   _vagy_, _sunt_, _peng_,\n  { {0x3ea704bd, 0x3ea00004, 0x644a01a2, 0x00000000}},  //   _punt_, _siit_, chfi,\n  { {0xa3ac00e8, 0xb33c002b, 0x22460646, 0x00000000}},  //   _गलत_, _tgħa, _flok_,\n  { {0x7bd7027b, 0x29090020, 0x2fc70145, 0x00000000}},  //   _adxu, kwaa_, _weng_,\n  { {0x30a70c96, 0x2fc70058, 0xdb1c3a04, 0x00000000}},  //   _трев, _teng_, mbré,\n  { {0x61e93dca, 0x3dd801d5, 0x81ae0044, 0x00000000}},  //   lgel, _żewġ_, করণ_,\n  { {0x2005014a, 0x61e90016, 0x7d0d3dcb, 0x00000000}},  //   meli_, ogel, _esas,\n  { {0x20050229, 0x68e400dc, 0x2ca90a89, 0x00000000}},  //   leli_, tuid, _fuad_,\n  { {0x6e240851, 0x00000000, 0x00000000, 0x00000000}},  // [ea20] _inib,   ,   ,\n  { {0xdb151906, 0x2005014a, 0x68e4008e, 0x00000000}},  //   gazó, neli_, ruid,\n  { {0x1779008b, 0x7afe03ed, 0x7bce0a42, 0x00000000}},  //   асць_, _uppt, mabu,\n  { {0x80d803d7, 0x7bce0127, 0x20050016, 0x00000000}},  //   _मिले, labu, heli_,\n  { {0x644a0051, 0x61e90116, 0x2005014a, 0x00000000}},  //   thfi, dgel, keli_,\n  { {0x20050209, 0x3e7201ca, 0x7bce011c, 0x00000000}},  //   jeli_, ráty_, nabu,\n  { {0x61e92e94, 0x6e24268c, 0x386f0010, 0x00000000}},  //   fgel, _onib, égre_,\n  { {0x61e937b0, 0x7bce1af8, 0x7a3800b9, 0x00000000}},  //   ggel, habu, _zítr,\n  { {0x7bce0b9a, 0x80d80061, 0x200515dc, 0x00000000}},  //   kabu, _मिळे, feli_,\n  { {0x20053dcc, 0x6e240058, 0x00000000, 0x00000000}},  //   geli_, _anib,   ,\n  { {0x43863dcd, 0x645a006b, 0x64483dce, 0x00000000}},  //   _الاق, _imti, _ildi,\n  { {0x3f820089, 0x479b01ce, 0x00000000, 0x00000000}},  //   āku_, טייס,   ,\n  { {0x91e30e09, 0x2ca900f4, 0x9f5e004a, 0x00000000}},  //   _хоче, _quad_, metí_,\n  { {0x9f5e3dcf, 0x20050142, 0x7bce04cb, 0x00000000}},  //   letí_, celi_, gabu,\n  { {0x9f4c06c2, 0xa3d0007d, 0x7ff7009b, 0x00000000}},  //   redó_, _वजन_, _הזוג_,\n  { {0x2aa8007c, 0x7f830025, 0x29090d16, 0x00000000}},  //   стро_, _علين, twaa_,\n  { {0x38350175, 0x7d0d05e0, 0x7bce1844, 0x00000000}},  // [ea30] онар, _usas, babu,\n  { {0x81ae0044, 0xb33c0066, 0x00000000, 0x00000000}},  //   করি_, _ngħo,   ,\n  { {0xdb153dd0, 0xdc380049, 0x61e91ec2, 0x00000000}},  //   razó, _לאזט_, ygel,\n  { {0x6448022b, 0xceb30049, 0x9f5e00b9, 0x00000000}},  //   _aldi, ליע_, jetí_,\n  { {0xf8b100a1, 0x81ae0044, 0x2005014a, 0x00000000}},  //   _آکر_, করা_, yeli_,\n  { {0x98790049, 0x42d90242, 0x20052034, 0x00000000}},  //   _כאָט, афия_, xeli_,\n  { {0x61e903cd, 0x20050091, 0xa229213f, 0x00000000}},  //   tgel, veli_, ижка_,\n  { {0xe0d90200, 0x2005000b, 0x64481402, 0x00000000}},  //   ави_, weli_, _eldi,\n  { {0x61e93dd1, 0xa3e70061, 0x2ee50253, 0x00000000}},  //   rgel, _भाऊ_, wulf_,\n  { {0xd766026c, 0x61e90125, 0x81e90044, 0x00000000}},  //   _انہی, sgel, য়ই_,\n  { {0x81de0055, 0x64430036, 0x2005014a, 0x00000000}},  //   দ্ধ_, mkni, reli_,\n  { {0x64430b16, 0x4425016e, 0x7ae70161, 0x00000000}},  //   lkni, _hnl_, dujt,\n  { {0x200500b0, 0x7bce0145, 0x7c370203, 0x00000000}},  //   peli_, tabu, _boxr,\n  { {0x644301bf, 0xb33c002b, 0x76493118, 0x00000000}},  //   nkni, _ogħl, _lley,\n  { {0xa3e702fb, 0xeb9a0088, 0x64433dd2, 0x00000000}},  //   _भाई_, рив_, ikni,\n  { {0x6e24022b, 0x7bce1794, 0x225f3dd3, 0x00000000}},  //   _unib, sabu, niuk_,\n  { {0x7bce011c, 0xb33c002b, 0x44250082, 0x00000000}},  // [ea40] pabu, _agħl, _onl_,\n  { {0x7649005d, 0x673e0023, 0x765b0058, 0x00000000}},  //   _aley, typj, _amuy,\n  { {0xdb050011, 0xab2a142c, 0x76493dd4, 0x00000000}},  //   _nghè, _тона_, _bley,\n  { {0x5efa007b, 0xd5b006dd, 0x4425002d, 0x00000000}},  //   יפעד, رفت_, _anl_,\n  { {0x2c0f0061, 0x44252de5, 0xb33c01f3, 0x00000000}},  //   ायचं_, _bnl_, _egħl,\n  { {0x442500f6, 0xd3720014, 0x68f601d6, 0x00000000}},  //   _cnl_, وهش_, mtyd,\n  { {0x68f60007, 0x76493dd4, 0xdc9b0049, 0x00000000}},  //   ltyd, _fley, ביסל,\n  { {0x7649009f, 0x224d002b, 0x442500f8, 0x00000000}},  //   _gley, ghek_, _enl_,\n  { {0x2bbf001c, 0x661d000c, 0x321800b9, 0x00000000}},  //   ्रमा, _óska, ěry_,\n  { {0x64430039, 0xdced005d, 0x64480089, 0x00000000}},  //   ckni, _ayağ, _uldi,\n  { {0xc7b3019b, 0x3eb80065, 0x62470288, 0x00000000}},  //   ובת_, ërt_, _iñon,\n  { {0x4126026c, 0x13cf0044, 0x68f60c6b, 0x00000000}},  //   _وفاق, _রায়, ktyd,\n  { {0xa06a012b, 0x225700a6, 0x00000000, 0x00000000}},  //   _када_, _بلند_,   ,\n  { {0x7ae71238, 0x2d850089, 0x7c37002b, 0x00000000}},  //   tujt, āle_, _qoxr,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7ae70161, 0x42db0049, 0x7e6d00e7, 0x00000000}},  //   rujt, יקלע, _ujap,\n  { {0x37ab026b, 0x64433dd5, 0x7e7d08d0, 0x00000000}},  // [ea50] атен_, ykni, mosp,\n  { {0x7e7d1cd8, 0x7ae704bb, 0xb33c002b, 0x00000000}},  //   losp, pujt, _agħm,\n  { {0x76492f1f, 0x00000000, 0x00000000, 0x00000000}},  //   _pley,   ,   ,\n  { {0x44253dd6, 0x7e7d009d, 0x4efb0049, 0x00000000}},  //   _snl_, nosp, שלאג,\n  { {0x4425001a, 0xe53403e8, 0xc984142c, 0x00000000}},  //   _pnl_, мець, _жури,\n  { {0x7e7d0142, 0xb33c01f3, 0x3a390253, 0x00000000}},  //   hosp, _egħm, _hosp_,\n  { {0x64430193, 0x9f5e002b, 0x224d01a2, 0x00000000}},  //   rkni, jetà_, thek_,\n  { {0x765b0c2b, 0x64433dd7, 0x00c9005e, 0x00000000}},  //   _umuy, skni, блик_,\n  { {0xf487003b, 0x7e7d3dd8, 0x00000000, 0x00000000}},  //   _дужн, dosp,   ,\n  { {0x8f750088, 0x224d2828, 0x9f5c00f6, 0x00000000}},  //   зумі, shek_, _navó_,\n  { {0x7e7d008e, 0x2019013e, 0x00000000, 0x00000000}},  //   fosp, ěsi_,   ,\n  { {0x3ea40039, 0x7e7d00b4, 0x12fa009b, 0x00000000}},  //   ömt_, gosp, _להעב,\n  { {0xe1670025, 0x68f60009, 0x61fb1473, 0x00000000}},  //   _بداي, xtyd, mful,\n  { {0xd4790049, 0x61fb08e0, 0x9f5e00f6, 0x00000000}},  //   מאָל, lful, betà_,\n  { {0xd00e06ea, 0x8b2302ea, 0x00000000, 0x00000000}},  //   _إلى_, ндре,   ,\n  { {0x81e90044, 0x9f960097, 0x29020022, 0x00000000}},  //   য়ক_, _צדקה_, _ppka_,\n  { {0xdb1c004a, 0x61fb0022, 0x00000000, 0x00000000}},  // [ea60] mbrí, iful,   ,\n  { {0xa3e702f4, 0x68f601c3, 0x9f5e0861, 0x00000000}},  //   _भाग_, rtyd, letá_,\n  { {0x394608ad, 0x68f60007, 0xd7ef0025, 0x00000000}},  //   šos_, styd, اكم_,\n  { {0x986600a1, 0x3a3904eb, 0xbddb00f6, 0x00000000}},  //   _کیئے_, _gosp_, lhèr,\n  { {0x69c42318, 0xdb1c002a, 0x1a9b007b, 0x00000000}},  //   mbie, ibrí, _ליטע,\n  { {0x69c4002b, 0xf8bf000c, 0x68e40b28, 0x00000000}},  //   lbie, _bréf_, mrid,\n  { {0x68e407c4, 0xd25a005e, 0x00000000, 0x00000000}},  //   lrid, йци_,   ,\n  { {0x69c402ae, 0x68e4029d, 0x07a3003b, 0x00000000}},  //   nbie, orid, _часн,\n  { {0x62470288, 0x00000000, 0x00000000, 0x00000000}},  //   _iñol,   ,   ,\n  { {0x9989089f, 0x645d0006, 0xb603002b, 0x00000000}},  //   njaš_, _įsig, ġġer,\n  { {0x7e7d25fa, 0x68e40051, 0x6d4006ec, 0x00000000}},  //   tosp, hrid, øman,\n  { {0x648d002a, 0x68e4004e, 0x69c403b2, 0x00000000}},  //   núin, krid, jbie,\n  { {0x7e7d0161, 0xed58007e, 0x69c410d9, 0x00000000}},  //   rosp, зоў_, dbie,\n  { {0x2ca53dd9, 0x2bbf0204, 0x7e7d0197, 0x00000000}},  //   öld_, ्रधा, sosp,\n  { {0x68e4006c, 0x3ffb009b, 0xd5cc01f5, 0x00000000}},  //   erid, _הפוע, ाराज,\n  { {0x81de0055, 0x68e438ea, 0xaa580407, 0x00000000}},  //   দ্র_, frid, пису_,\n  { {0x26d8006b, 0xdbd700b0, 0xed58003b, 0x00000000}},  // [ea70] _avro_, tääk, _ноћ_,\n  { {0x37ab00ed, 0xbddb00f4, 0x69c4004a, 0x00000000}},  //   стан_, chèr, abie,\n  { {0x69c40337, 0x442b001d, 0x68e4006c, 0x00000000}},  //   bbie, _đc_, arid,\n  { {0xd24601fa, 0x00000000, 0x00000000, 0x00000000}},  //   _شن_,   ,   ,\n  { {0x69cf0089, 0x69dd0022, 0x26d800ca, 0x00000000}},  //   _iece, _idse, _evro_,\n  { {0x057402fd, 0x62820058, 0x69cf2aaa, 0x00000000}},  //   راند, _akoo, _hece,\n  { {0x61fb0186, 0x69cf020c, 0x645d0006, 0x00000000}},  //   tful, _kece, _įsid,\n  { {0x2fce000a, 0x26c1009d, 0x244b00ea, 0x00000000}},  //   _aefg_, mpho_, _døma_,\n  { {0x61fb000c, 0xd3a700e2, 0x26c100fa, 0x00000000}},  //   rful, _ереп, lpho_,\n  { {0x69cf01ee, 0x09aa0309, 0x69c405fd, 0x00000000}},  //   _lece, _कल्य, zbie,\n  { {0x69dd0142, 0x2d8c0036, 0x69c41d16, 0x00000000}},  //   _odse, ędem_, ybie,\n  { {0x68e40142, 0x3eae3dda, 0x78a700d9, 0x00000000}},  //   yrid, _duft_, _lijv,\n  { {0x205501be, 0xcc2600a1, 0xd1b800a1, 0x00000000}},  //   _откр, ورسٹ, _رانا_,\n  { {0x7d040059, 0x68e40a9d, 0x62890051, 0x00000000}},  //   _vpis, vrid, lleo,\n  { {0xdca30057, 0x7d040046, 0xddcb037e, 0x00000000}},  //   тари, _wpis, žišn,\n  { {0x7ae10047, 0x68e400ea, 0x69dd0009, 0x00000000}},  //   álta, trid, _cdse,\n  { {0x69c41275, 0x78a702ae, 0x7d040091, 0x00000000}},  // [ea80] rbie, _bijv, _upis,\n  { {0xb8f602fb, 0x69c42430, 0x69dd3ddb, 0x00000000}},  //   _सब_, sbie, _edse,\n  { {0x69cf0197, 0x62891293, 0x68e40146, 0x00000000}},  //   _fece, kleo, srid,\n  { {0xa3d003d7, 0x69cf014a, 0x68e40253, 0x00000000}},  //   _वजह_, _gece, prid,\n  { {0xb33c0066, 0xe5a30478, 0x00000000, 0x00000000}},  //   _igħi, вици,   ,\n  { {0x62820343, 0x69cf0587, 0xdb0706a1, 0x00000000}},  //   _skoo, _zece, rbjö,\n  { {0x6289018e, 0xdb050011, 0xdb1c3ddc, 0x00000000}},  //   fleo, _nghì, maró,\n  { {0xc1140098, 0xb33c01d5, 0x37e30055, 0x00000000}},  //   емиј, _jgħi, ন্দর,\n  { {0x958305a5, 0x7bde0465, 0x12770025, 0x00000000}},  //   _алте, _odpu, بحوث_,\n  { {0xdb1c0051, 0x00000000, 0x00000000, 0x00000000}},  //   naró,   ,   ,\n  { {0x60cd002b, 0x6148000c, 0x62890d28, 0x00000000}},  //   _ħame, félö, bleo,\n  { {0xbddb00f4, 0xb33c002b, 0x628900ab, 0x00000000}},  //   thèq, _ngħi, cleo,\n  { {0xdc3a01f6, 0x628000ca, 0x00000000, 0x00000000}},  //   _açıl, momo,   ,\n  { {0x628001aa, 0xddcd10b1, 0x7d1d0030, 0x00000000}},  //   lomo, _ukaž, rvss,\n  { {0x69cf029a, 0x200c1ec0, 0x78a700bb, 0x00000000}},  //   _pece, medi_, _rijv,\n  { {0x200c3ddd, 0xdb120051, 0x1da701f5, 0x00000000}},  //   ledi_, ógái, _गणपत,\n  { {0x69cf0219, 0xb33c01f3, 0x00000000, 0x00000000}},  // [ea90] _vece, _dgħi,   ,\n  { {0x628000b9, 0x200c378b, 0x9cd80104, 0x00000000}},  //   homo, nedi_, _חוזה_,\n  { {0x62803dde, 0x3ea904be, 0x69cf065a, 0x00000000}},  //   komo, _kiat_, _tece,\n  { {0xb93501f9, 0xd0170044, 0x69dd0030, 0x00000000}},  //   _земј, ়ায়_, _udse,\n  { {0x62800046, 0x200c1bac, 0x2ab50190, 0x00000000}},  //   domo, kedi_, _håb_,\n  { {0x200c0209, 0xdb1e029d, 0x3ea90169, 0x00000000}},  //   jedi_, _repú, _liat_,\n  { {0xe784012b, 0x27f806b8, 0x68ed3ddf, 0x00000000}},  //   _ауто, žený_, luad,\n  { {0x62800006, 0x3ea9003f, 0xdb050082, 0x00000000}},  //   gomo, _niat_, _nghí,\n  { {0x68ed1b0f, 0x7bd50213, 0x9f5e021e, 0x00000000}},  //   nuad, kazu, hetä_,\n  { {0x6289002d, 0x200c2c13, 0x629b2d72, 0x00000000}},  //   sleo, gedi_, smuo,\n  { {0x62890211, 0x62803de0, 0x7bd50032, 0x00000000}},  //   pleo, bomo, dazu,\n  { {0xf7720097, 0x531a009b, 0x76590279, 0x00000000}},  //   רקט_, _מועצ, _çayı,\n  { {0x61d600b6, 0x200c003b, 0x3ea90032, 0x00000000}},  //   _נוסף_, bedi_, _diat_,\n  { {0x200c0207, 0x68ed0285, 0x7bd5144c, 0x00000000}},  //   cedi_, duad, gazu,\n  { {0xf8bf02d5, 0x3ea90207, 0xa3c203d7, 0x00000000}},  //   _até_, _fiat_, ूरत_,\n  { {0xc332019b, 0xf2d20049, 0x3ea93de1, 0x00000000}},  //   נון_, טעל_, _giat_,\n  { {0x68ed008e, 0x7bd53de2, 0x4c8601fc, 0x00000000}},  // [eaa0] guad, bazu, _плив,\n  { {0x7e66023a, 0x7d57009b, 0x25ad2d51, 0x00000000}},  //   likp, _נייד_, _agel_,\n  { {0x6d460006, 0xb33c01d5, 0xd7760025, 0x00000000}},  //   lyka, _tgħi, رائع,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x68ed0211, 0x7c3e02db, 0x628004c8, 0x00000000}},  //   cuad, _kopr, vomo,\n  { {0x28b5007d, 0x69d600ab, 0x7c3e0089, 0x00000000}},  //   _अंति, laye, _jopr,\n  { {0x200c0627, 0x6fd6006e, 0x1bee0061, 0x00000000}},  //   vedi_, _मजबू, _जाईल_,\n  { {0xd25701e1, 0x69d63de3, 0x7c3e3de4, 0x00000000}},  //   ець_, naye, _lopr,\n  { {0x50661deb, 0x998001d5, 0x3ea90022, 0x00000000}},  //   етна, jjiż_, _riat_,\n  { {0x7c3e200a, 0x628000e7, 0x289b0049, 0x00000000}},  //   _nopr, somo, ּיטא,\n  { {0x442c0018, 0x200c028c, 0x69d63de5, 0x00000000}},  //   _ind_, redi_, kaye,\n  { {0x443e001d, 0x200c258f, 0x442c00e0, 0x00000000}},  //   _hot_, sedi_, _hnd_,\n  { {0x443e17fd, 0x5c070265, 0x7bd50173, 0x00000000}},  //   _kot_, нява, tazu,\n  { {0x3157007b, 0x7c3e1017, 0x7ae10010, 0x00000000}},  //   _אידן_, _copr, álto,\n  { {0x443e05ad, 0xc4c4009c, 0x7c3e004f, 0x00000000}},  //   _mot_, _گے_, _dopr,\n  { {0x443e1743, 0x68ed0325, 0x38b63de6, 0x00000000}},  //   _lot_, tuad, _bær_,\n  { {0x442c0bc4, 0xc4c4026c, 0x6e2d036b, 0x00000000}},  // [eab0] _ond_, _دے_, _inab,\n  { {0x443e0a8a, 0x2bee013d, 0x00000000, 0x00000000}},  //   _not_, _जाएं_,   ,\n  { {0x69d6006b, 0xbbbf006e, 0xe8020061, 0x00000000}},  //   baye, ्रीक, _रउरा_,\n  { {0x442c2735, 0x38b6000c, 0x443e0203, 0x00000000}},  //   _and_, _fær_, _aot_,\n  { {0x38b6009f, 0x68ed3de7, 0xcc3400a6, 0x00000000}},  //   _gær_, quad, _شریع,\n  { {0x443e1a50, 0xdddd0036, 0x442c00fa, 0x00000000}},  //   _cot_, nisł, _cnd_,\n  { {0x6d460036, 0x6e2d00fa, 0x00000000, 0x00000000}},  //   zyka, _onab,   ,\n  { {0x442c0b65, 0xd36e0025, 0x6e2d0009, 0x00000000}},  //   _end_, تهى_, _nnab,\n  { {0x03f9012b, 0x442c0009, 0x443e3de8, 0x00000000}},  //   _онај_, _fnd_, _fot_,\n  { {0x6e2d018e, 0x661b250b, 0x443e0038, 0x00000000}},  //   _anab, _hauk, _got_,\n  { {0xc7b200b3, 0x661b2e23, 0xdb1c000c, 0x00000000}},  //   יבי_, _kauk, jarð,\n  { {0x7c3e0198, 0x2f540e09, 0x661b0dec, 0x00000000}},  //   _sopr, утьс, _jauk,\n  { {0x7c3e1191, 0xb33c01f3, 0x6e2d0022, 0x00000000}},  //   _popr, _dgħu, _dnab,\n  { {0x661b0ebc, 0x6e2d00ab, 0x2d8c0089, 0x00000000}},  //   _lauk, _enab, āde_,\n  { {0x69d60173, 0xdb1c000c, 0x60db007f, 0x00000000}},  //   taye, garð, lsum,\n  { {0x661b0046, 0xbb431663, 0x44fb00c4, 0x00000000}},  //   _nauk, шеск, kê_,\n  { {0x69d6006b, 0x7c3e014a, 0xa967003b, 0x00000000}},  // [eac0] raye, _topr, вита_,\n  { {0x0b460256, 0x69d600f4, 0x38b601e3, 0x00000000}},  //   _анон, saye, _vær_,\n  { {0x443e010f, 0x442c04e2, 0x661b01a2, 0x00000000}},  //   _rot_, _rnd_, _bauk,\n  { {0x443e2d3f, 0x60db01c2, 0x442c1238, 0x00000000}},  //   _sot_, ksum, _snd_,\n  { {0x661b022b, 0x443e1954, 0x00000000, 0x00000000}},  //   _dauk, _pot_,   ,\n  { {0x8d5b009b, 0x442c08eb, 0x60db0036, 0x00000000}},  //   וכני, _qnd_, dsum,\n  { {0x443e1825, 0x442c0011, 0xdbcd000c, 0x00000000}},  //   _vot_, _vnd_, _móðu,\n  { {0x661b0542, 0x52140679, 0x2a7201c3, 0x00000000}},  //   _gauk, удит, nnyb_,\n  { {0xd0100054, 0xb5050151, 0x6fd6006e, 0x00000000}},  //   ملة_, _مظلو, _मजदू,\n  { {0x442c08ba, 0x6e2d0073, 0x7054004b, 0x00000000}},  //   _und_, _snab, اندا,\n  { {0x1df900a5, 0x7640011c, 0xd3450014, 0x00000000}},  //   нены_, _komy, _میوه_,\n  { {0xe802062e, 0xdb1c000c, 0xdd0e006e, 0x00000000}},  //   र्ता_, varð, िबंध_,\n  { {0xb88400b9, 0x3f820036, 0x60db01ee, 0x00000000}},  //   _zvíř, łku_, csum,\n  { {0x60cd014a, 0x60c20288, 0xfc6702dc, 0x00000000}},  //   _çama, _itom, тъмн,\n  { {0x7e640093, 0x6e3f0066, 0x00000000, 0x00000000}},  //   _fmip, _toqb,   ,\n  { {0x6e2d3de9, 0xba740025, 0x201c0010, 0x00000000}},  //   _unab, لاقت, _havi_,\n  { {0x661b0205, 0x201c00ca, 0x661d000c, 0x00000000}},  // [ead0] _rauk, _kavi_, _óski,\n  { {0xdbcd000c, 0x201c097c, 0x44fb0181, 0x00000000}},  //   _góðu, _javi_, vê_,\n  { {0x661b0006, 0x201c005a, 0x97a71deb, 0x00000000}},  //   _pauk, _mavi_, трал,\n  { {0x60c205fb, 0x201c0263, 0x44fb00c4, 0x00000000}},  //   _otom, _lavi_, tê_,\n  { {0x76400036, 0x60c20146, 0x752201ed, 0x00000000}},  //   _domy, _ntom, gvoz,\n  { {0x61e21e1e, 0x291901d5, 0x201c0d46, 0x00000000}},  //   _adol, _issa_, _navi_,\n  { {0x394907b1, 0x661b11e8, 0x32060082, 0x00000000}},  //   lyas_, _tauk, _bboy_,\n  { {0x60db03b6, 0x7640000a, 0x44fb00fa, 0x00000000}},  //   tsum, _gomy, pê_,\n  { {0x201c037e, 0x0085007c, 0x39490b5a, 0x00000000}},  //   _bavi_, ллио, nyas_,\n  { {0xf48401e0, 0x049505d4, 0x201c0197, 0x00000000}},  //   _кухн, _صلاح, _cavi_,\n  { {0x60db002b, 0x201c00c4, 0x2efe0009, 0x00000000}},  //   ssum, _davi_, gttf_,\n  { {0x64410388, 0x29190026, 0x39492dd5, 0x00000000}},  //   _holi, _ossa_, kyas_,\n  { {0x644111e6, 0x60db002b, 0x60c20022, 0x00000000}},  //   _koli, qsum, _gtom,\n  { {0x644100f4, 0x61e20871, 0x201c0026, 0x00000000}},  //   _joli, _zdol, _gavi_,\n  { {0x6441021d, 0x09e601fb, 0x291900f8, 0x00000000}},  //   _moli, ловн, _assa_,\n  { {0x224d0010, 0x00000000, 0x00000000, 0x00000000}},  //   nkek_,   ,   ,\n  { {0x0e9b009b, 0x9e6500a1, 0x60c20ab4, 0x00000000}},  // [eae0] _אשקל, _خاون, _xtom,\n  { {0x6441001e, 0x201c0129, 0x69cb000c, 0x00000000}},  //   _noli, _xavi_, ðger,\n  { {0x2919251d, 0x764015b1, 0x224d0047, 0x00000000}},  //   _essa_, _pomy, kkek_,\n  { {0xd01c0055, 0xdb1c0a2f, 0x31790036, 0x00000000}},  //   তায়_, rbrä, ższy_,\n  { {0x64410018, 0x04460216, 0x660204be, 0x00000000}},  //   _boli, ледн, rfok,\n  { {0x64413dea, 0x75220091, 0x29000020, 0x00000000}},  //   _coli, rvoz, mtia_,\n  { {0x3d160309, 0x29000129, 0x201c006c, 0x00000000}},  //   _पैसे_, ltia_, _ravi_,\n  { {0x779101ef, 0x99890180, 0x3a2001f3, 0x00000000}},  //   _بیما, ndaş_, ndip_,\n  { {0x29003deb, 0x3014008b, 0xdb1c00c4, 0x00000000}},  //   ntia_, адпр, marõ,\n  { {0x6441037e, 0x29000d53, 0xb4e00061, 0x00000000}},  //   _goli, itia_, थळी_,\n  { {0xde590088, 0xa3c1006e, 0x290000b0, 0x00000000}},  //   вані_, ंडर_, htia_,\n  { {0x78ae00d2, 0x64411422, 0x00000000, 0x00000000}},  //   _libv, _zoli,   ,\n  { {0x60c20039, 0x201c01c5, 0x6441004a, 0x00000000}},  //   _utom, _tavi_, _yoli,\n  { {0x64580011, 0x13d80044, 0x29191b61, 0x00000000}},  //   nhvi, _সাড়, _rssa_,\n  { {0xce95005e, 0x2d84010f, 0xdb1c009d, 0x00000000}},  //   _какъ, ümer_, ncrè,\n  { {0x39491e36, 0x00000000, 0x00000000, 0x00000000}},  //   tyas_,   ,   ,\n  { {0x195827f9, 0x00000000, 0x00000000, 0x00000000}},  // [eaf0] гаты_,   ,   ,\n  { {0x7d0d3dec, 0x39490173, 0x00000000, 0x00000000}},  //   _ipas, ryas_,   ,\n  { {0x64410039, 0xdb1e029d, 0x29000cde, 0x00000000}},  //   _roli, _depó, atia_,\n  { {0x2bbf02fb, 0x7d0d0022, 0x39490058, 0x00000000}},  //   ्रका, _kpas, pyas_,\n  { {0x2900001a, 0xa3c1013d, 0x81da0044, 0x00000000}},  //   ctia_, ंडल_, ়লা_,\n  { {0x80c30055, 0x68ed0b28, 0x7d0d00e7, 0x00000000}},  //   _শিল্, mrad, _mpas,\n  { {0x64410868, 0x4255005e, 0xd3d80380, 0x00000000}},  //   _voli, итит, ابها_,\n  { {0x7bd7164d, 0xc245003b, 0x7d0d0213, 0x00000000}},  //   _lexu, рник, _opas,\n  { {0x644124f2, 0xe0d6045a, 0x68ed1218, 0x00000000}},  //   _toli, авы_, nrad,\n  { {0x68ed00fa, 0x224d3ded, 0x3e6f00b0, 0x00000000}},  //   irad, skek_, yötä_,\n  { {0x68ed004f, 0xd3710054, 0x7d0d2662, 0x00000000}},  //   hrad, _بها_, _apas,\n  { {0xd1310054, 0x7529000a, 0x76590016, 0x00000000}},  //   _وما_, _krez, nhwy,\n  { {0x66090007, 0x68ed0142, 0x463a0049, 0x00000000}},  //   _mbek, jrad, דערע,\n  { {0x68ed1596, 0x60c922d7, 0x752904eb, 0x00000000}},  //   drad, mpem, _mrez,\n  { {0x68ed00f8, 0xdb1e0181, 0x7d0d0d90, 0x00000000}},  //   erad, _repó, _epas,\n  { {0x29000625, 0x68ed0016, 0xdb1c1059, 0x00000000}},  //   ttia_, frad, ncré,\n  { {0x68ed0490, 0x98e60025, 0x99890477, 0x00000000}},  // [eb00] grad, شكاو, rdaş_,\n  { {0x60c900f4, 0x29001a5d, 0xdb1e01aa, 0x00000000}},  //   ipem, rtia_, _depò,\n  { {0x2900184d, 0x7bdc000d, 0x75290207, 0x00000000}},  //   stia_, maru, _arez,\n  { {0x752901d9, 0x68ed029d, 0xa5260b11, 0x00000000}},  //   _brez, brad, имед,\n  { {0x6891026c, 0x75293dee, 0x68ed0b33, 0x00000000}},  //   _کیلئ, _crez, crad,\n  { {0x7bdc001a, 0x3ce9013d, 0xd90d0014, 0x00000000}},  //   naru, _जिसे_, _سیم_,\n  { {0x66e3012b, 0x7529096e, 0xdb1e01aa, 0x00000000}},  //   _мора, _erez, _zepò,\n  { {0x76590610, 0x7bdc04cb, 0x75291507, 0x00000000}},  //   chwy, haru, _frez,\n  { {0x752915f8, 0xdb1c2902, 0x7aee0059, 0x00000000}},  //   _grez, scrè, hrbt,\n  { {0xa2e60175, 0xcfa600e3, 0x7bdc1254, 0x00000000}},  //   _вожд, ишни, jaru,\n  { {0x7d0d0119, 0x68ed0161, 0xb7db0049, 0x00000000}},  //   _spas, zrad, כקיי,\n  { {0xe4db0224, 0xdceb0e0d, 0x6d22006e, 0x00000000}},  //   zšíř, šičn, मिंग_,\n  { {0x7bdc3def, 0x224b01a2, 0x00000000, 0x00000000}},  //   faru, öcke_,   ,\n  { {0x7c870364, 0x7bdc2c3c, 0x68ed00c4, 0x00000000}},  //   руме, garu, vrad,\n  { {0xc5d70044, 0xaa67007e, 0x62470032, 0x00000000}},  //   _হাসপ, атак, _iñor,\n  { {0x68ed0919, 0x0f57009b, 0x645d0006, 0x00000000}},  //   trad, _כיום_, _įsim,\n  { {0x7d0d004e, 0x68ed06c0, 0x7bdc00e7, 0x00000000}},  // [eb10] _upas, urad, baru,\n  { {0x7529008d, 0x7bdc001a, 0x6ab700ea, 0x00000000}},  //   _rrez, caru, _tuxf,\n  { {0xd126089d, 0x68ed00f8, 0xfbd2009b, 0x00000000}},  //   _کم_, srad, _מתי_,\n  { {0x68ed2a8c, 0x5695007c, 0x24590068, 0x00000000}},  //   prad, щает, _mème_,\n  { {0xe570023c, 0x7af52431, 0xf8bf0d7f, 0x00000000}},  //   وطه_, luzt, _krém_,\n  { {0x58d40131, 0x75290dd0, 0x00000000, 0x00000000}},  //   _форт, _vrez,   ,\n  { {0x03a50194, 0x7af50032, 0x00000000, 0x00000000}},  //   щико, nuzt,   ,\n  { {0x7529001a, 0x07d800a1, 0x7bdc064f, 0x00000000}},  //   _trez, _مذہب_, zaru,\n  { {0x0fd9045a, 0x60c92a41, 0x7bdc00a9, 0x00000000}},  //   льны_, upem, yaru,\n  { {0xdb1c009d, 0x60c9188a, 0x00000000, 0x00000000}},  //   scré, rpem,   ,\n  { {0x7bdc001a, 0x339501b7, 0x0eaa01ab, 0x00000000}},  //   varu, _الاز, лкой_,\n  { {0x60c9028c, 0x7bdc0020, 0x6284016c, 0x00000000}},  //   ppem, waru, čioc,\n  { {0x7bdc1c68, 0x645d007f, 0x00000000, 0x00000000}},  //   taru, _įsij,   ,\n  { {0x9f5e0861, 0x2459000a, 0x0c7901ab, 0x00000000}},  //   letý_, _fème_, ассы_,\n  { {0x2002005f, 0x7bdc33c8, 0x00000000, 0x00000000}},  //   əki_, raru,   ,\n  { {0x7bdc001a, 0xc33200b6, 0xe8e00011, 0x00000000}},  //   saru, הול_, _suốt_,\n  { {0x7bdc01a3, 0x6aa43df0, 0x00000000, 0x00000000}},  // [eb20] paru, rmif,   ,\n  { {0xe73a00da, 0x00000000, 0x00000000, 0x00000000}},  //   лез_,   ,   ,\n  { {0xbc68026c, 0xfa6a004c, 0x648d0051, 0x00000000}},  //   _مجھے_, _банк_, húis,\n  { {0x54e60025, 0x00000000, 0x00000000, 0x00000000}},  //   مستق,   ,   ,\n  { {0xd6250054, 0xe8e00082, 0x00000000, 0x00000000}},  //   تعلي, _tuốt_,   ,\n  { {0x6846026b, 0xe8560188, 0x53342bda, 0x00000000}},  //   _унга, _انسد, жект,\n  { {0xe3b200a1, 0x8c1b0104, 0x00000000, 0x00000000}},  //   _ہرا_, רוצי,   ,\n  { {0x3ce903d7, 0xd2570147, 0x00000000, 0x00000000}},  //   _जिले_, йцы_,   ,\n  { {0xdfd00054, 0x6fe20224, 0xb6a32d6f, 0x00000000}},  //   وية_, jící, _хитл,\n  { {0xdce40089, 0x50b70025, 0xe1f90006, 0x00000000}},  //   _dziļ, حديد_, agų_,\n  { {0xe2ca0265, 0x20020046, 0x9e1501ff, 0x00000000}},  //   _след_, ęki_, одні,\n  { {0x3ea00082, 0x539b00b3, 0x877b0097, 0x00000000}},  //   _chit_, _גיבו, ראטי,\n  { {0xbd6b003b, 0x00000000, 0x00000000, 0x00000000}},  //   урне_,   ,   ,\n  { {0x7af5022b, 0x645d0006, 0x99890059, 0x00000000}},  //   tuzt, _įsik, tjaž_,\n  { {0x22460007, 0x00000000, 0x00000000, 0x00000000}},  //   _kook_,   ,   ,\n  { {0x78ba00b9, 0x2246010e, 0x00000000, 0x00000000}},  //   _čtvr, _jook_,   ,\n  { {0x224600d9, 0x290f0115, 0x00000000, 0x00000000}},  // [eb30] _mook_, ïga_,   ,\n  { {0x22460038, 0x26130011, 0x44d60036, 0x00000000}},  //   _look_, _ảo_, dł_,\n  { {0x6d4f103b, 0x625c00f4, 0xb09b009b, 0x00000000}},  //   lyca, _géog, ניבר,\n  { {0x3e7201a8, 0x9f5e0325, 0x7e6f0068, 0x00000000}},  //   pšte_, letó_, nicp,\n  { {0x26c70964, 0x6d4f02d4, 0x2d800068, 0x00000000}},  //   ūno_, nyca, _xxie_,\n  { {0x386a0145, 0x00000000, 0x00000000, 0x00000000}},  //   _gmbr_,   ,   ,\n  { {0x44d60046, 0x22460038, 0x2a6b0022, 0x00000000}},  //   ał_, _book_, _kmcb_,\n  { {0xe1f9010a, 0x69df0065, 0x2246235a, 0x00000000}},  //   ugų_, naqe, _cook_,\n  { {0x212b3df1, 0xe1f90006, 0x22460bca, 0x00000000}},  //   ích_, rgų_, _dook_,\n  { {0x3ea01d32, 0x9477004b, 0x648d0051, 0x00000000}},  //   _shit_, _ادرا, rúis,\n  { {0xe80b007d, 0x5334022a, 0x69df0065, 0x00000000}},  //   स्या_, _нефт, kaqe,\n  { {0xa6e2000c, 0x7bc50bc7, 0x00000000, 0x00000000}},  //   æðil, _afhu,   ,\n  { {0x80c30055, 0xafe5007c, 0x625c009d, 0x00000000}},  //   _শিক্, _долл, _déod,\n  { {0xf1b20097, 0xdb0a0062, 0x7ae50082, 0x00000000}},  //   _חסד_, žník, _bvht,\n  { {0x69df0065, 0x3ea03df2, 0x6fe200b9, 0x00000000}},  //   faqe, _thit_, sící,\n  { {0x31af0279, 0x3ced04eb, 0x6d4f013f, 0x00000000}},  //   _gözü_, ševa_, byca,\n  { {0x2d8000d9, 0x00000000, 0x00000000, 0x00000000}},  // [eb40] _uxie_,   ,   ,\n  { {0x6e2400e7, 0x7d040066, 0x00000000, 0x00000000}},  //   _haib, _iqis,   ,\n  { {0x2bd0001c, 0x6e24006a, 0x7794025a, 0x00000000}},  //   _त्या, _kaib, سیرا,\n  { {0xb87b000c, 0x452a0478, 0xd378012d, 0x00000000}},  //   _hvíl, ижен_, _jeće_,\n  { {0x22460007, 0x6e24011c, 0xe4a60140, 0x00000000}},  //   _rook_, _maib, орко,\n  { {0xd4d9008b, 0x68e40073, 0xc1d20204, 0x00000000}},  //   сьці_, msid, सर्ग,\n  { {0xd25a10d8, 0x68e40056, 0x2246011c, 0x00000000}},  //   ици_, lsid, _pook_,\n  { {0xd3780119, 0x61fb023a, 0x69c401cb, 0x00000000}},  //   _neće_, ggul, ncie,\n  { {0x733600a1, 0x22b50089, 0x601f007f, 0x00000000}},  //   _ڈرائ, _sākt_, kšmė,\n  { {0x31af005d, 0x6e360133, 0x61fb00e5, 0x00000000}},  //   _sözü_, _anyb, agul,\n  { {0x381700b6, 0x68e40146, 0x22462f94, 0x00000000}},  //   חקים_, hsid, _took_,\n  { {0x644829e4, 0x6e240051, 0x69c40036, 0x00000000}},  //   _hodi, _caib, jcie,\n  { {0x61e0014a, 0x7e6f00f6, 0x6448086a, 0x00000000}},  //   maml, ricp, _kodi,\n  { {0x64480520, 0x68e40292, 0xd00f0025, 0x00000000}},  //   _jodi, dsid, _لله_,\n  { {0x6e2400f4, 0x9f5e02a0, 0x26d800d9, 0x00000000}},  //   _faib, retó_, _nwro_,\n  { {0xddc4011f, 0xfbd000a1, 0x6d4f098e, 0x00000000}},  //   _iliş, فتہ_, pyca,\n  { {0x69df0065, 0x68e40030, 0x7bc50009, 0x00000000}},  // [eb50] raqe, gsid, _tfhu,\n  { {0x6448049b, 0x61e0006b, 0x6e243df3, 0x00000000}},  //   _nodi, haml, _zaib,\n  { {0x87e40057, 0xe3d80044, 0x501b009b, 0x00000000}},  //   ьюте, _সাংব, שובו,\n  { {0x68e43df4, 0x69c416df, 0x645a3df5, 0x00000000}},  //   bsid, ccie, _alti,\n  { {0x672e0073, 0x26d81d34, 0x7c25014a, 0x00000000}},  //   _erbj, _ewro_, _kahr,\n  { {0x7c25001f, 0x64480198, 0xe787003b, 0x00000000}},  //   _jahr, _codi, _дубо,\n  { {0x69dd020c, 0xd6c301ef, 0x62840b4d, 0x00000000}},  //   _kese, _آمری, čion,\n  { {0x6b7c0097, 0x645a1ae2, 0xe0d9007c, 0x00000000}},  //   ירונ, _elti, бви_,\n  { {0x69dd1b83, 0x6e24002a, 0x41b5026c, 0x00000000}},  //   _mese, _raib, _ہمار,\n  { {0x64480119, 0x69dd001f, 0x7c250161, 0x00000000}},  //   _godi, _lese, _nahr,\n  { {0x69c40036, 0xa207005d, 0x6e240058, 0x00000000}},  //   ycie, şmış_, _paib,\n  { {0x69dd0263, 0x44250149, 0x644824b7, 0x00000000}},  //   _nese, _hal_, _zodi,\n  { {0x44250f99, 0x7c2501a3, 0xd3780091, 0x00000000}},  //   _kal_, _bahr, _veće_,\n  { {0xdb1c3df6, 0xb042001d, 0x44253b6d, 0x00000000}},  //   scrí, _thưở, _jal_,\n  { {0x69dd3df7, 0x765b011f, 0x09b40164, 0x00000000}},  //   _bese, _oluy, ंख्य,\n  { {0x78b5001e, 0x69dd2b75, 0x68e406d7, 0x00000000}},  //   _aizv, _cese, tsid,\n  { {0x69dd0576, 0x7c25001f, 0x69c400f4, 0x00000000}},  // [eb60] _dese, _fahr, rcie,\n  { {0x68e4068f, 0x69c40207, 0x397901fb, 0x00000000}},  //   rsid, scie, істю_,\n  { {0x64480428, 0x68e4003a, 0x61eb0107, 0x00000000}},  //   _rodi, ssid, _odgl,\n  { {0x644801d9, 0x69dd12e3, 0x7c25004f, 0x00000000}},  //   _sodi, _gese, _zahr,\n  { {0x442501aa, 0x64480466, 0x7bde020c, 0x00000000}},  //   _bal_, _podi, _kepu,\n  { {0x442504bd, 0x66e60175, 0x6abe01a2, 0x00000000}},  //   _cal_, _нога, _kupf,\n  { {0x44250198, 0x765b008e, 0x61e00095, 0x00000000}},  //   _dal_, _fluy, taml,\n  { {0x7bde3df8, 0xcb1300b3, 0x4427004a, 0x00000000}},  //   _lepu, גלה_, adn_,\n  { {0x44250065, 0x644800b0, 0x61e01fe3, 0x00000000}},  //   _fal_, _todi, raml,\n  { {0x4425010a, 0x645a1d28, 0x61e0030e, 0x00000000}},  //   _gal_, _ulti, saml,\n  { {0x3de10044, 0x00000000, 0x00000000, 0x00000000}},  //   _ভাবল,   ,   ,\n  { {0x44253df9, 0x7c25037e, 0x61e0006b, 0x00000000}},  //   _zal_, _sahr, qaml,\n  { {0x44250173, 0x7c250022, 0x7bde01c3, 0x00000000}},  //   _yal_, _pahr, _bepu,\n  { {0x69dd027e, 0x7bde0089, 0x78bd3dfa, 0x00000000}},  //   _sese, _cepu, _rusv,\n  { {0x7bde028c, 0x69dd0149, 0x9f6200b0, 0x00000000}},  //   _depu, _pese, ävän_,\n  { {0x7c25010f, 0x7e6d0058, 0x58d90a1e, 0x00000000}},  //   _wahr, _umap, ждая_,\n  { {0x69dd001e, 0x44271014, 0xf4d70044, 0x00000000}},  // [eb70] _vese, ydn_, _সম্ব,\n  { {0x69dd3dfb, 0x7bde15bd, 0x6abe0146, 0x00000000}},  //   _wese, _gepu, _fupf,\n  { {0x442500d4, 0x7e7d2201, 0xe7190025, 0x00000000}},  //   _ral_, onsp, تيات_,\n  { {0x44251273, 0x7e7d1b7b, 0xa3cf0061, 0x00000000}},  //   _sal_, nnsp, वुन_,\n  { {0x3a393dfc, 0x78b501f3, 0x00000000, 0x00000000}},  //   _insp_, _tizv,   ,\n  { {0x442501d5, 0xa493025a, 0x3a290058, 0x00000000}},  //   _qal_, ریات, ldap_,\n  { {0x4425010a, 0x290900b0, 0x225f0022, 0x00000000}},  //   _val_, ltaa_, thuk_,\n  { {0x56940099, 0x44250016, 0x44273dfd, 0x00000000}},  //   _заст, _wal_, sdn_,\n  { {0x442502c0, 0x2909021e, 0x0019007e, 0x00000000}},  //   _tal_, ntaa_, оўны_,\n  { {0xaec5025f, 0x7860005a, 0x8ee901ab, 0x00000000}},  //   мбол, _gövd, омов_,\n  { {0x2909021e, 0xddc43dfe, 0x3ce9000a, 0x00000000}},  //   htaa_, _amiš, _avav_,\n  { {0x1ee7026c, 0x7bde0169, 0xdb1c01a2, 0x00000000}},  //   _ہوتی_, _sepu, rbrü,\n  { {0x2d840189, 0x212f0544, 0x7bde17f6, 0x00000000}},  //   çme_, _urgh_, _pepu,\n  { {0x78600047, 0x7e7d3dff, 0x395200b0, 0x00000000}},  //   _köve, ansp, vyys_,\n  { {0x41d10183, 0xab27025f, 0x78600010, 0x00000000}},  //   _सभास, мора_, _jöve,\n  { {0xe80b006e, 0x00000000, 0x00000000, 0x00000000}},  //   स्सा_,   ,   ,\n  { {0x4c86034b, 0x7bde04cb, 0x2a600022, 0x00000000}},  // [eb80] _олив, _tepu, rhib_,\n  { {0x39403e00, 0x3a3900fa, 0x00000000, 0x00000000}},  //   rxis_, _ensp_,   ,\n  { {0xb6c50106, 0x78600047, 0xdb1c03df, 0x00000000}},  //   есій, _növe, rbró,\n  { {0x7afc014a, 0xf8bf008e, 0x00000000, 0x00000000}},  //   murt, _fué_,   ,\n  { {0x1fe30044, 0x94aa0069, 0x69d62a2b, 0x00000000}},  //   _মানস, отка_, mbye,\n  { {0xa6e2000c, 0x3e720006, 0xd5fb0082, 0x00000000}},  //   æðsl, kšto_, _phụ,\n  { {0xe2c70025, 0x645d0006, 0x7afc0288, 0x00000000}},  //   وووو_, _įsit, nurt,\n  { {0xc7a301e0, 0x69d601aa, 0x7217005e, 0x00000000}},  //   _риск, nbye, джър_,\n  { {0xf5030265, 0x7afc3e01, 0x00000000, 0x00000000}},  //   _изто, hurt,   ,\n  { {0x7afc3e02, 0xc0570088, 0xe802007d, 0x00000000}},  //   kurt, дію_, र्चा_,\n  { {0xe810001c, 0xddc404eb, 0x645802e7, 0x00000000}},  //   ठ्या_, _smiš, mkvi,\n  { {0x7afc3e03, 0x645800f8, 0xc7b3009b, 0x00000000}},  //   durt, lkvi, כבת_,\n  { {0x50660517, 0xed58008b, 0x7e7d0210, 0x00000000}},  //   _отка, доў_, rnsp,\n  { {0xe5710049, 0x7afc01a2, 0xd6df0036, 0x00000000}},  //   אַל_, furt, ółka_,\n  { {0x7afc1692, 0xa2d20061, 0x9e67006d, 0x00000000}},  //   gurt, णीच्, _يابن,\n  { {0x29090f3c, 0x7860005f, 0x68f60016, 0x00000000}},  //   ttaa_, _növb, fryd,\n  { {0xf8bf0219, 0xa3cf03d7, 0xddc40243, 0x00000000}},  // [eb90] _qué_, वुड_, _umiš,\n  { {0x7afc010f, 0x2909021e, 0x7ac7003b, 0x00000000}},  //   burt, rtaa_, _осме,\n  { {0x8bd600b6, 0x0c740b59, 0x2909021e, 0x00000000}},  //   _אותו_, _جديد, staa_,\n  { {0xfe100011, 0x68f63e04, 0xf8bf009d, 0x00000000}},  //   _lắng_, bryd, _tué_,\n  { {0xe5040025, 0x6aad00f8, 0xceb4009b, 0x00000000}},  //   نبوي, mmaf, דיף_,\n  { {0xfe100011, 0xd3780521, 0x03a5007c, 0x00000000}},  //   _nắng_, _seća_, нило,\n  { {0xc6060044, 0x00000000, 0x00000000, 0x00000000}},  //   োয়া_,   ,   ,\n  { {0x65950088, 0xfbb8009b, 0x628201c3, 0x00000000}},  //   _забу, ופות_, _cjoo,\n  { {0xd3780091, 0x60cd002b, 0x7afc0032, 0x00000000}},  //   _veća_, _ħams, zurt,\n  { {0x6458098e, 0x60090175, 0xf1b9016c, 0x00000000}},  //   ckvi, чном_, deše_,\n  { {0xbcfb0047, 0xe3b3002c, 0x7d1601d6, 0x00000000}},  //   szél, _شرط_, _spys,\n  { {0x3f990089, 0x3e72007f, 0x00000000, 0x00000000}},  //   āsu_, ršto_,   ,\n  { {0xee37005e, 0x00000000, 0x00000000, 0x00000000}},  //   хня_,   ,   ,\n  { {0x7afc0089, 0xe00603d7, 0x7860006b, 0x00000000}},  //   turt, _शायद_, _mövc,\n  { {0x6fd500e8, 0x3f790049, 0xf99f00f6, 0x00000000}},  //   _म्यू, _מאַס, _obès_,\n  { {0x3dda0055, 0x2bd00164, 0x68f63e05, 0x00000000}},  //   _থাকল, _त्रा, tryd,\n  { {0xe8fa007e, 0x65b60477, 0x6a8305f6, 0x00000000}},  // [eba0] яла_, _mühü, улта,\n  { {0x7afc36ee, 0xb8820428, 0x68f602e7, 0x00000000}},  //   purt, _čísl, rryd,\n  { {0xe61a0cee, 0x00000000, 0x00000000, 0x00000000}},  //   зде_,   ,   ,\n  { {0x550600e2, 0xcf920049, 0x00000000, 0x00000000}},  //   ечка, נטא_,   ,\n  { {0xd5e700a1, 0xad9b004a, 0xbebc0089, 0x00000000}},  //   رٹون_, lfúr, lvīt,\n  { {0x04430517, 0xd467017f, 0xdceb11af, 0x00000000}},  //   лечн, ниче_, šićn,\n  { {0xc795008b, 0x6458037d, 0x625c009d, 0x00000000}},  //   _арты, rkvi, _déon,\n  { {0xa50a0816, 0x179b0097, 0xf8bf0082, 0x00000000}},  //   _неба_, _זילב, _trét_,\n  { {0xe0cf0167, 0x00000000, 0x00000000, 0x00000000}},  //   یزی_,   ,   ,\n  { {0x66020010, 0x00000000, 0x00000000, 0x00000000}},  //   lgok,   ,   ,\n  { {0x81df08b7, 0x1df90147, 0xfe100011, 0x00000000}},  //   _তার_, мены_, _vắng_,\n  { {0x66022092, 0x628d012d, 0x00000000, 0x00000000}},  //   ngok, čaoc,   ,\n  { {0xfe6e089d, 0xf1b9016c, 0xc05a0451, 0x00000000}},  //   تگو_, teše_, _нік_,\n  { {0x61e231f0, 0x00000000, 0x00000000, 0x00000000}},  //   _heol,   ,   ,\n  { {0x60c2021e, 0x0b88007c, 0xab95019d, 0x00000000}},  //   _huom, ести_, тиві,\n  { {0x201e0047, 0x60c20020, 0x66e701dc, 0x00000000}},  //   leti_, _kuom, _léká,\n  { {0x60c200b0, 0xf1b9016c, 0x62800145, 0x00000000}},  // [ebb0] _juom, peše_, inmo,\n  { {0x61e20016, 0x628001a2, 0x60c200e7, 0x00000000}},  //   _leol, hnmo, _muom,\n  { {0x998010c1, 0x60c200b0, 0xf8bf009d, 0x00000000}},  //   rdiš_, _luom, _prés_,\n  { {0xfb1a009c, 0xd57509b5, 0x201e0010, 0x00000000}},  //   _کریں_, куль, heti_,\n  { {0x201e3e06, 0x60c2010a, 0x5a34007c, 0x00000000}},  //   keti_, _nuom, _снят,\n  { {0x201e0209, 0x3ea90058, 0x628000d9, 0x00000000}},  //   jeti_, _lhat_, enmo,\n  { {0xf8bf00f4, 0xe784005e, 0x5c38009b, 0x00000000}},  //   _trés_, _буто, תרון_,\n  { {0x3ea90011, 0x61e20051, 0x629b3e07, 0x00000000}},  //   _nhat_, _ceol, uluo,\n  { {0xd24e006d, 0x60c20912, 0x201e02ba, 0x00000000}},  //   تني_, _cuom, feti_,\n  { {0x8574008b, 0x60c23e08, 0x201e1403, 0x00000000}},  //   _слух, _duom, geti_,\n  { {0x3ea901f3, 0x200b0036, 0xd4360049, 0x00000000}},  //   _bhat_, ęci_, _שרעק_,\n  { {0x27e301d5, 0x26c3016e, 0x325500ec, 0x00000000}},  //   _lejn_, _mujo_, _швер,\n  { {0x26c30211, 0x26fe013d, 0x201e333e, 0x00000000}},  //   _lujo_, _उम्र_, beti_,\n  { {0x201e001a, 0x68ff006b, 0x224f01c3, 0x00000000}},  //   ceti_, duqd, _hogk_,\n  { {0x09e6025f, 0xfe0a03d7, 0xeb9701ee, 0x00000000}},  //   ковн, _वापस_, вир_,\n  { {0xc332009b, 0x3ea9002b, 0xc0b900b9, 0x00000000}},  //   סון_, _ghat_, řádá,\n  { {0x27e301d5, 0x26d1002d, 0x81b30044, 0x00000000}},  // [ebc0] _bejn_, _atzo_, জুর_,\n  { {0x3cfb00a0, 0xbc6a02fd, 0xed57009b, 0x00000000}},  //   _קלינ, _آمدن_, _סביר_,\n  { {0x7c3e002d, 0x26c30181, 0x645d0006, 0x00000000}},  //   _inpr, _cujo_, _įsip,\n  { {0x201e0924, 0x3ce001aa, 0x7c2e01a2, 0x00000000}},  //   zeti_, _kwiv_, ldbr,\n  { {0x27e301d5, 0x61e233a1, 0x201e014a, 0x00000000}},  //   _fejn_, _reol, yeti_,\n  { {0x61e23e09, 0x29000020, 0x26c30020, 0x00000000}},  //   _seol, muia_, _fujo_,\n  { {0x60c2021e, 0x201e0229, 0x290020c2, 0x00000000}},  //   _suom, veti_, luia_,\n  { {0x78bc00b0, 0x625c009d, 0x3ced0ecc, 0x00000000}},  //   _hirv, _géol, ševi_,\n  { {0x201e1d24, 0x628000f8, 0x78bc0052, 0x00000000}},  //   teti_, rnmo, _kirv,\n  { {0xb42500a6, 0x27e301d5, 0x3ea92a2b, 0x00000000}},  //   _معمو, _xejn_, _shat_,\n  { {0x443e01d5, 0x442c002a, 0x6f0a0061, 0x00000000}},  //   _int_, _iad_, _qqfc,\n  { {0x442c0f44, 0x60c22334, 0x201e3e0a, 0x00000000}},  //   _had_, _tuom, seti_,\n  { {0x442c0b53, 0xc693009b, 0x443e0146, 0x00000000}},  //   _kad_, שאר_, _knt_,\n  { {0x3ea90038, 0x442c0d6b, 0xd0100355, 0x00000000}},  //   _what_, _jad_, _طلب_,\n  { {0x3ea90a8a, 0xefb00014, 0x443e006c, 0x00000000}},  //   _that_, _دیدگ, _mnt_,\n  { {0x442c0030, 0x7c3e3e0b, 0x32041c66, 0x00000000}},  //   _lad_, _enpr, ngmy_,\n  { {0x443e3e0c, 0x2d8f00f4, 0x2900050b, 0x00000000}},  // [ebd0] _ont_, _âge_, guia_,\n  { {0xf1b908ad, 0x443e01a3, 0x7d0d0066, 0x00000000}},  //   neša_, _nnt_, _iqas,\n  { {0x442e018e, 0x6e2d17f6, 0x78bc0419, 0x00000000}},  //   ddf_, _kaab, _dirv,\n  { {0x443e33bb, 0x442c00bb, 0x79a700ed, 0x00000000}},  //   _ant_, _aad_, _арге,\n  { {0x6e2d036b, 0x442c192b, 0x443e14ad, 0x00000000}},  //   _maab, _bad_, _bnt_,\n  { {0x442c002a, 0x81df0055, 0x443e15e0, 0x00000000}},  //   _cad_, _তাই_, _cnt_,\n  { {0xe2993e0d, 0x68ed21e9, 0x442c0787, 0x00000000}},  //   нак_, lsad, _dad_,\n  { {0x443e006c, 0x6e2d3e0e, 0x78bc0279, 0x00000000}},  //   _ent_, _naab, _zirv,\n  { {0x6abd004e, 0x442c002a, 0x26080061, 0x00000000}},  //   _misf, _fad_, _हाती_,\n  { {0x442c01aa, 0x68ed0181, 0x799d0022, 0x00000000}},  //   _gad_, isad, _mysw,\n  { {0x5f05008b, 0x3ce00263, 0x29000020, 0x00000000}},  //   ызна, _swiv_, zuia_,\n  { {0x68ed0039, 0x442c0baf, 0x6abd3e0f, 0x00000000}},  //   ksad, _zad_, _nisf,\n  { {0x443e014a, 0x442c006b, 0x3e620048, 0x00000000}},  //   _ynt_, _yad_, _cóta_,\n  { {0xab2a06f3, 0x69cf00d9, 0x7e660023, 0x00000000}},  //   нога_, _afce, shkp,\n  { {0x6609037e, 0x6eca02fb, 0x7c2e01c9, 0x00000000}},  //   _ocek, _संयु, rdbr,\n  { {0x78bc0211, 0x61e90020, 0x8f9a00a0, 0x00000000}},  //   _sirv, nael, _איצי,\n  { {0x6abd0211, 0x7e640e1a, 0x799d0016, 0x00000000}},  // [ebe0] _disf, _ilip, _cysw,\n  { {0x61e9001a, 0x20053886, 0x20c90011, 0x00000000}},  //   hael, ngli_, _múi_,\n  { {0x442c17cf, 0x7bdc1dd4, 0x7529001a, 0x00000000}},  //   _rad_, mbru, _asez,\n  { {0x7bdc00ea, 0xb87b00b9, 0x6b7b01ce, 0x00000000}},  //   lbru, _svít, _טרינ,\n  { {0x442c0343, 0x29000325, 0x20c90011, 0x00000000}},  //   _pad_, quia_, _núi_,\n  { {0x7bdc0c53, 0x443e0026, 0x6299000a, 0x00000000}},  //   nbru, _qnt_, _akwo,\n  { {0x442c0073, 0x443e0006, 0x628d016c, 0x00000000}},  //   _vad_, _vnt_, čaon,\n  { {0x3254017a, 0x442c22df, 0x82a6007c, 0x00000000}},  //   рвир, _wad_, ышле,\n  { {0x442c2e42, 0x443e05f2, 0x6e2d0240, 0x00000000}},  //   _tad_, _tnt_, _raab,\n  { {0xdefa04af, 0x7e64000b, 0x443e18be, 0x00000000}},  //   ным_, _alip, _unt_,\n  { {0x7bdc068f, 0x4ab40061, 0x7e6400b4, 0x00000000}},  //   dbru, ंगाव, _blip,\n  { {0x7e64001c, 0x6e950088, 0x61e9014a, 0x00000000}},  //   _clip, риму, cael,\n  { {0x22930054, 0xf1b9016c, 0x00000000, 0x00000000}},  //   _النس, peša_,   ,\n  { {0x3e620051, 0x7e640253, 0x7bdc0056, 0x00000000}},  //   _vóta_, _elip, gbru,\n  { {0x309b00b6, 0x6f01058b, 0x6e2d0020, 0x00000000}},  //   _רשומ, culc, _taab,\n  { {0x7e6401d6, 0x68ed29f9, 0x5bb8007c, 0x00000000}},  //   _glip, tsad, улся_,\n  { {0x987500c0, 0x7afc0051, 0x9f4501ca, 0x00000000}},  // [ebf0] алац, arrt, valé_,\n  { {0x68ed0010, 0x660901ee, 0x2c663c2c, 0x00000000}},  //   rsad, _scek, _pôde_,\n  { {0x68ed02d5, 0x97a70269, 0x7e6400b0, 0x00000000}},  //   ssad, урал, _ylip,\n  { {0x68ed00f8, 0xa53506e3, 0x5695007c, 0x00000000}},  //   psad, инеч, шает,\n  { {0xd126039d, 0x58870783, 0x3e72016c, 0x00000000}},  //   _بم_, _быва, ušti_,\n  { {0xa879007b, 0xc48401e1, 0x61e90020, 0x00000000}},  //   _יאָר, блік, wael,\n  { {0x61e93e10, 0x9f51005d, 0x7860013f, 0x00000000}},  //   tael, üzü_, _mövl,\n  { {0x3e7201ee, 0x2ce5006e, 0x00000000, 0x00000000}},  //   pšti_, _कबूल_,   ,\n  { {0x7bdc00eb, 0xe66402b8, 0x00000000, 0x00000000}},  //   ybru, _утро,   ,\n  { {0x39492e19, 0x205501e0, 0x2a690022, 0x00000000}},  //   ixas_, ртир, hhab_,\n  { {0x8fa50081, 0xfe46007c, 0x20050207, 0x00000000}},  //   ране, анно, rgli_,\n  { {0xed5a0437, 0x20c9001d, 0x00000000, 0x00000000}},  //   вом_, _túi_,   ,\n  { {0xc0e505b5, 0xa696009b, 0x7bdc0190, 0x00000000}},  //   _толк, שכרה_, tbru,\n  { {0x6f013000, 0x224d3e11, 0xdde50089, 0x00000000}},  //   pulc, ljek_, āpša,\n  { {0x7860005f, 0xddcd011f, 0xf99f0173, 0x00000000}},  //   _dövl, _ulaş, _ayè_,\n  { {0x7bdc05a6, 0x7e640020, 0x3b0700ed, 0x00000000}},  //   sbru, _ulip, јето_,\n\n  { {0x7bdc043e, 0x00000000, 0x00000000, 0x00000000}},  // [ec00] pbru,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x75e6008b, 0xbb460545, 0x8d8502fd, 0x00000000}},  //   аўле, _тенк, _نشین,\n  { {0xeabf0207, 0x644105b4, 0x2a69000a, 0x00000000}},  //   _giù_, _anli, chab_,\n  { {0x9633008b, 0xe5340b52, 0xf9920688, 0x00000000}},  //   ўніц, сель, _ذبح_,\n  { {0xb60200b9, 0x5497007e, 0xddcd01ee, 0x00000000}},  //   _řádk, авіў_, _mmaš,\n  { {0x24800091, 0x00000000, 0x00000000, 0x00000000}},  //   đim_,   ,   ,\n  { {0xd257007c, 0xddcd016c, 0x64410aa4, 0x00000000}},  //   ицы_, _omaš, _enli,\n  { {0x81e80044, 0x26da00b0, 0x291208e3, 0x00000000}},  //   _বাদ_, lppo_, ntya_,\n  { {0x32ca0011, 0x2018000c, 0x200a12b6, 0x00000000}},  //   _tùy_, ýri_, übi_,\n  { {0x50b70054, 0x224d003f, 0xb80b013d, 0x00000000}},  //   جديد_, bjek_, स्टम_,\n  { {0x6284007f, 0x00000000, 0x00000000, 0x00000000}},  //   čios,   ,   ,\n  { {0x39490860, 0x00000000, 0x00000000, 0x00000000}},  //   xxas_,   ,   ,\n  { {0xa067003b, 0x00000000, 0x00000000, 0x00000000}},  //   _ваља_,   ,   ,\n  { {0xeabf05d3, 0xdb580057, 0xee87007c, 0x00000000}},  //   _più_, ают_, _выпо,\n  { {0xf99f01aa, 0x8f9b009b, 0x59f8007c, 0x00000000}},  //   _pyè_, _שיהי, иеся_,\n  { {0x7e7d03b6, 0x9f4700fa, 0x00000000, 0x00000000}},  // [ec10] misp, _nenê_,   ,\n  { {0x1c160061, 0x7e7d006c, 0x2a691856, 0x00000000}},  //   द्दल_, lisp, shab_,\n  { {0x6d5d0056, 0xc5d501e1, 0x00000000, 0x00000000}},  //   lysa, біль,   ,\n  { {0x7e7d0020, 0x00000000, 0x00000000, 0x00000000}},  //   nisp,   ,   ,\n  { {0x224d0363, 0xbcfb0010, 0x6d5d060a, 0x00000000}},  //   vjek_, mzés, nysa,\n  { {0x7e7d3b5d, 0xbcfb0010, 0x24090088, 0x00000000}},  //   hisp, lzés, унки_,\n  { {0x7e7d0052, 0x7ebf0089, 0xf8b200a0, 0x00000000}},  //   kisp, _rūpn, _משך_,\n  { {0xc245012b, 0x5694008b, 0xcfe30044, 0x00000000}},  //   сник, _даст, _মাইন,\n  { {0x7e7d1017, 0x661b023a, 0xa1120025, 0x00000000}},  //   disp, _ibuk, كويت,\n  { {0x44230047, 0x753b022b, 0xf0650888, 0x00000000}},  //   _új_, _iruz, скоп,\n  { {0x54340167, 0xe8190309, 0x2054005e, 0x00000000}},  //   _برقر, न्या_, ютър,\n  { {0x753b041a, 0x6ed30035, 0x00000000, 0x00000000}},  //   _kruz, _răbd,   ,\n  { {0xd3780119, 0x9f470065, 0xd24e009e, 0x00000000}},  //   _reći_, _kenë_, _سنو_,\n  { {0x9f470065, 0xc0b20011, 0x63a12096, 0x00000000}},  //   _jenë_, _mười_, _kyln,\n  { {0xcaa60025, 0x7e7d0b33, 0x661b3e12, 0x00000000}},  //   مصري, bisp, _obuk,\n  { {0x753b0107, 0x6d5d0190, 0x6aaf0009, 0x00000000}},  //   _oruz, bysa, _chcf,\n  { {0x2f110047, 0xd3780091, 0x39460181, 0x00000000}},  // [ec20] lág_, _veći_, ãos_,\n  { {0x7d06021e, 0x29120010, 0x2a6027ac, 0x00000000}},  //   muks, rtya_, skib_,\n  { {0x29123e13, 0x81e80044, 0x7d0600b0, 0x00000000}},  //   stya_, _বাস_, luks,\n  { {0x69da001a, 0x753b1669, 0x00000000, 0x00000000}},  //   _ştef, _bruz,   ,\n  { {0xc0b2001d, 0x753b029d, 0x893601d8, 0x00000000}},  //   _cười_, _cruz, _اعجا,\n  { {0x753b016c, 0xf7460081, 0x00000000, 0x00000000}},  //   _druz, _лего,   ,\n  { {0x753b0197, 0xf48700a6, 0x7d060961, 0x00000000}},  //   _eruz, حانی, huks,\n  { {0x60f801be, 0x29000181, 0xd251026c, 0x00000000}},  //   ания_, oria_, ِنٹ_,\n  { {0x26ca0211, 0xc05a01e1, 0x05663e14, 0x00000000}},  //   _hubo_, гін_, _уван,\n  { {0x7d060d4b, 0x26ca0178, 0x661b15e7, 0x00000000}},  //   duks, _kubo_, _zbuk,\n  { {0x6aa40279, 0x389b0097, 0x889b0097, 0x00000000}},  //   klif, ריינ, רביי,\n  { {0x6e670265, 0x6d5d00b0, 0x9f47000a, 0x00000000}},  //   стож, tysa, _menè_,\n  { {0x7e7d1529, 0xa3cf01f5, 0x09e70044, 0x00000000}},  //   risp, वुक_, _ফালা,\n  { {0x26d80b2f, 0x29003e15, 0x6d5d04dc, 0x00000000}},  //   _otro_, dria_, rysa,\n  { {0xf3f10011, 0x307b009b, 0x00000000, 0x00000000}},  //   _học_, _תאונ,   ,\n  { {0x2bd902d2, 0x38c904e1, 0x29003e16, 0x00000000}},  //   _ब्रा, لائی_, fria_,\n  { {0x290009f7, 0xbcfb0010, 0xdd9103ec, 0x00000000}},  // [ec30] gria_, rzés, _زود_,\n  { {0x753b0023, 0x9f470173, 0x00000000, 0x00000000}},  //   _rruz, _benè_,   ,\n  { {0x29000207, 0xbcfb0010, 0x8a19005c, 0x00000000}},  //   aria_, pzés, _конс_,\n  { {0x753b057c, 0x29003e17, 0x7c270190, 0x00000000}},  //   _pruz, bria_, lejr,\n  { {0x2f110047, 0x672e0030, 0x81c30044, 0x00000000}},  //   zág_, _esbj, ্রম_,\n  { {0x9f47008d, 0xf7730076, 0xf99f000a, 0x00000000}},  //   _qenë_, _فاز_, _obèz_,\n  { {0x9f470023, 0x0ab81125, 0x00000000, 0x00000000}},  //   _venë_, _خطیب_,   ,\n  { {0xd3780119, 0x661b0061, 0x6b7c0104, 0x00000000}},  //   _neću_, _ubuk, טרונ,\n  { {0x753b0d4d, 0x7e8b0036, 0xfe7f00f6, 0x00000000}},  //   _uruz, tępn, diï_,\n  { {0x2bd902d2, 0xef19012b, 0xe3b30151, 0x00000000}},  //   _ब्ला, амо_, _فرض_,\n  { {0x81e80055, 0x6aa40061, 0x6e260010, 0x00000000}},  //   _বার_, ylif, tekb,\n  { {0x7d06021e, 0x60db00b0, 0x60cd0051, 0x00000000}},  //   tuks, ppum, _éamo,\n  { {0x2f110047, 0x442711fe, 0x9f47009d, 0x00000000}},  //   ság_, oen_, _mené_,\n  { {0x44270e53, 0x7d060056, 0x6aa40544, 0x00000000}},  //   nen_, ruks, wlif,\n  { {0x60cb009f, 0x44272680, 0x7d0616fe, 0x00000000}},  //   _hugm, ien_, suks,\n  { {0x442708ba, 0x29000142, 0x628934d4, 0x00000000}},  //   hen_, tria_, nneo,\n  { {0x44270662, 0x61eb3e18, 0xbcfb0010, 0x00000000}},  // [ec40] ken_, _megl, szér,\n  { {0x4427021e, 0x29000756, 0x61eb01aa, 0x00000000}},  //   jen_, rria_, _legl,\n  { {0xbc6a06c6, 0xe5c6003b, 0xd6cf0025, 0x00000000}},  //   _ممکن_, осло, نقل_,\n  { {0x44273e19, 0x2900303d, 0xd94600ed, 0x00000000}},  //   een_, pria_, _деми,\n  { {0x4427001f, 0x1fa60316, 0x00000000, 0x00000000}},  //   fen_, _ऑर्ड,   ,\n  { {0x44271440, 0x66e61447, 0x26ca0555, 0x00000000}},  //   gen_, _мога, _tubo_,\n  { {0x26d823bd, 0x61eb010f, 0x60cb2a66, 0x00000000}},  //   _utro_, _begl, _augm,\n  { {0x60c3002a, 0x41e60245, 0xa7a70088, 0x00000000}},  //   _ainm, ціка, _єкта_,\n  { {0x4427196d, 0x61eb0198, 0xf8af026c, 0x00000000}},  //   ben_, _degl, _سکے_,\n  { {0x44270219, 0x3ea02175, 0x60cb0091, 0x00000000}},  //   cen_, _akit_, _dugm,\n  { {0x3ea00058, 0x3eb20082, 0x26c400e7, 0x00000000}},  //   _bkit_, _bhyt_, _kimo_,\n  { {0x60c326cf, 0x61eb3e1a, 0x62890051, 0x00000000}},  //   _einm, _gegl, cneo,\n  { {0x60c300ea, 0xd3780091, 0x5d8501b7, 0x00000000}},  //   _finm, _veću_, سلسل,\n  { {0x628013b1, 0xed4e00a1, 0x26c40253, 0x00000000}},  //   limo, چھی_, _limo_,\n  { {0x9f4500f6, 0x7c2718bc, 0x00000000, 0x00000000}},  //   calà_, rejr,   ,\n  { {0x44270756, 0x26c40058, 0x63a70030, 0x00000000}},  //   zen_, _nimo_, _øjne,\n  { {0x44270f99, 0x3eb905e9, 0x9f4706f0, 0x00000000}},  // [ec50] yen_, mmst_, _rené_,\n  { {0x442704bd, 0x6280006b, 0x200c000c, 0x00000000}},  //   xen_, himo, ngdi_,\n  { {0x44270662, 0x6280007f, 0x26c41c2b, 0x00000000}},  //   ven_, kimo, _bimo_,\n  { {0x442702ae, 0x62800006, 0x1daf0061, 0x00000000}},  //   wen_, jimo, _घरात,\n  { {0x44270270, 0x62800211, 0x9f4c01aa, 0x00000000}},  //   ten_, dimo, sadè_,\n  { {0x44273e1b, 0x61eb3e1c, 0x25ad0059, 0x00000000}},  //   uen_, _segl, _vzel_,\n  { {0x44270599, 0x60c301aa, 0x290900b0, 0x00000000}},  //   ren_, _rinm, luaa_,\n  { {0x44270e53, 0x78600010, 0x6280008e, 0x00000000}},  //   sen_, _rövi, gimo,\n  { {0x442702ae, 0x6289008e, 0x61eb2b84, 0x00000000}},  //   pen_, rneo, _vegl,\n  { {0xe5c40cf2, 0x9f4504bd, 0x4427008d, 0x00000000}},  //   _істо, talà_, qen_,\n  { {0x6280008e, 0x3ea6030d, 0x60c30190, 0x00000000}},  //   bimo, зинг, _vinm,\n  { {0x62800211, 0x26c40b32, 0x60cb2274, 0x00000000}},  //   cimo, _ximo_, _tugm,\n  { {0x80de0044, 0x60c30082, 0x0d9a01ab, 0x00000000}},  //   _মিথ্, _tinm, стны_,\n  { {0xc17200b6, 0x6ab402fb, 0x3e62009f, 0x00000000}},  //   _אחד_, ंग्र, _móti_,\n  { {0xe9df000c, 0x09e631c7, 0x00000000, 0x00000000}},  //   _snúa_, зобн,   ,\n  { {0x32d100ad, 0xc3320104, 0x9f45008e, 0x00000000}},  //   _máy_, עון_, calá_,\n  { {0x7af50010, 0x3ce90173, 0x00000000, 0x00000000}},  // [ec60] aszt, _gwav_,   ,\n  { {0x44e90046, 0x6280002d, 0x26c420b0, 0x00000000}},  //   dź_, zimo, _simo_,\n  { {0x6e36011f, 0x212d3e1d, 0x25a40016, 0x00000000}},  //   _kayb, hweh_, _syml_,\n  { {0x6280008e, 0x6e360ace, 0x4efa0049, 0x00000000}},  //   ximo, _jayb, מלעג,\n  { {0xe819024c, 0x62800b7f, 0x6e360edd, 0x00000000}},  //   न्हा_, vimo, _mayb,\n  { {0x81c30055, 0x81e80044, 0x00000000, 0x00000000}},  //   ্রা_, _বাই_,   ,\n  { {0x62800489, 0x26c400b0, 0x9f5801df, 0x00000000}},  //   timo, _timo_, ürü_,\n  { {0x46a30cb7, 0x1dbe0061, 0xe61701ab, 0x00000000}},  //   _засв, ोशात, _ндс_,\n  { {0x62800056, 0x68f61810, 0x00000000, 0x00000000}},  //   rimo, nsyd,   ,\n  { {0x62802154, 0x29370049, 0x00000000, 0x00000000}},  //   simo, לאפן_,   ,\n  { {0x6e363e1e, 0x32d10082, 0x6280004a, 0x00000000}},  //   _bayb, _gáy_, pimo,\n  { {0x645a031a, 0x2002014a, 0x2c6f01a2, 0x00000000}},  //   _hoti, şki_, _müde_,\n  { {0x645a3e1f, 0xfd47008b, 0x6e360912, 0x00000000}},  //   _koti, чэнн, _dayb,\n  { {0x91bb00b6, 0x645a1aa3, 0x625c009d, 0x00000000}},  //   _המדי, _joti, _géor,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x645a0059, 0x7af51072, 0x3ce91e5a, 0x00000000}},  //   _loti, rszt, _twav_,\n  { {0x644809ac, 0xa3cc01f5, 0x7e6d0058, 0x00000000}},  // [ec70] _ondi, रखा_, _ilap,\n  { {0x645a3e20, 0x00000000, 0x00000000, 0x00000000}},  //   _noti,   ,   ,\n  { {0xc3240044, 0x00000000, 0x00000000, 0x00000000}},  //   ভিডি_,   ,   ,\n  { {0x64483e21, 0x645a0288, 0x00000000, 0x00000000}},  //   _andi, _aoti,   ,\n  { {0x645a145d, 0x2bb50061, 0x7e6d00e0, 0x00000000}},  //   _boti, ंधका, _mlap,\n  { {0x645a0682, 0xdfc60054, 0x7e6d3e22, 0x00000000}},  //   _coti, _لي_, _llap,\n  { {0xf794008b, 0x625c009d, 0x81de0044, 0x00000000}},  //   _зарэ, _réor, _তয়_,\n  { {0xe0d901f9, 0x32d10011, 0x64483e23, 0x00000000}},  //   ови_, _váy_, _endi,\n  { {0x645a0142, 0x320d3e24, 0x6e3602d4, 0x00000000}},  //   _foti, rgey_, _rayb,\n  { {0x7e6d0047, 0x7649000c, 0x00000000, 0x00000000}},  //   _alap, _hney,   ,\n  { {0x765b1259, 0x6e3600b4, 0x7e6d01c3, 0x00000000}},  //   _kouy, _payb, _blap,\n  { {0x7e6d002b, 0x645a008d, 0x68f60016, 0x00000000}},  //   _clap, _zoti, ysyd,\n  { {0x20180129, 0x6448000c, 0x81c30044, 0x00000000}},  //   òric_, _yndi, ্রহ_,\n  { {0x3f690545, 0x00000000, 0x00000000, 0x00000000}},  //   _мило_,   ,   ,\n  { {0xfaa6007e, 0x38b401a2, 0xda660439, 0x00000000}},  //   даво, näre_, واري,\n  { {0x4cdd0055, 0x765b01aa, 0x1e95007e, 0x00000000}},  //   _বিরু, _nouy, _прыр,\n  { {0xfaa3007c, 0x38b4010f, 0x69d60023, 0x00000000}},  // [ec80] тато, häre_, rcye,\n  { {0x69a20061, 0x68f60007, 0x65620020, 0x00000000}},  //   _कुणी, rsyd, vyoh,\n  { {0x765b03eb, 0x645a0181, 0xdb2400b0, 0x00000000}},  //   _bouy, _roti, äräs,\n  { {0x9f470224, 0x645a16c7, 0x26dc0089, 0x00000000}},  //   _není_, _soti, īvo_,\n  { {0x645a3e25, 0xb9030044, 0x6aa300c4, 0x00000000}},  //   _poti, _নয়_, _ênfa,\n  { {0x65620009, 0xd467011e, 0xf1b90089, 0x00000000}},  //   ryoh, миче_, nešu_,\n  { {0x645a0065, 0x765b01aa, 0xb87b000c, 0x00000000}},  //   _voti, _fouy, _stíg,\n  { {0x32b70054, 0xd2500054, 0x765b0173, 0x00000000}},  //   ودية_, انة_, _gouy,\n  { {0x645a01ca, 0x902a00e2, 0x00000000, 0x00000000}},  //   _toti, оцна_,   ,\n  { {0x7e6d010a, 0x644820e9, 0x15f8007d, 0x00000000}},  //   _slap, _undi, ुलकर_,\n  { {0xd9ee00e8, 0x7e6d0035, 0xa06700ed, 0x00000000}},  //   जरात_, _plap, фаќа_,\n  { {0x78720190, 0x625c009d, 0x81e80044, 0x00000000}},  //   _hævd, _géop, _বাক_,\n  { {0x859b0049, 0x7e6d01c3, 0x00000000, 0x00000000}},  //   ַשלו, _vlap,   ,\n  { {0x80d50044, 0x7860006b, 0x212601a3, 0x00000000}},  //   _দিচ্, _mövs, _ipoh_,\n  { {0x20190163, 0x260f013d, 0x00000000, 0x00000000}},  //   əsi_, _डाली_,   ,\n  { {0x63a800f6, 0x2d9e0035, 0x00000000, 0x00000000}},  //   _mydn, ştea_,   ,\n  { {0x63a826d7, 0xdff2013d, 0x00000000, 0x00000000}},  // [ec90] _lydn, _आजाद_,   ,\n  { {0x37ab026b, 0x00000000, 0x00000000, 0x00000000}},  //   отен_,   ,   ,\n  { {0x765b0e6d, 0x00000000, 0x00000000, 0x00000000}},  //   _pouy,   ,   ,\n  { {0x645e0039, 0xd7df02f4, 0x3942016c, 0x00000000}},  //   öpin, _प्रच, _frks_,\n  { {0x2a69023a, 0x9425004c, 0x5887007e, 0x00000000}},  //   mkab_, емле, _жыва,\n  { {0x344b004d, 0x94750014, 0x81e80044, 0x00000000}},  //   ючен_, رگذا, _বাগ_,\n  { {0x765b0263, 0x63a80016, 0x80de0044, 0x00000000}},  //   _touy, _cydn, _মিষ্,\n  { {0x3a39000a, 0x00000000, 0x00000000, 0x00000000}},  //   _jasp_,   ,   ,\n  { {0x1015008b, 0x3a3900fa, 0x9f47004a, 0x00000000}},  //   ньня, _masp_, _vení_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x201804bd, 0x2a69006c, 0x63a80016, 0x00000000}},  //   òria_, kkab_, _gydn,\n  { {0x3e62000c, 0x00000000, 0x00000000, 0x00000000}},  //   _nótt_,   ,   ,\n  { {0x6f1a001c, 0x78720030, 0xddc40087, 0x00000000}},  //   attc, _hæve, _bliš,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6f1a001c, 0xd00e0054, 0xf1b90089, 0x00000000}},  //   cttc, _الى_, rešu_,\n  { {0x3a3900d4, 0xddc40861, 0x00000000, 0x00000000}},  //   _casp_, _eliš,   ,\n  { {0x6e241db1, 0x26d1002d, 0x00000000, 0x00000000}},  // [eca0] _ibib, _auzo_,   ,\n  { {0x6d44023a, 0xddc40107, 0x3a390009, 0x00000000}},  //   _iria, _gliš, _easp_,\n  { {0xdbc7010e, 0x225d00d9, 0x00000000, 0x00000000}},  //   _söök, _oowk_,   ,\n  { {0x7c2e0c8f, 0xb8f60055, 0x38af01a2, 0x00000000}},  //   lebr, _সব_, büro_,\n  { {0xe53405c7, 0x7860005f, 0x63a800ab, 0x00000000}},  //   тель, _dövr, _sydn,\n  { {0x7c2e0919, 0x7c3c0023, 0xf71a007e, 0x00000000}},  //   nebr, ndrr, _нібы_,\n  { {0x39400039, 0xe7e00061, 0x68e4010e, 0x00000000}},  //   lvis_, खुणा_, lpid,\n  { {0x6d44018e, 0xdbc7006c, 0x7860006b, 0x00000000}},  //   _oria, _töök, _tövs,\n  { {0x39403e26, 0x7c2e0479, 0x68e41622, 0x00000000}},  //   nvis_, kebr, npid,\n  { {0x6f1a001c, 0x6e240009, 0xd2500123, 0x00000000}},  //   tttc, _abib, انک_,\n  { {0x6d443e27, 0xdef70551, 0x201e000c, 0x00000000}},  //   _aria, ныя_, rfti_,\n  { {0x442e0066, 0x63a4011f, 0x7860005f, 0x00000000}},  //   lef_, ğind, _mövq,\n  { {0x6d4402d5, 0x2f180047, 0x7c2e0b32, 0x00000000}},  //   _cria, ség_, febr,\n  { {0x7c2e0270, 0x6e240009, 0x394004d3, 0x00000000}},  //   gebr, _ebib, dvis_,\n  { {0x6d44006c, 0x2a692919, 0xa6e70082, 0x00000000}},  //   _eria, tkab_, _chứ,\n  { {0x442e0193, 0x6d4400f8, 0x5d850025, 0x00000000}},  //   hef_, _fria, _للعل,\n  { {0xf80701fb, 0x6d44002a, 0x394005b7, 0x00000000}},  // [ecb0] ечен, _gria, gvis_,\n  { {0x2a693e28, 0x6e3d00ea, 0x442e00ea, 0x00000000}},  //   skab_, ldsb, jef_,\n  { {0x442e04db, 0x39400190, 0x7d1d2156, 0x00000000}},  //   def_, avis_, ltss,\n  { {0x6e3d000c, 0x68f2000c, 0x7872068f, 0x00000000}},  //   ndsb, úkdó, _ræve,\n  { {0x442e3e29, 0xddec0049, 0x6e3d0116, 0x00000000}},  //   fef_, פֿאָ, idsb,\n  { {0x6aad0ce3, 0x26d10020, 0x62823e2a, 0x00000000}},  //   llaf, _tuzo_, _amoo,\n  { {0xe2990c27, 0x00000000, 0x00000000, 0x00000000}},  //   мак_,   ,   ,\n  { {0xc24501fe, 0x6aad0fcf, 0x6e3d0bbc, 0x00000000}},  //   тник, nlaf, jdsb,\n  { {0x38b40039, 0x29090030, 0x9f45263c, 0x00000000}},  //   lära_, nraa_, mblé_,\n  { {0x6aad010f, 0x78720190, 0xa4d403e8, 0x00000000}},  //   hlaf, _tæve, _софі,\n  { {0x68e4002d, 0x44250460, 0x6d440051, 0x00000000}},  //   zpid, _ibl_, _sria,\n  { {0x6d440027, 0x7d1d010f, 0x442500f8, 0x00000000}},  //   _pria, ftss, _hbl_,\n  { {0x61e930ad, 0x7c2e0146, 0x427a0049, 0x00000000}},  //   mbel, tebr, _קאנג,\n  { {0xab2a2210, 0x44250253, 0x69dd0190, 0x00000000}},  //   мога_, _jbl_, _afse,\n  { {0x4425009f, 0x7d1d054e, 0x2c740039, 0x00000000}},  //   _mbl_, atss, _rädd_,\n  { {0xf2d2007b, 0x61e90270, 0x6d44038f, 0x00000000}},  //   שען_, nbel, _tria,\n  { {0x6d4404f8, 0x61e90058, 0x0c9400a1, 0x00000000}},  // [ecc0] _uria, ibel, _مددگ,\n  { {0x68e4022b, 0x44250022, 0xa6e70082, 0x00000000}},  //   rpid, _nbl_, _thứ,\n  { {0x8a060b86, 0x68e42c9b, 0x39401a96, 0x00000000}},  //   _изне, spid, svis_,\n  { {0x9f4c0b33, 0x2f5a0049, 0x68e4006c, 0x00000000}},  //   nadá_, ודענ, ppid,\n  { {0xceb300b3, 0x442e012d, 0x442501a3, 0x00000000}},  //   ביא_, tef_, _bbl_,\n  { {0x628200ab, 0x44250048, 0x61e90c4c, 0x00000000}},  //   _smoo, _cbl_, ebel,\n  { {0x442e018e, 0x44250093, 0x9f4e00c4, 0x00000000}},  //   ref_, _dbl_, _tefé_,\n  { {0x442e0343, 0x3263007c, 0x44252a46, 0x00000000}},  //   sef_, итыв, _ebl_,\n  { {0x28d802f4, 0x442e0197, 0x361b009b, 0x00000000}},  //   _भूमि, pef_, _קומד,\n  { {0xdefa0783, 0x9f4c0129, 0xb35600a1, 0x00000000}},  //   мым_, tadà_, _لیتا_,\n  { {0x7bdc0009, 0xbebd01c5, 0x00000000, 0x00000000}},  //   dcru, ntīg,   ,\n  { {0x91e600e3, 0x7d1d01c9, 0x83fc0091, 0x00000000}},  //   _роде, ttss, _dođe,\n  { {0x6e3d0479, 0x00000000, 0x00000000, 0x00000000}},  //   rdsb,   ,   ,\n  { {0x7d1d101b, 0x00000000, 0x00000000, 0x00000000}},  //   rtss,   ,   ,\n  { {0x7b640088, 0x00000000, 0x00000000, 0x00000000}},  //   атте,   ,   ,\n  { {0xb5fd0626, 0x6a78000c, 0x29090052, 0x00000000}},  //   _koše, _líff, traa_,\n  { {0xd75901ef, 0x3ea90169, 0x2c1b00e8, 0x00000000}},  // [ecd0] کلات_, _ikat_, _बापू_,\n  { {0xb76704dd, 0x38b400f8, 0x00000000, 0x00000000}},  //   ктей, tära_,   ,\n  { {0x75293e2b, 0x61e9007f, 0x9f450197, 0x00000000}},  //   _spez, ybel, falù_,\n  { {0x44250061, 0x24f901ab, 0xb9e40088, 0x00000000}},  //   _sbl_, енды_, _віри,\n  { {0x44253b0d, 0xfd1f0197, 0x248701ee, 0x00000000}},  //   _pbl_, ntì_, tinm_,\n  { {0x61e91661, 0xa8790049, 0x38b4010e, 0x00000000}},  //   wbel, _טאָר, pära_,\n  { {0x82f4008b, 0x61e9165e, 0xe7300464, 0x00000000}},  //   ачыц, tbel, _وصف_,\n  { {0x83fc0119, 0x6d410089, 0x61e900bb, 0x00000000}},  //   _rođe, ālaj, ubel,\n  { {0x61e90127, 0x7bdc0203, 0x00000000, 0x00000000}},  //   rbel, ycru,   ,\n  { {0x61e6011f, 0x61e90056, 0x5f040164, 0x00000000}},  //   ıkla, sbel, _विश्_,\n  { {0x6aa400e7, 0x82151298, 0x61e900d9, 0x00000000}},  //   yoif, _مواص, pbel,\n  { {0x83fc0091, 0xcee800a6, 0x2d9e0c4f, 0x00000000}},  //   _vođe, کرین_, ştem_,\n  { {0x78a5182d, 0x7bdc00d9, 0xd0090745, 0x00000000}},  //   kohv, tcru, _зеле_,\n  { {0x7f41001c, 0x6abe007d, 0x7ae70009, 0x00000000}},  //   pvlq, ्द्र, fpjt,\n  { {0x9f4c0802, 0x00000000, 0x00000000, 0x00000000}},  //   padá_,   ,   ,\n  { {0x7bdc106f, 0x7afc0009, 0x6a710ccc, 0x00000000}},  //   scru, rsrt, _påfa,\n  { {0x394605f4, 0x00000000, 0x00000000, 0x00000000}},  // [ece0] íos_,   ,   ,\n  { {0xb86600a1, 0x6aa40068, 0x00000000, 0x00000000}},  //   دارو, soif,   ,\n  { {0x5c370097, 0xbc1b0049, 0xf3f10082, 0x00000000}},  //   _גרין_, _אויש, _gọi_,\n  { {0xbebd0089, 0x00000000, 0x00000000, 0x00000000}},  //   rtīg,   ,   ,\n  { {0x7c3e0471, 0x628908e0, 0xbebd0089, 0x00000000}},  //   _kapr, dieo, stīg,\n  { {0x9f47014a, 0x64a33e2c, 0x81f00044, 0x00000000}},  //   _genç_, бача, _টাইপ_,\n  { {0x7c3e015e, 0x29120ee4, 0x9326023c, 0x00000000}},  //   _mapr, luya_, ارتن,\n  { {0x7c3e0263, 0x26cd0082, 0x25ad0173, 0x00000000}},  //   _lapr, _gieo_, _fyel_,\n  { {0x2912014a, 0x9237003b, 0x00000000, 0x00000000}},  //   nuya_, учју_,   ,\n  { {0x3ea93e2d, 0x6ed80061, 0x2018010e, 0x00000000}},  //   _skat_, _नंदु, üri_,\n  { {0xa2e616c4, 0x2ba4007d, 0x0857009b, 0x00000000}},  //   _соед, _खुला, אבים_,\n  { {0x443e03a1, 0x38af1e00, 0xfd1f0197, 0x00000000}},  //   _hat_, türk_, ttì_,\n  { {0x5c072b26, 0x443e0127, 0xa06a3e2e, 0x00000000}},  //   лява, _kat_, _пада_,\n  { {0x7c3e0412, 0xdfcf0054, 0xfd1f0026, 0x00000000}},  //   _capr, _فيه_, rtì_,\n  { {0x7c3e0263, 0x8cd5013d, 0xfd1f0026, 0x00000000}},  //   _dapr, _यूरो, stì_,\n  { {0x443e0046, 0x5a3500ed, 0x00000000, 0x00000000}},  //   _lat_, јнат,   ,\n  { {0x57f500ec, 0x443e0145, 0x787201e5, 0x00000000}},  // [ecf0] ипат, _oat_, _sæva,\n  { {0x29071032, 0x443e3e2f, 0x13cc0055, 0x00000000}},  //   čna_, _nat_, রুয়,\n  { {0x9f4700f6, 0x9994012d, 0x00000000, 0x00000000}},  //   _venç_, đešu_,   ,\n  { {0x29121ebf, 0x6e3f002b, 0x7ae50023, 0x00000000}},  //   buya_, _jaqb, _itht,\n  { {0x443e0238, 0x7c3e014a, 0xe3b80477, 0x00000000}},  //   _bat_, _yapr, _azı_,\n  { {0x443e3e30, 0x044501ee, 0x00000000, 0x00000000}},  //   _cat_, рекн,   ,\n  { {0x443e3e31, 0xc3040025, 0x628900bb, 0x00000000}},  //   _dat_, مبيو, tieo,\n  { {0x443e00ab, 0x4105003b, 0x78720030, 0x00000000}},  //   _eat_, азив, _jævn,\n  { {0x5455007e, 0x62890179, 0x00000000, 0x00000000}},  //   _кват, rieo,   ,\n  { {0x753b0007, 0x443e375b, 0xe4a7003b, 0x00000000}},  //   _isuz, _gat_, _србо,\n  { {0x7c3e0066, 0x2912013f, 0x00000000, 0x00000000}},  //   _rapr, zuya_,   ,\n  { {0x7c3e2e43, 0x78720030, 0x443e00b5, 0x00000000}},  //   _sapr, _nævn, _zat_,\n  { {0x7c3e010a, 0x61fb008e, 0xa075007e, 0x00000000}},  //   _papr, maul, _выйш,\n  { {0x443e0129, 0xb87b3e32, 0x61fb17f6, 0x00000000}},  //   _xat_, _stín, laul,\n  { {0x6b630517, 0x6a78000c, 0x1a660014, 0x00000000}},  //   окра, _lífe, لیدی_,\n  { {0x7c3e12eb, 0x8f9a00b3, 0x29123e33, 0x00000000}},  //   _wapr, _ביצי, tuya_,\n  { {0xe9d72cb4, 0x7c3e0381, 0x9f450051, 0x00000000}},  // [ed00] рку_, _tapr, iblí_,\n  { {0x61fb1a91, 0xb87b0051, 0x29120095, 0x00000000}},  //   haul, _dtío, ruya_,\n  { {0x7eb61748, 0x7e640d17, 0xb87b004a, 0x00000000}},  //   nápo, _koip, _etío,\n  { {0x0bb7019b, 0xe9a60242, 0x291211f3, 0x00000000}},  //   _כלים_, _вамп, puya_,\n  { {0x443e0995, 0x09b00044, 0xceb300b3, 0x00000000}},  //   _pat_, _কলকা, קיד_,\n  { {0x443e006b, 0x290216d0, 0xddc400b4, 0x00000000}},  //   _qat_, _ivka_, _bliź,\n  { {0x443e3e34, 0x61fb0866, 0xd467012b, 0x00000000}},  //   _vat_, faul, рије_,\n  { {0x443e06b2, 0x442000b9, 0x83fc016c, 0x00000000}},  //   _wat_, ři_, _dođa,\n  { {0x443e01d5, 0x60f7008b, 0x27f80168, 0x00000000}},  //   _tat_, аныя_, _kern_,\n  { {0x2900021e, 0x69b90061, 0x26d82301, 0x00000000}},  //   isia_, ्धती, _kuro_,\n  { {0x75220047, 0x1df90147, 0x26d825c0, 0x00000000}},  //   ltoz, лены_, _juro_,\n  { {0xb5fd02aa, 0x2900021e, 0x26d80555, 0x00000000}},  //   _koša, ksia_, _muro_,\n  { {0xf27b0104, 0x76400006, 0x75220232, 0x00000000}},  //   _בראש, _mamy, ntoz,\n  { {0x7ebd00f4, 0x26d80181, 0x764000e0, 0x00000000}},  //   dépe, _ouro_, _lamy,\n  { {0xbebd001e, 0x26d800e0, 0x2900010e, 0x00000000}},  //   rtīb, _nuro_, esia_,\n  { {0xbebd001e, 0xb87b00d6, 0x00000000, 0x00000000}},  //   stīb, _etíl,   ,\n  { {0xdebc00b6, 0x27f801a2, 0x7ebd0010, 0x00000000}},  // [ed10] _במהל, _bern_, gépe,\n  { {0x085401fb, 0x26d80112, 0x06de0044, 0x00000000}},  //   овую, _buro_, _ডিজি,\n  { {0xec3600b6, 0x26d83e35, 0x6a78000c, 0x00000000}},  //   _האתר_, _curo_, _sífe,\n  { {0x26d8004a, 0x83fc0091, 0x36180088, 0x00000000}},  //   _duro_, _rođa, ицію_,\n  { {0x7640000a, 0x27f801a2, 0x61fb0068, 0x00000000}},  //   _damy, _fern_, vaul,\n  { {0xb5fd3e36, 0x27f8010f, 0xe81e006e, 0x00000000}},  //   _doša, _gern_, _पाया_,\n  { {0xe7ed001c, 0x96f801f9, 0xf794007e, 0x00000000}},  //   _च्या_, _вест_, _дарэ,\n  { {0x76400006, 0xeb98009b, 0x05870072, 0x00000000}},  //   _gamy, ידור_, _кузм,\n  { {0x61fb04bd, 0x75220035, 0x00000000, 0x00000000}},  //   raul, ctoz,   ,\n  { {0x205503f3, 0xcea9007b, 0xd3a7022a, 0x00000000}},  //   стир, _װי_, _креп,\n  { {0x61fb0e30, 0x5058007e, 0x644100e0, 0x00000000}},  //   paul, ршыя_, _iali,\n  { {0x64430239, 0xed5a2672, 0x2900117c, 0x00000000}},  //   ldni, гом_, ysia_,\n  { {0x6441006a, 0xdd920084, 0x3f8b0036, 0x00000000}},  //   _kali, سوس_, ńcu_,\n  { {0x64430a5d, 0x9f473e37, 0x64413e38, 0x00000000}},  //   ndni, _menú_, _jali,\n  { {0x64413e39, 0x394b3e3a, 0x00000000, 0x00000000}},  //   _mali, _arcs_,   ,\n  { {0x64410e6a, 0x225f3604, 0x29001e17, 0x00000000}},  //   _lali, njuk_, tsia_,\n  { {0x29003e3b, 0x27f80251, 0x76400006, 0x00000000}},  // [ed20] usia_, _pern_, _ramy,\n  { {0x644103dd, 0x26d8011c, 0x29000065, 0x00000000}},  //   _nali, _puro_, rsia_,\n  { {0x64430039, 0x27f80056, 0xf3f80089, 0x00000000}},  //   ddni, _vern_, _reģ_,\n  { {0xb5fd021d, 0x64413e3c, 0x29000ac1, 0x00000000}},  //   _poša, _aali, psia_,\n  { {0x64413e3d, 0x7860005f, 0x27f80190, 0x00000000}},  //   _bali, _mövz, _tern_,\n  { {0x64412731, 0x75220047, 0x26d8011c, 0x00000000}},  //   _cali, rtoz, _turo_,\n  { {0x6441010a, 0x08770049, 0x672e0022, 0x00000000}},  //   _dali, _פעלט_, _upbj,\n  { {0xe6960054, 0x7d040209, 0x20073e3e, 0x00000000}},  //   _الرد, _ovis, _adni_,\n  { {0xb5fd0e00, 0x315a0025, 0x00000000, 0x00000000}},  //   _košn, اجعة_,   ,\n  { {0x64413e3f, 0x0eea0088, 0x00000000, 0x00000000}},  //   _gali, льми_,   ,\n  { {0x7d0419fa, 0x442c3e40, 0xb5fd21e8, 0x00000000}},  //   _avis, _ibd_, _mošn,\n  { {0xc3b70049, 0x644139e2, 0x00000000, 0x00000000}},  //   _פלאץ_, _zali,   ,\n  { {0x6441000b, 0x9f470207, 0xddcd1288, 0x00000000}},  //   _yali, _menù_, _blaš,\n  { {0x6441006b, 0x7d041288, 0x9f45004a, 0x00000000}},  //   _xali, _dvis, galó_,\n  { {0x5f9302a8, 0xeabf001d, 0x7d04008e, 0x00000000}},  //   _ништ, _phù_, _evis,\n  { {0x64430059, 0x00000000, 0x00000000, 0x00000000}},  //   zdni,   ,   ,\n  { {0xb5fd037e, 0xddcd041a, 0x6e2d006a, 0x00000000}},  // [ed30] _bošn, _flaš, _ibab,\n  { {0x81bd0044, 0x6d4d006c, 0x442c200a, 0x00000000}},  //   _আলম_, _iraa, _nbd_,\n  { {0x64410006, 0xeabf0011, 0x442700fa, 0x00000000}},  //   _rali, _thù_, vfn_,\n  { {0x442c3851, 0x6d4d095c, 0x3a2b0009, 0x00000000}},  //   _abd_, _kraa, _ubcp_,\n  { {0xa3cb02d2, 0x442c3e41, 0x6e2d0c97, 0x00000000}},  //   रेन_, _bbd_, _mbab,\n  { {0x442c0875, 0x68ed322e, 0x64410312, 0x00000000}},  //   _cbd_, mpad, _qali,\n  { {0x64413e42, 0x39490089, 0x68ed0d3f, 0x00000000}},  //   _vali, lvas_, lpad,\n  { {0x64410be3, 0x6d4d0abf, 0x68ed3e43, 0x00000000}},  //   _wali, _oraa, opad,\n  { {0x64413e44, 0xe0d6008b, 0x68ed1eca, 0x00000000}},  //   _tali, овы_, npad,\n  { {0xaf050364, 0x6e2d0061, 0x68ed1261, 0x00000000}},  //   опол, _abab, ipad,\n  { {0x7d043250, 0x3949006c, 0x6d4d010e, 0x00000000}},  //   _svis, hvas_, _araa,\n  { {0x6d4d0007, 0xddcd00ca, 0x7e7d05af, 0x00000000}},  //   _braa, _slaš, ghsp,\n  { {0xddcd06ed, 0x763a007b, 0x628b0009, 0x00000000}},  //   _plaš, בערג, _imgo,\n  { {0x6d4d049b, 0xdfdb005e, 0x00000000, 0x00000000}},  //   _draa, _съд_,   ,\n  { {0xbb4300a5, 0x6d4d3e45, 0x2a60002b, 0x00000000}},  //   мерк, _eraa, tjib_,\n  { {0x7e7d010f, 0x6d4d00bb, 0x7d04141a, 0x00000000}},  //   chsp, _fraa, _tvis,\n  { {0x6d4d049b, 0x68ed011c, 0x7d04068f, 0x00000000}},  // [ed40] _graa, gpad, _uvis,\n  { {0x6609041a, 0xbebd0089, 0x00000000, 0x00000000}},  //   _adek, ntīn,   ,\n  { {0x442c0939, 0xa3cb0309, 0x68ed3e46, 0x00000000}},  //   _rbd_, रेम_, apad,\n  { {0xd62a0cee, 0x442c0f02, 0x8f9a009b, 0x00000000}},  //   роде_, _sbd_, ביעי,\n  { {0x44f3008b, 0x14f3007e, 0xbcfb0010, 0x00000000}},  //   дпіс, дзіў, lyér,\n  { {0x3d120061, 0xddc4012d, 0x38b400b0, 0x00000000}},  //   _तिने_, _oliž, käri_,\n  { {0xbcfb0010, 0x00000000, 0x00000000, 0x00000000}},  //   nyér,   ,   ,\n  { {0xfbd300b6, 0xf48402fd, 0x442c0022, 0x00000000}},  //   ותו_, _کاری, _wbd_,\n  { {0xa2da0164, 0x93bc001a, 0xc05a007e, 0x00000000}},  //   _पूर्, _scăd, аін_,\n  { {0xddc405e8, 0xa3560025, 0x1957009b, 0x00000000}},  //   _bliž, _وخاص, קביל_,\n  { {0xb7db00a3, 0x3ce90161, 0x7e7d0275, 0x00000000}},  //   יקיי, _stav_, thsp,\n  { {0x6d4d0343, 0x3949010a, 0xe29202fd, 0x00000000}},  //   _praa, yvas_, _غذا_,\n  { {0x2eec004a, 0x6ab63e47, 0x00000000, 0x00000000}},  //   spdf_, dlyf,   ,\n  { {0x6d4d015c, 0x9f5e0023, 0x00000000, 0x00000000}},  //   _vraa, natë_,   ,\n  { {0x6d4d040f, 0x628b005b, 0x00000000, 0x00000000}},  //   _wraa, _ymgo,   ,\n  { {0x6d4d109a, 0x68ed00ca, 0x6e2d00e7, 0x00000000}},  //   _traa, tpad, _ubab,\n  { {0xb5fd057a, 0xdd9104e8, 0x38c90123, 0x00000000}},  // [ed50] _došl, _سود_, مائی_,\n  { {0x68ed04be, 0x3949071d, 0xa3cb0316, 0x00000000}},  //   rpad, rvas_, रेड_,\n  { {0x3707007e, 0x3949127b, 0x9f5e0023, 0x00000000}},  //   ючав, svas_, datë_,\n  { {0x68ed0039, 0xcb120049, 0x67253e48, 0x00000000}},  //   ppad, _אלט_, rthj,\n  { {0xd1260054, 0x6609008d, 0x73e50265, 0x00000000}},  //   _ثم_, _vdek, полз,\n  { {0x81c20044, 0x9f5e25f6, 0x00000000, 0x00000000}},  //   ্ডা_, ratê_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x9f5e01aa, 0xb5fd1878, 0x66091ea2, 0x00000000}},  //   matè_, _košm, _udek,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xe3b30151, 0x032b0088, 0x9f8518bf, 0x00000000}},  //   _قرض_, _відп_, згод,\n  { {0x9f5e0263, 0x00000000, 0x00000000, 0x00000000}},  //   natè_,   ,   ,\n  { {0xbebd0089, 0x6da6003b, 0x2d820a3a, 0x00000000}},  //   stīn, зима, tzke_,\n  { {0x31580025, 0xee370088, 0x1c20013d, 0x00000000}},  //   _وجهة_, чня_, _बादल_,\n  { {0x9f5e01aa, 0x9f05006d, 0x629b0419, 0x00000000}},  //   katè_, _فوتو, lnuo,\n  { {0xb5fd086e, 0x2d820f88, 0xfbc3044b, 0x00000000}},  //   _pošl, szke_, ебро,\n  { {0xe9da01b3, 0xada63e49, 0xe81e0061, 0x00000000}},  //   ска_, _найл, _पाहा_,\n  { {0x7afb0521, 0x6ab608e6, 0xa3cb01f5, 0x00000000}},  // [ed60] ćuta, rlyf, रेत_,\n  { {0x49990088, 0x29123e4a, 0xb904007d, 0x00000000}},  //   іття_, rrya_, _पं_,\n  { {0x25bf0489, 0xbb4a0025, 0xc2f00044, 0x00000000}},  //   _azul_, _الجن_, _টিভি_,\n  { {0x3e7b0065, 0xb6cb00a1, 0x38b4010e, 0x00000000}},  //   _këta_, مانے_, järv_,\n  { {0x48e32e54, 0x9f5e0065, 0xb8080044, 0x00000000}},  //   _появ, tatë_, র্গত_,\n  { {0xb87b004a, 0xd7f20025, 0x798400e7, 0x00000000}},  //   _cuíd, _سكر_, mziw,\n  { {0x9f5e0065, 0x4367300e, 0xddc401f3, 0x00000000}},  //   ratë_, зајн_, _aliż,\n  { {0x394201ee, 0x3ea000d9, 0x629b05fc, 0x00000000}},  //   _ksks_, _njit_, gnuo,\n  { {0x79841519, 0x93bc00e5, 0x9f5e0023, 0x00000000}},  //   nziw, _abăt, patë_,\n  { {0x443811ea, 0x2fd80637, 0x43463e4b, 0x00000000}},  //   _úr_, ørg_, _незв,\n  { {0xdfd00380, 0x00000000, 0x00000000, 0x00000000}},  //   ضيح_,   ,   ,\n  { {0x66020020, 0xde59007e, 0x00000000, 0x00000000}},  //   naok, цамі_,   ,\n  { {0x9f5e01aa, 0x6aa3052a, 0x39420087, 0x00000000}},  //   zatè_, _ínfi, _nsks_,\n  { {0x6ab502fb, 0x386a001c, 0x79840036, 0x00000000}},  //   ंत्र, _nobr_, dziw,\n  { {0x3d12001c, 0x160c0061, 0x6602087c, 0x00000000}},  //   _तिथे_, हणार_, kaok,\n  { {0xfd4700a1, 0x9f5e01aa, 0x69da001a, 0x00000000}},  //   _ٹیسٹ_, vatè_, _şter,\n  { {0xf993007a, 0xdd9200a1, 0x6aad3e4c, 0x00000000}},  // [ed70] ربر_, _لوٹ_, roaf,\n  { {0x201e010a, 0x3eb93e4d, 0x00000000, 0x00000000}},  //   ngti_, llst_,   ,\n  { {0x44e23e4e, 0xb87b00c4, 0x386a00ca, 0x00000000}},  //   _að_, _ruíd, _dobr_,\n  { {0x9f5e01aa, 0x19590147, 0x660204e7, 0x00000000}},  //   ratè_, _дамы_, gaok,\n  { {0x04450200, 0xd46902ea, 0x00000000, 0x00000000}},  //   делн, жиле_,   ,\n  { {0x7eb62678, 0x3eb901a2, 0x629e009d, 0x00000000}},  //   rápi, hlst_, épon,\n  { {0xb5fd050f, 0x9f5e1396, 0xe695007c, 0x00000000}},  //   _jošk, baté_, _живы,\n  { {0xb5fd01d9, 0xd5ae00a1, 0x9f5c00c4, 0x00000000}},  //   _mošk, اہے_, _tevê_,\n  { {0x81b508b7, 0xf4f700a1, 0xb5fd00ca, 0x00000000}},  //   ছেন_, _رواں_, _lošk,\n  { {0x3ea001c3, 0x3eb201c3, 0x00000000, 0x00000000}},  //   _sjit_, _skyt_,   ,\n  { {0x4abf0061, 0x629b007f, 0x00000000, 0x00000000}},  //   ्षाव, pnuo,   ,\n  { {0x38b400f8, 0x628027a4, 0x00000000, 0x00000000}},  //   lärt_, chmo,   ,\n  { {0x61450e05, 0xd009007c, 0x00000000, 0x00000000}},  //   _цела, _деле_,   ,\n  { {0x7afb0107, 0x7d060635, 0xb5fd0340, 0x00000000}},  //   ćutn, rsks, _bošk,\n  { {0x09e63bf0, 0xebe3005c, 0x9f5c000a, 0x00000000}},  //   добн, тосп, _nevè_,\n  { {0xc332019b, 0x9f473e4f, 0x3ea00065, 0x00000000}},  //   כול_, _menü_, _ujit_,\n  { {0x63a4011f, 0x6e243c70, 0x00000000, 0x00000000}},  // [ed80] ğini, _icib,   ,\n  { {0x63a43e50, 0x6d4404be, 0x660200e7, 0x00000000}},  //   şini, _isia, waok,\n  { {0x7c3c0023, 0x9f5e009d, 0x66020095, 0x00000000}},  //   merr, taté_, taok,\n  { {0x7c3c022b, 0x386a0016, 0x7c2e00d9, 0x00000000}},  //   lerr, _wobr_, lfbr,\n  { {0x66020011, 0xa3cb02d2, 0x321f098e, 0x00000000}},  //   raok, रेस_, dguy_,\n  { {0x7c3c0968, 0x6d4400e7, 0x00000000, 0x00000000}},  //   nerr, _msia,   ,\n  { {0x6280008d, 0x224600d9, 0x00000000, 0x00000000}},  //   thmo, _paok_,   ,\n  { {0x7c3c00db, 0x00000000, 0x00000000, 0x00000000}},  //   herr,   ,   ,\n  { {0x7c3c002d, 0x142600ed, 0x68e4006b, 0x00000000}},  //   kerr, _одам, nqid,\n  { {0x62800065, 0x7c3c0065, 0x81c20044, 0x00000000}},  //   shmo, jerr, ্ডল_,\n  { {0x3817019b, 0x7c3c0dcc, 0x6d440e2d, 0x00000000}},  //   וקים_, derr, _asia,\n  { {0x64482c9d, 0x442e0090, 0x443c269f, 0x00000000}},  //   _hadi, lff_, lev_,\n  { {0x7c3c00ab, 0xdbc7006b, 0x442e0009, 0x00000000}},  //   ferr, _köçk, off_,\n  { {0xb5fd3692, 0x7c3c0239, 0x6448003f, 0x00000000}},  //   _pošk, gerr, _jadi,\n  { {0x6448000b, 0xe2070036, 0x6d443e51, 0x00000000}},  //   _madi, spół_, _esia,\n  { {0x443c013e, 0x644807ff, 0x320409b6, 0x00000000}},  //   hev_, _ladi, namy_,\n  { {0x7c3c3e52, 0x645a00d4, 0x5cc719c9, 0x00000000}},  // [ed90] berr, _onti, _осоз,\n  { {0x443c3d7f, 0x7c3c3e53, 0x3e7b008d, 0x00000000}},  //   jev_, cerr, _këto_,\n  { {0x7d1d021e, 0xd148001d, 0x443c3e54, 0x00000000}},  //   luss, _lễ_, dev_,\n  { {0xb5fd0027, 0x442e0007, 0x6e3d000c, 0x00000000}},  //   _koši, eff_, nesb,\n  { {0x6448022b, 0x442e0061, 0xe3b80279, 0x00000000}},  //   _badi, fff_, _ayı_,\n  { {0xdfc6007a, 0x6448029a, 0x443c006c, 0x00000000}},  //   _مي_, _cadi, gev_,\n  { {0xb5fd0209, 0x6448002d, 0x66003e55, 0x00000000}},  //   _loši, _dadi, _femk,\n  { {0xb1450175, 0x645a3e56, 0x7c3c3e57, 0x00000000}},  //   енил, _enti, zerr,\n  { {0x7c2523d9, 0x81d70055, 0x644801a3, 0x00000000}},  //   _ochr, ়ুন_, _fadi,\n  { {0x64482291, 0x7d1d11ef, 0xd148001d, 0x00000000}},  //   _gadi, duss, _dễ_,\n  { {0x7c3c0d3e, 0x3ce01e83, 0x44250f5d, 0x00000000}},  //   verr, _suiv_, _icl_,\n  { {0x32040036, 0x2909290f, 0x7c250fcc, 0x00000000}},  //   camy_, ksaa_, _achr,\n  { {0x64480b1e, 0x7d1d006c, 0x61e9013f, 0x00000000}},  //   _yadi, guss, mcel,\n  { {0x8fa51deb, 0x6448006b, 0x61e930c7, 0x00000000}},  //   _пале, _xadi, lcel,\n  { {0x7c3c0032, 0x44251575, 0x7d1d01a2, 0x00000000}},  //   rerr, _mcl_, auss,\n  { {0x61e92004, 0x7c3c0948, 0x443c00b9, 0x00000000}},  //   ncel, serr, zev_,\n  { {0x443c005f, 0x442e00d4, 0x7c3c1103, 0x00000000}},  // [eda0] yev_, yff_, perr,\n  { {0x20053e58, 0x39400046, 0x290b0146, 0x00000000}},  //   nali_, rwis_, _dvca_,\n  { {0x64480119, 0xabfb00b6, 0xf77201b7, 0x00000000}},  //   _radi, _מהיר, داء_,\n  { {0x6448122b, 0x2005000b, 0xf5063bee, 0x00000000}},  //   _sadi, hali_, ездо,\n  { {0x20053193, 0x64480006, 0x443c01d9, 0x00000000}},  //   kali_, _padi, tev_,\n  { {0x2005049e, 0x64480312, 0xd1480082, 0x00000000}},  //   jali_, _qadi, _rễ_,\n  { {0x20051634, 0x64481a9d, 0x443c0239, 0x00000000}},  //   dali_, _vadi, rev_,\n  { {0xcb1300b6, 0x443c010e, 0x2166003b, 0x00000000}},  //   אלה_, sev_, етог,\n  { {0x64483e59, 0x44250009, 0x20050095, 0x00000000}},  //   _tadi, _fcl_, fali_,\n  { {0x200501d5, 0x645a3e5a, 0x64480020, 0x00000000}},  //   gali_, _unti, _uadi,\n  { {0x7d1d2e94, 0xe9df008e, 0x6e3d23c5, 0x00000000}},  //   wuss, _baúl_, tesb,\n  { {0x7c2504e5, 0xb5fd0059, 0x7d1d0ac2, 0x00000000}},  //   _schr, _poši, tuss,\n  { {0x2005181e, 0x6e3d00bb, 0xa1130076, 0x00000000}},  //   bali_, resb, _مونت,\n  { {0x20050198, 0x7d1d00b0, 0x6e3d1aff, 0x00000000}},  //   cali_, russ, sesb,\n  { {0x4abf0061, 0x7d1d0052, 0x9f4c0010, 0x00000000}},  //   ्षलव, suss, radó_,\n  { {0x7d1d00b0, 0xb5fd016e, 0x00000000, 0x00000000}},  //   puss, _toši,   ,\n  { {0x38b40039, 0x04060044, 0x00000000, 0x00000000}},  // [edb0] värr_, _রানী_,   ,\n  { {0xd6d90036, 0x61e901c5, 0x00000000, 0x00000000}},  //   _sił_, zcel,   ,\n  { {0x290900b0, 0x7d0d01e5, 0x61e9005b, 0x00000000}},  //   ssaa_, _hvas, ycel,\n  { {0x7d0d040d, 0x00000000, 0x00000000, 0x00000000}},  //   _kvas,   ,   ,\n  { {0x61e923f6, 0x20050095, 0x44250253, 0x00000000}},  //   vcel, yali_, _pcl_,\n  { {0x61e91a8f, 0x9f45009d, 0x00000000, 0x00000000}},  //   wcel, sclé_,   ,\n  { {0xa3cb03d7, 0xb87b0211, 0x61e901c5, 0x00000000}},  //   रें_, _guía, tcel,\n  { {0x20053e5b, 0xa562007a, 0x2a692fe4, 0x00000000}},  //   wali_, _چگون, njab_,\n  { {0x4102007c, 0x61e901cb, 0xe9df0211, 0x00000000}},  //   азыв, rcel, _raúl_,\n  { {0x7ebd028c, 0x442510c5, 0xe9df004a, 0x00000000}},  //   léph, _ucl_, _saúl_,\n  { {0x200501d5, 0x201805e2, 0x63ba0061, 0x00000000}},  //   rali_, ória_, _gytn,\n  { {0x2c7401a2, 0xc7d6009b, 0x7ebd0068, 0x00000000}},  //   _lädt_, כותי_, néph,\n  { {0x200501d5, 0xfd1f0197, 0x66e50006, 0x00000000}},  //   pali_, guì_, _sėkl,\n  { {0x7d0d0006, 0x224d0032, 0xe1f90006, 0x00000000}},  //   _dvas, ldek_, lbų_,\n  { {0x7d0d0197, 0x2b150259, 0x09d90044, 0x00000000}},  //   _evas, льтр, ধুমা,\n  { {0x224d2a26, 0xb5fd0166, 0x6a710030, 0x00000000}},  //   ndek_, _košu, _såfr,\n  { {0x6e360009, 0x2d95007e, 0x290c0089, 0x00000000}},  // [edc0] _ibyb, _брэс, _ādas_,\n  { {0x92dc0044, 0x6d560045, 0x394d01f3, 0x00000000}},  //   তীয়_, _irya, _ġest_,\n  { {0x6a78009f, 0x394d018b, 0xc5fe0089, 0x00000000}},  //   _lífi, _šest_, ņēma_,\n  { {0x9407006b, 0x63ad019a, 0x00000000, 0x00000000}},  //   minə_, ğanl,   ,\n  { {0x63ad005d, 0x9407006b, 0x00000000, 0x00000000}},  //   şanl, linə_,   ,\n  { {0x44b3007e, 0xc44801b2, 0x69c60032, 0x00000000}},  //   абіс, عیان_, _izke,\n  { {0x9407006b, 0x00000000, 0x00000000, 0x00000000}},  //   ninə_,   ,   ,\n  { {0x6d561338, 0x225d0009, 0x6a7800f6, 0x00000000}},  //   _orya, _cnwk_, _bífi,\n  { {0x6a7800f6, 0x00000000, 0x00000000, 0x00000000}},  //   _cífi,   ,   ,\n  { {0x6a7800f6, 0x84450439, 0x63ba00d9, 0x00000000}},  //   _dífi, _مخمل, _tytn,\n  { {0x7d0d037e, 0x50d30025, 0x6d56008a, 0x00000000}},  //   _svas, جزير, _arya,\n  { {0xc7b3019b, 0xddd600b9, 0xfd1f0026, 0x00000000}},  //   יבת_, _slyš, tuì_,\n  { {0xbebd001e, 0xddc40059, 0xc27b009b, 0x00000000}},  //   ktīv, _poiš, _קרדי,\n  { {0x8f540070, 0x66e50006, 0x9407006b, 0x00000000}},  //   _منتش, _sėkm, finə_,\n  { {0x69c6022b, 0xdee3012b, 0xb5fd0091, 0x00000000}},  //   _azke, _који, _košt,\n  { {0xb87b0325, 0x00000000, 0x00000000, 0x00000000}},  //   _atíp,   ,   ,\n  { {0xf80701fb, 0xead402d3, 0xb5fd00ca, 0x00000000}},  // [edd0] вчен, роть, _mošt,\n  { {0x7e7d021f, 0x9407006b, 0x224d3e5c, 0x00000000}},  //   lksp, binə_, zdek_,\n  { {0x69c6002d, 0xe1f90006, 0x9715007e, 0x00000000}},  //   _ezke, ybų_, умец,\n  { {0xf7700380, 0x7e7d01a2, 0x9f5c013e, 0x00000000}},  //   غال_, nksp, _neví_,\n  { {0xa82502fd, 0x7ae500b0, 0x25a9101d, 0x00000000}},  //   _مکان, _huht, çal_,\n  { {0x63ad005a, 0x25a9002b, 0xd7f4007c, 0x00000000}},  //   şanm, ħal_, _взры,\n  { {0x7ae50004, 0x628200fe, 0xf8b200a0, 0x00000000}},  //   _juht, _bloo, _השם_,\n  { {0x7ae5014a, 0x23690091, 0xb5fd0c76, 0x00000000}},  //   _muht, ćaj_, _pošu,\n  { {0x20c2000c, 0xe1f90006, 0x224d0095, 0x00000000}},  //   rðin_, rbų_, rdek_,\n  { {0x9407005f, 0xddcd016e, 0x25a00051, 0x00000000}},  //   yinə_, _blaž, úile_,\n  { {0x628200ab, 0xa2f5005e, 0xb87b0051, 0x00000000}},  //   _floo, _спеч, _luío,\n  { {0xf38c0049, 0xddcd0161, 0x9407006b, 0x00000000}},  //   _קראָ, _dlaž, vinə_,\n  { {0x61fb1b20, 0x61fd000c, 0xb87b00c4, 0x00000000}},  //   mbul, ðslu, _ruín,\n  { {0x753b0061, 0x9407006b, 0x7e7d0c7c, 0x00000000}},  //   _mpuz, tinə_, ërpr,\n  { {0x30da0049, 0xddcd0087, 0x7ebd0010, 0x00000000}},  //   _אַהע, _glaž, zépi,\n  { {0x9407005f, 0xb87b002a, 0x61fb005d, 0x00000000}},  //   rinə_, _buío, nbul,\n  { {0x9407005f, 0xa81a04e1, 0x98a0037e, 0x00000000}},  // [ede0] sinə_, فتار_, ntić_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xe61a003b, 0xeb9a00ed, 0x61fb12d9, 0x00000000}},  //   еде_, _чин_, kbul,\n  { {0xa96a017f, 0x95ca06b6, 0x84e60088, 0x00000000}},  //   _зима_, нула_, годж,\n  { {0x6aa4001a, 0xe5a300aa, 0x98a00521, 0x00000000}},  //   mnif, бици, jtić_,\n  { {0x628200b5, 0xbebd0089, 0x00000000, 0x00000000}},  //   _sloo, ltīt,   ,\n  { {0x6282109a, 0xe61a3e5d, 0xf48700a2, 0x00000000}},  //   _ploo, _пдв_, دانی,\n  { {0x75d60076, 0x98a0016c, 0x2cba0022, 0x00000000}},  //   _ميزا, ftić_, _lkpd_,\n  { {0xddcd037e, 0x81dc0055, 0x83fc0363, 0x00000000}},  //   _slaž, তুন_, _anđe,\n  { {0xddcd073a, 0x83fc0521, 0x63a4006b, 0x00000000}},  //   _plaž, _vođs, şinq,\n  { {0x6aa401e5, 0x2fd800f8, 0xe475007e, 0x00000000}},  //   knif, ärg_, _тутэ,\n  { {0x91e60057, 0xddcd02db, 0xb5fd012d, 0x00000000}},  //   _соде, _vlaž, _uošt,\n  { {0x7ae508b2, 0x7e7d00ea, 0xd041006b, 0x00000000}},  //   _suht, rksp, hmlə,\n  { {0x7ae503b6, 0xa3cb0309, 0x7e7d0203, 0x00000000}},  //   _puht, रेक_, sksp,\n  { {0x8aa703f3, 0xb87b002a, 0xddcd037e, 0x00000000}},  //   град, _suío, _ulaž,\n  { {0x68e60d22, 0x00000000, 0x00000000, 0x00000000}},  //   _bukd,   ,   ,\n  { {0x38c90167, 0x764201df, 0x290f3e5e, 0x00000000}},  // [edf0] نائی_, deoy, éga_,\n  { {0x61fb013f, 0x37ab0478, 0x68e600e0, 0x00000000}},  //   zbul, нтен_, _dukd,\n  { {0x61fb3e5f, 0x61e21091, 0x00000000, 0x00000000}},  //   ybul, _ogol,   ,\n  { {0x6aa40d62, 0x635c001a, 0x61e2005b, 0x00000000}},  //   cnif, _mănă, _ngol,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x4d7c0049, 0x98a0016c, 0x61e23e60, 0x00000000}},  //   ערגע, vtić_, _agol,\n  { {0x9f5c00f6, 0x6265034b, 0x7d1d3230, 0x00000000}},  //   _nevà_, ивка, hrss,\n  { {0xbb3c0049, 0x00000000, 0x00000000, 0x00000000}},  //   געהי,   ,   ,\n  { {0xb42704e8, 0xd538031d, 0x6a78000c, 0x00000000}},  //   _معاو, _مثلا_, _gífu,\n  { {0x25bf005f, 0x61e201d6, 0x3ea900b0, 0x00000000}},  //   _iyul_, _egol, _ajat_,\n  { {0x20540147, 0x98a00091, 0xa3cb0061, 0x00000000}},  //   стыр, stić_, रेख_,\n  { {0x64430620, 0x3a3900ca, 0x2cba023a, 0x00000000}},  //   leni, _nbsp_, _skpd_,\n  { {0x6cc60088, 0xfce6041f, 0xa3e90061, 0x00000000}},  //   ийма, рого, _यला_,\n  { {0x629b010a, 0x64433e61, 0xceb90036, 0x00000000}},  //   liuo, neni, stęp_,\n  { {0xdca318ea, 0xa09a00a3, 0x442700ab, 0x00000000}},  //   цари, _ביסט, ign_,\n  { {0x6443002d, 0x629b0006, 0x3ea90023, 0x00000000}},  //   heni, niuo, _gjat_,\n  { {0x6443049b, 0x2007008d, 0x6aa4254e, 0x00000000}},  // [ee00] keni, _keni_, rnif,\n  { {0x644304a9, 0x2007008d, 0xbebd001e, 0x00000000}},  //   jeni, _jeni_, stīt,\n  { {0x64430027, 0x20073e62, 0x2cb80190, 0x00000000}},  //   deni, _meni_, mord_,\n  { {0x7d0401d5, 0x2cb80039, 0x1f360049, 0x00000000}},  //   _kwis, lord_, ירער_,\n  { {0x644300c7, 0x9f4e01aa, 0xd627007c, 0x00000000}},  //   feni, _jefò_, роче_,\n  { {0x7d04000b, 0x20073e63, 0xd7f20025, 0x00000000}},  //   _mwis, _neni_, _ذكر_,\n  { {0xd4090025, 0x25ad0fab, 0x00000000, 0x00000000}},  //   اتهم_, _exel_,   ,\n  { {0xd257008b, 0x66e3008b, 0xddcd3e64, 0x00000000}},  //   аць_, _фота, _plaż,\n  { {0x64433e65, 0x30a620f2, 0x2cb8039e, 0x00000000}},  //   beni, иров, kord_,\n  { {0x64430821, 0x20070059, 0x2cb805d5, 0x00000000}},  //   ceni, _ceni_, jord_,\n  { {0x9ed900ed, 0x20070020, 0x7d04002b, 0x00000000}},  //   лмот_, _deni_, _awis,\n  { {0x7d040058, 0x61e20026, 0xefcc014a, 0x00000000}},  //   _bwis, _ugol, _ışığ,\n  { {0x6a78000c, 0xb87b0051, 0x2cb800ab, 0x00000000}},  //   _lífs, _suím, ford_,\n  { {0x20070016, 0x2cb8009d, 0x3a2b00fa, 0x00000000}},  //   _geni_, gord_, _sccp_,\n  { {0xb87b1383, 0x200c0583, 0x442c0145, 0x00000000}},  //   _quím, madi_, _mcd_,\n  { {0x64431191, 0x200c3e66, 0x20070107, 0x00000000}},  //   zeni, ladi_, _zeni_,\n  { {0x200701f6, 0x2cb801bf, 0x6443014a, 0x00000000}},  // [ee10] _yeni_, bord_, yeni,\n  { {0x3eb9037b, 0x6d4d011c, 0x2cb8030a, 0x00000000}},  //   lost_, _isaa, cord_,\n  { {0x7d04001f, 0x64432256, 0xac9900a1, 0x00000000}},  //   _zwis, veni, _لنکا_,\n  { {0x64433e67, 0x4fd90049, 0xc6a43e68, 0x00000000}},  //   weni, אַנד, орчи,\n  { {0x64430027, 0x442c0190, 0x200c0020, 0x00000000}},  //   teni, _bcd_, kadi_,\n  { {0x6d4d000b, 0x200c01a3, 0x39490022, 0x00000000}},  //   _msaa, jadi_, mwas_,\n  { {0x64433178, 0x26cd00ad, 0x6289002a, 0x00000000}},  //   reni, _theo_, theo,\n  { {0x3e7b008d, 0x20073e69, 0x6d4d00b0, 0x00000000}},  //   _këtu_, _seni_, _osaa,\n  { {0x3eb9037b, 0x64430142, 0x629b010a, 0x00000000}},  //   dost_, peni, riuo,\n  { {0x6e2d06c0, 0x14740054, 0x442c096b, 0x00000000}},  //   _acab, _والج, _gcd_,\n  { {0x160b02f4, 0x2007001a, 0x187800a0, 0x00000000}},  //   _हजार_, _veni_, יעזר_,\n  { {0x7d0401aa, 0x5c270044, 0x39493e6a, 0x00000000}},  //   _pwis, য়োগ_, kwas_,\n  { {0x200c04cb, 0x66093e6b, 0x200706af, 0x00000000}},  //   badi_, _meek, _teni_,\n  { {0xab2a06b6, 0x200c00d4, 0x644e00c4, 0x00000000}},  //   лога_, cadi_, _óbit,\n  { {0x8fa201fe, 0x3eb9002d, 0x9ef50379, 0x00000000}},  //   _наше, bost_, _استش,\n  { {0x4f1600bd, 0x2cb800eb, 0x3eb90ca4, 0x00000000}},  //   _פֿון_, sord_, cost_,\n  { {0x7e641d4b, 0x7d040009, 0xfd1f0026, 0x00000000}},  // [ee20] _inip, _uwis, crì_,\n  { {0xe9d705a4, 0x81ac0044, 0xb80a0025, 0x00000000}},  //   ску_, _গরম_, ايام_,\n  { {0x442c00d4, 0x660900bb, 0x7e6400b5, 0x00000000}},  //   _rcd_, _beek, _knip,\n  { {0x5fba007b, 0x200c01ee, 0x6b810637, 0x00000000}},  //   אצענ, zadi_, ølge,\n  { {0x200c0093, 0x442c0810, 0x00000000, 0x00000000}},  //   yadi_, _pcd_,   ,\n  { {0x7aed0010, 0x62991519, 0x00000000, 0x00000000}},  //   _öltö, _amwo,   ,\n  { {0x33170054, 0x200c0059, 0xd467003b, 0x00000000}},  //   مزيد_, vadi_, сије_,\n  { {0x66090ace, 0x9695098c, 0x200c0020, 0x00000000}},  //   _geek, _друш, wadi_,\n  { {0xe1ef023c, 0x200c1b43, 0x2912011c, 0x00000000}},  //   رسي_, tadi_, nsya_,\n  { {0xdefa00a5, 0x6e2d048c, 0xf48400a6, 0x00000000}},  //   лым_, _scab, _باری,\n  { {0x200c01d9, 0xea000082, 0x6d4d0009, 0x00000000}},  //   radi_, _ngắt_, _ssaa,\n  { {0x200c3e6c, 0xb7db0049, 0xf773009b, 0x00000000}},  //   sadi_, טקיי, לקת_,\n  { {0xa133007a, 0x3eb905c9, 0x7e6401f3, 0x00000000}},  //   _فروش, rost_, _dnip,\n  { {0x68fb0065, 0x3eb900d2, 0x00000000, 0x00000000}},  //   _çudi, sost_,   ,\n  { {0x3eb92df6, 0x00000000, 0x00000000, 0x00000000}},  //   post_,   ,   ,\n  { {0x139b007b, 0xbea4025f, 0x3d120061, 0x00000000}},  //   אבלע, _најк, _तिचे_,\n  { {0x660900c7, 0x66e50006, 0x98750751, 0x00000000}},  // [ee30] _reek, _lėkt, олац,\n  { {0x66093e6d, 0x3b130082, 0x394901d6, 0x00000000}},  //   _seek, _tvxq_, rwas_,\n  { {0x39490300, 0x00000000, 0x00000000, 0x00000000}},  //   swas_,   ,   ,\n  { {0x80ac0061, 0x00000000, 0x00000000, 0x00000000}},  //   ीकडे,   ,   ,\n  { {0xd1261095, 0x660901c2, 0x0608007e, 0x00000000}},  //   _تم_, _veek, снік_,\n  { {0x66090038, 0x1bfb0164, 0x22ac00b9, 0x00000000}},  //   _week, ्रिल_, věka_,\n  { {0x6609006c, 0xa3d40164, 0x00000000, 0x00000000}},  //   _teek, सेल_,   ,\n  { {0xc7b2009b, 0x12b90044, 0x00000000, 0x00000000}},  //   _חבל_, ুদ্দ,   ,\n  { {0x940e005f, 0xc42b0151, 0xe573023c, 0x00000000}},  //   hifə_, _مثال_, _عطر_,\n  { {0x60090cb3, 0x00000000, 0x00000000, 0x00000000}},  //   шном_,   ,   ,\n  { {0xbebd001e, 0xcdc9061e, 0xfe460764, 0x00000000}},  //   drīb, _סך_, онно,\n  { {0x3f8b0036, 0x62993e6e, 0x00000000, 0x00000000}},  //   ącu_, _umwo,   ,\n  { {0x2d840161, 0xa2c60061, 0x3f831032, 0x00000000}},  //   áme_, ातर्, šju_,\n  { {0x2b41000a, 0x00000000, 0x00000000, 0x00000000}},  //   _bphc_,   ,   ,\n  { {0x4a9a007e, 0x7ebd1f1f, 0x00000000, 0x00000000}},  //   атаў_, répr,   ,\n  { {0x2912000a, 0xada6004d, 0x394600c4, 0x00000000}},  //   tsya_, _майл, çoso_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  // [ee40]   ,   ,   ,\n  { {0x7d16013e, 0x291200e0, 0x00000000, 0x00000000}},  //   _ivys, rsya_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7c3e00fa, 0x00000000, 0x00000000, 0x00000000}},  //   _kbpr,   ,   ,\n  { {0x7ae3004a, 0x00000000, 0x00000000, 0x00000000}},  //   _éntr,   ,   ,\n  { {0x4420011f, 0xa2c60061, 0xe8000061, 0x00000000}},  //   ği_, ातल्, _ल्या_,\n  { {0x1fcf0044, 0x44203e6f, 0x260b0204, 0x00000000}},  //   রশাস, şi_, ारणी_,\n  { {0xe5a3003b, 0xdcea00b9, 0x940e006b, 0x00000000}},  //   _жити, čněj, zifə_,\n  { {0x6602002d, 0x44380009, 0x26c601b1, 0x00000000}},  //   lbok, _ùr_, lloo_,\n  { {0x44f000ad, 0x38780ea9, 0x443e0082, 0x00000000}},  //   _hà_, _morr_, _ibt_,\n  { {0xd2501847, 0x443e3e70, 0x26c618bd, 0x00000000}},  //   _سنت_, _hbt_, nloo_,\n  { {0xd12f0025, 0x7c3e3e71, 0x61a5007d, 0x00000000}},  //   _لمن_, _bbpr, खपृष,\n  { {0x44f03e72, 0x443e0973, 0xbf14007a, 0x00000000}},  //   _mà_, _jbt_, _فوتب,\n  { {0x44f02811, 0x443e26ec, 0x040f0044, 0x00000000}},  //   _là_, _mbt_, _সামী_,\n  { {0x7c3e0061, 0x443e0066, 0x940e006b, 0x00000000}},  //   _ebpr, _lbt_, rifə_,\n  { {0x44f00011, 0x66020056, 0x81dc0044, 0x00000000}},  // [ee50] _nà_, dbok, তুর_,\n  { {0x38780048, 0x6d5f002b, 0x752214a6, 0x00000000}},  //   _corr_, _irqa, droz,\n  { {0x63bc0374, 0x00000000, 0x00000000, 0x00000000}},  //   _ørnh,   ,   ,\n  { {0x44f0001d, 0x443e0d78, 0x66020c73, 0x00000000}},  //   _bà_, _abt_, gbok,\n  { {0x44f00011, 0x75220089, 0x443e0785, 0x00000000}},  //   _cà_, groz, _bbt_,\n  { {0x44f00207, 0x69cf198c, 0xb97a009b, 0x00000000}},  //   _dà_, _izce, _הנשי,\n  { {0x8c44005f, 0x660201c3, 0x00000000, 0x00000000}},  //   əşdi, bbok,   ,\n  { {0x6d5f005f, 0x44f00197, 0x443e000a, 0x00000000}},  //   _orqa, _fà_, _ebt_,\n  { {0x44f00011, 0x27351a95, 0x75220035, 0x00000000}},  //   _gà_, lån_, croz,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x81dc0044, 0x00000000, 0x00000000, 0x00000000}},  //   তুল_,   ,   ,\n  { {0xe3b20049, 0xee3f04bb, 0x00000000, 0x00000000}},  //   _אױב_, bným_,   ,\n  { {0x81a700f3, 0x44f00011, 0x0d83005e, 0x00000000}},  //   _بحال, _xà_, елян,\n  { {0x7bc50146, 0x00000000, 0x00000000, 0x00000000}},  //   _byhu,   ,   ,\n  { {0x7bc50016, 0x00000000, 0x00000000, 0x00000000}},  //   _cyhu,   ,   ,\n  { {0x6486009f, 0x2a790016, 0x6b8100ea, 0x00000000}},  //   _aðil, _cosb_, ølga,\n  { {0xa96701c0, 0x387800f8, 0xad9b000c, 0x00000000}},  // [ee60] пита_, _porr_, lbún,\n  { {0x13e30055, 0x3ea2138f, 0x44f00082, 0x00000000}},  //   নুয়, likt_, _rà_,\n  { {0xb8f302fb, 0x2d820007, 0x44f02de5, 0x00000000}},  //   _ही_, lyke_, _sà_,\n  { {0x443e0181, 0xe7b30014, 0x44f00082, 0x00000000}},  //   _sbt_, رمند, _pà_,\n  { {0x387800f8, 0x26c606fa, 0x6602063d, 0x00000000}},  //   _torr_, rloo_, rbok,\n  { {0x44f000ad, 0x661b022b, 0x290000b0, 0x00000000}},  //   _và_, _eduk, mpia_,\n  { {0xf74301ee, 0x6602012d, 0x6ac700c4, 0x00000000}},  //   _перо, pbok, _órfã,\n  { {0x60f801e0, 0x44f00011, 0xdb23009d, 0x00000000}},  //   ония_, _tà_, érée,\n  { {0x850600a6, 0x7ae63e73, 0xf1a3007e, 0x00000000}},  //   _روان, _mikt, ерэн,\n  { {0x67230825, 0x628b028d, 0xf8be013d, 0x00000000}},  //   šnje, _elgo, ्तिय,\n  { {0x3d0f001c, 0x644a0020, 0x6d4400c4, 0x00000000}},  //   तीने_, mefi, _apia,\n  { {0x64582313, 0xd24f0014, 0x7ae60142, 0x00000000}},  //   ldvi, _منم_, _nikt,\n  { {0x601809b5, 0x00000000, 0x00000000, 0x00000000}},  //   _доля_,   ,   ,\n  { {0x32e70082, 0x9ce402be, 0x00000000, 0x00000000}},  //   _tđyt_, ецсл,   ,\n  { {0x7ae6149a, 0x00000000, 0x00000000, 0x00000000}},  //   _bikt,   ,   ,\n  { {0x644a0016, 0x27350039, 0x69c60146, 0x00000000}},  //   hefi, vån_, _byke,\n  { {0x69c60193, 0x78be01d6, 0x00000000, 0x00000000}},  // [ee70] _cyke, fopv,   ,\n  { {0x69c60039, 0xed600006, 0x6e3d01a2, 0x00000000}},  //   _dyke, įžti_, lfsb,\n  { {0x644a049a, 0x6d5d22d6, 0x65603e74, 0x00000000}},  //   defi, lvsa, _armh,\n  { {0x27350039, 0x1a65025a, 0x395200b0, 0x00000000}},  //   rån_, _تیری_, änsä_,\n  { {0x69cf0089, 0x00000000, 0x00000000, 0x00000000}},  //   _uzce,   ,   ,\n  { {0x644a000c, 0x260b0061, 0x201c0288, 0x00000000}},  //   gefi, ारही_, _ndvi_,\n  { {0x2eee1a90, 0xe738007c, 0xe299007e, 0x00000000}},  //   _nuff_, _неё_, жай_,\n  { {0x6aad000c, 0x6458222b, 0x6e3d00bb, 0x00000000}},  //   nnaf, advi, jfsb,\n  { {0xd12e0379, 0xc4f80380, 0x644a01a2, 0x00000000}},  //   لمي_, _فعلا_, befi,\n  { {0x76591915, 0xef190364, 0x644a3e75, 0x00000000}},  //   ldwy, омо_, cefi,\n  { {0x6d443e76, 0x200e01aa, 0x3ea20089, 0x00000000}},  //   _spia, _defi_, tikt_,\n  { {0xada6008b, 0x6da6003b, 0xad9b000c, 0x00000000}},  //   дамл, дима, rbún,\n  { {0x7ae61e82, 0x3ea20056, 0x61eb2ab8, 0x00000000}},  //   _rikt, rikt_, _iggl,\n  { {0x61420081, 0x7ae60039, 0x69c601c3, 0x00000000}},  //   _реша, _sikt, _ryke,\n  { {0xfce33e77, 0x7ae60993, 0x6441314b, 0x00000000}},  //   торо, _pikt, _mbli,\n  { {0x764b0010, 0x644a0023, 0x6aad01e5, 0x00000000}},  //   jegy, zefi, gnaf,\n  { {0x7ae6067e, 0x7659018e, 0x68e700b5, 0x00000000}},  // [ee80] _vikt, ddwy, _bijd,\n  { {0x7ae6049a, 0x9f4700f6, 0xc9d500a1, 0x00000000}},  //   _wikt, _agné_, رملک,\n  { {0x7ae60485, 0x644a01e5, 0x78be0328, 0x00000000}},  //   _tikt, vefi, ropv,\n  { {0x29001c89, 0xd9100123, 0xb87b00c4, 0x00000000}},  //   ppia_, _میر_, _suít,\n  { {0x6aa40020, 0x1fba0164, 0x20c2000c, 0x00000000}},  //   miif, _उड्ड, iðir_,\n  { {0x741401d8, 0x61eb009d, 0xe1ff008e, 0x00000000}},  //   روبا, _aggl, ñón_,\n  { {0x17790057, 0x644a0036, 0x645802e1, 0x00000000}},  //   _есть_, refi, rdvi,\n  { {0x644a00f8, 0x2eee01d6, 0x68e700b5, 0x00000000}},  //   sefi, _ruff_, _zijd,\n  { {0x321d0016, 0x79840020, 0x644a0035, 0x00000000}},  //   _ddwy_, nyiw, pefi,\n  { {0x3ea00047, 0x61eb0635, 0x200e0023, 0x00000000}},  //   _amit_, _eggl, _qefi_,\n  { {0x98a90036, 0x93460088, 0x20c2000c, 0x00000000}},  //   stać_, _інде, fðir_,\n  { {0x64410036, 0x2ca300bb, 0x20c2000c, 0x00000000}},  //   _zbli, wijd_, gðir_,\n  { {0x2ca302ae, 0x200501d5, 0xbebd0089, 0x00000000}},  //   tijd_, bbli_, brīn,\n  { {0x3ea03e78, 0x2eee00f8, 0x6d5d0190, 0x00000000}},  //   _emit_, _tuff_, rvsa,\n  { {0x68e700b5, 0x2ca300b5, 0x8ff703e6, 0x00000000}},  //   _rijd, rijd_, _غرور_,\n  { {0xbcfb0047, 0x63bc00ea, 0x68e73e79, 0x00000000}},  //   tvéd, _ørnu, _sijd,\n  { {0x5ea40025, 0x6aad000c, 0x127b0049, 0x00000000}},  // [ee90] _جميل, rnaf, קאמע,\n  { {0x7d0d03ea, 0xd795005e, 0x98a4003b, 0x00000000}},  //   _iwas, низъ, виђе,\n  { {0x764b1cbc, 0x00000000, 0x00000000, 0x00000000}},  //   tegy,   ,   ,\n  { {0x7d0d10b4, 0x3dc900e0, 0x68e700bb, 0x00000000}},  //   _kwas, _kyaw_, _wijd,\n  { {0x68e702ae, 0x79960036, 0x76591ffe, 0x00000000}},  //   _tijd, czyw, rdwy,\n  { {0x7d0d1b6f, 0x00000000, 0x00000000, 0x00000000}},  //   _mwas,   ,   ,\n  { {0x5695041f, 0x66f40545, 0x00000000, 0x00000000}},  //   _завт, _апсу,   ,\n  { {0xd24e0025, 0xe3b003ec, 0x7d0d0146, 0x00000000}},  //   منى_, جره_, _owas,\n  { {0x6353006b, 0x3ea03e7a, 0x2fc731e6, 0x00000000}},  //   _mənə, _rmit_, _syng_,\n  { {0x3ea000c7, 0x00000000, 0x00000000, 0x00000000}},  //   _smit_,   ,   ,\n  { {0x3dc9006a, 0x7d0d0518, 0x3f69017a, 0x00000000}},  //   _ayaw_, _awas, чино_,\n  { {0x7d0d01aa, 0xdd1e001a, 0x2018000c, 0x00000000}},  //   _bwas, _câşt, órir_,\n  { {0x20c2009f, 0x6114007e, 0x224d0032, 0x00000000}},  //   rðir_, _адчу, meek_,\n  { {0x224d002d, 0x62890190, 0x7d0d01d6, 0x00000000}},  //   leek_, lkeo, _dwas,\n  { {0xcb67003b, 0x60c10058, 0x00000000, 0x00000000}},  //   наре_, molm,   ,\n  { {0x224d0032, 0x7d0d000a, 0xdd1e00e5, 0x00000000}},  //   neek_, _fwas, _gâşt,\n  { {0x7d0d0bc4, 0x6aa4010e, 0x00000000, 0x00000000}},  // [eea0] _gwas, riif,   ,\n  { {0x224d00b5, 0x6d563e7b, 0x81dc0044, 0x00000000}},  //   heek_, _isya, তুক_,\n  { {0xbcfb009d, 0x7ceb002b, 0x6353006b, 0x00000000}},  //   rvée, _iżra, _fənə,\n  { {0x60c10073, 0x83fc0521, 0xe6120151, 0x00000000}},  //   holm, _inđi, اشا_,\n  { {0xe89b038c, 0x224d002d, 0x64a6007e, 0x00000000}},  //   _çağı, deek_, нада,\n  { {0x672310ec, 0x39520016, 0x6d5600e0, 0x00000000}},  //   šnja, mwys_, _msya,\n  { {0x3952018e, 0xe8be0061, 0x60c10026, 0x00000000}},  //   lwys_, ्तीच, dolm,\n  { {0x09e40044, 0x224d0032, 0x66e3025f, 0x00000000}},  //   _ফ্যা, geek_, _боса,\n  { {0xf1db0061, 0x39521c26, 0x05663e7c, 0x00000000}},  //   मेलन, nwys_, _яван,\n  { {0x7d0d0009, 0x89370049, 0x80ca013d, 0x00000000}},  //   _rwas, עריע_, _सीखे,\n  { {0x6e950081, 0x7d0d3e7d, 0x224d162d, 0x00000000}},  //   вину, _swas, beek_,\n  { {0x645a1bd2, 0x7d0d01aa, 0xf3ff0011, 0x00000000}},  //   _hati, _pwas, _đãi_,\n  { {0x645a0be3, 0x225100b9, 0xa06a003b, 0x00000000}},  //   _kati, ánků_, _нада_,\n  { {0x6353005f, 0x645a023a, 0x60c108d3, 0x00000000}},  //   _sənə, _jati, colm,\n  { {0x5b2406e7, 0x2bd60061, 0xc87f01a2, 0x00000000}},  //   льта, _धरणा, _mußt_,\n  { {0x7d0d3e7e, 0x645a3e7f, 0x3952005b, 0x00000000}},  //   _twas, _lati, fwys_,\n  { {0x7e6d28d4, 0x7ebd0010, 0xc98400ed, 0x00000000}},  // [eeb0] _inap, képz, луфи,\n  { {0x645a066d, 0x7e6d01e5, 0x00000000, 0x00000000}},  //   _nati, _hnap,   ,\n  { {0x7e6d067e, 0xf3f10011, 0x9f5e004a, 0x00000000}},  //   _knap, _bạn_, mató_,\n  { {0x224d3ac8, 0x9f5e1ae2, 0x00000000, 0x00000000}},  //   xeek_, lató_,   ,\n  { {0x645a0390, 0xddc4001a, 0xe3b8006b, 0x00000000}},  //   _bati, _iniţ, _axı_,\n  { {0x645a3e80, 0x224d0343, 0x634a006b, 0x00000000}},  //   _cati, week_, _mənf,\n  { {0x224d1cbf, 0x60c10026, 0x645a066d, 0x00000000}},  //   teek_, volm, _dati,\n  { {0x75240107, 0x9f5e0010, 0xd90e00a1, 0x00000000}},  //   šiza, ható_, _دیے_,\n  { {0xb3eb01fa, 0x224d3e81, 0x62890146, 0x00000000}},  //   _فعال_, reek_, rkeo,\n  { {0x7e6d0020, 0x224d0a5f, 0x62890190, 0x00000000}},  //   _anap, seek_, skeo,\n  { {0xb4cd007d, 0x932700a6, 0xe47a0049, 0x00000000}},  //   रती_, _سران, _קרעכ,\n  { {0x645a0027, 0xdc0a0309, 0x41750025, 0x00000000}},  //   _zati, वर्ड_, _لاتس,\n  { {0xe1f0006d, 0x50b50c19, 0x645a0518, 0x00000000}},  //   _اسم_, _иску, _yati,\n  { {0x64940061, 0x645a006b, 0x9f5e0010, 0x00000000}},  //   _gàid, _xati, gató_,\n  { {0xaac600b8, 0x80ca013d, 0x00000000, 0x00000000}},  //   نترن, _सीटे,   ,\n  { {0x7e6d0026, 0x00000000, 0x00000000, 0x00000000}},  //   _gnap,   ,   ,\n  { {0xea000011, 0x9f5e07f0, 0xc212009b, 0x00000000}},  // [eec0] _ngất_, bató_, יהן_,\n  { {0xe9d70822, 0x39520007, 0x7c8501fc, 0x00000000}},  //   тку_, rwys_, _буџе,\n  { {0x645a0038, 0xe3b80276, 0x00000000, 0x00000000}},  //   _rati, _adın_,   ,\n  { {0x9bb700b6, 0x645a191c, 0x68ed010a, 0x00000000}},  //   _יהיה_, _sati, _žodž,\n  { {0x645a1ed9, 0x9553067a, 0x00000000, 0x00000000}},  //   _pati, لخوا,   ,\n  { {0x645a3e82, 0x00000000, 0x00000000, 0x00000000}},  //   _qati,   ,   ,\n  { {0x07a63e83, 0x0396005e, 0x98a301ee, 0x00000000}},  //   _равн, ърдя, _тире,\n  { {0xcb13009b, 0x357300a1, 0x645a0020, 0x00000000}},  //   בלה_, _چھوڑ, _wati,\n  { {0x645a3e84, 0x273c2be1, 0x00000000, 0x00000000}},  //   _tati, lín_,   ,\n  { {0x764200d2, 0x00000000, 0x00000000, 0x00000000}},  //   lfoy,   ,   ,\n  { {0x273c3e85, 0x00000000, 0x00000000, 0x00000000}},  //   nín_,   ,   ,\n  { {0x61fb0912, 0xad9b000c, 0x00000000, 0x00000000}},  //   ccul, lbúi,   ,\n  { {0x9f5e0047, 0x7e6d0059, 0x273c0051, 0x00000000}},  //   tató_, _vnap, hín_,\n  { {0x273c15e3, 0x00000000, 0x00000000, 0x00000000}},  //   kín_,   ,   ,\n  { {0x9f5e3e86, 0x273c0142, 0x2ac7003b, 0x00000000}},  //   rató_, jín_, вљав,\n  { {0x31660119, 0x7e6d2094, 0x9ab4007e, 0x00000000}},  //   _kroz_, _unap, айсц,\n  { {0x2ab701d5, 0x22460093, 0x9f5e004a, 0x00000000}},  // [eed0] għba_, _mbok_, pató_,\n  { {0x634a005f, 0x7d1b0285, 0xad1c009b, 0x00000000}},  //   _kənd, áusu, _חוזר,\n  { {0xb8fa007d, 0x22460036, 0x59d50061, 0x00000000}},  //   _डी_, _obok_, _दरवर,\n  { {0x67230091, 0x634a006b, 0xbebd0089, 0x00000000}},  //   šnjo, _zəng, drīk,\n  { {0x45450054, 0x961d0089, 0xcad60104, 0x00000000}},  //   انتق, _noņe, _תורת_,\n  { {0x85b80025, 0xb4cd007d, 0x273c0142, 0x00000000}},  //   خامس_, रते_, bín_,\n  { {0x4429027d, 0x273c3e87, 0xf6e7007e, 0x00000000}},  //   ğa_, cín_, _ацан,\n  { {0x31660107, 0x442915ec, 0xf3f10082, 0x00000000}},  //   _broz_, şa_, _tạo_,\n  { {0x10150b52, 0x22460022, 0xddc60036, 0x00000000}},  //   льня, _dbok_, zekł,\n  { {0x205500ed, 0x634a006b, 0x26cf1c91, 0x00000000}},  //   утир, _bənd, llgo_,\n  { {0x7c380073, 0x44f9001d, 0x25d30067, 0x00000000}},  //   _övri, _hè_, _तरुण,\n  { {0x44f92115, 0x634a013f, 0x00000000, 0x00000000}},  //   _kè_, _səng,   ,\n  { {0x394b0c0d, 0x273c0d7f, 0x25e6013d, 0x00000000}},  //   _npcs_, zín_, जेपी_,\n  { {0x44f92ef4, 0x6cd60025, 0x25d60049, 0x00000000}},  //   _mè_, اقسا, טורן_,\n  { {0x44f90607, 0xeb9a0242, 0x00000000, 0x00000000}},  //   _lè_, хив_,   ,\n  { {0x225f0169, 0x273c0142, 0x29020022, 0x00000000}},  //   nduk_, vín_, _ptka_,\n  { {0x44f93e88, 0x213f003f, 0x66d115b3, 0x00000000}},  // [eee0] _nè_, ntuh_, råkl,\n  { {0x2ab7002b, 0xc8ca01fa, 0xb4cd0204, 0x00000000}},  //   rħba_, روان_, रतो_,\n  { {0xbcfb00f4, 0xfaa60140, 0xa6e90082, 0x00000000}},  //   nvén, _бано, _thự,\n  { {0x44f9001d, 0x273c113f, 0x225f016e, 0x00000000}},  //   _bè_, rín_, jduk_,\n  { {0x44f9159f, 0x997500ed, 0x273c0051, 0x00000000}},  //   _cè_, _курш, sín_,\n  { {0x44f92110, 0x2a60288d, 0x394019f0, 0x00000000}},  //   _dè_, ldib_, mtis_,\n  { {0x39400006, 0x66190036, 0x4394007e, 0x00000000}},  //   ltis_, bawk, райс,\n  { {0x44f90607, 0x7d040091, 0x6e240009, 0x00000000}},  //   _fè_, _otis, _ndib,\n  { {0x3940010a, 0x225d01d5, 0x44f901aa, 0x00000000}},  //   ntis_, _dawk_, _gè_,\n  { {0x395700b6, 0x6e24022b, 0x39400006, 0x00000000}},  //   נשים_, _adib, itis_,\n  { {0x7d040173, 0x3940006c, 0xdef7007e, 0x00000000}},  //   _atis, htis_, лыя_,\n  { {0x44f901aa, 0x61f60025, 0x00000000, 0x00000000}},  //   _yè_, _إساء,   ,\n  { {0xeda72e2d, 0xb5fd0b8e, 0x6e240016, 0x00000000}},  //   ушно, _inšt, _ddib,\n  { {0x6e24005f, 0x62823e89, 0x26c60085, 0x00000000}},  //   _edib, _hooo, hooo_,\n  { {0x7777027b, 0x7d1d19da, 0x39400dec, 0x00000000}},  //   xxxx, ssss, etis_,\n  { {0x8c44006b, 0x628204eb, 0x2b5a00d4, 0x00000000}},  //   əşmi, _jooo, _dspc_,\n  { {0x39400006, 0x26c61aa3, 0x7dec0089, 0x00000000}},  // [eef0] gtis_, dooo_, _cēsī,\n  { {0xddc40182, 0x634a006b, 0x6d4d011c, 0x00000000}},  //   _uniš, _mənb, _ipaa,\n  { {0x501b00b6, 0x44f915de, 0x68ee011c, 0x00000000}},  //   גובו, _sè_, _dibd,\n  { {0x44f90263, 0x395900d9, 0x394000f6, 0x00000000}},  //   _pè_, _tsss_, btis_,\n  { {0x39403e8a, 0xfd1f0197, 0xbcfb0010, 0x00000000}},  //   ctis_, nsì_, zvén,\n  { {0x44f93e8b, 0x290900b0, 0x6385007c, 0x00000000}},  //   _vè_, mpaa_, игла,\n  { {0x44f90607, 0xe1f10025, 0x7af70032, 0x00000000}},  //   _wè_, يسة_, _juxt,\n  { {0x44f90263, 0x26c606c2, 0x7af7006b, 0x00000000}},  //   _tè_, cooo_, _muxt,\n  { {0x81a80055, 0x62820107, 0x225f014a, 0x00000000}},  //   _খুব_, _dooo, rduk_,\n  { {0xe8e0001d, 0x7aef0a16, 0x10a501ee, 0x00000000}},  //   _địa_, _lict, рион,\n  { {0x32550077, 0x7d0402db, 0x6d4d3e8c, 0x00000000}},  //   _ввер, _stis, _apaa,\n  { {0xbcfb0047, 0x7aef00f6, 0x394006e8, 0x00000000}},  //   rvén, _nict, ytis_,\n  { {0x76490020, 0x69cf0173, 0x46560049, 0x00000000}},  //   _mbey, _nyce, בױרן_,\n  { {0xab2a3e8d, 0xafe5007c, 0x628200bb, 0x00000000}},  //   кога_, _колл, _zooo,\n  { {0x7649192a, 0x44250035, 0x2caa0459, 0x00000000}},  //   _obey, _mdl_, ribd_,\n  { {0x39400dac, 0x44253e8e, 0x6569050f, 0x00000000}},  //   ttis_, _ldl_, _oreh,\n  { {0x7d0405fa, 0x4425005b, 0xdc0c007f, 0x00000000}},  // [ef00] _utis, _odl_, lėči,\n  { {0x3940010a, 0xfd1300a1, 0xd826005e, 0x00000000}},  //   rtis_, _بجٹ_, рджи,\n  { {0x3940017b, 0x7aef00ab, 0x634a006b, 0x00000000}},  //   stis_, _fict, _mənc,\n  { {0x75240107, 0x44250c2c, 0x0566019d, 0x00000000}},  //   šizm, _adl_, ивен,\n  { {0x7ae40f7f, 0x68ee01d5, 0x09e40044, 0x00000000}},  //   mmit, _tibd, _ফ্রা,\n  { {0x6569010f, 0x7ae4006c, 0x628205af, 0x00000000}},  //   _dreh, lmit, _sooo,\n  { {0x44250197, 0x2d8b0c0f, 0x83fc0091, 0x00000000}},  //   _ddl_, zyce_, _nađe,\n  { {0x7ae4000c, 0x59ba0164, 0x6b830129, 0x00000000}},  //   nmit, _इशार, _ànge,\n  { {0x65690925, 0x7ae41469, 0x80c20061, 0x00000000}},  //   _greh, imit, रकले,\n  { {0x442528cd, 0x00000000, 0x00000000, 0x00000000}},  //   _gdl_,   ,   ,\n  { {0x6d4d01b5, 0xa3e20164, 0x260b0061, 0x00000000}},  //   _spaa, नेश_, ारची_,\n  { {0x6146008b, 0x628200f6, 0x2d8b0036, 0x00000000}},  //   _веда, _uooo, tyce_,\n  { {0xfd47008b, 0x3eab00ab, 0x00000000, 0x00000000}},  //   шэнн, rict_,   ,\n  { {0x634a005f, 0xc0e335fb, 0x69cf00b4, 0x00000000}},  //   _gənc, _дочк, _ryce,\n  { {0x7aef0038, 0x0b88007c, 0x8aa7007e, 0x00000000}},  //   _pict, асти_, арад,\n  { {0xbea4025f, 0x780f0204, 0x6ff80044, 0x00000000}},  //   _мајк, िर्क_, _আজিজ_,\n  { {0x6b5c00d8, 0xdd910014, 0x3ea9016e, 0x00000000}},  // [ef10] _pågå, _رود_, _imat_,\n  { {0x7af7008e, 0xa3d7013d, 0x7ae4010e, 0x00000000}},  //   _tuxt, _सरल_, amit,\n  { {0x7ae43e8f, 0x29090020, 0x44250146, 0x00000000}},  //   bmit, spaa_, _rdl_,\n  { {0xd24606ea, 0x656902b2, 0x44250058, 0x00000000}},  //   _عن_, _preh, _sdl_,\n  { {0x44250412, 0xbebd0089, 0x00000000, 0x00000000}},  //   _pdl_, brīv,   ,\n  { {0xbebd0089, 0x58d4005e, 0xe7870131, 0x00000000}},  //   nsīb, _моят, _кубо,\n  { {0xd7950054, 0x3ea900b0, 0xa3d70061, 0x00000000}},  //   _الأخ, _omat_, _सरळ_,\n  { {0x163403c8, 0xfbb80104, 0xb5fd10f5, 0x00000000}},  //   _меся, יפות_, _baše,\n  { {0x659403f3, 0x4425023a, 0x798d0093, 0x00000000}},  //   _дату, _tdl_, nyaw,\n  { {0xdce40868, 0x3ea90127, 0x4425300a, 0x00000000}},  //   _prič, _amat_, _udl_,\n  { {0xaec6007e, 0xb4e301f5, 0xd3a7007e, 0x00000000}},  //   йбол, नगी_, _трап,\n  { {0x1d0a3e90, 0x29050de0, 0x24851f9d, 0x00000000}},  //   леми_, _član_, _holm_,\n  { {0x6aad3240, 0x24850004, 0x26cd00e7, 0x00000000}},  //   diaf, _kolm_, _mkeo_,\n  { {0xfc03005e, 0xdce40161, 0x798d2492, 0x00000000}},  //   зпро, _trič, dyaw,\n  { {0x634a006b, 0xdca33c05, 0xeb9700e2, 0x00000000}},  //   _kəna, чари, бир_,\n  { {0x629b00b0, 0x3ea90361, 0xed5a17a4, 0x00000000}},  //   nhuo, _gmat_, _бои_,\n  { {0x7ae40219, 0x634a006b, 0x7c960014, 0x00000000}},  // [ef20] rmit, _məna, _هشدا,\n  { {0x7ae40f48, 0xc610007d, 0x3afc32f5, 0x00000000}},  //   smit, ार्य_, _típ_,\n  { {0xe7e30309, 0x25bf0035, 0x91c9013d, 0x00000000}},  //   केला_, _axul_, _हुसै,\n  { {0x26df000b, 0xad9b00fa, 0x6aad0740, 0x00000000}},  //   _chuo_, mbúr, ciaf,\n  { {0xceb3009b, 0x00000000, 0x00000000, 0x00000000}},  //   היא_,   ,   ,\n  { {0xb8960054, 0x98a00166, 0x24850048, 0x00000000}},  //   _السع, drić_, _colm_,\n  { {0xa3e203d7, 0xa278007c, 0x7ce03e91, 0x00000000}},  //   नें_, ибку_, mörd,\n  { {0x634a006b, 0x00000000, 0x00000000, 0x00000000}},  //   _cəna,   ,   ,\n  { {0xd0100054, 0xb5fd0134, 0x66020022, 0x00000000}},  //   ولة_, _inšp, mcok,\n  { {0x212b2454, 0x00000000, 0x00000000, 0x00000000}},  //   ácha_,   ,   ,\n  { {0x443e01a3, 0xbebd0089, 0x66d804bb, 0x00000000}},  //   _ict_, krīt, níko,\n  { {0x7d16018e, 0x7ce00788, 0x2ee001aa, 0x00000000}},  //   _bwys, hörd, _chif_,\n  { {0xf1b90825, 0x443e00fa, 0x00000000, 0x00000000}},  //   taše_, _kct_,   ,\n  { {0xc0aa0123, 0x67230825, 0xfaf30025, 0x00000000}},  //   _حاصل_, šnji, كثر_,\n  { {0x201e1158, 0xf1b925ec, 0x443e00fa, 0x00000000}},  //   mati_, raše_, _mct_,\n  { {0x201e001b, 0x7d79026c, 0x3ea90169, 0x00000000}},  //   lati_, _نمبر_, _umat_,\n  { {0x6aad22c2, 0x7ce003a9, 0xad2700a1, 0x00000000}},  // [ef30] riaf, förd, _اربو,\n  { {0x201e01bc, 0x798d0169, 0x443e0082, 0x00000000}},  //   nati_, ryaw, _nct_,\n  { {0x23a702fb, 0x798d0093, 0x69c10036, 0x00000000}},  //   _केंद, syaw, _śled,\n  { {0x3eb914b4, 0x443e00ab, 0xf7700137, 0x00000000}},  //   nnst_, _act_, عال_,\n  { {0x201e0be3, 0x2a3a007b, 0x3eb900ab, 0x00000000}},  //   kati_, _דערמ, inst_,\n  { {0x201e0340, 0x634a006b, 0xd4690140, 0x00000000}},  //   jati_, _səna, рике_,\n  { {0x68ff001c, 0x201e0209, 0xa5c30036, 0x00000000}},  //   lqqd, dati_, _łódz,\n  { {0xcfce0044, 0x38630ea9, 0x634a006b, 0x00000000}},  //   রধান, _hajr_, _qəna,\n  { {0x2ee0018e, 0x201e0fe0, 0x38630066, 0x00000000}},  //   _rhif_, fati_, _kajr_,\n  { {0x4f250407, 0x3eb905c6, 0x661b00d9, 0x00000000}},  //   одоб, enst_, _heuk,\n  { {0x661b00b5, 0x56b50049, 0x629b0082, 0x00000000}},  //   _keuk, ַפֿן_, phuo,\n  { {0x7d16018e, 0x7af80010, 0x661b00bb, 0x00000000}},  //   _pwys, _évti, _jeuk,\n  { {0x7ce0010f, 0x7c3e0203, 0x00000000, 0x00000000}},  //   höre, _pcpr,   ,\n  { {0x201e0198, 0xb87b00d4, 0x3f690088, 0x00000000}},  //   cati_, _guíx, _вико_,\n  { {0xe519013d, 0x00000000, 0x00000000, 0x00000000}},  //   नीति_,   ,   ,\n  { {0x83fc0091, 0x00000000, 0x00000000, 0x00000000}},  //   _mađa,   ,   ,\n  { {0xed5a0265, 0xd943007c, 0xf8aa0816, 0x00000000}},  // [ef40] _топ_, мети, авак_,\n  { {0x7ce00039, 0x7e6427ce, 0x00000000, 0x00000000}},  //   före, _haip,   ,\n  { {0x160a0025, 0xc8150088, 0x7e6400b0, 0x00000000}},  //   لياً_, яєть, _kaip,\n  { {0x201e0209, 0x443e07b0, 0x7e640145, 0x00000000}},  //   zati_, _sct_, _jaip,\n  { {0x443e161c, 0x7e64011c, 0x6d460056, 0x00000000}},  //   _pct_, _maip, ntka,\n  { {0x7e640d90, 0x6c7a0049, 0x6d460145, 0x00000000}},  //   _laip, שאַפ, itka,\n  { {0x201e0119, 0x3eb901e5, 0x00000000, 0x00000000}},  //   vati_, ynst_,   ,\n  { {0x09de0183, 0x201e0169, 0x7e64011c, 0x00000000}},  //   _मराठ, wati_, _naip,\n  { {0xa5070088, 0x443e0082, 0x60f7007e, 0x00000000}},  //   _мета_, _tct_, оныя_,\n  { {0xdb1e028c, 0x443e12ec, 0x661b002d, 0x00000000}},  //   _expé, _uct_, _zeuk,\n  { {0x201e2866, 0x0206008b, 0xd7d0001c, 0x00000000}},  //   rati_, _дзен, _तुमच,\n  { {0x201e0209, 0xeeab0457, 0x7e6421e7, 0x00000000}},  //   sati_, рток_, _caip,\n  { {0x201e0475, 0x6fca0061, 0xc2e90647, 0x00000000}},  //   pati_, _सुरू, _اعلم_,\n  { {0xcce706ea, 0x6458006c, 0x443c00e5, 0x00000000}},  //   تسجي, nevi, ngv_,\n  { {0x7ce00039, 0x6d4604cb, 0x6e9501ab, 0x00000000}},  //   förb, atka, _нику,\n  { {0x645800ea, 0x00000000, 0x00000000, 0x00000000}},  //   hevi,   ,   ,\n  { {0x64580d96, 0xb5fd0091, 0x661b040f, 0x00000000}},  // [ef50] kevi, _naša, _reuk,\n  { {0x6458091e, 0xf1b9092f, 0x7ce004ce, 0x00000000}},  //   jevi, naša_, töre,\n  { {0x64580056, 0x2bd20061, 0x7e643491, 0x00000000}},  //   devi, _दुपा, _yaip,\n  { {0x6e3d001f, 0x201c3e92, 0x7ce00d47, 0x00000000}},  //   ngsb, _levi_, röre,\n  { {0x3d0f0061, 0x260a013d, 0x7ce000f8, 0x00000000}},  //   तीचे_, ाड़ी_, söre,\n  { {0x645800b5, 0x201c0284, 0xfaf801b2, 0x00000000}},  //   gevi, _nevi_, _دریغ_,\n  { {0x68fd256b, 0x661b0d25, 0xa3570167, 0x00000000}},  //   _husd, _teuk, تیاط_,\n  { {0x3bbc009b, 0x644a0026, 0x68fd30a1, 0x00000000}},  //   ימוד, affi, _kusd,\n  { {0x64580030, 0xdb0a06b8, 0x201c0026, 0x00000000}},  //   bevi, čnéh, _bevi_,\n  { {0x645817f3, 0xd24e0123, 0x76590016, 0x00000000}},  //   cevi, پنی_, lewy,\n  { {0x201c0207, 0x7e6401c5, 0x5f0507d0, 0x00000000}},  //   _devi_, _paip, язна,\n  { {0xc33201f8, 0xed5a0437, 0x76590016, 0x00000000}},  //   _טוב_, бом_, newy,\n  { {0xdd92023c, 0x23900089, 0x7e643e93, 0x00000000}},  //   روس_, _vējš_, _vaip,\n  { {0x8fa50099, 0x644100d4, 0xe0d80088, 0x00000000}},  //   _нале, _jcli, _дві_,\n  { {0x68fd010f, 0x3a203e94, 0xeb970216, 0x00000000}},  //   _ausd, taip_, пир_,\n  { {0x6458016c, 0x68f50089, 0x68fd05a6, 0x00000000}},  //   zevi, _aizd, _busd,\n  { {0x6458005f, 0x68f5005d, 0x3a200051, 0x00000000}},  // [ef60] yevi, _bizd, raip_,\n  { {0x244f005a, 0x29000065, 0xb5fd0d90, 0x00000000}},  //   nımı_, rqia_, _raša,\n  { {0x6458068f, 0xabfb00b3, 0x3b0a012b, 0x00000000}},  //   vevi, _להיר, _ћемо_,\n  { {0xb5fd0d90, 0x76590007, 0x6441013f, 0x00000000}},  //   _paša, gewy, _acli,\n  { {0x244f014a, 0x68fd0022, 0x20070544, 0x00000000}},  //   kımı_, _gusd, _ofni_,\n  { {0x7afe008d, 0xb5fd0107, 0xb4d60309, 0x00000000}},  //   _kupt, _vaša, सते_,\n  { {0x2f013e95, 0x201c01aa, 0x289b00a3, 0x00000000}},  //   _nóg_, _revi_, _פילא,\n  { {0x64580089, 0x201c0089, 0x4ece0044, 0x00000000}},  //   sevi, _sevi_, রগুল,\n  { {0x64581b43, 0xb5fd0107, 0x7afe001a, 0x00000000}},  //   pevi, _kašn, _lupt,\n  { {0x6722001e, 0xf8cc013d, 0x64410048, 0x00000000}},  //   ņoju, ़किय, _gcli,\n  { {0x442c3e96, 0xf1b9021c, 0x7afe0093, 0x00000000}},  //   _idd_, raša_, _nupt,\n  { {0x2007009f, 0x442c0011, 0x2126012d, 0x00000000}},  //   _efni_, _hdd_, _tvoh_,\n  { {0x201c3e97, 0x6d5d00b5, 0x442c3e98, 0x00000000}},  //   _tevi_, uwsa, _kdd_,\n  { {0x64410009, 0x68fd1f31, 0xe7be0164, 0x00000000}},  //   _xcli, _rusd, ्थाप,\n  { {0x66d8000c, 0x7afe001a, 0x442c0253, 0x00000000}},  //   ríkj, _cupt, _mdd_,\n  { {0x628603b6, 0x68f5005a, 0x68fd3e99, 0x00000000}},  //   ökoh, _sizd, _pusd,\n  { {0x68f5016e, 0xf8b10167, 0x442c3e9a, 0x00000000}},  // [ef70] _pizd, نکس_, _odd_,\n  { {0x7d0d0020, 0xb4d60061, 0x442c06ed, 0x00000000}},  //   _itas, सतो_, _ndd_,\n  { {0x59f90057, 0xf093052f, 0x64410c10, 0x00000000}},  //   _меня_, ענע_, _rcli,\n  { {0x442c0038, 0x940c005f, 0xe7300355, 0x00000000}},  //   _add_, _ildə_, اصل_,\n  { {0xd126031d, 0x290b0010, 0x644100bb, 0x00000000}},  //   _جم_, _utca_, _pcli,\n  { {0x2a690004, 0x39493e9b, 0x442c009d, 0x00000000}},  //   ldab_, mtas_, _cdd_,\n  { {0x442c254b, 0x6e2d0363, 0x255d01aa, 0x00000000}},  //   _ddd_, _odab, _wňl_,\n  { {0x2a690004, 0x39493e9c, 0x6e2d0117, 0x00000000}},  //   ndab_, otas_, _ndab,\n  { {0x244f005d, 0x21690594, 0x7d0d0117, 0x00000000}},  //   tımı_, ципи_, _ntas,\n  { {0x26cf0555, 0x39491049, 0x6e2d01a3, 0x00000000}},  //   logo_, itas_, _adab,\n  { {0xd2510054, 0x244f005a, 0x39490051, 0x00000000}},  //   _لنا_, rımı_, htas_,\n  { {0x39493e9d, 0x7afe1911, 0x26cf00ee, 0x00000000}},  //   ktas_, _rupt, nogo_,\n  { {0x504500ed, 0x244f014a, 0x442c0016, 0x00000000}},  //   _желб, pımı_, _ydd_,\n  { {0x442c008e, 0x7ce00039, 0x2f010048, 0x00000000}},  //   _xdd_, föra, _tóg_,\n  { {0x38ad005f, 0xcee900d3, 0xb5fd1c61, 0x00000000}},  //   _görə_, ترین_, _našo,\n  { {0x628b3e9e, 0xa3e202d2, 0x3b0700ed, 0x00000000}},  //   _jogo, नेट_, ќето_,\n  { {0x26cf000b, 0x628b01d9, 0x3946008b, 0x00000000}},  // [ef80] dogo_, _mogo, ьнаг,\n  { {0x66092e51, 0xddc406b8, 0x316d009d, 0x00000000}},  //   _afek, _kniž, ivez_,\n  { {0x26cf0181, 0x75290197, 0xfaa6007e, 0x00000000}},  //   fogo_, _avez, _жано,\n  { {0x628b11e6, 0x26cf0020, 0xbc3a00a1, 0x00000000}},  //   _nogo, gogo_, _اسکا_,\n  { {0x39490211, 0xb5fd0521, 0x2ab7002b, 0x00000000}},  //   ctas_, _tašn, għbu_,\n  { {0x69c60066, 0xe2f8007e, 0x00000000, 0x00000000}},  //   _ixke, пекі_,   ,\n  { {0xbcfb0047, 0xf626025f, 0x442c004a, 0x00000000}},  //   lvét, _одво, _vdd_,\n  { {0xa686008b, 0xd048006b, 0xf99f000a, 0x00000000}},  //   _ўлад, ələy, _ofèl_,\n  { {0x628b0bf8, 0x041d0055, 0x442c1cdc, 0x00000000}},  //   _dogo, _নারী_, _tdd_,\n  { {0x442c0190, 0x297b0049, 0x00000000, 0x00000000}},  //   _udd_, קטיא,   ,\n  { {0x75293e9f, 0xf83700b6, 0x628b0010, 0x00000000}},  //   _zvez, ונית_, _fogo,\n  { {0xe7e603d7, 0x628b022b, 0xb5fd0142, 0x00000000}},  //   _करना_, _gogo, _našl,\n  { {0x41e20201, 0xa06a003b, 0x39490d7b, 0x00000000}},  //   _परिस, _мада_, xtas_,\n  { {0xbef5013e, 0x00000000, 0x00000000, 0x00000000}},  //   _říča,   ,   ,\n  { {0xdfd00054, 0x1bd404f1, 0xa3e20061, 0x00000000}},  //   _حيث_, воря, नेच_,\n  { {0x39490039, 0x6e2d002d, 0xb5fd0006, 0x00000000}},  //   ttas_, _udab, _rašo,\n  { {0x7d0d13df, 0x39490006, 0xdced0161, 0x00000000}},  // [ef90] _utas, utas_, _hrač,\n  { {0x39491f51, 0x7bc0005a, 0xcc2700a1, 0x00000000}},  //   rtas_, ğmur, _کرکٹ,\n  { {0x752902d7, 0x87040088, 0xea000082, 0x00000000}},  //   _svez, вяче, _ngặt_,\n  { {0xb5fd33e5, 0x39490006, 0x61e20089, 0x00000000}},  //   _vašo, ptas_, _ozol,\n  { {0x7aed00f4, 0xdd32006b, 0x628b3ea0, 0x00000000}},  //   mmat, _məşq, _rogo,\n  { {0x7aed2962, 0xb5fd3ea1, 0x628b00ca, 0x00000000}},  //   lmat, _zašl, _sogo,\n  { {0x628b3d7f, 0x7aed0032, 0x7ce03ea2, 0x00000000}},  //   _pogo, omat, körn,\n  { {0xc2450256, 0x7aed3ea3, 0x7ce0000c, 0x00000000}},  //   хник, nmat, jörn,\n  { {0xddc43ea4, 0x316d00f4, 0x628b016c, 0x00000000}},  //   _sniž, uvez_, _vogo,\n  { {0x7aed01a3, 0x316d2b25, 0x93bc001a, 0x00000000}},  //   hmat, rvez_, _adău,\n  { {0xc0a806f1, 0x7aed04cb, 0xe7e30204, 0x00000000}},  //   بايل_, kmat, केचा_,\n  { {0xed5a1843, 0xdced04c8, 0xf77201ce, 0x00000000}},  //   пом_, _drač, אקט_,\n  { {0x7aed0127, 0xdb0a00b9, 0x8d760025, 0x00000000}},  //   dmat, čníh, راحا,\n  { {0x7aed0277, 0x66d8000c, 0xddc401f3, 0x00000000}},  //   emat, ríki, _iniż,\n  { {0xb5fd3ea5, 0xa09a00a0, 0x7aed00ea, 0x00000000}},  //   _pašl, _מיסט, fmat,\n  { {0x7aed027b, 0xb8660123, 0xdce4012d, 0x00000000}},  //   gmat, کارو, _orić,\n  { {0x510c0049, 0xdced1032, 0x38a4010f, 0x00000000}},  // [efa0] ַהאַ, _zrač, _jörg_,\n  { {0x7aed3ea6, 0x6e2615b7, 0x38a4000c, 0x00000000}},  //   amat, lakb, _mörg_,\n  { {0x78be001c, 0x6f0b001a, 0x3ea00190, 0x00000000}},  //   rnpv, _încă, _klit_,\n  { {0xd7ef0025, 0x7aed1ba2, 0xe1e70137, 0x00000000}},  //   حكم_, cmat, _مس_,\n  { {0xbcfb3ea7, 0x66d103b1, 0x00000000, 0x00000000}},  //   lvér, råkp,   ,\n  { {0xf36601f9, 0x3ea00129, 0x00000000, 0x00000000}},  //   етин, _llit_,   ,\n  { {0x61e20047, 0xcc3b0049, 0x37e30088, 0x00000000}},  //   _szol, לעסט, _борг,\n  { {0x290200b0, 0x75490010, 0x386a00d2, 0x00000000}},  //   _kuka_, öszö, _habr_,\n  { {0x634a005f, 0x29020145, 0x5bbd007d, 0x00000000}},  //   _məni, _juka_, _ईश्व,\n  { {0xdced1581, 0x29020127, 0x7aed0091, 0x00000000}},  //   _prač, _muka_, zmat,\n  { {0x2902016e, 0xdfd00025, 0x7aed24f0, 0x00000000}},  //   _luka_, شيح_, ymat,\n  { {0xdced0e0f, 0x71a6007e, 0x764200e7, 0x00000000}},  //   _vrač, _паез, ngoy,\n  { {0x6562010f, 0x7aed0af3, 0xf8bf00b9, 0x00000000}},  //   nwoh, vmat, _svém_,\n  { {0xe04a007a, 0x7aed0066, 0x3ea015fb, 0x00000000}},  //   _رشته_, wmat, _elit_,\n  { {0x7aed006c, 0x75f6014a, 0x29023ea8, 0x00000000}},  //   tmat, _yüzü, _auka_,\n  { {0xb5fd129d, 0x290204cb, 0x7aed07ff, 0x00000000}},  //   _pašm, _buka_, umat,\n  { {0x200b0046, 0x634a005f, 0x19580147, 0x00000000}},  // [efb0] ście_, _dəni, наты_,\n  { {0x290f001e, 0x2902183a, 0x26c40166, 0x00000000}},  //   īga_, _duka_, _ajmo_,\n  { {0x7aed010e, 0xe7e60061, 0xdce401ed, 0x00000000}},  //   pmat, _करणा_, _srić,\n  { {0x6aa40abe, 0xb5fd0521, 0x31660032, 0x00000000}},  //   chif, _tašm, _osoz_,\n  { {0xb5fd0107, 0xd46902ea, 0x00000000, 0x00000000}},  //   _hašk, диле_,   ,\n  { {0x2298009f, 0x64cb0164, 0x6e260010, 0x00000000}},  //   _fékk_, िवेश, zakb,\n  { {0x64a20a1e, 0x753c0089, 0x38a4006b, 0x00000000}},  //   раща, _ārze, _dörd_,\n  { {0xe7e602fb, 0x3959014a, 0x67d40194, 0x00000000}},  //   _करता_, _kpss_, _сосу,\n  { {0x7ce00d47, 0xb5fd0059, 0x98a90036, 0x00000000}},  //   förl, _lašk, grać_,\n  { {0xd3a71447, 0xf99f000a, 0x3eb201d6, 0x00000000}},  //   _преп, _afèk_, _smyt_,\n  { {0x09de0164, 0x6e26011c, 0xbea6003b, 0x00000000}},  //   _मर्य, takb, ванк,\n  { {0x4427020c, 0x2bd5013d, 0x98a90036, 0x00000000}},  //   lan_, _धड़ा, brać_,\n  { {0x61450072, 0x4427002d, 0x38a401a2, 0x00000000}},  //   _рела, oan_, _höre_,\n  { {0x4427020c, 0x634a006b, 0xfce60545, 0x00000000}},  //   nan_, _səni, того,\n  { {0x644300db, 0x442704be, 0x2902027e, 0x00000000}},  //   igni, ian_, _suka_,\n  { {0x4427033b, 0xdd920076, 0x3ea0006a, 0x00000000}},  //   han_, _نوع_, _ulit_,\n  { {0x4427020c, 0x6f031db2, 0x2bd20164, 0x00000000}},  // [efc0] kan_, _hunc, _दुरा,\n  { {0x44273ea9, 0x2902037e, 0x6f0304cb, 0x00000000}},  //   jan_, _vuka_, _kunc,\n  { {0x7d04049b, 0xdc9b009b, 0x6e240145, 0x00000000}},  //   _huis, _חייל, _keib,\n  { {0x6f033eaa, 0x7d04000b, 0x44273eab, 0x00000000}},  //   _munc, _kuis, ean_,\n  { {0x44273eac, 0x7d0402ae, 0x76420483, 0x00000000}},  //   fan_, _juis, rgoy,\n  { {0x6e24002a, 0x7d04021e, 0x4427066d, 0x00000000}},  //   _leib, _muis, gan_,\n  { {0x7d040100, 0x6f030977, 0x61f7006b, 0x00000000}},  //   _luis, _nunc, əblə,\n  { {0x68fc235c, 0x442700b0, 0x6e242313, 0x00000000}},  //   _hird, aan_, _neib,\n  { {0x44270e69, 0x7ce0014a, 0x7d04009d, 0x00000000}},  //   ban_, törl, _nuis,\n  { {0x44270038, 0x38a40039, 0x7ce00a5d, 0x00000000}},  //   can_, _före_, förm,\n  { {0x38a4011f, 0x394000c7, 0x6e240016, 0x00000000}},  //   _göre_, huis_, _beib,\n  { {0x527603ab, 0xb5fd0107, 0x7d040051, 0x00000000}},  //   _جائز, _rašk, _buis,\n  { {0x7d04028c, 0x6143007e, 0xb5fd167a, 0x00000000}},  //   _cuis, _веча, _sašk,\n  { {0x7d04037f, 0xd1970104, 0xb5fd16d0, 0x00000000}},  //   _duis, _בכדי_, _pašk,\n  { {0x99bf0055, 0x395904be, 0xcf8f003b, 0x00000000}},  //   _আরেক, _spss_, _тј_,\n  { {0x5a3400d7, 0x68fc0051, 0x7d040b51, 0x00000000}},  //   инст, _aird, _fuis,\n  { {0x44270811, 0x3eb90004, 0x39400129, 0x00000000}},  // [efd0] yan_, mist_, guis_,\n  { {0x3eb90004, 0x44273716, 0xb5fd18db, 0x00000000}},  //   list_, xan_, _tašk,\n  { {0x442732f6, 0x7e6d29be, 0x68fc0569, 0x00000000}},  //   van_, _kaap, _dird,\n  { {0x44271463, 0xb5fd037e, 0x7e6d006c, 0x00000000}},  //   wan_, _kaši, _jaap,\n  { {0x6d4f0f57, 0xc984007c, 0x7e6d2eac, 0x00000000}},  //   ntca, _кури, _maap,\n  { {0xdfc60054, 0xb5fd0c47, 0x44270169, 0x00000000}},  //   _هي_, _maši, uan_,\n  { {0x4427020c, 0x7afd0010, 0x7c253ead, 0x00000000}},  //   ran_, _kist, _mehr,\n  { {0x4427020c, 0x36d52821, 0x5694008b, 0x00000000}},  //   san_, _собр, _каст,\n  { {0x7afd01d5, 0x6f030119, 0x225f0116, 0x00000000}},  //   _mist, _sunc, reuk_,\n  { {0x7afd0f68, 0x6f0312e9, 0xb5fd0410, 0x00000000}},  //   _list, _punc, _naši,\n  { {0x69dd0146, 0x7d0400f4, 0x7ea60779, 0x00000000}},  //   _lyse, _suis, _lópe,\n  { {0x3eb936f8, 0x7afd01eb, 0x7d04028c, 0x00000000}},  //   gist_, _nist, _puis,\n  { {0x6d4f001c, 0x7d040489, 0x44253eae, 0x00000000}},  //   gtca, _quis, _kel_,\n  { {0x7afd3eaf, 0x3ebe0047, 0x44250119, 0x00000000}},  //   _aist, őtt_, _jel_,\n  { {0x7afd01cd, 0x442501a3, 0x7c25002b, 0x00000000}},  //   _bist, _mel_, _dehr,\n  { {0x3eb9027b, 0x7d043eb0, 0x68fc08ad, 0x00000000}},  //   cist_, _tuis, _sird,\n  { {0x6d4f001c, 0xb5fd041a, 0x3edb007b, 0x00000000}},  // [efe0] ctca, _faši, _אַזא,\n  { {0x4425213b, 0xe9d72cb4, 0x7afd018e, 0x00000000}},  //   _nel_, уку_, _eist,\n  { {0x7afd027b, 0x6ac60151, 0x69dd00d9, 0x00000000}},  //   _fist, _مقدم, _eyse,\n  { {0x3940028c, 0x7afd0168, 0xfbd3009b, 0x00000000}},  //   puis_, _gist, _לתת_,\n  { {0x68fc001e, 0x394000f4, 0x3cfd006b, 0x00000000}},  //   _tird, quis_, _üzvü_,\n  { {0x4425000d, 0x7afd0027, 0x00000000, 0x00000000}},  //   _cel_, _zist,   ,\n  { {0x442506c2, 0xd047006b, 0x07d80014, 0x00000000}},  //   _del_, _ölən, _شهرک_,\n  { {0x7afd027b, 0x4425006c, 0xe20a00b4, 0x00000000}},  //   _xist, _eel_, _otóż_,\n  { {0x44250bc4, 0xe6930025, 0x09c40044, 0x00000000}},  //   _fel_, _القد, ্ধকা,\n  { {0x2e24001d, 0x7e6d00b0, 0x3eb900bb, 0x00000000}},  //   _đườn, _saap, wist_,\n  { {0x3eb90edb, 0x3246002c, 0x2d990007, 0x00000000}},  //   tist_, _مناف, wyse_,\n  { {0x6d4f001c, 0x442518d9, 0x7c253267, 0x00000000}},  //   ttca, _zel_, _sehr,\n  { {0x7afd08a6, 0x99bf0055, 0x212b0051, 0x00000000}},  //   _rist, _আর্ক, ácht_,\n  { {0x2d990007, 0x3076012b, 0x200e0197, 0x00000000}},  //   ryse_, _људс, _uffi_,\n  { {0x7afd021e, 0x3eb90c78, 0x709b0049, 0x00000000}},  //   _pist, pist_, _אױגו,\n  { {0x3861010f, 0x7c25010f, 0xc9870467, 0x00000000}},  //   wehr_, _wehr, лузи,\n  { {0x7c25006b, 0xf1b90ed8, 0x3a2901d6, 0x00000000}},  // [eff0] _tehr, taši_, raap_,\n  { {0x7afd00bb, 0x9c470088, 0x00000000, 0x00000000}},  //   _wist, _схил,   ,\n  { {0x4425001c, 0x7afd0233, 0x69dd0fb6, 0x00000000}},  //   _rel_, _tist, _wyse,\n  { {0x44250004, 0xaa6700e3, 0x7afd016e, 0x00000000}},  //   _sel_, _сток, _uist,\n  { {0x442504bd, 0xa2b3013d, 0xddc40006, 0x00000000}},  //   _pel_, इफस्, _kaiš,\n  { {0xd4910082, 0x00000000, 0x00000000, 0x00000000}},  //   _tìm_,   ,   ,\n  { {0x4425009f, 0xddc40006, 0x98a00006, 0x00000000}},  //   _vel_, _maiš, usią_,\n  { {0xd6c304e1, 0x44250250, 0xddc40006, 0x00000000}},  //   _امری, _wel_, _laiš,\n  { {0x8447002c, 0x38a40039, 0x95cb10d8, 0x00000000}},  //   _مخال, _höra_, _чува_,\n  { {0x38a40039, 0x4095007c, 0xddc41435, 0x00000000}},  //   _köra_, ррит, _naiš,\n  { {0xaec6007c, 0x212d0199, 0x8e860088, 0x00000000}},  //   ибол, sseh_, агне,\n  { {0x9fa2000c, 0x00000000, 0x00000000, 0x00000000}},  //   ríða_,   ,   ,\n  { {0x9fa2000c, 0xee37004c, 0x00000000, 0x00000000}},  //   síða_, шня_,   ,\n  { {0x659a0049, 0x61e6014a, 0x634a006b, 0x00000000}},  //   דישק, ükle, _tənt,\n  { {0x7c220521, 0xdee6017a, 0x00000000, 0x00000000}},  //   _đord, _коки,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n\n  { {0x7ce003a9, 0xd946030d, 0x7bde00b4, 0x00000000}},  // [f000] höri, рези, _wypu,\n  { {0xddc40e3f, 0xdbdf000c, 0x26c7004a, 0x00000000}},  //   _gaiš, _tíði, énon_,\n  { {0x6e3600b9, 0x291f0023, 0x00000000, 0x00000000}},  //   _kdyb, _çuan_,   ,\n  { {0xe7370081, 0xf1b901c5, 0x98a00243, 0x00000000}},  //   рец_, lašu_, ksić_,\n  { {0x25a00195, 0xa806007c, 0x00000000, 0x00000000}},  //   áil_, _взгл,   ,\n  { {0xe71a0380, 0x7ce0072d, 0x38a40039, 0x00000000}},  //   _ليست_, föri, _föra_,\n  { {0x38a40073, 0x25a00387, 0x3952007f, 0x00000000}},  //   _göra_, šil_, ltys_,\n  { {0xcb13009b, 0x634a006b, 0x00000000, 0x00000000}},  //   חלה_, _səns,   ,\n  { {0x3952010a, 0xe5a301fb, 0xdb230048, 0x00000000}},  //   ntys_, _дити, órúc,\n  { {0xb5fd001e, 0x92c80044, 0x00000000, 0x00000000}},  //   _pašv, োগে_,   ,\n  { {0x7879007b, 0x8c010044, 0x645a013f, 0x00000000}},  //   אָרו, ্রমন_, _ibti,\n  { {0x26c63eb1, 0x3952007f, 0x00000000, 0x00000000}},  //   nnoo_, ktys_,   ,\n  { {0x1cbb031d, 0x6dcb007e, 0x91e32e81, 0x00000000}},  //   ناسب_, тынг_, _доце,\n  { {0xfa230044, 0x9d180a85, 0x00000000, 0x00000000}},  //   _ফাইল_, рорт_,   ,\n  { {0x62820116, 0xddc4007f, 0x6017009b, 0x00000000}},  //   _knoo, _vaiš, _דחוף_,\n  { {0xb34502d5, 0xb5fd0626, 0x6e360036, 0x00000000}},  //   luçã, _kašt, _gdyb,\n  { {0xf80723ee, 0x645a0e98, 0x628201ee, 0x00000000}},  // [f010] ачен, _obti, _mnoo,\n  { {0x2bd2007d, 0xb5fd0091, 0x645e006c, 0x00000000}},  //   _दुका, _mašt, õpil,\n  { {0x628201d6, 0xb06500b0, 0x7ea6000c, 0x00000000}},  //   _onoo, lmää, _hópa,\n  { {0x7ea6000c, 0xcfa80044, 0x645a0035, 0x00000000}},  //   _kópa, _ওখান, _abti,\n  { {0x6c78089d, 0xb5fd07ac, 0x2bdb013d, 0x00000000}},  //   _صحیح_, _našt, _मुता,\n  { {0xb717023c, 0x38a400f8, 0x645a004a, 0x00000000}},  //   _نظرت, _hörn_, _cbti,\n  { {0xb34502d5, 0xddc4001a, 0xd7c90025, 0x00000000}},  //   duçã, _obiş, _صوره_,\n  { {0xb5fd037e, 0x224b001f, 0x7ce0014a, 0x00000000}},  //   _bašt, ück_, röri,\n  { {0x765b0045, 0x00000000, 0x00000000, 0x00000000}},  //   _ibuy,   ,   ,\n  { {0x10a5007c, 0x657b0dfc, 0x62820087, 0x00000000}},  //   сион, _iruh, _enoo,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x395200b0, 0x00000000, 0x00000000, 0x00000000}},  //   ytys_,   ,   ,\n  { {0xc1080011, 0x8f6700a1, 0x765b33b9, 0x00000000}},  //   _hỗn_, _چلتے_, _mbuy,\n  { {0x61eb0ad8, 0x98a70224, 0xb3450181, 0x00000000}},  //   _izgl, čně_, cuçã,\n  { {0xb5fd0119, 0x38a4009f, 0x765b0009, 0x00000000}},  //   _zašt, _börn_, _obuy,\n  { {0xbebd0089, 0xad9b00c4, 0x8f9a009b, 0x00000000}},  //   usīt, rcúr, _תיקי,\n  { {0x8c46007e, 0x7bc1009d, 0x6d403017, 0x00000000}},  // [f020] _лепе, ûlur, ámad,\n  { {0x6d460149, 0x3952178b, 0x765b0145, 0x00000000}},  //   muka, rtys_, _abuy,\n  { {0xe61a256f, 0x6d4601a3, 0xeb9a16e3, 0x00000000}},  //   где_, luka, _син_,\n  { {0x7c2e3eb2, 0x657b3eb3, 0xd6d90088, 0x00000000}},  //   labr, _bruh, аті_,\n  { {0x7ae40066, 0x7af60176, 0x00000000, 0x00000000}},  //   mlit, mmyt,   ,\n  { {0x7ae4021e, 0x657b0428, 0xb5fd0006, 0x00000000}},  //   llit, _druh, _rašt,\n  { {0x6d4601a3, 0xf743012c, 0x7ae4010e, 0x00000000}},  //   huka, _неро, olit,\n  { {0x6d460149, 0xb5fd010a, 0xc1140080, 0x00000000}},  //   kuka, _pašt, омиј,\n  { {0xddcd190a, 0x6d4604cb, 0x1a9b0049, 0x00000000}},  //   _snaž, juka, טיקע,\n  { {0x7ae40016, 0x6d46033b, 0x39400051, 0x00000000}},  //   hlit, duka, iris_,\n  { {0x7c2e0006, 0x201e0006, 0x7ae4006c, 0x00000000}},  //   dabr, rbti_, klit,\n  { {0x442e0016, 0x6d460066, 0x39401992, 0x00000000}},  //   laf_, fuka, kris_,\n  { {0xf1940057, 0xd0120014, 0x6d460010, 0x00000000}},  //   _филь, _فلش_, guka,\n  { {0x39403443, 0x442e0397, 0x7c2e000c, 0x00000000}},  //   dris_, naf_, gabr,\n  { {0x7ae40a15, 0x394011f6, 0xb0650103, 0x00000000}},  //   flit, eris_, smää,\n  { {0x6d46006a, 0x3da7003b, 0x442e0016, 0x00000000}},  //   buka, _гроб, haf_,\n  { {0x26c700f4, 0x442e0935, 0x3940302e, 0x00000000}},  // [f030] énom_, kaf_, gris_,\n  { {0x7c2e00d4, 0x37ab02ea, 0x442e0258, 0x00000000}},  //   cabr, лтен_, jaf_,\n  { {0x7ae401aa, 0x39403eb4, 0x442e0016, 0x00000000}},  //   blit, aris_, daf_,\n  { {0x39400089, 0xdced0091, 0xc519007e, 0x00000000}},  //   bris_, _brać, аўкі_,\n  { {0x4efc0049, 0x61e20010, 0x442e02ef, 0x00000000}},  //   אלאג, _nyol, faf_,\n  { {0x2ecf0055, 0x8339007c, 0x6aad01a2, 0x00000000}},  //   রতিষ, ачит_, lhaf,\n  { {0x3ea2000c, 0x61fe006b, 0x61e20022, 0x00000000}},  //   ykkt_, əzlə, _ayol,\n  { {0x29030f68, 0x290b037e, 0x765b0061, 0x00000000}},  //   _hija_, _kuca_, _ubuy,\n  { {0x657b0061, 0x442e3eb5, 0x3f77001a, 0x00000000}},  //   _uruh, baf_, _său_,\n  { {0x6d460e88, 0x3ea904fa, 0x442e0016, 0x00000000}},  //   vuka, _alat_, caf_,\n  { {0x290325c3, 0x3e8a06bb, 0x290b0207, 0x00000000}},  //   _mija_, айно_, _luca_,\n  { {0x2919006c, 0x60c8006c, 0x7ce001a2, 0x00000000}},  //   _otsa_, andm, hört,\n  { {0x7c2e000c, 0x61eb0afe, 0x290b0035, 0x00000000}},  //   tabr, _uzgl, _nuca_,\n  { {0x8fa5007c, 0x6ae201f5, 0x3f77001a, 0x00000000}},  //   _мале, पत्र, _tău_,\n  { {0x6d460149, 0x7ae40051, 0x3ea900ab, 0x00000000}},  //   suka, tlit, _flat_,\n  { {0x394036b1, 0xa92610f3, 0x6aad3eb6, 0x00000000}},  //   tris_, ждал, ghaf,\n  { {0x2903001e, 0x7ae4000c, 0x442e018e, 0x00000000}},  // [f040] _bija_, rlit, yaf_,\n  { {0x39401ce2, 0x7ae4073a, 0x29030107, 0x00000000}},  //   rris_, slit, _cija_,\n  { {0x7ae41d9e, 0x29030065, 0x76590016, 0x00000000}},  //   plit, _dija_, ffwy,\n  { {0x6aad001f, 0x2f5a007b, 0x7d7700a6, 0x00000000}},  //   chaf, ידענ, _امیر_,\n  { {0x20070198, 0x20030746, 0x29033eb7, 0x00000000}},  //   _ogni_, žjih_, _fija_,\n  { {0xdced0091, 0x54b701e1, 0xb4e403d7, 0x00000000}},  //   _vrać, огія_, नते_,\n  { {0x644a01d6, 0xe7370264, 0x7cf200ea, 0x00000000}},  //   rgfi, _мер_, mærd,\n  { {0x442e018e, 0xdced016c, 0x3a370049, 0x00000000}},  //   saf_, _trać, ֿרים_,\n  { {0x210402d2, 0xdddd0036, 0x5066007e, 0x00000000}},  //   रदेश_, zesł, отна,\n  { {0x61e20263, 0x442e3eb8, 0x2ee00276, 0x00000000}},  //   _vyol, qaf_, _akif_,\n  { {0x7336026c, 0xa2e63eb9, 0x4ada0061, 0x00000000}},  //   _ذرائ, _дожд, ढवाव,\n  { {0x442c0030, 0x7eb60089, 0x20070016, 0x00000000}},  //   _hed_, kšpu, _egni_,\n  { {0x442c0027, 0x217600ed, 0x6f040035, 0x00000000}},  //   _ked_, _фуер, _diic,\n  { {0x442c0b41, 0xa0671cf4, 0x7d1d000c, 0x00000000}},  //   _jed_, _мача_, rpss,\n  { {0x442c1bea, 0x290b0209, 0x6aad1642, 0x00000000}},  //   _med_, _suca_, thaf,\n  { {0x29030107, 0x7ce00002, 0x3ea921fb, 0x00000000}},  //   _sija_, förs, _ulat_,\n  { {0x442c018e, 0x81dc0055, 0x255e001e, 0x00000000}},  // [f050] _oed_, ণের_, nālā_,\n  { {0x6aad1b76, 0xab870099, 0x5e3500a1, 0x00000000}},  //   shaf, _думк, _بڑھا,\n  { {0x6aad009f, 0x2903070c, 0x6e2d04be, 0x00000000}},  //   phaf, _vija_, _keab,\n  { {0x41ca001c, 0xe81b0164, 0x442c006c, 0x00000000}},  //   ापास, _प्रा_, _aed_,\n  { {0x29033eba, 0x442c05d0, 0xa5670b03, 0x00000000}},  //   _tija_, _bed_, تدان,\n  { {0x6e2d002a, 0x7d0d00b0, 0xd5ae0025, 0x00000000}},  //   _leab, _muas, طفى_,\n  { {0x9505026c, 0x7d0d3ebb, 0xd04e006b, 0x00000000}},  //   _کہتے_, _luas, _ödən,\n  { {0x442c01d6, 0xe3b0023c, 0x26cd0521, 0x00000000}},  //   _eed_, خره_, _ujeo_,\n  { {0x0577007a, 0x7d0d002a, 0xb5fd3ebc, 0x00000000}},  //   _بازد, _nuas, _gašp,\n  { {0xdce40046, 0x442c04b3, 0x7fd5007e, 0x00000000}},  //   _ksią, _ged_, зімі,\n  { {0x2bdb0201, 0x3949004a, 0x7cf20190, 0x00000000}},  //   _मुला, huas_, nære,\n  { {0x75290009, 0x7d0d02ef, 0x26dd0036, 0x00000000}},  //   _kwez, _buas, nowo_,\n  { {0x6e2d0032, 0x7d0d10c9, 0xd0090478, 0x00000000}},  //   _deab, _cuas, _леле_,\n  { {0x711a00b6, 0x7529000b, 0x317a00a3, 0x00000000}},  //   _הוספ, _mwez, _לאנד,\n  { {0x6e2d002a, 0x7cf20030, 0xafe2007c, 0x00000000}},  //   _feab, værd, _пошл,\n  { {0x6609020e, 0x2bdb0061, 0x7d0d0fcc, 0x00000000}},  //   _ngek, _मुळा, _fuas,\n  { {0xf2d2007b, 0x39490211, 0x7d0d3ebd, 0x00000000}},  // [f060] גען_, guas_, _guas,\n  { {0x62990390, 0x4d7b007b, 0x6aa405b7, 0x00000000}},  //   _lowo, _פריע, skif,\n  { {0x442c0af7, 0xdc9b0476, 0x4c9b009b, 0x00000000}},  //   _red_, _הייל, _השיע,\n  { {0x62990046, 0x7e760146, 0x2d80000a, 0x00000000}},  //   _nowo, _jayp, _krie_,\n  { {0xe5a30072, 0x60c10890, 0x442c1163, 0x00000000}},  //   ници, kilm, _ped_,\n  { {0x442c01d5, 0x7cf205b7, 0x38a406a1, 0x00000000}},  //   _qed_, bære, _mörk_,\n  { {0x442c02cc, 0x60c10279, 0x26dd2ab2, 0x00000000}},  //   _ved_, dilm, bowo_,\n  { {0xfa97007b, 0xb909001d, 0x6299023a, 0x00000000}},  //   ִדיש_, _nghị_, _cowo,\n  { {0x442c00b9, 0x62990036, 0x6e2d1c37, 0x00000000}},  //   _ted_, _dowo, _reab,\n  { {0xf48406c6, 0x20090279, 0xd2590089, 0x00000000}},  //   _تاری, _şair_, riņa_,\n  { {0x2d803ebe, 0x7d0d04cb, 0x0857009b, 0x00000000}},  //   _arie_, _suas, הבים_,\n  { {0x7d0d027e, 0x2d80009d, 0x88c40044, 0x00000000}},  //   _puas, _brie_, ্তিক,\n  { {0x7d0d0d87, 0x60c13ebf, 0x2d800181, 0x00000000}},  //   _quas, bilm, _crie_,\n  { {0x2d800100, 0x60c11ad2, 0x649d00f6, 0x00000000}},  //   _drie_, cilm, _hèir,\n  { {0x905b009b, 0xc053009b, 0x2d800322, 0x00000000}},  //   _הכות, _נזק_, _erie_,\n  { {0x7cf20637, 0x2d800637, 0x39493ec0, 0x00000000}},  //   være, _frie_, tuas_,\n  { {0x2d800173, 0x00000000, 0x00000000, 0x00000000}},  // [f070] _grie_,   ,   ,\n  { {0x39490145, 0x7cf208e0, 0x00000000, 0x00000000}},  //   ruas_, tære,   ,\n  { {0x8d1800e9, 0x00000000, 0x00000000, 0x00000000}},  //   _وزیر_,   ,   ,\n  { {0x75290ed7, 0x394904be, 0x7cf20190, 0x00000000}},  //   _pwez, puas_, rære,\n  { {0xf6501095, 0xb609001e, 0x60c10180, 0x00000000}},  //   ائم_, višķ, yilm,\n  { {0x7b080051, 0x6299010f, 0xd0060025, 0x00000000}},  //   _óstá, _sowo, _لل_,\n  { {0x62990046, 0x60c10334, 0xb6090089, 0x00000000}},  //   _powo, vilm, tišķ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7529000b, 0x60c1014a, 0x7ce01829, 0x00000000}},  //   _uwez, tilm, körp,\n  { {0x629909bd, 0x7e760058, 0x00000000, 0x00000000}},  //   _wowo, _sayp,   ,\n  { {0x60c1038c, 0x7e76001c, 0x6e4601fc, 0x00000000}},  //   rilm, _payp, менз,\n  { {0x2d80010a, 0x00000000, 0x00000000, 0x00000000}},  //   _prie_,   ,   ,\n  { {0x63a3005b, 0xf2d81847, 0x60c11d83, 0x00000000}},  //   lynn, _عظمت_, pilm,\n  { {0x7e7600bb, 0x00000000, 0x00000000, 0x00000000}},  //   _wayp,   ,   ,\n  { {0x1ae600e2, 0x6fb20025, 0x3bd5007c, 0x00000000}},  //   довм, _لموا, еютс,\n  { {0x2d800068, 0x00000000, 0x00000000, 0x00000000}},  //   _trie_,   ,   ,\n  { {0x2d800023, 0x00000000, 0x00000000, 0x00000000}},  // [f080] _urie_,   ,   ,\n  { {0xbddb0129, 0xb8660445, 0xfc06007c, 0x00000000}},  //   rgèt, بارو, _оппо,\n  { {0x7c3e107b, 0xb3a90180, 0x00000000, 0x00000000}},  //   _idpr, çılı,   ,\n  { {0x9f9600b6, 0x63a3272b, 0x00000000, 0x00000000}},  //   ודעה_, dynn,   ,\n  { {0x7ae9002b, 0x95531125, 0x00000000, 0x00000000}},  //   ċett, نخوا,   ,\n  { {0x63a30016, 0x6d4604be, 0xcdb7009b, 0x00000000}},  //   fynn, irka, ופנה_,\n  { {0x38780051, 0xbddb00f4, 0x63a33ec1, 0x00000000}},  //   _iarr_, ngèr, gynn,\n  { {0xd13a007c, 0x26c23ec2, 0x387800f8, 0x00000000}},  //   охо_, _öko_, _harr_,\n  { {0x7c3e01d9, 0x00000000, 0x00000000, 0x00000000}},  //   _odpr,   ,   ,\n  { {0x63a3018e, 0x634a006b, 0x4fc6142c, 0x00000000}},  //   bynn, _mənz, дсма,\n  { {0xc108001d, 0x3878164d, 0x63a30016, 0x00000000}},  //   _mỗi_, _marr_, cynn,\n  { {0xc108001d, 0xd12f0167, 0x7c3e00d2, 0x00000000}},  //   _lỗi_, _چمن_, _adpr,\n  { {0x752201aa, 0x6ce70088, 0x6aa3001a, 0x00000000}},  //   npoz, діве, _înfi,\n  { {0xdce40046, 0xfc64005e, 0x443e0032, 0x00000000}},  //   _księ, късн, _jdt_,\n  { {0xc1080011, 0x443e0145, 0x6d4601a3, 0x00000000}},  //   _nỗi_, _mdt_, arka,\n  { {0x6d460107, 0x634a006b, 0x00000000, 0x00000000}},  //   brka, _bənz,   ,\n  { {0x3878002a, 0x752205c5, 0x6d46016c, 0x00000000}},  // [f090] _barr_, jpoz, crka,\n  { {0x1b1e0055, 0x38780051, 0x6b7501fc, 0x00000000}},  //   _ফিরে_, _carr_, _злоу,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x443e0066, 0x1995326d, 0x7bd70066, 0x00000000}},  //   _adt_, _замя, _ixxu,\n  { {0x38783ec3, 0x2a790066, 0x443e0035, 0x00000000}},  //   _farr_, _iasb_, _bdt_,\n  { {0x38780173, 0x00000000, 0x00000000, 0x00000000}},  //   _garr_,   ,   ,\n  { {0x25a9152a, 0x443e0145, 0x395900d9, 0x00000000}},  //   šal_, _ddt_, _hqss_,\n  { {0x6d4601c9, 0x63a30016, 0x443e0133, 0x00000000}},  //   yrka, rynn, _edt_,\n  { {0x212b0263, 0xf07600a1, 0x4105092b, 0x00000000}},  //   èch_, ڑیوں_, нзив,\n  { {0x443e02ad, 0x3f5800c4, 0x00000000, 0x00000000}},  //   _gdt_, féu_,   ,\n  { {0xd2510647, 0x4427004a, 0x7ea601e5, 0x00000000}},  //   _منا_, mbn_, _hópi,\n  { {0x6d46050f, 0x037802fd, 0x9f470023, 0x00000000}},  //   trka, _زحمت_, _hynë_,\n  { {0x628b011c, 0x0d830088, 0x661b0020, 0x00000000}},  //   _ingo, глян, _mfuk,\n  { {0x3f580919, 0x6d4601e5, 0x00000000, 0x00000000}},  //   béu_, rrka,   ,\n  { {0xeb9a0088, 0x75220395, 0x6d460087, 0x00000000}},  //   чив_, zpoz, srka,\n  { {0x8a0603f3, 0xc3320104, 0xc1080082, 0x00000000}},  //   езбе, טול_, _rỗi_,\n  { {0xd9430726, 0xe9d7005e, 0x44270093, 0x00000000}},  // [f0a0] лети, ект_, kbn_,\n  { {0x2bdb006e, 0x660d0ed9, 0x26cf0032, 0x00000000}},  //   _मुका, žakl, engo_,\n  { {0xe666003b, 0xd70a007c, 0x628b0133, 0x00000000}},  //   етло, чнее_, _ongo,\n  { {0xdce40006, 0x634a006b, 0x443e02d4, 0x00000000}},  //   _priė, _tənz, _sdt_,\n  { {0xf99200a6, 0x1a9b007b, 0x7ea60181, 0x00000000}},  //   _صبح_, _זיכע, _cópi,\n  { {0x628b042d, 0x26cf3ec4, 0x752206ed, 0x00000000}},  //   _ango, ango_, rpoz,\n  { {0xd62a1dac, 0x6205006b, 0x43940069, 0x00000000}},  //   _нове_, ərlə, тайс,\n  { {0x04ca00a1, 0x290a0010, 0x00000000, 0x00000000}},  //   _کوئي_, _hiba_,   ,\n  { {0x443e029a, 0x290a01aa, 0x7ae30181, 0x00000000}},  //   _tdt_, _kiba_, _ínte,\n  { {0xdfda0265, 0x60f7007e, 0x7e642a36, 0x00000000}},  //   зъм_, нныя_, _abip,\n  { {0xf8b300b3, 0x6909049c, 0x290a3ec5, 0x00000000}},  //   רשת_, _ožen, _miba_,\n  { {0x234b00a2, 0x93250167, 0x7ae60058, 0x00000000}},  //   _رسمی_, _شرمن, _nkkt,\n  { {0x25a604bd, 0xf2370049, 0xbcfb009d, 0x00000000}},  //   nyol_, _טראץ_, ntég,\n  { {0x290a0061, 0x3f5800c4, 0x00000000, 0x00000000}},  //   _niba_, péu_,   ,\n  { {0x6aaf0026, 0xee3f01dc, 0x207b0049, 0x00000000}},  //   _plcf, lkým_, _מאגא,\n  { {0x290a001a, 0x00000000, 0x00000000, 0x00000000}},  //   _aiba_,   ,   ,\n  { {0x290a3ec6, 0x7e7d01a2, 0x00000000, 0x00000000}},  // [f0b0] _biba_, mdsp,   ,\n  { {0x5b153be5, 0x7e7d01bf, 0x290a01c5, 0x00000000}},  //   _имот, ldsp, _ciba_,\n  { {0xe70b00a6, 0x290a0e21, 0x6d5d0f4f, 0x00000000}},  //   ستان_, _diba_, ltsa,\n  { {0x26cf2d21, 0x6d5d01b1, 0x00000000, 0x00000000}},  //   ungo_, otsa,   ,\n  { {0x6d5d022b, 0x290a007f, 0x7e7d3ec7, 0x00000000}},  //   ntsa, _fiba_, idsp,\n  { {0xe7330647, 0xdced04eb, 0x6d5d01a2, 0x00000000}},  //   _مصر_, _krađ, itsa,\n  { {0x8c1c00b6, 0x6d5d0004, 0x58d40256, 0x00000000}},  //   לוגי, htsa, _сорт,\n  { {0x7ea602d5, 0x7aed165e, 0x7e7d0030, 0x00000000}},  //   _tópi, nlat, jdsp,\n  { {0x6d4f037e, 0x7aed0032, 0x44270093, 0x00000000}},  //   juca, ilat, pbn_,\n  { {0x6d4f001a, 0x39490181, 0x7aed0052, 0x00000000}},  //   duca, iras_, hlat,\n  { {0x6ef60047, 0x64410058, 0xfbc60044, 0x00000000}},  //   vább, _idli, _শুনত,\n  { {0x38a40002, 0x39490006, 0x628b011c, 0x00000000}},  //   _hört_, kras_, _ungo,\n  { {0x2d8401ca, 0x6d4f0107, 0xee3f0161, 0x00000000}},  //   íme_, guca, ckým_,\n  { {0x10a20131, 0x7e7d0168, 0x00000000, 0x00000000}},  //   _вишн, adsp,   ,\n  { {0x39493000, 0x290a0727, 0x6ef60010, 0x00000000}},  //   eras_, _riba_, rább,\n  { {0x7aed1b04, 0x39490285, 0x6d4f0a89, 0x00000000}},  //   glat, fras_, buca,\n  { {0x64410209, 0x39490181, 0x290a0c8f, 0x00000000}},  // [f0c0] _odli, gras_, _piba_,\n  { {0xdd31005f, 0x64413ec8, 0x61eb01e5, 0x00000000}},  //   ləşd, _ndli, _mygl,\n  { {0xdced0119, 0x7aed010f, 0x39492e86, 0x00000000}},  //   _građ, blat, aras_,\n  { {0x3949201f, 0x76a901fb, 0x7aed0129, 0x00000000}},  //   bras_, нтів_, clat,\n  { {0x7ae4021e, 0x290a1636, 0x3949008e, 0x00000000}},  //   moit, _tiba_, cras_,\n  { {0x7ae400b0, 0xf4d00044, 0x2f1a0089, 0x00000000}},  //   loit, িত্ব, _līga_,\n  { {0x3ea000c7, 0x7ea6000c, 0x38a4014a, 0x00000000}},  //   _ooit_, _hópu, _dört_,\n  { {0xf77701f8, 0x7ae400b0, 0xb6a3041f, 0x00000000}},  //   _בעלי_, noit, _кисл,\n  { {0xb6a30265, 0x26c400f4, 0x6d400521, 0x00000000}},  //   _титл, _immo_, šmaj,\n  { {0x7ae4021e, 0x7aed0095, 0x00000000, 0x00000000}},  //   hoit, zlat,   ,\n  { {0x7ae40234, 0x7aed31a3, 0xf837009b, 0x00000000}},  //   koit, ylat, כנית_,\n  { {0x7ae4021e, 0x6d4f3035, 0x6d5d20b4, 0x00000000}},  //   joit, tuca, ttsa,\n  { {0x3ea0028c, 0x6d5d3ec9, 0x7ae43eca, 0x00000000}},  //   _doit_, utsa, doit,\n  { {0x40340081, 0x39490181, 0x6d5d0374, 0x00000000}},  //   _секс, vras_, rtsa,\n  { {0x6d5d0190, 0x9f58021e, 0xc33900b9, 0x00000000}},  //   stsa, ärä_, žívá,\n  { {0x394902d5, 0x6ab60016, 0x7ae40032, 0x00000000}},  //   tras_, ghyf, goit,\n  { {0x394917e0, 0xac190069, 0x89340025, 0x00000000}},  // [f0d0] uras_, _попу_, لعلا,\n  { {0x7aed049a, 0x39493ecb, 0x6ef60010, 0x00000000}},  //   slat, rras_, mába,\n  { {0x7aed0428, 0xdced0521, 0x6ef60010, 0x00000000}},  //   plat, _urađ, lába,\n  { {0x60c80127, 0x38a43ecc, 0x394905a0, 0x00000000}},  //   hidm, _börs_, pras_,\n  { {0xd12606b4, 0x64410061, 0x6ef60010, 0x00000000}},  //   _دم_, _pdli, nába,\n  { {0x6f0d3ecd, 0xd25901c5, 0x00000000, 0x00000000}},  //   _liac, miņi_,   ,\n  { {0xf794007e, 0xd5bf0089, 0x2ca101a3, 0x00000000}},  //   _карэ, _šādu_, _mohd_,\n  { {0x4ee50044, 0x6ef60010, 0x6aad2050, 0x00000000}},  //   নগুল, kába, nkaf,\n  { {0x2f1a001e, 0x6ef60010, 0x00e500e3, 0x00000000}},  //   _rīga_, jába, лжин,\n  { {0x3ea0028c, 0x7ae41806, 0xa5da0049, 0x00000000}},  //   _soit_, zoit, _אַבי,\n  { {0xb5fd010a, 0x1eca0aa2, 0x61eb0046, 0x00000000}},  //   _rašy, елни_, _wygl,\n  { {0x1e9601a4, 0x7fb3006b, 0x6f0d00b4, 0x00000000}},  //   урор, nəqə, _ciac,\n  { {0x3ea03ae7, 0x7ae4021e, 0x6f0d001a, 0x00000000}},  //   _voit_, voit, _diac,\n  { {0xe1f00426, 0x38b60030, 0x6f0d0197, 0x00000000}},  //   _بسم_, _kære_, _eiac,\n  { {0x3ea03ece, 0x6f0d0051, 0x2ca5000c, 0x00000000}},  //   _toit_, _fiac, ölda_,\n  { {0x6f0d0207, 0x2d96007c, 0x00000000, 0x00000000}},  //   _giac, _брос,   ,\n  { {0xceb40163, 0x7ae400b0, 0x38b605b7, 0x00000000}},  // [f0e0] _ilə_, roit, _lære_,\n  { {0x48c40055, 0x47bf0044, 0x7ae400b0, 0x00000000}},  //   ্ত্র, ্থনী, soit,\n  { {0x7ae436fe, 0x38b601e3, 0xbcfb009d, 0x00000000}},  //   poit, _nære_, utée,\n  { {0xbcfb009d, 0x4438007f, 0x00000000, 0x00000000}},  //   rtée, _žr_,   ,\n  { {0x64a60822, 0x8e570476, 0xbcfb009d, 0x00000000}},  //   лада, רינג_, stée,\n  { {0xd37a0069, 0x04c80076, 0xbcfb009d, 0x00000000}},  //   ечи_, ضوعي_, ptée,\n  { {0x38b60030, 0x38a40039, 0x60c80203, 0x00000000}},  //   _værd_, _förr_, vidm,\n  { {0x57e701f9, 0x66e63ecf, 0x6ef60010, 0x00000000}},  //   _сдсм_, _соба, yába,\n  { {0xd0100054, 0x6f0d002a, 0xc05a0451, 0x00000000}},  //   يلة_, _riac, нін_,\n  { {0x2ee90fc1, 0x6f0d005b, 0xbcfb0010, 0x00000000}},  //   _skaf_, _siac, ztéb,\n  { {0x6f0d3e18, 0x645a005f, 0x3f870091, 0x00000000}},  //   _piac, _icti, _crnu_,\n  { {0x6ef61acf, 0x91860380, 0x7d160284, 0x00000000}},  //   tába, _مجتم, _buys,\n  { {0x69093ed0, 0x6f0d0027, 0x60c80173, 0x00000000}},  //   _džej, _viac, pidm,\n  { {0xceb4005f, 0x6ef603b5, 0xb17b0097, 0x00000000}},  //   _elə_, rába, _נטור,\n  { {0x6ef60010, 0x645a04c1, 0x2cb30082, 0x00000000}},  //   sába, _mcti, _vlxd_,\n  { {0x8aa43ed1, 0xd2590089, 0x6ef60010, 0x00000000}},  //   бруд, tiņi_, pába,\n  { {0x38350216, 0x6aad01e5, 0x9f4b0010, 0x00000000}},  // [f0f0] инар, rkaf, ülök_,\n  { {0x6aad00eb, 0x201e0173, 0x00000000, 0x00000000}},  //   skaf, ncti_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x17f80054, 0x2f1a0089, 0x7c3701c3, 0x00000000}},  //   اركة_, _līgo_, _hexr,\n  { {0xa5640054, 0x7fb3013f, 0x00000000, 0x00000000}},  //   مدون, rəqə,   ,\n  { {0xd4690175, 0xdb1e00c4, 0x628000d9, 0x00000000}},  //   тике_, _expõ, edmo,\n  { {0x63aa005b, 0x00000000, 0x00000000, 0x00000000}},  //   gyfn,   ,   ,\n  { {0x38b602cc, 0xb145013b, 0xe8e00011, 0x00000000}},  //   _være_, анил, _đứa_,\n  { {0xe0d909bb, 0xd6d80069, 0xf77000a1, 0x00000000}},  //   кви_, _стр_, _واہ_,\n  { {0x1f650057, 0x05de0309, 0x34940131, 0x00000000}},  //   аком, _फुटब, _лаур,\n  { {0xb4fa0049, 0x00000000, 0x00000000, 0x00000000}},  //   _ספעי,   ,   ,\n  { {0xdee600ed, 0x00000000, 0x00000000, 0x00000000}},  //   роми,   ,   ,\n  { {0x59a50061, 0x2d8900f6, 0x00000000, 0x00000000}},  //   _गॅलर, _crae_,   ,\n  { {0x7cf23ed2, 0x69090089, 0x00000000, 0x00000000}},  //   mærk, _džek,   ,\n  { {0xea5a01f9, 0x00000000, 0x00000000, 0x00000000}},  //   крај_,   ,   ,\n  { {0x3eb9010f, 0x00000000, 0x00000000, 0x00000000}},  //   chst_,   ,   ,\n  { {0x3b0705f6, 0xa96a0644, 0xc9a727c6, 0x00000000}},  // [f100] рето_, ضمام_, авте_,\n  { {0xd2590089, 0xa96700d7, 0x7afd0023, 0x00000000}},  //   miņu_, рифа_, _ehst,\n  { {0x7c3c2828, 0x657b008a, 0xd2590089, 0x00000000}},  //   marr, _asuh, liņu_,\n  { {0x7c3c022b, 0x9f4700b9, 0x95ca0c4e, 0x00000000}},  //   larr, _nyní_, кула_,\n  { {0x97840014, 0xd2590089, 0xdb1e00fa, 0x00000000}},  //   _گیاه, niņu_, _expô,\n  { {0x7c3c318c, 0x00000000, 0x00000000, 0x00000000}},  //   narr,   ,   ,\n  { {0xa69602a8, 0x39403ed3, 0xe737007c, 0x00000000}},  //   _крај, lsis_, _вес_,\n  { {0x7c3c022b, 0x66e3003b, 0x3a2013b8, 0x00000000}},  //   harr, _доса, ncip_,\n  { {0x7c3c022b, 0x39402b5f, 0x628000c4, 0x00000000}},  //   karr, nsis_, rdmo,\n  { {0x7c3c000c, 0xa0a60364, 0x3940009d, 0x00000000}},  //   jarr, ршил, isis_,\n  { {0x7c3c022b, 0x38170104, 0x443c08a8, 0x00000000}},  //   darr, יקים_, mav_,\n  { {0xa186045a, 0x39400772, 0x443c3ed4, 0x00000000}},  //   _выкл, ksis_, lav_,\n  { {0x7c3c022b, 0x6562033b, 0x6efd0010, 0x00000000}},  //   farr, ntoh, jébe,\n  { {0x7c3c022b, 0x64581288, 0x443c014a, 0x00000000}},  //   garr, ngvi, nav_,\n  { {0xa3cc01f5, 0x0c84007e, 0x00000000, 0x00000000}},  //   रपट_, цыям,   ,\n  { {0x25600263, 0x443c00f8, 0x2d890211, 0x00000000}},  //   kòl_, hav_, _trae_,\n  { {0x443c01cd, 0x7bde050a, 0x65620065, 0x00000000}},  // [f110] kav_, _expu, jtoh,\n  { {0x7c3c0118, 0x1a6500a2, 0x256001aa, 0x00000000}},  //   carr, _گیری_, dòl_,\n  { {0x39400006, 0x443c3eae, 0x3e860010, 0x00000000}},  //   asis_, dav_, sítő_,\n  { {0x6e3d0058, 0x65620023, 0x6d4f0048, 0x00000000}},  //   nasb, ftoh, orca,\n  { {0x98b3005f, 0x39400232, 0x442e0045, 0x00000000}},  //   şdır_, csis_, fbf_,\n  { {0x7cf20030, 0x443c1693, 0x64580abc, 0x00000000}},  //   værk, gav_, ggvi,\n  { {0x291900ea, 0xd2590089, 0x67d40793, 0x00000000}},  //   _husa_, ziņu_, _дору,\n  { {0x7c3c002d, 0x6b83008e, 0x7cf20737, 0x00000000}},  //   zarr, _ángu, tærk,\n  { {0x443c0119, 0x7c3c0032, 0x7659005b, 0x00000000}},  //   bav_, yarr, mgwy,\n  { {0x291901a3, 0x92c90044, 0x7c3c0de2, 0x00000000}},  //   _musa_, োতে_, xarr,\n  { {0x7c3c0211, 0x14d600b3, 0x2911133d, 0x00000000}},  //   varr, _פועל_, _miza_,\n  { {0x394004a5, 0x29113a05, 0x6ef600d6, 0x00000000}},  //   ysis_, _liza_, rábo,\n  { {0x7c3c022b, 0xe7f40201, 0x2919023a, 0x00000000}},  //   tarr, _अर्थ_, _nusa_,\n  { {0x6efd3ed5, 0x2911016e, 0xd2590089, 0x00000000}},  //   vébe, _niza_, riņu_,\n  { {0x6d4f0048, 0x7cf20637, 0xe0d00439, 0x00000000}},  //   arca, næri, _غزه_,\n  { {0x7c3c0219, 0x25600263, 0x6b63008b, 0x00000000}},  //   sarr, yòl_, якса,\n  { {0x7c3c002d, 0xbcfb0051, 0xfaa33ed6, 0x00000000}},  // [f120] parr, stéa, чато,\n  { {0xeb9a012b, 0x7c3c002b, 0x6efd0010, 0x00000000}},  //   _био_, qarr, rébe,\n  { {0x25600263, 0x39403ed7, 0xbb860054, 0x00000000}},  //   wòl_, ssis_, _الجي,\n  { {0x394021e4, 0xe7370200, 0xef120049, 0x00000000}},  //   psis_, сец_, פּע_,\n  { {0x443c0004, 0x29193ed8, 0x6bd700a2, 0x00000000}},  //   tav_, _gusa_, _نویس_,\n  { {0x29111242, 0x65620065, 0x38b6000c, 0x00000000}},  //   _giza_, rtoh, _færa_,\n  { {0x443c01cd, 0x961d001e, 0x65620065, 0x00000000}},  //   rav_, _saņe, stoh,\n  { {0x65620065, 0x256001aa, 0x57b40061, 0x00000000}},  //   ptoh, pòl_, ंनीह,\n  { {0x5a9b0049, 0xb3a9019a, 0x00000000, 0x00000000}},  //   רשפא, çırı,   ,\n  { {0xf993009b, 0x6aa606d3, 0x397b00a0, 0x00000000}},  //   פרת_, _lokf, נטינ,\n  { {0x64483ed9, 0xd0100025, 0x6d4401cb, 0x00000000}},  //   _iddi, بلد_, _avia,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6d440061, 0x6e3d19ce, 0x3a390142, 0x00000000}},  //   _cvia, rasb, _resp_,\n  { {0x291901a3, 0x9f340088, 0x3f98006c, 0x00000000}},  //   _rusa_, _декі, ärus_,\n  { {0x29190032, 0xdddd0010, 0x6aa60039, 0x00000000}},  //   _susa_, reső, _bokf,\n  { {0x62820e00, 0x291938a5, 0x8aa4060e, 0x00000000}},  //   _jaoo, _pusa_, пруд,\n  { {0x64480142, 0x19590147, 0x291100fa, 0x00000000}},  // [f130] _oddi, разы_, _piza_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xb065021e, 0x00000000, 0x00000000, 0x00000000}},  //   llää,   ,   ,\n  { {0x64480038, 0x35f50264, 0xb6c900a1, 0x00000000}},  //   _addi, опер, جائے_,\n  { {0x29111391, 0xd5670069, 0x29190225, 0x00000000}},  //   _tiza_, степ, _uusa_,\n  { {0x7659018e, 0xfbd00123, 0x81cc0044, 0x00000000}},  //   sgwy, _آتی_, _শুভ_,\n  { {0x5c5c0049, 0x68fa009b, 0x47bf0044, 0x00000000}},  //   אדוק, _כלשה, ্থহী,\n  { {0x64480047, 0x7f41001c, 0x6e3b000c, 0x00000000}},  //   _eddi, vslq, ðubl,\n  { {0x26cf00f7, 0x76493eda, 0xb5fd00ca, 0x00000000}},  //   migo_, _idey, _obši,\n  { {0x26cf011c, 0x7e6d0009, 0x6e240026, 0x00000000}},  //   ligo_, _abap, _sfib,\n  { {0xb4e50164, 0x6d440142, 0x78a700ca, 0x00000000}},  //   नवी_, _svia, _mojv,\n  { {0x26cf005b, 0xdce40089, 0x44250203, 0x00000000}},  //   nigo_, _oriģ, _hfl_,\n  { {0x21a509ae, 0xbcfb0047, 0xe29f009f, 0x00000000}},  //   _филм, rtén, öðu_,\n  { {0x6c3601b7, 0x26cf06a9, 0x212d01a3, 0x00000000}},  //   تفسا, higo_, mpeh_,\n  { {0x442505ad, 0xbea6004d, 0x2b4300f6, 0x00000000}},  //   _mfl_, _макк, gsjc_,\n  { {0x75290107, 0x26cf0059, 0x00000000, 0x00000000}},  //   _otez, jigo_,   ,\n  { {0x26cf3edb, 0xd6cf0044, 0x442501e5, 0x00000000}},  // [f140] digo_, িকায, _ofl_,\n  { {0x2d800009, 0x44250133, 0x0903105c, 0x00000000}},  //   _isie_, _nfl_, дпун,\n  { {0xe61a012b, 0xfaa60d68, 0xf7720b6c, 0x00000000}},  //   аде_, _дано, باء_,\n  { {0x44253edc, 0x366a01ee, 0x00000000, 0x00000000}},  //   _afl_, радо_,   ,\n  { {0x85761298, 0xe5a3142c, 0x4425007f, 0x00000000}},  //   تدائ, мици, _bfl_,\n  { {0x2d802046, 0x7af600b0, 0x7ae90059, 0x00000000}},  //   _msie_, llyt, čete,\n  { {0xb4ca03d7, 0x26cf1d5e, 0x6282012d, 0x00000000}},  //   _लगी_, bigo_, _paoo,\n  { {0xc29801fe, 0x6b8300c4, 0x71461ba3, 0x00000000}},  //   ских_, _ânge, охож,\n  { {0x3952000a, 0xddcf0035, 0x00000000, 0x00000000}},  //   nrys_, iecţ,   ,\n  { {0x92ca0044, 0x7af60016, 0x6ef60048, 0x00000000}},  //   লকে_, hlyt, lábh,\n  { {0xb4d6001c, 0x2d801d1f, 0xf4870bb6, 0x00000000}},  //   ाची_, _asie_, _باقی,\n  { {0x216a01f9, 0x00000000, 0x00000000, 0x00000000}},  //   _види_,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x26cf0020, 0x3a3f0e0d, 0x6ef60048, 0x00000000}},  //   zigo_, _žup_, hábh,\n  { {0x0b8801fe, 0x7af60039, 0x8aa701ee, 0x00000000}},  //   ости_, flyt, орад,\n  { {0x6d480036, 0x7c41016c, 0x00000000, 0x00000000}},  //   ądar, _švrć,   ,\n  { {0x26cf0197, 0xb955005e, 0x6d4004a5, 0x00000000}},  // [f150] vigo_, яващ, šmar,\n  { {0x3ea90082, 0x60da01a2, 0x00000000, 0x00000000}},  //   _hoat_, nntm,   ,\n  { {0x26cf3edd, 0x78a7003b, 0x75290514, 0x00000000}},  //   tigo_, _vojv, _stez,\n  { {0x4b7a007b, 0x442500f6, 0x9f4b0010, 0x00000000}},  //   _פארו, _sfl_, ülék_,\n  { {0xceb40049, 0x26cf0181, 0x7989002b, 0x00000000}},  //   ויף_, rigo_, _ġeww,\n  { {0x7d7c00a3, 0x3b09006b, 0xf484003b, 0x00000000}},  //   ינדו, lmaq_, дућн,\n  { {0x5c38009b, 0x163502d9, 0x61e20032, 0x00000000}},  //   חרון_, _невя, _axol,\n  { {0xd36e0076, 0xc245007c, 0x3b09006b, 0x00000000}},  //   اهي_, чник, nmaq_,\n  { {0xddc40059, 0xdced0006, 0x8467005e, 0x00000000}},  //   _obiš, _apač, _мъже,\n  { {0x44250146, 0xdce4002b, 0x64570b33, 0x00000000}},  //   _ufl_, _oriġ, óxid,\n  { {0xf1a80014, 0x3ea900ab, 0xc0a8067a, 0x00000000}},  //   مایه_, _boat_, تايل_,\n  { {0x2485032e, 0x3ea90133, 0xbcfb0010, 0x00000000}},  //   _halm_, _coat_, stél,\n  { {0x2485002b, 0x29030fcf, 0x00000000, 0x00000000}},  //   _kalm_, _ohja_,   ,\n  { {0xc212009b, 0x6729016c, 0x7cf200ea, 0x00000000}},  //   _נהג_, _čejn, jært,\n  { {0xa09a0097, 0xfce3004c, 0xddcf001a, 0x00000000}},  //   _ליסט, хоро, tecţ,\n  { {0xaa7b009f, 0x39520016, 0xa926007c, 0x00000000}},  //   _skýr, trys_, здал,\n  { {0x3e5b00b6, 0xddcf001a, 0x7af604a5, 0x00000000}},  // [f160] _הדפס, recţ, rlyt,\n  { {0xb4ca02d2, 0x6d4604d3, 0xd9100167, 0x00000000}},  //   _लगे_, mska, ئیس_,\n  { {0x6d460378, 0x7c3e001e, 0xec3700a0, 0x00000000}},  //   lska, _iepr, _מאיר_,\n  { {0x7aed03d1, 0xeafa00a6, 0x39520007, 0x00000000}},  //   coat, _درخت_, prys_,\n  { {0x6d4602e1, 0x7c3e10ed, 0xdbce0279, 0x00000000}},  //   nska, _kepr, _bıça,\n  { {0xb4d6001c, 0xf746053c, 0x6d462001, 0x00000000}},  //   ाचे_, _него, iska,\n  { {0x2ca50daf, 0x69c4002b, 0x7c3e01aa, 0x00000000}},  //   öldi_, lzie, _mepr,\n  { {0x6aa4002b, 0x62660025, 0x6d46122f, 0x00000000}},  //   njif, سابق, kska,\n  { {0x69c4059b, 0xd041006b, 0xdb070010, 0x00000000}},  //   nzie, lilə, nyjá,\n  { {0x6d4601c3, 0x3b09006b, 0x55bb009b, 0x00000000}},  //   dska, zmaq_, _הממו,\n  { {0xd041005f, 0x443e0089, 0x3b09006b, 0x00000000}},  //   nilə, _iet_, ymaq_,\n  { {0x443e049b, 0x6f040af7, 0x3b09006b, 0x00000000}},  //   _het_, _chic, xmaq_,\n  { {0xbcfb0428, 0x50b7007a, 0x443e2e92, 0x00000000}},  //   stém, زدید_, _ket_,\n  { {0x69c437d1, 0xd041006b, 0x212b102e, 0x00000000}},  //   dzie, kilə, íche_,\n  { {0x443e049b, 0x3b09005f, 0x7aed01c5, 0x00000000}},  //   _met_, tmaq_, toat,\n  { {0x443e2e9d, 0xd041006b, 0xcff700a3, 0x00000000}},  //   _let_, dilə, _מצוה_,\n  { {0xdd910a90, 0x3b09006b, 0x7aed0023, 0x00000000}},  // [f170] _شود_, rmaq_, roat,\n  { {0x443e298f, 0x7c3e023d, 0x26cd0521, 0x00000000}},  //   _net_, _gepr, _smeo_,\n  { {0x7aed0035, 0x69c40035, 0x3b09006b, 0x00000000}},  //   poat, azie, pmaq_,\n  { {0x24850066, 0xae01013d, 0x6ab6004a, 0x00000000}},  //   _salm_, _ईरान_, ckyf,\n  { {0xe9450167, 0x443e0a98, 0x24851b2a, 0x00000000}},  //   _ترجی, _bet_, _palm_,\n  { {0x443e02b6, 0x69090006, 0xfb1a00a1, 0x00000000}},  //   _cet_, _ežer, _دریں_,\n  { {0x443e05cb, 0xd041006b, 0x6d460089, 0x00000000}},  //   _det_, cilə, zska,\n  { {0x443e0007, 0x6d460036, 0x26cd0521, 0x00000000}},  //   _eet_, yska, _umeo_,\n  { {0x443e1d81, 0x248501c3, 0x746b00e2, 0x00000000}},  //   _fet_, _talm_, _грев_,\n  { {0x443e0038, 0x6d4602e1, 0x2ef21eb0, 0x00000000}},  //   _get_, vska, _skyf_,\n  { {0xdee601b3, 0x64430585, 0x69c4185d, 0x00000000}},  //   дони, mani, zzie,\n  { {0x644305e1, 0x6d461dd0, 0x443e00b5, 0x00000000}},  //   lani, tska, _zet_,\n  { {0x443e00ab, 0xd041006b, 0x629900c7, 0x00000000}},  //   _yet_, zilə, _inwo,\n  { {0x6f040038, 0x64430620, 0xfd5f001d, 0x00000000}},  //   _whic, nani, _huyệ,\n  { {0x7c3e008d, 0x6d4601e3, 0x6f043ede, 0x00000000}},  //   _vepr, sska, _thic,\n  { {0x69c43edf, 0x62890d44, 0x6d460039, 0x00000000}},  //   tzie, ndeo, pska,\n  { {0x644318d5, 0xda650054, 0xf2d201ce, 0x00000000}},  // [f180] kani, عافي, דען_,\n  { {0x64430004, 0x69c400b5, 0xfd5f0011, 0x00000000}},  //   jani, rzie, _luyệ,\n  { {0x64430620, 0x443e0018, 0x9989016c, 0x00000000}},  //   dani, _ret_, rbaš_,\n  { {0xd041005f, 0x443e1ef2, 0x2d920065, 0x00000000}},  //   rilə, _set_, _krye_,\n  { {0x6443000b, 0x443e2256, 0x62890016, 0x00000000}},  //   fani, _pet_, ddeo,\n  { {0x84380025, 0x443e0023, 0x62993ee0, 0x00000000}},  //   أكثر_, _qet_, _anwo,\n  { {0x443e3ee1, 0xd90d025a, 0xd7f20025, 0x00000000}},  //   _vet_, _ایل_, _شكر_,\n  { {0xa2e300ed, 0x2a6034b4, 0x443e1aaf, 0x00000000}},  //   којд, ngib_, _wet_,\n  { {0x443e0263, 0xfd5f0011, 0x29180127, 0x00000000}},  //   _tet_, _duyệ, _kira_,\n  { {0xbcfb0010, 0x62990016, 0x92be0044, 0x00000000}},  //   rték, _enwo, ঁচে_,\n  { {0x0857019b, 0xdfd003ec, 0x00000000, 0x00000000}},  //   ובים_, ايج_,   ,\n  { {0x291820a7, 0x22930025, 0x752000e7, 0x00000000}},  //   _lira_, _للمس, _kumz,\n  { {0x2f1a0089, 0x56370049, 0x00000000, 0x00000000}},  //   _rīgu_, ואכע_,   ,\n  { {0xbca50025, 0x29180145, 0x00000000, 0x00000000}},  //   رمزي, _nira_,   ,\n  { {0xbcfb0051, 0x5f9402dc, 0x00000000, 0x00000000}},  //   ntéi, _чийт,   ,\n  { {0x64430046, 0x5f0403f3, 0xe188001d, 0x00000000}},  //   zani, _изја, _kỳ_,\n  { {0x64432175, 0x7e7d00ab, 0x98b90264, 0x00000000}},  // [f190] yani, mesp, плат_,\n  { {0x64433ee2, 0xe1880082, 0x00000000, 0x00000000}},  //   xani, _mỳ_,   ,\n  { {0x29180756, 0x644313a1, 0x6d5d0169, 0x00000000}},  //   _dira_, vani, lusa,\n  { {0x64430df0, 0xcf93007b, 0x7e7d0089, 0x00000000}},  //   wani, כטע_, nesp,\n  { {0x64430046, 0x29183ee3, 0x6d5d006c, 0x00000000}},  //   tani, _fira_, nusa,\n  { {0xd00600f3, 0xc484008b, 0x29180919, 0x00000000}},  //   _مل_, клік, _gira_,\n  { {0xa3c903d7, 0x64430868, 0x39491325, 0x00000000}},  //   _लेख_, rani, lsas_,\n  { {0x715901be, 0x39490c1b, 0x7e7d00f8, 0x00000000}},  //   прос_, osas_, jesp,\n  { {0x644339e2, 0x7e7d05d5, 0x6d5d1540, 0x00000000}},  //   pani, desp, jusa,\n  { {0x2918027b, 0x39490181, 0x6d5d006c, 0x00000000}},  //   _xira_, isas_, dusa,\n  { {0xfd5f001d, 0x64410089, 0x00000000, 0x00000000}},  //   _tuyệ, _ieli,   ,\n  { {0x64410b83, 0x39490ebc, 0xee3701e1, 0x00000000}},  //   _heli, ksas_, нню_,\n  { {0x6441010a, 0x6d5d14f7, 0xd0a80167, 0x00000000}},  //   _keli, gusa, سطین_,\n  { {0x64413ee4, 0x2d920007, 0x31560097, 0x00000000}},  //   _jeli, _vrye_, _ניצן_,\n  { {0x64410149, 0x7ae90213, 0x39491b04, 0x00000000}},  //   _meli, četn, esas_,\n  { {0x291803dd, 0xfd4a0265, 0x7e7d0851, 0x00000000}},  //   _sira_, _език_, cesp,\n  { {0x6d5d0197, 0x29181ec6, 0x0906004c, 0x00000000}},  // [f1a0] cusa, _pira_, епан,\n  { {0x6441001e, 0xe8f70816, 0x29180023, 0x00000000}},  //   _neli, елу_, _qira_,\n  { {0xf0b60049, 0x29182343, 0x00000000, 0x00000000}},  //   עלער_, _vira_,   ,\n  { {0x75200020, 0x2918003f, 0x64412cdc, 0x00000000}},  //   _pumz, _wira_, _aeli,\n  { {0x6441288b, 0x29180c79, 0x25080167, 0x00000000}},  //   _beli, _tira_, ورتی_,\n  { {0x64410059, 0x7e7d115e, 0x7ebf0065, 0x00000000}},  //   _celi, zesp, _mëpa,\n  { {0xc5f10044, 0x6d5d01a2, 0xd467003b, 0x00000000}},  //   জেলা_, zusa, хије_,\n  { {0xc6150044, 0x6441006c, 0x6d5d0058, 0x00000000}},  //   াড়া_, _eeli, yusa,\n  { {0x7e7d00c4, 0xbcfb3ee5, 0x7bc7002b, 0x00000000}},  //   vesp, stéi, zzju,\n  { {0x6441011f, 0x6d5d006c, 0x53a6007e, 0x00000000}},  //   _geli, vusa, _пазб,\n  { {0x7e7d0039, 0xde590088, 0x00000000, 0x00000000}},  //   tesp, мані_,   ,\n  { {0x6d5d0149, 0x828901fb, 0x64410213, 0x00000000}},  //   tusa, _осіб_, _zeli,\n  { {0x7e7d0292, 0x3b191347, 0x6441019a, 0x00000000}},  //   resp, _risq_, _yeli,\n  { {0x6d5d0149, 0x38b6000c, 0x5ff431ca, 0x00000000}},  //   rusa, _færi_, _излу,\n  { {0x6d5d0518, 0x7e7d3ee6, 0x79860145, 0x00000000}},  //   susa, pesp, _askw,\n  { {0x6d5d0525, 0x39493ee7, 0x539b009b, 0x00000000}},  //   pusa, tsas_, הילו,\n  { {0x38c9026c, 0x394939df, 0x00000000, 0x00000000}},  // [f1b0] وائی_, usas_,   ,\n  { {0x39491325, 0x81e20044, 0x3b1901d5, 0x00000000}},  //   rsas_, _ধরা_, _wisq_,\n  { {0x394902d5, 0x79863ee8, 0xd2460123, 0x00000000}},  //   ssas_, _eskw, _پن_,\n  { {0x64413ee9, 0xc5d501fb, 0x442c0190, 0x00000000}},  //   _seli, кіль, _afd_,\n  { {0x09db0055, 0xd12604e8, 0x442c0e9b, 0x00000000}},  //   _দরকা, _خم_, _bfd_,\n  { {0x64410065, 0xbcfb009d, 0x00000000, 0x00000000}},  //   _qeli, buée,   ,\n  { {0x61fc005f, 0x442c3eea, 0x656b002b, 0x00000000}},  //   ərli, _dfd_, stgh,\n  { {0x64410168, 0x3cf30061, 0x9324025a, 0x00000000}},  //   _weli, ंकडे_, درون,\n  { {0xc692007b, 0x64410357, 0xa156012b, 0x00000000}},  //   _דאן_, _teli, вању_,\n  { {0x409501e0, 0xe0d6007c, 0x00000000, 0x00000000}},  //   трит, квы_,   ,\n  { {0x6009007c, 0x6d4d00b0, 0x662800f8, 0x00000000}},  //   ьном_, _avaa, _åskå,\n  { {0x38b6009f, 0x623502dc, 0xba3b147f, 0x00000000}},  //   _væri_, _реду, _moïs,\n  { {0x0d9900a5, 0x0d8309b2, 0x628b0045, 0x00000000}},  //   нтры_, алян, _iago,\n  { {0x628b0271, 0x6e2d0288, 0x00000000, 0x00000000}},  //   _hago, _efab,   ,\n  { {0x316d00f4, 0x8c43007c, 0x99800006, 0x00000000}},  //   ltez_, ресе, ybių_,\n  { {0x7db60088, 0x628b0213, 0x00000000, 0x00000000}},  //   _асоц, _jago,   ,\n  { {0x628b0244, 0x316d00f4, 0x6aaf0026, 0x00000000}},  // [f1c0] _mago, ntez_, _docf,\n  { {0x628b0181, 0xed5901ca, 0x6efd0010, 0x00000000}},  //   _lago, áže_, yébk,\n  { {0x442c0ace, 0x00000000, 0x00000000, 0x00000000}},  //   _rfd_,   ,   ,\n  { {0x628b0091, 0xb6cb00a1, 0x442c3eeb, 0x00000000}},  //   _nago, وانے_, _sfd_,\n  { {0x64a6003b, 0xd90d00a1, 0x99800006, 0x00000000}},  //   када, زیہ_, rbių_,\n  { {0x628b00e0, 0x44f3007e, 0x00000000, 0x00000000}},  //   _aago, апіс,   ,\n  { {0x628b006a, 0xbcfb00f4, 0xc7a300d7, 0x00000000}},  //   _bago, quée, _кирк,\n  { {0xbcfb1f2c, 0x628b06d2, 0x00000000, 0x00000000}},  //   ltét, _cago,   ,\n  { {0x628b022b, 0x442c3eec, 0xf1a3007e, 0x00000000}},  //   _dago, _tfd_, арэн,\n  { {0xbcfb3eed, 0x628b00d9, 0xf8bf0068, 0x00000000}},  //   ntét, _eago, _tuée_,\n  { {0x628b00ea, 0x00000000, 0x00000000, 0x00000000}},  //   _fago,   ,   ,\n  { {0x628b0032, 0xe3160025, 0x26c611c8, 0x00000000}},  //   _gago, _شباب, nhoo_,\n  { {0x316d00f4, 0x62800181, 0xd1300123, 0x00000000}},  //   ctez_, memo, _امت_,\n  { {0x628b01d9, 0x38b6000c, 0x00000000, 0x00000000}},  //   _zago, _kæru_,   ,\n  { {0x628b0202, 0x00000000, 0x00000000, 0x00000000}},  //   _yago,   ,   ,\n  { {0x62800211, 0x00000000, 0x00000000, 0x00000000}},  //   nemo,   ,   ,\n  { {0x5a44007e, 0xbcfb004a, 0x00000000, 0x00000000}},  // [f1d0] рэса, ruéb,   ,\n  { {0x6280007f, 0x2d890026, 0x63b83eee, 0x00000000}},  //   hemo, _isae_, kyvn,\n  { {0x62800056, 0x00000000, 0x00000000, 0x00000000}},  //   kemo,   ,   ,\n  { {0x62800142, 0x7ebf0023, 0x79840045, 0x00000000}},  //   jemo, _mëpo, bwiw,\n  { {0x62800489, 0x628b0016, 0x00000000, 0x00000000}},  //   demo, _rago,   ,\n  { {0x628b006a, 0xe73301af, 0x00000000, 0x00000000}},  //   _sago, _نصر_,   ,\n  { {0x628b1a16, 0xbcfb0010, 0x58d4005e, 0x00000000}},  //   _pago, ltés, _торт,\n  { {0x62800cc0, 0x316d00f4, 0x8c1c01ce, 0x00000000}},  //   gemo, ttez_, וווי,\n  { {0xbcfb0047, 0xdb150047, 0x316d00f4, 0x00000000}},  //   ntés, gyzé, utez_,\n  { {0x628b0020, 0x316d3eef, 0x3e7e0082, 0x00000000}},  //   _wago, rtez_, _ắt_,\n  { {0x628b0010, 0x62800b76, 0xd048005f, 0x00000000}},  //   _tago, bemo, nidə,\n  { {0xed5a0902, 0x62800b76, 0x316d2265, 0x00000000}},  //   ном_, cemo, ptez_,\n  { {0xd048006b, 0x00000000, 0x00000000, 0x00000000}},  //   hidə,   ,   ,\n  { {0xa069005e, 0x00000000, 0x00000000, 0x00000000}},  //   _чака_,   ,   ,\n  { {0x4a9a007e, 0x5ea60025, 0x00000000, 0x00000000}},  //   нтаў_, _ممثل,   ,\n  { {0x0e66013b, 0x290a0065, 0xc332009b, 0x00000000}},  //   _скин, _shba_, מול_,\n  { {0x3ea0011c, 0xaff400a1, 0x1a0602e9, 0x00000000}},  // [f1e0] _init_, _مہیا_, упам,\n  { {0x4c860888, 0x62803ef0, 0x291c0039, 0x00000000}},  //   _слов, zemo, öva_,\n  { {0xf8bf00f6, 0x657b00e0, 0x6280004a, 0x00000000}},  //   _atés_, _apuh, yemo,\n  { {0xbcfb01e5, 0x85ea15c4, 0xf74300e2, 0x00000000}},  //   stét, ндев_, сецо,\n  { {0x62800181, 0x7d1e0ac2, 0x00000000, 0x00000000}},  //   vemo, _kips,   ,\n  { {0x5334007e, 0x7ae40059, 0xbcfb26f7, 0x00000000}},  //   аект, lnit, ltér,\n  { {0x62802c9b, 0xbcfb000c, 0x27f70161, 0x00000000}},  //   temo, bréf, čené_,\n  { {0x7ae40368, 0x7d1e001a, 0x96950216, 0x00000000}},  //   nnit, _lips, _круш,\n  { {0x62802a9a, 0x7ae420d4, 0xddcd016c, 0x00000000}},  //   remo, init, _obaš,\n  { {0x7ae4010f, 0x3ea00023, 0x7d1e3ef1, 0x00000000}},  //   hnit, _anit_, _nips,\n  { {0x7ae41470, 0x644a0197, 0x2018003c, 0x00000000}},  //   knit, mafi, äri_,\n  { {0x7ae90295, 0x394201c3, 0x9ec703ec, 0x00000000}},  //   četk, _owks_, ازده,\n  { {0x7ae43ef2, 0x3ea000fa, 0x3b00013f, 0x00000000}},  //   dnit, _dnit_, dliq_,\n  { {0x644a0127, 0x5f94007c, 0xe3b100a1, 0x00000000}},  //   nafi, _викт, _ارے_,\n  { {0xdb580b7b, 0x26c40058, 0x60da04cb, 0x00000000}},  //   лют_, _olmo_, mitm,\n  { {0xfebb007a, 0x5a35026b, 0x644a006b, 0x00000000}},  //   _ساعت_, рнат, hafi,\n  { {0x200b0036, 0x19580783, 0x644a0020, 0x00000000}},  // [f1f0] ęcie_, латы_, kafi,\n  { {0x7ae408ce, 0x644a29fc, 0xbcfb0010, 0x00000000}},  //   anit, jafi, rtés,\n  { {0x6457362f, 0x644a005f, 0xf807007e, 0x00000000}},  //   óxim, dafi, учан,\n  { {0xbcfb00f4, 0xaa950088, 0xbb3a0104, 0x00000000}},  //   ctér, _тимч, _שערי,\n  { {0xe5a50216, 0x6d4f002a, 0xd46901fc, 0x00000000}},  //   рили, nsca, виле_,\n  { {0x26c4010e, 0xd7fb0140, 0x2249016e, 0x00000000}},  //   _elmo_, _зуб_, _žak_,\n  { {0x60da00eb, 0x38b6043e, 0x6d5d01a2, 0x00000000}},  //   ditm, _vært_, hrsa,\n  { {0x29010f68, 0x6d5d0107, 0x6f0d0011, 0x00000000}},  //   llha_, krsa, _nhac,\n  { {0x91e50920, 0x645e0b33, 0x67270022, 0x00000000}},  //   ропе, ópic, _hujj,\n  { {0x7ae41332, 0x6d4f02c2, 0x764b011c, 0x00000000}},  //   znit, dsca, lagy,\n  { {0x46b90061, 0x6d4f00fa, 0x7d1e05e0, 0x00000000}},  //   _आवाह, esca, _rips,\n  { {0x6f0d0e6d, 0x764b0b57, 0x67270045, 0x00000000}},  //   _chac, nagy, _mujj,\n  { {0x7ae4013e, 0x6f0d0009, 0x69091ae3, 0x00000000}},  //   vnit, _dhac, _džez,\n  { {0x764b258d, 0x3fc701b2, 0x00000000, 0x00000000}},  //   hagy, _مدعی_,   ,\n  { {0xbcfb2b25, 0x6d4f16b8, 0x6d5d0051, 0x00000000}},  //   ttér, asca, arsa,\n  { {0x3ea0020c, 0x6aad000c, 0x2a6b00d4, 0x00000000}},  //   _unit_, gjaf, _cccb_,\n  { {0x7d1e0073, 0x2d8c001e, 0x7ae4051b, 0x00000000}},  // [f200] _tips, ādes_, rnit,\n  { {0xbcfb3ef3, 0x7ae40292, 0xdced0066, 0x00000000}},  //   stér, snit, _traġ,\n  { {0x5c5b00b6, 0x644a006b, 0x6609000a, 0x00000000}},  //   _בדיק, vafi, _azek,\n  { {0x6d440036, 0x644a0020, 0x7ae4006b, 0x00000000}},  //   _kwia, wafi, qnit,\n  { {0x644a3ef4, 0x66090046, 0x7bce010f, 0x00000000}},  //   tafi, _czek, lzbu,\n  { {0x66093ef5, 0xc4480014, 0xbcfb3ef6, 0x00000000}},  //   _dzek, ایان_, créd,\n  { {0x66090047, 0x764b020e, 0x6e243ef7, 0x00000000}},  //   _ezek, bagy, _ogib,\n  { {0x6d4f0bc7, 0x644a0c04, 0x6e2401f3, 0x00000000}},  //   ysca, safi, _ngib,\n  { {0x60f83879, 0x644a0173, 0x3cf83ef8, 0x00000000}},  //   лния_, pafi, korv_,\n  { {0x6d5d0107, 0x6e2417f8, 0x6f0d0133, 0x00000000}},  //   vrsa, _agib, _shac,\n  { {0x60da002d, 0x69cd0190, 0x6f0d0051, 0x00000000}},  //   ritm, zzae, _phac,\n  { {0x6d4f1651, 0x6448014a, 0x2abc0048, 0x00000000}},  //   tsca, _hedi, _uíbh_,\n  { {0x64481d7d, 0x6d5d0fe4, 0x00000000, 0x00000000}},  //   _kedi, ursa,   ,\n  { {0x644806a6, 0x6f0d0436, 0x91bb009b, 0x00000000}},  //   _jedi, _whac, _במדי,\n  { {0x6d4f00bb, 0x6f0d0051, 0xaa590088, 0x00000000}},  //   ssca, _thac, ливу_,\n  { {0x644800eb, 0x8aa4053f, 0x1b190783, 0x00000000}},  //   _ledi, оруд, ужбы_,\n  { {0x6d440046, 0x31640009, 0x00000000, 0x00000000}},  // [f210] _gwia, numz_,   ,\n  { {0x6448011f, 0xd70f007d, 0x66093ef9, 0x00000000}},  //   _nedi, िष्ठ_, _rzek,\n  { {0x66090010, 0x6d440036, 0xbcfb009d, 0x00000000}},  //   _szek, _zwia, grée,\n  { {0xdfc600a1, 0x2b5e01dc, 0x00000000, 0x00000000}},  //   _ہي_, átce_,   ,\n  { {0xd4d9008b, 0x64480125, 0x8e9800b3, 0x00000000}},  //   лькі_, _bedi, ידאו_,\n  { {0xdfc606ea, 0x644806c2, 0x00000000, 0x00000000}},  //   _في_, _cedi,   ,\n  { {0xbcfb009d, 0xc6a70d73, 0x00000000, 0x00000000}},  //   crée, _краи,   ,\n  { {0x6609002d, 0x61e401ed, 0x00000000, 0x00000000}},  //   _tzek, _žila,   ,\n  { {0x66003efa, 0xeaaa0049, 0x6f1800f6, 0x00000000}},  //   _gymk, רױפֿ, _èxci,\n  { {0x64483efb, 0x7e6d008e, 0x26dd3eeb, 0x00000000}},  //   _gedi, _acap, liwo_,\n  { {0x7afd0cfd, 0x25db006e, 0x6d440036, 0x00000000}},  //   _okst, _खेती_, _swia,\n  { {0x64480032, 0xd4910082, 0xf6790049, 0x00000000}},  //   _zedi, _hà_, נאָמ,\n  { {0xa2a40309, 0x6448005a, 0x75290553, 0x00000000}},  //   कार्, _yedi, _juez,\n  { {0xa5da0049, 0x7afd000c, 0x76490022, 0x00000000}},  //   אַלי, _akst, _leey,\n  { {0x44250058, 0x75210089, 0xd4910082, 0x00000000}},  //   _mgl_, _milz, _mà_,\n  { {0x6e24050f, 0xd4910011, 0x7bce01a2, 0x00000000}},  //   _ugib, _là_, rzbu,\n  { {0x6720002b, 0x6d443efc, 0x00000000, 0x00000000}},  // [f220] _rimj, _uwia,   ,\n  { {0x7afd02cc, 0x6c860025, 0xbcfb00f4, 0x00000000}},  //   _ekst, _الدم, trée,\n  { {0x78b501cd, 0x64483efd, 0xdb1c0065, 0x00000000}},  //   _dozv, _redi, nyrë,\n  { {0x6448020c, 0x6efd0353, 0xbcfb009d, 0x00000000}},  //   _sedi, lébr, rrée,\n  { {0x673b0091, 0x64483efe, 0x75210190, 0x00000000}},  //   _čuje, _pedi, _bilz,\n  { {0x6fca03d7, 0x442500f6, 0x395200e5, 0x00000000}},  //   ानमं, _cgl_, msys_,\n  { {0x64480027, 0xdb1c0023, 0x67200c43, 0x00000000}},  //   _vedi, jyrë, _timj,\n  { {0x4425000a, 0xdd2d0006, 0x64480544, 0x00000000}},  //   _egl_, vėžy, _wedi,\n  { {0x3952103b, 0x7521185d, 0x64480095, 0x00000000}},  //   nsys_, _filz, _tedi,\n  { {0x7e6d0412, 0x752123cf, 0x9f54189c, 0x00000000}},  //   _scap, _gilz, овоч,\n  { {0x2d800736, 0xa50700ed, 0x224d0afd, 0x00000000}},  //   _apie_, _уефа_, baek_,\n  { {0x814300a6, 0xeeab39ae, 0x20020089, 0x00000000}},  //   _کنون, уток_, āki_,\n  { {0x200b0046, 0x26c70023, 0x7e6d00d9, 0x00000000}},  //   ęcia_, ënoi_, _vcap,\n  { {0x1fa60088, 0x00000000, 0x00000000, 0x00000000}},  //   _григ,   ,   ,\n  { {0x78b50428, 0x2a690022, 0x2ac7003b, 0x00000000}},  //   _rozv, tgab_, бљав,\n  { {0x7e6d027e, 0x7f3b0049, 0x83370049, 0x00000000}},  //   _ucap, _געהו, מאלס_,\n  { {0x78270025, 0x2a6908e8, 0x00000000, 0x00000000}},  // [f230] معال, rgab_,   ,\n  { {0x764902d4, 0x00000000, 0x00000000, 0x00000000}},  //   _seey,   ,   ,\n  { {0xddcd0036, 0x5695007c, 0x00000000, 0x00000000}},  //   _udał, жает,   ,\n  { {0x8f9b009b, 0x442500fa, 0x00000000, 0x00000000}},  //   טיבי, _sgl_,   ,\n  { {0x98c5014a, 0x442500e5, 0x61e411b9, 0x00000000}},  //   ştır_, _pgl_, _žiln,\n  { {0x2d99010e, 0x23350e8a, 0x00000000, 0x00000000}},  //   ivse_, охир,   ,\n  { {0xd4910011, 0x4425258a, 0x26dd0173, 0x00000000}},  //   _và_, _vgl_, piwo_,\n  { {0x6b8300c4, 0x00000000, 0x00000000, 0x00000000}},  //   _ângu,   ,   ,\n  { {0x4425023a, 0x0595007a, 0x3f9c006c, 0x00000000}},  //   _tgl_, _بازگ, _arvu_,\n  { {0xe0d90265, 0xdb1c0065, 0x4425016e, 0x00000000}},  //   рво_, tyrë, _ugl_,\n  { {0x248701aa, 0xd0093eff, 0xbef70061, 0x00000000}},  //   menm_, рене_, ीतून_,\n  { {0x6e2900b9, 0x3f8e0087, 0x00000000, 0x00000000}},  //   žebn, _dsfu_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6efd009d, 0x2d8001c3, 0x00000000, 0x00000000}},  //   rébr, _wpie_,   ,\n  { {0x3946007e, 0xbcfb0068, 0x39520544, 0x00000000}},  //   жнаг, tréc, tsys_,\n  { {0xcee90014, 0xdce40066, 0x00000000, 0x00000000}},  // [f240] _درون_, _esiġ,   ,\n  { {0x3952005b, 0xe9d7007e, 0x2487012d, 0x00000000}},  //   rsys_, цку_, jenm_,\n  { {0xd7ff001a, 0x562a21b5, 0x00000000, 0x00000000}},  //   _ţări_, ажем_,   ,\n  { {0xbcfb00f4, 0x98af0089, 0x39523659, 0x00000000}},  //   préc, īgā_, psys_,\n  { {0xddcd0036, 0x94aa0081, 0x645e1690, 0x00000000}},  //   _gdań, итка_, ópio,\n  { {0xe71a0014, 0x00000000, 0x00000000, 0x00000000}},  //   _چيست_,   ,   ,\n  { {0xd467012b, 0xe71a0014, 0xa3fa0044, 0x00000000}},  //   ције_, _نيست_, েখ্য_,\n  { {0xfbe80082, 0x00000000, 0x00000000, 0x00000000}},  //   _đề_,   ,   ,\n  { {0xcb13019b, 0x76420093, 0x045a00a6, 0x00000000}},  //   ולה_, mboy, _نجات_,\n  { {0x397b0097, 0x3f9c1435, 0xa50a0216, 0x00000000}},  //   סטינ, _prvu_, _теза_,\n  { {0xd1b7026c, 0x6d56000a, 0x00000000, 0x00000000}},  //   مایا_, _avya,   ,\n  { {0x7642013f, 0x00000000, 0x00000000, 0x00000000}},  //   nboy,   ,   ,\n  { {0xf65300b6, 0x171b0049, 0xdce40066, 0x00000000}},  //   וצר_, יוטע, _ssiġ,\n  { {0x20d30025, 0x6fb60025, 0x61ed0006, 0x00000000}},  //   _يتوج, _ومشا, _žalg,\n  { {0x80a30014, 0xbcfb2496, 0x4439006b, 0x00000000}},  //   _زمين, gréa, _əs_,\n  { {0x690b04bd, 0x65620232, 0x00000000, 0x00000000}},  //   güen, kroh,   ,\n  { {0x76423f00, 0x645a0142, 0x00000000, 0x00000000}},  // [f250] dboy, _odti,   ,\n  { {0xf8070088, 0x6562010f, 0xdef9002b, 0x00000000}},  //   очен, droh, duċi_,\n  { {0xbcfb009d, 0x68ee0022, 0x602d0010, 0x00000000}},  //   créa, _djbd, _hőmé,\n  { {0x0f7b00b6, 0xabfa009b, 0x645a0145, 0x00000000}},  //   שראל, _להתר, _adti,\n  { {0x65620093, 0x1a6800a1, 0x00000000, 0x00000000}},  //   groh, _ذیلی_,   ,\n  { {0x6fca0164, 0xab980014, 0x645a0288, 0x00000000}},  //   ानां, _اخیر_, _cdti,\n  { {0x0768007e, 0xaabf0316, 0x00000000, 0x00000000}},  //   _маёй_, _एकाक,   ,\n  { {0xd2a90057, 0x2d84014a, 0x52a9003b, 0x00000000}},  //   ские_, çmek_, свим_,\n  { {0x21390065, 0xa3db007d, 0x00000000, 0x00000000}},  //   ësh_, _ढेर_,   ,\n  { {0x753b004a, 0x98bd007d, 0xa0690098, 0x00000000}},  //   _ituz, ोसिए, љана_,\n  { {0x64430059, 0x8fa5231f, 0x00000000, 0x00000000}},  //   mbni, чане,   ,\n  { {0xe29801fb, 0xf99f0173, 0x60ca01a2, 0x00000000}},  //   _має_, _orè_, _elfm,\n  { {0xe0ce01fb, 0x260f0061, 0x7ebf0023, 0x00000000}},  //   _зв_, तेची_, _nëpu,\n  { {0x408700e1, 0x213f3f01, 0x913a009b, 0x00000000}},  //   _фудб, mpuh_, _העסק,\n  { {0x6f06001c, 0x76420253, 0xf99f0173, 0x00000000}},  //   plkc, yboy, _arè_,\n  { {0x8b233354, 0xaf760049, 0xf99f0026, 0x00000000}},  //   едсе, _זעקס_, _brè_,\n  { {0xf98300ed, 0x798d011c, 0x753b0009, 0x00000000}},  // [f260] нгто, gwaw, _ntuz,\n  { {0x6443012d, 0x2d922492, 0x765b0145, 0x00000000}},  //   jbni, _isye_, _aduy,\n  { {0x76420146, 0xf99f01aa, 0x66e61079, 0x00000000}},  //   tboy, _erè_, пожа,\n  { {0x690b0a0a, 0xf99f0263, 0x65620065, 0x00000000}},  //   qüen, _frè_, troh,\n  { {0xa50a20d2, 0xf99f000a, 0x862301ab, 0x00000000}},  //   беда_, _grè_, ньше,\n  { {0x39400039, 0x2d9201aa, 0x65620065, 0x00000000}},  //   mpis_, _msye_, rroh,\n  { {0xb62a0011, 0xbcfb0010, 0x00000000, 0x00000000}},  //   _chợđ, krén,   ,\n  { {0x994c0027, 0x26cf0009, 0x65623f02, 0x00000000}},  //   _môže_, chgo_, proh,\n  { {0x644300f8, 0x7faa006b, 0x00000000, 0x00000000}},  //   bbni, vəqq,   ,\n  { {0x26c6152f, 0x9405006b, 0x00000000, 0x00000000}},  //   lkoo_, _lalə_,   ,\n  { {0xb4e8001c, 0x7d07016c, 0x2d920173, 0x00000000}},  //   मची_, vljs, _asye_,\n  { {0x0b000044, 0x61ed00ca, 0x6b9c04eb, 0x00000000}},  //   ্দুল_, _žale, dvrg,\n  { {0x68fe00b5, 0xa0a600d7, 0x7faa006b, 0x00000000}},  //   kopd, _надд, rəqq,\n  { {0x39400142, 0x2ceb1280, 0x01370097, 0x00000000}},  //   dpis_, сьмо_, _צרות_,\n  { {0x2d92000a, 0x307b009b, 0x00000000, 0x00000000}},  //   _esye_, _האונ,   ,\n  { {0x59de0316, 0xf99f01aa, 0xbcfb0a50, 0x00000000}},  //   _नेहर, _prè_, ntéz,\n  { {0x61e40087, 0x39400058, 0x798d00e7, 0x00000000}},  // [f270] _žilj, gpis_, uwaw,\n  { {0x7e7d0112, 0xf99f01aa, 0x798d008a, 0x00000000}},  //   lfsp, _vrè_, rwaw,\n  { {0x753b0ec0, 0x00000000, 0x00000000, 0x00000000}},  //   _stuz,   ,   ,\n  { {0xa63401fb, 0xf99f01aa, 0x672e002b, 0x00000000}},  //   енці, _trè_, _dubj,\n  { {0x7aed001a, 0x8c19007a, 0xa4d50088, 0x00000000}},  //   mnat, _ديگر_, моді,\n  { {0x644301a2, 0x8339004d, 0x00000000, 0x00000000}},  //   ubni, очит_,   ,\n  { {0x20c9009f, 0x64430089, 0xe4500379, 0x00000000}},  //   _búin_, rbni, اضه_,\n  { {0x7aed08b2, 0x5694008b, 0x2326022a, 0x00000000}},  //   nnat, _паст, мощи_,\n  { {0xf4870680, 0x7aed002d, 0x753b0ff1, 0x00000000}},  //   _нужн, inat, _utuz,\n  { {0x3ea90129, 0x7aed0016, 0x629d0027, 0x00000000}},  //   _anat_, hnat, ôsob,\n  { {0x3e8a01e0, 0x656b3f03, 0x39400e3c, 0x00000000}},  //   ойно_, lugh, zpis_,\n  { {0x32e30263, 0xee371001, 0x39403f04, 0x00000000}},  //   _dèyè_, мню_, ypis_,\n  { {0x291a3f05, 0x00000000, 0x00000000, 0x00000000}},  //   ympa_,   ,   ,\n  { {0x7aed0275, 0xdef9002b, 0x00000000, 0x00000000}},  //   enat, duċu_,   ,\n  { {0x212f3174, 0xeb970088, 0x7aed3f06, 0x00000000}},  //   _hugh_, мир_, fnat,\n  { {0x7aed0198, 0x21270011, 0x3ea90c7d, 0x00000000}},  //   gnat, _hinh_, _gnat_,\n  { {0x212700ad, 0x672e0038, 0x68fe0146, 0x00000000}},  // [f280] _kinh_, _subj, topd,\n  { {0xa3bf0316, 0x6d920521, 0x7aed0145, 0x00000000}},  //   ुना_, ržać, anat,\n  { {0x2127001d, 0x7aed3f07, 0x68fe00d9, 0x00000000}},  //   _minh_, bnat, ropd,\n  { {0x2127001d, 0xb6c503e8, 0x656b0197, 0x00000000}},  //   _linh_, нсій, fugh,\n  { {0x20c90048, 0x7ae401b1, 0x00000000, 0x00000000}},  //   _rúin_, miit,   ,\n  { {0x7ae408b2, 0x2127001d, 0xb4e80061, 0x00000000}},  //   liit, _ninh_, मचे_,\n  { {0xd8230517, 0x212f0026, 0x26cd000a, 0x00000000}},  //   _адри, _augh_, _fleo_,\n  { {0x78bc0010, 0x7ae40052, 0x6b830039, 0x00000000}},  //   _horv, niit, _änge,\n  { {0x78bc0368, 0x21270011, 0x69c41715, 0x00000000}},  //   _korv, _binh_, nyie,\n  { {0x7aed0119, 0x6f0400e7, 0x61ed0e0d, 0x00000000}},  //   znat, _akic, _žalc,\n  { {0x20c9002a, 0x21270011, 0x442c0022, 0x00000000}},  //   _iúil_, _dinh_, _igd_,\n  { {0xa1c619a2, 0x7ae400e7, 0xa3e4013d, 0x00000000}},  //   _обед, jiit, _पेय_,\n  { {0x2007005f, 0x78bc0007, 0x7aed0b41, 0x00000000}},  //   _eyni_, _oorv, vnat,\n  { {0x7e7d001c, 0x7c8415c4, 0x3ea900d9, 0x00000000}},  //   sfsp, кусе, _wnat_,\n  { {0x7aed2548, 0x2b580009, 0x00000000, 0x00000000}},  //   tnat, gsrc_,   ,\n  { {0x3ea90058, 0xb895009e, 0x7528193e, 0x00000000}},  //   _unat_, کارڈ, _lidz,\n  { {0x2bff03d7, 0x6e2d3f08, 0x3b09006b, 0x00000000}},  // [f290] _शुरू_, _igab, rlaq_,\n  { {0x273701d5, 0x2127001d, 0x75283f09, 0x00000000}},  //   _aħna_, _xinh_, _nidz,\n  { {0x78bc1339, 0x7d050093, 0x7aed0203, 0x00000000}},  //   _dorv, _ikhs, pnat,\n  { {0x6d4d01bb, 0x9967005e, 0x442c0036, 0x00000000}},  //   _kwaa, _отгл, _agd_,\n  { {0xca240072, 0x78bc0374, 0x2d4d01ca, 0x00000000}},  //   _афри, _forv, nže_,\n  { {0x656b0692, 0x62823f0a, 0xa8a401fc, 0x00000000}},  //   rugh, _aboo, _ирск,\n  { {0x7528008f, 0x21270082, 0x20c90048, 0x00000000}},  //   _didz, _rinh_, _dúil_,\n  { {0x212700ad, 0x2d4d004f, 0x6595007e, 0x00000000}},  //   _sinh_, kže_, _пабу,\n  { {0x6abd000c, 0x15f3006e, 0x442c0022, 0x00000000}},  //   _mosf, _आखिर_, _fgd_,\n  { {0x6f040073, 0x62821b2a, 0x7ae41bd7, 0x00000000}},  //   _skic, _eboo, ziit,\n  { {0x21270011, 0xf8b200b3, 0x14ac01f5, 0x00000000}},  //   _vinh_, אשי_, चारण,\n  { {0x62820061, 0x61ea0010, 0x6d4d00e0, 0x00000000}},  //   _gboo, ámlá, _bwaa,\n  { {0x67290046, 0x2127001d, 0x2901006c, 0x00000000}},  //   _miej, _tinh_, koha_,\n  { {0x62990300, 0x6f1d00d9, 0x6d4d07a5, 0x00000000}},  //   _hawo, amsc, _dwaa,\n  { {0x629907a3, 0xa2a40061, 0x316d009d, 0x00000000}},  //   _kawo, काच्, luez_,\n  { {0x78bc16df, 0x629b010a, 0x61e40027, 0x00000000}},  //   _sorv, nduo, _žili,\n  { {0xdca6005c, 0x7ae40cc9, 0x78bc00b0, 0x00000000}},  // [f2a0] _запи, riit, _porv,\n  { {0x62993f0b, 0x7ae40ac2, 0xf99f000a, 0x00000000}},  //   _lawo, siit, _iyèl_,\n  { {0x6abd0253, 0x6d4d00b5, 0xb80a0025, 0x00000000}},  //   _fosf, _zwaa, أيام_,\n  { {0x20c9002a, 0xd041005f, 0x442c0283, 0x00000000}},  //   _súil_, rhlə, _sgd_,\n  { {0xe5a303f3, 0x78bc0190, 0x442c0059, 0x00000000}},  //   лици, _torv, _pgd_,\n  { {0xf99f01aa, 0x6609224b, 0x00000000, 0x00000000}},  //   _myèl_, _dyek,   ,\n  { {0x75280089, 0x62990173, 0x9294007e, 0x00000000}},  //   _vidz, _bawo, вайц,\n  { {0x75280046, 0xd2500025, 0x6299005b, 0x00000000}},  //   _widz, جنة_, _cawo,\n  { {0xc486003b, 0x316d0211, 0x62990173, 0x00000000}},  //   _плак, guez_, _dawo,\n  { {0xbcfb3590, 0x6e2d0197, 0x442c0022, 0x00000000}},  //   trém, _sgab, _ugd_,\n  { {0x6d4d0007, 0x29180066, 0xa30b009e, 0x00000000}},  //   _swaa, _mhra_, _کرلے_,\n  { {0xbcfb009d, 0xf99f000a, 0x316d009d, 0x00000000}},  //   rrém, _byèl_, buez_,\n  { {0x2918002b, 0x98a301aa, 0x6f1d01a2, 0x00000000}},  //   _ohra_, _sijč_, rmsc,\n  { {0x62990046, 0x628000c7, 0x2d4d04eb, 0x00000000}},  //   _zawo, lfmo, rže_,\n  { {0x2f120010, 0x6d4d00e0, 0x6abd0145, 0x00000000}},  //   sága_, _wwaa, _posf,\n  { {0x6d4d3f0c, 0xf99f0173, 0x00000000, 0x00000000}},  //   _twaa, _fyèl_,   ,\n  { {0x68e5014a, 0x6d4d1519, 0x00000000, 0x00000000}},  // [f2b0] tihd, _uwaa,   ,\n  { {0x629b0006, 0x67290a67, 0x00000000, 0x00000000}},  //   zduo, _siej,   ,\n  { {0xec3600b6, 0x69c1006b, 0x66090093, 0x00000000}},  //   _באתר_, _əley, _syek,\n  { {0xb8c8006e, 0x291800e0, 0x67290023, 0x00000000}},  //   _खो_, _ehra_, _qiej,\n  { {0x67290211, 0x9f5c021e, 0xd00600a1, 0x00000000}},  //   _viej, _hyvä_, _چل_,\n  { {0x62992492, 0x67290036, 0x00000000, 0x00000000}},  //   _sawo, _wiej,   ,\n  { {0x629901aa, 0xef1f0180, 0xf8f4007e, 0x00000000}},  //   _pawo, kmü_, _спрэ,\n  { {0xddcd002b, 0x316d3f0d, 0x00000000, 0x00000000}},  //   _bbaż, tuez_,   ,\n  { {0x629b010a, 0x36d4007c, 0x00000000, 0x00000000}},  //   rduo, _сотр,   ,\n  { {0x62990022, 0xf99f000a, 0x00000000, 0x00000000}},  //   _wawo, _nyèm_,   ,\n  { {0xf99f0263, 0x62990487, 0x2d8900c4, 0x00000000}},  //   _syèl_, _tawo, _apae_,\n  { {0xed5a2c00, 0xdee60088, 0xfe720025, 0x00000000}},  //   мом_, томи, جدد_,\n  { {0x316d028c, 0xf1d9013d, 0x00000000, 0x00000000}},  //   quez_, _बेचन,   ,\n  { {0x71d60097, 0x00000000, 0x00000000, 0x00000000}},  //   _בונד_,   ,   ,\n  { {0xe7e1001c, 0xfd500082, 0x7afb00ca, 0x00000000}},  //   _गेला_, nnhạ, čutn,\n  { {0xc332019b, 0x00000000, 0x00000000, 0x00000000}},  //   שון_,   ,   ,\n  { {0x3b0700e3, 0xeabf0011, 0xbcfb00d4, 0x00000000}},  // [f2c0] тето_, _giùm_, gués,\n  { {0x07a601e1, 0x00000000, 0x00000000, 0x00000000}},  //   казн,   ,   ,\n  { {0xc00f0082, 0x00000000, 0x00000000, 0x00000000}},  //   _đuối_,   ,   ,\n  { {0xdd1101dc, 0x2bf7009b, 0x7b13013f, 0x00000000}},  //   mýšl, _ימין_, lçun,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xf8bf0011, 0xbcfb00fa, 0x00000000, 0x00000000}},  //   _quét_, quét,   ,\n  { {0x289b0049, 0x00000000, 0x00000000, 0x00000000}},  //   _קילא,   ,   ,\n  { {0xb865026c, 0xf1a601ee, 0x00000000, 0x00000000}},  //   _لاہو, врон,   ,\n  { {0xe5260264, 0x62800270, 0x00000000, 0x00000000}},  //   _адап, rfmo,   ,\n  { {0x30a62e54, 0x2a620022, 0x00000000, 0x00000000}},  //   трив, _ldkb_,   ,\n  { {0x64580006, 0x443e0190, 0x0857009b, 0x00000000}},  //   mavi, _ift_, כבים_,\n  { {0x6458010a, 0xe246006d, 0xdce60089, 0x00000000}},  //   lavi, _شخصي, vukā,\n  { {0x443e0047, 0x20020046, 0xbcfb0010, 0x00000000}},  //   _kft_, łki_, nség,\n  { {0x64580006, 0x31570049, 0x752f00f6, 0x00000000}},  //   navi, _יידן_, _ècze,\n  { {0x6d460169, 0x443e0232, 0x00000000, 0x00000000}},  //   apka, _mft_,   ,\n  { {0x64580388, 0x443e3f0e, 0x13e50044, 0x00000000}},  //   havi, _lft_, _পুড়,\n  { {0x5a340057, 0x443e3f0f, 0x29fa0082, 0x00000000}},  // [f2d0] рнут, _oft_, ỏan_,\n  { {0x645804a9, 0x2b410082, 0x06ca0044, 0x00000000}},  //   javi, _tthc_, লোমি,\n  { {0x64581a9d, 0x05db013d, 0x00000000, 0x00000000}},  //   davi, _मेजब,   ,\n  { {0x443e2756, 0x46150014, 0xbcfb3be0, 0x00000000}},  //   _aft_, هوار, dréi,\n  { {0x3cf80167, 0x6d5d00b0, 0xbcfb0010, 0x00000000}},  //   _سعید_, nssa, gség,\n  { {0xb97a00b6, 0xf77304e1, 0x64580006, 0x00000000}},  //   _אנשי, _پاس_, gavi,\n  { {0x443e3f10, 0x1cbc0049, 0x00000000, 0x00000000}},  //   _dft_, ומגע,   ,\n  { {0x81de0055, 0x443e3f11, 0xc6a4004d, 0x00000000}},  //   _দুই_, _eft_, _круи,\n  { {0x35f5007e, 0x6458016e, 0xbcfb009d, 0x00000000}},  //   _спар, bavi, préh,\n  { {0x2ecc0164, 0x409500e3, 0x443e00d9, 0x00000000}},  //   ास्त, урит, _gft_,\n  { {0xd2510054, 0xceea003b, 0x6d5d00b0, 0x00000000}},  //   _هنا_, едне_, essa,\n  { {0xc33200b6, 0x656b001a, 0x623500ed, 0x00000000}},  //   _הוא_, orgh, _седу,\n  { {0x0165003b, 0xa069005e, 0x6d5d0190, 0x00000000}},  //   _скло, _зала_, gssa,\n  { {0x515a009b, 0x7659005b, 0xa3ca013d, 0x00000000}},  //   _טכנו, hawy, रैक_,\n  { {0xbcfb0047, 0xbea60888, 0x6b630088, 0x00000000}},  //   zség, _байк, йкра,\n  { {0x64580c47, 0xd00e0379, 0x6d463f12, 0x00000000}},  //   zavi, _علي_, ppka,\n  { {0x200b0036, 0x317f002d, 0xa967005e, 0x00000000}},  // [f2e0] ęciu_, ntuz_, лита_,\n  { {0x317f002d, 0x7b13006b, 0xa90a0379, 0x00000000}},  //   ituz_, lçul, ريال_,\n  { {0x64580006, 0x2f190047, 0x3f510089, 0x00000000}},  //   vavi, sége_, nšu_,\n  { {0xbcfb3f13, 0x7b13006b, 0x64580258, 0x00000000}},  //   tség, nçul, wavi,\n  { {0xbddb009d, 0x00000000, 0x00000000, 0x00000000}},  //   ccèd,   ,   ,\n  { {0x3f5118c5, 0xbcfb2c3e, 0x00000000, 0x00000000}},  //   kšu_, tréi,   ,\n  { {0xbcfb0047, 0xa3e4013d, 0x929d0036, 0x00000000}},  //   sség, _पेश_, woła,\n  { {0x7e640d16, 0x645826f2, 0x443e00d9, 0x00000000}},  //   _ndip, savi, _wft_,\n  { {0x64581322, 0x3f51001e, 0xe5a301ee, 0x00000000}},  //   pavi, ešu_, _лити,\n  { {0x7e640093, 0xe97b007b, 0x6458006b, 0x00000000}},  //   _adip, עניש, qavi,\n  { {0x3f51001e, 0x33f6007c, 0x22860887, 0x00000000}},  //   gšu_, _счас, _булг,\n  { {0x6d5d1d30, 0xbcfb0068, 0x00000000, 0x00000000}},  //   tssa, isée,   ,\n  { {0x6d5d1684, 0xdced0066, 0x00000000, 0x00000000}},  //   ussa, _jsaħ,   ,\n  { {0x67220850, 0x940c006b, 0x6d5d05e0, 0x00000000}},  //   hmoj, _sadə_, rssa,\n  { {0xd5a4009c, 0xcb1b00ed, 0x6d5d12e0, 0x00000000}},  //   _کہ_, еќа_, sssa,\n  { {0x63a80107, 0x6d5d02e1, 0x6b9b0036, 0x00000000}},  //   _mrdn, pssa, ługo,\n  { {0x0855041f, 0xa8550aa2, 0x6722012d, 0x00000000}},  // [f2f0] иваю, икач, dmoj,\n  { {0xd7fb007e, 0xe6c00091, 0xa3d4006e, 0x00000000}},  //   нуе_, _čišć, हना_,\n  { {0x96351deb, 0x317f0032, 0xec1502fd, 0x00000000}},  //   анец, ztuz_, _خودد,\n  { {0xbcfb00f4, 0xe70b03ec, 0xba3b009d, 0x00000000}},  //   sséd, رتان_, _qaïd,\n  { {0x286b300e, 0x63a8006b, 0x4a5a009b, 0x00000000}},  //   _прво_, _ardn, _בדרו,\n  { {0x64a5008b, 0x939501d8, 0x67221b1b, 0x00000000}},  //   рака, لجبا, amoj,\n  { {0xe299008b, 0x39490089, 0x32d500ed, 0x00000000}},  //   вай_, lpas_, ицис,\n  { {0x05150055, 0xd05a005f, 0x394900b0, 0x00000000}},  //   াদের_, mitə, opas_,\n  { {0x50b5007e, 0x394901d6, 0x00000000, 0x00000000}},  //   асну, npas_,   ,\n  { {0x317f002d, 0x394900c4, 0x00000000, 0x00000000}},  //   rtuz_, ipas_,   ,\n  { {0x6d440027, 0x63a80107, 0x20021e00, 0x00000000}},  //   _stia, _grdn, şkin_,\n  { {0x3f510089, 0x733a0049, 0x00000000, 0x00000000}},  //   ršu_, _סענס,   ,\n  { {0x20d501fb, 0xe0ce005e, 0x224d04d4, 0x00000000}},  //   _війс, _дв_, mbek_,\n  { {0xc5f200b6, 0xa06900ed, 0x224d0646, 0x00000000}},  //   קדם_, _рака_, lbek_,\n  { {0xfbc30364, 0x6b8300f8, 0xca56003b, 0x00000000}},  //   обро, _ängl, итањ,\n  { {0x4a460139, 0x38c802fd, 0x7b13013f, 0x00000000}},  //   рнав, گاری_, qçul,\n  { {0x60c31338, 0x61ed01ae, 0x6f2400a1, 0x00000000}},  // [f300] _konm, _žalj, _پڑھن,\n  { {0x38c806c6, 0xebe600ed, 0x61e6000c, 0x00000000}},  //   داری_, _вооп, úkli,\n  { {0x3949008e, 0x81cb0044, 0x2d8200ea, 0x00000000}},  //   apas_, রছি_, ltke_,\n  { {0x4aca02f4, 0x64411408, 0xe5c601fb, 0x00000000}},  //   _रविव, _afli, исло,\n  { {0x67223f14, 0xbcfb00f4, 0xa5da0025, 0x00000000}},  //   rmoj, ssée, خبار_,\n  { {0x60c301aa, 0x3ea000f4, 0x316d0285, 0x00000000}},  //   _nonm, _lait_, drez_,\n  { {0xbcfb009d, 0x316d3f15, 0x00000000, 0x00000000}},  //   prév, erez_,   ,\n  { {0x7af600b0, 0x316d009d, 0xdb1c0039, 0x00000000}},  //   nnyt, frez_, byrå,\n  { {0x64410016, 0x60c300d4, 0xbcfb009d, 0x00000000}},  //   _ffli, _bonm, nséc,\n  { {0x60c31526, 0x26c4049a, 0xf48400d3, 0x00000000}},  //   _conm, _homo_, _داری,\n  { {0x8369026c, 0x3ea03e3d, 0x7d070065, 0x00000000}},  //   _مصنف_, _bait_, vojs,\n  { {0x7afb0059, 0x91b70014, 0x3ea00048, 0x00000000}},  //   čutk, _چطور_, _cait_,\n  { {0x60c30066, 0x25a60112, 0x316d0035, 0x00000000}},  //   _fonm, nvol_, crez_,\n  { {0x7d02002a, 0x26c415e3, 0x9fe60014, 0x00000000}},  //   _íosl, _lomo_, _پسته,\n  { {0x3ea0028c, 0x7d070107, 0xd0f50309, 0x00000000}},  //   _fait_, rojs, ीकरण_,\n  { {0x5a350200, 0x9f040025, 0xdee4003b, 0x00000000}},  //   снат, _وووو, _моји,\n  { {0x7afa009f, 0xbcfb000c, 0x7b130095, 0x00000000}},  // [f310] étta, frét, lçuk,\n  { {0x39490016, 0x3ea0002d, 0x58bb0379, 0x00000000}},  //   rpas_, _zait_, خارج_,\n  { {0x39490007, 0x26c401d9, 0xb8080025, 0x00000000}},  //   spas_, _bomo_, ليكم_,\n  { {0x26c423ea, 0x394902e1, 0xd05a006b, 0x00000000}},  //   _como_, ppas_, ritə,\n  { {0xe5a5013b, 0xd05a005f, 0x26c40020, 0x00000000}},  //   сили, sitə, _domo_,\n  { {0x316d00f4, 0xbcfb00f4, 0xf487060e, 0x00000000}},  //   vrez_, crét, рудн,\n  { {0x6f0d0521, 0x60da0045, 0x00000000, 0x00000000}},  //   _okac, dhtm,   ,\n  { {0x7aed0462, 0x23690e3b, 0x1bf80104, 0x00000000}},  //   niat, čaj_, יצור_,\n  { {0x200202b9, 0x69cd00f6, 0x60c30c8f, 0x00000000}},  //   şkil_, nyae, _ponm,\n  { {0x147704e8, 0x316d1a2e, 0x3ea000f4, 0x00000000}},  //   _خارج, rrez_, _sait_,\n  { {0x85040b03, 0xbea60131, 0x3ea00058, 0x00000000}},  //   _بولن, банк, _pait_,\n  { {0x661b00c4, 0x316d0036, 0x00000000, 0x00000000}},  //   _kzuk, prez_,   ,\n  { {0x7d1e0061, 0x216901bd, 0x60c32a9c, 0x00000000}},  //   _phps, _сили_, _tonm,\n  { {0x229300a1, 0x3ea000ab, 0x60da05c6, 0x00000000}},  //   _دلچس, _wait_, chtm,\n  { {0x7aed060c, 0x2d820c8a, 0x3ea00068, 0x00000000}},  //   fiat, stke_, _tait_,\n  { {0x7aed0390, 0x7f3a007b, 0x1ee800a2, 0x00000000}},  //   giat, _געקו, _خوبی_,\n  { {0x5d860025, 0x26c40c35, 0x2ca10288, 0x00000000}},  // [f320] _الخل, _romo_, _fahd_,\n  { {0x26c40020, 0x7af60039, 0xbcfb009d, 0x00000000}},  //   _somo_, snyt, rséc,\n  { {0xbcfb000c, 0x661b0032, 0x26c40052, 0x00000000}},  //   rrét, _azuk, _pomo_,\n  { {0x7aed20ce, 0x66760054, 0x25a63f16, 0x00000000}},  //   ciat, إدار, tvol_,\n  { {0x7bce00e5, 0xb33c0066, 0x00000000, 0x00000000}},  //   lybu, _irħi,   ,\n  { {0xc95301f8, 0x6d56018e, 0x25a622d8, 0x00000000}},  //   _ממש_, _mwya, rvol_,\n  { {0x26c41d12, 0x25a600c7, 0xbcfb124d, 0x00000000}},  //   _tomo_, svol_, nséa,\n  { {0x26c40198, 0x6aa40fad, 0x25a6040f, 0x00000000}},  //   _uomo_, ndif, pvol_,\n  { {0xc05a0245, 0x79843242, 0xc5c60044, 0x00000000}},  //   лін_, ntiw, _শেরপ,\n  { {0x7aed28ea, 0x7afb221d, 0x7642004a, 0x00000000}},  //   ziat, čuti, lcoy,\n  { {0x60da3f17, 0xd041006b, 0x645a0e3f, 0x00000000}},  //   rhtm, nklə, _ieti,\n  { {0xe3b1026c, 0x645a3f18, 0x60da0065, 0x00000000}},  //   _کرے_, _heti, shtm,\n  { {0x7aed0198, 0x645a020c, 0xd24f0054, 0x00000000}},  //   viat, _keti, _أنه_,\n  { {0x7aed0036, 0x645a0065, 0x6e360010, 0x00000000}},  //   wiat, _jeti, _egyb,\n  { {0x645a011f, 0x75b40061, 0xd00f0025, 0x00000000}},  //   _meti, ंमुळ, _كله_,\n  { {0x61ed04a5, 0x645a07ac, 0x6d56018e, 0x00000000}},  //   _žali, _leti, _fwya,\n  { {0x1ef80025, 0x79840058, 0xfbd000a1, 0x00000000}},  // [f330] _دعوة_, gtiw, وتہ_,\n  { {0x7aed3153, 0xa3ab013d, 0x00000000, 0x00000000}},  //   siat, खिम_,   ,\n  { {0x661b0046, 0x7aed0c0e, 0x77990081, 0x00000000}},  //   _szuk, piat, ркер_,\n  { {0xbcfb1184, 0x1b170044, 0x00000000, 0x00000000}},  //   prés, _দূরে_,   ,\n  { {0x645a3f19, 0x356b00e3, 0x7984005b, 0x00000000}},  //   _beti, урен_, ctiw,\n  { {0x645a0091, 0xf99f000a, 0xa3490069, 0x00000000}},  //   _ceti, _dyèt_, азка_,\n  { {0x2f120047, 0x36d50545, 0x00000000, 0x00000000}},  //   sági_, _довр,   ,\n  { {0x645a006c, 0xb1451f70, 0x00000000, 0x00000000}},  //   _eeti, онил,   ,\n  { {0x645a001a, 0x00000000, 0x00000000, 0x00000000}},  //   _feti,   ,   ,\n  { {0x645a011f, 0xa0690098, 0x1f65004c, 0x00000000}},  //   _geti, јана_, оком,\n  { {0x69100004, 0xdbf20224, 0x7afd0087, 0x00000000}},  //   päev, _příp, _ojst,\n  { {0x753b0020, 0xf99f0026, 0x82340014, 0x00000000}},  //   _kuuz, _osè_, _فرها,\n  { {0x645a038c, 0x69cb0030, 0xfe7100a1, 0x00000000}},  //   _yeti, øgel, رگٹ_,\n  { {0x753b24ce, 0x6b9e0068, 0x64432086, 0x00000000}},  //   _muuz, _pspg, ncni,\n  { {0xea5a00ec, 0xda5a0751, 0xdea200a1, 0x00000000}},  //   ирај_, ираш_, _قیدی,\n  { {0x25ad3f1a, 0x7bce0036, 0xbddb009d, 0x00000000}},  //   _orel_, rybu, rbèr,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  // [f340]   ,   ,   ,\n  { {0x186a003b, 0x6aa40240, 0x79843f1b, 0x00000000}},  //   ражи_, sdif, rtiw,\n  { {0x79840127, 0x645a16ac, 0xf99f0173, 0x00000000}},  //   stiw, _reti, _esè_,\n  { {0x268a06ea, 0x645a0149, 0xd041006b, 0x00000000}},  //   شخصي_, _seti, rklə,\n  { {0x645a028c, 0x65960025, 0xba480006, 0x00000000}},  //   _peti, تجار, grįž,\n  { {0x53340088, 0x65620145, 0x779100a1, 0x00000000}},  //   пект, rsoh, بیہا,\n  { {0x645a0065, 0xf4870123, 0x00000000, 0x00000000}},  //   _veti, تانی,   ,\n  { {0xd1410036, 0x8bfc0044, 0x00000000, 0x00000000}},  //   knąć_, _ইরান_,   ,\n  { {0x645a01a3, 0x673c0bac, 0x25ad0087, 0x00000000}},  //   _teti, _hurj, _grel_,\n  { {0x673c006c, 0x2a601f40, 0x00000000, 0x00000000}},  //   _kurj, haib_,   ,\n  { {0x320a0036, 0x66fc0059, 0x2d920173, 0x00000000}},  //   łby_, nčko, _apye_,\n  { {0xb35700a1, 0x673c01ed, 0x00000000, 0x00000000}},  //   _بیٹا_, _murj,   ,\n  { {0xc333009b, 0x673c0288, 0x00000000, 0x00000000}},  //   _חוף_, _lurj,   ,\n  { {0xd12f008b, 0xe5710049, 0x316600ca, 0x00000000}},  //   _іх_, ײַך_, _ivoz_,\n  { {0xfbe10044, 0x66fc0059, 0xac191344, 0x00000000}},  //   _মুজত, jčko, сову_,\n  { {0x988500b9, 0x644c006b, 0xa3ab007d, 0x00000000}},  //   _vůči_, əniş, खित_,\n  { {0x49750b87, 0x09751969, 0xb33c0066, 0x00000000}},  // [f350] ялас, ягаю, _irħu,\n  { {0x673c1ed5, 0x7e7d0030, 0x37ab0d73, 0x00000000}},  //   _burj, lgsp, итен_,\n  { {0xf99f01aa, 0x872b007e, 0x6d4f0026, 0x00000000}},  //   _pyès_, аўда_, lpca,\n  { {0x41ca0309, 0x673c270f, 0x00000000, 0x00000000}},  //   िहास, _durj,   ,\n  { {0x2aba009b, 0x00000000, 0x00000000, 0x00000000}},  //   _המרא,   ,   ,\n  { {0x03a50072, 0x673c0066, 0xf99f0173, 0x00000000}},  //   зико, _furj, _fyèr_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xc7b200b6, 0xd299007e, 0x3834013a, 0x00000000}},  //   _אבל_, сткі_, _інтр,\n  { {0xc8ff0044, 0x225f0006, 0xf4870245, 0x00000000}},  //   ্গীত_, rauk_, _мужн,\n  { {0x39590058, 0x3a390022, 0x225f19d2, 0x00000000}},  //   _mwss_, _lgsp_, sauk_,\n  { {0xb5fd07ac, 0x9f58000c, 0xa4fa0049, 0x00000000}},  //   _odšk, ærð_, _פלעט,\n  { {0xfaff048a, 0x61ed3804, 0xa3e4007d, 0x00000000}},  //   _një_, _žalu, _पेट_,\n  { {0xf1a7005e, 0xbddb0115, 0xbcfb0249, 0x00000000}},  //   _френ, scèn, trép,\n  { {0x6cd60054, 0x3861010f, 0xed1700a1, 0x00000000}},  //   أقسا, jahr_, ےہیں_,\n  { {0x38610022, 0xd14100b4, 0x00000000, 0x00000000}},  //   dahr_, snąć_,   ,\n  { {0x39463f1c, 0x00000000, 0x00000000, 0x00000000}},  //   знаг,   ,   ,\n  { {0x2a603f1d, 0x3861010f, 0xcf250439, 0x00000000}},  // [f360] raib_, fahr_, _تروي,\n  { {0xe9d70175, 0x673c03b6, 0x66fc012d, 0x00000000}},  //   чку_, _purj, tčko,\n  { {0x98aa001a, 0x394b04a5, 0x00000000, 0x00000000}},  //   _aibă_, _etcs_,   ,\n  { {0xfaff008d, 0x66fc00ca, 0x7d0e33cd, 0x00000000}},  //   _gjë_, rčko, lobs,\n  { {0xa3e4013d, 0x3940002b, 0x00000000, 0x00000000}},  //   _पेज_, qqis_,   ,\n  { {0x1394073b, 0x00000000, 0x00000000, 0x00000000}},  //   дикю,   ,   ,\n  { {0x398600fa, 0xd467003b, 0x00000000, 0x00000000}},  //   lôs_, чије_,   ,\n  { {0xe3af004b, 0x225d0022, 0x46a3007e, 0x00000000}},  //   ارو_, _cewk_, _пасв,\n  { {0xe1660025, 0x54360070, 0x6aa60023, 0x00000000}},  //   أدبي, _فرار, _makf,\n  { {0x03a6013b, 0x54671e6a, 0x95eb00a1, 0x00000000}},  //   _низо, _наум_, _طبقہ_,\n  { {0xb4d80309, 0x3f63007c, 0xf1f70014, 0x00000000}},  //   ासी_, нтяб, قعیت_,\n  { {0xe8b9007d, 0x333b009b, 0x77f70104, 0x00000000}},  //   _उच्च, _התאמ, למיד_,\n  { {0x628200bb, 0x7e7d00f8, 0x316600ca, 0x00000000}},  //   _icoo, rgsp, _uvoz_,\n  { {0xdcef001a, 0x00000000, 0x00000000, 0x00000000}},  //   ducă,   ,   ,\n  { {0x6aa605ad, 0x00000000, 0x00000000, 0x00000000}},  //   _bakf,   ,   ,\n  { {0x60ca0007, 0x68ee0129, 0x0f7b009b, 0x00000000}},  //   _hofm, _ambd, _האהב,\n  { {0x6f0f012d, 0xaf3403ec, 0x00000000, 0x00000000}},  // [f370] mocc, _ثروت,   ,\n  { {0x6d4d0013, 0x7d0e0056, 0x6f0f0207, 0x00000000}},  //   _itaa, cobs, locc,\n  { {0x6aa60022, 0xf79901b2, 0xbcfb0068, 0x00000000}},  //   _fakf, تناب_, nsém,\n  { {0x6f0f0207, 0xfaff0065, 0x398600c4, 0x00000000}},  //   nocc, _ujë_, bôs_,\n  { {0x1a680123, 0x64a5007e, 0x3e880010, 0x00000000}},  //   _ریلی_, дала, lító_,\n  { {0x6d4d0020, 0x7e6d00d2, 0x62820045, 0x00000000}},  //   _mtaa, _ldap, _acoo,\n  { {0xf8b200b3, 0x628201f3, 0x00000000, 0x00000000}},  //   _בשם_, _bcoo,   ,\n  { {0x660d006c, 0x78a73f1e, 0x62820032, 0x00000000}},  //   üaks, _hajv, _ccoo,\n  { {0x6f0f0026, 0xc69200a3, 0x30750407, 0x00000000}},  //   docc, _באן_, мунс,\n  { {0xe0d10025, 0xbddb009d, 0x628200fa, 0x00000000}},  //   ئزة_, rcèl, _ecoo,\n  { {0x5f060088, 0x6d4d00e7, 0x00000000, 0x00000000}},  //   дзна, _ataa,   ,\n  { {0x03780123, 0x6f0f0026, 0x00000000, 0x00000000}},  //   _رحمت_, gocc,   ,\n  { {0xc33200a0, 0x7d0e0203, 0x00000000, 0x00000000}},  //   _סוד_, tobs,   ,\n  { {0xee37007e, 0xddc40035, 0x00000000, 0x00000000}},  //   ьня_, _adiţ,   ,\n  { {0x6f0f0197, 0x7d0e368b, 0x6d4d0288, 0x00000000}},  //   bocc, robs, _etaa,\n  { {0x629b0016, 0x7b3c0091, 0x6f0f3f1f, 0x00000000}},  //   neuo, _očuv, cocc,\n  { {0x6aa6014a, 0x00000000, 0x00000000, 0x00000000}},  // [f380] _vakf,   ,   ,\n  { {0xddc4001a, 0x6aa63169, 0x629b0016, 0x00000000}},  //   _ediţ, _wakf, heuo,\n  { {0x78a70087, 0x6aa600f8, 0x00000000, 0x00000000}},  //   _dajv, _takf,   ,\n  { {0xe61a102a, 0x398600c4, 0x00000000, 0x00000000}},  //   оде_, pôs_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6569012d, 0xa5330088, 0x00000000, 0x00000000}},  //   _dveh, вніч,   ,\n  { {0x779102fd, 0x00000000, 0x00000000, 0x00000000}},  //   _میلا,   ,   ,\n  { {0x416a003b, 0x291a004a, 0x00000000, 0x00000000}},  //   ојом_, llpa_,   ,\n  { {0xcb13009b, 0x05ba0025, 0xc486003b, 0x00000000}},  //   כלה_, _بدأت_, _олак,\n  { {0xba3b00f6, 0x7b130023, 0xa1270025, 0x00000000}},  //   _raïm, nçur, وكيل_,\n  { {0x6d4d049b, 0x6f0f0197, 0xdce40161, 0x00000000}},  //   _staa, tocc, _cvič,\n  { {0x26c608d9, 0x25a43f20, 0x00000000, 0x00000000}},  //   njoo_, _ksml_,   ,\n  { {0x6f0f0207, 0x0cab114a, 0xbcfb009d, 0x00000000}},  //   rocc, отви_, ssém,\n  { {0x6f0f0197, 0xa19302ea, 0x00000000, 0x00000000}},  //   socc, _рашч,   ,\n  { {0x6d34007c, 0x6f0f17f8, 0x1fa3007e, 0x00000000}},  //   терф, pocc, _арыг,\n  { {0x62800a0b, 0x3e880010, 0x00000000, 0x00000000}},  //   ngmo, rító_,   ,\n  { {0xeabf0011, 0x3e880010, 0x6d4d0020, 0x00000000}},  // [f390] _chùa_, sító_, _utaa,\n  { {0x3ea901bb, 0xad270025, 0xb5fd00d0, 0x00000000}},  //   _haat_, _تربو, _ješe,\n  { {0x8c4400ed, 0xb5fd0e00, 0x656900d2, 0x00000000}},  //   _шеќе, _meše, _sveh,\n  { {0xb5fd04c8, 0x33260082, 0x501b009b, 0x00000000}},  //   _leše, _nhox_, חובו,\n  { {0x3ea93f21, 0x672b0635, 0x00000000, 0x00000000}},  //   _maat_, rmgj,   ,\n  { {0x3ea90100, 0xa3ab0316, 0x7d020051, 0x00000000}},  //   _laat_, खिल_, _íost,\n  { {0x29030066, 0x00000000, 0x00000000, 0x00000000}},  //   _ijja_,   ,   ,\n  { {0x3ea90173, 0x3326013f, 0x00000000, 0x00000000}},  //   _naat_, _chox_,   ,\n  { {0x7afa009f, 0x629b0016, 0xddc43f22, 0x00000000}},  //   étti, reuo, _odiš,\n  { {0x629b018e, 0x7ae101d6, 0x00000000, 0x00000000}},  //   seuo, ëltj,   ,\n  { {0x325501fb, 0x81e70044, 0x3ea90116, 0x00000000}},  //   _звер, _মুখ_, _baat_,\n  { {0x3ea900d9, 0x7ce201d6, 0xe0bf0044, 0x00000000}},  //   _caat_, _môre, ইসেন,\n  { {0x5d67007c, 0xd0d5022a, 0x9dba007e, 0x00000000}},  //   ниям_, _подъ, чыну_,\n  { {0x332d008e, 0x00000000, 0x00000000, 0x00000000}},  //   lmex_,   ,   ,\n  { {0x69cb04ce, 0xc4d200a0, 0x00000000, 0x00000000}},  //   ägen, נגל_,   ,\n  { {0x3ea902ae, 0xfaa3007e, 0x2fd80737, 0x00000000}},  //   _gaat_, ласо, ørge_,\n  { {0xc332019b, 0x8c46017f, 0xa926003b, 0x00000000}},  // [f3a0] רון_, _пепе, едал,\n  { {0x7d5701ce, 0x7e662119, 0x00000000, 0x00000000}},  //   _רייד_, lakp,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x2903002b, 0x7e660058, 0x00000000, 0x00000000}},  //   _ejja_, nakp,   ,\n  { {0x6834012d, 0x7ae4096a, 0x00000000, 0x00000000}},  //   dždž, mhit,   ,\n  { {0x33260066, 0xdb05010f, 0x7ae413e4, 0x00000000}},  //   _shox_, _erhä, lhit,\n  { {0x969601f9, 0xb5fd0229, 0x2f190010, 0x00000000}},  //   _праш, _reše, ségi_,\n  { {0x6b830039, 0x31c602e9, 0x00000000, 0x00000000}},  //   _ånge, есов,   ,\n  { {0x7e660fef, 0x343a004b, 0x3ea901c3, 0x00000000}},  //   dakp, _فساد_, _raat_,\n  { {0x3ea90390, 0x63b70129, 0x2ee0003f, 0x00000000}},  //   _saat_, çanè, _alif_,\n  { {0x2018000c, 0xa2c001f5, 0x443e0145, 0x00000000}},  //   æri_, वाद्, _igt_,\n  { {0x753a19f5, 0x7ae400ca, 0x7e6600e0, 0x00000000}},  //   _hitz, jhit, gakp,\n  { {0xc2e90025, 0xed58007e, 0x7ae40023, 0x00000000}},  //   _تعلم_, ноў_, dhit,\n  { {0x2ee0014a, 0x6e24012d, 0x7ae4006c, 0x00000000}},  //   _elif_, _dzib, ehit,\n  { {0x6fe6009d, 0x753a01a2, 0x3ea9003f, 0x00000000}},  //   _décé, _mitz, _taat_,\n  { {0x3da70099, 0x753a002d, 0x7cd8005a, 0x00000000}},  //   _зроб, _litz, _ağrı,\n  { {0x5a3500e3, 0xfc3000a1, 0x443e00f6, 0x00000000}},  // [f3b0] тнат, لحہ_, _ogt_,\n  { {0x6f1d001f, 0x394f001e, 0xf80702d3, 0x00000000}},  //   llsc, īgs_, нчен,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x443e0007, 0x753a002d, 0xf65303ab, 0x00000000}},  //   _agt_, _aitz, ائض_,\n  { {0x443e023a, 0x753a0c0e, 0xe5a5007c, 0x00000000}},  //   _bgt_, _bitz, тили,\n  { {0x443e153c, 0xdb1c000c, 0x6f1d010f, 0x00000000}},  //   _cgt_, lyrð, hlsc,\n  { {0x753a022b, 0x443e004a, 0x798d09d0, 0x00000000}},  //   _ditz, _dgt_, ltaw,\n  { {0x6aad020c, 0x443e00bb, 0x753a0032, 0x00000000}},  //   ndaf, _egt_, _eitz,\n  { {0x798d2d2d, 0x26dc0089, 0x30790025, 0x00000000}},  //   ntaw, īvot_, وحدة_,\n  { {0x76590016, 0x7ae401ee, 0x2901002b, 0x00000000}},  //   lbwy, zhit, nnha_,\n  { {0x22950025, 0x7e660058, 0x290100c4, 0x00000000}},  //   _للاس, takp, inha_,\n  { {0x92eb035b, 0x753a002d, 0x661b0022, 0x00000000}},  //   _عراق_, _zitz, _kyuk,\n  { {0x09d60044, 0x6aad00ea, 0x69c4002b, 0x00000000}},  //   _সেনা, ddaf, xxie,\n  { {0x7ae40009, 0x66090066, 0x623400e2, 0x00000000}},  //   whit, _mxek, _сечу,\n  { {0x5f06005e, 0x61e91b34, 0x29130035, 0x00000000}},  //   _изка, lzel, doxa_,\n  { {0x69c4002d, 0x6f040093, 0x673b007f, 0x00000000}},  //   txie, _ujic, _niuj,\n  { {0x61e9001f, 0xf2d2007b, 0x7ae4023a, 0x00000000}},  // [f3c0] nzel, בען_, rhit,\n  { {0x7d7b019b, 0x7ae40020, 0x4d7b00a3, 0x00000000}},  //   _קניו, shit, _קריע,\n  { {0x7ae41a90, 0x753a0302, 0xcc7700b6, 0x00000000}},  //   phit, _ritz, _בעיה_,\n  { {0x753a010f, 0x443e01a3, 0xcf920049, 0x00000000}},  //   _sitz, _sgt_, שטא_,\n  { {0xa2c0062e, 0x443e3f23, 0x7afa000c, 0x00000000}},  //   वास्, _pgt_, éttu,\n  { {0xd90d026c, 0x7e641744, 0x61e921ca, 0x00000000}},  //   _ٹیم_, _leip, dzel,\n  { {0x66092c9f, 0x443e0082, 0x61e900bb, 0x00000000}},  //   _exek, _vgt_, ezel,\n  { {0xbebb0065, 0x753a010f, 0x7e642e86, 0x00000000}},  //   hmër, _witz, _neip,\n  { {0x7f430219, 0x443e16d4, 0x7ae3001a, 0x00000000}},  //   _aunq, _tgt_, _înte,\n  { {0x6729002b, 0x443e0129, 0x753a00b5, 0x00000000}},  //   _zhej, _ugt_, _uitz,\n  { {0x03a301fb, 0x287b0104, 0x60da00d9, 0x00000000}},  //   _вихо, ונימ, rktm,\n  { {0x7f430207, 0x7336039d, 0xeae40044, 0x00000000}},  //   _dunq, _شرائ, নচুম,\n  { {0x6d440181, 0x61e90036, 0x91e32d6f, 0x00000000}},  //   _cuia, czel, _коце,\n  { {0x09d60044, 0x6fb40355, 0x40a800a6, 0x00000000}},  //   _সেভা, _ممتا, _سختی_,\n  { {0xb5fd1701, 0xac180088, 0xa3ab013d, 0x00000000}},  //   _meša, вору_, खिए_,\n  { {0x798d0066, 0x38630030, 0x29180f99, 0x00000000}},  //   ttaw, _sejr_, _akra_,\n  { {0x6d4416b2, 0x6aad0169, 0xd5a400a1, 0x00000000}},  // [f3d0] _guia, rdaf, _بہ_,\n  { {0x798d3f24, 0x67290065, 0xef1f005d, 0x00000000}},  //   rtaw, _shej, llü_,\n  { {0x798d0046, 0x0675060e, 0x61e90f5d, 0x00000000}},  //   staw, гуля, zzel,\n  { {0xcf93007b, 0xf7700084, 0xe7580088, 0x00000000}},  //   יטע_, زام_, тиці_,\n  { {0x442501aa, 0xa4d50088, 0x83fc0521, 0x00000000}},  //   _szl_, лоді, _ređa,\n  { {0xd0060054, 0x05740025, 0x61e90059, 0x00000000}},  //   _هل_, شاهد, vzel,\n  { {0xb5fd05fa, 0xf4840098, 0x672932fc, 0x00000000}},  //   _deša, ручн, _thej,\n  { {0xd18501e0, 0x61e900b5, 0x63a80045, 0x00000000}},  //   глий, tzel, _dsdn,\n  { {0x3949002b, 0x7e6400b0, 0x61e904eb, 0x00000000}},  //   nqas_, _reip, uzel,\n  { {0x61e91594, 0x9fc900e2, 0x7e640943, 0x00000000}},  //   rzel, егоа_, _seip,\n  { {0x61e90010, 0x7e64006c, 0xba3b147f, 0x00000000}},  //   szel, _peip, _taïw,\n  { {0x61e90010, 0x6d44010e, 0x00000000, 0x00000000}},  //   pzel, _puia,   ,\n  { {0xeabf0011, 0xcdf60a78, 0xa2c0007d, 0x00000000}},  //   _chùm_, учны, वार्,\n  { {0x71720014, 0x9d430131, 0x4df50131, 0x00000000}},  //   _اهوا, серд, ряют,\n  { {0x3bd50057, 0x75ea0047, 0x6fb20014, 0x00000000}},  //   аютс, _közé, _هموا,\n  { {0xe7f90164, 0xef1f006b, 0x224d02bb, 0x00000000}},  //   ्पना_, clü_, ncek_,\n  { {0xf2d2007b, 0x316d0601, 0x6441174b, 0x00000000}},  // [f3e0] זען_, nsez_, _ogli,\n  { {0x64411a0b, 0xbd5b009b, 0xe8f701ee, 0x00000000}},  //   _ngli, _רכיש, глу_,\n  { {0xb5fd01a8, 0x2d820091, 0x69cb0030, 0x00000000}},  //   _reša, luke_, øger,\n  { {0x76a90088, 0x64410197, 0x5b7b0049, 0x00000000}},  //   ктів_, _agli, _ארטא,\n  { {0x2d821ee4, 0xb5fd01ee, 0x64410045, 0x00000000}},  //   nuke_, _peša, _bgli,\n  { {0x291e0010, 0x644100f6, 0xd76600a1, 0x00000000}},  //   _óta_, _cgli, _مارٹ,\n  { {0xb5fd01ee, 0xd377007e, 0xa2c001f5, 0x00000000}},  //   _veša, гчы_, वाल्,\n  { {0x3ea22995, 0x6441009d, 0xa3b700a1, 0x00000000}},  //   jekt_, _egli, ااور_,\n  { {0x3ea200bb, 0x638a00c4, 0x2d822066, 0x00000000}},  //   dekt_, _bênç, juke_,\n  { {0xc7af026c, 0xa0a601ee, 0x00000000, 0x00000000}},  //   _بڑے_, ушил,   ,\n  { {0x3ea206d3, 0xba3b023f, 0xc917009b, 0x00000000}},  //   fekt_, _haït, רחית_,\n  { {0x78ae0089, 0x753d0010, 0xc207009e, 0x00000000}},  //   _labv, _észr, ئقین_,\n  { {0xef1f011f, 0x2d820032, 0xb5fd00ca, 0x00000000}},  //   rlü_, guke_, _lešn,\n  { {0x1fa6003b, 0x3ead00b9, 0xd12f0025, 0x00000000}},  //   _бриг, žet_, _فمن_,\n  { {0xe814001c, 0xac192898, 0x00000000, 0x00000000}},  //   _तुला_, тову_,   ,\n  { {0x4a553f25, 0x2d820091, 0xb5fd0087, 0x00000000}},  //   ркас, buke_, _odšp,\n  { {0xe9750025, 0x00000000, 0x00000000, 0x00000000}},  // [f3f0] شهاد,   ,   ,\n  { {0x940a006b, 0x00000000, 0x00000000, 0x00000000}},  //   şmən_,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x8aa7007e, 0x35b502dc, 0x644100f6, 0x00000000}},  //   _срод, ибер, _sgli,\n  { {0x298b0d99, 0x7cf4006b, 0x394901d5, 0x00000000}},  //   _ясно_, _sürə, qqas_,\n  { {0x81d30044, 0x2ee20309, 0x00000000, 0x00000000}},  //   _হইল_, _पत्त,   ,\n  { {0x2d82118e, 0x3ea2013f, 0x00000000, 0x00000000}},  //   zuke_, yekt_,   ,\n  { {0xc2450088, 0x316d0032, 0x41b501b7, 0x00000000}},  //   шник, tsez_, لمعر,\n  { {0xa487057d, 0x6aaf00d9, 0x398f3f26, 0x00000000}},  //   _مجان, _macf, nüs_,\n  { {0xd12e031d, 0xe0d6007c, 0x3ea200bb, 0x00000000}},  //   ومي_, ивы_, wekt_,\n  { {0x316d00f4, 0x037800a1, 0xd0090999, 0x00000000}},  //   ssez_, _محنت_, тене_,\n  { {0x6126000c, 0x2d82006c, 0x63bc000c, 0x00000000}},  //   rðla, tuke_, _árna,\n  { {0x3ea2127c, 0xb5fd0521, 0xa1580245, 0x00000000}},  //   rekt_, _mešo, _бачу_,\n  { {0x2d821435, 0x3ea20056, 0xed5700e2, 0x00000000}},  //   ruke_, sekt_, рор_,\n  { {0x3ea23f27, 0xfaf600c2, 0x4c6700e2, 0x00000000}},  //   pekt_, ачаю, рисн_,\n  { {0x80da0044, 0x2d821dce, 0x00000000, 0x00000000}},  //   যোদ্, puke_,   ,\n\n  { {0xe9d701f9, 0x78660216, 0x44320011, 0x00000000}},  // [f400] акт_, иказ, ̀y_,\n  { {0xab66007e, 0x00000000, 0x00000000, 0x00000000}},  //   _квол,   ,   ,\n  { {0x629903de, 0x6c7b01ce, 0x5ea90044, 0x00000000}},  //   _obwo, _בריד, গারে,\n  { {0x5a9600ed, 0x398f014a, 0x00000000, 0x00000000}},  //   _троф, büs_,   ,\n  { {0x7ceb010f, 0x6aa400e7, 0x00000000, 0x00000000}},  //   _dürf, meif,   ,\n  { {0x6aa43f28, 0x25a6005b, 0x00000000, 0x00000000}},  //   leif, rwol_,   ,\n  { {0x2727006c, 0xbddb009d, 0xb4e60204, 0x00000000}},  //   sõna_, ncèr, _पती_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xc05a0245, 0x9f4d013e, 0x00000000, 0x00000000}},  //   кін_, ěným_,   ,\n  { {0x0cc10055, 0x67220fc6, 0x6b9e0292, 0x00000000}},  //   _উত্ত, lloj, _oppg,\n  { {0x92e40044, 0x6722019a, 0x61e5006b, 0x00000000}},  //   _নদী_, oloj, _əhli,\n  { {0x798401d6, 0x00000000, 0x00000000, 0x00000000}},  //   kuiw,   ,   ,\n  { {0x7ceb0bea, 0x1154007e, 0xfe6e0014, 0x00000000}},  //   _jürg, _уклю, ژگی_,\n  { {0x7ceb006c, 0x8ff700a1, 0xe3b100a1, 0x00000000}},  //   _mürg, اریر_, _برے_,\n  { {0x7f840054, 0x67220964, 0x212b009d, 0x00000000}},  //   _العن, kloj, îche_,\n  { {0xbcfb0010, 0xb5fd01ed, 0x00000000, 0x00000000}},  //   gsér, _bešl,   ,\n  { {0x09cd0044, 0x2ca3012d, 0x8d950025, 0x00000000}},  // [f410] _রেজা, pejd_, _الخش,\n  { {0x261a03d7, 0x63ba00ea, 0x398f014a, 0x00000000}},  //   _बड़ी_, _ortn, rüs_,\n  { {0xba3b04bd, 0xf7730025, 0x00000000, 0x00000000}},  //   _païs, تاذ_,   ,\n  { {0x7ceb010f, 0xba190025, 0x67220267, 0x00000000}},  //   _bürg, _ميجا_, gloj,\n  { {0x63ba0210, 0xb5fd016c, 0x39460048, 0x00000000}},  //   _artn, _vešo, íost_,\n  { {0xb4e1013d, 0x64a50fc0, 0x81cc0044, 0x00000000}},  //   दसे_, сака, রনা_,\n  { {0xbcfb00f4, 0xe299007e, 0xe3b30014, 0x00000000}},  //   nséq, гай_, ترش_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7ceb0279, 0xeabf0082, 0x00000000, 0x00000000}},  //   _kürd, _chùi_,   ,\n  { {0x70c9012b, 0x25ad0016, 0x6aa40de1, 0x00000000}},  //   угог_, _isel_, zeif,\n  { {0x798400e7, 0x00000000, 0x00000000, 0x00000000}},  //   zuiw,   ,   ,\n  { {0xed5a02b8, 0x62990061, 0x6717007d, 0x00000000}},  //   лом_, _ubwo, तविक_,\n  { {0x6d4b028c, 0x225f01a3, 0x00000000, 0x00000000}},  //   _égal, mbuk_,   ,\n  { {0xa06901f9, 0x7bdc28df, 0x62891e85, 0x00000000}},  //   _сака_, tyru, lgeo,\n  { {0xcb030164, 0x4b260025, 0x60c30056, 0x00000000}},  //   रचंड_, معرف, _innm,\n  { {0x612f05b7, 0x9e662194, 0x4a46007e, 0x00000000}},  //   følg, _увид, снав,\n  { {0xc3320104, 0x6aa43f29, 0xab2701ab, 0x00000000}},  // [f420] לול_, reif, сота_,\n  { {0xac86022a, 0x5e5702fd, 0xbcfb00c4, 0x00000000}},  //   _угол, _پلیس_, ssér,\n  { {0x6b9e1908, 0xe3b80279, 0x7ceb165e, 0x00000000}},  //   _uppg, _ayın_, _sürg,\n  { {0x612f068f, 0x7ceb010e, 0x24b900a1, 0x00000000}},  //   bølg, _pürg, یننگ_,\n  { {0x3f85027e, 0x60c30051, 0x7ceb0010, 0x00000000}},  //   hulu_, _onnm, _fürd,\n  { {0x3f85002d, 0x28c9007d, 0x00000000, 0x00000000}},  //   kulu_, राणि,   ,\n  { {0x25ad021f, 0x00000000, 0x00000000, 0x00000000}},  //   _esel_,   ,   ,\n  { {0xa3c903d7, 0x63ba02db, 0x291a00ee, 0x00000000}},  //   _ऊपर_, _vrtn, lopa_,\n  { {0x26c4008e, 0xdced05c5, 0x69fb0049, 0x00000000}},  //   _inmo_, _svač, ָליק,\n  { {0x7ceb014a, 0x6f74004d, 0xff98003b, 0x00000000}},  //   _küre, огоф, акој_,\n  { {0x3f8501c5, 0x3eb23f2a, 0x64a300c0, 0x00000000}},  //   gulu_, _bayt_, _хаха,\n  { {0x216a00ed, 0xceeb0379, 0x291a00f8, 0x00000000}},  //   _биди_, اردن_, hopa_,\n  { {0x317f0b76, 0x291a34d6, 0x00000000, 0x00000000}},  //   cruz_, kopa_,   ,\n  { {0x3f85006b, 0x80e20044, 0x00000000, 0x00000000}},  //   bulu_, _পদক্,   ,\n  { {0xe0fb009b, 0x00000000, 0x00000000, 0x00000000}},  //   _גלגל,   ,   ,\n  { {0x7ceb005a, 0x6ee612c3, 0x00000000, 0x00000000}},  //   _sürd, _tóba,   ,\n  { {0xf770009e, 0x00000000, 0x00000000, 0x00000000}},  // [f430] ہان_,   ,   ,\n  { {0x6e2d0091, 0x291a0453, 0x28c9006e, 0x00000000}},  //   _izab, gopa_, राधि,\n  { {0xf770002c, 0x7ae3001a, 0x442c0035, 0x00000000}},  //   فان_, _înto, _nzd_,\n  { {0x7ceb3f2b, 0xdb1f00b0, 0x00000000, 0x00000000}},  //   _würd, äväk,   ,\n  { {0xb5fd010a, 0x3f8522fc, 0x7aed0b57, 0x00000000}},  //   _iešk, zulu_, mhat,\n  { {0x7aed0047, 0x291a0919, 0x87e701e0, 0x00000000}},  //   lhat, copa_, _любе,\n  { {0x2ee90016, 0x6f0d10c1, 0x62890116, 0x00000000}},  //   _olaf_, _ojac, tgeo,\n  { {0x7aed0e69, 0x394300d9, 0x442c0068, 0x00000000}},  //   nhat, _hijs_, _dzd_,\n  { {0xe5c70216, 0xb5fd0dc6, 0x62890549, 0x00000000}},  //   _усво, _mešk, rgeo,\n  { {0x3eb2006b, 0x7ceb014a, 0x4f9539ae, 0x00000000}},  //   _sayt_, _yüre, орму,\n  { {0x1eca09ae, 0x3255041f, 0x6e2d3f2c, 0x00000000}},  //   ални_, _двер, _azab,\n  { {0x7d1e001c, 0xf77201ce, 0x82340063, 0x00000000}},  //   _skps, וקט_, _کرما,\n  { {0x7aed0010, 0x6f0d01ee, 0x3f85013f, 0x00000000}},  //   dhat, _djac, sulu_,\n  { {0x6f0d0b50, 0x6e2d05fa, 0x64910521, 0x00000000}},  //   _ejac, _dzab, _užič,\n  { {0x7fd501e1, 0x6e2d002d, 0x8c43026b, 0x00000000}},  //   _філі, _ezab, дере,\n  { {0x7aed258d, 0x394b00f6, 0x0d86007c, 0x00000000}},  //   ghat, _bucs_, _длин,\n  { {0x7ceb011f, 0x291a00ca, 0x394b00f6, 0x00000000}},  // [f440] _süre, topa_, _cucs_,\n  { {0xed590802, 0x39590022, 0xe8c7007e, 0x00000000}},  //   íže_, _dtss_, огул_,\n  { {0x291a005f, 0x7d1c0046, 0xab2a01fb, 0x00000000}},  //   ropa_, mors, _вона_,\n  { {0x7aed0161, 0x7d1c0010, 0xe5c6007c, 0x00000000}},  //   chat, lors, жско,\n  { {0x7ae4007f, 0x00000000, 0x00000000, 0x00000000}},  //   mkit,   ,   ,\n  { {0xd37a01f9, 0x7ceb3f2d, 0x7ae400b0, 0x00000000}},  //   ачи_, _türe, lkit,\n  { {0x2480011f, 0x7ae43f2e, 0x80b20044, 0x00000000}},  //   ğim_, okit, জাম্,\n  { {0x2480014a, 0x7ae40f38, 0x7d1c0161, 0x00000000}},  //   şim_, nkit, hors,\n  { {0x7d1c09c8, 0x7ae42de8, 0x39940039, 0x00000000}},  //   kors, ikit, näs_,\n  { {0x7aed0010, 0x83fc0166, 0x6f0d0022, 0x00000000}},  //   zhat, _leđi, _sjac,\n  { {0x6e2d0047, 0x6f0d022e, 0x7ae400b0, 0x00000000}},  //   _szab, _pjac, kkit,\n  { {0x79960036, 0x6e240009, 0xbcfb009d, 0x00000000}},  //   ktyw, _byib, ipée,\n  { {0x7d1c05b7, 0x6ab6005b, 0xb5fd0087, 0x00000000}},  //   fors, ddyf, _rešk,\n  { {0x7d1c037e, 0x394b19e3, 0x00000000, 0x00000000}},  //   gors, _rucs_,   ,\n  { {0x7aed3f2f, 0xb5fd0107, 0x394b0e27, 0x00000000}},  //   that, _pešk, _sucs_,\n  { {0xb6060243, 0x3da7007e, 0x7ae4011c, 0x00000000}},  //   _kršć, _дроб, gkit,\n  { {0x7aed3f30, 0xb5fd00b9, 0x6e2d0009, 0x00000000}},  // [f450] rhat, _vešk, _uzab,\n  { {0x7aed0041, 0x7d1c0207, 0x6f1d18f8, 0x00000000}},  //   shat, cors, losc,\n  { {0xb5fd0119, 0x7aed0010, 0x60d8000a, 0x00000000}},  //   _tešk, phat, _movm,\n  { {0x6f1d3f31, 0x7ae40009, 0x394300bb, 0x00000000}},  //   nosc, ckit, _wijs_,\n  { {0x7ceb02b9, 0x7cf00073, 0x6d450010, 0x00000000}},  //   _gürc, _därf, _kiha,\n  { {0x6d4501a3, 0x7e6d0051, 0xd466017f, 0x00000000}},  //   _jiha, _leap, пише_,\n  { {0x6d4500e5, 0x044238a1, 0x6f1d00b4, 0x00000000}},  //   _miha, нешн, kosc,\n  { {0x29010acc, 0x6d450149, 0xdb17027b, 0x00000000}},  //   liha_, _liha, _orxí,\n  { {0x7d1c3f32, 0x4445026c, 0x6d45002d, 0x00000000}},  //   yors, _فراہ, _oiha,\n  { {0x6d45014a, 0xb5fd0006, 0x7ae4002d, 0x00000000}},  //   _niha, _neši, zkit,\n  { {0x7d1c063c, 0x7ae4010a, 0x25ff0061, 0x00000000}},  //   vors, ykit, _शेती_,\n  { {0x7e6d0f23, 0x6f1d0197, 0x25bf0116, 0x00000000}},  //   _ceap, gosc, _krul_,\n  { {0x7d1c0027, 0x7cf00004, 0x6d45002d, 0x00000000}},  //   tors, _järg, _biha,\n  { {0x7afd00b5, 0xeab2026c, 0x7cf00004, 0x00000000}},  //   _amst, کٹر_, _märg,\n  { {0x7d1c0047, 0x6d45020c, 0xb5fd0006, 0x00000000}},  //   rors, _diha, _deši,\n  { {0x7d1c0207, 0x6f1d0197, 0x399400b0, 0x00000000}},  //   sors, cosc, täs_,\n  { {0x7ae42cbb, 0xbebb0065, 0x6d450022, 0x00000000}},  // [f460] rkit, ymëz, _fiha,\n  { {0x7ae43f33, 0x6d45011c, 0x7afd0270, 0x00000000}},  //   skit, _giha, _emst,\n  { {0x064a0076, 0x2d8f0039, 0x69cb0a35, 0x00000000}},  //   ملاً_, _äger_, äger,\n  { {0xe73700aa, 0xd9460216, 0x6d450032, 0x00000000}},  //   пех_, _неми, _ziha,\n  { {0x29011bac, 0xd1380006, 0x6d453f34, 0x00000000}},  //   biha_, ymą_, _yiha,\n  { {0x44250224, 0xbcfb009d, 0x798400e7, 0x00000000}},  //   _byl_, ppée, mriw,\n  { {0xdc36007b, 0x07a3007c, 0xdcb10082, 0x00000000}},  //   האַט_, _парн, ổi_,\n  { {0x7ceb3f35, 0x7cf03f36, 0x442508c9, 0x00000000}},  //   _müra, _färg, _dyl_,\n  { {0x6f1d021c, 0x44250095, 0x7cf0010e, 0x00000000}},  //   vosc, _eyl_, _kärd,\n  { {0x60f801fb, 0x3ea001aa, 0x2019006b, 0x00000000}},  //   іння_, _abit_, əsiz_,\n  { {0xd1380a67, 0xb5fd0dbd, 0x6f1d0197, 0x00000000}},  //   rmą_, _reši, tosc,\n  { {0x6d4501a3, 0xd1380006, 0x7cf000f8, 0x00000000}},  //   _siha, smą_, _lärd,\n  { {0x6d45020c, 0x44250007, 0xd24f0025, 0x00000000}},  //   _piha, _zyl_, _إنه_,\n  { {0xd12f01fb, 0x317b01ce, 0x31570104, 0x00000000}},  //   _їх_, _פרומ, _ציון_,\n  { {0x78b500ee, 0x50b70054, 0x6d45044e, 0x00000000}},  //   _razv, _ردود_, _viha,\n  { {0x78b50b29, 0x7c250428, 0x6d450b7e, 0x00000000}},  //   _sazv, _vyhr, _wiha,\n  { {0x29011bac, 0xdb240010, 0xf8c90164, 0x00000000}},  // [f470] tiha_, írás, रालय,\n  { {0x3eab0866, 0x63ad0036, 0x2d8b012d, 0x00000000}},  //   lect_, łani, muce_,\n  { {0x2d8b013e, 0x5eb00044, 0x5695007c, 0x00000000}},  //   luce_, টারে, дает,\n  { {0x3eb93f37, 0x7afd010f, 0x2d99040f, 0x00000000}},  //   ndst_, _umst, otse_,\n  { {0x83fc0119, 0x7cf00039, 0x3eab001a, 0x00000000}},  //   _među, _färd, iect_,\n  { {0x2d99006c, 0x44253f38, 0xeabf0045, 0x00000000}},  //   itse_, _pyl_, _thùs_,\n  { {0xe784003b, 0xb5fd3f39, 0x00000000, 0x00000000}},  //   _путо, _nešv,   ,\n  { {0x3eab0f44, 0x2d8b15d7, 0x2d99006c, 0x00000000}},  //   ject_, kuce_, ktse_,\n  { {0x2d8b3940, 0x059500a2, 0x44251c26, 0x00000000}},  //   juce_, _تازگ, _wyl_,\n  { {0x2d8b1468, 0xddc40006, 0x60090140, 0x00000000}},  //   duce_, _neiš, жном_,\n  { {0x9eaa01f9, 0x7cf00004, 0x3eab3f3a, 0x00000000}},  //   овна_, _järe, fect_,\n  { {0x441a0049, 0x141a0049, 0xa2e40088, 0x00000000}},  //   _וועס, _וועב, _поєд,\n  { {0x2d8b037e, 0x25a40061, 0xf1a701ab, 0x00000000}},  //   guce_, _xpml_, _хрен,\n  { {0xc172009b, 0xfaff0023, 0x00000000, 0x00000000}},  //   _יחד_, _amë_,   ,\n  { {0x2d9900bb, 0x00000000, 0x00000000, 0x00000000}},  //   atse_,   ,   ,\n  { {0x41d10061, 0xee0a1192, 0x3eb90009, 0x00000000}},  //   _तपास, _мейл_, cdst_,\n  { {0x39460c4e, 0x798400e7, 0x3b070745, 0x00000000}},  // [f480] днаг, uriw, фето_,\n  { {0x4999007c, 0xcc8a0014, 0x7cf03f3b, 0x00000000}},  //   ятся_, _بنده_, _bäre,\n  { {0x09d60055, 0x7cf00073, 0xda6601ee, 0x00000000}},  //   _সেখা, _värd, _овни,\n  { {0xc6a302a8, 0x7cf00039, 0x2d54006c, 0x00000000}},  //   врши, _däre, _käe_,\n  { {0xd5ad009e, 0x00000000, 0x00000000, 0x00000000}},  //   یہہ_,   ,   ,\n  { {0x2d54010e, 0x00000000, 0x00000000, 0x00000000}},  //   _mäe_,   ,   ,\n  { {0x938a007e, 0x7cf0010e, 0x3eab004a, 0x00000000}},  //   іска_, _kärb, yect_,\n  { {0x7ceb010f, 0x27e7068f, 0xc6c3022a, 0x00000000}},  //   _nürn, ønne_, _ийск,\n  { {0x2d543f3c, 0x00000000, 0x00000000, 0x00000000}},  //   _näe_,   ,   ,\n  { {0xf651026c, 0x5436004b, 0x160403d7, 0x00000000}},  //   _لئے_, _قرار, _शेयर_,\n  { {0xddc40006, 0x3eab00ab, 0xe29a00ed, 0x00000000}},  //   _reiš, tect_, _маж_,\n  { {0x2d8b1d1f, 0xda1e0061, 0x7cf0150e, 0x00000000}},  //   tuce_, पथात_, _närb,\n  { {0x800800a1, 0x80da0044, 0x7ae3001a, 0x00000000}},  //   ترکہ_, যোগ্, _înti,\n  { {0x2d8b0145, 0x2d990abf, 0x273500f8, 0x00000000}},  //   ruce_, rtse_, pång_,\n  { {0x7cf003a2, 0x3eab1e47, 0x2d8b0eae, 0x00000000}},  //   _bärb, pect_, suce_,\n  { {0x3f8c00e7, 0x00000000, 0x00000000, 0x00000000}},  //   mudu_,   ,   ,\n  { {0xb5fd0224, 0x3f8c002b, 0x44290082, 0x00000000}},  // [f490] _ješt, ludu_, ́a_,\n  { {0xb5fd1d9b, 0xf80702dc, 0x5a343f3d, 0x00000000}},  //   _mešt, мчен, тнут,\n  { {0x3f8c0ec4, 0xb5fd0062, 0x7cf001a2, 0x00000000}},  //   nudu_, _lešt, _färb,\n  { {0x645a177d, 0x26c9004a, 0x7cf000b0, 0x00000000}},  //   _afti, ñao_, _väre,\n  { {0xb5fd0119, 0x7cf0010f, 0x5a44216a, 0x00000000}},  //   _nešt, _wäre, _аэра,\n  { {0x98c4007c, 0x6aad3f3e, 0x3f8c01a3, 0x00000000}},  //   _иссл, leaf, kudu_,\n  { {0xaa7b000c, 0x27350039, 0x09e40044, 0x00000000}},  //   _flýt, tånd_, _নেপা,\n  { {0x645a0359, 0xdb05155e, 0x09d60044, 0x00000000}},  //   _efti, _erhö, _সেটা,\n  { {0x31790047, 0x6d5f0066, 0x00000000, 0x00000000}},  //   ész_, _ntqa,   ,\n  { {0xddc43f3f, 0x69c00e00, 0xc8d20164, 0x00000000}},  //   _afiş, _šmek, सायट,\n  { {0x3f8c0009, 0x5f060088, 0x2c1f0061, 0x00000000}},  //   gudu_, езна, _मुलं_,\n  { {0x32750049, 0xb5fd0bd9, 0x80cd0061, 0x00000000}},  //   _װײַל_, _fešt, ताहे,\n  { {0xc33200b6, 0xcd360752, 0xb5fd06ed, 0x00000000}},  //   _עוד_, فرآب, _gešt,\n  { {0x3f8c3f40, 0x61340129, 0x8b6600a1, 0x00000000}},  //   budu_, tàle, فارم,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6aad0007, 0xbcfb0048, 0x00000000, 0x00000000}},  //   geaf, rpéa,   ,\n  { {0x27180235, 0x00000000, 0x00000000, 0x00000000}},  // [f4a0] nčne_,   ,   ,\n  { {0xee37008b, 0x3c660099, 0xb865221c, 0x00000000}},  //   _яны_, _яког, نامو,\n  { {0xb895005e, 0x61f7006b, 0x66e600c0, 0x00000000}},  //   ъртъ, _əxla, ножа,\n  { {0x6b7b009b, 0x6aad3f41, 0x00000000, 0x00000000}},  //   _צרכנ, ceaf,   ,\n  { {0x86230194, 0x09e302dc, 0x645a0045, 0x00000000}},  //   льше, _боян, _pfti,\n  { {0xb5fd0027, 0xb4ea006e, 0x00000000, 0x00000000}},  //   _rešt, मसे_,   ,\n  { {0xa3d40242, 0xb5fd00ca, 0x779100a1, 0x00000000}},  //   тойч, _sešt, _نیلا,\n  { {0x3f8c0521, 0xf74301ee, 0x85580bb6, 0x00000000}},  //   vudu_, _бесо, _قیصر_,\n  { {0x80c90044, 0x6f06013f, 0x00000000, 0x00000000}},  //   াউন্, dikc,   ,\n  { {0xb5fd3f42, 0x55770049, 0x6722006c, 0x00000000}},  //   _vešt, _נעבן_, looj,\n  { {0x612f0637, 0x941c006b, 0x6d5f002b, 0x00000000}},  //   møll, yevə_, _stqa,\n  { {0x3f8c0145, 0x00000000, 0x00000000, 0x00000000}},  //   rudu_,   ,   ,\n  { {0xc0e60242, 0x3f8c016e, 0x00000000, 0x00000000}},  //   _подк, sudu_,   ,\n  { {0x63a80145, 0x00000000, 0x00000000, 0x00000000}},  //   _kpdn,   ,   ,\n  { {0x672b0d3e, 0x00000000, 0x00000000, 0x00000000}},  //   ylgj,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xfeb8007a, 0x6aad0133, 0x00000000, 0x00000000}},  // [f4b0] _سايت_, reaf,   ,\n  { {0x6aad0190, 0x00000000, 0x00000000, 0x00000000}},  //   seaf,   ,   ,\n  { {0x7d070825, 0xdced012d, 0xcc56009b, 0x00000000}},  //   mijs, _avać, _בבתי_,\n  { {0x7d0700b5, 0x39b20173, 0x7ce201c3, 0x00000000}},  //   lijs, _fņs_, _fôrs,\n  { {0x2a7600a0, 0x2a6930b9, 0x04b800a1, 0x00000000}},  //   _בערך_, mbab_, ڑپوں_,\n  { {0x2a690390, 0xf773035b, 0x64a5003b, 0x00000000}},  //   lbab_, _مار_, така,\n  { {0x94740014, 0x29030023, 0xc6a70467, 0x00000000}},  //   ادها, _imja_, _праи,\n  { {0x63510089, 0x7d07016c, 0x69c0007f, 0x00000000}},  //   _jāni, hijs, _šmei,\n  { {0x7cf00039, 0x7ae30035, 0x00000000, 0x00000000}},  //   _lära, _întu,   ,\n  { {0x2258013e, 0x00000000, 0x00000000, 0x00000000}},  //   ěrka_,   ,   ,\n  { {0x7d0700ee, 0x12e701fb, 0x2cba0300, 0x00000000}},  //   dijs, _підг, _rapd_,\n  { {0xd3560104, 0x752300e7, 0x2cba01d6, 0x00000000}},  //   _סיני_, lonz, _sapd_,\n  { {0x7ceb011f, 0xdce40166, 0x6f0611e4, 0x00000000}},  //   _türl, _sviđ, rikc,\n  { {0x7d070825, 0x7cf000f8, 0x2b4b2378, 0x00000000}},  //   gijs, _bära, _aicc_,\n  { {0xab2a0407, 0x394a11d1, 0x00000000, 0x00000000}},  //   дова_, _ribs_,   ,\n  { {0x7a38000c, 0x7bc500f6, 0x7cf000f8, 0x00000000}},  //   _nútí, _drhu, _dära,\n  { {0xee3a0265, 0x7d0700bb, 0xbb43003b, 0x00000000}},  // [f4c0] _юни_, bijs, ретк,\n  { {0x7d070746, 0xb95b001d, 0xbc6a02fd, 0x00000000}},  //   cijs, _trìn, _تمدن_,\n  { {0x752306b1, 0x2a690c2c, 0xdce404eb, 0x00000000}},  //   donz, bbab_, _uviđ,\n  { {0x6d4b00f4, 0x224f0022, 0x27e706ec, 0x00000000}},  //   _égar, _nggk_, ønna_,\n  { {0x80b2001c, 0x6b830039, 0x394a00fa, 0x00000000}},  //   _असले, _ångr, _tibs_,\n  { {0x26cd000b, 0x75230555, 0x6722010e, 0x00000000}},  //   _eneo_, gonz, sooj,\n  { {0x6f040197, 0xe3af0379, 0xc6230044, 0x00000000}},  //   _omic, قري_, বেলা_,\n  { {0x7d0701ae, 0x66e309b2, 0x78bc0e2d, 0x00000000}},  //   zijs, _коса, _harv,\n  { {0x09e40044, 0x7ceb005d, 0xe5720025, 0x00000000}},  //   _নেতা, _sürm, _خطأ_,\n  { {0x6f043f43, 0x78bc1241, 0x30a30088, 0x00000000}},  //   _amic, _jarv, арюв,\n  { {0x3af500ea, 0x6ee6004a, 0x2d8400d2, 0x00000000}},  //   _håpe_, _lóbu, ámen_,\n  { {0x78bc0056, 0x7d0700bb, 0xb5fd0087, 0x00000000}},  //   _larv, wijs, _kešp,\n  { {0x442c018e, 0x7d070059, 0xf0b7007a, 0x00000000}},  //   _hyd_, tijs, رایش_,\n  { {0x7cf00004, 0x78bc006c, 0x48bd0044, 0x00000000}},  //   _pära, _narv, _আক্র,\n  { {0x7d0712ac, 0x69c60056, 0x2b4b0085, 0x00000000}},  //   rijs, _arke, _picc_,\n  { {0x7bc50f3a, 0x7cf0006c, 0x442c0016, 0x00000000}},  //   _vrhu, _vära, _myd_,\n  { {0x78bc0aaa, 0x442c05b7, 0x7d07040d, 0x00000000}},  // [f4d0] _barv, _lyd_, pijs,\n  { {0x7cf00039, 0x3324002b, 0x78bc0335, 0x00000000}},  //   _härn, homx_, _carv,\n  { {0x69c6011f, 0x7cf023df, 0x78bc0350, 0x00000000}},  //   _erke, _kärn, _darv,\n  { {0x95990269, 0x7cf00039, 0x7af60161, 0x00000000}},  //   етку_, _järn, chyt,\n  { {0x78bc0018, 0xbebb0065, 0x7bd8001a, 0x00000000}},  //   _farv, llës, ăbuş,\n  { {0x442c018e, 0x78bc032e, 0x7aed002d, 0x00000000}},  //   _byd_, _garv, lkat,\n  { {0x442c0016, 0x75230197, 0x2489006b, 0x00000000}},  //   _cyd_, ronz, ğam_,\n  { {0x248901f6, 0x69c6093b, 0xe3b0023c, 0x00000000}},  //   şam_, _yrke, تره_,\n  { {0x7aed010a, 0x6e2d3f44, 0x6abd0ec1, 0x00000000}},  //   ikat, _nyab, _masf,\n  { {0x6ff3005f, 0x2cb100b9, 0x442c0016, 0x00000000}},  //   ləcə, jezd_, _fyd_,\n  { {0x6e360046, 0x332d0249, 0x442c1b6c, 0x00000000}},  //   _szyb, plex_, _gyd_,\n  { {0x6e2d0061, 0x63050167, 0x6ff3006b, 0x00000000}},  //   _byab, _حوصل, nəcə,\n  { {0x6e2d0009, 0x7aed0056, 0x27180059, 0x00000000}},  //   _cyab, dkat, nčna_,\n  { {0x61e91205, 0x6e2d0a1d, 0x7aed0190, 0x00000000}},  //   myel, _dyab, ekat,\n  { {0x92d50044, 0x2d8b0035, 0x61e90095, 0x00000000}},  //   হসী_, arce_, lyel,\n  { {0x7cf00073, 0x7aed006a, 0x78bc05e0, 0x00000000}},  //   _gärn, gkat, _sarv,\n  { {0x4a75008b, 0x78bc0eb4, 0x61e93f45, 0x00000000}},  // [f4e0] рыст, _parv, nyel,\n  { {0x4a430457, 0x2b400133, 0x673b214c, 0x00000000}},  //   снув, smic_, _ahuj,\n  { {0x7e76000c, 0x78bc0864, 0xdc9b00a0, 0x00000000}},  //   _keyp, _varv, _אייל,\n  { {0x7aed3f46, 0xe61a0175, 0x66760d3a, 0x00000000}},  //   ckat, нде_, ادار,\n  { {0x78bc0b3e, 0x442c3f47, 0x69c63f48, 0x00000000}},  //   _tarv, _syd_, _urke,\n  { {0x7ae3000d, 0x6d5628f4, 0x69c43f49, 0x00000000}},  //   _într, _muya, mvie,\n  { {0x74690088, 0x7cf00039, 0x6abd0022, 0x00000000}},  //   трів_, _läro, _yasf,\n  { {0x41b4023c, 0x81cd0044, 0x69c43f4a, 0x00000000}},  //   لمبر, রহন_, ovie,\n  { {0x69c4028c, 0x61e90047, 0xdce40046, 0x00000000}},  //   nvie, gyel, _zwią,\n  { {0x442c0343, 0x7aed002d, 0x4376007c, 0x00000000}},  //   _tyd_, zkat, _будт,\n  { {0x7cf00004, 0x7aed008d, 0x3366012b, 0x00000000}},  //   _pärn, ykat, _свег,\n  { {0x7ceb01f6, 0x69c4010a, 0x63ba0036, 0x00000000}},  //   _türk, kvie, _istn,\n  { {0x2d8b009d, 0x6d56008e, 0x7cf003af, 0x00000000}},  //   urce_, _cuya, _värn,\n  { {0x69c41c71, 0x6d56014a, 0x00000000, 0x00000000}},  //   dvie, _duya,   ,\n  { {0x69c401c5, 0x7aed0772, 0x6ff3006b, 0x00000000}},  //   evie, tkat, yəcə,\n  { {0x7cf00039, 0x7ceb2222, 0x6a150264, 0x00000000}},  //   _härl, _müri, амбу,\n  { {0x7aed1964, 0x7cf00039, 0x69c40089, 0x00000000}},  // [f4f0] rkat, _kärl, gvie,\n  { {0x7aed001e, 0x6729022e, 0x673b37ef, 0x00000000}},  //   skat, _skej, _shuj,\n  { {0x7c29010f, 0x61fb0afb, 0xb8dd007d, 0x00000000}},  //   ßerd, zzul, _आस_,\n  { {0xf7700025, 0xf990026c, 0xb8ec006e, 0x00000000}},  //   سام_, تبہ_, _शो_,\n  { {0x6ff3005f, 0x69c40082, 0x1efc0049, 0x00000000}},  //   rəcə, cvie, עלדע,\n  { {0xbf020204, 0x61fb3f4b, 0x798d3f4c, 0x00000000}},  //   _लग्न_, vzul, mraw,\n  { {0x6ed8001c, 0x3ea9023a, 0x62993d3e, 0x00000000}},  //   यामु, _obat_, _pcwo,\n  { {0x61fb002d, 0x61e90173, 0x661b002d, 0x00000000}},  //   tzul, tyel, _txuk,\n  { {0x61fb3f4d, 0x7e7600e0, 0xa2a10309, 0x00000000}},  //   uzul, _reyp, क्ष्,\n  { {0x3ea90f57, 0x6ee600c4, 0x61fb0e42, 0x00000000}},  //   _abat_, _nóbr, rzul,\n  { {0x3dc9006a, 0x69c43f4e, 0x6d561d42, 0x00000000}},  //   _araw_, zvie, _suya,\n  { {0xed5a013b, 0xfe46004c, 0x6d560058, 0x00000000}},  //   ком_, инно, _puya,\n  { {0x23690091, 0x7ceb010f, 0xde36007e, 0x00000000}},  //   ćaju_, _züri, рэнь,\n  { {0x3dc93f4f, 0x317f014a, 0x272e000c, 0x00000000}},  //   _draw_, msuz_, rýni_,\n  { {0x8c46004c, 0x317f0477, 0x4a9a007e, 0x00000000}},  //   реве, lsuz_, ктаў_,\n  { {0x69c4001e, 0xf1a903d7, 0x6d563f50, 0x00000000}},  //   tvie, _कहान, _tuya,\n  { {0x0906008b, 0x5f4400a1, 0x798d0007, 0x00000000}},  // [f500] апан, _پچھل, graw,\n  { {0xe8f7058f, 0xa2cc001c, 0xdd7b0049, 0x00000000}},  //   алу_, _दोन्, _שטיל,\n  { {0x25ad001a, 0x69c416a6, 0xd90d0167, 0x00000000}},  //   _apel_, svie, ریف_,\n  { {0x317f26e4, 0x69c409a1, 0xd7ef0025, 0x00000000}},  //   ksuz_, pvie, بكم_,\n  { {0x28760783, 0x798d0cc0, 0x7cf008e8, 0x00000000}},  //   _выбр, craw, _lärm,\n  { {0x05140044, 0x7ceb0d24, 0x7c290095, 0x00000000}},  //   িত্র_, _püri, şere,\n  { {0x7cf00039, 0xd377007e, 0x24850022, 0x00000000}},  //   _närm, ачы_, _ddlm_,\n  { {0xf1a6008b, 0x3878053d, 0x16040061, 0x00000000}},  //   арон, _herr_, _शेअर_,\n  { {0x7cf003af, 0xb5a90025, 0xa63400a1, 0x00000000}},  //   _pärl, _مالك_, _اکاؤ,\n  { {0x4fc600ed, 0x5f94004d, 0x7ceb010e, 0x00000000}},  //   асма, биот, _türi,\n  { {0x7cf00073, 0x38780065, 0x0857009b, 0x00000000}},  //   _värl, _merr_, יבים_,\n  { {0x7cf00039, 0x3dc90036, 0xd36f0014, 0x00000000}},  //   _därm, _praw_, _آهن_,\n  { {0xae010201, 0x00000000, 0x00000000, 0x00000000}},  //   _लेखन_,   ,   ,\n  { {0x3e750011, 0x7cf00894, 0x6143003b, 0x00000000}},  //   ất_, _härj, _деча,\n  { {0x81cd0044, 0xead501ab, 0x7cf00052, 0x00000000}},  //   রহণ_, бовь, _kärj,\n  { {0x7cf00368, 0x798d0036, 0x8e850025, 0x00000000}},  //   _järj, traw, _الظه,\n  { {0x13af0044, 0x7e7d006c, 0x4c95005e, 0x00000000}},  // [f510] কিয়, masp, _липс,\n  { {0xd8790647, 0x7e7d0089, 0x5cb9007e, 0x00000000}},  //   امات_, lasp, _слоў_,\n  { {0x25ad0a74, 0x38780ede, 0x00000000, 0x00000000}},  //   _spel_, _derr_,   ,\n  { {0x798d0046, 0x7e7d00e7, 0x25ad00d9, 0x00000000}},  //   praw, nasp, _ppel_,\n  { {0x929d0036, 0xc9840143, 0x38780023, 0x00000000}},  //   siłk, _мури, _ferr_,\n  { {0x43850025, 0x7e7d1e17, 0x00000000, 0x00000000}},  //   ملتق, hasp,   ,\n  { {0x39590239, 0x31660288, 0x9f64006b, 0x00000000}},  //   _huss_, _atoz_, ətçi_,\n  { {0x569404af, 0x7e7d037e, 0x98b90006, 0x00000000}},  //   _маст, jasp, _pusė_,\n  { {0x224b0039, 0xc69200a3, 0x7e7d03c2, 0x00000000}},  //   äck_, _מאן_, dasp,\n  { {0x3959001f, 0x9f4e00b9, 0xa3d7013d, 0x00000000}},  //   _muss_, ěním_, ामद_,\n  { {0x7cf000f8, 0x7e7d0190, 0xe43503d9, 0x00000000}},  //   _färj, fasp, _افاد,\n  { {0x7cf00073, 0x613d00f4, 0x1efa0025, 0x00000000}},  //   _värm, dèle, اعدة_,\n  { {0xd25601f8, 0x7cf0010f, 0x01650aed, 0x00000000}},  //   _השנה_, _wärm, _укло,\n  { {0x1d190077, 0xed57007c, 0x463a0049, 0x00000000}},  //   аюсь_, сор_, טערע,\n  { {0x6f9506ea, 0x7f850054, 0x00000000, 0x00000000}},  //   _العض, _البن,   ,\n  { {0x395903af, 0x7cf000b0, 0x271800ca, 0x00000000}},  //   _buss_, _kärk, včno_,\n  { {0x9f460010, 0x7cf000b0, 0x00000000, 0x00000000}},  // [f520] szló_, _järk,   ,\n  { {0x7cf0039e, 0x23b701f5, 0xa3d7007d, 0x00000000}},  //   _märk, _आनंद, ामा_,\n  { {0x395900f6, 0x387801e5, 0x00000000, 0x00000000}},  //   _euss_, _verr_,   ,\n  { {0xe9a601e0, 0xf72901fb, 0xf74300da, 0x00000000}},  //   _ламп, ацій_, пехо,\n  { {0xd90d026c, 0x9412005f, 0x38780023, 0x00000000}},  //   ریہ_, əyə_, _terr_,\n  { {0x26c012f8, 0x6ab6000c, 0x2d8200ea, 0x00000000}},  //   žio_, leyf, iske_,\n  { {0x7ae60142, 0x290a0058, 0xddc4016c, 0x00000000}},  //   _kokt, _imba_, _neiž,\n  { {0x2d820277, 0x7e7d0032, 0x7ae62a04, 0x00000000}},  //   kske_, xasp, _jokt,\n  { {0x2d82092f, 0xe45200a6, 0x7e7d01ee, 0x00000000}},  //   jske_, _فضا_, vasp,\n  { {0x2d820091, 0x7e7d0093, 0x3ae7006c, 0x00000000}},  //   dske_, wasp, _lõpp_,\n  { {0x33f60264, 0xe4d701ef, 0xdeb50147, 0x00000000}},  //   _учас, _دولت_, обны,\n  { {0x7ae6011f, 0x2d820bf8, 0x80d60204, 0x00000000}},  //   _nokt, fske_, बाहे,\n  { {0x7e7d357d, 0x290a00e7, 0x00000000, 0x00000000}},  //   rasp, _omba_,   ,\n  { {0x613d1259, 0x2b5a00f6, 0xc19b009b, 0x00000000}},  //   tèle, _bupc_, _עשוי,\n  { {0xe7e30055, 0x7ae6194d, 0x2d820521, 0x00000000}},  //   _মধ্য, _bokt, aske_,\n  { {0x290a097e, 0x7bc729f9, 0x395900f8, 0x00000000}},  //   _amba_, rvju, _puss_,\n  { {0x6f0f0197, 0x49bb0014, 0x00000000, 0x00000000}},  // [f530] micc, دازد_,   ,\n  { {0x7cf00039, 0x6f0f0197, 0x612f06ec, 0x00000000}},  //   _närh, licc, sølv,\n  { {0xc5e60044, 0xe7b503e6, 0x7ceb006b, 0x00000000}},  //   _খেলা_, تماد, _qüru,\n  { {0x290a0697, 0x6f0f04b8, 0x00000000, 0x00000000}},  //   _emba_, nicc,   ,\n  { {0x1a9a0049, 0x85a7003b, 0x7ceb2beb, 0x00000000}},  //   _דירע, сјед, _fürt,\n  { {0x92d50055, 0x6f0f0026, 0x9a290082, 0x00000000}},  //   _হতে_, hicc, _gươm_,\n  { {0x7ae6014a, 0xf794007e, 0x7cf01b6b, 0x00000000}},  //   _yokt, _нарэ, _särk,\n  { {0x23a10036, 0x2d820030, 0x7ceb005a, 0x00000000}},  //   rój_, yske_, _kürs,\n  { {0x44290046, 0x6f0f029a, 0x50b501ab, 0x00000000}},  //   ła_, dicc, осну,\n  { {0x672b008d, 0x9f8501fb, 0x2d820340, 0x00000000}},  //   logj, огод, vske_,\n  { {0xef1a012b, 0x6f0f0066, 0x273c3f51, 0x00000000}},  //   имо_, ficc, lína_,\n  { {0x2d821502, 0x2f54004c, 0x7cf0021e, 0x00000000}},  //   tske_, ятьс, _tärk,\n  { {0x2d843f52, 0xed5a007c, 0x7ae601c5, 0x00000000}},  //   éme_, рог_, _rokt,\n  { {0xa0693b88, 0x2d823f53, 0xdbc7000c, 0x00000000}},  //   _така_, rske_, töðv,\n  { {0xf0b801ef, 0x6f0f0026, 0x7ae60022, 0x00000000}},  //   _دانش_, bicc, _pokt,\n  { {0xed5a15c4, 0x2d82037e, 0x629b0006, 0x00000000}},  //   _кои_, pske_, nguo,\n  { {0x60c30f5c, 0xdb050030, 0x7ae600ea, 0x00000000}},  // [f540] _kanm, _ophæ, _vokt,\n  { {0x92d50044, 0x60c30173, 0x00000000, 0x00000000}},  //   _হতো_, _janm,   ,\n  { {0x60c30263, 0x6569008d, 0x68e700b9, 0x00000000}},  //   _manm, _ateh, _dojd,\n  { {0x60c30263, 0x7c3e066e, 0x27e70039, 0x00000000}},  //   _lanm, _izpr, änna_,\n  { {0xf5b6031d, 0x7ceb014a, 0x00000000, 0x00000000}},  //   تصاد, _gürs,   ,\n  { {0xf366003b, 0x7ceb01df, 0x2cb80912, 0x00000000}},  //   отин, _hürr, nerd_,\n  { {0xbcfb00f4, 0x3ea0231b, 0x00000000, 0x00000000}},  //   mpét, _ocit_,   ,\n  { {0x60c3017c, 0x6569002b, 0x7cf00039, 0x00000000}},  //   _aanm, _fteh, _däri,\n  { {0x60c30173, 0x7984018e, 0x2cb800b5, 0x00000000}},  //   _banm, nsiw, kerd_,\n  { {0x60c30016, 0x26c41163, 0x00000000, 0x00000000}},  //   _canm, _hamo_,   ,\n  { {0x44383f54, 0x60c30018, 0x26c4011c, 0x00000000}},  //   _ár_, _danm, _kamo_,\n  { {0x7413007a, 0x26c60020, 0x26c400ca, 0x00000000}},  //   _توما, ndoo_, _jamo_,\n  { {0x60c30263, 0xdce4092f, 0x6f0f0555, 0x00000000}},  //   _fanm, _etič, ricc,\n  { {0x62800010, 0x6f0f0197, 0x2cb83f55, 0x00000000}},  //   lamo, sicc, gerd_,\n  { {0x6f0f0197, 0x672b0022, 0x00000000, 0x00000000}},  //   picc, yogj,   ,\n  { {0x62800006, 0x60c30263, 0xda0c03d7, 0x00000000}},  //   namo, _zanm, _सेहत_,\n  { {0x3eb90004, 0x6f0d3f56, 0x68e71a2d, 0x00000000}},  // [f550] mest_, _imac, _pojd,\n  { {0x3eb91c0b, 0xa2cc02d2, 0x8b080224, 0x00000000}},  //   lest_, _दोस्, _pořá,\n  { {0x6569001f, 0x62800006, 0x2d99006c, 0x00000000}},  //   _steh, kamo, luse_,\n  { {0x6280010a, 0x95d9007c, 0x26c42c23, 0x00000000}},  //   jamo, йдет_, _camo_,\n  { {0x443e0047, 0x62801770, 0xb065021e, 0x00000000}},  //   _azt_, damo, nkää,\n  { {0x7cf00004, 0xe4c217bc, 0xdb1e000a, 0x00000000}},  //   _päri, ейши, _aspè,\n  { {0x60c301aa, 0x3eb9006c, 0x2d990030, 0x00000000}},  //   _ranm, kest_, huse_,\n  { {0x3eb90209, 0x66b40057, 0x8c1c0097, 0x00000000}},  //   jest_, _обсу, יווי,\n  { {0x443e0047, 0xdce41531, 0x65690521, 0x00000000}},  //   _ezt_, _stič, _uteh,\n  { {0x6f0d1368, 0x2d993f57, 0xdb1e3f58, 0x00000000}},  //   _amac, duse_, _espè,\n  { {0x62800211, 0x60c30168, 0x2cb800b5, 0x00000000}},  //   bamo, _vanm, verd_,\n  { {0x7cf03f59, 0x62800489, 0x2cb801d6, 0x00000000}},  //   _järv, camo, werd_,\n  { {0x2d99006c, 0x60c32965, 0x2cb824b6, 0x00000000}},  //   guse_, _tanm, terd_,\n  { {0xb6060062, 0xa3cf006e, 0x6aaf004a, 0x00000000}},  //   _ukáž, शिप_, _abcf,\n  { {0xdce40107, 0x1d07003b, 0xa021010e, 0x00000000}},  //   _utič, чери_, ööde,\n  { {0x7cf003af, 0x2d9903c6, 0x3ea016d0, 0x00000000}},  //   _närv, buse_, _ucit_,\n  { {0x26c400fa, 0xc332009b, 0x2cb8040f, 0x00000000}},  // [f560] _ramo_, תון_, perd_,\n  { {0x49990057, 0x26c401d9, 0x62801ae2, 0x00000000}},  //   ются_, _samo_, zamo,\n  { {0x628b0de0, 0x62800dfb, 0xbcfb263c, 0x00000000}},  //   _odgo, yamo, rpét,\n  { {0xe73a0057, 0x6602002d, 0x628012dd, 0x00000000}},  //   щее_, tzok, xamo,\n  { {0xbcfb00f4, 0x62800285, 0x27180059, 0x00000000}},  //   mpér, vamo, nčni_,\n  { {0x7ae40091, 0x6fdb0061, 0x26c400e7, 0x00000000}},  //   ljit, यमां, _wamo_,\n  { {0x26c40119, 0x62800977, 0x25a60142, 0x00000000}},  //   _tamo_, tamo, stol_,\n  { {0x7af60006, 0x7ae41137, 0x00000000, 0x00000000}},  //   nkyt, njit,   ,\n  { {0x62801770, 0x6f0d0061, 0x00000000, 0x00000000}},  //   ramo, _rmac,   ,\n  { {0x2d990004, 0x6f0d120c, 0xc22300a1, 0x00000000}},  //   vuse_, _smac, رکنو,\n  { {0x3eb908ce, 0xdb1e1729, 0x6f1d0211, 0x00000000}},  //   test_, _espé, érco,\n  { {0x2d990004, 0x7f440b33, 0x2b4924d9, 0x00000000}},  //   tuse_, _chiq, xmac_,\n  { {0x3eb900ab, 0x7ae43f5a, 0x00000000, 0x00000000}},  //   rest_, djit,   ,\n  { {0x3eb90004, 0x2d99006c, 0xa2a20061, 0x00000000}},  //   sest_, ruse_, _गाड्,\n  { {0x3eb90047, 0x6e2402d5, 0x2d990004, 0x00000000}},  //   pest_, _exib, suse_,\n  { {0x7ae4008d, 0x2d99001a, 0x8037009b, 0x00000000}},  //   gjit, puse_, _מנוע_,\n  { {0x2b493f5b, 0xfc3000a1, 0xa2a1006e, 0x00000000}},  // [f570] rmac_, نحہ_, क्ट्,\n  { {0x98b80006, 0xa3cf0316, 0x00000000, 0x00000000}},  //   _mirė_, शिम_,   ,\n  { {0x6f1d3f5c, 0x7e7f0023, 0xbcfb0068, 0x00000000}},  //   onsc, _keqp, spés,\n  { {0x6f1d3f5d, 0x69cf016c, 0x645a123c, 0x00000000}},  //   nnsc, _trce, _agti,\n  { {0x6f1d0129, 0x7cf00dac, 0xd1380006, 0x00000000}},  //   insc, _värv, klą_,\n  { {0x3f853f5e, 0x7afd21b3, 0xe5700025, 0x00000000}},  //   yslu_, _hlst, اطن_,\n  { {0x6d57006b, 0x68e3000c, 0xa2e5007c, 0x00000000}},  //   _mixa, öndu, дойд,\n  { {0xa2a201f5, 0x7cf031f5, 0x6d571aaa, 0x00000000}},  //   _गाण्, _härt, _lixa,\n  { {0x659400ed, 0xb14501ab, 0x00000000, 0x00000000}},  //   _пату, мнил,   ,\n  { {0x27180059, 0x7f440023, 0x00000000, 0x00000000}},  //   včni_, _shiq,   ,\n  { {0x7cf00004, 0x2611013d, 0x3afc00b9, 0x00000000}},  //   _märt, _देती_, _lípa_,\n  { {0x64413f5f, 0x7c29011f, 0x6d45002b, 0x00000000}},  //   _izli, ğerl, _ahha,\n  { {0x3f85002b, 0x6d570032, 0x00000000, 0x00000000}},  //   sslu_, _bixa,   ,\n  { {0x3e7c001d, 0x7afd0a75, 0x6d453438, 0x00000000}},  //   ật_, _alst, _chha,\n  { {0x6aad006b, 0x00000000, 0x00000000, 0x00000000}},  //   ffaf,   ,   ,\n  { {0x765b00ad, 0x6d570129, 0xff260088, 0x00000000}},  //   _nguy, _eixa, _імпо,\n  { {0x7af60ecb, 0x6d8800a1, 0x08c60745, 0x00000000}},  // [f580] rkyt, _عمدہ_, мбан,\n  { {0x7af61415, 0x7afd000c, 0xbcfb009d, 0x00000000}},  //   skyt, _elst, spér,\n  { {0x81e30044, 0x66e63f60, 0x7cf000f8, 0x00000000}},  //   ননি_, можа, _därt,\n  { {0x6b9c0085, 0x00000000, 0x00000000, 0x00000000}},  //   murg,   ,   ,\n  { {0x6b9c01c5, 0xd5b0035b, 0xe4e60088, 0x00000000}},  //   lurg, افت_, дійн,\n  { {0x81e30044, 0x7cf001a2, 0x44252909, 0x00000000}},  //   ননা_, _gärt, _bxl_,\n  { {0xec360049, 0x98a3025f, 0x442501f3, 0x00000000}},  //   ואַר_, _шире, _cxl_,\n  { {0x7cf023fa, 0xfbc00044, 0x8afb0049, 0x00000000}},  //   _kärs, _উপাত, ַליז,\n  { {0x7cf0006c, 0x6b9c0032, 0x69c40316, 0x00000000}},  //   _järs, hurg, रिटी,\n  { {0x6b9c002d, 0x7cf000f8, 0x00000000, 0x00000000}},  //   kurg, _märs,   ,\n  { {0xd0100647, 0x39580995, 0x00000000, 0x00000000}},  //   الج_, _mirs_,   ,\n  { {0x7996369c, 0x65600020, 0x6b9c000c, 0x00000000}},  //   kryw, _kumh, durg,\n  { {0x656004be, 0x6f1d01a2, 0x7cf03355, 0x00000000}},  //   _jumh, rnsc, _närs,\n  { {0xa2b802f4, 0x799636a3, 0x65600048, 0x00000000}},  //   ्यक्, dryw, _mumh,\n  { {0x7c34085f, 0xd00f0604, 0x6b9c000c, 0x00000000}},  //   верх, _рф_, gurg,\n  { {0xaf080025, 0xcf270d3a, 0xa3cf007d, 0x00000000}},  //   _يقوم_, _ترتي, शित_,\n  { {0x79960036, 0x29130032, 0x00000000, 0x00000000}},  // [f590] gryw, tixa_,   ,\n  { {0x7b67022a, 0x3eb20036, 0xf1c80011, 0x00000000}},  //   _отме, _zbyt_, _mỡ_,\n  { {0xf1c80011, 0x6b9c0035, 0x29133f61, 0x00000000}},  //   _lỡ_, curg, rixa_,\n  { {0x7afd164d, 0x7bc50065, 0x7cf00510, 0x00000000}},  //   _ulst, _ishu, _färs,\n  { {0xe578008b, 0x65603f62, 0xf1c80082, 0x00000000}},  //   дзі_, _cumh, _nỡ_,\n  { {0xa3c300b9, 0x7d150e99, 0x7cf00dac, 0x00000000}},  //   _září_, nizs, _härr,\n  { {0xe3b1035b, 0x2911005d, 0x44250190, 0x00000000}},  //   ارت_, _imza_, _qxl_,\n  { {0xe0bb0044, 0x7bc500e7, 0x44253e70, 0x00000000}},  //   _অচেন, _mshu, _vxl_,\n  { {0x2b590857, 0x9f520224, 0xf1c80011, 0x00000000}},  //   _misc_, ází_, _cỡ_,\n  { {0xf48500a1, 0xf1c80082, 0x60090437, 0x00000000}},  //   _سائی, _dỡ_, зном_,\n  { {0x79960036, 0x64410089, 0x7bc50009, 0x00000000}},  //   zryw, _uzli, _nshu,\n  { {0x7b030004, 0x59df006e, 0x00000000, 0x00000000}},  //   _jõud, नमार,   ,\n  { {0xf1c80011, 0x7bc50020, 0x200500b4, 0x00000000}},  //   _gỡ_, _ashu, szli_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7cf00039, 0x1c390088, 0x00000000, 0x00000000}},  //   _särs, дять_,   ,\n  { {0x7b030004, 0x39580066, 0x2b590093, 0x00000000}},  //   _nõud, _sirs_, _cisc_,\n  { {0x2b591ce2, 0x39580059, 0x7bc5016c, 0x00000000}},  // [f5a0] _disc_, _pirs_, _eshu,\n  { {0x7cf0225c, 0x6b9c129a, 0xe4f4013d, 0x00000000}},  //   _värs, purg, _अवधि_,\n  { {0x2b590b50, 0x395808ad, 0x7cf003a2, 0x00000000}},  //   _fisc_, _virs_, _färr,\n  { {0xb5aa0054, 0x6d4b00f6, 0x6d4e01a2, 0x00000000}},  //   كاتك_, _ègar, lmba,\n  { {0x39580190, 0xfa3600a1, 0x6d4e3f63, 0x00000000}},  //   _tirs_, _سرحد, omba,\n  { {0x69c6057e, 0x6367047f, 0xf1c80011, 0x00000000}},  //   _iske, _sına, _rỡ_,\n  { {0x6d4e033b, 0xf1c80082, 0xccf300b3, 0x00000000}},  //   imba, _sỡ_, רכו_,\n  { {0xc7d700b6, 0x2611006e, 0x6d4e01a2, 0x00000000}},  //   _אולי_, _देवी_, hmba,\n  { {0xc1b70930, 0x00000000, 0x00000000, 0x00000000}},  //   елых_,   ,   ,\n  { {0xa2d5001c, 0xf1c80011, 0x68ee013e, 0x00000000}},  //   _मोठ्, _vỡ_, _jobd,\n  { {0x7d150010, 0x68ee0022, 0x00000000, 0x00000000}},  //   vizs, _mobd,   ,\n  { {0x6d4e00bb, 0x032602dc, 0x00000000, 0x00000000}},  //   emba, _яден,   ,\n  { {0x2b5905f7, 0x9df80401, 0x00000000, 0x00000000}},  //   _risc_, енят_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xdb1e00f7, 0x69c63334, 0x7d153f64, 0x00000000}},  //   _espí, _aske, rizs,\n  { {0x3f9e1bf5, 0x6d4e0eb0, 0x00000000, 0x00000000}},  //   mutu_, amba,   ,\n  { {0x0f58007b, 0x7b03006c, 0x2b5900d4, 0x00000000}},  // [f5b0] _איהם_, _nõue, _visc_,\n  { {0x613d01aa, 0x68ee00f6, 0x7bc501c3, 0x00000000}},  //   yèlm, _cobd, _tshu,\n  { {0x3f9e022b, 0x2d8b0046, 0x69c6022b, 0x00000000}},  //   nutu_, lsce_, _eske,\n  { {0x613d01aa, 0x00000000, 0x00000000, 0x00000000}},  //   vèlm,   ,   ,\n  { {0x64a50888, 0x3f9e3f65, 0x7cf005e0, 0x00000000}},  //   вала, hutu_, _kärp,\n  { {0x2d9915a1, 0x26c90091, 0x613d01aa, 0x00000000}},  //   irse_, žao_, tèlm,\n  { {0x6282017c, 0x7c29010f, 0xddcd016c, 0x00000000}},  //   _beoo, ßerh, _neaž,\n  { {0x0ed00061, 0x3f9e010e, 0x00000000, 0x00000000}},  //   _तोंड, dutu_,   ,\n  { {0x2d8b0046, 0xa2a2007d, 0x7aef004a, 0x00000000}},  //   jsce_, _गार्, _moct,\n  { {0xd12e006d, 0x98b4016c, 0x7e6d00f6, 0x00000000}},  //   يمي_, čeću_, _afap,\n  { {0x52b50025, 0x3f9e002d, 0x2d99037f, 0x00000000}},  //   _لماذ, gutu_, erse_,\n  { {0x7aef06c2, 0x62820116, 0x521500c0, 0x00000000}},  //   _noct, _geoo, _идет,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x3f9e218d, 0xed571a59, 0xdfa903ec, 0x00000000}},  //   butu_, коя_, _قطعه_,\n  { {0xed57012b, 0x6d4e0065, 0x2d99008e, 0x00000000}},  //   тор_, rmba, arse_,\n  { {0x38c8089d, 0x7aef008e, 0x00000000, 0x00000000}},  //   کاری_, _coct,   ,\n  { {0xfd120025, 0x00000000, 0x00000000, 0x00000000}},  // [f5c0] _نجد_,   ,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x24870263, 0xc8b5007e, 0x00000000, 0x00000000}},  //   danm_, ысты,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6f1d029d, 0x05b40025, 0x00000000, 0x00000000}},  //   érci, امتح,   ,\n  { {0x68460072, 0x3f9e014a, 0xa5330451, 0x00000000}},  //   _анга, yutu_, аніч,\n  { {0x17c703dc, 0x69c40036, 0x60ca000c, 0x00000000}},  //   _игри_, lwie, _rafm,\n  { {0x6aa400b5, 0x14d20061, 0x69c400b4, 0x00000000}},  //   ngif, _धोरण, owie,\n  { {0xcb1301f8, 0x44320046, 0x7c29014a, 0x00000000}},  //   ילה_, ły_, ğeri,\n  { {0xa3cf013d, 0x6722010a, 0x3f9e177c, 0x00000000}},  //   शिश_, lnoj, tutu_,\n  { {0x69c4010f, 0x6282006c, 0x389b00a0, 0x00000000}},  //   hwie, _teoo, ויינ,\n  { {0x3f9e002d, 0x69c40066, 0x753d0089, 0x00000000}},  //   rutu_, kwie, _īszi,\n  { {0xf1940e09, 0x4106025f, 0x6aa40030, 0x00000000}},  //   _силь, _издв, dgif,\n  { {0x3f9e0107, 0x2d800036, 0x2d8b016c, 0x00000000}},  //   putu_, _dwie_, rsce_,\n  { {0x7ceb010f, 0x8aa70088, 0x6aa40030, 0x00000000}},  //   _kürz, крад, fgif,\n  { {0x9057009b, 0x99800036, 0x2cad00b9, 0x00000000}},  //   _בסוף_, dził_, řed_,\n  { {0x690b00b4, 0x561d0044, 0x00000000, 0x00000000}},  // [f5d0] dżer, _তর্ক_,   ,\n  { {0xdb1e00d4, 0x3dc90058, 0x00000000, 0x00000000}},  //   _espà, _isaw_,   ,\n  { {0xccf200b6, 0xfd13026c, 0x248701aa, 0x00000000}},  //   _הכי_, _مجھ_, vanm_,\n  { {0x07a4103e, 0x69c401d6, 0x00000000, 0x00000000}},  //   раїн, bwie,   ,\n  { {0xf773026c, 0xa6340106, 0x5a9a009b, 0x00000000}},  //   _چار_, анці, _אשרא,\n  { {0xf77301b7, 0x6fd50061, 0x00000000, 0x00000000}},  //   _نار_, धिमं,   ,\n  { {0x22460010, 0x2b4b0022, 0x00000000, 0x00000000}},  //   _azok_, _khcc_,   ,\n  { {0x24870263, 0x72c519ea, 0xd1c905b5, 0x00000000}},  //   sanm_, убиз, елие_,\n  { {0x798d0016, 0x78880089, 0xdced01ee, 0x00000000}},  //   nsaw, būvē, _atač,\n  { {0x0cce0055, 0x2fc70085, 0x00000000, 0x00000000}},  //   _রক্ত, _psng_,   ,\n  { {0xb4cf001c, 0x26df012d, 0x69c400b4, 0x00000000}},  //   षयी_, _knuo_, zwie,\n  { {0x24850433, 0xddc40089, 0x213e0133, 0x00000000}},  //   _helm_, _afiš, alth_,\n  { {0xe0ce0265, 0x2903201a, 0x6aa400d8, 0x00000000}},  //   _лв_, _olja_, vgif,\n  { {0x333f002b, 0x67220ade, 0x00000000, 0x00000000}},  //   llux_, znoj,   ,\n  { {0x3ea901aa, 0x6aa400ea, 0x798d0016, 0x00000000}},  //   _fcat_, tgif, esaw,\n  { {0x69c40036, 0xdce40166, 0x2b4b0011, 0x00000000}},  //   twie, _otić, _chcc_,\n  { {0x09e30113, 0x6aa4018d, 0x6f043f66, 0x00000000}},  // [f5e0] ботн, rgif, _ilic,\n  { {0x69c41594, 0xa2d501f5, 0x60c10095, 0x00000000}},  //   rwie, _मोस्, nelm,\n  { {0x6f04051d, 0x6aa40073, 0xb0a60061, 0x00000000}},  //   _klic, pgif, _खासग,\n  { {0x2bd1001c, 0xbc1b007b, 0xdb9b0104, 0x00000000}},  //   हिरा, _טויש, _אסטר,\n  { {0x6d5e0020, 0x60c1010c, 0x6722007f, 0x00000000}},  //   _kipa, kelm, rnoj,\n  { {0x60c1021e, 0x6f040129, 0xa7860d3a, 0x00000000}},  //   jelm, _llic, _مشرو,\n  { {0x60c13f67, 0x6d5e0020, 0xd90d00a1, 0x00000000}},  //   delm, _mipa, _تیل_,\n  { {0x6d5e0209, 0x291a0020, 0xaa7b0027, 0x00000000}},  //   _lipa, lipa_, _inýc,\n  { {0x8af0005f, 0x171b007b, 0x7b03006c, 0x00000000}},  //   mməd, _נומע, _jõua,\n  { {0x60c10943, 0x3ea90061, 0x8af0006b, 0x00000000}},  //   gelm, _scat_, lməd,\n  { {0x6f043f68, 0x2b400059, 0xd36f0025, 0x00000000}},  //   _blic, klic_, _فهل_,\n  { {0x6d5e022b, 0x291a001a, 0xb8570049, 0x00000000}},  //   _aipa, hipa_, טשיג_,\n  { {0x6d5e027b, 0x7b03006c, 0x291a1b76, 0x00000000}},  //   _bipa, _nõua, kipa_,\n  { {0x6f040412, 0x6d5e0089, 0x656f00f4, 0x00000000}},  //   _elic, _cipa, _éche,\n  { {0x6d5e0149, 0x7c3e0142, 0x5eba0055, 0x00000000}},  //   _dipa, _cypr, ইয়ে,\n  { {0x6f040016, 0x7b64007c, 0x543b0049, 0x00000000}},  //   _glic, стре, געלא,\n  { {0xad270188, 0x443e068f, 0x6d5e0026, 0x00000000}},  // [f5f0] _مردو, _lyt_, _fipa,\n  { {0x4a54012b, 0x0edd001c, 0x6d5e011c, 0x00000000}},  //   скус, याकड, _gipa,\n  { {0x443e3f69, 0x2b400038, 0xf7700025, 0x00000000}},  //   _nyt_, blic_, كان_,\n  { {0x1b7a0049, 0x60c10148, 0x0c740014, 0x00000000}},  //   _שטרע, zelm, _پدید,\n  { {0xa68401fb, 0xb8db0044, 0x60c13f6a, 0x00000000}},  //   слід, _অফ_, yelm,\n  { {0x443e3f6b, 0x29033f6c, 0x60c100eb, 0x00000000}},  //   _byt_, _ulja_, xelm,\n  { {0x60c10181, 0x2bd8007d, 0xfbd801f5, 0x00000000}},  //   velm, डिया, डियम,\n  { {0x41b50242, 0x443e1beb, 0xe61000a2, 0x00000000}},  //   асот, _dyt_, _کشف_,\n  { {0x60c13ac6, 0x6289018e, 0x54a70d3a, 0x00000000}},  //   telm, raeo, _محاف,\n  { {0x6f0418a7, 0x6f160804, 0xa2d5007d, 0x00000000}},  //   _slic, _smyc, _मोर्,\n  { {0x6d5e0207, 0x60c11bd5, 0x6f04001a, 0x00000000}},  //   _ripa, relm, _plic,\n  { {0x6d5e0a0d, 0x7f4d3f6d, 0x7aed0066, 0x00000000}},  //   _sipa, _chaq, jjat,\n  { {0x7aed002b, 0x7f5f005f, 0x60c100d4, 0x00000000}},  //   djat, _diqq, pelm,\n  { {0xdca6098c, 0x4e960014, 0xa0660256, 0x00000000}},  //   јави, دشگر, _каша_,\n  { {0x6d5e3f6e, 0x673b0009, 0x2b40016c, 0x00000000}},  //   _vipa, _okuj, tlic_,\n  { {0x67290065, 0x7c3e0161, 0x7aed0065, 0x00000000}},  //   _njej, _vypr, gjat,\n  { {0x6d5e05ea, 0x7c3e0036, 0x61fb3f6f, 0x00000000}},  // [f600] _tipa, _wypr, nyul,\n  { {0xe9d70175, 0x63a337a9, 0x5dfb00a0, 0x00000000}},  //   шку_, kunn, _ספינ,\n  { {0x7d1c12db, 0xcd290464, 0x63a3328a, 0x00000000}},  //   mirs, _حسين_, junn,\n  { {0xe9a6008b, 0x7d1c0676, 0x291a0166, 0x00000000}},  //   _камп, lirs, sipa_,\n  { {0xfb370049, 0x6286000c, 0x8af0006b, 0x00000000}},  //   _כאטש_, ðkom, rməd,\n  { {0x63a33cb0, 0x7d1c014a, 0x186a00ed, 0x00000000}},  //   funn, nirs, _јави_,\n  { {0x63a3000c, 0x291800f6, 0xe3b8013f, 0x00000000}},  //   gunn, _imra_, _axır_,\n  { {0xb6a331c9, 0x67290065, 0x7b03006c, 0x00000000}},  //   _мисл, _gjej, _lõun,\n  { {0xdb070010, 0x443e0016, 0x7d1c1109, 0x00000000}},  //   ntjá, _wyt_, kirs,\n  { {0x63a304d4, 0x7aed002b, 0x7f4d0023, 0x00000000}},  //   bunn, zjat, _shaq,\n  { {0x7d1c1d8a, 0xd8d70049, 0x64483288, 0x00000000}},  //   dirs, בויט_, _uzdi,\n  { {0xd041006b, 0x7760002b, 0xdb230276, 0x00000000}},  //   ndlə, _jimx, ürüc,\n  { {0x7d1c000c, 0x7e7d384f, 0x7e470b91, 0x00000000}},  //   firs, rbsp, рхне,\n  { {0x7d1c3f70, 0xd041006b, 0x00000000, 0x00000000}},  //   girs, hdlə,   ,\n  { {0x9b68025f, 0x7aed3f71, 0x7f4d0023, 0x00000000}},  //   ишта_, tjat, _thaq,\n  { {0x5f730070, 0x6e2d0032, 0x2cba000a, 0x00000000}},  //   _باور, _txab, _ebpd_,\n  { {0x7aed1978, 0x6f1d3f72, 0x7d1c0211, 0x00000000}},  // [f610] rjat, misc, birs,\n  { {0x6f1d010f, 0x7d1c008e, 0x7aed2a12, 0x00000000}},  //   lisc, cirs, sjat,\n  { {0x9675007e, 0x8e380014, 0x7aed2b0c, 0x00000000}},  //   былі, _مسیر_, pjat,\n  { {0xb8fe03d7, 0x6f1d3f73, 0xec3600b6, 0x00000000}},  //   _दो_, nisc, _לאתר_,\n  { {0x5887008b, 0x76400016, 0x2611006e, 0x00000000}},  //   _выба, _cymy, _देखी_,\n  { {0x63a3021e, 0x6f1d3f74, 0xd006039d, 0x00000000}},  //   tunn, hisc, _فل_,\n  { {0x67290039, 0xc952009b, 0x6f1d01a2, 0x00000000}},  //   _tjej, _ממך_, kisc,\n  { {0x63a33f75, 0x61e923ca, 0x668200a1, 0x00000000}},  //   runn, txel, _فیمل,\n  { {0x6f1d0270, 0x7d1c006b, 0x63a31f47, 0x00000000}},  //   disc, yirs, sunn,\n  { {0x25bf0093, 0x7e640016, 0x60e90bff, 0x00000000}},  //   _ipul_, _sgip, умом_,\n  { {0x68f530a2, 0x6f1d05c6, 0x7d1c3f76, 0x00000000}},  //   _mozd, fisc, virs,\n  { {0x81c60055, 0x6f1d05c6, 0x7c38068f, 0x00000000}},  //   _উপর_, gisc, _øvri,\n  { {0x2d84028c, 0xa3cf0201, 0x2f5501fb, 0x00000000}},  //   ème_, शिक_, ютьс,\n  { {0x64411919, 0xd37e0107, 0x68f5041a, 0x00000000}},  //   _kyli, šćen_, _nozd,\n  { {0x7d1c000c, 0x656102d5, 0xd041013f, 0x00000000}},  //   rirs, _milh, ydlə,\n  { {0x64410006, 0x8bc5007e, 0x6f1d016c, 0x00000000}},  //   _myli, ўсёд, cisc,\n  { {0xe9da045a, 0x7d1c2a8f, 0x68f50095, 0x00000000}},  // [f620] ыка_, pirs, _bozd,\n  { {0xdb070010, 0x65610066, 0x088a0025, 0x00000000}},  //   rtjá, _nilh, اناً_,\n  { {0x64411ab8, 0xdb07000c, 0x00000000, 0x00000000}},  //   _nyli, stjá,   ,\n  { {0x7b03006c, 0xdd8f007a, 0x76a90088, 0x00000000}},  //   _jõul, _توی_, итів_,\n  { {0x65610181, 0xd041006b, 0x6441026d, 0x00000000}},  //   _bilh, rdlə, _ayli,\n  { {0x273c027b, 0x68f50059, 0x64410387, 0x00000000}},  //   tíns_, _gozd, _byli,\n  { {0x76400036, 0x7760002b, 0x00000000, 0x00000000}},  //   _wymy, _timx,   ,\n  { {0x6441024d, 0xf1a60088, 0x1b7b0049, 0x00000000}},  //   _dyli, брон, נטפע,\n  { {0x656102d5, 0xe29f000c, 0x9aeb0049, 0x00000000}},  //   _filh, óða_, אַיִ,\n  { {0x656f00f4, 0x61e401d5, 0x6f1d1594, 0x00000000}},  //   _écha, _ġild, wisc,\n  { {0x6f1d04e5, 0x61e40006, 0x32020161, 0x00000000}},  //   tisc, _šild, šky_,\n  { {0x71a6008b, 0xb7db0097, 0x00000000, 0x00000000}},  //   _гадз, אקטי,   ,\n  { {0x6f1d0707, 0x644101a2, 0x78bc1adc, 0x00000000}},  //   risc, _zyli, _obrv,\n  { {0x6f1d3f74, 0xd1300025, 0x00000000, 0x00000000}},  //   sisc, _تمت_,   ,\n  { {0x6f1d08ed, 0x68f508e2, 0x64410052, 0x00000000}},  //   pisc, _rozd, _xyli,\n  { {0xae9b0025, 0x00000000, 0x00000000, 0x00000000}},  //   _إضغط_,   ,   ,\n  { {0x248e0022, 0x98e50025, 0x00000000, 0x00000000}},  // [f630] kafm_, يكرو,   ,\n  { {0x29070b22, 0x25a62bdd, 0xc86701ab, 0x00000000}},  //   óna_, duol_, стаи,\n  { {0xf84b01e0, 0x68f501ee, 0x25bf0112, 0x00000000}},  //   учай_, _vozd, _spul_,\n  { {0x17f80025, 0x6561009d, 0x64413f77, 0x00000000}},  //   حركة_, _silh, _ryli,\n  { {0xa3ab01f5, 0x656100c4, 0x6569008e, 0x00000000}},  //   कून_, _pilh, _queh,\n  { {0x69cf0107, 0x73990072, 0xdb1e01d6, 0x00000000}},  //   _isce, атис_, _appè,\n  { {0x05160025, 0x6561000c, 0x00000000, 0x00000000}},  //   تيوب_, _vilh,   ,\n  { {0x8c1c01ce, 0x6561010f, 0x69dd016c, 0x00000000}},  //   טווי, _wilh, _krse,\n  { {0x6441010b, 0x2d9e0036, 0x65611ab4, 0x00000000}},  //   _wyli, ątek_, _tilh,\n  { {0xc1050025, 0xdb070039, 0x6441007f, 0x00000000}},  //   زوجي, ltjä, _tyli,\n  { {0xceea0849, 0xd8d80049, 0x78ba0010, 0x00000000}},  //   адне_, מוזט_, _ötve,\n  { {0x69cf0197, 0x69dd0016, 0xc7d6009b, 0x00000000}},  //   _osce, _orse, קורי_,\n  { {0xee3700c2, 0x200308fb, 0x629901aa, 0x00000000}},  //   жня_, šji_, _idwo,\n  { {0x628b002d, 0x00000000, 0x00000000, 0x00000000}},  //   _hego,   ,   ,\n  { {0x628b0022, 0x2fdc0087, 0x00000000, 0x00000000}},  //   _kego, _grvg_,   ,\n  { {0x28ac03d7, 0x3eab001c, 0x1a2a05f6, 0x00000000}},  //   _चाहि, cgct_, ажби_,\n  { {0x628b0047, 0x3b0700e3, 0x8d760070, 0x00000000}},  // [f640] _mego, цето_, _بابا,\n  { {0x628b0e49, 0xbebb00bb, 0x69dd00ca, 0x00000000}},  //   _lego, riëe, _drse,\n  { {0x69cf0779, 0x69dd010f, 0x62990036, 0x00000000}},  //   _esce, _erse, _odwo,\n  { {0xe73a007c, 0x69dd0009, 0x25a6005b, 0x00000000}},  //   шее_, _frse, tuol_,\n  { {0x6445006c, 0x7ae600bb, 0x00000000, 0x00000000}},  //   ühin, _inkt,   ,\n  { {0x62990292, 0x33980025, 0x628b3f78, 0x00000000}},  //   _adwo, منتج_, _aego,\n  { {0x261a03d7, 0x628b00b5, 0x689100a1, 0x00000000}},  //   _मेरी_, _bego, _سینئ,\n  { {0x628b00c4, 0xc3d5007e, 0xcfcf0044, 0x00000000}},  //   _cego, яўчы, িমান,\n  { {0x628b01aa, 0x80d30044, 0xe81e0061, 0x00000000}},  //   _dego, তান্, _येता_,\n  { {0x628b0087, 0x62990085, 0xe4520bb6, 0x00000000}},  //   _eego, _edwo, _قضا_,\n  { {0x436a0478, 0x00000000, 0x00000000, 0x00000000}},  //   _таен_,   ,   ,\n  { {0x628b0546, 0x543b0049, 0x00000000, 0x00000000}},  //   _gego, _דעבא,   ,\n  { {0xc69301f8, 0xe0cf0014, 0x3eb9059b, 0x00000000}},  //   ואר_, رزی_, rfst_,\n  { {0x628b022b, 0x224b010f, 0x7ae60023, 0x00000000}},  //   _zego, ücke_, _ankt,\n  { {0xcb1b00ed, 0x7b2c006b, 0x60c80146, 0x00000000}},  //   аќа_, rğun, medm,\n  { {0x290a001a, 0x539b0097, 0xdd910025, 0x00000000}},  //   _alba_, יילו, _كوب_,\n  { {0x5d840025, 0x00000000, 0x00000000, 0x00000000}},  // [f650] _قليل,   ,   ,\n  { {0x2bcb0061, 0x69dd016c, 0x60c800e0, 0x00000000}},  //   ाबदा, _vrse, nedm,\n  { {0x6d47092f, 0xb8d30204, 0xd7fb00ed, 0x00000000}},  //   mlja, _टा_, јуз_,\n  { {0x6d47000c, 0x290a02c9, 0x00000000, 0x00000000}},  //   llja, _elba_,   ,\n  { {0x628b1a64, 0x69dd00bb, 0x69cf0197, 0x00000000}},  //   _rego, _urse, _usce,\n  { {0x628b04bd, 0xdb070039, 0xd7fb030d, 0x00000000}},  //   _sego, stjä, _куб_,\n  { {0x7b03006c, 0x49000061, 0x628b00c4, 0x00000000}},  //   _nõuk, _शकतो_, _pego,\n  { {0x6aad000c, 0x1616013d, 0x656f009d, 0x00000000}},  //   ngaf, _देकर_, _écho,\n  { {0x628b0087, 0x91b00082, 0x257000f6, 0x00000000}},  //   _vego, _đại_, _gàl_,\n  { {0xa3bb1095, 0x628b00d9, 0x3f870022, 0x00000000}},  //   _ناصر_, _wego, _pwnu_,\n  { {0x628b0770, 0x6d4700d0, 0x75370089, 0x00000000}},  //   _tego, dlja, ļazī,\n  { {0x672b0d3e, 0x91f70025, 0x00000000, 0x00000000}},  //   nngj, _وأشا,   ,\n  { {0x91e502dc, 0x00000000, 0x00000000, 0x00000000}},  //   _холе,   ,   ,\n  { {0x657b000b, 0x91f6009b, 0x2d9e0161, 0x00000000}},  //   _mtuh, _ממנו_, čte_,\n  { {0xe8df0011, 0x00000000, 0x00000000, 0x00000000}},  //   _ngực_,   ,   ,\n  { {0x63ae0030, 0xe9df1573, 0x999f016c, 0x00000000}},  //   _åbne, _brú_, _šuš_,\n  { {0x6d470746, 0xc33200a0, 0x80ce0044, 0x00000000}},  // [f660] blja, גון_, ়ার্,\n  { {0x29cd012d, 0x6eff0023, 0xcdb7009b, 0x00000000}},  //   _dža_, _dëbu, _צפיה_,\n  { {0x78a3000c, 0x7d1e00f6, 0x929d0036, 0x00000000}},  //   ónva, _imps, zkła,\n  { {0x60c80046, 0x248c00b9, 0x257000f6, 0x00000000}},  //   zedm, _sedm_, _pàl_,\n  { {0xa4d40088, 0x00000000, 0x00000000, 0x00000000}},  //   долі,   ,   ,\n  { {0xb4d6006e, 0x00000000, 0x00000000, 0x00000000}},  //   िये_,   ,   ,\n  { {0xdc9b00a0, 0x60c801e3, 0x2795003b, 0x00000000}},  //   ציקל, vedm, _оштр,\n  { {0x6d470bf8, 0x00000000, 0x00000000, 0x00000000}},  //   zlja,   ,   ,\n  { {0x79960036, 0xd5c00061, 0xd5280082, 0x00000000}},  //   nsyw, _एहिज, _cộn,\n  { {0x67223227, 0xdce40fcd, 0x00000000, 0x00000000}},  //   lioj, _otiđ,   ,\n  { {0x6d470295, 0xc4d30104, 0xe1ef0167, 0x00000000}},  //   vlja, _רגע_, نسی_,\n  { {0x7d1e0abf, 0x67220006, 0x00000000, 0x00000000}},  //   _amps, nioj,   ,\n  { {0x6d47092f, 0x7b2c006b, 0x66022434, 0x00000000}},  //   tlja, rğul, nyok,\n  { {0xeb05007d, 0x7b03010e, 0xed590006, 0x00000000}},  //   रस्त_, _tõuk, įžo_,\n  { {0x00bb009b, 0xcc54005e, 0x8af0006b, 0x00000000}},  //   _המומ, евръ, rmən,\n  { {0x6d471279, 0x5bb8007c, 0x213e1238, 0x00000000}},  //   slja, ялся_, loth_,\n  { {0x6d4710f7, 0x67220023, 0x2ee90026, 0x00000000}},  // [f670] plja, dioj, _inaf_,\n  { {0x8af0005f, 0xb4d6006e, 0x98b30035, 0x00000000}},  //   lməl, ियो_, doxă_,\n  { {0x6f0d00b5, 0x657b0b77, 0xf6d50088, 0x00000000}},  //   _klac, _stuh, діля,\n  { {0xe9df193c, 0xd4910082, 0x8af0013f, 0x00000000}},  //   _trú_, _còn_, nməl,\n  { {0xd5bb1280, 0x672b0023, 0x6f0d168d, 0x00000000}},  //   ссе_, rngj, _mlac,\n  { {0x6f0d0221, 0x2b4906fa, 0x044500e2, 0x00000000}},  //   _llac, llac_, мелн,\n  { {0x6f0d01f6, 0xb0a60061, 0xcc7800b3, 0x00000000}},  //   _olac, _खाजग, הגות_,\n  { {0x25a0016e, 0x07090025, 0x61e40006, 0x00000000}},  //   šila_, _بيري_, _šila,\n  { {0x59e0013d, 0x00000000, 0x00000000, 0x00000000}},  //   नियर,   ,   ,\n  { {0x6f0d014a, 0xa2bd0164, 0x224600e0, 0x00000000}},  //   _alac, _वॉर्, _dyok_,\n  { {0x6f0d0498, 0x7523012d, 0x1eca0aa2, 0x00000000}},  //   _blac, minz, олни_,\n  { {0x75230937, 0xe1f10025, 0x00000000, 0x00000000}},  //   linz, _لست_,   ,\n  { {0x6f0d0036, 0x213e01d6, 0xee3a01e1, 0x00000000}},  //   _dlac, both_, інг_,\n  { {0xcb6a0c27, 0x60250ab7, 0x333f3f79, 0x00000000}},  //   жаве_, _одла, loux_,\n  { {0x6f0d010f, 0xdc6702ea, 0x7fd50088, 0x00000000}},  //   _flac, дард_, _цілі,\n  { {0x6f0d3b3d, 0x25ee001c, 0x75230061, 0x00000000}},  //   _glac, _आपली_, hinz,\n  { {0x31673f7a, 0x14ae0061, 0x2d95007e, 0x00000000}},  // [f680] _kinz_, _घालण, _прэс,\n  { {0x66020020, 0x00000000, 0x00000000, 0x00000000}},  //   vyok,   ,   ,\n  { {0x8af0006b, 0x75230026, 0xd2590089, 0x00000000}},  //   lməm, dinz, meņu_,\n  { {0xe5c60175, 0x333f00f4, 0x464a00e3, 0x00000000}},  //   дско, joux_, озен_,\n  { {0x67220006, 0x333f009d, 0x38710048, 0x00000000}},  //   rioj, doux_, íorú_,\n  { {0x672207d3, 0xd37a017a, 0x66020022, 0x00000000}},  //   sioj, очи_, ryok,\n  { {0xbebb00bb, 0x68fc3f7b, 0xe3af03ec, 0x00000000}},  //   diën, _iord, لري_,\n  { {0x68fc1484, 0xc298003b, 0x00000000, 0x00000000}},  //   _hord, чких_,   ,\n  { {0x68fc0004, 0x75230142, 0x00000000, 0x00000000}},  //   _kord, binz,   ,\n  { {0x6f0d00b5, 0x75230ec0, 0xbebb0328, 0x00000000}},  //   _slac, cinz, giën,\n  { {0x6f0d028a, 0x68fc0059, 0x213e00f8, 0x00000000}},  //   _plac, _mord, roth_,\n  { {0x65680065, 0x522602dc, 0x69c600d9, 0x00000000}},  //   _hidh, _офла, _opke,\n  { {0x68fc01bb, 0x8af0006b, 0x2f02000c, 0x00000000}},  //   _oord, rməl, _nógu_,\n  { {0x68fc02cc, 0x656801d5, 0xbebb00b5, 0x00000000}},  //   _nord, _jidh, ciën,\n  { {0xb06501c2, 0x6f0d0142, 0x5ec40044, 0x00000000}},  //   rjää, _tlac, ষয়ে,\n  { {0x6568008d, 0x64480145, 0x752300d2, 0x00000000}},  //   _lidh, _mydi, zinz,\n  { {0x68fc0472, 0x7e6d3f7c, 0x64480007, 0x00000000}},  // [f690] _bord, _igap, _lydi,\n  { {0x656838d6, 0x25a6005b, 0xba54003b, 0x00000000}},  //   _nidh, drol_, твуј,\n  { {0xf77005d4, 0x68fc1de2, 0x644822d8, 0x00000000}},  //   لان_, _dord, _nydi,\n  { {0x65681dec, 0x61e20a83, 0x25a62108, 0x00000000}},  //   _aidh, _orol, frol_,\n  { {0x68fc004e, 0x6568000b, 0x6448014a, 0x00000000}},  //   _ford, _bidh, _aydi,\n  { {0x19b601f8, 0x7afd07fc, 0xaabb00a1, 0x00000000}},  //   _אפשר_, _host, _ادھر_,\n  { {0x61e2018e, 0x64480b9b, 0x75230142, 0x00000000}},  //   _arol, _cydi, rinz,\n  { {0x61e20006, 0x7afd021e, 0x75233f7d, 0x00000000}},  //   _brol, _jost, sinz,\n  { {0x75230020, 0xbebb00b5, 0x61e20197, 0x00000000}},  //   pinz, tiën, _crol,\n  { {0x7f560023, 0x61e23f7e, 0x65680048, 0x00000000}},  //   _shyq, _drol, _gidh,\n  { {0x7afd01b5, 0xff260594, 0xbebb0112, 0x00000000}},  //   _oost, емно, riën,\n  { {0x7afd108c, 0x6da60057, 0x6d4500ea, 0x00000000}},  //   _nost, нима, _akha,\n  { {0x61e20270, 0xa3ab0061, 0xbd36005e, 0x00000000}},  //   _grol, कूर_, ехвъ,\n  { {0x7afd0207, 0x8af0006b, 0xd196009b, 0x00000000}},  //   _aost, rməm, _טכני_,\n  { {0x7afd3f7f, 0x2d99010e, 0x9f520010, 0x00000000}},  //   _bost, asse_, ázó_,\n  { {0x7afd051b, 0x68fc014a, 0x6d450843, 0x00000000}},  //   _cost, _sord, _ekha,\n  { {0x68fc0197, 0x31b901aa, 0x8af0006b, 0x00000000}},  // [f6a0] _pord, nèz_, lmək,\n  { {0x38c80167, 0x290e3f80, 0x7afd00ea, 0x00000000}},  //   باری_, ófa_, _eost,\n  { {0x7afd048c, 0xcd020036, 0x68fc010f, 0x00000000}},  //   _fost, ęść_, _vord,\n  { {0x7afd38c8, 0x68fc0f12, 0x65680020, 0x00000000}},  //   _gost, _word, _sidh,\n  { {0x45d434a9, 0x6f1d0129, 0xd6d900b4, 0x00000000}},  //   толс, èrci, _dał_,\n  { {0x7afd0620, 0x25a6049a, 0x9f59002a, 0x00000000}},  //   _zost, rrol_, árú_,\n  { {0xa3ab03d7, 0x65680f86, 0x3ea0000a, 0x00000000}},  //   कूल_, _vidh, _odit_,\n  { {0x61e218a7, 0x2d9902b6, 0x25a60022, 0x00000000}},  //   _prol, ysse_, prol_,\n  { {0xe737005e, 0x6568002b, 0x644801c3, 0x00000000}},  //   _чет_, _tidh, _wydi,\n  { {0x61e201b5, 0x3ea00022, 0x64483f81, 0x00000000}},  //   _vrol, _adit_, _tydi,\n  { {0x4034004c, 0xb3e90025, 0xd1b700a1, 0x00000000}},  //   тенс, _يعمل_, وایا_,\n  { {0x61e202e1, 0xbebb00bb, 0x7b03010e, 0x00000000}},  //   _trol, ciël, _jõut,\n  { {0x7afd00b9, 0xc3330104, 0x2d99009d, 0x00000000}},  //   _rost, _גוף_, usse_,\n  { {0x7afd0198, 0xd24f0054, 0x3ea00038, 0x00000000}},  //   _sost, _انه_, _edit_,\n  { {0xf0930104, 0x2bc83f82, 0x6456006b, 0x00000000}},  //   _ענק_, нуто_, əyic,\n  { {0xa3e1006e, 0x7b03006c, 0x00000000, 0x00000000}},  //   दित_, _nõut,   ,\n  { {0x7afd059a, 0xe29f000c, 0x9f5f0010, 0x00000000}},  // [f6b0] _vost, óði_, sztó_,\n  { {0x6d4500e7, 0x7c3800fa, 0x656f0068, 0x00000000}},  //   _ukha, çarã, _échi,\n  { {0x281506c6, 0x7afd11e8, 0x56950057, 0x00000000}},  //   خواس, _tost, вает,\n  { {0x7afd3f83, 0x31b90173, 0x00000000, 0x00000000}},  //   _uost, yèz_,   ,\n  { {0xdb1e00fa, 0xdb07013e, 0x2d8001c3, 0x00000000}},  //   _espó, nují, _xtie_,\n  { {0xf99201f8, 0x387a0061, 0xfaff0007, 0x00000000}},  //   _דרך_, ccpr_, _hoë_,\n  { {0xdce50059, 0xdb0700b9, 0x291101d6, 0x00000000}},  //   _nihč, hují, _ilza_,\n  { {0xdb07013e, 0x00000000, 0x00000000, 0x00000000}},  //   kují,   ,   ,\n  { {0x26cf0036, 0x61e40051, 0xbebb0112, 0x00000000}},  //   mego_, _áill, riël,\n  { {0x26cf081d, 0x600926f5, 0xdb0700b9, 0x00000000}},  //   lego_, дном_, dují,\n  { {0x2d803f84, 0x7b03006c, 0x61ed0006, 0x00000000}},  //   _stie_, _jõus, _šald,\n  { {0xe2900054, 0x26cf0046, 0x8af0006b, 0x00000000}},  //   _هذه_, nego_, rmək,\n  { {0xe0ce0265, 0xc332009b, 0xeab200a1, 0x00000000}},  //   _кв_, _דוא_, یٹس_,\n  { {0xa3b5007d, 0x628900b5, 0x26cf00fa, 0x00000000}},  //   _जमा_, lbeo, hego_,\n  { {0x7b03006c, 0xad9b0010, 0xfaff01c3, 0x00000000}},  //   _nõus, nyúj, _boë_,\n  { {0x26cf0046, 0x3f853f85, 0x628900d9, 0x00000000}},  //   jego_, mplu_, nbeo,\n  { {0x26cf1cc7, 0xdb07013e, 0x00000000, 0x00000000}},  // [f6c0] dego_, cují,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xd9450025, 0x3f850032, 0x00000000, 0x00000000}},  //   ائقي, nplu_,   ,\n  { {0x6d4e02e1, 0xd7ef0025, 0xc6a3004c, 0x00000000}},  //   llba, تكم_, арши,\n  { {0xdb1e0046, 0xe7690644, 0x6d4e130a, 0x00000000}},  //   _wspó, رحمن_, olba,\n  { {0xfaff0116, 0x00000000, 0x00000000, 0x00000000}},  //   _zoë_,   ,   ,\n  { {0x25ee03d7, 0xdb0700b9, 0x9423003b, 0x00000000}},  //   _आपकी_, zují, имље,\n  { {0x26cf0046, 0x61d801e0, 0x6d4e01a2, 0x00000000}},  //   cego_, емия_, hlba,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xdb0700b9, 0x70ac0061, 0x00000000, 0x00000000}},  //   vují, चलेल,   ,\n  { {0xd00701b3, 0xf651026c, 0xb4ae0309, 0x00000000}},  //   веќе_, _نئے_, कली_,\n  { {0xb226007c, 0x61ed0c8a, 0x6d4e0c4c, 0x00000000}},  //   _имел, _šale, elba,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xed58008b, 0x26cf23dd, 0x25f50061, 0x00000000}},  //   коў_, zego_, ्हती_,\n  { {0x212b1e83, 0x26cf0058, 0xac19003b, 0x00000000}},  //   èche_, yego_, хову_,\n  { {0xdb1c1259, 0xdb0700b9, 0x6d4e0168, 0x00000000}},  //   ntrè, pují, alba,\n  { {0xaa5500ed, 0xba5500ed, 0x61e404eb, 0x00000000}},  // [f6d0] уваш, увај, _šilj,\n  { {0x26cf0046, 0x2bab013d, 0x00000000, 0x00000000}},  //   wego_, _छिपा,   ,\n  { {0x3d0803d7, 0x26cf0046, 0x00000000, 0x00000000}},  //   _सकते_, tego_,   ,\n  { {0x59f9005e, 0x98ba0089, 0x00000000, 0x00000000}},  //   _земя_, ropā_,   ,\n  { {0x26cf3f86, 0xdb1e000c, 0xe610023c, 0x00000000}},  //   rego_, _uppá, يشه_,\n  { {0xe795089d, 0x7b030004, 0x26cf3f87, 0x00000000}},  //   _مارک, _tõus, sego_,\n  { {0xe787025f, 0xf8b200b3, 0x27f700a1, 0x00000000}},  //   _југо, _לשם_, _جہاد_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xc692009b, 0x60c104a5, 0xb1450534, 0x00000000}},  //   _לאן_, tflm, лнил,\n  { {0x28c6006e, 0x00000000, 0x00000000, 0x00000000}},  //   र्पि,   ,   ,\n  { {0xb447007e, 0x7aef0068, 0x00000000, 0x00000000}},  //   _рэак, _onct,   ,\n  { {0x7b0a0802, 0xe37a0049, 0x25790173, 0x00000000}},  //   _výuk, _טרער, _kèl_,\n  { {0xdb1c0023, 0xe29f000c, 0xa0c50014, 0x00000000}},  //   strë, óðu_, _ميشو,\n  { {0x9d560070, 0x25790173, 0x00000000, 0x00000000}},  //   انست, _mèl_,   ,\n  { {0xf99f0263, 0xfaa6007e, 0xc0c8003b, 0x00000000}},  //   _avè_, лаво, _јуче_,\n  { {0x28c6007d, 0x00000000, 0x00000000, 0x00000000}},  //   र्नि,   ,   ,\n  { {0xdb1c00f4, 0x7f3b0049, 0x387f0477, 0x00000000}},  // [f6e0] ntré, _רעפו, _şura_,\n  { {0x7aef0009, 0xe9d700a5, 0x61e603b1, 0x00000000}},  //   _enct, ыку_, åkli,\n  { {0xa686012b, 0x66e6003b, 0x80b80044, 0x00000000}},  //   глед, ложа, _অসম্,\n  { {0x25790263, 0x5ea60044, 0xb4dc013d, 0x00000000}},  //   _bèl_, গ্রে, _तोड़_,\n  { {0x6a9b00a0, 0x257900d4, 0x00000000, 0x00000000}},  //   _אשכנ, _cèl_,   ,\n  { {0xb4ae0164, 0xbf100061, 0x6ab632a5, 0x00000000}},  //   कले_, ासुन_, lgyf,\n  { {0xa3f20044, 0x00000000, 0x00000000, 0x00000000}},  //   জন্য_,   ,   ,\n  { {0x6ab60016, 0xdced006b, 0x25790173, 0x00000000}},  //   ngyf, _otağ, _fèl_,\n  { {0xc4ca005e, 0x2579000a, 0x80cd0044, 0x00000000}},  //   _плаж_, _gèl_, ়যন্,\n  { {0x6456006b, 0x7ddb00f8, 0x00000000, 0x00000000}},  //   əyin, _läså,   ,\n  { {0xbf10001c, 0x5ede0044, 0x58f70049, 0x00000000}},  //   ासून_, যানে, אמיע_,\n  { {0xa3e1007d, 0x41e60688, 0xe29a00e2, 0x00000000}},  //   दिर_, _مستف, _чад_,\n  { {0x3fc80123, 0xe29b0049, 0x00000000, 0x00000000}},  //   ردگی_, _טשאר,   ,\n  { {0x61db019b, 0x28c60309, 0x307601fc, 0x00000000}},  //   _נקוד, र्मि, _судс,\n  { {0x9405005f, 0xc5e4009e, 0x00000000, 0x00000000}},  //   _belə_, _کۓ_,   ,\n  { {0xd5d401f5, 0x00000000, 0x00000000, 0x00000000}},  //   _धनंज,   ,   ,\n  { {0x3f9e3f88, 0xaa7b000c, 0x00000000, 0x00000000}},  // [f6f0] lstu_, _snýs,   ,\n  { {0xd257009b, 0x257901aa, 0x0a681662, 0x00000000}},  //   רשמה_, _rèl_, урси_,\n  { {0x25790263, 0x6d470006, 0xccf2009b, 0x00000000}},  //   _sèl_, moja, _וכי_,\n  { {0x6d4701c5, 0x3f9e00b0, 0xbd8802fd, 0x00000000}},  //   loja, istu_, _جنین_,\n  { {0xdb07009f, 0x4a9a0049, 0xaa9a009b, 0x00000000}},  //   stjó, _בירג, _בברכ,\n  { {0x3f9e001e, 0x6d470dec, 0x290f0089, 0x00000000}},  //   kstu_, noja, īgas_,\n  { {0x99920046, 0xd7e40451, 0x36d53f89, 0x00000000}},  //   czył_, _літо, _ковр,\n  { {0x2903000b, 0x25793f8a, 0xdc0f013e, 0x00000000}},  //   _hoja_, _tèl_, _něče,\n  { {0x29030119, 0x6d470550, 0xf4d900e3, 0x00000000}},  //   _koja_, koja, _имаш_,\n  { {0x672b0a61, 0xbfc500ed, 0x6445006c, 0x00000000}},  //   ligj, абок, ühis,\n  { {0x2903000b, 0x6d4717dc, 0xdb1c00f4, 0x00000000}},  //   _moja_, doja, stré,\n  { {0x290302d5, 0xf3b60049, 0x00000000, 0x00000000}},  //   _loja_, _כּדי_,   ,\n  { {0x4cdf0044, 0x6d47008e, 0x6b850048, 0x00000000}},  //   মানু, foja, _athg,\n  { {0x6d470550, 0xed5a003b, 0x8af0006b, 0x00000000}},  //   goja, тог_, hmət,\n  { {0xfc030264, 0xab2a0088, 0x5ecb0044, 0x00000000}},  //   опро, вова_, িয়ে,\n  { {0x672b008d, 0x25a00209, 0x2d9601e0, 0x00000000}},  //   jigj, šili_, _крос,\n  { {0x8af0005f, 0xcb6700aa, 0x6d471288, 0x00000000}},  // [f700] dmət, рате_, boja,\n  { {0x236f0065, 0x2903004a, 0x98a60081, 0x00000000}},  //   _ligj_, _coja_, риже,\n  { {0x29030065, 0x00000000, 0x00000000, 0x00000000}},  //   _doja_,   ,   ,\n  { {0xeab205d4, 0x6f0412aa, 0x99920036, 0x00000000}},  //   _بعد_, _joic, rzył_,\n  { {0x25a00051, 0x45d6005e, 0x6f040036, 0x00000000}},  //   éil_, рцет, _moic,\n  { {0xdc190036, 0x29030023, 0xa4d405b8, 0x00000000}},  //   _włąc, _goja_, сокі,\n  { {0x6f160039, 0xf8c601f5, 0xa50700ec, 0x00000000}},  //   _olyc, र्णय, реја_,\n  { {0x25a9073a, 0x6d473f8b, 0x6f040035, 0x00000000}},  //   šala_, zoja, _noic,\n  { {0x8af03f8c, 0x7d01009f, 0x6d470020, 0x00000000}},  //   lməs, ölsk, yoja,\n  { {0x30a30088, 0x506618ea, 0xdce50035, 0x00000000}},  //   орюв, итна, _mihă,\n  { {0x6d470089, 0x8af0006b, 0x3f9e00b9, 0x00000000}},  //   voja, nməs, ustu_,\n  { {0x3f9e000c, 0x6f040b17, 0x645a0089, 0x00000000}},  //   rstu_, _coic, _izti,\n  { {0x6d47010a, 0x6f040051, 0x2ee030ea, 0x00000000}},  //   toja, _doic, _daif_,\n  { {0x6d470006, 0x4c94030d, 0x40940025, 0x00000000}},  //   uoja, жирс, _الثر,\n  { {0x8af0005f, 0x6d472f0e, 0x29030779, 0x00000000}},  //   ymət, roja, _roja_,\n  { {0x290300c4, 0x5b140077, 0x200f01ca, 0x00000000}},  //   _soja_, омст, íliš_,\n  { {0x212c0051, 0x2903010e, 0x00000000, 0x00000000}},  // [f710] oidh_, _poja_,   ,\n  { {0x6cd50167, 0x7c3e0026, 0x645a0288, 0x00000000}},  //   _اقدا, _fxpr, _ozti,\n  { {0x672b3f8d, 0x00000000, 0x00000000, 0x00000000}},  //   tigj,   ,   ,\n  { {0x63670010, 0x35f50451, 0x7d05012d, 0x00000000}},  //   _tűni, йпер, _hohs,\n  { {0x8af0006b, 0x672b0023, 0x7c3b0276, 0x00000000}},  //   rmət, rigj, ğuru,\n  { {0x69dd002b, 0x28c6006e, 0x212c0023, 0x00000000}},  //   _isse, र्दि, jidh_,\n  { {0x7d05041d, 0xdb0e0374, 0x629b323a, 0x00000000}},  //   _mohs, ttbø, tauo,\n  { {0x7d050240, 0x8af0006b, 0x5c38009b, 0x00000000}},  //   _lohs, lmər, ירון_,\n  { {0x443e01aa, 0x212c002a, 0x67293f8e, 0x00000000}},  //   _ext_, fidh_, _imej,\n  { {0x6f040051, 0x2ee0254e, 0xdb0705e0, 0x00000000}},  //   _soic, _saif_, lujä,\n  { {0x6f040207, 0xf77000a1, 0x2011134a, 0x00000000}},  //   _poic, _راہ_, ázi_,\n  { {0x6d5e008d, 0x212c002a, 0x69dd0207, 0x00000000}},  //   _shpa, aidh_, _osse,\n  { {0x6d5e0061, 0xd0e20061, 0x6f04028a, 0x00000000}},  //   _phpa, _कोकण_, _voic,\n  { {0x3079007b, 0x332d01d5, 0xd5fa00b3, 0x00000000}},  //   _גאַנ, liex_, אפשר,\n  { {0x67290059, 0x8af0006b, 0xb09a0104, 0x00000000}},  //   _omej, yləd, _עיקר,\n  { {0x62990263, 0x673b1aa8, 0x9f483f8f, 0x00000000}},  //   _jewo, _njuj, _orné_,\n  { {0xdb07010e, 0x6299000a, 0x00000000, 0x00000000}},  // [f720] dujä, _mewo,   ,\n  { {0x67290020, 0x332d002b, 0x8af0006b, 0x00000000}},  //   _amej, hiex_, tməs,\n  { {0x69dd051b, 0x409a0049, 0x309a0049, 0x00000000}},  //   _esse, רבעס, רשעמ,\n  { {0x7bde2ec8, 0x37ab025a, 0x63ae0030, 0x00000000}},  //   _ispu, ائلی_, _åbni,\n  { {0xa50a014c, 0xdb1c3f90, 0x673b012d, 0x00000000}},  //   леда_, ntrí, _djuj,\n  { {0x7ae4022b, 0x69c40d90, 0xe0c70025, 0x00000000}},  //   ldit, mtie, _عز_,\n  { {0x6299023d, 0x3a200061, 0xd90d00a1, 0x00000000}},  //   _bewo, lzip_, _جیل_,\n  { {0x69c401d6, 0x52140242, 0x61eb0087, 0x00000000}},  //   otie, ждит, _brgl,\n  { {0x629901aa, 0x80dc0044, 0x3a20010f, 0x00000000}},  //   _dewo, বাস্, nzip_,\n  { {0x443e001c, 0x69c40006, 0xf8d8013d, 0x00000000}},  //   _txt_, itie, ड़िय,\n  { {0x32ca03c8, 0x332d01d5, 0x212c0051, 0x00000000}},  //   _было_, biex_, ridh_,\n  { {0x62992295, 0x69c43f91, 0x61e40006, 0x00000000}},  //   _gewo, ktie, _šilu,\n  { {0x7ae40207, 0x5fda0061, 0x201e0010, 0x00000000}},  //   ddit, _बनवल, szti_,\n  { {0x80dc0044, 0x7e763f92, 0x7ae4017b, 0x00000000}},  //   বাহ্, _egyp, edit,\n  { {0xb7b30044, 0x69c40089, 0xac18019d, 0x00000000}},  //   _ঘন্ট, etie, бору_,\n  { {0x69c41bec, 0xd1380fed, 0x7bde1ba1, 0x00000000}},  //   ftie, lną_, _dspu,\n  { {0x69c401c5, 0x6f1d0048, 0x00000000, 0x00000000}},  // [f730] gtie, mhsc,   ,\n  { {0x67291457, 0xd1380036, 0x7ae4010e, 0x00000000}},  //   _smej, nną_, adit,\n  { {0x69c40168, 0x47d506dd, 0xb901013d, 0x00000000}},  //   atie, تيار, _दस_,\n  { {0x69c4002b, 0x7b2c006b, 0x00000000, 0x00000000}},  //   btie, nşul,   ,\n  { {0xd24600a2, 0x69c402ae, 0xf7700151, 0x00000000}},  //   _آن_, ctie, رام_,\n  { {0x25a90059, 0xd1380036, 0x332d002b, 0x00000000}},  //   šalo_, jną_, wiex_,\n  { {0xd1380036, 0x67290066, 0x62990173, 0x00000000}},  //   dną_, _tmej, _pewo,\n  { {0x67293f93, 0x176807e1, 0x13090152, 0x00000000}},  //   _umej, _груп_, рний_,\n  { {0x65940147, 0xdb1c00c4, 0x2d8900f6, 0x00000000}},  //   _нату, ltrã, _ntae_,\n  { {0x3ea93f94, 0x61eb00ca, 0x00000000, 0x00000000}},  //   _adat_, _vrgl,   ,\n  { {0x69c4022b, 0x61e43f95, 0x629901aa, 0x00000000}},  //   ztie, _šilt, _tewo,\n  { {0xd1380036, 0x657b3f96, 0xd5a70088, 0x00000000}},  //   aną_, _kuuh, _вiдп,\n  { {0x69c401d5, 0x7d1c0009, 0x657b00ea, 0x00000000}},  //   xtie, thrs, _juuh,\n  { {0x3f6600f4, 0x3ea90129, 0x7ae4002b, 0x00000000}},  //   _cœur_, _edat_, wdit,\n  { {0x61e9021e, 0x3a9a007c, 0x00000000, 0x00000000}},  //   lvel, итаю_,   ,\n  { {0x6f1d010f, 0xa3ea006e, 0xf3eb0044, 0x00000000}},  //   chsc, मित_, _কথার_,\n  { {0xfce62415, 0x7ae41c28, 0x69c401c5, 0x00000000}},  // [f740] _допо, rdit, utie,\n  { {0xe8f701f9, 0x3a200009, 0x7ae43f97, 0x00000000}},  //   олу_, rzip_, sdit,\n  { {0x7bde0091, 0x28c6007d, 0x00000000, 0x00000000}},  //   _uspu, र्षि,   ,\n  { {0x69c40211, 0x61e91dcd, 0xd1380036, 0x00000000}},  //   ptie, kvel, zną_,\n  { {0x2ba80061, 0xbebb0065, 0xd1380fed, 0x00000000}},  //   गळवा, shëg, yną_,\n  { {0xb7da00a1, 0x28c6007d, 0x61e90010, 0x00000000}},  //   _پورا_, र्शि, dvel,\n  { {0x61e900bb, 0x00000000, 0x00000000, 0x00000000}},  //   evel,   ,   ,\n  { {0xf1a60373, 0xe73a005e, 0xd1380036, 0x00000000}},  //   орон, _теб_, wną_,\n  { {0xd1380036, 0x61e9000c, 0xd13a0364, 0x00000000}},  //   tną_, gvel, ихо_,\n  { {0x4fc6007c, 0x00000000, 0x00000000, 0x00000000}},  //   осма,   ,   ,\n  { {0x6f1d0051, 0x61e9060c, 0xd1380fed, 0x00000000}},  //   thsc, avel, rną_,\n  { {0xd1380036, 0x3f66009d, 0xd12f0bb6, 0x00000000}},  //   sną_, _sœur_, _یمن_,\n  { {0x224b010f, 0x63750006, 0x63b80161, 0x00000000}},  //   ückt_, _išna, luvn,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xc04f02f0, 0x2a70006b, 0x3ea90087, 0x00000000}},  //   _ці_, ənbə_, _tdat_,\n  { {0x798d01aa, 0x00000000, 0x00000000, 0x00000000}},  //   tpaw,   ,   ,\n  { {0xbebb01c3, 0x00000000, 0x00000000, 0x00000000}},  // [f750] biër,   ,   ,\n  { {0x2907000c, 0x657b0052, 0x00000000, 0x00000000}},  //   ðna_, _ruuh,   ,\n  { {0x61e90089, 0x5ede0044, 0xbf780082, 0x00000000}},  //   zvel, যারে, _đuợc_,\n  { {0x5ead0044, 0x63b8003b, 0x80ca01f5, 0x00000000}},  //   ট্রে, duvn, त्ते,\n  { {0xd618006d, 0xbafa009b, 0x8afa009b, 0x00000000}},  //   يتها_, _ההרש, _הפרק,\n  { {0x03950242, 0x2db8009b, 0xb97a009b, 0x00000000}},  //   прия, קלון_, _לנשי,\n  { {0x7bc73f98, 0x8ccd013d, 0xdb070027, 0x00000000}},  //   ntju, द्यो, dujú,\n  { {0x11d90054, 0xd3d80025, 0x25b0014a, 0x00000000}},  //   موعة_, تبها_, üllü_,\n  { {0xdb1c002a, 0x00000000, 0x00000000, 0x00000000}},  //   ntrá,   ,   ,\n  { {0x44b41d68, 0xf485009e, 0x00000000, 0x00000000}},  //   _обус, _رائی,   ,\n  { {0xdee600ed, 0x59dd01f5, 0x777c004a, 0x00000000}},  //   пони, _नैसर, _xurx,\n  { {0xd2510025, 0xba3b01d6, 0x224b01a2, 0x00000000}},  //   _كنا_, _geïg, ücks_,\n  { {0xee370088, 0x5ede0044, 0x00000000, 0x00000000}},  //   зня_, যালে,   ,\n  { {0x3f770035, 0xc0e501ab, 0x00000000, 0x00000000}},  //   _băut_, _хокк,   ,\n  { {0xeb970256, 0xbebb0328, 0x00000000, 0x00000000}},  //   зис_, riër,   ,\n  { {0xbebb01d6, 0x00000000, 0x00000000, 0x00000000}},  //   siër,   ,   ,\n  { {0x61ed3002, 0x3b0705f6, 0xbebb00c1, 0x00000000}},  // [f760] _šalj, чето_, piër,\n  { {0x3ea200d9, 0x00000000, 0x00000000, 0x00000000}},  //   lakt_,   ,   ,\n  { {0x6d4e0022, 0x00000000, 0x00000000, 0x00000000}},  //   moba,   ,   ,\n  { {0x6d4e0091, 0xd048006b, 0x940c006b, 0x00000000}},  //   loba, gedə, _gedə_,\n  { {0x5fdd013d, 0x7ae600f8, 0x00000000, 0x00000000}},  //   _फैसल, _iakt,   ,\n  { {0x6d4e0247, 0x3ea2373b, 0x00000000, 0x00000000}},  //   noba, hakt_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x66e3058f, 0xa6b5007c, 0x7ae60039, 0x00000000}},  //   _поса, _осущ, _jakt,\n  { {0x7ae60056, 0x6d4e3f99, 0xcad70097, 0x00000000}},  //   _makt, koba, לוקת_,\n  { {0xf55a0025, 0x28cf0164, 0x290a00eb, 0x00000000}},  //   _الطب_, स्पि, _joba_,\n  { {0x6d4e0036, 0x25a60058, 0x7ae600f8, 0x00000000}},  //   doba, lsol_, _oakt,\n  { {0x3f8a001e, 0x7ae60ebc, 0xc7b300b6, 0x00000000}},  //   ību_, _nakt, עבר_,\n  { {0x25a6014a, 0x6d4e19d5, 0xdced01f3, 0x00000000}},  //   nsol_, foba, _jwaħ,\n  { {0x60180265, 0x6d4e005b, 0x61e2051b, 0x00000000}},  //   _моля_, goba, _isol,\n  { {0x2a790022, 0x60da013f, 0xb5fd00ca, 0x00000000}},  //   _pgsb_, metm, _izše,\n  { {0x7ae60065, 0x60da014a, 0xe7f0007d, 0x00000000}},  //   _cakt, letm, घटना_,\n  { {0x7ae62ecb, 0x6d4e10ae, 0x7bc700f8, 0x00000000}},  // [f770] _dakt, boba, stju,\n  { {0x290a0762, 0x60da014a, 0x7ae600ea, 0x00000000}},  //   _coba_, netm, _eakt,\n  { {0xdb1c3f9a, 0x290a01ca, 0x8af0006b, 0x00000000}},  //   strá, _doba_, mlən,\n  { {0x8af0013f, 0x00000000, 0x00000000, 0x00000000}},  //   llən,   ,   ,\n  { {0x84e52015, 0xa5093370, 0x60da0095, 0x00000000}},  //   долж, жела_, ketm,\n  { {0x290a00ca, 0x3ea200bb, 0x8af0006b, 0x00000000}},  //   _goba_, zakt_, nlən,\n  { {0x67d41dac, 0xa3d2025f, 0x7ae60095, 0x00000000}},  //   _пору, војч, _yakt,\n  { {0x68e70209, 0x6d4e1658, 0x63a80022, 0x00000000}},  //   _hajd, zoba, _dvdn,\n  { {0xc245004c, 0x6d4e0020, 0x8af0006b, 0x00000000}},  //   ьник, yoba, klən,\n  { {0x80bd0061, 0x6d4e0032, 0x68e70066, 0x00000000}},  //   _शाळे, xoba, _jajd,\n  { {0x68e73f9b, 0x3ea2000c, 0x932700a1, 0x00000000}},  //   _majd, takt_, _ٹران,\n  { {0x6d4e0173, 0x61e20066, 0x6fbf0061, 0x00000000}},  //   woba, _fsol, लंबू,\n  { {0x6d4e3f9c, 0x7ae60429, 0x8af0006b, 0x00000000}},  //   toba, _rakt, flən,\n  { {0x7ae60065, 0x3ea200ea, 0xdd8f0025, 0x00000000}},  //   _sakt, sakt_, شوف_,\n  { {0x6d4e050a, 0x290a0129, 0x7ae60065, 0x00000000}},  //   roba, _roba_, _pakt,\n  { {0xc05200b6, 0x8f9a00b3, 0x290a0340, 0x00000000}},  //   _שזה_, _ויקי, _soba_,\n  { {0x7ae63f9d, 0xc332009b, 0x68e71087, 0x00000000}},  // [f780] _vakt, דון_, _bajd,\n  { {0x7ae60149, 0x8af0006b, 0x3ea009cb, 0x00000000}},  //   _wakt, clən, _heit_,\n  { {0x3ce70316, 0x7ae60027, 0x46ea1e4d, 0x00000000}},  //   _छोटे_, _takt, жден_,\n  { {0xe737003b, 0x3a3f25f3, 0x60da0792, 0x00000000}},  //   мех_, _župe_, zetm,\n  { {0xa5da06dd, 0x056a06e3, 0xd6e00044, 0x00000000}},  //   تبار_, ојки_, ণালয,\n  { {0xa3ea03d7, 0x3ea0009f, 0xa507003b, 0x00000000}},  //   मिल_, _leit_, деља_,\n  { {0x25a60a06, 0xdb1c0030, 0x61e20066, 0x00000000}},  //   ssol_, rtræ, _ssol,\n  { {0x8af0006b, 0xdb1c158f, 0x25a60d48, 0x00000000}},  //   zlən, stræ, psol_,\n  { {0xdb1c0afc, 0x672200e7, 0x00000000, 0x00000000}},  //   mträ, mhoj,   ,\n  { {0xdb1c04ce, 0x6aa40020, 0x00000000, 0x00000000}},  //   lträ, haif,   ,\n  { {0x20183f9e, 0x60da011f, 0x3ea001e5, 0x00000000}},  //   ári_, retm, _beit_,\n  { {0xdb1c2683, 0x7d1e0059, 0x2018002b, 0x00000000}},  //   nträ, _alps, ġri_,\n  { {0x8af0006b, 0xdb1c01a2, 0x2d800035, 0x00000000}},  //   tlən, iträ, _cuie_,\n  { {0x2d8001d6, 0x00000000, 0x00000000, 0x00000000}},  //   _duie_,   ,   ,\n  { {0x3ea000c7, 0x8af0006b, 0x68e700b4, 0x00000000}},  //   _feit_, rlən, _rajd,\n  { {0x61ed010a, 0x25a900ee, 0x09d80044, 0x00000000}},  //   _šali, šali_, সিনা,\n  { {0xf1bc0044, 0x67220065, 0x2ee906ed, 0x00000000}},  // [f790] _অনুভ, dhoj, _iaaf_,\n  { {0x3ea0001f, 0x80dc0044, 0x8af0006b, 0x00000000}},  //   _zeit_, বাক্, lləl,\n  { {0x68e73f9f, 0xdb1c01a2, 0x63651465, 0x00000000}},  //   _vajd, fträ, lóne,\n  { {0x19950147, 0x6f0d001a, 0x81d50044, 0x00000000}},  //   _памя, _joac, হিত_,\n  { {0x25a92dc6, 0x2ee904cb, 0x68e70022, 0x00000000}},  //   éal_, _maaf_, _tajd,\n  { {0x6f0d062c, 0x23660161, 0x2edc013d, 0x00000000}},  //   _loac, _ahoj_, _बस्त,\n  { {0xc7c41ef9, 0x3f8e00d9, 0x3f7e01f3, 0x00000000}},  //   _исти, _ntfu_, _uċuh_,\n  { {0x645f006b, 0x67220020, 0xc2c50025, 0x00000000}},  //   əqil, choj, ريخي,\n  { {0xe1f10318, 0x26dd0263, 0x28cf02f4, 0x00000000}},  //   اسب_, mewo_, स्थि,\n  { {0x3ea0001f, 0x2d8001c3, 0xdb1c00f8, 0x00000000}},  //   _seit_, _ruie_, mtrå,\n  { {0x6f0d00fa, 0x2d8000e5, 0x00000000, 0x00000000}},  //   _boac, _suie_,   ,\n  { {0x28cf006e, 0x2ee90026, 0xe1f109b9, 0x00000000}},  //   स्ति, _caaf_, _مست_,\n  { {0x3ea0021a, 0x2d80004a, 0x78a50052, 0x00000000}},  //   _veit_, _quie_, kahv,\n  { {0x3ea0010f, 0xc0e2025f, 0x81d50044, 0x00000000}},  //   _weit_, _бошк, হিদ_,\n  { {0x6aa4000b, 0x8c43034b, 0x6c360025, 0x00000000}},  //   taif, гере, رفرا,\n  { {0x8af0006b, 0x62890048, 0x2ee90112, 0x00000000}},  //   lməz, nceo, _gaaf_,\n  { {0xe9d70404, 0x6aa41b88, 0x6df30025, 0x00000000}},  // [f7a0] нкт_, raif, _مكيا,\n  { {0xebe60581, 0x30bd0044, 0xdb1c032e, 0x00000000}},  //   _зооп, _অসুস, dtrå,\n  { {0xdb1c04ce, 0xdc9b00a0, 0x67220023, 0x00000000}},  //   tträ, _מייל, thoj,\n  { {0xe5c60057, 0xf8b000a1, 0x6602002d, 0x00000000}},  //   еско, _چکا_, txok,\n  { {0xdb1c03a9, 0xceb30104, 0x8af0006b, 0x00000000}},  //   rträ, ריד_, nləm,\n  { {0x53e601be, 0xdb1c3fa0, 0x67220065, 0x00000000}},  //   ециа, strä, shoj,\n  { {0xd9430256, 0xbebb0065, 0xdb1c0039, 0x00000000}},  //   _сери, dhën, pträ,\n  { {0xdb1c0023, 0x8af0006b, 0x6d5c01a2, 0x00000000}},  //   durë, kləm, hlra,\n  { {0x2ee9046a, 0x2b400035, 0xa3ac013d, 0x00000000}},  //   _raaf_, inic_, _कटक_,\n  { {0x2b400899, 0x6f0d001a, 0x00000000, 0x00000000}},  //   hnic_, _soac,   ,\n  { {0x44380901, 0x6e9504b5, 0xdb1c0023, 0x00000000}},  //   _är_, кину, gurë,\n  { {0x2b403804, 0x00000000, 0x00000000, 0x00000000}},  //   jnic_,   ,   ,\n  { {0xe3370049, 0x657a3fa1, 0x67d3013e, 0x00000000}},  //   _אראפ_, _kith, mějš,\n  { {0x6365008e, 0x6456006b, 0x7e640079, 0x00000000}},  //   róne, əyir, _dzip,\n  { {0x8af0005f, 0x657a010f, 0x602600f4, 0x00000000}},  //   lməy, _mith, _démé,\n  { {0x67d30224, 0x657a0273, 0x645a1238, 0x00000000}},  //   nějš, _lith, _myti,\n  { {0x7b64007c, 0x645a0006, 0x8af0006b, 0x00000000}},  // [f7b0] утре, _lyti, nməy,\n  { {0xb4df0061, 0x63b80626, 0x657a0051, 0x00000000}},  //   _तसे_, krvn, _nith,\n  { {0x645a0541, 0x81d60044, 0xe8df0011, 0x00000000}},  //   _nyti, াটি_, _ngục_,\n  { {0xf770004b, 0x2b400129, 0x657a002a, 0x00000000}},  //   مان_, cnic_, _aith,\n  { {0x7aed001a, 0x657a0051, 0x645a000a, 0x00000000}},  //   mdat, _bith, _ayti,\n  { {0x7aed0004, 0x81d60055, 0xbc380014, 0x00000000}},  //   ldat, াটা_, _آسیا_,\n  { {0x7aed001a, 0x69cd20d9, 0x8af0006b, 0x00000000}},  //   odat, ltae, zləm,\n  { {0xf99f0263, 0x657a3339, 0x527505f6, 0x00000000}},  //   _kwè_, _eith, купу,\n  { {0xf99f01aa, 0x69cd00b0, 0x7aed00d4, 0x00000000}},  //   _jwè_, ntae, idat,\n  { {0x657a0ea9, 0x7aed00b0, 0xdb1c0065, 0x00000000}},  //   _gith, hdat, turë,\n  { {0x7afd00c7, 0x69cd0934, 0x28c6006e, 0x00000000}},  //   _onst, htae, र्टि,\n  { {0xa2950088, 0x657a00d9, 0xfaff0065, 0x00000000}},  //   _раді, _zith, _shën_,\n  { {0xf7720452, 0xd00e00a6, 0x2b4000ca, 0x00000000}},  //   יקט_, ملی_, vnic_,\n  { {0x7afd0002, 0x7aed00d9, 0xdbdc000c, 0x00000000}},  //   _anst, edat, _báða,\n  { {0x2b400059, 0xdca3012c, 0xf99f000a, 0x00000000}},  //   tnic_, раси, _awè_,\n  { {0xf99f01aa, 0x7aed011c, 0x3a3f016e, 0x00000000}},  //   _bwè_, gdat, _župa_,\n  { {0x2b40001a, 0x1ce700a1, 0x8ff700a1, 0x00000000}},  // [f7c0] rnic_, رکیٹ_, _آرڈر_,\n  { {0x7afd099e, 0x2b400d2e, 0xa92300e2, 0x00000000}},  //   _enst, snic_, адул,\n  { {0x7aed0035, 0x657a3fa2, 0x25ad0da9, 0x00000000}},  //   bdat, _rith, _avel_,\n  { {0x645a0dc6, 0x7bce03cc, 0x752101a2, 0x00000000}},  //   _ryti, mtbu, _allz,\n  { {0x67d30224, 0xd707005e, 0x00000000, 0x00000000}},  //   vějš, ънце_,   ,\n  { {0xd9460256, 0x5ede0044, 0x00000000, 0x00000000}},  //   _реги, যাটে,   ,\n  { {0x7bce2a1a, 0x657a002f, 0x67d300b9, 0x00000000}},  //   ntbu, _vith, tějš,\n  { {0x657a0038, 0x645a3fa3, 0x8af0006b, 0x00000000}},  //   _with, _vyti, tməy,\n  { {0x80bd0061, 0x657a0122, 0xdb1c0068, 0x00000000}},  //   _शाखे, _tith, guré,\n  { {0x8af0005f, 0x657a00c7, 0x7bce0066, 0x00000000}},  //   rməy, _uith, ktbu,\n  { {0x61ed1d37, 0x7aed0036, 0x9406023c, 0x00000000}},  //   _šalt, ydat, _جواه,\n  { {0x612401aa, 0x7aed00bb, 0xdbdc000c, 0x00000000}},  //   _sòld, xdat, _ráða,\n  { {0xa3ea007d, 0xa3de013d, 0x7aed04eb, 0x00000000}},  //   मिक_, दौर_, vdat,\n  { {0xc27b0476, 0xba3b00c7, 0x7aed2b6e, 0x00000000}},  //   _חרדי, _beïn, wdat,\n  { {0xd1380a3d, 0x00000000, 0x00000000, 0x00000000}},  //   mią_,   ,   ,\n  { {0xc8c6006e, 0x69cd00b0, 0x2bb80025, 0x00000000}},  //   र्घट, ttae, ضافة_,\n  { {0x7aed04b8, 0x28a7007c, 0x58d505f6, 0x00000000}},  // [f7d0] rdat, вшег, лоат,\n  { {0x69cd002d, 0xd1380fed, 0x7d1c0288, 0x00000000}},  //   rtae, nią_, ckrs,\n  { {0x7aed067e, 0x6d550059, 0xba3b0250, 0x00000000}},  //   pdat, moza, _geïn,\n  { {0x6d550107, 0x7afd03a1, 0x69cd0048, 0x00000000}},  //   loza, _unst, ptae,\n  { {0xd1380006, 0x6365000c, 0x00000000, 0x00000000}},  //   kią_, jóna,   ,\n  { {0x044506e1, 0xd4690545, 0xdb07004a, 0x00000000}},  //   лелн, ниле_, pujó,\n  { {0x888200a6, 0x00000000, 0x00000000, 0x00000000}},  //   _ایمن,   ,   ,\n  { {0x22400e00, 0xdb1c3820, 0x6d550232, 0x00000000}},  //   _žika_, turé, hoza,\n  { {0x78b2000c, 0x6d550010, 0x3f5900c4, 0x00000000}},  //   _ákvö, koza, héus_,\n  { {0x600926f0, 0xbebb0023, 0x6f1d00bb, 0x00000000}},  //   еном_, shël, eksc,\n  { {0xbea60216, 0x3ea601e0, 0xdb1c00f4, 0x00000000}},  //   ланк, линг, suré,\n  { {0x51f50084, 0x2911004a, 0x3f910089, 0x00000000}},  //   _مستر, _loza_, īzu_,\n  { {0x2d8400f4, 0xd1381f00, 0xef17007c, 0x00000000}},  //   ême_, bią_, умя_,\n  { {0x6d55202b, 0xfaff0065, 0xc6360049, 0x00000000}},  //   goza, _anë_, אָלק_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xa3b603d7, 0x7d1c05fa, 0xba3b0129, 0x00000000}},  //   _जिस_, skrs, _veïn,\n  { {0x7bce0b38, 0x29113fa4, 0x00000000, 0x00000000}},  // [f7e0] stbu, _boza_,   ,\n  { {0x28cf007d, 0x8ca5013d, 0x6d55004a, 0x00000000}},  //   स्लि, करणो, coza,\n  { {0x79963fa5, 0x29110035, 0x9b460b03, 0x00000000}},  //   spyw, _doza_, _مندو,\n  { {0x79960640, 0x00000000, 0x00000000, 0x00000000}},  //   ppyw,   ,   ,\n  { {0x35b6022a, 0x36360054, 0x753801ee, 0x00000000}},  //   ущес, دراس, tivz,\n  { {0x2cb33fa6, 0x29111150, 0xb5fd00ca, 0x00000000}},  //   _xdxd_, _goza_, _izšl,\n  { {0xfaff0065, 0xd4990088, 0x287507d0, 0x00000000}},  //   _ynë_, трі_, _вытр,\n  { {0xdc08001e, 0xd1380036, 0x79860020, 0x00000000}},  //   dēļa, wią_, _kukw,\n  { {0x79860020, 0x6d553fa7, 0x8646003b, 0x00000000}},  //   _jukw, yoza, _снаж,\n  { {0x8af0006b, 0x79860dfc, 0x6aa602e1, 0x00000000}},  //   sləh, _mukw, _lekf,\n  { {0xd1380a67, 0x39570104, 0x798600e7, 0x00000000}},  //   rią_, רשים_, _lukw,\n  { {0x68ee016a, 0xd24f007a, 0xd1380aec, 0x00000000}},  //   _labd, _کنه_, sią_,\n  { {0x62822b63, 0x6d55016c, 0x835300a1, 0x00000000}},  //   _igoo, toza, _اپنا,\n  { {0xceb4005f, 0x2eed00ca, 0xdfec013d, 0x00000000}},  //   _edə_, žef_, _जनपद_,\n  { {0x6d550047, 0xdc21002b, 0x6aa601c3, 0x00000000}},  //   roza, _iċċe, _bekf,\n  { {0xab62005d, 0x9b580242, 0x6d55002d, 0x00000000}},  //   şünc, гист_, soza,\n  { {0x29113fa8, 0xba3b0116, 0xbebb0023, 0x00000000}},  // [f7f0] _poza_, _geïl, rkëd,\n  { {0x68ee3fa9, 0x79860009, 0x3f5900fa, 0x00000000}},  //   _cabd, _dukw, péus_,\n  { {0x1a65007a, 0x2911057c, 0x7aee00b0, 0x00000000}},  //   _چیزی_, _voza_, öntä,\n  { {0xfaff008d, 0xef1f0676, 0x36d500ed, 0x00000000}},  //   _unë_, nkü_, родр,\n  { {0x660501a4, 0x79860009, 0x3f66009d, 0x00000000}},  //   рпла, _gukw, _vœux_,\n  { {0x661900b4, 0x6282017b, 0x63650048, 0x00000000}},  //   rywk, _agoo, gónn,\n  { {0x5eab0044, 0x63410089, 0x6d400068, 0x00000000}},  //   _কানে, lēni, émai,\n  { {0xdc2101d5, 0x11d90025, 0x7aef004a, 0x00000000}},  //   _aċċe, نوعة_, _jact,\n  { {0x8627008b, 0x629b010a, 0x1306007c, 0x00000000}},  //   _сьве, rbuo, рный_,\n  { {0x7aef0f6a, 0xdb1c0190, 0x62820045, 0x00000000}},  //   _lact, strø, _egoo,\n  { {0x5f061aea, 0x80a70044, 0x634800b9, 0x00000000}},  //   азна, _খাদ্, měnn,\n  { {0x539a009b, 0x25a0001a, 0xdc2101d5, 0x00000000}},  //   _ייעו, ţile_, _eċċe,\n  { {0xe3c70044, 0x78b50340, 0x00000000, 0x00000000}},  //   _শনিব, _odzv,   ,\n  { {0x78a70224, 0x4087025f, 0xc24401e1, 0x00000000}},  //   _nejv, _судб, _унік,\n  { {0xbb560025, 0x7aef00ab, 0x68ee2c4c, 0x00000000}},  //   لنسب, _bact, _rabd,\n  { {0x7aef001c, 0x68ee003f, 0x798601c3, 0x00000000}},  //   _cact, _sabd, _pukw,\n\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  // [f800]   ,   ,   ,\n  { {0x3f870066, 0x63750006, 0xba3b0328, 0x00000000}},  //   _kunu_, _išnu, _geïm,\n  { {0x7aef0038, 0x3f870521, 0x2ba5006e, 0x00000000}},  //   _fact, _junu_, गीदा,\n  { {0x3f87000c, 0x7a2c009d, 0x7bde002b, 0x00000000}},  //   _munu_, _côté, _ippu,\n  { {0x7ae43faa, 0x55060893, 0x1a9b0049, 0x00000000}},  //   meit, ичка, _ביכע,\n  { {0x7ae4010f, 0xb796003b, 0x2240012d, 0x00000000}},  //   leit, _враћ, _žiko_,\n  { {0x66e602e9, 0xb226000c, 0x69c40de1, 0x00000000}},  //   _кова, kvæð, luie,\n  { {0xb02400ad, 0x7ae400b0, 0xdb1c0023, 0x00000000}},  //   _ngườ, neit, drrë,\n  { {0x69c43fab, 0x00000000, 0x00000000, 0x00000000}},  //   nuie,   ,   ,\n  { {0x3f8701f6, 0x7ae4001f, 0x7bde0207, 0x00000000}},  //   _bunu_, heit, _oppu,\n  { {0x7ae43fac, 0x61eb04bd, 0xe3b200a1, 0x00000000}},  //   keit, _esgl, _ذرا_,\n  { {0xe29a012b, 0x7ae41329, 0x69c42572, 0x00000000}},  //   _рад_, jeit, kuie,\n  { {0x7bde1017, 0x3eab0038, 0x7ae40016, 0x00000000}},  //   _appu, ract_, deit,\n  { {0x2d9902c2, 0x69c40cea, 0x7c8400c0, 0x00000000}},  //   rpse_, duie, жуте,\n  { {0x7ae43fad, 0x7aef0129, 0x06bc0055, 0x00000000}},  //   feit, _pact, _ইউনি,\n  { {0xbb28007e, 0x7ae4002d, 0x307b00b3, 0x00000000}},  //   ацуе_, geit, _באונ,\n  { {0x69c40219, 0x7bde0207, 0x7aef00d9, 0x00000000}},  // [f810] guie, _eppu, _vact,\n  { {0x3ea900ab, 0x3cf10009, 0x00000000, 0x00000000}},  //   _heat_, qdzv_,   ,\n  { {0x7ae412dc, 0xf8071606, 0x6d470091, 0x00000000}},  //   beit, шчан, mnja,\n  { {0x7ae40181, 0x14c9001c, 0x69c40035, 0x00000000}},  //   ceit, _राहण, buie,\n  { {0x8af0006b, 0x69c4001a, 0x3ea900ab, 0x00000000}},  //   tləv, cuie, _meat_,\n  { {0x3ea9002a, 0x63653fae, 0xcd980097, 0x00000000}},  //   _leat_, tóno, סדות_,\n  { {0xd7c9007a, 0x6d4701c3, 0x2d8100ca, 0x00000000}},  //   _حوزه_, inja, _mihe_,\n  { {0x68e500b0, 0x6aad29fc, 0x27fc0190, 0x00000000}},  //   lehd, naaf, ævne_,\n  { {0x6d471531, 0x00000000, 0x00000000, 0x00000000}},  //   knja,   ,   ,\n  { {0x7ae4010f, 0x8af0006b, 0x6aad00bb, 0x00000000}},  //   zeit, llət, haaf,\n  { {0x3ea903ca, 0x6d470825, 0x14190025, 0x00000000}},  //   _beat_, dnja, _حياة_,\n  { {0x2d81021e, 0x643a0049, 0xdb1c06c2, 0x00000000}},  //   _aihe_, _געענ, turí,\n  { {0x7ae43a14, 0x3209005d, 0x2d810009, 0x00000000}},  //   veit, _çay_, _bihe_,\n  { {0x40950054, 0x7ae43687, 0xb226000c, 0x00000000}},  //   _الغر, weit, svæð,\n  { {0x7ae4046a, 0xab2a012b, 0x61e901a2, 0x00000000}},  //   teit, гова_, lwel,\n  { {0x69c43faf, 0x6d472911, 0x2903016e, 0x00000000}},  //   tuie, anja, _anja_,\n  { {0x6f040c1f, 0x7ae407e6, 0x61e9010f, 0x00000000}},  // [f820] _inic, reit, nwel,\n  { {0x7ae4001f, 0x6d4705fa, 0x2d810061, 0x00000000}},  //   seit, cnja, _gihe_,\n  { {0x61e90abe, 0x7ae4002d, 0x7bde006c, 0x00000000}},  //   hwel, peit, _uppu,\n  { {0x61e93fb0, 0x6f16009d, 0x69c4009d, 0x00000000}},  //   kwel, _joyc, puie,\n  { {0x69c40219, 0x6f041d48, 0xdbe3000c, 0x00000000}},  //   quie, _mnic, _héða,\n  { {0x61e90ace, 0x25690051, 0x6f160288, 0x00000000}},  //   dwel, túla_, _loyc,\n  { {0x6f04060c, 0x63a40166, 0x61e901c3, 0x00000000}},  //   _onic, ćino, ewel,\n  { {0x070c007d, 0xfbd3009b, 0x61e90016, 0x00000000}},  //   _सचिव_, פתח_, fwel,\n  { {0x44200089, 0x8af0006b, 0x61e90016, 0x00000000}},  //   ņi_, lləs, gwel,\n  { {0x80d30061, 0x672211e8, 0x644f0036, 0x00000000}},  //   ब्ले, lkoj, _ście,\n  { {0x6d470746, 0xb5fd01ca, 0xdb1c09c8, 0x00000000}},  //   vnja, _vyše, ntró,\n  { {0x0dcb09da, 0x395a0190, 0x67220997, 0x00000000}},  //   луги_, hops_, nkoj,\n  { {0x60c8001c, 0xe28700a6, 0x6d470295, 0x00000000}},  //   pgdm, _اطمی, tnja,\n  { {0x30390014, 0x672225b9, 0x6f040583, 0x00000000}},  //   اتیک_, hkoj, _enic,\n  { {0x6d4710ec, 0x3ea90b3d, 0xc2eb0044, 0x00000000}},  //   rnja, _teat_, কারি_,\n  { {0x6d47037e, 0x213e005b, 0x6124000a, 0x00000000}},  //   snja, lith_, _kòlo,\n  { {0x8af0005f, 0x5939008b, 0xa2d001f5, 0x00000000}},  // [f830] vlət, азаў_, _धान्,\n  { {0x6d4000f4, 0x213e04c1, 0x7e6d002d, 0x00000000}},  //   émat, nith_, _izap,\n  { {0x61e9210e, 0x6124000a, 0x201e007f, 0x00000000}},  //   zwel, _lòlo, nyti_,\n  { {0x959902be, 0xcf930049, 0x61e90016, 0x00000000}},  //   атку_, לטע_, ywel,\n  { {0x7bd50032, 0xd5bb3fb1, 0x61e90322, 0x00000000}},  //   ltzu, усе_, xwel,\n  { {0x201e010a, 0x395a00d9, 0x03950ae0, 0x00000000}},  //   kyti_, cops_, ория,\n  { {0xdb1c0819, 0x7bd5022b, 0x8af0005f, 0x00000000}},  //   ctró, ntzu, mlər,\n  { {0x8af0005f, 0x201e010a, 0xb06500b0, 0x00000000}},  //   llər, dyti_, hdää,\n  { {0xe6130025, 0x7bc701a3, 0x61e900b5, 0x00000000}},  //   _عشر_, huju, uwel,\n  { {0x61e9063c, 0x8af0005f, 0x7bc7006c, 0x00000000}},  //   rwel, nlər, kuju,\n  { {0xa0690113, 0x61e90678, 0xdf4a0ae0, 0x00000000}},  //   рана_, swel, изод_,\n  { {0x61e90066, 0x7bc70b4a, 0x213e005b, 0x00000000}},  //   pwel, duju, aith_,\n  { {0x8af0005f, 0x9267007a, 0x7d1704b3, 0x00000000}},  //   klər, _ادام, _boxs,\n  { {0xdb1c014a, 0x7e6d012d, 0x23dd007d, 0x00000000}},  //   strü, _dzap, _महाद,\n  { {0x8af0005f, 0x67290ce2, 0x30790049, 0x00000000}},  //   dlər, _olej, _דאַנ,\n  { {0x2b4900f4, 0x6f04051b, 0xff5202fd, 0x00000000}},  //   gnac_, _unic, _تخت_,\n  { {0x395a0bd3, 0x8af0006b, 0xdb1c1db2, 0x00000000}},  // [f840] tops_, flər, gurá,\n  { {0x672907ed, 0xd91000a6, 0x9d46109f, 0x00000000}},  //   _alej, ریز_, _феод,\n  { {0x395a01d6, 0x7bc70ebe, 0x6d5c3fb2, 0x00000000}},  //   rops_, cuju, mora,\n  { {0xd6d90088, 0x395a0022, 0xa026003c, 0x00000000}},  //   йті_, sops_, ltöö,\n  { {0x67220065, 0x8af0005f, 0x7d17006b, 0x00000000}},  //   rkoj, blər, _yoxs,\n  { {0xdb1c04bd, 0x7af6010a, 0x67290010, 0x00000000}},  //   ctrò, ldyt, _elej,\n  { {0x612400f6, 0x67290cb8, 0x6d5c0032, 0x00000000}},  //   _dòll, _flej, iora,\n  { {0x291806c2, 0x6d5c0016, 0x213e0016, 0x00000000}},  //   _hora_, hora, with_,\n  { {0xb06500b0, 0x69d63bb7, 0x7bc70ec4, 0x00000000}},  //   ydää, ntye, zuju,\n  { {0x6d5c0f6a, 0x201e010a, 0x7af600b0, 0x00000000}},  //   jora, tyti_, hdyt,\n  { {0x6d5c0489, 0x291801d9, 0x27fa2b0c, 0x00000000}},  //   dora, _mora_, nvpn_,\n  { {0x8af0005f, 0x201e010a, 0x69d60173, 0x00000000}},  //   zlər, ryti_, ktye,\n  { {0x6d5c0016, 0x8af0006b, 0x7bc7027e, 0x00000000}},  //   fora, ylər, wuju,\n  { {0x6d5c002d, 0x7bc70169, 0x2918065c, 0x00000000}},  //   gora, tuju, _nora_,\n  { {0x8af0005f, 0x2aab003b, 0xe9ff0082, 0x00000000}},  //   vlər, итао_, _biếc_,\n  { {0x7bc701a3, 0x7bd52920, 0x3f9e1cf6, 0x00000000}},  //   ruju, rtzu, mptu_,\n  { {0x8af0005f, 0x2918000b, 0x6d5c0b25, 0x00000000}},  // [f850] tlər, _bora_, bora,\n  { {0x29180035, 0x6d5c20e4, 0xc867005e, 0x00000000}},  //   _cora_, cora, отеи,\n  { {0x8af0005f, 0x67293dae, 0x29180065, 0x00000000}},  //   rlər, _plej, _dora_,\n  { {0xf77006dd, 0xd366007a, 0x8af0006b, 0x00000000}},  //   نان_, _سه_, slər,\n  { {0xd24606ea, 0x291809f7, 0xfa9600a3, 0x00000000}},  //   _أن_, _fora_, _מדרש_,\n  { {0xd00606ea, 0x29183fb3, 0x63650285, 0x00000000}},  //   _كل_, _gora_, móni,\n  { {0x61e2191c, 0x63651238, 0x00000000, 0x00000000}},  //   _apol, lóni,   ,\n  { {0x6d5c1091, 0x673b0009, 0x13090088, 0x00000000}},  //   zora, _umuj, сний_,\n  { {0x6d5c3fb4, 0x68f50a32, 0x63653fb5, 0x00000000}},  //   yora, _kazd, nóni,\n  { {0x68f50620, 0x2cb10871, 0x81dc0044, 0x00000000}},  //   _jazd, jazd_, ডিং_,\n  { {0x6d5c0198, 0x7af600b0, 0x7f5d00f6, 0x00000000}},  //   vora, ydyt, fosq,\n  { {0xd34304e1, 0xbebb0065, 0x68f5008f, 0x00000000}},  //   _تفصی, dhës, _lazd,\n  { {0x6365000c, 0x425400e2, 0x00000000, 0x00000000}},  //   jóni, _отшт,   ,\n  { {0x68f50253, 0xa037016c, 0x6365077b, 0x00000000}},  //   _nazd, _šćuć, dóni,\n  { {0x6d5c1cc4, 0xf09200b6, 0xfaa601ee, 0x00000000}},  //   rora, _אנו_, забо,\n  { {0x63650841, 0x6d5c0211, 0xa026042b, 0x00000000}},  //   fóni, sora, stöö,\n  { {0x6d5c020c, 0x61fb00b5, 0x29183fb6, 0x00000000}},  // [f860] pora, nvul, _pora_,\n  { {0x0e5701f8, 0x38c800a6, 0x69d60052, 0x00000000}},  //   _משפט_, تاری_, rtye,\n  { {0xe9ff0011, 0x29180129, 0x69d60052, 0x00000000}},  //   _tiếc_, _vora_, stye,\n  { {0x7bc1016c, 0x00000000, 0x00000000, 0x00000000}},  //   šluc,   ,   ,\n  { {0x29181962, 0x62860006, 0x61fb1fed, 0x00000000}},  //   _tora_, žkok, jvul,\n  { {0x68f50047, 0x644f0036, 0x634800b9, 0x00000000}},  //   _gazd, _ścia, měni,\n  { {0x61e20428, 0x69c401c5, 0x00000000, 0x00000000}},  //   _spol, lrie,   ,\n  { {0xe73a005e, 0xdb24009d, 0x68f500b4, 0x00000000}},  //   _уеб_, érès, _zazd,\n  { {0x68f5047f, 0x057603ab, 0x5eab0044, 0x00000000}},  //   _yazd, _فائد, _কালে,\n  { {0x859b00b6, 0x3a370104, 0x7d1a0039, 0x00000000}},  //   _לשמו, פרים_, ötsl,\n  { {0x69c4001f, 0xbebb0065, 0x63ad016c, 0x00000000}},  //   hrie, dhër, ćanc,\n  { {0x69c4125c, 0xc178007f, 0x612d0048, 0x00000000}},  //   krie, smė_, _cúlb,\n  { {0xc333009b, 0xada4007e, 0x61e20a6e, 0x00000000}},  //   _אוף_, наўл, _upol,\n  { {0x14df03d7, 0xc16f01fb, 0x69c41617, 0x00000000}},  //   प्पण, _її_, drie,\n  { {0x68f50ed8, 0x69c4190c, 0x60db009b, 0x00000000}},  //   _razd, erie, _הקונ,\n  { {0x69c4010f, 0xae9b0054, 0x63650181, 0x00000000}},  //   frie, _اضغط_, tóni,\n  { {0x69c4001e, 0x2395001e, 0x68f53fb7, 0x00000000}},  // [f870] grie, _māja_, _pazd,\n  { {0x63650819, 0x9e670014, 0x00000000, 0x00000000}},  //   róni, _واکن,   ,\n  { {0x290701f6, 0x68f505fa, 0x69c40f30, 0x00000000}},  //   ına_, _vazd, arie,\n  { {0x69c4049b, 0xcfae0044, 0xfaa500a6, 0x00000000}},  //   brie, _কমান, _تجدی,\n  { {0xa3cf001c, 0xb8d30055, 0x69c413ba, 0x00000000}},  //   वून_, _টা_, crie,\n  { {0x85e80088, 0xf99200a3, 0xba3b00f6, 0x00000000}},  //   ядів_, _ברך_, _deït,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xf77301ef, 0x61240173, 0x00000000, 0x00000000}},  //   _ساز_, _fòlk,   ,\n  { {0x4cb30055, 0x201800b0, 0xdb240010, 0x00000000}},  //   _জানু, ärin_, érés,\n  { {0x61fb0168, 0x70c70061, 0x00000000, 0x00000000}},  //   rvul, ललेल,   ,\n  { {0xceea3fb8, 0x69c40027, 0x00000000, 0x00000000}},  //   одне_, zrie,   ,\n  { {0xe28e03f3, 0xd5d10201, 0x26cf27bd, 0x00000000}},  //   _ја_, _समाज, nggo_,\n  { {0xee3716c1, 0xc332009b, 0x612d0048, 0x00000000}},  //   дня_, _בוא_, _cúlc,\n  { {0x69c4028c, 0xd00e00a1, 0x00000000, 0x00000000}},  //   vrie, _چلو_,   ,\n  { {0x69c41ecf, 0xeb970256, 0x00000000, 0x00000000}},  //   wrie, дис_,   ,\n  { {0x69c403a1, 0x61ed0006, 0xbebb0065, 0x00000000}},  //   trie, _šaly, shër,\n  { {0xaa43091b, 0xf2d20049, 0x798700b5, 0x00000000}},  // [f880] ветл, כען_, _bijw,\n  { {0x69c40238, 0x6d8b0089, 0x14d20061, 0x00000000}},  //   rrie, _pļav, _साधण,\n  { {0x28dd013d, 0x69c4245c, 0x00000000, 0x00000000}},  //   न्धि, srie,   ,\n  { {0x69c4001e, 0x6fc50061, 0x9f5d0f6c, 0x00000000}},  //   prie, _विनं, _prvé_,\n  { {0x6d4e00bb, 0xf99f00f6, 0xba3b01c3, 0x00000000}},  //   onba, _crèd_, _deïs,\n  { {0x6d4e2a1e, 0x62990173, 0x00000000, 0x00000000}},  //   nnba, _afwo,   ,\n  { {0x6d4e01a2, 0x00000000, 0x00000000, 0x00000000}},  //   inba,   ,   ,\n  { {0x05000044, 0x6d4e01a2, 0xba3b0112, 0x00000000}},  //   ্সের_, hnba, _geïs,\n  { {0xa3ba0204, 0x6365000c, 0x966300a8, 0x00000000}},  //   _अटक_, jónu, _акте,\n  { {0xb5fd01ca, 0xe506023c, 0xd1300318, 0x00000000}},  //   _myšl, _تبري, امد_,\n  { {0xe29a007e, 0x00000000, 0x00000000, 0x00000000}},  //   _дае_,   ,   ,\n  { {0x6d4e1ae5, 0x2240016c, 0x42261f70, 0x00000000}},  //   enba, _žiku_, _одев,\n  { {0xde6402dc, 0x00000000, 0x00000000, 0x00000000}},  //   върп,   ,   ,\n  { {0xdb150010, 0x6d4e06ec, 0x00000000, 0x00000000}},  //   mszé, gnba,   ,\n  { {0xd30f0011, 0x1bd42bda, 0x212b0068, 0x00000000}},  //   _mệnh_, коря, êche_,\n  { {0x290a0263, 0xd30f0011, 0xa3cf0309, 0x00000000}},  //   _anba_, _lệnh_, वंत_,\n  { {0x49750269, 0xfb8400a5, 0x6d8b01c5, 0x00000000}},  // [f890] елас, тырн, _pļau,\n  { {0x612400f6, 0xe6a7006e, 0x00000000, 0x00000000}},  //   _bòli, खर्ज,   ,\n  { {0xe610007a, 0x00000000, 0x00000000, 0x00000000}},  //   یشه_,   ,   ,\n  { {0x7c2801e3, 0x63650048, 0x00000000, 0x00000000}},  //   ødre, nónt,   ,\n  { {0xd30f001d, 0x612400d4, 0x3f89007f, 0x00000000}},  //   _bệnh_, _eòli, _miau_,\n  { {0x7aed0051, 0x29350049, 0x67d5003b, 0x00000000}},  //   leat, _טאָן_, _погу,\n  { {0xf8b20097, 0xba3b0328, 0xf7700014, 0x00000000}},  //   _תשל_, _geïr, _چاق_,\n  { {0xdb1c0039, 0x7aed0585, 0xae0f0316, 0x00000000}},  //   strö, neat, ामान_,\n  { {0x6d4e1bf4, 0xa2d0007d, 0x00000000, 0x00000000}},  //   ynba, _धार्,   ,\n  { {0x7aed01a2, 0xb6cc019a, 0x63ba0288, 0x00000000}},  //   heat, _çürü, _fvtn,\n  { {0x7aed0315, 0xd0093fb9, 0xa2d70061, 0x00000000}},  //   keat, чене_, _याप्,\n  { {0xdb1c00f4, 0xf99f01aa, 0x25ad040f, 0x00000000}},  //   ntrô, _otè_, _kwel_,\n  { {0x7aed002d, 0x00000000, 0x00000000, 0x00000000}},  //   deat,   ,   ,\n  { {0xdd8f03d9, 0x823400f3, 0xf99f0173, 0x00000000}},  //   صوف_, _جرما, _orèb_,\n  { {0x6d4e01e3, 0xf99f01aa, 0x69c20061, 0x00000000}},  //   rnba, _atè_, _लिही,\n  { {0x7aed0035, 0x28dd007d, 0x3f890082, 0x00000000}},  //   geat, न्सि, _giau_,\n  { {0xc33200a0, 0x6fc50204, 0x628601ca, 0x00000000}},  // [f8a0] און_, _विडं, žkov,\n  { {0xf99f000a, 0x612400d4, 0xb5fd0161, 0x00000000}},  //   _dtè_, _pòli, _vyšl,\n  { {0x7aed1b27, 0xacd70049, 0x6146009d, 0x00000000}},  //   beat, _אויפ_, _hélè,\n  { {0x7bce0760, 0xbbe90167, 0xe9a602dc, 0x00000000}},  //   mubu, _کریم_, _памп,\n  { {0x7d1e1263, 0x00000000, 0x00000000, 0x00000000}},  //   _kops,   ,   ,\n  { {0x6603003b, 0x6ab60fd1, 0x7d1e0087, 0x00000000}},  //   упља, layf, _jops,\n  { {0x7bce3fba, 0xe4a50088, 0xe8cc0061, 0x00000000}},  //   nubu, тріо, ालीच,\n  { {0x7d1e139b, 0x2d92000a, 0xdb150010, 0x00000000}},  //   _lops, _ouye_, tszé,\n  { {0x3202004f, 0x3f89023a, 0x7bce04cb, 0x00000000}},  //   íky_, _riau_, hubu,\n  { {0x7bdc0fd6, 0x3f8900f6, 0xd4910082, 0x00000000}},  //   ktru, _siau_, _hàn_,\n  { {0x39960018, 0x41c2024c, 0x64a3007c, 0x00000000}},  //   _læs_, _शिवस, _саха,\n  { {0xe2920054, 0xd378016e, 0xceeb0025, 0x00000000}},  //   _إذا_, _opći_, أردن_,\n  { {0x614600f4, 0x1603013d, 0x5ce70088, 0x00000000}},  //   _célè, लियर_, нюва,\n  { {0x7d1e3fbb, 0x7bdc0a5e, 0x7bc700ca, 0x00000000}},  //   _cops, ftru, trju,\n  { {0x81dc0055, 0x7aed03b6, 0xf4220044, 0x00000000}},  //   ডিও_, teat, _ভেতর_,\n  { {0xdb070056, 0x00000000, 0x00000000, 0x00000000}},  //   nsjø,   ,   ,\n  { {0xf9930879, 0x6f0d3fbc, 0x7aed038f, 0x00000000}},  // [f8b0] ابر_, _inac, reat,\n  { {0x7bce011c, 0x7aed0032, 0x00000000, 0x00000000}},  //   bubu, seat,   ,\n  { {0x6d473f5f, 0x7aed00ab, 0x6f0d09b0, 0x00000000}},  //   mija, peat, _knac,\n  { {0xdcfe001a, 0x25ad000a, 0x00000000, 0x00000000}},  //   _tipă, _pwel_,   ,\n  { {0xf7700188, 0x6f0d00e7, 0xdb0700ea, 0x00000000}},  //   حال_, _mnac, dsjø,\n  { {0x6d470ade, 0xcd98009b, 0xe4c20194, 0x00000000}},  //   nija, עדות_, айши,\n  { {0x6f0d00d9, 0xdce40089, 0x63ad11af, 0x00000000}},  //   _onac, _etiķ, ćano,\n  { {0x4905001c, 0xd5ac009e, 0x00000000, 0x00000000}},  //   _होतो_, _کہو_,   ,\n  { {0xc69200b6, 0x659508fd, 0x6d470639, 0x00000000}},  //   _כאן_, _разу, kija,\n  { {0x6f0d2d1b, 0x7bdc02d4, 0x00000000, 0x00000000}},  //   _anac, ytru,   ,\n  { {0x7bdc219f, 0x656300c4, 0xbea6007e, 0x00000000}},  //   xtru, monh, канк,\n  { {0x7d1e003b, 0x44270016, 0x7bce0045, 0x00000000}},  //   _sops, myn_, vubu,\n  { {0x6d470089, 0x7d1e00b9, 0x733a0049, 0x00000000}},  //   fija, _pops, _קענס,\n  { {0x6da300e3, 0x6d47006c, 0x7bce01a3, 0x00000000}},  //   рира, gija, tubu,\n  { {0x442736ce, 0x7d1e001a, 0xdc6702dc, 0x00000000}},  //   nyn_, _vops, вард_,\n  { {0x7bce28d4, 0x629b1746, 0xef26014a, 0x00000000}},  //   rubu, ncuo, çüde_,\n  { {0x6d470d0f, 0xe9da1969, 0x7bce1ccf, 0x00000000}},  // [f8c0] bija, ька_, subu,\n  { {0x6d47001e, 0x6f0d0821, 0x6ab6011f, 0x00000000}},  //   cija, _znac, sayf,\n  { {0x2cb8009d, 0x8cd7013d, 0xfaff0023, 0x00000000}},  //   mard_, _बातो, _ikën_,\n  { {0x4427018e, 0xe5c631ca, 0x2cb8009d, 0x00000000}},  //   dyn_, вско, lard_,\n  { {0x2cb80009, 0x6124000a, 0x7ae900f6, 0x00000000}},  //   oard_, _kòlt, _ñeta,\n  { {0x2cb800f4, 0x442733a1, 0xb9070044, 0x00000000}},  //   nard_, fyn_, _মো_,\n  { {0xd9430920, 0x44270016, 0x612400f6, 0x00000000}},  //   _тери, gyn_, _mòlt,\n  { {0x51f80057, 0x236d01d9, 0x2cb805c6, 0x00000000}},  //   ению_, glej_, hard_,\n  { {0x68fc011f, 0x8755005e, 0x2cb800f8, 0x00000000}},  //   _kard, _сърц, kard_,\n  { {0x68fc022b, 0x6f0d0039, 0x4427018e, 0x00000000}},  //   _jard, _snac, byn_,\n  { {0x443803bd, 0x68fc00f4, 0x6d470213, 0x00000000}},  //   _år_, _mard, vija,\n  { {0x645a006b, 0x6d471cc5, 0x68fc0095, 0x00000000}},  //   _ixti, wija, _lard,\n  { {0xa2d703d7, 0x2cb83fbd, 0xb5fd0006, 0x00000000}},  //   _यात्, fard_, _ryšk,\n  { {0x2cb80549, 0x8af0006b, 0xdb1c01a2, 0x00000000}},  //   gard_, hnəd, hrrä,\n  { {0x6d470ade, 0xa5cc013d, 0x25690010, 0x00000000}},  //   rija, _समझौ, múlt_,\n  { {0x68fc2686, 0x6d472f0e, 0x7f560065, 0x00000000}},  //   _aard, sija, _gjyq,\n  { {0x68fc0046, 0x3eb93fbe, 0x27ea023a, 0x00000000}},  // [f8d0] _bard, mast_, _apbn_,\n  { {0x66020190, 0x442700b0, 0xacf5003b, 0x00000000}},  //   dvok, yyn_, _спољ,\n  { {0x68fc0065, 0x6d45002b, 0xdb150010, 0x00000000}},  //   _dard, _imha, lszí,\n  { {0x3eb90bf3, 0xdbd10004, 0x855700a1, 0x00000000}},  //   nast_, _müüg, ھیار_,\n  { {0x44272333, 0x68fc0a18, 0x2d9c0059, 0x00000000}},  //   wyn_, _fard, _čvek_,\n  { {0x7afd3fbf, 0x44272d22, 0x3eb9006c, 0x00000000}},  //   _hast, tyn_, hast_,\n  { {0xe299008b, 0x3eb93fc0, 0x656300c4, 0x00000000}},  //   най_, kast_, ronh,\n  { {0x44270016, 0x3eb93fc1, 0x821900ed, 0x00000000}},  //   ryn_, jast_, ецот_,\n  { {0x645a106f, 0x3eb93fc2, 0x44270056, 0x00000000}},  //   _exti, dast_, syn_,\n  { {0x7afd253f, 0x6033006b, 0x629b0197, 0x00000000}},  //   _last, ləmə, scuo,\n  { {0x3eb91a90, 0x5eab0055, 0x2cb800f4, 0x00000000}},  //   fast_, _কাজে, vard_,\n  { {0x6d4506fb, 0x3eb93696, 0x7521010f, 0x00000000}},  //   _amha, gast_, _holz,\n  { {0x2b490142, 0xc0e500e3, 0xd4910011, 0x00000000}},  //   diac_, _болк, _làm_,\n  { {0x7afd061f, 0x6ed60164, 0x2cb818dc, 0x00000000}},  //   _aast, _भावु, uard_,\n  { {0x75210087, 0x3eb9010e, 0xb7ce0044, 0x00000000}},  //   _molz, bast_, _রন্ট,\n  { {0x68fc04b9, 0x7afd3e56, 0x765b005f, 0x00000000}},  //   _sard, _cast, _oxuy,\n  { {0x68fc010a, 0x7afd3fc3, 0x6720121b, 0x00000000}},  // [f8e0] _pard, _dast, _romj,\n  { {0x63ad0119, 0x68fc006b, 0x7afd3fc4, 0x00000000}},  //   ćanj, _qard, _east,\n  { {0x68fc3fc5, 0x78b5000d, 0x8caa007d, 0x00000000}},  //   _vard, _dezv, _ज्यो,\n  { {0x7afd0599, 0x25a60093, 0x8af0006b, 0x00000000}},  //   _gast, tpol_, yləy,\n  { {0x68fc0325, 0x15d9026c, 0x75210207, 0x00000000}},  //   _tard, ندوں_, _bolz,\n  { {0x25a6023a, 0x75213fc6, 0x7ae401a3, 0x00000000}},  //   rpol_, _colz, lfit,\n  { {0xc61c0055, 0x25a63800, 0x7afd3fc7, 0x00000000}},  //   _দেখা_, spol_, _yast,\n  { {0x7ae41003, 0x436700ec, 0x6136009d, 0x00000000}},  //   nfit, лајн_, _mâle,\n  { {0x3eb9224a, 0x64a60780, 0x14d60167, 0x00000000}},  //   vast_, _база, _مزاح,\n  { {0x20070087, 0x06bc0044, 0x752106f8, 0x00000000}},  //   _brni_, _ইউটি, _golz,\n  { {0x25a40365, 0x04930054, 0x3eb92161, 0x00000000}},  //   _html_, _المح, tast_,\n  { {0x7bc1016c, 0x6fc50061, 0x32060133, 0x00000000}},  //   šluk, _विरं, _troy_,\n  { {0x3eb90004, 0x88cc0044, 0x8af0006b, 0x00000000}},  //   rast_, র্যক, qləy,\n  { {0x798e0009, 0x31650009, 0x3eb93fc8, 0x00000000}},  //   _nibw, colz_, sast_,\n  { {0x3eb900b5, 0x9f6b0131, 0x7ae40aba, 0x00000000}},  //   past_, _приз_, ffit,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x7afd08b2, 0x2b49064f, 0xa99700f3, 0x00000000}},  // [f8f0] _vast, riac_, اشرت,\n  { {0x2b490027, 0x7afd0787, 0x29dd0026, 0x00000000}},  //   siac_, _wast, rìa_,\n  { {0xe79600a1, 0x6033006b, 0x61e00009, 0x00000000}},  //   لانک, təmə, html,\n  { {0x75210059, 0x7afd0051, 0x00000000, 0x00000000}},  //   _solz, _uast,   ,\n  { {0xfad6007b, 0xeef8007b, 0x499300a1, 0x00000000}},  //   _דורך_, טמאר_, _طیار,\n  { {0x69cd018e, 0xc7b70389, 0x6d553fc9, 0x00000000}},  //   mrae, _مصرع, nnza,\n  { {0xc293026c, 0xc6a701fc, 0x752100d9, 0x00000000}},  //   میاب, _брзи, _volz,\n  { {0x130902d3, 0x03250081, 0x00000000, 0x00000000}},  //   тний_, рдин,   ,\n  { {0x651500a1, 0x798e0045, 0x00000000, 0x00000000}},  //   _پوائ, _yibw,   ,\n  { {0x6009102a, 0x29013fca, 0x6609022b, 0x00000000}},  //   вном_, ndha_, _irek,\n  { {0xb4c30164, 0xa2f50769, 0x032b0088, 0x00000000}},  //   ्ली_, _впеч, _підп_,\n  { {0x66090089, 0x6d553fcb, 0x8e86005e, 0x00000000}},  //   _krek, enza, игне,\n  { {0x471a009b, 0x6d8b002b, 0xe28e00e2, 0x00000000}},  //   דורג, _eżam, _фа_,\n  { {0x69cd2333, 0x660909ef, 0x2007012d, 0x00000000}},  //   drae, _mrek, _trni_,\n  { {0x20070e0d, 0x00000000, 0x00000000, 0x00000000}},  //   _urni_,   ,   ,\n  { {0x69cd10af, 0x6d55008e, 0x660919e1, 0x00000000}},  //   frae, anza, _orek,\n  { {0x7ae40065, 0x3946007e, 0x3ead004a, 0x00000000}},  // [f900] rfit, анаг, ñete_,\n  { {0xf092007b, 0x78bb00f4, 0x3b00006b, 0x00000000}},  //   ַנד_, _œuvr, sdiq_,\n  { {0x66090032, 0x98aa0035, 0x798e00e7, 0x00000000}},  //   _arek, _albă_, _vibw,\n  { {0x66e60147, 0x66090635, 0x29110afb, 0x00000000}},  //   рода, _brek, _enza_,\n  { {0x6b8401b5, 0x22a600b9, 0x395809af, 0x00000000}},  //   mmig, níků_, _tjrs_,\n  { {0x6609000c, 0x03c6109e, 0x6b84010e, 0x00000000}},  //   _drek, асим, lmig,\n  { {0xdb150010, 0xd4990088, 0x81d20044, 0x00000000}},  //   lszá, урі_, _হৈং_,\n  { {0x6609009f, 0x6b840211, 0x80d80164, 0x00000000}},  //   _frek, nmig, _माहे,\n  { {0x24f61fa3, 0x6609164d, 0xe5a300ed, 0x00000000}},  //   _вчер, _grek, _мити,\n  { {0xf8b30049, 0x99b10044, 0x6b84010f, 0x00000000}},  //   ֿשר_, _চমৎক, hmig,\n  { {0xb4d20201, 0x88cc0044, 0x00000000, 0x00000000}},  //   वली_, র্থক,   ,\n  { {0x91e60751, 0xdb150010, 0x14170025, 0x00000000}},  //   _воде, kszá, _خيمة_,\n  { {0x51f606b4, 0x9df83fcc, 0x7bce0270, 0x00000000}},  //   _خسار, анят_, erbu,\n  { {0xa3b3007d, 0xc04600a1, 0x69cd321f, 0x00000000}},  //   जीव_, _پختو, vrae,\n  { {0xb17b01ce, 0xf99f000a, 0x00000000, 0x00000000}},  //   _שטור, _erèl_,   ,\n  { {0x69cd158a, 0x9e67026c, 0x4ea700ec, 0x00000000}},  //   trae, _پابن, _трка,\n  { {0x63ad0166, 0x6ce701ff, 0xdb150010, 0x00000000}},  // [f910] ćani, _кіне, gszá,\n  { {0x69cd018e, 0xf8070404, 0x66093fcd, 0x00000000}},  //   rrae, ичен, _rrek,\n  { {0x69cd051c, 0x29011c75, 0x29880545, 0x00000000}},  //   srae, rdha_, рсто_,\n  { {0xdb07000c, 0x69cd04a5, 0x7bd5005d, 0x00000000}},  //   rsjó, prae, muzu,\n  { {0x66050057, 0xdb07000c, 0xaae60167, 0x00000000}},  //   спла, ssjó, _اسپو,\n  { {0x637e0065, 0xb4c3007d, 0xdb1c008e, 0x00000000}},  //   hënd, ्ले_, buró,\n  { {0x637e0023, 0x0394007e, 0x660900d9, 0x00000000}},  //   kënd, орыя, _wrek,\n  { {0x66093fce, 0x612d11ea, 0xfc580104, 0x00000000}},  //   _trek, _túlk, יבוש_,\n  { {0xe1f10025, 0x1306007c, 0x1634007c, 0x00000000}},  //   سسة_, сный_, _детя,\n  { {0x23e701fb, 0x7bd51be0, 0x64a4003b, 0x00000000}},  //   _відв, kuzu, _мађа,\n  { {0x612d0047, 0xe8df001d, 0x4049151c, 0x00000000}},  //   _júli, _ngọc_, упно_,\n  { {0x22950054, 0x7bd5002d, 0x6d8b0066, 0x00000000}},  //   _الإس, duzu, _użaj,\n  { {0x52850054, 0xf99f000a, 0x00000000, 0x00000000}},  //   _الشك, _brèm_,   ,\n  { {0xdca30072, 0x7bd524f9, 0x6136001a, 0x00000000}},  //   зари, fuzu, _vâlc,\n  { {0xd4910011, 0x201800b0, 0x7bd50032, 0x00000000}},  //   _bài_, ärit_, guzu,\n  { {0x2b9c00b9, 0xdb150010, 0xbebb0023, 0x00000000}},  //   _víc_, tszá, skër,\n  { {0x3b07005e, 0xf99f000a, 0x00000000, 0x00000000}},  // [f920] щето_, _frèm_,   ,\n  { {0xdb150047, 0x7bd53fcf, 0x20181afa, 0x00000000}},  //   rszá, buzu, årig_,\n  { {0xdb150010, 0xc6250044, 0x6d4e0142, 0x00000000}},  //   sszá, _মেলা_, miba,\n  { {0x6d4e027c, 0x98b8005d, 0x00000000, 0x00000000}},  //   liba, ızın_,   ,\n  { {0x80d80164, 0x23950089, 0x2cba0022, 0x00000000}},  //   _माले, _māju_, _kepd_,\n  { {0x6d4e1163, 0xb4d2001c, 0xdb05009d, 0x00000000}},  //   niba, वले_, _athè,\n  { {0x69d6008e, 0xa3180131, 0x29370049, 0x00000000}},  //   luye, ижку_, _פאלן_,\n  { {0xe44f0054, 0x7af6009f, 0x6d4e011c, 0x00000000}},  //   عضو_, neyt, hiba,\n  { {0x6d4e1577, 0x69d6038e, 0x94060014, 0x00000000}},  //   kiba, nuye, _گواه,\n  { {0x6d4e2be4, 0x3b0200f6, 0x00000000, 0x00000000}},  //   jiba, _lakq_,   ,\n  { {0x5eaa0055, 0x28dd013d, 0x6d4e07ef, 0x00000000}},  //   _কয়ে, न्टि, diba,\n  { {0xe29a01f9, 0x3f800082, 0x6d4e0328, 0x00000000}},  //   _сад_, _chiu_, eiba,\n  { {0x5186008b, 0x13ad0055, 0x637e008d, 0x00000000}},  //   _лука, _গিয়, rënd,\n  { {0x6d4e0059, 0x7bd5002d, 0xab95003b, 0x00000000}},  //   giba, tuzu, жављ,\n  { {0x2bd90061, 0xdfa60380, 0x7c3402dc, 0x00000000}},  //   बंधा, _احتي, перх,\n  { {0x905700b3, 0xb06500b0, 0x637e0023, 0x00000000}},  //   _לסוף_, seää, qënd,\n  { {0x7bd51bd8, 0x6d4e36dd, 0x69d60011, 0x00000000}},  // [f930] suzu, biba, guye,\n  { {0x2be2013d, 0x127b0049, 0x27050011, 0x00000000}},  //   _पहचा, ראמע, _ồn_,\n  { {0xd4910082, 0x60c70036, 0xaa9519ea, 0x00000000}},  //   _tài_, ójmi, _минч,\n  { {0x69d6008e, 0x2d9b0065, 0x00000000, 0x00000000}},  //   buye, _kuqe_,   ,\n  { {0x2cb20073, 0x35e701fb, 0xf77300a1, 0x00000000}},  //   _ändå_, сцев, _ہار_,\n  { {0x2c8300f4, 0xa50901ee, 0x00000000, 0x00000000}},  //   cédé_, река_,   ,\n  { {0xe3b2026c, 0xdb053fd0, 0x3ea200f8, 0x00000000}},  //   ورٹ_, _athé, yckt_,\n  { {0x29032340, 0x6d4e006b, 0x644f0036, 0x00000000}},  //   _haja_, ziba, _ścis,\n  { {0x6d4e0009, 0x612d0010, 0x00000000, 0x00000000}},  //   yiba, _múlv,   ,\n  { {0x290302e0, 0x95570151, 0x3f800023, 0x00000000}},  //   _jaja_, _اخرا, _shiu_,\n  { {0x3d1d007d, 0xe73000a1, 0x6d4e3fd1, 0x00000000}},  //   माने_, _غصہ_, viba,\n  { {0x3f6a0931, 0x6d4e3fd2, 0x3e8a004d, 0x00000000}},  //   римо_, wiba, ийно_,\n  { {0xc332009b, 0x5fc5006e, 0x7c2e0016, 0x00000000}},  //   _קוד_, _विकल, wybr,\n  { {0x2903010f, 0x61fb1725, 0x69d60009, 0x00000000}},  //   _naja_, mwul, vuye,\n  { {0x69cb0219, 0x6d4e3fd3, 0xfc0300ed, 0x00000000}},  //   ágen, riba, мпро,\n  { {0x6d4e0006, 0xdb1c000c, 0x69d63fd4, 0x00000000}},  //   siba, gurð, tuye,\n  { {0x29033026, 0x2d930601, 0x7af6000c, 0x00000000}},  // [f940] _baja_, _fixe_, reyt,\n  { {0x38cb06c6, 0x29030211, 0x69d63fd5, 0x00000000}},  //   لامی_, _caja_, ruye,\n  { {0x6f040066, 0xdb1c000c, 0xeb9a003b, 0x00000000}},  //   _kaic, burð, _њим_,\n  { {0x69d6009d, 0x9411006b, 0xeab20025, 0x00000000}},  //   puye, _üzə_, _تعد_,\n  { {0x6f04001a, 0x29031ae2, 0x442e0016, 0x00000000}},  //   _maic, _faja_, wyf_,\n  { {0x6f0410d9, 0x69c4002b, 0x29030b2e, 0x00000000}},  //   _laic, msie, _gaja_,\n  { {0x69c40007, 0x6f1617cf, 0x78bc0026, 0x00000000}},  //   lsie, _onyc, _ierv,\n  { {0x44200119, 0x442e0343, 0x31c602d3, 0x00000000}},  //   ći_, ryf_, осов,\n  { {0x69c41aef, 0x78bc0095, 0x290300e7, 0x00000000}},  //   nsie, _kerv, _yaja_,\n  { {0x69c43fd6, 0x67221da2, 0x6f160284, 0x00000000}},  //   isie, ljoj, _anyc,\n  { {0xa2e6012b, 0x78bc11a1, 0x6f043fd7, 0x00000000}},  //   _можд, _merv, _baic,\n  { {0x69c4055f, 0x7528016c, 0x93fb009b, 0x00000000}},  //   ksie, _hodz, _כלבי,\n  { {0xada4007e, 0x76420c97, 0x6f042139, 0x00000000}},  //   маўл, nzoy, _daic,\n  { {0x3af50011, 0x2369183b, 0x00000000, 0x00000000}},  //   _ấp_, čaje_,   ,\n  { {0x29030127, 0x69c40bd7, 0x6f041f74, 0x00000000}},  //   _raja_, esie, _faic,\n  { {0x29030149, 0x31a001aa, 0x6d5e00f6, 0x00000000}},  //   _saja_, _kòz_, _ejpa,\n  { {0x78bc0093, 0x67221c70, 0x2903008e, 0x00000000}},  // [f950] _berv, djoj, _paja_,\n  { {0x48ab0888, 0x75280267, 0x26df0258, 0x00000000}},  //   ртам_, _nodz, _scuo_,\n  { {0x78bc0030, 0x29033fd8, 0x69c43fd9, 0x00000000}},  //   _derv, _vaja_, asie,\n  { {0x290306fe, 0x67220065, 0x753a002d, 0x00000000}},  //   _waja_, gjoj, _altz,\n  { {0x78bc00c4, 0xa3dd0061, 0x29030145, 0x00000000}},  //   _ferv, थून_, _taja_,\n  { {0x78bc000c, 0x75280036, 0x64a50c4e, 0x00000000}},  //   _gerv, _codz, чака,\n  { {0x612d167d, 0x0edb0061, 0x7d0515df, 0x00000000}},  //   _múlt, _भांड, _mahs,\n  { {0xdce7016c, 0xbfa30082, 0x799d3fda, 0x00000000}},  //   dojč, _diễ, _kusw,\n  { {0xe4e70099, 0x4cd30044, 0x6f041965, 0x00000000}},  //   _міжн, দ্যু, _raic,\n  { {0x75280046, 0x7d05002b, 0x799d0020, 0x00000000}},  //   _godz, _nahs, _musw,\n  { {0x63ad0243, 0x6f040048, 0x6abd01c3, 0x00000000}},  //   ćans, _paic, _oesf,\n  { {0x67290066, 0x75280006, 0xe3b00151, 0x00000000}},  //   _joej, _zodz, _شرم_,\n  { {0x7d05014a, 0x799d0022, 0x6f0400c8, 0x00000000}},  //   _bahs, _nusw, _vaic,\n  { {0xcfe9007a, 0x612d0051, 0x3f9c00e7, 0x00000000}},  //   _هفته_, _cúlt, _fuvu_,\n  { {0x799d001f, 0x6f0401eb, 0x60c10173, 0x00000000}},  //   _ausw, _taic, malm,\n  { {0x3f670265, 0x69c4095c, 0x799d0093, 0x00000000}},  //   _нищо_, tsie, _busw,\n  { {0x6abd332a, 0x78bc2e92, 0x79953fdb, 0x00000000}},  // [f960] _desf, _perv, _bizw,\n  { {0x01bd0055, 0x69c40007, 0x7aef001c, 0x00000000}},  //   _আমাদ, rsie, _ebct,\n  { {0x75280046, 0x78bc049b, 0x28e20204, 0x00000000}},  //   _rodz, _verv, _पाठि,\n  { {0x320f158d, 0xe61a0e85, 0x673b001a, 0x00000000}},  //   _orgy_, йде_, _cluj,\n  { {0x78bc3fdc, 0x75280667, 0x60c10047, 0x00000000}},  //   _terv, _podz, kalm,\n  { {0x3ae8026c, 0x994f005d, 0x60c1002b, 0x00000000}},  //   _ابھی_, müş_, jalm,\n  { {0x8af0005f, 0x60c10047, 0x673b008e, 0x00000000}},  //   ynəl, dalm, _fluj,\n  { {0xdce70091, 0x320f3663, 0x31a001aa, 0x00000000}},  //   vojč, _brgy_, _pòz_,\n  { {0x2576007a, 0x3f9c016c, 0x60c10d16, 0x00000000}},  //   _فهرس, _suvu_, falm,\n  { {0x60c10047, 0xe1ef0380, 0x64a300ed, 0x00000000}},  //   galm, اسي_, _зафа,\n  { {0x64430046, 0x06e30055, 0x7d0501a3, 0x00000000}},  //   czni, _নোটি, _rahs,\n  { {0x987b009b, 0x60c1006c, 0x6d5c00b0, 0x00000000}},  //   מריק, aalm, enra,\n  { {0x60c127f5, 0x6abd1824, 0x0e3401ab, 0x00000000}},  //   balm, _resf, еняю,\n  { {0x60c10e32, 0x799d24a8, 0x5ba70888, 0x00000000}},  //   calm, _rusw, зраз,\n  { {0x961d0089, 0x799d1164, 0x3e850089, 0x00000000}},  //   _izņe, _susw, _sūtī_,\n  { {0x799501c3, 0x905b009b, 0x2b400048, 0x00000000}},  //   _sizw, _לכות, ghic_,\n  { {0x433b0049, 0x78a50190, 0x7d050b2b, 0x00000000}},  // [f970] צעמב, tchv, _tahs,\n  { {0x673b001a, 0x67290022, 0x9cf5007e, 0x00000000}},  //   _sluj, _soej, _ўзні,\n  { {0x673b0129, 0x78a50b3a, 0x6abd0190, 0x00000000}},  //   _pluj, rchv, _tesf,\n  { {0xf770023c, 0x6d8b002b, 0x06751280, 0x00000000}},  //   هان_, _eżat, муля,\n  { {0x7aed1f4c, 0xc1780006, 0x7bc70dbf, 0x00000000}},  //   mfat, klė_, lsju,\n  { {0x7aed0133, 0x00000000, 0x00000000, 0x00000000}},  //   lfat,   ,   ,\n  { {0x60c103b6, 0x7bc700f8, 0x6729046a, 0x00000000}},  //   valm, nsju, _toej,\n  { {0x7aed0039, 0x60c1002b, 0x613f009d, 0x00000000}},  //   nfat, walm, _mêle,\n  { {0x60c1147e, 0x7aed018e, 0x45d400ed, 0x00000000}},  //   talm, ifat, _потс,\n  { {0xe1250088, 0x3ea924d6, 0x26cd0145, 0x00000000}},  //   ємни, _afat_, _hdeo_,\n  { {0x60c116df, 0xf770026c, 0xf99f01aa, 0x00000000}},  //   ralm, _شاہ_, _grèv_,\n  { {0xd24e06c6, 0x60c10052, 0x994f0180, 0x00000000}},  //   انی_, salm, yüş_,\n  { {0x612d0048, 0x00000000, 0x00000000, 0x00000000}},  //   _dúlr,   ,   ,\n  { {0x61e90e66, 0xeb9a1b89, 0x00000000, 0x00000000}},  //   mtel, жив_,   ,\n  { {0x7aed095f, 0x8b9600ed, 0x2b400133, 0x00000000}},  //   ffat, драч, thic_,\n  { {0x25ad014a, 0x7e7600b0, 0x61e90032, 0x00000000}},  //   _otel_, _tyyp, otel,\n  { {0x61e9000d, 0x794001a2, 0x092a060e, 0x00000000}},  // [f980] ntel, _löwe, ожай_,\n  { {0x994f0279, 0xe9d7165b, 0x23600825, 0x00000000}},  //   rüş_, ьку_, čiji_,\n  { {0x61e9003c, 0x2b4000ab, 0xad1b01ce, 0x00000000}},  //   htel, phic_, _וויר,\n  { {0x7bdc01a3, 0x25ad0022, 0x48fa013d, 0x00000000}},  //   muru, _btel_, _उसको_,\n  { {0x7bdc0149, 0x80c30055, 0xb0dd013d, 0x00000000}},  //   luru, _শান্, _मांग,\n  { {0xf99f01aa, 0x6d8b002b, 0x61e92dbb, 0x00000000}},  //   _prèv_, _użat, dtel,\n  { {0x7bdc0149, 0x61e9095c, 0xdce70089, 0x00000000}},  //   nuru, etel, nojā,\n  { {0x61e90056, 0xbebb0023, 0x00000000, 0x00000000}},  //   ftel, gjël,   ,\n  { {0x7bdc1ac5, 0x057601d8, 0x61e91267, 0x00000000}},  //   huru, _قائد, gtel,\n  { {0x7bdc1bbf, 0x23690f3a, 0x3ea9001a, 0x00000000}},  //   kuru, čaja_, _sfat_,\n  { {0x61e90142, 0xa2d70061, 0x3f523cda, 0x00000000}},  //   atel, _याच्, ršun_,\n  { {0xdb150010, 0x69d60023, 0xf99f0173, 0x00000000}},  //   sszú, krye, _krèt_,\n  { {0x61e9000d, 0x7e2b007e, 0x00000000, 0x00000000}},  //   ctel, ціна_,   ,\n  { {0xd01002fd, 0x961d0089, 0xc05a0088, 0x00000000}},  //   _ملت_, _uzņe, _мій_,\n  { {0x7bdc022b, 0xdd94007e, 0x00000000, 0x00000000}},  //   guru, тары,   ,\n  { {0xd1381f00, 0x7bc71d43, 0x00000000, 0x00000000}},  //   lką_, rsju,   ,\n  { {0x0dbb06c6, 0xf99f04bd, 0x7aed05fe, 0x00000000}},  // [f990] _باعث_, _què_, rfat,\n  { {0x7bdc022b, 0xd1380bd7, 0x7aed01bc, 0x00000000}},  //   buru, nką_, sfat,\n  { {0x25ad0100, 0x61e93fdd, 0x7bdc2ac7, 0x00000000}},  //   _stel_, ztel, curu,\n  { {0x29070340, 0x61e90036, 0x98bf005a, 0x00000000}},  //   žna_, ytel, ırın_,\n  { {0xd2460054, 0x6b8d00f4, 0x79a400ed, 0x00000000}},  //   _إن_, mmag, _арсе,\n  { {0x3878009f, 0x0608008b, 0xf99f0173, 0x00000000}},  //   _fyrr_, ьнік_, _drèt_,\n  { {0x36d503f3, 0x9f463fde, 0x61e901f3, 0x00000000}},  //   _повр, stlé_, wtel,\n  { {0x61e906d5, 0x6b8d3fdf, 0xf99f01aa, 0x00000000}},  //   ttel, nmag, _frèt_,\n  { {0x6b8d0111, 0x61e900c7, 0x6d553fe0, 0x00000000}},  //   imag, utel, kiza,\n  { {0x7bdc005a, 0x320d294b, 0x70d90061, 0x00000000}},  //   yuru, rvey_, ढलेल,\n  { {0x6d550213, 0xdbd703b6, 0x5ee10204, 0x00000000}},  //   diza, _jääv, _काश्_,\n  { {0x61e9283e, 0x9f480030, 0x7bdc0cd7, 0x00000000}},  //   ptel, _opnå_, vuru,\n  { {0xee373fe1, 0x6d553fe2, 0x6b8d0239, 0x00000000}},  //   еня_, fiza, dmag,\n  { {0x7bdc01a3, 0x6d550bb2, 0x63a10a0e, 0x00000000}},  //   turu, giza, _kuln,\n  { {0x6b8d000c, 0x629c00b9, 0x6b66005c, 0x00000000}},  //   fmag, ěrov, еква,\n  { {0x28e2001c, 0xab2700d1, 0x7bdc04cb, 0x00000000}},  //   _पाहि, носа_, ruru,\n  { {0x2d96222e, 0xe9da0265, 0x7bdc0169, 0x00000000}},  // [f9a0] _прос, яка_, suru,\n  { {0x6d553673, 0x7bdc002d, 0x186a005e, 0x00000000}},  //   ciza, puru, пази_,\n  { {0x3d1d0061, 0x31360049, 0x5975007e, 0x00000000}},  //   मारे_, ענעם_, тыту,\n  { {0xf99f0263, 0x6b8d00fa, 0x00000000, 0x00000000}},  //   _prèt_, cmag,   ,\n  { {0xba9b00a0, 0x6a9b00b3, 0x2d9a3fe3, 0x00000000}},  //   _מסכי, _משכנ, _kipe_,\n  { {0x9633008b, 0x83f80069, 0x63a11a16, 0x00000000}},  //   ыніц, декс_, _buln,\n  { {0x7696011f, 0x63a1016c, 0x00000000, 0x00000000}},  //   _büyü, _culn,   ,\n  { {0x290a0760, 0xf99f1e83, 0xd1380036, 0x00000000}},  //   _haba_, _grès_, wką_,\n  { {0x05660269, 0xd250007a, 0x6d5501aa, 0x00000000}},  //   _зван, شند_, yiza,\n  { {0xd1380006, 0x2d9a00e7, 0x660200e7, 0x00000000}},  //   uką_, _nipe_, mwok,\n  { {0xd1380bd7, 0x290a0022, 0x6b8d0232, 0x00000000}},  //   rką_, _maba_, ymag,\n  { {0x290a359e, 0xd1380a67, 0xdb1c0210, 0x00000000}},  //   _laba_, ską_, nsrä,\n  { {0x6b43006c, 0xb7f60044, 0x8233031d, 0x00000000}},  //   _jõge, ঘটিত_, _مروا,\n  { {0x290a0225, 0x2c0d0061, 0x2d9a0026, 0x00000000}},  //   _naba_, हिलं_, _cipe_,\n  { {0x291f0011, 0x2d9a0022, 0x68fe01c3, 0x00000000}},  //   _đua_, _dipe_, depd,\n  { {0x6d553fe4, 0x6b8d00e0, 0xaf370439, 0x00000000}},  //   siza, umag, _سرعت,\n  { {0x290a06fe, 0x6d55008e, 0xdb1c0039, 0x00000000}},  // [f9b0] _baba_, piza, dsrä,\n  { {0x3eb9001f, 0x602a006b, 0xdbd700b0, 0x00000000}},  //   lbst_, həmm, _pääv,\n  { {0xb9090201, 0x290a3fe5, 0xf99f146b, 0x00000000}},  //   _या_, _daba_, _près_,\n  { {0x613f009d, 0x00000000, 0x00000000, 0x00000000}},  //   _mêla,   ,   ,\n  { {0xa50901f9, 0x5b14005e, 0x3eb901a2, 0x00000000}},  //   дела_, _смят, ibst_,\n  { {0xf99f000a, 0x290a3fe6, 0x00000000, 0x00000000}},  //   _frèr_, _gaba_,   ,\n  { {0xf99f028c, 0x3ce903d7, 0xe4c80439, 0x00000000}},  //   _très_, _जाने_, ربون_,\n  { {0x63a106c2, 0x3f89001d, 0x290a0107, 0x00000000}},  //   _vuln, _nhau_, _zaba_,\n  { {0x33920025, 0x1306007c, 0x290a0061, 0x00000000}},  //   جليز, тный_, _yaba_,\n  { {0x63a1006c, 0x290a01f3, 0x00000000, 0x00000000}},  //   _tuln, _xaba_,   ,\n  { {0x3f6a003b, 0x602a006b, 0xdb0e0203, 0x00000000}},  //   дино_, qəml, msbö,\n  { {0xbebb0065, 0x3f89307a, 0x00000000, 0x00000000}},  //   njëh, _chau_,   ,\n  { {0x28e20164, 0xdb1c2229, 0x00000000, 0x00000000}},  //   _पालि, nsrå,   ,\n  { {0x3afc0082, 0xde030545, 0x00000000, 0x00000000}},  //   _ập_, јпри,   ,\n  { {0x290a002b, 0x00000000, 0x00000000, 0x00000000}},  //   _raba_,   ,   ,\n  { {0x290a0020, 0xf8b90082, 0x60c300be, 0x00000000}},  //   _saba_, _đũa_, _henm,\n  { {0xc3320104, 0x2d9a19ed, 0x60c31243, 0x00000000}},  // [f9c0] בון_, _tipe_, _kenm,\n  { {0x3ce9006e, 0x60c30022, 0xb4c20061, 0x00000000}},  //   _जाये_, _jenm, _्ये_,\n  { {0x290a006c, 0x60c301aa, 0xdb1c04ce, 0x00000000}},  //   _vaba_, _menm, tsrä,\n  { {0x290a0009, 0x60c30173, 0x6b43006c, 0x00000000}},  //   _waba_, _lenm, _põge,\n  { {0x290a011c, 0x66e3013b, 0x7ae400e0, 0x00000000}},  //   _taba_, роча, mgit,\n  { {0x7ae4006c, 0xcdb7009b, 0x66020093, 0x00000000}},  //   lgit, דפסה_, rwok,\n  { {0x66020022, 0x00000000, 0x00000000, 0x00000000}},  //   swok,   ,   ,\n  { {0xd5b2007a, 0x7ae43fe7, 0x68e101e5, 0x00000000}},  //   _نفر_, ngit, _öldr,\n  { {0xe5a63fe8, 0x799c0045, 0x60c30095, 0x00000000}},  //   _ризи, _kirw, _benm,\n  { {0x3ea000f4, 0xc3d6007e, 0x00000000, 0x00000000}},  //   _agit_, _аўды,   ,\n  { {0x60c307f4, 0x41d4024c, 0x70540879, 0x00000000}},  //   _denm, _दिवस, انجا,\n  { {0x60c30250, 0x20070022, 0x26c400ca, 0x00000000}},  //   _eenm, _dsni_, _jemo_,\n  { {0x26c401c5, 0x3eb9010f, 0x60c30173, 0x00000000}},  //   _memo_, rbst_, _fenm,\n  { {0x60c30190, 0x799c0093, 0x61e0063f, 0x00000000}},  //   _genm, _nirw, muml,\n  { {0x2d4d0107, 0x60c800ea, 0x3f890082, 0x00000000}},  //   džet_, madm, _thau_,\n  { {0xeab30054, 0x7ae40197, 0x26c40253, 0x00000000}},  //   شعر_, ggit, _nemo_,\n  { {0x61e00095, 0x6f0d00e5, 0x00000000, 0x00000000}},  // [f9d0] numl, _iaac,   ,\n  { {0x58b80054, 0x3ad30011, 0xd8b80025, 0x00000000}},  //   نامج_, ệp_, ندما_,\n  { {0xd7d50098, 0x637e0065, 0x61e00279, 0x00000000}},  //   ужењ, rënj, huml,\n  { {0x26c4037e, 0x23660091, 0x61e00089, 0x00000000}},  //   _cemo_, _njoj_, kuml,\n  { {0x61e006a7, 0x80c30044, 0x799c228c, 0x00000000}},  //   juml, _শাস্, _firw,\n  { {0xa3e90887, 0x6b9d0058, 0x6f0d01c5, 0x00000000}},  //   едка_, _hisg, _laac,\n  { {0x60c30263, 0x29013fe9, 0xe4e40088, 0x00000000}},  //   _renm, meha_, річн,\n  { {0x44290119, 0x6aad00f6, 0x60c30173, 0x00000000}},  //   ća_, ncaf, _senm,\n  { {0x6b9d2008, 0x60c31bcb, 0x69cd0016, 0x00000000}},  //   _misg, _penm, nsae,\n  { {0x81450014, 0x29012e55, 0x66090c21, 0x00000000}},  //   اندن, neha_, _isek,\n  { {0x68e50051, 0x6f0d0087, 0x6aad3be4, 0x00000000}},  //   ighd, _baac, kcaf,\n  { {0xe1f1007a, 0x29cf001e, 0x8af0006b, 0x00000000}},  //   _هست_, kļa_, nnət,\n  { {0x8e5601ff, 0x60c300b5, 0x60c80145, 0x00000000}},  //   утні, _tenm, badm,\n  { {0x6da31e6a, 0x29010243, 0x6b9d0051, 0x00000000}},  //   сира, jeha_, _aisg,\n  { {0x8c43005e, 0x09cc0061, 0x656300ea, 0x00000000}},  //   бере, ाळ्य, innh,\n  { {0x6b9d0026, 0x6aaf0045, 0x00000000, 0x00000000}},  //   _cisg, _cfcf,   ,\n  { {0x7ae4006c, 0xc33200b3, 0x6b9d02f1, 0x00000000}},  // [f9e0] rgit, זון_, _disg,\n  { {0x26c402c9, 0x00000000, 0x00000000, 0x00000000}},  //   _semo_,   ,   ,\n  { {0x3ce902fb, 0x6b9d00dc, 0x61e00213, 0x00000000}},  //   _जाते_, _fisg, zuml,\n  { {0x7bdb00a0, 0x7bce00ea, 0x6aad0197, 0x00000000}},  //   _אקטו, msbu, ccaf,\n  { {0x7bce00f8, 0x26c40059, 0x66093fea, 0x00000000}},  //   lsbu, _vemo_, _csek,\n  { {0x18a30264, 0x2901016c, 0x15b9007e, 0x00000000}},  //   _гарм, ceha_, тыцы_,\n  { {0x26c401d9, 0xec360049, 0x7bce0125, 0x00000000}},  //   _temo_, טאַר_, nsbu,\n  { {0x53340478, 0xb0420082, 0xf7430a85, 0x00000000}},  //   реит, _ngưở, _лесо,\n  { {0x602a006b, 0x00000000, 0x00000000, 0x00000000}},  //   məmi,   ,   ,\n  { {0x61e0011f, 0x7f44301e, 0x2154007e, 0x00000000}},  //   ruml, _aliq, ркоў,\n  { {0x637e0065, 0x7bce0521, 0xd8db0049, 0x00000000}},  //   hëni, jsbu, עקטר,\n  { {0x7f443feb, 0x60c80056, 0x395a00ab, 0x00000000}},  //   _cliq, sadm, hips_,\n  { {0x6b9d005b, 0x2d4d04eb, 0x00000000, 0x00000000}},  //   _risg, džer_,   ,\n  { {0x3d0f013d, 0x6f0d0020, 0xdb150a36, 0x00000000}},  //   ायें_, _waac, sszü,\n  { {0x6f0d001c, 0x602a006b, 0xbc9500ed, 0x00000000}},  //   _taac, kəmi, равј,\n  { {0x6d470048, 0x290100e7, 0x00000000, 0x00000000}},  //   shja, weha_,   ,\n  { {0xb955005e, 0x6b9d008f, 0x7bce00ea, 0x00000000}},  // [f9f0] аващ, _visg, asbu,\n  { {0xdb150010, 0x395a2009, 0x6b9d3416, 0x00000000}},  //   tszó, gips_, _wisg,\n  { {0x6d45005f, 0x290125ba, 0x660904b3, 0x00000000}},  //   _ilha, reha_, _ssek,\n  { {0x657a01f3, 0x6b9d04df, 0xa615007c, 0x00000000}},  //   _akth, _uisg, имеч,\n  { {0x3d0a001c, 0x29011dbd, 0xceb400a3, 0x00000000}},  //   ायचे_, peha_, ציס_,\n  { {0xdfc605f3, 0x66090059, 0x290f0089, 0x00000000}},  //   _وي_, _vsek, ēgas_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x2b490082, 0x657a00ea, 0x613f00c4, 0x00000000}},  //   nhac_, _ekth, _pêlo,\n  { {0x6d450181, 0xb1450407, 0x8cba013d, 0x00000000}},  //   _olha, инил, ्रमो,\n  { {0xe9ff0011, 0x00000000, 0x00000000, 0x00000000}},  //   _giấc_,   ,   ,\n  { {0x0467003b, 0xb4d10204, 0x7f4400f6, 0x00000000}},  //   _стам, वणी_, _pliq,\n  { {0x6d4501a3, 0x2f560088, 0x823400a2, 0x00000000}},  //   _alha, ртос, _گرما,\n  { {0x9394025a, 0x6da602dc, 0xdb1c00ea, 0x00000000}},  //   _اجلا, рига, msrø,\n  { {0x8234007a, 0x2d9e059f, 0xc0e20500, 0x00000000}},  //   _درما, öte_, _дошк,\n  { {0x3079007b, 0xb7b00055, 0x20790049, 0x00000000}},  //   _באַנ, _চট্ট, _באַא,\n  { {0x6d450010, 0xbb4300ed, 0x7bdc0288, 0x00000000}},  //   _elha, оеск, rrru,\n  { {0x395a0039, 0xeb970057, 0x3b0700e3, 0x00000000}},  // [fa00] tips_, рит_, шето_,\n  { {0x1aee0044, 0x7bce0146, 0x00000000, 0x00000000}},  //   _চোখে_, psbu,   ,\n  { {0x602a006b, 0xc796007e, 0x395a0f12, 0x00000000}},  //   təmi, арды, rips_,\n  { {0x28e202fb, 0x09e6007c, 0x2b4900b4, 0x00000000}},  //   _पाकि, _комн, chac_,\n  { {0x613f01c3, 0x224d1282, 0x00000000, 0x00000000}},  //   _pêll, jzek_,   ,\n  { {0x6d5c0213, 0x2b400fdf, 0x00000000, 0x00000000}},  //   nira, lkic_,   ,\n  { {0x0fe00055, 0xaaaa007d, 0x4aaa01f5, 0x00000000}},  //   _বন্ধ, _कलाक, _कलाव,\n  { {0x6d5c3fec, 0x320a0036, 0x2b400521, 0x00000000}},  //   hira, łbym_, nkic_,\n  { {0x6d5c04be, 0xd5a40014, 0x21660c65, 0x00000000}},  //   kira, _طلای, итог,\n  { {0x6d5c00f0, 0x3253007e, 0x09f7009b, 0x00000000}},  //   jira, івэр, סמים_,\n  { {0x9406007a, 0x13060265, 0x506600ed, 0x00000000}},  //   _خواه, _взем, ртпа,\n  { {0x6d5c00c4, 0xd4910011, 0xc2e90025, 0x00000000}},  //   eira, _này_, _معهم_,\n  { {0x6d5c00ee, 0x224d0036, 0x5186003b, 0x00000000}},  //   fira, czek_, _кука,\n  { {0x657d048a, 0x6d5c3fed, 0x00000000, 0x00000000}},  //   _ësht, gira,   ,\n  { {0x443c0047, 0xb0b7009b, 0x00000000, 0x00000000}},  //   nyv_, _דפוס_,   ,\n  { {0x4fb301fa, 0x7e6d022b, 0x3ce90204, 0x00000000}},  //   _بصور, _txap, _जावे_,\n  { {0x6d5c3fee, 0x63a8106b, 0x2df500a1, 0x00000000}},  // [fa10] bira, _ludn, _آخر,\n  { {0x23692794, 0x6d5c0340, 0x00000000, 0x00000000}},  //   čaji_, cira,   ,\n  { {0x2d831279, 0x57f5013b, 0x69c00023, 0x00000000}},  //   mlje_, спет, _çmen,\n  { {0xd366023c, 0x2d830065, 0x2b40016c, 0x00000000}},  //   _ره_, llje_, ckic_,\n  { {0xa99700a6, 0x201a0e0d, 0x00000000, 0x00000000}},  //   _نشست, _špil_,   ,\n  { {0x3a3600b3, 0xb4d10061, 0x63a80091, 0x00000000}},  //   _הרשם_, वणे_, _budn,\n  { {0xbebb0065, 0x63a80091, 0x6e3d005b, 0x00000000}},  //   njës, _cudn, hysb,\n  { {0x6d5c3fef, 0x224d002d, 0x29110010, 0x00000000}},  //   zira, tzek_, _haza_,\n  { {0x6d5c3645, 0x2911014a, 0x00000000, 0x00000000}},  //   yira, _kaza_,   ,\n  { {0x661b0288, 0x77b301f3, 0x29113ff0, 0x00000000}},  //   _iruk, _eħxe, _jaza_,\n  { {0x224d115b, 0x9327025a, 0x29110dec, 0x00000000}},  //   szek_, _پران, _maza_,\n  { {0x6d5c20bc, 0x661b00f8, 0x69dd0061, 0x00000000}},  //   wira, _kruk, _पिढी,\n  { {0x6d5c3ff1, 0xf1a7012b, 0x23740025, 0x00000000}},  //   tira, _трен, _بالح,\n  { {0x628b0825, 0x661b3ff2, 0x7c3c05b7, 0x00000000}},  //   _izgo, _mruk, tyrr,\n  { {0x6d5c3d7f, 0x8c432308, 0x92e90055, 0x00000000}},  //   rira, пере, য়ী_,\n  { {0xaec6013b, 0xce5a0014, 0x6d5c046e, 0x00000000}},  //   _убил, _مشخص_, sira,\n  { {0x29112d02, 0x2d830ce4, 0x2b40016c, 0x00000000}},  // [fa20] _baza_, blje_, rkic_,\n  { {0xeeeb001d, 0x4a4300ed, 0x2911008e, 0x00000000}},  //   ượng_, чнув, _caza_,\n  { {0x3ead1581, 0x661b010e, 0x9b4603ec, 0x00000000}},  //   žete_, _aruk, _هندو,\n  { {0x661b0c64, 0x63a800ee, 0x6f060107, 0x00000000}},  //   _bruk, _rudn, nekc,\n  { {0x2911093e, 0x991601fb, 0x6b840039, 0x00000000}},  //   _faza_, _льві, mlig,\n  { {0x6b840018, 0x661b0046, 0x29113ff3, 0x00000000}},  //   llig, _druk, _gaza_,\n  { {0x68ee0009, 0xd37a17a4, 0x00000000, 0x00000000}},  //   _icbd, лчи_,   ,\n  { {0x6b840239, 0x661b00d8, 0x938a007c, 0x00000000}},  //   nlig, _fruk, ысла_,\n  { {0xcb13009b, 0x29110276, 0x6d8000b0, 0x00000000}},  //   ללה_, _yaza_, löau,\n  { {0x3a3700b6, 0x63a80047, 0x6b8414c3, 0x00000000}},  //   צרים_, _tudn, hlig,\n  { {0xe97b007b, 0x2d830825, 0x6b840039, 0x00000000}},  //   רניש, vlje_, klig,\n  { {0x6b84033d, 0x8f470057, 0x88ae0044, 0x00000000}},  //   jlig, сход, গরিক,\n  { {0x6b8405fe, 0x7f5d009d, 0x81a60025, 0x00000000}},  //   dlig, risq, _احصل,\n  { {0x63a23945, 0xd7d80061, 0x6b650006, 0x00000000}},  //   _hion, डळाच, mėgi,\n  { {0x63a20e10, 0x29111632, 0x7bda1088, 0x00000000}},  //   _kion, _raza_, štun,\n  { {0x6b8427a1, 0x63a20020, 0x2d830243, 0x00000000}},  //   glig, _jion, slje_,\n  { {0x63a22302, 0x2d830c1e, 0x2911001a, 0x00000000}},  // [fa30] _mion, plje_, _paza_,\n  { {0x63a21063, 0x3947081d, 0x6b843ff4, 0x00000000}},  //   _lion, óns_, alig,\n  { {0x6b840282, 0xe78701e1, 0x7d07050f, 0x00000000}},  //   blig, будо, mejs,\n  { {0x63a200e7, 0x7d070253, 0x61e0012d, 0x00000000}},  //   _nion, lejs, krml,\n  { {0x2911008e, 0xd6290aed, 0x62821b87, 0x00000000}},  //   _taza_, роле_, _nyoo,\n  { {0x81b70055, 0x628b00f5, 0x63a20258, 0x00000000}},  //   _ছিল_, _rzgo, _aion,\n  { {0xf8ae06c6, 0x63a20207, 0x62820022, 0x00000000}},  //   _شکل_, _bion, _ayoo,\n  { {0x661b1e4a, 0x63a20051, 0xf77300a6, 0x00000000}},  //   _truk, _cion, _راز_,\n  { {0x661b0061, 0x26cf00d6, 0x63a23ff5, 0x00000000}},  //   _uruk, mago_, _dion,\n  { {0x92e908b7, 0x26cf29d8, 0x628b0059, 0x00000000}},  //   য়ে_, lago_, _vzgo,\n  { {0x5f06102a, 0x63a20051, 0x6b840784, 0x00000000}},  //   озна, _fion, ylig,\n  { {0x26cf0d58, 0x7c2a0129, 0x63a21746, 0x00000000}},  //   nago_, _àfri, _gion,\n  { {0x6b8401bf, 0x23780010, 0x628b3ff6, 0x00000000}},  //   vlig, _írja_, _uzgo,\n  { {0x7afd23b9, 0x23690825, 0x63a2142e, 0x00000000}},  //   _abst, čaju_, _zion,\n  { {0x6b8402e1, 0x26cf0173, 0xdca3007c, 0x00000000}},  //   tlig, kago_, дари,\n  { {0xeeeb0011, 0x26cf00ca, 0x7bda007f, 0x00000000}},  //   ưỡng_, jago_, štuo,\n  { {0x6b8427a1, 0x26cf002d, 0x00000000, 0x00000000}},  // [fa40] rlig, dago_,   ,\n  { {0x6b8406d3, 0x7afd0058, 0xf99f000a, 0x00000000}},  //   slig, _ebst, _krèy_,\n  { {0xb9020754, 0x6b8401bf, 0xcc8a0014, 0x00000000}},  //   _नए_, plig, _خنده_,\n  { {0xe61a0072, 0x06860264, 0xf99f000a, 0x00000000}},  //   иде_, оген, _apèd_,\n  { {0x63a202c9, 0x00000000, 0x00000000, 0x00000000}},  //   _rion,   ,   ,\n  { {0x6d4e0082, 0x00000000, 0x00000000, 0x00000000}},  //   nhba,   ,   ,\n  { {0xf7460216, 0x26cf006a, 0x53e6007e, 0x00000000}},  //   _дево, bago_, іцка,\n  { {0x26cf00ab, 0x7d07281a, 0x38cb00a1, 0x00000000}},  //   cago_, zejs, _ماہی_,\n  { {0x63a2000b, 0x0566132e, 0x416a003b, 0x00000000}},  //   _vion, _дван, ијом_,\n  { {0x321d018e, 0x929d0046, 0x201c01d9, 0x00000000}},  //   _drwy_, pełn, _prvi_,\n  { {0x63a22a9b, 0x6d4e0051, 0xf8b30104, 0x00000000}},  //   _tion, dhba, ושת_,\n  { {0x80ba02fb, 0x71a6007e, 0x00000000, 0x00000000}},  //   _श्रे, _дадз,   ,\n  { {0x7d070ede, 0x7bda016c, 0x079b00a3, 0x00000000}},  //   tejs, štul, יסטל,\n  { {0x26cf002d, 0x656a0051, 0x00000000, 0x00000000}},  //   zago_, nnfh,   ,\n  { {0x7d070030, 0x33260719, 0x93bc0035, 0x00000000}},  //   rejs, _knox_, _drăg,\n  { {0xdb1c01aa, 0x26cf0032, 0x99030061, 0x00000000}},  //   nprè, xago_, रज्ञ_,\n  { {0xaf4b06c6, 0x7d070036, 0x1a6500a1, 0x00000000}},  // [fa50] _مشکل_, pejs, سیسی_,\n  { {0xcd000046, 0x6d4e010f, 0x929d0036, 0x00000000}},  //   ęści_, chba, zeło,\n  { {0x26cf149a, 0xfe190164, 0xb8d3007d, 0x00000000}},  //   tago_, दिवस_, _ऑल_,\n  { {0x47580088, 0x00000000, 0x00000000, 0x00000000}},  //   орія_,   ,   ,\n  { {0x26cf002d, 0x98aa0036, 0x7aed01c3, 0x00000000}},  //   rago_, _sobą_, mgat,\n  { {0x7aed1957, 0x26cf0197, 0x25bd0016, 0x00000000}},  //   lgat, sago_, rpwl_,\n  { {0x26cf0b76, 0x64a2003b, 0x7aed0026, 0x00000000}},  //   pago_, наша, ogat,\n  { {0x7aed0149, 0x6d4e012d, 0x00000000, 0x00000000}},  //   ngat, zhba,   ,\n  { {0xc2e80025, 0x93bc0035, 0x00000000, 0x00000000}},  //   زعيم_, _arăd,   ,\n  { {0x3ea9002a, 0x2eb6006e, 0xe3b3023c, 0x00000000}},  //   _agat_, ूर्त, _قرص_,\n  { {0xf3f00025, 0x00000000, 0x00000000, 0x00000000}},  //   _لأن_,   ,   ,\n  { {0x321d018e, 0x3f6a0256, 0x25a500ab, 0x00000000}},  //   _trwy_, симо_, _hill_,\n  { {0x9f463dc1, 0x25a50339, 0x7aed3ff7, 0x00000000}},  //   nulé_, _kill_, dgat,\n  { {0xb226000c, 0x7aed0207, 0x61e9154f, 0x00000000}},  //   stæð, egat, muel,\n  { {0xa066008b, 0x3ead0af3, 0x93bc001a, 0x00000000}},  //   _наша_, žeta_, _grăd,\n  { {0x6d4e0039, 0x25a501d5, 0x8b951021, 0x00000000}},  //   shba, _lill_, друч,\n  { {0x6d4e0045, 0x00000000, 0x00000000, 0x00000000}},  // [fa60] phba,   ,   ,\n  { {0x7aed002d, 0xef180089, 0xe9d70b7b, 0x00000000}},  //   agat, ēļu_, яку_,\n  { {0xdb24026c, 0x0d3b009b, 0x5d3b009b, 0x00000000}},  //   _ہوگی, _הגיב, _התיא,\n  { {0x7aed001c, 0x61e92917, 0x6f16016b, 0x00000000}},  //   cgat, kuel, _jayc,\n  { {0xd6cf00b8, 0xceb300b3, 0x25a500ab, 0x00000000}},  //   اقه_, גיד_, _bill_,\n  { {0x25a50051, 0x320d00ea, 0x00000000, 0x00000000}},  //   _cill_, dwey_,   ,\n  { {0xa84a0025, 0x5334004d, 0xb4ac00e8, 0x00000000}},  //   _الأم_, дейт, _गली_,\n  { {0xe3af007a, 0x25ad00ab, 0x98a302d3, 0x00000000}},  //   درو_, _fuel_, _чисе,\n  { {0x61e9008e, 0x25a512a0, 0xdb1c0666, 0x00000000}},  //   guel, _fill_, rprè,\n  { {0x25a50319, 0x7aed0010, 0xdb1c0129, 0x00000000}},  //   _gill_, zgat, sprè,\n  { {0x7bda0213, 0x7aed02d4, 0x6f160a89, 0x00000000}},  //   štuj, ygat, _bayc,\n  { {0x6d5e01d9, 0x753a002d, 0x61e904de, 0x00000000}},  //   _ampa, _hotz, buel,\n  { {0x61e90211, 0x753a021f, 0xd33700b3, 0x00000000}},  //   cuel, _kotz, _מראה_,\n  { {0x753a002d, 0x93bc0035, 0x7bd51b8a, 0x00000000}},  //   _jotz, _trăd, tszu,\n  { {0x01330644, 0x317e002d, 0x753a0032, 0x00000000}},  //   _سعود, motz_, _motz,\n  { {0x7aed001a, 0x753a002d, 0x6d5e0971, 0x00000000}},  //   ugat, _lotz, _empa,\n  { {0x7aed1180, 0x7bd50047, 0xad270070, 0x00000000}},  // [fa70] rgat, sszu, _فردو,\n  { {0x7aed003d, 0x48ab007e, 0x25ad00e0, 0x00000000}},  //   sgat, стам_, _ruel_,\n  { {0x61e90211, 0x25a50022, 0xf7700bb6, 0x00000000}},  //   zuel, _rill_, گال_,\n  { {0xf7730a4f, 0xf1dd013d, 0x25a50150, 0x00000000}},  //   راض_, _मिलन, _sill_,\n  { {0x61e921ba, 0x25ad1017, 0x25a50857, 0x00000000}},  //   xuel, _quel_, _pill_,\n  { {0x61e90211, 0x6d4700ea, 0xc9840088, 0x00000000}},  //   vuel, nkja, _зуси,\n  { {0x25a51908, 0xe9ff0011, 0x753a0129, 0x00000000}},  //   _vill_, _khắc_, _dotz,\n  { {0x25a53ff8, 0x7528245c, 0x7f4d0066, 0x00000000}},  //   _will_, _endz, _nlaq,\n  { {0x25a50901, 0x6d473ff9, 0xf7700123, 0x00000000}},  //   _till_, kkja, _صاف_,\n  { {0xdb1c00f4, 0x7f4d2b9a, 0x753a002d, 0x00000000}},  //   rpré, _alaq, _gotz,\n  { {0x656302d5, 0xdb1c04bd, 0x61e92318, 0x00000000}},  //   minh, spré, suel,\n  { {0x65630181, 0xe9ff0011, 0x7f4d009d, 0x00000000}},  //   linh, _nhắc_, _claq,\n  { {0x61e91729, 0x51553ffa, 0xa29401e1, 0x00000000}},  //   quel, _отку, _заці,\n  { {0x236d1191, 0x656334a1, 0x2480014a, 0x00000000}},  //   lnej_, ninh, şime_,\n  { {0x6da300d7, 0x628f0166, 0xe1f90006, 0x00000000}},  //   тира, škoć, ltų_,\n  { {0xe9ff001d, 0x236d05fd, 0x65633676, 0x00000000}},  //   _chắc_, nnej_, hinh,\n  { {0xe1f9010a, 0x6563002b, 0xed5a10f2, 0x00000000}},  // [fa80] ntų_, kinh, _мои_,\n  { {0x69d63ffb, 0x65630181, 0x644316a7, 0x00000000}},  //   rsye, jinh, kyni,\n  { {0x65630181, 0x776204d2, 0x673b01aa, 0x00000000}},  //   dinh, tiox, _bouj,\n  { {0xe1f9010a, 0x64430036, 0x236d0871, 0x00000000}},  //   ktų_, dyni, jnej_,\n  { {0x236d09b6, 0x673b12a9, 0x656300c4, 0x00000000}},  //   dnej_, _douj, finh,\n  { {0x64430016, 0x67291827, 0x65632274, 0x00000000}},  //   fyni, _enej, ginh,\n  { {0x8af0006b, 0x29181290, 0x64433ffc, 0x00000000}},  //   biət, _iara_, gyni,\n  { {0x68fe001c, 0x27f701c8, 0x29183716, 0x00000000}},  //   lfpd, žení_, _hara_,\n  { {0x6d47009f, 0x291832cd, 0x26c60011, 0x00000000}},  //   ykja, _kara_, mboo_,\n  { {0x2918002b, 0x291a3ffd, 0x65630181, 0x00000000}},  //   _jara_, ndpa_, cinh,\n  { {0x29183ffe, 0x7f4d00f4, 0xc0570088, 0x00000000}},  //   _mara_, _plaq, дія_,\n  { {0x122a007c, 0x236d05fd, 0x00000000, 0x00000000}},  //   _моей_, cnej_,   ,\n  { {0x2918001a, 0x00000000, 0x00000000, 0x00000000}},  //   _oara_,   ,   ,\n  { {0x2918002b, 0x59b501f5, 0x00000000, 0x00000000}},  //   _nara_, _अंबर,   ,\n  { {0x6d47000c, 0x7f4d19ee, 0x6b511a96, 0x00000000}},  //   rkja, _tlaq, _låge,\n  { {0x656302d5, 0x6d473fff, 0x3a220022, 0x00000000}},  //   zinh, skja, _brkp_,\n  { {0x29184000, 0x64430036, 0xd91b007c, 0x00000000}},  // [fa90] _bara_, zyni, жье_,\n  { {0x291804fa, 0x65634001, 0x236d4002, 0x00000000}},  //   _cara_, xinh, znej_,\n  { {0x2918002a, 0xe9ff001d, 0x65630181, 0x00000000}},  //   _dara_, _thắc_, vinh,\n  { {0xe1f90006, 0x6443007f, 0x00000000, 0x00000000}},  //   ytų_, vyni,   ,\n  { {0x29184003, 0x65630181, 0x64430016, 0x00000000}},  //   _fara_, tinh, wyni,\n  { {0x2918022b, 0xfbd000d3, 0x64434004, 0x00000000}},  //   _gara_, _حتی_, tyni,\n  { {0x673b11aa, 0x656302d5, 0xd883007a, 0x00000000}},  //   _touj, rinh, _شهری,\n  { {0x65631329, 0x2918002d, 0x6b510039, 0x00000000}},  //   sinh, _zara_, _fåge,\n  { {0x236d4005, 0x65630181, 0x6443005b, 0x00000000}},  //   rnej_, pinh, syni,\n  { {0xdb060065, 0xe1f90006, 0x236d05fd, 0x00000000}},  //   _pikë, rtų_, snej_,\n  { {0xe1f9010a, 0x00000000, 0x00000000, 0x00000000}},  //   stų_,   ,   ,\n  { {0xe1f90006, 0x2b49012d, 0x00000000, 0x00000000}},  //   ptų_, jkac_,   ,\n  { {0x3ea40039, 0xe1170044, 0x00000000, 0x00000000}},  //   ämt_, ়াবহ_,   ,\n  { {0x98aa0224, 0xdb050010, 0x61fb28d4, 0x00000000}},  //   _době_, _ruhá, mtul,\n  { {0xeb9a003b, 0x3b9600ec, 0x61fb2c2c, 0x00000000}},  //   зив_, ејат, ltul,\n  { {0x291801a3, 0xdbd60004, 0x2be10164, 0x00000000}},  //   _sara_, _rääg, _फिरा,\n  { {0x61fb12e9, 0x6f0416b1, 0xa9260780, 0x00000000}},  // [faa0] ntul, _ibic, ндал,\n  { {0x5e57007b, 0x291811ca, 0x6e240032, 0x00000000}},  //   _נייע_, _qara_, _irib,\n  { {0x29180073, 0x6e240059, 0x61fb006c, 0x00000000}},  //   _vara_, _hrib, htul,\n  { {0x3ae8026c, 0x291801d5, 0x6e2419c5, 0x00000000}},  //   _کبھی_, _wara_, _krib,\n  { {0x291814e8, 0x8af0006b, 0x6f0400e7, 0x00000000}},  //   _tara_, rhəd, _mbic,\n  { {0x69c41011, 0x59b502d2, 0x6b51032e, 0x00000000}},  //   mpie, _अंतर, _våge,\n  { {0x6f040587, 0xf8a7007d, 0x66e60594, 0x00000000}},  //   _obic, _कृपय, _пова,\n  { {0x31c6178d, 0xe805013d, 0x6e240035, 0x00000000}},  //   нсов, _रहता_, _orib,\n  { {0x3f820007, 0x69c401c5, 0x61fb011c, 0x00000000}},  //   doku_, npie, gtul,\n  { {0x6f040f99, 0x09f7009b, 0x2ee04006, 0x00000000}},  //   _abic, עמים_, _adif_,\n  { {0xf65f009f, 0xb4cc02fb, 0x3957009b, 0x00000000}},  //   _þær_, लरी_, גשים_,\n  { {0x3f820066, 0x98aa00b9, 0x3ead01e3, 0x00000000}},  //   goku_, _sobě_, øet_,\n  { {0x614601fb, 0x61fb000d, 0x69c40036, 0x00000000}},  //   _педа, ctul, jpie,\n  { {0x02170097, 0xc69300a3, 0x65610050, 0x00000000}},  //   _נחום_, טאר_, _xmlh,\n  { {0xef1f005d, 0x3f82006b, 0x64580b5e, 0x00000000}},  //   nlük_, boku_, nzvi,\n  { {0xa3e8006e, 0xbddb01aa, 0xfaff0023, 0x00000000}},  //   _बिन_, lyèm, _ajër_,\n  { {0x6e24001e, 0x69c411de, 0x58d9007e, 0x00000000}},  // [fab0] _grib, gpie, ддзя_,\n  { {0x6f0f095e, 0x6f1d05c6, 0xbddb01aa, 0x00000000}},  //   lecc, ldsc, nyèm,\n  { {0x2d830006, 0x69c40197, 0x6f1d00d9, 0x00000000}},  //   moje_, apie, odsc,\n  { {0x6458001c, 0xdc360049, 0x2d834007, 0x00000000}},  //   dzvi, _סארט_, loje_,\n  { {0xd7740644, 0xdcfc15d7, 0x6b8d0d3e, 0x00000000}},  //   دالع, zorč, mlag,\n  { {0x2d8328da, 0x00000000, 0x00000000, 0x00000000}},  //   noje_,   ,   ,\n  { {0xb6f5003b, 0x00000000, 0x00000000, 0x00000000}},  //   _извј,   ,   ,\n  { {0x6b8d010f, 0x6f0f0129, 0x61fb000c, 0x00000000}},  //   nlag, jecc, ttul,\n  { {0x11d60025, 0x29cf3e64, 0xa235007e, 0x00000000}},  //   نوية_, nża_, тэйш,\n  { {0x2d83010a, 0x6b8d001f, 0xd68401fb, 0x00000000}},  //   joje_, hlag, _сусп,\n  { {0x61fb1f37, 0x69c40046, 0xf8b201f8, 0x00000000}},  //   stul, zpie, ישי_,\n  { {0x7d0e0093, 0x6b8d00b5, 0x61fb001a, 0x00000000}},  //   webs, jlag, ptul,\n  { {0x6b8d01d9, 0xee370152, 0x780d006e, 0x00000000}},  //   dlag, вня_, सबुक_,\n  { {0x4d151fea, 0x2d834008, 0xd1380036, 0x00000000}},  //   льст, goje_, cją_,\n  { {0x69dd0039, 0x6b8d010f, 0x61e91cef, 0x00000000}},  //   _avse, flag, lrel,\n  { {0x6f040219, 0x6b8d37ad, 0x6e244009, 0x00000000}},  //   _ubic, glag, _trib,\n  { {0xf2d2007b, 0x6e240f06, 0x2d8324f2, 0x00000000}},  // [fac0] יען_, _urib, boje_,\n  { {0x63ab400a, 0x69c40036, 0x08c301fc, 0x00000000}},  //   _lign, rpie, ибун,\n  { {0x69c40e42, 0x07a601e1, 0x6b8d009d, 0x00000000}},  //   spie, важн, blag,\n  { {0x0bb700b6, 0x66e60920, 0x6b8d400b, 0x00000000}},  //   _שלכם_, тода, clag,\n  { {0x6b8400f4, 0x628e0036, 0x61e9016c, 0x00000000}},  //   moig, ębok, jrel,\n  { {0xa8060b11, 0x61e9400c, 0x44250035, 0x00000000}},  //   _изгл, drel, _brl_,\n  { {0x6f0f0211, 0x63ab1733, 0x86ea0025, 0x00000000}},  //   yecc, _bign, _يعرف_,\n  { {0xb6c800a1, 0x628b0146, 0x63ab1f38, 0x00000000}},  //   _سارے_, _bygo, _cign,\n  { {0xf74300ed, 0x6f0f0197, 0x61e91fe8, 0x00000000}},  //   _тето, vecc, grel,\n  { {0x63ab400d, 0x6b8d0059, 0x4a9b0049, 0x00000000}},  //   _eign, zlag, ויפג,\n  { {0x2d8324f2, 0x6f0f400e, 0x61e9001a, 0x00000000}},  //   voje_, tecc, arel,\n  { {0x6b8400f4, 0xf99f01aa, 0x2d54006c, 0x00000000}},  //   joig, _apèl_, _näeb_,\n  { {0x6f0f0845, 0x2d830ac5, 0x61e9014a, 0x00000000}},  //   recc, toje_, crel,\n  { {0xe9ff00ad, 0xac1900ed, 0x6f0f0e32, 0x00000000}},  //   _nhạc_, ногу_, secc,\n  { {0x2d83004f, 0x6b8d00f8, 0x6f0f1e5a, 0x00000000}},  //   roje_, tlag, pecc,\n  { {0x2d830993, 0x00000000, 0x00000000, 0x00000000}},  //   soje_,   ,   ,\n  { {0x6b8d010f, 0x2d830cd5, 0xdb120051, 0x00000000}},  // [fad0] rlag, poje_, ágái,\n  { {0x6b8d1413, 0x29cf1f27, 0x291901d8, 0x00000000}},  //   slag, rża_, عقاد_,\n  { {0x6c35004b, 0x6b8d0039, 0x61e909fc, 0x00000000}},  //   _صفحا, plag, zrel,\n  { {0x7bc701d5, 0x61e904d7, 0xc2e80055, 0x00000000}},  //   mpju, yrel, ক্তি_,\n  { {0x44250412, 0x63ab000c, 0x6b51032e, 0x00000000}},  //   _srl_, _rign, _gåga,\n  { {0x75d20025, 0x61e93abf, 0x442500b4, 0x00000000}},  //   حيوا, vrel, _prl_,\n  { {0x63ab1003, 0xdcfc0089, 0xad9b004a, 0x00000000}},  //   _pign, norā, ctúe,\n  { {0x61e9049a, 0xb8820428, 0x93bc0011, 0x00000000}},  //   trel, číta, _trăn,\n  { {0x63ab1e5a, 0x61e911de, 0x97820014, 0x00000000}},  //   _vign, urel, _اینه,\n  { {0x61e9022b, 0x63ab0022, 0x442500e7, 0x00000000}},  //   rrel, _wign, _trl_,\n  { {0x44250365, 0x63ab011c, 0x4ad30061, 0x00000000}},  //   _url_, _tign, तराव,\n  { {0x628b0046, 0x69c111b0, 0x61e9164f, 0x00000000}},  //   _tygo, _člen, prel,\n  { {0xcdf6045a, 0x91e50a85, 0x00000000, 0x00000000}},  //   ычны, _соле,   ,\n  { {0x7bdc00f8, 0xd048006b, 0x00000000, 0x00000000}},  //   tsru, hadə,   ,\n  { {0x24d80044, 0x3b0a00e2, 0x6b5102e7, 0x00000000}},  //   _সামহ, нево_, _såga,\n  { {0x7bdc010e, 0x00000000, 0x00000000, 0x00000000}},  //   rsru,   ,   ,\n  { {0x0eaa01fb, 0x7bdc00f8, 0x00000000, 0x00000000}},  // [fae0] _який_, ssru,   ,\n  { {0x6b5138c6, 0x7bda0010, 0x00000000, 0x00000000}},  //   _våga, átus,   ,\n  { {0xd048005f, 0x46ea0113, 0x3cfb009b, 0x00000000}},  //   fadə, еден_, _אלינ,\n  { {0x27e70051, 0x7d1e28fb, 0xcc3b0049, 0x00000000}},  //   ánna_, _haps, _נעכט,\n  { {0x7d1e014a, 0xe9ff0011, 0x1634053f, 0x00000000}},  //   _kaps, _thạc_, реля,\n  { {0x7af60006, 0xef1f0276, 0x7d1e0052, 0x00000000}},  //   lgyt, zdü_, _japs,\n  { {0x4ab8013d, 0x97b500ed, 0x6d4e0328, 0x00000000}},  //   _अलाव, _всуш, ikba,\n  { {0x7d1e0368, 0x3ead129d, 0x75d60439, 0x00000000}},  //   _laps, žeti_, _ميرا,\n  { {0x316a01c0, 0x39b20173, 0x6d4e121b, 0x00000000}},  //   ешно_, _fņse_, kkba,\n  { {0x7d1e0224, 0x6d4e00b5, 0x845a00ed, 0x00000000}},  //   _naps, jkba, _прет_,\n  { {0x8937007b, 0xb4c2006e, 0x661d000c, 0x00000000}},  //   אריע_, ूरी_, _áskr,\n  { {0x60c4011f, 0x3cfa00d4, 0x6d4e0328, 0x00000000}},  //   _şimd, _acpv_, ekba,\n  { {0xe2920054, 0x246e005f, 0x5ce701fb, 0x00000000}},  //   _اذا_, _həm_, люва,\n  { {0x7c8700e3, 0x74ca0309, 0xd048006b, 0x00000000}},  //   губе, _स्मृ, zadə,\n  { {0x0704007d, 0x7d1e007f, 0x00000000, 0x00000000}},  //   रभाव_, _daps,   ,\n  { {0x60da014a, 0x6d4e0010, 0x00000000, 0x00000000}},  //   latm, akba,   ,\n  { {0x5a350893, 0x13cd0044, 0x4cd40044, 0x00000000}},  // [faf0] шнат, রওয়, _তারু,\n  { {0xdd92026c, 0x2907400f, 0x93bc00e5, 0x00000000}},  //   _ووٹ_, ýna_, _arăm,\n  { {0x6aa60055, 0xdb1c04bb, 0x7b084010, 0x00000000}},  //   গুলো, sprá, ístí,\n  { {0x7d1e00b9, 0x644a33ff, 0x7bc50288, 0x00000000}},  //   _zaps, dyfi, _ithu,\n  { {0x60da0173, 0x7d1e014a, 0x00000000, 0x00000000}},  //   katm, _yaps,   ,\n  { {0xe5a502d3, 0x60da0022, 0x00000000, 0x00000000}},  //   шили, jatm,   ,\n  { {0x36d5007e, 0x60da0276, 0xa9540088, 0x00000000}},  //   _вобр, datm, _укрі,\n  { {0x29134011, 0x39430087, 0x93bc0035, 0x00000000}},  //   lexa_, _hojs_, _grăm,\n  { {0x6d4e0007, 0x00000000, 0x00000000, 0x00000000}},  //   ykba,   ,   ,\n  { {0xe610036d, 0x661b0058, 0x291300f6, 0x00000000}},  //   _عشق_, _isuk, nexa_,\n  { {0x6b510073, 0xb4c10164, 0x764b0016, 0x00000000}},  //   _någo, ंडी_, lygy,\n  { {0x3f6a003b, 0x00000000, 0x00000000, 0x00000000}},  //   тимо_,   ,   ,\n  { {0x7bc5009f, 0x43840054, 0x7d1e01a2, 0x00000000}},  //   _athu, _النق, _paps,\n  { {0x3943291b, 0x661b0020, 0xc5d70044, 0x00000000}},  //   _nojs_, _msuk, _সমাপ,\n  { {0xdca6012b, 0x6d4e00b5, 0xdfd10025, 0x00000000}},  //   рави, rkba, _بيع_,\n  { {0x6d4e03ba, 0x207a0049, 0x00000000, 0x00000000}},  //   skba, _באצא,   ,\n  { {0xe8fa003b, 0xc33201f8, 0x44200011, 0x00000000}},  // [fb00] кла_, חון_, ̉i_,\n  { {0x38cb0167, 0x9f460048, 0xad9b0048, 0x00000000}},  //   نامی_, irlí_, rtúc,\n  { {0x661b0cfc, 0x00000000, 0x00000000, 0x00000000}},  //   _asuk,   ,   ,\n  { {0xe5c6007e, 0xe7390016, 0x6c7b00b3, 0x00000000}},  //   аско, _siŵr_, _יריד,\n  { {0xb4c101f5, 0x799c0016, 0x661b0010, 0x00000000}},  //   ंडू_, _thrw, _csuk,\n  { {0xe5e50025, 0x6e3b01a2, 0x6b5102e1, 0x00000000}},  //   إثني, äubi, _lågl,\n  { {0x6c7a0049, 0x60da03f1, 0xad9b004a, 0x00000000}},  //   כאַפ, vatm, ntúa,\n  { {0x644a4012, 0x00000000, 0x00000000, 0x00000000}},  //   ryfi,   ,   ,\n  { {0x644a2cde, 0xd1300025, 0x61d7007e, 0x00000000}},  //   syfi, كمة_, амыя_,\n  { {0x71740025, 0x62990036, 0x2154007e, 0x00000000}},  //   إهدا, _dzwo, скоў,\n  { {0x60da0279, 0x66024013, 0x733600a1, 0x00000000}},  //   ratm, ltok, _پرائ,\n  { {0x6722008d, 0x660200e7, 0xdb1c01a2, 0x00000000}},  //   ndoj, otok, nprä,\n  { {0x60da0d5b, 0x660200b0, 0x7a0a0089, 0x00000000}},  //   patm, ntok, nētā,\n  { {0x660200b0, 0x00000000, 0x00000000, 0x00000000}},  //   itok,   ,   ,\n  { {0x06d70055, 0x61e2000c, 0x7b67007c, 0x00000000}},  //   _হাসি, _hvol, атае,\n  { {0x67200182, 0x290a0010, 0xc2e80044, 0x00000000}},  //   _namj, _abba_, ক্রি_,\n  { {0x88c70025, 0x00000000, 0x00000000, 0x00000000}},  // [fb10] لتال,   ,   ,\n  { {0x93bc0035, 0x66020087, 0xe9ff0082, 0x00000000}},  //   _vrăj, dtok, _nhấc_,\n  { {0x7d15014a, 0xad9b004a, 0x69c60095, 0x00000000}},  //   mezs, ctúa, _etke,\n  { {0x61e2037e, 0x290a00f8, 0x2ef906d3, 0x00000000}},  //   _ovol, _ebba_, ngsf_,\n  { {0x6d450004, 0x67200627, 0x316c01c3, 0x00000000}},  //   _koha, _damj, kidz_,\n  { {0x6d450b6e, 0xb4c10164, 0x5dda0049, 0x00000000}},  //   _joha, ंडे_, אַקס,\n  { {0x6d450518, 0x04451662, 0x61e20dc9, 0x00000000}},  //   _moha, сейн, _avol,\n  { {0x6d4520e3, 0xe2990780, 0x21294014, 0x00000000}},  //   _loha, лай_, _şah_,\n  { {0x7769002b, 0x661b4015, 0x201c0022, 0x00000000}},  //   _imex, _usuk, _asvi_,\n  { {0x67200166, 0x8c49014a, 0x26dd0009, 0x00000000}},  //   _zamj, _kaşı, lawo_,\n  { {0x04950054, 0x60d800fa, 0x5edc0044, 0x00000000}},  //   _الاح, _devm, _ভাবে,\n  { {0x2f5601fb, 0x09cd0044, 0x8c49006b, 0x00000000}},  //   стос, _লিনা, _maşı,\n  { {0x6d4523d9, 0x877a0049, 0x75214016, 0x00000000}},  //   _boha, רארי, _kalz,\n  { {0x6d4509af, 0x27e1012d, 0xd4910082, 0x00000000}},  //   _coha, kshn_, _kỳ_,\n  { {0x224d0047, 0x7521014a, 0x61e20428, 0x00000000}},  //   lyek_, _malz, _zvol,\n  { {0x236d0036, 0xdb0d010f, 0x6e470023, 0x00000000}},  //   niej_, rmaß, ërbë,\n  { {0x224d0047, 0xeb97007c, 0xbb43012b, 0x00000000}},  // [fb20] nyek_, сит_, четк,\n  { {0x8c4901f6, 0x67201087, 0xa3e8007d, 0x00000000}},  //   _başı, _samj, _बिल_,\n  { {0x236d0046, 0x6d5c0051, 0x67200065, 0x00000000}},  //   kiej_, mhra, _pamj,\n  { {0x8c49005f, 0x660200b0, 0x6722007f, 0x00000000}},  //   _daşı, ttok, udoj,\n  { {0x6d450020, 0x67220f42, 0x660200b0, 0x00000000}},  //   _yoha, rdoj, utok,\n  { {0x75210e1d, 0x66023727, 0xdb1c010f, 0x00000000}},  //   _calz, rtok, sprä,\n  { {0xf863017a, 0x66020e88, 0x61e24017, 0x00000000}},  //   _евро, stok, _svol,\n  { {0x60d8005d, 0x236d0036, 0x66020253, 0x00000000}},  //   _sevm, giej_, ptok,\n  { {0x75210846, 0x224d0010, 0x6d5c08ca, 0x00000000}},  //   _falz, gyek_, khra,\n  { {0x8c4901f6, 0x00000000, 0x00000000, 0x00000000}},  //   _yaşı,   ,   ,\n  { {0x6d450f55, 0x6d5c0142, 0x2d8a0134, 0x00000000}},  //   _roha, dhra, dobe_,\n  { {0x236d0036, 0x224d0093, 0x6d450010, 0x00000000}},  //   ciej_, byek_, _soha,\n  { {0x8af0006b, 0x6e220089, 0x442c0093, 0x00000000}},  //   rhəl, _šobr, _hrd_,\n  { {0x6d5c016d, 0x63ba00d2, 0x2d8a01ed, 0x00000000}},  //   ghra, _kutn, gobe_,\n  { {0x93bc001a, 0x6d450ec2, 0x00000000, 0x00000000}},  //   _brăi, _voha,   ,\n  { {0x442c01a2, 0x63ba04eb, 0xc178007f, 0x00000000}},  //   _mrd_, _mutn, lnė_,\n  { {0x6d5c002a, 0x442c0117, 0x8b0400b9, 0x00000000}},  // [fb30] bhra, _lrd_, ířat,\n  { {0x6d5c018e, 0x236d0046, 0xdd0e005f, 0x00000000}},  //   chra, ziej_, mışd,\n  { {0x6e2d06a6, 0x63ba01ca, 0x76b900ed, 0x00000000}},  //   _hrab, _nutn, алер_,\n  { {0x7521010f, 0x6e2d0387, 0x3f8b016c, 0x00000000}},  //   _salz, _krab, nocu_,\n  { {0x442c002a, 0x80de0044, 0xdd0e006b, 0x00000000}},  //   _ard_, _মান্, nışd,\n  { {0x67d51076, 0x8c49011f, 0x6e2d0020, 0x00000000}},  //   _могу, _taşı, _mrab,\n  { {0x58d40242, 0xdb1c15b3, 0x442c0085, 0x00000000}},  //   _хост, språ, _crd_,\n  { {0x225f022b, 0xc1780006, 0x442c0052, 0x00000000}},  //   tzuk_, enė_, _drd_,\n  { {0x24890046, 0x60c4006b, 0x44270082, 0x00000000}},  //   łam_, _şima, svn_,\n  { {0x60090bff, 0x6f0d3320, 0x442c0009, 0x00000000}},  //   аном_, _abac, _frd_,\n  { {0x236d0046, 0x6e2d4018, 0x73c4023c, 0x00000000}},  //   piej_, _arab, _فيلم,\n  { {0x5ea80055, 0x6e2d0882, 0x9eaa026b, 0x00000000}},  //   _ক্ষে, _brab, ивна_,\n  { {0x6d5c002a, 0x200a011f, 0x6e2d10c5, 0x00000000}},  //   thra, çbir_, _crab,\n  { {0x6e2d1992, 0x127a0049, 0x8af0013f, 0x00000000}},  //   _drab, _דאנע, rhəm,\n  { {0x6e2d0756, 0x2d8a0235, 0x8b2600ed, 0x00000000}},  //   _erab, robe_, одве,\n  { {0x6d5c3121, 0x6e2d01f4, 0x5dda00e2, 0x00000000}},  //   shra, _frab, _кфор_,\n  { {0x2480014a, 0x5ea80044, 0x6d5c0133, 0x00000000}},  // [fb40] ğimi_, _ক্রে, phra,\n  { {0x248001df, 0x6b5812e1, 0xad9b2285, 0x00000000}},  //   şimi_, _díga, ntúl,\n  { {0x93bc001a, 0x20050095, 0x00000000, 0x00000000}},  //   _trăi, ntli_,   ,\n  { {0xab2a00d7, 0x6b5800c4, 0xad9b0048, 0x00000000}},  //   _тома_, _fíga, htúl,\n  { {0xe534007e, 0x6b810010, 0xa3dc01f5, 0x00000000}},  //   зель, élge, तीन_,\n  { {0x442c03fd, 0x63ba0ad8, 0x03c62488, 0x00000000}},  //   _prd_, _putn, осим,\n  { {0x399400b0, 0x398f3b03, 0x00000000, 0x00000000}},  //   jäsi_, rüst_,   ,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xdb04009d, 0xdd0e013f, 0x00000000, 0x00000000}},  //   rmiè, xışd,   ,\n  { {0x3a37012e, 0x442c00ca, 0x6f0d0a15, 0x00000000}},  //   קרים_, _trd_, _sbac,\n  { {0x4034004d, 0x41b400a2, 0xb8bb0049, 0x00000000}},  //   ченс, _کمتر, יזיש,\n  { {0x6e2d1750, 0xc1780006, 0xdb0f0051, 0x00000000}},  //   _prab, snė_, _ticé,\n  { {0xdb06021e, 0x637e0089, 0x628e01a2, 0x00000000}},  //   _mikä, cīna, ßbod,\n  { {0xc5f301f8, 0x6e2d003b, 0x6ad3013d, 0x00000000}},  //   ודש_, _vrab, तर्र,\n  { {0x63a20011, 0x5c044019, 0x6b581ad4, 0x00000000}},  //   _khon, мята, _síga,\n  { {0x5ed50044, 0xa3dc007d, 0x6f0d0091, 0x00000000}},  //   _থাকে, तीय_, _ubac,\n  { {0x63a2401a, 0x6e2d401b, 0xecf9007e, 0x00000000}},  // [fb50] _mhon, _urab, _лепш_,\n  { {0xceb4009b, 0x69cd00ea, 0x00000000, 0x00000000}},  //   _קיץ_, rpae,   ,\n  { {0x63a2018e, 0xdce70089, 0x6b960016, 0x00000000}},  //   _ohon, cijā, blyg,\n  { {0x8c1a00a0, 0x00000000, 0x00000000, 0x00000000}},  //   _פורי,   ,   ,\n  { {0xbc68007a, 0xeb3a0049, 0xf770006d, 0x00000000}},  //   _همین_, _הערש, خال_,\n  { {0x6b8d15ed, 0x63a2401c, 0x6d5500d9, 0x00000000}},  //   loag, _ahon, nkza,\n  { {0x63a23d37, 0xc79600a1, 0x00000000, 0x00000000}},  //   _bhon, _کھلا_,   ,\n  { {0x63a2002a, 0x85b9044b, 0xc245041f, 0x00000000}},  //   _chon, _глас_, зник,\n  { {0xe1f10025, 0x95c8003b, 0xddc60036, 0x00000000}},  //   رسة_, _духа_, zykł,\n  { {0xc692007b, 0x44f402b8, 0xf0651b7f, 0x00000000}},  //   _טאן_, _опус, зкоп,\n  { {0x63a20051, 0xad9b00d4, 0x6b8d002d, 0x00000000}},  //   _fhon, rtúl, koag,\n  { {0x7c2a00f7, 0x20050276, 0x6b8d0022, 0x00000000}},  //   _áfri, rtli_, joag,\n  { {0x63a9401d, 0x200500b9, 0xc6090055, 0x00000000}},  //   mmen, stli_, লিকা_,\n  { {0x63a2122b, 0xc1040379, 0x91a700a1, 0x00000000}},  //   _zhon, _يوني, _بنتے_,\n  { {0x63a90006, 0x7bce0141, 0x913a009b, 0x00000000}},  //   omen, upbu, _לעסק,\n  { {0xbb4301f9, 0x63a900ab, 0xdce70089, 0x00000000}},  //   неск, nmen, rijā,\n  { {0x63a9028c, 0x80de0055, 0xb18300b9, 0x00000000}},  // [fb60] imen, _মাত্, šťuj,\n  { {0x63a9010f, 0x6d5501a2, 0xa92300d7, 0x00000000}},  //   hmen, ckza, ндул,\n  { {0x63a906e8, 0xdb1c068f, 0x6b8d0032, 0x00000000}},  //   kmen, kprø, boag,\n  { {0x63a90161, 0x2d982e6d, 0x1fbd0044, 0x00000000}},  //   jmen, llre_, _আবাস,\n  { {0x63a90006, 0x63a20b73, 0xba76023c, 0x00000000}},  //   dmen, _rhon, _راحت,\n  { {0x63a900f4, 0x63a20051, 0x00000000, 0x00000000}},  //   emen, _shon,   ,\n  { {0x63a2190f, 0x29370049, 0x63a901c3, 0x00000000}},  //   _phon, _צאלן_, fmen,\n  { {0x80de0055, 0x987b0476, 0x291a0059, 0x00000000}},  //   _মাধ্, _האלט, lepa_,\n  { {0x0566003b, 0xa3dc013d, 0x93bc001a, 0x00000000}},  //   _еван, _तौर_, _arăt,\n  { {0x63a90a15, 0x394a192b, 0x291a097e, 0x00000000}},  //   amen, _jobs_, nepa_,\n  { {0x394a0066, 0x63a90061, 0xf2db0044, 0x00000000}},  //   _mobs_, bmen, _ধারণ,\n  { {0x389b0476, 0x643b0049, 0x63a91caa, 0x00000000}},  //   מיינ, _לעבנ, cmen,\n  { {0x7d030039, 0xa3c2013d, 0x4cd40044, 0x00000000}},  //   _önsk, _एंड_, _তাজু,\n  { {0x61430081, 0x291a0243, 0x93bc00e5, 0x00000000}},  //   _печа, jepa_, _frăt,\n  { {0x6d5500b5, 0xab950088, 0x93bc0035, 0x00000000}},  //   rkza, диві, _grăt,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xa3dc001c, 0x6b8d002d, 0x394a401e, 0x00000000}},  // [fb70] तीत_, roag, _bobs_,\n  { {0xa8a7005e, 0x3f99002b, 0x6b5800d4, 0x00000000}},  //   прек, llsu_, _fígo,\n  { {0xf990025a, 0xaf200055, 0x63a900ab, 0x00000000}},  //   ابق_, ধারণ_, ymen,\n  { {0x63a90009, 0x00000000, 0x00000000, 0x00000000}},  //   xmen,   ,   ,\n  { {0x63a9297c, 0x5a3401ff, 0x00000000, 0x00000000}},  //   vmen, _знят,   ,\n  { {0xdb17049a, 0x63a9401f, 0xe6180088, 0x00000000}},  //   _muxí, wmen, яді_,\n  { {0x63a9011f, 0x00000000, 0x00000000, 0x00000000}},  //   tmen,   ,   ,\n  { {0x63a92505, 0x00000000, 0x00000000, 0x00000000}},  //   umen,   ,   ,\n  { {0x10f5007e, 0x00000000, 0x00000000, 0x00000000}},  //   мяня,   ,   ,\n  { {0x63a9000c, 0xdb1c0190, 0xd5b101b2, 0x00000000}},  //   smen, sprø, _شفا_,\n  { {0x63a90038, 0x24550318, 0xdb170181, 0x00000000}},  //   pmen, _تناس, _auxí,\n  { {0x83670123, 0x325501ee, 0x25bf25b3, 0x00000000}},  //   _عدال, _овер, _kuul_,\n  { {0x25bf269f, 0x6f63007e, 0x93bc00e5, 0x00000000}},  //   _juul_, твяз, _frăs,\n  { {0x61fb0020, 0x25bf010e, 0x93bc0035, 0x00000000}},  //   muul, _muul_, _grăs,\n  { {0x394a4020, 0x61fb01b1, 0xdbf2013e, 0x00000000}},  //   _robs_, luul, přít,\n  { {0xf09200b6, 0xe9da0256, 0x21270011, 0x00000000}},  //   _שנה_, жка_, _hanh_,\n  { {0x13d60055, 0x6f041706, 0xe3b8014a, 0x00000000}},  // [fb80] সওয়, _icic, _asıl_,\n  { {0x6e24002b, 0x66060bac, 0xdb1e0023, 0x00000000}},  //   _isib, _äkki, _kupë,\n  { {0x7d1c4021, 0x291a0db7, 0x21270011, 0x00000000}},  //   mers, repa_, _manh_,\n  { {0x61fb3723, 0x21270011, 0x6e240066, 0x00000000}},  //   kuul, _lanh_, _ksib,\n  { {0x7ae436f9, 0x21270011, 0x5976007e, 0x00000000}},  //   mait, _oanh_, _жыву,\n  { {0x7ae431b2, 0x2ee000eb, 0x6e240020, 0x00000000}},  //   lait, _leif_, _msib,\n  { {0xc10e0011, 0x69c4002b, 0x1394004d, 0x00000000}},  //   _bỗng_, lqie, никю,\n  { {0x7ae4002a, 0x25bf0087, 0x61fb0009, 0x00000000}},  //   nait, _fuul_, fuul,\n  { {0x7d1c0056, 0x21270082, 0x6e24002b, 0x00000000}},  //   kers, _banh_, _nsib,\n  { {0x7d1c36e0, 0x7ae4028c, 0x21270011, 0x00000000}},  //   jers, hait, _canh_,\n  { {0x7ae42a94, 0x2127001d, 0xb226009f, 0x00000000}},  //   kait, _danh_, fræð,\n  { {0x6d5e2756, 0x7ae400b0, 0x61fb0009, 0x00000000}},  //   _alpa, jait, buul,\n  { {0x7ae4002a, 0x7d1c010f, 0xad9b0051, 0x00000000}},  //   dait, fers, ltúi,\n  { {0x7d1c01bf, 0x6b5103b1, 0xada4007e, 0x00000000}},  //   gers, _lågt, каўл,\n  { {0x7ae438ab, 0x6e2401bc, 0xad9b0051, 0x00000000}},  //   fait, _esib, ntúi,\n  { {0x6d5e0211, 0x7ae4002d, 0x00000000, 0x00000000}},  //   _elpa, gait,   ,\n  { {0x753a0493, 0xad9b0051, 0x9f460161, 0x00000000}},  // [fb90] _ontz, htúi, nulý_,\n  { {0x6f1d03c7, 0x752805c9, 0x2127001d, 0x00000000}},  //   lesc, _nadz, _xanh_,\n  { {0x9cd600b6, 0x7ae40c54, 0x2d910142, 0x00000000}},  //   _אותה_, bait, moze_,\n  { {0x6f1d000d, 0x753a022b, 0x2d9100b5, 0x00000000}},  //   nesc, _antz, loze_,\n  { {0xc10e0082, 0x60ca00ea, 0xa3dc01f5, 0x00000000}},  //   _rỗng_, _offm, तीस_,\n  { {0x64a509b2, 0xd6d70044, 0xf56800a1, 0x00000000}},  //   нала, _হাওয, ومنٹ_,\n  { {0x6f1d007f, 0x21270082, 0x68e500b0, 0x00000000}},  //   kesc, _ranh_, mahd,\n  { {0x753a19f5, 0x2d910061, 0x7d1c014a, 0x00000000}},  //   _entz, hoze_, zers,\n  { {0x2d910061, 0x2ee004f2, 0x44c70065, 0x00000000}},  //   koze_, _reif_, _tё_,\n  { {0x2901011c, 0x2ee00020, 0x6f044022, 0x00000000}},  //   ngha_, _seif_, _scic,\n  { {0x61fb0009, 0x7ae400e7, 0x6e240066, 0x00000000}},  //   suul, yait, _ssib,\n  { {0x6f1d04e5, 0x7d1c0036, 0x6d890027, 0x00000000}},  //   gesc, wers, hľad,\n  { {0x80de0055, 0x7ae40f38, 0x7d1c4023, 0x00000000}},  //   _মার্, vait, ters,\n  { {0x61e908ce, 0x7ae4018e, 0xd1380036, 0x00000000}},  //   msel, wait, gląd_,\n  { {0x61e90160, 0x69cf001e, 0x7ae40094, 0x00000000}},  //   lsel, _atce, tait,\n  { {0x6f1d241d, 0x44251494, 0x69c4002b, 0x00000000}},  //   cesc, _msl_, tqie,\n  { {0x61e9081d, 0x7ae4002a, 0xf2d2061e, 0x00000000}},  // [fba0] nsel, rait, טען_,\n  { {0x7ae44024, 0x61e900b0, 0x44250d44, 0x00000000}},  //   sait, isel, _osl_,\n  { {0x75280036, 0x69cf1016, 0x62990016, 0x00000000}},  //   _radz, _etce, _lywo,\n  { {0xaa460b5f, 0x61e91be4, 0xdc77007b, 0x00000000}},  //   _земл, ksel, _טעיפ_,\n  { {0x44250197, 0x61e90030, 0x67294025, 0x00000000}},  //   _asl_, jsel, _daej,\n  { {0x61e905b7, 0x6f1d4026, 0xdb1e237c, 0x00000000}},  //   dsel, zesc, _supè,\n  { {0x61e90190, 0xbf200061, 0x18a30256, 0x00000000}},  //   esel, _बसून_, _барм,\n  { {0x4425010f, 0x62991ffe, 0x23a10010, 0x00000000}},  //   _dsl_, _bywo, tója_,\n  { {0x36670f09, 0x6f1d0638, 0xd1300025, 0x00000000}},  //   _зато_, vesc, لمة_,\n  { {0x04180044, 0x506601fc, 0x753a0032, 0x00000000}},  //   থিবী_, етма, _untz,\n  { {0x74130084, 0x6f1d0035, 0xa3dc013d, 0x00000000}},  //   _مولا, tesc, तीश_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6f1d03c7, 0x2d910161, 0x00000000, 0x00000000}},  //   resc, toze_,   ,\n  { {0x6b510073, 0x3014008b, 0x6f1d000d, 0x00000000}},  //   _någr, _адкр, sesc,\n  { {0x6f1d001a, 0x44250056, 0xac9511a6, 0x00000000}},  //   pesc, _xsl_, тавш,\n  { {0x409b009b, 0xddd000b9, 0x7bc3009d, 0x00000000}},  //   _מבוס, řeši, _énum,\n  { {0x2d910263, 0x23850089, 0x00000000, 0x00000000}},  // [fbb0] poze_, nēja_,   ,\n  { {0xfbd0026c, 0x7c250022, 0x00000000, 0x00000000}},  //   شتہ_, _tshr,   ,\n  { {0x2d540004, 0xb8080025, 0xdb1c0010, 0x00000000}},  //   _päev_, فيلم_, gpró,\n  { {0x45d50069, 0x57270025, 0x0675004c, 0x00000000}},  //   водс, عراق, куля,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x4a5a012e, 0x44252075, 0x61e9006c, 0x00000000}},  //   _חדשו, _psl_, vsel,\n  { {0xa3dc0365, 0xd7f8012b, 0xdb1e00f4, 0x00000000}},  //   तील_, _пут_, _supé,\n  { {0x61e9003c, 0x44254027, 0x2b4904eb, 0x00000000}},  //   tsel, _vsl_, njac_,\n  { {0x35b5008b, 0xdb061e20, 0x61e9007f, 0x00000000}},  //   _абар, _shkë, usel,\n  { {0xfa980049, 0x442510ea, 0x00000000, 0x00000000}},  //   עדזש_, _tsl_,   ,\n  { {0xe5360049, 0x44250197, 0x62990036, 0x00000000}},  //   _שטעט_, _usl_, _wywo,\n  { {0x61e903b6, 0x3f84006c, 0xdb0501a2, 0x00000000}},  //   psel, õmu_, _zuhö,\n  { {0xc7b20476, 0xdb1c010f, 0xfe25007e, 0x00000000}},  //   יבט_, rprü, льён,\n  { {0xdb1c010f, 0x332d1838, 0xf1ba0082, 0x00000000}},  //   sprü, ldex_, _giơ_,\n  { {0xeb9a0265, 0x69cb1d66, 0xfce308d6, 0x00000000}},  //   див_, ígen, росо,\n  { {0x332d4028, 0x00000000, 0x00000000, 0x00000000}},  //   ndex_,   ,   ,\n  { {0x320d00f6, 0xdd8a0423, 0xeb97007c, 0x00000000}},  // [fbc0] ntey_, _обид_, тит_,\n  { {0xa3c10316, 0x3d11006e, 0xe8f7019d, 0x00000000}},  //   ंदा_, द्दे_, клу_,\n  { {0x23850089, 0xd70a01ab, 0x6b5800fa, 0x00000000}},  //   zēja_, днее_, _lígi,\n  { {0x6d5c0089, 0x6561010e, 0x6e3608e0, 0x00000000}},  //   lkra, _allh, _kryb,\n  { {0x660f00f8, 0xdb1c01e5, 0x00000000, 0x00000000}},  //   _äckl, spró,   ,\n  { {0x6d5c0059, 0x6b831374, 0x23850089, 0x00000000}},  //   nkra, _íngr, vēja_,\n  { {0x8af03f8c, 0xa3dc006e, 0x6f164002, 0x00000000}},  //   hkəm, तीं_, _obyc,\n  { {0x040d001d, 0x2d54006c, 0x23850089, 0x00000000}},  //   _hướn, _käes_, tēja_,\n  { {0x24920036, 0x6d5c000c, 0x60cd0180, 0x00000000}},  //   łym_, kkra, _şama,\n  { {0xd5ae026c, 0x6d5c0142, 0x23850089, 0x00000000}},  //   _بہت_, jkra, rēja_,\n  { {0x250b026c, 0x395700b6, 0x934604b6, 0x00000000}},  //   _ترقی_, דשים_, _инже,\n  { {0x6d5c0277, 0xdcfc012d, 0xe4790049, 0x00000000}},  //   ekra, dorđ, _אָנש,\n  { {0x6458010a, 0x6d5c4029, 0x6e36005b, 0x00000000}},  //   lyvi, fkra, _cryb,\n  { {0xd12f0054, 0x6fca0164, 0x040d0011, 0x00000000}},  //   _ومن_, _संपू, _nướn,\n  { {0xc04f0088, 0x30a3005e, 0x9f5f0023, 0x00000000}},  //   _ті_, _кръв, nutë_,\n  { {0xe0b70049, 0x00000000, 0x00000000, 0x00000000}},  //   _בלוט_,   ,   ,\n  { {0x6e360006, 0x48fe0204, 0x5f7400a2, 0x00000000}},  // [fbd0] _gryb, _लाखो_, _خاور,\n  { {0x6d5c0039, 0x7bc10010, 0x6458402a, 0x00000000}},  //   ckra, ílus, kyvi,\n  { {0x1aef0044, 0xc7f5012b, 0x2d830091, 0x00000000}},  //   ঙ্গে_, узећ, mnje_,\n  { {0x29072608, 0x2bb40061, 0xfaff0065, 0x00000000}},  //   żna_, ंगणा, _emër_,\n  { {0xd246039d, 0xb9090055, 0x7bc50504, 0x00000000}},  //   _ان_, _যা_, _huhu,\n  { {0x7bc5000b, 0x24090d03, 0x6b581343, 0x00000000}},  //   _kuhu, енки_, _rígi,\n  { {0x7bc51cc1, 0x37c400e2, 0x3f8200b4, 0x00000000}},  //   _juhu, _вљуб, ynku_,\n  { {0xbebb008d, 0x6d5c0089, 0xe1f90006, 0x00000000}},  //   ndës, zkra, trų_,\n  { {0x7bc504be, 0x2bb40061, 0x2d83183b, 0x00000000}},  //   _luhu, ंगता, knje_,\n  { {0x2d83037e, 0xdb0f00c4, 0x040d0011, 0x00000000}},  //   jnje_, _ficç, _xướn,\n  { {0x2d83092f, 0xdee6003b, 0x64580061, 0x00000000}},  //   dnje_, лони, cyvi,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x9f60000c, 0x5f0501f5, 0x6d5c073a, 0x00000000}},  //   _þrír_, _वार्_, tkra,\n  { {0x31790049, 0x7bc50035, 0x8e7501e1, 0x00000000}},  //   _ראַד, _buhu, руюч,\n  { {0x6d5c39ab, 0xd00e039d, 0xeb0f0061, 0x00000000}},  //   rkra, _فلو_, ाभूत_,\n  { {0x7bc52626, 0x040d0011, 0x6e360036, 0x00000000}},  //   _duhu, _sướn, _tryb,\n  { {0xa3ab00e8, 0x61fb00eb, 0x2d8300ca, 0x00000000}},  // [fbe0] _गठन_, nrul, bnje_,\n  { {0x6d5a006c, 0x645d006b, 0x61fb0145, 0x00000000}},  //   ötad, _əsir, irul,\n  { {0x7bc50061, 0x040d0082, 0x00000000, 0x00000000}},  //   _guhu, _vướn,   ,\n  { {0x23850089, 0x61fb046a, 0xf7290088, 0x00000000}},  //   dējo_, krul, кцій_,\n  { {0x040d001d, 0xe505006e, 0x7bc51e3a, 0x00000000}},  //   _tướn, _राशि_, _zuhu,\n  { {0xad9b402b, 0x64580006, 0x61fb163a, 0x00000000}},  //   ltúr, tyvi, drul,\n  { {0xbebb008d, 0x2918402c, 0x98a30089, 0x00000000}},  //   ndër, _ibra_, _tajā_,\n  { {0x6b841aef, 0x2d8312d6, 0x69c60bd5, 0x00000000}},  //   nnig, znje_, _kuke,\n  { {0xa686005e, 0xd25002fd, 0x7ae612fd, 0x00000000}},  //   _слад, زند_, _mekt,\n  { {0xd1300167, 0x69c6023a, 0xb426035b, 0x00000000}},  //   آمد_, _muke, _معصو,\n  { {0x69c61b51, 0xad9b1c59, 0x660200b0, 0x00000000}},  //   _luke, ktúr, luok,\n  { {0xa3c10309, 0x7ae62d0f, 0x7bc50c04, 0x00000000}},  //   ंदर_, _nekt, _ruhu,\n  { {0x291806c2, 0x69c60006, 0x2d830825, 0x00000000}},  //   _obra_, _nuke, tnje_,\n  { {0x7bc508b2, 0xbd450025, 0xa903007d, 0x00000000}},  //   _puhu, جنسي, _लाइफ_,\n  { {0x69c6022b, 0x7ae616b4, 0x2d830c1e, 0x00000000}},  //   _auke, _bekt, rnje_,\n  { {0x2d83037e, 0x6602007f, 0x29180285, 0x00000000}},  //   snje_, kuok, _abra_,\n  { {0x49750878, 0x2d832794, 0x67220211, 0x00000000}},  // [fbf0] алас, pnje_, deoj,\n  { {0x69c6008d, 0x7bc5000b, 0x66020006, 0x00000000}},  //   _duke, _tuhu, duok,\n  { {0x290f0036, 0x7ae60232, 0x69c60032, 0x00000000}},  //   ęga_, _fekt, _euke,\n  { {0x98140025, 0x7ae600d9, 0x61e2000a, 0x00000000}},  //   إبلا, _gekt, _owol,\n  { {0xa509003b, 0x69c60009, 0x25be000a, 0x00000000}},  //   вела_, _guke, _bitl_,\n  { {0x499300a1, 0x61fb014a, 0x23850089, 0x00000000}},  //   _ایئر, vrul, tējo_,\n  { {0x67d40057, 0x97a709c0, 0x61e200f6, 0x00000000}},  //   _госу, _брал, _awol,\n  { {0xe299008b, 0x78ba2c52, 0x986a0279, 0x00000000}},  //   кай_, _útva, lığa_,\n  { {0xe6670cb7, 0x69c0009d, 0x163404dd, 0x00000000}},  //   _ство, _émet, _летя,\n  { {0x50b501ee, 0x3f890145, 0x23850089, 0x00000000}},  //   исну, _ajau_, pējo_,\n  { {0x68e72b0c, 0xa0a50081, 0x93190025, 0x00000000}},  //   _mejd, ранд, _لقاء_,\n  { {0x75230207, 0xbebb0023, 0x68300010, 0x00000000}},  //   lenz, vdër, lódá,\n  { {0x614501f9, 0x91e50216, 0x44270016, 0x00000000}},  //   _вела, _толе, lwn_,\n  { {0x68e701ca, 0x75233734, 0x69c600ea, 0x00000000}},  //   _nejd, nenz, _ruke,\n  { {0xad9b009f, 0x69c604a5, 0x61e2326f, 0x00000000}},  //   ttúr, _suke, _zwol,\n  { {0x7523010f, 0x69c600b0, 0xee3a02dc, 0x00000000}},  //   henz, _puke, _ани_,\n\n  { {0x7ae60056, 0xdb1d0666, 0x8d760151, 0x00000000}},  // [fc00] _vekt, _misè, _نادا,\n  { {0x2fc70811, 0x75230526, 0xebe60920, 0x00000000}},  //   _kung_, jenz, _кооп,\n  { {0x2d98008d, 0x752313f0, 0x7ae626bf, 0x00000000}},  //   more_, denz, _tekt,\n  { {0x69c600b0, 0x66020006, 0x2d98051b, 0x00000000}},  //   _tuke, tuok, lore_,\n  { {0x2fc7402d, 0x75230253, 0x68e70146, 0x00000000}},  //   _lung_, fenz, _fejd,\n  { {0x75230fb1, 0x66020997, 0x2d98402e, 0x00000000}},  //   genz, ruok, nore_,\n  { {0x2fc7006a, 0xf8aa013d, 0xdb1d000a, 0x00000000}},  //   _nung_, _करिय, _bisè,\n  { {0x2d981202, 0xe3af0d3a, 0x9f5f009d, 0x00000000}},  //   hore_, وري_, puté_,\n  { {0x75230253, 0x2d982cb2, 0x2fc700ea, 0x00000000}},  //   benz, kore_, _aung_,\n  { {0xf8aa0201, 0x2fc7402f, 0x2d9829b5, 0x00000000}},  //   _कराय, _bung_, jore_,\n  { {0x2fc7001d, 0x2d98002d, 0x656a0051, 0x00000000}},  //   _cung_, dore_, mhfh,\n  { {0x2fc7001d, 0x442c0035, 0x00000000, 0x00000000}},  //   _dung_, _isd_,   ,\n  { {0x2d980038, 0x98a70107, 0x442c0bec, 0x00000000}},  //   fore_, _čiča_, _hsd_,\n  { {0x2d980617, 0xa1570b87, 0x7f88006b, 0x00000000}},  //   gore_, _вашу_, lıql,\n  { {0x442c041e, 0x6c540072, 0x92e80044, 0x00000000}},  //   _jsd_, окру, বলী_,\n  { {0x7523010f, 0x68e74030, 0x442c1fc2, 0x00000000}},  //   zenz, _sejd, _msd_,\n  { {0x2d980007, 0x98a30046, 0x442c3120, 0x00000000}},  // [fc10] bore_, _mają_, _lsd_,\n  { {0x2d98028c, 0x2fc7006a, 0x23660065, 0x00000000}},  //   core_, _yung_, _lloj_,\n  { {0xd87901f7, 0x752301bc, 0x2fc70011, 0x00000000}},  //   دمات_, venz, _xung_,\n  { {0xf77006b4, 0x7523002b, 0x3f990091, 0x00000000}},  //   وان_, wenz, nosu_,\n  { {0x752313f0, 0x7aed03b6, 0x442c0197, 0x00000000}},  //   tenz, maat, _asd_,\n  { {0x7aed02ae, 0x442c0051, 0x2ee90133, 0x00000000}},  //   laat, _bsd_, _leaf_,\n  { {0x7523054f, 0xdb1d4031, 0x6f0d008e, 0x00000000}},  //   renz, _aisé, _ocac,\n  { {0x75234032, 0x2d980065, 0x7aed003c, 0x00000000}},  //   senz, zore_, naat,\n  { {0x75234033, 0x2fc70011, 0x2d980173, 0x00000000}},  //   penz, _sung_, yore_,\n  { {0x0fd91036, 0x442c1a9b, 0x2fc70487, 0x00000000}},  //   льмы_, _fsd_, _pung_,\n  { {0x2d980213, 0x6e2d0101, 0x7aed003c, 0x00000000}},  //   vore_, _asab, kaat,\n  { {0x320409b6, 0x2fc70082, 0x6b5800f6, 0x00000000}},  //   bumy_, _vung_, _lígr,\n  { {0x2d980198, 0xd00e00a6, 0x6e2d0010, 0x00000000}},  //   tore_, ولی_, _csab,\n  { {0x61d600b6, 0x2fc70011, 0x5fcf0061, 0x00000000}},  //   _הוסף_, _tung_, _संपल,\n  { {0x2d984034, 0x645c0004, 0x442c00ea, 0x00000000}},  //   rore_, _ürit, _xsd_,\n  { {0x2d98008d, 0xd113007d, 0x256b01e3, 0x00000000}},  //   sore_, त्रण_, _følg_,\n  { {0x20051fec, 0x7f440a15, 0xdb1e32b6, 0x00000000}},  // [fc20] luli_, _iniq, _cupá,\n  { {0x7aed001c, 0xfe3701ce, 0xeaaf00a1, 0x00000000}},  //   aaat, _פריי_, رٹل_,\n  { {0xb17a007b, 0x20050466, 0x7d5701ce, 0x00000000}},  //   נטער, nuli_, _הייד_,\n  { {0x7aed0061, 0x7bdc3a9a, 0x6e2d0058, 0x00000000}},  //   caat, mpru, _ysab,\n  { {0x2005011c, 0xdcf50089, 0x68f8025a, 0x00000000}},  //   huli_, lizā, _نکاح_,\n  { {0x442c001a, 0x200500e7, 0x78ba0010, 0x00000000}},  //   _psd_, kuli_, _útvo,\n  { {0xdcf5001e, 0x888400a6, 0xb97b0049, 0x00000000}},  //   nizā, _بیان, _ענלי,\n  { {0xd32601fb, 0x51f8007c, 0xcc3b0049, 0x00000000}},  //   ськи, анию_, רעקט,\n  { {0x637e0006, 0x42540014, 0x7f88013f, 0x00000000}},  //   gūna, زندر, rıql,\n  { {0x77620066, 0x6f0d0197, 0x463b0049, 0x00000000}},  //   lkox, _scac, _געמע,\n  { {0x442c001d, 0x2005001a, 0x6e2d4035, 0x00000000}},  //   _usd_, guli_, _ssab,\n  { {0xd041005f, 0x3f670088, 0xd5be01c5, 0x00000000}},  //   nclə, стоб, žāda_,\n  { {0x7aed4036, 0x88c00044, 0x225a004b, 0x00000000}},  //   vaat, েরিক, _حجاب_,\n  { {0x41b6005e, 0x7aed00e7, 0xdb0d0048, 0x00000000}},  //   _усет, waat, rmaí,\n  { {0x7aed001c, 0xd0b2005f, 0x317b009b, 0x00000000}},  //   taat, yğəm, _תרומ,\n  { {0x317e002d, 0x6e2d0085, 0x00000000, 0x00000000}},  //   litz_, _tsab,   ,\n  { {0x6e2d0129, 0x7aed003c, 0x656830a0, 0x00000000}},  // [fc30] _usab, raat, _oldh,\n  { {0x7aed03b6, 0xb88201ca, 0xd058006b, 0x00000000}},  //   saat, čína, _sevə,\n  { {0x6d4503a1, 0x3a290019, 0x7aed0103, 0x00000000}},  //   _inha, swap_, paat,\n  { {0x317e0032, 0x00000000, 0x00000000, 0x00000000}},  //   hitz_,   ,   ,\n  { {0x20054037, 0xf8ae00a6, 0x940b0061, 0x00000000}},  //   zuli_, _یکم_, सूनच_,\n  { {0x99890046, 0x637e0006, 0x23d50072, 0x00000000}},  //   stał_, vūna, оцир,\n  { {0x317e0288, 0xa349004d, 0x00000000, 0x00000000}},  //   ditz_, изка_,   ,\n  { {0x6fcf02fb, 0xe1f9019d, 0x6568000c, 0x00000000}},  //   _संबं, аги_, _eldh,\n  { {0xc79600a1, 0x6d4500b0, 0xdc3c0802, 0x00000000}},  //   _بھلا_, _onha, váče,\n  { {0x7f56006b, 0xbebb01d6, 0x317e0032, 0x00000000}},  //   _soyq, reël, gitz_,\n  { {0xcea90097, 0xdb040051, 0x92f900f3, 0x00000000}},  //   _סי_, rmiú, _نفاذ_,\n  { {0x60dc01f6, 0x6d454038, 0x25f0013d, 0x00000000}},  //   ırma, _anha, ुंची_,\n  { {0xd109007a, 0x6d5700f8, 0x200500a9, 0x00000000}},  //   _نقشه_, _boxa, suli_,\n  { {0xafe51662, 0x200500b0, 0xdcf50089, 0x00000000}},  //   _докл, puli_, tizā,\n  { {0xeb7a06e3, 0xdb060010, 0x6da302dc, 0x00000000}},  //   асај_, _mikö, фира,\n  { {0xe80d001c, 0x7f440549, 0x6d4500ab, 0x00000000}},  //   ांना_, _uniq, _enha,\n  { {0x7bdc127c, 0xfaa30a30, 0xe9d70454, 0x00000000}},  // [fc40] spru, дато, жку_,\n  { {0x77694039, 0x7bdc002b, 0x2cad00b9, 0x00000000}},  //   _alex, ppru, ředa_,\n  { {0xad9b0051, 0x236d012d, 0x6c68009e, 0x00000000}},  //   srúc, khej_, _طلحہ_,\n  { {0x99800006, 0xdcfc007f, 0x00000000, 0x00000000}},  //   tvių_, torė,   ,\n  { {0x9b8a00a1, 0xd041006b, 0x236d0065, 0x00000000}},  //   _منگل_, rclə, dhej_,\n  { {0x77690032, 0x9633007e, 0x00000000, 0x00000000}},  //   _elex, ьніц,   ,\n  { {0x317e18d9, 0xdcf5001a, 0x77690905, 0x00000000}},  //   vitz_, liză, _flex,\n  { {0x3958028c, 0x938a0098, 0x317e0f10, 0x00000000}},  //   _hors_, јска_, witz_,\n  { {0x914a007e, 0x395802c0, 0x317e0032, 0x00000000}},  //   ачна_, _kors_, titz_,\n  { {0x5503041f, 0x00000000, 0x00000000, 0x00000000}},  //   _опуб,   ,   ,\n  { {0x6d57001a, 0x39580286, 0x317e0f30, 0x00000000}},  //   _roxa, _mors_, ritz_,\n  { {0x395800f4, 0x317e010f, 0x6d5a0dac, 0x00000000}},  //   _lors_, sitz_, ötan,\n  { {0x3ead0030, 0x6ce60061, 0x443e016e, 0x00000000}},  //   ået_, करंग_, _hrt_,\n  { {0x3958010a, 0x7d1b0091, 0x443e225a, 0x00000000}},  //   _nors_, đuso, _krt_,\n  { {0x6602403a, 0x443e06ed, 0x00000000, 0x00000000}},  //   hrok, _jrt_,   ,\n  { {0x443e00b5, 0x3a22023a, 0x66020161, 0x00000000}},  //   _mrt_, _bpkp_, krok,\n  { {0x39580007, 0x443e0bce, 0x4fb403d6, 0x00000000}},  // [fc50] _bors_, _lrt_, _تصور,\n  { {0xc4c4026c, 0x443e403b, 0xad9b009f, 0x00000000}},  //   _لے_, _ort_, brúa,\n  { {0x3958403c, 0x00000000, 0x00000000, 0x00000000}},  //   _dors_,   ,   ,\n  { {0xe80c001c, 0x66020190, 0x00000000, 0x00000000}},  //   _हमरा_, frok,   ,\n  { {0x8af0005f, 0x443e0e6e, 0x66270054, 0x00000000}},  //   rkət, _art_, تراك,\n  { {0x443e00c4, 0x3958005b, 0xe5780088, 0x00000000}},  //   _brt_, _gors_, озі_,\n  { {0x5fc60061, 0x00000000, 0x00000000, 0x00000000}},  //   _रंगल,   ,   ,\n  { {0x660201b5, 0x224d002d, 0x443e00c4, 0x00000000}},  //   brok, txek_, _drt_,\n  { {0x443e009f, 0x0ca8013d, 0x660200d9, 0x00000000}},  //   _ert_, _गर्म, crok,\n  { {0x8af0006b, 0x60090140, 0x236d0023, 0x00000000}},  //   nkər, бном_, shej_,\n  { {0x443e00bb, 0xdb1d0051, 0x225f01a3, 0x00000000}},  //   _grt_, _aisí, syuk_,\n  { {0x88d10044, 0x9f5f00f6, 0x2a60013f, 0x00000000}},  //   িরিক, gutà_, yyib_,\n  { {0x443e0010, 0x3ea4000c, 0xe28e01ee, 0x00000000}},  //   _zrt_, æmt_, _ча_,\n  { {0xd2560104, 0xe80c013d, 0xad9b000c, 0x00000000}},  //   _משנה_, _हमला_, trúa,\n  { {0xdb1d0051, 0x2b590129, 0x66020e0d, 0x00000000}},  //   _eisí, _bosc_, zrok,\n  { {0x3958403d, 0x5aca00ed, 0xaffa0049, 0x00000000}},  //   _sors_, слам_, _פּוי,\n  { {0x3f820bd6, 0x9b46026c, 0xe8fa0069, 0x00000000}},  // [fc60] miku_, _ہندو, йла_,\n  { {0x23850089, 0xdcf50035, 0x9f5f0062, 0x00000000}},  //   mēju_, riză, vrté_,\n  { {0x2b590115, 0xc7260242, 0x39583d4f, 0x00000000}},  //   _fosc_, здей, _vors_,\n  { {0x66020168, 0xe5c60184, 0x395801d6, 0x00000000}},  //   trok, пско, _wors_,\n  { {0xe5340057, 0x39580193, 0x7ae40020, 0x00000000}},  //   дель, _tors_, mbit,\n  { {0x66020e33, 0x443e0093, 0x2bb4013d, 0x00000000}},  //   rrok, _prt_, ंगका,\n  { {0x7bc6000b, 0x6ba70181, 0xe73a004d, 0x00000000}},  //   _kiku, _órgã, _лев_,\n  { {0x443e07a0, 0x07a30245, 0xe76a039d, 0x00000000}},  //   _vrt_, _засн, _احسن_,\n  { {0x3f8211b2, 0x7bc60142, 0xa6aa0b03, 0x00000000}},  //   diku_, _miku, _طارق_,\n  { {0x7bc6001e, 0x443e1bae, 0x26c00006, 0x00000000}},  //   _liku, _trt_, žios_,\n  { {0x3f8201d5, 0x6e240006, 0x443e0032, 0x00000000}},  //   fiku_, _apib, _urt_,\n  { {0xdb0400f4, 0x69da00b9, 0x7bc60020, 0x00000000}},  //   blié, _čten, _niku,\n  { {0x614604af, 0x3a3b0061, 0x62340ae0, 0x00000000}},  //   _неда, xvqp_, _целу,\n  { {0xb2bb00a0, 0x7bc600b0, 0xdb1d00c4, 0x00000000}},  //   _המדר, _aiku, _visí,\n  { {0xaeec0055, 0x7bc60009, 0x63a2002b, 0x00000000}},  //   _কারণ_, _biku, _kkon,\n  { {0xdb1d0161, 0x7bc60690, 0x7ae402c6, 0x00000000}},  //   _tisí, _ciku, gbit,\n  { {0x2aab0001, 0x63a2000b, 0x7bc6403e, 0x00000000}},  // [fc70] ство_, _mkon, _diku,\n  { {0xd1380aec, 0x799e0455, 0x38c9025a, 0x00000000}},  //   ndą_, gopw, زائی_,\n  { {0x63a20f9e, 0x2d830213, 0x764005d2, 0x00000000}},  //   _okon, mije_, _army,\n  { {0x2d830213, 0x7bc6403f, 0x6d4f0107, 0x00000000}},  //   lije_, _giku, škač,\n  { {0x6b8d0203, 0x00000000, 0x00000000, 0x00000000}},  //   mnag,   ,   ,\n  { {0x2d830295, 0x63a2006a, 0x3f820091, 0x00000000}},  //   nije_, _akon, ziku_,\n  { {0x26d2011f, 0x7bc60045, 0x2fdc00d9, 0x00000000}},  //   ıyor_, _yiku, _ntvg_,\n  { {0xc245012b, 0x6b8d11be, 0x2d83016c, 0x00000000}},  //   дник, nnag, hije_,\n  { {0x69c713df, 0x6b8d2627, 0x3f82006c, 0x00000000}},  //   _kije, inag, viku_,\n  { {0x2d8301aa, 0x69cf0ce0, 0x7aef3e56, 0x00000000}},  //   jije_, _muce, _lect,\n  { {0x3f824040, 0x7afd07ac, 0x69cf0211, 0x00000000}},  //   tiku_, _odst, _luce,\n  { {0x69c70182, 0x6f0f001c, 0x69dd006c, 0x00000000}},  //   _lije, ggcc, _otse,\n  { {0x3f82097f, 0x2d83021c, 0x7bc633d1, 0x00000000}},  //   riku_, fije_, _riku,\n  { {0x7bc64041, 0x2d830bf8, 0x69c70091, 0x00000000}},  //   _siku, gije_, _nije,\n  { {0xdca30920, 0x69dd1f2e, 0x7bc60145, 0x00000000}},  //   вари, _atse, _piku,\n  { {0x6b8d19cd, 0x63a91147, 0x6f0f001c, 0x00000000}},  //   gnag, nlen, cgcc,\n  { {0x2d83021d, 0x7bc64042, 0x7ae41b5c, 0x00000000}},  // [fc80] bije_, _viku, rbit,\n  { {0x2d83092f, 0x69c70209, 0x0d83085f, 0x00000000}},  //   cije_, _cije, _альн,\n  { {0x69c712e0, 0x63a906e6, 0x7bc64043, 0x00000000}},  //   _dije, klen, _tiku,\n  { {0x68ee2893, 0x63bb1aa8, 0xdb1d0181, 0x00000000}},  //   _webd, jmun, _visã,\n  { {0x63a94044, 0x4425088a, 0x63bb01e5, 0x00000000}},  //   dlen, _apl_, dmun,\n  { {0x63a24045, 0x6b844046, 0x63a900b4, 0x00000000}},  //   _skon, liig, elen,\n  { {0x63a90016, 0x44252b60, 0x00000000, 0x00000000}},  //   flen, _cpl_,   ,\n  { {0xdb0d02d5, 0xf626098c, 0x6d5a0004, 0x00000000}},  //   rmaç, _одбо, ötaj,\n  { {0x644115cd, 0x4425006c, 0x20050026, 0x00000000}},  //   _erli, _epl_, erli_,\n  { {0xbe140044, 0x7bde0091, 0x64410087, 0x00000000}},  //   িবাদ_, _otpu, _frli,\n  { {0x63a910a4, 0x6441037e, 0x2d830825, 0x00000000}},  //   blen, _grli, vije_,\n  { {0x63a900f4, 0x63a20161, 0xdb0f00f6, 0x00000000}},  //   clen, _ukon, _licò,\n  { {0x2d834047, 0x20050197, 0xc0460014, 0x00000000}},  //   tije_, arli_, سخگو,\n  { {0x63a00232, 0x6e3d0190, 0x69cf145e, 0x00000000}},  //   lomn, rvsb, _ruce,\n  { {0x69c70182, 0x69cf00d6, 0xe571007b, 0x00000000}},  //   _rije, _suce, אַן_,\n  { {0x69c70209, 0x63a00107, 0x2d830340, 0x00000000}},  //   _sije, nomn, sije_,\n  { {0x200c002b, 0x69c70091, 0x6b8d00f4, 0x00000000}},  // [fc90] ludi_, _pije, rnag,\n  { {0x63a9014a, 0x9f5f0051, 0x63bb006b, 0x00000000}},  //   zlen, irtí_, zmun,\n  { {0x69c70363, 0x7aef041d, 0x63a9014a, 0x00000000}},  //   _vije, _tect, ylen,\n  { {0xf8df02f4, 0x28df02fb, 0x63a90061, 0x00000000}},  //   _प्रय, _प्रि, xlen,\n  { {0x69c70209, 0x200c1cce, 0x69dd01c9, 0x00000000}},  //   _tije, hudi_, _utse,\n  { {0x660b00c7, 0x212c0065, 0x63a903cd, 0x00000000}},  //   rugk, jedh_, wlen,\n  { {0x63a90047, 0x03a508d6, 0x64a20175, 0x00000000}},  //   tlen, нико, лаша,\n  { {0x4255026b, 0x23850089, 0x64410ce4, 0x00000000}},  //   етот, vējs_, _vrli,\n  { {0x63a9011f, 0x26cd0d3f, 0x00000000, 0x00000000}},  //   rlen, _igeo_,   ,\n  { {0x63bb000c, 0x44250e9b, 0xd5b11289, 0x00000000}},  //   smun, _tpl_, _صفا_,\n  { {0x63bb0479, 0x3ea904cb, 0x200c012d, 0x00000000}},  //   pmun, _ayat_, gudi_,\n  { {0xc27502ea, 0x63a00382, 0xb2750269, 0x00000000}},  //   _плеј, comn, _плеш,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x200508fb, 0x200c0091, 0x00000000, 0x00000000}},  //   prli_, budi_,   ,\n  { {0x6ea002fb, 0x3f6a012b, 0xc4d2009b, 0x00000000}},  //   _गुरु, _нико_, רגל_,\n  { {0x92c30055, 0xe9da007e, 0x645c00d4, 0x00000000}},  //   ্রী_, зка_, _àrie,\n  { {0x6b84224c, 0xe1f90006, 0x3946007e, 0x00000000}},  // [fca0] riig, nsų_, ннаг,\n  { {0x850e013d, 0x26cd0032, 0x6b8406ed, 0x00000000}},  //   _साइट_, _ageo_, siig,\n  { {0x3c39013e, 0x00000000, 0x00000000, 0x00000000}},  //   rývá_,   ,   ,\n  { {0x09e61c84, 0x68e301f6, 0xd6c40014, 0x00000000}},  //   _помн, ında, نمای,\n  { {0x6d5e0059, 0x16342e54, 0x92c30044, 0x00000000}},  //   _kopa, теля, ্রু_,\n  { {0x7af60922, 0x26cd0026, 0x6d5e0052, 0x00000000}},  //   layt, _egeo_, _jopa,\n  { {0x6d5e0c2d, 0x69d60065, 0x5334005e, 0x00000000}},  //   _mopa, lqye, вейт,\n  { {0x31c8007d, 0x8c1b00a0, 0x63750048, 0x00000000}},  //   रद्ध, לוצי, _lánf,\n  { {0xc2980805, 0x320d2892, 0x200c0009, 0x00000000}},  //   ьких_, guey_, wudi_,\n  { {0x63a00142, 0x200c4048, 0x02e0007d, 0x00000000}},  //   somn, tudi_, _ग्रह_,\n  { {0x63a04049, 0xb4cc0164, 0x69d60023, 0x00000000}},  //   pomn, रखी_, hqye,\n  { {0x20020825, 0x200c28d3, 0x753a0032, 0x00000000}},  //   čki_, rudi_, _hatz,\n  { {0x2fc90061, 0x753a010f, 0x200c404a, 0x00000000}},  //   _viag_, _katz, sudi_,\n  { {0x6d5e00f4, 0x238c00b9, 0x6d89012d, 0x00000000}},  //   _copa, ději_, džac,\n  { {0xfbd90055, 0x1fa7007c, 0x850e006e, 0x00000000}},  //   ধীনত, _приг, _साईट_,\n  { {0x7af6404b, 0x9b580256, 0x753a002d, 0x00000000}},  //   gayt, нист_, _latz,\n  { {0x7f4d404c, 0x00000000, 0x00000000, 0x00000000}},  // [fcb0] _inaq,   ,   ,\n  { {0x7cd9007c, 0x93bc0035, 0x753a0032, 0x00000000}},  //   _юмор_, _spăl, _natz,\n  { {0x7f4d0023, 0x00000000, 0x00000000, 0x00000000}},  //   _knaq,   ,   ,\n  { {0xdddd0036, 0x7f4d002b, 0x00000000, 0x00000000}},  //   mysł, _jnaq,   ,\n  { {0x753a022b, 0x26c2013e, 0x7f4d0066, 0x00000000}},  //   _batz, _úkol_, _mnaq,\n  { {0xceb400a0, 0x753a00e5, 0x6d5e00f6, 0x00000000}},  //   ניס_, _catz, _xopa,\n  { {0x753a404d, 0xd4e40088, 0x00000000, 0x00000000}},  //   _datz, уючи,   ,\n  { {0x6604016c, 0x78b500ca, 0x00000000, 0x00000000}},  //   šika, _izzv,   ,\n  { {0xa53501e0, 0x45d50088, 0x753a0035, 0x00000000}},  //   _инач, _розс, _fatz,\n  { {0x673b0020, 0x753a002d, 0xeeeb0082, 0x00000000}},  //   _hauj, _gatz, ướng_,\n  { {0xdee60216, 0x92c30044, 0x7f5f01f3, 0x00000000}},  //   кони, ্রে_, _boqq,\n  { {0x6d5e2136, 0x2d910207, 0x673b0288, 0x00000000}},  //   _sopa, enze_, _jauj,\n  { {0x6d5e0036, 0x9f5f00b0, 0x4de20044, 0x00000000}},  //   _popa, yttö_, _বিহং,\n  { {0xdb1d0f3c, 0x6025008b, 0x61fb27d2, 0x00000000}},  //   _lisä, _адка, msul,\n  { {0xdca601fe, 0x61fb26d3, 0xddca0010, 0x00000000}},  //   тави, lsul, ínűl,\n  { {0x673b0736, 0x98a700b9, 0x2d91404e, 0x00000000}},  //   _nauj, žně_, anze_,\n  { {0x6d5e002d, 0x81e50055, 0x7af60288, 0x00000000}},  // [fcc0] _topa, _ফিড_, rayt,\n  { {0xbef20061, 0x7af600e0, 0x00000000, 0x00000000}},  //   _अजुन_, sayt,   ,\n  { {0x61fb006b, 0x673b010f, 0x00000000, 0x00000000}},  //   hsul, _bauj,   ,\n  { {0x61fb08af, 0x753a01a2, 0x6a86007c, 0x00000000}},  //   ksul, _satz, _алма,\n  { {0x9f5900f4, 0x637500f1, 0x00000000, 0x00000000}},  //   éré_, _mánd,   ,\n  { {0xb4cc0061, 0xe5e50025, 0x6e29014a, 0x00000000}},  //   रखे_, اثني, çebi,\n  { {0x29180180, 0xbef20061, 0xe9df001d, 0x00000000}},  //   _icra_, _अजून_, _trúc_,\n  { {0x442001d5, 0x60cd014a, 0x673b404f, 0x00000000}},  //   ċi_, _şamp, _gauj,\n  { {0x171b007b, 0x75820123, 0x61fb011c, 0x00000000}},  //   _קומע, _پیغم, gsul,\n  { {0x71740b59, 0x673b120f, 0x7f5f0026, 0x00000000}},  //   اهدا, _zauj, _soqq,\n  { {0x7bda008e, 0x63750048, 0x00000000, 0x00000000}},  //   ítul, _bánd,   ,\n  { {0x6375004a, 0xbb1b0035, 0xbebb01d6, 0x00000000}},  //   _cánd, _amîn, deër,\n  { {0x5f941277, 0x76420e5e, 0x6375008e, 0x00000000}},  //   рият, nvoy, _dánd,\n  { {0x7e600039, 0x61ed005a, 0x61e20e31, 0x00000000}},  //   ämpa, _çala, _itol,\n  { {0x08f10044, 0x7f4d002b, 0x7f5f006b, 0x00000000}},  //   _চালু_, _tnaq, _toqq,\n  { {0x22460387, 0xa05700a0, 0x29184050, 0x00000000}},  //   _krok_, _יסוד_, _acra_,\n  { {0x33260009, 0xdb04000c, 0x201e1c86, 0x00000000}},  // [fcd0] _mbox_, rmið, ltti_,\n  { {0xdb1d021e, 0xd7e701fb, 0x201e0197, 0x00000000}},  //   _sisä, відо, otti_,\n  { {0x213e0061, 0x201e021e, 0xa9c40425, 0x00000000}},  //   idth_, ntti_, рстк,\n  { {0x201e021e, 0xaa590437, 0xd6db0088, 0x00000000}},  //   itti_, _зиму_, єте_,\n  { {0xf7700123, 0x63b9018e, 0x98b1001a, 0x00000000}},  //   غام_, _rhwn, _bază_,\n  { {0xe9df004a, 0xa9790049, 0x00000000, 0x00000000}},  //   _grúa_, _טאָכ,   ,\n  { {0x61e23890, 0xdb040010, 0x22460022, 0x00000000}},  //   _atol, lliá, _arok_,\n  { {0x61fb0be4, 0x22460b38, 0x33260f6d, 0x00000000}},  //   tsul, _brok_, _cbox_,\n  { {0x68f50047, 0x201e1c89, 0x61fb0032, 0x00000000}},  //   _kezd, etti_, usul,\n  { {0x68f54051, 0x61fb1403, 0x63750010, 0x00000000}},  //   _jezd, rsul, _sánd,\n  { {0x61fb000c, 0xbfc6005e, 0xa0690887, 0x00000000}},  //   ssul, лбок, хана_,\n  { {0xeeeb00ad, 0x201804bd, 0x33264052, 0x00000000}},  //   ường_, ària_, _gbox_,\n  { {0x65610039, 0x5fcf0309, 0x201e20b0, 0x00000000}},  //   _kolh, _संकल, atti_,\n  { {0x68f50142, 0x90450439, 0x00000000, 0x00000000}},  //   _nezd, _منته,   ,\n  { {0xab2a017a, 0xd0110025, 0x65610181, 0x00000000}},  //   нова_, _الع_, _molh,\n  { {0xf09200b6, 0x29030010, 0x333f002b, 0x00000000}},  //   _לנו_, _adja_, ndux_,\n  { {0xf2d2007b, 0x68f54053, 0xbebb01d6, 0x00000000}},  // [fce0] מען_, _bezd, seër,\n  { {0x29030087, 0x00000000, 0x00000000, 0x00000000}},  //   _cdja_,   ,   ,\n  { {0x9d1b007b, 0x00000000, 0x00000000, 0x00000000}},  //   _אויט,   ,   ,\n  { {0x2a69000a, 0x6375004a, 0xe9df004a, 0x00000000}},  //   byab_, _yáne, _irún_,\n  { {0x656101d9, 0xe9df000c, 0x98b10035, 0x00000000}},  //   _bolh, _trúa_, _pază_,\n  { {0x65610181, 0xad9b4054, 0xceb30104, 0x00000000}},  //   _colh, trúi, ציג_,\n  { {0x61e20db9, 0x3a2001aa, 0xb426026c, 0x00000000}},  //   _stol, ltip_, اعتو,\n  { {0x69ce0066, 0x2b400129, 0x61e200ea, 0x00000000}},  //   _hibe, ndic_, _ptol,\n  { {0x69ce0509, 0x65610181, 0xc1741192, 0x00000000}},  //   _kibe, _folh, илищ,\n  { {0x6f044055, 0xe8e00011, 0x2ee00022, 0x00000000}},  //   _adic, _đớn_, _afif_,\n  { {0x69ce4056, 0x05770025, 0x7e6000f8, 0x00000000}},  //   _mibe, _حملة_, ämpn,\n  { {0x201e4057, 0x998901df, 0x236d0027, 0x00000000}},  //   rtti_, ktaş_, ckej_,\n  { {0x11540f6f, 0x61e20047, 0xf1ba001d, 0x00000000}},  //   _вклю, _utol, _thơ_,\n  { {0x6f0416ca, 0x442c01a3, 0x2d8a00fa, 0x00000000}},  //   _edic, _kpd_, gibe_,\n  { {0x2903012d, 0x80db009b, 0x00000000, 0x00000000}},  //   _rdja_, _אחוז,   ,\n  { {0x442c0093, 0x68f54058, 0x69ce0022, 0x00000000}},  //   _mpd_, _sezd, _aibe,\n  { {0x3f8b0d01, 0x3d950088, 0x60d70065, 0x00000000}},  // [fcf0] micu_, _випр, _çamë,\n  { {0x69ce027b, 0x2d8a0211, 0x6448051b, 0x00000000}},  //   _cibe, cibe_, _ordi,\n  { {0x69ce020c, 0x383500e2, 0xdb1e004a, 0x00000000}},  //   _dibe, рнер, _cupó,\n  { {0x3f8b0868, 0x69ce0270, 0x656104d3, 0x00000000}},  //   nicu_, _eibe, _solh,\n  { {0x64480252, 0x442c4059, 0x8afa009b, 0x00000000}},  //   _ardi, _apd_, _בהרי,\n  { {0x442c0093, 0x7aed26c4, 0x69ce10d2, 0x00000000}},  //   _bpd_, lbat, _gibe,\n  { {0x65610007, 0xf99f01aa, 0x7bcf0dfc, 0x00000000}},  //   _volh, _avèg_, _kicu,\n  { {0x7aed022b, 0x442c023a, 0x69ce1a19, 0x00000000}},  //   nbat, _dpd_, _zibe,\n  { {0x3f8b037e, 0x6448022b, 0x7bcf001a, 0x00000000}},  //   dicu_, _erdi, _micu,\n  { {0x7bcf405a, 0x442c0022, 0x236d120f, 0x00000000}},  //   _licu, _fpd_, skej_,\n  { {0x8af0005f, 0x3f8b0107, 0x6e2d027e, 0x00000000}},  //   rkəz, ficu_, _apab,\n  { {0x76490263, 0x8fa6005c, 0x7bcf001a, 0x00000000}},  //   _krey, раме, _nicu,\n  { {0x200c21de, 0x6d890466, 0xee3702dc, 0x00000000}},  //   ardi_, ržan, аня_,\n  { {0xeeeb001d, 0x427a009b, 0x63a405d2, 0x00000000}},  //   ưởng_, _באנג, čine,\n  { {0x2d8a058a, 0x69ce0576, 0x6b66005e, 0x00000000}},  //   ribe_, _ribe, аква,\n  { {0x3f8b0107, 0x69ce083a, 0x7aed011c, 0x00000000}},  //   cicu_, _sibe, gbat,\n  { {0x2b4002e7, 0x69ce00b7, 0x7bcf04cb, 0x00000000}},  // [fd00] rdic_, _pibe, _dicu,\n  { {0x67290006, 0x61ed002b, 0x3a200095, 0x00000000}},  //   _abej, _ħall, rtip_,\n  { {0x7aed22b0, 0x69ce0190, 0xa856025f, 0x00000000}},  //   bbat, _vibe, штај,\n  { {0x7649405b, 0x7bcf18b5, 0x70d20309, 0x00000000}},  //   _brey, _gicu, _सल्ल,\n  { {0x442c010f, 0x7649008e, 0x61e900bb, 0x00000000}},  //   _spd_, _crey, jpel,\n  { {0x3f8b037e, 0x7649000c, 0x320d0923, 0x00000000}},  //   zicu_, _drey, drey_,\n  { {0x9cd7009b, 0x61e92b9e, 0x00000000, 0x00000000}},  //   בוצה_, epel,   ,\n  { {0x7649000c, 0x200c0107, 0x320d0258, 0x00000000}},  //   _frey, vrdi_, frey_,\n  { {0x3f8b0ebe, 0x7649375b, 0x63750211, 0x00000000}},  //   vicu_, _grey, _sánc,\n  { {0x7aed001a, 0x64480059, 0x200c0059, 0x00000000}},  //   zbat, _trdi, trdi_,\n  { {0x6448002d, 0x4034005e, 0x3f8b0091, 0x00000000}},  //   _urdi, щенс, ticu_,\n  { {0x320d0145, 0x63ab012d, 0xde59007e, 0x00000000}},  //   brey_, _gkgn, гамі_,\n  { {0xa116007a, 0x3f8b2d18, 0x7bcf0970, 0x00000000}},  //   _نوشت, ricu_, _ricu,\n  { {0x7bcf0198, 0x3f8b037e, 0xac190175, 0x00000000}},  //   _sicu, sicu_, логу_,\n  { {0x7bcf405c, 0x7aed00d9, 0x3f8b016e, 0x00000000}},  //   _picu, tbat, picu_,\n  { {0xdb1e00d4, 0x6d5a0c43, 0x00000000, 0x00000000}},  //   _supò, ötar,   ,\n  { {0x7aed000d, 0x4975008b, 0x7bcf004a, 0x00000000}},  // [fd10] rbat, блас, _vicu,\n  { {0x6375000c, 0x7aed002d, 0x628d016c, 0x00000000}},  //   _mána, sbat, _žaok,\n  { {0xd24601ef, 0x63752363, 0x7bcf00e5, 0x00000000}},  //   _کن_, _lána, _ticu,\n  { {0x76490173, 0xdc360049, 0x6e440014, 0x00000000}},  //   _prey, _פארט_, _انیم,\n  { {0x6375009f, 0xd6d90036, 0xa5090216, 0x00000000}},  //   _nána, _cała_, гела_,\n  { {0x2a3a0049, 0x6b8d0238, 0xdcfe00e5, 0x00000000}},  //   _געשמ, liag, _impă,\n  { {0x69c50bdf, 0x00000000, 0x00000000, 0x00000000}},  //   mmhe,   ,   ,\n  { {0x7649000c, 0x6b8d01a3, 0xc5e60044, 0x00000000}},  //   _trey, niag, _নিরপ,\n  { {0x63750051, 0x81df0044, 0x61e90009, 0x00000000}},  //   _cána, ধীন_, upel,\n  { {0x6b8d022b, 0x320d0211, 0x61e90127, 0x00000000}},  //   hiag, rrey_, rpel,\n  { {0xa0a5008b, 0x61e93841, 0x6b8d2558, 0x00000000}},  //   санд, spel, kiag,\n  { {0x61e91d18, 0xe3b003ec, 0x6375405d, 0x00000000}},  //   ppel, _قرن_, _fána,\n  { {0xaaa70204, 0x63a901d6, 0x00000000, 0x00000000}},  //   _कुलक, moen,   ,\n  { {0x63a91158, 0x61e6405e, 0x00000000, 0x00000000}},  //   loen, íkle,   ,\n  { {0xdd8f002c, 0xc0c8003b, 0xbddb0173, 0x00000000}},  //   روف_, _куће_, nvèj,\n  { {0xef1a007c, 0x63a91b61, 0x6b8d1e17, 0x00000000}},  //   _сми_, noen, giag,\n  { {0x3de20044, 0x2d9a00c4, 0x00000000, 0x00000000}},  // [fd20] _বিকল, _tjpe_,   ,\n  { {0x63a900b5, 0xd9100123, 0xe8f7105c, 0x00000000}},  //   hoen, بیس_, йлу_,\n  { {0x63a9002d, 0x6b8d142e, 0x46ea00e2, 0x00000000}},  //   koen, biag, гден_,\n  { {0x7c3e0363, 0x69c500c7, 0xc795007e, 0x00000000}},  //   _ispr, amhe, орчы,\n  { {0x63a901bb, 0x2d98008e, 0x200300ca, 0x00000000}},  //   doen, onre_, šjih_,\n  { {0x9633007e, 0x3ea001d6, 0x7c3e405f, 0x00000000}},  //   яніц, _mxit_, _kspr,\n  { {0xf74602b8, 0xe3af02fd, 0x27ed012d, 0x00000000}},  //   _лево, کرو_, _čeng_,\n  { {0x63a9002d, 0xd377007e, 0x2b420087, 0x00000000}},  //   goen, йчы_, _jakc_,\n  { {0x3ea00023, 0x00000000, 0x00000000, 0x00000000}},  //   _nxit_,   ,   ,\n  { {0xe80d001c, 0x7c3e0142, 0x6b8d0032, 0x00000000}},  //   ांचा_, _ospr, ziag,\n  { {0x649a00aa, 0x63a90039, 0x7c3e0109, 0x00000000}},  //   _стар_, boen, _nspr,\n  { {0x443e08ba, 0x83c60242, 0x289b00a3, 0x00000000}},  //   _ist_, _убеж, ריטא,\n  { {0x6b8d0061, 0x82b61847, 0x71a6007e, 0x00000000}},  //   viag, _احاط, _ладз,\n  { {0x6143007e, 0x00000000, 0x00000000, 0x00000000}},  //   _неча,   ,   ,\n  { {0x443e0059, 0x6b8d1806, 0x3ea00133, 0x00000000}},  //   _jst_, tiag, _exit_,\n  { {0x7c3e00eb, 0x236601ed, 0x00000000, 0x00000000}},  //   _dspr, _jooj_,   ,\n  { {0x7c3e1017, 0x6b8d00f4, 0x443e3c70, 0x00000000}},  // [fd30] _espr, riag, _lst_,\n  { {0x443e006c, 0x63a94060, 0x8895005e, 0x00000000}},  //   _ost_, zoen, оизх,\n  { {0x69c5002a, 0xdb0d0051, 0x63a90020, 0x00000000}},  //   rmhe, llaí, yoen,\n  { {0xdb0d002a, 0x00000000, 0x00000000, 0x00000000}},  //   olaí,   ,   ,\n  { {0x443e1d47, 0x637c008e, 0x00000000, 0x00000000}},  //   _ast_, _ménd,   ,\n  { {0xd5af026c, 0xa3e90887, 0x443e016b, 0x00000000}},  //   رہا_, адка_, _bst_,\n  { {0xdcf5001e, 0x7c3e0045, 0x00000000, 0x00000000}},  //   lizē, _xspr,   ,\n  { {0x9f5f0051, 0x11e51867, 0x4209003b, 0x00000000}},  //   artú_, ожим, анио_,\n  { {0x443e0a8d, 0x63a90039, 0xdcf50089, 0x00000000}},  //   _est_, roen, nizē,\n  { {0x63a90215, 0x63a40213, 0x443e0943, 0x00000000}},  //   soen, čina, _fst_,\n  { {0x25a0002a, 0x443e0784, 0x7dc00010, 0x00000000}},  //   éile_, _gst_, nöse,\n  { {0xd6d90036, 0x1eca05a5, 0x200b036a, 0x00000000}},  //   _mało_, илни_, čci_,\n  { {0xdb0d0051, 0x256b08e0, 0x00000000, 0x00000000}},  //   glaí, _følt_,   ,\n  { {0x9f460051, 0x29cd0521, 0x00000000, 0x00000000}},  //   mplí_, _džak_,   ,\n  { {0x3d1b03d7, 0x8c430256, 0x63754061, 0x00000000}},  //   _बारे_, мере, _jáno,\n  { {0xdb040051, 0xe8e00082, 0x3ea00032, 0x00000000}},  //   lliú, _đốn_, _txit_,\n  { {0xc33201f8, 0x39431a6c, 0xdb0d0051, 0x00000000}},  // [fd40] וון_, _bajs_, claí,\n  { {0x61e40051, 0x9f5f008e, 0xad9b4062, 0x00000000}},  //   _éile, butó_, lsún,\n  { {0xb17a0049, 0x6d890107, 0x7c3e4063, 0x00000000}},  //   סטער, džah, _uspr,\n  { {0xd3780091, 0xe51c0061, 0x9f5f0026, 0x00000000}},  //   _kuće_, _नाहि_, lutò_,\n  { {0xe5c60264, 0x443e0145, 0xdcf50089, 0x00000000}},  //   оско, _sst_, cizē,\n  { {0x7ae41651, 0x1dbc006e, 0x53e6005e, 0x00000000}},  //   lcit, ोगित, оциа,\n  { {0x475a0ae0, 0x660218fb, 0xd37a01c0, 0x00000000}},  //   _края_, ssok, ичи_,\n  { {0x68fc0007, 0x7ae4060c, 0x93bc001a, 0x00000000}},  //   _herd, ncit, _apăr,\n  { {0xa5f701f9, 0x2e24000c, 0x98b800e5, 0x00000000}},  //   _меѓу_, jöf_, _fară_,\n  { {0x443e00c4, 0x317800b4, 0x98b800e5, 0x00000000}},  //   _tst_, órz_, _gară_,\n  { {0x68fc04cb, 0x443e0036, 0xd8db0049, 0x00000000}},  //   _merd, _ust_, יקיר,\n  { {0x65680065, 0x68fc014a, 0x7f4400fa, 0x00000000}},  //   _hodh, _lerd, _caiq,\n  { {0x316700d9, 0x68fc1784, 0x7f4402d4, 0x00000000}},  //   _fonz_, _oerd, _daiq,\n  { {0x68fc014a, 0xdb0d0051, 0xad9b0051, 0x00000000}},  //   _nerd, rlaí, asún,\n  { {0x65680051, 0x00000000, 0x00000000, 0x00000000}},  //   _modh,   ,   ,\n  { {0x65680065, 0xdcf50089, 0x7ae41ea6, 0x00000000}},  //   _lodh, tizē, gcit,\n  { {0x68fc4064, 0x637c0211, 0x29d50025, 0x00000000}},  // [fd50] _berd, _géne, سياس,\n  { {0x68fc018e, 0xdcf50089, 0x6f1d0146, 0x00000000}},  //   _cerd, rizē, lgsc,\n  { {0x2d914065, 0x4735005c, 0x39430064, 0x00000000}},  //   mize_, знес, _vajs_,\n  { {0x6d45006a, 0x6f1d00b5, 0x68fc01b5, 0x00000000}},  //   _haha, ngsc, _eerd,\n  { {0x6d45006a, 0x637c027b, 0x68fc0292, 0x00000000}},  //   _kaha, _xéne, _ferd,\n  { {0x2d91265d, 0x68fc018e, 0x6d4501a3, 0x00000000}},  //   nize_, _gerd, _jaha,\n  { {0x6d454066, 0x7afd0368, 0x69dd27a1, 0x00000000}},  //   _maha, _kest, _huse,\n  { {0x7afd1f8a, 0x6d450811, 0x69dd000b, 0x00000000}},  //   _jest, _laha, _kuse,\n  { {0x7afd0cce, 0x68fc005d, 0x2d910173, 0x00000000}},  //   _mest, _yerd, kize_,\n  { {0x69dd0292, 0x7afd000c, 0x2901144f, 0x00000000}},  //   _muse, _lest, naha_,\n  { {0x69d51111, 0x7afd00f7, 0xcea900a3, 0x00000000}},  //   _mize, _oest, _עי_,\n  { {0x7afd4067, 0x2901006a, 0x69d508a0, 0x00000000}},  //   _nest, haha_, _lize,\n  { {0x6d450085, 0x2d9101aa, 0x720500a1, 0x00000000}},  //   _baha, fize_, _عہدہ_,\n  { {0x2d910061, 0x6d454068, 0x637c4069, 0x00000000}},  //   gize_, _caha, _véne,\n  { {0x7afd406a, 0x69dd027b, 0x3079007b, 0x00000000}},  //   _best, _ause, _לאַנ,\n  { {0x7afd0387, 0x69dd0056, 0x68fc406b, 0x00000000}},  //   _cest, _buse, _serd,\n  { {0x7afd33a6, 0x2d84028c, 0x7ae404b4, 0x00000000}},  // [fd60] _dest, èmes_, rcit,\n  { {0x7afd061f, 0x7ae40198, 0xe8e00011, 0x00000000}},  //   _eest, scit, _đồn_,\n  { {0x69d502d5, 0x69dd005b, 0xeaaf00a1, 0x00000000}},  //   _dize, _euse, نٹہ_,\n  { {0x68fc08ba, 0x69dd0a86, 0x6d45022b, 0x00000000}},  //   _werd, _fuse, _zaha,\n  { {0x69d50854, 0x68fc020c, 0x69dd0009, 0x00000000}},  //   _fize, _terd, _guse,\n  { {0x7afd0036, 0x290a0107, 0x6d45002b, 0x00000000}},  //   _zest, _udba_, _xaha,\n  { {0x777b1f5b, 0x7afd00ab, 0x798e0009, 0x00000000}},  //   _flux, _yest, _imbw,\n  { {0x63a40627, 0x7afd049a, 0xf743406c, 0x00000000}},  //   čino, _xest, _песо,\n  { {0x20071089, 0x65680051, 0x2d912c0b, 0x00000000}},  //   _avni_, _todh, yize_,\n  { {0xad9b002a, 0x44270009, 0x64410009, 0x00000000}},  //   gsúl, btn_, _fsli,\n  { {0x6d452222, 0x2d911c5c, 0x7bde406d, 0x00000000}},  //   _raha, vize_, _nupu,\n  { {0x6d450127, 0x929d0036, 0x2d9100d9, 0x00000000}},  //   _saha, wałe, wize_,\n  { {0x2d9101aa, 0x6e3d02ae, 0x6d450127, 0x00000000}},  //   tize_, uwsb, _paha,\n  { {0xeb9f00ea, 0x3b0b0045, 0x644101d6, 0x00000000}},  //   _sjø_, _sdcq_, _ysli,\n  { {0x2d912fdb, 0x6d47002b, 0x69dd0255, 0x00000000}},  //   rize_, rdja, _suse,\n  { {0x6d452c60, 0x69dd0089, 0x2d910857, 0x00000000}},  //   _waha, _puse, size_,\n  { {0x6d451bdd, 0x2901168f, 0x6d89016c, 0x00000000}},  // [fd70] _taha, taha_, džav,\n  { {0x6827007e, 0x3958009d, 0x9f5f0048, 0x00000000}},  //   зьдз, _cnrs_, istí_,\n  { {0x69d50010, 0xb4bb0061, 0x68e50b19, 0x00000000}},  //   _vize, _घरे_, rchd,\n  { {0x69dd093b, 0x2901020c, 0x5695007c, 0x00000000}},  //   _tuse, saha_, мает,\n  { {0x69d50010, 0x8b0800b9, 0x69dd010e, 0x00000000}},  //   _tize, stří, _uuse,\n  { {0x44270145, 0x2b49012d, 0x660d406e, 0x00000000}},  //   ttn_, ldac_, šako,\n  { {0x98b80a67, 0x00000000, 0x00000000, 0x00000000}},  //   _parą_,   ,   ,\n  { {0x2b4900e5, 0x77050014, 0x6f0d0045, 0x00000000}},  //   ndac_, _آژان, _ndac,\n  { {0x3a2904cb, 0xa5f8007c, 0x44270c06, 0x00000000}},  //   ntap_, _нету_, stn_,\n  { {0x60090264, 0xfaff0007, 0x442701a3, 0x00000000}},  //   оном_, _leë_, ptn_,\n  { {0x64410166, 0x8fa6005e, 0x00000000, 0x00000000}},  //   _usli, дане,   ,\n  { {0x6f0d0799, 0x00000000, 0x00000000, 0x00000000}},  //   _cdac,   ,   ,\n  { {0x7bde1632, 0xe28e005e, 0xfaff01d6, 0x00000000}},  //   _supu, _ра_, _voël_,\n  { {0x7bde20bc, 0xd13104e8, 0x01c800a1, 0x00000000}},  //   _pupu, _شمع_, _فونٹ_,\n  { {0x2d840006, 0x224d03b5, 0xfce3030d, 0x00000000}},  //   ėme_, lvek_, тосо,\n  { {0xd3780091, 0x05dd006e, 0x66090b18, 0x00000000}},  //   _kuća_, मदाब, _ovek,\n  { {0xef190036, 0x2b590022, 0x27ed012d, 0x00000000}},  // [fd80] óże_, _dnsc_, _čena_,\n  { {0x637c00f4, 0x7bde0052, 0x851c006e, 0x00000000}},  //   _ména, _tupu, _नाइट_,\n  { {0xcb6a406f, 0x98b8012d, 0x6b8f0045, 0x00000000}},  //   _дане_, _marć_, _fmcg,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x6d890ce4, 0x6609016c, 0xeb3b009b, 0x00000000}},  //   ržav, _cvek, _ועכש,\n  { {0x798e00e7, 0x00000000, 0x00000000, 0x00000000}},  //   _umbw,   ,   ,\n  { {0xbddb02d0, 0x00000000, 0x00000000, 0x00000000}},  //   lvèt,   ,   ,\n  { {0x637c0068, 0x7af60203, 0x00000000, 0x00000000}},  //   _béna, nbyt,   ,\n  { {0xc29802d3, 0x998900b4, 0x00000000, 0x00000000}},  //   яких_, brań_,   ,\n  { {0x99de007e, 0x637c0068, 0x00000000, 0x00000000}},  //   вiка_, _déna,   ,\n  { {0x66090107, 0xa0a616e8, 0xf993009b, 0x00000000}},  //   _zvek, ьшил, כרז_,\n  { {0xf99f000a, 0x77b800f6, 0x00000000, 0x00000000}},  //   _avèl_, fíxi,   ,\n  { {0xdb0d04bd, 0x9df8004d, 0x00000000, 0x00000000}},  //   llaç, мнят_,   ,\n  { {0x63ad25c2, 0xfaff01c3, 0x00000000, 0x00000000}},  //   čane, _seë_,   ,\n  { {0x1fa7012b, 0x00000000, 0x00000000, 0x00000000}},  //   _ориг,   ,   ,\n  { {0x3f8233dc, 0x9b580517, 0x7af61810, 0x00000000}},  //   chku_, мист_, gbyt,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  // [fd90]   ,   ,   ,\n  { {0x2eaa0049, 0xc1780006, 0xfaff0007, 0x00000000}},  //   _משפּ, nkė_, _weë_,\n  { {0x63a40091, 0x3a290007, 0x38c900a1, 0x00000000}},  //   činj, stap_, سائی_,\n  { {0x8c1a007b, 0x3a2909d7, 0x2b590026, 0x00000000}},  //   _צורי, ptap_, _unsc_,\n  { {0x65950fc0, 0x7bcd4070, 0x00000000, 0x00000000}},  //   наду, mmau,   ,\n  { {0x63a200b0, 0xdb0d00c4, 0x7bcd4071, 0x00000000}},  //   _ajon, flaç, lmau,\n  { {0x23d500ed, 0x637c009d, 0xf8690025, 0x00000000}},  //   нцир, _séna, _عمري_,\n  { {0xc245003b, 0x130901fb, 0x66090039, 0x00000000}},  //   еник, чний_, _tvek,\n  { {0x260900e8, 0x4615004b, 0x63a21a7c, 0x00000000}},  //   _सिटी_, _سوار, _djon,\n  { {0xf1b90107, 0x8065004d, 0x7af600b9, 0x00000000}},  //   kuše_, евож, zbyt,\n  { {0x2d83008d, 0xf1b9016c, 0x00000000, 0x00000000}},  //   dhje_, juše_,   ,\n  { {0x92bd0055, 0x63a20065, 0xf1b94072, 0x00000000}},  //   _আলী_, _gjon, duše_,\n  { {0x69c7021e, 0xa159003b, 0x00000000, 0x00000000}},  //   _ohje, _наду_,   ,\n  { {0x63bb4073, 0x7bc6008d, 0x3f820065, 0x00000000}},  //   llun, _shku, shku_,\n  { {0xdca301f9, 0x6d890006, 0x7af634fa, 0x00000000}},  //   гари, ežas, tbyt,\n  { {0x63bb0030, 0xbb430fc0, 0x00000000, 0x00000000}},  //   nlun, леск,   ,\n  { {0xfce60216, 0x63bb0444, 0x6ea800a1, 0x00000000}},  // [fda0] _попо, ilun, _زندہ_,\n  { {0x63bb001f, 0xe9df00f6, 0xf1b9013e, 0x00000000}},  //   hlun, _arús_, buše_,\n  { {0x69c7008d, 0x63bb05ad, 0x6d890733, 0x00000000}},  //   _dhje, klun, ržat,\n  { {0x66e6007e, 0xb6a60745, 0x929d00b4, 0x00000000}},  //   хода, ниел, zała,\n  { {0x63bb0da6, 0x6d8900d0, 0xe4e60088, 0x00000000}},  //   dlun, mžar, нійн,\n  { {0x63a24074, 0xb6cb00a1, 0xb8f60025, 0x00000000}},  //   _sjon, سانے_, _سكرب,\n  { {0x63bb01e5, 0x63a21978, 0x00000000, 0x00000000}},  //   flun, _pjon,   ,\n  { {0x32660265, 0x63bb4075, 0x929d0036, 0x00000000}},  //   етов, glun, wała,\n  { {0x6f06001e, 0xe1ef00d3, 0xdb0d0181, 0x00000000}},  //   dakc, یسی_, slaç,\n  { {0xdb0d153c, 0x394a000a, 0x82330025, 0x00000000}},  //   plaç, _jabs_, اريا,\n  { {0x63bb013e, 0x98b80036, 0x63a200d9, 0x00000000}},  //   blun, _parę_, _tjon,\n  { {0x394a0089, 0x67224076, 0x63bb18fb, 0x00000000}},  //   _labs_, ngoj, clun,\n  { {0x59b0001c, 0x2d830065, 0x6d890059, 0x00000000}},  //   जकार, thje_, džar,\n  { {0x52d70097, 0x7ec90089, 0x00000000, 0x00000000}},  //   _נוגע_, _rūpī,   ,\n  { {0x61e2021e, 0x41c30774, 0x213e0010, 0x00000000}},  //   _huol, _حقوق, meth_,\n  { {0x213e19ff, 0x61e22985, 0x2d830065, 0x00000000}},  //   leth_, _kuol, shje_,\n  { {0x201e01bc, 0x4fd8009b, 0x394a0007, 0x00000000}},  // [fdb0] luti_, _אוהב_, _babs_,\n  { {0x394a27c2, 0x3d1b0061, 0x61e20026, 0x00000000}},  //   _cabs_, _बाटे_, _muol,\n  { {0x201e0e1c, 0x39a4098c, 0xac990014, 0x00000000}},  //   nuti_, уштв, _آنجا_,\n  { {0x6b84192b, 0x00000000, 0x00000000, 0x00000000}},  //   chig,   ,   ,\n  { {0x69c7008d, 0x61e212ce, 0x213e0319, 0x00000000}},  //   _thje, _nuol, keth_,\n  { {0xe4e701fb, 0x201e0149, 0x7d070134, 0x00000000}},  //   хідн, kuti_, najs,\n  { {0x63bb000c, 0xad9b0051, 0xa4930bb6, 0x00000000}},  //   tlun, gsúi, دیات,\n  { {0x201e01bc, 0x637c00f4, 0x2b4b00f6, 0x00000000}},  //   duti_, _déno, _jacc_,\n  { {0x63bb0039, 0x201e0173, 0x6f0601ee, 0x00000000}},  //   rlun, euti_, vakc,\n  { {0x63bb000c, 0x7d070023, 0x213e005b, 0x00000000}},  //   slun, jajs, geth_,\n  { {0xf99f0263, 0x290304cb, 0x7d0706b8, 0x00000000}},  //   _avèk_, _meja_, dajs,\n  { {0x213e018e, 0x290318bc, 0x22920014, 0x00000000}},  //   aeth_, _leja_, الیس,\n  { {0x213e0016, 0x6f060036, 0x333f009d, 0x00000000}},  //   beth_, rakc, meux_,\n  { {0x201e006a, 0x333f00f4, 0xc0e2007c, 0x00000000}},  //   buti_, leux_, _кошк,\n  { {0x5c1509b5, 0x1c390077, 0x201e0035, 0x00000000}},  //   льту, нять_, cuti_,\n  { {0x26df0020, 0x333f00f4, 0xbebb0065, 0x00000000}},  //   _nguo_, neux_, rfër,\n  { {0xe9da0888, 0xbb43017f, 0x29034077, 0x00000000}},  // [fdc0] дка_, шетк, _beja_,\n  { {0x63a406a6, 0x7d560049, 0x8c9601e1, 0x00000000}},  //   čini, _ייִד_, _армі,\n  { {0x290307b9, 0x2d980ce0, 0x92bd0055, 0x00000000}},  //   _deja_, mire_, _আলো_,\n  { {0x8a06102a, 0x2d984078, 0x6d4e0030, 0x00000000}},  //   _изме, lire_, ldba,\n  { {0x394a0270, 0x29034079, 0x6722407a, 0x00000000}},  //   _tabs_, _feja_, rgoj,\n  { {0x6f0423b7, 0x6375009f, 0x2d98303d, 0x00000000}},  //   _leic, _mánu, nire_,\n  { {0x7c2e0039, 0x61e2407b, 0x43940517, 0x00000000}},  //   ntbr, _suol, лакс,\n  { {0x61e22bb3, 0x201e0bd5, 0xe3af0380, 0x00000000}},  //   _puol, vuti_, يري_,\n  { {0xc7d7012f, 0x2fc9018e, 0x69dc0c04, 0x00000000}},  //   _יולי_, _rhag_, _kire,\n  { {0x61e20207, 0xd1300647, 0x201e0207, 0x00000000}},  //   _vuol, حمد_, tuti_,\n  { {0x213e3e04, 0x6f040016, 0xd91b01ce, 0x00000000}},  //   reth_, _beic, וויל,\n  { {0x6d5e0002, 0x6d4e1243, 0x61e2021e, 0x00000000}},  //   _anpa, edba, _tuol,\n  { {0x2d980011, 0x69dc31b2, 0x6f040051, 0x00000000}},  //   fire_, _oire, _deic,\n  { {0x201e04d4, 0x2d98160b, 0x69dc1b85, 0x00000000}},  //   puti_, gire_, _nire,\n  { {0x2903008d, 0x6f0431f0, 0x7d070a10, 0x00000000}},  //   _reja_, _feic, rajs,\n  { {0x290302d5, 0x69dc0211, 0x2d982d2e, 0x00000000}},  //   _seja_, _aire, aire_,\n  { {0x2d98001a, 0x69dc014a, 0x26170061, 0x00000000}},  // [fdd0] bire_, _bire, _निधी_,\n  { {0x2d980412, 0x6f04010f, 0x69dc023a, 0x00000000}},  //   cire_, _zeic, _cire,\n  { {0x290302d5, 0xe7190025, 0x333f009d, 0x00000000}},  //   _veja_, فيات_, yeux_,\n  { {0xf77006f1, 0x69dc0048, 0xe7050014, 0x00000000}},  //   يان_, _eire, اسای,\n  { {0x333f00f4, 0x7aed407c, 0x29031b83, 0x00000000}},  //   veux_, mcat, _teja_,\n  { {0x7aed0420, 0x69dc011f, 0xceb40097, 0x00000000}},  //   lcat, _gire, סיס_,\n  { {0x7bdd0020, 0x333f009d, 0xf1b933dc, 0x00000000}},  //   _kisu, teux_, juša_,\n  { {0x2d9801aa, 0x69dc022b, 0x2a6d0046, 0x00000000}},  //   zire_, _zire, _żeby_,\n  { {0x7bdd0207, 0x333f028c, 0x6f04010f, 0x00000000}},  //   _misu, reux_, _reic,\n  { {0x6f041625, 0x7aed0009, 0x7bdd0052, 0x00000000}},  //   _seic, hcat, _lisu,\n  { {0x2d98407d, 0x6f041c7e, 0xc058007e, 0x00000000}},  //   vire_, _peic, віў_,\n  { {0x7bdd0065, 0x6375407e, 0x32450084, 0x00000000}},  //   _nisu, _cánt, _منصف,\n  { {0x6f04407f, 0x877a0049, 0x2d982172, 0x00000000}},  //   _veic, גארי, tire_,\n  { {0x6f04010f, 0x7c2e0c7a, 0x9f5f00b0, 0x00000000}},  //   _weic, ttbr, estä_,\n  { {0x2d984080, 0x6f044081, 0x7bdd1fe2, 0x00000000}},  //   rire_, _teic, _bisu,\n  { {0x7aed001c, 0x7c2e01d6, 0x2d980e5f, 0x00000000}},  //   gcat, rtbr, sire_,\n  { {0x320d01aa, 0x69dc0181, 0x7bdd04cb, 0x00000000}},  // [fde0] nsey_, _pire, _disu,\n  { {0x6d5e2528, 0x7aed004a, 0x3a2001d6, 0x00000000}},  //   _unpa, acat, ruip_,\n  { {0x7aed0541, 0x7bdd058b, 0xb17a0049, 0x00000000}},  //   bcat, _fisu, עטער,\n  { {0x7aed4082, 0xdc9b00a3, 0x69dc00ab, 0x00000000}},  //   ccat, _טייל, _wire,\n  { {0xd5ba045a, 0x69dc0549, 0x6375000c, 0x00000000}},  //   нск_, _tire, _láns,\n  { {0x75d40076, 0x7bdd0035, 0x9f5f032e, 0x00000000}},  //   جيتا, _zisu, mstå_,\n  { {0xf9830175, 0x764901aa, 0x07a605f6, 0x00000000}},  //   _угро, _esey, _бавн,\n  { {0x0877007b, 0x5214017a, 0xf1b90166, 0x00000000}},  //   _געלט_, адит, vuša_,\n  { {0xbb3b0049, 0x3f9911e4, 0x77910241, 0x00000000}},  //   געפי, visu_, _بینا,\n  { {0xc3390010, 0x00000000, 0x00000000, 0x00000000}},  //   áírá,   ,   ,\n  { {0xc05701e1, 0x9f5f00b0, 0x403404b6, 0x00000000}},  //   гія_, ystä_, шенс,\n  { {0xe81c006e, 0x7dc00039, 0x00000000, 0x00000000}},  //   _पटना_, lösh,   ,\n  { {0x7bdd0198, 0x3f990107, 0x957c0036, 0x00000000}},  //   _risu, risu_, _ciąg,\n  { {0x091a0055, 0x7bdd0cfc, 0x7aed0009, 0x00000000}},  //   ন্তু_, _sisu, wcat,\n  { {0x3f990161, 0x7bdd023e, 0x7aed02d4, 0x00000000}},  //   pisu_, _pisu, tcat,\n  { {0x6e2d002b, 0x00000000, 0x00000000, 0x00000000}},  //   _tqab,   ,   ,\n  { {0x7aed1b3e, 0xbda70879, 0xdb04000c, 0x00000000}},  // [fdf0] rcat, _محدو, rlið,\n  { {0x7aed0375, 0x7bdd0093, 0xdb04000c, 0x00000000}},  //   scat, _wisu, slið,\n  { {0x7bdd0209, 0x98c701bd, 0x00000000, 0x00000000}},  //   _tisu, усал,   ,\n  { {0x290e1573, 0x2057009b, 0xa5f9012d, 0x00000000}},  //   ófar_, טיבל_, веду_,\n  { {0xd2460644, 0xd1380036, 0x00000000, 0x00000000}},  //   _بن_, ciąg_,   ,\n  { {0x5a9a0452, 0x27150011, 0x61e9006b, 0x00000000}},  //   _ישרא, ền_, vqel,\n  { {0x6498005e, 0x00000000, 0x00000000, 0x00000000}},  //   лтър_,   ,   ,\n  { {0x63ad0142, 0x091a0044, 0x320d1352, 0x00000000}},  //   čano, ন্দু_, tsey_,\n  { {0x4175025a, 0x99800142, 0x00000000, 0x00000000}},  //   لادس, stiť_,   ,\n  { {0x637501ca, 0x320d00ab, 0x9d270044, 0x00000000}},  //   _páns, rsey_, য়ুন_,\n  { {0xd7a90204, 0x00000000, 0x00000000, 0x00000000}},  //   _कदाच,   ,   ,\n  { {0x20182b3d, 0x6235041f, 0x320d1eb0, 0x00000000}},  //   ária_, _веду, psey_,\n  { {0xde36007e, 0x39840039, 0x24a70089, 0x00000000}},  //   шэнь, _lösa_, šumā_,\n  { {0xe2c80088, 0x8cb1013d, 0x00000000, 0x00000000}},  //   _слід_, _आँखो,   ,\n  { {0x6da30794, 0x41260088, 0xeb9a2415, 0x00000000}},  //   цира, _тощо_, вив_,\n  { {0x237f0161, 0x6fb30379, 0xdca30088, 0x00000000}},  //   nkuj_, _وموا, іати,\n  { {0x6da601fb, 0x1d1a0077, 0xa3c80204, 0x00000000}},  // [fe00] _випа, _июнь_, ोगत_,\n  { {0x9f5f1861, 0xe8f726f0, 0x00000000, 0x00000000}},  //   rstå_, илу_,   ,\n  { {0xd116009b, 0x00000000, 0x00000000, 0x00000000}},  //   שקעה_,   ,   ,\n  { {0xf1b9129d, 0x7c3e01d5, 0x9f5f01c9, 0x00000000}},  //   kušo_, _ippr, pstå_,\n  { {0xf1b90089, 0x00000000, 0x00000000, 0x00000000}},  //   jušo_,   ,   ,\n  { {0x5e57007b, 0x7b3e0036, 0x61e40051, 0x00000000}},  //   יינע_, _dłuż, _éili,\n  { {0x98a30517, 0xe4b8008b, 0x3a322a1c, 0x00000000}},  //   _дире, ылкі_, ltyp_,\n  { {0xea00001d, 0xd3780091, 0xfaff0007, 0x00000000}},  //   _luật_, _kući_, _hoër_,\n  { {0x68e9001a, 0xe3af0070, 0x3a3201a2, 0x00000000}},  //   _şedi, برو_, ntyp_,\n  { {0x7c3e0292, 0xaa370097, 0x637c009d, 0x00000000}},  //   _oppr, סטיק_, _méni,\n  { {0x0496008b, 0xb36602dc, 0x637c0068, 0x00000000}},  //   _траў, _вълк, _léni,\n  { {0x63a40059, 0x1df90783, 0x8af0006b, 0x00000000}},  //   čins, лемы_, ndəd,\n  { {0x6f160016, 0x3ead0023, 0x00000000, 0x00000000}},  //   _ddyc, çet_,   ,\n  { {0x443e2bde, 0x6f160036, 0x2d850036, 0x00000000}},  //   _kpt_, _edyc, óle_,\n  { {0x25b90051, 0x8af0013f, 0x00000000, 0x00000000}},  //   _ísle_, kdəd,   ,\n  { {0xdb0400f4, 0x7e62003b, 0x443e00c4, 0x00000000}},  //   nniè, _šope, _mpt_,\n  { {0x443e0253, 0x00000000, 0x00000000, 0x00000000}},  // [fe10] _lpt_,   ,   ,\n  { {0x443e0899, 0x29074083, 0x645a008e, 0x00000000}},  //   _opt_, úna_, _orti,\n  { {0x6f16018e, 0x7b3e0036, 0x7e7d01c3, 0x00000000}},  //   _ydyc, _służ, lysp,\n  { {0x30d90049, 0x60d90049, 0x637c4084, 0x00000000}},  //   אַנע, אַנג, _féni,\n  { {0xf7700151, 0x98a701f6, 0xbb3a007b, 0x00000000}},  //   بال_, ını_, _גערי,\n  { {0xd90f06c6, 0x99850054, 0x00000000, 0x00000000}},  //   _آیا_, _السو,   ,\n  { {0x443e0145, 0x645a0166, 0xd7fb0545, 0x00000000}},  //   _cpt_, _crti, _југ_,\n  { {0x443e0127, 0x201e016c, 0x645a0062, 0x00000000}},  //   _dpt_, drti_, _drti,\n  { {0xd24e0379, 0x443e0190, 0x645c2779, 0x00000000}},  //   فني_, _ept_, _árin,\n  { {0x05740647, 0x443e0011, 0x237f4085, 0x00000000}},  //   _والد, _fpt_, skuj_,\n  { {0x200301aa, 0xc35502dc, 0x39510089, 0x00000000}},  //   èji_, _гълъ, _mazs_,\n  { {0x083a0049, 0x765b03b3, 0x00000000, 0x00000000}},  //   נערל, _kruy,   ,\n  { {0x201e3272, 0xf38c0049, 0xddc40035, 0x00000000}},  //   arti_, _בראָ, _criş,\n  { {0x61fb020c, 0x7d170009, 0xea000082, 0x00000000}},  //   mpul, _cdxs, _quật_,\n  { {0x7ff501fa, 0xddc4014a, 0x6ff501b7, 0x00000000}},  //   _استا, _eriş, _استط,\n  { {0x637c4086, 0xd378016c, 0xeb97017a, 0x00000000}},  //   _péni, _pući_, бис_,\n  { {0x61fb0032, 0x00000000, 0x00000000, 0x00000000}},  // [fe20] npul,   ,   ,\n  { {0x186a012b, 0xbd4603ec, 0x673b00e7, 0x00000000}},  //   лази_, _اندي, _abuj,\n  { {0x63ad0746, 0x7c3e03ed, 0x3a320210, 0x00000000}},  //   čanj, _uppr, styp_,\n  { {0xdc3b007b, 0xcb6a01fb, 0xf7290088, 0x00000000}},  //   _געטר, _саме_, ицій_,\n  { {0x9412005f, 0xa4f800a1, 0x765b00d4, 0x00000000}},  //   əcək_, لکار_, _cruy,\n  { {0x86070025, 0x645a0bf8, 0x7d0e01a2, 0x00000000}},  //   حقوق_, _prti, nabs,\n  { {0x29180026, 0x7e7d0036, 0x7bc4007f, 0x00000000}},  //   _idra_, zysp, oliu,\n  { {0x645a0209, 0x201e18a2, 0x799e0020, 0x00000000}},  //   _vrti, vrti_, lipw,\n  { {0xdb04028c, 0xa686008b, 0x7d0e0030, 0x00000000}},  //   rniè, _улад, kabs,\n  { {0x20180fb3, 0x21660113, 0x64a6025f, 0x00000000}},  //   ário_, стиг, _лаза,\n  { {0xc32a0054, 0xdb0f0047, 0x645a0032, 0x00000000}},  //   _مكان_, ődés, _urti,\n  { {0x2d9a0093, 0x290a01ee, 0x7e7d0639, 0x00000000}},  //   _ampe_, _leba_, tysp,\n  { {0x2918281a, 0x00000000, 0x00000000, 0x00000000}},  //   _odra_,   ,   ,\n  { {0x291c0010, 0xc69301ce, 0x3ce50292, 0x00000000}},  //   óval_, לאר_, ølv_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xec340088, 0x8fa4025f, 0xce6b00ed, 0x00000000}},  //   янсь, _наје, _брод_,\n  { {0x290a037e, 0x3a2000c7, 0x6f0f0197, 0x00000000}},  // [fe30] _beba_, grip_, macc,\n  { {0x6f0f0207, 0x290a00d4, 0xe9190088, 0x00000000}},  //   lacc, _ceba_, рожі_,\n  { {0x290a4087, 0x6d474088, 0x2606013d, 0x00000000}},  //   _deba_, meja, सीसी_,\n  { {0x6f0f3b45, 0x6d471be3, 0xd3780091, 0x00000000}},  //   nacc, leja, _kuću_,\n  { {0xf77001b7, 0x3669012d, 0x6bd700a1, 0x00000000}},  //   عام_, рало_, _پتھر,\n  { {0x6d470181, 0xce3800b6, 0x9f480065, 0x00000000}},  //   neja, צאות_, _punë_,\n  { {0xf8bf0164, 0x290101f3, 0x5fc90067, 0x00000000}},  //   _्रिय, mbha_, रताल,\n  { {0x765b001d, 0x69c50016, 0x7dc0222d, 0x00000000}},  //   _truy, llhe, löst,\n  { {0x6f0f029a, 0x6d47236c, 0x64580197, 0x00000000}},  //   dacc, keja, avvi,\n  { {0x61fb2e93, 0x6d470022, 0x2d8300bb, 0x00000000}},  //   rpul, jeja, jkje_,\n  { {0x6f0f4089, 0x3f89408a, 0x6d470006, 0x00000000}},  //   facc, _blau_, deja,\n  { {0x6f0f001c, 0x44270149, 0x3f8904bd, 0x00000000}},  //   gacc, mun_, _clau_,\n  { {0x44270fbd, 0x63a9006c, 0x25fd0061, 0x00000000}},  //   lun_, mnen, रीची_,\n  { {0x6f0f001c, 0x6d470004, 0x63bb013e, 0x00000000}},  //   aacc, geja, loun,\n  { {0x4427408b, 0xfce30264, 0x63a90239, 0x00000000}},  //   nun_, доро, onen,\n  { {0x6f0f001c, 0x61eb408c, 0xbea60265, 0x00000000}},  //   cacc, _kugl, _майк,\n  { {0x44270149, 0x61eb1308, 0x63a90052, 0x00000000}},  // [fe40] hun_, _jugl, inen,\n  { {0x44271105, 0x63bb013e, 0x644100bb, 0x00000000}},  //   kun_, houn, _opli,\n  { {0x61eb0198, 0x46ea0751, 0x63bb0173, 0x00000000}},  //   _lugl, аден_, koun,\n  { {0xe73a0a27, 0x6b8d1a3b, 0x4427408d, 0x00000000}},  //   ред_, chag, dun_,\n  { {0x63bb0211, 0x998902aa, 0xab5b010f, 0x00000000}},  //   doun, staš_, _thür,\n  { {0xa2da02fb, 0x4427000c, 0x8c43011f, 0x00000000}},  //   _पृष्, fun_, ışve,\n  { {0x61eb000c, 0x44270238, 0x799c0009, 0x00000000}},  //   _augl, gun_, _imrw,\n  { {0x63a90374, 0x6d470036, 0x6b840032, 0x00000000}},  //   gnen, zeja, nkig,\n  { {0xfbd300b6, 0xb6a30088, 0x7dc031da, 0x00000000}},  //   ותה_, _житл, nöss,\n  { {0x44270169, 0xc05a007e, 0x61eb000c, 0x00000000}},  //   bun_, аім_, _dugl,\n  { {0x6f0f141d, 0x4427028c, 0x61e301f6, 0x00000000}},  //   tacc, cun_, _dinl,\n  { {0x91e601f9, 0x63bb0f44, 0x61eb3de6, 0x00000000}},  //   _доде, coun, _fugl,\n  { {0x6f0f0555, 0x61eb408e, 0xb7db009b, 0x00000000}},  //   racc, _gugl, יקטי,\n  { {0x6f0f0912, 0x26c40026, 0x637c1152, 0x00000000}},  //   sacc, _mymo_, _vénu,\n  { {0x6d470006, 0xfe6e06c6, 0x672b05c8, 0x00000000}},  //   reja, نگی_, yggj,\n  { {0x6d47033b, 0x63a0073a, 0x8af8006b, 0x00000000}},  //   seja, nimn, _şərq,\n  { {0x4427408f, 0x628000ab, 0x6ce701ff, 0x00000000}},  // [fe50] zun_, nymo, _міне,\n  { {0x44274090, 0x63ad0eae, 0x67f301d5, 0x00000000}},  //   yun_, čani, _aħja,\n  { {0x7dc00002, 0xa3e601f5, 0x63bb0020, 0x00000000}},  //   röst, _यंग_, youn,\n  { {0x44274091, 0x6b8409b0, 0x81c20044, 0x00000000}},  //   vun_, ckig, ্দি_,\n  { {0xaaf60097, 0x64411d7a, 0x63a91962, 0x00000000}},  //   _מזרח_, _spli, vnen,\n  { {0x442737a9, 0x6f0d4092, 0x61eb000c, 0x00000000}},  //   tun_, _leac, _rugl,\n  { {0x63bb24bf, 0x61eb4093, 0x63a90027, 0x00000000}},  //   toun, _sugl, tnen,\n  { {0x4427288b, 0x61eb0207, 0x059500d3, 0x00000000}},  //   run_, _pugl, _کارگ,\n  { {0x44271113, 0x63a92c1f, 0x1306007c, 0x00000000}},  //   sun_, rnen, чный_,\n  { {0x4427020c, 0x6b84002d, 0x63bb0133, 0x00000000}},  //   pun_, zkig, soun,\n  { {0x7dc00047, 0x6f0d192b, 0x637c0010, 0x00000000}},  //   zöss, _beac, _pént,\n  { {0x6f0d0051, 0x66090112, 0x61e3005b, 0x00000000}},  //   _ceac, _kwek, _winl,\n  { {0x6f0d0051, 0xee3701fb, 0x203200a1, 0x00000000}},  //   _deac, пня_, وفیس,\n  { {0x66090020, 0xf1b90089, 0x20110010, 0x00000000}},  //   _mwek, kuši_, ázis_,\n  { {0xaffe001d, 0xf1b9001e, 0x6f0d0051, 0x00000000}},  //   _trướ, juši_, _feac,\n  { {0xeb970a27, 0x6f0d00b5, 0x33f10285, 0x00000000}},  //   пис_, _geac, _máx_,\n  { {0xada60140, 0x6b840032, 0x6b9d01f3, 0x00000000}},  // [fe60] _наил, rkig, _dmsg,\n  { {0x6b840274, 0x998000ca, 0x63a000ca, 0x00000000}},  //   skig, stiž_, zimn,\n  { {0x98a300ed, 0x628000b4, 0x660900a9, 0x00000000}},  //   нифе, zymo, _awek,\n  { {0xdb240167, 0x66090045, 0x00000000, 0x00000000}},  //   _توحی, _bwek,   ,\n  { {0x83fc0521, 0x66030959, 0xad9b004a, 0x00000000}},  //   _mrđe, епча, spúe,\n  { {0xf1b90209, 0xdb0d000c, 0x186a1079, 0x00000000}},  //   buši_, llað, _лаги_,\n  { {0x9f590065, 0x6609040f, 0xf99f0173, 0x00000000}},  //   ërë_, _ewek, _mwèl_,\n  { {0x7af604a5, 0x6609000a, 0x00000000, 0x00000000}},  //   ncyt, _fwek,   ,\n  { {0x6f0d0f12, 0xbebb0065, 0x2fd90009, 0x00000000}},  //   _reac, ngët, vmsg_,\n  { {0x6f0d002a, 0xb6030224, 0xf99f01aa, 0x00000000}},  //   _seac, ášen, _nwèl_,\n  { {0x65680018, 0x6f0d00ab, 0x62800016, 0x00000000}},  //   _indh, _peac, symo,\n  { {0xfaff0065, 0x657a0048, 0x00000000, 0x00000000}},  //   _anën_, _hoth,   ,\n  { {0x51180b5f, 0x657a0023, 0x6f0d0035, 0x00000000}},  //   _долю_, _koth, _veac,\n  { {0x657a0022, 0x2fd90009, 0x6b9d00d9, 0x00000000}},  //   _joth, smsg_, _smsg,\n  { {0x6f0d4094, 0x657a0531, 0x21570151, 0x00000000}},  //   _teac, _moth, _رجوع_,\n  { {0x8bc4025f, 0xf1b94095, 0xe0850076, 0x00000000}},  //   есуд, vuši_, _تجهي,\n  { {0xb5fd10c1, 0x2b490048, 0x00000000, 0x00000000}},  // [fe70] _krše, reac_,   ,\n  { {0x657a00ab, 0x3a290022, 0xf1b901c5, 0x00000000}},  //   _noth, ruap_, tuši_,\n  { {0x473500ed, 0xdb0d000c, 0xa3cc0061, 0x00000000}},  //   днес, blað, ळता_,\n  { {0x65681659, 0xf1b901c5, 0x6609097e, 0x00000000}},  //   _andh, ruši_, _pwek,\n  { {0xcd3400a6, 0xa3c0007d, 0xf1b94096, 0x00000000}},  //   _غریب, ंकन_, suši_,\n  { {0x657a002a, 0x09e4008b, 0xceb40049, 0x00000000}},  //   _coth, _поўн, עיס_,\n  { {0x6d5700f8, 0x657a2088, 0x00000000, 0x00000000}},  //   _maxa, _doth,   ,\n  { {0xe1f9013b, 0x29130adb, 0x9f5f004a, 0x00000000}},  //   оги_, laxa_, istó_,\n  { {0x6d57008e, 0x66090020, 0x657a0051, 0x00000000}},  //   _oaxa, _uwek, _foth,\n  { {0x297a0049, 0x224d01d6, 0x00000000, 0x00000000}},  //   ַטרא, rwek_,   ,\n  { {0xff26007c, 0x29380049, 0xbef90061, 0x00000000}},  //   ммно, לאזן_, ंडून_,\n  { {0x6b83001a, 0x3f6a003b, 0x00000000, 0x00000000}},  //   _îngh, цимо_,   ,\n  { {0xceb4005f, 0xa3b80b03, 0x6d57006b, 0x00000000}},  //   _edən_, _عامر_, _baxa,\n  { {0x2d9e01aa, 0xf0b8007a, 0x6d5700c4, 0x00000000}},  //   òte_, _کاهش_, _caxa,\n  { {0xef1f0279, 0xdb0d000c, 0xdca601ab, 0x00000000}},  //   mkün_, tlað, фави,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0xc33200b6, 0xfaa3041f, 0x6d570203, 0x00000000}},  // [fe80] כון_, вато, _faxa,\n  { {0xe9d70500, 0x77694097, 0x2617013d, 0x00000000}},  //   дку_, _anex, _निजी_,\n  { {0x657a0051, 0x2d0a0061, 0x00000000, 0x00000000}},  //   _roth, वरील_,   ,\n  { {0x657a0abb, 0x00000000, 0x00000000, 0x00000000}},  //   _soth,   ,   ,\n  { {0x657a0d00, 0x6d57006b, 0x00000000, 0x00000000}},  //   _poth, _yaxa,   ,\n  { {0x2913004a, 0x776900d9, 0x00000000, 0x00000000}},  //   caxa_, _enex,   ,\n  { {0xb1760011, 0xc7a6044b, 0xd6d90036, 0x00000000}},  //   _nhượ, _живк, _mały_,\n  { {0x44200213, 0x7c37014a, 0x395800d9, 0x00000000}},  //   či_, _çarş, _hars_,\n  { {0x657a0129, 0x07a3012b, 0x914a091b, 0x00000000}},  //   _toth, _ратн, очна_,\n  { {0x660204d4, 0xa6970097, 0x9f5f009d, 0x00000000}},  //   mpok, _חכמה_, mpté_,\n  { {0xb5fd0ab8, 0x201810fa, 0x39581e63, 0x00000000}},  //   _vrše, éri_, _mars_,\n  { {0x395800eb, 0x59d0013d, 0x6e950a1e, 0x00000000}},  //   _lars_, _तीसर, еиму,\n  { {0x6602002d, 0x5f94005e, 0xdb0600b0, 0x00000000}},  //   npok, тият, _ykkö,\n  { {0xea00001d, 0xd6d90036, 0x39580058, 0x00000000}},  //   _xuất_, _cały_, _nars_,\n  { {0x4c950545, 0x9fad013e, 0x00000000, 0x00000000}},  //   хивс, _měú_,   ,\n  { {0x69d4006e, 0x395808e0, 0x798e0016, 0x00000000}},  //   _बीबी, _aars_, _albw,\n  { {0x6d570181, 0x777b1824, 0x39580549, 0x00000000}},  // [fe90] _taxa, _roux, _bars_,\n  { {0xc4c4009c, 0x395800ab, 0x66022041, 0x00000000}},  //   _نے_, _cars_, dpok,\n  { {0x7d1501df, 0x395800ca, 0xf1b90079, 0x00000000}},  //   mazs, _dars_, mušt_,\n  { {0x8af0005f, 0xea00001d, 0x39580133, 0x00000000}},  //   ndəl, _suất_, _ears_,\n  { {0x77690011, 0x39581ce0, 0x2b590051, 0x00000000}},  //   _vnex, _fars_, _iasc_,\n  { {0x39584098, 0xea000082, 0x00000000, 0x00000000}},  //   _gars_, _quất_,   ,\n  { {0xf992009b, 0x29110032, 0x6fd6013e, 0x00000000}},  //   _גרם_, _ieza_, láce,\n  { {0x58d4005c, 0x77690133, 0x29110045, 0x00000000}},  //   _рост, _unex, _heza_,\n  { {0xb5c9026c, 0x8af0006b, 0x2b590048, 0x00000000}},  //   _فورم_, ddəl, _masc_,\n  { {0xf992007b, 0xb1760011, 0x3cfb013d, 0x00000000}},  //   ָרט_, _phượ, ्रों_,\n  { {0xcea901f8, 0x2cfb03d7, 0x29112367, 0x00000000}},  //   _פי_, ्रैल_, _meza_,\n  { {0x63ad091e, 0xdef9008b, 0x2b5929c9, 0x00000000}},  //   čans, дыё_, _nasc_,\n  { {0xe28e3e2e, 0x8db60088, 0x00000000, 0x00000000}},  //   _са_, есві,   ,\n  { {0x29110061, 0xc69201ce, 0xef1f0047, 0x00000000}},  //   _neza_, ראך_, lkül_,\n  { {0x8c43041f, 0x2b590129, 0x395800f6, 0x00000000}},  //   лере, _basc_, _rars_,\n  { {0xffd6008b, 0x39580abb, 0x44270051, 0x00000000}},  //   _яўля, _sars_, irn_,\n  { {0x39580ee5, 0x29110032, 0x44270471, 0x00000000}},  // [fea0] _pars_, _beza_, hrn_,\n  { {0x2911014a, 0x3958013f, 0x00000000, 0x00000000}},  //   _ceza_, _qars_,   ,\n  { {0x395822b0, 0x6d4e154f, 0x661b4099, 0x00000000}},  //   _vars_, meba, _avuk,\n  { {0x6d5c2d47, 0x7e640065, 0x395801ac, 0x00000000}},  //   ldra, _krip, _wars_,\n  { {0xe5c6013b, 0xb8f60055, 0x7bc63426, 0x00000000}},  //   нско, _হল_, _ikku,\n  { {0x6d5c1992, 0x499100a1, 0x7e6400e7, 0x00000000}},  //   ndra, _پیمر, _mrip,\n  { {0x6846007c, 0x66021712, 0x6d5c01c5, 0x00000000}},  //   _янва, spok, idra,\n  { {0xddcd001a, 0x6d4e01a3, 0x2b400082, 0x00000000}},  //   _oraş, heba, nfic_,\n  { {0x6d4e409a, 0xb5fd0107, 0x44270016, 0x00000000}},  //   keba, _vršc, arn_,\n  { {0x6d4e016e, 0x6d5c409b, 0x44270e0d, 0x00000000}},  //   jeba, jdra, brn_,\n  { {0x6d4e1244, 0x7bc6009f, 0x661b04c8, 0x00000000}},  //   deba, _okku, _zvuk,\n  { {0xddcd001a, 0x7e640093, 0x6d5c08d8, 0x00000000}},  //   _braş, _brip, edra,\n  { {0x63a2409c, 0x443c010e, 0x442e00c4, 0x00000000}},  //   _imon, ltv_, luf_,\n  { {0x6d4e010f, 0x6d5c1aef, 0x7e64409d, 0x00000000}},  //   geba, gdra, _drip,\n  { {0x3ce50073, 0x443c0190, 0x2b4000ab, 0x00000000}},  //   älv_, ntv_, ffic_,\n  { {0xa3c003d7, 0x5ba40454, 0x7e640035, 0x00000000}},  //   ंकि_, груз, _frip,\n  { {0x6d4e04cb, 0x63a2409e, 0x2b59016b, 0x00000000}},  // [feb0] beba, _mmon, _vasc_,\n  { {0x442e409f, 0x6d4e0035, 0x443c0146, 0x00000000}},  //   kuf_, ceba, ktv_,\n  { {0x63a20970, 0x7c2e008e, 0xa3c0006e, 0x00000000}},  //   _omon, cubr, ंका_,\n  { {0x6a15007c, 0x291100e7, 0x8c1a00b3, 0x00000000}},  //   _имму, _weza_, _קורי,\n  { {0x29110107, 0x6e3d2123, 0x7bcd2839, 0x00000000}},  //   _teza_, ntsb, mlau,\n  { {0x83fc01a8, 0x64a5007e, 0x7bcd08ea, 0x00000000}},  //   _srđa, кала, llau,\n  { {0x7bc6009f, 0x58d41737, 0x69c70023, 0x00000000}},  //   _ykku, _борт, _ikje,\n  { {0xc24501fb, 0x7bcd1642, 0x44270a35, 0x00000000}},  //   вник, nlau, rrn_,\n  { {0x6d5c07c3, 0x2489001e, 0x6d4e0e06, 0x00000000}},  //   ydra, ņam_, yeba,\n  { {0x443c0c48, 0x7bcd0218, 0x63a2002d, 0x00000000}},  //   btv_, hlau, _emon,\n  { {0x7bcd010a, 0xe0cf0055, 0x6d4e0190, 0x00000000}},  //   klau, রশ্ন, veba,\n  { {0x7e64167a, 0x8fa60265, 0x6d450051, 0x00000000}},  //   _prip, таме, _abha,\n  { {0x27760049, 0x6d5c1aef, 0x7bcd0ba5, 0x00000000}},  //   דערש_, tdra, dlau,\n  { {0x7afd2c1a, 0x63a20006, 0xf1b9016c, 0x00000000}},  //   _afst, _zmon, krši_,\n  { {0x6e3d0c4c, 0x711a0097, 0x7bcd1177, 0x00000000}},  //   atsb, _חוצפ, flau,\n  { {0x2005002b, 0x39840210, 0x7c2e0bf3, 0x00000000}},  //   mpli_, _löst_, rubr,\n  { {0x6f09049a, 0x6d5c40a0, 0x7c2e40a1, 0x00000000}},  // [fec0] ñece, pdra, subr,\n  { {0x7afd000c, 0x7bcd0d8f, 0x660000ca, 0x00000000}},  //   _efst, alau, _rtmk,\n  { {0x8af0005f, 0x38cb00a1, 0x200501aa, 0x00000000}},  //   ndək, وامی_, npli_,\n  { {0xe7d00055, 0x7bcd00d4, 0x00000000, 0x00000000}},  //   িদ্য, clau,   ,\n  { {0x442e0022, 0x63a20066, 0x00000000, 0x00000000}},  //   wuf_, _rmon,   ,\n  { {0xdb0d00f4, 0x63a20197, 0x443c25e9, 0x00000000}},  //   nnaî, _smon, ttv_,\n  { {0xb5fd041a, 0x61ea051b, 0x7f8600c4, 0x00000000}},  //   _vrša, _rifl, _hóqu,\n  { {0x443c00d4, 0x7bc40035, 0xf48333ef, 0x00000000}},  //   rtv_, noiu, рушн,\n  { {0x442e1c8a, 0xd25100a1, 0x443c01e5, 0x00000000}},  //   suf_, منٹ_, stv_,\n  { {0xceb4006b, 0x69c30059, 0x443c133d, 0x00000000}},  //   _edək_, čneg, ptv_,\n  { {0xb4250070, 0x7bcd08ea, 0x00000000, 0x00000000}},  //   _معنو, ylau,   ,\n  { {0x331a06c6, 0x8383007c, 0x6e3d0aa4, 0x00000000}},  //   _آزاد_, _выше, ttsb,\n  { {0x61ea2cfa, 0xdd910025, 0x00000000, 0x00000000}},  //   _tifl, موح_,   ,\n  { {0x6e3d0056, 0x4034003b, 0x00000000, 0x00000000}},  //   rtsb, _бекс,   ,\n  { {0x3a29001c, 0x7bcd000c, 0xebc7003b, 0x00000000}},  //   wrap_, tlau, вљан,\n  { {0x3a2901d6, 0x69c70292, 0xf1b90091, 0x00000000}},  //   trap_, _skje, vrši_,\n  { {0x7bcd0218, 0x7d021131, 0x6d41006c, 0x00000000}},  // [fed0] rlau, _şose, õlas,\n  { {0x7bcd010a, 0x6d410009, 0x3a290146, 0x00000000}},  //   slau, òlad, rrap_,\n  { {0x39840039, 0x7bcd046e, 0x764901a2, 0x00000000}},  //   _röst_, plau, _spey,\n  { {0x2d81010f, 0x6d58000c, 0x56950242, 0x00000000}},  //   _hohe_, _óvar, лает,\n  { {0x2d812033, 0x8af0006b, 0x6b8d00ea, 0x00000000}},  //   _kohe_, zdək, mkag,\n  { {0x69c70056, 0x00000000, 0x00000000, 0x00000000}},  //   _ukje,   ,   ,\n  { {0x03a5102a, 0x69c50065, 0x628608e0, 0x00000000}},  //   лико, mohe, økon,\n  { {0x69c50065, 0xdb0400c4, 0x6b8d40a2, 0x00000000}},  //   lohe, rniç, nkag,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x69c50065, 0x6009007c, 0x27ed0011, 0x00000000}},  //   nohe, нном_, _hien_,\n  { {0x27ed01d5, 0x6b8d177d, 0xf3350025, 0x00000000}},  //   _kien_, kkag, _مفاج,\n  { {0x27ed01d5, 0x69c540a3, 0x8af0006b, 0x00000000}},  //   _jien_, hohe, rdək,\n  { {0x61450551, 0x63a940a4, 0x69c5008d, 0x00000000}},  //   _бела, mien, kohe,\n  { {0x27ed028c, 0x63a9001f, 0x69c50065, 0x00000000}},  //   _lien_, lien, johe,\n  { {0x6b96018e, 0xa066005e, 0x69c50065, 0x00000000}},  //   thyg, _баща_, dohe,\n  { {0x09be0183, 0x27ed40a5, 0x6b8d119d, 0x00000000}},  //   ्त्य, _nien_, gkag,\n  { {0x39960030, 0x629b40a6, 0x7db603e6, 0x00000000}},  // [fee0] _læse_, nzuo, _مصدا,\n  { {0x63a9022b, 0x7a47001e, 0x69c50065, 0x00000000}},  //   hien, dītā, gohe,\n  { {0x27ed364e, 0x63a90fec, 0x6f160d59, 0x00000000}},  //   _bien_, kien, _keyc,\n  { {0x63a9010a, 0x4b560265, 0x6d5e0020, 0x00000000}},  //   jien, _съот, _hapa,\n  { {0x6d5e40a7, 0x63a90a98, 0x27ed3d1f, 0x00000000}},  //   _kapa, dien, _dien_,\n  { {0x6b83001a, 0x63a901b5, 0x9f99009d, 0x00000000}},  //   _îngr, eien, réé_,\n  { {0x69dc001f, 0x6d5e0b9a, 0x63a938ea, 0x00000000}},  //   _ihre, _mapa, fien,\n  { {0x291a0169, 0x6d5e1116, 0x27ed40a8, 0x00000000}},  //   lapa_, _lapa, _gien_,\n  { {0x171b0049, 0x7a470089, 0x5186007e, 0x00000000}},  //   _רומע, cītā, гуна,\n  { {0x6d5e006a, 0x27ed02ae, 0x291a027e, 0x00000000}},  //   _napa, _zien_, napa_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x645a0163, 0x63a90781, 0x69c5008d, 0x00000000}},  //   _isti, cien, zohe,\n  { {0x6d5e04cb, 0x69dc0fd6, 0x291a0056, 0x00000000}},  //   _bapa, _ohre, kapa_,\n  { {0xf99f0263, 0xf23700b3, 0x69c50023, 0x00000000}},  //   _jwèt_, _ערוץ_, xohe,\n  { {0x6d5e30bc, 0x291a1794, 0xfbd3023c, 0x00000000}},  //   _dapa, dapa_, متر_,\n  { {0x9b5801e0, 0x6d61016c, 0x3b5500ed, 0x00000000}},  //   лист_, _žvać, јкар,\n  { {0x27ed028c, 0x69c5008d, 0x69dc002a, 0x00000000}},  // [fef0] _rien_, tohe, _bhre,\n  { {0x7f5f005f, 0x27ed0343, 0x645a002d, 0x00000000}},  //   _haqq, _sien_, _osti,\n  { {0x69c5008d, 0x629b0197, 0x201e006c, 0x00000000}},  //   rohe, zzuo, nsti_,\n  { {0x69c5008d, 0x201e0089, 0x7a470089, 0x00000000}},  //   sohe, isti_, tītā,\n  { {0x63a90580, 0x6d5e011f, 0x27ed40a9, 0x00000000}},  //   vien, _yapa, _vien_,\n  { {0x201e001e, 0x63a90046, 0x361a026c, 0x00000000}},  //   ksti_, wien, ئرنگ_,\n  { {0x27ed0168, 0x7a47001e, 0xf99f01aa, 0x00000000}},  //   _tien_, sītā, _dwèt_,\n  { {0x637c0010, 0x629b0032, 0x63a900c4, 0x00000000}},  //   _kény, tzuo, uien,\n  { {0x645a06c0, 0x201e03b6, 0xe29900ed, 0x00000000}},  //   _esti, esti_, тап_,\n  { {0x63a9010a, 0xd49b012b, 0x6f160253, 0x00000000}},  //   sien, _пре_, _seyc,\n  { {0x63a92e3f, 0x6d5e033b, 0x637c0010, 0x00000000}},  //   pien, _rapa, _lény,\n  { {0x6d5e006a, 0xdee601fc, 0xe47a0049, 0x00000000}},  //   _sapa, иони, _ברעכ,\n  { {0x2d980051, 0x291a0058, 0x201e00b0, 0x00000000}},  //   thre_, yapa_, asti_,\n  { {0xc0e50200, 0xf2d2009b, 0x6d5e006b, 0x00000000}},  //   _колк, _ועד_, _qapa,\n  { {0x6d5e021e, 0xfce60f13, 0x403200ec, 0x00000000}},  //   _vapa, рово, _дејс,\n  { {0x6d5e0020, 0x291a0020, 0xb5fd0bf8, 0x00000000}},  //   _wapa, wapa_, _pršl,\n  { {0x6d5e021e, 0x637c0047, 0x69dc0124, 0x00000000}},  // [ff00] _tapa, _pénz, _phre,\n  { {0x186a0369, 0x9d4600c0, 0xdcfe16d0, 0x00000000}},  //   кази_, _теод, _kopč,\n  { {0x291a020c, 0x7d1c0051, 0xe8110061, 0x00000000}},  //   rapa_, mars, डीला_,\n  { {0xf7460088, 0x637c0047, 0x291a003f, 0x00000000}},  //   редо, _fény, sapa_,\n  { {0xf99f000a, 0x00000000, 0x00000000, 0x00000000}},  //   _pwèt_,   ,   ,\n  { {0x7d1c009f, 0xd547005e, 0x23ba0089, 0x00000000}},  //   nars, ипче_, dīja_,\n  { {0x9f4f00f6, 0x291800e5, 0x00000000, 0x00000000}},  //   _sufí_, _iera_,   ,\n  { {0x7d1c0059, 0x29180065, 0x00000000, 0x00000000}},  //   hars, _hera_,   ,\n  { {0x2918317c, 0x3a2040aa, 0x1dc6006e, 0x00000000}},  //   _kera_, nsip_, लकात,\n  { {0x7d1c000c, 0x645a0009, 0x291804be, 0x00000000}},  //   jars, _tsti, _jera_,\n  { {0x7d1c01d9, 0x29180039, 0xf48709bc, 0x00000000}},  //   dars, _mera_, _پالی,\n  { {0x77620555, 0x291800f8, 0x27f80087, 0x00000000}},  //   ndox, _lera_, _murn_,\n  { {0x6d8b006b, 0x7d1c29fc, 0x76420052, 0x00000000}},  //   _müav, fars, ntoy,\n  { {0x29181395, 0x91e3003b, 0xdb040051, 0x00000000}},  //   _nera_, _доче, cniú,\n  { {0xb0570025, 0x9d18007e, 0x5f7709b9, 0x00000000}},  //   _نشيط_, рост_, _ناظر,\n  { {0x5bb8007c, 0x386d00b9, 0x853c0006, 0x00000000}},  //   ался_, _čer_, _smėl,\n  { {0x6f1d010f, 0x291840ab, 0x7d1701f3, 0x00000000}},  // [ff10] masc, _bera_, _texs,\n  { {0x7d1c40ac, 0x6f1d0207, 0xd1380006, 0x00000000}},  //   cars, lasc, ngą_,\n  { {0x29180129, 0x6ff3000d, 0xfbd000a1, 0x00000000}},  //   _dera_, _făcu, ستہ_,\n  { {0xf568026c, 0x6d550020, 0x637c0047, 0x00000000}},  //   یمنٹ_, leza, _tény,\n  { {0x291800f4, 0x6f1d001a, 0xf7700a4f, 0x00000000}},  //   _fera_, iasc, ظام_,\n  { {0x2918009f, 0x6d552367, 0x00000000, 0x00000000}},  //   _gera_, neza,   ,\n  { {0xf8e50055, 0x88e50055, 0xb8950054, 0x00000000}},  //   _প্রথ, _প্রক, _الأع,\n  { {0x44290213, 0x61b102fb, 0x23ba001e, 0x00000000}},  //   ča_, ीक्ष, tīja_,\n  { {0x6d5540ad, 0x6f1d0129, 0x957c0036, 0x00000000}},  //   keza, dasc, _piąt,\n  { {0x29010211, 0x6fd6008e, 0xdd000089, 0x00000000}},  //   ncha_, táco, ātīg,\n  { {0x6f1d0207, 0x6d5510d2, 0x29010087, 0x00000000}},  //   fasc, deza, icha_,\n  { {0x6f1d016e, 0xd1380006, 0x64431b0d, 0x00000000}},  //   gasc, agą_, mtni,\n  { {0x656100b9, 0x6e2900b9, 0x00000000, 0x00000000}},  //   _kalh, šebn,   ,\n  { {0x6d5500bb, 0xdcfe40ae, 0xdd920025, 0x00000000}},  //   geza, _topč, أوس_,\n  { {0x64430eea, 0x7d1c0211, 0xab2a0088, 0x00000000}},  //   ntni, rars, лова_,\n  { {0x2918028c, 0x7d1c0059, 0xfbdf0011, 0x00000000}},  //   _sera_, sars, _chê_,\n  { {0x6d551526, 0x7d1c152b, 0x2918006a, 0x00000000}},  // [ff20] beza, pars, _pera_,\n  { {0xf2d2007b, 0x64430039, 0x8af0005f, 0x00000000}},  //   לען_, ktni, ddət,\n  { {0x29180635, 0x3a200207, 0x644340af, 0x00000000}},  //   _vera_, ssip_, jtni,\n  { {0x290140b0, 0x2918002b, 0x764200f4, 0x00000000}},  //   acha_, _wera_, ttoy,\n  { {0x64430036, 0x29180065, 0x9f480051, 0x00000000}},  //   etni, _tera_, _bunú_,\n  { {0xb9960054, 0x644301bf, 0x27f800ab, 0x00000000}},  //   _السب, ftni, _turn_,\n  { {0x6561011c, 0x64430737, 0x76422468, 0x00000000}},  //   _dalh, gtni, stoy,\n  { {0xf74300a8, 0x6d552645, 0xbebb0023, 0x00000000}},  //   _несо, zeza, rgëz,\n  { {0x6f1d0365, 0x27e60866, 0x65610181, 0x00000000}},  //   vasc, mmon_, _falh,\n  { {0x6f0440b1, 0xd1380006, 0x656100c4, 0x00000000}},  //   _afic, ugą_, _galh,\n  { {0x6d5501ae, 0x6f1d0598, 0x6f09008e, 0x00000000}},  //   veza, tasc, ñeco,\n  { {0x8af0006b, 0x6d550d16, 0x27e61bcb, 0x00000000}},  //   ndəs, weza, nmon_,\n  { {0x6f1d002a, 0x41e60106, 0x32060058, 0x00000000}},  //   rasc, _ліка, _utoy_,\n  { {0x6f1d0061, 0xd0100a4f, 0x27e60065, 0x00000000}},  //   sasc, _قلت_, hmon_,\n  { {0xfbdf0011, 0x6f1d3fce, 0x6d55016e, 0x00000000}},  //   _phê_, pasc, reza,\n  { {0x6ab4001c, 0x00000000, 0x00000000, 0x00000000}},  //   ंपूर,   ,   ,\n  { {0x6d550211, 0x75280036, 0x8af0006b, 0x00000000}},  // [ff30] peza, _oddz, ddəs,\n  { {0x7e6d0b33, 0x644340b2, 0xf99f000a, 0x00000000}},  //   _irap, ytni, _etèn_,\n  { {0x290140b3, 0xfbdf0082, 0x00000000, 0x00000000}},  //   rcha_, _thê_,   ,\n  { {0x9be40451, 0x2901010f, 0x656100ea, 0x00000000}},  //   _ніяк, scha_, _salh,\n  { {0xbb3a007b, 0xeb3a0049, 0xb5fd0746, 0x00000000}},  //   _דערי, _דערש, _krši,\n  { {0x644340b4, 0x69ce01c3, 0x00000000, 0x00000000}},  //   ttni, _gkbe,   ,\n  { {0x65611382, 0x81c30044, 0x224f0022, 0x00000000}},  //   _valh, ্ষম_, _spgk_,\n  { {0x0205026b, 0x6561008a, 0x644340b5, 0x00000000}},  //   озин, _walh, rtni,\n  { {0x644301d9, 0x0cd60309, 0x656100c4, 0x00000000}},  //   stni, _धर्म, _talh,\n  { {0x6d8b006b, 0x059500a6, 0x66090091, 0x00000000}},  //   _müas, _بارگ, _itek,\n  { {0x8af0005f, 0x6e240209, 0x7e6d05f9, 0x00000000}},  //   ndər, _svib, _arap,\n  { {0xa2aa0061, 0xb5fd40b6, 0x98b30006, 0x00000000}},  //   _जेव्, _arši, ždės_,\n  { {0x7e6d0035, 0x63ab0009, 0xee3702dc, 0x00000000}},  //   _crap, _imgn, оня_,\n  { {0x7e6d3ec9, 0xbddb0129, 0xa06900ed, 0x00000000}},  //   _drap, stèn, _вака_,\n  { {0x67290578, 0xa3de0061, 0x27e600b4, 0x00000000}},  //   _odej, _दीड_, ymon_,\n  { {0x7e6d03eb, 0x0b46007e, 0x67290023, 0x00000000}},  //   _frap, ўнан, _ndej,\n  { {0x4425001e, 0x7e6d00fe, 0x66091489, 0x00000000}},  // [ff40] _lvl_, _grap, _ntek,\n  { {0x3f820091, 0x6f2400a1, 0x6729004a, 0x00000000}},  //   ljku_, _بڑھن, _adej,\n  { {0x66091126, 0x6729002b, 0x442519cb, 0x00000000}},  //   _atek, _bdej, _nvl_,\n  { {0x66090288, 0x6fd60062, 0x00000000, 0x00000000}},  //   _btek, dáck,   ,\n  { {0x44250190, 0x16a7014c, 0x672901f3, 0x00000000}},  //   _avl_, овци_, _ddej,\n  { {0x27e6005b, 0x69ce002d, 0x00000000, 0x00000000}},  //   smon_, _ukbe,   ,\n  { {0x66091b01, 0x6fdd0068, 0x00000000, 0x00000000}},  //   _etek, héca,   ,\n  { {0x24800091, 0x050a0044, 0xe7370a85, 0x00000000}},  //   ćim_, রণের_, _мес_,\n  { {0xef1f01f6, 0xd250007a, 0xc17a0088, 0x00000000}},  //   kkür_, رند_, аїн_,\n  { {0x7e6d0ea9, 0x67290667, 0x00000000, 0x00000000}},  //   _rrap, _zdej,   ,\n  { {0x9f520173, 0x7e6d00e0, 0x00000000, 0x00000000}},  //   _kiyè_, _srap,   ,\n  { {0x7e6d0065, 0xd36f0025, 0x9f5201aa, 0x00000000}},  //   _prap, _لهم_, _jiyè_,\n  { {0x80ca0309, 0x35df013d, 0xb5fd0c8a, 0x00000000}},  //   _सुरे, _पीड़, _prši,\n  { {0x0dcb1c7b, 0x7e6d40b7, 0x8af0006b, 0x00000000}},  //   руми_, _vrap, ydər,\n  { {0x5f95007c, 0x2bd90752, 0x7e6d0133, 0x00000000}},  //   _никт, مارک_, _wrap,\n  { {0x81c30044, 0x00000000, 0x00000000, 0x00000000}},  //   ্ষণ_,   ,   ,\n  { {0x3a320007, 0x5a35005e, 0x00000000, 0x00000000}},  // [ff50] gryp_, янат,   ,\n  { {0xa2dd0164, 0x89370025, 0x2b490035, 0x00000000}},  //   _परस्, تعرا, sfac_,\n  { {0x2a69006c, 0xbddb0173, 0x9f52000a, 0x00000000}},  //   svab_, ntèm, _biyè_,\n  { {0xf7730426, 0xcd34009e, 0x00000000, 0x00000000}},  //   باط_, _ٹریب,   ,\n  { {0xddc405fa, 0xa50900c0, 0x4b7a00b3, 0x00000000}},  //   _hriš, бела_, _הארו,\n  { {0x2b9c0224, 0xddc440b8, 0x05a80088, 0x00000000}},  //   _více_, _kriš, овій_,\n  { {0xdb0d00c4, 0x00000000, 0x00000000, 0x00000000}},  //   gnaç,   ,   ,\n  { {0x7bcd00c4, 0x7dd21f7d, 0x00000000, 0x00000000}},  //   noau, læst,   ,\n  { {0x660916d8, 0x3e720082, 0x0eaa0061, 0x00000000}},  //   _utek, _môtô_, _चेंड,\n  { {0x10a504b6, 0xdb160010, 0x6fd61c59, 0x00000000}},  //   зион, rnyé, máci,\n  { {0x6fd640b9, 0x00000000, 0x00000000, 0x00000000}},  //   láci,   ,   ,\n  { {0x320d062a, 0x00000000, 0x00000000, 0x00000000}},  //   ppey_,   ,   ,\n  { {0x6fd60027, 0x63bb005d, 0x7bcd004a, 0x00000000}},  //   náci, mnun, doau,\n  { {0xddc41adc, 0x661d000c, 0x2d830023, 0x00000000}},  //   _briš, _æsku, gjje_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x63bb1642, 0x6fd61db8, 0x60dc169c, 0x00000000}},  //   nnun, káci, ürme,\n  { {0x63bb00db, 0x799e005b, 0xdcfe00e5, 0x00000000}},  // [ff60] inun, thpw, _copă,\n  { {0x63bb001f, 0x291c1690, 0x6fd60142, 0x00000000}},  //   hnun, úva_, dáci,\n  { {0xacfb009b, 0xddc412db, 0x7bcd0026, 0x00000000}},  //   _להיכ, _griš, boau,\n  { {0x63bb01d5, 0x7d1e014a, 0xe73a091b, 0x00000000}},  //   jnun, _heps, сед_,\n  { {0x63bb0fb5, 0x6fd640ba, 0x7d1e007f, 0x00000000}},  //   dnun, gáci, _keps,\n  { {0x7d1e0190, 0x7dd20030, 0xe5a3007c, 0x00000000}},  //   _jeps, mæss, ничи,\n  { {0x63bb14b4, 0x81c30055, 0x09e30099, 0x00000000}},  //   fnun, ্ষা_, _чорн,\n  { {0x48e10061, 0x7d1e18d5, 0x58bb00b6, 0x00000000}},  //   _करतो_, _leps, _המלצ,\n  { {0xdcfc0089, 0x61e30009, 0x6fd600c4, 0x00000000}},  //   nkrē, _bhnl, cáci,\n  { {0x63bb0211, 0x7d1e013e, 0x3f570082, 0x00000000}},  //   anun, _neps, _ầu_,\n  { {0xd25000a6, 0x53fa0014, 0x68050006, 0x00000000}},  //   رنگ_, _طراح_, _kėda,\n  { {0x2d8c03aa, 0x67220020, 0x00000000, 0x00000000}},  //   öden_, naoj,   ,\n  { {0xbddb028c, 0xe8b90309, 0x4cd60044, 0x00000000}},  //   stèm, _आश्च, _দলগু,\n  { {0xddc40cce, 0x7d1e06ed, 0x395a0068, 0x00000000}},  //   _priš, _ceps, jeps_,\n  { {0x6fd62b90, 0x7d1e0093, 0x7bcd01a2, 0x00000000}},  //   záci, _deps, toau,\n  { {0x23cc0164, 0x69c307ac, 0x2366016c, 0x00000000}},  //   ाविद, čnem, _jaoj_,\n  { {0x6fdd00f4, 0xbddb0173, 0x7bcd01a2, 0x00000000}},  // [ff70] léco, ntèk, roau,\n  { {0x395a0061, 0x127b007b, 0x213e0866, 0x00000000}},  //   geps_, זאמע, ngth_,\n  { {0x4af9007c, 0x63bb0279, 0x27e40022, 0x00000000}},  //   _меню_, ynun, _bhmn_,\n  { {0x6fd61db8, 0xe7380088, 0x6b9602d4, 0x00000000}},  //   táci, зеї_, ckyg,\n  { {0xb8d4024c, 0xe4c5006b, 0x00000000, 0x00000000}},  //   _जे_, _köçə,   ,\n  { {0x6fd62b90, 0x00000000, 0x00000000, 0x00000000}},  //   ráci,   ,   ,\n  { {0xa3e90256, 0x26c400fa, 0xcabf0044, 0x00000000}},  //   одка_, _exmo_, _আরিফ,\n  { {0x6fdd009d, 0x00000000, 0x00000000, 0x00000000}},  //   déco,   ,   ,\n  { {0x63bb0218, 0x6fdd0285, 0xb5fd01ed, 0x00000000}},  //   rnun, técn, _pršu,\n  { {0xcabf0044, 0x00000000, 0x00000000, 0x00000000}},  //   _আরাফ,   ,   ,\n  { {0x75231425, 0xf9920097, 0xe8110061, 0x00000000}},  //   manz, דרי_, डीचा_,\n  { {0x7d1e008d, 0x7523010f, 0x68ec006b, 0x00000000}},  //   _seps, lanz, ündə,\n  { {0x614501be, 0x59bf0164, 0xa3ca00e8, 0x00000000}},  //   _жела, ्वार, लकर_,\n  { {0x752308ed, 0xe9ff001d, 0x61fd0428, 0x00000000}},  //   nanz, _hoặc_, íslu,\n  { {0x9f5d01aa, 0x45220044, 0x00000000, 0x00000000}},  //   _ouvè_, _নামক_,   ,\n  { {0xee3a046c, 0x4427037d, 0x75231601, 0x00000000}},  //   _дни_, isn_, hanz,\n  { {0x6d4f000c, 0x31670087, 0x75232a95, 0x00000000}},  // [ff80] únað, _kanz_, kanz,\n  { {0x7e6411ad, 0x8e370049, 0x75233eb7, 0x00000000}},  //   _isip, _קניא_, janz,\n  { {0x395a40bb, 0x75233e17, 0x77660265, 0x00000000}},  //   reps_, danz, дълж,\n  { {0x6d5c3681, 0x442701f3, 0x7c3c0032, 0x00000000}},  //   lera, dsn_, murr,\n  { {0xe5c60175, 0x75230207, 0x7c3c002d, 0x00000000}},  //   мско, fanz, lurr,\n  { {0x75230a19, 0x2b40121e, 0x2d980010, 0x00000000}},  //   ganz, lgic_, nkre_,\n  { {0x3e85008d, 0x6d5c002d, 0xd94300e2, 0x00000000}},  //   _këtë_, iera, _шери,\n  { {0x6d5c002d, 0x00000000, 0x00000000, 0x00000000}},  //   hera,   ,   ,\n  { {0x6d5c022b, 0x75230311, 0xfd650011, 0x00000000}},  //   kera, banz, _chuồ,\n  { {0x75231ad2, 0x7c3c022b, 0x6d5c016e, 0x00000000}},  //   canz, kurr, jera,\n  { {0x130a007c, 0x80d60044, 0x7e6400e7, 0x00000000}},  //   _дней_, ডেন্, _asip,\n  { {0x656806fe, 0x7c3c0207, 0x66000020, 0x00000000}},  //   _hadh, durr, _kumk,\n  { {0x6d5c0263, 0x6568000b, 0x16dc0061, 0x00000000}},  //   fera, _kadh, _बरोब,\n  { {0x6d5c0127, 0x3167001f, 0x701900a1, 0x00000000}},  //   gera, _ganz_, _کروڑ_,\n  { {0x656823d3, 0x0cd40088, 0xfbd3023c, 0x00000000}},  //   _madh, ворю, نتر_,\n  { {0x02e20061, 0x75230020, 0x656802bf, 0x00000000}},  //   _पराभ, zanz, _ladh,\n  { {0x6d5c0149, 0x657a0100, 0x75230dfc, 0x00000000}},  // [ff90] bera, _onth, yanz,\n  { {0x6d5c0073, 0xf77000d3, 0x65680020, 0x00000000}},  //   cera, یان_, _nadh,\n  { {0xb90703d7, 0x752301d5, 0x47351fd9, 0x00000000}},  //   _पर_, vanz, енес,\n  { {0x752340bc, 0x657a0549, 0x61f80cb2, 0x00000000}},  //   wanz, _anth, _livl,\n  { {0x7523000b, 0xa509003b, 0x65680a75, 0x00000000}},  //   tanz, пела_, _badh,\n  { {0x6568161d, 0x6e2000c4, 0xd4690aed, 0x00000000}},  //   _cadh, âmbi, зике_,\n  { {0x7523054f, 0x6d45000b, 0x6e3d07c4, 0x00000000}},  //   ranz, _mcha, husb,\n  { {0x61c702fb, 0x6d5c0027, 0x752300ac, 0x00000000}},  //   रक्ष, zera, sanz,\n  { {0x656840bd, 0x7c3c117a, 0x6d452b72, 0x00000000}},  //   _fadh, zurr, _ocha,\n  { {0x6d5c40be, 0x67202d14, 0xdd31006b, 0x00000000}},  //   xera, _zemj, _rəşa,\n  { {0xd00e00a6, 0x61f80091, 0x644a1a8d, 0x00000000}},  //   یلی_, _divl, ctfi,\n  { {0x6d45028c, 0x6d5c0d31, 0x3f6a2e81, 0x00000000}},  //   _acha, wera, чимо_,\n  { {0xa195008b, 0x6fd6008e, 0x316701a2, 0x00000000}},  //   _падч, dáct, _tanz_,\n  { {0x6145350f, 0x7c3c002d, 0x75210010, 0x00000000}},  //   _чека, turr, _jelz,\n  { {0x6d5c0073, 0xc4d2007b, 0x6d4e22d8, 0x00000000}},  //   rera, ָגן_, rfba,\n  { {0x6d5c40bf, 0xd00e0b59, 0x6d4540c0, 0x00000000}},  //   sera, _الي_, _echa,\n  { {0x6d5c049a, 0xfaa302d3, 0xdb0f0010, 0x00000000}},  // [ffa0] pera, гато, ájár,\n  { {0xe9d701f9, 0x7c3c1983, 0x752100b9, 0x00000000}},  //   еку_, purr, _nelz,\n  { {0x65682927, 0x776900d9, 0x2005013f, 0x00000000}},  //   _radh, _baex, nqli_,\n  { {0xd6d90046, 0x69d52cb2, 0x65680048, 0x00000000}},  //   _był_, _ekze, _sadh,\n  { {0xb7d7023c, 0x21250022, 0x6e29012d, 0x00000000}},  //   روها_, kalh_, šebv,\n  { {0xceb3007b, 0x6d451f8b, 0x04660fa6, 0x00000000}},  //   ניג_, _xcha, етим,\n  { {0x6fd60047, 0x64480009, 0x61f80023, 0x00000000}},  //   nács, _qqdi, _rivl,\n  { {0x65680020, 0xff5f009d, 0x443c05ad, 0x00000000}},  //   _wadh, noît_, ruv_,\n  { {0x644a000c, 0x65681740, 0x320f0009, 0x00000000}},  //   stfi, _tadh, _ctgy_,\n  { {0xe4d60054, 0x200e0022, 0xc0ca003b, 0x00000000}},  //   _كتاب, _ptfi_, зуме_,\n  { {0x89370049, 0xc953009b, 0x7f5d062a, 0x00000000}},  //   ערטע_, אמת_, tesq,\n  { {0x6d4540c1, 0x6e3d0232, 0x442c0433, 0x00000000}},  //   _scha, tusb, _ivd_,\n  { {0x7f5d06fa, 0x93cb00a1, 0x3f9901ee, 0x00000000}},  //   resq, _عامہ_, rksu_,\n  { {0xc297008b, 0x127b0049, 0x81de0044, 0x00000000}},  //   _якіх_, _מאדע, _দূর_,\n  { {0xe0d4007b, 0x2167003b, 0x0133035b, 0x00000000}},  //   _בײַ_, _чији_, _صعود,\n  { {0x442c01c5, 0x00000000, 0x00000000, 0x00000000}},  //   _mvd_,   ,   ,\n  { {0x6fd60211, 0x6d4500f4, 0x6f0d0544, 0x00000000}},  // [ffb0] ráct, _tcha, _ifac,\n  { {0x6d4540c2, 0x442c00f6, 0xc4c400a1, 0x00000000}},  //   _ucha, _ovd_, _هے_,\n  { {0xbb1b00f4, 0xa9c40088, 0x394100f8, 0x00000000}},  //   _boît, устк, rghs_,\n  { {0x752140c3, 0x1ab5007e, 0xdb0700b0, 0x00000000}},  //   _selz, _абмя, ämät,\n  { {0x442c0056, 0x00000000, 0x00000000, 0x00000000}},  //   _avd_,   ,   ,\n  { {0x442c0f46, 0x00000000, 0x00000000, 0x00000000}},  //   _bvd_,   ,   ,\n  { {0x442c0085, 0xd4660aef, 0x6592003b, 0x00000000}},  //   _cvd_, вище_, рају,\n  { {0x442c40c4, 0x58d40f40, 0x752100bb, 0x00000000}},  //   _dvd_, _сост, _welz,\n  { {0x35f50265, 0xdcfe0209, 0x4222007c, 0x00000000}},  //   _апар, _uopć, адыв,\n  { {0x6fdd028c, 0x6f0d000d, 0x21750256, 0x00000000}},  //   léch, _afac, туир,\n  { {0x8fa60265, 0x00000000, 0x00000000, 0x00000000}},  //   ване,   ,   ,\n  { {0x2005006b, 0xb4cd013d, 0x21250022, 0x00000000}},  //   rqli_, रथी_, salh_,\n  { {0xe28e103e, 0x9e63008b, 0xfe7900a5, 0x00000000}},  //   _та_, авяд, нёры_,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x224d0010, 0x6f0d0016, 0x00000000, 0x00000000}},  //   ltek_, _ffac,   ,\n  { {0x224d004e, 0x25e8013d, 0x236d0065, 0x00000000}},  //   otek_, _चीनी_, ndej_,\n  { {0x224d0010, 0xff5f009d, 0x00000000, 0x00000000}},  // [ffc0] ntek_, roît_,   ,\n  { {0x224d002d, 0x957c0036, 0x00000000, 0x00000000}},  //   itek_, _wiąz,   ,\n  { {0x98b1011f, 0xdca6003b, 0x574a007e, 0x00000000}},  //   _bazı_, _рани, дзем_,\n  { {0x224d33e4, 0x6f0d0026, 0x7e761d8f, 0x00000000}},  //   ktek_, _xfac, _kryp,\n  { {0x442c0039, 0xe5341734, 0x473301ff, 0x00000000}},  //   _svd_, гель, рніс,\n  { {0xd693012b, 0x35b6005e, 0x442c2fec, 0x00000000}},  //   ришћ, ъщес, _pvd_,\n  { {0x67e3010e, 0x00000000, 0x00000000, 0x00000000}},  //   sõja,   ,   ,\n  { {0x68e314c9, 0x69de146c, 0x442c00b5, 0x00000000}},  //   ünde, llpe, _vvd_,\n  { {0x6f0d0048, 0xc566003b, 0x00000000, 0x00000000}},  //   _rfac, _икак,   ,\n  { {0x6f0d0cc8, 0xa3e70061, 0x00000000, 0x00000000}},  //   _sfac, _मीठ_,   ,\n  { {0x98b1005a, 0x6e2d0107, 0x493b009b, 0x00000000}},  //   _yazı_, _svab, וגיו,\n  { {0x23ba01c5, 0x00000000, 0x00000000, 0x00000000}},  //   tīju_,   ,   ,\n  { {0x63a2011c, 0x539b0104, 0x7e76032c, 0x00000000}},  //   _ilon, _קידו, _cryp,\n  { {0x7bc60107, 0x7e760190, 0x00000000, 0x00000000}},  //   _ajku, _dryp,   ,\n  { {0x1df8007c, 0x07220316, 0x7ae60288, 0x00000000}},  //   теры_, मराव_, _azkt,\n  { {0x7e760006, 0xddcd0035, 0x00000000, 0x00000000}},  //   _fryp, _braţ,   ,\n  { {0x98b10279, 0x7e7600b4, 0x00000000, 0x00000000}},  // [ffd0] _razı_, _gryp,   ,\n  { {0x645a0472, 0x63a20016, 0xdd9100a1, 0x00000000}},  //   _opti, _llon, _چوک_,\n  { {0x224d0010, 0x38c90167, 0x7bc8009d, 0x00000000}},  //   ztek_, رائی_, éduc,\n  { {0x224d0c0f, 0xe7d10044, 0xddcd0035, 0x00000000}},  //   ytek_, িষ্য, _fraţ,\n  { {0xf7700879, 0x26c90181, 0x6fdd009d, 0x00000000}},  //   تال_, çao_, réch,\n  { {0x63a20038, 0x69cb0010, 0xbf1f0061, 0x00000000}},  //   _alon, éged, परुन_,\n  { {0x63a20472, 0x224d0066, 0x26d2014a, 0x00000000}},  //   _blon, wtek_, üyor_,\n  { {0x224d0047, 0x04560054, 0x24890119, 0x00000000}},  //   ttek_, الية_, ćam_,\n  { {0x645a00f6, 0x63a203b2, 0xc7b200b3, 0x00000000}},  //   _epti, _dlon, _הבן_,\n  { {0x224d108d, 0x63a20133, 0x972400a1, 0x00000000}},  //   rtek_, _elon, _مفہو,\n  { {0x224d014a, 0xbf1f0061, 0x00000000, 0x00000000}},  //   stek_, परून_,   ,\n  { {0x63a214d9, 0x224d0010, 0x6d57006b, 0x00000000}},  //   _glon, ptek_, _abxa,\n  { {0x52740014, 0x00000000, 0x00000000, 0x00000000}},  //   _پانز,   ,   ,\n  { {0xde03007c, 0x7e7640c5, 0x8c4600e2, 0x00000000}},  //   спри, _vryp, леге,\n  { {0x00000000, 0x00000000, 0x00000000, 0x00000000}},  //     ,   ,   ,\n  { {0x39960698, 0x7e760133, 0x6d8b006b, 0x00000000}},  //   _læst_, _tryp, _müay,\n  { {0x4e1d013d, 0x6e290107, 0x39ea003b, 0x00000000}},  // [ffe0] बीआई_, šebr, едао_,\n  { {0x8d660057, 0x3996000c, 0x680c0477, 0x00000000}},  //   _свое, _næst_, _ağda,\n  { {0xf99f00d4, 0x485a007e, 0xe73a017f, 0x00000000}},  //   _atès_, эраў_, еее_,\n  { {0x69c70066, 0x7c2e03b4, 0x46a60356, 0x00000000}},  //   _ejje, msbr, лаев,\n  { {0x9f8b006c, 0x6d410daf, 0xddcd40c6, 0x00000000}},  //   _tööl_, ólag, _hraš,\n  { {0x7bc4010a, 0x63a20059, 0xddcd40c7, 0x00000000}},  //   lniu, _slon, _kraš,\n  { {0x69c30209, 0x63a240c8, 0x7c2e09b0, 0x00000000}},  //   čnet, _plon, nsbr,\n  { {0x6fdd0181, 0x7c2e01d6, 0x61ea0023, 0x00000000}},  //   péci, isbr, _shfl,\n  { {0xf1260373, 0x89d700a1, 0x63a240c9, 0x00000000}},  //   льно, _شوہر_, _vlon,\n  { {0x39960030, 0x865b0097, 0xddcd016e, 0x00000000}},  //   _gæst_, _אדמי, _oraš,\n  { {0x645a103f, 0x3f920279, 0x63a2008a, 0x00000000}},  //   _upti, _boyu_, _tlon,\n  { {0x7c2e0018, 0xdb0d00c4, 0x63a240ca, 0x00000000}},  //   dsbr, miaç, _ulon,\n  { {0x221601fb, 0xdb0d02d5, 0x9f92009f, 0x00000000}},  //   _сфер, liaç, ráð_,\n  { {0xa6d10044, 0xddcd0091, 0x00000000, 0x00000000}},  //   ়েকট, _braš,   ,\n  { {0x2b9c001d, 0x442e0173, 0x7c2e06a1, 0x00000000}},  //   _kích_, nsf_, gsbr,\n  { {0xddcd04eb, 0x395800fa, 0x00000000, 0x00000000}},  //   _draš, _abrs_,   ,\n  { {0x645c006c, 0x38780145, 0x00000000, 0x00000000}},  // [fff0] _ärif, _arrr_,   ,\n  { {0x6d41000c, 0x00000000, 0x00000000, 0x00000000}},  //   ólad,   ,   ,\n  { {0x31570049, 0xddcd01ed, 0x765b08d9, 0x00000000}},  //   ריבן_, _graš, _spuy,\n  { {0x2d93027b, 0xbddb00f4, 0x6d470d3e, 0x00000000}},  //   _hoxe_, ctèr, lgja,\n  { {0x3669003b, 0x38780145, 0x320600e0, 0x00000000}},  //   тало_, _errr_, _nuoy_,\n  { {0x6d4740cb, 0xae1d013d, 0x2d93002d, 0x00000000}},  //   ngja, बीएन_, _joxe_,\n  { {0x38781346, 0xcd9800b6, 0x2b9c0011, 0x00000000}},  //   _grrr_, רדות_, _bích_,\n  { {0x437501fb, 0x6b8d04cb, 0x42550745, 0x00000000}},  //   рукт, njag, атот,\n  { {0x69c50007, 0x6aad0026, 0x9f8401df, 0x00000000}},  //   onhe, nzaf, lıç_,\n  { {0x69c50304, 0x672b000c, 0x2d9300e5, 0x00000000}},  //   nnhe, lagj, _noxe_,\n  { {0xdb0d02d5, 0x656300bb, 0x27ed0011, 0x00000000}},  //   ciaç, menh, _khen_,\n  { {0x6f0f001c, 0x65630e24, 0x72d50cb7, 0x00000000}},  //   gccc, lenh, _коеф,\n  { {0x6443018e, 0x539a012e, 0x7c2e00d9, 0x00000000}},  //   luni, _שינו, wsbr,\n  { {0xddcd010a, 0x7c2e0039, 0x6d4740cc, 0x00000000}},  //   _praš, tsbr, ggja,\n  { {0xab2a008b, 0x1c39041f, 0x672b0ef8, 0x00000000}},  //   кова_, лять_, kagj,\n  { {0x6f0f001c, 0x63a90056, 0x63bb0035, 0x00000000}},  //   cccc, nhen, niun,\n\n  };\n  // table_hash = 508d-88e1, unused_entries = 79675 (30.39%)\n\nstatic const uint32 kQuadChromeInd[16589] = {\n  // [0000]\n  0x00000000, 0x0e001c23, 0x06001014, 0x01004208,   //  bg.ru..._880 sv.de..._660 mt.en..._430\n  0x0000191c, 0x38000512, 0x0000160f, 0x0000660f,   // et......_800 fr.ca..._640 lt......_600 af......_600\n  0x45401d08, 0x00001a06, 0x00008c01, 0x00003f1c,   // hr.sl.sk_443 xxx......_400 ht......_200 sw......_800\n  0x0000140f, 0x0000171c, 0x02002e13, 0x1a002e08,   // is......_600 ro......_800 sq.da..._650 sq.xxx..._430\n  // [0010]\n  0x0000180f, 0x0000430f, 0x2b003f14, 0x19002114,   // hu......_600 vi......_600 sw.cy..._660 tl.et..._660\n  0x00004e0f, 0x17000822, 0x00002b0f, 0x00001c2d,   // fa......_600 it.ro..._870 cy......_600 bg......_A00\n  0x0000021c, 0x01001a09, 0x0000170f, 0x18000802,   // da......_800 xxx.en..._440 ro......_600 it.hu..._220\n  0x00001a1c, 0x0000431c, 0x0000151c, 0x0000061c,   // xxx......_800 vi......_800 lv......_800 de......_800\n  // [0020]\n  0x00003f0f, 0x1d0c4502, 0x00002701, 0x00002e06,   // sw......_600 sk.pl.hr_222 id......_200 sq......_400\n  0x45000c12, 0x0000370f, 0x00000801, 0x0000451c,   // pl.sk..._640 ar......_600 it......_200 sk......_800\n  0x2e001414, 0x1a2e1f12, 0x00001f1c, 0x0000420f,   // is.sq..._660 ga.sq.xxx_654 ga......_800 mt......_600\n  0x374e3314, 0x00003a0f, 0x27192907, 0x2e001e09,   // ur.fa.ar_666 eu......_600 ms.et.id_432 sr.sq..._440\n  // [0030]\n  0x0000020f, 0x43002b13, 0x00003a06, 0x1a001f13,   // da......_600 cy.vi..._650 eu......_400 ga.xxx..._650\n  0x04003f13, 0x00001706, 0x00000c0f, 0x18002e12,   // sw.fi..._650 ro......_400 pl......_600 sq.hu..._640\n  0x0000011c, 0x0000100f, 0x0b000d02, 0x00001e0f,   // en......_800 sv......_600 pt.no..._220 sr......_600\n  0x19000414, 0x0d001002, 0x450c3a02, 0x27002913,   // fi.et..._660 sv.pt..._220 eu.pl.sk_222 ms.id..._650\n  // [0040]\n  0x16001722, 0x2e003f02, 0x40001602, 0x01000608,   // ro.lt..._870 sw.sq..._220 lt.sl..._220 de.en..._430\n  0x0000260f, 0x00001a01, 0x00000c1c, 0x0000181c,   // bn......_600 xxx......_200 pl......_800 hu......_800\n  0x00001f06, 0x00005c0f, 0x00000f01, 0x37334e13,   // ga......_400 yi......_600 es......_200 fa.ur.ar_665\n  0x0e002314, 0x0e001c09, 0x0b000202, 0x45001223,   // uk.ru..._660 bg.ru..._440 da.no..._220 cs.sk..._880\n  // [0050]\n  0x01001a08, 0x00001f0f, 0x00000406, 0x0d000102,   // xxx.en..._430 ga......_600 fi......_400 en.pt..._220\n  0x0000371c, 0x0000261c, 0x00000b0f, 0x00000e1c,   // ar......_800 bn......_800 no......_600 ru......_800\n  0x00002106, 0x0000400f, 0x4b002213, 0x00002b06,   // tl......_400 sl......_600 tr.az..._650 cy......_400\n  0x23000e02, 0x4b002214, 0x00001c0f, 0x00004b1c,   // ru.uk..._220 tr.az..._660 bg......_600 az......_800\n  // [0060]\n  0x3f001f12, 0x00001a0f, 0x45001209, 0x33004e11,   // ga.sw..._640 xxx......_600 cs.sk..._440 fa.ur..._630\n  0x1d451e08, 0x00002e0f, 0x00004206, 0x24001a11,   // sr.sk.hr_443 sq......_600 mt......_400 xxx.hi..._630\n  0x00000501, 0x1c000e02, 0x0000211c, 0x00004b0f,   // fr......_200 ru.bg..._220 tl......_800 az......_600\n  0x0000190f, 0x4e003713, 0x1a002412, 0x04002707,   // et......_600 ar.fa..._650 hi.xxx..._640 id.fi..._420\n  // [0070]\n  0x37334e12, 0x1f008c02, 0x1e002502, 0x0000101c,   // fa.ur.ar_654 ht.ga..._220 mk.sr..._220 sv......_800\n  0x1d001908, 0x01000c09, 0x37004e14, 0x23000e13,   // et.hr..._430 pl.en..._440 fa.ar..._660 ru.uk..._650\n  0x020b1408, 0x16001e02, 0x00004e1c, 0x00005c1c,   // is.no.da_443 sr.lt..._220 fa......_800 yi......_800\n  0x00000e0f, 0x1a002413, 0x0000300f, 0x00001606,   // ru......_600 hi.xxx..._650 be......_600 lt......_400\n  // [0080]\n  0x1e002521, 0x0e002502, 0x00004306, 0x1e232508,   // mk.sr..._860 mk.ru..._220 vi......_400 mk.uk.sr_443\n  0x374e3312, 0x00002901, 0x1e230e09, 0x00004001,   // ur.fa.ar_654 ms......_200 ru.uk.sr_444 sl......_200\n  0x0000230f, 0x0000150f, 0x27002909, 0x0000301c,   // uk......_600 lv......_600 ms.id..._440 be......_800\n  0x052e0107, 0x00002e1c, 0x00000f06, 0x15001613,   // en.sq.fr_432 sq......_800 es......_400 lt.lv..._650\n  // [0090]\n  0x06002b02, 0x1e001d14, 0x14001814, 0x00002706,   // cy.de..._220 hr.sr..._660 hu.is..._660 id......_400\n  0x04001f02, 0x00002206, 0x45004202, 0x07005c14,   // ga.fi..._220 tr......_400 mt.sk..._220 yi.iw..._660\n  0x25001e13, 0x30002323, 0x250e1caf, 0x0000070f,   // sr.mk..._650 uk.be..._880 bg.ru.mk_655 iw......_600\n  0x0000332d, 0x00000506, 0x00003306, 0x0000141c,   // ur......_A00 fr......_400 ur......_400 is......_800\n  // [00a0]\n  0x5c000714, 0x0000330f, 0x33004e12, 0x07005c13,   // iw.yi..._660 ur......_600 fa.ur..._640 yi.iw..._650\n  0x22002b09, 0x0e003013, 0x33004e14, 0x3f1a2109,   // cy.tr..._440 be.ru..._650 fa.ur..._660 tl.xxx.sw_444\n  0x25000e14, 0x29003f09, 0x1e251c02, 0x0000010f,   // ru.mk..._660 sw.ms..._440 bg.mk.sr_222 en......_600\n  0x1a000614, 0x0000432d, 0x42001a23, 0x2e008c09,   // de.xxx..._660 vi......_A00 xxx.mt..._880 ht.sq..._440\n  // [00b0]\n  0x0000040f, 0x01000323, 0x27000f09, 0x5c000712,   // fi......_600 nl.en..._880 es.id..._440 iw.yi..._640\n  0x00000c06, 0x0000030f, 0x0000071c, 0x2b000202,   // pl......_400 nl......_600 iw......_800 da.cy..._220\n  0x37004e22, 0x0000120f, 0x060315a4, 0x00000306,   // fa.ar..._870 cs......_600 lv.nl.de_433 nl......_400\n  0x42000514, 0x00005c2d, 0x8c002b02, 0x40000b09,   // fr.mt..._660 yi......_A00 cy.ht..._220 no.sl..._440\n  // [00c0]\n  0x1e001c02, 0x66000312, 0x0e302360, 0x22004b11,   // bg.sr..._220 nl.af..._640 uk.be.ru_664 az.tr..._630\n  0x00000d06, 0x30001c21, 0x2b141013, 0x03006614,   // pt......_400 bg.be..._860 sv.is.cy_665 af.nl..._660\n  0x16001508, 0x4b0f0d08, 0x00004006, 0x10021a09,   // lv.lt..._430 pt.es.az_443 sl......_400 xxx.da.sv_444\n  0x66000502, 0x19001402, 0x10002e13, 0x1f000609,   // fr.af..._220 is.et..._220 sq.sv..._650 de.ga..._440\n  // [00d0]\n  0x1d004002, 0x1c0e1e12, 0x00001201, 0x33004e21,   // sl.hr..._220 sr.ru.bg_654 cs......_200 fa.ur..._860\n  0x00003806, 0x0b001a02, 0x0f000d02, 0x25001c02,   // ca......_400 xxx.no..._220 pt.es..._220 bg.mk..._220\n  0x0b001013, 0x00000301, 0x0e002514, 0x06001414,   // sv.no..._650 nl......_200 mk.ru..._660 is.de..._660\n  0x0d000f08, 0x06000f02, 0x1a008c08, 0x1a000502,   // es.pt..._430 es.de..._220 ht.xxx..._430 fr.xxx..._220\n  // [00e0]\n  0x00002101, 0x1e002522, 0x00002506, 0x25001c14,   // tl......_200 mk.sr..._870 mk......_400 bg.mk..._660\n  0x0d003f02, 0x00001701, 0x140b1007, 0x00003f06,   // sw.pt..._220 ro......_200 sv.no.is_432 sw......_400\n  0x1a002411, 0x4e003322, 0x00000b06, 0x10000202,   // hi.xxx..._630 ur.fa..._870 no......_400 da.sv..._220\n  0x1e002513, 0x0000250f, 0x1e1d4002, 0x274b2902,   // mk.sr..._650 mk......_600 sl.hr.sr_222 ms.az.id_222\n  // [00f0]\n  0x29003f14, 0x0f001809, 0x06000402, 0x37003312,   // sw.ms..._660 hu.es..._440 fi.de..._220 ur.ar..._640\n  0x0000050f, 0x0c001e02, 0x00003801, 0x0f000d13,   // fr......_600 sr.pl..._220 ca......_200 pt.es..._650\n  0x00001006, 0x4e3337af, 0x00000d01, 0x3f1a8c09,   // sv......_400 ar.ur.fa_655 pt......_200 ht.xxx.sw_444\n  0x272e1faf, 0x18000d02, 0x66000107, 0x2e002b08,   // ga.sq.id_655 pt.hu..._220 en.af..._420 cy.sq..._430\n  // [0100]\n  0x03006623, 0x22001a02, 0x1e250eaf, 0x19000413,   // af.nl..._880 xxx.tr..._220 ru.mk.sr_655 fi.et..._650\n  0x5c000713, 0x182e4360, 0x30002322, 0x1d001e09,   // iw.yi..._650 vi.sq.hu_664 uk.be..._870 sr.hr..._440\n  0x38000402, 0x06000b09, 0x0000161c, 0x0c002b14,   // fi.ca..._220 no.de..._440 lt......_800 cy.pl..._660\n  0x66000409, 0x04003814, 0x00001906, 0x0000060f,   // fi.af..._440 ca.fi..._660 et......_400 de......_600\n  // [0110]\n  0x04002e02, 0x21001a02, 0x66000309, 0x1c002523,   // sq.fi..._220 xxx.tl..._220 nl.af..._440 mk.bg..._880\n  0x19000109, 0x05003808, 0x03006609, 0x3f001a08,   // en.et..._440 ca.fr..._430 af.nl..._440 xxx.sw..._430\n  0x20003802, 0x1e001d23, 0x66000f09, 0x10000211,   // ca.gl..._220 hr.sr..._880 es.af..._440 da.sv..._630\n  0x0000210f, 0x3f001a07, 0x1e001c12, 0x0000221c,   // tl......_600 xxx.sw..._420 bg.sr..._640 tr......_800\n  // [0120]\n  0x22006609, 0x30000e02, 0x1f000109, 0x4e003313,   // af.tr..._440 ru.be..._220 en.ga..._440 ur.fa..._650\n  0x1f002b14, 0x66000602, 0x1f004209, 0x0000291c,   // cy.ga..._660 de.af..._220 mt.ga..._440 ms......_800\n  0x04006614, 0x0000380f, 0x03003f08, 0x00001e1c,   // af.fi..._660 ca......_600 sw.nl..._430 sr......_800\n  0x1e0e2302, 0x00001e01, 0x5c000720, 0x07005c23,   // uk.ru.sr_222 sr......_200 iw.yi..._850 yi.iw..._880\n  // [0130]\n  0x1e230e14, 0x0e002309, 0x061f01a4, 0x00000106,   // ru.uk.sr_666 uk.ru..._440 en.ga.de_433 en......_400\n  0x40004513, 0x02032e08, 0x25001e20, 0x334e3714,   // sk.sl..._650 sq.nl.da_443 sr.mk..._850 ar.fa.ur_666\n  0x2b1f3fa4, 0x00003006, 0x30002309, 0x0e001e02,   // sw.ga.cy_433 be......_400 uk.be..._440 sr.ru..._220\n  0x1d004512, 0x0000240f, 0x00001206, 0x00004b06,   // sk.hr..._640 hi......_600 cs......_400 az......_400\n  // [0140]\n  0x0e001e09, 0x1a000302, 0x0000450f, 0x1e002508,   // sr.ru..._440 nl.xxx..._220 sk......_600 mk.sr..._430\n  0x3a004002, 0x00002906, 0x00000201, 0x0e003014,   // sl.eu..._220 ms......_400 da......_200 be.ru..._660\n  0x22001814, 0x29002723, 0x0000220f, 0x18001609,   // hu.tr..._660 id.ms..._880 tr......_600 lt.hu..._440\n  0x251e1c13, 0x1c251ea4, 0x42012707, 0x2b000302,   // bg.sr.mk_665 sr.mk.bg_433 id.en.mt_432 nl.cy..._220\n  // [0150]\n  0x2e001009, 0x374e3313, 0x0e002312, 0x0e1c25af,   // sv.sq..._440 ur.fa.ar_665 uk.ru..._640 mk.bg.ru_655\n  0x8c000d09, 0x04002122, 0x8c002108, 0x04000313,   // pt.ht..._440 tl.fi..._870 tl.ht..._430 nl.fi..._650\n  0x66000413, 0x2b001a22, 0x430419a4, 0x19000309,   // fi.af..._650 xxx.cy..._870 et.fi.vi_433 nl.et..._440\n  0x66000322, 0x27293f60, 0x3f002102, 0x18451260,   // nl.af..._870 sw.ms.id_664 tl.sw..._220 cs.sk.hu_664\n  // [0160]\n  0x19006614, 0x12004514, 0x2e003f08, 0x00004b2d,   // af.et..._660 sk.cs..._660 sw.sq..._430 az......_A00\n  0x24001a14, 0x40124513, 0x1e001d13, 0x4e003314,   // xxx.hi..._660 sk.cs.sl_665 hr.sr..._650 ur.fa..._660\n  0x03006602, 0x29002714, 0x18003f14, 0x01004302,   // af.nl..._220 id.ms..._660 sw.hu..._660 vi.en..._220\n  0x1d001e02, 0x2b001f23, 0x00001d0f, 0x06450307,   // sr.hr..._220 ga.cy..._880 hr......_600 nl.sk.de_432\n  // [0170]\n  0x06002709, 0x06001609, 0x45151607, 0x00008c06,   // id.de..._440 lt.de..._440 lt.lv.sk_432 ht......_400\n  0x0e1c2560, 0x0e001e14, 0x04002102, 0x1f002909,   // mk.bg.ru_664 sr.ru..._660 tl.fi..._220 ms.ga..._440\n  0x45002109, 0x45000209, 0x1e1c2502, 0x00001901,   // tl.sk..._440 da.sk..._440 mk.bg.sr_222 et......_200\n  0x66000321, 0x03001902, 0x22036609, 0x1c001e02,   // nl.af..._860 et.nl..._220 af.nl.tr_444 sr.bg..._220\n  // [0180]\n  0x22004b13, 0x00000d0f, 0x1e001d21, 0x24001a21,   // az.tr..._650 pt......_600 hr.sr..._860 xxx.hi..._860\n  0x25001e12, 0x03001813, 0x01001009, 0x18032e60,   // sr.mk..._640 hu.nl..._650 sv.en..._440 sq.nl.hu_664\n  0x374e33af, 0x2e002213, 0x66003a21, 0x40001214,   // ur.fa.ar_655 tr.sq..._650 eu.af..._860 cs.sl..._660\n  0x45431a02, 0x02006602, 0x00002b1c, 0x27006609,   // xxx.vi.sk_222 af.da..._220 cy......_800 af.id..._440\n  // [0190]\n  0x00000206, 0x06003809, 0x40128c08, 0x10000214,   // da......_400 ca.de..._440 ht.cs.sl_443 da.sv..._660\n  0x23000e12, 0x00001f2d, 0x16000513, 0x00000806,   // ru.uk..._640 ga......_A00 fr.lt..._650 it......_400\n  0x0000081c, 0x10002102, 0x4b002209, 0x5c000721,   // it......_800 tl.sv..._220 tr.az..._440 iw.yi..._860\n  0x0b660212, 0x1e002314, 0x0c3f06a4, 0x10002b09,   // da.af.no_654 uk.sr..._660 de.sw.pl_433 cy.sv..._440\n  // [01a0]\n  0x03066609, 0x03001e09, 0x00000606, 0x0000290f,   // af.de.nl_444 sr.nl..._440 de......_400 ms......_600\n  0x30002302, 0x0f192b11, 0x10000114, 0x1f001002,   // uk.be..._220 cy.et.es_653 en.sv..._660 sv.ga..._220\n  0x1d001e12, 0x40001521, 0x00008c0f, 0x00000e06,   // sr.hr..._640 lv.sl..._860 ht......_600 ru......_400\n  0x06000107, 0x4b002e02, 0x1e1d40af, 0x334e37af,   // en.de..._420 sq.az..._220 sl.hr.sr_655 ar.fa.ur_655\n  // [01b0]\n  0x3f190412, 0x19000409, 0x33004e09, 0x0000252d,   // fi.et.sw_654 fi.et..._440 fa.ur..._440 mk......_A00\n  0x19660408, 0x66000314, 0x66000b02, 0x33003712,   // fi.af.et_443 nl.af..._660 no.af..._220 ar.ur..._640\n  0x38001002, 0x19003814, 0x18000413, 0x03006613,   // sv.ca..._220 ca.et..._660 fi.hu..._650 af.nl..._650\n  0x42000814, 0x23002502, 0x1c000e23, 0x02001014,   // it.mt..._660 mk.uk..._220 ru.bg..._880 sv.da..._660\n  // [01c0]\n  0x1c001e14, 0x42001509, 0x04001913, 0x00006601,   // sr.bg..._660 lv.mt..._440 et.fi..._650 af......_200\n  0x10020b08, 0x00001506, 0x15000202, 0x0c451708,   // no.da.sv_443 lv......_400 da.lv..._220 ro.sk.pl_443\n  0x45001222, 0x10000b14, 0x45001214, 0x38000109,   // cs.sk..._870 no.sv..._660 cs.sk..._660 en.ca..._440\n  0x18000508, 0x1d001e23, 0x07005c12, 0x43001a09,   // fr.hu..._430 sr.hr..._880 yi.iw..._640 xxx.vi..._440\n  // [01d0]\n  0x01004309, 0x3f001702, 0x10000b22, 0x12211502,   // vi.en..._440 ro.sw..._220 no.sv..._870 lv.tl.cs_222\n  0x2b170109, 0x0000421c, 0x00006606, 0x3f000d14,   // en.ro.cy_444 mt......_800 af......_400 pt.sw..._660\n  0x4e373312, 0x0000401c, 0x1a004302, 0x0b001a14,   // ur.ar.fa_654 sl......_800 vi.xxx..._220 xxx.no..._660\n  0x45001212, 0x3f001a14, 0x42000609, 0x4b002212,   // cs.sk..._640 xxx.sw..._660 de.mt..._440 tr.az..._640\n  // [01e0]\n  0x0e001c14, 0x30002314, 0x10000b07, 0x02000b14,   // bg.ru..._660 uk.be..._660 no.sv..._420 no.da..._660\n  0x0e1c2507, 0x00001406, 0x18000509, 0x02000614,   // mk.bg.ru_432 is......_400 fr.hu..._440 de.da..._660\n  0x08003814, 0x1e230e08, 0x2b004009, 0x17004202,   // ca.it..._660 ru.uk.sr_443 sl.cy..._440 mt.ro..._220\n  0x08001813, 0x00001d06, 0x00001e06, 0x33004e22,   // hu.it..._650 hr......_400 sr......_400 fa.ur..._870\n  // [01f0]\n  0x02002209, 0x0b020812, 0x1e232512, 0x00004201,   // tr.da..._440 it.da.no_654 mk.uk.sr_654 mt......_200\n  0x14000802, 0x24001a13, 0x4b002223, 0x4e373313,   // it.is..._220 xxx.hi..._650 tr.az..._880 ur.ar.fa_665\n  0x5c000722, 0x0000251c, 0x33374e12, 0x0000231c,   // iw.yi..._870 mk......_800 fa.ar.ur_654 uk......_800\n  0x1e002514, 0x10001e02, 0x1e000e23, 0x30002313,   // mk.sr..._660 sr.sv..._220 ru.sr..._880 uk.be..._650\n  // [0200]\n  0x25001c23, 0x24001a23, 0x3f001a02, 0x00001001,   // bg.mk..._880 xxx.hi..._880 xxx.sw..._220 sv......_200\n  0x24001a12, 0x04001609, 0x45124211, 0x0000080f,   // xxx.hi..._640 lt.fi..._440 mt.cs.sk_653 it......_600\n  0x45001702, 0x00001d1c, 0x29004322, 0x1a001202,   // ro.sk..._220 hr......_800 vi.ms..._870 cs.xxx..._220\n  0x27002923, 0x22004509, 0x21002702, 0x01000309,   // ms.id..._880 sk.tr..._440 id.tl..._220 nl.en..._440\n  // [0210]\n  0x06001009, 0x00000f0f, 0x3f004313, 0x1e001d02,   // sv.de..._440 es......_600 vi.sw..._650 hr.sr..._220\n  0x40001723, 0x3a006614, 0x25001e02, 0x19003f09,   // ro.sl..._880 af.eu..._660 sr.mk..._220 sw.et..._440\n  0x14000614, 0x00000f1c, 0x14000b14, 0x03001f02,   // de.is..._660 es......_800 no.is..._660 ga.nl..._220\n  0x1d1e4009, 0x1d001e22, 0x0000041c, 0x06006609,   // sl.sr.hr_444 sr.hr..._870 fi......_800 af.de..._440\n  // [0220]\n  0x0b002e22, 0x2b003813, 0x03002102, 0x42001813,   // sq.no..._870 ca.cy..._650 tl.nl..._220 hu.mt..._650\n  0x0000121c, 0x15002102, 0x2e004212, 0x43171f55,   // cs......_800 tl.lv..._220 mt.sq..._640 ga.ro.vi_442\n  0x0e302308, 0x40001e14, 0x1c000e13, 0x00003a1c,   // uk.be.ru_443 sr.sl..._660 ru.bg..._650 eu......_800\n  0x02002b13, 0x01000214, 0x1d004209, 0x19272909,   // cy.da..._650 da.en..._660 mt.hr..._440 ms.id.et_444\n  // [0230]\n  0x230e30af, 0x140b0208, 0x00001806, 0x40004223,   // be.ru.uk_655 da.no.is_443 hu......_400 mt.sl..._880\n  0x04003a23, 0x45004014, 0x181d4208, 0x02216612,   // eu.fi..._880 sl.sk..._660 mt.hr.hu_443 af.tl.da_654\n  0x3a000109, 0x02001002, 0x0000270f, 0x42000314,   // en.eu..._440 sv.da..._220 id......_600 nl.mt..._660\n  0x37004e13, 0x06036614, 0x3a001914, 0x8c000514,   // fa.ar..._650 af.nl.de_666 et.eu..._660 fr.ht..._660\n  // [0240]\n  0x06000202, 0x33004e08, 0x1c000e14, 0x1e001d12,   // da.de..._220 fa.ur..._430 ru.bg..._660 hr.sr..._640\n  0x8c003f14, 0x23003014, 0x3f002b14, 0x00001d01,   // sw.ht..._660 be.uk..._660 cy.sw..._660 hr......_200\n  0x3f041a09, 0x05000f02, 0x00003342, 0x16124513,   // xxx.fi.sw_444 es.fr..._220 ur......_C00 sk.cs.lt_665\n  0x24001a22, 0x10002b13, 0x0d000823, 0x16004014,   // xxx.hi..._870 cy.sv..._650 it.pt..._880 sl.lt..._660\n  // [0250]\n  0x66000313, 0x0c004208, 0x0f002e02, 0x00004506,   // nl.af..._650 mt.pl..._430 sq.es..._220 sk......_400\n  0x16001a08, 0x1e004514, 0x0e001c02, 0x33374e08,   // xxx.lt..._430 sk.sr..._660 bg.ru..._220 fa.ar.ur_443\n  0x00003f01, 0x30230e13, 0x4e003312, 0x161e1d14,   // sw......_200 ru.uk.be_665 ur.fa..._640 hr.sr.lt_666\n  0x16001402, 0x0c004512, 0x1d002102, 0x25001e14,   // is.lt..._220 sk.pl..._640 tl.hr..._220 sr.mk..._660\n  // [0260]\n  0x01141aa4, 0x380d2b13, 0x45160202, 0x00008c1c,   // xxx.is.en_433 cy.pt.ca_665 da.lt.sk_222 ht......_800\n  0x0e002302, 0x00001c1c, 0x0c003a02, 0x0c001508,   // uk.ru..._220 bg......_800 eu.pl..._220 lv.pl..._430\n  0x451240a4, 0x30001e02, 0x21004509, 0x1c002514,   // sl.cs.sk_433 sr.be..._220 sk.tl..._440 mk.bg..._660\n  0x0000331c, 0x4b002208, 0x0c002b09, 0x400b1008,   // ur......_800 tr.az..._430 cy.pl..._440 sv.no.sl_443\n  // [0270]\n  0x06000302, 0x2b002109, 0x8c003a02, 0x16000114,   // nl.de..._220 tl.cy..._440 eu.ht..._220 en.lt..._660\n  0x19001013, 0x01000402, 0x22004b09, 0x19000302,   // sv.et..._650 fi.en..._220 az.tr..._440 nl.et..._220\n  0x1d218c07, 0x22004b14, 0x17000409, 0x0000200f,   // ht.tl.hr_432 az.tr..._660 fi.ro..._440 gl......_600\n  0x27212902, 0x22004b22, 0x27002922, 0x3f002108,   // ms.tl.id_222 az.tr..._870 ms.id..._870 tl.sw..._430\n  // [0280]\n  0x14001e02, 0x27002907, 0x42000813, 0x43002702,   // sr.is..._220 ms.id..._420 it.mt..._650 id.vi..._220\n  0x00002201, 0x0f000d09, 0x66000214, 0x02000609,   // tr......_200 pt.es..._440 da.af..._660 de.da..._440\n  0x00003a01, 0x38054508, 0x05000107, 0x1e2e1daf,   // eu......_200 sk.fr.ca_443 en.fr..._420 hr.sq.sr_655\n  0x0000051c, 0x18003a14, 0x4b002114, 0x4b0d3a02,   // fr......_800 eu.hu..._660 tl.az..._660 eu.pt.az_222\n  // [0290]\n  0x0f001913, 0x293f2712, 0x00000b1c, 0x38000522,   // et.es..._650 id.sw.ms_654 no......_800 fr.ca..._870\n  0x4b003f23, 0x401e1d14, 0x06000208, 0x04002714,   // sw.az..._880 hr.sr.sl_666 da.de..._430 id.fi..._660\n  0x29000508, 0x0f000509, 0x0f003814, 0x25002323,   // fr.ms..._430 fr.es..._440 ca.es..._660 uk.mk..._880\n  0x05000614, 0x0f000d14, 0x45220c12, 0x06456602,   // de.fr..._660 pt.es..._660 pl.tr.sk_654 af.sk.de_222\n  // [02a0]\n  0x38000f08, 0x66024012, 0x38050108, 0x06000d09,   // es.ca..._430 sl.da.af_654 en.fr.ca_443 pt.de..._440\n  0x05001714, 0x06003f22, 0x19001709, 0x25301e09,   // ro.fr..._660 sw.de..._870 ro.et..._440 sr.be.mk_444\n  0x25001e23, 0x45000202, 0x1e1d4008, 0x10006609,   // sr.mk..._880 da.sk..._220 sl.hr.sr_443 af.sv..._440\n  0x42003809, 0x43003802, 0x0000031c, 0x04000523,   // ca.mt..._440 ca.vi..._220 nl......_800 fr.fi..._880\n  // [02b0]\n  0x1e0e2502, 0x29000423, 0x1d404508, 0x1c002507,   // mk.ru.sr_222 fi.ms..._880 sk.sl.hr_443 mk.bg..._420\n  0x4b006602, 0x2e003f07, 0x05000b09, 0x0f000413,   // af.az..._220 sw.sq..._420 no.fr..._440 fi.es..._650\n  0x1e000e02, 0x22004b21, 0x22002e14, 0x40001814,   // ru.sr..._220 az.tr..._860 sq.tr..._660 hu.sl..._660\n  0x04051f12, 0x02004b02, 0x23003002, 0x1f003f13,   // ga.fr.fi_654 az.da..._220 be.uk..._220 sw.ga..._650\n  // [02c0]\n  0x42000b09, 0x45002902, 0x01000302, 0x151d1ea4,   // no.mt..._440 ms.sk..._220 nl.en..._220 sr.hr.lv_433\n  0x45050f02, 0x3f224ba4, 0x21001014, 0x22044b12,   // es.fr.sk_222 az.tr.sw_433 sv.tl..._660 az.fi.tr_654\n  0x15000409, 0x29000809, 0x66060107, 0x0f083a08,   // fi.lv..._440 it.ms..._440 en.de.af_432 eu.it.es_443\n  0x02000b23, 0x43000813, 0x121e1a02, 0x3a000808,   // no.da..._880 it.vi..._650 xxx.sr.cs_222 it.eu..._430\n  // [02d0]\n  0x05003802, 0x22001a09, 0x1a002421, 0x0e002313,   // ca.fr..._220 xxx.tr..._440 hi.xxx..._860 uk.ru..._650\n  0x00004301, 0x00000d1c, 0x223a42a4, 0x1e081d02,   // vi......_200 pt......_800 mt.eu.tr_433 hr.it.sr_222\n  0x14000202, 0x1c003012, 0x43002708, 0x40001d14,   // da.is..._220 be.bg..._640 id.vi..._430 hr.sl..._660\n  0x00001c06, 0x230e1caf, 0x22004502, 0x19184208,   // bg......_400 bg.ru.uk_655 sk.tr..._220 mt.hu.et_443\n  // [02e0]\n  0x1e0f1d02, 0x10000b09, 0x0f002909, 0x14100209,   // hr.es.sr_222 no.sv..._440 ms.es..._440 da.sv.is_444\n  0x40000809, 0x10000802, 0x1f0c3a08, 0x02001009,   // it.sl..._440 it.sv..._220 eu.pl.ga_443 sv.da..._440\n  0x04000b08, 0x23001e02, 0x1e002509, 0x16003a09,   // no.fi..._430 sr.uk..._220 mk.sr..._440 eu.lt..._440\n  0x0f001009, 0x12000109, 0x02004309, 0x2b002909,   // sv.es..._440 en.cs..._440 vi.da..._440 ms.cy..._440\n  // [02f0]\n  0x23003022, 0x2b000109, 0x8c0c3fa4, 0x3a002908,   // be.uk..._870 en.cy..._440 sw.pl.ht_433 ms.eu..._430\n  0x1a002423, 0x3a002002, 0x04003a13, 0x1f181460,   // hi.xxx..._880 gl.eu..._220 eu.fi..._650 is.hu.ga_664\n  0x1e001608, 0x12000f09, 0x06001809, 0x1a002422,   // lt.sr..._430 es.cs..._440 hu.de..._440 hi.xxx..._870\n  0x1e003a08, 0x33004e13, 0x202e0f07, 0x15000c13,   // eu.sr..._430 fa.ur..._650 es.sq.gl_432 pl.lv..._650\n  // [0300]\n  0x01002702, 0x0b101460, 0x06000209, 0x0c003a09,   // id.en..._220 is.sv.no_664 da.de..._440 eu.pl..._440\n  0x0b000614, 0x0c004002, 0x02001508, 0x3a002e14,   // de.no..._660 sl.pl..._220 lv.da..._430 sq.eu..._660\n  0x04004509, 0x1a002414, 0x05000123, 0x15001622,   // sk.fi..._440 hi.xxx..._660 en.fr..._880 lt.lv..._870\n  0x29002b14, 0x00002306, 0x14000b02, 0x210b0212,   // cy.ms..._660 uk......_400 no.is..._220 da.no.tl_654\n  // [0310]\n  0x19004213, 0x1a001702, 0x42004b13, 0x18004202,   // mt.et..._650 ro.xxx..._220 az.mt..._650 mt.hu..._220\n  0x2e001714, 0x04003a02, 0x24001a09, 0x1d3f1702,   // ro.sq..._660 eu.fi..._220 xxx.hi..._440 ro.sw.hr_222\n  0x33374eaf, 0x01002102, 0x2e001709, 0x1e1c2512,   // fa.ar.ur_655 tl.en..._220 ro.sq..._440 mk.bg.sr_654\n  0x42001f09, 0x33374e13, 0x01001809, 0x40124560,   // ga.mt..._440 fa.ar.ur_665 hu.en..._440 sk.cs.sl_664\n  // [0320]\n  0x18001e02, 0x18004502, 0x0b000109, 0x2e0c17af,   // sr.hu..._220 sk.hu..._220 en.no..._440 ro.pl.sq_655\n  0x12014502, 0x0d000f02, 0x250e1c55, 0x18001f09,   // sk.en.cs_222 es.pt..._220 bg.ru.mk_442 ga.hu..._440\n  0x66000308, 0x04002909, 0x03662b12, 0x1a002b08,   // nl.af..._430 ms.fi..._440 cy.af.nl_654 cy.xxx..._430\n  0x05000109, 0x1c0e1e14, 0x10000209, 0x18124508,   // en.fr..._440 sr.ru.bg_666 da.sv..._440 sk.cs.hu_443\n  // [0330]\n  0x1a430302, 0x1c251e09, 0x14001002, 0x06001802,   // nl.vi.xxx_222 sr.mk.bg_444 sv.is..._220 hu.de..._220\n  0x22006602, 0x0d000109, 0x66002102, 0x18004214,   // af.tr..._220 en.pt..._440 tl.af..._220 mt.hu..._660\n  0x1e1d38a4, 0x1a000114, 0x3a0d0b07, 0x27002902,   // ca.hr.sr_433 en.xxx..._660 no.pt.eu_432 ms.id..._220\n  0x1e1c25af, 0x02001023, 0x29270b07, 0x45003802,   // mk.bg.sr_655 sv.da..._880 no.id.ms_432 ca.sk..._220\n  // [0340]\n  0x1e401d02, 0x12008c09, 0x45000609, 0x0000661c,   // hr.sl.sr_222 ht.cs..._440 de.sk..._440 af......_800\n  0x45001812, 0x66020107, 0x14021009, 0x45003a14,   // hu.sk..._640 en.da.af_432 sv.da.is_444 eu.sk..._660\n  0x38000209, 0x380d4b08, 0x1f002102, 0x0e002509,   // da.ca..._440 az.pt.ca_443 tl.ga..._220 mk.ru..._440\n  0x2b002723, 0x293a2709, 0x5c000711, 0x22002123,   // id.cy..._880 id.eu.ms_444 iw.yi..._630 tl.tr..._880\n  // [0350]\n  0x4b002e09, 0x03002714, 0x19002708, 0x18000513,   // sq.az..._440 id.nl..._660 id.et..._430 fr.hu..._650\n  0x66000522, 0x4e333713, 0x1c300e08, 0x29002214,   // fr.af..._870 ar.ur.fa_665 ru.be.bg_443 tr.ms..._660\n  0x3a000409, 0x0000142d, 0x22000608, 0x374e3360,   // fi.eu..._440 is......_A00 de.tr..._430 ur.fa.ar_664\n  0x19224bb4, 0x12002014, 0x3f001f09, 0x1d001009,   // az.tr.et_754 gl.cs..._660 ga.sw..._440 sv.hr..._440\n  // [0360]\n  0x4b220608, 0x27004302, 0x29002209, 0x1e001d22,   // de.tr.az_443 vi.id..._220 tr.ms..._440 hr.sr..._870\n  0x23001c02, 0x00001a2d, 0x0c004507, 0x02660312,   // bg.uk..._220 xxx......_A00 sk.pl..._420 nl.af.da_654\n  0x19000423, 0x1e232509, 0x1e121d02, 0x3f002114,   // fi.et..._880 mk.uk.sr_444 hr.cs.sr_222 tl.sw..._660\n  0x06004b13, 0x37334e11, 0x17000807, 0x40002e14,   // az.de..._650 fa.ur.ar_653 it.ro..._420 sq.sl..._660\n  // [0370]\n  0x1d000509, 0x45051208, 0x06012ea4, 0x0e002323,   // fr.hr..._440 cs.fr.sk_443 sq.en.de_433 uk.ru..._880\n  0x02000b07, 0x08001702, 0x03000b09, 0x8c000d14,   // no.da..._420 ro.it..._220 no.nl..._440 pt.ht..._660\n  0x0b000223, 0x4e003712, 0x1e004002, 0x1d1e1207,   // da.no..._880 ar.fa..._640 sl.sr..._220 cs.sr.hr_432\n  0x02081708, 0x14006614, 0x1d001e14, 0x06006602,   // ro.it.da_443 af.is..._660 sr.hr..._660 af.de..._220\n  // [0380]\n  0x4e003714, 0x40008c14, 0x17000302, 0x0b000802,   // ar.fa..._660 ht.sl..._660 nl.ro..._220 it.no..._220\n  0x27662907, 0x12180f07, 0x01000d02, 0x12004502,   // ms.af.id_432 es.hu.cs_432 pt.en..._220 sk.cs..._220\n  0x45000114, 0x37003308, 0x161d15a4, 0x08060b07,   // en.sk..._660 ur.ar..._430 lv.hr.lt_433 no.de.it_432\n  0x22004b23, 0x8c000814, 0x05000f09, 0x1f000107,   // az.tr..._880 it.ht..._660 es.fr..._440 en.ga..._420\n  // [0390]\n  0x0000271c, 0x1d001609, 0x450c1260, 0x06100109,   // id......_800 lt.hr..._440 cs.pl.sk_664 en.sv.de_444\n  0x15160b09, 0x12450c02, 0x06221808, 0x03002909,   // no.lt.lv_444 pl.sk.cs_222 hu.tr.de_443 ms.nl..._440\n  0x660f0113, 0x1f001209, 0x19002e08, 0x450c1202,   // en.es.af_665 cs.ga..._440 sq.et..._430 cs.pl.sk_222\n  0x18450f14, 0x4e373360, 0x10001923, 0x0b000107,   // es.sk.hu_666 ur.ar.fa_664 et.sv..._880 en.no..._420\n  // [03a0]\n  0x210b0da4, 0x06000109, 0x06001012, 0x14004309,   // pt.no.tl_433 en.de..._440 sv.de..._640 vi.is..._440\n  0x2b000502, 0x04004313, 0x45000323, 0x02190ba4,   // fr.cy..._220 vi.fi..._650 nl.sk..._880 no.et.da_433\n  0x66000623, 0x10000614, 0x04061008, 0x37003313,   // de.af..._880 de.sv..._660 sv.de.fi_443 ur.ar..._650\n  0x2e001012, 0x43000d09, 0x22000602, 0x19001014,   // sv.sq..._640 pt.vi..._440 de.tr..._220 sv.et..._660\n  // [03b0]\n  0x29002102, 0x10000b08, 0x0c004209, 0x1f000302,   // tl.ms..._220 no.sv..._430 mt.pl..._440 nl.ga..._220\n  0x02001402, 0x18004514, 0x04001914, 0x660204af,   // is.da..._220 sk.hu..._660 et.fi..._660 fi.da.af_655\n  0x14100b13, 0x043a1a13, 0x02002902, 0x42008c23,   // no.sv.is_665 xxx.eu.fi_665 ms.da..._220 ht.mt..._880\n  0x1f000f14, 0x0b021014, 0x02000502, 0x29273f02,   // es.ga..._660 sv.da.no_666 fr.da..._220 sw.id.ms_222\n  // [03c0]\n  0x0e231e13, 0x380f0107, 0x18001402, 0x06002e23,   // sr.uk.ru_665 en.es.ca_432 is.hu..._220 sq.de..._880\n  0x2e004523, 0x08002b02, 0x45001914, 0x0d001714,   // sk.sq..._880 cy.it..._220 et.sk..._660 ro.pt..._660\n  0x30000e23, 0x45001602, 0x01004314, 0x06000f09,   // ru.be..._880 lt.sk..._220 vi.en..._660 es.de..._440\n  0x1a001009, 0x03002b02, 0x10000102, 0x19000102,   // sv.xxx..._440 cy.nl..._220 en.sv..._220 en.et..._220\n  // [03d0]\n  0x14002b02, 0x38000d02, 0x08002102, 0x2b003a02,   // cy.is..._220 pt.ca..._220 tl.it..._220 eu.cy..._220\n  0x22002e23, 0x05003823, 0x374e3309, 0x0000241c,   // sq.tr..._880 ca.fr..._880 ur.fa.ar_444 hi......_800\n  0x19002108, 0x37003309, 0x42001423, 0x38000107,   // tl.et..._430 ur.ar..._440 is.mt..._880 en.ca..._420\n  0x25001c22, 0x1d002114, 0x0c000614, 0x14001f12,   // bg.mk..._870 tl.hr..._660 de.pl..._660 ga.is..._640\n  // [03e0]\n  0x25003002, 0x06001909, 0x05000802, 0x0b001409,   // be.mk..._220 et.de..._440 it.fr..._220 is.no..._440\n  0x05001423, 0x43002109, 0x33374e09, 0x1f002e09,   // is.fr..._880 tl.vi..._440 fa.ar.ur_444 sq.ga..._440\n  0x30002312, 0x40000c23, 0x42002114, 0x05008c14,   // uk.be..._640 pl.sl..._880 tl.mt..._660 ht.fr..._660\n  0x37004e12, 0x14001014, 0x45151602, 0x3f000109,   // fa.ar..._640 sv.is..._660 lt.lv.sk_222 en.sw..._440\n  // [03f0]\n  0x18000d13, 0x18001002, 0x19002914, 0x1e002523,   // pt.hu..._650 sv.hu..._220 ms.et..._660 mk.sr..._880\n  0x0e251e60, 0x102e0408, 0x1c003013, 0x18004023,   // sr.mk.ru_664 fi.sq.sv_443 be.bg..._650 sl.hu..._880\n  0x0c171208, 0x03020b09, 0x0b001402, 0x14002214,   // cs.ro.pl_443 no.da.nl_444 is.no..._220 tr.is..._660\n  0x02001902, 0x45000f02, 0x29224b02, 0x04272913,   // et.da..._220 es.sk..._220 az.tr.ms_222 ms.id.fi_665\n\n  // [0400]\n  0x17084209, 0x0e001c12, 0x38224b11, 0x01004509,   // mt.it.ro_444 bg.ru..._640 az.tr.ca_653 sk.en..._440\n  0x00000e01, 0x1a004309, 0x291a0107, 0x23001e14,   // ru......_200 vi.xxx..._440 en.xxx.ms_432 sr.uk..._660\n  0x05002e12, 0x42000822, 0x2e000514, 0x22001922,   // sq.fr..._640 it.mt..._870 fr.sq..._660 et.tr..._870\n  0x3f002e12, 0x121d4502, 0x10004014, 0x03006608,   // sq.sw..._640 sk.hr.cs_222 sl.sv..._660 af.nl..._430\n  // [0410]\n  0x12004507, 0x38003a23, 0x08001714, 0x15000513,   // sk.cs..._420 eu.ca..._880 ro.it..._660 fr.lv..._650\n  0x00004b0a, 0x271e1d02, 0x16003f02, 0x1d1e2ea4,   // az......_500 hr.sr.id_222 sw.lt..._220 sq.sr.hr_433\n  0x3f004208, 0x08001609, 0x451d1e02, 0x21001f22,   // mt.sw..._430 lt.it..._440 sr.hr.sk_222 ga.tl..._870\n  0x10001821, 0x01003802, 0x0d001e02, 0x23000e14,   // hu.sv..._860 ca.en..._220 sr.pt..._220 ru.uk..._660\n  // [0420]\n  0x08001709, 0x1d124511, 0x17124560, 0x0e002512,   // ro.it..._440 sk.cs.hr_653 sk.cs.ro_664 mk.ru..._640\n  0x18224b12, 0x0e233013, 0x334e3712, 0x1a002914,   // az.tr.hu_654 be.uk.ru_665 ar.fa.ur_654 ms.xxx..._660\n  0x12004523, 0x18001614, 0x22008c08, 0x04001921,   // sk.cs..._880 lt.hu..._660 ht.tr..._430 et.fi..._860\n  0x16000414, 0x08001814, 0x0c001202, 0x1f003814,   // fi.lt..._660 hu.it..._660 cs.pl..._220 ca.ga..._660\n  // [0430]\n  0x012b2108, 0x37004e11, 0x8c211655, 0x06002702,   // tl.cy.en_443 fa.ar..._630 lt.tl.ht_442 id.de..._220\n  0x06036608, 0x2b002102, 0x01006609, 0x230e1e08,   // af.nl.de_443 tl.cy..._220 af.en..._440 sr.ru.uk_443\n  0x43000812, 0x37004e09, 0x04001008, 0x19100411,   // it.vi..._640 fa.ar..._440 sv.fi..._430 fi.sv.et_653\n  0x1e003809, 0x2e004214, 0x02000b13, 0x12002e02,   // ca.sr..._440 mt.sq..._660 no.da..._650 sq.cs..._220\n  // [0440]\n  0x2e000609, 0x0e1c2513, 0x15000802, 0x14001908,   // de.sq..._440 mk.bg.ru_665 it.lv..._220 et.is..._430\n  0x04000612, 0x37334e09, 0x380d0fa4, 0x4e373311,   // de.fi..._640 fa.ur.ar_444 es.pt.ca_433 ur.ar.fa_653\n  0x66030412, 0x0b003a02, 0x66003a09, 0x251c1e09,   // fi.nl.af_654 eu.no..._220 eu.af..._440 sr.bg.mk_444\n  0x12454202, 0x12454314, 0x19000402, 0x10020b14,   // mt.sk.cs_222 vi.sk.cs_666 fi.et..._220 no.da.sv_666\n  // [0450]\n  0x0c004009, 0x23003013, 0x5c000723, 0x22003f14,   // sl.pl..._440 be.uk..._650 iw.yi..._880 sw.tr..._660\n  0x23300e13, 0x3f006609, 0x01668c02, 0x23002513,   // ru.be.uk_665 af.sw..._440 ht.af.en_222 mk.uk..._650\n  0x451218a4, 0x3a003f02, 0x0e003022, 0x0d0f3814,   // hu.cs.sk_433 sw.eu..._220 be.ru..._870 ca.es.pt_666\n  0x27451602, 0x16004202, 0x00001e2d, 0x04002e14,   // lt.sk.id_222 mt.lt..._220 sr......_A00 sq.fi..._660\n  // [0460]\n  0x10002702, 0x18002902, 0x45002b02, 0x03003823,   // id.sv..._220 ms.hu..._220 cy.sk..._220 ca.nl..._880\n  0x334e3760, 0x40004514, 0x451e1d02, 0x1e1c2508,   // ar.fa.ur_664 sk.sl..._660 hr.sr.sk_222 mk.bg.sr_443\n  0x17272907, 0x04124513, 0x66000302, 0x0c3f8ca4,   // ms.id.ro_432 sk.cs.fi_665 nl.af..._220 ht.sw.pl_433\n  0x0e001c22, 0x2b001608, 0x16000109, 0x124504a4,   // bg.ru..._870 lt.cy..._430 en.lt..._440 fi.sk.cs_433\n  // [0470]\n  0x40008c09, 0x12004509, 0x1a000109, 0x14000c09,   // ht.sl..._440 sk.cs..._440 en.xxx..._440 pl.is..._440\n  0x3a000623, 0x29002707, 0x07005c21, 0x22004b12,   // de.eu..._880 id.ms..._420 yi.iw..._860 az.tr..._640\n  0x1c002509, 0x0b001009, 0x2b000c14, 0x1a003f08,   // mk.bg..._440 sv.no..._440 pl.cy..._660 sw.xxx..._430\n  0x12451d02, 0x1c0e2513, 0x211a2909, 0x4b002222,   // hr.sk.cs_222 mk.ru.bg_665 ms.xxx.tl_444 tr.az..._870\n  // [0480]\n  0x21004523, 0x4b220109, 0x45011260, 0x22000b09,   // sk.tl..._880 en.tr.az_444 cs.en.sk_664 no.tr..._440\n  0x190416a4, 0x42001502, 0x02220b07, 0x29002109,   // lt.fi.et_433 lv.mt..._220 no.tr.da_432 tl.ms..._440\n  0x08008c23, 0x0d000f14, 0x00002e2d, 0x3a202207,   // ht.it..._880 es.pt..._660 sq......_A00 tr.gl.eu_432\n  0x17001f02, 0x05004514, 0x06001214, 0x17001914,   // ga.ro..._220 sk.fr..._660 cs.de..._660 et.ro..._660\n  // [0490]\n  0x1d1e0107, 0x0d170109, 0x02001422, 0x03003a14,   // en.sr.hr_432 en.ro.pt_444 is.da..._870 eu.nl..._660\n  0x08001a09, 0x10000622, 0x1d021e02, 0x3a4b2260,   // xxx.it..._440 de.sv..._870 sr.da.hr_222 tr.az.eu_664\n  0x1a000107, 0x3a3f1a14, 0x0000201c, 0x66000323,   // en.xxx..._420 xxx.sw.eu_666 gl......_800 nl.af..._880\n  0x1e451d02, 0x4b002202, 0x42004509, 0x3a4b2208,   // hr.sk.sr_222 tr.az..._220 sk.mt..._440 tr.az.eu_443\n  // [04a0]\n  0x3a002214, 0x1a002223, 0x16002b13, 0x1e1d4507,   // tr.eu..._660 tr.xxx..._880 cy.lt..._650 sk.hr.sr_432\n  0x1e021002, 0x00001601, 0x0f002223, 0x1d1e3a02,   // sv.da.sr_222 lt......_200 tr.es..._880 eu.sr.hr_222\n  0x3a000f13, 0x1d1e4507, 0x27001709, 0x22000d07,   // es.eu..._650 sk.sr.hr_432 ro.id..._440 pt.tr..._420\n  0x0e002307, 0x1f000508, 0x3a002012, 0x0e003023,   // uk.ru..._420 fr.ga..._430 gl.eu..._640 be.ru..._880\n  // [04b0]\n  0x101d4009, 0x37004e08, 0x06000b14, 0x1a000202,   // sl.hr.sv_444 fa.ar..._430 no.de..._660 da.xxx..._220\n  0x17000814, 0x1e230e60, 0x1e0e1c02, 0x01001a07,   // it.ro..._660 ru.uk.sr_664 bg.ru.sr_222 xxx.en..._420\n  0x08001209, 0x38000814, 0x15160109, 0x12004513,   // cs.it..._440 it.ca..._660 en.lt.lv_444 sk.cs..._650\n  0x0d001f09, 0x0000381c, 0x29002709, 0x0f002b14,   // ga.pt..._440 ca......_800 id.ms..._440 cy.es..._660\n  // [04c0]\n  0x3f002b09, 0x05002b02, 0x22000823, 0x22292707,   // cy.sw..._440 cy.fr..._220 it.tr..._880 id.ms.tr_432\n  0x0c001a09, 0x0f036608, 0x1d000802, 0x42002902,   // xxx.pl..._440 af.nl.es_443 it.hr..._220 ms.mt..._220\n  0x1d124502, 0x18004b09, 0x04000613, 0x27002914,   // sk.cs.hr_222 az.hu..._440 de.fi..._650 ms.id..._660\n  0x1f030612, 0x22008c14, 0x06001008, 0x1e251ca4,   // de.nl.ga_654 ht.tr..._660 sv.de..._430 bg.mk.sr_433\n  // [04d0]\n  0x0c001902, 0x66001009, 0x01004502, 0x10000b02,   // et.pl..._220 sv.af..._440 sk.en..._220 no.sv..._220\n  0x29002702, 0x3f001d23, 0x063a6614, 0x10000223,   // id.ms..._220 hr.sw..._880 af.eu.de_666 da.sv..._880\n  0x66001814, 0x12450109, 0x24001a20, 0x2b002214,   // hu.af..._660 en.sk.cs_444 xxx.hi..._850 tr.cy..._660\n  0x16002b09, 0x230e1c08, 0x3a000f09, 0x1f001a09,   // cy.lt..._440 bg.ru.uk_443 es.eu..._440 xxx.ga..._440\n  // [04e0]\n  0x10060412, 0x4e003321, 0x29001a02, 0x27291702,   // fi.de.sv_654 ur.fa..._860 xxx.ms..._220 ro.ms.id_222\n  0x06660308, 0x03000623, 0x1a002909, 0x00001801,   // nl.af.de_443 de.nl..._880 ms.xxx..._440 hu......_200\n  0x37334e60, 0x43002709, 0x1f002e14, 0x1e001d09,   // fa.ur.ar_664 id.vi..._440 sq.ga..._660 hr.sr..._440\n  0x04000608, 0x0d001f11, 0x04001022, 0x1c0e2314,   // de.fi..._430 ga.pt..._630 sv.fi..._870 uk.ru.bg_666\n  // [04f0]\n  0x1f050109, 0x231c0eaf, 0x06001409, 0x3a000f02,   // en.fr.ga_444 ru.bg.uk_655 is.de..._440 es.eu..._220\n  0x17003a02, 0x17002714, 0x380f0da4, 0x3a172e09,   // eu.ro..._220 id.ro..._660 pt.es.ca_433 sq.ro.eu_444\n  0x3a001714, 0x1e1c2514, 0x29002722, 0x02000602,   // ro.eu..._660 mk.bg.sr_666 id.ms..._870 de.da..._220\n  0x451e40a4, 0x04006609, 0x16001913, 0x04003f23,   // sl.sr.sk_433 af.fi..._440 et.lt..._650 sw.fi..._880\n  // [0500]\n  0x0e302313, 0x1d006602, 0x45120b07, 0x21003f02,   // uk.be.ru_665 af.hr..._220 no.cs.sk_432 sw.tl..._220\n  0x21002902, 0x16001e08, 0x06036609, 0x3a001722,   // ms.tl..._220 sr.lt..._430 af.nl.de_444 ro.eu..._870\n  0x213f0da4, 0x3f008c14, 0x0f001714, 0x0f380d08,   // pt.sw.tl_433 ht.sw..._660 ro.es..._660 pt.ca.es_443\n  0x3f006602, 0x06001913, 0x1d3f4002, 0x1d004009,   // af.sw..._220 et.de..._650 sl.sw.hr_222 sl.hr..._440\n  // [0510]\n  0x04001012, 0x0d000409, 0x29451a02, 0x29001914,   // sv.fi..._640 fi.pt..._440 xxx.sk.ms_222 et.ms..._660\n  0x1d401207, 0x19002709, 0x18000409, 0x1c002502,   // cs.sl.hr_432 id.et..._440 fi.hu..._440 mk.bg..._220\n  0x3f002914, 0x0c002e09, 0x1e1d2907, 0x08000109,   // ms.sw..._660 sq.pl..._440 ms.hr.sr_432 en.it..._440\n  0x1f001914, 0x10000623, 0x0c003f12, 0x251c0e08,   // et.ga..._660 de.sv..._880 sw.pl..._640 ru.bg.mk_443\n  // [0520]\n  0x0f008c13, 0x1d001e08, 0x1d178c02, 0x3f001d14,   // ht.es..._650 sr.hr..._430 ht.ro.hr_222 hr.sw..._660\n  0x1f0f2ba4, 0x29142102, 0x3f004213, 0x45121014,   // cy.es.ga_433 tl.is.ms_222 mt.sw..._650 sv.cs.sk_666\n  0x12000c02, 0x06660209, 0x0d0f3802, 0x0c006608,   // pl.cs..._220 da.af.de_444 ca.es.pt_222 af.pl..._430\n  0x16151908, 0x0f380daf, 0x16001f23, 0x07005c20,   // et.lv.lt_443 pt.ca.es_655 ga.lt..._880 yi.iw..._850\n  // [0530]\n  0x40001622, 0x1f000114, 0x27042b08, 0x1f211912,   // lt.sl..._870 en.ga..._660 cy.fi.id_443 et.tl.ga_654\n  0x251c0ea4, 0x19000b21, 0x10001722, 0x27002b09,   // ru.bg.mk_433 no.et..._860 ro.sv..._870 cy.id..._440\n  0x10001413, 0x660b0309, 0x401d16af, 0x8c000614,   // is.sv..._650 nl.no.af_444 lt.hr.sl_655 de.ht..._660\n  0x1c002522, 0x10000608, 0x38000523, 0x231c0e14,   // mk.bg..._870 de.sv..._430 fr.ca..._880 ru.bg.uk_666\n  // [0540]\n  0x0c161a12, 0x01001a02, 0x16000b02, 0x1a004b14,   // xxx.lt.pl_654 xxx.en..._220 no.lt..._220 az.xxx..._660\n  0x00002b01, 0x25001e09, 0x060366a4, 0x43000512,   // cy......_200 sr.mk..._440 af.nl.de_433 fr.vi..._640\n  0x06002109, 0x05000114, 0x18008c13, 0x45000d12,   // tl.de..._440 en.fr..._660 ht.hu..._650 pt.sk..._640\n  0x03006607, 0x23000e07, 0x06000309, 0x42000802,   // af.nl..._420 ru.uk..._420 nl.de..._440 it.mt..._220\n  // [0550]\n  0x1d151602, 0x0000302d, 0x27001923, 0x3a000f08,   // lt.lv.hr_222 be......_A00 et.id..._880 es.eu..._430\n  0x2b003f02, 0x0f000802, 0x16000f13, 0x27003f02,   // sw.cy..._220 it.es..._220 es.lt..._650 sw.id..._220\n  0x37004e21, 0x43000d08, 0x1d1e4502, 0x3f002213,   // fa.ar..._860 pt.vi..._430 sk.sr.hr_222 tr.sw..._650\n  0x1d1e3aa4, 0x1e008c09, 0x16001a09, 0x04006602,   // eu.sr.hr_433 ht.sr..._440 xxx.lt..._440 af.fi..._220\n  // [0560]\n  0x19002209, 0x14224255, 0x2b004223, 0x22002709,   // tr.et..._440 mt.tr.is_442 mt.cy..._880 id.tr..._440\n  0x274b2212, 0x4b082214, 0x4b002b02, 0x14421209,   // tr.az.id_654 tr.it.az_666 cy.az..._220 cs.mt.is_444\n  0x0b000308, 0x1a003a02, 0x42002b22, 0x38000f13,   // nl.no..._430 eu.xxx..._220 cy.mt..._870 es.ca..._650\n  0x42001902, 0x14002b14, 0x06002223, 0x1f001414,   // et.mt..._220 cy.is..._660 tr.de..._880 is.ga..._660\n  // [0570]\n  0x3a000209, 0x42001714, 0x3f002714, 0x12000107,   // da.eu..._440 ro.mt..._660 id.sw..._660 en.cs..._420\n  0x3f002723, 0x3a200107, 0x20000d02, 0x3a000622,   // id.sw..._880 en.gl.eu_432 pt.gl..._220 de.eu..._870\n  0x0c001207, 0x42001708, 0x401d1209, 0x42000d02,   // cs.pl..._420 ro.mt..._430 cs.hr.sl_444 pt.mt..._220\n  0x451d1e08, 0x4e003722, 0x22004202, 0x1f0c3808,   // sr.hr.sk_443 ar.fa..._870 mt.tr..._220 ca.pl.ga_443\n  // [0580]\n  0x0000152d, 0x230e1c09, 0x171d1ea4, 0x1d004b02,   // lv......_A00 bg.ru.uk_444 sr.hr.ro_433 az.hr..._220\n  0x1f003802, 0x17000109, 0x1a063f08, 0x1d171e09,   // ca.ga..._220 en.ro..._440 sw.de.xxx_443 sr.ro.hr_444\n  0x1d291e02, 0x251c0e13, 0x01000f14, 0x0f001709,   // sr.ms.hr_222 ru.bg.mk_665 es.en..._660 ro.es..._440\n  0x1c0e2307, 0x1e230e12, 0x231c0e08, 0x1e002323,   // uk.ru.bg_432 ru.uk.sr_654 ru.bg.uk_443 uk.sr..._880\n  // [0590]\n  0x1a000c14, 0x29212e02, 0x18001f07, 0x0b001422,   // pl.xxx..._660 sq.tl.ms_222 ga.hu..._420 is.no..._870\n  0x25002302, 0x0e251ca4, 0x27290b07, 0x036606a4,   // uk.mk..._220 bg.mk.ru_433 no.ms.id_432 de.af.nl_433\n  0x45000613, 0x03003a02, 0x08003802, 0x03000613,   // de.sk..._650 eu.nl..._220 ca.it..._220 de.nl..._650\n  0x06001202, 0x02660b07, 0x0d001902, 0x04001002,   // cs.de..._220 no.af.da_432 et.pt..._220 sv.fi..._220\n  // [05a0]\n  0x15001609, 0x19001a08, 0x12450102, 0x0f001412,   // lt.lv..._440 xxx.et..._430 en.sk.cs_222 is.es..._640\n  0x1e003023, 0x1e251c09, 0x66000202, 0x0e251c14,   // be.sr..._880 bg.mk.sr_444 da.af..._220 bg.mk.ru_666\n  0x3f000114, 0x12450107, 0x38003a09, 0x00004003,   // en.sw..._660 en.sk.cs_432 eu.ca..._440 sl......_300\n  0x45000102, 0x0b001002, 0x45002702, 0x01000602,   // en.sk..._220 sv.no..._220 id.sk..._220 de.en..._220\n  // [05b0]\n  0x124501a4, 0x1f0b0213, 0x08004211, 0x38003a12,   // en.sk.cs_433 da.no.ga_665 mt.it..._630 eu.ca..._640\n  0x10000602, 0x0e251c08, 0x1d1e1a02, 0x0b000214,   // de.sv..._220 bg.mk.ru_443 xxx.sr.hr_222 da.no..._660\n  0x23003012, 0x1d161e07, 0x02000b22, 0x0e001c07,   // be.uk..._640 sr.lt.hr_432 no.da..._870 bg.ru..._420\n  0x20000d14, 0x1d001a02, 0x30251e08, 0x2e121a09,   // pt.gl..._660 xxx.hr..._220 sr.mk.be_443 xxx.cs.sq_444\n  // [05c0]\n  0x1c232560, 0x0b021060, 0x66031009, 0x0d058c5e,   // mk.uk.bg_664 sv.da.no_664 sv.nl.af_444 ht.fr.pt_652\n  0x42000613, 0x121e1d02, 0x03000614, 0x23000e21,   // de.mt..._650 hr.sr.cs_222 de.nl..._660 ru.uk..._860\n  0x0b001423, 0x40000c14, 0x2b000623, 0x02100b14,   // is.no..._880 pl.sl..._660 de.cy..._880 no.sv.da_666\n  0x0b021012, 0x27002908, 0x10001423, 0x14003a14,   // sv.da.no_654 ms.id..._430 is.sv..._880 eu.is..._660\n  // [05d0]\n  0x03000107, 0x14000b23, 0x45001202, 0x0000082d,   // en.nl..._420 no.is..._880 cs.sk..._220 it......_A00\n  0x4e373314, 0x02000b02, 0x08001414, 0x1f000b09,   // ur.ar.fa_666 no.da..._220 is.it..._660 no.ga..._440\n  0x01004214, 0x66001207, 0x19000602, 0x0c2e4509,   // mt.en..._660 cs.af..._420 de.et..._220 sk.sq.pl_444\n  0x1a036612, 0x8c004509, 0x14000602, 0x0b000221,   // af.nl.xxx_654 sk.ht..._440 de.is..._220 da.no..._860\n  // [05e0]\n  0x04001909, 0x0c004502, 0x0d004523, 0x0b004014,   // et.fi..._440 sk.pl..._220 sk.pt..._880 sl.no..._660\n  0x1a190402, 0x14003a09, 0x43008c02, 0x0f3a20af,   // fi.et.xxx_222 eu.is..._440 ht.vi..._220 gl.eu.es_655\n  0x1d404507, 0x14000613, 0x17001614, 0x06008c09,   // sk.sl.hr_432 de.is..._650 lt.ro..._660 ht.de..._440\n  0x0000022d, 0x14000b07, 0x18001413, 0x450d1202,   // da......_A00 no.is..._420 is.hu..._650 cs.pt.sk_222\n  // [05f0]\n  0x01000f02, 0x05228caf, 0x03000514, 0x33374e60,   // es.en..._220 ht.tr.fr_655 fr.nl..._660 fa.ar.ur_664\n  0x0f001f12, 0x8c4b2260, 0x25001c13, 0x17003814,   // ga.es..._640 tr.az.ht_664 bg.mk..._650 ca.ro..._660\n  0x45041602, 0x1e1d2202, 0x1d001e13, 0x22002723,   // lt.fi.sk_222 tr.hr.sr_222 sr.hr..._650 id.tr..._880\n  0x08001602, 0x0c004514, 0x10020b09, 0x4b002e08,   // lt.it..._220 sk.pl..._660 no.da.sv_444 sq.az..._430\n  // [0600]\n  0x1a008c02, 0x17000513, 0x03000502, 0x1e252302,   // ht.xxx..._220 fr.ro..._650 fr.nl..._220 uk.mk.sr_222\n  0x30230e12, 0x30001c13, 0x01000202, 0x00008c2d,   // ru.uk.be_654 bg.be..._650 da.en..._220 ht......_A00\n  0x0b450107, 0x45123a02, 0x18002b02, 0x8c000109,   // en.sk.no_432 eu.cs.sk_222 cy.hu..._220 en.ht..._440\n  0x17000802, 0x18003802, 0x0e302309, 0x2e000302,   // it.ro..._220 ca.hu..._220 uk.be.ru_444 nl.sq..._220\n  // [0610]\n  0x0c002b22, 0x1f004514, 0x3a002223, 0x10001714,   // cy.pl..._870 sk.ga..._660 tr.eu..._880 ro.sv..._660\n  0x10001909, 0x10080b07, 0x45380507, 0x2e000802,   // et.sv..._440 no.it.sv_432 fr.ca.sk_432 it.sq..._220\n  0x1d1e40a4, 0x0c8c18af, 0x08001723, 0x1e124502,   // sl.sr.hr_433 hu.ht.pl_655 ro.it..._880 sk.cs.sr_222\n  0x16000d14, 0x27008c02, 0x07005c22, 0x0000192d,   // pt.lt..._660 ht.id..._220 yi.iw..._870 et......_A00\n  // [0620]\n  0x0c004523, 0x04000f09, 0x3f002202, 0x06034507,   // sk.pl..._880 es.fi..._440 tr.sw..._220 sk.nl.de_432\n  0x10000823, 0x08000414, 0x1d004514, 0x1d004014,   // it.sv..._880 fi.it..._660 sk.hr..._660 sl.hr..._660\n  0x05000b02, 0x08170b07, 0x01000502, 0x08003a23,   // no.fr..._220 no.ro.it_432 fr.en..._220 eu.it..._880\n  0x10001702, 0x088c0b09, 0x1a002420, 0x0d0f3fa4,   // ro.sv..._220 no.ht.it_444 hi.xxx..._850 sw.es.pt_433\n  // [0630]\n  0x29036602, 0x66060b13, 0x2e001702, 0x3a002713,   // af.nl.ms_222 no.de.af_665 ro.sq..._220 id.eu..._650\n  0x0b1002af, 0x14000b09, 0x29002e23, 0x0b000213,   // da.sv.no_655 no.is..._440 sq.ms..._880 da.no..._650\n  0x45000802, 0x0c000414, 0x02002923, 0x02100baf,   // it.sk..._220 fi.pl..._660 ms.da..._880 no.sv.da_655\n  0x06006614, 0x45100b02, 0x2b003809, 0x15000309,   // af.de..._660 no.sv.sk_222 ca.cy..._440 nl.lv..._440\n  // [0640]\n  0x45006602, 0x30000e09, 0x0e003021, 0x19002902,   // af.sk..._220 ru.be..._440 be.ru..._860 ms.et..._220\n  0x4e333760, 0x1d001e07, 0x02004209, 0x4e333712,   // ar.ur.fa_664 sr.hr..._420 mt.da..._440 ar.ur.fa_654\n  0x1a003f07, 0x3a000c13, 0x22000202, 0x1e251c60,   // sw.xxx..._420 pl.eu..._650 da.tr..._220 bg.mk.sr_664\n  0x3a000814, 0x0f002013, 0x08003a02, 0x17004509,   // it.eu..._660 gl.es..._650 eu.it..._220 sk.ro..._440\n  // [0650]\n  0x08036607, 0x0c001412, 0x0c000109, 0x273a2902,   // af.nl.it_432 is.pl..._640 en.pl..._440 ms.eu.id_222\n  0x15006622, 0x1d164002, 0x45083a55, 0x17006602,   // af.lv..._870 sl.lt.hr_222 eu.it.sk_442 af.ro..._220\n  0x2b002702, 0x27293a02, 0x22000d02, 0x080c1209,   // id.cy..._220 eu.ms.id_222 pt.tr..._220 cs.pl.it_444\n  0x29003a14, 0x3a000809, 0x3f008c08, 0x66050107,   // eu.ms..._660 it.eu..._440 ht.sw..._430 en.fr.af_432\n  // [0660]\n  0x1a450109, 0x06000c22, 0x0000032d, 0x66000d02,   // en.sk.xxx_444 pl.de..._870 nl......_A00 pt.af..._220\n  0x06660355, 0x450c6602, 0x38000509, 0x0c001209,   // nl.af.de_442 af.pl.sk_222 fr.ca..._440 cs.pl..._440\n  0x06003a02, 0x02141008, 0x03000102, 0x22002114,   // eu.de..._220 sv.is.da_443 en.nl..._220 tl.tr..._660\n  0x401e1d55, 0x21000109, 0x40001514, 0x3a001913,   // hr.sr.sl_442 en.tl..._440 lv.sl..._660 et.eu..._650\n  // [0670]\n  0x05002214, 0x20002b02, 0x2e000123, 0x1e1d2909,   // tr.fr..._660 cy.gl..._220 en.sq..._880 ms.hr.sr_444\n  0x21100b60, 0x01002b02, 0x4b002221, 0x14001921,   // no.sv.tl_664 cy.en..._220 tr.az..._860 et.is..._860\n  0x06002b09, 0x1e000e14, 0x4e003711, 0x12451a07,   // cy.de..._440 ru.sr..._660 ar.fa..._630 xxx.sk.cs_432\n  0x66002109, 0x14000d23, 0x10000b23, 0x0c124513,   // tl.af..._440 pt.is..._880 no.sv..._880 sk.cs.pl_665\n  // [0680]\n  0x1c000e22, 0x2b000d02, 0x0f002002, 0x66060314,   // ru.bg..._870 pt.cy..._220 gl.es..._220 nl.de.af_666\n  0x0d420107, 0x05000302, 0x27036660, 0x18001502,   // en.mt.pt_432 nl.fr..._220 af.nl.id_664 lv.hu..._220\n  0x4e373308, 0x8c004b13, 0x06002b13, 0x191d1e08,   // ur.ar.fa_443 az.ht..._650 cy.de..._650 sr.hr.et_443\n  0x19100b09, 0x06000509, 0x0f183860, 0x02000b09,   // no.sv.et_444 fr.de..._440 ca.hu.es_664 no.da..._440\n  // [0690]\n  0x45002709, 0x03000d02, 0x08000302, 0x100b0212,   // id.sk..._440 pt.nl..._220 nl.it..._220 da.no.sv_654\n  0x0e301cad, 0x19001802, 0x0c002b12, 0x3f002702,   // bg.be.ru_643 hu.et..._220 cy.pl..._640 id.sw..._220\n  0x14000212, 0x05000d12, 0x0d000602, 0x1e221d02,   // da.is..._640 pt.fr..._640 de.pt..._220 hr.tr.sr_222\n  0x14002b23, 0x03000809, 0x19001414, 0x37334ead,   // cy.is..._880 it.nl..._440 is.et..._660 fa.ur.ar_643\n  // [06a0]\n  0x1d451902, 0x10001414, 0x451e1207, 0x42001514,   // et.sk.hr_222 is.sv..._660 cs.sr.sk_432 lv.mt..._660\n  0x29003f13, 0x02001802, 0x1d1e1209, 0x3f292760,   // sw.ms..._650 hu.da..._220 cs.sr.hr_444 id.ms.sw_664\n  0x03001913, 0x42003f14, 0x16001902, 0x14003f14,   // et.nl..._650 sw.mt..._660 et.lt..._220 sw.is..._660\n  0x1e1d1209, 0x3f001914, 0x45000814, 0x22008c09,   // cs.hr.sr_444 et.sw..._660 it.sk..._660 ht.tr..._440\n  // [06b0]\n  0x15001923, 0x03000802, 0x03006622, 0x38010daf,   // et.lv..._880 it.nl..._220 af.nl..._870 pt.en.ca_655\n  0x37334e14, 0x22001402, 0x1e003002, 0x2e003f23,   // fa.ur.ar_666 is.tr..._220 be.sr..._220 sw.sq..._880\n  0x12004522, 0x06003802, 0x19002909, 0x0e231c14,   // sk.cs..._870 ca.de..._220 ms.et..._440 bg.uk.ru_666\n  0x15000f02, 0x16000814, 0x06004209, 0x0c142b12,   // es.lv..._220 it.lt..._660 mt.de..._440 cy.is.pl_654\n  // [06c0]\n  0x0d003802, 0x06001a13, 0x0f003802, 0x143f0208,   // ca.pt..._220 xxx.de..._650 ca.es..._220 da.sw.is_443\n  0x0e231c12, 0x42001702, 0x33004e23, 0x1d228c08,   // bg.uk.ru_654 ro.mt..._220 fa.ur..._880 ht.tr.hr_443\n  0x383a0f08, 0x19001822, 0x27002b13, 0x19292709,   // es.eu.ca_443 hu.et..._870 cy.id..._650 id.ms.et_444\n  0x0d003f13, 0x1c2523a4, 0x02001409, 0x4b221808,   // sw.pt..._650 uk.mk.bg_433 is.da..._440 hu.tr.az_443\n  // [06d0]\n  0x3f000b09, 0x08001a12, 0x0f000502, 0x06001002,   // no.sw..._440 xxx.it..._640 fr.es..._220 sv.de..._220\n  0x18001009, 0x04000b09, 0x2b001414, 0x0b000114,   // sv.hu..._440 no.fi..._440 is.cy..._660 en.no..._660\n  0x660c4212, 0x10000207, 0x08000107, 0x8c004b21,   // mt.pl.af_654 da.sv..._420 en.it..._420 az.ht..._860\n  0x0c001623, 0x33374e14, 0x3f000b13, 0x294b2208,   // lt.pl..._880 fa.ar.ur_666 no.sw..._650 tr.az.ms_443\n  // [06e0]\n  0x06000422, 0x1c1e2514, 0x08050109, 0x1e002512,   // fi.de..._870 mk.sr.bg_666 en.fr.it_444 mk.sr..._640\n  0x0c171209, 0x06004223, 0x1d002202, 0x300e2313,   // cs.ro.pl_444 mt.de..._880 tr.hr..._220 uk.ru.be_665\n  0x14001614, 0x45000b08, 0x0000372d, 0x27000422,   // lt.is..._660 no.sk..._430 ar......_A00 fi.id..._870\n  0x02000b08, 0x00001501, 0x19004302, 0x1a004013,   // no.da..._430 lv......_200 vi.et..._220 sl.xxx..._650\n  // [06f0]\n  0x8c000502, 0x37004e23, 0x0c000609, 0x30001e09,   // fr.ht..._220 fa.ar..._880 de.pl..._440 sr.be..._440\n  0x380d0f09, 0x0b4540a4, 0x21004209, 0x1f002e23,   // es.pt.ca_444 sl.sk.no_433 mt.tl..._440 sq.ga..._880\n  0x06000d02, 0x08001502, 0x01000509, 0x2b001f22,   // pt.de..._220 lv.it..._220 fr.en..._440 ga.cy..._870\n  0x1d451208, 0x05080114, 0x3f002909, 0x08050155,   // cs.sk.hr_443 en.it.fr_666 ms.sw..._440 en.fr.it_442\n  // [0700]\n  0x45160c02, 0x43000d13, 0x2e001e14, 0x08001823,   // pl.lt.sk_222 pt.vi..._650 sr.sq..._660 hu.it..._880\n  0x17001209, 0x1f000409, 0x06000414, 0x08000623,   // cs.ro..._440 fi.ga..._440 fi.de..._660 de.it..._880\n  0x06001422, 0x08002114, 0x193f0107, 0x1f002914,   // is.de..._870 tl.it..._660 en.sw.et_432 ms.ga..._660\n  0x2e004002, 0x2e002102, 0x2e004b23, 0x224b2e60,   // sl.sq..._220 tl.sq..._220 az.sq..._880 sq.az.tr_664\n  // [0710]\n  0x16002e02, 0x2e001f22, 0x2e191207, 0x17001623,   // sq.lt..._220 ga.sq..._870 cs.et.sq_432 lt.ro..._880\n  0x3f002e23, 0x19002e14, 0x17004502, 0x1e1d21a4,   // sq.sw..._880 sq.et..._660 sk.ro..._220 tl.hr.sr_433\n  0x21001d09, 0x01004209, 0x1d274002, 0x66004209,   // hr.tl..._440 mt.en..._440 sl.id.hr_222 mt.af..._440\n  0x07005c11, 0x19000f02, 0x2e000109, 0x2e004b09,   // yi.iw..._630 es.et..._220 en.sq..._440 az.sq..._440\n  // [0720]\n  0x040c1412, 0x120c4513, 0x27001202, 0x29003a09,   // is.pl.fi_654 sk.pl.cs_665 cs.id..._220 eu.ms..._440\n  0x45000809, 0x18006602, 0x1e001c14, 0x3f002902,   // it.sk..._440 af.hu..._220 bg.sr..._660 ms.sw..._220\n  0x16292709, 0x27003f09, 0x27382902, 0x23002514,   // id.ms.lt_444 sw.id..._440 ms.ca.id_222 mk.uk..._660\n  0x221e1da4, 0x14001012, 0x06001407, 0x22000613,   // hr.sr.tr_433 sv.is..._640 is.de..._420 de.tr..._650\n  // [0730]\n  0x1e0e1c60, 0x45221213, 0x29278c12, 0x45001d02,   // bg.ru.sr_664 cs.tr.sk_665 ht.id.ms_654 hr.sk..._220\n  0x16272908, 0x1c230e14, 0x0000162d, 0x0b000212,   // ms.id.lt_443 ru.uk.bg_666 lt......_A00 da.no..._640\n  0x45001d14, 0x8c002702, 0x40001d02, 0x0e001c08,   // hr.sk..._660 id.ht..._220 hr.sl..._220 bg.ru..._430\n  0x451d8c02, 0x14100612, 0x5c00070e, 0x45000f08,   // ht.hr.sk_222 de.sv.is_654 iw.yi..._550 es.sk..._430\n  // [0740]\n  0x45001002, 0x231c0e12, 0x43000509, 0x1d272902,   // sv.sk..._220 ru.bg.uk_654 fr.vi..._440 ms.id.hr_222\n  0x211e1daf, 0x25001c09, 0x1e1d4012, 0x2e000814,   // hr.sr.tl_655 bg.mk..._440 sl.hr.sr_654 it.sq..._660\n  0x100b0208, 0x12450d08, 0x12000609, 0x04004b09,   // da.no.sv_443 pt.sk.cs_443 de.cs..._440 az.fi..._440\n  0x1d403f02, 0x14001009, 0x2b001002, 0x45194002,   // sw.sl.hr_222 sv.is..._440 sv.cy..._220 sl.et.sk_222\n  // [0750]\n  0x10022b08, 0x1e251c13, 0x4e003311, 0x2b008c12,   // cy.da.sv_443 bg.mk.sr_665 ur.fa..._630 ht.cy..._640\n  0x0000242d, 0x66001909, 0x00003a2d, 0x45003a23,   // hi......_A00 et.af..._440 eu......_A00 eu.sk..._880\n  0x01008c13, 0x401d4509, 0x8c001614, 0x04001812,   // ht.en..._650 sk.hr.sl_444 lt.ht..._660 hu.fi..._640\n  0x16153a12, 0x27160202, 0x3a001414, 0x251e0e09,   // eu.lv.lt_654 da.lt.id_222 is.eu..._660 ru.sr.mk_444\n  // [0760]\n  0x29002114, 0x2b008c02, 0x29002712, 0x40001207,   // tl.ms..._660 ht.cy..._220 id.ms..._640 cs.sl..._420\n  0x1c230e13, 0x12451855, 0x08004213, 0x2b000d14,   // ru.uk.bg_665 hu.sk.cs_442 mt.it..._650 pt.cy..._660\n  0x101a1609, 0x251c0e14, 0x18000f14, 0x18000f13,   // lt.xxx.sv_444 ru.bg.mk_666 es.hu..._660 es.hu..._650\n  0x38002902, 0x0f001812, 0x4b002b13, 0x18380f14,   // ms.ca..._220 hu.es..._640 cy.az..._650 es.ca.hu_666\n  // [0770]\n  0x1d000c14, 0x450f18a4, 0x19000b02, 0x15000b21,   // pl.hr..._660 hu.es.sk_433 no.et..._220 no.lv..._860\n  0x33374e11, 0x02001021, 0x0f001820, 0x45190455,   // fa.ar.ur_653 sv.da..._860 hu.es..._850 fi.et.sk_442\n  0x15000402, 0x38000f14, 0x0c000114, 0x18000f09,   // fi.lv..._220 es.ca..._660 en.pl..._660 es.hu..._440\n  0x0d002213, 0x43001a02, 0x1a004208, 0x45061702,   // tr.pt..._650 xxx.vi..._220 mt.xxx..._430 ro.de.sk_222\n  // [0780]\n  0x1c003002, 0x0f000109, 0x1d190109, 0x30000e14,   // be.bg..._220 en.es..._440 en.et.hr_444 ru.be..._660\n  0x01002909, 0x29004309, 0x301c2511, 0x2b000107,   // ms.en..._440 vi.ms..._440 mk.bg.be_653 en.cy..._420\n  0x10000612, 0x0f381812, 0x1d000d09, 0x8c000409,   // de.sv..._640 hu.ca.es_654 pt.hr..._440 fi.ht..._440\n  0x122b4502, 0x1e0e1c08, 0x0e233009, 0x22001914,   // sk.cy.cs_222 bg.ru.sr_443 be.uk.ru_444 et.tr..._660\n  // [0790]\n  0x1e001509, 0x1f002b23, 0x22001809, 0x1e002313,   // lv.sr..._440 cy.ga..._880 hu.tr..._440 uk.sr..._650\n  0x1e1c2513, 0x42001913, 0x2e000b02, 0x250e1c14,   // mk.bg.sr_665 et.mt..._650 no.sq..._220 bg.ru.mk_666\n  0x22184ba4, 0x0c003802, 0x18002223, 0x183f0802,   // az.hu.tr_433 ca.pl..._220 tr.hu..._880 it.sw.hu_222\n  0x4b001813, 0x06002b12, 0x22184507, 0x03663807,   // hu.az..._650 cy.de..._640 sk.hu.tr_432 ca.af.nl_432\n  // [07a0]\n  0x1d004013, 0x29001f23, 0x10660309, 0x0c008c09,   // sl.hr..._650 ga.ms..._880 nl.af.sv_444 ht.pl..._440\n  0x04003f09, 0x03006612, 0x1d1e1502, 0x0d001f13,   // sw.fi..._440 af.nl..._640 lv.sr.hr_222 ga.pt..._650\n  0x02001412, 0x1f006602, 0x03003808, 0x0e1e2312,   // is.da..._640 af.ga..._220 ca.nl..._430 uk.sr.ru_654\n  0x12454002, 0x0c000809, 0x17000808, 0x2e006602,   // sl.sk.cs_222 it.pl..._440 it.ro..._430 af.sq..._220\n  // [07b0]\n  0x40000202, 0x4b002109, 0x2e000c09, 0x14000222,   // da.sl..._220 tl.az..._440 pl.sq..._440 da.is..._870\n  0x21001214, 0x2e002b13, 0x1e1d1613, 0x01004514,   // cs.tl..._660 cy.sq..._650 lt.hr.sr_665 sk.en..._660\n  0x01003a09, 0x17008c02, 0x45180b13, 0x0e1e2513,   // eu.en..._440 ht.ro..._220 no.hu.sk_665 mk.sr.ru_665\n  0x18001623, 0x18002121, 0x01002b14, 0x02200109,   // lt.hu..._880 tl.hu..._860 cy.en..._660 en.gl.da_444\n  // [07c0]\n  0x0c002b08, 0x0c3a18af, 0x22000d08, 0x2b001014,   // cy.pl..._430 hu.eu.pl_655 pt.tr..._430 sv.cy..._660\n  0x10000208, 0x08000b09, 0x3a080b07, 0x16190b09,   // da.sv..._430 no.it..._440 no.it.eu_432 no.et.lt_444\n  0x17000b09, 0x05001f09, 0x23000e23, 0x05001f13,   // no.ro..._440 ga.fr..._440 ru.uk..._880 ga.fr..._650\n  0x02106609, 0x05001f14, 0x450c2b02, 0x2b001012,   // af.sv.da_444 ga.fr..._660 cy.pl.sk_222 sv.cy..._640\n  // [07d0]\n  0x0e003012, 0x401d1e07, 0x3a153f08, 0x3f001613,   // be.ru..._640 sr.hr.sl_432 sw.lv.eu_443 lt.sw..._650\n  0x2e1d2707, 0x14662108, 0x45213a02, 0x27292e02,   // id.hr.sq_432 tl.af.is_443 eu.tl.sk_222 sq.ms.id_222\n  0x25001e21, 0x12001614, 0x18001f13, 0x0e002511,   // sr.mk..._860 lt.cs..._660 ga.hu..._650 mk.ru..._630\n  0x19001023, 0x27291e02, 0x3f292709, 0x3a380f07,   // sv.et..._880 sr.ms.id_222 id.ms.sw_444 es.ca.eu_432\n  // [07e0]\n  0x14004214, 0x1c002314, 0x04004522, 0x1e004202,   // mt.is..._660 uk.bg..._660 sk.fi..._870 mt.sr..._220\n  0x45001207, 0x66001412, 0x06000d23, 0x45002909,   // cs.sk..._420 is.af..._640 pt.de..._880 ms.sk..._440\n  0x43001502, 0x04192e13, 0x1d1e0b07, 0x06000314,   // lv.vi..._220 sq.et.fi_665 no.sr.hr_432 nl.de..._660\n  0x1a000802, 0x2e000f14, 0x14003802, 0x18003a02,   // it.xxx..._220 es.sq..._660 ca.is..._220 eu.hu..._220\n  // [07f0]\n  0x0f003807, 0x0c451260, 0x2e000c02, 0x05006609,   // ca.es..._420 cs.sk.pl_664 pl.sq..._220 af.fr..._440\n  0x8c000214, 0x27002920, 0x032e0b07, 0x3f151608,   // da.ht..._660 ms.id..._850 no.sq.nl_432 lt.lv.sw_443\n  0x06006623, 0x10004002, 0x2e000323, 0x18000113,   // af.de..._880 sl.sv..._220 nl.sq..._880 en.hu..._650\n  0x45120107, 0x45001813, 0x01001014, 0x45120109,   // en.cs.sk_432 hu.sk..._650 sv.en..._660 en.cs.sk_444\n\n  // [0800]\n  0x22292712, 0x0c001208, 0x45001213, 0x8c000209,   // id.ms.tr_654 cs.pl..._430 cs.sk..._650 da.ht..._440\n  0x0c001013, 0x0e002322, 0x3f061a12, 0x42001a09,   // sv.pl..._650 uk.ru..._870 xxx.de.sw_654 xxx.mt..._440\n  0x06002209, 0x10002708, 0x10020b13, 0x2e002908,   // tr.de..._440 id.sv..._430 no.da.sv_665 ms.sq..._430\n  0x1c000e08, 0x1e0e2360, 0x2e000b21, 0x034066a4,   // ru.bg..._430 uk.ru.sr_664 no.sq..._860 af.sl.nl_433\n  // [0810]\n  0x02000d02, 0x0000212d, 0x0e2330a4, 0x16002221,   // pt.da..._220 tl......_A00 be.uk.ru_433 tr.lt..._860\n  0x16000c02, 0x43211a09, 0x30001e14, 0x0f000823,   // pl.lt..._220 xxx.tl.vi_444 sr.be..._660 it.es..._880\n  0x30002512, 0x20000f23, 0x38140faf, 0x45298c02,   // mk.be..._640 es.gl..._880 es.is.ca_655 ht.ms.sk_222\n  0x1c002323, 0x0000202d, 0x1c0e2313, 0x27221602,   // uk.bg..._880 gl......_A00 uk.ru.bg_665 lt.tr.id_222\n  // [0820]\n  0x02001713, 0x1d1e0c02, 0x23003023, 0x1d1e2202,   // ro.da..._650 pl.sr.hr_222 be.uk..._880 tr.sr.hr_222\n  0x17000123, 0x401e1d13, 0x0c451208, 0x1c230eaf,   // en.ro..._880 hr.sr.sl_665 cs.sk.pl_443 ru.uk.bg_655\n  0x21006602, 0x10002e08, 0x0b000f09, 0x0c002002,   // af.tl..._220 sq.sv..._430 es.no..._440 gl.pl..._220\n  0x21003a02, 0x19000407, 0x15004502, 0x15003802,   // eu.tl..._220 fi.et..._420 sk.lv..._220 ca.lv..._220\n  // [0830]\n  0x29182b02, 0x27292108, 0x45000c13, 0x0c001712,   // cy.hu.ms_222 tl.ms.id_443 pl.sk..._650 ro.pl..._640\n  0x8c000c12, 0x17000102, 0x14000402, 0x21000114,   // pl.ht..._640 en.ro..._220 fi.is..._220 en.tl..._660\n  0x29000107, 0x1e302302, 0x22002914, 0x21000f13,   // en.ms..._420 uk.be.sr_222 ms.tr..._660 es.tl..._650\n  0x1d1e0412, 0x3f272108, 0x4e373309, 0x10001209,   // fi.sr.hr_654 tl.id.sw_443 ur.ar.fa_444 cs.sv..._440\n  // [0840]\n  0x150416af, 0x0f002022, 0x18000f12, 0x10003a02,   // lt.fi.lv_655 gl.es..._870 es.hu..._640 eu.sv..._220\n  0x06100408, 0x0f002023, 0x45004209, 0x03003814,   // fi.sv.de_443 gl.es..._880 mt.sk..._440 ca.nl..._660\n  0x0d380860, 0x1c1e2508, 0x14000612, 0x3a000614,   // it.ca.pt_664 mk.sr.bg_443 de.is..._640 de.eu..._660\n  0x1a001913, 0x01000514, 0x00002142, 0x062203a4,   // et.xxx..._650 fr.en..._660 tl......_C00 nl.tr.de_433\n  // [0850]\n  0x04002e13, 0x08000d02, 0x18002b12, 0x12002214,   // sq.fi..._650 pt.it..._220 cy.hu..._640 tr.cs..._660\n  0x0d001823, 0x05002709, 0x19000607, 0x01001a14,   // hu.pt..._880 id.fr..._440 de.et..._420 xxx.en..._660\n  0x380343a4, 0x12040602, 0x1d000609, 0x43002b02,   // vi.nl.ca_433 de.fi.cs_222 de.hr..._440 cy.vi..._220\n  0x40001d13, 0x08000114, 0x06002213, 0x300e2314,   // hr.sl..._650 en.it..._660 tr.de..._650 uk.ru.be_666\n  // [0860]\n  0x42004502, 0x45001208, 0x02002e12, 0x42000202,   // sk.mt..._220 cs.sk..._430 sq.da..._640 da.mt..._220\n  0x1e001014, 0x1c300e60, 0x1a000123, 0x1c251e08,   // sv.sr..._660 ru.be.bg_664 en.xxx..._880 sr.mk.bg_443\n  0x1d1e4509, 0x1a004209, 0x42000109, 0x06001522,   // sk.sr.hr_444 mt.xxx..._440 en.mt..._440 lv.de..._870\n  0x1e302512, 0x29000602, 0x45004023, 0x16000802,   // mk.be.sr_654 de.ms..._220 sl.sk..._880 it.lt..._220\n  // [0870]\n  0x8c004209, 0x45000c14, 0x0e231eaf, 0x42001602,   // mt.ht..._440 pl.sk..._660 sr.uk.ru_655 lt.mt..._220\n  0x0c001d14, 0x01000209, 0x1e1d1508, 0x04660308,   // hr.pl..._660 da.en..._440 lv.hr.sr_443 nl.af.fi_443\n  0x230e3008, 0x37334eaf, 0x42001e02, 0x0c161509,   // be.ru.uk_443 fa.ur.ar_655 sr.mt..._220 lv.lt.pl_444\n  0x3a003f09, 0x1d2e1502, 0x4b222909, 0x15424013,   // sw.eu..._440 lv.sq.hr_222 ms.tr.az_444 sl.mt.lv_665\n  // [0880]\n  0x18004002, 0x3a001902, 0x03001f14, 0x3f000409,   // sl.hu..._220 et.eu..._220 ga.nl..._660 fi.sw..._440\n  0x18451212, 0x0f003a02, 0x4b000f09, 0x30001c02,   // cs.sk.hu_654 eu.es..._220 es.az..._440 bg.be..._220\n  0x0e003002, 0x40154209, 0x05000d02, 0x1e044012,   // be.ru..._220 mt.lv.sl_444 pt.fr..._220 sl.fi.sr_654\n  0x17003809, 0x05002e02, 0x15001608, 0x14004202,   // ca.ro..._440 sq.fr..._220 lt.lv..._430 mt.is..._220\n  // [0890]\n  0x22004b02, 0x15004214, 0x1e1d3aa4, 0x1c002513,   // az.tr..._220 mt.lv..._660 eu.hr.sr_433 mk.bg..._650\n  0x19001009, 0x0d002e12, 0x03663f08, 0x1d292702,   // sv.et..._440 sq.pt..._640 sw.af.nl_443 id.ms.hr_222\n  0x0e002522, 0x01001714, 0x272918a4, 0x1f000402,   // mk.ru..._870 ro.en..._660 hu.ms.id_433 fi.ga..._220\n  0x27008c13, 0x4e003323, 0x05000414, 0x1e1d40a4,   // ht.id..._650 ur.fa..._880 fi.fr..._660 sl.hr.sr_433\n  // [08a0]\n  0x06003a23, 0x19002223, 0x0f020b09, 0x22006622,   // eu.de..._880 tr.et..._880 no.da.es_444 af.tr..._870\n  0x17001814, 0x03002202, 0x04000802, 0x19002214,   // hu.ro..._660 tr.nl..._220 it.fi..._220 tr.et..._660\n  0x19002702, 0x22002714, 0x18124514, 0x14001214,   // id.et..._220 id.tr..._660 sk.cs.hu_666 cs.is..._660\n  0x1e0c0302, 0x16001513, 0x01002014, 0x22000402,   // nl.pl.sr_222 lv.lt..._650 gl.en..._660 fi.tr..._220\n  // [08b0]\n  0x01660312, 0x2e140408, 0x04001923, 0x15002702,   // nl.af.en_654 fi.is.sq_443 et.fi..._880 id.lv..._220\n  0x20003823, 0x19004002, 0x4b002e12, 0x0000262d,   // ca.gl..._880 sl.et..._220 sq.az..._640 bn......_A00\n  0x2b050109, 0x0d1617a4, 0x0000062d, 0x433f0d08,   // en.fr.cy_444 ro.lt.pt_433 de......_A00 pt.sw.vi_443\n  0x02061f12, 0x03000423, 0x1e431d09, 0x22040107,   // ga.de.da_654 fi.nl..._880 hr.vi.sr_444 en.fi.tr_432\n  // [08c0]\n  0x2e001902, 0x45003f12, 0x3f2940af, 0x0d004322,   // et.sq..._220 sw.sk..._640 sl.ms.sw_655 vi.pt..._870\n  0x40002222, 0x1e0c1d02, 0x0d004313, 0x0c161008,   // tr.sl..._870 hr.pl.sr_222 vi.pt..._650 sv.lt.pl_443\n  0x0b000208, 0x2b001009, 0x14002902, 0x0f001a02,   // da.no..._430 sv.cy..._440 ms.is..._220 xxx.es..._220\n  0x14001f22, 0x07005c09, 0x01001902, 0x291f2109,   // ga.is..._870 yi.iw..._440 et.en..._220 tl.ga.ms_444\n  // [08d0]\n  0x45000109, 0x3a002108, 0x12450c14, 0x08000f02,   // en.sk..._440 tl.eu..._430 pl.sk.cs_666 es.it..._220\n  0x4e003307, 0x15001402, 0x25000e02, 0x02450b08,   // ur.fa..._420 is.lv..._220 ru.mk..._220 no.sk.da_443\n  0x66001502, 0x27000302, 0x0d000b09, 0x06000b13,   // lv.af..._220 nl.id..._220 no.pt..._440 no.de..._650\n  0x29451207, 0x45120202, 0x1d401ea4, 0x03001e02,   // cs.sk.ms_432 da.cs.sk_222 sr.sl.hr_433 sr.nl..._220\n  // [08e0]\n  0x0b000209, 0x17000d13, 0x0c124514, 0x27002109,   // da.no..._440 pt.ro..._650 sk.cs.pl_666 tl.id..._440\n  0x1d002222, 0x22020b09, 0x14002b09, 0x0c000314,   // tr.hr..._870 no.da.tr_444 cy.is..._440 nl.pl..._660\n  0x19000609, 0x01002e09, 0x06000502, 0x0d000809,   // de.et..._440 sq.en..._440 fr.de..._220 it.pt..._440\n  0x200d0f07, 0x06000802, 0x14220607, 0x29000123,   // es.pt.gl_432 it.de..._220 de.tr.is_432 en.ms..._880\n  // [08f0]\n  0x1d004202, 0x02192b08, 0x4b124508, 0x25001c12,   // mt.hr..._220 cy.et.da_443 sk.cs.az_443 bg.mk..._640\n  0x45004b09, 0x1f004308, 0x103a0b07, 0x05001502,   // az.sk..._440 vi.ga..._430 no.eu.sv_432 lv.fr..._220\n  0x29000b09, 0x42083807, 0x2b2e1412, 0x1d004012,   // no.ms..._440 ca.it.mt_432 is.sq.cy_654 sl.hr..._640\n  0x00001c01, 0x30001e23, 0x10001813, 0x3f000302,   // bg......_200 sr.be..._880 hu.sv..._650 nl.sw..._220\n  // [0900]\n  0x23000e09, 0x0000102d, 0x230e1e13, 0x2b6621af,   // ru.uk..._440 sv......_A00 sr.ru.uk_665 tl.af.cy_655\n  0x16002b02, 0x02000109, 0x16002e09, 0x20000d22,   // cy.lt..._220 en.da..._440 sq.lt..._440 pt.gl..._870\n  0x01003f09, 0x10002b12, 0x2e004514, 0x1f000d02,   // sw.en..._440 cy.sv..._640 sk.sq..._660 pt.ga..._220\n  0x2b200d13, 0x06001209, 0x18140d55, 0x2e001207,   // pt.gl.cy_665 cs.de..._440 pt.is.hu_442 cs.sq..._420\n  // [0910]\n  0x45004007, 0x12184002, 0x01000802, 0x38001f21,   // sl.sk..._420 sl.hu.cs_222 it.en..._220 ga.ca..._860\n  0x16000d09, 0x2b662160, 0x38001202, 0x0d002023,   // pt.lt..._440 tl.af.cy_664 cs.ca..._220 gl.pt..._880\n  0x23251c08, 0x38000f02, 0x14001023, 0x30002502,   // bg.mk.uk_443 es.ca..._220 sv.is..._880 mk.be..._220\n  0x400d1209, 0x1d001214, 0x1e1d1207, 0x43063808,   // cs.pt.sl_444 cs.hr..._660 cs.hr.sr_432 ca.de.vi_443\n  // [0920]\n  0x1c002302, 0x40061209, 0x1a002109, 0x45000509,   // uk.bg..._220 cs.de.sl_444 tl.xxx..._440 fr.sk..._440\n  0x18003f02, 0x40001e02, 0x1e1d0f02, 0x45001a08,   // sw.hu..._220 sr.sl..._220 es.hr.sr_222 xxx.sk..._430\n  0x29451d02, 0x193f0408, 0x15190408, 0x1c1e2513,   // hr.sk.ms_222 fi.sw.et_443 fi.et.lv_443 mk.sr.bg_665\n  0x0c000b14, 0x45001409, 0x14001013, 0x1e1d4014,   // no.pl..._660 is.sk..._440 sv.is..._650 sl.hr.sr_666\n  // [0930]\n  0x0e003009, 0x23001e13, 0x431d1e08, 0x19000408,   // be.ru..._440 sr.uk..._650 sr.hr.vi_443 fi.et..._430\n  0x04001912, 0x29006614, 0x1e401d55, 0x17003f14,   // et.fi..._640 af.ms..._660 hr.sl.sr_442 sw.ro..._660\n  0x19001702, 0x1d174002, 0x0b000c13, 0x0b001014,   // ro.et..._220 sl.ro.hr_222 pl.no..._650 sv.no..._660\n  0x16000c14, 0x40006614, 0x1d001702, 0x45001211,   // pl.lt..._660 af.sl..._660 ro.hr..._220 cs.sk..._630\n  // [0940]\n  0x40002b14, 0x12450caf, 0x40001714, 0x00000401,   // cy.sl..._660 pl.sk.cs_655 ro.sl..._660 fi......_200\n  0x66000b09, 0x0b021013, 0x05001009, 0x22004014,   // no.af..._440 sv.da.no_665 sv.fr..._440 sl.tr..._660\n  0x38003a14, 0x3a001f23, 0x1f003a13, 0x30001c09,   // eu.ca..._660 ga.eu..._880 eu.ga..._650 bg.be..._440\n  0x17002912, 0x3f000423, 0x1f001714, 0x45003f02,   // ms.ro..._640 fi.sw..._880 ro.ga..._660 sw.sk..._220\n  // [0950]\n  0x1e1a1d02, 0x01001709, 0x4b660355, 0x14000123,   // hr.xxx.sr_222 ro.en..._440 nl.af.az_442 en.is..._880\n  0x251e1c09, 0x012e0b08, 0x66001714, 0x4b000509,   // bg.sr.mk_444 no.sq.en_443 ro.af..._660 fr.az..._440\n  0x20000f22, 0x0e002507, 0x66001914, 0x66002114,   // es.gl..._870 mk.ru..._420 et.af..._660 tl.af..._660\n  0x66001902, 0x06000308, 0x38000f23, 0x04000809,   // et.af..._220 nl.de..._430 es.ca..._880 it.fi..._440\n  // [0960]\n  0x1d041802, 0x04001908, 0x17008c08, 0x24001a08,   // hu.fi.hr_222 et.fi..._430 ht.ro..._430 xxx.hi..._430\n  0x15001612, 0x454303a4, 0x2b000f14, 0x1d008c14,   // lt.lv..._640 nl.vi.sk_433 es.cy..._660 ht.hr..._660\n  0x3a001809, 0x8c003f09, 0x1f003f09, 0x2b003802,   // hu.eu..._440 sw.ht..._440 sw.ga..._440 ca.cy..._220\n  0x453f3a02, 0x10001f08, 0x08008c02, 0x1d002709,   // eu.sw.sk_222 ga.sv..._430 ht.it..._220 id.hr..._440\n  // [0970]\n  0x27000809, 0x29270109, 0x42001414, 0x291d1e08,   // it.id..._440 en.id.ms_444 is.mt..._660 sr.hr.ms_443\n  0x42003a23, 0x2b000122, 0x29420408, 0x0d000f23,   // eu.mt..._880 en.cy..._870 fi.mt.ms_443 es.pt..._880\n  0x0d001209, 0x14422ba4, 0x19000f08, 0x45154202,   // cs.pt..._440 cy.mt.is_433 es.et..._430 mt.lv.sk_222\n  0x0f004002, 0x2b002122, 0x3f008c02, 0x29004214,   // sl.es..._220 tl.cy..._870 ht.sw..._220 mt.ms..._660\n  // [0980]\n  0x43002b08, 0x10001614, 0x3a003802, 0x05004214,   // cy.vi..._430 lt.sv..._660 ca.eu..._220 mt.fr..._660\n  0x22184b12, 0x1c002311, 0x30230ea4, 0x42001202,   // az.hu.tr_654 uk.bg..._630 ru.uk.be_433 cs.mt..._220\n  0x2b004212, 0x18001a22, 0x04001209, 0x45001008,   // mt.cy..._640 xxx.hu..._870 cs.fi..._440 sv.sk..._430\n  0x25001e22, 0x42002b14, 0x01001002, 0x430f0da4,   // sr.mk..._870 cy.mt..._660 sv.en..._220 pt.es.vi_433\n  // [0990]\n  0x29451402, 0x02001a09, 0x4b001814, 0x2e001614,   // is.sk.ms_222 xxx.da..._440 hu.az..._660 lt.sq..._660\n  0x18004b02, 0x15001602, 0x22002902, 0x04001613,   // az.hu..._220 lt.lv..._220 ms.tr..._220 lt.fi..._650\n  0x2e000413, 0x1e001c13, 0x1d2729a4, 0x0c1d1e09,   // fi.sq..._650 bg.sr..._650 ms.id.hr_433 sr.hr.pl_444\n  0x8c004308, 0x12451e02, 0x22008c23, 0x06101912,   // vi.ht..._430 sr.sk.cs_222 ht.tr..._880 et.sv.de_654\n  // [09a0]\n  0x15000c22, 0x15004308, 0x15000c23, 0x04001409,   // pl.lv..._870 vi.lv..._430 pl.lv..._880 is.fi..._440\n  0x0c001514, 0x2e006609, 0x450c1502, 0x06001412,   // lv.pl..._660 af.sq..._440 lv.pl.sk_222 is.de..._640\n  0x4b001602, 0x15004523, 0x45000c11, 0x16004b14,   // lt.az..._220 sk.lv..._880 pl.sk..._630 az.lt..._660\n  0x3a008c02, 0x193f3808, 0x1e251c14, 0x0d000509,   // ht.eu..._220 ca.sw.et_443 bg.mk.sr_666 fr.pt..._440\n  // [09b0]\n  0x10000609, 0x4b000d09, 0x30001c14, 0x15000209,   // de.sv..._440 pt.az..._440 bg.be..._660 da.lv..._440\n  0x14001007, 0x0e233014, 0x0c004513, 0x04061013,   // sv.is..._420 be.uk.ru_666 sk.pl..._650 sv.de.fi_665\n  0x29004502, 0x37334e08, 0x03002108, 0x1e1c2509,   // sk.ms..._220 fa.ur.ar_443 tl.nl..._430 mk.bg.sr_444\n  0x4e003320, 0x21003f14, 0x66012b07, 0x29223f02,   // ur.fa..._850 sw.tl..._660 cy.en.af_432 sw.tr.ms_222\n  // [09c0]\n  0x0e302314, 0x45033802, 0x0b181060, 0x8c050107,   // uk.be.ru_666 ca.nl.sk_222 sv.hu.no_664 en.fr.ht_432\n  0x3f004014, 0x3f003a23, 0x1d1e1202, 0x8c003f11,   // sl.sw..._660 eu.sw..._880 cs.sr.hr_222 sw.ht..._630\n  0x0c001802, 0x02140107, 0x8c004009, 0x06001408,   // hu.pl..._220 en.is.da_432 sl.ht..._440 is.de..._430\n  0x0c003f09, 0x27162902, 0x06003a13, 0x27291602,   // sw.pl..._440 ms.lt.id_222 eu.de..._650 lt.ms.id_222\n  // [09d0]\n  0x42000302, 0x03002610, 0x29272209, 0x8c006620,   // nl.mt..._220 bn.nl..._620 tr.id.ms_444 af.ht..._850\n  0x27222902, 0x27290109, 0x66030613, 0x8c002109,   // ms.tr.id_222 en.ms.id_444 de.nl.af_665 tl.ht..._440\n  0x1d008c02, 0x0f000123, 0x250e1c08, 0x8c000c13,   // ht.hr..._220 en.es..._880 bg.ru.mk_443 pl.ht..._650\n  0x45002914, 0x45000107, 0x250e1c13, 0x1a003f12,   // ms.sk..._660 en.sk..._420 bg.ru.mk_665 sw.xxx..._640\n  // [09e0]\n  0x8c001a02, 0x1e001809, 0x2b004222, 0x17001514,   // xxx.ht..._220 hu.sr..._440 mt.cy..._870 lv.ro..._660\n  0x29002708, 0x8c002214, 0x30002509, 0x1a001914,   // id.ms..._430 tr.ht..._660 mk.be..._440 et.xxx..._660\n  0x251c0eaf, 0x10001812, 0x40000802, 0x1f001008,   // ru.bg.mk_655 hu.sv..._640 it.sl..._220 sv.ga..._430\n  0x0f141f08, 0x14004513, 0x18451214, 0x27002e12,   // ga.is.es_443 sk.is..._650 cs.sk.hu_666 sq.id..._640\n  // [09f0]\n  0x04001014, 0x1c002313, 0x8c1a38a4, 0x21002914,   // sv.fi..._660 uk.bg..._650 ca.xxx.ht_433 ms.tl..._660\n  0x40001614, 0x293f2702, 0x27291402, 0x38000d14,   // lt.sl..._660 id.sw.ms_222 is.ms.id_222 pt.ca..._660\n  0x101d1e08, 0x2b000809, 0x06000814, 0x16003802,   // sr.hr.sv_443 it.cy..._440 it.de..._660 ca.lt..._220\n  0x1e1d4502, 0x22001923, 0x040610ad, 0x12001914,   // sk.hr.sr_222 et.tr..._880 sv.de.fi_643 et.cs..._660\n  // [0a00]\n  0x22040108, 0x450d3812, 0x0f003a12, 0x16081208,   // en.fi.tr_443 ca.pt.sk_654 eu.es..._640 cs.it.lt_443\n  0x12002114, 0x08000323, 0x0d003813, 0x17003822,   // tl.cs..._660 nl.it..._880 ca.pt..._650 ca.ro..._870\n  0x170d3860, 0x273f1a02, 0x0d003814, 0x10004309,   // ca.pt.ro_664 xxx.sw.id_222 ca.pt..._660 vi.sv..._440\n  0x4b124514, 0x22002e22, 0x19001602, 0x1d1e4002,   // sk.cs.az_666 sq.tr..._870 lt.et..._220 sl.sr.hr_222\n  // [0a10]\n  0x45002e02, 0x151d1e08, 0x0e301c13, 0x3f004514,   // sq.sk..._220 sr.hr.lv_443 bg.be.ru_665 sk.sw..._660\n  0x1e1d1202, 0x0d000802, 0x17003802, 0x053f0107,   // cs.hr.sr_222 it.pt..._220 ca.ro..._220 en.sw.fr_432\n  0x2b002902, 0x08004214, 0x3f001822, 0x3a421a60,   // ms.cy..._220 mt.it..._660 hu.sw..._870 xxx.mt.eu_664\n  0x1e0b1d12, 0x21008c13, 0x1c000e12, 0x21001209,   // hr.no.sr_654 ht.tl..._650 ru.bg..._640 cs.tl..._440\n  // [0a20]\n  0x66008c09, 0x1f000612, 0x18660308, 0x27296602,   // ht.af..._440 de.ga..._640 nl.af.hu_443 af.ms.id_222\n  0x27458c08, 0x21003823, 0x1a001e09, 0x1e002302,   // ht.sk.id_443 ca.tl..._880 sr.xxx..._440 uk.sr..._220\n  0x40171455, 0x22001713, 0x19036608, 0x061004af,   // is.ro.sl_442 ro.tr..._650 af.nl.et_443 fi.sv.de_655\n  0x38000123, 0x14002b13, 0x03008c02, 0x06001007,   // en.ca..._880 cy.is..._650 ht.nl..._220 sv.de..._420\n  // [0a30]\n  0x23002523, 0x12450c13, 0x120c4508, 0x1e0e2313,   // mk.uk..._880 pl.sk.cs_665 sk.pl.cs_443 uk.ru.sr_665\n  0x10008c09, 0x10000613, 0x06001812, 0x0c001a08,   // ht.sv..._440 de.sv..._650 hu.de..._640 xxx.pl..._430\n  0x1e004023, 0x38000508, 0x12000602, 0x22004002,   // sl.sr..._880 fr.ca..._430 de.cs..._220 sl.tr..._220\n  0x04001013, 0x16000c09, 0x22001502, 0x22003a13,   // sv.fi..._650 pl.lt..._440 lv.tr..._220 eu.tr..._650\n  // [0a40]\n  0x38001e02, 0x0c001f07, 0x29001402, 0x22001008,   // sr.ca..._220 ga.pl..._420 is.ms..._220 sv.tr..._430\n  0x1a002709, 0x12140d13, 0x10002714, 0x0d001f02,   // id.xxx..._440 pt.is.cs_665 id.sv..._660 ga.pt..._220\n  0x06001f23, 0x1f003a02, 0x66141f12, 0x22001709,   // ga.de..._880 eu.ga..._220 ga.is.af_654 ro.tr..._440\n  0x0d1f43ad, 0x45011502, 0x1f001421, 0x33003713,   // vi.ga.pt_643 lv.en.sk_222 is.ga..._860 ar.ur..._650\n  // [0a50]\n  0x12451812, 0x17003a13, 0x0c001611, 0x20003814,   // hu.sk.cs_654 eu.ro..._650 lt.pl..._630 ca.gl..._660\n  0x0000170a, 0x0c001608, 0x1f001823, 0x020308a4,   // ro......_500 lt.pl..._430 hu.ga..._880 it.nl.da_433\n  0x0d001402, 0x0b001602, 0x66030260, 0x2e000309,   // is.pt..._220 lt.no..._220 da.nl.af_664 nl.sq..._440\n  0x15001623, 0x06001013, 0x03001002, 0x8c001a09,   // lt.lv..._880 sv.de..._650 sv.nl..._220 xxx.ht..._440\n  // [0a60]\n  0x43000109, 0x42002e13, 0x0c001609, 0x1a001809,   // en.vi..._440 sq.mt..._650 lt.pl..._440 hu.xxx..._440\n  0x16003f14, 0x3a001a02, 0x0c001622, 0x0c001613,   // sw.lt..._660 xxx.eu..._220 lt.pl..._870 lt.pl..._650\n  0x66000102, 0x22003a12, 0x18100214, 0x29000109,   // en.af..._220 eu.tr..._640 da.sv.hu_666 en.ms..._440\n  0x0f186608, 0x0c000f14, 0x1e1d3f02, 0x21292709,   // af.hu.es_443 es.pl..._660 sw.hr.sr_222 id.ms.tl_444\n  // [0a70]\n  0x06000c23, 0x0c002102, 0x15000323, 0x22008c07,   // pl.de..._880 tl.pl..._220 nl.lv..._880 ht.tr..._420\n  0x66001002, 0x03001009, 0x16004509, 0x0c006614,   // sv.af..._220 sv.nl..._440 sk.lt..._440 af.pl..._660\n  0x30000e13, 0x2b003f12, 0x04002908, 0x8c001613,   // ru.be..._650 sw.cy..._640 ms.fi..._430 lt.ht..._650\n  0x30000e08, 0x0c002e22, 0x1d000809, 0x04154560,   // ru.be..._430 sq.pl..._870 it.hr..._440 sk.lv.fi_664\n  // [0a80]\n  0x0c000622, 0x0c002108, 0x45001402, 0x10000814,   // de.pl..._870 tl.pl..._430 is.sk..._220 it.sv..._660\n  0x051029a4, 0x1c000e09, 0x05001702, 0x18001f12,   // ms.sv.fr_433 ru.bg..._440 ro.fr..._220 ga.hu..._640\n  0x05000108, 0x00004b01, 0x0000012d, 0x03004302,   // en.fr..._430 az......_200 en......_A00 vi.nl..._220\n  0x27004023, 0x0000052d, 0x08001402, 0x29162702,   // sl.id..._880 fr......_A00 is.it..._220 id.lt.ms_222\n  // [0a90]\n  0x00004e2d, 0x38004323, 0x14000d02, 0x29271912,   // fa......_A00 vi.ca..._880 pt.is..._220 et.id.ms_654\n  0x1e1c2560, 0x0d051f07, 0x14001f23, 0x1f430d08,   // mk.bg.sr_664 ga.fr.pt_432 ga.is..._880 pt.vi.ga_443\n  0x16150109, 0x12003822, 0x29273fa4, 0x03000612,   // en.lv.lt_444 ca.cs..._870 sw.id.ms_433 de.nl..._640\n  0x45081702, 0x1d000202, 0x3f002e13, 0x40001213,   // ro.it.sk_222 da.hr..._220 sq.sw..._650 cs.sl..._650\n  // [0aa0]\n  0x05002902, 0x220612a4, 0x1e251c12, 0x08002702,   // ms.fr..._220 cs.de.tr_433 bg.mk.sr_654 id.it..._220\n  0x10000109, 0x1d002914, 0x06101809, 0x0d080f14,   // en.sv..._440 ms.hr..._660 hu.sv.de_444 es.it.pt_666\n  0x1e1d3a02, 0x0c004014, 0x40001223, 0x1e1d4508,   // eu.hr.sr_222 sl.pl..._660 cs.sl..._880 sk.hr.sr_443\n  0x1e233060, 0x1f002113, 0x8c1a3f60, 0x45000314,   // be.uk.sr_664 tl.ga..._650 sw.xxx.ht_664 nl.sk..._660\n  // [0ab0]\n  0x1e231c12, 0x0d002e14, 0x0d002909, 0x2e003a14,   // bg.uk.sr_654 sq.pt..._660 ms.pt..._440 eu.sq..._660\n  0x12003802, 0x42001914, 0x25001c08, 0x25001e11,   // ca.cs..._220 et.mt..._660 bg.mk..._430 sr.mk..._630\n  0x121d1e08, 0x40003f08, 0x66000109, 0x2b006609,   // sr.hr.cs_443 sw.sl..._430 en.af..._440 af.cy..._440\n  0x10001412, 0x04001e14, 0x06002b14, 0x19006609,   // is.sv..._640 sr.fi..._660 cy.de..._660 af.et..._440\n  // [0ac0]\n  0x3f000414, 0x45000414, 0x04001902, 0x3a001822,   // fi.sw..._660 fi.sk..._660 et.fi..._220 hu.eu..._870\n  0x0d000123, 0x2e001613, 0x0f002123, 0x38002e14,   // en.pt..._880 lt.sq..._650 tl.es..._880 sq.ca..._660\n  0x4b001702, 0x1a002114, 0x10004214, 0x3a1d0107,   // ro.az..._220 tl.xxx..._660 mt.sv..._660 en.hr.eu_432\n  0x19004214, 0x0d003f09, 0x01006602, 0x15001a23,   // mt.et..._660 sw.pt..._440 af.en..._220 xxx.lv..._880\n  // [0ad0]\n  0x0c004509, 0x14001914, 0x2b1a1f08, 0x160c3a08,   // sk.pl..._440 et.is..._660 ga.xxx.cy_443 eu.pl.lt_443\n  0x14003f02, 0x1f000522, 0x03000509, 0x29001413,   // sw.is..._220 fr.ga..._870 fr.nl..._440 is.ms..._650\n  0x1e151d02, 0x1e251caf, 0x29001523, 0x0d001709,   // hr.lv.sr_222 bg.mk.sr_655 lv.ms..._880 ro.pt..._440\n  0x22002b14, 0x3a001f14, 0x1e1d1502, 0x38001f14,   // cy.tr..._660 ga.eu..._660 lv.hr.sr_222 ga.ca..._660\n  // [0ae0]\n  0x0e001c13, 0x0c001014, 0x1f000523, 0x40002702,   // bg.ru..._650 sv.pl..._660 fr.ga..._880 id.sl..._220\n  0x18000414, 0x21004b02, 0x0d004314, 0x03000c13,   // fi.hu..._660 az.tl..._220 vi.pt..._660 pl.nl..._650\n  0x14000502, 0x15002e12, 0x1f000512, 0x1e401d60,   // fr.is..._220 sq.lv..._640 fr.ga..._640 hr.sl.sr_664\n  0x0c001612, 0x0e001e13, 0x1d003f13, 0x1c0e2312,   // lt.pl..._640 sr.ru..._650 sw.hr..._650 uk.ru.bg_654\n  // [0af0]\n  0x0b003814, 0x10006602, 0x2b004209, 0x15004002,   // ca.no..._660 af.sv..._220 mt.cy..._440 sl.lv..._220\n  0x1f001509, 0x17000f22, 0x45001f12, 0x0f000114,   // lv.ga..._440 es.ro..._870 ga.sk..._640 en.es..._660\n  0x15450c12, 0x18002e13, 0x29271f02, 0x08004209,   // pl.sk.lv_654 sq.hu..._650 ga.id.ms_222 mt.it..._440\n  0x02001012, 0x2e000202, 0x1e1d1512, 0x06002b11,   // sv.da..._640 da.sq..._220 lv.hr.sr_654 cy.de..._630\n  // [0b00]\n  0x0b0c0213, 0x0f0d1faf, 0x030c1209, 0x37003314,   // da.pl.no_665 ga.pt.es_655 cs.pl.nl_444 ur.ar..._660\n  0x66002b09, 0x02061009, 0x0f3f1708, 0x04161508,   // cy.af..._440 sv.de.da_444 ro.sw.es_443 lv.lt.fi_443\n  0x19162708, 0x100b0207, 0x2e2729a4, 0x18001013,   // id.lt.et_443 da.no.sv_432 ms.id.sq_433 sv.hu..._650\n  0x1f000d13, 0x0d0f1f60, 0x1f003f23, 0x1f000d12,   // pt.ga..._650 ga.es.pt_664 sw.ga..._880 pt.ga..._640\n  // [0b10]\n  0x06036660, 0x251c1e14, 0x21022ba4, 0x301e2512,   // af.nl.de_664 sr.bg.mk_666 cy.da.tl_433 mk.sr.be_654\n  0x42001f13, 0x27142902, 0x0b021009, 0x1f008c09,   // ga.mt..._650 ms.is.id_222 sv.da.no_444 ht.ga..._440\n  0x401d1ea4, 0x1a000608, 0x21001902, 0x19001a09,   // sr.hr.sl_433 de.xxx..._430 et.tl..._220 xxx.et..._440\n  0x1c3025af, 0x2b4b29af, 0x4b002909, 0x3f004b02,   // mk.be.bg_655 ms.az.cy_655 ms.az..._440 az.sw..._220\n  // [0b20]\n  0x66031908, 0x23300e14, 0x45001414, 0x10000c14,   // et.nl.af_443 ru.be.uk_666 is.sk..._660 pl.sv..._660\n  0x17006614, 0x20000109, 0x19000d14, 0x1d0c1902,   // af.ro..._660 en.gl..._440 pt.et..._660 et.pl.hr_222\n  0x66003f02, 0x151d1e09, 0x050b0109, 0x42002213,   // sw.af..._220 sr.hr.lv_444 en.no.fr_444 tr.mt..._650\n  0x450c1a02, 0x1d184208, 0x15004009, 0x15000f21,   // xxx.pl.sk_222 mt.hu.hr_443 sl.lv..._440 es.lv..._860\n  // [0b30]\n  0x45001e14, 0x2e041908, 0x0f003809, 0x0d000f09,   // sr.sk..._660 et.fi.sq_443 ca.es..._440 es.pt..._440\n  0x03003a08, 0x66002b23, 0x27006602, 0x3f000402,   // eu.nl..._430 cy.af..._880 af.id..._220 fi.sw..._220\n  0x02000309, 0x23001c11, 0x06001a08, 0x1d3f1e08,   // nl.da..._440 bg.uk..._630 xxx.de..._430 sr.sw.hr_443\n  0x38000f21, 0x01008c02, 0x19000422, 0x38000113,   // es.ca..._860 ht.en..._220 fi.et..._870 en.ca..._650\n  // [0b40]\n  0x10001a02, 0x12404502, 0x3a001821, 0x03003f09,   // xxx.sv..._220 sk.sl.cs_222 hu.eu..._860 sw.nl..._440\n  0x2e3f2708, 0x27146602, 0x1d001208, 0x21451012,   // id.sw.sq_443 af.is.id_222 cs.hr..._430 sv.sk.tl_654\n  0x19003f14, 0x23001c12, 0x1d004502, 0x12164509,   // sw.et..._660 bg.uk..._640 sk.hr..._220 sk.lt.cs_444\n  0x04000f02, 0x1d001614, 0x0f080d55, 0x1e001a08,   // es.fi..._220 lt.hr..._660 pt.it.es_442 xxx.sr..._430\n  // [0b50]\n  0x05001709, 0x1f000f08, 0x0e233012, 0x16002909,   // ro.fr..._440 es.ga..._430 be.uk.ru_654 ms.lt..._440\n  0x1e1d4509, 0x4b002902, 0x29044202, 0x18002109,   // sk.hr.sr_444 ms.az..._220 mt.fi.ms_222 tl.hu..._440\n  0x22294b60, 0x4e003721, 0x18002102, 0x06001022,   // az.ms.tr_664 ar.fa..._860 tl.hu..._220 sv.de..._870\n  0x66008c14, 0x23251c11, 0x18004209, 0x300e2309,   // ht.af..._660 bg.mk.uk_653 mt.hu..._440 uk.ru.be_444\n  // [0b60]\n  0x8c000414, 0x0b001822, 0x1f002214, 0x20080107,   // fi.ht..._660 hu.no..._870 tr.ga..._660 en.it.gl_432\n  0x040b8c08, 0x02000107, 0x42001623, 0x1d008c22,   // ht.no.fi_443 en.da..._420 lt.mt..._880 ht.hr..._870\n  0x2b000b21, 0x2b001a09, 0x12001008, 0x2b001613,   // no.cy..._860 xxx.cy..._440 sv.cs..._430 lt.cy..._650\n  0x33003714, 0x3a000f07, 0x10006623, 0x10000408,   // ar.ur..._660 es.eu..._420 af.sv..._880 fi.sv..._430\n  // [0b70]\n  0x06002b22, 0x660b1409, 0x06660314, 0x05002b13,   // cy.de..._870 is.no.af_444 nl.af.de_666 cy.fr..._650\n  0x45191602, 0x06101960, 0x0d000f13, 0x45000602,   // lt.et.sk_222 et.sv.de_664 es.pt..._650 de.sk..._220\n  0x21002b02, 0x22003a09, 0x1e0e3002, 0x0e233008,   // cy.tl..._220 eu.tr..._440 be.ru.sr_222 be.uk.ru_443\n  0x06003a08, 0x12001509, 0x1a002708, 0x16000f14,   // eu.de..._430 lv.cs..._440 id.xxx..._430 es.lt..._660\n  // [0b80]\n  0x3a002714, 0x23001e09, 0x05170c08, 0x19004509,   // id.eu..._660 sr.uk..._440 pl.ro.fr_443 sk.et..._440\n  0x040c1912, 0x04100607, 0x1c1e2509, 0x230e3014,   // et.pl.fi_654 de.sv.fi_432 mk.sr.bg_444 be.ru.uk_666\n  0x451f1208, 0x0b0419ad, 0x42000614, 0x05004202,   // cs.ga.sk_443 et.fi.no_643 de.mt..._660 mt.fr..._220\n  0x028c0b13, 0x66000123, 0x40004522, 0x19100b08,   // no.ht.da_665 en.af..._880 sk.sl..._870 no.sv.et_443\n  // [0b90]\n  0x04001814, 0x30230e11, 0x1f451a09, 0x08006609,   // hu.fi..._660 ru.uk.be_653 xxx.sk.ga_444 af.it..._440\n  0x1d001709, 0x3f011608, 0x19002e13, 0x2e002909,   // ro.hr..._440 lt.en.sw_443 sq.et..._650 ms.sq..._440\n  0x3f292707, 0x12011aa4, 0x21002709, 0x43002b09,   // id.ms.sw_432 xxx.en.cs_433 id.tl..._440 cy.vi..._440\n  0x3f000608, 0x1e0e2314, 0x0b050107, 0x45004022,   // de.sw..._430 uk.ru.sr_666 en.fr.no_432 sl.sk..._870\n  // [0ba0]\n  0x04004202, 0x14003a21, 0x04001f14, 0x15003f02,   // mt.fi..._220 eu.is..._860 ga.fi..._660 sw.lv..._220\n  0x06000413, 0x16001502, 0x05000214, 0x21001f02,   // fi.de..._650 lv.lt..._220 da.fr..._660 ga.tl..._220\n  0x40001a02, 0x120666a4, 0x29000514, 0x20002b23,   // xxx.sl..._220 af.de.cs_433 fr.ms..._660 cy.gl..._880\n  0x19000412, 0x08001d14, 0x29180107, 0x4b001209,   // fi.et..._640 hr.it..._660 en.hu.ms_432 cs.az..._440\n  // [0bb0]\n  0x17001809, 0x2e3a0d08, 0x3f003a02, 0x1d0d1e02,   // hu.ro..._440 pt.eu.sq_443 eu.sw..._220 sr.pt.hr_222\n  0x38004209, 0x1d401708, 0x4e003309, 0x1a063a09,   // mt.ca..._440 ro.sl.hr_443 ur.fa..._440 eu.de.xxx_444\n  0x1c003009, 0x05002708, 0x1c250e12, 0x1d003a14,   // be.bg..._440 id.fr..._430 ru.mk.bg_654 eu.hr..._660\n  0x03000209, 0x23001e23, 0x29002b22, 0x42003f13,   // da.nl..._440 sr.uk..._880 cy.ms..._870 sw.mt..._650\n  // [0bc0]\n  0x0d001702, 0x2b001602, 0x2b001708, 0x272916a4,   // ro.pt..._220 lt.cy..._220 ro.cy..._430 lt.ms.id_433\n  0x00002b2d, 0x2e224b60, 0x06002b23, 0x03000202,   // cy......_A00 az.tr.sq_664 cy.de..._880 da.nl..._220\n  0x29001714, 0x21002b23, 0x45000302, 0x03660208,   // ro.ms..._660 cy.tl..._880 nl.sk..._220 da.af.nl_443\n  0x2b002e12, 0x29002b13, 0x29001602, 0x161921a4,   // sq.cy..._640 cy.ms..._650 lt.ms..._220 tl.et.lt_433\n  // [0bd0]\n  0x29002b23, 0x01298c12, 0x1c1e0e07, 0x01001502,   // cy.ms..._880 ht.ms.en_654 ru.sr.bg_432 lv.en..._220\n  0x1f000808, 0x19003f02, 0x29004202, 0x0c001614,   // it.ga..._430 sw.et..._220 mt.ms..._220 lt.pl..._660\n  0x02002b09, 0x1e401d12, 0x10020baf, 0x38000502,   // cy.da..._440 hr.sl.sr_654 no.da.sv_655 fr.ca..._220\n  0x14000b08, 0x2b014209, 0x0c002702, 0x06004213,   // no.is..._430 mt.en.cy_444 id.pl..._220 mt.de..._650\n  // [0be0]\n  0x0d000522, 0x06001602, 0x29271802, 0x00003f2d,   // fr.pt..._870 lt.de..._220 hu.id.ms_222 sw......_A00\n  0x19002109, 0x060403a4, 0x271729a4, 0x021410a4,   // tl.et..._440 nl.fi.de_433 ms.ro.id_433 sv.is.da_433\n  0x0d200107, 0x38002909, 0x19000614, 0x29273a02,   // en.gl.pt_432 ms.ca..._440 de.et..._660 eu.id.ms_222\n  0x27011a02, 0x06006608, 0x4b002b08, 0x162b6612,   // xxx.en.id_222 af.de..._430 cy.az..._430 af.cy.lt_654\n  // [0bf0]\n  0x0b272907, 0x1e1d1509, 0x8c000509, 0x19001002,   // ms.id.no_432 lv.hr.sr_444 fr.ht..._440 sv.et..._220\n  0x10000414, 0x06001f02, 0x0600100c, 0x0d002202,   // fi.sv..._660 ga.de..._220 sv.de..._530 tr.pt..._220\n  0x1e1d4009, 0x22004212, 0x1d4045a4, 0x42001f07,   // sl.hr.sr_444 mt.tr..._640 sk.sl.hr_433 ga.mt..._420\n  0x450f2b02, 0x04001f13, 0x10001912, 0x0e231e08,   // cy.es.sk_222 ga.fi..._650 et.sv..._640 sr.uk.ru_443\n\n  // [0c00]\n  0x1a000613, 0x0c002e14, 0x0c001e14, 0x01000523,   // de.xxx..._650 sq.pl..._660 sr.pl..._660 fr.en..._880\n  0x22003f02, 0x0c451212, 0x40004509, 0x1a002214,   // sw.tr..._220 cs.sk.pl_654 sk.sl..._440 tr.xxx..._660\n  0x27004202, 0x1d170c02, 0x1e1d4055, 0x10001823,   // mt.id..._220 pl.ro.hr_222 sl.hr.sr_442 hu.sv..._880\n  0x66030612, 0x01004202, 0x3a001702, 0x0c001214,   // de.nl.af_654 mt.en..._220 ro.eu..._220 cs.pl..._660\n  // [0c10]\n  0x06008c02, 0x12050107, 0x45001723, 0x1f000823,   // ht.de..._220 en.fr.cs_432 ro.sk..._880 it.ga..._880\n  0x8c214bad, 0x380f42a4, 0x20000814, 0x06220312,   // az.tl.ht_643 mt.es.ca_433 it.gl..._660 nl.tr.de_654\n  0x23003011, 0x251e0e14, 0x15000c21, 0x0f001902,   // be.uk..._630 ru.sr.mk_666 pl.lv..._860 et.es..._220\n  0x20001923, 0x121e1d12, 0x401e1d09, 0x38002002,   // et.gl..._880 hr.sr.cs_654 hr.sr.sl_444 gl.ca..._220\n  // [0c20]\n  0x1e000c14, 0x1e001902, 0x1d660b02, 0x66002108,   // pl.sr..._660 et.sr..._220 no.af.hr_222 tl.af..._430\n  0x1c1e25a4, 0x193f1508, 0x45124302, 0x30001e13,   // mk.sr.bg_433 lv.sw.et_443 vi.cs.sk_222 sr.be..._650\n  0x0c008c02, 0x1e1d42a4, 0x160c1508, 0x22001a14,   // ht.pl..._220 mt.hr.sr_433 lv.pl.lt_443 xxx.tr..._660\n  0x22002702, 0x21008c09, 0x20000f02, 0x3a003809,   // id.tr..._220 ht.tl..._440 es.gl..._220 ca.eu..._440\n  // [0c30]\n  0x40004502, 0x14000b13, 0x14004213, 0x1d002e02,   // sk.sl..._220 no.is..._650 mt.is..._650 sq.hr..._220\n  0x0f002011, 0x3a002709, 0x0c190407, 0x06004b02,   // gl.es..._630 id.eu..._440 fi.et.pl_432 az.de..._220\n  0x1f001412, 0x1a001708, 0x19001423, 0x43002102,   // is.ga..._640 ro.xxx..._430 is.et..._880 tl.vi..._220\n  0x1f000502, 0x16152909, 0x124542a4, 0x06001a09,   // fr.ga..._220 ms.lv.lt_444 mt.sk.cs_433 xxx.de..._440\n  // [0c40]\n  0x04011a09, 0x4b1a3a08, 0x08003809, 0x04001009,   // xxx.en.fi_444 eu.xxx.az_443 ca.it..._440 sv.fi..._440\n  0x2b141809, 0x25000e21, 0x03000b02, 0x1d1e1602,   // hu.is.cy_444 ru.mk..._860 no.nl..._220 lt.sr.hr_222\n  0x29000209, 0x18001014, 0x1a001909, 0x1a001509,   // da.ms..._440 sv.hu..._660 et.xxx..._440 lv.xxx..._440\n  0x03000609, 0x10000412, 0x1c003014, 0x22001708,   // de.nl..._440 fi.sv..._640 be.bg..._660 ro.tr..._430\n  // [0c50]\n  0x30002311, 0x43001709, 0x27101812, 0x06000214,   // uk.be..._630 ro.vi..._440 hu.sv.id_654 da.de..._660\n  0x3a002b14, 0x45002e14, 0x45003809, 0x03001812,   // cy.eu..._660 sq.sk..._660 ca.sk..._440 hu.nl..._640\n  0x18000c21, 0x0c001813, 0x45001408, 0x66030d12,   // pl.hu..._860 hu.pl..._650 is.sk..._430 pt.nl.af_654\n  0x04008c13, 0x12002702, 0x050d8ca4, 0x2e0d0107,   // ht.fi..._650 id.cs..._220 ht.pt.fr_433 en.pt.sq_432\n  // [0c60]\n  0x8c000522, 0x01000d09, 0x1a004b08, 0x05008c22,   // fr.ht..._870 pt.en..._440 az.xxx..._430 ht.fr..._870\n  0x00000b2d, 0x1c230e09, 0x1e004502, 0x05000408,   // no......_A00 ru.uk.bg_444 sk.sr..._220 fi.fr..._430\n  0x12000523, 0x8c000523, 0x01001202, 0x10006608,   // fr.cs..._880 fr.ht..._880 cs.en..._220 af.sv..._430\n  0x421e1d12, 0x18001907, 0x16004514, 0x1c302508,   // hr.sr.mt_654 et.hu..._420 sk.lt..._660 mk.be.bg_443\n  // [0c70]\n  0x45002908, 0x08000423, 0x020b1060, 0x02100b08,   // ms.sk..._430 fi.it..._880 sv.no.da_664 no.sv.da_443\n  0x0e1c2313, 0x06001902, 0x1d001209, 0x0b0c1909,   // uk.bg.ru_665 et.de..._220 cs.hr..._440 et.pl.no_444\n  0x01001909, 0x0d003a02, 0x06000b02, 0x0b100260,   // et.en..._440 eu.pt..._220 no.de..._220 da.sv.no_664\n  0x66002e12, 0x01004002, 0x05000413, 0x1f000413,   // sq.af..._640 sl.en..._220 fi.fr..._650 fi.ga..._650\n  // [0c80]\n  0x03063802, 0x1e1d0502, 0x04003f07, 0x27000509,   // ca.de.nl_222 fr.hr.sr_222 sw.fi..._420 fr.id..._440\n  0x151e1daf, 0x0b000623, 0x14150608, 0x22001413,   // hr.sr.lv_655 de.no..._880 de.lv.is_443 is.tr..._650\n  0x100b0214, 0x300e23a4, 0x45004009, 0x45041902,   // da.no.sv_666 uk.ru.be_433 sl.sk..._440 et.fi.sk_222\n  0x120c45af, 0x42001413, 0x45003f08, 0x0f008c02,   // sk.pl.cs_655 is.mt..._650 sw.sk..._430 ht.es..._220\n  // [0c90]\n  0x42002b09, 0x16421413, 0x1a000612, 0x8c004313,   // cy.mt..._440 is.mt.lt_665 de.xxx..._640 vi.ht..._650\n  0x06000412, 0x02000302, 0x250e1c09, 0x1f003f02,   // fi.de..._640 nl.da..._220 bg.ru.mk_444 sw.ga..._220\n  0x40002214, 0x17001a02, 0x0d001f22, 0x1d001f14,   // tr.sl..._660 xxx.ro..._220 ga.pt..._870 ga.hr..._660\n  0x14002b07, 0x3f000b02, 0x184003af, 0x5c000718,   // cy.is..._420 no.sw..._220 nl.sl.hu_655 iw.yi..._740\n  // [0ca0]\n  0x2b001512, 0x1d224509, 0x2e004213, 0x14181009,   // lv.cy..._640 sk.tr.hr_444 mt.sq..._650 sv.hu.is_444\n  0x01002b09, 0x03002e13, 0x300e1eaf, 0x38000d23,   // cy.en..._440 sq.nl..._650 sr.ru.be_655 pt.ca..._880\n  0x38050f07, 0x43002909, 0x42001002, 0x0e3023af,   // es.fr.ca_432 ms.vi..._440 sv.mt..._220 uk.be.ru_655\n  0x66060308, 0x0e1e2512, 0x8c004b14, 0x66000223,   // nl.de.af_443 mk.sr.ru_654 az.ht..._660 da.af..._880\n  // [0cb0]\n  0x40000314, 0x1d100202, 0x02100b09, 0x0e001e08,   // nl.sl..._660 da.sv.hr_222 no.sv.da_444 sr.ru..._430\n  0x12002b02, 0x43002e14, 0x3f001709, 0x00002301,   // cy.cs..._220 sq.vi..._660 ro.sw..._440 uk......_200\n  0x42002e09, 0x661a03a4, 0x06000409, 0x06010208,   // sq.mt..._440 nl.xxx.af_433 fi.de..._440 da.en.de_443\n  0x1c002312, 0x06022907, 0x27218c14, 0x020b1814,   // uk.bg..._640 ms.da.de_432 ht.tl.id_666 hu.no.da_666\n  // [0cc0]\n  0x0b000302, 0x03001802, 0x0d0f0802, 0x10001608,   // nl.no..._220 hu.nl..._220 it.es.pt_222 lt.sv..._430\n  0x1e001713, 0x102b0208, 0x01002b22, 0x04001713,   // ro.sr..._650 da.cy.sv_443 cy.en..._870 ro.fi..._650\n  0x42000808, 0x04001714, 0x22001813, 0x14100608,   // it.mt..._430 ro.fi..._660 hu.tr..._650 de.sv.is_443\n  0x10020ba4, 0x66002e08, 0x40004523, 0x3f001708,   // no.da.sv_433 sq.af..._430 sk.sl..._880 ro.sw..._430\n  // [0cd0]\n  0x3f180107, 0x1a003f14, 0x45061208, 0x0d004509,   // en.hu.sw_432 sw.xxx..._660 cs.de.sk_443 sk.pt..._440\n  0x0f001002, 0x12164502, 0x12454012, 0x22003f13,   // sv.es..._220 sk.lt.cs_222 sl.sk.cs_654 sw.tr..._650\n  0x3a002213, 0x33004e20, 0x1e0d1d02, 0x43001e14,   // tr.eu..._650 fa.ur..._850 hr.pt.sr_222 sr.vi..._660\n  0x0d0f08a4, 0x0d0f0808, 0x19001d14, 0x0d0f0809,   // it.es.pt_433 it.es.pt_443 hr.et..._660 it.es.pt_444\n  // [0ce0]\n  0x1d1e1702, 0x1c300ea4, 0x120c4514, 0x2e001002,   // ro.sr.hr_222 ru.be.bg_433 sk.pl.cs_666 sv.sq..._220\n  0x401e1d60, 0x29001712, 0x0f011712, 0x14001f20,   // hr.sr.sl_664 ro.ms..._640 ro.en.es_654 ga.is..._850\n  0x06141013, 0x12000412, 0x06001709, 0x1c1e25af,   // sv.is.de_665 fi.cs..._640 ro.de..._440 mk.sr.bg_655\n  0x08002902, 0x38002b02, 0x1e000e13, 0x380b1412,   // ms.it..._220 cy.ca..._220 ru.sr..._650 is.no.ca_654\n  // [0cf0]\n  0x196603a4, 0x15140b12, 0x30002321, 0x181a2108,   // nl.af.et_433 no.is.lv_654 uk.be..._860 tl.xxx.hu_443\n  0x19000d07, 0x02001008, 0x1a080109, 0x19001a14,   // pt.et..._420 sv.da..._430 en.it.xxx_444 xxx.et..._660\n  0x190d0b07, 0x03660b12, 0x04000607, 0x401d3f09,   // no.pt.et_432 no.af.nl_654 de.fi..._420 sw.hr.sl_444\n  0x04001922, 0x19000b09, 0x03001a02, 0x1e000802,   // et.fi..._870 no.et..._440 xxx.nl..._220 it.sr..._220\n  // [0d00]\n  0x1d002e14, 0x1e1d2707, 0x163f4512, 0x1c0e2514,   // sq.hr..._660 id.hr.sr_432 sk.sw.lt_654 mk.ru.bg_666\n  0x19100107, 0x06001521, 0x4b001809, 0x1d041908,   // en.sv.et_432 lv.de..._860 hu.az..._440 et.fi.hr_443\n  0x66001413, 0x1f004312, 0x45004002, 0x4e3733af,   // is.af..._650 vi.ga..._640 sl.sk..._220 ur.ar.fa_655\n  0x101d4208, 0x0c000602, 0x04002913, 0x1d1e2702,   // mt.hr.sv_443 de.pl..._220 ms.fi..._650 id.sr.hr_222\n  // [0d10]\n  0x1d450308, 0x1c0e2512, 0x1f001a08, 0x3f001f08,   // nl.sk.hr_443 mk.ru.bg_654 xxx.ga..._430 ga.sw..._430\n  0x2e1842af, 0x23001c09, 0x8c003f12, 0x04003a08,   // mt.hu.sq_655 bg.uk..._440 sw.ht..._640 eu.fi..._430\n  0x66000608, 0x03151208, 0x42006602, 0x1e001d20,   // de.af..._430 cs.lv.nl_443 af.mt..._220 hr.sr..._850\n  0x66030b55, 0x16180c12, 0x2b0119a4, 0x45290d02,   // no.nl.af_442 pl.hu.lt_654 et.en.cy_433 pt.ms.sk_222\n  // [0d20]\n  0x10190460, 0x1e031d02, 0x18000202, 0x06001912,   // fi.et.sv_664 hr.nl.sr_222 da.hu..._220 et.de..._640\n  0x06001908, 0x04002702, 0x0d380f14, 0x1a4b2207,   // et.de..._430 id.fi..._220 es.ca.pt_666 tr.az.xxx_432\n  0x00001f01, 0x1f000102, 0x04008c02, 0x0b100208,   // ga......_200 en.ga..._220 ht.fi..._220 da.sv.no_443\n  0x66000f23, 0x19004009, 0x12001702, 0x1f000108,   // es.af..._880 sl.et..._440 ro.cs..._220 en.ga..._430\n  // [0d30]\n  0x2b000408, 0x0c006602, 0x02001013, 0x1a001002,   // fi.cy..._430 af.pl..._220 sv.da..._650 sv.xxx..._220\n  0x10183f07, 0x43000514, 0x10003f14, 0x10002114,   // sw.hu.sv_432 fr.vi..._660 sw.sv..._660 tl.sv..._660\n  0x1a002121, 0x21004309, 0x334e3713, 0x1a002714,   // tl.xxx..._860 vi.tl..._440 ar.fa.ur_665 id.xxx..._660\n  0x04190b07, 0x19000d02, 0x0b001414, 0x0d001a08,   // no.et.fi_432 pt.et..._220 is.no..._660 xxx.pt..._430\n  // [0d40]\n  0x10000523, 0x1a016608, 0x0d003823, 0x1d043f02,   // fr.sv..._880 af.en.xxx_443 ca.pt..._880 sw.fi.hr_222\n  0x3a000202, 0x16081a11, 0x08001a02, 0x22001013,   // da.eu..._220 xxx.it.lt_653 xxx.it..._220 sv.tr..._650\n  0x0f003a09, 0x19003a14, 0x04192112, 0x0b002723,   // eu.es..._440 eu.et..._660 tl.et.fi_654 id.no..._880\n  0x18006612, 0x1a000309, 0x180d0f08, 0x45143a02,   // af.hu..._640 nl.xxx..._440 es.pt.hu_443 eu.is.sk_222\n  // [0d50]\n  0x401d1607, 0x1c0e2508, 0x0d002714, 0x3f003a08,   // lt.hr.sl_432 mk.ru.bg_443 id.pt..._660 eu.sw..._430\n  0x1c250e14, 0x2e403a11, 0x27212907, 0x080d3a08,   // ru.mk.bg_666 eu.sl.sq_653 ms.tl.id_432 eu.pt.it_443\n  0x21003a14, 0x1a002902, 0x1d1e4212, 0x22008c22,   // eu.tl..._660 ms.xxx..._220 mt.sr.hr_654 ht.tr..._870\n  0x1f291708, 0x1d004214, 0x1c251e07, 0x22218c60,   // ro.ms.ga_443 mt.hr..._660 sr.mk.bg_432 ht.tl.tr_664\n  // [0d60]\n  0x08002023, 0x1d002e09, 0x0f003808, 0x14000d14,   // gl.it..._880 sq.hr..._440 ca.es..._430 pt.is..._660\n  0x1f3814a4, 0x3f000602, 0x140f3802, 0x1f0f3809,   // is.ca.ga_433 de.sw..._220 ca.es.is_222 ca.es.ga_444\n  0x25002314, 0x0d002e02, 0x1f001813, 0x1e1d4202,   // uk.mk..._660 sq.pt..._220 hu.ga..._650 mt.hr.sr_222\n  0x12178c08, 0x0f381407, 0x12450502, 0x03000402,   // ht.ro.cs_443 is.ca.es_432 fr.sk.cs_222 fi.nl..._220\n  // [0d70]\n  0x172e1012, 0x140f3809, 0x06003823, 0x0e251c55,   // sv.sq.ro_654 ca.es.is_444 ca.de..._880 bg.mk.ru_442\n  0x1e1d8c09, 0x33003711, 0x14181fad, 0x1f12456f,   // ht.hr.sr_444 ar.ur..._630 ga.hu.is_643 sk.cs.ga_886\n  0x06004502, 0x45003814, 0x18451213, 0x0f000d08,   // sk.de..._220 ca.sk..._660 cs.sk.hu_665 pt.es..._430\n  0x380805a4, 0x42001d02, 0x29002721, 0x18124513,   // fr.it.ca_433 hr.mt..._220 id.ms..._860 sk.cs.hu_665\n  // [0d80]\n  0x27290d09, 0x12184513, 0x4b004209, 0x18124511,   // pt.ms.id_444 sk.hu.cs_665 mt.az..._440 sk.cs.hu_653\n  0x45160402, 0x22000609, 0x18124560, 0x0d000814,   // fi.lt.sk_222 de.tr..._440 sk.cs.hu_664 it.pt..._660\n  0x18001913, 0x3a003823, 0x17003823, 0x38400509,   // et.hu..._650 ca.eu..._880 ca.ro..._880 fr.sl.ca_444\n  0x02002914, 0x45001818, 0x450d0f02, 0x16000409,   // ms.da..._660 hu.sk..._740 es.pt.sk_222 fi.lt..._440\n  // [0d90]\n  0x15001614, 0x031805a4, 0x27293f02, 0x380d0f55,   // lt.lv..._660 fr.hu.nl_433 sw.ms.id_222 es.pt.ca_442\n  0x0f001609, 0x0d001802, 0x04001602, 0x2b004514,   // lt.es..._440 hu.pt..._220 lt.fi..._220 sk.cy..._660\n  0x0d0f1609, 0x230e1c13, 0x45000614, 0x12001e02,   // lt.es.pt_444 bg.ru.uk_665 de.sk..._660 sr.cs..._220\n  0x19002113, 0x103f1909, 0x3f1516af, 0x17001802,   // tl.et..._650 et.sw.sv_444 lt.lv.sw_655 hu.ro..._220\n  // [0da0]\n  0x16000d23, 0x19001d02, 0x1f006614, 0x16003a13,   // pt.lt..._880 hr.et..._220 af.ga..._660 eu.lt..._650\n  0x4b003f02, 0x10060508, 0x0b000602, 0x0d1910a4,   // sw.az..._220 fr.de.sv_443 de.no..._220 sv.et.pt_433\n  0x40030c11, 0x8c001009, 0x08001902, 0x3a000609,   // pl.nl.sl_653 sv.ht..._440 et.it..._220 de.eu..._440\n  0x10001913, 0x1e002214, 0x05001414, 0x18001414,   // et.sv..._650 tr.sr..._660 is.fr..._660 is.hu..._660\n  // [0db0]\n  0x0c036607, 0x06031faf, 0x251e3013, 0x0d660313,   // af.nl.pl_432 ga.nl.de_655 be.sr.mk_665 nl.af.pt_665\n  0x2e292713, 0x06000322, 0x08050108, 0x1e004009,   // id.ms.sq_665 nl.de..._870 en.fr.it_443 sl.sr..._440\n  0x02002707, 0x45121d02, 0x02001414, 0x2b001802,   // id.da..._420 hr.cs.sk_222 is.da..._660 hu.cy..._220\n  0x2b660312, 0x1e004013, 0x29210402, 0x0c001009,   // nl.af.cy_654 sl.sr..._650 fi.tl.ms_222 sv.pl..._440\n  // [0dc0]\n  0x0d001613, 0x12452e02, 0x05453a08, 0x451d16ac,   // lt.pt..._650 sq.sk.cs_222 eu.sk.fr_443 lt.hr.sk_632\n  0x18058c08, 0x02001514, 0x45001614, 0x04002114,   // ht.fr.hu_443 lv.da..._660 lt.sk..._660 tl.fi..._660\n  0x041605a4, 0x08000402, 0x45171d02, 0x0f000102,   // fr.lt.fi_433 fi.it..._220 hr.ro.sk_222 en.es..._220\n  0x66000614, 0x03000414, 0x05006608, 0x18660208,   // de.af..._660 fi.nl..._660 af.fr..._430 da.af.hu_443\n  // [0dd0]\n  0x40000309, 0x03000f02, 0x29002208, 0x081f0208,   // nl.sl..._440 es.nl..._220 tr.ms..._430 da.ga.it_443\n  0x14003f07, 0x17003813, 0x18003a13, 0x04000302,   // sw.is..._420 ca.ro..._650 eu.hu..._650 nl.fi..._220\n  0x66040313, 0x05000409, 0x03002709, 0x38000d08,   // nl.fi.af_665 fi.fr..._440 id.nl..._440 pt.ca..._430\n  0x19001f14, 0x4b000d02, 0x66000402, 0x18001f21,   // ga.et..._660 pt.az..._220 fi.af..._220 ga.hu..._860\n  // [0de0]\n  0x1d1e4014, 0x06001702, 0x42003a09, 0x3a001712,   // sl.sr.hr_666 ro.de..._220 eu.mt..._440 ro.eu..._640\n  0x04224b07, 0x40001e09, 0x2b001702, 0x66002b02,   // az.tr.fi_432 sr.sl..._440 ro.cy..._220 cy.af..._220\n  0x0b002e14, 0x290d4507, 0x12454302, 0x19004502,   // sq.no..._660 sk.pt.ms_432 vi.sk.cs_222 sk.et..._220\n  0x16001514, 0x43003a14, 0x27038ca4, 0x0d001409,   // lv.lt..._660 eu.vi..._660 ht.nl.id_433 is.pt..._440\n  // [0df0]\n  0x00000c2d, 0x12456602, 0x27223f02, 0x380f0d60,   // pl......_A00 af.sk.cs_222 sw.tr.id_222 pt.es.ca_664\n  0x27292b02, 0x380f0d09, 0x27000d02, 0x221d1e13,   // cy.ms.id_222 pt.es.ca_444 pt.id..._220 sr.hr.tr_665\n  0x380d0f13, 0x0f000d23, 0x050f0d08, 0x21000f09,   // es.pt.ca_665 pt.es..._880 pt.es.fr_443 es.tl..._440\n  0x3f001a09, 0x04421960, 0x04661909, 0x27180302,   // xxx.sw..._440 et.mt.fi_664 et.af.fi_444 nl.hu.id_222\n  // [0e00]\n  0x401d1e08, 0x02003a14, 0x08050107, 0x18000d08,   // sr.hr.sl_443 eu.da..._660 en.fr.it_432 pt.hu..._430\n  0x0d004502, 0x0e302512, 0x3f002e09, 0x16001509,   // sk.pt..._220 mk.be.ru_654 sq.sw..._440 lv.lt..._440\n  0x0f004302, 0x23000e22, 0x01002e02, 0x3f003809,   // vi.es..._220 ru.uk..._870 sq.en..._220 ca.sw..._440\n  0x3a001813, 0x1d004008, 0x0d002209, 0x1d1e40af,   // hu.eu..._650 sl.hr..._430 tr.pt..._440 sl.sr.hr_655\n  // [0e10]\n  0x29003f21, 0x15000809, 0x060127a4, 0x21451612,   // sw.ms..._860 it.lv..._440 id.en.de_433 lt.sk.tl_654\n  0x45002b13, 0x0c003f13, 0x8c000513, 0x0c001823,   // cy.sk..._650 sw.pl..._650 fr.ht..._650 hu.pl..._880\n  0x04191609, 0x21003f21, 0x21003f13, 0x0e1c2312,   // lt.et.fi_444 sw.tl..._860 sw.tl..._650 uk.bg.ru_654\n  0x1e1d0802, 0x08000f14, 0x1a004214, 0x2b291612,   // it.hr.sr_222 es.it..._660 mt.xxx..._660 lt.ms.cy_654\n  // [0e20]\n  0x16002109, 0x38002113, 0x0c001f02, 0x42000402,   // tl.lt..._440 tl.ca..._650 ga.pl..._220 fi.mt..._220\n  0x18000309, 0x12001d02, 0x12001e14, 0x45003808,   // nl.hu..._440 hr.cs..._220 sr.cs..._660 ca.sk..._430\n  0x8c000507, 0x182b2e12, 0x21061812, 0x19001012,   // fr.ht..._420 sq.cy.hu_654 hu.de.tl_654 sv.et..._640\n  0x04002213, 0x04000109, 0x0b3a0107, 0x2e002702,   // tr.fi..._650 en.fi..._440 en.eu.no_432 id.sq..._220\n  // [0e30]\n  0x0d002109, 0x3a003f08, 0x0f000809, 0x04003a14,   // tl.pt..._440 sw.eu..._430 it.es..._440 eu.fi..._660\n  0x14001209, 0x14451812, 0x15001611, 0x03008c14,   // cs.is..._440 hu.sk.is_654 lt.lv..._630 ht.nl..._660\n  0x04000b02, 0x12058c02, 0x04003a12, 0x1e401d09,   // no.fi..._220 ht.fr.cs_222 eu.fi..._640 hr.sl.sr_444\n  0x124540af, 0x40001d08, 0x0d000107, 0x16001512,   // sl.sk.cs_655 hr.sl..._430 en.pt..._420 lv.lt..._640\n  // [0e40]\n  0x01000b14, 0x8c054055, 0x00000601, 0x06004013,   // no.en..._660 sl.fr.ht_442 de......_200 sl.de..._650\n  0x2b001621, 0x121e1d60, 0x05003a02, 0x06041914,   // lt.cy..._860 hr.sr.cs_664 eu.fr..._220 et.fi.de_666\n  0x14002714, 0x3a001814, 0x1f450107, 0x05003f14,   // id.is..._660 hu.eu..._660 en.sk.ga_432 sw.fr..._660\n  0x101918af, 0x19000613, 0x19008c02, 0x4b000d12,   // hu.et.sv_655 de.et..._650 ht.et..._220 pt.az..._640\n  // [0e50]\n  0x1d002108, 0x22004214, 0x1d2e4260, 0x06000423,   // tl.hr..._430 mt.tr..._660 mt.sq.hr_664 fi.de..._880\n  0x1d004007, 0x423a08af, 0x250e3011, 0x3a001709,   // sl.hr..._420 it.eu.mt_655 be.ru.mk_653 ro.eu..._440\n  0x18000b07, 0x05002202, 0x66040309, 0x19660312,   // no.hu..._420 tr.fr..._220 nl.fi.af_444 nl.af.et_654\n  0x1e452e02, 0x8c000809, 0x22000509, 0x17000114,   // sq.sk.sr_222 it.ht..._440 fr.tr..._440 en.ro..._660\n  // [0e60]\n  0x3a000123, 0x27001802, 0x27292107, 0x050601a4,   // en.eu..._880 hu.id..._220 tl.ms.id_432 en.de.fr_433\n  0x3f3a1708, 0x0f003a08, 0x03001709, 0x0b000414,   // ro.eu.sw_443 eu.es..._430 ro.nl..._440 fi.no..._660\n  0x0c000814, 0x18000109, 0x8c002114, 0x05184513,   // it.pl..._660 en.hu..._440 tl.ht..._660 sk.hu.fr_665\n  0x450d0b07, 0x05008c02, 0x17080107, 0x0c004511,   // no.pt.sk_432 ht.fr..._220 en.it.ro_432 sk.pl..._630\n  // [0e70]\n  0x38171a08, 0x4b002913, 0x0d160fa4, 0x18001723,   // xxx.ro.ca_443 ms.az..._650 es.lt.pt_433 ro.hu..._880\n  0x0c003f14, 0x1c001e13, 0x0f001823, 0x1e008c02,   // sw.pl..._660 sr.bg..._650 hu.es..._880 ht.sr..._220\n  0x66030212, 0x3f0215af, 0x451d42a4, 0x40003f09,   // da.nl.af_654 lv.da.sw_655 mt.hr.sk_433 sw.sl..._440\n  0x14000f13, 0x2e001723, 0x66030509, 0x21000f02,   // es.is..._650 ro.sq..._880 fr.nl.af_444 es.tl..._220\n  // [0e80]\n  0x12404509, 0x1e000109, 0x0e001e12, 0x451d1209,   // sk.sl.cs_444 en.sr..._440 sr.ru..._640 cs.hr.sk_444\n  0x050d0109, 0x23001c13, 0x148c0b09, 0x15002b22,   // en.pt.fr_444 bg.uk..._650 no.ht.is_444 cy.lv..._870\n  0x1e1d0402, 0x1d0806a4, 0x1c0e1e09, 0x45273f02,   // fi.hr.sr_222 de.it.hr_433 sr.ru.bg_444 sw.id.sk_222\n  0x22001e09, 0x08000523, 0x1a000314, 0x02001814,   // sr.tr..._440 fr.it..._880 nl.xxx..._660 hu.da..._660\n  // [0e90]\n  0x18002e09, 0x05081a14, 0x3f001a12, 0x06001f14,   // sq.hu..._440 xxx.it.fr_666 xxx.sw..._640 ga.de..._660\n  0x03001a14, 0x03002114, 0x66003814, 0x01003a14,   // xxx.nl..._660 tl.nl..._660 ca.af..._660 eu.en..._660\n  0x38001702, 0x18004b14, 0x4b004309, 0x1a004509,   // ro.ca..._220 az.hu..._660 vi.az..._440 sk.xxx..._440\n  0x03001a09, 0x14000509, 0x01008c09, 0x66000609,   // xxx.nl..._440 fr.is..._440 ht.en..._440 de.af..._440\n  // [0ea0]\n  0x14060b55, 0x3a000f12, 0x0e1c1e60, 0x1d151e08,   // no.de.is_442 es.eu..._640 sr.bg.ru_664 sr.lv.hr_443\n  0x06002902, 0x05001f12, 0x1a003f02, 0x220c4b09,   // ms.de..._220 ga.fr..._640 sw.xxx..._220 az.pl.tr_444\n  0x3a1f0f60, 0x2e004209, 0x06001914, 0x0c452ea4,   // es.ga.eu_664 mt.sq..._440 et.de..._660 sq.sk.pl_433\n  0x04003f02, 0x193f0412, 0x1d004513, 0x1c1e2555,   // sw.fi..._220 fi.sw.et_654 sk.hr..._650 mk.sr.bg_442\n  // [0eb0]\n  0x21003f09, 0x30000e21, 0x0f0d1f14, 0x0f001f08,   // sw.tl..._440 ru.be..._860 ga.pt.es_666 ga.es..._430\n  0x05002014, 0x08004014, 0x18000b02, 0x19401d08,   // gl.fr..._660 sl.it..._660 no.hu..._220 hr.sl.et_443\n  0x2e001912, 0x1e000808, 0x1f000809, 0x060b02a4,   // et.sq..._640 it.sr..._430 it.ga..._440 da.no.de_433\n  0x16001523, 0x15006602, 0x451d1e09, 0x01451a09,   // lv.lt..._880 af.lv..._220 sr.hr.sk_444 xxx.sk.en_444\n  // [0ec0]\n  0x45000808, 0x27003802, 0x40001909, 0x1d2e1e07,   // it.sk..._430 ca.id..._220 et.sl..._440 sr.sq.hr_432\n  0x451e1d08, 0x16061507, 0x04001802, 0x1d1e2e11,   // hr.sr.sk_443 lv.de.lt_432 hu.fi..._220 sq.sr.hr_653\n  0x3a003814, 0x18002923, 0x011a18a4, 0x04001614,   // ca.eu..._660 ms.hu..._880 hu.xxx.en_433 lt.fi..._660\n  0x401e1d08, 0x301c0e12, 0x2b001712, 0x16004002,   // hr.sr.sl_443 ru.bg.be_654 ro.cy..._640 sl.lt..._220\n  // [0ed0]\n  0x06001608, 0x04002914, 0x04050107, 0x2b181fa4,   // lt.de..._430 ms.fi..._660 en.fr.fi_432 ga.hu.cy_433\n  0x14061508, 0x2e001e02, 0x38003a02, 0x3f008c13,   // lv.de.is_443 sr.sq..._220 eu.ca..._220 ht.sw..._650\n  0x1e401d13, 0x401d1e02, 0x0c001621, 0x14001902,   // hr.sl.sr_665 sr.hr.sl_222 lt.pl..._860 et.is..._220\n  0x01001e09, 0x29000114, 0x00002e01, 0x02004023,   // sr.en..._440 en.ms..._660 sq......_200 sl.da..._880\n  // [0ee0]\n  0x23003021, 0x29008c09, 0x30001c11, 0x19036613,   // be.uk..._860 ht.ms..._440 bg.be..._630 af.nl.et_665\n  0x22000f02, 0x18000502, 0x02002b02, 0x1d041402,   // es.tr..._220 fr.hu..._220 cy.da..._220 is.fi.hr_222\n  0x22003f12, 0x06051409, 0x1e1d0202, 0x2b000c12,   // sw.tr..._640 is.fr.de_444 da.hr.sr_222 pl.cy..._640\n  0x230e3013, 0x38001721, 0x0b3a42af, 0x45150c02,   // be.ru.uk_665 ro.ca..._860 mt.eu.no_655 pl.lv.sk_222\n  // [0ef0]\n  0x38003a22, 0x18000814, 0x18000c13, 0x0d0f1008,   // eu.ca..._870 it.hu..._660 pl.hu..._650 sv.es.pt_443\n  0x010d17a4, 0x45123802, 0x18000c22, 0x16000402,   // ro.pt.en_433 ca.cs.sk_222 pl.hu..._870 fi.lt..._220\n  0x14002e13, 0x27001a08, 0x1f080109, 0x060d6609,   // sq.is..._650 xxx.id..._430 en.it.ga_444 af.pt.de_444\n  0x2e000414, 0x06002e09, 0x38000f09, 0x66002902,   // fi.sq..._660 sq.de..._440 es.ca..._440 ms.af..._220\n  // [0f00]\n  0x1a004b09, 0x122b4508, 0x45004309, 0x0f000209,   // az.xxx..._440 sk.cy.cs_443 vi.sk..._440 da.es..._440\n  0x45001714, 0x0d000309, 0x0f003a14, 0x0d000502,   // ro.sk..._660 nl.pt..._440 eu.es..._660 fr.pt..._220\n  0x0d000f07, 0x0e001e22, 0x14000307, 0x03662708,   // es.pt..._420 sr.ru..._870 nl.is..._420 id.af.nl_443\n  0x04190309, 0x3a001602, 0x3f001813, 0x22001202,   // nl.et.fi_444 lt.eu..._220 hu.sw..._650 cs.tr..._220\n  // [0f10]\n  0x01000609, 0x14001802, 0x03000109, 0x1e230e02,   // de.en..._440 hu.is..._220 en.nl..._440 ru.uk.sr_222\n  0x18124509, 0x160f2013, 0x16002023, 0x0d080109,   // sk.cs.hu_444 gl.es.lt_665 gl.lt..._880 en.it.pt_444\n  0x0f001402, 0x200d0f08, 0x18223a13, 0x4b2e8ca4,   // is.es..._220 es.pt.gl_443 eu.tr.hu_665 ht.sq.az_433\n  0x15041908, 0x43004202, 0x14451213, 0x211002a4,   // et.fi.lv_443 mt.vi..._220 cs.sk.is_665 da.sv.tl_433\n  // [0f20]\n  0x21000b02, 0x3a001523, 0x06004009, 0x17001f13,   // no.tl..._220 lv.eu..._880 sl.de..._440 ga.ro..._650\n  0x16383a08, 0x0b001614, 0x14000f14, 0x3a001522,   // eu.ca.lt_443 lt.no..._660 es.is..._660 lv.eu..._870\n  0x14200f12, 0x0d430f08, 0x20000f14, 0x030466a4,   // es.gl.is_654 es.vi.pt_443 es.gl..._660 af.fi.nl_433\n  0x0d002902, 0x8c002714, 0x2e004208, 0x3a002102,   // ms.pt..._220 id.ht..._660 mt.sq..._430 tl.eu..._220\n  // [0f30]\n  0x06003a09, 0x22004223, 0x42003a02, 0x06000823,   // eu.de..._440 mt.tr..._880 eu.mt..._220 it.de..._880\n  0x30001e20, 0x661e1da4, 0x05001a09, 0x18002913,   // sr.be..._850 hr.sr.af_433 xxx.fr..._440 ms.hu..._650\n  0x04001622, 0x19001823, 0x1e401d14, 0x14000f09,   // lt.fi..._870 hu.et..._880 hr.sl.sr_666 es.is..._440\n  0x0000042d, 0x45030107, 0x2e003f09, 0x10002e09,   // fi......_A00 en.nl.sk_432 sw.sq..._440 sq.sv..._440\n  // [0f40]\n  0x25000e23, 0x06041608, 0x27001602, 0x38172b07,   // ru.mk..._880 lt.fi.de_443 lt.id..._220 cy.ro.ca_432\n  0x03000123, 0x04003a09, 0x03004002, 0x230e1e60,   // en.nl..._880 eu.fi..._440 sl.nl..._220 sr.ru.uk_664\n  0x15000602, 0x18001212, 0x10003802, 0x14000213,   // de.lv..._220 cs.hu..._640 ca.sv..._220 da.is..._650\n  0x18002708, 0x182729a4, 0x230e3009, 0x3a000602,   // id.hu..._430 ms.id.hu_433 be.ru.uk_444 de.eu..._220\n  // [0f50]\n  0x0b000c09, 0x10003809, 0x291a3f02, 0x3a001214,   // pl.no..._440 ca.sv..._440 sw.xxx.ms_222 cs.eu..._660\n  0x273a0107, 0x27182902, 0x45061502, 0x05003809,   // en.eu.id_432 ms.hu.id_222 lv.de.sk_222 ca.fr..._440\n  0x22454b13, 0x8c003f23, 0x228c3a07, 0x1a008c13,   // az.sk.tr_665 sw.ht..._880 eu.ht.tr_432 ht.xxx..._650\n  0x22008c12, 0x18000302, 0x06002909, 0x8c053f08,   // ht.tr..._640 nl.hu..._220 ms.de..._440 sw.fr.ht_443\n  // [0f60]\n  0x1a008c14, 0x272904a4, 0x300e2308, 0x01101a02,   // ht.xxx..._660 fi.ms.id_433 uk.ru.be_443 xxx.sv.en_222\n  0x8c006607, 0x3f008c09, 0x66218ca4, 0x2e008c22,   // af.ht..._420 ht.sw..._440 ht.tl.af_433 ht.sq..._870\n  0x0000422d, 0x19000502, 0x17000f02, 0x12450402,   // mt......_A00 fr.et..._220 es.ro..._220 fi.sk.cs_222\n  0x12004512, 0x12001a09, 0x17000d08, 0x230e1c14,   // sk.cs..._640 xxx.cs..._440 pt.ro..._430 bg.ru.uk_666\n  // [0f70]\n  0x3a003f13, 0x0e231c13, 0x8c002e08, 0x12450602,   // sw.eu..._650 bg.uk.ru_665 sq.ht..._430 de.sk.cs_222\n  0x2b272909, 0x05002b09, 0x2b020b60, 0x15002e02,   // ms.id.cy_444 cy.fr..._440 no.da.cy_664 sq.lv..._220\n  0x0c001912, 0x033f6607, 0x031466a4, 0x03002e14,   // et.pl..._640 af.sw.nl_432 af.is.nl_433 sq.nl..._660\n  0x29002e14, 0x06002e12, 0x40190412, 0x04000107,   // sq.ms..._660 sq.de..._640 fi.et.sl_654 en.fi..._420\n  // [0f80]\n  0x04002709, 0x15001902, 0x04002e09, 0x15002107,   // id.fi..._440 et.lv..._220 sq.fi..._440 tl.lv..._420\n  0x15000b02, 0x2b1a06a4, 0x10002e02, 0x3f002e02,   // no.lv..._220 de.xxx.cy_433 sq.sv..._220 sq.sw..._220\n  0x0c001809, 0x22002b13, 0x27000b07, 0x33374e55,   // hu.pl..._440 cy.tr..._650 no.id..._420 fa.ar.ur_442\n  0x4b2e2212, 0x8c1e1d08, 0x05001209, 0x37004e20,   // tr.sq.az_654 hr.sr.ht_443 cs.fr..._440 fa.ar..._850\n  // [0f90]\n  0x3a000509, 0x05002109, 0x151e1d13, 0x251e1c08,   // fr.eu..._440 tl.fr..._440 hr.sr.lv_665 bg.sr.mk_443\n  0x251e0e07, 0x21004b23, 0x141d2109, 0x251c1e13,   // ru.sr.mk_432 az.tl..._880 tl.hr.is_444 sr.bg.mk_665\n  0x0e251ea4, 0x22008c02, 0x4b002714, 0x1f001909,   // sr.mk.ru_433 ht.tr..._220 id.az..._660 et.ga..._440\n  0x3f430412, 0x43000421, 0x1e1d8c02, 0x43002108,   // fi.vi.sw_654 fi.vi..._860 ht.hr.sr_222 tl.vi..._430\n  // [0fa0]\n  0x230e2508, 0x08002123, 0x14002709, 0x16004314,   // mk.ru.uk_443 tl.it..._880 id.is..._440 vi.lt..._660\n  0x3f000f02, 0x3a000613, 0x0e251e12, 0x06140b55,   // es.sw..._220 de.eu..._650 sr.mk.ru_654 no.is.de_442\n  0x04008c14, 0x3f000813, 0x29000202, 0x43000402,   // ht.fi..._660 it.sw..._650 da.ms..._220 fi.vi..._220\n  0x162b1f13, 0x19001409, 0x14004b14, 0x0f083a02,   // ga.cy.lt_665 is.et..._440 az.is..._660 eu.it.es_222\n  // [0fb0]\n  0x3f000c12, 0x08003f23, 0x22001602, 0x00000d2d,   // pl.sw..._640 sw.it..._880 lt.tr..._220 pt......_A00\n  0x21000809, 0x18000612, 0x0c006609, 0x01190b09,   // it.tl..._440 de.hu..._640 af.pl..._440 no.et.en_444\n  0x1f002b13, 0x2b002708, 0x01001008, 0x30231e13,   // cy.ga..._650 id.cy..._430 sv.en..._430 sr.uk.be_665\n  0x0e1c23a4, 0x04002b23, 0x4b002907, 0x380f2e12,   // uk.bg.ru_433 cy.fi..._880 ms.az..._420 sq.es.ca_654\n  // [0fc0]\n  0x30002514, 0x29006609, 0x174505a4, 0x19003809,   // mk.be..._660 af.ms..._440 fr.sk.ro_433 ca.et..._440\n  0x15012b02, 0x03000422, 0x04002e22, 0x19001413,   // cy.en.lv_222 fi.nl..._870 sq.fi..._870 is.et..._650\n  0x14000409, 0x1f000414, 0x3a041808, 0x03003a22,   // fi.is..._440 fi.ga..._660 hu.fi.eu_443 eu.nl..._870\n  0x1f002b09, 0x1e001d07, 0x19160412, 0x10000302,   // cy.ga..._440 hr.sr..._420 fi.lt.et_654 nl.sv..._220\n  // [0fd0]\n  0x1e1d4007, 0x00001401, 0x061e1d08, 0x2e004309,   // sl.hr.sr_432 is......_200 hr.sr.de_443 vi.sq..._440\n  0x06002907, 0x21000302, 0x06004514, 0x231e0eaf,   // ms.de..._420 nl.tl..._220 sk.de..._660 ru.sr.uk_655\n  0x1c002508, 0x21000808, 0x1d401202, 0x05003814,   // mk.bg..._430 it.tl..._430 cs.sl.hr_222 ca.fr..._660\n  0x0b001413, 0x2b001614, 0x06001421, 0x02001e02,   // is.no..._650 lt.cy..._660 is.de..._860 sr.da..._220\n  // [0fe0]\n  0x4b000809, 0x40000d12, 0x06036613, 0x04036614,   // it.az..._440 pt.sl..._640 af.nl.de_665 af.nl.fi_666\n  0x66000508, 0x17001f22, 0x45020612, 0x27292109,   // fr.af..._430 ga.ro..._870 de.da.sk_654 tl.ms.id_444\n  0x03000114, 0x1f001402, 0x272b3f09, 0x251e3008,   // en.nl..._660 is.ga..._220 sw.cy.id_444 be.sr.mk_443\n  0x16003a14, 0x16000c13, 0x40000813, 0x21292708,   // eu.lt..._660 pl.lt..._650 it.sl..._650 id.ms.tl_443\n  // [0ff0]\n  0x16001814, 0x1a001e02, 0x66151612, 0x01000b02,   // hu.lt..._660 sr.xxx..._220 lt.lv.af_654 no.en..._220\n  0x19006613, 0x21002712, 0x05002013, 0x10380b09,   // af.et..._650 id.tl..._640 gl.fr..._650 no.ca.sv_444\n  0x18000402, 0x1e001614, 0x1e001c22, 0x0d000302,   // fi.hu..._220 lt.sr..._660 bg.sr..._870 nl.pt..._220\n  0x05001602, 0x27002b02, 0x05001722, 0x17001f14,   // lt.fr..._220 cy.id..._220 ro.fr..._870 ga.ro..._660\n\n  // [1000]\n  0x1e004012, 0x30000e12, 0x2e001814, 0x05000809,   // sl.sr..._640 ru.be..._640 hu.sq..._660 it.fr..._440\n  0x17004008, 0x10080b08, 0x1f170109, 0x2e001508,   // sl.ro..._430 no.it.sv_443 en.ro.ga_444 lv.sq..._430\n  0x05172260, 0x40001913, 0x14200109, 0x03021f08,   // tr.ro.fr_664 et.sl..._650 en.gl.is_444 ga.da.nl_443\n  0x421d4008, 0x050d38a4, 0x15001e08, 0x14004023,   // sl.hr.mt_443 ca.pt.fr_433 sr.lv..._430 sl.is..._880\n  // [1010]\n  0x40001922, 0x0f000414, 0x1f000113, 0x19004008,   // et.sl..._870 fi.es..._660 en.ga..._650 sl.et..._430\n  0x2b000b09, 0x04000814, 0x22000302, 0x05000814,   // no.cy..._440 it.fi..._660 nl.tr..._220 it.fr..._660\n  0x03662113, 0x33374ead, 0x05000602, 0x14000209,   // tl.af.nl_665 fa.ar.ur_643 de.fr..._220 da.is..._440\n  0x0000122d, 0x22000d09, 0x66001014, 0x2b020b07,   // cs......_A00 pt.tr..._440 sv.af..._660 no.da.cy_432\n  // [1020]\n  0x1c251e12, 0x23301e09, 0x3f3a1908, 0x1e1c0e02,   // sr.mk.bg_654 sr.be.uk_444 et.eu.sw_443 ru.bg.sr_222\n  0x380f2013, 0x12060502, 0x23300e09, 0x05008c12,   // gl.es.ca_665 fr.de.cs_222 ru.be.uk_444 ht.fr..._640\n  0x1e1d08a4, 0x191e1da4, 0x0e001e23, 0x19000c13,   // it.hr.sr_433 hr.sr.et_433 sr.ru..._880 pl.et..._650\n  0x16004013, 0x1e1d19af, 0x0d001f12, 0x40001623,   // sl.lt..._650 et.hr.sr_655 ga.pt..._640 lt.sl..._880\n  // [1030]\n  0x012214a4, 0x15000c14, 0x1e401d08, 0x1d000214,   // is.tr.en_433 pl.lv..._660 hr.sl.sr_443 da.hr..._660\n  0x1e1d4013, 0x04272909, 0x30000e22, 0x40152709,   // sl.hr.sr_665 ms.id.fi_444 ru.be..._870 id.lv.sl_444\n  0x22001823, 0x14002213, 0x2e224509, 0x1a002b02,   // hu.tr..._880 tr.is..._650 sk.tr.sq_444 cy.xxx..._220\n  0x42002b21, 0x1c250e60, 0x0000232d, 0x01002109,   // cy.mt..._860 ru.mk.bg_664 uk......_A00 tl.en..._440\n  // [1040]\n  0x0c2b3fa4, 0x04191412, 0x29001a09, 0x02002709,   // sw.cy.pl_433 is.et.fi_654 xxx.ms..._440 id.da..._440\n  0x0d000114, 0x19002202, 0x05004b02, 0x04002214,   // en.pt..._660 tr.et..._220 az.fr..._220 tr.fi..._660\n  0x16011008, 0x16000d02, 0x04004b02, 0x14001909,   // sv.en.lt_443 pt.lt..._220 az.fi..._220 et.is..._440\n  0x1e001c07, 0x10040608, 0x27001909, 0x03002e21,   // bg.sr..._420 de.fi.sv_443 et.id..._440 sq.nl..._860\n  // [1050]\n  0x12000d08, 0x1a000814, 0x0d003809, 0x1d171e02,   // pt.cs..._430 it.xxx..._660 ca.pt..._440 sr.ro.hr_222\n  0x10000809, 0x0d0f0509, 0x381708af, 0x452e1808,   // it.sv..._440 fr.es.pt_444 it.ro.ca_655 hu.sq.sk_443\n  0x06006613, 0x1f000509, 0x3f2729af, 0x1d002e23,   // af.de..._650 fr.ga..._440 ms.id.sw_655 sq.hr..._880\n  0x300e2312, 0x278c0502, 0x3f000c14, 0x14002702,   // uk.ru.be_654 fr.ht.id_222 pl.sw..._660 id.is..._220\n  // [1060]\n  0x080c0508, 0x42001802, 0x0f000309, 0x05001f02,   // fr.pl.it_443 hu.mt..._220 nl.es..._440 ga.fr..._220\n  0x1e022ea4, 0x4b213f13, 0x38004b12, 0x3a001802,   // sq.da.sr_433 sw.tl.az_665 az.ca..._640 hu.eu..._220\n  0x0f004514, 0x0c1e1d14, 0x01061a08, 0x1e0c1d13,   // sk.es..._660 hr.sr.pl_666 xxx.de.en_443 hr.pl.sr_665\n  0x1e0c1d14, 0x0e3023a4, 0x1e1d0caf, 0x0f001702,   // hr.pl.sr_666 uk.be.ru_433 pl.hr.sr_655 ro.es..._220\n  // [1070]\n  0x1e1d0c12, 0x02008c09, 0x18000c12, 0x06002714,   // pl.hr.sr_654 ht.da..._440 pl.hu..._640 id.de..._660\n  0x1e250e02, 0x293f0607, 0x300e1e09, 0x3f001209,   // ru.mk.sr_222 de.sw.ms_432 sr.ru.be_444 cs.sw..._440\n  0x3f190407, 0x0e002508, 0x15292760, 0x45001a09,   // fi.et.sw_432 mk.ru..._430 id.ms.lv_664 xxx.sk..._440\n  0x66002914, 0x0f063aad, 0x3f002109, 0x23001c23,   // ms.af..._660 eu.de.es_643 tl.sw..._440 bg.uk..._880\n  // [1080]\n  0x1d003f02, 0x04004009, 0x04001623, 0x18002e02,   // sw.hr..._220 sl.fi..._440 lt.fi..._880 sq.hu..._220\n  0x21002909, 0x3f001514, 0x10002e14, 0x1e004209,   // ms.tl..._440 lv.sw..._660 sq.sv..._660 mt.sr..._440\n  0x401d1e12, 0x2e008c02, 0x19036609, 0x05001d02,   // sr.hr.sl_654 ht.sq..._220 af.nl.et_444 hr.fr..._220\n  0x38000823, 0x18000c14, 0x3f004008, 0x45002e08,   // it.ca..._880 pl.hu..._660 sl.sw..._430 sq.sk..._430\n  // [1090]\n  0x27290ca4, 0x00000c01, 0x40002902, 0x12451502,   // pl.ms.id_433 pl......_200 ms.sl..._220 lv.sk.cs_222\n  0x66031907, 0x4e333714, 0x03002b12, 0x29008c14,   // et.nl.af_432 ar.ur.fa_666 cy.nl..._640 ht.ms..._660\n  0x20000123, 0x191d1708, 0x19006602, 0x19000114,   // en.gl..._880 ro.hr.et_443 af.et..._220 en.et..._660\n  0x15001909, 0x06004302, 0x251e1ca4, 0x1c0e2308,   // et.lv..._440 vi.de..._220 bg.sr.mk_433 uk.ru.bg_443\n  // [10a0]\n  0x0000430a, 0x08001a08, 0x06001e02, 0x06101a09,   // vi......_500 xxx.it..._430 sr.de..._220 xxx.sv.de_444\n  0x06002114, 0x2b004214, 0x8c1a3f13, 0x29062702,   // tl.de..._660 mt.cy..._660 sw.xxx.ht_665 id.de.ms_222\n  0x0d0f3855, 0x251c0e60, 0x3f8c1a12, 0x08001909,   // ca.es.pt_442 ru.bg.mk_664 xxx.ht.sw_654 et.it..._440\n  0x45021a60, 0x1a8c3f08, 0x0c000309, 0x0d0f3809,   // xxx.da.sk_664 sw.ht.xxx_443 nl.pl..._440 ca.es.pt_444\n  // [10b0]\n  0x12002b14, 0x121d1e02, 0x0c1a3f08, 0x1f004323,   // cy.cs..._660 sr.hr.cs_222 sw.xxx.pl_443 vi.ga..._880\n  0x3f000c02, 0x451d1e13, 0x21272960, 0x151e1d14,   // pl.sw..._220 sr.hr.sk_665 ms.id.tl_664 hr.sr.lv_666\n  0x151d1eaf, 0x1e1d4011, 0x3f000c09, 0x0b031009,   // sr.hr.lv_655 sl.hr.sr_653 pl.sw..._440 sv.nl.no_444\n  0x151e1d09, 0x43191a08, 0x01002208, 0x0f124508,   // hr.sr.lv_444 xxx.et.vi_443 tr.en..._430 sk.cs.es_443\n  // [10c0]\n  0x12003f02, 0x401d1e09, 0x29001509, 0x29002e02,   // sw.cs..._220 sr.hr.sl_444 lv.ms..._440 sq.ms..._220\n  0x38001523, 0x01002902, 0x291e1d02, 0x1f000f23,   // lv.ca..._880 ms.en..._220 hr.sr.ms_222 es.ga..._880\n  0x451a4309, 0x1f000f02, 0x290f1402, 0x050f0d02,   // vi.xxx.sk_444 es.ga..._220 is.es.ms_222 pt.es.fr_222\n  0x42001207, 0x16041955, 0x38000521, 0x38008c14,   // cs.mt..._420 et.fi.lt_442 fr.ca..._860 ht.ca..._660\n  // [10d0]\n  0x400d0508, 0x8c002014, 0x8c003a09, 0x12450d02,   // fr.pt.sl_443 gl.ht..._660 eu.ht..._440 pt.sk.cs_222\n  0x12004002, 0x66388c08, 0x23002509, 0x08170109,   // sl.cs..._220 ht.ca.af_443 mk.uk..._440 en.ro.it_444\n  0x1c251e14, 0x45001502, 0x374e33ac, 0x428c3f07,   // sr.mk.bg_666 lv.sk..._220 ur.fa.ar_632 sw.ht.mt_432\n  0x230e1c07, 0x27004314, 0x1a163a07, 0x300e1c13,   // bg.ru.uk_432 vi.id..._660 eu.lt.xxx_432 bg.ru.be_665\n  // [10e0]\n  0x21001a09, 0x1c0e2360, 0x0e1c2314, 0x2b008c08,   // xxx.tl..._440 uk.ru.bg_664 uk.bg.ru_666 ht.cy..._430\n  0x1f000202, 0x42003f11, 0x1d000c22, 0x380d1812,   // da.ga..._220 sw.mt..._630 pl.hr..._870 hu.pt.ca_654\n  0x21002908, 0x0c000b09, 0x45002202, 0x17001513,   // ms.tl..._430 no.pl..._440 tr.sk..._220 lv.ro..._650\n  0x401e1d12, 0x29002713, 0x03003813, 0x0d0f1408,   // hr.sr.sl_654 id.ms..._650 ca.nl..._650 is.es.pt_443\n  // [10f0]\n  0x03001202, 0x45380602, 0x1c250eaf, 0x1c0e2309,   // cs.nl..._220 de.ca.sk_222 ru.mk.bg_655 uk.ru.bg_444\n  0x14000f12, 0x1d401e08, 0x15140b09, 0x401e1daf,   // es.is..._640 sr.sl.hr_443 no.is.lv_444 hr.sr.sl_655\n  0x27000b02, 0x2b000f13, 0x45001814, 0x19001714,   // no.id..._220 es.cy..._650 hu.sk..._660 ro.et..._660\n  0x37003321, 0x16002b14, 0x1f000309, 0x17000514,   // ur.ar..._860 cy.lt..._660 nl.ga..._440 fr.ro..._660\n  // [1100]\n  0x29192707, 0x160f0d11, 0x3f002214, 0x06003a14,   // id.et.ms_432 pt.es.lt_653 tr.sw..._660 eu.de..._660\n  0x16001522, 0x2e002709, 0x1a423faf, 0x27163f08,   // lv.lt..._870 id.sq..._440 sw.mt.xxx_655 sw.lt.id_443\n  0x15002714, 0x16002214, 0x05000402, 0x21292707,   // id.lv..._660 tr.lt..._660 fi.fr..._220 id.ms.tl_432\n  0x21008c23, 0x3f002922, 0x29223a02, 0x22001a12,   // ht.tl..._880 ms.sw..._870 eu.tr.ms_222 xxx.tr..._640\n  // [1110]\n  0x3f001723, 0x3f001714, 0x1e0e2513, 0x22003a02,   // ro.sw..._880 ro.sw..._660 mk.ru.sr_665 eu.tr..._220\n  0x22042907, 0x8c3f1a08, 0x27152907, 0x8c1a22af,   // ms.fi.tr_432 xxx.sw.ht_443 ms.lv.id_432 tr.xxx.ht_655\n  0x012e8ca4, 0x06000513, 0x3a000313, 0x08001f02,   // ht.sq.en_433 fr.de..._650 nl.eu..._650 ga.it..._220\n  0x15001f14, 0x06000313, 0x16050408, 0x30002320,   // ga.lv..._660 nl.de..._650 fi.fr.lt_443 uk.be..._850\n  // [1120]\n  0x15000502, 0x04001513, 0x12001f07, 0x1c251e13,   // fr.lv..._220 lv.fi..._650 ga.cs..._420 sr.mk.bg_665\n  0x450c1214, 0x4e003308, 0x3f003a09, 0x121d1e09,   // cs.pl.sk_666 ur.fa..._430 eu.sw..._440 sr.hr.cs_444\n  0x0f050d08, 0x8c000b09, 0x19000813, 0x66000114,   // pt.fr.es_443 no.ht..._440 it.et..._650 en.af..._660\n  0x1e272902, 0x17002702, 0x45124009, 0x3f000309,   // ms.id.sr_222 id.ro..._220 sl.cs.sk_444 nl.sw..._440\n  // [1130]\n  0x273a2908, 0x4b001709, 0x3a171608, 0x1d170b07,   // ms.eu.id_443 ro.az..._440 lt.ro.eu_443 no.ro.hr_432\n  0x0c001a02, 0x42003f02, 0x8c000402, 0x8c001d02,   // xxx.pl..._220 sw.mt..._220 fi.ht..._220 hr.ht..._220\n  0x0d001712, 0x1f004302, 0x12001708, 0x02000402,   // ro.pt..._640 vi.ga..._220 ro.cs..._430 fi.da..._220\n  0x38001a13, 0x02001702, 0x05003f02, 0x0f004502,   // xxx.ca..._650 ro.da..._220 sw.fr..._220 sk.es..._220\n  // [1140]\n  0x1e1d1702, 0x2b003a09, 0x0d1f0fa4, 0x27001714,   // ro.hr.sr_222 eu.cy..._440 es.ga.pt_433 ro.id..._660\n  0x1d004507, 0x29142702, 0x1e001422, 0x22001423,   // sk.hr..._420 id.is.ms_222 is.sr..._870 is.tr..._880\n  0x2b660309, 0x0d001422, 0x1e1c2555, 0x06000c13,   // nl.af.cy_444 is.pt..._870 mk.bg.sr_442 pl.de..._650\n  0x0c003a13, 0x03003f22, 0x22000109, 0x38001402,   // eu.pl..._650 sw.nl..._870 en.tr..._440 is.ca..._220\n  // [1150]\n  0x0d3a0f09, 0x21000413, 0x05001809, 0x01000614,   // es.eu.pt_444 fi.tl..._650 hu.fr..._440 de.en..._660\n  0x27668c07, 0x0d004307, 0x0c002b02, 0x421f0caf,   // ht.af.id_432 vi.pt..._420 cy.pl..._220 pl.ga.mt_655\n  0x3f001902, 0x1a001502, 0x27003f11, 0x0c001814,   // et.sw..._220 lv.xxx..._220 sw.id..._630 hu.pl..._660\n  0x15004013, 0x22000414, 0x12008c02, 0x1d001902,   // sl.lv..._650 fi.tr..._660 ht.cs..._220 et.hr..._220\n  // [1160]\n  0x20000d23, 0x3f036655, 0x17190412, 0x45002102,   // pt.gl..._880 af.nl.sw_442 fi.et.ro_654 tl.sk..._220\n  0x3f002708, 0x02003a08, 0x2e002902, 0x0c001212,   // id.sw..._430 eu.da..._430 ms.sq..._220 cs.pl..._640\n  0x42004013, 0x45161212, 0x1f083fa4, 0x1e1d2e09,   // sl.mt..._650 cs.lt.sk_654 sw.it.ga_433 sq.hr.sr_444\n  0x4b000802, 0x20004323, 0x1e1d0609, 0x1d4005a4,   // it.az..._220 vi.gl..._880 de.hr.sr_444 fr.sl.hr_433\n  // [1170]\n  0x2b001812, 0x2e002122, 0x05001708, 0x66058c08,   // hu.cy..._640 tl.sq..._870 ro.fr..._430 ht.fr.af_443\n  0x3f1f4208, 0x2e003a09, 0x05002e09, 0x14000609,   // mt.ga.sw_443 eu.sq..._440 sq.fr..._440 de.is..._440\n  0x12006602, 0x3a002e13, 0x08003a14, 0x3f003a14,   // af.cs..._220 sq.eu..._650 eu.it..._660 eu.sw..._660\n  0x0000292d, 0x17212b12, 0x08000509, 0x3a002e09,   // ms......_A00 cy.tl.ro_654 fr.it..._440 sq.eu..._440\n  // [1180]\n  0x2e003a23, 0x1a3a2e08, 0x14003814, 0x18004509,   // eu.sq..._880 sq.eu.xxx_443 ca.is..._660 sk.hu..._440\n  0x0d000513, 0x45001422, 0x3f001812, 0x1e451d14,   // fr.pt..._650 is.sk..._870 hu.sw..._640 hr.sk.sr_666\n  0x184208a4, 0x1f001602, 0x27000209, 0x173a2909,   // it.mt.hu_433 lt.ga..._220 da.id..._440 ms.eu.ro_444\n  0x1f001a22, 0x29001514, 0x19003a09, 0x19002e22,   // xxx.ga..._870 lv.ms..._660 eu.et..._440 sq.et..._870\n  // [1190]\n  0x42001e14, 0x45000c23, 0x230e1c12, 0x43191a12,   // sr.mt..._660 pl.sk..._880 bg.ru.uk_654 xxx.et.vi_654\n  0x66002b14, 0x380d0f14, 0x3f002b02, 0x45121fa4,   // cy.af..._660 es.pt.ca_666 cy.sw..._220 ga.cs.sk_433\n  0x04002202, 0x2e002b02, 0x3a001209, 0x0d000614,   // tr.fi..._220 cy.sq..._220 cs.eu..._440 de.pt..._660\n  0x10001709, 0x02002113, 0x2b001814, 0x1f050b08,   // ro.sv..._440 tl.da..._650 hu.cy..._660 no.fr.ga_443\n  // [11a0]\n  0x1a053802, 0x22000502, 0x12001a14, 0x08170107,   // ca.fr.xxx_222 fr.tr..._220 xxx.cs..._660 en.ro.it_432\n  0x0f384507, 0x15004007, 0x231e0e12, 0x2e002714,   // sk.ca.es_432 sl.lv..._420 ru.sr.uk_654 id.sq..._660\n  0x3a001a09, 0x2e000b07, 0x05008c23, 0x0f000c14,   // xxx.eu..._440 no.sq..._420 ht.fr..._880 pl.es..._660\n  0x0c004202, 0x3f002122, 0x451d1202, 0x1e001d08,   // mt.pl..._220 tl.sw..._870 cs.hr.sk_222 hr.sr..._430\n  // [11b0]\n  0x40124514, 0x0c000514, 0x19004202, 0x3f002113,   // sk.cs.sl_666 fr.pl..._660 mt.et..._220 tl.sw..._650\n  0x0c003f07, 0x29104b02, 0x100b0213, 0x1e1d1802,   // sw.pl..._420 az.sv.ms_222 da.no.sv_665 hu.hr.sr_222\n  0x02100b12, 0x12004009, 0x8c004b02, 0x0f008c07,   // no.sv.da_654 sl.cs..._440 az.ht..._220 ht.es..._420\n  0x1f0122a4, 0x08002214, 0x05001914, 0x16170813,   // tr.en.ga_433 tr.it..._660 et.fr..._660 it.ro.lt_665\n  // [11c0]\n  0x1a030655, 0x15001e14, 0x2b003f09, 0x14000f02,   // de.nl.xxx_442 sr.lv..._660 sw.cy..._440 es.is..._220\n  0x14000f08, 0x05080109, 0x08000514, 0x38001a08,   // es.is..._430 en.it.fr_444 fr.it..._660 xxx.ca..._430\n  0x45000d02, 0x17002e09, 0x42004b12, 0x15001e02,   // pt.sk..._220 sq.ro..._440 az.mt..._640 sr.lv..._220\n  0x1e401daf, 0x451d1e07, 0x66002709, 0x401d1e11,   // hr.sl.sr_655 sr.hr.sk_432 id.af..._440 sr.hr.sl_653\n  // [11d0]\n  0x22292760, 0x01000b09, 0x29004014, 0x291d4002,   // id.ms.tr_664 no.en..._440 sl.ms..._660 sl.hr.ms_222\n  0x02002e02, 0x19041a09, 0x1f003809, 0x170d0813,   // sq.da..._220 xxx.fi.et_444 ca.ga..._440 it.pt.ro_665\n  0x3f181aa4, 0x06153a08, 0x06000d08, 0x1e402707,   // xxx.hu.sw_433 eu.lv.de_443 pt.de..._430 id.sl.sr_432\n  0x38000602, 0x15660b09, 0x16006602, 0x14000c12,   // de.ca..._220 no.af.lv_444 af.lt..._220 pl.is..._640\n  // [11e0]\n  0x21000309, 0x1d001708, 0x1d401608, 0x29000313,   // nl.tl..._440 ro.hr..._430 lt.sl.hr_443 nl.ms..._650\n  0x1d451e02, 0x04006613, 0x40001d23, 0x14001822,   // sr.sk.hr_222 af.fi..._650 hr.sl..._880 hu.is..._870\n  0x04001514, 0x014b4302, 0x18001412, 0x04001709,   // lv.fi..._660 vi.az.en_222 is.hu..._640 ro.fi..._440\n  0x08001f21, 0x193f0460, 0x42002121, 0x19001514,   // ga.it..._860 fi.sw.et_664 tl.mt..._860 lv.et..._660\n  // [11f0]\n  0x06004208, 0x02004207, 0x17001902, 0x22003f08,   // mt.de..._430 mt.da..._420 et.ro..._220 sw.tr..._430\n  0x3f191508, 0x16011f07, 0x15001913, 0x063f6609,   // lv.et.sw_443 ga.en.lt_432 et.lv..._650 af.sw.de_444\n  0x22001f23, 0x66200107, 0x21000202, 0x10000308,   // ga.tr..._880 en.gl.af_432 da.tl..._220 nl.sv..._430\n  0x451d0c02, 0x2e000213, 0x3a000302, 0x043f1508,   // pl.hr.sk_222 da.sq..._650 nl.eu..._220 lv.sw.fi_443\n  // [1200]\n  0x2e660109, 0x04193fa4, 0x66002e02, 0x16002b23,   // en.af.sq_444 sw.et.fi_433 sq.af..._220 cy.lt..._880\n  0x18002e14, 0x01002209, 0x3a001014, 0x0c001f22,   // sq.hu..._660 tr.en..._440 sv.eu..._660 ga.pl..._870\n  0x14080b09, 0x66002214, 0x0c001f23, 0x1f004214,   // no.it.is_444 tr.af..._660 ga.pl..._880 mt.ga..._660\n  0x1f000c14, 0x0000382d, 0x3f001f02, 0x12004521,   // pl.ga..._660 ca......_A00 ga.sw..._220 sk.cs..._860\n  // [1210]\n  0x45010c02, 0x27182913, 0x3f272913, 0x1e0d0f02,   // pl.en.sk_222 ms.hu.id_665 ms.id.sw_665 es.pt.sr_222\n  0x45012102, 0x27000114, 0x1f000c23, 0x1d421ea4,   // tl.en.sk_222 en.id..._660 pl.ga..._880 sr.mt.hr_433\n  0x2b001f02, 0x3a043fad, 0x1d004314, 0x18000b09,   // ga.cy..._220 sw.fi.eu_643 vi.hr..._660 no.hu..._440\n  0x18001d23, 0x45100202, 0x01001702, 0x3a001409,   // hr.hu..._880 da.sv.sk_222 ro.en..._220 is.eu..._440\n  // [1220]\n  0x1d000209, 0x151d4008, 0x1d000c13, 0x01210c11,   // da.hr..._440 sl.hr.lv_443 pl.hr..._650 pl.tl.en_653\n  0x0c061a08, 0x06660309, 0x15001723, 0x30002522,   // xxx.de.pl_443 nl.af.de_444 ro.lv..._880 mk.be..._870\n  0x05001609, 0x27164208, 0x8c000602, 0x42001f02,   // lt.fr..._440 mt.lt.id_443 de.ht..._220 ga.mt..._220\n  0x222729af, 0x18001613, 0x1e0e2309, 0x00000b01,   // ms.id.tr_655 lt.hu..._650 uk.ru.sr_444 no......_200\n  // [1230]\n  0x23251e55, 0x2e001a12, 0x03172107, 0x18001a09,   // sr.mk.uk_442 xxx.sq..._640 tl.ro.nl_432 xxx.hu..._440\n  0x37003311, 0x224b29a4, 0x3f2b8c08, 0x1d011e02,   // ur.ar..._630 ms.az.tr_433 ht.cy.sw_443 sr.en.hr_222\n  0x00004501, 0x21002212, 0x450f0107, 0x020366a4,   // sk......_200 tr.tl..._640 en.es.sk_432 af.nl.da_433\n  0x02006609, 0x1a006614, 0x16003808, 0x05451a09,   // af.da..._440 af.xxx..._660 ca.lt..._430 xxx.sk.fr_444\n  // [1240]\n  0x200d3809, 0x01000409, 0x3f003a13, 0x66031a08,   // ca.pt.gl_444 fi.en..._440 eu.sw..._650 xxx.nl.af_443\n  0x2b000214, 0x02036608, 0x16001d09, 0x03008c12,   // da.cy..._660 af.nl.da_443 hr.lt..._440 ht.nl..._640\n  0x8c000308, 0x8c036609, 0x10001a21, 0x29663a02,   // nl.ht..._430 af.nl.ht_444 xxx.sv..._860 eu.af.ms_222\n  0x14000109, 0x05001f08, 0x02001423, 0x18000123,   // en.is..._440 ga.fr..._430 is.da..._880 en.hu..._880\n  // [1250]\n  0x05000314, 0x38050f12, 0x19002213, 0x04193f09,   // nl.fr..._660 es.fr.ca_654 tr.et..._650 sw.et.fi_444\n  0x04001702, 0x23300e60, 0x2e000402, 0x19002b02,   // ro.fi..._220 ru.be.uk_664 fi.sq..._220 cy.et..._220\n  0x38433a12, 0x05008c08, 0x03061a08, 0x06001514,   // eu.vi.ca_654 ht.fr..._430 xxx.de.nl_443 lv.de..._660\n  0x15000614, 0x1f000622, 0x16000614, 0x14062b08,   // de.lv..._660 de.ga..._870 de.lt..._660 cy.de.is_443\n  // [1260]\n  0x03002023, 0x380d0f08, 0x050d4309, 0x19001502,   // gl.nl..._880 es.pt.ca_443 vi.pt.fr_444 lv.et..._220\n  0x1e002e09, 0x03000608, 0x15036608, 0x66001802,   // sq.sr..._440 de.nl..._430 af.nl.lv_443 hu.af..._220\n  0x19100608, 0x052b3fa4, 0x43451f08, 0x151e2ea4,   // de.sv.et_443 sw.cy.fr_433 ga.sk.vi_443 sq.sr.lv_433\n  0x22100214, 0x1d121502, 0x1f008c12, 0x10198c07,   // da.sv.tr_666 lv.cs.hr_222 ht.ga..._640 ht.et.sv_432\n  // [1270]\n  0x1a001f09, 0x05002b23, 0x42068ca4, 0x0000662d,   // ga.xxx..._440 cy.fr..._880 ht.de.mt_433 af......_A00\n  0x1f000614, 0x15004202, 0x27422913, 0x0e231caf,   // de.ga..._660 mt.lv..._220 ms.mt.id_665 bg.uk.ru_655\n  0x0f000808, 0x401d1e13, 0x220c2707, 0x16001914,   // it.es..._430 sr.hr.sl_665 id.pl.tr_432 et.lt..._660\n  0x06001023, 0x06002914, 0x04050108, 0x14001514,   // sv.de..._880 ms.de..._660 en.fr.fi_443 lv.is..._660\n  // [1280]\n  0x23300e12, 0x1e251c08, 0x1d001202, 0x1e000814,   // ru.be.uk_654 bg.mk.sr_443 cs.hr..._220 it.sr..._660\n  0x15041607, 0x0b000c02, 0x041e1da4, 0x43001914,   // lt.fi.lv_432 pl.no..._220 hr.sr.fi_433 et.vi..._660\n  0x1d001602, 0x33374ea4, 0x01166608, 0x42002e12,   // lt.hr..._220 fa.ar.ur_433 af.lt.en_443 sq.mt..._640\n  0x0d000523, 0x45014202, 0x40003802, 0x0b004302,   // fr.pt..._880 mt.en.sk_222 ca.sl..._220 vi.no..._220\n  // [1290]\n  0x17000d09, 0x12000302, 0x2e002b23, 0x45003a09,   // pt.ro..._440 nl.cs..._220 cy.sq..._880 eu.sk..._440\n  0x01002002, 0x200f0107, 0x08006602, 0x06001813,   // gl.en..._220 en.es.gl_432 af.it..._220 hu.de..._650\n  0x4e333711, 0x66020b07, 0x19000202, 0x66002213,   // ar.ur.fa_653 no.da.af_432 da.et..._220 tr.af..._650\n  0x1c1e2355, 0x1d001509, 0x08001002, 0x17001014,   // uk.sr.bg_442 lv.hr..._440 sv.it..._220 sv.ro..._660\n  // [12a0]\n  0x38000114, 0x0d004514, 0x43004b09, 0x0f000513,   // en.ca..._660 sk.pt..._660 az.vi..._440 fr.es..._650\n  0x66221913, 0x27296609, 0x8c053855, 0x0c002b21,   // et.tr.af_665 af.ms.id_444 ca.fr.ht_442 cy.pl..._860\n  0x16001d14, 0x43000f02, 0x0d002702, 0x1e300e02,   // hr.lt..._660 es.vi..._220 id.pt..._220 ru.be.sr_222\n  0x1d401e02, 0x3a272913, 0x660d0308, 0x18004b11,   // sr.sl.hr_222 ms.id.eu_665 nl.pt.af_443 az.hu..._630\n  // [12b0]\n  0x1a003809, 0x05124514, 0x0d0f3808, 0x1f008c14,   // ca.xxx..._440 sk.cs.fr_666 ca.es.pt_443 ht.ga..._660\n  0x66032bad, 0x01002108, 0x4b001909, 0x08001423,   // cy.nl.af_643 tl.en..._430 et.az..._440 is.it..._880\n  0x06001922, 0x15000f09, 0x8c004314, 0x43002902,   // et.de..._870 es.lv..._440 vi.ht..._660 ms.vi..._220\n  0x0b004202, 0x15003f14, 0x2e001a09, 0x1e302509,   // mt.no..._220 sw.lv..._660 xxx.sq..._440 mk.be.sr_444\n  // [12c0]\n  0x37334e07, 0x01170808, 0x18003814, 0x18001408,   // fa.ur.ar_432 it.ro.en_443 ca.hu..._660 is.hu..._430\n  0x10020b55, 0x18000f08, 0x4b001509, 0x3f004b14,   // no.da.sv_442 es.hu..._430 lv.az..._440 az.sw..._660\n  0x29226602, 0x66004502, 0x19001613, 0x291d1e02,   // af.tr.ms_222 sk.af..._220 lt.et..._650 sr.hr.ms_222\n  0x1d294002, 0x03660660, 0x04001621, 0x1a006608,   // sl.ms.hr_222 de.af.nl_664 lt.fi..._860 af.xxx..._430\n  // [12d0]\n  0x1d271e02, 0x00001515, 0x40272907, 0x18004213,   // sr.id.hr_222 lv......_700 ms.id.sl_432 mt.hu..._650\n  0x16040814, 0x1d001513, 0x401d1e60, 0x4b004212,   // it.fi.lt_666 lv.hr..._650 sr.hr.sl_664 mt.az..._640\n  0x1e1d1002, 0x22002909, 0x1d002902, 0x1d001502,   // sv.hr.sr_222 ms.tr..._440 ms.hr..._220 lv.hr..._220\n  0x2b000613, 0x45000d09, 0x04001414, 0x4b2e42a4,   // de.cy..._650 pt.sk..._440 is.fi..._660 mt.sq.az_433\n  // [12e0]\n  0x1d002909, 0x1f000f07, 0x14002e09, 0x03660608,   // ms.hr..._440 es.ga..._420 sq.is..._440 de.af.nl_443\n  0x043f19af, 0x12453aa4, 0x14002e22, 0x2e001423,   // et.sw.fi_655 eu.sk.cs_433 sq.is..._870 is.sq..._880\n  0x19002102, 0x17002909, 0x27001902, 0x3f002707,   // tl.et..._220 ms.ro..._440 et.id..._220 id.sw..._420\n  0x43006602, 0x2b036608, 0x1d161507, 0x15661911,   // af.vi..._220 af.nl.cy_443 lv.lt.hr_432 et.af.lv_653\n  // [12f0]\n  0x0d008c09, 0x29080f02, 0x270f38a4, 0x2b003f13,   // ht.pt..._440 es.it.ms_222 ca.es.id_433 sw.cy..._650\n  0x45002108, 0x12044502, 0x45004307, 0x27001609,   // tl.sk..._430 sk.fi.cs_222 vi.sk..._420 lt.id..._440\n  0x1e1d1614, 0x04100608, 0x45051502, 0x14190408,   // lt.hr.sr_666 de.sv.fi_443 lv.fr.sk_222 fi.et.is_443\n  0x22001714, 0x0b002213, 0x1a003802, 0x42140608,   // ro.tr..._660 tr.no..._650 ca.xxx..._220 de.is.mt_443\n  // [1300]\n  0x42002709, 0x66000814, 0x21004212, 0x42002914,   // id.mt..._440 it.af..._660 mt.tl..._640 ms.mt..._660\n  0x1d004302, 0x0000172d, 0x0b000512, 0x43000302,   // vi.hr..._220 ro......_A00 fr.no..._640 nl.vi..._220\n  0x2e001514, 0x4b004321, 0x1a006609, 0x21008c14,   // lv.sq..._660 vi.az..._860 af.xxx..._440 ht.tl..._660\n  0x1f0f0b07, 0x2b004314, 0x14006602, 0x08000123,   // no.es.ga_432 vi.cy..._660 af.is..._220 en.it..._880\n  // [1310]\n  0x40451213, 0x4b000107, 0x21002923, 0x164b2208,   // cs.sk.sl_665 en.az..._420 ms.tl..._880 tr.az.lt_443\n  0x292721a4, 0x08036608, 0x29002112, 0x29212708,   // tl.id.ms_433 af.nl.it_443 tl.ms..._640 id.tl.ms_443\n  0x8c4b22af, 0x4b000f02, 0x1d1e1508, 0x19001422,   // tr.az.ht_655 es.az..._220 lv.sr.hr_443 is.et..._870\n  0x16002202, 0x1a001f12, 0x21000313, 0x1f008c13,   // tr.lt..._220 ga.xxx..._640 nl.tl..._650 ht.ga..._650\n  // [1320]\n  0x250e2360, 0x1f000513, 0x1e1d1602, 0x22003809,   // uk.ru.mk_664 fr.ga..._650 lt.hr.sr_222 ca.tr..._440\n  0x1f001422, 0x0d001602, 0x06144208, 0x3a000d14,   // is.ga..._870 lt.pt..._220 mt.is.de_443 pt.eu..._660\n  0x66004308, 0x04000d14, 0x0e2330af, 0x401e4507,   // vi.af..._430 pt.fi..._660 be.uk.ru_655 sk.sr.sl_432\n  0x1a002213, 0x1d291f02, 0x1e003014, 0x2b002e13,   // tr.xxx..._650 ga.ms.hr_222 be.sr..._660 sq.cy..._650\n  // [1330]\n  0x27192902, 0x4b001009, 0x451d4002, 0x8c002023,   // ms.et.id_222 sv.az..._440 sl.hr.sk_222 gl.ht..._880\n  0x1d000b14, 0x3f000d09, 0x43001e09, 0x06043a07,   // no.hr..._660 pt.sw..._440 sr.vi..._440 eu.fi.de_432\n  0x22008c13, 0x05008c09, 0x0b000814, 0x451e0502,   // ht.tr..._650 ht.fr..._440 it.no..._660 fr.sr.sk_222\n  0x2b000814, 0x17004009, 0x22660312, 0x1d454008,   // it.cy..._660 sl.ro..._440 nl.af.tr_654 sl.sk.hr_443\n  // [1340]\n  0x08001014, 0x0b001902, 0x033a6608, 0x380f0d08,   // sv.it..._660 et.no..._220 af.eu.nl_443 pt.es.ca_443\n  0x23001e12, 0x27403a02, 0x1d002109, 0x4b004208,   // sr.uk..._640 eu.sl.id_222 tl.hr..._440 mt.az..._430\n  0x45120daf, 0x3a006612, 0x45121812, 0x23251e14,   // pt.cs.sk_655 af.eu..._640 hu.cs.sk_654 sr.mk.uk_666\n  0x1c002322, 0x14001813, 0x8c002709, 0x0d0f2909,   // uk.bg..._870 hu.is..._650 id.ht..._440 ms.es.pt_444\n  // [1350]\n  0x1a001402, 0x0f001613, 0x01004b02, 0x221e1d13,   // is.xxx..._220 lt.es..._650 az.en..._220 hr.sr.tr_665\n  0x42004514, 0x0000222d, 0x66140b09, 0x2b0f3808,   // sk.mt..._660 tr......_A00 no.is.af_444 ca.es.cy_443\n  0x16000612, 0x66000622, 0x43008c09, 0x01001908,   // de.lt..._640 de.af..._870 ht.vi..._440 et.en..._430\n  0x1f001408, 0x1f001021, 0x42212907, 0x40272908,   // is.ga..._430 sv.ga..._860 ms.tl.mt_432 ms.id.sl_443\n  // [1360]\n  0x27001613, 0x04001412, 0x25000e07, 0x15000f08,   // lt.id..._650 is.fi..._640 ru.mk..._420 es.lv..._430\n  0x251e1c12, 0x12001412, 0x38660308, 0x02000b21,   // bg.sr.mk_654 is.cs..._640 nl.af.ca_443 no.da..._860\n  0x22001f22, 0x20380d60, 0x1e002709, 0x06001513,   // ga.tr..._870 pt.ca.gl_664 id.sr..._440 lv.de..._650\n  0x12001a12, 0x1e024202, 0x40001509, 0x14660b09,   // xxx.cs..._640 mt.da.sr_222 lv.sl..._440 no.af.is_444\n  // [1370]\n  0x1c003008, 0x4b006614, 0x03002702, 0x011a4308,   // be.bg..._430 af.az..._660 id.nl..._220 vi.xxx.en_443\n  0x0d003808, 0x121d1a02, 0x251c1e12, 0x1f12456d,   // ca.pt..._430 xxx.hr.cs_222 sr.bg.mk_654 sk.cs.ga_874\n  0x17003f08, 0x02036660, 0x43000808, 0x14020b14,   // sw.ro..._430 af.nl.da_664 it.vi..._430 no.da.is_666\n  0x251c1e08, 0x05004b13, 0x12000c14, 0x0c184060,   // sr.bg.mk_443 az.fr..._650 pl.cs..._660 sl.hu.pl_664\n  // [1380]\n  0x453a2b07, 0x45000113, 0x10000402, 0x380f0d14,   // cy.eu.sk_432 en.sk..._650 fi.sv..._220 pt.es.ca_666\n  0x8c020b07, 0x29004b13, 0x45013a02, 0x17000509,   // no.da.ht_432 az.ms..._650 eu.en.sk_222 fr.ro..._440\n  0x38002014, 0x0f000409, 0x06001814, 0x451e2102,   // gl.ca..._660 fi.es..._440 hu.de..._660 tl.sr.sk_222\n  0x1e0e2508, 0x10002213, 0x100240a4, 0x10001514,   // mk.ru.sr_443 tr.sv..._650 sl.da.sv_433 lv.sv..._660\n  // [1390]\n  0x06000223, 0x0f008c09, 0x43001412, 0x22181008,   // da.de..._880 ht.es..._440 is.vi..._640 sv.hu.tr_443\n  0x22001808, 0x08001614, 0x38000d09, 0x1e008c14,   // hu.tr..._430 lt.it..._660 pt.ca..._440 ht.sr..._660\n  0x18450d12, 0x12144502, 0x27023808, 0x19001609,   // pt.sk.hu_654 sk.is.cs_222 ca.da.id_443 lt.et..._440\n  0x17000823, 0x12451814, 0x8c000c1d, 0x12451808,   // it.ro..._880 hu.sk.cs_666 pl.ht..._820 hu.sk.cs_443\n  // [13a0]\n  0x1e252314, 0x0000452d, 0x1f011a08, 0x4b001d02,   // uk.mk.sr_666 sk......_A00 xxx.en.ga_443 hr.az..._220\n  0x4b162207, 0x124518af, 0x0c451214, 0x0c002109,   // tr.lt.az_432 hu.sk.cs_655 cs.sk.pl_666 tl.pl..._440\n  0x18380f08, 0x05001202, 0x12184514, 0x1f0f1809,   // es.ca.hu_443 cs.fr..._220 sk.hu.cs_666 hu.es.ga_444\n  0x38000f07, 0x0f183814, 0x12451802, 0x12000409,   // es.ca..._420 ca.hu.es_666 hu.sk.cs_222 fi.cs..._440\n  // [13b0]\n  0x18003811, 0x16002114, 0x1f002b22, 0x12000413,   // ca.hu..._630 tl.lt..._660 cy.ga..._870 fi.cs..._650\n  0x192716a4, 0x45000f11, 0x1d1708a4, 0x66004014,   // lt.id.et_433 es.sk..._630 it.ro.hr_433 sl.af..._660\n  0x10001207, 0x221d45a4, 0x03001702, 0x3f0c2109,   // cs.sv..._420 sk.hr.tr_433 ro.nl..._220 tl.pl.sw_444\n  0x18026608, 0x17001609, 0x270f2102, 0x21000802,   // af.da.hu_443 lt.ro..._440 tl.es.id_222 it.tl..._220\n  // [13c0]\n  0x8c211660, 0x02182b07, 0x120c4509, 0x181f0f09,   // lt.tl.ht_664 cy.hu.da_432 sk.pl.cs_444 es.ga.hu_444\n  0x16004012, 0x182b0d55, 0x08003807, 0x45001221,   // sl.lt..._640 pt.cy.hu_442 ca.it..._420 cs.sk..._860\n  0x401e1209, 0x3f002121, 0x08003813, 0x21003f08,   // cs.sr.sl_444 tl.sw..._860 ca.it..._650 sw.tl..._430\n  0x1d404202, 0x01292708, 0x1d3f1e02, 0x1d154002,   // mt.sl.hr_222 id.ms.en_443 sr.sw.hr_222 sl.lv.hr_222\n  // [13d0]\n  0x0f083860, 0x3a036608, 0x02003a02, 0x17004314,   // ca.it.es_664 af.nl.eu_443 eu.da..._220 vi.ro..._660\n  0x140d0f13, 0x1e1d2702, 0x2b002202, 0x08000413,   // es.pt.is_665 id.hr.sr_222 tr.cy..._220 fi.it..._650\n  0x1f001902, 0x334e3711, 0x2e0d3855, 0x19000c02,   // et.ga..._220 ar.fa.ur_653 ca.pt.sq_442 pl.et..._220\n  0x40000213, 0x27001409, 0x14000621, 0x3f001814,   // da.sl..._650 is.id..._440 de.is..._860 hu.sw..._660\n  // [13e0]\n  0x661a0209, 0x3f004209, 0x03660107, 0x2e380d07,   // da.xxx.af_444 mt.sw..._440 en.af.nl_432 pt.ca.sq_432\n  0x14003a02, 0x0d063814, 0x21001523, 0x251e1c14,   // eu.is..._220 ca.de.pt_666 lv.tl..._880 bg.sr.mk_666\n  0x0b022ea4, 0x1c231e13, 0x10000309, 0x10002707,   // sq.da.no_433 sr.uk.bg_665 nl.sv..._440 id.sv..._420\n  0x43000123, 0x05088ca4, 0x3a001009, 0x29182702,   // en.vi..._880 ht.it.fr_433 sv.eu..._440 id.hu.ms_222\n  // [13f0]\n  0x42000823, 0x1d000c08, 0x38000813, 0x18001f22,   // it.mt..._880 pl.hr..._430 it.ca..._650 ga.hu..._870\n  0x18001209, 0x14001812, 0x05000d08, 0x45002b14,   // cs.hu..._440 hu.is..._640 pt.fr..._430 cy.sk..._660\n  0x2b004523, 0x1d000c12, 0x1a2b4555, 0x1d1e0c12,   // sk.cy..._880 pl.hr..._640 sk.cy.xxx_442 pl.sr.hr_654\n  0x0d2b4507, 0x27000802, 0x29036612, 0x42380808,   // sk.cy.pt_432 it.id..._220 af.nl.ms_654 it.ca.mt_443\n\n  // [1400]\n  0x0c3a03af, 0x38004509, 0x22001414, 0x18001714,   // nl.eu.pl_655 sk.ca..._440 is.tr..._660 ro.hu..._660\n  0x66001623, 0x38003f13, 0x38001209, 0x8c000f09,   // lt.af..._880 sw.ca..._650 cs.ca..._440 es.ht..._440\n  0x0d000202, 0x660b03a4, 0x0c380d09, 0x01001f08,   // da.pt..._220 nl.no.af_433 pt.ca.pl_444 ga.en..._430\n  0x06400109, 0x0d1e1aa4, 0x0d0f18a4, 0x12001812,   // en.sl.de_444 xxx.sr.pt_433 hu.es.pt_433 hu.cs..._640\n  // [1410]\n  0x06171209, 0x1f051612, 0x291e1a07, 0x03001014,   // cs.ro.de_444 lt.fr.ga_654 xxx.sr.ms_432 sv.nl..._660\n  0x45000402, 0x45120b09, 0x18001208, 0x45193a02,   // fi.sk..._220 no.cs.sk_444 cs.hu..._430 eu.et.sk_222\n  0x230e1eaf, 0x2b002923, 0x10001402, 0x45001009,   // sr.ru.uk_655 ms.cy..._880 is.sv..._220 sv.sk..._440\n  0x1a002409, 0x08001a23, 0x21182ba4, 0x2b002123,   // hi.xxx..._440 xxx.it..._880 cy.hu.tl_433 tl.cy..._880\n  // [1420]\n  0x4b223f08, 0x2b451207, 0x15001802, 0x17003f13,   // sw.tr.az_443 cs.sk.cy_432 hu.lv..._220 sw.ro..._650\n  0x17003a08, 0x3f000814, 0x173f1a08, 0x14190411,   // eu.ro..._430 it.sw..._660 xxx.sw.ro_443 fi.et.is_653\n  0x18008c14, 0x17000d07, 0x14006612, 0x19002b23,   // ht.hu..._660 pt.ro..._420 af.is..._640 cy.et..._880\n  0x1c001e09, 0x212b2909, 0x08003a09, 0x0e1c30a4,   // sr.bg..._440 ms.cy.tl_444 eu.it..._440 be.bg.ru_433\n  // [1430]\n  0x1f001814, 0x1d001802, 0x20000d21, 0x21000f14,   // hu.ga..._660 hu.hr..._220 pt.gl..._860 es.tl..._660\n  0x451e1d13, 0x451e1d60, 0x18211012, 0x01002714,   // hr.sr.sk_665 hr.sr.sk_664 sv.tl.hu_654 id.en..._660\n  0x181e1d14, 0x21002014, 0x45001823, 0x29042755,   // hr.sr.hu_666 gl.tl..._660 hu.sk..._880 id.fi.ms_442\n  0x18191014, 0x19001614, 0x0b001023, 0x08000208,   // sv.et.hu_666 lt.et..._660 sv.no..._880 da.it..._430\n  // [1440]\n  0x03000602, 0x38001414, 0x10000113, 0x40001208,   // de.nl..._220 is.ca..._660 en.sv..._650 cs.sl..._430\n  0x27002921, 0x45001f09, 0x14001f02, 0x1e001c23,   // ms.id..._860 ga.sk..._440 ga.is..._220 bg.sr..._880\n  0x3f001923, 0x04002109, 0x03066608, 0x2b001013,   // et.sw..._880 tl.fi..._440 af.de.nl_443 sv.cy..._650\n  0x17001e02, 0x42008c02, 0x03196602, 0x45001e09,   // sr.ro..._220 ht.mt..._220 af.et.nl_222 sr.sk..._440\n  // [1450]\n  0x3f4b1a09, 0x21272913, 0x010610a4, 0x38002914,   // xxx.az.sw_444 ms.id.tl_665 sv.de.en_433 ms.ca..._660\n  0x27002202, 0x04000812, 0x29423a02, 0x45401e02,   // tr.id..._220 it.fi..._640 eu.mt.ms_222 sr.sl.sk_222\n  0x3a020b12, 0x01000c02, 0x292e2702, 0x27003f12,   // no.da.eu_654 pl.en..._220 id.sq.ms_222 sw.id..._640\n  0x22001014, 0x2e003802, 0x45001e02, 0x1e3f0402,   // sv.tr..._660 ca.sq..._220 sr.sk..._220 fi.sw.sr_222\n  // [1460]\n  0x2e003809, 0x1d2e3808, 0x22001913, 0x27212909,   // ca.sq..._440 ca.sq.hr_443 et.tr..._650 ms.tl.id_444\n  0x10002202, 0x12001813, 0x27000808, 0x38000812,   // tr.sv..._220 hu.cs..._650 it.id..._430 it.ca..._640\n  0x0f000107, 0x04000609, 0x1c0e30af, 0x8c000512,   // en.es..._420 de.fi..._440 be.ru.bg_655 fr.ht..._640\n  0x06002102, 0x272221a4, 0x4b1d1e13, 0x22001912,   // tl.de..._220 tl.tr.id_433 sr.hr.az_665 et.tr..._640\n  // [1470]\n  0x1d404502, 0x8c000d07, 0x45001613, 0x3f000202,   // sk.sl.hr_222 pt.ht..._420 lt.sk..._650 da.sw..._220\n  0x0c3a2e08, 0x8c003f13, 0x3f004b13, 0x10051a07,   // sq.eu.pl_443 sw.ht..._650 az.sw..._650 xxx.fr.sv_432\n  0x15001209, 0x18150455, 0x023f18a4, 0x18211008,   // cs.lv..._440 fi.lv.hu_442 hu.sw.da_433 sv.tl.hu_443\n  0x660306a4, 0x3f1a8c12, 0x0f001814, 0x8c000508,   // de.nl.af_433 ht.xxx.sw_654 hu.es..._660 fr.ht..._430\n  // [1480]\n  0x3a4b3808, 0x15001823, 0x061a0108, 0x18003f23,   // ca.az.eu_443 hu.lv..._880 en.xxx.de_443 sw.hu..._880\n  0x0b001814, 0x191a1509, 0x29001f12, 0x19001509,   // hu.no..._660 lv.xxx.et_444 ga.ms..._640 lv.et..._440\n  0x27293808, 0x04001a09, 0x2b000f02, 0x10183a07,   // ca.ms.id_443 xxx.fi..._440 es.cy..._220 eu.hu.sv_432\n  0x02002014, 0x100b0107, 0x21001714, 0x8c001602,   // gl.da..._660 en.no.sv_432 ro.tl..._660 lt.ht..._220\n  // [1490]\n  0x0c2b8c09, 0x06041955, 0x0d002707, 0x10004509,   // ht.cy.pl_444 et.fi.de_442 id.pt..._420 sk.sv..._440\n  0x12011a02, 0x45426602, 0x0c002b13, 0x3f212907,   // xxx.en.cs_222 af.mt.sk_222 cy.pl..._650 ms.tl.sw_432\n  0x27291d02, 0x293f2102, 0x3a002114, 0x123a4502,   // hr.ms.id_222 tl.sw.ms_222 tl.eu..._660 sk.eu.cs_222\n  0x45180f02, 0x0c001d23, 0x02002109, 0x22001702,   // es.hu.sk_222 hr.pl..._880 tl.da..._440 ro.tr..._220\n  // [14a0]\n  0x12001514, 0x151e1d55, 0x45120ca4, 0x06160f02,   // lv.cs..._660 hr.sr.lv_442 pl.cs.sk_433 es.lt.de_222\n  0x4b8c2e12, 0x1a003f13, 0x45000c09, 0x06000408,   // sq.ht.az_654 sw.xxx..._650 pl.sk..._440 fi.de..._430\n  0x1d452e02, 0x3a001823, 0x450d1207, 0x14004313,   // sq.sk.hr_222 hu.eu..._880 cs.pt.sk_432 vi.is..._650\n  0x05001902, 0x27001a02, 0x0c004522, 0x1f190109,   // et.fr..._220 xxx.id..._220 sk.pl..._870 en.et.ga_444\n  // [14b0]\n  0x182b1a12, 0x01003a08, 0x4b008c02, 0x0b000502,   // xxx.cy.hu_654 eu.en..._430 ht.az..._220 fr.no..._220\n  0x06001423, 0x03192baf, 0x1e1d0102, 0x43001208,   // is.de..._880 cy.et.nl_655 en.hr.sr_222 cs.vi..._430\n  0x05450c08, 0x29001923, 0x1e004509, 0x0d008c23,   // pl.sk.fr_443 et.ms..._880 sk.sr..._440 ht.pt..._880\n  0x2e100807, 0x1e302560, 0x22188ca4, 0x182e8c09,   // it.sv.sq_432 mk.be.sr_664 ht.hu.tr_433 ht.sq.hu_444\n  // [14c0]\n  0x1a006613, 0x03000213, 0x1f420307, 0x29000609,   // af.xxx..._650 da.nl..._650 nl.mt.ga_432 de.ms..._440\n  0x06100411, 0x10040614, 0x12002902, 0x1a001709,   // fi.sv.de_653 de.fi.sv_666 ms.cs..._220 ro.xxx..._440\n  0x453a0302, 0x22000614, 0x2b4b0109, 0x17160109,   // nl.eu.sk_222 de.tr..._660 en.az.cy_444 en.lt.ro_444\n  0x16001f02, 0x15161a09, 0x2e002202, 0x45151660,   // ga.lt..._220 xxx.lt.lv_444 tr.sq..._220 lt.lv.sk_664\n  // [14d0]\n  0x18222907, 0x1c0e3009, 0x3f006614, 0x0b006609,   // ms.tr.hu_432 be.ru.bg_444 af.sw..._660 af.no..._440\n  0x0c004023, 0x401d1e14, 0x03060107, 0x22002907,   // sl.pl..._880 sr.hr.sl_666 en.de.nl_432 ms.tr..._420\n  0x04001023, 0x0c001709, 0x1d0c4002, 0x14450d11,   // sv.fi..._880 ro.pl..._440 sl.pl.hr_222 pt.sk.is_653\n  0x200d0107, 0x231e0e14, 0x0c001e23, 0x1e1c0ea4,   // en.pt.gl_432 ru.sr.uk_666 sr.pl..._880 ru.bg.sr_433\n  // [14e0]\n  0x02000308, 0x45171402, 0x141f0614, 0x66001911,   // nl.da..._430 is.ro.sk_222 de.ga.is_666 et.af..._630\n  0x06190455, 0x43011a09, 0x14008c13, 0x02002b08,   // fi.et.de_442 xxx.en.vi_444 ht.is..._650 cy.da..._430\n  0x17004223, 0x0b142ba4, 0x29001909, 0x21002b13,   // mt.ro..._880 cy.is.no_433 et.ms..._440 cy.tl..._650\n  0x25231ca4, 0x1a660308, 0x43451a09, 0x10060baf,   // bg.uk.mk_433 nl.af.xxx_443 xxx.sk.vi_444 no.de.sv_655\n  // [14f0]\n  0x29192702, 0x21000d02, 0x2b001823, 0x10060408,   // id.et.ms_222 pt.tl..._220 hu.cy..._880 fi.de.sv_443\n  0x04000102, 0x082b0214, 0x45038c02, 0x21001914,   // en.fi..._220 da.cy.it_666 ht.nl.sk_222 et.tl..._660\n  0x1d1e16a4, 0x00000101, 0x06140b07, 0x43020b60,   // lt.sr.hr_433 en......_200 no.is.de_432 no.da.vi_664\n  0x036621a4, 0x1d000b11, 0x22004213, 0x02000d09,   // tl.af.nl_433 no.hr..._630 mt.tr..._650 pt.da..._440\n  // [1500]\n  0x03002212, 0x12004013, 0x1d000b09, 0x2b004309,   // tr.nl..._640 sl.cs..._650 no.hr..._440 vi.cy..._440\n  0x40001202, 0x0d380f09, 0x2b000209, 0x0c001702,   // cs.sl..._220 es.ca.pt_444 da.cy..._440 ro.pl..._220\n  0x1e230e55, 0x1a003f11, 0x22001522, 0x06033f09,   // ru.uk.sr_442 sw.xxx..._630 lv.tr..._870 sw.nl.de_444\n  0x29001009, 0x1e1d0c09, 0x19001008, 0x2e210109,   // sv.ms..._440 pl.hr.sr_444 sv.et..._430 en.tl.sq_444\n  // [1510]\n  0x27000107, 0x21002e02, 0x3f452e08, 0x2e001214,   // en.id..._420 sq.tl..._220 sq.sk.sw_443 cs.sq..._660\n  0x1e0c0b07, 0x06004214, 0x450c2708, 0x8c0b1412,   // no.pl.sr_432 mt.de..._660 id.pl.sk_443 is.no.ht_654\n  0x66050355, 0x8c003f08, 0x17004514, 0x2e001223,   // nl.fr.af_442 sw.ht..._430 sk.ro..._660 cs.sq..._880\n  0x0e1e2508, 0x12003a02, 0x8c002e23, 0x172e0109,   // mk.sr.ru_443 eu.cs..._220 sq.ht..._880 en.sq.ro_444\n  // [1520]\n  0x1e1d1513, 0x21000f08, 0x224b16a4, 0x231c0e13,   // lv.hr.sr_665 es.tl..._430 lt.az.tr_433 ru.bg.uk_665\n  0x42008c14, 0x1e1d21af, 0x0f002014, 0x293a4b07,   // ht.mt..._660 tl.hr.sr_655 gl.es..._660 az.eu.ms_432\n  0x02003a13, 0x0d004202, 0x1d454012, 0x22002e02,   // eu.da..._650 mt.pt..._220 sl.sk.hr_654 sq.tr..._220\n  0x06001011, 0x20002223, 0x27163f02, 0x02001a02,   // sv.de..._630 tr.gl..._880 sw.lt.id_222 xxx.da..._220\n  // [1530]\n  0x0c001413, 0x1d401e09, 0x212729a4, 0x21003a12,   // is.pl..._650 sr.sl.hr_444 ms.id.tl_433 eu.tl..._640\n  0x25002313, 0x21292713, 0x231c2560, 0x08000102,   // uk.mk..._650 id.ms.tl_665 mk.bg.uk_664 en.it..._220\n  0x08143a02, 0x18451208, 0x08002202, 0x1c251e55,   // eu.is.it_222 cs.sk.hu_443 tr.it..._220 sr.mk.bg_442\n  0x05003813, 0x38000d13, 0x03000d08, 0x18001512,   // ca.fr..._650 pt.ca..._650 pt.nl..._430 lv.hu..._640\n  // [1540]\n  0x1d191402, 0x17000309, 0x0f0d14a4, 0x10001502,   // is.et.hr_222 nl.ro..._440 is.pt.es_433 lv.sv..._220\n  0x4b002102, 0x042118a4, 0x43002913, 0x1d0c1e02,   // tl.az..._220 hu.tl.fi_433 ms.vi..._650 sr.pl.hr_222\n  0x0e251c12, 0x3f1f4209, 0x021d1e09, 0x180f3808,   // bg.mk.ru_654 mt.ga.sw_444 sr.hr.da_444 ca.es.hu_443\n  0x15002914, 0x1d004523, 0x101a06a4, 0x10003f02,   // ms.lv..._660 sk.hr..._880 de.xxx.sv_433 sw.sv..._220\n  // [1550]\n  0x27182908, 0x45000c22, 0x0c452b13, 0x40001914,   // ms.hu.id_443 pl.sk..._870 cy.sk.pl_665 et.sl..._660\n  0x2e421708, 0x1d001809, 0x12004014, 0x450c2ba4,   // ro.mt.sq_443 hu.hr..._440 sl.cs..._660 cy.pl.sk_433\n  0x180366a4, 0x40000b12, 0x18003812, 0x40000609,   // af.nl.hu_433 no.sl..._640 ca.hu..._640 de.sl..._440\n  0x43004509, 0x4b292209, 0x10000611, 0x06041013,   // sk.vi..._440 tr.ms.az_444 de.sv..._630 sv.fi.de_665\n  // [1560]\n  0x02008c02, 0x23300e08, 0x0c001002, 0x21042908,   // ht.da..._220 ru.be.uk_443 sv.pl..._220 ms.fi.tl_443\n  0x45030608, 0x02000b12, 0x18008c02, 0x2b001714,   // de.nl.sk_443 no.da..._640 ht.hu..._220 ro.cy..._660\n  0x2b001023, 0x66002909, 0x3a000b14, 0x42004513,   // sv.cy..._880 ms.af..._440 no.eu..._660 sk.mt..._650\n  0x38058c08, 0x08000f23, 0x01001f23, 0x8c004309,   // ht.fr.ca_443 es.it..._880 ga.en..._880 vi.ht..._440\n  // [1570]\n  0x04001a14, 0x0b141f08, 0x1d124508, 0x14001f13,   // xxx.fi..._660 ga.is.no_443 sk.cs.hr_443 ga.is..._650\n  0x1f030614, 0x01003f02, 0x2b000413, 0x29272102,   // de.nl.ga_666 sw.en..._220 fi.cy..._650 tl.id.ms_222\n  0x8c002213, 0x16000c21, 0x15191809, 0x230e2507,   // tr.ht..._650 pl.lt..._860 hu.et.lv_444 mk.ru.uk_432\n  0x1a000413, 0x1f001a13, 0x16000f09, 0x14004507,   // fi.xxx..._650 xxx.ga..._650 es.lt..._440 sk.is..._420\n  // [1580]\n  0x18001214, 0x1d451207, 0x18000614, 0x2e001914,   // cs.hu..._660 cs.sk.hr_432 de.hu..._660 et.sq..._660\n  0x27292002, 0x0e1e2314, 0x16150f07, 0x1d0b2202,   // gl.ms.id_222 uk.sr.ru_666 es.lv.lt_432 tr.no.hr_222\n  0x1a000f02, 0x15000d14, 0x38004202, 0x140f3808,   // es.xxx..._220 pt.lv..._660 mt.ca..._220 ca.es.is_443\n  0x1e230eaf, 0x01001a12, 0x30251e14, 0x14000214,   // ru.uk.sr_655 xxx.en..._640 sr.mk.be_666 da.is..._660\n  // [1590]\n  0x14296608, 0x18002909, 0x1e1c2507, 0x21660208,   // af.ms.is_443 ms.hu..._440 mk.bg.sr_432 da.af.tl_443\n  0x06000c14, 0x8c000f02, 0x0d002002, 0x1d383aa4,   // pl.de..._660 es.ht..._220 gl.pt..._220 eu.ca.hr_433\n  0x04100660, 0x1d001013, 0x030615af, 0x14000312,   // de.sv.fi_664 sv.hr..._650 lv.de.nl_655 nl.is..._640\n  0x01000d08, 0x01003f23, 0x0f200d60, 0x38000808,   // pt.en..._430 sw.en..._880 pt.gl.es_664 it.ca..._430\n  // [15a0]\n  0x0f0d4514, 0x0f001f13, 0x1d000102, 0x05000d09,   // sk.pt.es_666 ga.es..._650 en.hr..._220 pt.fr..._440\n  0x8c000107, 0x0d001623, 0x06000323, 0x140b1012,   // en.ht..._420 lt.pt..._880 nl.de..._880 sv.no.is_654\n  0x010d0508, 0x3a000214, 0x19000308, 0x38000f12,   // fr.pt.en_443 da.eu..._660 nl.et..._430 es.ca..._640\n  0x0d001608, 0x45001e08, 0x08003823, 0x03000b08,   // lt.pt..._430 sr.sk..._430 ca.it..._880 no.nl..._430\n  // [15b0]\n  0x044b2221, 0x12450c12, 0x40000302, 0x10000b13,   // tr.az.fi_876 pl.sk.cs_654 nl.sl..._220 no.sv..._650\n  0x1e1d0602, 0x04191614, 0x020b1413, 0x18002113,   // de.hr.sr_222 lt.et.fi_666 is.no.da_665 tl.hu..._650\n  0x66100609, 0x103a29af, 0x2b036612, 0x1c253012,   // de.sv.af_444 ms.eu.sv_655 af.nl.cy_654 be.mk.bg_654\n  0x1d121e02, 0x06660360, 0x29062709, 0x19043aa4,   // sr.cs.hr_222 nl.af.de_664 id.de.ms_444 eu.fi.et_433\n  // [15c0]\n  0x193a0408, 0x140b0109, 0x3f068c02, 0x8c062102,   // fi.eu.et_443 en.no.is_444 ht.de.sw_222 tl.de.ht_222\n  0x1c002512, 0x10000b12, 0x8c001f22, 0x1d000c09,   // mk.bg..._640 no.sv..._640 ga.ht..._870 pl.hr..._440\n  0x66000b14, 0x03000f14, 0x271629a4, 0x4b221709,   // no.af..._660 es.nl..._660 ms.lt.id_433 ro.tr.az_444\n  0x27141802, 0x3a000b09, 0x45024202, 0x301e0e09,   // hu.is.id_222 no.eu..._440 mt.da.sk_222 ru.sr.be_444\n  // [15d0]\n  0x03066613, 0x210c4208, 0x27003a23, 0x42002e08,   // af.de.nl_665 mt.pl.tl_443 eu.id..._880 sq.mt..._430\n  0x06000813, 0x0f181f13, 0x19002e02, 0x1e1d12a4,   // it.de..._650 ga.hu.es_665 sq.et..._220 cs.hr.sr_433\n  0x45008c14, 0x061d0fa4, 0x1a3f8c09, 0x45003a08,   // ht.sk..._660 es.hr.de_433 ht.sw.xxx_444 eu.sk..._430\n  0x3f002209, 0x4e373307, 0x08008c13, 0x29002202,   // tr.sw..._440 ur.ar.fa_432 ht.it..._650 tr.ms..._220\n  // [15e0]\n  0x43001a14, 0x08008c09, 0x380f0d12, 0x45000f09,   // xxx.vi..._660 ht.it..._440 pt.es.ca_654 es.sk..._440\n  0x18100109, 0x45000f14, 0x14000d13, 0x1d002e08,   // en.sv.hu_444 es.sk..._660 pt.is..._650 sq.hr..._430\n  0x031a8c08, 0x45180f55, 0x18003a09, 0x4b004021,   // ht.xxx.nl_443 es.hu.sk_442 eu.hu..._440 sl.az..._860\n  0x174b2260, 0x17003a09, 0x38002714, 0x03002e02,   // tr.az.ro_664 eu.ro..._440 id.ca..._660 sq.nl..._220\n  // [15f0]\n  0x22003a23, 0x0f002021, 0x0d058c08, 0x183f1a09,   // eu.tr..._880 gl.es..._860 ht.fr.pt_443 xxx.sw.hu_444\n  0x0c003f02, 0x02001022, 0x45061202, 0x1d1e0d02,   // sw.pl..._220 sv.da..._870 cs.de.sk_222 pt.sr.hr_222\n  0x15003a02, 0x453a1802, 0x173f1aa4, 0x8c002914,   // eu.lv..._220 hu.eu.sk_222 xxx.sw.ro_433 ms.ht..._660\n  0x1d401902, 0x213f16af, 0x08224b60, 0x02000313,   // et.sl.hr_222 lt.sw.tl_655 az.tr.it_664 nl.da..._650\n  // [1600]\n  0x1e000b09, 0x1a000609, 0x1c302308, 0x0b000402,   // no.sr..._440 de.xxx..._440 uk.be.bg_443 fi.no..._220\n  0x38170514, 0x660c4509, 0x1e003012, 0x06004202,   // fr.ro.ca_666 sk.pl.af_444 be.sr..._640 mt.de..._220\n  0x0d1f4511, 0x1d001914, 0x38001712, 0x1f000802,   // sk.ga.pt_653 et.hr..._660 ro.ca..._640 it.ga..._220\n  0x03062709, 0x43006609, 0x04002b12, 0x27192102,   // id.de.nl_444 af.vi..._440 cy.fi..._640 tl.et.id_222\n  // [1610]\n  0x04001f09, 0x04272912, 0x0d004302, 0x66001709,   // ga.fi..._440 ms.id.fi_654 vi.pt..._220 ro.af..._440\n  0x06188c08, 0x17081809, 0x21001d23, 0x66003802,   // ht.hu.de_443 hu.it.ro_444 hr.tl..._880 ca.af..._220\n  0x1c002521, 0x3a000412, 0x40002923, 0x1e001722,   // mk.bg..._860 fi.eu..._640 ms.sl..._880 ro.sr..._870\n  0x17000214, 0x01001f12, 0x011f1a09, 0x3f001f14,   // da.ro..._660 ga.en..._640 xxx.ga.en_444 ga.sw..._660\n  // [1620]\n  0x1e1d12af, 0x02001a08, 0x3a000413, 0x06001708,   // cs.hr.sr_655 xxx.da..._430 fi.eu..._650 ro.de..._430\n  0x01003a02, 0x2b001f14, 0x03000622, 0x45010802,   // eu.en..._220 ga.cy..._660 de.nl..._870 it.en.sk_222\n  0x15002b13, 0x173f1a09, 0x4b3f2207, 0x450d8c08,   // cy.lv..._650 xxx.sw.ro_444 tr.sw.az_432 ht.pt.sk_443\n  0x2b001821, 0x3a000309, 0x10020107, 0x38001821,   // hu.cy..._860 nl.eu..._440 en.da.sv_432 hu.ca..._860\n  // [1630]\n  0x433a8c08, 0x00008c42, 0x17000f14, 0x1f152b08,   // ht.eu.vi_443 ht......_C00 es.ro..._660 cy.lv.ga_443\n  0x3a004509, 0x8c003a14, 0x3f272912, 0x22000309,   // sk.eu..._440 eu.ht..._660 ms.id.sw_654 nl.tr..._440\n  0x2e004b13, 0x1e002902, 0x16001702, 0x27222908,   // az.sq..._650 ms.sr..._220 ro.lt..._220 ms.tr.id_443\n  0x22002102, 0x12454b02, 0x140b2baf, 0x143f2e07,   // tl.tr..._220 az.sk.cs_222 cy.no.is_655 sq.sw.is_432\n  // [1640]\n  0x27003a14, 0x231c2507, 0x06001402, 0x14008c02,   // eu.id..._660 mk.bg.uk_432 is.de..._220 ht.is..._220\n  0x141f8c13, 0x18003a12, 0x3a001402, 0x0b108c09,   // ht.ga.is_665 eu.hu..._640 is.eu..._220 ht.sv.no_444\n  0x14008c14, 0x1e000e08, 0x16001f13, 0x1f000602,   // ht.is..._660 ru.sr..._430 ga.lt..._650 de.ga..._220\n  0x0d0f4009, 0x2e000b09, 0x19000509, 0x1a004502,   // sl.es.pt_444 no.sq..._440 fr.et..._440 sk.xxx..._220\n  // [1650]\n  0x03026608, 0x45001a02, 0x03001414, 0x06191009,   // af.da.nl_443 xxx.sk..._220 is.nl..._660 sv.et.de_444\n  0x14001d14, 0x10000509, 0x45006614, 0x12450660,   // hr.is..._660 fr.sv..._440 af.sk..._660 de.sk.cs_664\n  0x3f001809, 0x42002909, 0x2b001923, 0x30230e60,   // hu.sw..._440 ms.mt..._440 et.cy..._880 ru.uk.be_664\n  0x2b420107, 0x42200107, 0x22001802, 0x19180d08,   // en.mt.cy_432 en.gl.mt_432 hu.tr..._220 pt.hu.et_443\n  // [1660]\n  0x290d0107, 0x03004202, 0x23001c14, 0x1c0e2509,   // en.pt.ms_432 mt.nl..._220 bg.uk..._660 mk.ru.bg_444\n  0x04001421, 0x18000d14, 0x0e251c60, 0x453f0307,   // is.fi..._860 pt.hu..._660 bg.mk.ru_664 nl.sw.sk_432\n  0x14102b12, 0x0c001602, 0x2b004012, 0x10002b20,   // cy.sv.is_654 lt.pl..._220 sl.cy..._640 cy.sv..._850\n  0x25233009, 0x2e000114, 0x0f2e08a4, 0x2e004014,   // be.uk.mk_444 en.sq..._660 it.sq.es_433 sl.sq..._660\n  // [1670]\n  0x29001802, 0x0c1d1e07, 0x45400fa4, 0x102b04a4,   // hu.ms..._220 sr.hr.pl_432 es.sl.sk_433 fi.cy.sv_433\n  0x1e001f22, 0x4b001f13, 0x29271402, 0x012b2908,   // ga.sr..._870 ga.az..._650 is.id.ms_222 ms.cy.en_443\n  0x2b000414, 0x10003f09, 0x1d454002, 0x04003802,   // fi.cy..._660 sw.sv..._440 sl.sk.hr_222 ca.fi..._220\n  0x19000107, 0x0f001802, 0x1d054002, 0x3a001d14,   // en.et..._420 hu.es..._220 sl.fr.hr_222 hr.eu..._660\n  // [1680]\n  0x04141007, 0x40272912, 0x1d102e02, 0x05001909,   // sv.is.fi_432 ms.id.sl_654 sq.sv.hr_222 et.fr..._440\n  0x04000502, 0x1d000123, 0x38001802, 0x02001923,   // fr.fi..._220 en.hr..._880 hu.ca..._220 et.da..._880\n  0x18000114, 0x2e000502, 0x2e000d02, 0x0c000123,   // en.hu..._660 fr.sq..._220 pt.sq..._220 en.pl..._880\n  0x422b01a4, 0x1d1e3f02, 0x19003a23, 0x45191a02,   // en.cy.mt_433 sw.sr.hr_222 eu.et..._880 xxx.et.sk_222\n  // [1690]\n  0x45000d08, 0x293a1902, 0x3a004223, 0x0b001914,   // pt.sk..._430 et.eu.ms_222 mt.eu..._880 et.no..._660\n  0x291d1902, 0x3a2e0107, 0x03000b14, 0x0f000514,   // et.hr.ms_222 en.sq.eu_432 no.nl..._660 fr.es..._660\n  0x3a420107, 0x030b0208, 0x0d380107, 0x19001a13,   // en.mt.eu_432 da.no.nl_443 en.ca.pt_432 xxx.et..._650\n  0x06002214, 0x080566a4, 0x1a001521, 0x8c000c14,   // tr.de..._660 af.fr.it_433 lv.xxx..._860 pl.ht..._660\n  // [16a0]\n  0x04146607, 0x423a38a4, 0x06030207, 0x38000802,   // af.is.fi_432 ca.eu.mt_433 da.nl.de_432 it.ca..._220\n  0x45001623, 0x1e253009, 0x15000414, 0x14006609,   // lt.sk..._880 be.mk.sr_444 fi.lv..._660 af.is..._440\n  0x29662709, 0x1c230e12, 0x0b001502, 0x0d004002,   // id.af.ms_444 ru.uk.bg_654 lv.no..._220 sl.pt..._220\n  0x0d8c0107, 0x0f200d13, 0x15001414, 0x10000413,   // en.ht.pt_432 pt.gl.es_665 is.lv..._660 fi.sv..._650\n  // [16b0]\n  0x2b1a2108, 0x0d001a09, 0x0f380d09, 0x08002e14,   // tl.xxx.cy_443 xxx.pt..._440 pt.ca.es_444 sq.it..._660\n  0x22002e09, 0x0f000d07, 0x1e003013, 0x45200f02,   // sq.tr..._440 pt.es..._420 be.sr..._650 es.gl.sk_222\n  0x1f000f09, 0x0f001414, 0x08004523, 0x37003323,   // es.ga..._440 is.es..._660 sk.it..._880 ur.ar..._880\n  0x191004a4, 0x45000c21, 0x0d0f0109, 0x43002e09,   // fi.sv.et_433 pl.sk..._860 en.es.pt_444 sq.vi..._440\n  // [16c0]\n  0x18450f09, 0x30230eaf, 0x18001908, 0x29003f02,   // es.sk.hu_444 ru.uk.be_655 et.hu..._430 sw.ms..._220\n  0x25000e13, 0x1d003a09, 0x04000514, 0x17000414,   // ru.mk..._650 eu.hr..._440 fr.fi..._660 fi.ro..._660\n  0x01060808, 0x08438c60, 0x0f003823, 0x43008c22,   // it.de.en_443 ht.vi.it_664 ca.es..._880 ht.vi..._870\n  0x05002102, 0x088c4312, 0x121d1eaf, 0x2e162709,   // tl.fr..._220 vi.ht.it_654 sr.hr.cs_655 id.lt.sq_444\n  // [16d0]\n  0x1d004509, 0x401d1208, 0x43088c14, 0x8c000812,   // sk.hr..._440 cs.hr.sl_443 ht.it.vi_666 it.ht..._640\n  0x43000202, 0x08002909, 0x40003f22, 0x14002b21,   // da.vi..._220 ms.it..._440 sw.sl..._870 cy.is..._860\n  0x45003f14, 0x140d0f55, 0x273f2908, 0x04036612,   // sw.sk..._660 es.pt.is_442 ms.sw.id_443 af.nl.fi_654\n  0x010f1a09, 0x40003f14, 0x450d0fa4, 0x08004202,   // xxx.es.en_444 sw.sl..._660 es.pt.sk_433 mt.it..._220\n  // [16e0]\n  0x230e1e09, 0x3f008c12, 0x05451207, 0x23251c09,   // sr.ru.uk_444 ht.sw..._640 cs.sk.fr_432 bg.mk.uk_444\n  0x123f4502, 0x66000414, 0x0c020b09, 0x02002102,   // sk.sw.cs_222 fi.af..._660 no.da.pl_444 tl.da..._220\n  0x0e002308, 0x45060208, 0x12001714, 0x18001902,   // uk.ru..._430 da.de.sk_443 ro.cs..._660 et.hu..._220\n  0x18000209, 0x03006620, 0x19006612, 0x43003a07,   // da.hu..._440 af.nl..._850 af.et..._640 eu.vi..._420\n  // [16f0]\n  0x293f3a02, 0x4b001012, 0x451e3f02, 0x182e0b08,   // eu.sw.ms_222 sv.az..._640 sw.sr.sk_222 no.sq.hu_443\n  0x1d2e2907, 0x2e002b09, 0x17001202, 0x03001823,   // ms.sq.hr_432 cy.sq..._440 cs.ro..._220 hu.nl..._880\n  0x45000b02, 0x0f003813, 0x14003f09, 0x42002e11,   // no.sk..._220 ca.es..._650 sw.is..._440 sq.mt..._630\n  0x228c3f12, 0x21001613, 0x27000414, 0x0f000508,   // sw.ht.tr_654 lt.tl..._650 fi.id..._660 fr.es..._430\n  // [1700]\n  0x2b001214, 0x1e004014, 0x03002902, 0x2b000402,   // cs.cy..._660 sl.sr..._660 ms.nl..._220 fi.cy..._220\n  0x03000d14, 0x05004009, 0x01001f09, 0x292218a4,   // pt.nl..._660 sl.fr..._440 ga.en..._440 hu.tr.ms_433\n  0x14004522, 0x8c000c08, 0x251c0e12, 0x27292102,   // sk.is..._870 pl.ht..._430 ru.bg.mk_654 tl.ms.id_222\n  0x271e1d08, 0x14003a22, 0x02003f09, 0x4b043f07,   // hr.sr.id_443 eu.is..._870 sw.da..._440 sw.fi.az_432\n  // [1710]\n  0x15004023, 0x16151707, 0x120c4502, 0x4b152213,   // sl.lv..._880 ro.lv.lt_432 sk.pl.cs_222 tr.lv.az_665\n  0x01061202, 0x18003809, 0x05000f13, 0x17002e14,   // cs.de.en_222 ca.hu..._440 es.fr..._650 sq.ro..._660\n  0x00000f2d, 0x0d380f60, 0x10000423, 0x04451213,   // es......_A00 es.ca.pt_664 fi.sv..._880 cs.sk.fi_665\n  0x45021202, 0x01291aaf, 0x1f004502, 0x66001812,   // cs.da.sk_222 xxx.ms.en_655 sk.ga..._220 hu.af..._640\n  // [1720]\n  0x22100612, 0x1a002102, 0x0f0d0514, 0x19002122,   // de.sv.tr_654 tl.xxx..._220 fr.pt.es_666 tl.et..._870\n  0x12051f02, 0x8c003f07, 0x2b002223, 0x2e004009,   // ga.fr.cs_222 sw.ht..._420 tr.cy..._880 sl.sq..._440\n  0x66001008, 0x05000d14, 0x1e2b1702, 0x0f001713,   // sv.af..._430 pt.fr..._660 ro.cy.sr_222 ro.es..._650\n  0x06660307, 0x06036612, 0x020c2108, 0x1e000602,   // nl.af.de_432 af.nl.de_654 tl.pl.da_443 de.sr..._220\n  // [1730]\n  0x1a100b55, 0x3f008c22, 0x38008c02, 0x8c000802,   // no.sv.xxx_442 ht.sw..._870 ht.ca..._220 it.ht..._220\n  0x230e3012, 0x011a4009, 0x0e251c13, 0x30230e55,   // be.ru.uk_654 sl.xxx.en_444 bg.mk.ru_665 ru.uk.be_442\n  0x033a3fa4, 0x374e3308, 0x25002309, 0x27011402,   // sw.eu.nl_433 ur.fa.ar_443 uk.mk..._440 is.en.id_222\n  0x14030608, 0x1d164502, 0x03061460, 0x1a000313,   // de.nl.is_443 sk.lt.hr_222 is.de.nl_664 nl.xxx..._650\n  // [1740]\n  0x1f002114, 0x10062b60, 0x02004202, 0x01008c23,   // tl.ga..._660 cy.de.sv_664 mt.da..._220 ht.en..._880\n  0x04000614, 0x15164509, 0x08004309, 0x04004514,   // de.fi..._660 sk.lt.lv_444 vi.it..._440 sk.fi..._660\n  0x18000d09, 0x17292708, 0x0f080d14, 0x08001713,   // pt.hu..._440 id.ms.ro_443 pt.it.es_666 ro.it..._650\n  0x3f080107, 0x16006609, 0x1c233008, 0x293f2108,   // en.it.sw_432 af.lt..._440 be.uk.bg_443 tl.sw.ms_443\n  // [1750]\n  0x16002709, 0x2e1d1e09, 0x0c002e12, 0x43006621,   // id.lt..._440 sr.hr.sq_444 sq.pl..._640 af.vi..._860\n  0x450f1a02, 0x1d000414, 0x18162b12, 0x16060455,   // xxx.es.sk_222 fi.hr..._660 cy.lt.hu_654 fi.de.lt_442\n  0x0d664360, 0x04001502, 0x380f1f12, 0x45001709,   // vi.af.pt_664 lv.fi..._220 ga.es.ca_654 ro.sk..._440\n  0x16000412, 0x43000d12, 0x04002b02, 0x29001709,   // fi.lt..._640 pt.vi..._640 cy.fi..._220 ro.ms..._440\n  // [1760]\n  0x3a001f08, 0x29042709, 0x17002b02, 0x3f190109,   // ga.eu..._430 id.fi.ms_444 cy.ro..._220 en.et.sw_444\n  0x1c0e1e07, 0x29020ba4, 0x27000314, 0x171e1daf,   // sr.ru.bg_432 no.da.ms_433 nl.id..._660 hr.sr.ro_655\n  0x45000309, 0x0e302311, 0x8c0d0512, 0x1e1d1560,   // nl.sk..._440 uk.be.ru_653 fr.pt.ht_654 lv.hr.sr_664\n  0x160d0b09, 0x14000102, 0x8c001509, 0x14001502,   // no.pt.lt_444 en.is..._220 lv.ht..._440 lv.is..._220\n  // [1770]\n  0x16000f02, 0x200f0b09, 0x02000413, 0x160d0fa4,   // es.lt..._220 no.es.gl_444 fi.da..._650 es.pt.lt_433\n  0x02211708, 0x01001814, 0x14000513, 0x03061560,   // ro.tl.da_443 hu.en..._660 fr.is..._650 lv.de.nl_664\n  0x10061414, 0x45000f12, 0x8c000202, 0x42212e12,   // is.de.sv_666 es.sk..._640 da.ht..._220 sq.tl.mt_654\n  0x3a004b14, 0x14000302, 0x10190612, 0x0f011a08,   // az.eu..._660 nl.is..._220 de.et.sv_654 xxx.en.es_443\n  // [1780]\n  0x451a0202, 0x19006623, 0x3f1f1808, 0x1f3f18a4,   // da.xxx.sk_222 af.et..._880 hu.ga.sw_443 hu.sw.ga_433\n  0x2b006602, 0x40001923, 0x3a001a14, 0x19660313,   // af.cy..._220 et.sl..._880 xxx.eu..._660 nl.af.et_665\n  0x03660808, 0x18452907, 0x04000314, 0x06001613,   // it.af.nl_443 ms.sk.hu_432 nl.fi..._660 lt.de..._650\n  0x18003f13, 0x0e1c23af, 0x4b004214, 0x66002112,   // sw.hu..._650 uk.bg.ru_655 mt.az..._660 tl.af..._640\n  // [1790]\n  0x19141012, 0x293f1902, 0x18001702, 0x22001909,   // sv.is.et_654 et.sw.ms_222 ro.hu..._220 et.tr..._440\n  0x3a002109, 0x1a000423, 0x42000602, 0x04000808,   // tl.eu..._440 fi.xxx..._880 de.mt..._220 it.fi..._430\n  0x27000813, 0x293f2709, 0x04000209, 0x1e161d02,   // it.id..._650 id.sw.ms_444 da.fi..._440 hr.lt.sr_222\n  0x45161702, 0x04660b07, 0x1e454002, 0x12450c08,   // ro.lt.sk_222 no.af.fi_432 sl.sk.sr_222 pl.sk.cs_443\n  // [17a0]\n  0x43180412, 0x2e662707, 0x29151612, 0x18294208,   // fi.hu.vi_654 id.af.sq_432 lt.lv.ms_654 mt.ms.hu_443\n  0x0e1c2509, 0x18000212, 0x03002223, 0x19081708,   // mk.bg.ru_444 da.hu..._640 tr.nl..._880 ro.it.et_443\n  0x38001814, 0x66004202, 0x19002923, 0x8c004302,   // hu.ca..._660 mt.af..._220 ms.et..._880 vi.ht..._220\n  0x66001809, 0x43001809, 0x12001009, 0x2b271a08,   // hu.af..._440 hu.vi..._440 sv.cs..._440 xxx.id.cy_443\n  // [17b0]\n  0x21001802, 0x1e1c0e12, 0x08001708, 0x27001708,   // hu.tl..._220 ru.bg.sr_654 ro.it..._430 ro.id..._430\n  0x19002b09, 0x1d194509, 0x1d1e1208, 0x4b004221,   // cy.et..._440 sk.et.hr_444 cs.sr.hr_443 mt.az..._860\n  0x3f001908, 0x23002512, 0x160f0d13, 0x16000f12,   // et.sw..._430 mk.uk..._640 pt.es.lt_665 es.lt..._640\n  0x1c000e11, 0x224b3aaf, 0x0e251caf, 0x45151260,   // ru.bg..._630 eu.az.tr_655 bg.mk.ru_655 cs.lv.sk_664\n  // [17c0]\n  0x01052b60, 0x21001609, 0x1e40455e, 0x230e3060,   // cy.fr.en_664 lt.tl..._440 sk.sl.sr_652 be.ru.uk_664\n  0x04061009, 0x19100408, 0x19000314, 0x141006a4,   // sv.de.fi_444 fi.sv.et_443 nl.et..._660 de.sv.is_433\n  0x0f450b07, 0x18001602, 0x29002123, 0x14002002,   // no.sk.es_432 lt.hu..._220 tl.ms..._880 gl.is..._220\n  0x06660312, 0x4b000514, 0x04002113, 0x45008c02,   // nl.af.de_654 fr.az..._660 tl.fi..._650 ht.sk..._220\n  // [17d0]\n  0x1e1d1255, 0x22000612, 0x0d381a08, 0x45003823,   // cs.hr.sr_442 de.tr..._640 xxx.ca.pt_443 ca.sk..._880\n  0x22002014, 0x45050102, 0x2e002207, 0x15001413,   // gl.tr..._660 en.fr.sk_222 tr.sq..._420 is.lv..._650\n  0x12004008, 0x06224b13, 0x1e0e2308, 0x02100b60,   // sl.cs..._430 az.tr.de_665 uk.ru.sr_443 no.sv.da_664\n  0x15001621, 0x42002222, 0x27292160, 0x3f000d08,   // lt.lv..._860 tr.mt..._870 tl.ms.id_664 pt.sw..._430\n  // [17e0]\n  0x0d001609, 0x04031907, 0x1e163f02, 0x04036609,   // lt.pt..._440 et.nl.fi_432 sw.lt.sr_222 af.nl.fi_444\n  0x0b001713, 0x01002113, 0x1e000308, 0x1f003f12,   // ro.no..._650 tl.en..._650 nl.sr..._430 sw.ga..._640\n  0x222729a4, 0x1c002309, 0x38001922, 0x1e1d16af,   // ms.id.tr_433 uk.bg..._440 et.ca..._870 lt.hr.sr_655\n  0x16010208, 0x06191012, 0x19004b02, 0x1e1d1709,   // da.en.lt_443 sv.et.de_654 az.et..._220 ro.hr.sr_444\n  // [17f0]\n  0x29001508, 0x02004009, 0x10001809, 0x08001e14,   // lv.ms..._430 sl.da..._440 hu.sv..._440 sr.it..._660\n  0x42000809, 0x0f0d1f12, 0x29001902, 0x04000602,   // it.mt..._440 ga.pt.es_654 et.ms..._220 de.fi..._220\n  0x18000808, 0x19000421, 0x0e233060, 0x451d1702,   // it.hu..._430 fi.et..._860 be.uk.ru_664 ro.hr.sk_222\n  0x10190411, 0x0000402d, 0x14001a08, 0x03001207,   // fi.et.sv_653 sl......_A00 xxx.is..._430 cs.nl..._420\n\n  // [1800]\n  0x38001723, 0x1f001409, 0x19002e09, 0x0f3f2109,   // ro.ca..._880 is.ga..._440 sq.et..._440 tl.sw.es_444\n  0x3a000b02, 0x4b221714, 0x0d003a09, 0x183a1207,   // no.eu..._220 ro.tr.az_666 eu.pt..._440 cs.eu.hu_432\n  0x101738af, 0x12000423, 0x16000813, 0x21000113,   // ca.ro.sv_655 fi.cs..._880 it.lt..._650 en.tl..._650\n  0x29003a12, 0x0b003a22, 0x4b041aad, 0x06004211,   // eu.ms..._640 eu.no..._870 xxx.fi.az_643 mt.de..._630\n  // [1810]\n  0x02006608, 0x01002202, 0x0d004b14, 0x1d121509,   // af.da..._430 tr.en..._220 az.pt..._660 lv.cs.hr_444\n  0x06000523, 0x05002909, 0x21001923, 0x14002b12,   // fr.de..._880 ms.fr..._440 et.tl..._880 cy.is..._640\n  0x66001e09, 0x0f001808, 0x16002123, 0x21002907,   // sr.af..._440 hu.es..._430 tl.lt..._880 ms.tl..._420\n  0x10001f09, 0x06001a14, 0x1d003f23, 0x0e302307,   // ga.sv..._440 xxx.de..._660 sw.hr..._880 uk.be.ru_432\n  // [1820]\n  0x27004309, 0x17000b23, 0x1e0e3013, 0x1f180f08,   // vi.id..._440 no.ro..._880 be.ru.sr_665 es.hu.ga_443\n  0x0d004209, 0x38001714, 0x374e33ad, 0x1d008c09,   // mt.pt..._440 ro.ca..._660 ur.fa.ar_643 ht.hr..._440\n  0x43000807, 0x4b000608, 0x66001613, 0x15003a14,   // it.vi..._420 de.az..._430 lt.af..._650 eu.lv..._660\n  0x42000414, 0x1e1d19a4, 0x0c001821, 0x1d004207,   // fi.mt..._660 et.hr.sr_433 hu.pl..._860 mt.hr..._420\n  // [1830]\n  0x151d4209, 0x14000d08, 0x1d000413, 0x2e001809,   // mt.hr.lv_444 pt.is..._430 fi.hr..._650 hu.sq..._440\n  0x1e400c02, 0x4b660107, 0x19423808, 0x121a4502,   // pl.sl.sr_222 en.af.az_432 ca.mt.et_443 sk.xxx.cs_222\n  0x45121002, 0x03272908, 0x273f2902, 0x1e401da4,   // sv.cs.sk_222 ms.id.nl_443 ms.sw.id_222 hr.sl.sr_433\n  0x3f002b13, 0x0f001614, 0x20450109, 0x021543a4,   // cy.sw..._650 lt.es..._660 en.sk.gl_444 vi.lv.da_433\n  // [1840]\n  0x14002114, 0x1f002209, 0x190d29a4, 0x0e231e09,   // tl.is..._660 tr.ga..._440 ms.pt.et_433 sr.uk.ru_444\n  0x3f004502, 0x0b002e21, 0x100c45af, 0x374e3311,   // sk.sw..._220 sq.no..._860 sk.pl.sv_655 ur.fa.ar_653\n  0x1e002702, 0x4b220fa4, 0x1d4b1e09, 0x14004209,   // id.sr..._220 es.tr.az_433 sr.az.hr_444 mt.is..._440\n  0x14224b13, 0x45003a02, 0x08000314, 0x1e002708,   // az.tr.is_665 eu.sk..._220 nl.it..._660 id.sr..._430\n  // [1850]\n  0x45000d21, 0x1d1e18af, 0x06004014, 0x16000613,   // pt.sk..._860 hu.sr.hr_655 sl.de..._660 de.lt..._650\n  0x21000108, 0x1d000602, 0x18002702, 0x2b001408,   // en.tl..._430 de.hr..._220 id.hu..._220 is.cy..._430\n  0x3a000c14, 0x38432b08, 0x03223a08, 0x0d008c02,   // pl.eu..._660 cy.vi.ca_443 eu.tr.nl_443 ht.pt..._220\n  0x2e001609, 0x06000809, 0x2b1618af, 0x10002913,   // lt.sq..._440 it.de..._440 hu.lt.cy_655 ms.sv..._650\n  // [1860]\n  0x0f8c0107, 0x0b100214, 0x08000d09, 0x17420808,   // en.ht.es_432 da.sv.no_666 pt.it..._440 it.mt.ro_443\n  0x10004202, 0x1f050b07, 0x45001f14, 0x1e001c09,   // mt.sv..._220 no.fr.ga_432 ga.sk..._660 bg.sr..._440\n  0x22000308, 0x1d000302, 0x05000609, 0x172e42a4,   // nl.tr..._430 nl.hr..._220 de.fr..._440 mt.sq.ro_433\n  0x2b003a14, 0x2b424008, 0x29218c02, 0x301e2308,   // eu.cy..._660 sl.mt.cy_443 ht.tl.ms_222 uk.sr.be_443\n  // [1870]\n  0x660b1009, 0x27003a02, 0x100615a4, 0x45431409,   // sv.no.af_444 eu.id..._220 lv.de.sv_433 is.vi.sk_444\n  0x101914a4, 0x16000809, 0x29002113, 0x18004312,   // is.et.sv_433 it.lt..._440 tl.ms..._650 vi.hu..._640\n  0x1e1d1609, 0x02220109, 0x1d083a02, 0x0f1a8c55,   // lt.hr.sr_444 en.tr.da_444 eu.it.hr_222 ht.xxx.es_442\n  0x22003f23, 0x0f000408, 0x292127af, 0x06004b23,   // sw.tr..._880 fi.es..._430 id.tl.ms_655 az.de..._880\n  // [1880]\n  0x4e3733ad, 0x07005c08, 0x05000c09, 0x230e30ad,   // ur.ar.fa_643 yi.iw..._430 pl.fr..._440 be.ru.uk_643\n  0x200d0fa4, 0x21003808, 0x45273a02, 0x03001f09,   // es.pt.gl_433 ca.tl..._430 eu.id.sk_222 ga.nl..._440\n  0x0d036655, 0x38008c13, 0x27002102, 0x12000309,   // af.nl.pt_442 ht.ca..._650 tl.id..._220 nl.cs..._440\n  0x1d450c02, 0x10450b09, 0x1f0f3808, 0x4b000814,   // pl.sk.hr_222 no.sk.sv_444 ca.es.ga_443 it.az..._660\n  // [1890]\n  0x161d1e09, 0x0d000207, 0x18002114, 0x18004308,   // sr.hr.lt_444 da.pt..._420 tl.hu..._660 vi.hu..._430\n  0x14004312, 0x18002e07, 0x8c006602, 0x45002e22,   // vi.is..._640 sq.hu..._420 af.ht..._220 sq.sk..._870\n  0x05000808, 0x0d002102, 0x45001508, 0x03001509,   // it.fr..._430 tl.pt..._220 lv.sk..._430 lv.nl..._440\n  0x23000e08, 0x01001713, 0x17000322, 0x1e232502,   // ru.uk..._430 ro.en..._650 nl.ro..._870 mk.uk.sr_222\n  // [18a0]\n  0x1a451712, 0x21006623, 0x1d451202, 0x10002b08,   // ro.sk.xxx_654 af.tl..._880 cs.sk.hr_222 cy.sv..._430\n  0x21002e09, 0x17054509, 0x03001714, 0x1d1e0109,   // sq.tl..._440 sk.fr.ro_444 ro.nl..._660 en.sr.hr_444\n  0x21002707, 0x1a004202, 0x053f1a08, 0x3f210109,   // id.tl..._420 mt.xxx..._220 xxx.sw.fr_443 en.tl.sw_444\n  0x2e004b08, 0x45040302, 0x4b228c07, 0x12004214,   // az.sq..._430 nl.fi.sk_222 ht.tr.az_432 mt.cs..._660\n  // [18b0]\n  0x0c001012, 0x02006614, 0x0c000208, 0x38000c23,   // sv.pl..._640 af.da..._660 da.pl..._430 pl.ca..._880\n  0x0e001e11, 0x17001a08, 0x19381712, 0x2b006612,   // sr.ru..._630 xxx.ro..._430 ro.ca.et_654 af.cy..._640\n  0x1e1d0308, 0x1e003813, 0x03002109, 0x14002109,   // nl.hr.sr_443 ca.sr..._650 tl.nl..._440 tl.is..._440\n  0x15002e09, 0x19003802, 0x17001009, 0x1e253002,   // sq.lv..._440 ca.et..._220 sv.ro..._440 be.mk.sr_222\n  // [18c0]\n  0x12451f12, 0x3f000f09, 0x22181012, 0x01000f09,   // ga.sk.cs_654 es.sw..._440 sv.hu.tr_654 es.en..._440\n  0x8c1f1209, 0x1d001512, 0x450c3f02, 0x1a660507,   // cs.ga.ht_444 lv.hr..._640 sw.pl.sk_222 fr.af.xxx_432\n  0x02000f09, 0x293f1f09, 0x061822bc, 0x23300ea4,   // es.da..._440 ga.sw.ms_444 tr.hu.de_865 ru.be.uk_433\n  0x12002e09, 0x04000208, 0x06004309, 0x18002214,   // sq.cs..._440 da.fi..._430 vi.de..._440 tr.hu..._660\n  // [18d0]\n  0x06100312, 0x38001f02, 0x3a001621, 0x03661608,   // nl.sv.de_654 ga.ca..._220 lt.eu..._860 lt.af.nl_443\n  0x151640a4, 0x45000c02, 0x45210f09, 0x06041413,   // sl.lt.lv_433 pl.sk..._220 es.tl.sk_444 is.fi.de_665\n  0x14380faf, 0x45008c09, 0x0d382060, 0x12451609,   // es.ca.is_655 ht.sk..._440 gl.ca.pt_664 lt.sk.cs_444\n  0x3f000502, 0x0b1814a4, 0x18000613, 0x01086608,   // fr.sw..._220 is.hu.no_433 de.hu..._650 af.it.en_443\n  // [18e0]\n  0x2b161812, 0x40001209, 0x1d124008, 0x1f001a02,   // hu.lt.cy_654 cs.sl..._440 sl.cs.hr_443 xxx.ga..._220\n  0x1a001f08, 0x0000100a, 0x1d1e2e02, 0x1d161a08,   // ga.xxx..._430 sv......_500 sq.sr.hr_222 xxx.lt.hr_443\n  0x1d451e09, 0x14004b12, 0x0e251c09, 0x04060309,   // sr.sk.hr_444 az.is..._640 bg.mk.ru_444 nl.de.fi_444\n  0x21000414, 0x1d001611, 0x10001814, 0x04001608,   // fi.tl..._660 lt.hr..._630 hu.sv..._660 lt.fi..._430\n  // [18f0]\n  0x01000513, 0x08661708, 0x2b003814, 0x2e001409,   // fr.en..._650 ro.af.it_443 ca.cy..._660 is.sq..._440\n  0x420d0809, 0x0c006607, 0x1e0b1d02, 0x14001008,   // it.pt.mt_444 af.pl..._420 hr.no.sr_222 sv.is..._430\n  0x06000c09, 0x0000020a, 0x01000408, 0x04004209,   // pl.de..._440 da......_500 fi.en..._430 mt.fi..._440\n  0x21002708, 0x45003807, 0x29000309, 0x01003808,   // id.tl..._430 ca.sk..._420 nl.ms..._440 ca.en..._430\n  // [1900]\n  0x12174202, 0x451d4202, 0x0f002902, 0x15000302,   // mt.ro.cs_222 mt.hr.sk_222 ms.es..._220 nl.lv..._220\n  0x01002908, 0x03004309, 0x00002042, 0x03002214,   // ms.en..._430 vi.nl..._440 gl......_C00 tr.nl..._660\n  0x14001022, 0x04193a60, 0x451d1207, 0x04000f14,   // sv.is..._870 eu.et.fi_664 cs.hr.sk_432 es.fi..._660\n  0x04001509, 0x1a001807, 0x66000213, 0x43000107,   // lv.fi..._440 hu.xxx..._420 da.af..._650 en.vi..._420\n  // [1910]\n  0x06191014, 0x17000502, 0x3f6603a4, 0x06001032,   // sv.et.de_666 fr.ro..._220 nl.af.sw_433 sv.de..._A60\n  0x4b2218bc, 0x2b006614, 0x16432b08, 0x66161412,   // hu.tr.az_865 af.cy..._660 cy.vi.lt_443 is.lt.af_654\n  0x38054209, 0x45041a02, 0x3f001e02, 0x04000513,   // mt.fr.ca_444 xxx.fi.sk_222 sr.sw..._220 fr.fi..._650\n  0x15000109, 0x02140b08, 0x40026608, 0x4b000614,   // en.lv..._440 no.is.da_443 af.da.sl_443 de.az..._660\n  // [1920]\n  0x45161214, 0x08002122, 0x15001d14, 0x38000514,   // cs.lt.sk_666 tl.it..._870 hr.lv..._660 fr.ca..._660\n  0x271929a4, 0x4b003a13, 0x4b003f14, 0x1c302312,   // ms.et.id_433 eu.az..._650 sw.az..._660 uk.be.bg_654\n  0x01296655, 0x27001814, 0x01008c12, 0x06000114,   // af.ms.en_442 hu.id..._660 ht.en..._640 en.de..._660\n  0x18000308, 0x020b10a4, 0x0f3a3f02, 0x1a004014,   // nl.hu..._430 sv.no.da_433 sw.eu.es_222 sl.xxx..._660\n  // [1930]\n  0x66001007, 0x1a0f3f13, 0x02000323, 0x1d002002,   // sv.af..._420 sw.es.xxx_665 nl.da..._880 gl.hr..._220\n  0x02040b08, 0x3a1a0fa4, 0x66030107, 0x0f170107,   // no.fi.da_443 es.xxx.eu_433 en.nl.af_432 en.ro.es_432\n  0x0c000202, 0x1c232509, 0x450c2b13, 0x66000514,   // da.pl..._220 mk.uk.bg_444 cy.pl.sk_665 fr.af..._660\n  0x43001414, 0x0c006621, 0x15000c09, 0x056629a4,   // is.vi..._660 af.pl..._860 pl.lv..._440 ms.af.fr_433\n  // [1940]\n  0x0c223f55, 0x33003721, 0x66004514, 0x3f0c4508,   // sw.tr.pl_442 ar.ur..._860 sk.af..._660 sk.pl.sw_443\n  0x08004502, 0x1f000608, 0x66001f13, 0x1e252312,   // sk.it..._220 de.ga..._430 ga.af..._650 uk.mk.sr_654\n  0x1e302502, 0x14001208, 0x3f001502, 0x14003f23,   // mk.be.sr_222 cs.is..._430 lv.sw..._220 sw.is..._880\n  0x1a003f23, 0x1d001002, 0x1a000d09, 0x06004b09,   // sw.xxx..._880 sv.hr..._220 pt.xxx..._440 az.de..._440\n  // [1950]\n  0x2b100b09, 0x10420208, 0x06193a13, 0x45183a02,   // no.sv.cy_444 da.mt.sv_443 eu.et.de_665 eu.hu.sk_222\n  0x17380107, 0x03660609, 0x140b0214, 0x18001914,   // en.ca.ro_432 de.af.nl_444 da.no.is_666 et.hu..._660\n  0x451e4002, 0x2b000114, 0x27661902, 0x0c003f23,   // sl.sr.sk_222 en.cy..._660 et.af.id_222 sw.pl..._880\n  0x19002112, 0x036619af, 0x30002508, 0x15001908,   // tl.et..._640 et.af.nl_655 mk.be..._430 et.lv..._430\n  // [1960]\n  0x02001512, 0x29192102, 0x45000b09, 0x1c003023,   // lv.da..._640 tl.et.ms_222 no.sk..._440 be.bg..._880\n  0x3a002923, 0x17000f09, 0x06002014, 0x220c0d08,   // ms.eu..._880 es.ro..._440 gl.de..._660 pt.pl.tr_443\n  0x3a001909, 0x0e302312, 0x27050d02, 0x05001e02,   // et.eu..._440 uk.be.ru_654 pt.fr.id_222 sr.fr..._220\n  0x29008c08, 0x18000623, 0x0c000322, 0x66001923,   // ht.ms..._430 de.hu..._880 nl.pl..._870 et.af..._880\n  // [1970]\n  0x0d1a8c07, 0x18144513, 0x4b002e13, 0x0d000414,   // ht.xxx.pt_432 sk.is.hu_665 sq.az..._650 fi.pt..._660\n  0x422718a4, 0x29660312, 0x19380507, 0x1d456608,   // hu.id.mt_433 nl.af.ms_654 fr.ca.et_432 af.sk.hr_443\n  0x04004002, 0x40000414, 0x080d8ca4, 0x0b002e02,   // sl.fi..._220 fi.sl..._660 ht.pt.it_433 sq.no..._220\n  0x0c451213, 0x29000802, 0x251e2308, 0x2e000509,   // cs.sk.pl_665 it.ms..._220 uk.sr.mk_443 fr.sq..._440\n  // [1980]\n  0x08100b09, 0x0d060208, 0x40000814, 0x0d003a14,   // no.sv.it_444 da.de.pt_443 it.sl..._660 eu.pt..._660\n  0x251c1ea4, 0x1d451ea4, 0x43062109, 0x27008c14,   // sr.bg.mk_433 sr.sk.hr_433 tl.de.vi_444 ht.id..._660\n  0x43000d21, 0x1d0d0802, 0x12454013, 0x0c001d12,   // pt.vi..._860 it.pt.hr_222 sl.sk.cs_665 hr.pl..._640\n  0x40001512, 0x38431a08, 0x02100ba4, 0x25231ea4,   // lv.sl..._640 xxx.vi.ca_443 no.sv.da_433 sr.uk.mk_433\n  // [1990]\n  0x211d1e13, 0x14004523, 0x10001602, 0x12008c21,   // sr.hr.tl_665 sk.is..._880 lt.sv..._220 ht.cs..._860\n  0x0d000514, 0x1a000509, 0x0b002b02, 0x454010a4,   // fr.pt..._660 fr.xxx..._440 cy.no..._220 sv.sl.sk_433\n  0x17036614, 0x03008c21, 0x40001d09, 0x1e062ea4,   // af.nl.ro_666 ht.nl..._860 hr.sl..._440 sq.de.sr_433\n  0x12451faf, 0x18161508, 0x02000509, 0x18001e09,   // ga.sk.cs_655 lv.lt.hu_443 fr.da..._440 sr.hu..._440\n  // [19a0]\n  0x02000507, 0x66001409, 0x0e1c2508, 0x02000513,   // fr.da..._420 is.af..._440 mk.bg.ru_443 fr.da..._650\n  0x66020308, 0x0e1c2308, 0x0f0d45a4, 0x27000402,   // nl.da.af_443 uk.bg.ru_443 sk.pt.es_433 fi.id..._220\n  0x3f182907, 0x02001609, 0x22000102, 0x27004b13,   // ms.hu.sw_432 lt.da..._440 en.tr..._220 az.id..._650\n  0x10043809, 0x12451f02, 0x04002902, 0x02002708,   // ca.fi.sv_444 ga.sk.cs_222 ms.fi..._220 id.da..._430\n  // [19b0]\n  0x03001613, 0x05001022, 0x1e301c14, 0x19004b13,   // lt.nl..._650 sv.fr..._870 bg.be.sr_666 az.et..._650\n  0x051f0107, 0x15003814, 0x033a66a4, 0x43003f09,   // en.ga.fr_432 ca.lv..._660 af.eu.nl_433 sw.vi..._440\n  0x42290809, 0x2e182b12, 0x8c000123, 0x38000f22,   // it.ms.mt_444 cy.hu.sq_654 en.ht..._880 es.ca..._870\n  0x02221209, 0x3f001414, 0x16003a02, 0x0d0f3807,   // cs.tr.da_444 is.sw..._660 eu.lt..._220 ca.es.pt_432\n  // [19c0]\n  0x15003a22, 0x0c000d09, 0x22001514, 0x27002023,   // eu.lv..._870 pt.pl..._440 lv.tr..._660 gl.id..._880\n  0x14003a12, 0x19008c09, 0x22002b23, 0x06431fa4,   // eu.is..._640 ht.et..._440 cy.tr..._880 ga.vi.de_433\n  0x43000208, 0x25000e12, 0x12008c08, 0x43001402,   // da.vi..._430 ru.mk..._640 ht.cs..._430 is.vi..._220\n  0x1c230e07, 0x05001814, 0x4b000502, 0x16001002,   // ru.uk.bg_432 hu.fr..._660 fr.az..._220 sv.lt..._220\n  // [19d0]\n  0x45150c12, 0x1d292708, 0x3a002702, 0x29214212,   // pl.lv.sk_654 id.ms.hr_443 id.eu..._220 mt.tl.ms_654\n  0x1c0e25a4, 0x0f004509, 0x15003808, 0x08041912,   // mk.ru.bg_433 sk.es..._440 ca.lv..._430 et.fi.it_654\n  0x292b2702, 0x2b420c12, 0x1d000f14, 0x0b000409,   // id.cy.ms_222 pl.mt.cy_654 es.hr..._660 fi.no..._440\n  0x06000307, 0x1f002b02, 0x14082ba4, 0x2e008c13,   // nl.de..._420 cy.ga..._220 cy.it.is_433 ht.sq..._650\n  // [19e0]\n  0x400d0f13, 0x2e003a13, 0x451e1d07, 0x02003809,   // es.pt.sl_665 eu.sq..._650 hr.sr.sk_432 ca.da..._440\n  0x1e1d2e02, 0x8c0d19ad, 0x04020b09, 0x22030613,   // sq.hr.sr_222 et.pt.ht_643 no.da.fi_444 de.nl.tr_665\n  0x0f3a3812, 0x231e2513, 0x0e251c07, 0x01000814,   // ca.eu.es_654 mk.sr.uk_665 bg.mk.ru_432 it.en..._660\n  0x30002523, 0x66002714, 0x0f004209, 0x22031a13,   // mk.be..._880 id.af..._660 mt.es..._440 xxx.nl.tr_665\n  // [19f0]\n  0x1e1d1612, 0x0e1e2360, 0x19004b14, 0x42000512,   // lt.hr.sr_654 uk.sr.ru_664 az.et..._660 fr.mt..._640\n  0x45408c02, 0x06003a21, 0x02222707, 0x06383a12,   // ht.sl.sk_222 eu.de..._860 id.tr.da_432 eu.ca.de_654\n  0x030d3a08, 0x27221402, 0x20000b09, 0x12451412,   // eu.pt.nl_443 is.tr.id_222 no.gl..._440 is.sk.cs_654\n  0x3f380107, 0x120f4509, 0x19043f08, 0x01002b13,   // en.ca.sw_432 sk.es.cs_444 sw.fi.et_443 cy.en..._650\n  // [1a00]\n  0x08003a13, 0x0f124509, 0x1c0e23af, 0x2e002914,   // eu.it..._650 sk.cs.es_444 uk.ru.bg_655 ms.sq..._660\n  0x17002923, 0x422b2109, 0x2b004221, 0x3f004202,   // ms.ro..._880 tl.cy.mt_444 mt.cy..._860 mt.sw..._220\n  0x1d120107, 0x0d0f1855, 0x1d451502, 0x1f002702,   // en.cs.hr_432 hu.es.pt_442 lv.sk.hr_222 id.ga..._220\n  0x19003f23, 0x231e2560, 0x1d190409, 0x03000508,   // sw.et..._880 mk.sr.uk_664 fi.et.hr_444 fr.nl..._430\n  // [1a10]\n  0x0b002108, 0x22194b14, 0x0f8c2ea4, 0x14001f08,   // tl.no..._430 az.et.tr_666 sq.ht.es_433 ga.is..._430\n  0x1d000508, 0x17002e07, 0x0f002102, 0x10190409,   // fr.hr..._430 sq.ro..._420 tl.es..._220 fi.et.sv_444\n  0x14020b09, 0x3a001502, 0x300e2514, 0x45290402,   // no.da.is_444 lv.eu..._220 mk.ru.be_666 fi.ms.sk_222\n  0x0f001f09, 0x29001809, 0x140f1808, 0x182206a4,   // ga.es..._440 hu.ms..._440 hu.es.is_443 de.tr.hu_433\n  // [1a20]\n  0x3f000214, 0x450f1209, 0x15164208, 0x0f000c12,   // da.sw..._660 cs.es.sk_444 mt.lt.lv_443 pl.es..._640\n  0x12180f12, 0x42060c12, 0x0f006614, 0x0d3f1909,   // es.hu.cs_654 pl.de.mt_654 af.es..._660 et.sw.pt_444\n  0x3a000608, 0x3a1d1e02, 0x45120fa4, 0x42060b09,   // de.eu..._430 sr.hr.eu_222 es.cs.sk_433 no.de.mt_444\n  0x0f451260, 0x45004013, 0x05003a23, 0x16001521,   // cs.sk.es_664 sl.sk..._650 eu.fr..._880 lv.lt..._860\n  // [1a30]\n  0x38004502, 0x19224b14, 0x14004314, 0x42006613,   // sk.ca..._220 az.tr.et_666 vi.is..._660 af.mt..._650\n  0x0f0d3812, 0x38001602, 0x04003821, 0x27004208,   // ca.pt.es_654 lt.ca..._220 ca.fi..._860 mt.id..._430\n  0x04003812, 0x06000407, 0x15000b09, 0x05003f23,   // ca.fi..._640 fi.de..._420 no.lv..._440 sw.fr..._880\n  0x14181f11, 0x17000b14, 0x141f1814, 0x14181f09,   // ga.hu.is_653 no.ro..._660 hu.ga.is_666 ga.hu.is_444\n  // [1a40]\n  0x38008c09, 0x38058c60, 0x4e3733a4, 0x18001f14,   // ht.ca..._440 ht.fr.ca_664 ur.ar.fa_433 ga.hu..._660\n  0x120c1d02, 0x38450fa4, 0x3a2927a4, 0x1d151e02,   // hr.pl.cs_222 es.sk.ca_433 id.ms.eu_433 sr.lv.hr_222\n  0x2e000809, 0x04001011, 0x22001908, 0x1e1f1d02,   // it.sq..._440 sv.fi..._630 et.tr..._430 hr.ga.sr_222\n  0x140b0212, 0x0e251eaf, 0x05386609, 0x0b193809,   // da.no.is_654 sr.mk.ru_655 af.ca.fr_444 ca.et.no_444\n  // [1a50]\n  0x38001709, 0x0c014208, 0x2e183f12, 0x0c001822,   // ro.ca..._440 mt.en.pl_443 sw.hu.sq_654 hu.pl..._870\n  0x190217a4, 0x4b220612, 0x12452902, 0x4b2e2208,   // ro.da.et_433 de.tr.az_654 ms.sk.cs_222 tr.sq.az_443\n  0x1e003f09, 0x300e1c12, 0x45000512, 0x1e001a02,   // sw.sr..._440 bg.ru.be_654 fr.sk..._640 xxx.sr..._220\n  0x182e2908, 0x2e004509, 0x2b001713, 0x10144212,   // ms.sq.hu_443 sk.sq..._440 ro.cy..._650 mt.is.sv_654\n  // [1a60]\n  0x21003f22, 0x45004208, 0x21002b14, 0x0d006608,   // sw.tl..._870 mt.sk..._430 cy.tl..._660 af.pt..._430\n  0x08004223, 0x16008c08, 0x1c252308, 0x1a000408,   // mt.it..._880 ht.lt..._430 uk.mk.bg_443 fi.xxx..._430\n  0x05451255, 0x120f4508, 0x12451413, 0x27664202,   // cs.sk.fr_442 sk.es.cs_443 is.sk.cs_665 mt.af.id_222\n  0x1d1e1002, 0x1e1d1809, 0x03002e12, 0x22004b08,   // sv.sr.hr_222 hu.hr.sr_444 sq.nl..._640 az.tr..._430\n  // [1a70]\n  0x18002e22, 0x1e3f1d02, 0x1d001613, 0x3a001f09,   // sq.hu..._870 hr.sw.sr_222 lt.hr..._650 ga.eu..._440\n  0x181f0f14, 0x38001708, 0x1a000b09, 0x01210502,   // es.ga.hu_666 ro.ca..._430 no.xxx..._440 fr.tl.en_222\n  0x451a3802, 0x0c004214, 0x2e173808, 0x42003802,   // ca.xxx.sk_222 mt.pl..._660 ca.ro.sq_443 ca.mt..._220\n  0x8c001e09, 0x45004008, 0x1e1d2102, 0x66060109,   // sr.ht..._440 sl.sk..._430 tl.hr.sr_222 en.de.af_444\n  // [1a80]\n  0x40008c13, 0x21428c14, 0x15000114, 0x3f660360,   // ht.sl..._650 ht.mt.tl_666 en.lv..._660 nl.af.sw_664\n  0x1e001d11, 0x10001509, 0x01003809, 0x19040109,   // hr.sr..._630 lv.sv..._440 ca.en..._440 en.fi.et_444\n  0x0d051808, 0x18660507, 0x15001702, 0x29042102,   // hu.fr.pt_443 fr.af.hu_432 ro.lv..._220 tl.fi.ms_222\n  0x2e001612, 0x42001a02, 0x1d401507, 0x03004209,   // lt.sq..._640 xxx.mt..._220 lv.sl.hr_432 mt.nl..._440\n  // [1a90]\n  0x01001402, 0x06003f02, 0x2e001802, 0x05000822,   // is.en..._220 sw.de..._220 hu.sq..._220 it.fr..._870\n  0x08001a22, 0x0b100213, 0x0b100209, 0x3a002b02,   // xxx.it..._870 da.sv.no_665 da.sv.no_444 cy.eu..._220\n  0x2b000309, 0x08001514, 0x2b000802, 0x1a004009,   // nl.cy..._440 lv.it..._660 it.cy..._220 sl.xxx..._440\n  0x12181a09, 0x22001614, 0x02180460, 0x3a001908,   // xxx.hu.cs_444 lt.tr..._660 fi.hu.da_664 et.eu..._430\n  // [1aa0]\n  0x21002214, 0x21002913, 0x3f000422, 0x1d000f02,   // tr.tl..._660 ms.tl..._650 fi.sw..._870 es.hr..._220\n  0x222e2908, 0x10004302, 0x272917af, 0x0d004213,   // ms.sq.tr_443 vi.sv..._220 ro.ms.id_655 mt.pt..._650\n  0x2e1d1e08, 0x120c0107, 0x42000d09, 0x12454060,   // sr.hr.sq_443 en.pl.cs_432 pt.mt..._440 sl.sk.cs_664\n  0x00000715, 0x43002907, 0x19002907, 0x66030109,   // iw......_700 ms.vi..._420 ms.et..._420 en.nl.af_444\n  // [1ab0]\n  0x1e001714, 0x1d041902, 0x12454007, 0x0d380f02,   // ro.sr..._660 et.fi.hr_222 sl.sk.cs_432 es.ca.pt_222\n  0x02140b09, 0x38001713, 0x3f001f13, 0x230e1e12,   // no.is.da_444 ro.ca..._650 ga.sw..._650 sr.ru.uk_654\n  0x02100b13, 0x03001f13, 0x4b001714, 0x101d2e07,   // no.sv.da_665 ga.nl..._650 ro.az..._660 sq.hr.sv_432\n  0x14002e12, 0x00003001, 0x122b6609, 0x4b002220,   // sq.is..._640 be......_200 af.cy.cs_444 tr.az..._850\n  // [1ac0]\n  0x1c230e60, 0x12454209, 0x45001f11, 0x0d000c14,   // ru.uk.bg_664 mt.sk.cs_444 ga.sk..._630 pl.pt..._660\n  0x0c000409, 0x3f002e14, 0x3f004214, 0x45081402,   // fi.pl..._440 sq.sw..._660 mt.sw..._660 is.it.sk_222\n  0x38180f12, 0x3f002e20, 0x1c001e12, 0x08002707,   // es.hu.ca_654 sq.sw..._850 sr.bg..._640 id.it..._420\n  0x08001f14, 0x66002b21, 0x22003f22, 0x0f001813,   // ga.it..._660 cy.af..._860 sw.tr..._870 hu.es..._650\n  // [1ad0]\n  0x01002b08, 0x04001a02, 0x0f000814, 0x10000502,   // cy.en..._430 xxx.fi..._220 it.es..._660 fr.sv..._220\n  0x0f001409, 0x12021002, 0x4b001002, 0x4b000f14,   // is.es..._440 sv.da.cs_222 sv.az..._220 es.az..._660\n  0x08001202, 0x27000309, 0x04292109, 0x0f008c14,   // cs.it..._220 nl.id..._440 tl.ms.fi_444 ht.es..._660\n  0x401e1da4, 0x10001a08, 0x14124560, 0x1c0e1eaf,   // hr.sr.sl_433 xxx.sv..._430 sk.cs.is_664 sr.ru.bg_655\n  // [1ae0]\n  0x05003822, 0x25000e22, 0x18000f02, 0x45001509,   // ca.fr..._870 ru.mk..._870 es.hu..._220 lv.sk..._440\n  0x3f000314, 0x66004309, 0x1a3a2108, 0x213f1f08,   // nl.sw..._660 vi.af..._440 tl.eu.xxx_443 ga.sw.tl_443\n  0x0b001a13, 0x27001f09, 0x25003013, 0x032b06a4,   // xxx.no..._650 ga.id..._440 be.mk..._650 de.cy.nl_433\n  0x020b1014, 0x29001f14, 0x14100109, 0x0b006602,   // sv.no.da_666 ga.ms..._660 en.sv.is_444 af.no..._220\n  // [1af0]\n  0x3f001002, 0x40001d22, 0x04001207, 0x183a0607,   // sv.sw..._220 hr.sl..._870 cs.fi..._420 de.eu.hu_432\n  0x25231c07, 0x12451602, 0x16001412, 0x080f0d14,   // bg.uk.mk_432 lt.sk.cs_222 is.lt..._640 pt.es.it_666\n  0x06003f14, 0x08001912, 0x020b1009, 0x16004513,   // sw.de..._660 et.it..._640 sv.no.da_444 sk.lt..._650\n  0x3a140b09, 0x45401d60, 0x06000b23, 0x15006609,   // no.is.eu_444 hr.sl.sk_664 no.de..._880 af.lv..._440\n  // [1b00]\n  0x29172702, 0x22003a14, 0x1f003a09, 0x1d1e0402,   // id.ro.ms_222 eu.tr..._660 eu.ga..._440 fi.sr.hr_222\n  0x0f001502, 0x45001513, 0x17001214, 0x194b2255,   // lv.es..._220 lv.sk..._650 cs.ro..._660 tr.az.et_442\n  0x1d0f2702, 0x0d190109, 0x05001713, 0x25231c09,   // id.es.hr_222 en.et.pt_444 ro.fr..._650 bg.uk.mk_444\n  0x298c2702, 0x15001009, 0x0b002b13, 0x0f0d3809,   // id.ht.ms_222 sv.lv..._440 cy.no..._650 ca.pt.es_444\n  // [1b10]\n  0x022729a4, 0x380f1207, 0x14004009, 0x3a060308,   // ms.id.da_433 cs.es.ca_432 sl.is..._440 nl.de.eu_443\n  0x37334e55, 0x25001c07, 0x21220412, 0x43000b09,   // fa.ur.ar_442 bg.mk..._420 fi.tr.tl_654 no.vi..._440\n  0x16000b09, 0x3f001208, 0x8c001f13, 0x04001612,   // no.lt..._440 cs.sw..._430 ga.ht..._650 lt.fi..._640\n  0x2e003f14, 0x3f002913, 0x02186612, 0x3f002908,   // sw.sq..._660 ms.sw..._650 af.hu.da_654 ms.sw..._430\n  // [1b20]\n  0x292e3f02, 0x03002b13, 0x270b2902, 0x181f0c08,   // sw.sq.ms_222 cy.nl..._650 ms.no.id_222 pl.ga.hu_443\n  0x17192107, 0x3f001802, 0x02002b22, 0x01001609,   // tl.et.ro_432 hu.sw..._220 cy.da..._870 lt.en..._440\n  0x27294202, 0x10002b23, 0x43000114, 0x06216612,   // mt.ms.id_222 cy.sv..._880 en.vi..._660 af.tl.de_654\n  0x3a001e02, 0x231e2508, 0x2b000b14, 0x0f0d3aa4,   // sr.eu..._220 mk.sr.uk_443 no.cy..._660 eu.pt.es_433\n  // [1b30]\n  0x05006614, 0x0b002902, 0x3a001721, 0x1d193f02,   // af.fr..._660 ms.no..._220 ro.eu..._860 sw.et.hr_222\n  0x06004002, 0x1e3023af, 0x8c002209, 0x1e000c09,   // sl.de..._220 uk.be.sr_655 tr.ht..._440 pl.sr..._440\n  0x061410a4, 0x1f292709, 0x02043a55, 0x45401209,   // sv.is.de_433 id.ms.ga_444 eu.fi.da_442 cs.sl.sk_444\n  0x0f006602, 0x060f2012, 0x08002709, 0x212e1009,   // af.es..._220 gl.es.de_654 id.it..._440 sv.sq.tl_444\n  // [1b40]\n  0x29000c02, 0x1d2e6602, 0x1f000c09, 0x8c003802,   // pl.ms..._220 af.sq.hr_222 pl.ga..._440 ca.ht..._220\n  0x25233012, 0x08001d23, 0x17000f08, 0x66004009,   // be.uk.mk_654 hr.it..._880 es.ro..._430 sl.af..._440\n  0x8c1d1207, 0x1e002322, 0x3f183aaf, 0x38002209,   // cs.hr.ht_432 uk.sr..._870 eu.hu.sw_655 tr.ca..._440\n  0x1e1d29a4, 0x1f004b09, 0x12454014, 0x66022212,   // ms.hr.sr_433 az.ga..._440 sl.sk.cs_666 tr.da.af_654\n  // [1b50]\n  0x3f001609, 0x3a000422, 0x0f190408, 0x1f001d08,   // lt.sw..._440 fi.eu..._870 fi.et.es_443 hr.ga..._430\n  0x210f2708, 0x060c0109, 0x45401a02, 0x0d1727a4,   // id.es.tl_443 en.pl.de_444 xxx.sl.sk_222 id.ro.pt_433\n  0x121d4509, 0x05004308, 0x01001509, 0x1e001709,   // sk.hr.cs_444 vi.fr..._430 lv.en..._440 ro.sr..._440\n  0x29003a23, 0x298c2708, 0x273f8c02, 0x3f004002,   // eu.ms..._880 id.ht.ms_443 ht.sw.id_222 sl.sw..._220\n  // [1b60]\n  0x3a004009, 0x27003a09, 0x45180d12, 0x1d404512,   // sl.eu..._440 eu.id..._440 pt.hu.sk_654 sk.sl.hr_654\n  0x450366a4, 0x05193808, 0x3a000208, 0x1c232513,   // af.nl.sk_433 ca.et.fr_443 da.eu..._430 mk.uk.bg_665\n  0x064b8c09, 0x20000621, 0x16002907, 0x101904af,   // ht.az.de_444 de.gl..._860 ms.lt..._420 fi.et.sv_655\n  0x16002b21, 0x18004523, 0x3a000b23, 0x42003f08,   // cy.lt..._860 sk.hu..._880 no.eu..._880 sw.mt..._430\n  // [1b70]\n  0x0e002521, 0x19141008, 0x2b001612, 0x2b001622,   // mk.ru..._860 sv.is.et_443 lt.cy..._640 lt.cy..._870\n  0x45061f02, 0x1a002208, 0x3f001402, 0x1a001d14,   // ga.de.sk_222 tr.xxx..._430 is.sw..._220 hr.xxx..._660\n  0x2b001623, 0x16002b22, 0x190410a4, 0x0b000613,   // lt.cy..._880 cy.lt..._870 sv.fi.et_433 de.no..._650\n  0x1d181207, 0x020c4208, 0x02660308, 0x0e231c55,   // cs.hu.hr_432 mt.pl.da_443 nl.af.da_443 bg.uk.ru_442\n  // [1b80]\n  0x14066612, 0x3f2729a4, 0x01001f14, 0x40002909,   // af.de.is_654 ms.id.sw_433 ga.en..._660 ms.sl..._440\n  0x121d40a4, 0x21003a13, 0x19003a08, 0x27003f08,   // sl.hr.cs_433 eu.tl..._650 eu.et..._430 sw.id..._430\n  0x1f002b21, 0x250e2308, 0x18000609, 0x152e17a4,   // cy.ga..._860 uk.ru.mk_443 de.hu..._440 ro.sq.lv_433\n  0x40021a09, 0x293f1709, 0x45001609, 0x17003f22,   // xxx.da.sl_444 ro.sw.ms_444 lt.sk..._440 sw.ro..._870\n  // [1b90]\n  0x3a001708, 0x2b001202, 0x16421708, 0x451f1808,   // ro.eu..._430 cs.cy..._220 ro.mt.lt_443 hu.ga.sk_443\n  0x3f224b08, 0x45061a02, 0x27381702, 0x10190412,   // az.tr.sw_443 xxx.de.sk_222 ro.ca.id_222 fi.et.sv_654\n  0x120c4512, 0x173a0607, 0x08004b02, 0x15380b09,   // sk.pl.cs_654 de.eu.ro_432 az.it..._220 no.ca.lv_444\n  0x290f2707, 0x02101a08, 0x22000d13, 0x18451207,   // id.es.ms_432 xxx.sv.da_443 pt.tr..._650 cs.sk.hu_432\n  // [1ba0]\n  0x18063a09, 0x0f000202, 0x1a001f02, 0x231c0ead,   // eu.de.hu_444 da.es..._220 ga.xxx..._220 ru.bg.uk_643\n  0x43161702, 0x16002723, 0x1e0e25a4, 0x1f151655,   // ro.lt.vi_222 id.lt..._880 mk.ru.sr_433 lt.lv.ga_442\n  0x25002308, 0x1e004512, 0x18003f09, 0x43273f08,   // uk.mk..._430 sk.sr..._640 sw.hu..._440 sw.id.vi_443\n  0x22004209, 0x061f8c13, 0x0d002214, 0x22001209,   // mt.tr..._440 ht.ga.de_665 tr.pt..._660 cs.tr..._440\n  // [1bb0]\n  0x063f1a09, 0x66002923, 0x27003823, 0x3f0c0107,   // xxx.sw.de_444 ms.af..._880 ca.id..._880 en.pl.sw_432\n  0x033a8c02, 0x230e2555, 0x15000814, 0x66001a02,   // ht.eu.nl_222 mk.ru.uk_442 it.lv..._660 xxx.af..._220\n  0x1a001f14, 0x08001802, 0x29050107, 0x14001602,   // ga.xxx..._660 hu.it..._220 en.fr.ms_432 lt.is..._220\n  0x01001414, 0x3f000c22, 0x29042702, 0x1d003f14,   // is.en..._660 pl.sw..._870 id.fi.ms_222 sw.hr..._660\n  // [1bc0]\n  0x0000182d, 0x40000b14, 0x25231c12, 0x290d4002,   // hu......_A00 no.sl..._660 bg.uk.mk_654 sl.pt.ms_222\n  0x40003a23, 0x21003f23, 0x3f002123, 0x15211608,   // eu.sl..._880 sw.tl..._880 tl.sw..._880 lt.tl.lv_443\n  0x15100b14, 0x1d3a2102, 0x270f2907, 0x8c002b09,   // no.sv.lv_666 tl.eu.hr_222 ms.es.id_432 cy.ht..._440\n  0x1d003a23, 0x101504a4, 0x1d021002, 0x0b0210af,   // eu.hr..._880 fi.lv.sv_433 sv.da.hr_222 sv.da.no_655\n  // [1bd0]\n  0x1d182e02, 0x452e1212, 0x3f002923, 0x21001602,   // sq.hu.hr_222 cs.sq.sk_654 ms.sw..._880 lt.tl..._220\n  0x1d0c0208, 0x19001813, 0x29001612, 0x3f001509,   // da.pl.hr_443 hu.et..._650 lt.ms..._640 lv.sw..._440\n  0x1a001209, 0x2e450107, 0x14000b20, 0x0f3f0808,   // cs.xxx..._440 en.sk.sq_432 no.is..._850 it.sw.es_443\n  0x12181f12, 0x19292707, 0x27001013, 0x0e1c1e55,   // ga.hu.cs_654 id.ms.et_432 sv.id..._650 sr.bg.ru_442\n  // [1be0]\n  0x22003f09, 0x29271902, 0x3f001408, 0x15001914,   // sw.tr..._440 et.id.ms_222 is.sw..._430 et.lv..._660\n  0x22000423, 0x0d001614, 0x2e1d4208, 0x1d1e1aa4,   // fi.tr..._880 lt.pt..._660 mt.hr.sq_443 xxx.sr.hr_433\n  0x2e388c12, 0x17000d23, 0x10020b07, 0x2e000209,   // ht.ca.sq_654 pt.ro..._880 no.da.sv_432 da.sq..._440\n  0x66004214, 0x14002202, 0x29001913, 0x42002714,   // mt.af..._660 tr.is..._220 et.ms..._650 id.mt..._660\n  // [1bf0]\n  0x10190408, 0x17001e09, 0x21001a13, 0x0f004208,   // fi.et.sv_443 sr.ro..._440 xxx.tl..._650 mt.es..._430\n  0x4b006609, 0x1d002209, 0x12194513, 0x45064209,   // af.az..._440 tr.hr..._440 sk.et.cs_665 mt.de.sk_444\n  0x010f2009, 0x10146612, 0x0b181f08, 0x14020baf,   // gl.es.en_444 af.is.sv_654 ga.hu.no_443 no.da.is_655\n  0x0f083808, 0x2b000602, 0x080f3808, 0x4b000813,   // ca.it.es_443 de.cy..._220 ca.es.it_443 it.az..._650\n\n  // [1c00]\n  0x19002b22, 0x19000f23, 0x15004213, 0x19001223,   // cy.et..._870 es.et..._880 mt.lv..._650 cs.et..._880\n  0x29001922, 0x1f101907, 0x381f2b12, 0x19004b09,   // et.ms..._870 et.sv.ga_432 cy.ga.ca_654 az.et..._440\n  0x1c232508, 0x0f002107, 0x30000e07, 0x19001209,   // mk.uk.bg_443 tl.es..._420 ru.be..._420 cs.et..._440\n  0x19001214, 0x33374e07, 0x29061613, 0x43222108,   // cs.et..._660 fa.ar.ur_432 lt.de.ms_665 tl.tr.vi_443\n  // [1c10]\n  0x12450c09, 0x0c451207, 0x04001223, 0x27000109,   // pl.sk.cs_444 cs.sk.pl_432 cs.fi..._880 en.id..._440\n  0x160c2108, 0x1d160208, 0x21222709, 0x17002214,   // tl.pl.lt_443 da.lt.hr_443 id.tr.tl_444 tr.ro..._660\n  0x401d2709, 0x1c003022, 0x10008c02, 0x1d101802,   // id.hr.sl_444 be.bg..._870 ht.sv..._220 hu.sv.hr_222\n  0x660c1709, 0x06101aa4, 0x42002913, 0x45001822,   // ro.pl.af_444 xxx.sv.de_433 ms.mt..._650 hu.sk..._870\n  // [1c20]\n  0x06141009, 0x1c231e60, 0x02036602, 0x10140b08,   // sv.is.de_444 sr.uk.bg_664 af.nl.da_222 no.is.sv_443\n  0x15000411, 0x4b000d08, 0x66002b12, 0x45003f09,   // fi.lv..._630 pt.az..._430 cy.af..._640 sw.sk..._440\n  0x08002e02, 0x0b003809, 0x8c002e12, 0x1d002702,   // sq.it..._220 ca.no..._440 sq.ht..._640 id.hr..._220\n  0x10060b07, 0x224b06af, 0x66000c09, 0x05001508,   // no.de.sv_432 de.az.tr_655 pl.af..._440 lv.fr..._430\n  // [1c30]\n  0x1d000d02, 0x230e1ca4, 0x0d0838a4, 0x0b060109,   // pt.hr..._220 bg.ru.uk_433 ca.it.pt_433 en.de.no_444\n  0x19000608, 0x1e000309, 0x02140b55, 0x17000d02,   // de.et..._430 nl.sr..._440 no.is.da_442 pt.ro..._220\n  0x05000c23, 0x22002109, 0x401d1e55, 0x10060407,   // pl.fr..._880 tl.tr..._440 sr.hr.sl_442 fi.de.sv_432\n  0x04191009, 0x12002e12, 0x0d001809, 0x14001713,   // sv.et.fi_444 sq.cs..._640 hu.pt..._440 ro.is..._650\n  // [1c40]\n  0x14451f12, 0x21036660, 0x1e252308, 0x1d001808,   // ga.sk.is_654 af.nl.tl_664 uk.mk.sr_443 hu.hr..._430\n  0x40006609, 0x22000b23, 0x38001a09, 0x0d002022,   // af.sl..._440 no.tr..._880 xxx.ca..._440 gl.pt..._870\n  0x8c004023, 0x22004514, 0x1e000e12, 0x0b001513,   // sl.ht..._880 sk.tr..._660 ru.sr..._640 lv.no..._650\n  0x12171902, 0x452e1008, 0x0b000c12, 0x10190407,   // et.ro.cs_222 sv.sq.sk_443 pl.no..._640 fi.et.sv_432\n  // [1c50]\n  0x22002913, 0x662b1455, 0x22272908, 0x43002e02,   // ms.tr..._650 is.cy.af_442 ms.id.tr_443 sq.vi..._220\n  0x42224b08, 0x16043f12, 0x29271702, 0x27292202,   // az.tr.mt_443 sw.fi.lt_654 ro.id.ms_222 tr.ms.id_222\n  0x17004208, 0x18004513, 0x272922a4, 0x04002907,   // mt.ro..._430 sk.hu..._650 tr.ms.id_433 ms.fi..._420\n  0x8c001213, 0x1d454202, 0x08003f14, 0x1f3f4208,   // cs.ht..._650 mt.sk.hr_222 sw.it..._660 mt.sw.ga_443\n  // [1c60]\n  0x1e450c08, 0x1e1d4514, 0x06002112, 0x0c000513,   // pl.sk.sr_443 sk.hr.sr_666 tl.de..._640 fr.pl..._650\n  0x3f001d02, 0x38002b13, 0x43001a13, 0x1d108c02,   // hr.sw..._220 cy.ca..._650 xxx.vi..._650 ht.sv.hr_222\n  0x17002114, 0x3a004222, 0x8c001723, 0x42003822,   // tl.ro..._660 mt.eu..._870 ro.ht..._880 ca.mt..._870\n  0x451f1902, 0x1d3a1ea4, 0x1d401702, 0x031a6614,   // et.ga.sk_222 sr.eu.hr_433 ro.sl.hr_222 af.xxx.nl_666\n  // [1c70]\n  0x2e002708, 0x03004514, 0x02004514, 0x031a66a4,   // id.sq..._430 sk.nl..._660 sk.da..._660 af.xxx.nl_433\n  0x14272108, 0x1f002e13, 0x451f4202, 0x2e001823,   // tl.id.is_443 sq.ga..._650 mt.ga.sk_222 hu.sq..._880\n  0x12002b08, 0x1d000402, 0x2b3f2708, 0x23251c13,   // cy.cs..._430 fi.hr..._220 id.sw.cy_443 bg.mk.uk_665\n  0x45141a12, 0x0f382baf, 0x01001f02, 0x3a000114,   // xxx.is.sk_654 cy.ca.es_655 ga.en..._220 en.eu..._660\n  // [1c80]\n  0x12061a02, 0x1e1d6602, 0x4b001914, 0x05006602,   // xxx.de.cs_222 af.hr.sr_222 et.az..._660 af.fr..._220\n  0x1c0e3008, 0x0d001214, 0x22000413, 0x17000402,   // be.ru.bg_443 cs.pt..._660 fi.tr..._650 fi.ro..._220\n  0x8c003809, 0x04000813, 0x22002707, 0x0b022b13,   // ca.ht..._440 it.fi..._650 id.tr..._420 cy.da.no_665\n  0x10000212, 0x12450d09, 0x120603a4, 0x4b8c3f08,   // da.sv..._640 pt.sk.cs_444 nl.de.cs_433 sw.ht.az_443\n  // [1c90]\n  0x4b220355, 0x45002b08, 0x1f001721, 0x04030612,   // nl.tr.az_442 cy.sk..._430 ro.ga..._860 de.nl.fi_654\n  0x2e000602, 0x10002b02, 0x27002e09, 0x02191812,   // de.sq..._220 cy.sv..._220 sq.id..._440 hu.et.da_654\n  0x18003813, 0x228c2108, 0x0f000302, 0x25231c08,   // ca.hu..._650 tl.ht.tr_443 nl.es..._220 bg.uk.mk_443\n  0x03001423, 0x03001909, 0x0f000d12, 0x45060255,   // is.nl..._880 et.nl..._440 pt.es..._640 da.de.sk_442\n  // [1ca0]\n  0x05382ead, 0x45002b23, 0x3a051f07, 0x19100612,   // sq.ca.fr_643 cy.sk..._880 ga.fr.eu_432 de.sv.et_654\n  0x173a0107, 0x05000d13, 0x1f423809, 0x3a000514,   // en.eu.ro_432 pt.fr..._650 ca.mt.ga_444 fr.eu..._660\n  0x2b296607, 0x22002b02, 0x4b004502, 0x29000421,   // af.ms.cy_432 cy.tr..._220 sk.az..._220 fi.ms..._860\n  0x27001a13, 0x03046607, 0x08001e02, 0x0f003f07,   // xxx.id..._650 af.fi.nl_432 sr.it..._220 sw.es..._420\n  // [1cb0]\n  0x3a001f13, 0x8c001e14, 0x1a0f4060, 0x380d0f02,   // ga.eu..._650 sr.ht..._660 sl.es.xxx_664 es.pt.ca_222\n  0x14081512, 0x15181612, 0x02043a60, 0x3a0603a4,   // lv.it.is_654 lt.hu.lv_654 eu.fi.da_664 nl.de.eu_433\n  0x02003a21, 0x43001712, 0x0b003a21, 0x05004314,   // eu.da..._860 ro.vi..._640 eu.no..._860 vi.fr..._660\n  0x2b001809, 0x02000102, 0x02061608, 0x3a006602,   // hu.cy..._440 en.da..._220 lt.de.da_443 af.eu..._220\n  // [1cc0]\n  0x66003a14, 0x3f001922, 0x45401d02, 0x05003a14,   // eu.af..._660 et.sw..._870 hr.sl.sk_222 eu.fr..._660\n  0x27001614, 0x0c002713, 0x66030614, 0x0c003a14,   // lt.id..._660 id.pl..._650 de.nl.af_666 eu.pl..._660\n  0x45036602, 0x8c000621, 0x200d0f14, 0x1e2e4013,   // af.nl.sk_222 de.ht..._860 es.pt.gl_666 sl.sq.sr_665\n  0x27002123, 0x42450209, 0x29003f23, 0x272921a4,   // tl.id..._880 da.sk.mt_444 sw.ms..._880 tl.ms.id_433\n  // [1cd0]\n  0x03000122, 0x3f0f0508, 0x01001f13, 0x29006602,   // en.nl..._870 fr.es.sw_443 ga.en..._650 af.ms..._220\n  0x3a000621, 0x29192708, 0x10000d13, 0x22002122,   // de.eu..._860 id.et.ms_443 pt.sv..._650 tl.tr..._870\n  0x1d450402, 0x270d0f08, 0x16023f09, 0x29000414,   // fi.sk.hr_222 es.pt.id_443 sw.da.lt_444 fi.ms..._660\n  0x01008c08, 0x8c001d22, 0x10003814, 0x8c002b14,   // ht.en..._430 hr.ht..._870 ca.sv..._660 cy.ht..._660\n  // [1ce0]\n  0x02004b14, 0x1d001a09, 0x01003814, 0x10008c14,   // az.da..._660 xxx.hr..._440 ca.en..._660 ht.sv..._660\n  0x1f018c08, 0x0d002013, 0x011f0507, 0x061a03af,   // ht.en.ga_443 gl.pt..._650 fr.ga.en_432 nl.xxx.de_655\n  0x02036614, 0x3f030607, 0x02030b07, 0x04020b07,   // af.nl.da_666 de.nl.sw_432 no.nl.da_432 no.da.fi_432\n  0x0f004023, 0x04001423, 0x032b0609, 0x06181008,   // sl.es..._880 is.fi..._880 de.cy.nl_444 sv.hu.de_443\n  // [1cf0]\n  0x0d000f21, 0x1f001722, 0x21202909, 0x141e2b08,   // es.pt..._860 ro.ga..._870 ms.gl.tl_444 cy.sr.is_443\n  0x30001c12, 0x10002e07, 0x01001e02, 0x15002709,   // bg.be..._640 sq.sv..._420 sr.en..._220 id.lv..._440\n  0x1c0e1ead, 0x25301c12, 0x2e008c14, 0x1d4540a4,   // sr.ru.bg_643 bg.be.mk_654 ht.sq..._660 sl.sk.hr_433\n  0x1d001508, 0x40004213, 0x161d1509, 0x8c001708,   // lv.hr..._430 mt.sl..._650 lv.hr.lt_444 ro.ht..._430\n  // [1d00]\n  0x063f0208, 0x18000d11, 0x0d193f55, 0x1a000b02,   // da.sw.de_443 pt.hu..._630 sw.et.pt_442 no.xxx..._220\n  0x194b1012, 0x66030b08, 0x1a002e12, 0x19041008,   // sv.az.et_654 no.nl.af_443 sq.xxx..._640 sv.fi.et_443\n  0x03008c09, 0x178c0508, 0x021a0b08, 0x170305a4,   // ht.nl..._440 fr.ht.ro_443 no.xxx.da_443 fr.nl.ro_433\n  0x10001613, 0x14004b13, 0x04000621, 0x140c1a09,   // lt.sv..._650 az.is..._650 de.fi..._860 xxx.pl.is_444\n  // [1d10]\n  0x450b1402, 0x14100614, 0x1d000f09, 0x1d661002,   // is.no.sk_222 de.sv.is_666 es.hr..._440 sv.af.hr_222\n  0x01003823, 0x12404507, 0x16004302, 0x00001e42,   // ca.en..._880 sk.sl.cs_432 vi.lt..._220 sr......_C00\n  0x03060b07, 0x42080109, 0x271f0202, 0x0b020109,   // no.de.nl_432 en.it.mt_444 da.ga.id_222 en.da.no_444\n  0x2e080108, 0x14000809, 0x1d161508, 0x05001214,   // en.it.sq_443 it.is..._440 lv.lt.hr_443 cs.fr..._660\n  // [1d20]\n  0x04000c23, 0x43001f02, 0x17004507, 0x42000107,   // pl.fi..._880 ga.vi..._220 sk.ro..._420 en.mt..._420\n  0x17002e23, 0x08001712, 0x450c0faf, 0x66034509,   // sq.ro..._880 ro.it..._640 es.pl.sk_655 sk.nl.af_444\n  0x17080109, 0x15000823, 0x43002914, 0x012b1a08,   // en.it.ro_444 it.lv..._880 ms.vi..._660 xxx.cy.en_443\n  0x04001523, 0x050f0608, 0x19002123, 0x02004014,   // lv.fi..._880 de.es.fr_443 tl.et..._880 sl.da..._660\n  // [1d30]\n  0x06100209, 0x01000f08, 0x01002114, 0x10004502,   // da.sv.de_444 es.en..._430 tl.en..._660 sk.sv..._220\n  0x2b004213, 0x2e003a08, 0x19161509, 0x1d1e1612,   // mt.cy..._650 eu.sq..._430 lv.lt.et_444 lt.sr.hr_654\n  0x12451e09, 0x04014507, 0x06003a22, 0x1e150813,   // sr.sk.cs_444 sk.en.fi_432 eu.de..._870 it.lv.sr_665\n  0x8c173aa4, 0x3f1917a4, 0x291e2707, 0x1e081207,   // eu.ro.ht_433 ro.et.sw_433 id.sr.ms_432 cs.it.sr_432\n  // [1d40]\n  0x38170507, 0x060b1408, 0x0f002709, 0x0b001008,   // fr.ro.ca_432 is.no.de_443 id.es..._440 sv.no..._430\n  0x0b021413, 0x0b004022, 0x380f0509, 0x0b003a14,   // is.da.no_665 sl.no..._870 fr.es.ca_444 eu.no..._660\n  0x450c12a4, 0x08432b14, 0x3a000322, 0x29272109,   // cs.pl.sk_433 cy.vi.it_666 nl.eu..._870 tl.id.ms_444\n  0x043817a4, 0x3f4b8c02, 0x66042707, 0x061022a4,   // ro.ca.fi_433 ht.az.sw_222 id.fi.af_432 tr.sv.de_433\n  // [1d50]\n  0x29002122, 0x04002723, 0x17001521, 0x1f003a22,   // tl.ms..._870 id.fi..._880 lv.ro..._860 eu.ga..._870\n  0x18001422, 0x17001f23, 0x03000f09, 0x29004302,   // is.hu..._870 ga.ro..._880 es.nl..._440 vi.ms..._220\n  0x0f002b02, 0x0f001f14, 0x14181012, 0x27002e14,   // cy.es..._220 ga.es..._660 sv.hu.is_654 sq.id..._660\n  0x66060b07, 0x2e001f02, 0x0d002112, 0x16002b12,   // no.de.af_432 ga.sq..._220 tl.pt..._640 cy.lt..._640\n  // [1d60]\n  0x06160412, 0x19000514, 0x15211907, 0x03060108,   // fi.lt.de_654 fr.et..._660 et.tl.lv_432 en.de.nl_443\n  0x02190b09, 0x42210112, 0x0d380f08, 0x06001614,   // no.et.da_444 en.tl.mt_654 es.ca.pt_443 lt.de..._660\n  0x1c1e0e13, 0x42008c12, 0x40001414, 0x01380408,   // ru.sr.bg_665 ht.mt..._640 is.sl..._660 fi.ca.en_443\n  0x12001f13, 0x271f2b55, 0x16000c23, 0x0f400107,   // ga.cs..._650 cy.ga.id_442 pl.lt..._880 en.sl.es_432\n  // [1d70]\n  0x380d0109, 0x06002107, 0x084217a4, 0x19001e09,   // en.pt.ca_444 tl.de..._420 ro.mt.it_433 sr.et..._440\n  0x122b4312, 0x3f292714, 0x1a432e07, 0x21001009,   // vi.cy.cs_654 id.ms.sw_666 sq.vi.xxx_432 sv.tl..._440\n  0x3f000323, 0x08001914, 0x1d000109, 0x45082102,   // nl.sw..._880 et.it..._660 en.hr..._440 tl.it.sk_222\n  0x12001a02, 0x22292709, 0x66032112, 0x04660309,   // xxx.cs..._220 id.ms.tr_444 tl.nl.af_654 nl.af.fi_444\n  // [1d80]\n  0x42000811, 0x8c003813, 0x10031207, 0x4b002207,   // it.mt..._630 ca.ht..._650 cs.nl.sv_432 tr.az..._420\n  0x300e1c08, 0x45000c08, 0x22000513, 0x3f062708,   // bg.ru.be_443 pl.sk..._430 fr.tr..._650 id.de.sw_443\n  0x29224b12, 0x22144b08, 0x4b001414, 0x22002108,   // az.tr.ms_654 az.is.tr_443 is.az..._660 tl.tr..._430\n  0x0e301e13, 0x1e080b02, 0x21004514, 0x160b0107,   // sr.be.ru_665 no.it.sr_222 sk.tl..._660 en.no.lt_432\n  // [1d90]\n  0x2b003812, 0x0b002b14, 0x42036607, 0x16000609,   // ca.cy..._640 cy.no..._660 af.nl.mt_432 de.lt..._440\n  0x42003823, 0x14000814, 0x15161413, 0x2e451a08,   // ca.mt..._880 it.is..._660 is.lt.lv_665 xxx.sk.sq_443\n  0x224b1609, 0x1d004309, 0x2e002712, 0x451e1d09,   // lt.az.tr_444 vi.hr..._440 id.sq..._640 hr.sr.sk_444\n  0x40000409, 0x3a2b3fa4, 0x01001614, 0x21000102,   // fi.sl..._440 sw.cy.eu_433 lt.en..._660 en.tl..._220\n  // [1da0]\n  0x06002e02, 0x21003813, 0x1d000409, 0x15001f09,   // sq.de..._220 ca.tl..._650 fi.hr..._440 ga.lv..._440\n  0x40004209, 0x14000211, 0x15000123, 0x05160109,   // mt.sl..._440 da.is..._630 en.lv..._880 en.lt.fr_444\n  0x050f0107, 0x18001f08, 0x40001409, 0x02001413,   // en.es.fr_432 ga.hu..._430 is.sl..._440 is.da..._650\n  0x23001e22, 0x2e003814, 0x08004023, 0x04003823,   // sr.uk..._870 ca.sq..._660 sl.it..._880 ca.fi..._880\n  // [1db0]\n  0x012e2ba4, 0x1a002113, 0x45001802, 0x1d002208,   // cy.sq.en_433 tl.xxx..._650 hu.sk..._220 tr.hr..._430\n  0x18006609, 0x1e001209, 0x03041908, 0x66001912,   // af.hu..._440 cs.sr..._440 et.fi.nl_443 et.af..._640\n  0x18004522, 0x21001808, 0x21001822, 0x18002709,   // sk.hu..._870 hu.tl..._430 hu.tl..._870 id.hu..._440\n  0x29036608, 0x1e004007, 0x401d1eaf, 0x8c002909,   // af.nl.ms_443 sl.sr..._420 sr.hr.sl_655 ms.ht..._440\n  // [1dc0]\n  0x21001a14, 0x18001620, 0x120c2702, 0x0b000321,   // xxx.tl..._660 lt.hu..._850 id.pl.cs_222 nl.no..._860\n  0x02030b09, 0x08181612, 0x03000b07, 0x29000b02,   // no.nl.da_444 lt.hu.it_654 no.nl..._420 no.ms..._220\n  0x10060108, 0x032b6614, 0x0b001f13, 0x2e001a14,   // en.de.sv_443 af.cy.nl_666 ga.no..._650 xxx.sq..._660\n  0x66003f21, 0x0b000309, 0x19003f08, 0x22000323,   // sw.af..._860 nl.no..._440 sw.et..._430 nl.tr..._880\n  // [1dd0]\n  0x66000b23, 0x041205a4, 0x0d0f05a4, 0x22000c14,   // no.af..._880 fr.cs.fi_433 fr.es.pt_433 pl.tr..._660\n  0x02001714, 0x0e253013, 0x184b2260, 0x2e271a12,   // ro.da..._660 be.mk.ru_665 tr.az.hu_664 xxx.id.sq_654\n  0x04380502, 0x1d124202, 0x1a002202, 0x27100602,   // fr.ca.fi_222 mt.cs.hr_222 tr.xxx..._220 de.sv.id_222\n  0x0b060107, 0x22000c02, 0x12000c23, 0x160c8c08,   // en.de.no_432 pl.tr..._220 pl.cs..._880 ht.pl.lt_443\n  // [1de0]\n  0x17000202, 0x20001209, 0x05000309, 0x15000f13,   // da.ro..._220 cs.gl..._440 nl.fr..._440 es.lv..._650\n  0x43001902, 0x10002108, 0x01002121, 0x16002102,   // et.vi..._220 tl.sv..._430 tl.en..._860 tl.lt..._220\n  0x38002923, 0x2e003f13, 0x1e1d0b02, 0x25003014,   // ms.ca..._880 sw.sq..._650 no.hr.sr_222 be.mk..._660\n  0x1f003f14, 0x4b228c13, 0x16001009, 0x1a192107,   // sw.ga..._660 ht.tr.az_665 sv.lt..._440 tl.et.xxx_432\n  // [1df0]\n  0x1d161e55, 0x06102707, 0x02034212, 0x292e1502,   // sr.lt.hr_442 id.sv.de_432 mt.nl.da_654 lv.sq.ms_222\n  0x1d2e4008, 0x1c0e25ad, 0x271a3f09, 0x17060312,   // sl.sq.hr_443 mk.ru.bg_643 sw.xxx.id_444 nl.de.ro_654\n  0x3f1a2b08, 0x062b3f07, 0x29002b08, 0x42001014,   // cy.xxx.sw_443 sw.cy.de_432 cy.ms..._430 sv.mt..._660\n  0x38171213, 0x1e161d12, 0x08001a14, 0x0c000302,   // cs.ro.ca_665 hr.lt.sr_654 xxx.it..._660 nl.pl..._220\n  // [1e00]\n  0x4b002211, 0x228c3fad, 0x40000c02, 0x1e1c0e08,   // tr.az..._630 sw.ht.tr_643 pl.sl..._220 ru.bg.sr_443\n  0x45121e02, 0x10221f08, 0x2e000214, 0x8c1d4009,   // sr.cs.sk_222 ga.tr.sv_443 da.sq..._660 sl.hr.ht_444\n  0x2e004308, 0x02182e55, 0x38006608, 0x1c252360,   // vi.sq..._430 sq.hu.da_442 af.ca..._430 uk.mk.bg_664\n  0x03663812, 0x2e400212, 0x66001712, 0x2e178c09,   // ca.af.nl_654 da.sl.sq_654 ro.af..._640 ht.ro.sq_444\n  // [1e10]\n  0x14063808, 0x45002b09, 0x17000522, 0x2b003808,   // ca.de.is_443 cy.sk..._440 fr.ro..._870 ca.cy..._430\n  0x0b000211, 0x1d122902, 0x42004309, 0x19003a02,   // da.no..._630 ms.cs.hr_222 vi.mt..._440 eu.et..._220\n  0x27002e13, 0x10004208, 0x02000f14, 0x2e000b23,   // sq.id..._650 mt.sv..._430 es.da..._660 no.sq..._880\n  0x40000602, 0x160f4509, 0x0d002b23, 0x2e003f12,   // de.sl..._220 sk.es.lt_444 cy.pt..._880 sw.sq..._640\n  // [1e20]\n  0x0b002e12, 0x2b036613, 0x180f2112, 0x0d382008,   // sq.no..._640 af.nl.cy_665 tl.es.hu_654 gl.ca.pt_443\n  0x0f0d0109, 0x1e233009, 0x16051e07, 0x151e1d12,   // en.pt.es_444 be.uk.sr_444 sr.fr.lt_432 hr.sr.lv_654\n  0x06002b08, 0x0c004008, 0x29170408, 0x2e381760,   // cy.de..._430 sl.pl..._430 fi.ro.ms_443 ro.ca.sq_664\n  0x0e233011, 0x2b002709, 0x03000208, 0x1d450355,   // be.uk.ru_653 id.cy..._440 da.nl..._430 nl.sk.hr_442\n  // [1e30]\n  0x22182909, 0x080c1707, 0x171f08a4, 0x180c3a55,   // ms.hu.tr_444 ro.pl.it_432 it.ga.ro_433 eu.pl.hu_442\n  0x40451209, 0x1a030208, 0x27008c09, 0x42003a14,   // cs.sk.sl_444 da.nl.xxx_443 ht.id..._440 eu.mt..._660\n  0x0b001a12, 0x05001823, 0x3a002909, 0x38002023,   // xxx.no..._640 hu.fr..._880 ms.eu..._440 gl.ca..._880\n  0x05001a02, 0x18002b13, 0x08421855, 0x45181602,   // xxx.fr..._220 cy.hu..._650 hu.mt.it_442 lt.hu.sk_222\n  // [1e40]\n  0x150416a4, 0x27062907, 0x14101908, 0x1d041602,   // lt.fi.lv_433 ms.de.id_432 et.sv.is_443 lt.fi.hr_222\n  0x40001809, 0x300e1ca4, 0x16003a21, 0x17000107,   // hu.sl..._440 bg.ru.be_433 eu.lt..._860 en.ro..._420\n  0x102b0b55, 0x06002202, 0x3a001614, 0x1d160c02,   // no.cy.sv_442 tr.de..._220 lt.eu..._660 pl.lt.hr_222\n  0x0c000107, 0x250e1c60, 0x14050b09, 0x2b003822,   // en.pl..._420 bg.ru.mk_664 no.fr.is_444 ca.cy..._870\n  // [1e50]\n  0x45120509, 0x2e660108, 0x250e1e08, 0x20000107,   // fr.cs.sk_444 en.af.sq_443 sr.ru.mk_443 en.gl..._420\n  0x2e002209, 0x1a000102, 0x08103a08, 0x2e003a22,   // tr.sq..._440 en.xxx..._220 eu.sv.it_443 eu.sq..._870\n  0x22000b07, 0x3a001a08, 0x08000502, 0x06001f22,   // no.tr..._420 xxx.eu..._430 fr.it..._220 ga.de..._870\n  0x2e003808, 0x1a8c3f12, 0x401d2e12, 0x14001e09,   // ca.sq..._430 sw.ht.xxx_654 sq.hr.sl_654 sr.is..._440\n  // [1e60]\n  0x43008c08, 0x1a001523, 0x08051a08, 0x05140109,   // ht.vi..._430 lv.xxx..._880 xxx.fr.it_443 en.is.fr_444\n  0x06000102, 0x06001d14, 0x662b0309, 0x2b000102,   // en.de..._220 hr.de..._660 nl.cy.af_444 en.cy..._220\n  0x03000223, 0x030266a4, 0x1e1c25a4, 0x3a001513,   // da.nl..._880 af.da.nl_433 mk.bg.sr_433 lv.eu..._650\n  0x06191008, 0x0d053807, 0x29001014, 0x45086609,   // sv.et.de_443 ca.fr.pt_432 sv.ms..._660 af.it.sk_444\n  // [1e70]\n  0x210d3f07, 0x0d003807, 0x0c001f09, 0x224b0da4,   // sw.pt.tl_432 ca.pt..._420 ga.pl..._440 pt.az.tr_433\n  0x18061412, 0x1e001f08, 0x17450812, 0x0c003809,   // is.de.hu_654 ga.sr..._430 it.sk.ro_654 ca.pl..._440\n  0x0d3f0107, 0x06668c08, 0x2b001509, 0x38291709,   // en.sw.pt_432 ht.af.de_443 lv.cy..._440 ro.ms.ca_444\n  0x06030109, 0x06000514, 0x06030b07, 0x03001a23,   // en.nl.de_444 fr.de..._660 no.nl.de_432 xxx.nl..._880\n  // [1e80]\n  0x42030614, 0x17001414, 0x2e0b1008, 0x05008c13,   // de.nl.mt_666 is.ro..._660 sv.no.sq_443 ht.fr..._650\n  0x2b000513, 0x1f001913, 0x15002909, 0x38001502,   // fr.cy..._650 et.ga..._650 ms.lv..._440 lv.ca..._220\n  0x12451613, 0x16008c02, 0x1e002507, 0x10001407,   // lt.sk.cs_665 ht.lt..._220 mk.sr..._420 is.sv..._420\n  0x2e011708, 0x40002e02, 0x14021008, 0x0d001502,   // ro.en.sq_443 sq.sl..._220 sv.da.is_443 lv.pt..._220\n  // [1e90]\n  0x12404514, 0x1d000114, 0x0b004b23, 0x14000b12,   // sk.sl.cs_666 en.hr..._660 az.no..._880 no.is..._640\n  0x8c006614, 0x03662e12, 0x43000207, 0x66002e21,   // af.ht..._660 sq.af.nl_654 da.vi..._420 sq.af..._860\n  0x1d011f02, 0x42173a08, 0x3a380808, 0x21148c08,   // ga.en.hr_222 eu.ro.mt_443 it.ca.eu_443 ht.is.tl_443\n  0x66002107, 0x43000102, 0x0b00021a, 0x054b2208,   // tl.af..._420 en.vi..._220 da.no..._760 tr.az.fr_443\n  // [1ea0]\n  0x04000323, 0x043a6614, 0x0c000209, 0x3a030455,   // nl.fi..._880 af.eu.fi_666 da.pl..._440 fi.nl.eu_442\n  0x29063a12, 0x2e003f22, 0x1a000409, 0x04000309,   // eu.de.ms_654 sw.sq..._870 fi.xxx..._440 nl.fi..._440\n  0x38003a08, 0x4b001413, 0x29430302, 0x43200555,   // eu.ca..._430 is.az..._650 nl.vi.ms_222 fr.gl.vi_442\n  0x43000513, 0x02002214, 0x43011708, 0x3a002113,   // fr.vi..._650 tr.da..._660 ro.en.vi_443 tl.eu..._650\n  // [1eb0]\n  0x01006608, 0x19000823, 0x0b022260, 0x250e2309,   // af.en..._430 it.et..._880 tr.da.no_664 uk.ru.mk_444\n  0x43052b07, 0x0b002202, 0x43000502, 0x4b001402,   // cy.fr.vi_432 tr.no..._220 fr.vi..._220 is.az..._220\n  0x121d1e07, 0x27293faf, 0x38100b07, 0x0d050f02,   // sr.hr.cs_432 sw.ms.id_655 no.sv.ca_432 es.fr.pt_222\n  0x3f1a2155, 0x231c3013, 0x158c1908, 0x0f002109,   // tl.xxx.sw_442 be.bg.uk_665 et.ht.lv_443 tl.es..._440\n  // [1ec0]\n  0x22000514, 0x29270502, 0x66001602, 0x04151812,   // fr.tr..._660 fr.id.ms_222 lt.af..._220 hu.lv.fi_654\n  0x8c000f08, 0x15000509, 0x21004202, 0x14100ba4,   // es.ht..._430 fr.lv..._440 mt.tl..._220 no.sv.is_433\n  0x29271da4, 0x1e292702, 0x3a001509, 0x151816a4,   // hr.id.ms_433 id.ms.sr_222 lv.eu..._440 lt.hu.lv_433\n  0x1e0e2560, 0x27002108, 0x29004b02, 0x42002b13,   // mk.ru.sr_664 tl.id..._430 az.ms..._220 cy.mt..._650\n  // [1ed0]\n  0x224b0b09, 0x2e006608, 0x1e2530af, 0x15008c14,   // no.az.tr_444 af.sq..._430 be.mk.sr_655 ht.lv..._660\n  0x1a4b2212, 0x22004009, 0x16004209, 0x662b0412,   // tr.az.xxx_654 sl.tr..._440 mt.lt..._440 fi.cy.af_654\n  0x19004313, 0x168c0107, 0x03196608, 0x14003809,   // vi.et..._650 en.ht.lt_432 af.et.nl_443 ca.is..._440\n  0x2b0b0208, 0x33003723, 0x1d0d3f02, 0x0b8c14a4,   // da.no.cy_443 ar.ur..._880 sw.pt.hr_222 is.ht.no_433\n  // [1ee0]\n  0x29161a07, 0x01001209, 0x173a0b07, 0x0d453a02,   // xxx.lt.ms_432 cs.en..._440 no.eu.ro_432 eu.sk.pt_222\n  0x3a004502, 0x450d1802, 0x172e0b09, 0x66224509,   // sk.eu..._220 hu.pt.sk_222 no.sq.ro_444 sk.tr.af_444\n  0x27142914, 0x1a001413, 0x22292714, 0x182b16a4,   // ms.is.id_666 is.xxx..._650 id.ms.tr_666 lt.cy.hu_433\n  0x19004522, 0x19000123, 0x036615a4, 0x42000123,   // sk.et..._870 en.et..._880 lv.af.nl_433 en.mt..._880\n  // [1ef0]\n  0x18100b09, 0x10030b55, 0x02000123, 0x061a0109,   // no.sv.hu_444 no.nl.sv_442 en.da..._880 en.xxx.de_444\n  0x01001514, 0x08000202, 0x1e2e2902, 0x03002b14,   // lv.en..._660 da.it..._220 ms.sq.sr_222 cy.nl..._660\n  0x38003f14, 0x1c001e23, 0x1e253012, 0x1e2530a4,   // sw.ca..._660 sr.bg..._880 be.mk.sr_654 be.mk.sr_433\n  0x38001722, 0x2b004313, 0x1d451702, 0x1e004008,   // ro.ca..._870 vi.cy..._650 ro.sk.hr_222 sl.sr..._430\n  // [1f00]\n  0x16000c12, 0x45181fa4, 0x21000f21, 0x2b001412,   // pl.lt..._640 ga.hu.sk_433 es.tl..._860 is.cy..._640\n  0x29214ba4, 0x17451207, 0x45400c02, 0x45040c12,   // az.tl.ms_433 cs.sk.ro_432 pl.sl.sk_222 pl.fi.sk_654\n  0x191e1d08, 0x291027a4, 0x3f000802, 0x3a161412,   // hr.sr.et_443 id.sv.ms_433 it.sw..._220 is.lt.eu_654\n  0x43000822, 0x8c100408, 0x4b3a2208, 0x3f002709,   // it.vi..._870 fi.sv.ht_443 tr.eu.az_443 id.sw..._440\n  // [1f10]\n  0x4b003a09, 0x22000214, 0x270d2902, 0x45032202,   // eu.az..._440 da.tr..._660 ms.pt.id_222 tr.nl.sk_222\n  0x278c0b02, 0x0c1e1d08, 0x450f1207, 0x0e003020,   // no.ht.id_222 hr.sr.pl_443 cs.es.sk_432 be.ru..._850\n  0x0d124560, 0x19084060, 0x05002221, 0x45004302,   // sk.cs.pt_664 sl.it.et_664 tr.fr..._860 vi.sk..._220\n  0x2b001402, 0x02004002, 0x180f0d08, 0x18000507,   // is.cy..._220 sl.da..._220 pt.es.hu_443 fr.hu..._420\n  // [1f20]\n  0x29030102, 0x8c000314, 0x01291a08, 0x45000c07,   // en.nl.ms_222 nl.ht..._660 xxx.ms.en_443 pl.sk..._420\n  0x301c2560, 0x1c0e25af, 0x45020b12, 0x0c004213,   // mk.bg.be_664 mk.ru.bg_655 no.da.sk_654 mt.pl..._650\n  0x00001703, 0x213f1fa4, 0x388c0512, 0x060c0313,   // ro......_300 ga.sw.tl_433 fr.ht.ca_654 nl.pl.de_665\n  0x45001821, 0x181f1408, 0x3a001514, 0x1e060b07,   // hu.sk..._860 is.ga.hu_443 lv.eu..._660 no.de.sr_432\n  // [1f30]\n  0x05020b09, 0x29191502, 0x12000514, 0x06181012,   // no.da.fr_444 lv.et.ms_222 fr.cs..._660 sv.hu.de_654\n  0x22003a08, 0x1f0b0208, 0x21004314, 0x17001502,   // eu.tr..._430 da.no.ga_443 vi.tl..._660 lv.ro..._220\n  0x38000809, 0x1d2e1ea4, 0x0c1d40a4, 0x06001723,   // it.ca..._440 sr.sq.hr_433 sl.hr.pl_433 ro.de..._880\n  0x0d3805a4, 0x12450560, 0x08002b09, 0x0c003f08,   // fr.ca.pt_433 fr.sk.cs_664 cy.it..._440 sw.pl..._430\n  // [1f40]\n  0x1f002908, 0x1d2b6608, 0x16006608, 0x0d002708,   // ms.ga..._430 af.cy.hr_443 af.lt..._430 id.pt..._430\n  0x1e143802, 0x151a4008, 0x01121a09, 0x14000414,   // ca.is.sr_222 sl.xxx.lv_443 xxx.cs.en_444 fi.is..._660\n  0x42003813, 0x18004014, 0x22001712, 0x03006621,   // ca.mt..._650 sl.hu..._660 ro.tr..._640 af.nl..._860\n  0x12450b02, 0x8c4b2212, 0x05002b08, 0x334e37ad,   // no.sk.cs_222 tr.az.ht_654 cy.fr..._430 ar.fa.ur_643\n  // [1f50]\n  0x08004323, 0x0f001602, 0x02123802, 0x43001522,   // vi.it..._880 lt.es..._220 ca.cs.da_222 lv.vi..._870\n  0x21004302, 0x20000823, 0x43003a08, 0x3a004309,   // vi.tl..._220 it.gl..._880 eu.vi..._430 vi.eu..._440\n  0x10031907, 0x10000107, 0x08002b14, 0x17000d14,   // et.nl.sv_432 en.sv..._420 cy.it..._660 pt.ro..._660\n  0x29003809, 0x05104507, 0x0d200f09, 0x43006614,   // ca.ms..._440 sk.sv.fr_432 es.gl.pt_444 af.vi..._660\n  // [1f60]\n  0x0c660312, 0x0c000102, 0x1d451f09, 0x0d000222,   // nl.af.pl_654 en.pl..._220 ga.sk.hr_444 da.pt..._870\n  0x01660ca4, 0x66001a14, 0x42002702, 0x1d272102,   // pl.af.en_433 xxx.af..._660 id.mt..._220 tl.id.hr_222\n  0x66030214, 0x0c008c12, 0x0b004508, 0x3f003a07,   // da.nl.af_666 ht.pl..._640 sk.no..._430 eu.sw..._420\n  0x1d1e4008, 0x22002708, 0x02002e08, 0x45056602,   // sl.sr.hr_443 id.tr..._430 sq.da..._430 af.fr.sk_222\n  // [1f70]\n  0x1e000e09, 0x101d1e09, 0x0b002102, 0x1d081ea4,   // ru.sr..._440 sr.hr.sv_444 tl.no..._220 sr.it.hr_433\n  0x2b001f09, 0x2b001a08, 0x04290b09, 0x27002213,   // ga.cy..._440 xxx.cy..._430 no.ms.fi_444 tr.id..._650\n  0x251c1eaf, 0x141f1812, 0x3f001513, 0x01423a12,   // sr.bg.mk_655 hu.ga.is_654 lv.sw..._650 eu.mt.en_654\n  0x45002e13, 0x14000208, 0x0b003f09, 0x1d181e02,   // sq.sk..._650 da.is..._430 sw.no..._440 sr.hu.hr_222\n  // [1f80]\n  0x00001f0a, 0x381a0107, 0x0b001022, 0x0d000c09,   // ga......_500 en.xxx.ca_432 sv.no..._870 pl.pt..._440\n  0x45024008, 0x0d0602a4, 0x45004b02, 0x174b2255,   // sl.da.sk_443 da.de.pt_433 az.sk..._220 tr.az.ro_442\n  0x40000614, 0x18222709, 0x0c001223, 0x42001209,   // de.sl..._660 id.tr.hu_444 cs.pl..._880 cs.mt..._440\n  0x22006614, 0x100814a4, 0x1e000b02, 0x02001f14,   // af.tr..._660 is.it.sv_433 no.sr..._220 ga.da..._660\n  // [1f90]\n  0x18002723, 0x0c002723, 0x18001207, 0x1d1e03a4,   // id.hu..._880 id.pl..._880 cs.hu..._420 nl.sr.hr_433\n  0x22182709, 0x08006614, 0x05001f11, 0x29001623,   // id.hu.tr_444 af.it..._660 ga.fr..._630 lt.ms..._880\n  0x8c006609, 0x22040202, 0x0f004323, 0x8c212909,   // af.ht..._440 da.fi.tr_222 vi.es..._880 ms.tl.ht_444\n  0x21000123, 0x10000213, 0x438c0108, 0x1a2b18ad,   // en.tl..._880 da.sv..._650 en.ht.vi_443 hu.cy.xxx_643\n  // [1fa0]\n  0x4b224312, 0x0e301e09, 0x40002023, 0x0e1c2514,   // vi.tr.az_654 sr.be.ru_444 gl.sl..._880 mk.bg.ru_666\n  0x0b000509, 0x14001d13, 0x450c0109, 0x01221a09,   // fr.no..._440 hr.is..._650 en.pl.sk_444 xxx.tr.en_444\n  0x2b004502, 0x16001711, 0x05060108, 0x12000d02,   // sk.cy..._220 ro.lt..._630 en.de.fr_443 pt.cs..._220\n  0x03003f14, 0x1a000c12, 0x12452102, 0x10001408,   // sw.nl..._660 pl.xxx..._640 tl.sk.cs_222 is.sv..._430\n  // [1fb0]\n  0x2b000208, 0x03151a08, 0x03450607, 0x034b0809,   // da.cy..._430 xxx.lv.nl_443 de.sk.nl_432 it.az.nl_444\n  0x10001422, 0x14000107, 0x40000508, 0x0c140109,   // is.sv..._870 en.is..._420 fr.sl..._430 en.is.pl_444\n  0x0f002702, 0x45001523, 0x43003f07, 0x12021908,   // id.es..._220 lv.sk..._880 sw.vi..._420 et.da.cs_443\n  0x10001409, 0x15000413, 0x02000122, 0x020b1008,   // is.sv..._440 fi.lv..._650 en.da..._870 sv.no.da_443\n  // [1fc0]\n  0x453f0c07, 0x0d380f55, 0x03004509, 0x224b3a12,   // pl.sw.sk_432 es.ca.pt_442 sk.nl..._440 eu.az.tr_654\n  0x08002109, 0x20381207, 0x1d191602, 0x21000409,   // tl.it..._440 cs.ca.gl_432 lt.et.hr_222 fi.tl..._440\n  0x230e30a4, 0x27060d08, 0x221f4209, 0x38001514,   // be.ru.uk_433 pt.de.id_443 mt.ga.tr_444 lv.ca..._660\n  0x17143a12, 0x3a000502, 0x43004502, 0x06004523,   // eu.is.ro_654 fr.eu..._220 sk.vi..._220 sk.de..._880\n  // [1fd0]\n  0x163a0109, 0x08000c02, 0x29000513, 0x291a0b60,   // en.eu.lt_444 pl.it..._220 fr.ms..._650 no.xxx.ms_664\n  0x3f001a23, 0x10060107, 0x0f214560, 0x451f2702,   // xxx.sw..._880 en.de.sv_432 sk.tl.es_664 id.ga.sk_222\n  0x01002709, 0x1c1e2512, 0x450c2e02, 0x38002109,   // id.en..._440 mk.sr.bg_654 sq.pl.sk_222 tl.ca..._440\n  0x38000623, 0x1e1c2307, 0x0d002b02, 0x0c001f13,   // de.ca..._880 uk.bg.sr_432 cy.pt..._220 ga.pl..._650\n  // [1fe0]\n  0x3a004b02, 0x1d003809, 0x29000f02, 0x14004b02,   // az.eu..._220 ca.hr..._440 es.ms..._220 az.is..._220\n  0x0f4b2213, 0x4b2922a4, 0x1c0e1e08, 0x0f002214,   // tr.az.es_665 tr.ms.az_433 sr.ru.bg_443 tr.es..._660\n  0x10002109, 0x2e001209, 0x23300eaf, 0x27291908,   // tl.sv..._440 cs.sq..._440 ru.be.uk_655 et.ms.id_443\n  0x29004209, 0x1e1d03a4, 0x16004022, 0x45121602,   // mt.ms..._440 nl.hr.sr_433 sl.lt..._870 lt.cs.sk_222\n  // [1ff0]\n  0x45012702, 0x27003f14, 0x1e381d02, 0x02101a09,   // id.en.sk_222 sw.id..._660 hr.ca.sr_222 xxx.sv.da_444\n  0x05000f23, 0x1d1e0602, 0x08004509, 0x45000608,   // es.fr..._880 de.sr.hr_222 sk.it..._440 de.sk..._430\n  0x12431802, 0x0c002714, 0x0d000512, 0x22380109,   // hu.vi.cs_222 id.pl..._660 fr.pt..._640 en.ca.tr_444\n  0x0d001523, 0x43001f23, 0x2b006613, 0x8c001702,   // lv.pt..._880 ga.vi..._880 af.cy..._650 ro.ht..._220\n\n  // [2000]\n  0x1e000123, 0x04004014, 0x45180507, 0x0c451aa4,   // en.sr..._880 sl.fi..._660 fr.hu.sk_432 xxx.sk.pl_433\n  0x45002002, 0x17001602, 0x1e141902, 0x04001213,   // gl.sk..._220 lt.ro..._220 et.is.sr_222 cs.fi..._650\n  0x66001402, 0x45121702, 0x03001502, 0x0f451808,   // is.af..._220 ro.cs.sk_222 lv.nl..._220 hu.sk.es_443\n  0x1d161e02, 0x1e000214, 0x0f003812, 0x29004b14,   // sr.lt.hr_222 da.sr..._660 ca.es..._640 az.ms..._660\n  // [2010]\n  0x1e401812, 0x0c1e1d09, 0x1e181d02, 0x0d008c12,   // hu.sl.sr_654 hr.sr.pl_444 hr.hu.sr_222 ht.pt..._640\n  0x14004002, 0x0e002513, 0x0c1d1e55, 0x16002714,   // sl.is..._220 mk.ru..._650 sr.hr.pl_442 id.lt..._660\n  0x16000b23, 0x1d1e16ad, 0x40001014, 0x16042209,   // no.lt..._880 lt.sr.hr_643 sv.sl..._660 tr.fi.lt_444\n  0x66290309, 0x14210f12, 0x0f380107, 0x0d000f22,   // nl.ms.af_444 es.tl.is_654 en.ca.es_432 es.pt..._870\n  // [2020]\n  0x45664202, 0x21001821, 0x10018c07, 0x0f000614,   // mt.af.sk_222 hu.tl..._860 ht.en.sv_432 de.es..._660\n  0x17004213, 0x0d004212, 0x03386608, 0x03004208,   // mt.ro..._650 mt.pt..._640 af.ca.nl_443 mt.nl..._430\n  0x451d1e12, 0x1d1e1609, 0x40004512, 0x1d183a02,   // sr.hr.sk_654 lt.sr.hr_444 sk.sl..._640 eu.hu.hr_222\n  0x1d002b02, 0x3a003813, 0x1d004b09, 0x0b002b23,   // cy.hr..._220 ca.eu..._650 az.hr..._440 cy.no..._880\n  // [2030]\n  0x14006608, 0x16048c07, 0x3a000402, 0x19002e23,   // af.is..._430 ht.fi.lt_432 fi.eu..._220 sq.et..._880\n  0x0c001708, 0x15000423, 0x0d382012, 0x3a8c0c09,   // ro.pl..._430 fi.lv..._880 gl.ca.pt_654 pl.ht.eu_444\n  0x29212709, 0x8c1d1e09, 0x66223a07, 0x45218c02,   // id.tl.ms_444 sr.hr.ht_444 eu.tr.af_432 ht.tl.sk_222\n  0x1f003a14, 0x08000f09, 0x25231e13, 0x45188c02,   // eu.ga..._660 es.it..._440 sr.uk.mk_665 ht.hu.sk_222\n  // [2040]\n  0x081742a4, 0x0c124560, 0x18000b08, 0x30251e09,   // mt.ro.it_433 sk.cs.pl_664 no.hu..._430 sr.mk.be_444\n  0x40003809, 0x8c002202, 0x1a008c09, 0x8c002212,   // ca.sl..._440 tr.ht..._220 ht.xxx..._440 tr.ht..._640\n  0x45001a12, 0x0c2b02af, 0x0c218c08, 0x1a002207,   // xxx.sk..._640 da.cy.pl_655 ht.tl.pl_443 tr.xxx..._420\n  0x0f0d38a4, 0x224b8c12, 0x4b228c12, 0x0d004309,   // ca.pt.es_433 ht.az.tr_654 ht.tr.az_654 vi.pt..._440\n  // [2050]\n  0x14001809, 0x224b0b08, 0x10190209, 0x16000214,   // hu.is..._440 no.az.tr_443 da.et.sv_444 da.lt..._660\n  0x0b1602a4, 0x121a0302, 0x251c1e07, 0x66020b55,   // da.lt.no_433 nl.xxx.cs_222 sr.bg.mk_432 no.da.af_442\n  0x10061408, 0x16008c09, 0x16000208, 0x05004509,   // is.de.sv_443 ht.lt..._440 da.lt..._430 sk.fr..._440\n  0x06101414, 0x0818381d, 0x29010b07, 0x45272902,   // is.sv.de_666 ca.hu.it_852 no.en.ms_432 ms.id.sk_222\n  // [2060]\n  0x01124508, 0x8c004514, 0x3f000209, 0x30230e09,   // sk.cs.en_443 sk.ht..._660 da.sw..._440 ru.uk.be_444\n  0x0f004b14, 0x1e1d0c14, 0x16004009, 0x38004214,   // az.es..._660 pl.hr.sr_666 sl.lt..._440 mt.ca..._660\n  0x3f000123, 0x050d0807, 0x08000f08, 0x1e3023a4,   // en.sw..._880 it.pt.fr_432 es.it..._430 uk.be.sr_433\n  0x27042902, 0x0f000b09, 0x29054302, 0x0e232509,   // ms.fi.id_222 no.es..._440 vi.fr.ms_222 mk.uk.ru_444\n  // [2070]\n  0x17451209, 0x3a401511, 0x00002e42, 0x0e302508,   // cs.sk.ro_444 lv.sl.eu_653 sq......_C00 mk.be.ru_443\n  0x1f272912, 0x29001614, 0x8c170555, 0x12000402,   // ms.id.ga_654 lt.ms..._660 fr.ro.ht_442 fi.cs..._220\n  0x04002922, 0x27451202, 0x401245a4, 0x29422707,   // ms.fi..._870 cs.sk.id_222 sk.cs.sl_433 id.mt.ms_432\n  0x42001412, 0x4b000513, 0x451940af, 0x15163a12,   // is.mt..._640 fr.az..._650 sl.et.sk_655 eu.lt.lv_654\n  // [2080]\n  0x1e088c02, 0x21008c02, 0x29000108, 0x0f380560,   // ht.it.sr_222 ht.tl..._220 en.ms..._430 fr.ca.es_664\n  0x18002202, 0x06004314, 0x45401208, 0x20053813,   // tr.hu..._220 vi.de..._660 cs.sl.sk_443 ca.fr.gl_665\n  0x1f004309, 0x27001e14, 0x1d002b08, 0x42000c12,   // vi.ga..._440 sr.id..._660 cy.hr..._430 pl.mt..._640\n  0x0c212b08, 0x45221202, 0x1d432b02, 0x10140baf,   // cy.tl.pl_443 cs.tr.sk_222 cy.vi.hr_222 no.is.sv_655\n  // [2090]\n  0x03660614, 0x40001609, 0x29003a02, 0x29271d02,   // de.af.nl_666 lt.sl..._440 eu.ms..._220 hr.id.ms_222\n  0x1e1d3f09, 0x10002209, 0x3f001009, 0x1d2e1e02,   // sw.hr.sr_444 tr.sv..._440 sv.sw..._440 sr.sq.hr_222\n  0x27294002, 0x0d001723, 0x060c0413, 0x06003a07,   // sl.ms.id_222 ro.pt..._880 fi.pl.de_665 eu.de..._420\n  0x3f160612, 0x08000b23, 0x14451208, 0x12013802,   // de.lt.sw_654 no.it..._880 cs.sk.is_443 ca.en.cs_222\n  // [20a0]\n  0x18001d14, 0x29004213, 0x0000272d, 0x2e001d02,   // hr.hu..._660 mt.ms..._650 id......_A00 hr.sq..._220\n  0x23001c22, 0x20000f13, 0x3a220ca4, 0x2e002214,   // bg.uk..._870 es.gl..._650 pl.tr.eu_433 tr.sq..._660\n  0x2e002223, 0x06001923, 0x0b000123, 0x02041912,   // tr.sq..._880 et.de..._880 en.no..._880 et.fi.da_654\n  0x10000422, 0x19006608, 0x43001d02, 0x23002521,   // fi.sv..._870 af.et..._430 hr.vi..._220 mk.uk..._860\n  // [20b0]\n  0x08000409, 0x38420da4, 0x43004b08, 0x2b1a0108,   // fi.it..._440 pt.mt.ca_433 az.vi..._430 en.xxx.cy_443\n  0x06100b08, 0x0e231e14, 0x02001d14, 0x1d081f02,   // no.sv.de_443 sr.uk.ru_666 hr.da..._660 ga.it.hr_222\n  0x158c1614, 0x1e1d1902, 0x3f4b2213, 0x21001402,   // lt.ht.lv_666 et.hr.sr_222 tr.az.sw_665 is.tl..._220\n  0x27002114, 0x03000409, 0x29212702, 0x660603a4,   // tl.id..._660 fi.nl..._440 id.tl.ms_222 nl.de.af_433\n  // [20c0]\n  0x27212908, 0x19000f14, 0x3a000d02, 0x0d051707,   // ms.tl.id_443 es.et..._660 pt.eu..._220 ro.fr.pt_432\n  0x45001f08, 0x15001708, 0x17423a08, 0x15001008,   // ga.sk..._430 ro.lv..._430 eu.mt.ro_443 sv.lv..._430\n  0x12003a12, 0x05004b09, 0x08000f12, 0x4b001f14,   // eu.cs..._640 az.fr..._440 es.it..._640 ga.az..._660\n  0x0f0d0814, 0x272919af, 0x01002023, 0x1d1a1e02,   // it.pt.es_666 et.ms.id_655 gl.en..._880 sr.xxx.hr_222\n  // [20d0]\n  0x25230e60, 0x15003f21, 0x0e1c2512, 0x0c2b1a07,   // ru.uk.mk_664 sw.lv..._860 mk.bg.ru_654 xxx.cy.pl_432\n  0x19001f02, 0x2b002213, 0x10000409, 0x04063a08,   // ga.et..._220 tr.cy..._650 fi.sv..._440 eu.de.fi_443\n  0x16004507, 0x04000b14, 0x03296612, 0x14000d09,   // sk.lt..._420 no.fi..._660 af.ms.nl_654 pt.is..._440\n  0x15004507, 0x15044508, 0x06000c02, 0x04451209,   // sk.lv..._420 sk.fi.lv_443 pl.de..._220 cs.sk.fi_444\n  // [20e0]\n  0x4b2122a4, 0x1e1d2709, 0x432e1008, 0x45001902,   // tr.tl.az_433 id.hr.sr_444 sv.sq.vi_443 et.sk..._220\n  0x0d0f0107, 0x060208a4, 0x231c0e09, 0x30002513,   // en.es.pt_432 it.da.de_433 ru.bg.uk_444 mk.be..._650\n  0x0f200109, 0x14002909, 0x16150b09, 0x3a002e02,   // en.gl.es_444 ms.is..._440 no.lv.lt_444 sq.eu..._220\n  0x0d001814, 0x22144b14, 0x17404509, 0x2e001422,   // hu.pt..._660 az.is.tr_666 sk.sl.ro_444 is.sq..._870\n  // [20f0]\n  0x14001709, 0x031d0202, 0x1c000e21, 0x15002923,   // ro.is..._440 da.hr.nl_222 ru.bg..._860 ms.lv..._880\n  0x181f4513, 0x02000802, 0x4b142213, 0x1d142e02,   // sk.ga.hu_665 it.da..._220 tr.is.az_665 sq.is.hr_222\n  0x018c2ea4, 0x0d0f2014, 0x12000809, 0x45150202,   // sq.ht.en_433 gl.es.pt_666 it.cs..._440 da.lv.sk_222\n  0x29000814, 0x032b66a4, 0x66032b12, 0x1f291955,   // it.ms..._660 af.cy.nl_433 cy.nl.af_654 et.ms.ga_442\n  // [2100]\n  0x08004514, 0x45002b21, 0x0f000b07, 0x662b0355,   // sk.it..._660 cy.sk..._860 no.es..._420 nl.cy.af_442\n  0x08001623, 0x16001a23, 0x38082908, 0x45120512,   // lt.it..._880 xxx.lt..._880 ms.it.ca_443 fr.cs.sk_654\n  0x66002b13, 0x10450b08, 0x38036612, 0x66033aaf,   // cy.af..._650 no.sk.sv_443 af.nl.ca_654 eu.nl.af_655\n  0x03003a13, 0x3a001521, 0x03008c08, 0x420501a4,   // eu.nl..._650 lv.eu..._860 ht.nl..._430 en.fr.mt_433\n  // [2110]\n  0x43008c13, 0x3a292708, 0x02050408, 0x1a0b1712,   // ht.vi..._650 id.ms.eu_443 fi.fr.da_443 ro.no.xxx_654\n  0x041a0608, 0x43008c12, 0x2e272913, 0x43271a07,   // de.xxx.fi_443 ht.vi..._640 ms.id.sq_665 xxx.id.vi_432\n  0x14001608, 0x18002108, 0x08004b09, 0x1a000414,   // lt.is..._430 tl.hu..._430 az.it..._440 fi.xxx..._660\n  0x45221602, 0x121d4008, 0x06001a02, 0x1d001909,   // lt.tr.sk_222 sl.hr.cs_443 xxx.de..._220 et.hr..._440\n  // [2120]\n  0x1a061009, 0x02001709, 0x04003a07, 0x10001a09,   // sv.de.xxx_444 ro.da..._440 eu.fi..._420 xxx.sv..._440\n  0x3a041755, 0x3f2104a4, 0x043a21a4, 0x21223a09,   // ro.fi.eu_442 fi.tl.sw_433 tl.eu.fi_433 eu.tr.tl_444\n  0x3f003a22, 0x1f002108, 0x3a004b22, 0x04173aa4,   // eu.sw..._870 tl.ga..._430 az.eu..._870 eu.ro.fi_433\n  0x3f041908, 0x2e001f14, 0x021f1708, 0x2e000b14,   // et.fi.sw_443 ga.sq..._660 ro.ga.da_443 no.sq..._660\n  // [2130]\n  0x02180b07, 0x19001e02, 0x0b001a22, 0x27036602,   // no.hu.da_432 sr.et..._220 xxx.no..._870 af.nl.id_222\n  0x3f001909, 0x012b1f07, 0x29003814, 0x42001921,   // et.sw..._440 ga.cy.en_432 ca.ms..._660 et.mt..._860\n  0x181445af, 0x43001f09, 0x1e251c11, 0x66000812,   // sk.is.hu_655 ga.vi..._440 bg.mk.sr_653 it.af..._640\n  0x2e0f3aa4, 0x2e003a07, 0x1d041e08, 0x0e231c09,   // eu.es.sq_433 eu.sq..._420 sr.fi.hr_443 bg.uk.ru_444\n  // [2140]\n  0x45164002, 0x100b02af, 0x4b004514, 0x102e1a09,   // sl.lt.sk_222 da.no.sv_655 sk.az..._660 xxx.sq.sv_444\n  0x1e0f3802, 0x1e1d0c02, 0x45002014, 0x018c2b09,   // ca.es.sr_222 pl.hr.sr_222 gl.sk..._660 cy.ht.en_444\n  0x0f1e1da4, 0x380f2009, 0x04024302, 0x27422e02,   // hr.sr.es_433 gl.es.ca_444 vi.da.fi_222 sq.mt.id_222\n  0x01001602, 0x15450c08, 0x8c000309, 0x21002e23,   // lt.en..._220 pl.sk.lv_443 nl.ht..._440 sq.tl..._880\n  // [2150]\n  0x1d2e42a4, 0x2e166612, 0x1f001707, 0x3a001922,   // mt.sq.hr_433 af.lt.sq_654 ro.ga..._420 et.eu..._870\n  0x2e001602, 0x2e4b2213, 0x14000608, 0x03003809,   // lt.sq..._220 tr.az.sq_665 de.is..._430 ca.nl..._440\n  0x3a1a0207, 0x2b004312, 0x12046602, 0x3a001623,   // da.xxx.eu_432 vi.cy..._640 af.fi.cs_222 lt.eu..._880\n  0x2b004323, 0x38180109, 0x04002002, 0x16001a02,   // vi.cy..._880 en.hu.ca_444 gl.fi..._220 xxx.lt..._220\n  // [2160]\n  0x1a001414, 0x14100b07, 0x2e001623, 0x10001522,   // is.xxx..._660 no.sv.is_432 lt.sq..._880 lv.sv..._870\n  0x1d1002a4, 0x14020b08, 0x12450511, 0x081d4008,   // da.sv.hr_433 no.da.is_443 fr.sk.cs_653 sl.hr.it_443\n  0x66050308, 0x45121512, 0x0e003011, 0x1e8c4307,   // nl.fr.af_443 lv.cs.sk_654 be.ru..._630 vi.ht.sr_432\n  0x8c036613, 0x0b002714, 0x43000621, 0x03668c13,   // af.nl.ht_665 id.no..._660 de.vi..._860 ht.af.nl_665\n  // [2170]\n  0x1a003a08, 0x19001a02, 0x8c000114, 0x45122ba4,   // eu.xxx..._430 xxx.et..._220 en.ht..._660 cy.cs.sk_433\n  0x40003f02, 0x21001814, 0x1f003f08, 0x0f0c1f12,   // sw.sl..._220 hu.tl..._660 sw.ga..._430 ga.pl.es_654\n  0x0d1d1e08, 0x01002914, 0x18002908, 0x38170d09,   // sr.hr.pt_443 ms.en..._660 ms.hu..._430 pt.ro.ca_444\n  0x66031512, 0x45060107, 0x0d0f2009, 0x3f004513,   // lv.nl.af_654 en.de.sk_432 gl.es.pt_444 sk.sw..._650\n  // [2180]\n  0x1c250ea4, 0x213f4b12, 0x032b0412, 0x20004502,   // ru.mk.bg_433 az.sw.tl_654 fi.cy.nl_654 sk.gl..._220\n  0x17150fa4, 0x4b008c12, 0x2b004307, 0x02101a07,   // es.lv.ro_433 ht.az..._640 vi.cy..._420 xxx.sv.da_432\n  0x12003f13, 0x2b008c11, 0x0000120a, 0x29004b23,   // sw.cs..._650 ht.cy..._630 cs......_500 az.ms..._880\n  0x02000514, 0x3f001614, 0x0f004202, 0x05001923,   // fr.da..._660 lt.sw..._660 mt.es..._220 et.fr..._880\n  // [2190]\n  0x1f3818af, 0x18000809, 0x0c181e07, 0x194b0107,   // hu.ca.ga_655 it.hu..._440 sr.hu.pl_432 en.az.et_432\n  0x251e0e12, 0x664b2909, 0x19083a11, 0x06190407,   // ru.sr.mk_654 ms.az.af_444 eu.it.et_653 fi.et.de_432\n  0x45001612, 0x40080f09, 0x08000d14, 0x18004208,   // lt.sk..._640 es.it.sl_444 pt.it..._660 mt.hu..._430\n  0x10001e14, 0x0e251cad, 0x16000209, 0x10004209,   // sr.sv..._660 bg.mk.ru_643 da.lt..._440 mt.sv..._440\n  // [21a0]\n  0x210c16a4, 0x40272913, 0x17224b13, 0x15002b23,   // lt.pl.tl_433 ms.id.sl_665 az.tr.ro_665 cy.lv..._880\n  0x1a003f09, 0x42402907, 0x251e0eaf, 0x10000c07,   // sw.xxx..._440 ms.sl.mt_432 ru.sr.mk_655 pl.sv..._420\n  0x451a3f02, 0x021003a4, 0x1e300e14, 0x04008c08,   // sw.xxx.sk_222 nl.sv.da_433 ru.be.sr_666 ht.fi..._430\n  0x27291412, 0x0f002e14, 0x2e002b14, 0x22041912,   // is.ms.id_654 sq.es..._660 cy.sq..._660 et.fi.tr_654\n  // [21b0]\n  0x3a004514, 0x12450f02, 0x0d1f2b12, 0x1f004202,   // sk.eu..._660 es.sk.cs_222 cy.ga.pt_654 mt.ga..._220\n  0x01002e14, 0x231e0e08, 0x14002e07, 0x08008c21,   // sq.en..._660 ru.sr.uk_443 sq.is..._420 ht.it..._860\n  0x15000d02, 0x38124560, 0x05001002, 0x12044509,   // pt.lv..._220 sk.cs.ca_664 sv.fr..._220 sk.fi.cs_444\n  0x2b001502, 0x4b001712, 0x3a000414, 0x0c001513,   // lv.cy..._220 ro.az..._640 fi.eu..._660 lv.pl..._650\n  // [21c0]\n  0x0d061607, 0x1a000307, 0x1e191d02, 0x19061012,   // lt.de.pt_432 nl.xxx..._420 hr.et.sr_222 sv.de.et_654\n  0x3f272908, 0x03003f02, 0x03000222, 0x03000621,   // ms.id.sw_443 sw.nl..._220 da.nl..._870 de.nl..._860\n  0x1a454209, 0x06020b13, 0x0c001509, 0x036602af,   // mt.sk.xxx_444 no.da.de_665 lv.pl..._440 da.af.nl_655\n  0x2e002114, 0x173a0f08, 0x42004002, 0x05002914,   // tl.sq..._660 es.eu.ro_443 sl.mt..._220 ms.fr..._660\n  // [21d0]\n  0x1e2e1d60, 0x033a0608, 0x3f1d1e13, 0x3a431a07,   // hr.sq.sr_664 de.eu.nl_443 sr.hr.sw_665 xxx.vi.eu_432\n  0x16003a23, 0x45000823, 0x292b0b07, 0x3f190413,   // eu.lt..._880 it.sk..._880 no.cy.ms_432 fi.et.sw_665\n  0x2b020b08, 0x18141f60, 0x16381707, 0x10001908,   // no.da.cy_443 ga.is.hu_664 ro.ca.lt_432 et.sv..._430\n  0x21100108, 0x661f0b07, 0x19000809, 0x3a002122,   // en.sv.tl_443 no.ga.af_432 it.et..._440 tl.eu..._870\n  // [21e0]\n  0x1d2927a4, 0x40004507, 0x45150f07, 0x05001a14,   // id.ms.hr_433 sk.sl..._420 es.lv.sk_432 xxx.fr..._660\n  0x0f002914, 0x05228c08, 0x27002912, 0x0d001f14,   // ms.es..._660 ht.tr.fr_443 ms.id..._640 ga.pt..._660\n  0x121d4002, 0x0f002114, 0x0c101f08, 0x180f0d07,   // sl.hr.cs_222 tl.es..._660 ga.sv.pl_443 pt.es.hu_432\n  0x22000b14, 0x194b2208, 0x4b221a02, 0x66030b07,   // no.tr..._660 tr.az.et_443 xxx.tr.az_222 no.nl.af_432\n  // [21f0]\n  0x40200d09, 0x0d101a09, 0x21001023, 0x1f000123,   // pt.gl.sl_444 xxx.sv.pt_444 sv.tl..._880 en.ga..._880\n  0x0f1e1d08, 0x0d001913, 0x38000102, 0x060410ad,   // hr.sr.es_443 et.pt..._650 en.ca..._220 sv.fi.de_643\n  0x181e1d08, 0x181d1e08, 0x02001a12, 0x27292112,   // hr.sr.hu_443 sr.hr.hu_443 xxx.da..._640 tl.ms.id_654\n  0x1e001514, 0x011a6608, 0x40181e08, 0x1d1e1802,   // lv.sr..._660 af.xxx.en_443 sr.hu.sl_443 hu.sr.hr_222\n  // [2200]\n  0x38002b09, 0x10060208, 0x8c000302, 0x03010608,   // cy.ca..._440 da.de.sv_443 nl.ht..._220 de.en.nl_443\n  0x17002b08, 0x383a2b08, 0x0e253012, 0x1f380813,   // cy.ro..._430 cy.eu.ca_443 be.mk.ru_654 it.ca.ga_665\n  0x198c0409, 0x03196613, 0x08000d23, 0x031d6608,   // fi.ht.et_444 af.et.nl_665 pt.it..._880 af.hr.nl_443\n  0x024521a4, 0x05004502, 0x2b053807, 0x1d451209,   // tl.sk.da_433 sk.fr..._220 ca.fr.cy_432 cs.sk.hr_444\n  // [2210]\n  0x1c233060, 0x06001a23, 0x15190b13, 0x181d1e12,   // be.uk.bg_664 xxx.de..._880 no.et.lv_665 sr.hr.hu_654\n  0x03176613, 0x178c0c12, 0x16193f55, 0x1e1d1012,   // af.ro.nl_665 pl.ht.ro_654 sw.et.lt_442 sv.hr.sr_654\n  0x8c001822, 0x1d450802, 0x45003813, 0x1d401e13,   // hu.ht..._870 it.sk.hr_222 ca.sk..._650 sr.sl.hr_665\n  0x4e373355, 0x45004012, 0x010802a4, 0x1d3f1e07,   // ur.ar.fa_442 sl.sk..._640 da.it.en_433 sr.sw.hr_432\n  // [2220]\n  0x8c001709, 0x3a003808, 0x22001902, 0x0b004223,   // ro.ht..._440 ca.eu..._430 et.tr..._220 mt.no..._880\n  0x45002708, 0x27001014, 0x29271602, 0x29000522,   // id.sk..._430 sv.id..._660 lt.id.ms_222 fr.ms..._870\n  0x02001a14, 0x10020b12, 0x16002209, 0x01000308,   // xxx.da..._660 no.da.sv_654 tr.lt..._440 nl.en..._430\n  0x0d380f13, 0x100604af, 0x00000e2d, 0x38004b02,   // es.ca.pt_665 fi.de.sv_655 ru......_A00 az.ca..._220\n  // [2230]\n  0x38000309, 0x45100107, 0x1e230e13, 0x04196602,   // nl.ca..._440 en.sv.sk_432 ru.uk.sr_665 af.et.fi_222\n  0x17001509, 0x454b0b02, 0x081e1d60, 0x3f451a07,   // lv.ro..._440 no.az.sk_222 hr.sr.it_664 xxx.sk.sw_432\n  0x1a001609, 0x0e301e08, 0x16002708, 0x38001909,   // lt.xxx..._440 sr.be.ru_443 id.lt..._430 et.ca..._440\n  0x1a1f0108, 0x1a001f20, 0x0f000d1d, 0x45144302,   // en.ga.xxx_443 ga.xxx..._850 pt.es..._820 vi.is.sk_222\n  // [2240]\n  0x43004209, 0x27290414, 0x2b000514, 0x02050107,   // mt.vi..._440 fi.ms.id_666 fr.cy..._660 en.fr.da_432\n  0x271d4008, 0x45000423, 0x302325a4, 0x1c0e2555,   // sl.hr.id_443 fi.sk..._880 mk.uk.be_433 mk.ru.bg_442\n  0x1a003a09, 0x12011a08, 0x03001914, 0x8c002102,   // eu.xxx..._440 xxx.en.cs_443 et.nl..._660 tl.ht..._220\n  0x15001912, 0x40000d14, 0x27291002, 0x2e382b14,   // et.lv..._640 pt.sl..._660 sv.ms.id_222 cy.ca.sq_666\n  // [2250]\n  0x2e1a3809, 0x08001214, 0x16003814, 0x06272913,   // ca.xxx.sq_444 cs.it..._660 ca.lt..._660 ms.id.de_665\n  0x450c1808, 0x1d2b0608, 0x40000109, 0x1e0e2514,   // hu.pl.sk_443 de.cy.hr_443 en.sl..._440 mk.ru.sr_666\n  0x18000c09, 0x0b1014a4, 0x18001909, 0x01002708,   // pl.hu..._440 is.sv.no_433 et.hu..._440 id.en..._430\n  0x10001914, 0x1a0c4255, 0x05000308, 0x19000802,   // et.sv..._660 mt.pl.xxx_442 nl.fr..._430 it.et..._220\n  // [2260]\n  0x30001e12, 0x1d0f3a02, 0x0f001207, 0x45010f02,   // sr.be..._640 eu.es.hr_222 cs.es..._420 es.en.sk_222\n  0x1f001709, 0x17000508, 0x45121802, 0x1f004002,   // ro.ga..._440 fr.ro..._430 hu.cs.sk_222 sl.ga..._220\n  0x190d0412, 0x03020b08, 0x22061908, 0x40001608,   // fi.pt.et_654 no.da.nl_443 et.de.tr_443 lt.sl..._430\n  0x1e1c0e09, 0x0c4540a4, 0x05000f22, 0x1e001414,   // ru.bg.sr_444 sl.sk.pl_433 es.fr..._870 is.sr..._660\n  // [2270]\n  0x451d1ea4, 0x16003809, 0x251e3060, 0x38001614,   // sr.hr.sk_433 ca.lt..._440 be.sr.mk_664 lt.ca..._660\n  0x14002113, 0x2b000314, 0x1d1e4209, 0x4b001e09,   // tl.is..._650 nl.cy..._660 mt.sr.hr_444 sr.az..._440\n  0x083a4209, 0x2e001a02, 0x43001002, 0x023f2908,   // mt.eu.it_444 xxx.sq..._220 sv.vi..._220 ms.sw.da_443\n  0x173a0109, 0x272b29af, 0x432e1f60, 0x16004520,   // en.eu.ro_444 ms.cy.id_655 ga.sq.vi_664 sk.lt..._850\n  // [2280]\n  0x0b006614, 0x0b000314, 0x15002114, 0x3a000f23,   // af.no..._660 nl.no..._660 tl.lv..._660 es.eu..._880\n  0x173805a4, 0x1f001809, 0x27160b07, 0x14224b08,   // fr.ca.ro_433 hu.ga..._440 no.lt.id_432 az.tr.is_443\n  0x0b003802, 0x16000302, 0x662e0308, 0x27001a12,   // ca.no..._220 nl.lt..._220 nl.sq.af_443 xxx.id..._640\n  0x0f002b09, 0x0f380da4, 0x4b221712, 0x0c8c2b08,   // cy.es..._440 pt.ca.es_433 ro.tr.az_654 cy.ht.pl_443\n  // [2290]\n  0x4b1822af, 0x29001502, 0x1d0821a4, 0x42080107,   // tr.hu.az_655 lv.ms..._220 tl.it.hr_433 en.it.mt_432\n  0x0e251e07, 0x06660313, 0x42000502, 0x38000609,   // sr.mk.ru_432 nl.af.de_665 fr.mt..._220 de.ca..._440\n  0x02222b60, 0x66002907, 0x29001f08, 0x27051a02,   // cy.tr.da_664 ms.af..._420 ga.ms..._430 xxx.fr.id_222\n  0x2b004208, 0x0b140213, 0x08000108, 0x08004002,   // mt.cy..._430 da.is.no_665 en.it..._430 sl.it..._220\n  // [22a0]\n  0x20000523, 0x3a002023, 0x2b0d3808, 0x04272908,   // fr.gl..._880 gl.eu..._880 ca.pt.cy_443 ms.id.fi_443\n  0x45151202, 0x1d001014, 0x16001923, 0x0e1c2309,   // cs.lv.sk_222 sv.hr..._660 et.lt..._880 uk.bg.ru_444\n  0x160b0213, 0x66003813, 0x2b004202, 0x1e001409,   // da.no.lt_665 ca.af..._650 mt.cy..._220 is.sr..._440\n  0x10036609, 0x0b001421, 0x22001009, 0x2b001409,   // af.nl.sv_444 is.no..._860 sv.tr..._440 is.cy..._440\n  // [22b0]\n  0x10006614, 0x03001a08, 0x1e1d3f13, 0x060f0b09,   // af.sv..._660 xxx.nl..._430 sw.hr.sr_665 no.es.de_444\n  0x19383aaf, 0x272e2913, 0x08160107, 0x0c000613,   // eu.ca.et_655 ms.sq.id_665 en.lt.it_432 de.pl..._650\n  0x1a002b12, 0x1e230e07, 0x3f000c21, 0x0e301e12,   // cy.xxx..._640 ru.uk.sr_432 pl.sw..._860 sr.be.ru_654\n  0x03660caf, 0x14020ba4, 0x18451255, 0x662b0208,   // pl.af.nl_655 no.da.is_433 cs.sk.hu_442 da.cy.af_443\n  // [22c0]\n  0x251e3012, 0x18000412, 0x05000202, 0x4b221760,   // be.sr.mk_654 fi.hu..._640 da.fr..._220 ro.tr.az_664\n  0x16006613, 0x0d001914, 0x45000507, 0x29000302,   // af.lt..._650 et.pt..._660 fr.sk..._420 nl.ms..._220\n  0x1f180f12, 0x660305a4, 0x3f3a17af, 0x1a002e02,   // es.hu.ga_654 fr.nl.af_433 ro.eu.sw_655 sq.xxx..._220\n  0x4b2217ad, 0x3a001713, 0x14001f14, 0x66001913,   // ro.tr.az_643 ro.eu..._650 ga.is..._660 et.af..._650\n  // [22d0]\n  0x01000414, 0x3a004202, 0x211a14a4, 0x05000b07,   // fi.en..._660 mt.eu..._220 is.xxx.tl_433 no.fr..._420\n  0x15060507, 0x3a001723, 0x19020b09, 0x05000209,   // fr.de.lv_432 ro.eu..._880 no.da.et_444 da.fr..._440\n  0x38006602, 0x1e224b02, 0x14213aaf, 0x2e050107,   // af.ca..._220 az.tr.sr_222 eu.tl.is_655 en.fr.sq_432\n  0x1a002108, 0x2b000113, 0x66058c60, 0x0c002914,   // tl.xxx..._430 en.cy..._650 ht.fr.af_664 ms.pl..._660\n  // [22e0]\n  0x2e001202, 0x42000309, 0x17004309, 0x060c03af,   // cs.sq..._220 nl.mt..._440 vi.ro..._440 nl.pl.de_655\n  0x1d000d14, 0x1a003f21, 0x06421207, 0x02062e08,   // pt.hr..._660 sw.xxx..._860 cs.mt.de_432 sq.de.da_443\n  0x45121faf, 0x40292712, 0x29193802, 0x18002e08,   // ga.cs.sk_655 id.ms.sl_654 ca.et.ms_222 sq.hu..._430\n  0x18001513, 0x1d000622, 0x2b001f12, 0x1e002312,   // lv.hu..._650 de.hr..._870 ga.cy..._640 uk.sr..._640\n  // [22f0]\n  0x1f002b08, 0x40001413, 0x170d21a4, 0x251c0e07,   // cy.ga..._430 is.sl..._650 tl.pt.ro_433 ru.bg.mk_432\n  0x1a000308, 0x3f1410af, 0x21003a09, 0x1e400b07,   // nl.xxx..._430 sv.is.sw_655 eu.tl..._440 no.sl.sr_432\n  0x020610a4, 0x1f4512a4, 0x3a002121, 0x03452b07,   // sv.de.da_433 cs.sk.ga_433 tl.eu..._860 cy.sk.nl_432\n  0x66003f13, 0x21000c14, 0x0d210109, 0x45050612,   // sw.af..._650 pl.tl..._660 en.tl.pt_444 de.fr.sk_654\n  // [2300]\n  0x66001422, 0x21001614, 0x3f001f23, 0x1d4508a4,   // is.af..._870 lt.tl..._660 ga.sw..._880 it.sk.hr_433\n  0x212901a4, 0x66001523, 0x29000d14, 0x66013808,   // en.ms.tl_433 lv.af..._880 pt.ms..._660 ca.en.af_443\n  0x0e002321, 0x10003a09, 0x3f061aa4, 0x29001f02,   // uk.ru..._860 eu.sv..._440 xxx.de.sw_433 ga.ms..._220\n  0x18001708, 0x15000107, 0x15006623, 0x00004215,   // ro.hu..._430 en.lv..._420 af.lv..._880 mt......_700\n  // [2310]\n  0x062b1860, 0x1d000208, 0x02002b07, 0x15001409,   // hu.cy.de_664 da.hr..._430 cy.da..._420 is.lv..._440\n  0x10020b60, 0x03001402, 0x22000412, 0x380f1a07,   // no.da.sv_664 is.nl..._220 fi.tr..._640 xxx.es.ca_432\n  0x05000f14, 0x068c2b08, 0x2e1a0808, 0x1d003802,   // es.fr..._660 cy.ht.de_443 it.xxx.sq_443 ca.hr..._220\n  0x1f272960, 0x08001f09, 0x3f000f14, 0x30251c08,   // ms.id.ga_664 ga.it..._440 es.sw..._660 bg.mk.be_443\n  // [2320]\n  0x0c0d4208, 0x3a002021, 0x1f0d0b08, 0x0d002b08,   // mt.pt.pl_443 gl.eu..._860 no.pt.ga_443 cy.pt..._430\n  0x22661207, 0x2e004502, 0x40002708, 0x173f3a12,   // cs.af.tr_432 sk.sq..._220 id.sl..._430 eu.sw.ro_654\n  0x06032709, 0x30230e14, 0x2e001413, 0x02000623,   // id.nl.de_444 ru.uk.be_666 is.sq..._650 de.da..._880\n  0x14061a08, 0x38001623, 0x033a0609, 0x45102b07,   // xxx.de.is_443 lt.ca..._880 de.eu.nl_444 cy.sv.sk_432\n  // [2330]\n  0x2b001609, 0x23250e12, 0x66001e02, 0x66002b22,   // lt.cy..._440 ru.mk.uk_654 sr.af..._220 cy.af..._870\n  0x16000423, 0x380d1412, 0x45018c02, 0x25001e08,   // fi.lt..._880 is.pt.ca_654 ht.en.sk_222 sr.mk..._430\n  0x223f2908, 0x08001809, 0x22151613, 0x16084508,   // ms.sw.tr_443 hu.it..._440 lt.lv.tr_665 sk.it.lt_443\n  0x3a172113, 0x05004208, 0x2e002b12, 0x40000b02,   // tl.ro.eu_665 mt.fr..._430 cy.sq..._640 no.sl..._220\n  // [2340]\n  0x0d003f14, 0x210f0d60, 0x04000308, 0x40000d09,   // sw.pt..._660 pt.es.tl_664 nl.fi..._430 pt.sl..._440\n  0x42000821, 0x0f002113, 0x0d002014, 0x12062b08,   // it.mt..._860 tl.es..._650 gl.pt..._660 cy.de.cs_443\n  0x0d210fa4, 0x3f000413, 0x66041913, 0x21000412,   // es.tl.pt_433 fi.sw..._650 et.fi.af_665 fi.tl..._640\n  0x1c250e13, 0x18160108, 0x04001821, 0x3a8c0107,   // ru.mk.bg_665 en.lt.hu_443 hu.fi..._860 en.ht.eu_432\n  // [2350]\n  0x02142707, 0x02451a08, 0x3a000f14, 0x1e001502,   // id.is.da_432 xxx.sk.da_443 es.eu..._660 lv.sr..._220\n  0x272e2909, 0x21003a23, 0x22001f09, 0x29101602,   // ms.sq.id_444 eu.tl..._880 ga.tr..._440 lt.sv.ms_222\n  0x4b001e08, 0x0f003821, 0x20000114, 0x010c6609,   // sr.az..._430 ca.es..._860 en.gl..._660 af.pl.en_444\n  0x0b001812, 0x8c061fa4, 0x06001f08, 0x27296612,   // hu.no..._640 ga.de.ht_433 ga.de..._430 af.ms.id_654\n  // [2360]\n  0x451d4014, 0x38023a12, 0x10216612, 0x1f001413,   // sl.hr.sk_666 eu.da.ca_654 af.tl.sv_654 is.ga..._650\n  0x45121f12, 0x29431602, 0x21272907, 0x3a003f14,   // ga.cs.sk_654 lt.vi.ms_222 ms.id.tl_432 sw.eu..._660\n  0x19002e07, 0x184b2255, 0x21001502, 0x040c16af,   // sq.et..._420 tr.az.hu_442 lv.tl..._220 lt.pl.fi_655\n  0x16002914, 0x27432b02, 0x16061509, 0x3f004309,   // ms.lt..._660 cy.vi.id_222 lv.de.lt_444 vi.sw..._440\n  // [2370]\n  0x19000209, 0x1e1d8caf, 0x17000609, 0x0d000507,   // da.et..._440 ht.hr.sr_655 de.ro..._440 fr.pt..._420\n  0x43068c02, 0x27290b09, 0x1e060302, 0x45003a12,   // ht.de.vi_222 no.ms.id_444 nl.de.sr_222 eu.sk..._640\n  0x0f003f02, 0x29003f22, 0x1c230ea4, 0x18000521,   // sw.es..._220 sw.ms..._870 ru.uk.bg_433 fr.hu..._860\n  0x38008c08, 0x17000809, 0x40292709, 0x011a4b55,   // ht.ca..._430 it.ro..._440 id.ms.sl_444 az.xxx.en_442\n  // [2380]\n  0x1f180c11, 0x0c292708, 0x42223809, 0x4b002b23,   // pl.hu.ga_653 id.ms.pl_443 ca.tr.mt_444 cy.az..._880\n  0x272921af, 0x08020b60, 0x0c001714, 0x0c001713,   // tl.ms.id_655 no.da.it_664 ro.pl..._660 ro.pl..._650\n  0x1e003a02, 0x2e000d23, 0x2e006620, 0x2b430808,   // eu.sr..._220 pt.sq..._880 af.sq..._850 it.vi.cy_443\n  0x3a004014, 0x01003f14, 0x15003a09, 0x0e1c1e14,   // sl.eu..._660 sw.en..._660 eu.lv..._440 sr.bg.ru_666\n  // [2390]\n  0x1d211e02, 0x301e23a4, 0x3f001213, 0x3f080508,   // sr.tl.hr_222 uk.sr.be_433 cs.sw..._650 fr.it.sw_443\n  0x1e8c3f02, 0x15002902, 0x14001f09, 0x271d2902,   // sw.ht.sr_222 ms.lv..._220 ga.is..._440 ms.hr.id_222\n  0x18000314, 0x1e1d3a14, 0x1e1d8ca4, 0x083f0612,   // nl.hu..._660 eu.hr.sr_666 ht.hr.sr_433 de.sw.it_654\n  0x660306af, 0x0d004013, 0x2e200d12, 0x0d000813,   // de.nl.af_655 sl.pt..._650 pt.gl.sq_654 it.pt..._650\n  // [23a0]\n  0x66001d14, 0x22001609, 0x1d401eaf, 0x1a001f07,   // hr.af..._660 lt.tr..._440 sr.sl.hr_655 ga.xxx..._420\n  0x100b0260, 0x20002909, 0x012e0208, 0x16000323,   // da.no.sv_664 ms.gl..._440 da.sq.en_443 nl.lt..._880\n  0x38050109, 0x290d2702, 0x1f451212, 0x2e008c23,   // en.fr.ca_444 id.pt.ms_222 cs.sk.ga_654 ht.sq..._880\n  0x16272909, 0x214b2212, 0x012b1208, 0x382e10a4,   // ms.id.lt_444 tr.az.tl_654 cs.cy.en_443 sv.sq.ca_433\n  // [23b0]\n  0x1a020b08, 0x12001e09, 0x3a061512, 0x14061908,   // no.da.xxx_443 sr.cs..._440 lv.de.eu_654 et.de.is_443\n  0x17004214, 0x04000202, 0x38008c21, 0x1f000623,   // mt.ro..._660 da.fi..._220 ht.ca..._860 de.ga..._880\n  0x06010308, 0x06000123, 0x2b064307, 0x2b001a02,   // nl.en.de_443 en.de..._880 vi.de.cy_432 xxx.cy..._220\n  0x0d001722, 0x1a000208, 0x020b0412, 0x1d1e4013,   // ro.pt..._870 da.xxx..._430 fi.no.da_654 sl.sr.hr_665\n  // [23c0]\n  0x3a220808, 0x66004013, 0x14000421, 0x10000314,   // it.tr.eu_443 sl.af..._650 fi.is..._860 nl.sv..._660\n  0x27000202, 0x10001802, 0x1e002e14, 0x06002222,   // da.id..._220 hu.sv..._220 sq.sr..._660 tr.de..._870\n  0x2e000314, 0x1d1e0309, 0x38003a13, 0x19000612,   // nl.sq..._660 nl.sr.hr_444 eu.ca..._650 de.et..._640\n  0x19004223, 0x2e3f0108, 0x3f2e0107, 0x4b000302,   // mt.et..._880 en.sw.sq_443 en.sq.sw_432 nl.az..._220\n  // [23d0]\n  0x06004b14, 0x2e000313, 0x0c000f08, 0x3f002e22,   // az.de..._660 nl.sq..._650 es.pl..._430 sq.sw..._870\n  0x05000121, 0x08123fa4, 0x19004209, 0x05660308,   // en.fr..._860 sw.cs.it_433 mt.et..._440 nl.af.fr_443\n  0x1d421e14, 0x0c451209, 0x1a010209, 0x04190b13,   // sr.mt.hr_666 cs.sk.pl_444 da.en.xxx_444 no.et.fi_665\n  0x66000c14, 0x1a000c11, 0x0600101a, 0x19061060,   // pl.af..._660 pl.xxx..._630 sv.de..._760 sv.de.et_664\n  // [23e0]\n  0x061904af, 0x3f002e21, 0x181245a4, 0x06162707,   // fi.et.de_655 sq.sw..._860 sk.cs.hu_433 id.lt.de_432\n  0x17030508, 0x4b220d12, 0x0f3842a4, 0x3f190b09,   // fr.nl.ro_443 pt.tr.az_654 mt.ca.es_433 no.et.sw_444\n  0x4b221912, 0x2e000107, 0x200d0f60, 0x3f002e08,   // et.tr.az_654 en.sq..._420 es.pt.gl_664 sq.sw..._430\n  0x1a8c3a12, 0x21001709, 0x1c0e23a4, 0x0e002311,   // eu.ht.xxx_654 ro.tl..._440 uk.ru.bg_433 uk.ru..._630\n  // [23f0]\n  0x40191608, 0x660302a4, 0x1e006609, 0x12451f08,   // lt.et.sl_443 da.nl.af_433 af.sr..._440 ga.sk.cs_443\n  0x06030b09, 0x03451a07, 0x22001a08, 0x21004009,   // no.nl.de_444 xxx.sk.nl_432 xxx.tr..._430 sl.tl..._440\n  0x1e0e1c09, 0x0400190d, 0x06190412, 0x08000214,   // bg.ru.sr_444 et.fi..._540 fi.et.de_654 da.it..._660\n  0x19000214, 0x0b002702, 0x041a2109, 0x02003802,   // da.et..._660 id.no..._220 tl.xxx.fi_444 ca.da..._220\n\n  // [2400]\n  0x031a01a4, 0x02001608, 0x1d402e02, 0x10008c12,   // en.xxx.nl_433 lt.da..._430 sq.sl.hr_222 ht.sv..._640\n  0x053a1702, 0x05002907, 0x290f3a02, 0x12450f07,   // ro.eu.fr_222 ms.fr..._420 eu.es.ms_222 es.sk.cs_432\n  0x224b2907, 0x14040812, 0x0f431a09, 0x15191008,   // ms.az.tr_432 it.fi.is_654 xxx.vi.es_444 sv.et.lv_443\n  0x08040b07, 0x2e000d22, 0x1f171a09, 0x16050107,   // no.fi.it_432 pt.sq..._870 xxx.ro.ga_444 en.fr.lt_432\n  // [2410]\n  0x170d08af, 0x06033a09, 0x38000202, 0x1f001207,   // it.pt.ro_655 eu.nl.de_444 da.ca..._220 cs.ga..._420\n  0x0b081809, 0x250e2313, 0x1e232514, 0x16001f21,   // hu.it.no_444 uk.ru.mk_665 mk.uk.sr_666 ga.lt..._860\n  0x02038c13, 0x03001023, 0x3a290308, 0x45120c12,   // ht.nl.da_665 sv.nl..._880 nl.ms.eu_443 pl.cs.sk_654\n  0x041f1908, 0x1e001708, 0x1d664008, 0x0c000b02,   // et.ga.fi_443 ro.sr..._430 sl.af.hr_443 no.pl..._220\n  // [2420]\n  0x0b000413, 0x402e1e09, 0x1f3f4209, 0x1f002109,   // fi.no..._650 sr.sq.sl_444 mt.sw.ga_444 tl.ga..._440\n  0x38140ba4, 0x27294502, 0x1d190412, 0x19000411,   // no.is.ca_433 sk.ms.id_222 fi.et.hr_654 fi.et..._630\n  0x0c3f2b12, 0x1e291d02, 0x16003f23, 0x16001413,   // cy.sw.pl_654 hr.ms.sr_222 sw.lt..._880 is.lt..._650\n  0x14272e08, 0x14400b08, 0x45022e08, 0x04143f09,   // sq.id.is_443 no.sl.is_443 sq.da.sk_443 sw.is.fi_444\n  // [2430]\n  0x05001514, 0x16003a08, 0x42002202, 0x05081707,   // lv.fr..._660 eu.lt..._430 tr.mt..._220 ro.it.fr_432\n  0x18002914, 0x45060102, 0x230e1ea4, 0x29002222,   // ms.hu..._660 en.de.sk_222 sr.ru.uk_433 tr.ms..._870\n  0x180302a4, 0x03002113, 0x1c0e1ea4, 0x0e1e2509,   // da.nl.hu_433 tl.nl..._650 sr.ru.bg_433 mk.sr.ru_444\n  0x01000208, 0x43012108, 0x66190314, 0x25003022,   // da.en..._430 tl.en.vi_443 nl.et.af_666 be.mk..._870\n  // [2440]\n  0x29041902, 0x05124508, 0x10000d02, 0x17001207,   // et.fi.ms_222 sk.cs.fr_443 pt.sv..._220 cs.ro..._420\n  0x3800201d, 0x0c0f4555, 0x45221612, 0x8c003808,   // gl.ca..._820 sk.es.pl_442 lt.tr.sk_654 ca.ht..._430\n  0x15050109, 0x292b2707, 0x16002702, 0x1d0b42a4,   // en.fr.lv_444 id.cy.ms_432 id.lt..._220 mt.no.hr_433\n  0x14004221, 0x19001f22, 0x0e231e11, 0x02006613,   // mt.is..._860 ga.et..._870 sr.uk.ru_653 af.da..._650\n  // [2450]\n  0x08401d09, 0x010d0f08, 0x0b001f08, 0x2e000512,   // hr.sl.it_444 es.pt.en_443 ga.no..._430 fr.sq..._640\n  0x12451f09, 0x3a190413, 0x451812a4, 0x12000307,   // ga.sk.cs_444 fi.et.eu_665 cs.hu.sk_433 nl.cs..._420\n  0x212b3a07, 0x23002511, 0x011d1a09, 0x45181212,   // eu.cy.tl_432 mk.uk..._630 xxx.hr.en_444 cs.hu.sk_654\n  0x06001509, 0x23001c08, 0x0c000f12, 0x16151913,   // lv.de..._440 bg.uk..._430 es.pl..._640 et.lv.lt_665\n  // [2460]\n  0x18004009, 0x3a002209, 0x40001823, 0x42083a08,   // sl.hu..._440 tr.eu..._440 hu.sl..._880 eu.it.mt_443\n  0x04100655, 0x1d1a1502, 0x1e301c02, 0x1a006602,   // de.sv.fi_442 lv.xxx.hr_222 bg.be.sr_222 af.xxx..._220\n  0x4b000402, 0x29060402, 0x12294b09, 0x0e301eaf,   // fi.az..._220 fi.de.ms_222 az.ms.cs_444 sr.be.ru_655\n  0x450f3802, 0x1d006614, 0x01081708, 0x8c051412,   // ca.es.sk_222 af.hr..._660 ro.it.en_443 is.fr.ht_654\n  // [2470]\n  0x15450109, 0x19004b08, 0x30251ea4, 0x0e1c3013,   // en.sk.lv_444 az.et..._430 sr.mk.be_433 be.bg.ru_665\n  0x120d4502, 0x05003807, 0x251e1caf, 0x0d003a13,   // sk.pt.cs_222 ca.fr..._420 bg.sr.mk_655 eu.pt..._650\n  0x66062909, 0x451e1da4, 0x16192909, 0x27456602,   // ms.de.af_444 hr.sr.sk_433 ms.et.lt_444 af.sk.id_222\n  0x0f422e07, 0x2e003807, 0x04181012, 0x29080109,   // sq.mt.es_432 ca.sq..._420 sv.hu.fi_654 en.it.ms_444\n  // [2480]\n  0x1d1e4202, 0x18144514, 0x17382707, 0x1e0c1da4,   // mt.sr.hr_222 sk.is.hu_666 id.ca.ro_432 hr.pl.sr_433\n  0x1d1e4560, 0x1c230ead, 0x010b0208, 0x43000c12,   // sk.sr.hr_664 ru.uk.bg_643 da.no.en_443 pl.vi..._640\n  0x1e1c2302, 0x0d0f3812, 0x0f003822, 0x29008c02,   // uk.bg.sr_222 ca.es.pt_654 ca.es..._870 ht.ms..._220\n  0x3f000113, 0x1d401e55, 0x278c4209, 0x3f218ca4,   // en.sw..._650 sr.sl.hr_442 mt.ht.id_444 ht.tl.sw_433\n  // [2490]\n  0x06031512, 0x1d181e13, 0x27008c08, 0x181d1ea4,   // lv.nl.de_654 sr.hu.hr_665 ht.id..._430 sr.hr.hu_433\n  0x033f21a4, 0x010f1f60, 0x0f000507, 0x164b2708,   // tl.sw.nl_433 ga.es.en_664 fr.es..._420 id.az.lt_443\n  0x3f1a42a4, 0x18401e02, 0x1d191e08, 0x04082b12,   // mt.xxx.sw_433 sr.sl.hu_222 sr.et.hr_443 cy.it.fi_654\n  0x1d181ea4, 0x121d1ea4, 0x273f2108, 0x03000512,   // sr.hu.hr_433 sr.hr.cs_433 tl.sw.id_443 fr.nl..._640\n  // [24a0]\n  0x0e1e23a4, 0x27401402, 0x0c183855, 0x40080f08,   // uk.sr.ru_433 is.sl.id_222 ca.hu.pl_442 es.it.sl_443\n  0x0d451f07, 0x27001402, 0x453f4ba4, 0x3f004b09,   // ga.sk.pt_432 is.id..._220 az.sw.sk_433 az.sw..._440\n  0x27001a09, 0x21272914, 0x04660313, 0x0e251e08,   // xxx.id..._440 ms.id.tl_666 nl.af.fi_665 sr.mk.ru_443\n  0x22001509, 0x1d272909, 0x12450d12, 0x43002908,   // lv.tr..._440 ms.id.hr_444 pt.sk.cs_654 ms.vi..._430\n  // [24b0]\n  0x8c001202, 0x66450302, 0x19150408, 0x0c008c22,   // cs.ht..._220 nl.sk.af_222 fi.lv.et_443 ht.pl..._870\n  0x1d3a2e02, 0x0c001913, 0x66000307, 0x16001714,   // sq.eu.hr_222 et.pl..._650 nl.af..._420 ro.lt..._660\n  0x1a020407, 0x0d002709, 0x0d003a08, 0x170d0107,   // fi.da.xxx_432 id.pt..._440 eu.pt..._430 en.pt.ro_432\n  0x031a1008, 0x3a003807, 0x29001a14, 0x8c001209,   // sv.xxx.nl_443 ca.eu..._420 xxx.ms..._660 cs.ht..._440\n  // [24c0]\n  0x1a100209, 0x8c223f55, 0x1d001714, 0x3a001923,   // da.sv.xxx_444 sw.tr.ht_442 ro.hr..._660 et.eu..._880\n  0x18002123, 0x0f382009, 0x0f000602, 0x19000b14,   // tl.hu..._880 gl.ca.es_444 de.es..._220 no.et..._660\n  0x1d051602, 0x300e1e55, 0x3a000113, 0x17040514,   // lt.fr.hr_222 sr.ru.be_442 en.eu..._650 fr.fi.ro_666\n  0x01002b12, 0x01191a08, 0x15003f09, 0x38006609,   // cy.en..._640 xxx.et.en_443 sw.lv..._440 af.ca..._440\n  // [24d0]\n  0x27014208, 0x10140b14, 0x29270f09, 0x1c0e2355,   // mt.en.id_443 no.is.sv_666 es.id.ms_444 uk.ru.bg_442\n  0x45053a08, 0x0d0f0508, 0x29002e13, 0x45013802,   // eu.fr.sk_443 fr.es.pt_443 sq.ms..._650 ca.en.sk_222\n  0x18451f07, 0x0f001202, 0x12180802, 0x0b000102,   // ga.sk.hu_432 cs.es..._220 it.hu.cs_222 en.no..._220\n  0x00003a42, 0x1c251e60, 0x21001008, 0x033f6608,   // eu......_C00 sr.mk.bg_664 sv.tl..._430 af.sw.nl_443\n  // [24e0]\n  0x4b182208, 0x27000108, 0x0f002e09, 0x01000b23,   // tr.hu.az_443 en.id..._430 sq.es..._440 no.en..._880\n  0x0d0f1708, 0x2e004b14, 0x15000c02, 0x16002902,   // ro.es.pt_443 az.sq..._660 pl.lv..._220 ms.lt..._220\n  0x43002714, 0x08051708, 0x2e003a11, 0x15036613,   // id.vi..._660 ro.fr.it_443 eu.sq..._630 af.nl.lv_665\n  0x22272913, 0x29000614, 0x08422ead, 0x2e004223,   // ms.id.tr_665 de.ms..._660 sq.mt.it_643 mt.sq..._880\n  // [24f0]\n  0x0b004514, 0x27000113, 0x16001209, 0x16191513,   // sk.no..._660 en.id..._650 cs.lt..._440 lv.et.lt_665\n  0x0f001214, 0x20004314, 0x27290107, 0x45121f14,   // cs.es..._660 vi.gl..._660 en.ms.id_432 ga.cs.sk_666\n  0x0c002909, 0x2e004b02, 0x27291512, 0x2e3f0109,   // ms.pl..._440 az.sq..._220 lv.ms.id_654 en.sw.sq_444\n  0x45003f13, 0x100b0209, 0x04050155, 0x29274209,   // sw.sk..._650 da.no.sv_444 en.fr.fi_442 mt.id.ms_444\n  // [2500]\n  0x1a020107, 0x2b8c6609, 0x06026655, 0x04001e02,   // en.da.xxx_432 af.ht.cy_444 af.da.de_442 sr.fi..._220\n  0x1e1240a4, 0x66003809, 0x1a001912, 0x0f001222,   // sl.cs.sr_433 ca.af..._440 et.xxx..._640 cs.es..._870\n  0x43272909, 0x17004014, 0x12454008, 0x04001402,   // ms.id.vi_444 sl.ro..._660 sl.sk.cs_443 is.fi..._220\n  0x250e23a4, 0x1a3a21a4, 0x290b1a02, 0x3a000b07,   // uk.ru.mk_433 tl.eu.xxx_433 xxx.no.ms_222 no.eu..._420\n  // [2510]\n  0x20002914, 0x3f000b23, 0x18003a08, 0x1a000b14,   // ms.gl..._660 no.sw..._880 eu.hu..._430 no.xxx..._660\n  0x27082908, 0x2e3f2907, 0x2e004313, 0x03660408,   // ms.it.id_443 ms.sw.sq_432 vi.sq..._650 fi.af.nl_443\n  0x38004313, 0x0f380d60, 0x27004008, 0x15001e09,   // vi.ca..._650 pt.ca.es_664 sl.id..._430 sr.lv..._440\n  0x1d1e1608, 0x08000d22, 0x1d1e4012, 0x03143a08,   // lt.sr.hr_443 pt.it..._870 sl.sr.hr_654 eu.is.nl_443\n  // [2520]\n  0x183a1408, 0x02140b13, 0x04000d02, 0x06000c08,   // is.eu.hu_443 no.is.da_665 pt.fi..._220 pl.de..._430\n  0x8c001907, 0x01000808, 0x060c0208, 0x0d1f3810,   // et.ht..._420 it.en..._430 da.pl.de_443 ca.ga.pt_642\n  0x01002707, 0x05000823, 0x45036660, 0x1d213f09,   // id.en..._420 it.fr..._880 af.nl.sk_664 sw.tl.hr_444\n  0x060c2709, 0x45151702, 0x3f292713, 0x2b004b14,   // id.pl.de_444 ro.lv.sk_222 id.ms.sw_665 az.cy..._660\n  // [2530]\n  0x1d004208, 0x17041913, 0x2e003f11, 0x19660302,   // mt.hr..._430 et.fi.ro_665 sw.sq..._630 nl.af.et_222\n  0x19041712, 0x19001d09, 0x16001213, 0x661516a4,   // ro.fi.et_654 hr.et..._440 cs.lt..._650 lt.lv.af_433\n  0x8c060c08, 0x10000c02, 0x0c160408, 0x1a000514,   // pl.de.ht_443 pl.sv..._220 fi.lt.pl_443 fr.xxx..._660\n  0x141a6612, 0x380f0d13, 0x1d180b08, 0x40001902,   // af.xxx.is_654 pt.es.ca_665 no.hu.hr_443 et.sl..._220\n  // [2540]\n  0x300e2355, 0x21002922, 0x273f29af, 0x29212707,   // uk.ru.be_442 ms.tl..._870 ms.sw.id_655 id.tl.ms_432\n  0x27212914, 0x0f0d1807, 0x1c0e3013, 0x251e2313,   // ms.tl.id_666 hu.pt.es_432 be.ru.bg_665 uk.sr.mk_665\n  0x12450202, 0x20001423, 0x14000607, 0x450d1a02,   // da.sk.cs_222 is.gl..._880 de.is..._420 xxx.pt.sk_222\n  0x05020b60, 0x02000608, 0x29002b09, 0x21003f12,   // no.da.fr_664 de.da..._430 cy.ms..._440 sw.tl..._640\n  // [2550]\n  0x120d4513, 0x08063a08, 0x1a002702, 0x42004312,   // sk.pt.cs_665 eu.de.it_443 id.xxx..._220 vi.mt..._640\n  0x0d124508, 0x42000209, 0x66030408, 0x38041612,   // sk.cs.pt_443 da.mt..._440 fi.nl.af_443 lt.fi.ca_654\n  0x45003a13, 0x29001002, 0x45001a14, 0x03041909,   // eu.sk..._650 sv.ms..._220 xxx.sk..._660 et.fi.nl_444\n  0x16040655, 0x29000413, 0x271d4002, 0x174b2212,   // de.fi.lt_442 fi.ms..._650 sl.hr.id_222 tr.az.ro_654\n  // [2560]\n  0x05003812, 0x12450612, 0x16450107, 0x22002e11,   // ca.fr..._640 de.sk.cs_654 en.sk.lt_432 sq.tr..._630\n  0x3f000d13, 0x04100613, 0x3a000314, 0x1e451d13,   // pt.sw..._650 de.sv.fi_665 nl.eu..._660 hr.sk.sr_665\n  0x45000612, 0x1c252309, 0x02001f23, 0x0b021008,   // de.sk..._640 uk.mk.bg_444 ga.da..._880 sv.da.no_443\n  0x14180d07, 0x03196609, 0x03661909, 0x250e1eaf,   // pt.hu.is_432 af.et.nl_444 et.af.nl_444 sr.ru.mk_655\n  // [2570]\n  0x03001d09, 0x044b2212, 0x190666a4, 0x27000c09,   // hr.nl..._440 tr.az.fi_654 af.de.et_433 pl.id..._440\n  0x3f661a12, 0x8c3805a4, 0x3f1a66af, 0x21004313,   // xxx.af.sw_654 fr.ca.ht_433 af.xxx.sw_655 vi.tl..._650\n  0x06002e13, 0x08004222, 0x12001602, 0x18000522,   // sq.de..._650 mt.it..._870 lt.cs..._220 fr.hu..._870\n  0x063a2b13, 0x19036660, 0x45051214, 0x4b00221f,   // cy.eu.de_665 af.nl.et_664 cs.fr.sk_666 tr.az..._840\n  // [2580]\n  0x050f38a4, 0x43001f12, 0x0f001f02, 0x12000d14,   // ca.es.fr_433 ga.vi..._640 ga.es..._220 pt.cs..._660\n  0x38001023, 0x1d001e04, 0x66030607, 0x05002b14,   // sv.ca..._880 sr.hr..._320 de.nl.af_432 cy.fr..._660\n  0x451e1d11, 0x2e451812, 0x03660612, 0x454012a4,   // hr.sr.sk_653 hu.sk.sq_654 de.af.nl_654 cs.sl.sk_433\n  0x25003021, 0x21001813, 0x1e253013, 0x40008c02,   // be.mk..._860 hu.tl..._650 be.mk.sr_665 ht.sl..._220\n  // [2590]\n  0x8c004223, 0x1f0d0fa4, 0x05001e09, 0x10002909,   // mt.ht..._880 es.pt.ga_433 sr.fr..._440 ms.sv..._440\n  0x033f0613, 0x01002e08, 0x4b000823, 0x21000614,   // de.sw.nl_665 sq.en..._430 it.az..._880 de.tl..._660\n  0x45001521, 0x2e001722, 0x43002114, 0x19183fa4,   // lv.sk..._860 ro.sq..._870 tl.vi..._660 sw.hu.et_433\n  0x10384208, 0x27002e23, 0x0d292708, 0x14042907,   // mt.ca.sv_443 sq.id..._880 id.ms.pt_443 ms.fi.is_432\n  // [25a0]\n  0x1a002107, 0x0d1f431f, 0x0c100208, 0x012b1708,   // tl.xxx..._420 vi.ga.pt_864 da.sv.pl_443 ro.cy.en_443\n  0x29221902, 0x18141f55, 0x3f190408, 0x10030608,   // et.tr.ms_222 ga.is.hu_442 fi.et.sw_443 de.nl.sv_443\n  0x04001722, 0x0d001f08, 0x0e1e3013, 0x10000b0d,   // ro.fi..._870 ga.pt..._430 be.sr.ru_665 no.sv..._540\n  0x45061207, 0x2b060109, 0x04000312, 0x12214514,   // cs.de.sk_432 en.de.cy_444 nl.fi..._640 sk.tl.cs_666\n  // [25b0]\n  0x42000114, 0x1d2e1002, 0x1200181f, 0x45001912,   // en.mt..._660 sv.sq.hr_222 hu.cs..._840 et.sk..._640\n  0x0c001914, 0x1d162e02, 0x1d1e2e12, 0x19003a12,   // et.pl..._660 sq.lt.hr_222 sq.sr.hr_654 eu.et..._640\n  0x8c003812, 0x2e000409, 0x40002109, 0x18162108,   // ca.ht..._640 fi.sq..._440 tl.sl..._440 tl.lt.hu_443\n  0x45001811, 0x05380d12, 0x1a000112, 0x058c3808,   // hu.sk..._630 pt.ca.fr_654 en.xxx..._640 ca.ht.fr_443\n  // [25c0]\n  0x450f0d02, 0x451d1055, 0x45124002, 0x2e004202,   // pt.es.sk_222 sv.hr.sk_442 sl.cs.sk_222 mt.sq..._220\n  0x2e002123, 0x1d292102, 0x2e002113, 0x12000c12,   // tl.sq..._880 tl.ms.hr_222 tl.sq..._650 pl.cs..._640\n  0x1e300e11, 0x152e3fa4, 0x1a080107, 0x1700121d,   // ru.be.sr_653 sw.sq.lv_433 en.it.xxx_432 cs.ro..._820\n  0x1a3f2109, 0x45198c09, 0x14272908, 0x8c001f02,   // tl.sw.xxx_444 ht.et.sk_444 ms.id.is_443 ga.ht..._220\n  // [25d0]\n  0x43003f02, 0x1a8c3f11, 0x3a182207, 0x1d191e09,   // sw.vi..._220 sw.ht.xxx_653 tr.hu.eu_432 sr.et.hr_444\n  0x0b020107, 0x19003a22, 0x0d451213, 0x06141007,   // en.da.no_432 eu.et..._870 cs.sk.pt_665 sv.is.de_432\n  0x29012102, 0x290d4302, 0x43002b14, 0x0c0b4208,   // tl.en.ms_222 vi.pt.ms_222 cy.vi..._660 mt.no.pl_443\n  0x19061209, 0x02004314, 0x66003a02, 0x04140b08,   // cs.de.et_444 vi.da..._660 eu.af..._220 no.is.fi_443\n  // [25e0]\n  0x662e0255, 0x14002102, 0x4b450507, 0x45101402,   // da.sq.af_442 tl.is..._220 fr.sk.az_432 is.sv.sk_222\n  0x203a2709, 0x20003a22, 0x450d2002, 0x270c6602,   // id.eu.gl_444 eu.gl..._870 gl.pt.sk_222 af.pl.id_222\n  0x15001714, 0x38001509, 0x1f3f2108, 0x293f2708,   // ro.lv..._660 lv.ca..._440 tl.sw.ga_443 id.sw.ms_443\n  0x1e1d16a4, 0x1a223a07, 0x45401212, 0x1e1d4555,   // lt.hr.sr_433 eu.tr.xxx_432 cs.sl.sk_654 sk.hr.sr_442\n  // [25f0]\n  0x42001909, 0x271e2902, 0x38000214, 0x1e451d12,   // et.mt..._440 ms.sr.id_222 da.ca..._660 hr.sk.sr_654\n  0x06002707, 0x22000523, 0x2e000d09, 0x03050107,   // id.de..._420 fr.tr..._880 pt.sq..._440 en.fr.nl_432\n  0x1a001508, 0x3f030107, 0x15004514, 0x0b004509,   // lv.xxx..._430 en.nl.sw_432 sk.lv..._660 sk.no..._440\n  0x4b662208, 0x22006623, 0x4b226614, 0x08272908,   // tr.af.az_443 af.tr..._880 af.tr.az_666 ms.id.it_443\n  // [2600]\n  0x0f204512, 0x21002b09, 0x8c2e2707, 0x193f04a4,   // sk.gl.es_654 cy.tl..._440 id.sq.ht_432 fi.sw.et_433\n  0x1e1d0b07, 0x3f000b22, 0x4b226613, 0x19001a12,   // no.hr.sr_432 no.sw..._870 af.tr.az_665 xxx.et..._640\n  0x42000c21, 0x0d000b02, 0x45041502, 0x0b001523,   // pl.mt..._860 no.pt..._220 lv.fi.sk_222 lv.no..._880\n  0x22002e13, 0x40001709, 0x1e171d02, 0x0f220155,   // sq.tr..._650 ro.sl..._440 hr.ro.sr_222 en.tr.es_442\n  // [2610]\n  0x15004014, 0x27001e02, 0x0c004212, 0x06050b07,   // sl.lv..._660 sr.id..._220 mt.pl..._640 no.fr.de_432\n  0x42000b23, 0x120f0d08, 0x0f001f07, 0x10001907,   // no.mt..._880 pt.es.cs_443 ga.es..._420 et.sv..._420\n  0x03663f12, 0x03001809, 0x401d2108, 0x1a000c09,   // sw.af.nl_654 hu.nl..._440 tl.hr.sl_443 pl.xxx..._440\n  0x402e0308, 0x300e1e08, 0x04221808, 0x08001413,   // nl.sq.sl_443 sr.ru.be_443 hu.tr.fi_443 is.it..._650\n  // [2620]\n  0x8c2e40af, 0x142e0109, 0x22002112, 0x1d400312,   // sl.sq.ht_655 en.sq.is_444 tl.tr..._640 nl.sl.hr_654\n  0x08000209, 0x45008c22, 0x17002e13, 0x01000508,   // da.it..._440 ht.sk..._870 sq.ro..._650 fr.en..._430\n  0x15402e60, 0x1d400302, 0x191a21a4, 0x29222702,   // sq.sl.lv_664 nl.sl.hr_222 tl.xxx.et_433 id.tr.ms_222\n  0x3f004023, 0x43000802, 0x3f001e09, 0x4b211a55,   // sl.sw..._880 it.vi..._220 sr.sw..._440 xxx.tl.az_442\n  // [2630]\n  0x66003f12, 0x3a020b07, 0x0f041613, 0x27294302,   // sw.af..._640 no.da.eu_432 lt.fi.es_665 vi.ms.id_222\n  0x3f660c12, 0x1a000209, 0x218c3faf, 0x06002908,   // pl.af.sw_654 da.xxx..._440 sw.ht.tl_655 ms.de..._430\n  0x374e33a4, 0x1e001812, 0x251c2312, 0x66030609,   // ur.fa.ar_433 hu.sr..._640 uk.bg.mk_654 de.nl.af_444\n  0x0d000508, 0x0f181faf, 0x29194b02, 0x4b192907,   // fr.pt..._430 ga.hu.es_655 az.et.ms_222 ms.et.az_432\n  // [2640]\n  0x03021209, 0x45042902, 0x8c3f2255, 0x294b8c08,   // cs.da.nl_444 ms.fi.sk_222 tr.sw.ht_442 ht.az.ms_443\n  0x8c004b22, 0x1d003a02, 0x1e151612, 0x451f1702,   // az.ht..._870 eu.hr..._220 lt.lv.sr_654 ro.ga.sk_222\n  0x29194b12, 0x1d161502, 0x22012108, 0x8c273f12,   // az.et.ms_654 lv.lt.hr_222 tl.en.tr_443 sw.id.ht_654\n  0x14454208, 0x22194b08, 0x1e404507, 0x660c3f08,   // mt.sk.is_443 az.et.tr_443 sk.sl.sr_432 sw.pl.af_443\n  // [2650]\n  0x121f1412, 0x3a181a09, 0x0d224b07, 0x45120b60,   // is.ga.cs_654 xxx.hu.eu_444 az.tr.pt_432 no.cs.sk_664\n  0x04000823, 0x38004212, 0x05000f08, 0x19001521,   // it.fi..._880 mt.ca..._640 es.fr..._430 lv.et..._860\n  0x03001921, 0x8c3a2208, 0x0f003a22, 0x02223aa4,   // et.nl..._860 tr.eu.ht_443 eu.es..._870 eu.tr.da_433\n  0x16451514, 0x8c002223, 0x2e294008, 0x8c001802,   // lv.sk.lt_666 tr.ht..._880 sl.ms.sq_443 hu.ht..._220\n  // [2660]\n  0x124519a4, 0x14060b09, 0x29001702, 0x14008c12,   // et.sk.cs_433 no.de.is_444 ro.ms..._220 ht.is..._640\n  0x29661402, 0x29000502, 0x660d0360, 0x19066608,   // is.af.ms_222 fr.ms..._220 nl.pt.af_664 af.de.et_443\n  0x8c100b07, 0x1f190612, 0x1d0c40a4, 0x29001d14,   // no.sv.ht_432 de.et.ga_654 sl.pl.hr_433 hr.ms..._660\n  0x27004002, 0x122b04ac, 0x0b0314a4, 0x061410af,   // sl.id..._220 fi.cy.cs_632 is.nl.no_433 sv.is.de_655\n  // [2670]\n  0x0c190809, 0x05001402, 0x230e1e14, 0x22001f02,   // it.et.pl_444 is.fr..._220 sr.ru.uk_666 ga.tr..._220\n  0x38140b09, 0x0b002014, 0x141e1d08, 0x1d3f0402,   // no.is.ca_444 gl.no..._660 hr.sr.is_443 fi.sw.hr_222\n  0x0d001813, 0x1e001602, 0x0f004513, 0x171a42a4,   // hu.pt..._650 lt.sr..._220 sk.es..._650 mt.xxx.ro_433\n  0x1a001902, 0x042b1412, 0x0f1245a4, 0x0f0c6602,   // et.xxx..._220 is.cy.fi_654 sk.cs.es_433 af.pl.es_222\n  // [2680]\n  0x3a030609, 0x05040612, 0x0f0d0808, 0x10000621,   // de.nl.eu_444 de.fi.fr_654 it.pt.es_443 de.sv..._860\n  0x0f0d2108, 0x0d000f1f, 0x19036612, 0x29001812,   // tl.pt.es_443 es.pt..._840 af.nl.et_654 hu.ms..._640\n  0x18001213, 0x401006ad, 0x18000c23, 0x42451207,   // cs.hu..._650 de.sv.sl_643 pl.hu..._880 cs.sk.mt_432\n  0x2b000d09, 0x45150802, 0x0c000413, 0x18002212,   // pt.cy..._440 it.lv.sk_222 fi.pl..._650 tr.hu..._640\n  // [2690]\n  0x1d002b14, 0x21228c13, 0x278c0f02, 0x8c002121,   // cy.hr..._660 ht.tr.tl_665 es.ht.id_222 tl.ht..._860\n  0x45008c12, 0x16170109, 0x04002b14, 0x38000d12,   // ht.sk..._640 en.ro.lt_444 cy.fi..._660 pt.ca..._640\n  0x1d001409, 0x190406a4, 0x12003f12, 0x1f001d02,   // is.hr..._440 de.fi.et_433 sw.cs..._640 hr.ga..._220\n  0x38000d21, 0x271d1502, 0x0c004223, 0x02001914,   // pt.ca..._860 lv.hr.id_222 mt.pl..._880 et.da..._660\n  // [26a0]\n  0x2e420408, 0x42002e14, 0x231c2509, 0x10002212,   // fi.mt.sq_443 sq.mt..._660 mk.bg.uk_444 tr.sv..._640\n  0x198c3fad, 0x17000c09, 0x14124513, 0x0d001909,   // sw.ht.et_643 pl.ro..._440 sk.cs.is_665 et.pt..._440\n  0x191a0107, 0x27294012, 0x19001a07, 0x2b170107,   // en.xxx.et_432 sl.ms.id_654 xxx.et..._420 en.ro.cy_432\n  0x45222902, 0x29270802, 0x38430d12, 0x050f2909,   // ms.tr.sk_222 it.id.ms_222 pt.vi.ca_654 ms.es.fr_444\n  // [26b0]\n  0x21001a08, 0x060d1409, 0x1800140d, 0x38000302,   // xxx.tl..._430 is.pt.de_444 is.hu..._540 nl.ca..._220\n  0x45002713, 0x12174502, 0x1f000b14, 0x20004509,   // id.sk..._650 sk.ro.cs_222 no.ga..._660 sk.gl..._440\n  0x45000d13, 0x0d0c08a4, 0x03081208, 0x1e001702,   // pt.sk..._650 it.pl.pt_433 cs.it.nl_443 ro.sr..._220\n  0x1a00240d, 0x14002914, 0x0f001509, 0x450b1602,   // hi.xxx..._540 ms.is..._660 lv.es..._440 lt.no.sk_222\n  // [26c0]\n  0x14451f60, 0x1c1e0e60, 0x27104002, 0x21006614,   // ga.sk.is_664 ru.sr.bg_664 sl.sv.id_222 af.tl..._660\n  0x17003a14, 0x03660108, 0x38008c07, 0x0d001908,   // eu.ro..._660 en.af.nl_443 ht.ca..._420 et.pt..._430\n  0x2b124513, 0x19041660, 0x45002213, 0x1a004b11,   // sk.cs.cy_665 lt.fi.et_664 tr.sk..._650 az.xxx..._630\n  0x66001614, 0x66270608, 0x01181a08, 0x14000623,   // lt.af..._660 de.id.af_443 xxx.hu.en_443 de.is..._880\n  // [26d0]\n  0x0e252309, 0x19001f09, 0x121e1dad, 0x17001402,   // uk.mk.ru_444 ga.et..._440 hr.sr.cs_643 is.ro..._220\n  0x0f380d07, 0x18001f23, 0x22000107, 0x02001007,   // pt.ca.es_432 ga.hu..._880 en.tr..._420 sv.da..._420\n  0x02000814, 0x063a08a4, 0x1d4029af, 0x0c102b13,   // it.da..._660 it.eu.de_433 ms.sl.hr_655 cy.sv.pl_665\n  0x23301c12, 0x08003a22, 0x18141760, 0x21000814,   // bg.be.uk_654 eu.it..._870 ro.is.hu_664 it.tl..._660\n  // [26e0]\n  0x19000213, 0x08000d21, 0x1f000b08, 0x04190308,   // da.et..._650 pt.it..._860 no.ga..._430 nl.et.fi_443\n  0x22001e02, 0x15031a09, 0x05080108, 0x270f2b08,   // sr.tr..._220 xxx.nl.lv_444 en.it.fr_443 cy.es.id_443\n  0x45000214, 0x010602a4, 0x3f036608, 0x43000609,   // da.sk..._660 da.de.en_433 af.nl.sw_443 de.vi..._440\n  0x45010302, 0x423a0408, 0x17002202, 0x380f3a13,   // nl.en.sk_222 fi.eu.mt_443 tr.ro..._220 eu.es.ca_665\n  // [26f0]\n  0x0e231e12, 0x29008c13, 0x16001d02, 0x21048ca4,   // sr.uk.ru_654 ht.ms..._650 hr.lt..._220 ht.fi.tl_433\n  0x66002707, 0x0e001e21, 0x1200451a, 0x05001812,   // id.af..._420 sr.ru..._860 sk.cs..._760 hu.fr..._640\n  0x4b001707, 0x0c002114, 0x27004502, 0x04002b13,   // ro.az..._420 tl.pl..._660 sk.id..._220 cy.fi..._650\n  0x06272907, 0x03180b09, 0x18020b08, 0x0f151a08,   // ms.id.de_432 no.hu.nl_444 no.da.hu_443 xxx.lv.es_443\n  // [2700]\n  0x272b2907, 0x1e000509, 0x17000314, 0x1c301e13,   // ms.cy.id_432 fr.sr..._440 nl.ro..._660 sr.be.bg_665\n  0x1f004512, 0x0c030660, 0x03001923, 0x178c06af,   // sk.ga..._640 de.nl.pl_664 et.nl..._880 de.ht.ro_655\n  0x29000823, 0x18001f20, 0x8c000813, 0x04000c14,   // it.ms..._880 ga.hu..._850 it.ht..._650 pl.fi..._660\n  0x40000522, 0x4b003a08, 0x45403807, 0x278c2908,   // fr.sl..._870 eu.az..._430 ca.sl.sk_432 ms.ht.id_443\n  // [2710]\n  0x12050da4, 0x1a060107, 0x4e3337ad, 0x08001412,   // pt.fr.cs_433 en.de.xxx_432 ar.ur.fa_643 is.it..._640\n  0x1f000c12, 0x0f451202, 0x17084212, 0x12451809,   // pl.ga..._640 cs.sk.es_222 mt.it.ro_654 hu.sk.cs_444\n  0x042e2907, 0x124045af, 0x12450d14, 0x02001812,   // ms.sq.fi_432 sk.sl.cs_655 pt.sk.cs_666 hu.da..._640\n  0x3a000107, 0x12450ca4, 0x18021aa4, 0x12456613,   // en.eu..._420 pl.sk.cs_433 xxx.da.hu_433 af.sk.cs_665\n  // [2720]\n  0x10030207, 0x38002102, 0x8c000b02, 0x14041908,   // da.nl.sv_432 tl.ca..._220 no.ht..._220 et.fi.is_443\n  0x12451012, 0x0c000608, 0x1e452202, 0x12064502,   // sv.sk.cs_654 de.pl..._430 tr.sk.sr_222 sk.de.cs_222\n  0x02002213, 0x45660302, 0x8c3f1508, 0x04002b09,   // tr.da..._650 nl.af.sk_222 lv.sw.ht_443 cy.fi..._440\n  0x04004302, 0x211e1d12, 0x04002123, 0x3f001608,   // vi.fi..._220 hr.sr.tl_654 tl.fi..._880 lt.sw..._430\n  // [2730]\n  0x45120c02, 0x0f200107, 0x02063a08, 0x05292709,   // pl.cs.sk_222 en.gl.es_432 eu.de.da_443 id.ms.fr_444\n  0x1f060108, 0x00000142, 0x14002923, 0x0c003814,   // en.de.ga_443 en......_C00 ms.is..._880 ca.pl..._660\n  0x1d228c02, 0x1f008c08, 0x27453802, 0x12001a08,   // ht.tr.hr_222 ht.ga..._430 ca.sk.id_222 xxx.cs..._430\n  0x27142960, 0x03661412, 0x0f380d13, 0x3f211aa4,   // ms.is.id_664 is.af.nl_654 pt.ca.es_665 xxx.tl.sw_433\n  // [2740]\n  0x22003a22, 0x2e001402, 0x1e300e08, 0x0d004512,   // eu.tr..._870 is.sq..._220 ru.be.sr_443 sk.pt..._640\n  0x1d1e12af, 0x0f2b8c13, 0x251e2312, 0x3f190411,   // cs.sr.hr_655 ht.cy.es_665 uk.sr.mk_654 fi.et.sw_653\n  0x1f001e14, 0x12290b07, 0x10002709, 0x0b036609,   // sr.ga..._660 no.ms.cs_432 id.sv..._440 af.nl.no_444\n  0x011f8c09, 0x8c001623, 0x10002914, 0x20051709,   // ht.ga.en_444 lt.ht..._880 ms.sv..._660 ro.fr.gl_444\n  // [2750]\n  0x01040512, 0x0e231c08, 0x38000108, 0x12001f14,   // fr.fi.en_654 bg.uk.ru_443 en.ca..._430 ga.cs..._660\n  0x17002212, 0x1e1d2902, 0x22000b02, 0x1d1e18a4,   // tr.ro..._640 ms.hr.sr_222 no.tr..._220 hu.sr.hr_433\n  0x2b3f0c12, 0x1d401e60, 0x10000f02, 0x1a000108,   // pl.sw.cy_654 sr.sl.hr_664 es.sv..._220 en.xxx..._430\n  0x19001608, 0x2b000c13, 0x03066614, 0x19001607,   // lt.et..._430 pl.cy..._650 af.de.nl_666 lt.et..._420\n  // [2760]\n  0x43061255, 0x0c162b12, 0x400c4509, 0x30250ea4,   // cs.de.vi_442 cy.lt.pl_654 sk.pl.sl_444 ru.mk.be_433\n  0x06000213, 0x8c084208, 0x15002209, 0x04211909,   // da.de..._650 mt.it.ht_443 tr.lv..._440 et.tl.fi_444\n  0x190366af, 0x21001909, 0x45004314, 0x22211a13,   // af.nl.et_655 et.tl..._440 vi.sk..._660 xxx.tl.tr_665\n  0x183f1508, 0x0d121fba, 0x00001f42, 0x1a004323,   // lv.sw.hu_443 ga.cs.pt_843 ga......_C00 vi.xxx..._880\n  // [2770]\n  0x43001014, 0x00002b42, 0x12451002, 0x18451209,   // sv.vi..._660 cy......_C00 sv.sk.cs_222 cs.sk.hu_444\n  0x45150b07, 0x04050b09, 0x29216602, 0x42000f14,   // no.lv.sk_432 no.fr.fi_444 af.tl.ms_222 es.mt..._660\n  0x1a002112, 0x18001411, 0x3a001002, 0x12002109,   // tl.xxx..._640 is.hu..._630 sv.eu..._220 tl.cs..._440\n  0x8c001002, 0x42001922, 0x1d222707, 0x4b221a13,   // sv.ht..._220 et.mt..._870 id.tr.hr_432 xxx.tr.az_665\n  // [2780]\n  0x43000608, 0x12660c08, 0x1d454009, 0x12422b60,   // de.vi..._430 pl.af.cs_443 sl.sk.hr_444 cy.mt.cs_664\n  0x10001523, 0x66000813, 0x19001722, 0x02011a08,   // lv.sv..._880 it.af..._650 ro.et..._870 xxx.en.da_443\n  0x1a180660, 0x10271fa4, 0x27100b09, 0x01061aa4,   // de.hu.xxx_664 ga.id.sv_433 no.sv.id_444 xxx.de.en_433\n  0x2b002e14, 0x8c001823, 0x06001808, 0x01001409,   // sq.cy..._660 hu.ht..._880 hu.de..._430 is.en..._440\n  // [2790]\n  0x29423802, 0x18001713, 0x228c2907, 0x20001723,   // ca.mt.ms_222 ro.hu..._650 ms.ht.tr_432 ro.gl..._880\n  0x1e1d4060, 0x1d001922, 0x128c4507, 0x27022902,   // sl.hr.sr_664 et.hr..._870 sk.ht.cs_432 ms.da.id_222\n  0x23002508, 0x16000509, 0x12450209, 0x0f0518a4,   // mk.uk..._430 fr.lt..._440 da.sk.cs_444 hu.fr.es_433\n  0x02001913, 0x23003009, 0x183a0508, 0x29004009,   // et.da..._650 be.uk..._440 fr.eu.hu_443 sl.ms..._440\n  // [27a0]\n  0x17053a08, 0x02100b07, 0x1e044002, 0x08000421,   // eu.fr.ro_443 no.sv.da_432 sl.fi.sr_222 fi.it..._860\n  0x3f000107, 0x18001a14, 0x29170202, 0x1f000122,   // en.sw..._420 xxx.hu..._660 da.ro.ms_222 en.ga..._870\n  0x032e42a4, 0x1f001702, 0x66180308, 0x17003f09,   // mt.sq.nl_433 ro.ga..._220 nl.hu.af_443 sw.ro..._440\n  0x192702a4, 0x40001402, 0x14003808, 0x184512ad,   // da.id.et_433 is.sl..._220 ca.is..._430 cs.sk.hu_643\n  // [27b0]\n  0x27151055, 0x190b04a4, 0x19002121, 0x4b001a22,   // sv.lv.id_442 fi.no.et_433 tl.et..._860 xxx.az..._870\n  0x38180107, 0x0f002202, 0x401d0307, 0x060b0208,   // en.hu.ca_432 tr.es..._220 nl.hr.sl_432 da.no.de_443\n  0x0c450612, 0x05000813, 0x00003f42, 0x00001042,   // de.sk.pl_654 it.fr..._650 sw......_C00 sv......_C00\n  0x21003a22, 0x29272112, 0x00004242, 0x660340af,   // eu.tl..._870 tl.id.ms_654 mt......_C00 sl.nl.af_655\n  // [27c0]\n  0x2e660309, 0x43001a07, 0x01001a13, 0x15000f12,   // nl.af.sq_444 xxx.vi..._420 xxx.en..._650 es.lv..._640\n  0x29273f09, 0x27000308, 0x0e232508, 0x8c004014,   // sw.id.ms_444 nl.id..._430 mk.uk.ru_443 sl.ht..._660\n  0x18151655, 0x3f002223, 0x1f081709, 0x01101a08,   // lt.lv.hu_442 tr.sw..._880 ro.it.ga_444 xxx.sv.en_443\n  0x22290109, 0x17420107, 0x43003f14, 0x450d4302,   // en.ms.tr_444 en.mt.ro_432 sw.vi..._660 vi.pt.sk_222\n  // [27d0]\n  0x0d004321, 0x190604a4, 0x29000402, 0x161d0412,   // vi.pt..._860 fi.de.et_433 fi.ms..._220 fi.hr.lt_654\n  0x17000d11, 0x0d0f3813, 0x3a008c13, 0x061e1d09,   // pt.ro..._630 ca.es.pt_665 ht.eu..._650 hr.sr.de_444\n  0x1e181da4, 0x151d1e60, 0x0b002709, 0x450d3a02,   // hr.hu.sr_433 sr.hr.lv_664 id.no..._440 eu.pt.sk_222\n  0x45001514, 0x04000114, 0x0d0f0512, 0x3f122e08,   // lv.sk..._660 en.fi..._660 fr.es.pt_654 sq.cs.sw_443\n  // [27e0]\n  0x15002e08, 0x40001a09, 0x12451813, 0x1f002002,   // sq.lv..._430 xxx.sl..._440 hu.sk.cs_665 gl.ga..._220\n  0x45001f02, 0x1f0f1814, 0x2e1f20a4, 0x40082e12,   // ga.sk..._220 hu.es.ga_666 gl.ga.sq_433 sq.it.sl_654\n  0x42001213, 0x12001a07, 0x2e100b07, 0x02060109,   // cs.mt..._650 xxx.cs..._420 no.sv.sq_432 en.de.da_444\n  0x43001f13, 0x1e003f08, 0x0b021407, 0x66000c02,   // ga.vi..._650 sw.sr..._430 is.da.no_432 pl.af..._220\n  // [27f0]\n  0x041d1e09, 0x02002702, 0x19000b08, 0x231c2508,   // sr.hr.fi_444 id.da..._220 no.et..._430 mk.bg.uk_443\n  0x0b002b09, 0x66008c02, 0x04661208, 0x20050107,   // cy.no..._440 ht.af..._220 cs.af.fi_443 en.fr.gl_432\n  0x05001207, 0x0e003008, 0x0f001807, 0x0c4540af,   // cs.fr..._420 be.ru..._430 hu.es..._420 sl.sk.pl_655\n  0x17220460, 0x38000b02, 0x06004022, 0x300e1e13,   // fi.tr.ro_664 no.ca..._220 sl.de..._870 sr.ru.be_665\n\n  // [2800]\n  0x08003822, 0x2b002914, 0x4b272907, 0x22000c13,   // ca.it..._870 ms.cy..._660 ms.id.az_432 pl.tr..._650\n  0x27001a07, 0x19010b09, 0x1d001713, 0x17000208,   // xxx.id..._420 no.en.et_444 ro.hr..._650 da.ro..._430\n  0x0b026614, 0x01171f12, 0x12292702, 0x43001821,   // af.da.no_666 ga.ro.en_654 id.ms.cs_222 hu.vi..._860\n  0x43001813, 0x66001723, 0x66000222, 0x101402a4,   // hu.vi..._650 ro.af..._880 da.af..._870 da.is.sv_433\n  // [2810]\n  0x17002b22, 0x05004312, 0x14000221, 0x17001913,   // cy.ro..._870 vi.fr..._640 da.is..._860 et.ro..._650\n  0x060366af, 0x45002114, 0x21043f09, 0x080f0107,   // af.nl.de_655 tl.sk..._660 sw.fi.tl_444 en.es.it_432\n  0x27002113, 0x212927af, 0x1d400c02, 0x1a000d02,   // tl.id..._650 id.ms.tl_655 pl.sl.hr_222 pt.xxx..._220\n  0x21001a23, 0x45122902, 0x0c003808, 0x3f1f8c07,   // xxx.tl..._880 ms.cs.sk_222 ca.pl..._430 ht.ga.sw_432\n  // [2820]\n  0x0c000802, 0x0e002523, 0x45383a02, 0x25301e14,   // it.pl..._220 mk.ru..._880 eu.ca.sk_222 sr.be.mk_666\n  0x8c002923, 0x23000e11, 0x8c663f07, 0x15002913,   // ms.ht..._880 ru.uk..._630 sw.af.ht_432 ms.lv..._650\n  0x2e003a02, 0x08000602, 0x1a386608, 0x8c0c3f12,   // eu.sq..._220 de.it..._220 af.ca.xxx_443 sw.pl.ht_654\n  0x10140208, 0x22003802, 0x052119a4, 0x03100208,   // da.is.sv_443 ca.tr..._220 et.tl.fr_433 da.sv.nl_443\n  // [2830]\n  0x42082908, 0x02100660, 0x1e1d0255, 0x1f271a13,   // ms.it.mt_443 de.sv.da_664 da.hr.sr_442 xxx.id.ga_665\n  0x19421409, 0x40001908, 0x19004514, 0x2e036612,   // is.mt.et_444 et.sl..._430 sk.et..._660 af.nl.sq_654\n  0x4b000d14, 0x06003f09, 0x45002223, 0x1d001621,   // pt.az..._660 sw.de..._440 tr.sk..._880 lt.hr..._860\n  0x12160c02, 0x27000b09, 0x66001702, 0x0c404555,   // pl.lt.cs_222 no.id..._440 ro.af..._220 sk.sl.pl_442\n  // [2840]\n  0x290f1002, 0x2e292760, 0x1e8c1d02, 0x29431a02,   // sv.es.ms_222 id.ms.sq_664 hr.ht.sr_222 xxx.vi.ms_222\n  0x43003814, 0x45011a02, 0x29402ba4, 0x2e040107,   // ca.vi..._660 xxx.en.sk_222 cy.sl.ms_433 en.fi.sq_432\n  0x14002713, 0x29100202, 0x14184560, 0x12180d09,   // id.is..._650 da.sv.ms_222 sk.hu.is_664 pt.hu.cs_444\n  0x17000602, 0x27000602, 0x37003307, 0x2b000c23,   // de.ro..._220 de.id..._220 ur.ar..._420 pl.cy..._880\n  // [2850]\n  0x200f0b07, 0x2e061912, 0x45002e12, 0x02182e12,   // no.es.gl_432 et.de.sq_654 sq.sk..._640 sq.hu.da_654\n  0x40001522, 0x06026612, 0x12034302, 0x06000512,   // lv.sl..._870 af.da.de_654 vi.nl.cs_222 fr.de..._640\n  0x181066a4, 0x10051a08, 0x45000d14, 0x230e3011,   // af.sv.hu_433 xxx.fr.sv_443 pt.sk..._660 be.ru.uk_653\n  0x660619a4, 0x19272907, 0x45030202, 0x19004b22,   // et.de.af_433 ms.id.et_432 da.nl.sk_222 az.et..._870\n  // [2860]\n  0x19004b23, 0x66051408, 0x02004008, 0x0d0f0855,   // az.et..._880 is.fr.af_443 sl.da..._430 it.es.pt_442\n  0x0c0f0d55, 0x10004b02, 0x08001d02, 0x4b172208,   // pt.es.pl_442 az.sv..._220 hr.it..._220 tr.ro.az_443\n  0x14020b60, 0x17004310, 0x154b2208, 0x1e3a1d02,   // no.da.is_664 vi.ro..._620 tr.az.lv_443 hr.eu.sr_222\n  0x380f0d02, 0x45380f07, 0x1e041d08, 0x1e402702,   // pt.es.ca_222 es.ca.sk_432 hr.fi.sr_443 id.sl.sr_222\n  // [2870]\n  0x1f000d09, 0x14660309, 0x45123a08, 0x3a004507,   // pt.ga..._440 nl.af.is_444 eu.cs.sk_443 sk.eu..._420\n  0x45120c55, 0x212927a4, 0x422927a4, 0x21001420,   // pl.cs.sk_442 id.ms.tl_433 id.ms.mt_433 is.tl..._850\n  0x29001414, 0x1d213f02, 0x381614a4, 0x380d0faf,   // is.ms..._660 sw.tl.hr_222 is.lt.ca_433 es.pt.ca_655\n  0x17001d14, 0x2b000f22, 0x20002709, 0x05000102,   // hr.ro..._660 es.cy..._870 id.gl..._440 en.fr..._220\n  // [2880]\n  0x2e000108, 0x140b0255, 0x25000e09, 0x064543a4,   // en.sq..._430 da.no.is_442 ru.mk..._440 vi.sk.de_433\n  0x02052e12, 0x2e000113, 0x45000308, 0x40002709,   // sq.fr.da_654 en.sq..._650 nl.sk..._430 id.sl..._440\n  0x0b000d14, 0x1f3a2909, 0x40000f02, 0x22002923,   // pt.no..._660 ms.eu.ga_444 es.sl..._220 ms.tr..._880\n  0x052e38a4, 0x4b001912, 0x20380b07, 0x0d050107,   // ca.sq.fr_433 et.az..._640 no.ca.gl_432 en.fr.pt_432\n  // [2890]\n  0x2e424b60, 0x271a4202, 0x0f008c08, 0x12452002,   // az.mt.sq_664 mt.xxx.id_222 ht.es..._430 gl.sk.cs_222\n  0x12144514, 0x0d0f0813, 0x0f080d09, 0x00001a42,   // sk.is.cs_666 it.es.pt_665 pt.it.es_444 xxx......_C00\n  0x0e231e60, 0x382b05a4, 0x14000f07, 0x38052909,   // sr.uk.ru_664 fr.cy.ca_433 es.is..._420 ms.fr.ca_444\n  0x19380509, 0x0d001713, 0x05002714, 0x66033a08,   // fr.ca.et_444 ro.pt..._650 id.fr..._660 eu.nl.af_443\n  // [28a0]\n  0x02001a23, 0x2b003a08, 0x04002e08, 0x663a2bad,   // xxx.da..._880 eu.cy..._430 sq.fi..._430 cy.eu.af_643\n  0x0d002223, 0x66030508, 0x17002023, 0x0d000808,   // tr.pt..._880 fr.nl.af_443 gl.ro..._880 it.pt..._430\n  0x4b1822ad, 0x15006614, 0x15190412, 0x17061808,   // tr.hu.az_643 af.lv..._660 fi.et.lv_654 hu.de.ro_443\n  0x060812a4, 0x3f032108, 0x14001509, 0x10061807,   // cs.it.de_433 tl.nl.sw_443 lv.is..._440 hu.de.sv_432\n  // [28b0]\n  0x3f004220, 0x3f002112, 0x43003823, 0x1a000402,   // mt.sw..._850 tl.sw..._640 ca.vi..._880 fi.xxx..._220\n  0x18002907, 0x103a0b08, 0x1a423fa4, 0x37334ea4,   // ms.hu..._420 no.eu.sv_443 sw.mt.xxx_433 fa.ur.ar_433\n  0x273f21ad, 0x21000c08, 0x1c000e07, 0x450d3a60,   // tl.sw.id_643 pl.tl..._430 ru.bg..._420 eu.pt.sk_664\n  0x45001608, 0x250e2355, 0x10660255, 0x450421a4,   // lt.sk..._430 uk.ru.mk_442 da.af.sv_442 tl.fi.sk_433\n  // [28c0]\n  0x2e170b07, 0x21001622, 0x17000523, 0x8c002b23,   // no.ro.sq_432 lt.tl..._870 fr.ro..._880 cy.ht..._880\n  0x29228c08, 0x013a0b08, 0x12220108, 0x0f080d60,   // ht.tr.ms_443 no.eu.en_443 en.tr.cs_443 pt.it.es_664\n  0x14001702, 0x10000808, 0x15000308, 0x140f18af,   // ro.is..._220 it.sv..._430 nl.lv..._430 hu.es.is_655\n  0x080d3f07, 0x27000f02, 0x18380d08, 0x12006614,   // sw.pt.it_432 es.id..._220 pt.ca.hu_443 af.cs..._660\n  // [28d0]\n  0x23002522, 0x0e1e2560, 0x230e2509, 0x3a003f23,   // mk.uk..._870 mk.sr.ru_664 mk.ru.uk_444 sw.eu..._880\n  0x17003f02, 0x0c1a3f09, 0x15001712, 0x8c183f08,   // sw.ro..._220 sw.xxx.pl_444 ro.lv..._640 sw.hu.ht_443\n  0x05000b14, 0x05038c08, 0x2e001608, 0x0d0f14a4,   // no.fr..._660 ht.nl.fr_443 lt.sq..._430 is.es.pt_433\n  0x3a000802, 0x4b0d22a4, 0x0f003a07, 0x16002e13,   // it.eu..._220 tr.pt.az_433 eu.es..._420 sq.lt..._650\n  // [28e0]\n  0x4b000b02, 0x0c003a12, 0x06001502, 0x42002209,   // no.az..._220 eu.pl..._640 lv.de..._220 tr.mt..._440\n  0x124518a4, 0x450c4002, 0x3f3a0807, 0x3a000812,   // hu.sk.cs_433 sl.pl.sk_222 it.eu.sw_432 it.eu..._640\n  0x66060302, 0x8c3a08a4, 0x3a000823, 0x05000c02,   // nl.de.af_222 it.eu.ht_433 it.eu..._880 pl.fr..._220\n  0x181d1e07, 0x05031a08, 0x8c100b12, 0x1d401802,   // sr.hr.hu_432 xxx.nl.fr_443 no.sv.ht_654 hu.sl.hr_222\n  // [28f0]\n  0x3a000d09, 0x20004014, 0x1a3f1808, 0x45290808,   // pt.eu..._440 sl.gl..._660 hu.sw.xxx_443 it.ms.sk_443\n  0x3f003802, 0x0c000623, 0x1e212707, 0x16001908,   // ca.sw..._220 de.pl..._880 id.tl.sr_432 et.lt..._430\n  0x17003a23, 0x3f4b2907, 0x45001014, 0x1e002e02,   // eu.ro..._880 ms.az.sw_432 sv.sk..._660 sq.sr..._220\n  0x22004b07, 0x424b2709, 0x451a0502, 0x22218c13,   // az.tr..._420 id.az.mt_444 fr.xxx.sk_222 ht.tl.tr_665\n  // [2900]\n  0x21008c22, 0x04003809, 0x38000507, 0x1a004514,   // ht.tl..._870 ca.fi..._440 fr.ca..._420 sk.xxx..._660\n  0x4b3a2212, 0x3a008c08, 0x14000223, 0x662e1455,   // tr.eu.az_654 ht.eu..._430 da.is..._880 is.sq.af_442\n  0x451a2902, 0x05004302, 0x8c002113, 0x0d011aa4,   // ms.xxx.sk_222 vi.fr..._220 tl.ht..._650 xxx.en.pt_433\n  0x45388c12, 0x8c150514, 0x1e451208, 0x15000412,   // ht.ca.sk_654 fr.lv.ht_666 cs.sk.sr_443 fi.lv..._640\n  // [2910]\n  0x19000c14, 0x1d006609, 0x1d1021a4, 0x121d4507,   // pl.et..._660 af.hr..._440 tl.sv.hr_433 sk.hr.cs_432\n  0x43001e02, 0x0c001923, 0x17008c23, 0x02003f02,   // sr.vi..._220 et.pl..._880 ht.ro..._880 sw.da..._220\n  0x3a1d8ca4, 0x27001912, 0x8c003a21, 0x05001a12,   // ht.hr.eu_433 et.id..._640 eu.ht..._860 xxx.fr..._640\n  0x1d0c4009, 0x162217af, 0x27221f08, 0x27222909,   // sl.pl.hr_444 ro.tr.lt_655 ga.tr.id_443 ms.tr.id_444\n  // [2920]\n  0x06003a12, 0x4b2221a4, 0x27142102, 0x17004209,   // eu.de..._640 tl.tr.az_433 tl.is.id_222 mt.ro..._440\n  0x1e003f02, 0x301e2560, 0x14020b13, 0x1f002e02,   // sw.sr..._220 mk.sr.be_664 no.da.is_665 sq.ga..._220\n  0x152e3808, 0x66002b07, 0x1d021a08, 0x04001f22,   // ca.sq.lv_443 cy.af..._420 xxx.da.hr_443 ga.fi..._870\n  0x1f000b12, 0x03186609, 0x17190107, 0x45278c02,   // no.ga..._640 af.hu.nl_444 en.et.ro_432 ht.id.sk_222\n  // [2930]\n  0x15001423, 0x66060307, 0x1e1d1514, 0x66181909,   // is.lv..._880 nl.de.af_432 lv.hr.sr_666 et.hu.af_444\n  0x06003f23, 0x10182e13, 0x06002923, 0x22001822,   // sw.de..._880 sq.hu.sv_665 ms.de..._880 hu.tr..._870\n  0x020b1414, 0x19001812, 0x27291a02, 0x1e1d2e60,   // is.no.da_666 hu.et..._640 xxx.ms.id_222 sq.hr.sr_664\n  0x061a2709, 0x21000602, 0x27062902, 0x29011a07,   // id.xxx.de_444 de.tl..._220 ms.de.id_222 xxx.en.ms_432\n  // [2940]\n  0x29212714, 0x3a212709, 0x18144360, 0x3f272909,   // id.tl.ms_666 id.tl.eu_444 vi.is.hu_664 ms.id.sw_444\n  0x19061009, 0x066603a4, 0x02000612, 0x45014302,   // sv.de.et_444 nl.af.de_433 de.da..._640 vi.en.sk_222\n  0x12450ba4, 0x40451207, 0x45660b07, 0x29270107,   // no.sk.cs_433 cs.sk.sl_432 no.af.sk_432 en.id.ms_432\n  0x18192208, 0x01104202, 0x450f1f08, 0x194b22af,   // tr.et.hu_443 mt.sv.en_222 ga.es.sk_443 tr.az.et_655\n  // [2950]\n  0x0c081e08, 0x4b292709, 0x3f0c4255, 0x1d001823,   // sr.it.pl_443 id.ms.az_444 mt.pl.sw_442 hu.hr..._880\n  0x45402102, 0x17101207, 0x184b2214, 0x0d002914,   // tl.sl.sk_222 cs.sv.ro_432 tr.az.hu_666 ms.pt..._660\n  0x4b000b09, 0x293a2714, 0x03660b09, 0x21163a07,   // no.az..._440 id.eu.ms_666 no.af.nl_444 eu.lt.tl_432\n  0x15380513, 0x2b660360, 0x05388c12, 0x058c3812,   // fr.ca.lv_665 nl.af.cy_664 ht.ca.fr_654 ca.ht.fr_654\n  // [2960]\n  0x19002723, 0x45121612, 0x1d000314, 0x25001c11,   // id.et..._880 lt.cs.sk_654 nl.hr..._660 bg.mk..._630\n  0x38008c12, 0x8c003814, 0x3f000c08, 0x06001413,   // ht.ca..._640 ca.ht..._660 pl.sw..._430 is.de..._650\n  0x8c3805af, 0x0e252311, 0x1d1240a4, 0x15121ea4,   // fr.ca.ht_655 uk.mk.ru_653 sl.cs.hr_433 sr.cs.lv_433\n  0x1e451207, 0x1f001808, 0x3f421a09, 0x19004208,   // cs.sk.sr_432 hu.ga..._430 xxx.mt.sw_444 mt.et..._430\n  // [2970]\n  0x184b2212, 0x06000521, 0x06272909, 0x1d3f1f55,   // tr.az.hu_654 fr.de..._860 ms.id.de_444 ga.sw.hr_442\n  0x8c002723, 0x05180107, 0x27170608, 0x1d124507,   // id.ht..._880 en.hu.fr_432 de.ro.id_443 sk.cs.hr_432\n  0x1f3f0d55, 0x08000d08, 0x02061060, 0x17002908,   // pt.sw.ga_442 pt.it..._430 sv.de.da_664 ms.ro..._430\n  0x1a002209, 0x01001802, 0x1a000d14, 0x40124512,   // tr.xxx..._440 hu.en..._220 pt.xxx..._660 sk.cs.sl_654\n  // [2980]\n  0x8c222108, 0x03436602, 0x1d1e3fa4, 0x020b1013,   // tl.tr.ht_443 af.vi.nl_222 sw.sr.hr_433 sv.no.da_665\n  0x19003f13, 0x3f000412, 0x45180d02, 0x22001707,   // sw.et..._650 fi.sw..._640 pt.hu.sk_222 ro.tr..._420\n  0x03001908, 0x02000b10, 0x1a293f13, 0x3f124508,   // et.nl..._430 no.da..._620 sw.ms.xxx_665 sk.cs.sw_443\n  0x10004514, 0x12003f09, 0x0f041713, 0x66001a09,   // sk.sv..._660 sw.cs..._440 ro.fi.es_665 xxx.af..._440\n  // [2990]\n  0x66034207, 0x200d0faf, 0x1a228c08, 0x018c2107,   // mt.nl.af_432 es.pt.gl_655 ht.tr.xxx_443 tl.ht.en_432\n  0x183a1a08, 0x12104502, 0x0d002b09, 0x451d1708,   // xxx.eu.hu_443 sk.sv.cs_222 cy.pt..._440 ro.hr.sk_443\n  0x03064209, 0x3f000622, 0x04006612, 0x1e2e1d12,   // mt.de.nl_444 de.sw..._870 af.fi..._640 hr.sq.sr_654\n  0x1d081402, 0x14101a09, 0x1d004022, 0x451218ba,   // is.it.hr_222 xxx.sv.is_444 sl.hr..._870 hu.cs.sk_843\n  // [29a0]\n  0x66000607, 0x250e1c07, 0x42001d14, 0x08184212,   // de.af..._420 bg.ru.mk_432 hr.mt..._660 mt.hu.it_654\n  0x45228c02, 0x0e231c11, 0x380f0daf, 0x03002208,   // ht.tr.sk_222 bg.uk.ru_653 pt.es.ca_655 tr.nl..._430\n  0x271f1a02, 0x03668ca4, 0x06006607, 0x45121860,   // xxx.ga.id_222 ht.af.nl_433 af.de..._420 hu.cs.sk_664\n  0x231e2514, 0x01660355, 0x06041009, 0x45002123,   // mk.sr.uk_666 nl.af.en_442 sv.fi.de_444 tl.sk..._880\n  // [29b0]\n  0x14020660, 0x10140b13, 0x8c002122, 0x38000c13,   // de.da.is_664 no.is.sv_665 tl.ht..._870 pl.ca..._650\n  0x12000608, 0x17002e02, 0x1d2e1e08, 0x0f000609,   // de.cs..._430 sq.ro..._220 sr.sq.hr_443 de.es..._440\n  0x2b001a14, 0x2b002e22, 0x27290d02, 0x100b02a4,   // xxx.cy..._660 sq.cy..._870 pt.ms.id_222 da.no.sv_433\n  0x0d004507, 0x08420614, 0x04006623, 0x2b006623,   // sk.pt..._420 de.mt.it_666 af.fi..._880 af.cy..._880\n  // [29c0]\n  0x45222e09, 0x43124508, 0x19041055, 0x041d2e09,   // sq.tr.sk_444 sk.cs.vi_443 sv.fi.et_442 sq.hr.fi_444\n  0x1d001207, 0x18124512, 0x4b0538a4, 0x0c452907,   // cs.hr..._420 sk.cs.hu_654 ca.fr.az_433 ms.sk.pl_432\n  0x21002209, 0x17001f12, 0x21002202, 0x020b06af,   // tr.tl..._440 ga.ro..._640 tr.tl..._220 de.no.da_655\n  0x21000502, 0x01066608, 0x05001807, 0x38211555,   // fr.tl..._220 af.de.en_443 hu.fr..._420 lv.tl.ca_442\n  // [29d0]\n  0x14001a02, 0x22002e08, 0x1e1c0e13, 0x0f0c2ba4,   // xxx.is..._220 sq.tr..._430 ru.bg.sr_665 cy.pl.es_433\n  0x21004308, 0x1d0c4212, 0x14193f14, 0x3a401560,   // vi.tl..._430 mt.pl.hr_654 sw.et.is_666 lv.sl.eu_664\n  0x40003a02, 0x14000c23, 0x1f004009, 0x450c1055,   // eu.sl..._220 pl.is..._880 sl.ga..._440 sv.pl.sk_442\n  0x15000314, 0x45030602, 0x1f004509, 0x18001a02,   // nl.lv..._660 de.nl.sk_222 sk.ga..._440 xxx.hu..._220\n  // [29e0]\n  0x0f008c23, 0x0d080f08, 0x45000409, 0x2e020b07,   // ht.es..._880 es.it.pt_443 fi.sk..._440 no.da.sq_432\n  0x40451208, 0x27291407, 0x0b002e13, 0x03660109,   // cs.sk.sl_443 is.ms.id_432 sq.no..._650 en.af.nl_444\n  0x04190109, 0x08004212, 0x292721af, 0x3a428c13,   // en.et.fi_444 mt.it..._640 tl.id.ms_655 ht.mt.eu_665\n  0x2b1f14a4, 0x026621af, 0x66002121, 0x1e231c02,   // is.ga.cy_433 tl.af.da_655 tl.af..._860 bg.uk.sr_222\n  // [29f0]\n  0x66002702, 0x16004502, 0x08203809, 0x03001713,   // id.af..._220 sk.lt..._220 ca.gl.it_444 ro.nl..._650\n  0x1d121e07, 0x19170212, 0x16001813, 0x3a004212,   // sr.cs.hr_432 da.ro.et_654 hu.lt..._650 mt.eu..._640\n  0x1c1e0e08, 0x10001902, 0x1e031d12, 0x40001008,   // ru.sr.bg_443 et.sv..._220 hr.nl.sr_654 sv.sl..._430\n  0x3f001409, 0x224b1209, 0x04000c13, 0x14190baf,   // is.sw..._440 cs.az.tr_444 pl.fi..._650 no.et.is_655\n  // [2a00]\n  0x14002e14, 0x45041908, 0x0d3a2b12, 0x1a000809,   // sq.is..._660 et.fi.sk_443 cy.eu.pt_654 it.xxx..._440\n  0x42008c09, 0x1f000b02, 0x27066602, 0x3a041908,   // ht.mt..._440 no.ga..._220 af.de.id_222 et.fi.eu_443\n  0x19001f23, 0x8c3f1712, 0x3f004013, 0x19043a14,   // ga.et..._880 ro.sw.ht_654 sl.sw..._650 eu.fi.et_666\n  0x12004202, 0x12058c55, 0x0d001d02, 0x06003f13,   // mt.cs..._220 ht.fr.cs_442 hr.pt..._220 sw.de..._650\n  // [2a10]\n  0x0d002108, 0x120b0555, 0x1d000b02, 0x4b001623,   // tl.pt..._430 fr.no.cs_442 no.hr..._220 lt.az..._880\n  0x1c001e08, 0x0d001d23, 0x12224209, 0x15000514,   // sr.bg..._430 hr.pt..._880 mt.tr.cs_444 fr.lv..._660\n  0x1a003a13, 0x03170512, 0x15003809, 0x16001409,   // eu.xxx..._650 fr.ro.nl_654 ca.lv..._440 is.lt..._440\n  0x06021008, 0x19046608, 0x0b000609, 0x12028c08,   // sv.da.de_443 af.fi.et_443 de.no..._440 ht.da.cs_443\n  // [2a20]\n  0x43000508, 0x251c2308, 0x18001409, 0x17001a09,   // fr.vi..._430 uk.bg.mk_443 is.hu..._440 xxx.ro..._440\n  0x4b000109, 0x433f2b07, 0x292742a4, 0x66030b09,   // en.az..._440 cy.sw.vi_432 mt.id.ms_433 no.nl.af_444\n  0x29273aa4, 0x27222102, 0x45001507, 0x8c002e02,   // eu.id.ms_433 tl.tr.id_222 lv.sk..._420 sq.ht..._220\n  0x27451555, 0x17041907, 0x02104209, 0x45151902,   // lv.sk.id_442 et.fi.ro_432 mt.sv.da_444 et.lv.sk_222\n  // [2a30]\n  0x27290409, 0x220d0109, 0x3f1a0409, 0x3f001512,   // fi.ms.id_444 en.pt.tr_444 fi.xxx.sw_444 lv.sw..._640\n  0x1e1d3a12, 0x293f1f02, 0x16001909, 0x38004b08,   // eu.hr.sr_654 ga.sw.ms_222 et.lt..._440 az.ca..._430\n  0x10064b08, 0x1d453a02, 0x04053fa4, 0x40003a14,   // az.de.sv_443 eu.sk.hr_222 sw.fr.fi_433 eu.sl..._660\n  0x12453f02, 0x193a2108, 0x2b000d07, 0x0b023fa4,   // sw.sk.cs_222 tl.eu.et_443 pt.cy..._420 sw.da.no_433\n  // [2a40]\n  0x12064507, 0x12000508, 0x4b002b12, 0x3a450302,   // sk.de.cs_432 fr.cs..._430 cy.az..._640 nl.sk.eu_222\n  0x22001a23, 0x191f0408, 0x16000202, 0x2e001007,   // xxx.tr..._880 fi.ga.et_443 da.lt..._220 sv.sq..._420\n  0x40000402, 0x2b0b0260, 0x1e002e12, 0x1d194002,   // fi.sl..._220 da.no.cy_664 sq.sr..._640 sl.et.hr_222\n  0x2b020b09, 0x18004314, 0x020b2e08, 0x42001908,   // no.da.cy_444 vi.hu..._660 sq.no.da_443 et.mt..._430\n  // [2a50]\n  0x298c0108, 0x14003a13, 0x08193aa4, 0x12000202,   // en.ht.ms_443 eu.is..._650 eu.et.it_433 da.cs..._220\n  0x02000314, 0x291704a4, 0x214318a4, 0x21036608,   // nl.da..._660 fi.ro.ms_433 hu.vi.tl_433 af.nl.tl_443\n  0x21003f07, 0x1f062b09, 0x052b1a08, 0x03003f07,   // sw.tl..._420 cy.de.ga_444 xxx.cy.fr_443 sw.nl..._420\n  0x0f1f3808, 0x18080109, 0x1f002e08, 0x19181a09,   // ca.ga.es_443 en.it.hu_444 sq.ga..._430 xxx.hu.et_444\n  // [2a60]\n  0x08380d60, 0x10021912, 0x0c1e1d12, 0x453f0107,   // pt.ca.it_664 et.da.sv_654 hr.sr.pl_654 en.sw.sk_432\n  0x45194202, 0x0d380fa4, 0x05380109, 0x0d661707,   // mt.et.sk_222 es.ca.pt_433 en.ca.fr_444 ro.af.pt_432\n  0x08000b08, 0x10011a08, 0x4b3f0109, 0x190b0107,   // no.it..._430 xxx.en.sv_443 en.sw.az_444 en.no.et_432\n  0x40001502, 0x0d018c02, 0x18140b08, 0x1e1d1413,   // lv.sl..._220 ht.en.pt_222 no.is.hu_443 is.hr.sr_665\n  // [2a70]\n  0x10124511, 0x0d0f4209, 0x03001012, 0x0f004508,   // sk.cs.sv_653 mt.es.pt_444 sv.nl..._640 sk.es..._430\n  0x0f080109, 0x1d008c08, 0x66002b08, 0x04192709,   // en.it.es_444 ht.hr..._430 cy.af..._430 id.et.fi_444\n  0x08003f09, 0x300e2311, 0x0f004008, 0x1e1d0ca4,   // sw.it..._440 uk.ru.be_653 sl.es..._430 pl.hr.sr_433\n  0x29000613, 0x01006614, 0x1d1e3faf, 0x01000d14,   // de.ms..._650 af.en..._660 sw.sr.hr_655 pt.en..._660\n  // [2a80]\n  0x22218c08, 0x153a1208, 0x18450f08, 0x05458ca4,   // ht.tl.tr_443 cs.eu.lv_443 es.sk.hu_443 ht.sk.fr_433\n  0x4b000314, 0x02431408, 0x38004002, 0x17008c09,   // nl.az..._660 is.vi.da_443 sl.ca..._220 ht.ro..._440\n  0x15272914, 0x450c1207, 0x0e1c3008, 0x101a8c08,   // ms.id.lv_666 cs.pl.sk_432 be.bg.ru_443 ht.xxx.sv_443\n  0x45001923, 0x190b0109, 0x8c000113, 0x08000b02,   // et.sk..._880 en.no.et_444 en.ht..._650 no.it..._220\n  // [2a90]\n  0x374e3355, 0x29274202, 0x19003823, 0x380d0508,   // ur.fa.ar_442 mt.id.ms_222 ca.et..._880 fr.pt.ca_443\n  0x19001623, 0x3f000609, 0x3a272908, 0x400c1209,   // lt.et..._880 de.sw..._440 ms.id.eu_443 cs.pl.sl_444\n  0x1a001408, 0x0b141909, 0x0f0d0107, 0x1f002709,   // is.xxx..._430 et.is.no_444 en.pt.es_432 id.ga..._440\n  0x06008c08, 0x2b000614, 0x0d000609, 0x0f003a13,   // ht.de..._430 de.cy..._660 de.pt..._440 eu.es..._650\n  // [2aa0]\n  0x05100109, 0x29064b02, 0x12042e02, 0x0e001c21,   // en.sv.fr_444 az.de.ms_222 sq.fi.cs_222 bg.ru..._860\n  0x451e1daf, 0x3f0d0b07, 0x0000050a, 0x8c001902,   // hr.sr.sk_655 no.pt.sw_432 fr......_500 et.ht..._220\n  0x293a2708, 0x0d3a38a4, 0x0f002209, 0x43121a09,   // id.eu.ms_443 ca.eu.pt_433 tr.es..._440 xxx.cs.vi_444\n  0x041a14a4, 0x020b3fa4, 0x0f000c02, 0x43001413,   // is.xxx.fi_433 sw.no.da_433 pl.es..._220 is.vi..._650\n  // [2ab0]\n  0x01004207, 0x21004014, 0x0c002708, 0x290d0402,   // mt.en..._420 sl.tl..._660 id.pl..._430 fi.pt.ms_222\n  0x12191002, 0x30001e22, 0x0e1e2313, 0x064b22af,   // sv.et.cs_222 sr.be..._870 uk.sr.ru_665 tr.az.de_655\n  0x04004208, 0x45180513, 0x8c451209, 0x2b001413,   // mt.fi..._430 fr.hu.sk_665 cs.sk.ht_444 is.cy..._650\n  0x3a292760, 0x17001d09, 0x0b002209, 0x271a2b02,   // id.ms.eu_664 hr.ro..._440 tr.no..._440 cy.xxx.id_222\n  // [2ac0]\n  0x101d3aa4, 0x29100402, 0x38451208, 0x22003814,   // eu.hr.sv_433 fi.sv.ms_222 cs.sk.ca_443 ca.tr..._660\n  0x272e0302, 0x21420b07, 0x1e001a07, 0x0d001a14,   // nl.sq.id_222 no.mt.tl_432 xxx.sr..._420 xxx.pt..._660\n  0x43060109, 0x1a000602, 0x05000613, 0x450d1902,   // en.de.vi_444 de.xxx..._220 de.fr..._650 et.pt.sk_222\n  0x0d000511, 0x0c004013, 0x43000b14, 0x15420812,   // fr.pt..._630 sl.pl..._650 no.vi..._660 it.mt.lv_654\n  // [2ad0]\n  0x23300ead, 0x0c0b0411, 0x3a1d1e08, 0x4b003a23,   // ru.be.uk_643 fi.no.pl_653 sr.hr.eu_443 eu.az..._880\n  0x100b026f, 0x25301e08, 0x15001d02, 0x1d400107,   // da.no.sv_886 sr.be.mk_443 hr.lv..._220 en.sl.hr_432\n  0x27142907, 0x10020b11, 0x140f0d60, 0x2b430107,   // ms.is.id_432 no.da.sv_653 pt.es.is_664 en.vi.cy_432\n  0x0d001a23, 0x3f001821, 0x8c212709, 0x026603af,   // xxx.pt..._880 hu.sw..._860 id.tl.ht_444 nl.af.da_655\n  // [2ae0]\n  0x1d661e02, 0x38058c12, 0x0d004522, 0x20001823,   // sr.af.hr_222 ht.fr.ca_654 sk.pt..._870 hu.gl..._880\n  0x08000614, 0x20001a23, 0x02001522, 0x14040109,   // de.it..._660 xxx.gl..._880 lv.da..._870 en.fi.is_444\n  0x05003821, 0x05014208, 0x4e003723, 0x05002223,   // ca.fr..._860 mt.en.fr_443 ar.fa..._880 tr.fr..._880\n  0x06006612, 0x43000c09, 0x1d1e2709, 0x15004b14,   // af.de..._640 pl.vi..._440 id.sr.hr_444 az.lv..._660\n  // [2af0]\n  0x451a2202, 0x0c064255, 0x224b17a4, 0x04161509,   // tr.xxx.sk_222 mt.de.pl_442 ro.az.tr_433 lv.lt.fi_444\n  0x05003f21, 0x18001612, 0x21000613, 0x2e002212,   // sw.fr..._860 lt.hu..._640 de.tl..._650 tr.sq..._640\n  0x06002e14, 0x421808a4, 0x2e100b60, 0x04151608,   // sq.de..._660 it.hu.mt_433 no.sv.sq_664 lt.lv.fi_443\n  0x29002108, 0x05004309, 0x1e211d02, 0x451238af,   // tl.ms..._430 vi.fr..._440 hr.tl.sr_222 ca.cs.sk_655\n  // [2b00]\n  0x29223f07, 0x454b0f02, 0x18420811, 0x18084208,   // sw.tr.ms_432 es.az.sk_222 it.mt.hu_653 mt.it.hu_443\n  0x224b2709, 0x8c000f14, 0x1d041e02, 0x45408c08,   // id.az.tr_444 es.ht..._660 sr.fi.hr_222 ht.sl.sk_443\n  0x3f001713, 0x18001202, 0x170d43a4, 0x02030508,   // ro.sw..._650 cs.hu..._220 vi.pt.ro_433 fr.nl.da_443\n  0x12004209, 0x18191411, 0x14001609, 0x16000808,   // mt.cs..._440 is.et.hu_653 lt.is..._440 it.lt..._430\n  // [2b10]\n  0x66002708, 0x21006608, 0x0b008c23, 0x14020b07,   // id.af..._430 af.tl..._430 ht.no..._880 no.da.is_432\n  0x10040b09, 0x2b008c14, 0x29002223, 0x1f002023,   // no.fi.sv_444 ht.cy..._660 tr.ms..._880 gl.ga..._880\n  0x29001822, 0x048c4507, 0x29000d23, 0x1a8c0513,   // hu.ms..._870 sk.ht.fi_432 pt.ms..._880 fr.ht.xxx_665\n  0x21000b09, 0x43001514, 0x10010208, 0x27290802,   // no.tl..._440 lv.vi..._660 da.en.sv_443 it.ms.id_222\n  // [2b20]\n  0x231c0ea4, 0x29004b12, 0x231c2512, 0x27293f09,   // ru.bg.uk_433 az.ms..._640 mk.bg.uk_654 sw.ms.id_444\n  0x1d1e0b09, 0x18000514, 0x30001c23, 0x45003821,   // no.sr.hr_444 fr.hu..._660 bg.be..._880 ca.sk..._860\n  0x121d2702, 0x29001513, 0x66000d13, 0x66000d14,   // id.hr.cs_222 lv.ms..._650 pt.af..._650 pt.af..._660\n  0x2b2e3860, 0x02036609, 0x45121a09, 0x380d2e07,   // ca.sq.cy_664 af.nl.da_444 xxx.cs.sk_444 sq.pt.ca_432\n  // [2b30]\n  0x14004502, 0x4b003814, 0x43001009, 0x01101a09,   // sk.is..._220 ca.az..._660 sv.vi..._440 xxx.sv.en_444\n  0x1f000d08, 0x01001914, 0x12011a09, 0x140b0107,   // pt.ga..._430 et.en..._660 xxx.en.cs_444 en.no.is_432\n  0x18450c12, 0x19151611, 0x06142b13, 0x1a100208,   // pl.sk.hu_654 lt.lv.et_653 cy.is.de_665 da.sv.xxx_443\n  0x2e000c14, 0x18000d12, 0x0f0d4508, 0x0f2b3808,   // pl.sq..._660 pt.hu..._640 sk.pt.es_443 ca.cy.es_443\n  // [2b40]\n  0x8c000323, 0x1d382e02, 0x1e000f02, 0x8c004002,   // nl.ht..._880 sq.ca.hr_222 es.sr..._220 sl.ht..._220\n  0x4b0d3808, 0x010c3fa4, 0x0f0d2012, 0x0e2325a4,   // ca.pt.az_443 sw.pl.en_433 gl.pt.es_654 mk.uk.ru_433\n  0x15006608, 0x061a1008, 0x1e1d6609, 0x0f0d2b12,   // af.lv..._430 sv.xxx.de_443 af.hr.sr_444 cy.pt.es_654\n  0x1d1e40ac, 0x20001714, 0x45432702, 0x03001d02,   // sl.sr.hr_632 ro.gl..._660 id.vi.sk_222 hr.nl..._220\n  // [2b50]\n  0x02660360, 0x12451902, 0x19004013, 0x12458c12,   // nl.af.da_664 et.sk.cs_222 sl.et..._650 ht.sk.cs_654\n  0x451a1002, 0x45008c13, 0x29004323, 0x451517a4,   // sv.xxx.sk_222 ht.sk..._650 vi.ms..._880 ro.lv.sk_433\n  0x3a660309, 0x45191202, 0x1e051d02, 0x27001f14,   // nl.af.eu_444 cs.et.sk_222 hr.fr.sr_222 ga.id..._660\n  0x1e1d04a4, 0x0f002913, 0x0c002902, 0x0b001209,   // fi.hr.sr_433 ms.es..._650 ms.pl..._220 cs.no..._440\n  // [2b60]\n  0x45000502, 0x21001623, 0x0e252307, 0x0f001a09,   // fr.sk..._220 lt.tl..._880 uk.mk.ru_432 xxx.es..._440\n  0x1d451002, 0x0f140d02, 0x4b0d0b07, 0x17004b02,   // sv.sk.hr_222 pt.is.es_222 no.pt.az_432 az.ro..._220\n  0x43001708, 0x04421a09, 0x66031913, 0x21001908,   // ro.vi..._430 xxx.mt.fi_444 et.nl.af_665 et.tl..._430\n  0x19660360, 0x04000509, 0x43001a08, 0x3a004209,   // nl.af.et_664 fr.fi..._440 xxx.vi..._430 mt.eu..._440\n  // [2b70]\n  0x40006602, 0x3f080109, 0x12458c02, 0x2b0f0107,   // af.sl..._220 en.it.sw_444 ht.sk.cs_222 en.es.cy_432\n  0x06000321, 0x22000814, 0x05010b09, 0x230e1c60,   // nl.de..._860 it.tr..._660 no.en.fr_444 bg.ru.uk_664\n  0x29142707, 0x2e434b07, 0x224b1408, 0x2e142908,   // id.is.ms_432 az.vi.sq_432 is.az.tr_443 ms.is.sq_443\n  0x17082909, 0x20380d13, 0x380d2009, 0x1a002e14,   // ms.it.ro_444 pt.ca.gl_665 gl.pt.ca_444 sq.xxx..._660\n  // [2b80]\n  0x0d001014, 0x183a2260, 0x0d451421, 0x142e2707,   // sv.pt..._660 tr.eu.hu_664 is.sk.pt_876 id.sq.is_432\n  0x14002e02, 0x190208a4, 0x3a0b1812, 0x66292707,   // sq.is..._220 it.da.et_433 hu.no.eu_654 id.ms.af_432\n  0x041a3f55, 0x14100b60, 0x0f0d3855, 0x45000d23,   // sw.xxx.fi_442 no.sv.is_664 ca.pt.es_442 pt.sk..._880\n  0x180d4513, 0x180d4512, 0x1e3f1da4, 0x0b001813,   // sk.pt.hu_665 sk.pt.hu_654 hr.sw.sr_433 hu.no..._650\n  // [2b90]\n  0x18004521, 0x66058ca4, 0x12184511, 0x271429a4,   // sk.hu..._860 ht.fr.af_433 sk.hu.cs_653 ms.is.id_433\n  0x450c1212, 0x1a212e09, 0x05001412, 0x1d222902,   // cs.pl.sk_654 sq.tl.xxx_444 is.fr..._640 ms.tr.hr_222\n  0x0c008c08, 0x2e001813, 0x4b003802, 0x45002907,   // ht.pl..._430 hu.sq..._650 ca.az..._220 ms.sk..._420\n  0x1e2b0802, 0x06021407, 0x046603a4, 0x03660b07,   // it.cy.sr_222 is.da.de_432 nl.af.fi_433 no.af.nl_432\n  // [2ba0]\n  0x04151611, 0x06100b09, 0x4b1d8c07, 0x1a0c18a4,   // lt.lv.fi_653 no.sv.de_444 ht.hr.az_432 hu.pl.xxx_433\n  0x031e1d13, 0x06002212, 0x45006609, 0x4b0b10a4,   // hr.sr.nl_665 tr.de..._640 af.sk..._440 sv.no.az_433\n  0x2e001013, 0x100d1a08, 0x211f3fa4, 0x21001f14,   // sv.sq..._650 xxx.pt.sv_443 sw.ga.tl_433 ga.tl..._660\n  0x3a001622, 0x3f170107, 0x22293a12, 0x66012ba4,   // lt.eu..._870 en.ro.sw_432 eu.ms.tr_654 cy.en.af_433\n  // [2bb0]\n  0x29020b07, 0x19223a07, 0x21001922, 0x16000421,   // no.da.ms_432 eu.tr.et_432 et.tl..._870 fi.lt..._860\n  0x3a190f55, 0x0f052208, 0x45084208, 0x06450d08,   // es.et.eu_442 tr.fr.es_443 mt.it.sk_443 pt.sk.de_443\n  0x21292711, 0x02004507, 0x031a0f09, 0x200d0b08,   // id.ms.tl_653 sk.da..._420 es.xxx.nl_444 no.pt.gl_443\n  0x08421209, 0x06008c14, 0x21224ba4, 0x8c000102,   // cs.mt.it_444 ht.de..._660 az.tr.tl_433 en.ht..._220\n  // [2bc0]\n  0x0b061009, 0x2b124560, 0x22193a08, 0x66030512,   // sv.de.no_444 sk.cs.cy_664 eu.et.tr_443 fr.nl.af_654\n  0x180f4508, 0x0c2e1508, 0x19224b11, 0x45122709,   // sk.es.hu_443 lv.sq.pl_443 az.tr.et_653 id.cs.sk_444\n  0x12421708, 0x0d000f12, 0x03000522, 0x380f0408,   // ro.mt.cs_443 es.pt..._640 fr.nl..._870 fi.es.ca_443\n  0x8c036612, 0x0c002107, 0x660b2908, 0x04000b13,   // af.nl.ht_654 tl.pl..._420 ms.no.af_443 no.fi..._650\n  // [2bd0]\n  0x17002102, 0x17000c13, 0x0c454008, 0x19213a13,   // tl.ro..._220 pl.ro..._650 sl.sk.pl_443 eu.tl.et_665\n  0x12451a02, 0x120f4502, 0x16001414, 0x42001621,   // xxx.sk.cs_222 sk.es.cs_222 is.lt..._660 lt.mt..._860\n  0x0c004022, 0x1e188c07, 0x230e1c55, 0x250e1c12,   // sl.pl..._870 ht.hu.sr_432 bg.ru.uk_442 bg.ru.mk_654\n  0x40003a08, 0x2b002108, 0x45292702, 0x180f0d13,   // eu.sl..._430 tl.cy..._430 id.ms.sk_222 pt.es.hu_665\n  // [2be0]\n  0x0b1f0612, 0x121f4502, 0x1d221702, 0x660c0212,   // de.ga.no_654 sk.ga.cs_222 ro.tr.hr_222 da.pl.af_654\n  0x3f292712, 0x1d0b1e09, 0x3f8c0108, 0x14006613,   // id.ms.sw_654 sr.no.hr_444 en.ht.sw_443 af.is..._650\n  0x45000b14, 0x45006623, 0x0c012b09, 0x18000608,   // no.sk..._660 af.sk..._880 cy.en.pl_444 de.hu..._430\n  0x42010b09, 0x19000122, 0x05170107, 0x29210b08,   // no.en.mt_444 en.et..._870 en.ro.fr_432 no.tl.ms_443\n  // [2bf0]\n  0x21000609, 0x08001409, 0x38060113, 0x0e1e1caf,   // de.tl..._440 is.it..._440 en.de.ca_665 bg.sr.ru_655\n  0x19004b20, 0x401d29a4, 0x01003822, 0x66272b12,   // az.et..._850 ms.hr.sl_433 ca.en..._870 cy.id.af_654\n  0x04006607, 0x01003813, 0x38000b09, 0x1e1d0414,   // af.fi..._420 ca.en..._650 no.ca..._440 fi.hr.sr_666\n  0x38002212, 0x061002a4, 0x12001002, 0x0f0d1808,   // tr.ca..._640 da.sv.de_433 sv.cs..._220 hu.pt.es_443\n\n  // [2c00]\n  0x231e0e13, 0x18004512, 0x120f0d60, 0x1f001214,   // ru.sr.uk_665 sk.hu..._640 pt.es.cs_664 cs.ga..._660\n  0x22001002, 0x060210a4, 0x3f001413, 0x0d001a12,   // sv.tr..._220 sv.da.de_433 is.sw..._650 xxx.pt..._640\n  0x451f1214, 0x03003a09, 0x06004008, 0x8c001a08,   // cs.ga.sk_666 eu.nl..._440 sl.de..._430 xxx.ht..._430\n  0x230e2512, 0x0c1a6613, 0x1d000523, 0x45271a02,   // mk.ru.uk_654 af.xxx.pl_665 fr.hr..._880 xxx.id.sk_222\n  // [2c10]\n  0x45123f02, 0x42002721, 0x27102902, 0x29001814,   // sw.cs.sk_222 id.mt..._860 ms.sv.id_222 hu.ms..._660\n  0x062b2707, 0x12668ca4, 0x40002221, 0x453a2908,   // id.cy.de_432 ht.af.cs_433 tr.sl..._860 ms.eu.sk_443\n  0x29001013, 0x22060109, 0x03000214, 0x1d001608,   // sv.ms..._650 en.de.tr_444 da.nl..._660 lt.hr..._430\n  0x19060b09, 0x19000b22, 0x3a1516a4, 0x02004502,   // no.de.et_444 no.et..._870 lt.lv.eu_433 sk.da..._220\n  // [2c20]\n  0x0f124514, 0x29000509, 0x8c0b2208, 0x45012902,   // sk.cs.es_666 fr.ms..._440 tr.no.ht_443 ms.en.sk_222\n  0x1d000b23, 0x18001f02, 0x3f006608, 0x2b001822,   // no.hr..._880 ga.hu..._220 af.sw..._430 hu.cy..._870\n  0x06031814, 0x19100413, 0x1f451214, 0x06031808,   // hu.nl.de_666 fi.sv.et_665 cs.sk.ga_666 hu.nl.de_443\n  0x17001909, 0x1d001212, 0x0e233007, 0x1e001413,   // et.ro..._440 cs.hr..._640 be.uk.ru_432 is.sr..._650\n  // [2c30]\n  0x1d012b02, 0x04001007, 0x1a8c3f09, 0x1e1d0109,   // cy.en.hr_222 sv.fi..._420 sw.ht.xxx_444 en.hr.sr_444\n  0x22182108, 0x03011002, 0x8c004502, 0x29000c14,   // tl.hu.tr_443 sv.en.nl_222 sk.ht..._220 pl.ms..._660\n  0x22004302, 0x45380f02, 0x3f002907, 0x16004309,   // vi.tr..._220 es.ca.sk_222 ms.sw..._420 vi.lt..._440\n  0x17001a14, 0x122e4502, 0x0d001812, 0x294b4213,   // xxx.ro..._660 sk.sq.cs_222 hu.pt..._640 mt.az.ms_665\n  // [2c40]\n  0x19002714, 0x21000107, 0x45660107, 0x38004302,   // id.et..._660 en.tl..._420 en.af.sk_432 vi.ca..._220\n  0x120f2109, 0x45104302, 0x04000123, 0x22001412,   // tl.es.cs_444 vi.sv.sk_222 en.fi..._880 is.tr..._640\n  0x1d1e3802, 0x38170107, 0x66000209, 0x660327a4,   // ca.sr.hr_222 en.ro.ca_432 da.af..._440 id.nl.af_433\n  0x40001713, 0x40001708, 0x43000408, 0x3f004302,   // ro.sl..._650 ro.sl..._430 fi.vi..._430 vi.sw..._220\n  // [2c50]\n  0x22001409, 0x030b0109, 0x12451414, 0x40291209,   // is.tr..._440 en.no.nl_444 is.sk.cs_666 cs.ms.sl_444\n  0x0d053814, 0x10001513, 0x10053855, 0x66004302,   // ca.fr.pt_666 lv.sv..._650 ca.fr.sv_442 vi.af..._220\n  0x08011a08, 0x17001523, 0x051f3f13, 0x21202709,   // xxx.en.it_443 lv.ro..._880 sw.ga.fr_665 id.gl.tl_444\n  0x2e000612, 0x8c3f2108, 0x1e404508, 0x17002902,   // de.sq..._640 tl.sw.ht_443 sk.sl.sr_443 ms.ro..._220\n  // [2c60]\n  0x29002b02, 0x06431a09, 0x06001714, 0x02002e14,   // cy.ms..._220 xxx.vi.de_444 ro.de..._660 sq.da..._660\n  0x1d001402, 0x8c001622, 0x19000b12, 0x45050108,   // is.hr..._220 lt.ht..._870 no.et..._640 en.fr.sk_443\n  0x21003802, 0x0c004b02, 0x14002708, 0x06002108,   // ca.tl..._220 az.pl..._220 id.is..._430 tl.de..._430\n  0x16214013, 0x02002b23, 0x42001809, 0x38000d07,   // sl.tl.lt_665 cy.da..._880 hu.mt..._440 pt.ca..._420\n  // [2c70]\n  0x43002e22, 0x42001823, 0x45102e02, 0x2b4b2208,   // sq.vi..._870 hu.mt..._880 sq.sv.sk_222 tr.az.cy_443\n  0x3f170508, 0x23302514, 0x1d212902, 0x03001814,   // fr.ro.sw_443 mk.be.uk_666 ms.tl.hr_222 hu.nl..._660\n  0x66190412, 0x1d0c2102, 0x01433fa4, 0x43000523,   // fi.et.af_654 tl.pl.hr_222 sw.vi.en_433 fr.vi..._880\n  0x0f002713, 0x19004221, 0x274b2202, 0x221245a4,   // id.es..._650 mt.et..._860 tr.az.id_222 sk.cs.tr_433\n  // [2c80]\n  0x4b000613, 0x010c4508, 0x42083808, 0x4b221814,   // de.az..._650 sk.pl.en_443 ca.it.mt_443 hu.tr.az_666\n  0x4b000c02, 0x1f000209, 0x05001908, 0x4b2218ad,   // pl.az..._220 da.ga..._440 et.fr..._430 hu.tr.az_643\n  0x18224b13, 0x4b001812, 0x2e3f1812, 0x06002b21,   // az.tr.hu_665 hu.az..._640 hu.sw.sq_654 cy.de..._860\n  0x1c300e13, 0x19272908, 0x03660607, 0x21100208,   // ru.be.bg_665 ms.id.et_443 de.af.nl_432 da.sv.tl_443\n  // [2c90]\n  0x21002222, 0x66060360, 0x01001a23, 0x1d1e1513,   // tr.tl..._870 nl.de.af_664 xxx.en..._880 lv.sr.hr_665\n  0x8c001809, 0x0b021408, 0x22002113, 0x0f0d3814,   // hu.ht..._440 is.da.no_443 tl.tr..._650 ca.pt.es_666\n  0x45000108, 0x1e1d03af, 0x02001613, 0x0f001914,   // en.sk..._430 nl.hr.sr_655 lt.da..._650 et.es..._660\n  0x27001a23, 0x294b2707, 0x04080b09, 0x12453a02,   // xxx.id..._880 id.az.ms_432 no.it.fi_444 eu.sk.cs_222\n  // [2ca0]\n  0x02004212, 0x291e0107, 0x0f003f23, 0x16004b23,   // mt.da..._640 en.sr.ms_432 sw.es..._880 az.lt..._880\n  0x2b000c09, 0x42004b21, 0x2b002e02, 0x01062ba4,   // pl.cy..._440 az.mt..._860 sq.cy..._220 cy.de.en_433\n  0x01272b08, 0x43000507, 0x180210a4, 0x3a008c09,   // cy.id.en_443 fr.vi..._420 sv.da.hu_433 ht.eu..._440\n  0x058c0608, 0x43050108, 0x2b001902, 0x020b10af,   // de.ht.fr_443 en.fr.vi_443 et.cy..._220 sv.no.da_655\n  // [2cb0]\n  0x2b000b07, 0x1f010508, 0x8c002e14, 0x222e8c12,   // no.cy..._420 fr.en.ga_443 sq.ht..._660 ht.sq.tr_654\n  0x1e233002, 0x45011207, 0x141d1e09, 0x12000114,   // be.uk.sr_222 cs.en.sk_432 sr.hr.is_444 en.cs..._660\n  0x12000108, 0x66000122, 0x0b000222, 0x3a000423,   // en.cs..._430 en.af..._870 da.no..._870 fi.eu..._880\n  0x43000414, 0x450c1208, 0x043f3a12, 0x01000b07,   // fi.vi..._660 cs.pl.sk_443 eu.sw.fi_654 no.en..._420\n  // [2cc0]\n  0x1d171002, 0x0d003a22, 0x434512af, 0x21002213,   // sv.ro.hr_222 eu.pt..._870 cs.sk.vi_655 tr.tl..._650\n  0x03660255, 0x3a043f08, 0x3f043a12, 0x05173813,   // da.af.nl_442 sw.fi.eu_443 eu.fi.sw_654 ca.ro.fr_665\n  0x08002e07, 0x18002b23, 0x380f0109, 0x383a0109,   // sq.it..._420 cy.hu..._880 en.es.ca_444 en.eu.ca_444\n  0x0f004309, 0x43003a13, 0x05451212, 0x05080107,   // vi.es..._440 eu.vi..._650 cs.sk.fr_654 en.it.fr_432\n  // [2cd0]\n  0x10004312, 0x0c001d08, 0x181a0b12, 0x1e151d09,   // vi.sv..._640 hr.pl..._430 no.xxx.hu_654 hr.lv.sr_444\n  0x2b1d0209, 0x231c3009, 0x2b000609, 0x01000613,   // da.hr.cy_444 be.bg.uk_444 de.cy..._440 de.en..._650\n  0x0d0f1714, 0x04173a09, 0x02001408, 0x051a0302,   // ro.es.pt_666 eu.ro.fi_444 is.da..._430 nl.xxx.fr_222\n  0x15002b02, 0x27150107, 0x0c001414, 0x19000b23,   // cy.lv..._220 en.lv.id_432 is.pl..._660 no.et..._880\n  // [2ce0]\n  0x0b001e14, 0x38001409, 0x213f0109, 0x16036608,   // sr.no..._660 is.ca..._440 en.sw.tl_444 af.nl.lt_443\n  0x10003f12, 0x293a2102, 0x404b1808, 0x02000d14,   // sw.sv..._640 tl.eu.ms_222 hu.az.sl_443 pt.da..._660\n  0x45000514, 0x290c2709, 0x66031808, 0x032b0107,   // fr.sk..._660 id.pl.ms_444 hu.nl.af_443 en.cy.nl_432\n  0x401d2208, 0x16272907, 0x45101502, 0x19161008,   // tr.hr.sl_443 ms.id.lt_432 lv.sv.sk_222 sv.lt.et_443\n  // [2cf0]\n  0x05663f55, 0x300e2360, 0x18451f60, 0x1f184508,   // sw.af.fr_442 uk.ru.be_664 ga.sk.hu_664 sk.hu.ga_443\n  0x45181413, 0x16002107, 0x8c454055, 0x15008c09,   // is.hu.sk_665 tl.lt..._420 sl.sk.ht_442 ht.lv..._440\n  0x12408ca4, 0x12004520, 0x42004b14, 0x1f451812,   // ht.sl.cs_433 sk.cs..._850 az.mt..._660 hu.sk.ga_654\n  0x14004222, 0x1e003a12, 0x14000c02, 0x123f0402,   // mt.is..._870 eu.sr..._640 pl.is..._220 fi.sw.cs_222\n  // [2d00]\n  0x42001013, 0x12000613, 0x0c001723, 0x40020b09,   // sv.mt..._650 de.cs..._650 ro.pl..._880 no.da.sl_444\n  0x17004523, 0x14020b12, 0x10020613, 0x12451712,   // sk.ro..._880 no.da.is_654 de.da.sv_665 ro.sk.cs_654\n  0x21066609, 0x21000d14, 0x12081702, 0x020f0b07,   // af.de.tl_444 pt.tl..._660 ro.it.cs_222 no.es.da_432\n  0x0e302355, 0x04146613, 0x18000b23, 0x18000b14,   // uk.be.ru_442 af.is.fi_665 no.hu..._880 no.hu..._660\n  // [2d10]\n  0x10140107, 0x45001708, 0x43000122, 0x1d1e4007,   // en.is.sv_432 ro.sk..._430 en.vi..._870 sl.sr.hr_432\n  0x1e1d15a4, 0x29211e02, 0x04191060, 0x1f0c1a08,   // lv.hr.sr_433 sr.tl.ms_222 sv.et.fi_664 xxx.pl.ga_443\n  0x451e1d12, 0x45292709, 0x0c002709, 0x1e003f14,   // hr.sr.sk_654 id.ms.sk_444 id.pl..._440 sw.sr..._660\n  0x05042ba4, 0x1e302508, 0x0b000513, 0x120c4560,   // cy.fi.fr_433 mk.be.sr_443 fr.no..._650 sk.pl.cs_664\n  // [2d20]\n  0x453f0802, 0x08003a08, 0x04000c02, 0x42660f09,   // it.sw.sk_222 eu.it..._430 pl.fi..._220 es.af.mt_444\n  0x0f000c23, 0x3f458ca4, 0x27294509, 0x3a064209,   // pl.es..._880 ht.sk.sw_433 sk.ms.id_444 mt.de.eu_444\n  0x450f0602, 0x273f1aa4, 0x25000e08, 0x191521af,   // de.es.sk_222 xxx.sw.id_433 ru.mk..._430 tl.lv.et_655\n  0x06661408, 0x42002109, 0x1f000514, 0x2b001709,   // is.af.de_443 tl.mt..._440 fr.ga..._660 ro.cy..._440\n  // [2d30]\n  0x14001508, 0x2b002908, 0x15003a12, 0x4b004014,   // lv.is..._430 ms.cy..._430 eu.lv..._640 sl.az..._660\n  0x3f001913, 0x06191aa4, 0x0f0d1409, 0x121e4502,   // et.sw..._650 xxx.et.de_433 is.pt.es_444 sk.sr.cs_222\n  0x29033802, 0x05001707, 0x17044308, 0x458c4b02,   // ca.nl.ms_222 ro.fr..._420 vi.fi.ro_443 az.ht.sk_222\n  0x06101407, 0x29002e22, 0x454b8c02, 0x8c002e22,   // is.sv.de_432 sq.ms..._870 ht.az.sk_222 sq.ht..._870\n  // [2d40]\n  0x103a0109, 0x4b000409, 0x08008c22, 0x1f000423,   // en.eu.sv_444 fi.az..._440 ht.it..._870 fi.ga..._880\n  0x66008c22, 0x043a1fa4, 0x06001823, 0x14100b09,   // ht.af..._870 ga.eu.fi_433 hu.de..._880 no.sv.is_444\n  0x1f002902, 0x1d004213, 0x03660460, 0x03021008,   // ms.ga..._220 mt.hr..._650 fi.af.nl_664 sv.da.nl_443\n  0x16052b55, 0x1f004208, 0x124516af, 0x020c0b07,   // cy.fr.lt_442 mt.ga..._430 lt.sk.cs_655 no.pl.da_432\n  // [2d50]\n  0x1d1e15a4, 0x43001202, 0x3a000522, 0x3a001609,   // lv.sr.hr_433 cs.vi..._220 fr.eu..._870 lt.eu..._440\n  0x21000209, 0x04192108, 0x12211a02, 0x2b001e09,   // da.tl..._440 tl.et.fi_443 xxx.tl.cs_222 sr.cy..._440\n  0x42400da4, 0x29214202, 0x38220660, 0x3a000d08,   // pt.sl.mt_433 mt.tl.ms_222 de.tr.ca_664 pt.eu..._430\n  0x2e124509, 0x06050109, 0x190c4014, 0x420c1507,   // sk.cs.sq_444 en.fr.de_444 sl.pl.et_666 lv.pl.mt_432\n  // [2d60]\n  0x0c001f14, 0x04001202, 0x12002914, 0x04173808,   // ga.pl..._660 cs.fi..._220 ms.cs..._660 ca.ro.fi_443\n  0x0c003a23, 0x03002914, 0x27290655, 0x0d003821,   // eu.pl..._880 ms.nl..._660 de.ms.id_442 ca.pt..._860\n  0x0e232512, 0x03002907, 0x22121508, 0x8c210ca4,   // mk.uk.ru_654 ms.nl..._420 lv.cs.tr_443 pl.tl.ht_433\n  0x42141609, 0x4b004009, 0x15001f02, 0x1c251eaf,   // lt.is.mt_444 sl.az..._440 ga.lv..._220 sr.mk.bg_655\n  // [2d70]\n  0x27000d09, 0x43422908, 0x16000413, 0x08002002,   // pt.id..._440 ms.mt.vi_443 fi.lt..._650 gl.it..._220\n  0x0f120d08, 0x18000602, 0x29272113, 0x00008c03,   // pt.cs.es_443 de.hu..._220 tl.id.ms_665 ht......_300\n  0x431a2108, 0x031418af, 0x3a451207, 0x06100107,   // tl.xxx.vi_443 hu.is.nl_655 cs.sk.eu_432 en.sv.de_432\n  0x45423a12, 0x12000d12, 0x12450daf, 0x050f0d14,   // eu.mt.sk_654 pt.cs..._640 pt.sk.cs_655 pt.es.fr_666\n  // [2d80]\n  0x27211502, 0x27291802, 0x22001f14, 0x273a1902,   // lv.tl.id_222 hu.ms.id_222 ga.tr..._660 et.eu.id_222\n  0x291e1d08, 0x050f0d60, 0x1f001d09, 0x0f3a8c08,   // hr.sr.ms_443 pt.es.fr_664 hr.ga..._440 ht.eu.es_443\n  0x3f0b02a4, 0x2b0638a4, 0x14000114, 0x4b3f2214,   // da.no.sw_433 ca.de.cy_433 en.is..._660 tr.sw.az_666\n  0x050f1807, 0x2b1a2707, 0x14002e20, 0x29018c02,   // hu.es.fr_432 id.xxx.cy_432 sq.is..._850 ht.en.ms_222\n  // [2d90]\n  0x42000c23, 0x01040302, 0x38060313, 0x42004023,   // pl.mt..._880 nl.fi.en_222 nl.de.ca_665 sl.mt..._880\n  0x02031a09, 0x140d3808, 0x1f001513, 0x29172e08,   // xxx.nl.da_444 ca.pt.is_443 lv.ga..._650 sq.ro.ms_443\n  0x29274002, 0x25302360, 0x250e1e09, 0x27222913,   // sl.id.ms_222 uk.be.mk_664 sr.ru.mk_444 ms.tr.id_665\n  0x45003f23, 0x450d2102, 0x0f080d08, 0x12401d02,   // sw.sk..._880 tl.pt.sk_222 pt.it.es_443 hr.sl.cs_222\n  // [2da0]\n  0x14002209, 0x29001723, 0x06004012, 0x2b001209,   // tr.is..._440 ro.ms..._880 sl.de..._640 cs.cy..._440\n  0x05004209, 0x010f2160, 0x15002113, 0x018c4208,   // mt.fr..._440 tl.es.en_664 tl.lv..._650 mt.ht.en_443\n  0x100f8ca4, 0x3f000c13, 0x0c124509, 0x1e1d17a4,   // ht.es.sv_433 pl.sw..._650 sk.cs.pl_444 ro.hr.sr_433\n  0x06192e12, 0x38002b14, 0x0c000422, 0x43003808,   // sq.et.de_654 cy.ca..._660 fi.pl..._870 ca.vi..._430\n  // [2db0]\n  0x22061807, 0x3f224b11, 0x02001809, 0x2e401460,   // hu.de.tr_432 az.tr.sw_653 hu.da..._440 is.sl.sq_664\n  0x2e2b2109, 0x17001907, 0x40004202, 0x42000c14,   // tl.cy.sq_444 et.ro..._420 mt.sl..._220 pl.mt..._660\n  0x063a2209, 0x38001914, 0x19003822, 0x02001909,   // tr.eu.de_444 et.ca..._660 ca.et..._870 et.da..._440\n  0x0f1a1e08, 0x4b1922a4, 0x45140d02, 0x10003f08,   // sr.xxx.es_443 tr.et.az_433 pt.is.sk_222 sw.sv..._430\n  // [2dc0]\n  0x222b4b14, 0x1c252314, 0x05182b11, 0x1e1d0309,   // az.cy.tr_666 uk.mk.bg_666 cy.hu.fr_653 nl.hr.sr_444\n  0x8c001f08, 0x66034208, 0x05001f22, 0x458c0107,   // ga.ht..._430 mt.nl.af_443 ga.fr..._870 en.ht.sk_432\n  0x12000f02, 0x14000622, 0x10012b02, 0x27022908,   // es.cs..._220 de.is..._870 cy.en.sv_222 ms.da.id_443\n  0x0c200109, 0x16004212, 0x17160407, 0x66002e22,   // en.gl.pl_444 mt.lt..._640 fi.lt.ro_432 sq.af..._870\n  // [2dd0]\n  0x2e000614, 0x21660314, 0x3a200f12, 0x12171002,   // de.sq..._660 nl.af.tl_666 es.gl.eu_654 sv.ro.cs_222\n  0x2b181608, 0x21008c08, 0x0c124512, 0x21000213,   // lt.hu.cy_443 ht.tl..._430 sk.cs.pl_654 da.tl..._650\n  0x25300e13, 0x040127a4, 0x06020b09, 0x1d000309,   // ru.be.mk_665 id.en.fi_433 no.da.de_444 nl.hr..._440\n  0x17001d02, 0x40002b09, 0x3f1a8caf, 0x1e031d60,   // hr.ro..._220 cy.sl..._440 ht.xxx.sw_655 hr.nl.sr_664\n  // [2de0]\n  0x21021008, 0x183a0c09, 0x03000207, 0x29004509,   // sv.da.tl_443 pl.eu.hu_444 da.nl..._420 sk.ms..._440\n  0x18160408, 0x43000809, 0x2b001914, 0x14002123,   // fi.lt.hu_443 it.vi..._440 et.cy..._660 tl.is..._880\n  0x16003a12, 0x300e1c14, 0x22452e08, 0x30000e11,   // eu.lt..._640 bg.ru.be_666 sq.sk.tr_443 ru.be..._630\n  0x19004023, 0x2b4b2212, 0x1d450202, 0x1f002b12,   // sl.et..._880 tr.az.cy_654 da.sk.hr_222 cy.ga..._640\n  // [2df0]\n  0x3a170109, 0x22183a12, 0x22001622, 0x22272909,   // en.ro.eu_444 eu.hu.tr_654 lt.tr..._870 ms.id.tr_444\n  0x8c002922, 0x40000313, 0x38000314, 0x0b002214,   // ms.ht..._870 nl.sl..._650 nl.ca..._660 tr.no..._660\n  0x03008c13, 0x401a0508, 0x0e251e13, 0x17000d12,   // ht.nl..._650 fr.xxx.sl_443 sr.mk.ru_665 pt.ro..._640\n  0x10008c23, 0x17452708, 0x2e001712, 0x1d004508,   // ht.sv..._880 id.sk.ro_443 ro.sq..._640 sk.hr..._430\n  // [2e00]\n  0x25002312, 0x2e1d1e07, 0x2e224b12, 0x4b044208,   // uk.mk..._640 sr.hr.sq_432 az.tr.sq_654 mt.fi.az_443\n  0x10004223, 0x4b000522, 0x420f4508, 0x19161508,   // mt.sv..._880 fr.az..._870 sk.es.mt_443 lv.lt.et_443\n  0x03040b09, 0x3f001202, 0x05000621, 0x66060312,   // no.fi.nl_444 cs.sw..._220 de.fr..._860 nl.de.af_654\n  0x15190455, 0x12001414, 0x27290302, 0x29190407,   // fi.et.lv_442 is.cs..._660 nl.ms.id_222 fi.et.ms_432\n  // [2e10]\n  0x40000209, 0x124540a4, 0x401d2ea4, 0x22002908,   // da.sl..._440 sl.sk.cs_433 sq.hr.sl_433 ms.tr..._430\n  0x0b002b12, 0x27000609, 0x2e002108, 0x45191012,   // cy.no..._640 de.id..._440 tl.sq..._430 sv.et.sk_654\n  0x1f002923, 0x38002013, 0x162e66a4, 0x15211612,   // ms.ga..._880 gl.ca..._650 af.sq.lt_433 lt.tl.lv_654\n  0x102e6608, 0x06001e09, 0x170d05a4, 0x0b141009,   // af.sq.sv_443 sr.de..._440 fr.pt.ro_433 sv.is.no_444\n  // [2e20]\n  0x66420c13, 0x12000f12, 0x0b004222, 0x21000402,   // pl.mt.af_665 es.cs..._640 mt.no..._870 fi.tl..._220\n  0x21004b13, 0x02001822, 0x042b12af, 0x1d451602,   // az.tl..._650 hu.da..._870 cs.cy.fi_655 lt.sk.hr_222\n  0x10021e09, 0x8c050109, 0x12000414, 0x3a002014,   // sr.da.sv_444 en.fr.ht_444 fi.cs..._660 gl.eu..._660\n  0x0c002e08, 0x0e1e25a4, 0x3a043f13, 0x66190308,   // sq.pl..._430 mk.sr.ru_433 sw.fi.eu_665 nl.et.af_443\n  // [2e30]\n  0x210f01a4, 0x66031955, 0x271d0b07, 0x1a660312,   // en.es.tl_433 et.nl.af_442 no.hr.id_432 nl.af.xxx_654\n  0x19000323, 0x42000b02, 0x66002908, 0x3f181612,   // nl.et..._880 no.mt..._220 ms.af..._430 lt.hu.sw_654\n  0x27063a02, 0x2e3f1f12, 0x16152709, 0x43161808,   // eu.de.id_222 ga.sw.sq_654 id.lv.lt_444 hu.lt.vi_443\n  0x05002923, 0x14001723, 0x200d06af, 0x0c001502,   // ms.fr..._880 ro.is..._880 de.pt.gl_655 lv.pl..._220\n  // [2e40]\n  0x8c004214, 0x10020309, 0x42001523, 0x08001522,   // mt.ht..._660 nl.da.sv_444 lv.mt..._880 lv.it..._870\n  0x1e0e23af, 0x2b221412, 0x21000f07, 0x3f100b07,   // uk.ru.sr_655 is.tr.cy_654 es.tl..._420 no.sv.sw_432\n  0x450c2b60, 0x38050f08, 0x450f0d60, 0x16001008,   // cy.pl.sk_664 es.fr.ca_443 pt.es.sk_664 sv.lt..._430\n  0x1f450da4, 0x0c000d02, 0x231e0ea4, 0x0d000c08,   // pt.sk.ga_433 pt.pl..._220 ru.sr.uk_433 pl.pt..._430\n  // [2e50]\n  0x14100b14, 0x3a008c14, 0x25230e13, 0x1a001814,   // no.sv.is_666 ht.eu..._660 ru.uk.mk_665 hu.xxx..._660\n  0x231c0e60, 0x10004009, 0x0e301ca4, 0x38004208,   // ru.bg.uk_664 sl.sv..._440 bg.be.ru_433 mt.ca..._430\n  0x25000e11, 0x2b001422, 0x22002023, 0x190638a4,   // ru.mk..._630 is.cy..._870 gl.tr..._880 ca.de.et_433\n  0x4b222e08, 0x3a000c23, 0x2b451212, 0x040221a4,   // sq.tr.az_443 pl.eu..._880 cs.sk.cy_654 tl.da.fi_433\n  // [2e60]\n  0x1d3a4b02, 0x0c181708, 0x14220408, 0x29273faf,   // az.eu.hr_222 ro.hu.pl_443 fi.tr.is_443 sw.id.ms_655\n  0x141922a4, 0x21001412, 0x190c2b12, 0x08151908,   // tr.et.is_433 is.tl..._640 cy.pl.et_654 et.lv.it_443\n  0x45128c02, 0x38000513, 0x38001612, 0x17191508,   // ht.cs.sk_222 fr.ca..._650 lt.ca..._640 lv.et.ro_443\n  0x27291902, 0x18001012, 0x1e421d02, 0x010266a4,   // et.ms.id_222 sv.hu..._640 hr.mt.sr_222 af.da.en_433\n  // [2e70]\n  0x1d191702, 0x17004b09, 0x0d000423, 0x27172902,   // ro.et.hr_222 az.ro..._440 fi.pt..._880 ms.ro.id_222\n  0x10000514, 0x08000422, 0x08174209, 0x4b060109,   // fr.sv..._660 fi.it..._870 mt.ro.it_444 en.de.az_444\n  0x140d0f09, 0x2e140107, 0x45290107, 0x1d662b02,   // es.pt.is_444 en.is.sq_432 en.ms.sk_432 cy.af.hr_222\n  0x18000807, 0x45151214, 0x45004308, 0x42084013,   // it.hu..._420 cs.lv.sk_666 vi.sk..._430 sl.it.mt_665\n  // [2e80]\n  0x05001208, 0x1e002309, 0x024b2755, 0x05124509,   // cs.fr..._430 uk.sr..._440 id.az.da_442 sk.cs.fr_444\n  0x29434502, 0x0d290208, 0x1f001609, 0x1d2b1a02,   // sk.vi.ms_222 da.ms.pt_443 lt.ga..._440 xxx.cy.hr_222\n  0x1a050f07, 0x18000b22, 0x17002209, 0x1d0c4055,   // es.fr.xxx_432 no.hu..._870 tr.ro..._440 sl.pl.hr_442\n  0x0f0d4b08, 0x01002913, 0x1d1e0c09, 0x16002e08,   // az.pt.es_443 ms.en..._650 pl.sr.hr_444 sq.lt..._430\n  // [2e90]\n  0x121d4508, 0x14102709, 0x16002e14, 0x17002914,   // sk.hr.cs_443 id.sv.is_444 sq.lt..._660 ms.ro..._660\n  0x66000613, 0x1f053f08, 0x292e2707, 0x0e251e14,   // de.af..._650 sw.fr.ga_443 id.sq.ms_432 sr.mk.ru_666\n  0x06040109, 0x22002b21, 0x3a0110a4, 0x15001921,   // en.fi.de_444 cy.tr..._860 sv.en.eu_433 et.lv..._860\n  0x3a042108, 0x12400107, 0x66211f12, 0x1d064202,   // tl.fi.eu_443 en.sl.cs_432 ga.tl.af_654 mt.de.hr_222\n  // [2ea0]\n  0x42052b13, 0x1d450408, 0x05036655, 0x1d3a0c07,   // cy.fr.mt_665 fi.sk.hr_443 af.nl.fr_442 pl.eu.hr_432\n  0x66038c08, 0x04001e07, 0x03660212, 0x29151660,   // ht.nl.af_443 sr.fi..._420 da.af.nl_654 lt.lv.ms_664\n  0x01000314, 0x1f001009, 0x3f0f16a4, 0x16001708,   // nl.en..._660 sv.ga..._440 lt.es.sw_433 ro.lt..._430\n  0x21041908, 0x1e302513, 0x29271812, 0x42002223,   // et.fi.tl_443 mk.be.sr_665 hu.id.ms_654 tr.mt..._880\n  // [2eb0]\n  0x0b004213, 0x1c2325a4, 0x16001014, 0x10002b21,   // mt.no..._650 mk.uk.bg_433 sv.lt..._660 cy.sv..._860\n  0x430f1f08, 0x12001f21, 0x293a0c02, 0x270d2909,   // ga.es.vi_443 ga.cs..._860 pl.eu.ms_222 ms.pt.id_444\n  0x2b224b13, 0x141f4360, 0x12004012, 0x121e1d08,   // az.tr.cy_665 vi.ga.is_664 sl.cs..._640 hr.sr.cs_443\n  0x0c228c09, 0x3a002202, 0x22274b09, 0x4b000d13,   // ht.tr.pl_444 tr.eu..._220 az.id.tr_444 pt.az..._650\n  // [2ec0]\n  0x270c2909, 0x0f381f09, 0x42213f13, 0x23301c09,   // ms.pl.id_444 ga.ca.es_444 sw.tl.mt_665 bg.be.uk_444\n  0x12004322, 0x3a0f0d08, 0x22004b20, 0x1d0f1002,   // vi.cs..._870 pt.es.eu_443 az.tr..._850 sv.es.hr_222\n  0x161e1d60, 0x3f4b2260, 0x29151602, 0x3f001602,   // hr.sr.lt_664 tr.az.sw_664 lt.lv.ms_222 lt.sw..._220\n  0x453f6602, 0x4b221755, 0x29160b09, 0x16000309,   // af.sw.sk_222 ro.tr.az_442 no.lt.ms_444 nl.lt..._440\n  // [2ed0]\n  0x17002213, 0x45150c14, 0x42001713, 0x2b051faf,   // tr.ro..._650 pl.lv.sk_666 ro.mt..._650 ga.fr.cy_655\n  0x10140b11, 0x8c003a08, 0x45228c55, 0x0c8c2b12,   // no.is.sv_653 eu.ht..._430 ht.tr.sk_442 cy.ht.pl_654\n  0x12001f02, 0x05124511, 0x050f6609, 0x06008c13,   // ga.cs..._220 sk.cs.fr_653 af.es.fr_444 ht.de..._650\n  0x19001513, 0x301e0e08, 0x1e222107, 0x45181411,   // lv.et..._650 ru.sr.be_443 tl.tr.sr_432 is.hu.sk_653\n  // [2ee0]\n  0x1d181e08, 0x222e0b09, 0x0f141fa4, 0x1e161508,   // sr.hu.hr_443 no.sq.tr_444 ga.is.es_433 lv.lt.sr_443\n  0x22161560, 0x18381f12, 0x29273a08, 0x10000222,   // lv.lt.tr_664 ga.ca.hu_654 eu.id.ms_443 da.sv..._870\n  0x40001212, 0x1d144202, 0x301c2513, 0x0b002e09,   // cs.sl..._640 mt.is.hr_222 mk.bg.be_665 sq.no..._440\n  0x1d2e0f08, 0x27003f13, 0x17003a21, 0x0c000308,   // es.sq.hr_443 sw.id..._650 eu.ro..._860 nl.pl..._430\n  // [2ef0]\n  0x030b06a4, 0x03060408, 0x08003f02, 0x0c000808,   // de.no.nl_433 fi.de.nl_443 sw.it..._220 it.pl..._430\n  0x43008c14, 0x12001814, 0x29000d09, 0x3f1e1da4,   // ht.vi..._660 hu.cs..._660 pt.ms..._440 hr.sr.sw_433\n  0x30251ca4, 0x01000213, 0x0e231c60, 0x3a001f12,   // bg.mk.be_433 da.en..._650 bg.uk.ru_664 ga.eu..._640\n  0x121a4009, 0x15003a08, 0x3f058c08, 0x043f1612,   // sl.xxx.cs_444 eu.lv..._430 ht.fr.sw_443 lt.sw.fi_654\n  // [2f00]\n  0x8c002123, 0x38050fa4, 0x01002123, 0x228c0107,   // tl.ht..._880 es.fr.ca_433 tl.en..._880 en.ht.tr_432\n  0x03451a08, 0x3a000f22, 0x27002b14, 0x3f1d1e60,   // xxx.sk.nl_443 es.eu..._870 cy.id..._660 sr.hr.sw_664\n  0x42001814, 0x251e30a4, 0x1a3f4208, 0x42000f13,   // hu.mt..._660 be.sr.mk_433 mt.sw.xxx_443 es.mt..._650\n  0x8c001814, 0x0e1c2360, 0x15001d23, 0x14380f08,   // hu.ht..._660 uk.bg.ru_664 hr.lv..._880 es.ca.is_443\n  // [2f10]\n  0x020619a4, 0x0b6610a4, 0x0d450f09, 0x06100413,   // et.de.da_433 sv.af.no_433 es.sk.pt_444 fi.sv.de_665\n  0x06002113, 0x0e1c2555, 0x02000114, 0x4b002e14,   // tl.de..._650 mk.bg.ru_442 en.da..._660 sq.az..._660\n  0x05001808, 0x27000102, 0x66002b11, 0x4b002113,   // hu.fr..._430 en.id..._220 cy.af..._630 tl.az..._650\n  0x15004b09, 0x38060512, 0x0c000823, 0x4b008c09,   // az.lv..._440 fr.de.ca_654 it.pl..._880 ht.az..._440\n  // [2f20]\n  0x38004023, 0x278c4b02, 0x27052013, 0x1e001408,   // sl.ca..._880 az.ht.id_222 gl.fr.id_665 is.sr..._430\n  0x18001008, 0x38002b23, 0x382b1713, 0x45021208,   // sv.hu..._430 cy.ca..._880 ro.cy.ca_665 cs.da.sk_443\n  0x45000208, 0x12024509, 0x10000d08, 0x061a10a4,   // da.sk..._430 sk.da.cs_444 pt.sv..._430 sv.xxx.de_433\n  0x080b02a4, 0x2e000613, 0x2b011f08, 0x22180209,   // da.no.it_433 de.sq..._650 ga.en.cy_443 da.hu.tr_444\n  // [2f30]\n  0x19002014, 0x2e1f01af, 0x4b221707, 0x01004b09,   // gl.et..._660 en.ga.sq_655 ro.tr.az_432 az.en..._440\n  0x22151008, 0x2b060b09, 0x22420b07, 0x08000b14,   // sv.lv.tr_443 no.de.cy_444 no.mt.tr_432 no.it..._660\n  0x1e451d09, 0x10000813, 0x3f451209, 0x17224b08,   // hr.sk.sr_444 it.sv..._650 cs.sk.sw_444 az.tr.ro_443\n  0x15004513, 0x01001d09, 0x1e250e12, 0x2b004322,   // sk.lv..._650 hr.en..._440 ru.mk.sr_654 vi.cy..._870\n  // [2f40]\n  0x660214a4, 0x43002b12, 0x3a433808, 0x08004009,   // is.da.af_433 cy.vi..._640 ca.vi.eu_443 sl.it..._440\n  0x0c002214, 0x08384507, 0x160210a4, 0x04000d08,   // tr.pl..._660 sk.ca.it_432 sv.da.lt_433 pt.fi..._430\n  0x01053860, 0x03290407, 0x1e000302, 0x16214009,   // ca.fr.en_664 fi.ms.nl_432 nl.sr..._220 sl.tl.lt_444\n  0x0b660312, 0x2b000b08, 0x3a060109, 0x1d000614,   // nl.af.no_654 no.cy..._430 en.de.eu_444 de.hr..._660\n  // [2f50]\n  0x19001808, 0x031d1e08, 0x382729a4, 0x00002e0a,   // hu.et..._430 sr.hr.nl_443 ms.id.ca_433 sq......_500\n  0x45182102, 0x40002209, 0x1e003020, 0x66002209,   // tl.hu.sk_222 tr.sl..._440 be.sr..._850 tr.af..._440\n  0x2b000d22, 0x08002b13, 0x1a000b21, 0x1e000107,   // pt.cy..._870 cy.it..._650 no.xxx..._860 en.sr..._420\n  0x19026608, 0x06000312, 0x3f660355, 0x29003f12,   // af.da.et_443 nl.de..._640 nl.af.sw_442 sw.ms..._640\n  // [2f60]\n  0x42000408, 0x04420808, 0x191d1ea4, 0x43003809,   // fi.mt..._430 it.mt.fi_443 sr.hr.et_433 ca.vi..._440\n  0x0c060309, 0x38434b12, 0x03060109, 0x121a1408,   // nl.de.pl_444 az.vi.ca_654 en.de.nl_444 is.xxx.cs_443\n  0x19002212, 0x4b003a02, 0x02002714, 0x4b003809,   // tr.et..._640 eu.az..._220 id.da..._660 ca.az..._440\n  0x0b003f02, 0x450f1e02, 0x180f0b08, 0x18023fa4,   // sw.no..._220 sr.es.sk_222 no.es.hu_443 sw.da.hu_433\n  // [2f70]\n  0x4b001a08, 0x034b22a4, 0x15002e14, 0x10000323,   // xxx.az..._430 tr.az.nl_433 sq.lv..._660 nl.sv..._880\n  0x29000102, 0x40002102, 0x18001509, 0x228c4b12,   // en.ms..._220 tl.sl..._220 lv.hu..._440 az.ht.tr_654\n  0x453f1502, 0x163f3aa4, 0x4b00221b, 0x061014a4,   // lv.sw.sk_222 eu.sw.lt_433 tr.az..._770 is.sv.de_433\n  0x3f003814, 0x02000523, 0x04190508, 0x152b1209,   // ca.sw..._660 fr.da..._880 fr.et.fi_443 cs.cy.lv_444\n  // [2f80]\n  0x02050b07, 0x29100208, 0x230e25a4, 0x662b02a4,   // no.fr.da_432 da.sv.ms_443 mk.ru.uk_433 da.cy.af_433\n  0x03001409, 0x0f0416a4, 0x17224b07, 0x278c2202,   // is.nl..._440 lt.fi.es_433 az.tr.ro_432 tr.ht.id_222\n  0x120f1a02, 0x16002213, 0x21000c09, 0x1d101912,   // xxx.es.cs_222 tr.lt..._650 pl.tl..._440 et.sv.hr_654\n  0x2b000308, 0x18454208, 0x06036611, 0x172b1faf,   // nl.cy..._430 mt.sk.hu_443 af.nl.de_653 ga.cy.ro_655\n  // [2f90]\n  0x251c0e55, 0x170f4507, 0x383a2b12, 0x02141009,   // ru.bg.mk_442 sk.es.ro_432 cy.eu.ca_654 sv.is.da_444\n  0x29000113, 0x15041609, 0x2e008c08, 0x15001713,   // en.ms..._650 lt.fi.lv_444 ht.sq..._430 ro.lv..._650\n  0x23251ca4, 0x27004523, 0x06140b09, 0x06006622,   // bg.mk.uk_433 sk.id..._880 no.is.de_444 af.de..._870\n  0x66032ea4, 0x0d451214, 0x171e1d14, 0x0f002923,   // sq.nl.af_433 cs.sk.pt_666 hr.sr.ro_666 ms.es..._880\n  // [2fa0]\n  0x06021009, 0x03104309, 0x0b190212, 0x43000409,   // sv.da.de_444 vi.sv.nl_444 da.et.no_654 fi.vi..._440\n  0x38220da4, 0x14000b21, 0x66000208, 0x43004208,   // pt.tr.ca_433 no.is..._860 da.af..._430 mt.vi..._430\n  0x4b024209, 0x1e1d3a07, 0x0c001812, 0x423a0814,   // mt.da.az_444 eu.hr.sr_432 hu.pl..._640 it.eu.mt_666\n  0x0b004214, 0x02001209, 0x1d120202, 0x1d2e4307,   // mt.no..._660 cs.da..._440 da.cs.hr_222 vi.sq.hr_432\n  // [2fb0]\n  0x42012ba4, 0x42001a14, 0x3a061812, 0x1d032e08,   // cy.en.mt_433 xxx.mt..._660 hu.de.eu_654 sq.nl.hr_443\n  0x04060109, 0x04420ba4, 0x42080108, 0x22180807,   // en.de.fi_444 no.mt.fi_433 en.it.mt_443 it.hu.tr_432\n  0x43001814, 0x0b044208, 0x270d2907, 0x024516a4,   // hu.vi..._660 mt.fi.no_443 ms.pt.id_432 lt.sk.da_433\n  0x17053855, 0x29182707, 0x1c302314, 0x18000f22,   // ca.fr.ro_442 id.hu.ms_432 uk.be.bg_666 es.hu..._870\n  // [2fc0]\n  0x18001f11, 0x0f001821, 0x12451860, 0x200f1812,   // ga.hu..._630 hu.es..._860 hu.sk.cs_664 hu.es.gl_654\n  0x05380107, 0x42000b14, 0x18054b08, 0x100603a4,   // en.ca.fr_432 no.mt..._660 az.fr.hu_443 nl.de.sv_433\n  0x04453f12, 0x3f004223, 0x3f3a2709, 0x22058c12,   // sw.sk.fi_654 mt.sw..._880 id.eu.sw_444 ht.fr.tr_654\n  0x0f001e09, 0x12002202, 0x05001822, 0x128c0560,   // sr.es..._440 tr.cs..._220 hu.fr..._870 fr.ht.cs_664\n  // [2fd0]\n  0x20000802, 0x2b000c08, 0x20000122, 0x20001802,   // it.gl..._220 pl.cy..._430 en.gl..._870 hu.gl..._220\n  0x29012707, 0x0b0f0d11, 0x120d66ad, 0x29452702,   // id.en.ms_432 pt.es.no_653 af.pt.cs_643 id.sk.ms_222\n  0x18000523, 0x18000f07, 0x06100412, 0x01008c14,   // fr.hu..._880 es.hu..._420 fi.sv.de_654 ht.en..._660\n  0x19001512, 0x21003a08, 0x21222909, 0x10041908,   // lv.et..._640 eu.tl..._430 ms.tr.tl_444 et.fi.sv_443\n  // [2fe0]\n  0x032e66a4, 0x17004002, 0x66000f14, 0x25302307,   // af.sq.nl_433 sl.ro..._220 es.af..._660 uk.be.mk_432\n  0x42000102, 0x030c0608, 0x1e001c08, 0x0b161009,   // en.mt..._220 de.pl.nl_443 bg.sr..._430 sv.lt.no_444\n  0x02001623, 0x43004009, 0x3f001623, 0x06011a13,   // lt.da..._880 sl.vi..._440 lt.sw..._880 xxx.en.de_665\n  0x15001a09, 0x251c0ead, 0x2e124508, 0x05451812,   // xxx.lv..._440 ru.bg.mk_643 sk.cs.sq_443 hu.sk.fr_654\n  // [2ff0]\n  0x19001f12, 0x190502a4, 0x0d0f1809, 0x141904af,   // ga.et..._640 da.fr.et_433 hu.es.pt_444 fi.et.is_655\n  0x0d182012, 0x1d451611, 0x05001413, 0x25301c14,   // gl.hu.pt_654 lt.sk.hr_653 is.fr..._650 bg.be.mk_666\n  0x22181a09, 0x18223a08, 0x04006608, 0x0d184509,   // xxx.hu.tr_444 eu.tr.hu_443 af.fi..._430 sk.hu.pt_444\n  0x01100202, 0x0f0d1812, 0x17002123, 0x8c213f12,   // da.sv.en_222 hu.pt.es_654 tl.ro..._880 sw.tl.ht_654\n\n  // [3000]\n  0x0f001514, 0x0d0117a4, 0x1d001e21, 0x66182107,   // lv.es..._660 ro.en.pt_433 sr.hr..._860 tl.hu.af_432\n  0x21022702, 0x124505a4, 0x1e380412, 0x0f001810,   // id.da.tl_222 fr.sk.cs_433 fi.ca.sr_654 hu.es..._620\n  0x1f451209, 0x45154002, 0x02003808, 0x1e106602,   // cs.sk.ga_444 sl.lv.sk_222 ca.da..._430 af.sv.sr_222\n  0x08000112, 0x15196613, 0x1e002511, 0x0f004014,   // en.it..._640 af.et.lv_665 mk.sr..._630 sl.es..._660\n  // [3010]\n  0x19002e12, 0x100f2e60, 0x16400d12, 0x17000308,   // sq.et..._640 sq.es.sv_664 pt.sl.lt_654 nl.ro..._430\n  0x151002a4, 0x29000409, 0x180d1455, 0x1f001812,   // da.sv.lv_433 fi.ms..._440 is.pt.hu_442 hu.ga..._640\n  0x0d0f1808, 0x2e004013, 0x0c000402, 0x42081055,   // hu.es.pt_443 sl.sq..._650 fi.pl..._220 sv.it.mt_442\n  0x10210b09, 0x1d296602, 0x01000809, 0x192b01a4,   // no.tl.sv_444 af.ms.hr_222 it.en..._440 en.cy.et_433\n  // [3020]\n  0x4b0b2b08, 0x05180d55, 0x29272e09, 0x450b1208,   // cy.no.az_443 pt.hu.fr_442 sq.id.ms_444 cs.no.sk_443\n  0x01171002, 0x152e4008, 0x29000f14, 0x0d002e13,   // sv.ro.en_222 sl.sq.lv_443 es.ms..._660 sq.pt..._650\n  0x10000d09, 0x0d1738a4, 0x14001913, 0x0c8c2b60,   // pt.sv..._440 ca.ro.pt_433 et.is..._650 cy.ht.pl_664\n  0x04160613, 0x18001a12, 0x19001809, 0x0d223809,   // de.lt.fi_665 xxx.hu..._640 hu.et..._440 ca.tr.pt_444\n  // [3030]\n  0x15000f14, 0x2e060312, 0x1e161d13, 0x1c252312,   // es.lv..._660 nl.de.sq_654 hr.lt.sr_665 uk.mk.bg_654\n  0x453f0109, 0x1e1d0d02, 0x15011a09, 0x12064508,   // en.sw.sk_444 pt.hr.sr_222 xxx.en.lv_444 sk.de.cs_443\n  0x08060109, 0x42292709, 0x17083a08, 0x023f1060,   // en.de.it_444 id.ms.mt_444 eu.it.ro_443 sv.sw.da_664\n  0x16173a08, 0x17000813, 0x230e2511, 0x42003f23,   // eu.ro.lt_443 it.ro..._650 mk.ru.uk_653 sw.mt..._880\n  // [3040]\n  0x150c4513, 0x0b100207, 0x27291f60, 0x45141f02,   // sk.pl.lv_665 da.sv.no_432 ga.ms.id_664 ga.is.sk_222\n  0x10002907, 0x271a2102, 0x14004b09, 0x8c002907,   // ms.sv..._420 tl.xxx.id_222 az.is..._440 ms.ht..._420\n  0x66140b07, 0x1e0e1cad, 0x21004002, 0x19000c09,   // no.is.af_432 bg.ru.sr_643 sl.tl..._220 pl.et..._440\n  0x1f000d23, 0x0c001607, 0x1a002e09, 0x03000521,   // pt.ga..._880 lt.pl..._420 sq.xxx..._440 fr.nl..._860\n  // [3050]\n  0x02102b07, 0x14041008, 0x224b1707, 0x1e001909,   // cy.sv.da_432 sv.fi.is_443 ro.az.tr_432 et.sr..._440\n  0x370e1e14, 0x8c000b14, 0x3f003a12, 0x38001613,   // sr.ru.ar_666 no.ht..._660 eu.sw..._640 lt.ca..._650\n  0x04141912, 0x0d002b14, 0x17383a11, 0x14000309,   // et.is.fi_654 cy.pt..._660 eu.ca.ro_653 nl.is..._440\n  0x3f001522, 0x19003f22, 0x03190460, 0x3f1a4209,   // lv.sw..._870 sw.et..._870 fi.et.nl_664 mt.xxx.sw_444\n  // [3060]\n  0x191804a4, 0x224b0612, 0x3f1a2eaf, 0x0c8c4260,   // fi.hu.et_433 de.az.tr_654 sq.xxx.sw_655 mt.ht.pl_664\n  0x22001513, 0x04000f07, 0x0d002e09, 0x4b220609,   // lv.tr..._650 es.fi..._420 sq.pt..._440 de.tr.az_444\n  0x220d0fa4, 0x23001c07, 0x02100bad, 0x0d0f4509,   // es.pt.tr_433 bg.uk..._420 no.sv.da_643 sk.es.pt_444\n  0x061019ad, 0x45151212, 0x01041412, 0x06150307,   // et.sv.de_643 cs.lv.sk_654 is.fi.en_654 nl.lv.de_432\n  // [3070]\n  0x1f001712, 0x1d162709, 0x02011aa4, 0x020d0f08,   // ro.ga..._640 id.lt.hr_444 xxx.en.da_433 es.pt.da_443\n  0x018c1a07, 0x2b000b13, 0x402e2107, 0x19161512,   // xxx.ht.en_432 no.cy..._650 tl.sq.sl_432 lv.lt.et_654\n  0x041519af, 0x1d1e6602, 0x2b004302, 0x040610af,   // et.lv.fi_655 af.sr.hr_222 vi.cy..._220 sv.de.fi_655\n  0x184b2213, 0x02040b07, 0x45001a23, 0x19041013,   // tr.az.hu_665 no.fi.da_432 xxx.sk..._880 sv.fi.et_665\n  // [3080]\n  0x04036608, 0x1a084208, 0x05000612, 0x3a030fa4,   // af.nl.fi_443 mt.it.xxx_443 de.fr..._640 es.nl.eu_433\n  0x8c3f2213, 0x031002a4, 0x14061008, 0x29212202,   // tr.sw.ht_665 da.sv.nl_433 sv.de.is_443 tr.tl.ms_222\n  0x22213f12, 0x0c061809, 0x04100611, 0x0f2b0d08,   // sw.tl.tr_654 hu.de.pl_444 de.sv.fi_653 pt.cy.es_443\n  0x21000223, 0x1e250e07, 0x38402b09, 0x400c4555,   // da.tl..._880 ru.mk.sr_432 cy.sl.ca_444 sk.pl.sl_442\n  // [3090]\n  0x27452902, 0x251e1c11, 0x452e0407, 0x1d1a1e08,   // ms.sk.id_222 bg.sr.mk_653 fi.sq.sk_432 sr.xxx.hr_443\n  0x1a171508, 0x8c001909, 0x0b001823, 0x8c000d02,   // lv.ro.xxx_443 et.ht..._440 hu.no..._880 pt.ht..._220\n  0x19003a13, 0x0b061008, 0x10191860, 0x0b002109,   // eu.et..._650 sv.de.no_443 hu.et.sv_664 tl.no..._440\n  0x8c0b1860, 0x3a002914, 0x02420809, 0x1e1d3802,   // hu.no.ht_664 ms.eu..._660 it.mt.da_444 ca.hr.sr_222\n  // [30a0]\n  0x1a001802, 0x27006608, 0x181d1e13, 0x15008c02,   // hu.xxx..._220 af.id..._430 sr.hr.hu_665 ht.lv..._220\n  0x45000408, 0x04196608, 0x10066608, 0x21000214,   // fi.sk..._430 af.et.fi_443 af.de.sv_443 da.tl..._660\n  0x04001f21, 0x15002109, 0x081a3f09, 0x16003f22,   // ga.fi..._860 tl.lv..._440 sw.xxx.it_444 sw.lt..._870\n  0x15000609, 0x3f292708, 0x3f184208, 0x3a0d3860,   // de.lv..._440 id.ms.sw_443 mt.hu.sw_443 ca.pt.eu_664\n  // [30b0]\n  0x3a061a08, 0x402e1209, 0x04003f08, 0x1f001a14,   // xxx.de.eu_443 cs.sq.sl_444 sw.fi..._430 xxx.ga..._660\n  0x0d050802, 0x20001f14, 0x17162e08, 0x45221902,   // it.fr.pt_222 ga.gl..._660 sq.lt.ro_443 et.tr.sk_222\n  0x43012b08, 0x27192909, 0x3f004212, 0x193f0307,   // cy.en.vi_443 ms.et.id_444 mt.sw..._640 nl.sw.et_432\n  0x21272909, 0x04212709, 0x063f1a14, 0x3a0c0fa4,   // ms.id.tl_444 id.tl.fi_444 xxx.sw.de_666 es.pl.eu_433\n  // [30c0]\n  0x0f003f14, 0x1d163f02, 0x1a003f22, 0x0f003f13,   // sw.es..._660 sw.lt.hr_222 sw.xxx..._870 sw.es..._650\n  0x0d051812, 0x174b0308, 0x1d003f07, 0x02002202,   // hu.fr.pt_654 nl.az.ro_443 sw.hr..._420 tr.da..._220\n  0x010302a4, 0x660203af, 0x66000207, 0x0d001e09,   // da.nl.en_433 nl.da.af_655 da.af..._420 sr.pt..._440\n  0x2e000312, 0x2e0c18a4, 0x0000380a, 0x18000c08,   // nl.sq..._640 hu.pl.sq_433 ca......_500 pl.hu..._430\n  // [30d0]\n  0x19154255, 0x1a003812, 0x08660314, 0x40034507,   // mt.lv.et_442 ca.xxx..._640 nl.af.it_666 sk.nl.sl_432\n  0x3a000408, 0x08004208, 0x050d0f60, 0x05000d22,   // fi.eu..._430 mt.it..._430 es.pt.fr_664 pt.fr..._870\n  0x0d0f0555, 0x20040d09, 0x27194208, 0x1e1d1611,   // fr.es.pt_442 pt.fi.gl_444 mt.et.id_443 lt.hr.sr_653\n  0x40002b02, 0x0f004b09, 0x0c002b23, 0x230e2560,   // cy.sl..._220 az.es..._440 cy.pl..._880 mk.ru.uk_664\n  // [30e0]\n  0x4b4208a4, 0x18000d23, 0x15451612, 0x0b200109,   // it.mt.az_433 pt.hu..._880 lt.sk.lv_654 en.gl.no_444\n  0x050f8c02, 0x0e231ca4, 0x0f3805af, 0x10180b09,   // ht.es.fr_222 bg.uk.ru_433 fr.ca.es_655 no.hu.sv_444\n  0x0b420807, 0x3f080d14, 0x2e002907, 0x04160b09,   // it.mt.no_432 pt.it.sw_666 ms.sq..._420 no.lt.fi_444\n  0x431d1e02, 0x3f000d23, 0x14011f02, 0x4b221413,   // sr.hr.vi_222 pt.sw..._880 ga.en.is_222 is.tr.az_665\n  // [30f0]\n  0x0f0d3807, 0x20001822, 0x3f8c1a09, 0x42008c22,   // ca.pt.es_432 hu.gl..._870 xxx.ht.sw_444 ht.mt..._870\n  0x05000c14, 0x291e1d07, 0x0c180655, 0x0f4b226b,   // pl.fr..._660 hr.sr.ms_432 de.hu.pl_442 tr.az.es_872\n  0x450b1002, 0x16221409, 0x14180612, 0x06161507,   // sv.no.sk_222 is.tr.lt_444 de.hu.is_654 lv.lt.de_432\n  0x272e2902, 0x42172e09, 0x19002b13, 0x191615a4,   // ms.sq.id_222 sq.ro.mt_444 cy.et..._650 lv.lt.et_433\n  // [3100]\n  0x05002e08, 0x451a0107, 0x300e1e07, 0x66420107,   // sq.fr..._430 en.xxx.sk_432 sr.ru.be_432 en.mt.af_432\n  0x453f0602, 0x1d061e02, 0x380f0512, 0x062266a4,   // de.sw.sk_222 sr.de.hr_222 fr.es.ca_654 af.tr.de_433\n  0x03002222, 0x0f380d12, 0x662b03a4, 0x0c003f22,   // tr.nl..._870 pt.ca.es_654 nl.cy.af_433 sw.pl..._870\n  0x3f0c1aa4, 0x8c3f2114, 0x231e0e09, 0x06211460,   // xxx.pl.sw_433 tl.sw.ht_666 ru.sr.uk_444 is.tl.de_664\n  // [3110]\n  0x382e0f08, 0x0b102b12, 0x0b001021, 0x662927af,   // es.sq.ca_443 cy.sv.no_654 sv.no..._860 id.ms.af_655\n  0x21040109, 0x27192908, 0x17001413, 0x17002122,   // en.fi.tl_444 ms.et.id_443 is.ro..._650 tl.ro..._870\n  0x8c002b08, 0x01080508, 0x12003f08, 0x38220daf,   // cy.ht..._430 fr.it.en_443 sw.cs..._430 pt.tr.ca_655\n  0x02082e08, 0x053a2e13, 0x2e000823, 0x1a453fa4,   // sq.it.da_443 sq.eu.fr_665 it.sq..._880 sw.sk.xxx_433\n  // [3120]\n  0x0b002909, 0x1e1d1402, 0x18001709, 0x14000408,   // ms.no..._440 is.hr.sr_222 ro.hu..._440 fi.is..._430\n  0x0c180613, 0x03660213, 0x16001e14, 0x08422707,   // de.hu.pl_665 da.af.nl_665 sr.lt..._660 id.mt.it_432\n  0x45402e02, 0x12018c02, 0x16183aa4, 0x14001622,   // sq.sl.sk_222 ht.en.cs_222 eu.hu.lt_433 lt.is..._870\n  0x380f0d11, 0x1d001423, 0x1e001207, 0x0e1e2309,   // pt.es.ca_653 is.hr..._880 cs.sr..._420 uk.sr.ru_444\n  // [3130]\n  0x0c001e09, 0x170d1608, 0x05001608, 0x0f0d12a4,   // sr.pl..._440 lt.pt.ro_443 lt.fr..._430 cs.pt.es_433\n  0x16004b09, 0x0f003a20, 0x06011a07, 0x433a4209,   // az.lt..._440 eu.es..._850 xxx.en.de_432 mt.eu.vi_444\n  0x8c003a13, 0x0e301ea4, 0x14100b08, 0x16001709,   // eu.ht..._650 sr.be.ru_433 no.sv.is_443 ro.lt..._440\n  0x0f0d0502, 0x451218af, 0x1f001923, 0x1c250e08,   // fr.pt.es_222 hu.cs.sk_655 et.ga..._880 ru.mk.bg_443\n  // [3140]\n  0x190d0b09, 0x40002714, 0x10002214, 0x033a6609,   // no.pt.et_444 id.sl..._660 tr.sv..._660 af.eu.nl_444\n  0x18003a22, 0x03002b08, 0x40001422, 0x05004002,   // eu.hu..._870 cy.nl..._430 is.sl..._870 sl.fr..._220\n  0x2b001909, 0x16043f07, 0x21190408, 0x2e001f13,   // et.cy..._440 sw.fi.lt_432 fi.et.tl_443 ga.sq..._650\n  0x021f1807, 0x1f060f08, 0x45150c13, 0x18210109,   // hu.ga.da_432 es.de.ga_443 pl.lv.sk_665 en.tl.hu_444\n  // [3150]\n  0x141d0b09, 0x27291660, 0x29451e02, 0x29004514,   // no.hr.is_444 lt.ms.id_664 sr.sk.ms_222 sk.ms..._660\n  0x45181213, 0x43001614, 0x27001914, 0x05001811,   // cs.hu.sk_665 lt.vi..._660 et.id..._660 hu.fr..._630\n  0x081e1d09, 0x3a0f38a4, 0x05080408, 0x3f1e1d13,   // hr.sr.it_444 ca.es.eu_433 fi.it.fr_443 hr.sr.sw_665\n  0x25301e12, 0x42452909, 0x3f004509, 0x212b1f12,   // sr.be.mk_654 ms.sk.mt_444 sk.sw..._440 ga.cy.tl_654\n  // [3160]\n  0x01124560, 0x02008c14, 0x8c003811, 0x19182b08,   // sk.cs.en_664 ht.da..._660 ca.ht..._630 cy.hu.et_443\n  0x4b144507, 0x3814181d, 0x18453812, 0x16001821,   // sk.is.az_432 hu.is.ca_852 ca.sk.hu_654 hu.lt..._860\n  0x100266a4, 0x05003f09, 0x030666af, 0x3a292709,   // af.da.sv_433 sw.fr..._440 af.de.nl_655 id.ms.eu_444\n  0x43000f09, 0x02003a09, 0x3f2e3aaf, 0x2e3f0412,   // es.vi..._440 eu.da..._440 eu.sq.sw_655 fi.sw.sq_654\n  // [3170]\n  0x292b8c02, 0x3a0d0f12, 0x01042b08, 0x22001907,   // ht.cy.ms_222 es.pt.eu_654 cy.fi.en_443 et.tr..._420\n  0x45012b02, 0x2e006614, 0x0c000f07, 0x213f0108,   // cy.en.sk_222 af.sq..._660 es.pl..._420 en.sw.tl_443\n  0x02004523, 0x27103f08, 0x25003023, 0x2e004522,   // sk.da..._880 sw.sv.id_443 be.mk..._880 sk.sq..._870\n  0x04004214, 0x27212913, 0x03060c55, 0x1d1e0110,   // mt.fi..._660 ms.tl.id_665 pl.de.nl_442 en.sr.hr_642\n  // [3180]\n  0x166604a4, 0x04000623, 0x450442a4, 0x292e3a02,   // fi.af.lt_433 de.fi..._880 mt.fi.sk_433 eu.sq.ms_222\n  0x45004214, 0x18422ea4, 0x20001023, 0x20003a23,   // mt.sk..._660 sq.mt.hu_433 sv.gl..._880 eu.gl..._880\n  0x03063aa4, 0x1a001023, 0x1d031e02, 0x18380508,   // eu.de.nl_433 sv.xxx..._880 sr.nl.hr_222 fr.ca.hu_443\n  0x14003a23, 0x14221012, 0x38001f10, 0x0d050109,   // eu.is..._880 sv.tr.is_654 ga.ca..._620 en.fr.pt_444\n  // [3190]\n  0x1e1d45a4, 0x451d4008, 0x45063a08, 0x273f2907,   // sk.hr.sr_433 sl.hr.sk_443 eu.de.sk_443 ms.sw.id_432\n  0x294b2702, 0x43000602, 0x45010202, 0x21002714,   // id.az.ms_222 de.vi..._220 da.en.sk_222 id.tl..._660\n  0x231e0e55, 0x29020b02, 0x050d0107, 0x29042708,   // ru.sr.uk_442 no.da.ms_222 en.pt.fr_432 id.fi.ms_443\n  0x29082709, 0x27210b08, 0x16004223, 0x21290b09,   // id.it.ms_444 no.tl.id_443 mt.lt..._880 no.ms.tl_444\n  // [31a0]\n  0x2e4b4212, 0x454b2202, 0x04191709, 0x01000c14,   // mt.az.sq_654 tr.az.sk_222 ro.et.fi_444 pl.en..._660\n  0x1d00400e, 0x08008c14, 0x45120802, 0x29001214,   // sl.hr..._550 ht.it..._660 it.cs.sk_222 cs.ms..._660\n  0x10000f09, 0x221d3aa4, 0x27173802, 0x45120d08,   // es.sv..._440 eu.hr.tr_433 ca.ro.id_222 pt.cs.sk_443\n  0x8c040b09, 0x4b004213, 0x18000213, 0x42000c08,   // no.fi.ht_444 mt.az..._650 da.hu..._650 pl.mt..._430\n  // [31b0]\n  0x20001614, 0x17001022, 0x04001f23, 0x15164508,   // lt.gl..._660 sv.ro..._870 ga.fi..._880 sk.lt.lv_443\n  0x27030c12, 0x1d2e1e09, 0x041f0109, 0x291a2702,   // pl.nl.id_654 sr.sq.hr_444 en.ga.fi_444 id.xxx.ms_222\n  0x0b1202a4, 0x27218c02, 0x27214302, 0x661a1009,   // da.cs.no_433 ht.tl.id_222 vi.tl.id_222 sv.xxx.af_444\n  0x45021007, 0x05001f21, 0x1d0442a4, 0x05001f07,   // sv.da.sk_432 ga.fr..._860 mt.fi.hr_433 ga.fr..._420\n  // [31c0]\n  0x8c060109, 0x3f000614, 0x20000602, 0x060c1a09,   // en.de.ht_444 de.sw..._660 de.gl..._220 xxx.pl.de_444\n  0x063f0308, 0x1e1d1212, 0x2e8c3812, 0x1c250e09,   // nl.sw.de_443 cs.hr.sr_654 ca.ht.sq_654 ru.mk.bg_444\n  0x3f001a13, 0x00002501, 0x251e0e08, 0x2e00051f,   // xxx.sw..._650 mk......_200 ru.sr.mk_443 fr.sq..._840\n  0x19003812, 0x23301e12, 0x45041702, 0x2e3a0408,   // ca.et..._640 sr.be.uk_654 ro.fi.sk_222 fi.eu.sq_443\n  // [31d0]\n  0x04001e09, 0x14004022, 0x29002e21, 0x15004221,   // sr.fi..._440 sl.is..._870 sq.ms..._860 mt.lv..._860\n  0x00001f15, 0x02000414, 0x124b4502, 0x45001413,   // ga......_700 fi.da..._660 sk.az.cs_222 is.sk..._650\n  0x1a004213, 0x45001909, 0x18060412, 0x45016607,   // mt.xxx..._650 et.sk..._440 fi.de.hu_654 af.en.sk_432\n  0x45123812, 0x221e1d14, 0x21423fad, 0x18293aa4,   // ca.cs.sk_654 hr.sr.tr_666 sw.mt.tl_643 eu.ms.hu_433\n  // [31e0]\n  0x66141060, 0x8c002e07, 0x2b003f22, 0x108c0109,   // sv.is.af_664 sq.ht..._420 sw.cy..._870 en.ht.sv_444\n  0x0f0d1809, 0x04001907, 0x02140ba4, 0x420c4555,   // hu.pt.es_444 et.fi..._420 no.is.da_433 sk.pl.mt_442\n  0x0f008c22, 0x43014208, 0x04060cad, 0x0f213a09,   // ht.es..._870 mt.en.vi_443 pl.de.fi_643 eu.tl.es_444\n  0x05001014, 0x66000c12, 0x451e1d14, 0x19060455,   // sv.fr..._660 pl.af..._640 hr.sr.sk_666 fi.de.et_442\n  // [31f0]\n  0x2b001f13, 0x0b000514, 0x18006614, 0x19004014,   // ga.cy..._650 fr.no..._660 af.hu..._660 sl.et..._660\n  0x42002e23, 0x10000607, 0x422e4007, 0x1f004b14,   // sq.mt..._880 de.sv..._420 sl.sq.mt_432 az.ga..._660\n  0x2e004008, 0x29062707, 0x0f002012, 0x10404260,   // sl.sq..._430 id.de.ms_432 gl.es..._640 mt.sl.sv_664\n  0x27298c14, 0x04450608, 0x0c002113, 0x04171914,   // ht.ms.id_666 de.sk.fi_443 tl.pl..._650 et.ro.fi_666\n  // [3200]\n  0x45434002, 0x1d1e1f02, 0x0f000c09, 0x1e024002,   // sl.vi.sk_222 ga.sr.hr_222 pl.es..._440 sl.da.sr_222\n  0x0c124511, 0x1a014508, 0x4b004302, 0x1a002b09,   // sk.cs.pl_653 sk.en.xxx_443 vi.az..._220 cy.xxx..._440\n  0x2b1018a4, 0x21192707, 0x1d161512, 0x0f001014,   // hu.sv.cy_433 id.et.tl_432 lv.lt.hr_654 sv.es..._660\n  0x40000312, 0x19292ba4, 0x43001409, 0x04001a08,   // nl.sl..._640 cy.ms.et_433 is.vi..._440 xxx.fi..._430\n  // [3210]\n  0x14272960, 0x42000607, 0x45001f22, 0x040322a4,   // ms.id.is_664 de.mt..._420 ga.sk..._870 tr.nl.fi_433\n  0x190d0f08, 0x1d031e09, 0x040d0fa4, 0x063a1a02,   // es.pt.et_443 sr.nl.hr_444 es.pt.fi_433 xxx.eu.de_222\n  0x15002213, 0x21001702, 0x27404202, 0x42291808,   // tr.lv..._650 ro.tl..._220 mt.sl.id_222 hu.ms.mt_443\n  0x40001523, 0x12451f11, 0x401942a4, 0x66000802,   // lv.sl..._880 ga.sk.cs_653 mt.et.sl_433 it.af..._220\n  // [3220]\n  0x03106609, 0x0c001522, 0x29001611, 0x45002209,   // af.sv.nl_444 lv.pl..._870 lt.ms..._630 tr.sk..._440\n  0x660302af, 0x10060355, 0x0f274b12, 0x3f001621,   // da.nl.af_655 nl.de.sv_442 az.id.es_654 lt.sw..._860\n  0x1d270402, 0x19002707, 0x3f8c1707, 0x45421502,   // fi.id.hr_222 id.et..._420 ro.ht.sw_432 lv.mt.sk_222\n  0x05001a08, 0x0b008c02, 0x08002907, 0x04008c23,   // xxx.fr..._430 ht.no..._220 ms.it..._420 ht.fi..._880\n  // [3230]\n  0x100206a4, 0x40001707, 0x2e001923, 0x1d2e0b08,   // de.da.sv_433 ro.sl..._420 et.sq..._880 no.sq.hr_443\n  0x0b041909, 0x38001014, 0x05041f12, 0x15001002,   // et.fi.no_444 sv.ca..._660 ga.fi.fr_654 sv.lv..._220\n  0x45000f07, 0x3a0f0107, 0x3f000408, 0x15003a07,   // es.sk..._420 en.es.eu_432 fi.sw..._430 eu.lv..._420\n  0x19381a09, 0x8c000322, 0x4b662209, 0x20380107,   // xxx.ca.et_444 nl.ht..._870 tr.af.az_444 en.ca.gl_432\n  // [3240]\n  0x43001714, 0x1e004223, 0x2b008c09, 0x29270d02,   // ro.vi..._660 mt.sr..._880 ht.cy..._440 pt.id.ms_222\n  0x0d001f21, 0x43001702, 0x17000612, 0x380f05a4,   // ga.pt..._860 ro.vi..._220 de.ro..._640 fr.es.ca_433\n  0x14003823, 0x1d8c0308, 0x020666a4, 0x21014208,   // ca.is..._880 nl.ht.hr_443 af.de.da_433 mt.en.tl_443\n  0x04020b60, 0x12002108, 0x0c002b07, 0x2b383a60,   // no.da.fi_664 tl.cs..._430 cy.pl..._420 eu.ca.cy_664\n  // [3250]\n  0x12001409, 0x1c300e12, 0x0c001f12, 0x021921a4,   // is.cs..._440 ru.be.bg_654 ga.pl..._640 tl.et.da_433\n  0x21001e02, 0x291d1802, 0x15041960, 0x38000b08,   // sr.tl..._220 hu.hr.ms_222 et.fi.lv_664 no.ca..._430\n  0x38451255, 0x01296609, 0x0b006613, 0x12000f07,   // cs.sk.ca_442 af.ms.en_444 af.no..._650 es.cs..._420\n  0x1d401502, 0x1a002023, 0x19001f08, 0x1e1d2e08,   // lv.sl.hr_222 gl.xxx..._880 ga.et..._430 sq.hr.sr_443\n  // [3260]\n  0x27006612, 0x14002221, 0x2e003813, 0x3a2e4509,   // af.id..._640 tr.is..._860 ca.sq..._650 sk.sq.eu_444\n  0x8c053808, 0x22002e12, 0x15381760, 0x12004b02,   // ca.fr.ht_443 sq.tr..._640 ro.ca.lv_664 az.cs..._220\n  0x17272909, 0x05000d11, 0x3f002713, 0x224b1a09,   // ms.id.ro_444 pt.fr..._630 id.sw..._650 xxx.az.tr_444\n  0x17660312, 0x0e1c3012, 0x291018a4, 0x03000c14,   // nl.af.ro_654 be.bg.ru_654 hu.sv.ms_433 pl.nl..._660\n  // [3270]\n  0x14450f55, 0x66004b02, 0x19000808, 0x040b0208,   // es.sk.is_442 az.af..._220 it.et..._430 da.no.fi_443\n  0x1d050107, 0x02004214, 0x1f004314, 0x27000b14,   // en.fr.hr_432 mt.da..._660 vi.ga..._660 no.id..._660\n  0x15001814, 0x3f001508, 0x06056608, 0x18000408,   // hu.lv..._660 lv.sw..._430 af.fr.de_443 fi.hu..._430\n  0x2b000621, 0x1e018ca4, 0x42003f09, 0x03002b09,   // de.cy..._860 ht.en.sr_433 sw.mt..._440 cy.nl..._440\n  // [3280]\n  0x2b008c13, 0x23300e11, 0x1e233008, 0x12001413,   // ht.cy..._650 ru.be.uk_653 be.uk.sr_443 is.cs..._650\n  0x66001f09, 0x17006609, 0x0d003812, 0x1d000408,   // ga.af..._440 af.ro..._440 ca.pt..._640 fi.hr..._430\n  0x161e1d08, 0x02222102, 0x04001413, 0x301c0e13,   // hr.sr.lt_443 tl.tr.da_222 is.fi..._650 ru.bg.be_665\n  0x4b000508, 0x0d180fa4, 0x151a1712, 0x18001d09,   // fr.az..._430 es.hu.pt_433 ro.xxx.lv_654 hr.hu..._440\n  // [3290]\n  0x0d172e55, 0x02210b07, 0x2e170da4, 0x05171fa4,   // sq.ro.pt_442 no.tl.da_432 pt.ro.sq_433 ga.ro.fr_433\n  0x451205a4, 0x0d1f0f07, 0x45000513, 0x011f1755,   // fr.cs.sk_433 es.ga.pt_432 fr.sk..._650 ro.ga.en_442\n  0x4b003f22, 0x27004308, 0x1f006608, 0x29000821,   // sw.az..._870 vi.id..._430 af.ga..._430 it.ms..._860\n  0x29152709, 0x01178c02, 0x03011a09, 0x430f0107,   // id.lv.ms_444 ht.ro.en_222 xxx.en.nl_444 en.es.vi_432\n  // [32a0]\n  0x20008c02, 0x8c2e3f12, 0x1d1e2902, 0x1a183f08,   // ht.gl..._220 sw.sq.ht_654 ms.sr.hr_222 sw.hu.xxx_443\n  0x22041a08, 0x18002b08, 0x301c0e09, 0x1d101f02,   // xxx.fi.tr_443 cy.hu..._430 ru.bg.be_444 ga.sv.hr_222\n  0x40002e07, 0x29170802, 0x1f001713, 0x10140109,   // sq.sl..._420 it.ro.ms_222 ro.ga..._650 en.is.sv_444\n  0x0c008c13, 0x45001220, 0x12144560, 0x190c16a4,   // ht.pl..._650 cs.sk..._850 sk.is.cs_664 lt.pl.et_433\n  // [32b0]\n  0x1d1a2102, 0x14451808, 0x451d2702, 0x16006614,   // tl.xxx.hr_222 hu.sk.is_443 id.hr.sk_222 af.lt..._660\n  0x27004b02, 0x1c0e2507, 0x45001f13, 0x1f008c22,   // az.id..._220 mk.ru.bg_432 ga.sk..._650 ht.ga..._870\n  0x1f0c2707, 0x0d123860, 0x3f2b4208, 0x293a1802,   // id.pl.ga_432 ca.cs.pt_664 mt.cy.sw_443 hu.eu.ms_222\n  0x0e231e55, 0x1e2b1d02, 0x200f0d14, 0x3f222908,   // sr.uk.ru_442 hr.cy.sr_222 pt.es.gl_666 ms.tr.sw_443\n  // [32c0]\n  0x221810a4, 0x45000508, 0x22141012, 0x380d1709,   // sv.hu.tr_433 fr.sk..._430 sv.is.tr_654 ro.pt.ca_444\n  0x200d0f13, 0x05001622, 0x66011fa4, 0x19450107,   // es.pt.gl_665 lt.fr..._870 ga.en.af_433 en.sk.et_432\n  0x3f006612, 0x2e001821, 0x27293fa4, 0x061a3f12,   // af.sw..._640 hu.sq..._860 sw.ms.id_433 sw.xxx.de_654\n  0x294b2260, 0x15002214, 0x0f0c0109, 0x663f1aa4,   // tr.az.ms_664 tr.lv..._660 en.pl.es_444 xxx.sw.af_433\n  // [32d0]\n  0x43001f14, 0x1a450107, 0x290214a4, 0x0b1f2ba4,   // ga.vi..._660 en.sk.xxx_432 is.da.ms_433 cy.ga.no_433\n  0x12004208, 0x10001a12, 0x27190402, 0x16001f14,   // mt.cs..._430 xxx.sv..._640 fi.et.id_222 ga.lt..._660\n  0x19180813, 0x17272913, 0x0b008c09, 0x1c1e0ea4,   // it.hu.et_665 ms.id.ro_665 ht.no..._440 ru.sr.bg_433\n  0x16270308, 0x042e1908, 0x40000d02, 0x08001e09,   // nl.id.lt_443 et.sq.fi_443 pt.sl..._220 sr.it..._440\n  // [32e0]\n  0x12001d14, 0x18001514, 0x0f0d05a4, 0x18050da4,   // hr.cs..._660 lv.hu..._660 fr.pt.es_433 pt.fr.hu_433\n  0x18001d02, 0x291803a4, 0x2b001213, 0x8c2b3fad,   // hr.hu..._220 nl.hu.ms_433 cs.cy..._650 sw.cy.ht_643\n  0x21006609, 0x4b218c09, 0x19000113, 0x42002107,   // af.tl..._440 ht.tl.az_444 en.et..._650 tl.mt..._420\n  0x38036614, 0x1e402709, 0x18004322, 0x3a1a0460,   // af.nl.ca_666 id.sl.sr_444 vi.hu..._870 fi.xxx.eu_664\n  // [32f0]\n  0x14184308, 0x0b021412, 0x14124312, 0x0f0d2014,   // vi.hu.is_443 is.da.no_654 vi.cs.is_654 gl.pt.es_666\n  0x22004023, 0x18004307, 0x8c000423, 0x27000513,   // sl.tr..._880 vi.hu..._420 fi.ht..._880 fr.id..._650\n  0x156617a4, 0x02004208, 0x02001a13, 0x17406611,   // ro.af.lv_433 mt.da..._430 xxx.da..._650 af.sl.ro_653\n  0x42002e02, 0x3f000308, 0x058c1207, 0x128c0507,   // sq.mt..._220 nl.sw..._430 cs.ht.fr_432 fr.ht.cs_432\n  // [3300]\n  0x05221a08, 0x06101908, 0x45181208, 0x0c174509,   // xxx.tr.fr_443 et.sv.de_443 cs.hu.sk_443 sk.ro.pl_444\n  0x04221508, 0x1f0c42a4, 0x04152260, 0x1e000d09,   // lv.tr.fi_443 mt.pl.ga_433 tr.lv.fi_664 pt.sr..._440\n  0x402e1207, 0x021d1008, 0x020614a4, 0x16142b13,   // cs.sq.sl_432 sv.hr.da_443 is.de.da_433 cy.is.lt_665\n  0x0c002209, 0x16080109, 0x03004313, 0x20000c23,   // tr.pl..._440 en.it.lt_444 vi.nl..._650 pl.gl..._880\n  // [3310]\n  0x1d002707, 0x3f002023, 0x380f1912, 0x45104202,   // id.hr..._420 gl.sw..._880 et.es.ca_654 mt.sv.sk_222\n  0x3f4518ad, 0x45381fa4, 0x1e000414, 0x4b042e12,   // hu.sk.sw_643 ga.ca.sk_433 fi.sr..._660 sq.fi.az_654\n  0x040f2707, 0x0c000d12, 0x2e001502, 0x1f450d1f,   // id.es.fi_432 pt.pl..._640 lv.sq..._220 pt.sk.ga_864\n  0x01003f08, 0x19014208, 0x17224b09, 0x10061809,   // sw.en..._430 mt.en.et_443 az.tr.ro_444 hu.de.sv_444\n  // [3320]\n  0x38001a02, 0x1d004011, 0x3a001f02, 0x153f1a09,   // xxx.ca..._220 sl.hr..._630 ga.eu..._220 xxx.sw.lv_444\n  0x19001708, 0x1d1e1512, 0x05003811, 0x04002e23,   // ro.et..._430 lv.sr.hr_654 ca.fr..._630 sq.fi..._880\n  0x1f3f42a4, 0x22081708, 0x20001702, 0x161d1e07,   // mt.sw.ga_433 ro.it.tr_443 ro.gl..._220 sr.hr.lt_432\n  0x2b660255, 0x18053814, 0x1a000212, 0x10004b11,   // da.af.cy_442 ca.fr.hu_666 da.xxx..._640 az.sv..._630\n  // [3330]\n  0x19660314, 0x120f1408, 0x01001912, 0x251c2360,   // nl.af.et_666 is.es.cs_443 et.en..._640 uk.bg.mk_664\n  0x22000123, 0x21002223, 0x42034507, 0x14002b22,   // en.tr..._880 tr.tl..._880 sk.nl.mt_432 cy.is..._870\n  0x1d191e02, 0x2b000123, 0x04002923, 0x14000113,   // sr.et.hr_222 en.cy..._880 ms.fi..._880 en.is..._650\n  0x66060313, 0x230e1c11, 0x2e001909, 0x271d4202,   // nl.de.af_665 bg.ru.uk_653 et.sq..._440 mt.hr.id_222\n  // [3340]\n  0x27002e02, 0x1e003802, 0x450f0d08, 0x200f4509,   // sq.id..._220 ca.sr..._220 pt.es.sk_443 sk.es.gl_444\n  0x10003a13, 0x02103a07, 0x8c000807, 0x0d452709,   // eu.sv..._650 eu.sv.da_432 it.ht..._420 id.sk.pt_444\n  0x200f38af, 0x454b3f02, 0x400f1209, 0x0f0d1013,   // ca.es.gl_655 sw.az.sk_222 cs.es.sl_444 sv.pt.es_665\n  0x0d0f0807, 0x16124514, 0x451d1e55, 0x3f000823,   // it.es.pt_432 sk.cs.lt_666 sr.hr.sk_442 it.sw..._880\n  // [3350]\n  0x21004213, 0x194b4509, 0x8c224b08, 0x210c2909,   // mt.tl..._650 sk.az.et_444 az.tr.ht_443 ms.pl.tl_444\n  0x0e1c1e12, 0x19001007, 0x04000214, 0x38451213,   // sr.bg.ru_654 sv.et..._420 da.fi..._660 cs.sk.ca_665\n  0x15041913, 0x8c004307, 0x2e272912, 0x38420860,   // et.fi.lv_665 vi.ht..._420 ms.id.sq_654 it.mt.ca_664\n  0x06100302, 0x2e180309, 0x29012b02, 0x05008c07,   // nl.sv.de_222 nl.hu.sq_444 cy.en.ms_222 ht.fr..._420\n  // [3360]\n  0x140f0d08, 0x3a161709, 0x01211a07, 0x181f4512,   // pt.es.is_443 ro.lt.eu_444 xxx.tl.en_432 sk.ga.hu_654\n  0x43012e08, 0x12384508, 0x19272913, 0x29200107,   // sq.en.vi_443 sk.ca.cs_443 ms.id.et_665 en.gl.ms_432\n  0x1f4b2209, 0x278c1e02, 0x3a3f2909, 0x2e051809,   // tr.az.ga_444 sr.ht.id_222 ms.sw.eu_444 hu.fr.sq_444\n  0x05122e07, 0x22003813, 0x0b001514, 0x43002707,   // sq.cs.fr_432 ca.tr..._650 lv.no..._660 id.vi..._420\n  // [3370]\n  0x0e1c25a4, 0x0b002713, 0x18054509, 0x27290402,   // mk.bg.ru_433 id.no..._650 sk.fr.hu_444 fi.ms.id_222\n  0x27060109, 0x05121812, 0x3a060213, 0x18141f13,   // en.de.id_444 hu.cs.fr_654 da.de.eu_665 ga.is.hu_665\n  0x1e002102, 0x3f221a07, 0x42000409, 0x10001e09,   // tl.sr..._220 xxx.tr.sw_432 fi.mt..._440 sr.sv..._440\n  0x181f38af, 0x27084202, 0x00002001, 0x27000814,   // ca.ga.hu_655 mt.it.id_222 gl......_200 it.id..._660\n  // [3380]\n  0x0b003a09, 0x01438c02, 0x3a1066a4, 0x18120613,   // eu.no..._440 ht.vi.en_222 af.sv.eu_433 de.cs.hu_665\n  0x4b003a07, 0x8c101409, 0x3a060107, 0x38000613,   // eu.az..._420 is.sv.ht_444 en.de.eu_432 de.ca..._650\n  0x4b002023, 0x12030b07, 0x04213aa4, 0x0d380f07,   // gl.az..._880 no.nl.cs_432 eu.tl.fi_433 es.ca.pt_432\n  0x45008c08, 0x12194009, 0x38124509, 0x080b1955,   // ht.sk..._430 sl.et.cs_444 sk.cs.ca_444 et.no.it_442\n  // [3390]\n  0x21001514, 0x05000821, 0x0d380f12, 0x19021f12,   // lv.tl..._660 it.fr..._860 es.ca.pt_654 ga.da.et_654\n  0x06190413, 0x22184baf, 0x03000408, 0x1e0e2312,   // fi.et.de_665 az.hu.tr_655 fi.nl..._430 uk.ru.sr_654\n  0x03001623, 0x66031914, 0x27054309, 0x06224b60,   // lt.nl..._880 et.nl.af_666 vi.fr.id_444 az.tr.de_664\n  0x0f001209, 0x12000509, 0x043f2e08, 0x29164002,   // cs.es..._440 fr.cs..._440 sq.sw.fi_443 sl.lt.ms_222\n  // [33a0]\n  0x14001714, 0x02002b21, 0x663a0107, 0x2b011008,   // ro.is..._660 cy.da..._860 en.eu.af_432 sv.en.cy_443\n  0x020b01a4, 0x2b004014, 0x200d0109, 0x43221a08,   // en.no.da_433 sl.cy..._660 en.pt.gl_444 xxx.tr.vi_443\n  0x2b8c6607, 0x17000623, 0x164029a4, 0x3a291812,   // af.ht.cy_432 de.ro..._880 ms.sl.lt_433 hu.ms.eu_654\n  0x19180107, 0x66000311, 0x1e1d43af, 0x0d003810,   // en.hu.et_432 nl.af..._630 vi.hr.sr_655 ca.pt..._620\n  // [33b0]\n  0x03000d09, 0x10386609, 0x27003809, 0x1a660360,   // pt.nl..._440 af.ca.sv_444 ca.id..._440 nl.af.xxx_664\n  0x45291002, 0x0d3820ab, 0x0f1f0da4, 0x19142255,   // sv.ms.sk_222 gl.ca.pt_621 pt.ga.es_433 tr.is.et_442\n  0x15220109, 0x66003f08, 0x3f2b0d08, 0x8c162709,   // en.tr.lv_444 sw.af..._430 pt.cy.sw_443 id.lt.ht_444\n  0x4b003a12, 0x42082009, 0x04003f14, 0x1e001914,   // eu.az..._640 gl.it.mt_444 sw.fi..._660 et.sr..._660\n  // [33c0]\n  0x0f190107, 0x45171a02, 0x1c233014, 0x45002913,   // en.et.es_432 xxx.ro.sk_222 be.uk.bg_666 ms.sk..._650\n  0x1d184002, 0x40002e23, 0x40002e09, 0x291d3f02,   // sl.hu.hr_222 sq.sl..._880 sq.sl..._440 sw.hr.ms_222\n  0x17001002, 0x19040612, 0x0c160207, 0x17050302,   // sv.ro..._220 de.fi.et_654 da.lt.pl_432 nl.fr.ro_222\n  0x14182e07, 0x10001609, 0x42000422, 0x19180414,   // sq.hu.is_432 lt.sv..._440 fi.mt..._870 fi.hu.et_666\n  // [33d0]\n  0x04420813, 0x2e001913, 0x4b224008, 0x19044212,   // it.mt.fi_665 et.sq..._650 sl.tr.az_443 mt.fi.et_654\n  0x01380f08, 0x03100207, 0x1e1d0814, 0x22190109,   // es.ca.en_443 da.sv.nl_432 it.hr.sr_666 en.et.tr_444\n  0x3a0366af, 0x1d1e0814, 0x1d1e43a4, 0x0d001213,   // af.nl.eu_655 it.sr.hr_666 vi.sr.hr_433 cs.pt..._650\n  0x1d151ea4, 0x15000613, 0x8c194baf, 0x05001813,   // sr.lv.hr_433 de.lv..._650 az.et.ht_655 hu.fr..._650\n  // [33e0]\n  0x38190c55, 0x1d000c23, 0x8c051460, 0x40000123,   // pl.et.ca_442 pl.hr..._880 is.fr.ht_664 en.sl..._880\n  0x18002714, 0x1e1d45af, 0x18060da4, 0x060b10a4,   // id.hu..._660 sk.hr.sr_655 pt.de.hu_433 sv.no.de_433\n  0x45060802, 0x08002112, 0x17003a12, 0x22000f14,   // it.de.sk_222 tl.it..._640 eu.ro..._640 es.tr..._660\n  0x18000d07, 0x43660360, 0x0d063a13, 0x30002308,   // pt.hu..._420 nl.af.vi_664 eu.de.pt_665 uk.be..._430\n  // [33f0]\n  0x101827a4, 0x011842af, 0x0e1c3009, 0x1d0f1702,   // id.hu.sv_433 mt.hu.en_655 be.bg.ru_444 ro.es.hr_222\n  0x43210808, 0x04002e21, 0x4b221955, 0x011766a4,   // it.tl.vi_443 sq.fi..._860 et.tr.az_442 af.ro.en_433\n  0x66151207, 0x16001723, 0x1e003a14, 0x1d084202,   // cs.lv.af_432 ro.lt..._880 eu.sr..._660 mt.it.hr_222\n  0x043a1714, 0x05001523, 0x40161509, 0x29000c13,   // ro.eu.fi_666 lv.fr..._880 lv.lt.sl_444 pl.ms..._650\n\n  // [3400]\n  0x21228c60, 0x0f0d1fb2, 0x14004521, 0x43003813,   // ht.tr.tl_664 ga.pt.es_732 sk.is..._860 ca.vi..._650\n  0x103a42a4, 0x40001009, 0x21000308, 0x08002213,   // mt.eu.sv_433 sv.sl..._440 nl.tl..._430 tr.it..._650\n  0x033805a4, 0x06020b07, 0x18451f12, 0x16172112,   // fr.ca.nl_433 no.da.de_432 ga.sk.hu_654 tl.ro.lt_654\n  0x66001202, 0x2b001008, 0x0f1f3814, 0x120b1a02,   // cs.af..._220 sv.cy..._430 ca.ga.es_666 xxx.no.cs_222\n  // [3410]\n  0x45401002, 0x22214ba4, 0x451666af, 0x66212707,   // sv.sl.sk_222 az.tl.tr_433 af.lt.sk_655 id.tl.af_432\n  0x3f041913, 0x19043f60, 0x42002b12, 0x40450c08,   // et.fi.sw_665 sw.fi.et_664 cy.mt..._640 pl.sk.sl_443\n  0x27004014, 0x3f002b12, 0x10123fa4, 0x00005c15,   // sl.id..._660 cy.sw..._640 sw.cs.sv_433 yi......_700\n  0x02102b08, 0x273f2914, 0x1c0e3060, 0x400f1608,   // cy.sv.da_443 ms.sw.id_666 be.ru.bg_664 lt.es.sl_443\n  // [3420]\n  0x2b006611, 0x273a2960, 0x8c002e1d, 0x66031012,   // af.cy..._630 ms.eu.id_664 sq.ht..._820 sv.nl.af_654\n  0x0d210faf, 0x08001622, 0x04004223, 0x291f2102,   // es.tl.pt_655 lt.it..._870 mt.fi..._880 tl.ga.ms_222\n  0x210c3f08, 0x0c036608, 0x0e232560, 0x02001011,   // sw.pl.tl_443 af.nl.pl_443 mk.uk.ru_664 sv.da..._630\n  0x40004b02, 0x25002320, 0x21064507, 0x8c220b09,   // az.sl..._220 uk.mk..._850 sk.de.tl_432 no.tr.ht_444\n  // [3430]\n  0x1e302360, 0x06030107, 0x21001508, 0x661903a4,   // uk.be.sr_664 en.nl.de_432 lv.tl..._430 nl.et.af_433\n  0x192e2113, 0x454b1502, 0x14060255, 0x04661908,   // tl.sq.et_665 lv.az.sk_222 da.de.is_442 et.af.fi_443\n  0x01000b08, 0x3f002222, 0x19041714, 0x224b27a4,   // no.en..._430 tr.sw..._870 ro.fi.et_666 id.az.tr_433\n  0x1c0e1e13, 0x06000d14, 0x22000209, 0x3a002902,   // sr.ru.bg_665 pt.de..._660 da.tr..._440 ms.eu..._220\n  // [3440]\n  0x3f4b22a4, 0x30251c12, 0x0d080107, 0x4b001514,   // tr.az.sw_433 bg.mk.be_654 en.it.pt_432 lv.az..._660\n  0x08004b14, 0x17000812, 0x45122202, 0x12036602,   // az.it..._660 it.ro..._640 tr.cs.sk_222 af.nl.cs_222\n  0x061a42a4, 0x3a000807, 0x02001411, 0x10458c08,   // mt.xxx.de_433 it.eu..._420 is.da..._630 ht.sk.sv_443\n  0x14001912, 0x12004302, 0x0f011702, 0x3f004507,   // et.is..._640 vi.cs..._220 ro.en.es_222 sk.sw..._420\n  // [3450]\n  0x15000312, 0x14000d12, 0x45011802, 0x3a002123,   // nl.lv..._640 pt.is..._640 hu.en.sk_222 tl.eu..._880\n  0x2e4b4255, 0x1e302307, 0x2e000808, 0x08174508,   // mt.az.sq_442 uk.be.sr_432 it.sq..._430 sk.ro.it_443\n  0x8c212708, 0x15431a02, 0x42003a13, 0x27213f07,   // id.tl.ht_443 xxx.vi.lv_222 eu.mt..._650 sw.tl.id_432\n  0x1d081e02, 0x1d2e4002, 0x301c2512, 0x38180513,   // sr.it.hr_222 sl.sq.hr_222 mk.bg.be_654 fr.hu.ca_665\n  // [3460]\n  0x45150b09, 0x0c064214, 0x19000f09, 0x03451512,   // no.lv.sk_444 mt.de.pl_666 es.et..._440 lv.sk.nl_654\n  0x02001502, 0x45001707, 0x05002702, 0x01004b08,   // lv.da..._220 ro.sk..._420 id.fr..._220 az.en..._430\n  0x06420812, 0x16001a13, 0x27294008, 0x3a1a3fa4,   // it.mt.de_654 xxx.lt..._650 sl.ms.id_443 sw.xxx.eu_433\n  0x02061014, 0x1e002202, 0x042e17a4, 0x17021f08,   // sv.de.da_666 tr.sr..._220 ro.sq.fi_433 ga.da.ro_443\n  // [3470]\n  0x1e001609, 0x1f003a23, 0x1f3a0109, 0x17001f09,   // lt.sr..._440 eu.ga..._880 en.eu.ga_444 ga.ro..._440\n  0x8c010302, 0x251e0e60, 0x19044009, 0x1e451d08,   // nl.en.ht_222 ru.sr.mk_664 sl.fi.et_444 hr.sk.sr_443\n  0x08162b07, 0x45192102, 0x0f162b07, 0x163f0408,   // cy.lt.it_432 tl.et.sk_222 cy.lt.es_432 fi.sw.lt_443\n  0x4b2e3fa4, 0x10004507, 0x0e301caf, 0x02191608,   // sw.sq.az_433 sk.sv..._420 bg.be.ru_655 lt.et.da_443\n  // [3480]\n  0x400c42a4, 0x66020b09, 0x03140212, 0x04293f09,   // mt.pl.sl_433 no.da.af_444 da.is.nl_654 sw.ms.fi_444\n  0x27224b55, 0x1e036608, 0x15001907, 0x38003f02,   // az.tr.id_442 af.nl.sr_443 et.lv..._420 sw.ca..._220\n  0x2e1f3f07, 0x3f000102, 0x171d40a4, 0x40002113,   // sw.ga.sq_432 en.sw..._220 sl.hr.ro_433 tl.sl..._650\n  0x1d420802, 0x45402702, 0x2b000322, 0x12012702,   // it.mt.hr_222 id.sl.sk_222 nl.cy..._870 id.en.cs_222\n  // [3490]\n  0x1a002b22, 0x0f003f08, 0x0c081760, 0x100b1814,   // cy.xxx..._870 sw.es..._430 ro.it.pl_664 hu.no.sv_666\n  0x180b1060, 0x2e002109, 0x18102eaf, 0x66001612,   // sv.no.hu_664 tl.sq..._440 sq.sv.hu_655 lt.af..._640\n  0x180b1012, 0x18102e08, 0x23003020, 0x22272907,   // sv.no.hu_654 sq.sv.hu_443 be.uk..._850 ms.id.tr_432\n  0x0c001402, 0x22000409, 0x02213f08, 0x2b451208,   // is.pl..._220 fi.tr..._440 sw.tl.da_443 cs.sk.cy_443\n  // [34a0]\n  0x12001802, 0x06000d13, 0x3a002e23, 0x170f0107,   // hu.cs..._220 pt.de..._650 sq.eu..._880 en.es.ro_432\n  0x0c004b14, 0x0f380d02, 0x0f4b2209, 0x3f272960,   // az.pl..._660 pt.ca.es_222 tr.az.es_444 ms.id.sw_664\n  0x02661414, 0x1c002511, 0x30251e12, 0x29270602,   // is.af.da_666 mk.bg..._630 sr.mk.be_654 de.id.ms_222\n  0x4b220611, 0x12404510, 0x18001608, 0x27182907,   // de.tr.az_653 sk.sl.cs_642 lt.hu..._430 ms.hu.id_432\n  // [34b0]\n  0x228c2112, 0x21228c14, 0x29000621, 0x251c0e09,   // tl.ht.tr_654 ht.tr.tl_666 de.ms..._860 ru.bg.mk_444\n  0x21001912, 0x22020109, 0x05100b08, 0x02060b09,   // et.tl..._640 en.da.tr_444 no.sv.fr_443 no.de.da_444\n  0x2b001022, 0x294b2212, 0x058c4b60, 0x450c0107,   // sv.cy..._870 tr.az.ms_654 az.ht.fr_664 en.pl.sk_432\n  0x0d004023, 0x451d2102, 0x03100209, 0x2b0c1208,   // sl.pt..._880 tl.hr.sk_222 da.sv.nl_444 cs.pl.cy_443\n  // [34c0]\n  0x15030107, 0x012b8ca4, 0x66032108, 0x2b000c21,   // en.nl.lv_432 ht.cy.en_433 tl.nl.af_443 pl.cy..._860\n  0x3f228c55, 0x05660313, 0x0c3f0107, 0x8c036655,   // ht.tr.sw_442 nl.af.fr_665 en.sw.pl_432 af.nl.ht_442\n  0x45061402, 0x402e03a4, 0x40002213, 0x08000508,   // is.de.sk_222 nl.sq.sl_433 tr.sl..._650 fr.it..._430\n  0x431f2b08, 0x0d0f1712, 0x1a213f08, 0x17080113,   // cy.ga.vi_443 ro.es.pt_654 sw.tl.xxx_443 en.it.ro_665\n  // [34d0]\n  0x0c451255, 0x08000522, 0x2b050809, 0x3a3f2155,   // cs.sk.pl_442 fr.it..._870 it.fr.cy_444 tl.sw.eu_442\n  0x0b001f14, 0x0b171f08, 0x1d003f09, 0x1e001002,   // ga.no..._660 ga.ro.no_443 sw.hr..._440 sv.sr..._220\n  0x14042108, 0x1a3a1912, 0x3a0f38af, 0x0e1e2555,   // tl.fi.is_443 et.eu.xxx_654 ca.es.eu_655 mk.sr.ru_442\n  0x08002e13, 0x4b221812, 0x06221812, 0x1d0b2e02,   // sq.it..._650 hu.tr.az_654 hu.tr.de_654 sq.no.hr_222\n  // [34e0]\n  0x4b2218af, 0x1e230ea4, 0x29001d13, 0x8c4b2909,   // hu.tr.az_655 ru.uk.sr_433 hr.ms..._650 ms.az.ht_444\n  0x22001812, 0x15002908, 0x1e0e1c11, 0x0b001809,   // hu.tr..._640 ms.lv..._430 bg.ru.sr_653 hu.no..._440\n  0x12044507, 0x29004008, 0x17004023, 0x3a002b08,   // sk.fi.cs_432 sl.ms..._430 sl.ro..._880 cy.eu..._430\n  0x30001c22, 0x121d4007, 0x40002914, 0x45064213,   // bg.be..._870 sl.hr.cs_432 ms.sl..._660 mt.de.sk_665\n  // [34f0]\n  0x02001202, 0x10180b08, 0x3f182b12, 0x38004308,   // cs.da..._220 no.hu.sv_443 cy.hu.sw_654 vi.ca..._430\n  0x66010307, 0x0c451202, 0x273a2ba4, 0x02000622,   // nl.en.af_432 cs.sk.pl_222 cy.eu.id_433 de.da..._870\n  0x0c451e09, 0x401e1d10, 0x660b1008, 0x27293aa4,   // sr.sk.pl_444 hr.sr.sl_642 sv.no.af_443 eu.ms.id_433\n  0x221516a4, 0x2e292708, 0x011a1009, 0x1e233012,   // lt.lv.tr_433 id.ms.sq_443 sv.xxx.en_444 be.uk.sr_654\n  // [3500]\n  0x4b000609, 0x8c451207, 0x273a0408, 0x3a120d09,   // de.az..._440 cs.sk.ht_432 fi.eu.id_443 pt.cs.eu_444\n  0x21272908, 0x04190609, 0x161d4014, 0x27001913,   // ms.id.tl_443 de.et.fi_444 sl.hr.lt_666 et.id..._650\n  0x45004313, 0x1f1a4209, 0x121d4504, 0x1d0c2e55,   // vi.sk..._650 mt.xxx.ga_444 sk.hr.cs_332 sq.pl.hr_442\n  0x0f451412, 0x1e001623, 0x21162909, 0x23251e09,   // is.sk.es_654 lt.sr..._880 ms.lt.tl_444 sr.mk.uk_444\n  // [3510]\n  0x450c1213, 0x15191609, 0x29008c22, 0x14014502,   // cs.pl.sk_665 lt.et.lv_444 ht.ms..._870 sk.en.is_222\n  0x12451402, 0x27032907, 0x1a004523, 0x29008c23,   // is.sk.cs_222 ms.nl.id_432 sk.xxx..._880 ht.ms..._880\n  0x1d1a0109, 0x1f003f22, 0x144b0107, 0x171f0b09,   // en.xxx.hr_444 sw.ga..._870 en.az.is_432 no.ga.ro_444\n  0x06140ba4, 0x1e000307, 0x66030608, 0x0b006623,   // no.is.de_433 nl.sr..._420 de.nl.af_443 af.no..._880\n  // [3520]\n  0x1e300e13, 0x06002708, 0x3f171aa4, 0x02004302,   // ru.be.sr_665 id.de..._430 xxx.ro.sw_433 vi.da..._220\n  0x0f1a1855, 0x66001708, 0x10000c13, 0x4b002e07,   // hu.xxx.es_442 ro.af..._430 pl.sv..._650 sq.az..._420\n  0x161915a4, 0x22020b08, 0x2e1d6608, 0x0e1e3012,   // lv.et.lt_433 no.da.tr_443 af.hr.sq_443 be.sr.ru_654\n  0x1a001608, 0x222e0b07, 0x420c0b07, 0x043f21a4,   // lt.xxx..._430 no.sq.tr_432 no.pl.mt_432 tl.sw.fi_433\n  // [3530]\n  0x0b002e08, 0x8c004b12, 0x16001013, 0x213a3f13,   // sq.no..._430 az.ht..._640 sv.lt..._650 sw.eu.tl_665\n  0x1e401d11, 0x22272911, 0x16124512, 0x04001607,   // hr.sl.sr_653 ms.id.tr_653 sk.cs.lt_654 lt.fi..._420\n  0x1e000e22, 0x06000212, 0x0b221812, 0x27000d07,   // ru.sr..._870 da.de..._640 hu.tr.no_654 pt.id..._420\n  0x4b001614, 0x19163fa4, 0x1f292714, 0x12008c23,   // lt.az..._660 sw.lt.et_433 id.ms.ga_666 ht.cs..._880\n  // [3540]\n  0x16004b02, 0x45022e02, 0x02030b08, 0x27000d13,   // az.lt..._220 sq.da.sk_222 no.nl.da_443 pt.id..._650\n  0x20000423, 0x16011a09, 0x1a002707, 0x03662b13,   // fi.gl..._880 xxx.en.lt_444 id.xxx..._420 cy.af.nl_665\n  0x18660360, 0x27292114, 0x212b14a4, 0x38290f14,   // nl.af.hu_664 tl.ms.id_666 is.cy.tl_433 es.ms.ca_666\n  0x0d210f09, 0x29000d02, 0x14001613, 0x16210107,   // es.tl.pt_444 pt.ms..._220 lt.is..._650 en.tl.lt_432\n  // [3550]\n  0x0c000d22, 0x3f004314, 0x221838a4, 0x38002709,   // pt.pl..._870 vi.sw..._660 ca.hu.tr_433 id.ca..._440\n  0x18001923, 0x04198c08, 0x8c212212, 0x1d003808,   // et.hu..._880 ht.et.fi_443 tr.tl.ht_654 ca.hr..._430\n  0x10002b07, 0x66061508, 0x42042108, 0x080f3f13,   // cy.sv..._420 lv.de.af_443 tl.fi.mt_443 sw.es.it_665\n  0x4b272909, 0x4b000208, 0x17002713, 0x3a040509,   // ms.id.az_444 da.az..._430 id.ro..._650 fr.fi.eu_444\n  // [3560]\n  0x3a0d2b09, 0x0c001721, 0x3a000508, 0x04052007,   // cy.pt.eu_444 ro.pl..._860 fr.eu..._430 gl.fr.fi_432\n  0x43040d12, 0x19102208, 0x0c001222, 0x3f002107,   // pt.fi.vi_654 tr.sv.et_443 cs.pl..._870 tl.sw..._420\n  0x251c1e55, 0x0d1a4508, 0x18000512, 0x16001922,   // sr.bg.mk_442 sk.xxx.pt_443 fr.hu..._640 et.lt..._870\n  0x1f0f2b09, 0x20003f23, 0x0f050d09, 0x1a3a3f12,   // cy.es.ga_444 sw.gl..._880 pt.fr.es_444 sw.eu.xxx_654\n  // [3570]\n  0x1d224202, 0x1e251c55, 0x05122ea4, 0x081d1e09,   // mt.tr.hr_222 bg.mk.sr_442 sq.cs.fr_433 sr.hr.it_444\n  0x0c3f1a09, 0x190640a4, 0x10003808, 0x151d1e02,   // xxx.sw.pl_444 sl.de.et_433 ca.sv..._430 sr.hr.lv_222\n  0x1a000c07, 0x1a001014, 0x0d0f2013, 0x16454012,   // pl.xxx..._420 sv.xxx..._660 gl.es.pt_665 sl.sk.lt_654\n  0x42000d13, 0x1d001f02, 0x0d001009, 0x03062e09,   // pt.mt..._650 ga.hr..._220 sv.pt..._440 sq.de.nl_444\n  // [3580]\n  0x031f6607, 0x450c1012, 0x30232514, 0x66001514,   // af.ga.nl_432 sv.pl.sk_654 mk.uk.be_666 lv.af..._660\n  0x12171a08, 0x191f4255, 0x45031202, 0x421e1d60,   // xxx.ro.cs_443 mt.ga.et_442 cs.nl.sk_222 hr.sr.mt_664\n  0x421e1d09, 0x1e1d4214, 0x250e1ca4, 0x383a2112,   // hr.sr.mt_444 mt.hr.sr_666 bg.ru.mk_433 tl.eu.ca_654\n  0x22060308, 0x0f0d0513, 0x150c0312, 0x4b000202,   // nl.de.tr_443 fr.pt.es_665 nl.pl.lv_654 da.az..._220\n  // [3590]\n  0x05124513, 0x21001002, 0x08008c07, 0x01000507,   // sk.cs.fr_665 sv.tl..._220 ht.it..._420 fr.en..._420\n  0x380f1414, 0x231c1e12, 0x190b0213, 0x0f031f09,   // is.es.ca_666 sr.bg.uk_654 da.no.et_665 ga.nl.es_444\n  0x23301c55, 0x0c030608, 0x12184508, 0x121845a4,   // bg.be.uk_442 de.nl.pl_443 sk.hu.cs_443 sk.hu.cs_433\n  0x213a2709, 0x3f000509, 0x27001502, 0x25231e08,   // id.eu.tl_444 fr.sw..._440 lv.id..._220 sr.uk.mk_443\n  // [35a0]\n  0x42401513, 0x27021a02, 0x011d6602, 0x1d1e1709,   // lv.sl.mt_665 xxx.da.id_222 af.hr.en_222 ro.sr.hr_444\n  0x021f42a4, 0x021910a4, 0x452b1f08, 0x1e006602,   // mt.ga.da_433 sv.et.da_433 ga.cy.sk_443 af.sr..._220\n  0x21000c12, 0x18061008, 0x14061007, 0x2b0c8c60,   // pl.tl..._640 sv.de.hu_443 sv.de.is_432 ht.pl.cy_664\n  0x30001c07, 0x1e1c25ad, 0x020b14a4, 0x40001702,   // bg.be..._420 mk.bg.sr_643 is.no.da_433 ro.sl..._220\n  // [35b0]\n  0x40152ba4, 0x224b1912, 0x05171a08, 0x1d001523,   // cy.lv.sl_433 et.az.tr_654 xxx.ro.fr_443 lv.hr..._880\n  0x04002108, 0x2b003a22, 0x1c231e09, 0x04004213,   // tl.fi..._430 eu.cy..._870 sr.uk.bg_444 mt.fi..._650\n  0x2b001522, 0x04422755, 0x0e231ead, 0x2b041f08,   // lv.cy..._870 id.mt.fi_442 sr.uk.ru_643 ga.fi.cy_443\n  0x0c004314, 0x300e23af, 0x020b1012, 0x27004213,   // vi.pl..._660 uk.ru.be_655 sv.no.da_654 mt.id..._650\n  // [35c0]\n  0x42000413, 0x03002e09, 0x42213f12, 0x1d012e07,   // fi.mt..._650 sq.nl..._440 sw.tl.mt_654 sq.en.hr_432\n  0x15000507, 0x38050309, 0x661f0412, 0x06041fa4,   // fr.lv..._420 nl.fr.ca_444 fi.ga.af_654 ga.fi.de_433\n  0x22000d14, 0x42001409, 0x230e1cad, 0x03000c12,   // pt.tr..._660 is.mt..._440 bg.ru.uk_643 pl.nl..._640\n  0x15001014, 0x08210107, 0x0c141fad, 0x45050d08,   // sv.lv..._660 en.tl.it_432 ga.is.pl_643 pt.fr.sk_443\n  // [35d0]\n  0x04191508, 0x04000322, 0x16382ba4, 0x1d292709,   // lv.et.fi_443 nl.fi..._870 cy.ca.lt_433 id.ms.hr_444\n  0x19042707, 0x17006608, 0x18004b13, 0x0e232507,   // id.fi.et_432 af.ro..._430 az.hu..._650 mk.uk.ru_432\n  0x2b0f1f09, 0x2e180508, 0x05012e13, 0x451e1212,   // ga.es.cy_444 fr.hu.sq_443 sq.en.fr_665 cs.sr.sk_654\n  0x1e1d12ba, 0x14000b22, 0x14061012, 0x10141f08,   // cs.hr.sr_843 no.is..._870 sv.de.is_654 ga.is.sv_443\n  // [35e0]\n  0x19143a08, 0x21004b14, 0x08001922, 0x27062908,   // eu.is.et_443 az.tl..._660 et.it..._870 ms.de.id_443\n  0x43000612, 0x29270614, 0x06292714, 0x10002e12,   // de.vi..._640 de.id.ms_666 id.ms.de_666 sq.sv..._640\n  0x153a2709, 0x4b006608, 0x292706a4, 0x292706af,   // id.eu.lv_444 af.az..._430 de.id.ms_433 de.id.ms_655\n  0x06292713, 0x03164208, 0x22210408, 0x451d1208,   // id.ms.de_665 mt.lt.nl_443 fi.tl.tr_443 cs.hr.sk_443\n  // [35f0]\n  0x431f4509, 0x1d1e40ab, 0x14030660, 0x45120102,   // sk.ga.vi_444 sl.sr.hr_621 de.nl.is_664 en.cs.sk_222\n  0x161d1508, 0x12004007, 0x1c1e2507, 0x12001612,   // lv.hr.lt_443 sl.cs..._420 mk.sr.bg_432 lt.cs..._640\n  0x0f001723, 0x191e1d13, 0x8c000823, 0x30230e08,   // ro.es..._880 hr.sr.et_665 it.ht..._880 ru.uk.be_443\n  0x38193a09, 0x181f05af, 0x42082909, 0x3a163f13,   // eu.et.ca_444 fr.ga.hu_655 ms.it.mt_444 sw.lt.eu_665\n  // [3600]\n  0x043f19a4, 0x12001f08, 0x200d0f09, 0x082143a4,   // et.sw.fi_433 ga.cs..._430 es.pt.gl_444 vi.tl.it_433\n  0x18272960, 0x3f101a09, 0x0d081a09, 0x0b0414a4,   // ms.id.hu_664 xxx.sv.sw_444 xxx.it.pt_444 is.fi.no_433\n  0x0b000809, 0x06183fa4, 0x12001d23, 0x15121e08,   // it.no..._440 sw.hu.de_433 hr.cs..._880 sr.cs.lv_443\n  0x420408a4, 0x08002914, 0x191016af, 0x06020508,   // it.fi.mt_433 ms.it..._660 lt.sv.et_655 fr.da.de_443\n  // [3610]\n  0x1a004207, 0x0d422109, 0x15004522, 0x050f0809,   // mt.xxx..._420 tl.mt.pt_444 sk.lv..._870 it.es.fr_444\n  0x0f051708, 0x3f0d29af, 0x1a041f12, 0x1e8c1702,   // ro.fr.es_443 ms.pt.sw_655 ga.fi.xxx_654 ro.ht.sr_222\n  0x218c1209, 0x40144508, 0x42001e08, 0x29221d02,   // cs.ht.tl_444 sk.is.sl_443 sr.mt..._430 hr.tr.ms_222\n  0x45401802, 0x0c001523, 0x43003f08, 0x05001509,   // hu.sl.sk_222 lv.pl..._880 sw.vi..._430 lv.fr..._440\n  // [3620]\n  0x14040308, 0x1a001f11, 0x4b8c2214, 0x220d3a08,   // nl.fi.is_443 ga.xxx..._630 tr.ht.az_666 eu.pt.tr_443\n  0x1d0c0109, 0x190b2707, 0x42162907, 0x0e231e07,   // en.pl.hr_444 id.no.et_432 ms.lt.mt_432 sr.uk.ru_432\n  0x1e4015a4, 0x38121755, 0x10030202, 0x29003f08,   // lv.sl.sr_433 ro.cs.ca_442 da.nl.sv_222 sw.ms..._430\n  0x23251e13, 0x052e3802, 0x01221a60, 0x200f0d13,   // sr.mk.uk_665 ca.sq.fr_222 xxx.tr.en_664 pt.es.gl_665\n  // [3630]\n  0x171f3808, 0x191604a4, 0x27003814, 0x3a210109,   // ca.ga.ro_443 fi.lt.et_433 ca.id..._660 en.tl.eu_444\n  0x451a4209, 0x38190107, 0x160804a4, 0x29211f02,   // mt.xxx.sk_444 en.et.ca_432 fi.it.lt_433 ga.tl.ms_222\n  0x05001913, 0x660c4209, 0x8c432713, 0x1e081d08,   // et.fr..._650 mt.pl.af_444 id.vi.ht_665 hr.it.sr_443\n  0x23251e60, 0x03060da4, 0x04050109, 0x19021008,   // sr.mk.uk_664 pt.de.nl_433 en.fr.fi_444 sv.da.et_443\n  // [3640]\n  0x42002707, 0x03026612, 0x2b006608, 0x301c0e08,   // id.mt..._420 af.da.nl_654 af.cy..._430 ru.bg.be_443\n  0x1f2e08af, 0x4b001a14, 0x213f0fa4, 0x27001509,   // it.sq.ga_655 xxx.az..._660 es.sw.tl_433 lv.id..._440\n  0x10061412, 0x18004013, 0x1d001607, 0x02102b12,   // is.de.sv_654 sl.hu..._650 lt.hr..._420 cy.sv.da_654\n  0x0c000813, 0x401d2e55, 0x0f000523, 0x100614af,   // it.pl..._650 sq.hr.sl_442 fr.es..._880 is.de.sv_655\n  // [3650]\n  0x0b006622, 0x18001421, 0x04061509, 0x14001523,   // af.no..._870 is.hu..._860 lv.de.fi_444 lv.is..._880\n  0x1d161e09, 0x03663a60, 0x38001d14, 0x06001f09,   // sr.lt.hr_444 eu.af.nl_664 hr.ca..._660 ga.de..._440\n  0x06011aa4, 0x12001609, 0x3f1a20af, 0x140d0f07,   // xxx.en.de_433 lt.cs..._440 gl.xxx.sw_655 es.pt.is_432\n  0x02060b07, 0x172e1a09, 0x17003f23, 0x20003f02,   // no.de.da_432 xxx.sq.ro_444 sw.ro..._880 sw.gl..._220\n  // [3660]\n  0x8c223f08, 0x0c1d1e60, 0x123f0502, 0x01002107,   // sw.tr.ht_443 sr.hr.pl_664 fr.sw.cs_222 tl.en..._420\n  0x1f124560, 0x3f1a21a4, 0x1c001e21, 0x294b2202,   // sk.cs.ga_664 tl.xxx.sw_433 sr.bg..._860 tr.az.ms_222\n  0x14001823, 0x04001021, 0x1e1d4208, 0x06004509,   // hu.is..._880 sv.fi..._860 mt.hr.sr_443 sk.de..._440\n  0x22044208, 0x1e1d1655, 0x05040807, 0x140d0f12,   // mt.fi.tr_443 lt.hr.sr_442 it.fi.fr_432 es.pt.is_654\n  // [3670]\n  0x0c001512, 0x14001512, 0x18001023, 0x1d1e17a4,   // lv.pl..._640 lv.is..._640 sv.hu..._880 ro.sr.hr_433\n  0x401614a4, 0x100b2212, 0x43000d02, 0x45001809,   // is.lt.sl_433 tr.no.sv_654 pt.vi..._220 hu.sk..._440\n  0x16222ea4, 0x05194208, 0x231c25af, 0x1e001821,   // sq.tr.lt_433 mt.et.fr_443 mk.bg.uk_655 hu.sr..._860\n  0x173f1960, 0x15451212, 0x14182114, 0x04140b09,   // et.sw.ro_664 cs.sk.lv_654 tl.hu.is_666 no.is.fi_444\n  // [3680]\n  0x1f001523, 0x2b003a23, 0x1e1d1608, 0x06001f13,   // lv.ga..._880 eu.cy..._880 lt.hr.sr_443 ga.de..._650\n  0x1a2b0107, 0x162122ad, 0x19212e12, 0x2b000622,   // en.cy.xxx_432 tr.tl.lt_643 sq.tl.et_654 de.cy..._870\n  0x15000b07, 0x01183a08, 0x22041255, 0x27001009,   // no.lv..._420 eu.hu.en_443 cs.fi.tr_442 sv.id..._440\n  0x0e2530a4, 0x661d02a4, 0x42000d08, 0x12141708,   // be.mk.ru_433 da.hr.af_433 pt.mt..._430 ro.is.cs_443\n  // [3690]\n  0x15061202, 0x451240ab, 0x45401207, 0x1e002b13,   // cs.de.lv_222 sl.cs.sk_621 cs.sl.sk_432 cy.sr..._650\n  0x1e302355, 0x10140b07, 0x10140b09, 0x08421007,   // uk.be.sr_442 no.is.sv_432 no.is.sv_444 sv.mt.it_432\n  0x06010508, 0x2b003f08, 0x66271a12, 0x25230e14,   // fr.en.de_443 sw.cy..._430 xxx.id.af_654 ru.uk.mk_666\n  0x66000c13, 0x1e001510, 0x3a1f0107, 0x17001622,   // pl.af..._650 lv.sr..._620 en.ga.eu_432 lt.ro..._870\n  // [36a0]\n  0x66003f22, 0x3a031f07, 0x2e0127a4, 0x0c006613,   // sw.af..._870 ga.nl.eu_432 id.en.sq_433 af.pl..._650\n  0x04001813, 0x3f000514, 0x66003f14, 0x03086608,   // hu.fi..._650 fr.sw..._660 sw.af..._660 af.it.nl_443\n  0x10008c08, 0x0f001608, 0x04002708, 0x661f0208,   // ht.sv..._430 lt.es..._430 id.fi..._430 da.ga.af_443\n  0x17000613, 0x08002e09, 0x42001613, 0x14021014,   // de.ro..._650 sq.it..._440 lt.mt..._650 sv.da.is_666\n  // [36b0]\n  0x2e381708, 0x19008c14, 0x291d0b07, 0x298c2707,   // ro.ca.sq_443 ht.et..._660 no.hr.ms_432 id.ht.ms_432\n  0x20002e02, 0x12002909, 0x12224502, 0x66272908,   // sq.gl..._220 ms.cs..._440 sk.tr.cs_222 ms.id.af_443\n  0x1d000b21, 0x25003012, 0x45031a02, 0x0b191a08,   // no.hr..._860 be.mk..._640 xxx.nl.sk_222 xxx.et.no_443\n  0x151d4208, 0x050d8c08, 0x02043a08, 0x1d2b1009,   // mt.hr.lv_443 ht.pt.fr_443 eu.fi.da_443 sv.cy.hr_444\n  // [36c0]\n  0x05140107, 0x1a001f21, 0x29190402, 0x22000314,   // en.is.fr_432 ga.xxx..._860 fi.et.ms_222 nl.tr..._660\n  0x1a004212, 0x3a001a13, 0x04290107, 0x06041912,   // mt.xxx..._640 xxx.eu..._650 en.ms.fi_432 et.fi.de_654\n  0x3f190460, 0x8c001f14, 0x29210f08, 0x224b3f13,   // fi.et.sw_664 ga.ht..._660 es.tl.ms_443 sw.az.tr_665\n  0x12454009, 0x16021509, 0x10002b14, 0x388c0560,   // sl.sk.cs_444 lv.da.lt_444 cy.sv..._660 fr.ht.ca_664\n  // [36d0]\n  0x40002922, 0x161f2e07, 0x14102b60, 0x1f014208,   // ms.sl..._870 sq.ga.lt_432 cy.sv.is_664 mt.en.ga_443\n  0x10223f08, 0x1a004507, 0x4b003f08, 0x45184002,   // sw.tr.sv_443 sk.xxx..._420 sw.az..._430 sl.hu.sk_222\n  0x45006608, 0x2e000b08, 0x3f100207, 0x1a180308,   // af.sk..._430 no.sq..._430 da.sv.sw_432 nl.hu.xxx_443\n  0x3f3a2909, 0x29181a02, 0x12662907, 0x16220608,   // ms.eu.sw_444 xxx.hu.ms_222 ms.af.cs_432 de.tr.lt_443\n  // [36e0]\n  0x40000214, 0x08000513, 0x1d401e14, 0x8c1a3f12,   // da.sl..._660 fr.it..._650 sr.sl.hr_666 sw.xxx.ht_654\n  0x27171902, 0x15001a02, 0x211d1e11, 0x1d1a1508,   // et.ro.id_222 xxx.lv..._220 sr.hr.tl_653 lv.xxx.hr_443\n  0x142b1008, 0x3f000f23, 0x3f001d13, 0x3f1a4212,   // sv.cy.is_443 es.sw..._880 hr.sw..._650 mt.xxx.sw_654\n  0x0f006609, 0x2e000b22, 0x3a004214, 0x01000c12,   // af.es..._440 no.sq..._870 mt.eu..._660 pl.en..._640\n  // [36f0]\n  0x66001f14, 0x052e0109, 0x1d001723, 0x29171a02,   // ga.af..._660 en.sq.fr_444 ro.hr..._880 xxx.ro.ms_222\n  0x0f0d1408, 0x05001d23, 0x1d008c23, 0x1e292707,   // is.pt.es_443 hr.fr..._880 ht.hr..._880 id.ms.sr_432\n  0x19002002, 0x1f001614, 0x10000b21, 0x0f404508,   // gl.et..._220 lt.ga..._660 no.sv..._860 sk.sl.es_443\n  0x05120d02, 0x3f161209, 0x043f3a08, 0x2e0f3807,   // pt.cs.fr_222 cs.lt.sw_444 eu.sw.fi_443 ca.es.sq_432\n  // [3700]\n  0x0d002114, 0x3a0f8ca4, 0x16003f09, 0x0f124513,   // tl.pt..._660 ht.es.eu_433 sw.lt..._440 sk.cs.es_665\n  0x10040209, 0x22180460, 0x452e0502, 0x02290b08,   // da.fi.sv_444 fi.hu.tr_664 fr.sq.sk_222 no.ms.da_443\n  0x0f401209, 0x452b2902, 0x42224baf, 0x293f0402,   // cs.sl.es_444 ms.cy.sk_222 az.tr.mt_655 fi.sw.ms_222\n  0x16150107, 0x0f001811, 0x0f004312, 0x3a038c08,   // en.lv.lt_432 hu.es..._630 vi.es..._640 ht.nl.eu_443\n  // [3710]\n  0x18140b60, 0x1e002b09, 0x02011a09, 0x38292709,   // no.is.hu_664 cy.sr..._440 xxx.en.da_444 id.ms.ca_444\n  0x66000b12, 0x224b2ea4, 0x4b003a14, 0x45181f09,   // no.af..._640 sq.az.tr_433 eu.az..._660 ga.hu.sk_444\n  0x1a1d1e02, 0x04001214, 0x251c2313, 0x1e003022,   // sr.hr.xxx_222 cs.fi..._660 uk.bg.mk_665 be.sr..._870\n  0x153f2107, 0x23251e08, 0x18170109, 0x38423a08,   // tl.sw.lv_432 sr.mk.uk_443 en.ro.hu_444 eu.mt.ca_443\n  // [3720]\n  0x0d004214, 0x05060107, 0x19000622, 0x3f041960,   // mt.pt..._660 en.de.fr_432 de.et..._870 et.fi.sw_664\n  0x224b0b07, 0x2b000313, 0x45020402, 0x0b001802,   // no.az.tr_432 nl.cy..._650 fi.da.sk_222 hu.no..._220\n  0x17000323, 0x05036608, 0x12184560, 0x4b048ca4,   // nl.ro..._880 af.nl.fr_443 sk.hu.cs_664 ht.fi.az_433\n  0x45141208, 0x1f002e11, 0x08000f13, 0x120d0f08,   // cs.is.sk_443 sq.ga..._630 es.it..._650 es.pt.cs_443\n  // [3730]\n  0x181f1460, 0x14001f0d, 0x29220202, 0x18008c09,   // is.ga.hu_664 ga.is..._540 da.tr.ms_222 ht.hu..._440\n  0x03000814, 0x15451207, 0x170f22a4, 0x060d1002,   // it.nl..._660 cs.sk.lv_432 tr.es.ro_433 sv.pt.de_222\n  0x1c250e11, 0x293f0502, 0x2e3f1fa4, 0x06100309,   // ru.mk.bg_653 fr.sw.ms_222 ga.sw.sq_433 nl.sv.de_444\n  0x42081812, 0x1e382208, 0x0d001202, 0x0c0d0f55,   // hu.it.mt_654 tr.ca.sr_443 cs.pt..._220 es.pt.pl_442\n  // [3740]\n  0x301c0eaf, 0x4b004002, 0x03081e02, 0x1d2e1402,   // ru.bg.be_655 sl.az..._220 sr.it.nl_222 is.sq.hr_222\n  0x04213f07, 0x0f190407, 0x02061008, 0x14008c23,   // sw.tl.fi_432 fi.et.es_432 sv.de.da_443 ht.is..._880\n  0x03660b08, 0x40001d12, 0x220610af, 0x2b0f38af,   // no.af.nl_443 hr.sl..._640 sv.de.tr_655 ca.es.cy_655\n  0x080d1a07, 0x0f3a0107, 0x0b002923, 0x1f180512,   // xxx.pt.it_432 en.eu.es_432 ms.no..._880 fr.hu.ga_654\n  // [3750]\n  0x08002108, 0x271d2908, 0x17000209, 0x0b100c12,   // tl.it..._430 ms.hr.id_443 da.ro..._440 pl.sv.no_654\n  0x0f180560, 0x031d1e02, 0x29001609, 0x1d0c1e14,   // fr.hu.es_664 sr.hr.nl_222 lt.ms..._440 sr.pl.hr_666\n  0x42000214, 0x1e064002, 0x4b008c13, 0x66001414,   // da.mt..._660 sl.de.sr_222 ht.az..._650 is.af..._660\n  0x0b151660, 0x66010408, 0x42001a12, 0x2e3a8c55,   // lt.lv.no_664 fi.en.af_443 xxx.mt..._640 ht.eu.sq_442\n  // [3760]\n  0x02008c13, 0x16002e23, 0x2e1e1daf, 0x10030208,   // ht.da..._650 sq.lt..._880 hr.sr.sq_655 da.nl.sv_443\n  0x1e1d3f07, 0x27036609, 0x27011aa4, 0x12381602,   // sw.hr.sr_432 af.nl.id_444 xxx.en.id_433 lt.ca.cs_222\n  0x212b2208, 0x1d0c4507, 0x04660360, 0x66190360,   // tr.cy.tl_443 sk.pl.hr_432 nl.af.fi_664 nl.et.af_664\n  0x14001f21, 0x12451e12, 0x14272909, 0x4b002702,   // ga.is..._860 sr.sk.cs_654 ms.id.is_444 id.az..._220\n  // [3770]\n  0x012205a4, 0x0f054b09, 0x2b1d1fa4, 0x43043a07,   // fr.tr.en_433 az.fr.es_444 ga.hr.cy_433 eu.fi.vi_432\n  0x27004209, 0x27020b02, 0x140f45a4, 0x190121a4,   // mt.id..._440 no.da.id_222 sk.es.is_433 tl.en.et_433\n  0x01662b08, 0x01003a12, 0x12451fa0, 0x0f170508,   // cy.af.en_443 eu.en..._640 ga.sk.cs_322 fr.ro.es_443\n  0x031615af, 0x12000802, 0x0c008c14, 0x16000107,   // lv.lt.nl_655 it.cs..._220 ht.pl..._660 en.lt..._420\n  // [3780]\n  0x214b2213, 0x0f381f08, 0x010d1755, 0x27422ead,   // tr.az.tl_665 ga.ca.es_443 ro.pt.en_442 sq.mt.id_643\n  0x1a150109, 0x01003f13, 0x38002b22, 0x19212709,   // en.lv.xxx_444 sw.en..._650 cy.ca..._870 id.tl.et_444\n  0x030615a4, 0x2b001e02, 0x3a004b12, 0x08002209,   // lv.de.nl_433 sr.cy..._220 az.eu..._640 tr.it..._440\n  0x4b2916af, 0x45020b02, 0x1f451860, 0x40000102,   // lt.ms.az_655 no.da.sk_222 hu.sk.ga_664 en.sl..._220\n  // [3790]\n  0x12001902, 0x0c013fa4, 0x148c04a4, 0x2e024009,   // et.cs..._220 sw.en.pl_433 fi.ht.is_433 sl.da.sq_444\n  0x40000114, 0x14001a14, 0x03000b11, 0x06023a02,   // en.sl..._660 xxx.is..._660 no.nl..._630 eu.da.de_222\n  0x2b000f09, 0x454212af, 0x3a004023, 0x66190313,   // es.cy..._440 cs.mt.sk_655 sl.eu..._880 nl.et.af_665\n  0x29001023, 0x1a450209, 0x04151613, 0x012138a4,   // sv.ms..._880 da.sk.xxx_444 lt.lv.fi_665 ca.tl.en_433\n  // [37a0]\n  0x0b004b13, 0x1e0d1402, 0x451d3f02, 0x1e0c4502,   // az.no..._650 is.pt.sr_222 sw.hr.sk_222 sk.pl.sr_222\n  0x3f001722, 0x17001d23, 0x40021013, 0x08292707,   // ro.sw..._870 hr.ro..._880 sv.da.sl_665 id.ms.it_432\n  0x17221a09, 0x14000423, 0x12191702, 0x16004b22,   // xxx.tr.ro_444 fi.is..._880 ro.et.cs_222 az.lt..._870\n  0x17001922, 0x05002114, 0x12004023, 0x27042102,   // et.ro..._870 tl.fr..._660 sl.cs..._880 tl.fi.id_222\n  // [37b0]\n  0x18000214, 0x21042708, 0x451d3a02, 0x38004514,   // da.hu..._660 id.fi.tl_443 eu.hr.sk_222 sk.ca..._660\n  0x02101a02, 0x450f2002, 0x22190412, 0x041519a4,   // xxx.sv.da_222 gl.es.sk_222 fi.et.tr_654 et.lv.fi_433\n  0x19210412, 0x0d004323, 0x27100302, 0x12000d09,   // fi.tl.et_654 vi.pt..._880 nl.sv.id_222 pt.cs..._440\n  0x1c250e07, 0x03000b13, 0x12040107, 0x664b22a4,   // ru.mk.bg_432 no.nl..._650 en.fi.cs_432 tr.az.af_433\n  // [37c0]\n  0x273f0408, 0x22043f08, 0x19060109, 0x45661e02,   // fi.sw.id_443 sw.fi.tr_443 en.de.et_444 sr.af.sk_222\n  0x421a2112, 0x1d001a08, 0x1a660107, 0x66032ba4,   // tl.xxx.mt_654 xxx.hr..._430 en.af.xxx_432 cy.nl.af_433\n  0x1e000614, 0x15166612, 0x4b008c11, 0x10420b07,   // de.sr..._660 af.lt.lv_654 ht.az..._630 no.mt.sv_432\n  0x17080108, 0x02000121, 0x18020b09, 0x2e1916a4,   // en.it.ro_443 en.da..._860 no.da.hu_444 lt.et.sq_433\n  // [37d0]\n  0x058c02af, 0x15000c12, 0x0f3a0ca4, 0x0c664509,   // da.ht.fr_655 pl.lv..._640 pl.eu.es_433 sk.af.pl_444\n  0x450f2707, 0x16000123, 0x45011202, 0x02060408,   // id.es.sk_432 en.lt..._880 cs.en.sk_222 fi.de.da_443\n  0x273f29a4, 0x3f100b13, 0x103f0b09, 0x17002b14,   // ms.sw.id_433 no.sv.sw_665 no.sw.sv_444 cy.ro..._660\n  0x1d421e02, 0x033f1a08, 0x058c2208, 0x661a0107,   // sr.mt.hr_222 xxx.sw.nl_443 tr.ht.fr_443 en.xxx.af_432\n  // [37e0]\n  0x1e1d1208, 0x40660307, 0x4b001f02, 0x2b290b09,   // cs.hr.sr_443 nl.af.sl_432 ga.az..._220 no.ms.cy_444\n  0x1e001613, 0x200d2907, 0x02003f12, 0x033a6655,   // lt.sr..._650 ms.pt.gl_432 sw.da..._640 af.eu.nl_442\n  0x21001f13, 0x380d1413, 0x27001809, 0x4b221860,   // ga.tl..._650 is.pt.ca_665 hu.id..._440 hu.tr.az_664\n  0x05420107, 0x2b003f23, 0x66061a13, 0x3f004009,   // en.mt.fr_432 sw.cy..._880 xxx.de.af_665 sl.sw..._440\n  // [37f0]\n  0x04001920, 0x064219a4, 0x04212ba4, 0x191806af,   // et.fi..._850 et.mt.de_433 cy.tl.fi_433 de.hu.et_655\n  0x140c2b08, 0x0b001a09, 0x3f2b1faf, 0x22003a21,   // cy.pl.is_443 xxx.no..._440 ga.cy.sw_655 eu.tr..._860\n  0x011f2955, 0x421f3fa4, 0x3a001512, 0x14043a07,   // ms.ga.en_442 sw.ga.mt_433 lv.eu..._640 eu.fi.is_432\n  0x080f0555, 0x01008c07, 0x17041209, 0x0f0d0512,   // fr.es.it_442 ht.en..._420 cs.fi.ro_444 fr.pt.es_654\n\n  // [3800]\n  0x42001f14, 0x170d3813, 0x04000f08, 0x08001f13,   // ga.mt..._660 ca.pt.ro_665 es.fi..._430 ga.it..._650\n  0x45401202, 0x27004b07, 0x45061002, 0x40124508,   // cs.sl.sk_222 az.id..._420 sv.de.sk_222 sk.cs.sl_443\n  0x45196602, 0x03004314, 0x22291a08, 0x451d0802,   // af.et.sk_222 vi.nl..._660 xxx.ms.tr_443 it.hr.sk_222\n  0x45001d09, 0x1e3a2908, 0x10660660, 0x08181407,   // hr.sk..._440 ms.eu.sr_443 de.af.sv_664 is.hu.it_432\n  // [3810]\n  0x04292713, 0x142729a4, 0x4b002e23, 0x27150412,   // id.ms.fi_665 ms.id.is_433 sq.az..._880 fi.lv.id_654\n  0x0e1c1e09, 0x3a3f1207, 0x45043a02, 0x27102202,   // sr.bg.ru_444 cs.sw.eu_432 eu.fi.sk_222 tr.sv.id_222\n  0x29001409, 0x450c1209, 0x013f0609, 0x10041faf,   // is.ms..._440 cs.pl.sk_444 de.sw.en_444 ga.fi.sv_655\n  0x18000c02, 0x1d210407, 0x1d3f0f02, 0x01451fa4,   // pl.hu..._220 fi.tl.hr_432 es.sw.hr_222 ga.sk.en_433\n  // [3820]\n  0x14000507, 0x40004208, 0x14451260, 0x0c002e02,   // fr.is..._420 mt.sl..._430 cs.sk.is_664 sq.pl..._220\n  0x451e8c02, 0x66001a12, 0x06224b08, 0x031e2e07,   // ht.sr.sk_222 xxx.af..._640 az.tr.de_443 sq.sr.nl_432\n  0x29660602, 0x12101aa4, 0x8c220c12, 0x1e050602,   // de.af.ms_222 xxx.sv.cs_433 pl.tr.ht_654 de.fr.sr_222\n  0x1e060202, 0x023f1a08, 0x02002114, 0x2e4b2212,   // da.de.sr_222 xxx.sw.da_443 tl.da..._660 tr.az.sq_654\n  // [3830]\n  0x2b002114, 0x38001f13, 0x08001923, 0x06141008,   // tl.cy..._660 ga.ca..._650 et.it..._880 sv.is.de_443\n  0x03004502, 0x8c3f0c55, 0x42290412, 0x142e4212,   // sk.nl..._220 pl.sw.ht_442 fi.ms.mt_654 mt.sq.is_654\n  0x1a431202, 0x3f0c8ca4, 0x1f3f2907, 0x1d0c6602,   // cs.vi.xxx_222 ht.pl.sw_433 ms.sw.ga_432 af.pl.hr_222\n  0x102e0c13, 0x0c404509, 0x2e002913, 0x66061808,   // pl.sq.sv_665 sk.sl.pl_444 ms.sq..._650 hu.de.af_443\n  // [3840]\n  0x2e002013, 0x10004523, 0x1e401207, 0x224b1713,   // gl.sq..._650 sk.sv..._880 cs.sl.sr_432 ro.az.tr_665\n  0x45224b08, 0x224b10a4, 0x21272911, 0x16002b08,   // az.tr.sk_443 sv.az.tr_433 ms.id.tl_653 cy.lt..._430\n  0x66061012, 0x19000207, 0x08001d09, 0x2b068c09,   // sv.de.af_654 da.et..._420 hr.it..._440 ht.de.cy_444\n  0x1e1d2ea4, 0x0c1e1d60, 0x0c000423, 0x06001508,   // sq.hr.sr_433 hr.sr.pl_664 fi.pl..._880 lv.de..._430\n  // [3850]\n  0x12101708, 0x29002213, 0x3f400c13, 0x45400b02,   // ro.sv.cs_443 tr.ms..._650 pl.sl.sw_665 no.sl.sk_222\n  0x29213f02, 0x12450302, 0x222127a4, 0x03001008,   // sw.tl.ms_222 nl.sk.cs_222 id.tl.tr_433 sv.nl..._430\n  0x3a001613, 0x66004008, 0x14004008, 0x19041002,   // lt.eu..._650 sl.af..._430 sl.is..._430 sv.fi.et_222\n  0x21004323, 0x16152213, 0x16001f12, 0x03663813,   // vi.tl..._880 tr.lv.lt_665 ga.lt..._640 ca.af.nl_665\n  // [3860]\n  0x08002b23, 0x1d0f0107, 0x290f1e02, 0x0d002b22,   // cy.it..._880 en.es.hr_432 sr.es.ms_222 cy.pt..._870\n  0x10060260, 0x02001602, 0x1d144209, 0x2b162709,   // da.de.sv_664 lt.da..._220 mt.is.hr_444 id.lt.cy_444\n  0x4b2b14a4, 0x27382909, 0x0f2b0411, 0x16008c14,   // is.cy.az_433 ms.ca.id_444 fi.cy.es_653 ht.lt..._660\n  0x1f000323, 0x04193808, 0x0b021055, 0x38180f08,   // nl.ga..._880 ca.et.fi_443 sv.da.no_442 es.hu.ca_443\n  // [3870]\n  0x1e2b1d09, 0x2e4202a4, 0x42380b09, 0x02030b55,   // hr.cy.sr_444 da.mt.sq_433 no.ca.mt_444 no.nl.da_442\n  0x022e0109, 0x1e4e3712, 0x38000423, 0x2e001f23,   // en.sq.da_444 ar.fa.sr_654 fi.ca..._880 ga.sq..._880\n  0x1a120607, 0x0e001c11, 0x38190109, 0x250e3007,   // de.cs.xxx_432 bg.ru..._630 en.et.ca_444 be.ru.mk_432\n  0x45001722, 0x0e301c55, 0x2e004022, 0x3f1d1e09,   // ro.sk..._870 bg.be.ru_442 sl.sq..._870 sr.hr.sw_444\n  // [3880]\n  0x0000072d, 0x40000509, 0x3a002e08, 0x10002902,   // iw......_A00 fr.sl..._440 sq.eu..._430 ms.sv..._220\n  0x0b000d09, 0x4b000414, 0x4b002b14, 0x1d3f2108,   // pt.no..._440 fi.az..._660 cy.az..._660 tl.sw.hr_443\n  0x4b2b2209, 0x1d1e4b02, 0x08041960, 0x02001723,   // tr.cy.az_444 az.sr.hr_222 et.fi.it_664 ro.da..._880\n  0x451f1212, 0x451812af, 0x14224b55, 0x06000b07,   // cs.ga.sk_654 cs.hu.sk_655 az.tr.is_442 no.de..._420\n  // [3890]\n  0x3f000d02, 0x40000c13, 0x2e1410a4, 0x0c100b07,   // pt.sw..._220 pl.sl..._650 sv.is.sq_433 no.sv.pl_432\n  0x03196614, 0x08036655, 0x451f1402, 0x14382ba4,   // af.et.nl_666 af.nl.it_442 is.ga.sk_222 cy.ca.is_433\n  0x10182260, 0x2e000d08, 0x1a000214, 0x03042208,   // tr.hu.sv_664 pt.sq..._430 da.xxx..._660 tr.fi.nl_443\n  0x050f3812, 0x10050b09, 0x19043a12, 0x0c0166a4,   // ca.es.fr_654 no.fr.sv_444 eu.fi.et_654 af.en.pl_433\n  // [38a0]\n  0x0c2b2112, 0x0e3025af, 0x08163aaf, 0x66001209,   // tl.cy.pl_654 mk.be.ru_655 eu.lt.it_655 cs.af..._440\n  0x22453a08, 0x21001d02, 0x05001408, 0x45174202,   // eu.sk.tr_443 hr.tl..._220 is.fr..._430 mt.ro.sk_222\n  0x66190109, 0x03662109, 0x180c4008, 0x05002b22,   // en.et.af_444 tl.af.nl_444 sl.pl.hu_443 cy.fr..._870\n  0x3a000813, 0x08044312, 0x10002223, 0x04202b60,   // it.eu..._650 vi.fi.it_654 tr.sv..._880 cy.gl.fi_664\n  // [38b0]\n  0x1e250e13, 0x100f4ba4, 0x121d4009, 0x4b102213,   // ru.mk.sr_665 az.es.sv_433 sl.hr.cs_444 tr.sv.az_665\n  0x4b001008, 0x188c3f13, 0x0d151255, 0x66420807,   // sv.az..._430 sw.ht.hu_665 cs.lv.pt_442 it.mt.af_432\n  0x12001822, 0x1e0c0102, 0x102e2707, 0x19002913,   // hu.cs..._870 en.pl.sr_222 id.sq.sv_432 ms.et..._650\n  0x15002202, 0x272e1412, 0x124515a4, 0x21002b08,   // tr.lv..._220 is.sq.id_654 lv.sk.cs_433 cy.tl..._430\n  // [38c0]\n  0x16004213, 0x0c004309, 0x1d1e8ca4, 0x0f002108,   // mt.lt..._650 vi.pl..._440 ht.sr.hr_433 tl.es..._430\n  0x05000d07, 0x3a008c23, 0x0b001012, 0x033a8c55,   // pt.fr..._420 ht.eu..._880 sv.no..._640 ht.eu.nl_442\n  0x40000d23, 0x0d381207, 0x17000622, 0x18001011,   // pt.sl..._880 cs.ca.pt_432 de.ro..._870 sv.hu..._630\n  0x29000523, 0x01431aa4, 0x05080155, 0x27018c08,   // fr.ms..._880 xxx.vi.en_433 en.it.fr_442 ht.en.id_443\n  // [38d0]\n  0x0d001207, 0x04102b08, 0x1c0e1e60, 0x1e000209,   // cs.pt..._420 cy.sv.fi_443 sr.ru.bg_664 da.sr..._440\n  0x0b100212, 0x0b008c14, 0x42003f12, 0x213f2909,   // da.sv.no_654 ht.no..._660 sw.mt..._640 ms.sw.tl_444\n  0x19000611, 0x19100414, 0x0b003f22, 0x27002e08,   // de.et..._630 fi.sv.et_666 sw.no..._870 sq.id..._430\n  0x1d041002, 0x3f3a1a08, 0x193a1808, 0x66022b12,   // sv.fi.hr_222 xxx.eu.sw_443 hu.eu.et_443 cy.da.af_654\n  // [38e0]\n  0x42003a12, 0x66001a08, 0x08220b09, 0x140522a4,   // eu.mt..._640 xxx.af..._430 no.tr.it_444 tr.fr.is_433\n  0x2e000122, 0x40292708, 0x293a1f02, 0x04021008,   // en.sq..._870 id.ms.sl_443 ga.eu.ms_222 sv.da.fi_443\n  0x15002b12, 0x29270b02, 0x0b000f02, 0x40001002,   // cy.lv..._640 no.id.ms_222 es.no..._220 sv.sl..._220\n  0x2b003823, 0x2e154307, 0x06140b13, 0x38001423,   // ca.cy..._880 vi.lv.sq_432 no.is.de_665 is.ca..._880\n  // [38f0]\n  0x22293f13, 0x04221960, 0x18100208, 0x10400308,   // sw.ms.tr_665 et.tr.fi_664 da.sv.hu_443 nl.sl.sv_443\n  0x180104a4, 0x40008c07, 0x45408c12, 0x012b0c09,   // fi.en.hu_433 ht.sl..._420 ht.sl.sk_654 pl.cy.en_444\n  0x140b10a4, 0x12000208, 0x3a200f13, 0x1d000207,   // sv.no.is_433 da.cs..._430 es.gl.eu_665 da.hr..._420\n  0x8c003f02, 0x250e3060, 0x8c293f07, 0x45036608,   // sw.ht..._220 be.ru.mk_664 sw.ms.ht_432 af.nl.sk_443\n  // [3900]\n  0x038c6612, 0x27041913, 0x12278c02, 0x45401260,   // af.ht.nl_654 et.fi.id_665 ht.id.cs_222 cs.sl.sk_664\n  0x451f1207, 0x8c006613, 0x8c001402, 0x401d12a4,   // cs.ga.sk_432 af.ht..._650 is.ht..._220 cs.hr.sl_433\n  0x183f1a08, 0x1a000f09, 0x1a4b2209, 0x0f380b07,   // xxx.sw.hu_443 es.xxx..._440 tr.az.xxx_444 no.ca.es_432\n  0x38451260, 0x1f004523, 0x1d172702, 0x01151a08,   // cs.sk.ca_664 sk.ga..._880 id.ro.hr_222 xxx.lv.en_443\n  // [3910]\n  0x17003a22, 0x0b003a12, 0x2b000f08, 0x1a2b6614,   // eu.ro..._870 eu.no..._640 es.cy..._430 af.cy.xxx_666\n  0x422e4b12, 0x020b0107, 0x18104213, 0x2e4218a4,   // az.sq.mt_654 en.no.da_432 mt.sv.hu_665 hu.mt.sq_433\n  0x42001712, 0x22000607, 0x1a290107, 0x2b8c3aad,   // ro.mt..._640 de.tr..._420 en.ms.xxx_432 eu.ht.cy_643\n  0x21001612, 0x16381f08, 0x036643a4, 0x041f0107,   // lt.tl..._640 ga.ca.lt_443 vi.af.nl_433 en.ga.fi_432\n  // [3920]\n  0x0c400109, 0x1d151207, 0x06003814, 0x22272960,   // en.sl.pl_444 cs.lv.hr_432 ca.de..._660 ms.id.tr_664\n  0x2b002913, 0x2b004b02, 0x21041907, 0x30000e20,   // ms.cy..._650 az.cy..._220 et.fi.tl_432 ru.be..._850\n  0x45022102, 0x08001509, 0x02142708, 0x0b2b0109,   // tl.da.sk_222 lv.it..._440 id.is.da_443 en.cy.no_444\n  0x0f382008, 0x1e141d14, 0x0f053808, 0x04000307,   // gl.ca.es_443 hr.is.sr_666 ca.fr.es_443 nl.fi..._420\n  // [3930]\n  0x27042908, 0x18401a08, 0x19661f60, 0x451d0402,   // ms.fi.id_443 xxx.sl.hu_443 ga.af.et_664 fi.hr.sk_222\n  0x03002002, 0x06041908, 0x4b0f38a4, 0x04003f22,   // gl.nl..._220 et.fi.de_443 ca.es.az_433 sw.fi..._870\n  0x0b102ba4, 0x0f004009, 0x22001a13, 0x45000b21,   // cy.sv.no_433 sl.es..._440 xxx.tr..._650 no.sk..._860\n  0x1d002112, 0x06001822, 0x1e1d4513, 0x1d451e14,   // tl.hr..._640 hu.de..._870 sk.hr.sr_665 sr.sk.hr_666\n  // [3940]\n  0x1d1e4514, 0x29142760, 0x45120b02, 0x0b001207,   // sk.sr.hr_666 id.is.ms_664 no.cs.sk_222 cs.no..._420\n  0x1e003f23, 0x04001f12, 0x27001f02, 0x15004012,   // sw.sr..._880 ga.fi..._640 ga.id..._220 sl.lv..._640\n  0x251c3013, 0x10142b12, 0x27003f07, 0x021d4008,   // be.bg.mk_665 cy.is.sv_654 sw.id..._420 sl.hr.da_443\n  0x17164008, 0x3f451a09, 0x0f000d21, 0x17088c09,   // sl.lt.ro_443 xxx.sk.sw_444 pt.es..._860 ht.it.ro_444\n  // [3950]\n  0x400b0208, 0x17063814, 0x42140b13, 0x0c2b8c07,   // da.no.sl_443 ca.de.ro_666 no.is.mt_665 ht.cy.pl_432\n  0x2e000212, 0x27004009, 0x0f050da4, 0x12002112,   // da.sq..._640 sl.id..._440 pt.fr.es_433 tl.cs..._640\n  0x211f18a4, 0x06180b09, 0x27001823, 0x42000f02,   // hu.ga.tl_433 no.hu.de_444 hu.id..._880 es.mt..._220\n  0x1a4b22a4, 0x4b1a1708, 0x1d1a3f02, 0x451a0da4,   // tr.az.xxx_433 ro.xxx.az_443 sw.xxx.hr_222 pt.xxx.sk_433\n  // [3960]\n  0x4b1a2208, 0x1d001813, 0x17002b23, 0x431a0507,   // tr.xxx.az_443 hu.hr..._650 cy.ro..._880 fr.xxx.vi_432\n  0x173f3802, 0x3a172707, 0x43001723, 0x273a8c02,   // ca.sw.ro_222 id.ro.eu_432 ro.vi..._880 ht.eu.id_222\n  0x05043a08, 0x02660314, 0x0f002121, 0x1f3f2e12,   // eu.fi.fr_443 nl.af.da_666 tl.es..._860 sq.sw.ga_654\n  0x011a1509, 0x2b000b02, 0x10003813, 0x04002212,   // lv.xxx.en_444 no.cy..._220 ca.sv..._650 tr.fi..._640\n  // [3970]\n  0x04101a02, 0x181a1708, 0x06034208, 0x21004502,   // xxx.sv.fi_222 ro.xxx.hu_443 mt.nl.de_443 sk.tl..._220\n  0x1a193fa4, 0x0e1c1e08, 0x1d160d02, 0x1a000c13,   // sw.et.xxx_433 sr.bg.ru_443 pt.lt.hr_222 pl.xxx..._650\n  0x22000f13, 0x8c420c12, 0x06000f14, 0x16153f08,   // es.tr..._650 pl.mt.ht_654 es.de..._660 sw.lv.lt_443\n  0x12031a08, 0x0f000423, 0x16660314, 0x120c45a4,   // xxx.nl.cs_443 fi.es..._880 nl.af.lt_666 sk.pl.cs_433\n  // [3980]\n  0x1e1d06a4, 0x45126609, 0x1e000809, 0x0c004222,   // de.hr.sr_433 af.cs.sk_444 it.sr..._440 mt.pl..._870\n  0x1d1e0f02, 0x064b2260, 0x1d450208, 0x10000421,   // es.sr.hr_222 tr.az.de_664 da.sk.hr_443 fi.sv..._860\n  0x03001602, 0x1c1e2560, 0x1d383a02, 0x03004507,   // lt.nl..._220 mk.sr.bg_664 eu.ca.hr_222 sk.nl..._420\n  0x1d170309, 0x27021009, 0x19101813, 0x0b001714,   // nl.ro.hr_444 sv.da.id_444 hu.sv.et_665 ro.no..._660\n  // [3990]\n  0x1e151d12, 0x03001d13, 0x1d1e0302, 0x0b002212,   // hr.lv.sr_654 hr.nl..._650 nl.sr.hr_222 tr.no..._640\n  0x03004214, 0x29014b02, 0x14010202, 0x14161a13,   // mt.nl..._660 az.en.ms_222 da.en.is_222 xxx.lt.is_665\n  0x40381412, 0x14004212, 0x19001820, 0x45124202,   // is.ca.sl_654 mt.is..._640 hu.et..._850 mt.cs.sk_222\n  0x1f141912, 0x16001912, 0x29001f09, 0x8c0c0107,   // et.is.ga_654 et.lt..._640 ga.ms..._440 en.pl.ht_432\n  // [39a0]\n  0x451d0c08, 0x12003a13, 0x12184502, 0x4b2214af,   // pl.hr.sk_443 eu.cs..._650 sk.hu.cs_222 is.tr.az_655\n  0x1a0f0109, 0x4b142208, 0x144b2b13, 0x27020d02,   // en.es.xxx_444 tr.is.az_443 cy.az.is_665 pt.da.id_222\n  0x053f20af, 0x4b004202, 0x1d221f02, 0x66002e14,   // gl.sw.fr_655 mt.az..._220 ga.tr.hr_222 sq.af..._660\n  0x456602a4, 0x27023f02, 0x250e2312, 0x12451614,   // da.af.sk_433 sw.da.id_222 uk.ru.mk_654 lt.sk.cs_666\n  // [39b0]\n  0x8c003a23, 0x02001f09, 0x66002e23, 0x1a014509,   // eu.ht..._880 ga.da..._440 sq.af..._880 sk.en.xxx_444\n  0x40002e22, 0x18002b09, 0x662b0c14, 0x8c292713,   // sq.sl..._870 cy.hu..._440 pl.cy.af_666 id.ms.ht_665\n  0x160d4509, 0x66004002, 0x010c4209, 0x45160302,   // sk.pt.lt_444 sl.af..._220 mt.pl.en_444 nl.lt.sk_222\n  0x29272b14, 0x660c0107, 0x06004b08, 0x15000b14,   // cy.id.ms_666 en.pl.af_432 az.de..._430 no.lv..._660\n  // [39c0]\n  0x22100b60, 0x19002b14, 0x29040202, 0x660d2102,   // no.sv.tr_664 cy.et..._660 da.fi.ms_222 tl.pt.af_222\n  0x02191809, 0x3f1d1e08, 0x1e1d3fa4, 0x3f1e1d08,   // hu.et.da_444 sr.hr.sw_443 sw.hr.sr_433 hr.sr.sw_443\n  0x1d081e09, 0x03216609, 0x170f0d12, 0x100d4009,   // sr.it.hr_444 af.tl.nl_444 pt.es.ro_654 sl.pt.sv_444\n  0x061d4008, 0x29450107, 0x08002708, 0x17100308,   // sl.hr.de_443 en.sk.ms_432 id.it..._430 nl.sv.ro_443\n  // [39d0]\n  0x1d104502, 0x0b141014, 0x15003f12, 0x050116a4,   // sk.sv.hr_222 sv.is.no_666 sw.lv..._640 lt.en.fr_433\n  0x042e2b09, 0x12000808, 0x664521a4, 0x04193f13,   // cy.sq.fi_444 it.cs..._430 tl.sk.af_433 sw.et.fi_665\n  0x18002122, 0x22064b12, 0x271f0f02, 0x01002022,   // tl.hu..._870 az.de.tr_654 es.ga.id_222 gl.en..._870\n  0x04190b09, 0x170d1f60, 0x21000608, 0x15001607,   // no.et.fi_444 ga.pt.ro_664 de.tl..._430 lt.lv..._420\n  // [39e0]\n  0x12451a13, 0x04061060, 0x0c001d02, 0x152e8ca4,   // xxx.sk.cs_665 sv.de.fi_664 hr.pl..._220 ht.sq.lv_433\n  0x27210108, 0x2e0d0f13, 0x18000107, 0x40000502,   // en.tl.id_443 es.pt.sq_665 en.hu..._420 fr.sl..._220\n  0x050408a4, 0x451602a4, 0x16200109, 0x14001a23,   // it.fi.fr_433 da.lt.sk_433 en.gl.lt_444 xxx.is..._880\n  0x17080d12, 0x10004b08, 0x1f292760, 0x16001802,   // pt.it.ro_654 az.sv..._430 id.ms.ga_664 hu.lt..._220\n  // [39f0]\n  0x292e4b02, 0x01000407, 0x4b001421, 0x66001608,   // az.sq.ms_222 fi.en..._420 is.az..._860 lt.af..._430\n  0x18450809, 0x08000c13, 0x45150f08, 0x8c056608,   // it.sk.hu_444 pl.it..._650 es.lv.sk_443 af.fr.ht_443\n  0x45151207, 0x45000f13, 0x15001812, 0x21004214,   // cs.lv.sk_432 es.sk..._650 hu.lv..._640 mt.tl..._660\n  0x422b2108, 0x42002122, 0x21004223, 0x66001a22,   // tl.cy.mt_443 tl.mt..._870 mt.tl..._880 xxx.af..._870\n  // [3a00]\n  0x433a3808, 0x0c214214, 0x1e006614, 0x1e1d0107,   // ca.eu.vi_443 mt.tl.pl_666 af.sr..._660 en.hr.sr_432\n  0x05001409, 0x66001f02, 0x0b661013, 0x02452b08,   // is.fr..._440 ga.af..._220 sv.af.no_665 cy.sk.da_443\n  0x17380114, 0x05188c08, 0x0f000512, 0x18450d07,   // en.ca.ro_666 ht.hu.fr_443 fr.es..._640 pt.sk.hu_432\n  0x041f3f12, 0x18004008, 0x21001823, 0x042719a4,   // sw.ga.fi_654 sl.hu..._430 hu.tl..._880 et.id.fi_433\n  // [3a10]\n  0x45140d12, 0x17380d14, 0x8c001714, 0x38002e02,   // pt.is.sk_654 pt.ca.ro_666 ro.ht..._660 sq.ca..._220\n  0x0d001414, 0x0f001722, 0x03000413, 0x4b0d2255,   // is.pt..._660 ro.es..._870 fi.nl..._650 tr.pt.az_442\n  0x290d2e02, 0x38003a07, 0x10020109, 0x27003a08,   // sq.pt.ms_222 eu.ca..._420 en.da.sv_444 eu.id..._430\n  0x0c061a07, 0x024512a4, 0x45430107, 0x45001713,   // xxx.de.pl_432 cs.sk.da_433 en.vi.sk_432 ro.sk..._650\n  // [3a20]\n  0x1d1e0b02, 0x450d0502, 0x3a001812, 0x14001011,   // no.sr.hr_222 fr.pt.sk_222 hu.eu..._640 sv.is..._630\n  0x16190409, 0x21001423, 0x290c2b02, 0x451d1a07,   // fi.et.lt_444 is.tl..._880 cy.pl.ms_222 xxx.hr.sk_432\n  0x08001422, 0x1a273f07, 0x041940a4, 0x451e2907,   // is.it..._870 sw.id.xxx_432 sl.et.fi_433 ms.sr.sk_432\n  0x03023fa4, 0x4b221012, 0x1f002013, 0x12430802,   // sw.da.nl_433 sv.tr.az_654 gl.ga..._650 it.vi.cs_222\n  // [3a30]\n  0x21001f08, 0x0f140b07, 0x0f080107, 0x3a004513,   // ga.tl..._430 no.is.es_432 en.it.es_432 sk.eu..._650\n  0x1e020b09, 0x2b004b13, 0x122b4514, 0x45060202,   // no.da.sr_444 az.cy..._650 sk.cy.cs_666 da.de.sk_222\n  0x3a2e1a07, 0x12002709, 0x29081a55, 0x03001d23,   // xxx.sq.eu_432 id.cs..._440 xxx.it.ms_442 hr.nl..._880\n  0x06050108, 0x17453fa4, 0x16033aa4, 0x45163f02,   // en.fr.de_443 sw.sk.ro_433 eu.nl.lt_433 sw.lt.sk_222\n  // [3a40]\n  0x3a150f09, 0x2e000d14, 0x1a000c23, 0x1f001212,   // es.lv.eu_444 pt.sq..._660 pl.xxx..._880 cs.ga..._640\n  0x21000c13, 0x030f2b08, 0x15000421, 0x0c008c21,   // pl.tl..._650 cy.es.nl_443 fi.lv..._860 ht.pl..._860\n  0x0e1e1c08, 0x0d006609, 0x0d081a12, 0x06292709,   // bg.sr.ru_443 af.pt..._440 xxx.it.pt_654 id.ms.de_444\n  0x298c0402, 0x3a001a07, 0x0d004012, 0x032e0b09,   // fi.ht.ms_222 xxx.eu..._420 sl.pt..._640 no.sq.nl_444\n  // [3a50]\n  0x01421f08, 0x0e1e1c12, 0x0f0d2ba4, 0x16001812,   // ga.mt.en_443 bg.sr.ru_654 cy.pt.es_433 hu.lt..._640\n  0x19000822, 0x0f2b0c08, 0x0d381708, 0x12451611,   // it.et..._870 pl.cy.es_443 ro.ca.pt_443 lt.sk.cs_653\n  0x051706a4, 0x121e1d13, 0x03001912, 0x0c8c2108,   // de.ro.fr_433 hr.sr.cs_665 et.nl..._640 tl.ht.pl_443\n  0x290d3802, 0x1c233007, 0x08004521, 0x0e251e09,   // ca.pt.ms_222 be.uk.bg_432 sk.it..._860 sr.mk.ru_444\n  // [3a60]\n  0x03016609, 0x0e1c1ea4, 0x45180c07, 0x45180cad,   // af.en.nl_444 sr.bg.ru_433 pl.hu.sk_432 pl.hu.sk_643\n  0x8c001a13, 0x42041912, 0x29273a12, 0x66030ca4,   // xxx.ht..._650 et.fi.mt_654 eu.id.ms_654 pl.nl.af_433\n  0x66032708, 0x451d1602, 0x191d1e13, 0x06004011,   // id.nl.af_443 lt.hr.sk_222 sr.hr.et_665 sl.de..._630\n  0x0f001408, 0x272915a4, 0x10291908, 0x450d0f08,   // is.es..._430 lv.ms.id_433 et.ms.sv_443 es.pt.sk_443\n  // [3a70]\n  0x18221608, 0x12150308, 0x16221507, 0x0d002221,   // lt.tr.hu_443 nl.lv.cs_443 lv.tr.lt_432 tr.pt..._860\n  0x3f001523, 0x180d0f07, 0x0f380d14, 0x19001814,   // lv.sw..._880 es.pt.hu_432 pt.ca.es_666 hu.et..._660\n  0x42002e22, 0x06041007, 0x40002223, 0x150366af,   // sq.mt..._870 sv.fi.de_432 tr.sl..._880 af.nl.lv_655\n  0x224b2960, 0x011705af, 0x0f0d1f09, 0x42000d22,   // ms.az.tr_664 fr.ro.en_655 ga.pt.es_444 pt.mt..._870\n  // [3a80]\n  0x14001a13, 0x4b228c08, 0x06193aa4, 0x12453faf,   // xxx.is..._650 ht.tr.az_443 eu.et.de_433 sw.sk.cs_655\n  0x450f1408, 0x05004212, 0x4b3a1912, 0x19180455,   // is.es.sk_443 mt.fr..._640 et.eu.az_654 fi.hu.et_442\n  0x17004312, 0x45032702, 0x191e1d09, 0x02003f08,   // vi.ro..._640 id.nl.sk_222 hr.sr.et_444 sw.da..._430\n  0x040b1908, 0x17001607, 0x291e2702, 0x420b0107,   // et.no.fi_443 lt.ro..._420 id.sr.ms_222 en.no.mt_432\n  // [3a90]\n  0x06002921, 0x10020609, 0x06002023, 0x3a000f11,   // ms.de..._860 de.da.sv_444 gl.de..._880 es.eu..._630\n  0x02101aa4, 0x273f0b07, 0x10001a13, 0x1d190402,   // xxx.sv.da_433 no.sw.id_432 xxx.sv..._650 fi.et.hr_222\n  0x21293a12, 0x02292108, 0x2e000f02, 0x0d000412,   // eu.ms.tl_654 tl.ms.da_443 es.sq..._220 fi.pt..._640\n  0x3f101608, 0x0d003822, 0x1d086602, 0x0b140212,   // lt.sv.sw_443 ca.pt..._870 af.it.hr_222 da.is.no_654\n  // [3aa0]\n  0x15060b07, 0x03002708, 0x1e0103a4, 0x18001e12,   // no.de.lv_432 id.nl..._430 nl.en.sr_433 sr.hu..._640\n  0x10040612, 0x1d3f2908, 0x2e001f12, 0x29004b09,   // de.fi.sv_654 ms.sw.hr_443 ga.sq..._640 az.ms..._440\n  0x27214b02, 0x22214b09, 0x1e041d02, 0x02102108,   // az.tl.id_222 az.tl.tr_444 hr.fi.sr_222 tl.sv.da_443\n  0x29274508, 0x451f2109, 0x45170109, 0x16083a08,   // sk.id.ms_443 tl.ga.sk_444 en.ro.sk_444 eu.it.lt_443\n  // [3ab0]\n  0x05014209, 0x1c0e2560, 0x66002122, 0x163a1712,   // mt.en.fr_444 mk.ru.bg_664 tl.af..._870 ro.eu.lt_654\n  0x10190208, 0x163f0807, 0x15454008, 0x19148c09,   // da.et.sv_443 it.sw.lt_432 sl.sk.lv_443 ht.is.et_444\n  0x03002e10, 0x121a4508, 0x1d001612, 0x1e0c0107,   // sq.nl..._620 sk.xxx.cs_443 lt.hr..._640 en.pl.sr_432\n  0x43000413, 0x384b2208, 0x011a4b08, 0x45002214,   // fi.vi..._650 tr.az.ca_443 az.xxx.en_443 tr.sk..._660\n  // [3ac0]\n  0x30251c60, 0x151f29a4, 0x43080455, 0x04004b13,   // bg.mk.be_664 ms.ga.lv_433 fi.it.vi_442 az.fi..._650\n  0x0b0f06af, 0x42080d12, 0x18000423, 0x08063802,   // de.es.no_655 pt.it.mt_654 fi.hu..._880 ca.de.it_222\n  0x05003a09, 0x066603af, 0x03020b12, 0x29451209,   // eu.fr..._440 nl.af.de_655 no.da.nl_654 cs.sk.ms_444\n  0x0f0d1507, 0x18081608, 0x16003f13, 0x451d0b07,   // lv.pt.es_432 lt.it.hu_443 sw.lt..._650 no.hr.sk_432\n  // [3ad0]\n  0x1a004308, 0x1a216612, 0x1e151602, 0x080d0f08,   // vi.xxx..._430 af.tl.xxx_654 lt.lv.sr_222 es.pt.it_443\n  0x29001a13, 0x00001d2d, 0x45171002, 0x40001a08,   // xxx.ms..._650 hr......_A00 sv.ro.sk_222 xxx.sl..._430\n  0x03001614, 0x45181207, 0x45180402, 0x03182708,   // lt.nl..._660 cs.hu.sk_432 fi.hu.sk_222 id.hu.nl_443\n  0x66001f23, 0x66190b09, 0x06036655, 0x29182755,   // ga.af..._880 no.et.af_444 af.nl.de_442 id.hu.ms_442\n  // [3ae0]\n  0x453f1802, 0x2e2729af, 0x04000522, 0x1f000d22,   // hu.sw.sk_222 ms.id.sq_655 fr.fi..._870 pt.ga..._870\n  0x0b100612, 0x043f2109, 0x1e401dad, 0x05000422,   // de.sv.no_654 tl.sw.fi_444 hr.sl.sr_643 fi.fr..._870\n  0x1f000422, 0x040d4208, 0x21002e08, 0x15662107,   // fi.ga..._870 mt.pt.fi_443 sq.tl..._430 tl.af.lv_432\n  0x06181002, 0x4b3f8c07, 0x4e333708, 0x2b000409,   // sv.hu.de_222 ht.sw.az_432 ar.ur.fa_443 fi.cy..._440\n  // [3af0]\n  0x431d4555, 0x19220607, 0x22041908, 0x0d001708,   // sk.hr.vi_442 de.tr.et_432 et.fi.tr_443 ro.pt..._430\n  0x1e000d02, 0x212229a4, 0x080f3814, 0x101a3fa4,   // pt.sr..._220 ms.tr.tl_433 ca.es.it_666 sw.xxx.sv_433\n  0x063829af, 0x1f660107, 0x19000d23, 0x1f001213,   // ms.ca.de_655 en.af.ga_432 pt.et..._880 cs.ga..._650\n  0x422b10a4, 0x15140612, 0x0f4b1f12, 0x0f00180d,   // sv.cy.mt_433 de.is.lv_654 ga.az.es_654 hu.es..._540\n  // [3b00]\n  0x190d0fa4, 0x02061002, 0x18100608, 0x4b0622a4,   // es.pt.et_433 sv.de.da_222 de.sv.hu_443 tr.de.az_433\n  0x251e3009, 0x19140260, 0x2b040da4, 0x02100107,   // be.sr.mk_444 da.is.et_664 pt.fi.cy_433 en.sv.da_432\n  0x14010b07, 0x66000b07, 0x04001a12, 0x4b660b09,   // no.en.is_432 no.af..._420 xxx.fi..._640 no.af.az_444\n  0x401218a4, 0x27001002, 0x036606af, 0x10002723,   // hu.cs.sl_433 sv.id..._220 de.af.nl_655 id.sv..._880\n  // [3b10]\n  0x18122ea4, 0x40038c13, 0x66221aa4, 0x1d1e1402,   // sq.cs.hu_433 ht.nl.sl_665 xxx.tr.af_433 is.sr.hr_222\n  0x8c003f21, 0x15002112, 0x0f380808, 0x224b2e12,   // sw.ht..._860 tl.lv..._640 it.ca.es_443 sq.az.tr_654\n  0x38000d22, 0x3f8c4207, 0x1e002321, 0x16001421,   // pt.ca..._870 mt.ht.sw_432 uk.sr..._860 is.lt..._860\n  0x2e002208, 0x15004509, 0x153f19af, 0x0d0f1f12,   // tr.sq..._430 sk.lv..._440 et.sw.lv_655 ga.es.pt_654\n  // [3b20]\n  0x4b000808, 0x29211502, 0x01662b12, 0x29270b09,   // it.az..._430 lv.tl.ms_222 cy.af.en_654 no.id.ms_444\n  0x8c222113, 0x02008c08, 0x1d1f1e02, 0x17002208,   // tl.tr.ht_665 ht.da..._430 sr.ga.hr_222 tr.ro..._430\n  0x27382102, 0x27290602, 0x050d0b07, 0x0d380512,   // tl.ca.id_222 de.ms.id_222 no.pt.fr_432 fr.ca.pt_654\n  0x141f0414, 0x293f2e08, 0x43002e11, 0x14450ba4,   // fi.ga.is_666 sq.sw.ms_443 sq.vi..._630 no.sk.is_433\n  // [3b30]\n  0x1f006609, 0x45013f55, 0x0b001613, 0x66060355,   // af.ga..._440 sw.en.sk_442 lt.no..._650 nl.de.af_442\n  0x1f140f13, 0x04002b07, 0x0d001411, 0x27008c12,   // es.is.ga_665 cy.fi..._420 is.pt..._630 ht.id..._640\n  0x102b1608, 0x044b2207, 0x05001623, 0x16000514,   // lt.cy.sv_443 tr.az.fi_432 lt.fr..._880 fr.lt..._660\n  0x12051812, 0x05001f23, 0x18141007, 0x022b6609,   // hu.fr.cs_654 ga.fr..._880 sv.is.hu_432 af.cy.da_444\n  // [3b40]\n  0x1f001623, 0x0b660308, 0x291f1402, 0x27298c02,   // lt.ga..._880 nl.af.no_443 is.ga.ms_222 ht.ms.id_222\n  0x1e1d0b13, 0x1f000814, 0x45141212, 0x0b050f09,   // no.hr.sr_665 it.ga..._660 cs.is.sk_654 es.fr.no_444\n  0x0b003823, 0x0b004209, 0x10004b23, 0x08170108,   // ca.no..._880 mt.no..._440 az.sv..._880 en.ro.it_443\n  0x1f000314, 0x21001809, 0x0f0d1814, 0x1f002708,   // nl.ga..._660 hu.tl..._440 hu.pt.es_666 id.ga..._430\n  // [3b50]\n  0x270421a4, 0x38200d12, 0x18141f14, 0x04272907,   // tl.fi.id_433 pt.gl.ca_654 ga.is.hu_666 ms.id.fi_432\n  0x27451002, 0x451812ad, 0x04183807, 0x0f001f23,   // sv.sk.id_222 cs.hu.sk_643 ca.hu.fi_432 ga.es..._880\n  0x0c001511, 0x27046602, 0x8c001a22, 0x0c161512,   // lv.pl..._630 af.fi.id_222 xxx.ht..._870 lv.lt.pl_654\n  0x4b271860, 0x0f003f09, 0x45121f09, 0x06001811,   // hu.id.az_664 sw.es..._440 ga.cs.sk_444 hu.de..._630\n  // [3b60]\n  0x0c150f07, 0x43002b07, 0x15000214, 0x14060b07,   // es.lv.pl_432 cy.vi..._420 da.lv..._660 no.de.is_432\n  0x224b2160, 0x45150302, 0x12058c08, 0x0d0f0514,   // tl.az.tr_664 nl.lv.sk_222 ht.fr.cs_443 fr.es.pt_666\n  0x16151907, 0x1d194212, 0x1f004b02, 0x1d0142a4,   // et.lv.lt_432 mt.et.hr_654 az.ga..._220 mt.en.hr_433\n  0x1d382b02, 0x290f8c02, 0x2e004007, 0x18060302,   // cy.ca.hr_222 ht.es.ms_222 sl.sq..._420 nl.de.hu_222\n  // [3b70]\n  0x42001d13, 0x04456612, 0x053f8c08, 0x1d051e02,   // hr.mt..._650 af.sk.fi_654 ht.sw.fr_443 sr.fr.hr_222\n  0x05384212, 0x3a0817a4, 0x10003a14, 0x0d0f2012,   // mt.ca.fr_654 ro.it.eu_433 eu.sv..._660 gl.es.pt_654\n  0x16003a22, 0x064b4208, 0x08001707, 0x21000f23,   // eu.lt..._870 mt.az.de_443 ro.it..._420 es.tl..._880\n  0x04002223, 0x12450faf, 0x173a05a4, 0x0d050f09,   // tr.fi..._880 es.sk.cs_655 fr.eu.ro_433 es.fr.pt_444\n  // [3b80]\n  0x12452702, 0x450f1702, 0x2e4b2211, 0x45124060,   // id.sk.cs_222 ro.es.sk_222 tr.az.sq_653 sl.cs.sk_664\n  0x191d0455, 0x15221912, 0x02664008, 0x0f1f0d09,   // fi.hr.et_442 et.tr.lv_654 sl.af.da_443 pt.ga.es_444\n  0x23251c60, 0x0d3f3a09, 0x10194260, 0x1e0e1c12,   // bg.mk.uk_664 eu.sw.pt_444 mt.et.sv_664 bg.ru.sr_654\n  0x10004b09, 0x2b003f21, 0x29010502, 0x4b102108,   // az.sv..._440 sw.cy..._860 fr.en.ms_222 tl.sv.az_443\n  // [3b90]\n  0x0d1806af, 0x141e1d60, 0x43000b02, 0x451002a4,   // de.hu.pt_655 hr.sr.is_664 no.vi..._220 da.sv.sk_433\n  0x30001e21, 0x2e001d14, 0x3a003821, 0x1e101d02,   // sr.be..._860 hr.sq..._660 ca.eu..._860 hr.sv.sr_222\n  0x22000d12, 0x192e0413, 0x19100614, 0x301c23af,   // pt.tr..._640 fi.sq.et_665 de.sv.et_666 uk.bg.be_655\n  0x40190460, 0x1a3f2708, 0x1a218c08, 0x16002707,   // fi.et.sl_664 id.sw.xxx_443 ht.tl.xxx_443 id.lt..._420\n  // [3ba0]\n  0x0c1a2709, 0x3f291912, 0x16211507, 0x0f191509,   // id.xxx.pl_444 et.ms.sw_654 lv.tl.lt_432 lv.et.es_444\n  0x05290faf, 0x01004009, 0x0d0f0812, 0x38062108,   // es.ms.fr_655 sl.en..._440 it.es.pt_654 tl.de.ca_443\n  0x183f1960, 0x38001823, 0x05000b23, 0x66423a12,   // et.sw.hu_664 hu.ca..._880 no.fr..._880 eu.mt.af_654\n  0x3a1f0daf, 0x1e8c2e02, 0x43060107, 0x43000b07,   // pt.ga.eu_655 sq.ht.sr_222 en.de.vi_432 no.vi..._420\n  // [3bb0]\n  0x0d001a02, 0x14100baf, 0x1d153a07, 0x2b002113,   // xxx.pt..._220 no.sv.is_655 eu.lv.hr_432 tl.cy..._650\n  0x0d276608, 0x29182102, 0x0d003a11, 0x04008c09,   // af.id.pt_443 tl.hu.ms_222 eu.pt..._630 ht.fi..._440\n  0x40002913, 0x18273811, 0x1f170d55, 0x17001608,   // ms.sl..._650 ca.id.hu_653 pt.ro.ga_442 lt.ro..._430\n  0x22102708, 0x14151909, 0x1d164008, 0x278c3a09,   // id.sv.tr_443 et.lv.is_444 sl.lt.hr_443 eu.ht.id_444\n  // [3bc0]\n  0x4b292212, 0x10292708, 0x08201207, 0x3a002212,   // tr.ms.az_654 id.ms.sv_443 cs.gl.it_432 tr.eu..._640\n  0x16041708, 0x1f003823, 0x17001422, 0x1f060b09,   // ro.fi.lt_443 ca.ga..._880 is.ro..._870 no.de.ga_444\n  0x14430f08, 0x16001423, 0x3a002722, 0x030142a4,   // es.vi.is_443 is.lt..._880 id.eu..._870 mt.en.nl_433\n  0x04160faf, 0x402b06a4, 0x43000f12, 0x0c002707,   // es.lt.fi_655 de.cy.sl_433 es.vi..._640 id.pl..._420\n  // [3bd0]\n  0x38058c09, 0x42002908, 0x2e014502, 0x3f211a12,   // ht.fr.ca_444 ms.mt..._430 sk.en.sq_222 xxx.tl.sw_654\n  0x103f3807, 0x17083a09, 0x01051408, 0x45163808,   // ca.sw.sv_432 eu.it.ro_444 is.fr.en_443 ca.lt.sk_443\n  0x0d200f60, 0x05002e14, 0x010604a4, 0x0f220302,   // es.gl.pt_664 sq.fr..._660 fi.de.en_433 nl.tr.es_222\n  0x08024208, 0x19000814, 0x17100b07, 0x17451202,   // mt.da.it_443 it.et..._660 no.sv.ro_432 cs.sk.ro_222\n  // [3be0]\n  0x1f0f0d08, 0x29041911, 0x66030209, 0x29270402,   // pt.es.ga_443 et.fi.ms_653 da.nl.af_444 fi.id.ms_222\n  0x29001209, 0x25001c21, 0x3f292b12, 0x38002214,   // cs.ms..._440 bg.mk..._860 cy.ms.sw_654 tr.ca..._660\n  0x27052909, 0x21001d14, 0x2e000513, 0x01171a12,   // ms.fr.id_444 hr.tl..._660 fr.sq..._650 xxx.ro.en_654\n  0x15000607, 0x2e1d1e02, 0x1c1e0eaf, 0x12002b09,   // de.lv..._420 sr.hr.sq_222 ru.sr.bg_655 cy.cs..._440\n  // [3bf0]\n  0x300e1c09, 0x0c1245af, 0x172e3a08, 0x0d022708,   // bg.ru.be_444 sk.cs.pl_655 eu.sq.ro_443 id.da.pt_443\n  0x293a0602, 0x03003802, 0x083f0faf, 0x3a292713,   // de.eu.ms_222 ca.nl..._220 es.sw.it_655 id.ms.eu_665\n  0x45001512, 0x450c3a07, 0x08003f08, 0x0f011a09,   // lv.sk..._640 eu.pl.sk_432 sw.it..._430 xxx.en.es_444\n  0x1d151e14, 0x2e273a08, 0x21270107, 0x190f1f08,   // sr.lv.hr_666 eu.id.sq_443 en.id.tl_432 ga.es.et_443\n\n  // [3c00]\n  0x0b000423, 0x8c000f13, 0x4b212213, 0x29222107,   // fi.no..._880 es.ht..._650 tr.tl.az_665 tl.tr.ms_432\n  0x23251c07, 0x1c1e2511, 0x45051808, 0x0c1d2e09,   // bg.mk.uk_432 mk.sr.bg_653 hu.fr.sk_443 sq.hr.pl_444\n  0x05001223, 0x08000f22, 0x2b003821, 0x17002b13,   // cs.fr..._880 es.it..._870 ca.cy..._860 cy.ro..._650\n  0x0d001413, 0x45180fa4, 0x8c081708, 0x381f1209,   // is.pt..._650 es.hu.sk_433 ro.it.ht_443 cs.ga.ca_444\n  // [3c10]\n  0x1f141809, 0x38004207, 0x1e250e14, 0x8c272909,   // hu.is.ga_444 mt.ca..._420 ru.mk.sr_666 ms.id.ht_444\n  0x15003f08, 0x20000402, 0x19151609, 0x29004208,   // sw.lv..._430 fi.gl..._220 lt.lv.et_444 mt.ms..._430\n  0x15001202, 0x02211f08, 0x10001f02, 0x05000423,   // cs.lv..._220 ga.tl.da_443 ga.sv..._220 fi.fr..._880\n  0x08001013, 0x1f004321, 0x10000d14, 0x1e1d2908,   // sv.it..._650 vi.ga..._860 pt.sv..._660 ms.hr.sr_443\n  // [3c20]\n  0x1e1d1a02, 0x8c004013, 0x42006614, 0x22000223,   // xxx.hr.sr_222 sl.ht..._650 af.mt..._660 da.tr..._880\n  0x27001f13, 0x0b2b1f12, 0x0d384508, 0x0f002b12,   // ga.id..._650 ga.cy.no_654 sk.ca.pt_443 cy.es..._640\n  0x180f1408, 0x15081a09, 0x17000b02, 0x380f0560,   // is.es.hu_443 xxx.it.lv_444 no.ro..._220 fr.es.ca_664\n  0x0d004513, 0x088c3808, 0x17000f23, 0x0d453809,   // sk.pt..._650 ca.ht.it_443 es.ro..._880 ca.sk.pt_444\n  // [3c30]\n  0x0d0f18af, 0x42004b09, 0x101d1409, 0x380f1812,   // hu.es.pt_655 az.mt..._440 is.hr.sv_444 hu.es.ca_654\n  0x1a0c3f07, 0x12452b08, 0x29000122, 0x2e002211,   // sw.pl.xxx_432 cy.sk.cs_443 en.ms..._870 tr.sq..._630\n  0x05001614, 0x8c051707, 0x0d3f2e08, 0x160c1513,   // lt.fr..._660 ro.fr.ht_432 sq.sw.pt_443 lv.pl.lt_665\n  0x450c1512, 0x0f200d14, 0x43000821, 0x010c2b09,   // lv.pl.sk_654 pt.gl.es_666 it.vi..._860 cy.pl.en_444\n  // [3c40]\n  0x66272ba4, 0x0b001912, 0x66181607, 0x12184512,   // cy.id.af_433 et.no..._640 lt.hu.af_432 sk.hu.cs_654\n  0x01004508, 0x12451702, 0x45123809, 0x05040b07,   // sk.en..._430 ro.sk.cs_222 ca.cs.sk_444 no.fi.fr_432\n  0x18226609, 0x19142b08, 0x213f8c08, 0x2b423a09,   // af.tr.hu_444 cy.is.et_443 ht.sw.tl_443 eu.mt.cy_444\n  0x15100b07, 0x1a3f21a4, 0x29004223, 0x4b3f2707,   // no.sv.lv_432 tl.sw.xxx_433 mt.ms..._880 id.sw.az_432\n  // [3c50]\n  0x1e1d4209, 0x05088c08, 0x8c001514, 0x661808a4,   // mt.hr.sr_444 ht.it.fr_443 lv.ht..._660 it.hu.af_433\n  0x14008c22, 0x0c164508, 0x0c000313, 0x8c001a14,   // ht.is..._870 sk.lt.pl_443 nl.pl..._650 xxx.ht..._660\n  0x0b3f6608, 0x10006607, 0x3f0d0409, 0x27290413,   // af.sw.no_443 af.sv..._420 fi.pt.sw_444 fi.ms.id_665\n  0x161e0109, 0x45101802, 0x17120208, 0x220b14af,   // en.sr.lt_444 hu.sv.sk_222 da.cs.ro_443 is.no.tr_655\n  // [3c60]\n  0x22001422, 0x45002e09, 0x42008c13, 0x161705a4,   // is.tr..._870 sq.sk..._440 ht.mt..._650 fr.ro.lt_433\n  0x27001908, 0x050d04ab, 0x3f002b07, 0x163f27a4,   // et.id..._430 fi.pt.fr_621 cy.sw..._420 id.sw.lt_433\n  0x19002b12, 0x19180607, 0x663f0308, 0x1e220c02,   // cy.et..._640 de.hu.et_432 nl.sw.af_443 pl.tr.sr_222\n  0x42000c09, 0x0d001509, 0x3f218c08, 0x06003f08,   // pl.mt..._440 lv.pt..._440 ht.tl.sw_443 sw.de..._430\n  // [3c70]\n  0x1a001602, 0x27452b02, 0x1f100b12, 0x1f003808,   // lt.xxx..._220 cy.sk.id_222 no.sv.ga_654 ca.ga..._430\n  0x45422902, 0x18004309, 0x45141811, 0x29212b02,   // ms.mt.sk_222 vi.hu..._440 hu.is.sk_653 cy.tl.ms_222\n  0x140b1009, 0x14001623, 0x052e1aa4, 0x23001c21,   // sv.no.is_444 lt.is..._880 xxx.sq.fr_433 bg.uk..._860\n  0x29660308, 0x14172212, 0x224b8c09, 0x19000b07,   // nl.af.ms_443 tr.ro.is_654 ht.az.tr_444 no.et..._420\n  // [3c80]\n  0x051a1fa4, 0x2b001d02, 0x2b381708, 0x21001509,   // ga.xxx.fr_433 hr.cy..._220 ro.ca.cy_443 lv.tl..._440\n  0x3a0b2b12, 0x150c1814, 0x66060309, 0x22104309,   // cy.no.eu_654 hu.pl.lv_666 nl.de.af_444 vi.sv.tr_444\n  0x0e1e1c60, 0x18000411, 0x18006623, 0x10022108,   // bg.sr.ru_664 fi.hu..._630 af.hu..._880 tl.da.sv_443\n  0x2b0b0212, 0x38002b08, 0x3a1e1d08, 0x1e251c07,   // da.no.cy_654 cy.ca..._430 hr.sr.eu_443 bg.mk.sr_432\n  // [3c90]\n  0x2b8c05a4, 0x1f021708, 0x22000621, 0x053a0f08,   // fr.ht.cy_433 ro.da.ga_443 de.tr..._860 es.eu.fr_443\n  0x29274302, 0x66170507, 0x160c3a12, 0x0f001f22,   // vi.id.ms_222 fr.ro.af_432 eu.pl.lt_654 ga.es..._870\n  0x29000f13, 0x2e002014, 0x0c006623, 0x02000f02,   // es.ms..._650 gl.sq..._660 af.pl..._880 es.da..._220\n  0x01000822, 0x124538af, 0x388c1702, 0x01000212,   // it.en..._870 ca.sk.cs_655 ro.ht.ca_222 da.en..._640\n  // [3ca0]\n  0x1d1a1e09, 0x38000807, 0x14400b09, 0x02006612,   // sr.xxx.hr_444 it.ca..._420 no.sl.is_444 af.da..._640\n  0x27000502, 0x220d0f08, 0x121e1daf, 0x29162e08,   // fr.id..._220 es.pt.tr_443 hr.sr.cs_655 sq.lt.ms_443\n  0x06101608, 0x0c036609, 0x221d1602, 0x23002520,   // lt.sv.de_443 af.nl.pl_444 lt.hr.tr_222 mk.uk..._850\n  0x01060209, 0x4b008c08, 0x144b22a4, 0x1e300ea4,   // da.de.en_444 ht.az..._430 tr.az.is_433 ru.be.sr_433\n  // [3cb0]\n  0x100b1412, 0x02008c22, 0x40421207, 0x12060302,   // is.no.sv_654 ht.da..._870 cs.mt.sl_432 nl.de.cs_222\n  0x1e0e1ca4, 0x4b3f2908, 0x272b3f12, 0x8c002107,   // bg.ru.sr_433 ms.sw.az_443 sw.cy.id_654 tl.ht..._420\n  0x45000b23, 0x0f100202, 0x27001f12, 0x29382707,   // no.sk..._880 da.sv.es_222 ga.id..._640 id.ca.ms_432\n  0x182927a4, 0x1d291702, 0x21002e14, 0x1c252307,   // id.ms.hu_433 ro.ms.hr_222 sq.tl..._660 uk.mk.bg_432\n  // [3cc0]\n  0x40124509, 0x29272202, 0x1f040107, 0x0c210107,   // sk.cs.sl_444 tr.id.ms_222 en.fi.ga_432 en.tl.pl_432\n  0x14004014, 0x1d120302, 0x43002123, 0x2e1a0107,   // sl.is..._660 nl.cs.hr_222 tl.vi..._880 en.xxx.sq_432\n  0x21432909, 0x01038c07, 0x43001922, 0x43292107,   // ms.vi.tl_444 ht.nl.en_432 et.vi..._870 tl.ms.vi_432\n  0x45002b12, 0x19004309, 0x66000809, 0x2b002212,   // cy.sk..._640 vi.et..._440 it.af..._440 tr.cy..._640\n  // [3cd0]\n  0x42006621, 0x06183aaf, 0x21170107, 0x21001722,   // af.mt..._860 eu.hu.de_655 en.ro.tl_432 ro.tl..._870\n  0x150f0d09, 0x100b0614, 0x0d000b14, 0x223810a4,   // pt.es.lv_444 de.no.sv_666 no.pt..._660 sv.ca.tr_433\n  0x1c230e08, 0x45058c02, 0x161d1e08, 0x12002013,   // ru.uk.bg_443 ht.fr.sk_222 sr.hr.lt_443 gl.cs..._650\n  0x0e233055, 0x27012902, 0x42292708, 0x011d2ba4,   // be.uk.ru_442 ms.en.id_222 id.ms.mt_443 cy.hr.en_433\n  // [3ce0]\n  0x05002213, 0x380f4b08, 0x251c3012, 0x2e420812,   // tr.fr..._650 az.es.ca_443 be.bg.mk_654 it.mt.sq_654\n  0x14004509, 0x3f161712, 0x0c040baf, 0x16001712,   // sk.is..._440 ro.lt.sw_654 no.fi.pl_655 ro.lt..._640\n  0x3a003822, 0x1d000b13, 0x27082e08, 0x380d2013,   // ca.eu..._870 no.hr..._650 sq.it.id_443 gl.pt.ca_665\n  0x163f4509, 0x2e008c12, 0x043a3fa4, 0x124505af,   // sk.sw.lt_444 ht.sq..._640 sw.eu.fi_433 fr.sk.cs_655\n  // [3cf0]\n  0x1d006608, 0x03661f09, 0x0400051f, 0x12450512,   // af.hr..._430 ga.af.nl_444 fr.fi..._840 fr.sk.cs_654\n  0x1a002212, 0x06021012, 0x66010309, 0x0f083807,   // tr.xxx..._640 sv.da.de_654 nl.en.af_444 ca.it.es_432\n  0x40002707, 0x17388c09, 0x15003a23, 0x14001507,   // id.sl..._420 ht.ca.ro_444 eu.lv..._880 lv.is..._420\n  0x04128ca4, 0x42000812, 0x22170109, 0x30251e07,   // ht.cs.fi_433 it.mt..._640 en.ro.tr_444 sr.mk.be_432\n  // [3d00]\n  0x0f1805a4, 0x42002108, 0x27012b12, 0x1f001521,   // fr.hu.es_433 tl.mt..._430 cy.en.id_654 lv.ga..._860\n  0x21062709, 0x12012e02, 0x2b008c23, 0x14100b55,   // id.de.tl_444 sq.en.cs_222 ht.cy..._880 no.sv.is_442\n  0x29432708, 0x3f001012, 0x03011a08, 0x3f450814,   // id.vi.ms_443 sv.sw..._640 xxx.en.nl_443 it.sk.sw_666\n  0x45160c13, 0x43051a08, 0x3a1a3f08, 0x04084213,   // pl.lt.sk_665 xxx.fr.vi_443 sw.xxx.eu_443 mt.it.fi_665\n  // [3d10]\n  0x2b451f08, 0x40102707, 0x0b001214, 0x452b0202,   // ga.sk.cy_443 id.sv.sl_432 cs.no..._660 da.cy.sk_222\n  0x45181211, 0x42001023, 0x27004013, 0x18273809,   // cs.hu.sk_653 sv.mt..._880 sl.id..._650 ca.id.hu_444\n  0x21432709, 0x43002121, 0x43210109, 0x08001822,   // id.vi.tl_444 tl.vi..._860 en.tl.vi_444 hu.it..._870\n  0x16003f07, 0x06084060, 0x2e000822, 0x66004314,   // sw.lt..._420 sl.it.de_664 it.sq..._870 vi.af..._660\n  // [3d20]\n  0x18002222, 0x08003f13, 0x452e0309, 0x01006613,   // tr.hu..._870 sw.it..._650 nl.sq.sk_444 af.en..._650\n  0x04001d23, 0x08000f07, 0x2e0b0407, 0x8c200f08,   // hr.fi..._880 es.it..._420 fi.no.sq_432 es.gl.ht_443\n  0x2e001812, 0x1e181d60, 0x182e1d08, 0x172e0514,   // hu.sq..._640 hr.hu.sr_664 hr.sq.hu_443 fr.sq.ro_666\n  0x12054514, 0x38002114, 0x08423809, 0x120f0107,   // sk.fr.cs_666 tl.ca..._660 ca.mt.it_444 en.es.cs_432\n  // [3d30]\n  0x450c1e02, 0x0d220502, 0x29120107, 0x0d180faf,   // sr.pl.sk_222 fr.tr.pt_222 en.cs.ms_432 es.hu.pt_655\n  0x12451509, 0x0f3a0812, 0x1a000523, 0x29001f13,   // lv.sk.cs_444 it.eu.es_654 fr.xxx..._880 ga.ms..._650\n  0x22001722, 0x0f181409, 0x0f450d07, 0x0e3025a4,   // ro.tr..._870 is.hu.es_444 pt.sk.es_432 mk.be.ru_433\n  0x18001920, 0x014505a4, 0x43000209, 0x011821a4,   // et.hu..._850 fr.sk.en_433 da.vi..._440 tl.hu.en_433\n  // [3d40]\n  0x20004514, 0x18450fa4, 0x4b008c21, 0x29001d23,   // sk.gl..._660 es.sk.hu_433 ht.az..._860 hr.ms..._880\n  0x068c2108, 0x15000213, 0x42003814, 0x0f183a07,   // tl.ht.de_443 da.lv..._650 ca.mt..._660 eu.hu.es_432\n  0x45004b07, 0x1d1e1902, 0x2b450b07, 0x2e000508,   // az.sk..._420 et.sr.hr_222 no.sk.cy_432 fr.sq..._430\n  0x250e1ea4, 0x0f00431d, 0x4b004023, 0x06146608,   // sr.ru.mk_433 vi.es..._820 sl.az..._880 af.is.de_443\n  // [3d50]\n  0x4b008c14, 0x02002b12, 0x0b001608, 0x29043a02,   // ht.az..._660 cy.da..._640 lt.no..._430 eu.fi.ms_222\n  0x4b000423, 0x04004b22, 0x18001022, 0x2b001f21,   // fi.az..._880 az.fi..._870 sv.hu..._870 ga.cy..._860\n  0x10021913, 0x211e1d09, 0x17008c14, 0x0f0d0b09,   // et.da.sv_665 hr.sr.tl_444 ht.ro..._660 no.pt.es_444\n  0x27001414, 0x0c4518ab, 0x27458c02, 0x40001508,   // is.id..._660 hu.sk.pl_621 ht.sk.id_222 lv.sl..._430\n  // [3d60]\n  0x1d161ea4, 0x43001e07, 0x250e2314, 0x3a002723,   // sr.lt.hr_433 sr.vi..._420 uk.ru.mk_666 id.eu..._880\n  0x1e003011, 0x01052ba4, 0x1d001907, 0x66003a08,   // be.sr..._630 cy.fr.en_433 et.hr..._420 eu.af..._430\n  0x66003a12, 0x3a036611, 0x27006613, 0x2b214212,   // eu.af..._640 af.nl.eu_653 af.id..._650 mt.tl.cy_654\n  0x42180309, 0x3a006622, 0x0b1002a4, 0x0b008c13,   // nl.hu.mt_444 af.eu..._870 da.sv.no_433 ht.no..._650\n  // [3d70]\n  0x060314a4, 0x14124511, 0x1d122ea4, 0x211808a4,   // is.nl.de_433 sk.cs.is_653 sq.cs.hr_433 it.hu.tl_433\n  0x0c151608, 0x1e002e08, 0x03451211, 0x06451a07,   // lt.lv.pl_443 sq.sr..._430 cs.sk.nl_653 xxx.sk.de_432\n  0x01662107, 0x17194208, 0x08100b07, 0x2b0c6608,   // tl.af.en_432 mt.et.ro_443 no.sv.it_432 af.pl.cy_443\n  0x061802a4, 0x04000508, 0x19042ba4, 0x1d004023,   // da.hu.de_433 fr.fi..._430 cy.fi.et_433 sl.hr..._880\n  // [3d80]\n  0x04011407, 0x03026609, 0x1d1e2212, 0x1e1d2208,   // is.en.fi_432 af.da.nl_444 tr.sr.hr_654 tr.hr.sr_443\n  0x45141812, 0x1e1d22af, 0x27291a07, 0x291a0108,   // hu.is.sk_654 tr.hr.sr_655 xxx.ms.id_432 en.xxx.ms_443\n  0x12194007, 0x2e001509, 0x1e1d1912, 0x0f003a11,   // sl.et.cs_432 lv.sq..._440 et.hr.sr_654 eu.es..._630\n  0x1e170b07, 0x17001821, 0x45000412, 0x04021009,   // no.ro.sr_432 hu.ro..._860 fi.sk..._640 sv.da.fi_444\n  // [3d90]\n  0x10041407, 0x036619a4, 0x043a1913, 0x383a0f09,   // is.fi.sv_432 et.af.nl_433 et.eu.fi_665 es.eu.ca_444\n  0x060b0209, 0x661f3fa4, 0x12380f02, 0x03188ca4,   // da.no.de_444 sw.ga.af_433 es.ca.cs_222 ht.hu.nl_433\n  0x2b1f3812, 0x42000113, 0x19151708, 0x08003808,   // ca.ga.cy_654 en.mt..._650 ro.lv.et_443 ca.it..._430\n  0x0f000402, 0x208c0109, 0x191404a4, 0x01064209,   // fi.es..._220 en.ht.gl_444 fi.is.et_433 mt.de.en_444\n  // [3da0]\n  0x1a194208, 0x8c000808, 0x29003a08, 0x66002014,   // mt.et.xxx_443 it.ht..._430 eu.ms..._430 gl.af..._660\n  0x453a0312, 0x42002b02, 0x66003823, 0x10062eba,   // nl.eu.sk_654 cy.mt..._220 ca.af..._880 sq.de.sv_843\n  0x27668c02, 0x45181209, 0x08001d08, 0x45140f02,   // ht.af.id_222 cs.hu.sk_444 hr.it..._430 es.is.sk_222\n  0x17053802, 0x17053aa4, 0x02004223, 0x22001012,   // ca.fr.ro_222 eu.fr.ro_433 mt.da..._880 sv.tr..._640\n  // [3db0]\n  0x17013f08, 0x1c0e2311, 0x29081702, 0x29191002,   // sw.en.ro_443 uk.ru.bg_653 ro.it.ms_222 sv.et.ms_222\n  0x06001021, 0x181f45af, 0x45181f12, 0x290f0d02,   // sv.de..._860 sk.ga.hu_655 ga.hu.sk_654 pt.es.ms_222\n  0x10222b08, 0x0f141860, 0x0d380faf, 0x2b040107,   // cy.tr.sv_443 hu.is.es_664 es.ca.pt_655 en.fi.cy_432\n  0x1d1e2907, 0x1a272908, 0x0c2b6608, 0x12452b02,   // ms.sr.hr_432 ms.id.xxx_443 af.cy.pl_443 cy.sk.cs_222\n  // [3dc0]\n  0x03004009, 0x05451209, 0x0f000412, 0x15161707,   // sl.nl..._440 cs.sk.fr_444 fi.es..._640 ro.lt.lv_432\n  0x450810a4, 0x29662708, 0x171f2260, 0x030f0508,   // sv.it.sk_433 id.af.ms_443 tr.ga.ro_664 fr.es.nl_443\n  0x01038ca4, 0x29454002, 0x02220b09, 0x084b2212,   // ht.nl.en_433 sl.sk.ms_222 no.tr.da_444 tr.az.it_654\n  0x08001913, 0x33003722, 0x4b001802, 0x45381260,   // et.it..._650 ar.ur..._870 hu.az..._220 cs.ca.sk_664\n  // [3dd0]\n  0x0c000f13, 0x032b2909, 0x0b001412, 0x0c001808,   // es.pl..._650 ms.cy.nl_444 is.no..._640 hu.pl..._430\n  0x4b001408, 0x100c02a4, 0x1f014008, 0x020c1008,   // is.az..._430 da.pl.sv_433 sl.en.ga_443 sv.pl.da_443\n  0x450c1d02, 0x10181412, 0x14020655, 0x101242a4,   // hr.pl.sk_222 is.hu.sv_654 de.da.is_442 mt.cs.sv_433\n  0x0c000f02, 0x22401209, 0x1d421602, 0x381f0f08,   // es.pl..._220 cs.sl.tr_444 lt.mt.hr_222 es.ga.ca_443\n  // [3de0]\n  0x3f1e1d09, 0x274329af, 0x1a2e3a08, 0x3f224b13,   // hr.sr.sw_444 ms.vi.id_655 eu.sq.xxx_443 az.tr.sw_665\n  0x08128c02, 0x3f002221, 0x0b140209, 0x08380d13,   // ht.cs.it_222 tr.sw..._860 da.is.no_444 pt.ca.it_665\n  0x8c000c02, 0x3f060113, 0x05002002, 0x0d000402,   // pl.ht..._220 en.de.sw_665 gl.fr..._220 fi.pt..._220\n  0x153f21a4, 0x15193a07, 0x0f001712, 0x29173f02,   // tl.sw.lv_433 eu.et.lv_432 ro.es..._640 sw.ro.ms_222\n  // [3df0]\n  0x05001802, 0x45431214, 0x02431f12, 0x153f1608,   // hu.fr..._220 cs.vi.sk_666 ga.vi.da_654 lt.sw.lv_443\n  0x29000b14, 0x02030109, 0x1f000f13, 0x40660b07,   // no.ms..._660 en.nl.da_444 es.ga..._650 no.af.sl_432\n  0x29002e09, 0x03001209, 0x1d4b1602, 0x060c0b07,   // sq.ms..._440 cs.nl..._440 lt.az.hr_222 no.pl.de_432\n  0x45661002, 0x06011a02, 0x161d1e02, 0x030666a4,   // sv.af.sk_222 xxx.en.de_222 sr.hr.lt_222 af.de.nl_433\n  // [3e00]\n  0x384b8c09, 0x1f003a12, 0x2e163a14, 0x15161460,   // ht.az.ca_444 eu.ga..._640 eu.lt.sq_666 is.lt.lv_664\n  0x02002b14, 0x2e2b6612, 0x40002202, 0x04002b08,   // cy.da..._660 af.cy.sq_654 tr.sl..._220 cy.fi..._430\n  0x08001621, 0x27291f13, 0x1e001214, 0x8c003a22,   // lt.it..._860 ga.ms.id_665 cs.sr..._660 eu.ht..._870\n  0x10000512, 0x1e2330a4, 0x21001913, 0x27294208,   // fr.sv..._640 be.uk.sr_433 et.tl..._650 mt.ms.id_443\n  // [3e10]\n  0x3f000b07, 0x18004011, 0x1a1e1d60, 0x27182109,   // no.sw..._420 sl.hu..._630 hr.sr.xxx_664 tl.hu.id_444\n  0x251c2311, 0x080f3807, 0x0f0d1011, 0x0f000813,   // uk.bg.mk_653 ca.es.it_432 sv.pt.es_653 it.es..._650\n  0x18000823, 0x1a030412, 0x03066611, 0x3a380612,   // it.hu..._880 fi.nl.xxx_654 af.de.nl_653 de.ca.eu_654\n  0x10003822, 0x21006613, 0x4b212209, 0x40000422,   // ca.sv..._870 af.tl..._650 tr.tl.az_444 fi.sl..._870\n  // [3e20]\n  0x0f150107, 0x19008c23, 0x38002e09, 0x198c0107,   // en.lv.es_432 ht.et..._880 sq.ca..._440 en.ht.et_432\n  0x0b004b09, 0x04001d14, 0x0b003813, 0x1a002b23,   // az.no..._440 hr.fi..._660 ca.no..._650 cy.xxx..._880\n  0x19000212, 0x431a4213, 0x290d0f02, 0x42080612,   // da.et..._640 mt.xxx.vi_665 es.pt.ms_222 de.it.mt_654\n  0x231e3012, 0x15660208, 0x301c1e60, 0x29660202,   // be.sr.uk_654 da.af.lv_443 sr.bg.be_664 da.af.ms_222\n  // [3e30]\n  0x17380109, 0x66031209, 0x45141260, 0x0f002208,   // en.ca.ro_444 cs.nl.af_444 cs.is.sk_664 tr.es..._430\n  0x43006623, 0x1d002b09, 0x151e1d60, 0x0f382013,   // af.vi..._880 cy.hr..._440 hr.sr.lv_664 gl.ca.es_665\n  0x27290f08, 0x4b002123, 0x01053808, 0x19001622,   // es.ms.id_443 tl.az..._880 ca.fr.en_443 lt.et..._870\n  0x3f2921a4, 0x29213a02, 0x42001812, 0x20160109,   // tl.ms.sw_433 eu.tl.ms_222 hu.mt..._640 en.lt.gl_444\n  // [3e40]\n  0x27011802, 0x43161aa4, 0x191a2707, 0x0c1f03a4,   // hu.en.id_222 xxx.lt.vi_433 id.xxx.et_432 nl.ga.pl_433\n  0x29452b02, 0x19000313, 0x12001f12, 0x181f1002,   // cy.sk.ms_222 nl.et..._650 ga.cs..._640 sv.ga.hu_222\n  0x01021055, 0x231c3012, 0x3a041a09, 0x1e302308,   // sv.da.en_442 be.bg.uk_654 xxx.fi.eu_444 uk.be.sr_443\n  0x45170f08, 0x10140612, 0x00001442, 0x22180609,   // es.ro.sk_443 de.is.sv_654 is......_C00 de.hu.tr_444\n  // [3e50]\n  0x174b22af, 0x042b1912, 0x43003a23, 0x0f0d2013,   // tr.az.ro_655 et.cy.fi_654 eu.vi..._880 gl.pt.es_665\n  0x4b001902, 0x1e100307, 0x38200109, 0x0d183a08,   // et.az..._220 nl.sv.sr_432 en.gl.ca_444 eu.hu.pt_443\n  0x42082907, 0x1e002909, 0x21290108, 0x42000c02,   // ms.it.mt_432 ms.sr..._440 en.ms.tl_443 pl.mt..._220\n  0x1d0c18a4, 0x1e302311, 0x66051808, 0x454b1a02,   // hu.pl.hr_433 uk.be.sr_653 hu.fr.af_443 xxx.az.sk_222\n  // [3e60]\n  0x0f452e07, 0x22004522, 0x04004023, 0x452e1209,   // sq.sk.es_432 sk.tr..._870 sl.fi..._880 cs.sq.sk_444\n  0x42000c13, 0x451d2b02, 0x40008c23, 0x0c066609,   // pl.mt..._650 cy.hr.sk_222 ht.sl..._880 af.de.pl_444\n  0x1e0e2307, 0x27222907, 0x0c6621a4, 0x011903a4,   // uk.ru.sr_432 ms.tr.id_432 tl.af.pl_433 nl.et.en_433\n  0x3f004b23, 0x29190107, 0x061a3f02, 0x4b172214,   // az.sw..._880 en.et.ms_432 sw.xxx.de_222 tr.ro.az_666\n  // [3e70]\n  0x43001008, 0x12381a02, 0x38004321, 0x42002214,   // sv.vi..._430 xxx.ca.cs_222 vi.ca..._860 tr.mt..._660\n  0x38021008, 0x03002209, 0x45000813, 0x23250ea4,   // sv.da.ca_443 tr.nl..._440 it.sk..._650 ru.mk.uk_433\n  0x27011708, 0x3f001008, 0x01004308, 0x27222960,   // ro.en.id_443 sv.sw..._430 vi.en..._430 ms.tr.id_664\n  0x30001c08, 0x8c272908, 0x8c004213, 0x290f0107,   // bg.be..._430 ms.id.ht_443 mt.ht..._650 en.es.ms_432\n  // [3e80]\n  0x17002014, 0x3a036612, 0x42004b07, 0x1c1e0e14,   // gl.ro..._660 af.nl.eu_654 az.mt..._420 ru.sr.bg_666\n  0x3f224509, 0x451f1202, 0x180f3812, 0x0f451fa4,   // sk.tr.sw_444 cs.ga.sk_222 ca.es.hu_654 ga.sk.es_433\n  0x08004313, 0x1d122102, 0x45382b02, 0x38438c12,   // vi.it..._650 tl.cs.hr_222 cy.ca.sk_222 ht.vi.ca_654\n  0x041927a4, 0x1e301c08, 0x01452907, 0x1a000113,   // id.et.fi_433 bg.be.sr_443 ms.sk.en_432 en.xxx..._650\n  // [3e90]\n  0x23251c14, 0x22061007, 0x29408c02, 0x16190412,   // bg.mk.uk_666 sv.de.tr_432 ht.sl.ms_222 fi.et.lt_654\n  0x29001613, 0x1f0c14ad, 0x3f000313, 0x17001512,   // lt.ms..._650 is.pl.ga_643 nl.sw..._650 lv.ro..._640\n  0x40380f07, 0x16271513, 0x452b0107, 0x10161508,   // es.ca.sl_432 lv.id.lt_665 en.cy.sk_432 lv.lt.sv_443\n  0x0d0f1612, 0x101516a4, 0x18000d22, 0x1d1e4055,   // lt.es.pt_654 lt.lv.sv_433 pt.hu..._870 sl.sr.hr_442\n  // [3ea0]\n  0x29001d02, 0x1e45125e, 0x06181007, 0x38000b14,   // hr.ms..._220 cs.sk.sr_652 sv.hu.de_432 no.ca..._660\n  0x1e1d1213, 0x16001511, 0x041908a4, 0x0d180509,   // cs.hr.sr_665 lv.lt..._630 it.et.fi_433 fr.hu.pt_444\n  0x16140b13, 0x1d048c02, 0x27291709, 0x2b003a13,   // no.is.lt_665 ht.fi.hr_222 ro.ms.id_444 eu.cy..._650\n  0x2b004509, 0x4b000622, 0x8c001914, 0x04161f11,   // sk.cy..._440 de.az..._870 et.ht..._660 ga.lt.fi_653\n  // [3eb0]\n  0x1f006623, 0x1d044002, 0x20080f09, 0x21004008,   // af.ga..._880 sl.fi.hr_222 es.it.gl_444 sl.tl..._430\n  0x19003821, 0x431d1aa4, 0x3f000613, 0x42000f08,   // ca.et..._860 xxx.hr.vi_433 de.sw..._650 es.mt..._430\n  0x4b294212, 0x30250e13, 0x1d3f2e02, 0x291f2702,   // mt.ms.az_654 ru.mk.be_665 sq.sw.hr_222 id.ga.ms_222\n  0x401d45a4, 0x380f08a4, 0x27170302, 0x08002222,   // sk.hr.sl_433 it.es.ca_433 nl.ro.id_222 tr.it..._870\n  // [3ec0]\n  0x040d0f08, 0x102b0b12, 0x19180609, 0x012b4202,   // es.pt.fi_443 no.cy.sv_654 de.hu.et_444 mt.cy.en_222\n  0x45083aa4, 0x3f458c02, 0x453a4002, 0x66030b13,   // eu.it.sk_433 ht.sk.sw_222 sl.eu.sk_222 no.nl.af_665\n  0x061f0ba4, 0x8c004202, 0x17000408, 0x0f001923,   // no.ga.de_433 mt.ht..._220 fi.ro..._430 et.es..._880\n  0x04101913, 0x163f1f07, 0x66051913, 0x25230e07,   // et.sv.fi_665 ga.sw.lt_432 et.fr.af_665 ru.uk.mk_432\n  // [3ed0]\n  0x121d1e55, 0x1c302313, 0x0b000220, 0x14161508,   // sr.hr.cs_442 uk.be.bg_665 da.no..._850 lv.lt.is_443\n  0x12402e02, 0x18000313, 0x250e23af, 0x19664507,   // sq.sl.cs_222 nl.hu..._650 uk.ru.mk_655 sk.af.et_432\n  0x17001a13, 0x42224b13, 0x8c4b2113, 0x0d0f2709,   // xxx.ro..._650 az.tr.mt_665 tl.az.ht_665 id.es.pt_444\n  0x42001402, 0x210d2060, 0x43000113, 0x03063a14,   // is.mt..._220 gl.pt.tl_664 en.vi..._650 eu.de.nl_666\n  // [3ee0]\n  0x8c000609, 0x2e001023, 0x3a004b13, 0x29103812,   // de.ht..._440 sv.sq..._880 az.eu..._650 ca.sv.ms_654\n  0x291e1207, 0x05001f10, 0x0d220202, 0x041019af,   // cs.sr.ms_432 ga.fr..._620 da.tr.pt_222 et.sv.fi_655\n  0x8c002112, 0x04292709, 0x12271a09, 0x1a000c08,   // tl.ht..._640 id.ms.fi_444 xxx.id.cs_444 pl.xxx..._430\n  0x16011a08, 0x0f0d18af, 0x12450b08, 0x05003a13,   // xxx.en.lt_443 hu.pt.es_655 no.sk.cs_443 eu.fr..._650\n  // [3ef0]\n  0x0c0d45a4, 0x190204a4, 0x45001d22, 0x05000d21,   // sk.pt.pl_433 fi.da.et_433 hr.sk..._870 pt.fr..._860\n  0x3f000b14, 0x1e081502, 0x0f0d0509, 0x1e003a09,   // no.sw..._660 lv.it.sr_222 fr.pt.es_444 eu.sr..._440\n  0x421019a4, 0x03000c11, 0x3f451009, 0x4b006623,   // et.sv.mt_433 pl.nl..._630 sv.sk.sw_444 af.az..._880\n  0x0c213f60, 0x20000b23, 0x180d0107, 0x231c1e08,   // sw.tl.pl_664 no.gl..._880 en.pt.hu_432 sr.bg.uk_443\n  // [3f00]\n  0x0c024302, 0x1d292760, 0x121d2e02, 0x3f062109,   // vi.da.pl_222 id.ms.hr_664 sq.hr.cs_222 tl.de.sw_444\n  0x451614ad, 0x05001008, 0x14108ca4, 0x1f001e09,   // is.lt.sk_643 sv.fr..._430 ht.sv.is_433 sr.ga..._440\n  0x1a214009, 0x1d0c1e55, 0x453f1a09, 0x21008c12,   // sl.tl.xxx_444 sr.pl.hr_442 xxx.sw.sk_444 ht.tl..._640\n  0x3f036660, 0x05003a08, 0x18001a08, 0x06140109,   // af.nl.sw_664 eu.fr..._430 xxx.hu..._430 en.is.de_444\n  // [3f10]\n  0x2b010308, 0x18002209, 0x061910a4, 0x050d1821,   // nl.en.cy_443 tr.hu..._440 sv.et.de_433 hu.pt.fr_876\n  0x042e16a4, 0x3a054555, 0x12456607, 0x013f1a07,   // lt.sq.fi_433 sk.fr.eu_442 af.sk.cs_432 xxx.sw.en_432\n  0x2b182ea4, 0x02003a23, 0x12408c02, 0x29272baf,   // sq.hu.cy_433 eu.da..._880 ht.sl.cs_222 cy.id.ms_655\n  0x0e1c3014, 0x011f8c08, 0x1d2e18a4, 0x29080102,   // be.bg.ru_666 ht.ga.en_443 hu.sq.hr_433 en.it.ms_222\n  // [3f20]\n  0x04008c07, 0x04660355, 0x1e1d4512, 0x0d081a08,   // ht.fi..._420 nl.af.fi_442 sk.hr.sr_654 xxx.it.pt_443\n  0x292b2709, 0x300e2307, 0x18062255, 0x452e0b09,   // id.cy.ms_444 uk.ru.be_432 tr.de.hu_442 no.sq.sk_444\n  0x2b0614af, 0x142b0660, 0x223f2909, 0x221806ac,   // is.de.cy_655 de.cy.is_664 ms.sw.tr_444 de.hu.tr_632\n  0x0f1a2208, 0x06221814, 0x043f16ad, 0x2e001822,   // tr.xxx.es_443 hu.tr.de_666 lt.sw.fi_643 hu.sq..._870\n  // [3f30]\n  0x18272909, 0x170d0809, 0x18002220, 0x04168ca4,   // ms.id.hu_444 it.pt.ro_444 tr.hu..._850 ht.lt.fi_433\n  0x020f1aa4, 0x19224bad, 0x190410a7, 0x03000212,   // xxx.es.da_433 az.tr.et_643 sv.fi.et_532 da.nl..._640\n  0x12006608, 0x12001608, 0x03000113, 0x19100607,   // af.cs..._430 lt.cs..._430 en.nl..._650 de.sv.et_432\n  0x10041960, 0x0e001e07, 0x02001f13, 0x4b2217af,   // et.fi.sv_664 sr.ru..._420 ga.da..._650 ro.tr.az_655\n  // [3f40]\n  0x453f1202, 0x03021707, 0x1d451e13, 0x38000822,   // cs.sw.sk_222 ro.da.nl_432 sr.sk.hr_665 it.ca..._870\n  0x273f1a08, 0x18272908, 0x1e1d10a4, 0x291002a4,   // xxx.sw.id_443 ms.id.hu_443 sv.hr.sr_433 da.sv.ms_433\n  0x1d3a1e02, 0x15004314, 0x04004309, 0x40004b12,   // sr.eu.hr_222 vi.lv..._660 vi.fi..._440 az.sl..._640\n  0x0c272b08, 0x1d0c3f02, 0x1a154513, 0x272b0107,   // cy.id.pl_443 sw.pl.hr_222 sk.lv.xxx_665 en.cy.id_432\n  // [3f50]\n  0x0f3f05a4, 0x12451409, 0x05004513, 0x1d450b07,   // fr.sw.es_433 is.sk.cs_444 sk.fr..._650 no.sk.hr_432\n  0x14181f14, 0x10000307, 0x450d1e02, 0x17001923,   // ga.hu.is_666 nl.sv..._420 sr.pt.sk_222 et.ro..._880\n  0x8c380514, 0x10041912, 0x271d1e08, 0x45011f02,   // fr.ca.ht_666 et.fi.sv_654 sr.hr.id_443 ga.en.sk_222\n  0x02101fa4, 0x1f000613, 0x45141214, 0x1d001514,   // ga.sv.da_433 de.ga..._650 cs.is.sk_666 lv.hr..._660\n  // [3f60]\n  0x1c302560, 0x0c003a08, 0x4b1f2260, 0x3f031f09,   // mk.be.bg_664 eu.pl..._430 tr.ga.az_664 ga.nl.sw_444\n  0x15001809, 0x191a3fa4, 0x1d173f02, 0x04001822,   // hu.lv..._440 sw.xxx.et_433 sw.ro.hr_222 hu.fi..._870\n  0x101e06a4, 0x02000423, 0x18008c08, 0x12004508,   // de.sr.sv_433 fi.da..._880 ht.hu..._430 sk.cs..._430\n  0x2e1e1d12, 0x0f000511, 0x2e403f07, 0x29182709,   // hr.sr.sq_654 fr.es..._630 sw.sl.sq_432 id.hu.ms_444\n  // [3f70]\n  0x1d0f16a4, 0x38001913, 0x20030609, 0x08030608,   // lt.es.hr_433 et.ca..._650 de.nl.gl_444 de.nl.it_443\n  0x08030612, 0x0b002707, 0x4b001609, 0x121a1602,   // de.nl.it_654 id.no..._420 lt.az..._440 lt.xxx.cs_222\n  0x45031802, 0x45020507, 0x3f1f4212, 0x17004b14,   // hu.nl.sk_222 fr.da.sk_432 mt.ga.sw_654 az.ro..._660\n  0x19002022, 0x453f1a02, 0x05001d09, 0x10400109,   // gl.et..._870 xxx.sw.sk_222 hr.fr..._440 en.sl.sv_444\n  // [3f80]\n  0x45181412, 0x66000b13, 0x0e1e2308, 0x1d1e1614,   // is.hu.sk_654 no.af..._650 uk.sr.ru_443 lt.sr.hr_666\n  0x27001712, 0x42001722, 0x0c002014, 0x080c40a4,   // ro.id..._640 ro.mt..._870 gl.pl..._660 sl.pl.it_433\n  0x14001522, 0x1e000e07, 0x05008c11, 0x1d3f1202,   // lv.is..._870 ru.sr..._420 ht.fr..._630 cs.sw.hr_222\n  0x00004b15, 0x03002e08, 0x29403f08, 0x12000502,   // az......_700 sq.nl..._430 sw.sl.ms_443 fr.cs..._220\n  // [3f90]\n  0x140d0f08, 0x15664507, 0x0b450109, 0x3f001e14,   // es.pt.is_443 sk.af.lv_432 en.sk.no_444 sr.sw..._660\n  0x18272914, 0x1d451612, 0x193f0455, 0x05002e13,   // ms.id.hu_666 lt.sk.hr_654 fi.sw.et_442 sq.fr..._650\n  0x40003814, 0x0b001e09, 0x02124521, 0x40001813,   // ca.sl..._660 sr.no..._440 sk.cs.da_876 hu.sl..._650\n  0x45001e23, 0x22140b09, 0x14451813, 0x1e451802,   // sr.sk..._880 no.is.tr_444 hu.sk.is_665 hu.sk.sr_222\n  // [3fa0]\n  0x2e061012, 0x38003f09, 0x2e141f55, 0x16451260,   // sv.de.sq_654 sw.ca..._440 ga.is.sq_442 cs.sk.lt_664\n  0x3a001e09, 0x45290f02, 0x0f083802, 0x18003f08,   // sr.eu..._440 es.ms.sk_222 ca.it.es_222 sw.hu..._430\n  0x17000c14, 0x42003808, 0x3f041509, 0x05061760,   // pl.ro..._660 ca.mt..._430 lv.fi.sw_444 ro.de.fr_664\n  0x16000602, 0x2b000d23, 0x0f4520a4, 0x06176612,   // de.lt..._220 pt.cy..._880 gl.sk.es_433 af.ro.de_654\n  // [3fb0]\n  0x3f2166af, 0x1e300e09, 0x0d200109, 0x1e403a07,   // af.tl.sw_655 ru.be.sr_444 en.gl.pt_444 eu.sl.sr_432\n  0x38002702, 0x0d450f07, 0x0c162908, 0x120c4002,   // id.ca..._220 es.sk.pt_432 ms.lt.pl_443 sl.pl.cs_222\n  0x23301e08, 0x1c231e14, 0x4b212960, 0x17003808,   // sr.be.uk_443 sr.uk.bg_666 ms.tl.az_664 ca.ro..._430\n  0x1d0c0107, 0x0d050b55, 0x14001923, 0x220f0109,   // en.pl.hr_432 no.fr.pt_442 et.is..._880 en.es.tr_444\n  // [3fc0]\n  0x14190b07, 0x0b191460, 0x19001022, 0x274b3a02,   // no.et.is_432 is.et.no_664 sv.et..._870 eu.az.id_222\n  0x451f0107, 0x22001623, 0x08053808, 0x274b2208,   // en.ga.sk_432 lt.tr..._880 ca.fr.it_443 tr.az.id_443\n  0x140b1909, 0x8c000607, 0x29004212, 0x02000808,   // et.no.is_444 de.ht..._420 mt.ms..._640 it.da..._430\n  0x300e1c07, 0x3a2e4255, 0x0b001e02, 0x12001709,   // bg.ru.be_432 mt.sq.eu_442 sr.no..._220 ro.cs..._440\n  // [3fd0]\n  0x12180502, 0x3f154308, 0x272b2908, 0x38002907,   // fr.hu.cs_222 vi.lv.sw_443 ms.cy.id_443 ms.ca..._420\n  0x43000f08, 0x43220f09, 0x66000509, 0x171f2b09,   // es.vi..._430 es.tr.vi_444 fr.af..._440 cy.ga.ro_444\n  0x38401912, 0x15046602, 0x66273f07, 0x1a018ca4,   // et.sl.ca_654 af.fi.lv_222 sw.id.af_432 ht.en.xxx_433\n  0x18041913, 0x18003a21, 0x45120d02, 0x45061802,   // et.fi.hu_665 eu.hu..._860 pt.cs.sk_222 hu.de.sk_222\n  // [3fe0]\n  0x1d3f3a02, 0x231c3008, 0x1d298c02, 0x1a004002,   // eu.sw.hr_222 be.bg.uk_443 ht.ms.hr_222 sl.xxx..._220\n  0x1e1a1702, 0x160f1512, 0x3a000102, 0x21190109,   // ro.xxx.sr_222 lv.es.lt_654 en.eu..._220 en.et.tl_444\n  0x1e252309, 0x1d221ea4, 0x17001813, 0x380d0560,   // uk.mk.sr_444 sr.tr.hr_433 hu.ro..._650 fr.pt.ca_664\n  0x27292113, 0x3a001d23, 0x38004014, 0x22001d02,   // tl.ms.id_665 hr.eu..._880 sl.ca..._660 hr.tr..._220\n  // [3ff0]\n  0x8c403f07, 0x40004b23, 0x3f0c4202, 0x29103f02,   // sw.sl.ht_432 az.sl..._880 mt.pl.sw_222 sw.sv.ms_222\n  0x211a19a4, 0x3a001d13, 0x1e0c1d08, 0x010c1008,   // et.xxx.tl_433 hr.eu..._650 hr.pl.sr_443 sv.pl.en_443\n  0x06000122, 0x0b144213, 0x251e0ea4, 0x022e2109,   // en.de..._870 mt.is.no_665 ru.sr.mk_433 tl.sq.da_444\n  0x45161802, 0x1f012108, 0x42293fa4, 0x190b1408,   // hu.lt.sk_222 tl.en.ga_443 sw.ms.mt_433 is.no.et_443\n\n  // [4000]\n  0x10142709, 0x43000d07, 0x12450c60, 0x17001423,   // id.is.sv_444 pt.vi..._420 pl.sk.cs_664 is.ro..._880\n  0x0c2b1609, 0x0c004508, 0x0f3a3808, 0x1e2e1608,   // lt.cy.pl_444 sk.pl..._430 ca.eu.es_443 lt.sq.sr_443\n  0x2e401608, 0x8c0d0109, 0x02050b08, 0x08050d08,   // lt.sl.sq_443 en.pt.ht_444 no.fr.da_443 pt.fr.it_443\n  0x0b001702, 0x06140b08, 0x20380f14, 0x14451209,   // ro.no..._220 no.is.de_443 es.ca.gl_666 cs.sk.is_444\n  // [4010]\n  0x141f1208, 0x38001a14, 0x14000c14, 0x04183aa4,   // cs.ga.is_443 xxx.ca..._660 pl.is..._660 eu.hu.fi_433\n  0x17224b12, 0x1d3f1908, 0x04064208, 0x14081209,   // az.tr.ro_654 et.sw.hr_443 mt.de.fi_443 cs.it.is_444\n  0x3a220107, 0x1c2330ad, 0x2b001f08, 0x0c0f1a08,   // en.tr.eu_432 be.uk.bg_643 ga.cy..._430 xxx.es.pl_443\n  0x04001809, 0x19050107, 0x01001508, 0x2b011a08,   // hu.fi..._440 en.fr.et_432 lv.en..._430 xxx.en.cy_443\n  // [4020]\n  0x01152b09, 0x0b002914, 0x02420808, 0x1d100107,   // cy.lv.en_444 ms.no..._660 it.mt.da_443 en.sv.hr_432\n  0x4b001f23, 0x43001602, 0x420c1709, 0x29004002,   // ga.az..._880 lt.vi..._220 ro.pl.mt_444 sl.ms..._220\n  0x10001a23, 0x660614a4, 0x160b0412, 0x1f184512,   // xxx.sv..._880 is.de.af_433 fi.no.lt_654 sk.hu.ga_654\n  0x1e384202, 0x17430107, 0x2e080107, 0x29432709,   // mt.ca.sr_222 en.vi.ro_432 en.it.sq_432 id.vi.ms_444\n  // [4030]\n  0x12002e13, 0x0f1f05a4, 0x424b08a4, 0x122e3fa4,   // sq.cs..._650 fr.ga.es_433 it.az.mt_433 sw.sq.cs_433\n  0x08002e22, 0x211d1a09, 0x046619a4, 0x154b3a08,   // sq.it..._870 xxx.hr.tl_444 et.af.fi_433 eu.az.lv_443\n  0x0d2b0607, 0x450d1702, 0x14000308, 0x1f100613,   // de.cy.pt_432 ro.pt.sk_222 nl.is..._430 de.sv.ga_665\n  0x05006613, 0x051842a4, 0x27292e14, 0x3f1a2107,   // af.fr..._650 mt.hu.fr_433 sq.ms.id_666 tl.xxx.sw_432\n  // [4040]\n  0x29454202, 0x423f2ea4, 0x3f001422, 0x27291502,   // mt.sk.ms_222 sq.sw.mt_433 is.sw..._870 lv.ms.id_222\n  0x0b001223, 0x45004223, 0x150419af, 0x401e1d07,   // cs.no..._880 mt.sk..._880 et.fi.lv_655 hr.sr.sl_432\n  0x40003813, 0x12400caf, 0x1e1d3f08, 0x3a0121a4,   // ca.sl..._650 pl.sl.cs_655 sw.hr.sr_443 tl.en.eu_433\n  0x4b004207, 0x17033a11, 0x3f000808, 0x14161560,   // mt.az..._420 eu.nl.ro_653 it.sw..._430 lv.lt.is_664\n  // [4050]\n  0x8c171f07, 0x0c001213, 0x0f1f4207, 0x12154502,   // ga.ro.ht_432 cs.pl..._650 mt.ga.es_432 sk.lv.cs_222\n  0x14001f11, 0x0f170d13, 0x42001808, 0x22000422,   // ga.is..._630 pt.ro.es_665 hu.mt..._430 fi.tr..._870\n  0x221d1e08, 0x45163802, 0x170f38a4, 0x66001421,   // sr.hr.tr_443 ca.lt.sk_222 ca.es.ro_433 is.af..._860\n  0x1d181702, 0x18141f12, 0x45121407, 0x02278ca4,   // ro.hu.hr_222 ga.is.hu_654 is.cs.sk_432 ht.id.da_433\n  // [4060]\n  0x3a033f13, 0x12451811, 0x14001f07, 0x1e0c1daf,   // sw.nl.eu_665 hu.sk.cs_653 ga.is..._420 hr.pl.sr_655\n  0x3a272909, 0x01002222, 0x3f212909, 0x1d0d0b07,   // ms.id.eu_444 tr.en..._870 ms.tl.sw_444 no.pt.hr_432\n  0x4b272914, 0x18003808, 0x3a030b07, 0x29220c02,   // ms.id.az_666 ca.hu..._430 no.nl.eu_432 pl.tr.ms_222\n  0x1c0e2511, 0x041619a4, 0x151d1607, 0x25231e12,   // mk.ru.bg_653 et.lt.fi_433 lt.hr.lv_432 sr.uk.mk_654\n  // [4070]\n  0x140604a4, 0x060429a4, 0x121e1d09, 0x38000622,   // fi.de.is_433 ms.fi.de_433 hr.sr.cs_444 de.ca..._870\n  0x03140b08, 0x211014a4, 0x3f2e1609, 0x160d2e14,   // no.is.nl_443 is.sv.tl_433 lt.sq.sw_444 sq.pt.lt_666\n  0x08001f23, 0x16002e11, 0x15002e13, 0x160804af,   // ga.it..._880 sq.lt..._630 sq.lv..._650 fi.it.lt_655\n  0x1d381a02, 0x17002022, 0x00000f03, 0x0d081508,   // xxx.ca.hr_222 gl.ro..._870 es......_300 lv.it.pt_443\n  // [4080]\n  0x17080508, 0x06151f60, 0x1a000823, 0x0d141fa4,   // fr.it.ro_443 ga.lv.de_664 it.xxx..._880 ga.is.pt_433\n  0x0f451209, 0x162e4009, 0x0d180560, 0x0f3a8c13,   // cs.sk.es_444 sl.sq.lt_444 fr.hu.pt_664 ht.eu.es_665\n  0x293f0f02, 0x38080f09, 0x38000614, 0x224b2909,   // es.sw.ms_222 es.it.ca_444 de.ca..._660 ms.az.tr_444\n  0x021e1d12, 0x29040b07, 0x1d1e0802, 0x4b223a12,   // hr.sr.da_654 no.fi.ms_432 it.sr.hr_222 eu.tr.az_654\n  // [4090]\n  0x224b2707, 0x04004b23, 0x01171fa4, 0x1d000813,   // id.az.tr_432 az.fi..._880 ga.ro.en_433 it.hr..._650\n  0x201f0155, 0x1e1d1511, 0x1d401509, 0x0f170d08,   // en.ga.gl_442 lv.hr.sr_653 lv.sl.hr_444 pt.ro.es_443\n  0x15000508, 0x04422213, 0x290b2702, 0x03001d14,   // fr.lv..._430 tr.mt.fi_665 id.no.ms_222 hr.nl..._660\n  0x0c162160, 0x292b0107, 0x3f184209, 0x291d2709,   // tl.lt.pl_664 en.cy.ms_432 mt.hu.sw_444 id.hr.ms_444\n  // [40a0]\n  0x0b100308, 0x27160802, 0x18000102, 0x06002e07,   // nl.sv.no_443 it.lt.id_222 en.hu..._220 sq.de..._420\n  0x450c0f12, 0x43003a09, 0x061608a4, 0x218c2707,   // es.pl.sk_654 eu.vi..._440 it.lt.de_433 id.ht.tl_432\n  0x22054308, 0x43161508, 0x278c2902, 0x143a0b09,   // vi.fr.tr_443 lv.lt.vi_443 ms.ht.id_222 no.eu.is_444\n  0x1d0f2002, 0x3a003f12, 0x1d121ea4, 0x42100202,   // gl.es.hr_222 sw.eu..._640 sr.cs.hr_433 da.sv.mt_222\n  // [40b0]\n  0x3f001f21, 0x380f8c09, 0x02000c02, 0x451f0f02,   // ga.sw..._860 ht.es.ca_444 pl.da..._220 es.ga.sk_222\n  0x14001021, 0x1d400109, 0x1d161e08, 0x1e1d2e14,   // sv.is..._860 en.sl.hr_444 sr.lt.hr_443 sq.hr.sr_666\n  0x1d154502, 0x0d184512, 0x1f184521, 0x010b1a12,   // sk.lv.hr_222 sk.hu.pt_654 sk.hu.ga_876 xxx.no.en_654\n  0x3f061a08, 0x3f291fa4, 0x38103a08, 0x293a1002,   // xxx.de.sw_443 ga.ms.sw_433 eu.sv.ca_443 sv.eu.ms_222\n  // [40c0]\n  0x8c0f0509, 0x03060b09, 0x122b3f12, 0x22064208,   // fr.es.ht_444 no.de.nl_444 sw.cy.cs_654 mt.de.tr_443\n  0x45121a07, 0x124566a4, 0x401d4555, 0x1d401612,   // xxx.cs.sk_432 af.sk.cs_433 sk.hr.sl_442 lt.sl.hr_654\n  0x16000502, 0x03122e11, 0x3f162108, 0x14002922,   // fr.lt..._220 sq.cs.nl_653 tl.lt.sw_443 ms.is..._870\n  0x420b1460,                                       // is.no.mt_664\n  };\n\nCOMPILE_ASSERT(16589 < (1 << 16), k_indirectbits_too_small);\n\nextern const cld::CLDTableSummary kQuadTable_obj = {\n  kQuadChrome,\n  kQuadChromeInd,\n  kQuadChromeSize,\n  arraysize(kQuadChromeInd),\n  kQuadChromeKeyMask,\n  kQuadChromeBuildDate,\n};\n\n// End of generated tables\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/getonescriptspan.cc",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#include \"encodings/compact_lang_det/getonescriptspan.h\"\n#include <stdio.h>\n#include <string.h>\n\n#include \"encodings/lang_enc.h\"\n#include \"encodings/compact_lang_det/utf8propjustletter.h\"\n#include \"encodings/compact_lang_det/utf8propletterscriptnum.h\"\n#include \"encodings/compact_lang_det/utf8scannotjustletterspecial.h\"\n\n#include \"encodings/compact_lang_det/win/cld_basictypes.h\"\n#include \"encodings/compact_lang_det/win/cld_commandlineflags.h\"\n#include \"encodings/compact_lang_det/win/cld_google.h\"\n#include \"encodings/compact_lang_det/win/cld_htmlutils.h\"\n#include \"encodings/compact_lang_det/win/cld_unilib.h\"\n#include \"encodings/compact_lang_det/win/cld_utf8statetable.h\"\n#include \"encodings/compact_lang_det/win/cld_utf8utils.h\"\n\nstatic const Language GRAY_LANG = (Language)254;\n\nstatic const int kMaxUpToWordBoundary = 50;       // span < this make longer,\n                                                  // else make shorter\nstatic const int kMaxAdvanceToWordBoundary = 10;  // +/- this many bytes\n                                                  // to round to word boundary,\n                                                  // direction above\n\nstatic const char kSpecialSymbol[256] = {       // true for < > &\n  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  0,0,0,0,0,0,1,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,1,0,1,0,\n  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n\n  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n  0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n};\n\n\n\n#define LT 0      // <\n#define GT 1      // >\n#define EX 2      // !\n#define HY 3      // -\n#define QU 4      // \"\n#define AP 5      // '\n#define SL 6      // /\n#define S_ 7\n#define C_ 8\n#define R_ 9\n#define I_ 10\n#define P_ 11\n#define T_ 12\n#define Y_ 13\n#define L_ 14\n#define E_ 15\n#define CR 16     // <cr> or <lf>\n#define NL 17     // non-letter: ASCII whitespace, digit, punctuation\n#define PL 18     // possible letter, incl. &\n#define xx 19     // <unused>\n\n// Map byte to one of ~20 interesting categories for cheap tag parsing\nstatic const uint8 kCharToSub[256] = {\n  NL,NL,NL,NL, NL,NL,NL,NL, NL,NL,CR,NL, NL,CR,NL,NL,\n  NL,NL,NL,NL, NL,NL,NL,NL, NL,NL,NL,NL, NL,NL,NL,NL,\n  NL,EX,QU,NL, NL,NL,PL,AP, NL,NL,NL,NL, NL,HY,NL,SL,\n  NL,NL,NL,NL, NL,NL,NL,NL, NL,NL,NL,NL, LT,NL,GT,NL,\n\n  PL,PL,PL,C_, PL,E_,PL,PL, PL,I_,PL,PL, L_,PL,PL,PL,\n  P_,PL,R_,S_, T_,PL,PL,PL, PL,Y_,PL,NL, NL,NL,NL,NL,\n  PL,PL,PL,C_, PL,E_,PL,PL, PL,I_,PL,PL, L_,PL,PL,PL,\n  P_,PL,R_,S_, T_,PL,PL,PL, PL,Y_,PL,NL, NL,NL,NL,NL,\n\n  NL,NL,NL,NL, NL,NL,NL,NL, NL,NL,NL,NL, NL,NL,NL,NL,\n  NL,NL,NL,NL, NL,NL,NL,NL, NL,NL,NL,NL, NL,NL,NL,NL,\n  NL,NL,NL,NL, NL,NL,NL,NL, NL,NL,NL,NL, NL,NL,NL,NL,\n  NL,NL,NL,NL, NL,NL,NL,NL, NL,NL,NL,NL, NL,NL,NL,NL,\n\n  PL,PL,PL,PL, PL,PL,PL,PL, PL,PL,PL,PL, PL,PL,PL,PL,\n  PL,PL,PL,PL, PL,PL,PL,PL, PL,PL,PL,PL, PL,PL,PL,PL,\n  PL,PL,PL,PL, PL,PL,PL,PL, PL,PL,PL,PL, PL,PL,PL,PL,\n  PL,PL,PL,PL, PL,PL,PL,PL, PL,PL,PL,PL, PL,PL,PL,PL,\n};\n\n#undef LT\n#undef GT\n#undef EX\n#undef HY\n#undef QU\n#undef AP\n#undef SL\n#undef S_\n#undef C_\n#undef R_\n#undef I_\n#undef P_\n#undef T_\n#undef Y_\n#undef L_\n#undef E_\n#undef CR\n#undef NL\n#undef PL\n#undef xx\n\n\n#define OK 0\n#define X_ 1\n\n// State machine to do cheap parse of non-letter strings incl. tags\n// advances <tag>\n//          |    |\n// advances <tag> ... </tag>  for <script> <style>\n//          |               |\n// advances <!-- ... <tag> ... -->\n//          |                     |\n// advances <tag\n//          ||  (0)\n// advances <tag <tag2>\n//          ||  (0)\nstatic const uint8 kTagParseTbl_0[] = {\n// <  >  !  -   \"  '  /  S   C  R  I  P   T  Y  L  E  CR NL PL xx\n   3, 2, 2, 2,  2, 2, 2,OK, OK,OK,OK,OK, OK,OK,OK,OK,  2, 2,OK,X_, // [0] OK\n  X_,X_,X_,X_, X_,X_,X_,X_, X_,X_,X_,X_, X_,X_,X_,X_, X_,X_,X_,X_, // [1] error\n   3, 2, 2, 2,  2, 2, 2,OK, OK,OK,OK,OK, OK,OK,OK,OK,  2, 2,OK,X_, // [2] NL*\n  X_, 2, 4, 9, 10,11, 9,13,  9, 9, 9, 9,  9, 9, 9, 9,  9, 9, 9,X_, // [3] <\n  X_, 2, 9, 5, 10,11, 9, 9,  9, 9, 9, 9,  9, 9, 9, 9,  9, 9, 9,X_, // [4] <!\n  X_, 2, 9, 6, 10,11, 9, 9,  9, 9, 9, 9,  9, 9, 9, 9,  9, 9, 9,X_, // [5] <!-\n   6, 6, 6, 7,  6, 6, 6, 6,  6, 6, 6, 6,  6, 6, 6, 6,  6, 6, 6,X_, // [6] <!--.*\n   6, 6, 6, 8,  6, 6, 6, 6,  6, 6, 6, 6,  6, 6, 6, 6,  6, 6, 6,X_, // [7] <!--.*-\n   6, 2, 6, 8,  6, 6, 6, 6,  6, 6, 6, 6,  6, 6, 6, 6,  6, 6, 6,X_, // [8] <!--.*--\n  X_, 2, 9, 9, 10,11, 9, 9,  9, 9, 9, 9,  9, 9, 9, 9,  9, 9, 9,X_, // [9] <.*\n  10,10,10,10,  9,10,10,10, 10,10,10,10, 10,10,10,10, 12,10,10,X_, // [10] <.*\"\n  11,11,11,11, 11, 9,11,11, 11,11,11,11, 11,11,11,11, 12,11,11,X_, // [11] <.*'\n  X_, 2,12,12, 12,12,12,12, 12,12,12,12, 12,12,12,12, 12,12,12,X_, // [12] <.* no \" '\n\n// <  >  !  -   \"  '  /  S   C  R  I  P   T  Y  L  E  CR NL PL xx\n  X_, 2, 9, 9, 10,11, 9, 9, 14, 9, 9, 9, 28, 9, 9, 9,  9, 9, 9,X_, // [13] <S\n  X_, 2, 9, 9, 10,11, 9, 9,  9,15, 9, 9,  9, 9, 9, 9,  9, 9, 9,X_, // [14] <SC\n  X_, 2, 9, 9, 10,11, 9, 9,  9, 9,16, 9,  9, 9, 9, 9,  9, 9, 9,X_, // [15] <SCR\n  X_, 2, 9, 9, 10,11, 9, 9,  9, 9, 9,17,  9, 9, 9, 9,  9, 9, 9,X_, // [16] <SCRI\n  X_, 2, 9, 9, 10,11, 9, 9,  9, 9, 9, 9, 18, 9, 9, 9,  9, 9, 9,X_, // [17] <SCRIP\n  X_,19, 9, 9, 10,11, 9, 9,  9, 9, 9, 9,  9, 9, 9, 9, 19,19, 9,X_, // [18] <SCRIPT\n  20,19,19,19, 19,19,19,19, 19,19,19,19, 19,19,19,19, 19,19,19,X_, // [19] <SCRIPT .*\n  19,19,19,19, 19,19,21,19, 19,19,19,19, 19,19,19,19, 19,19,19,X_, // [20] <SCRIPT .*<\n  19,19,19,19, 19,19,19,22, 19,19,19,19, 19,19,19,19, 19,19,19,X_, // [21] <SCRIPT .*</\n  19,19,19,19, 19,19,19,19, 23,19,19,19, 19,19,19,19, 19,19,19,X_, // [22] <SCRIPT .*</S\n  19,19,19,19, 19,19,19,19, 19,24,19,19, 19,19,19,19, 19,19,19,X_, // [23] <SCRIPT .*</SC\n  19,19,19,19, 19,19,19,19, 19,19,25,19, 19,19,19,19, 19,19,19,X_, // [24] <SCRIPT .*</SCR\n  19,19,19,19, 19,19,19,19, 19,19,19,26, 19,19,19,19, 19,19,19,X_, // [25] <SCRIPT .*</SCRI\n  19,19,19,19, 19,19,19,19, 19,19,19,19, 27,19,19,19, 19,19,19,X_, // [26] <SCRIPT .*</SCRIP\n  19, 2,19,19, 19,19,19,19, 19,19,19,19, 19,19,19,19, 19,19,19,X_, // [27] <SCRIPT .*</SCRIPT\n\n// <  >  !  -   \"  '  /  S   C  R  I  P   T  Y  L  E  CR NL PL xx\n  X_, 2, 9, 9, 10,11, 9, 9,  9, 9, 9, 9,  9,29, 9, 9,  9, 9, 9,X_, // [28] <ST\n  X_, 2, 9, 9, 10,11, 9, 9,  9, 9, 9, 9,  9, 9,30, 9,  9, 9, 9,X_, // [29] <STY\n  X_, 2, 9, 9, 10,11, 9, 9,  9, 9, 9, 9,  9, 9, 9,31,  9, 9, 9,X_, // [30] <STYL\n  X_,32, 9, 9, 10,11, 9, 9,  9, 9, 9, 9,  9, 9, 9, 9, 32,32, 9,X_, // [31] <STYLE\n  33,32,32,32, 32,32,32,32, 32,32,32,32, 32,32,32,32, 32,32,32,X_, // [32] <STYLE .*\n  32,32,32,32, 32,32,34,32, 32,32,32,32, 32,32,32,32, 32,32,32,X_, // [33] <STYLE .*<\n  32,32,32,32, 32,32,32,35, 32,32,32,32, 32,32,32,32, 32,32,32,X_, // [34] <STYLE .*</\n  32,32,32,32, 32,32,32,32, 32,32,32,32, 36,32,32,32, 32,32,32,X_, // [35] <STYLE .*</S\n  32,32,32,32, 32,32,32,32, 32,32,32,32, 32,37,32,32, 32,32,32,X_, // [36] <STYLE .*</ST\n  32,32,32,32, 32,32,32,32, 32,32,32,32, 32,32,38,32, 32,32,32,X_, // [37] <STYLE .*</STY\n  32,32,32,32, 32,32,32,32, 32,32,32,32, 32,32,32,39, 32,32,32,X_, // [38] <STYLE .*</STYL\n  32, 2,32,32, 32,32,32,32, 32,32,32,32, 32,32,32,32, 32,32,32,X_, // [39] <STYLE .*</STYLE\n};\n\n#undef OK\n#undef X_\n\n\n/*\n// Convert GetTimeOfDay output to 64-bit usec\nstatic inline uint64 Microseconds(const struct timeval& t) {\n  // The SumReducer uses uint64, so convert to (uint64) microseconds,\n  // not (double) seconds.\n  return t.tv_sec * 1000000ULL + t.tv_usec;\n}\n*/\n\n\n// Returns true if character is < > or &\nbool inline IsSpecial(char c) {\n  if ((c & 0xe0) == 0x20) {\n    return kSpecialSymbol[static_cast<uint8>(c)];\n  }\n  return false;\n}\n\n// Quick Skip to next letter or < > & or to end of string (eos)\n// Always return is_letter for eos\nint ScanToLetterOrSpecial(const char* src, int len) {\n  int bytes_consumed;\n  cld::UTF8GenericScan(&utf8scannotjustletterspecial_obj, src, len,\n                       &bytes_consumed);\n  return bytes_consumed;\n}\n\n\n\n// src points to non-letter, such as tag-opening '<'\n// Return length from here to next possible letter\n// On eos or another < before >, return 1\n// advances <tag>\n//          |    |\n// advances <tag> ... </tag>  for <script> <style>\n//          |               |\n// advances <!-- ... <tag> ... -->\n//          |                     |\n// advances <tag\n//          ||  (1)\n// advances <tag <tag2>\n//          ||  (1)\nint ScanToPossibleLetter(const char* isrc, int len) {\n  const uint8* src = reinterpret_cast<const uint8*>(isrc);\n  const uint8* srclimit = src + len;\n  const uint8* tagParseTbl = kTagParseTbl_0;\n  int e = 0;\n  while (src < srclimit) {\n    e = tagParseTbl[kCharToSub[*src++]];\n    if ((e & ~1) == 0) {\n      // We overshot by one byte\n      --src;\n      break;\n    }\n    tagParseTbl = &kTagParseTbl_0[e * 20];\n  }\n\n  if (src >= srclimit) {\n    // We fell off the end of the text.\n    // It looks like the most common case for this is a truncated file, not\n    // mismatched angle brackets. So we pretend that the last char was '>'\n    return len;\n  }\n\n  // OK to be in state 0 or state 2 at exit\n  if ((e != 0) && (e != 2)) {\n    // Error, '<' followed by '<'\n    // We want to back up to first <, then advance by one byte past it\n    int offset = src - reinterpret_cast<const uint8*>(isrc);\n    // printf(\"ScanToPossibleLetter error at %d[%d] in '%s'\\n\",offset,e,isrc);\n\n    // Backscan to first '<' and return enough length to just get past it\n    --offset;   // back up over the second '<', which caused us to stop\n    while ((0 < offset) && (isrc[offset] != '<')) {\n      // Find the first '<', which is unmatched\n      --offset;\n    }\n    // skip to just beyond first '<'\n    // printf(\"  returning %d\\n\", offset + 1);\n    return offset + 1;\n  }\n\n  return src - reinterpret_cast<const uint8*>(isrc);\n}\n\n\n\nScriptScanner::ScriptScanner(const char* buffer,\n                             int buffer_length,\n                             bool is_plain_text)\n  : start_byte_(buffer),\n  next_byte_(buffer),\n  next_byte_limit_(buffer + buffer_length),\n  byte_length_(buffer_length),\n  is_plain_text_(is_plain_text) {\n    script_buffer_ = new char[getone::kMaxScriptBuffer];\n    script_buffer_lower_ = new char[getone::kMaxScriptLowerBuffer];\n}\n\nScriptScanner::~ScriptScanner() {\n  delete[] script_buffer_;\n  delete[] script_buffer_lower_;\n}\n\n\n\n\n// Get to the first real non-tag letter or entity that is a letter\n// Sets script of that letter\n// Return len if no more letters\nint ScriptScanner::SkipToFrontOfSpan(const char* src, int len, int* script) {\n  int sc = UNKNOWN_LSCRIPT;\n  int skip = 0;\n  int tlen, plen;\n\n  // Do run of non-letters (tag | &NL | NL)*\n  while (skip < len) {\n    // Do fast scan to next interesting byte\n    // int oldskip = skip;\n    skip += ScanToLetterOrSpecial(src + skip, len - skip);\n    // TEMP\n    // printf(\"ScanToLetterOrSpecial[%d] 0x%02x => [%d] 0x%02x\\n\",\n    //       oldskip, src[oldskip], skip, src[skip]);\n\n    // Check for no more letters/specials\n    if (skip >= len) {\n      // All done\n      return len;\n    }\n\n    // We are at a letter, nonletter, tag, or entity\n    if (IsSpecial(src[skip]) && !is_plain_text_) {\n      if (src[skip] == '<') {\n        // Begining of tag; skip to end and go around again\n        tlen = ScanToPossibleLetter(src + skip, len - skip);\n        sc = 0;\n        // printf(\"<...> \");\n      } else if (src[skip] == '>') {\n        // Unexpected end of tag; skip it and go around again\n        tlen = 1;         // Over the >\n        sc = 0;\n        // printf(\"..> \");\n      } else if (src[skip] == '&') {\n        // Expand entity, no advance\n        char temp[4];\n        EntityToBuffer(src + skip, len - skip,\n                       temp, &tlen, &plen);\n        sc = getone::GetUTF8LetterScriptNum(temp);\n        // printf(\"#(%02x%02x)=%d \", temp[0], temp[1], sc);\n      }\n    } else {\n      // Update 1..4 bytes\n      tlen = cld_UniLib::OneCharLen(src + skip);\n      sc = getone::GetUTF8LetterScriptNum(src + skip);\n      // printf(\"#(%02x%02x)=%d \", src[skip], src[skip+1], sc);\n    }\n    // TEMP\n    // printf(\"sc=%d \", sc);\n    if (sc != 0) {break;}           // Letter found\n    skip += tlen;                   // Advance\n  }\n\n  *script = sc;\n  return skip;\n}\n\n\n\n// Copy next run of same-script non-tag letters to buffer [NUL terminated]\n// Buffer has leading space and all text is lowercased\nbool ScriptScanner::GetOneScriptSpan(getone::LangSpan* span) {\n  span->text = script_buffer_;\n  span->text_bytes = 0;\n  span->offset = next_byte_ - start_byte_;\n  span->script = UNKNOWN_LSCRIPT;\n  span->lang = UNKNOWN_LANGUAGE;\n  span->truncated = false;\n\n  // printf(\"GetOneScriptSpan[[ \");\n  // struct timeval script_start, script_mid, script_end;\n\n  int spanscript;           // The script of this span\n  int sc = UNKNOWN_LSCRIPT;  // The script of next character\n  int tlen, plen;\n\n\n  script_buffer_[0] = ' ';  // Always a space at front of output\n  script_buffer_[1] = '\\0';\n  int take = 0;\n  int put = 1;              // Start after the initial space\n\n  // gettimeofday(&script_start, NULL);\n  // Get to the first real non-tag letter or entity that is a letter\n  int skip = SkipToFrontOfSpan(next_byte_, byte_length_, &spanscript);\n  next_byte_ += skip;\n  byte_length_ -= skip;\n  if (byte_length_ <= 0) {\n    // printf(\"]]\\n\");\n    return false;               // No more letters to be found\n  }\n\n  // gettimeofday(&script_mid, NULL);\n\n  // There is at least one letter, so we know the script for this span\n  // printf(\"{%d} \", spanscript);\n  span->script = (UnicodeLScript)spanscript;\n\n\n  // Go over alternating spans of same-script letters and non-letters,\n  // copying letters to buffer with single spaces for each run of non-letters\n  while (take < byte_length_) {\n    // Copy run of letters in same script (&LS | LS)*\n    int letter_count = 0;              // Keep track of word length\n    bool need_break = false;\n    while (take < byte_length_) {\n      // We are at a letter, nonletter, tag, or entity\n      if (IsSpecial(next_byte_[take]) && !is_plain_text_) {\n        // printf(\"\\\"%c\\\" \", next_byte_[take]);\n        if (next_byte_[take] == '<') {\n          // Begining of tag\n          sc = 0;\n          break;\n        } else if (next_byte_[take] == '>') {\n          // Unexpected end of tag\n          sc = 0;\n          break;\n        } else if (next_byte_[take] == '&') {\n          // Copy entity, no advance\n          EntityToBuffer(next_byte_ + take, byte_length_ - take,\n                         script_buffer_ + put, &tlen, &plen);\n          sc = getone::GetUTF8LetterScriptNum(script_buffer_ + put);\n        }\n      } else {\n        // Real letter, safely copy up to 4 bytes, increment by 1..4\n        // Will update by 1..4 bytes at Advance, below\n        tlen = plen = cld_UniLib::OneCharLen(next_byte_ + take);\n        if (take < (byte_length_ - 3)) {\n          // Fast case\n          *reinterpret_cast<uint32*>(script_buffer_ + put) =\n            *reinterpret_cast<const uint32*>(next_byte_ + take);\n        } else {\n          // Slow case, happens 1-3 times per input document\n          memcpy(script_buffer_ + put, next_byte_ + take, plen);\n        }\n        sc = getone::GetUTF8LetterScriptNum(next_byte_ + take);\n      }\n      // printf(\"sc(%c)=%d \", next_byte_[take], sc);\n      // char xtmp[8]; memcpy(xtmp,script_buffer_ + put, plen);\n      // xtmp[plen] = '\\0'; printf(\"'%s'{%d} \", xtmp, sc);\n\n      // Allow continue across a single letter in a different script:\n      // A B D = three scripts, c = common script, i = inherited script,\n      // - = don't care, ( = take position before the += below\n      //  AAA(A-    continue\n      //\n      //  AAA(BA    continue\n      //  AAA(BB    break\n      //  AAA(Bc    continue (breaks after B)\n      //  AAA(BD    break\n      //  AAA(Bi    break\n      //\n      //  AAA(c-    break\n      //\n      //  AAA(i-    continue\n      //\n\n      if ((sc != spanscript) && (sc != ULScript_Inherited)) {\n        // Might need to break this script span\n        if (sc == ULScript_Common) {\n          need_break = true;\n        } else {\n          // Look at next following character, ignoring entity as Common\n          int sc2 = getone::GetUTF8LetterScriptNum(next_byte_ + take + tlen);\n          if ((sc2 != ULScript_Common) && (sc2 != spanscript)) {\n            need_break = true;\n          }\n        }\n      }\n      if (need_break) {break;}  // Non-letter or letter in wrong script\n\n      take += tlen;                   // Advance\n      put += plen;                    // Advance\n      ++letter_count;\n      if (put >= getone::kMaxScriptBytes) {\n        // Buffer is full\n        span->truncated = true;\n        break;\n      }\n    }     // End while letters\n\n    // Do run of non-letters (tag | &NL | NL)*\n    while (take < byte_length_) {\n      // Do fast scan to next interesting byte\n      take += ScanToLetterOrSpecial(next_byte_ + take, byte_length_ - take);\n      \n      // Check for no more letters/specials\n      if (take >= byte_length_) {\n        take = byte_length_;\n        break;\n      }\n\n      // We are at a letter, nonletter, tag, or entity\n      if (IsSpecial(next_byte_[take]) && !is_plain_text_) {\n        // printf(\"\\\"%c\\\" \", next_byte_[take]);\n        if (next_byte_[take] == '<') {\n          // Begining of tag; skip to end and go around again\n          tlen = ScanToPossibleLetter(next_byte_ + take, byte_length_ - take);\n          sc = 0;\n          // printf(\"<...> \");\n        } else if (next_byte_[take] == '>') {\n          // Unexpected end of tag; skip it and go around again\n          tlen = 1;         // Over the >\n          sc = 0;\n          // printf(\"..> \");\n        } else if (next_byte_[take] == '&') {\n          // Expand entity, no advance\n          EntityToBuffer(next_byte_ + take, byte_length_ - take,\n                         script_buffer_ + put, &tlen, &plen);\n          sc = getone::GetUTF8LetterScriptNum(script_buffer_ + put);\n        }\n      } else {\n        // Update 1..4\n        tlen = cld_UniLib::OneCharLen(next_byte_ + take);\n        sc = getone::GetUTF8LetterScriptNum(next_byte_ + take);\n      }\n      // printf(\"sc[%c]=%d \", next_byte_[take], sc);\n      if (sc != 0) {break;}           // Letter found\n      take += tlen;                   // Advance\n    }     // End while not-letters\n\n    script_buffer_[put++] = ' ';\n\n    // We are at a letter again (or eos), after letter* not-letter*\n    if (sc != spanscript) {break;}            // Letter in wrong script\n    if (put >= getone::kMaxScriptBytes - 8) {\n      // Buffer is almost full\n      span->truncated = true;\n      break;\n    }\n  }\n\n  // Update input position\n  next_byte_ += take;\n  byte_length_ -= take;\n\n  // Put four more spaces/NUL. Worst case is abcd _ _ _ \\0\n  //                          kMaxScriptBytes |   | put\n  script_buffer_[put + 0] = ' ';\n  script_buffer_[put + 1] = ' ';\n  script_buffer_[put + 2] = ' ';\n  script_buffer_[put + 3] = '\\0';\n\n  span->text_bytes = put;       // Does not include the last four chars above\n\n  // printf(\" %d]]\\n\\n\", put);\n  return true;\n}\n\n// Force Latin, Cyrillic, Greek scripts to be lowercase\nvoid ScriptScanner::LowerScriptSpan(getone::LangSpan* span) {\n  // On Windows, text is lowercased beforehand, so no need to do anything here.\n#if !defined(CLD_WINDOWS)\n  // If needed, lowercase all the text. If we do it sooner, might miss\n  // lowercasing an entity such as &Aacute;\n  // We only need to do this for Latn and Cyrl scripts\n  if ((span->script == ULScript_Latin) ||\n      (span->script == ULScript_Cyrillic) ||\n      (span->script == ULScript_Greek)) {\n    // Full Unicode lowercase of the entire buffer, including\n    // four pad bytes off the end\n    int consumed, filled;\n    UniLib::ToLower(span->text, span->text_bytes + 4,\n                    script_buffer_lower_, getone::kMaxScriptLowerBuffer,\n                    &consumed, &filled);\n    span->text = script_buffer_lower_;\n    span->text_bytes = filled - 4;\n  }\n#endif\n}\n\n// Copy next run of same-script non-tag letters to buffer [NUL terminated]\n// Force Latin and Cyrillic scripts to be lowercase\nbool ScriptScanner::GetOneScriptSpanLower(getone::LangSpan* span) {\n  bool ok = GetOneScriptSpan(span);\n  LowerScriptSpan(span);\n  return ok;\n}\n\n// Gets lscript number for letters; always returns\n//   0 (common script) for non-letters\nint getone::GetUTF8LetterScriptNum(const char* src) {\n  int srclen = cld_UniLib::OneCharLen(src);\n  const uint8* usrc = reinterpret_cast<const uint8*>(src);\n  return UTF8GenericProperty(&utf8propletterscriptnum_obj, &usrc, &srclen);\n}\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/getonescriptspan.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef ENCODINGS_COMPACT_LANG_DET_GETONESCRIPTSPAN_H_\n#define ENCODINGS_COMPACT_LANG_DET_GETONESCRIPTSPAN_H_\n\n#include \"encodings/compact_lang_det/letterscript_enum.h\"\n#include \"encodings/compact_lang_det/compact_lang_det_impl.h\"\n\nnamespace getone {\n  static const int kMaxScriptBuffer = 4096;\n  static const int kMaxScriptLowerBuffer = (kMaxScriptBuffer * 3) / 2;\n  static const int kMaxScriptBytes = kMaxScriptBuffer- 8;   // Leave some room\n  static const int kMaxAnswerBuffer = 256;\n\n  typedef enum UnicodeLScript ULScript;\n\n  typedef struct {\n    char* text;             // Pointer to the span, somewhere\n    int text_bytes;         // Number of bytes of text in the span\n    int offset;             // Offset of start of span in original input buffer\n    ULScript script;        // Script of all the letters in this span\n    Language lang;          // Language identified for this span\n    bool truncated;         // true if buffer filled up before a\n                            // different script or EOF was found\n  } LangSpan;\n\n\n  static inline bool IsContinuationByte(char c) {\n    return static_cast<signed char>(c) < -64;\n  }\n\n  // Gets lscript number for letters; always returns\n  //   0 (common script) for non-letters\n  int GetUTF8LetterScriptNum(const char* src);\n\n\n  // Update src pointer to point to next quadgram, +2..+5\n  // Looks at src[0..4]\n  const char* AdvanceQuad(const char* src);\n}     // end namespace getone\n\n\n\n\n\n\nclass ScriptScanner {\n public:\n  ScriptScanner(const char* buffer, int buffer_length, bool is_plain_text);\n  ~ScriptScanner();\n\n  // Copy next run of same-script non-tag letters to buffer [NUL terminated]\n  bool GetOneScriptSpan(getone::LangSpan* span);\n\n  // Force Latin and Cyrillic scripts to be lowercase\n  void LowerScriptSpan(getone::LangSpan* span);\n\n  // Copy next run of same-script non-tag letters to buffer [NUL terminated]\n  // Force Latin and Cyrillic scripts to be lowercase\n  bool GetOneScriptSpanLower(getone::LangSpan* span);\n\n private:\n  int SkipToFrontOfSpan(const char* src, int len, int* script);\n\n  const char* start_byte_;\n  const char* next_byte_;\n  const char* next_byte_limit_;\n  int byte_length_;\n  bool is_plain_text_;\n  char* script_buffer_;           // Holds text with expanded entities\n  char* script_buffer_lower_;     // Holds lowercased text\n};\n\n\nclass LangScanner {\n public:\n  LangScanner(const CompactLangDetImpl::LangDetObj* langdetobj,\n              getone::LangSpan* spn, int smoothwidth, int smoothcandidates,\n              int maxlangs, int minlangspan);\n  ~LangScanner();\n\n\n  int script() {return script_;}\n\n  // Use new text\n  // Keep smoothing state if same script, otherwise reinit smoothing\n  void NewText(getone::LangSpan* spn);\n\n  bool GetOneShortLangSpanBoot(getone::LangSpan* span);  // Just for bootstrapping\n  bool GetOneLangSpanBoot(getone::LangSpan* span);       // Just for bootstrapping\n\n  // The real ones\n  bool GetOneShortLangSpan(const CompactLangDetImpl::LangDetObj* langdetobj,\n                           getone::LangSpan* span);\n  bool GetOneLangSpan(const CompactLangDetImpl::LangDetObj* langdetobj,\n                      getone::LangSpan* span);\n\n  // Increases language bias by delta\n  void SetLanguageBias(const CompactLangDetImpl::LangDetObj* langdetobj,\n                       Language key, int delta);\n\n  // For debugging output\n  int next_answer_;\n  char answer_buffer_[getone::kMaxAnswerBuffer];\n  char answer_buffer2_[getone::kMaxAnswerBuffer];\n  char answer_buffer3_[getone::kMaxAnswerBuffer];\n  char answer_buffer4_[getone::kMaxAnswerBuffer];\n\n private:\n  const char* start_byte_;\n  const char* next_byte_limit_;\n  const char* next_byte_;\n  const char* onelangspan_begin_;\n  int byte_length_;\n  int script_;\n  Language spanlang_;\n  int smoothwidth_;\n  int smoothwidth_2_;\n  int smoothcandidates_;\n  int maxlangs_;\n  int minlangspan_;\n  int rb_size_;\n  int next_rb_;\n  int rb_mask_;\n  uint32* rb_;\n  int* offset_rb_;\n};\n\n#endif  // ENCODINGS_COMPACT_LANG_DET_GETONESCRIPTSPAN_H_\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/letterscript_enum.cc",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#include \"encodings/compact_lang_det/letterscript_enum.h\"\n\n#include \"encodings/compact_lang_det/win/cld_logging.h\"\n\nstatic const char* kUnicodeLScriptNames[ULScript_NUM_SCRIPTS] = {\n  \"Common\",\n  \"Latin\",\n  \"Greek\",\n  \"Cyrillic\",\n  \"Armenian\",\n  \"Hebrew\",\n  \"Arabic\",\n  \"Syriac\",\n  \"Thaana\",\n  \"Devanagari\",\n  \"Bengali\",\n  \"Gurmukhi\",\n  \"Gujarati\",\n  \"Oriya\",\n  \"Tamil\",\n  \"Telugu\",\n  \"Kannada\",\n  \"Malayalam\",\n  \"Sinhala\",\n  \"Thai\",\n  \"Lao\",\n  \"Tibetan\",\n  \"Myanmar\",\n  \"Georgian\",\n  \"HanCJK\",\n  \"Ethiopic\",\n  \"Cherokee\",\n  \"Canadian_Aboriginal\",\n  \"Ogham\",\n  \"Runic\",\n  \"Khmer\",\n  \"Mongolian\",\n  \"Yi\",\n  \"Old_Italic\",\n  \"Gothic\",\n  \"Deseret\",\n  \"Inherited\",\n  \"Tagalog\",\n  \"Hanunoo\",\n  \"Buhid\",\n  \"Tagbanwa\",\n  \"Limbu\",\n  \"Tai_Le\",\n  \"Linear_B\",\n  \"Ugaritic\",\n  \"Shavian\",\n  \"Osmanya\",\n  \"Cypriot\",\n  \"Buginese\",\n  \"Coptic\",\n  \"New_Tai_Lue\",\n  \"Glagolitic\",\n  \"Tifinagh\",\n  \"Syloti_Nagri\",\n  \"Old_Persian\",\n  \"Kharoshthi\",\n  \"Balinese\",\n  \"Cuneiform\",\n  \"Phoenician\",\n  \"Phags_Pa\",\n  \"Nko\",\n\n  // Unicode 5.1 beta\n  \"Sundanese\",\n  \"Lepcha\",\n  \"Ol_Chiki\",\n  \"Vai\",\n  \"Saurashtra\",\n  \"Kayah_Li\",\n  \"Rejang\",\n  \"Lycian\",\n  \"Carian\",\n  \"Lydian\",\n  \"Cham\",\n};\n\n\n// Unicode 5.1 beta script names from\n// http://www.unicode.org/Public/5.1.0/diffs/5.0.0-5.1.0.all.2.diffs\n// NOTE: 'Vai ' => \"Vaii\" to make four letters, not three\n// see http://unicode.org/iso15924/iso15924-codes.html\nconst char* const kLScriptName4[ULScript_NUM_SCRIPTS] = {\n  \"Zyyy\", \"Latn\", \"Grek\", \"Cyrl\",   \"Armn\", \"Hebr\", \"Arab\", \"Syrc\",\n  \"Thaa\", \"Deva\", \"Beng\", \"Guru\",   \"Gujr\", \"Orya\", \"Taml\", \"Telu\",\n  \"Knda\", \"Mlym\", \"Sinh\", \"Thai\",   \"Laoo\", \"Tibt\", \"Mymr\", \"Geor\",\n  \"Hani\", \"Ethi\", \"Cher\", \"Cans\",   \"Ogam\", \"Runr\", \"Khmr\", \"Mong\",\n\n  \"Yiii\", \"Ital\", \"Goth\", \"Dsrt\",   \"Zzzz\", \"Tglg\", \"Hano\", \"Buhd\",\n  \"Tagb\", \"Limb\", \"Tale\", \"Linb\",   \"Ugar\", \"Shaw\", \"Osma\", \"Cprt\",\n  \"Bugi\", \"Copt\", \"Talu\", \"Glag\",   \"Tfng\", \"Sylo\", \"Xpeo\", \"Khar\",\n  \"Bali\", \"Xsux\", \"Phnx\", \"Phag\",   \"Nkoo\",\n\n  // Unicode 5.1 beta\n  \"Sund\", \"Lepc\", \"Olck\", \"Vaii\", \"Saur\", \"Kali\", \"Rjng\", \"Lyci\",\n  \"Cari\", \"Lydi\", \"Cham\",\n};\n\n\nconst char* UnicodeLScriptName(const UnicodeLScript ls) {\n  CHECK(ls >= 0 && ls < ULScript_NUM_SCRIPTS);\n  return kUnicodeLScriptNames[ls];\n}\n\n\nconst char* UnicodeLScriptCode(const UnicodeLScript ls) {\n  CHECK(ls >= 0 && ls < ULScript_NUM_SCRIPTS);\n  return kLScriptName4[ls];\n}\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/letterscript_enum.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef ENCODINGS_COMPACT_LANG_DET_LETTERSCRIPT_ENUM_H__\n#define ENCODINGS_COMPACT_LANG_DET_LETTERSCRIPT_ENUM_H__\n\nenum UnicodeLScript {\n  ULScript_Common,\n  ULScript_Latin,\n  ULScript_Greek,\n  ULScript_Cyrillic,\n  ULScript_Armenian,\n  ULScript_Hebrew,\n  ULScript_Arabic,\n  ULScript_Syriac,\n  ULScript_Thaana,\n  ULScript_Devanagari,\n  ULScript_Bengali,\n  ULScript_Gurmukhi,\n  ULScript_Gujarati,\n  ULScript_Oriya,\n  ULScript_Tamil,\n  ULScript_Telugu,\n  ULScript_Kannada,\n  ULScript_Malayalam,\n  ULScript_Sinhala,\n  ULScript_Thai,\n  ULScript_Lao,\n  ULScript_Tibetan,\n  ULScript_Myanmar,\n  ULScript_Georgian,\n  ULScript_HanCJK,\n  ULScript_Ethiopic,\n  ULScript_Cherokee,\n  ULScript_Canadian_Aboriginal,\n  ULScript_Ogham,\n  ULScript_Runic,\n  ULScript_Khmer,\n  ULScript_Mongolian,\n  ULScript_Yi,\n  ULScript_Old_Italic,\n  ULScript_Gothic,\n  ULScript_Deseret,\n  ULScript_Inherited,\n  ULScript_Tagalog,\n  ULScript_Hanunoo,\n  ULScript_Buhid,\n  ULScript_Tagbanwa,\n  ULScript_Limbu,\n  ULScript_Tai_Le,\n  ULScript_Linear_B,\n  ULScript_Ugaritic,\n  ULScript_Shavian,\n  ULScript_Osmanya,\n  ULScript_Cypriot,\n  ULScript_Buginese,\n  ULScript_Coptic,\n  ULScript_New_Tai_Lue,\n  ULScript_Glagolitic,\n  ULScript_Tifinagh,\n  ULScript_Syloti_Nagri,\n  ULScript_Old_Persian,\n  ULScript_Kharoshthi,\n  ULScript_Balinese,\n  ULScript_Cuneiform,\n  ULScript_Phoenician,\n  ULScript_Phags_Pa,\n  ULScript_Nko,\n\n  // Unicode 5.1\n  ULScript_Sundanese,\n  ULScript_Lepcha,\n  ULScript_Ol_Chiki,\n  ULScript_Vai,\n  ULScript_Saurashtra,\n  ULScript_Kayah_Li,\n  ULScript_Rejang,\n  ULScript_Lycian,\n  ULScript_Carian,\n  ULScript_Lydian,\n  ULScript_Cham,\n  ULScript_NUM_SCRIPTS\n};\n\n\nstatic const UnicodeLScript UNKNOWN_LSCRIPT = ULScript_Common;\n\n\n// Return the name corresponding to the script ls, e.g. \"Latin\".\n// It is a fatal error if ls is not a valid UnicodeLScript.\nconst char* UnicodeLScriptName(const UnicodeLScript ls);\n\n\n// Return the 4-letter code corresponding to the script ls, e.g. \"Latn\".\n// It is a fatal error if ls is not a valid UnicodeLScript.\nconst char* UnicodeLScriptCode(const UnicodeLScript ls);\n\n#endif  // ENCODINGS_COMPACT_LANG_DET_LETTERSCRIPT_ENUM_H__\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/subsetsequence.cc",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n// Remember a subset of a sequence of values, using a modest amount of memory\n\n/***\n  Design:\n  Accumulate in powers of three, using 3-way median to collapse entries.\n  At any given time, there is one most-dense (highest power of 3) range of\n  entries and a series of less-dense ranges that hold 0..2 entries each. There\n  is a bounded-size storage array of S cells for all the entries.\n\n  The overflow detect is set up so that a new higher power of 3, K+1, is\n  triggered precisely when range K has 3n entries and all ranges < K have\n  zero entries.\n\n  In general, think of the range sizes as a multi-digit base 3 number, except\n  the highest digit may exceed 2:\n\n  3**6  3**5  3**4  3**3  3**2  3**1  3**0  K=2\n    0     0     0     0   3n-1    2     2   unused:1\n\n  There are a total of 3n-1 + 2 + 2 entries in use. Assume a size limit S at\n  one more than that, and we add a new 3**0 entry and \"carry\" by performing\n  medians on any group of 3 elements:\n\n  3**6  3**5  3**4  3**3  3**2  3**1  3**0       K=2\n    0     0     0     0   3n-1    2     3        unused:0\n    0     0     0     0   3n-1    3     0 carry  unused:2\n    0     0     0     0    3n     0     0 carry  unused:4\n\n  To accumulate 2 entries at all levels < K and 3 just before the first carry at\n  level 0, we need 2*K + 1 unused cells after doing all carries, or five cells\n  in this case. Since we only have 4 cells in the example above, we need to\n  make room by starting a new power of three:\n\n  3**6  3**5  3**4  3**3  3**2  3**1  3**0\n    0     0     0     0    3n     0     0        K=2 unused:4\n    0     0     0     n     0     0     0        K=3 unused:2n+4\n\n  In the code below, we don't worry about overflow from the topmost place.\n\n\n***/\n\n#include \"encodings/compact_lang_det/subsetsequence.h\"\n#include <stdio.h>\n\n#include \"encodings/compact_lang_det/win/cld_logging.h\"\n\nvoid DumpInts(const char* label, const int* v, int n) {\n  printf(\"%s \", label);\n  for (int i = 0; i < n; ++i) {\n    printf(\"%d \", v[i]);\n  }\n  printf(\"\\n\");\n}\n\nvoid DumpUint8s(const char* label, const uint8* v, int n) {\n  printf(\"%s \", label);\n  for (int i = 0; i < n; ++i) {\n    printf(\"%d \", v[i]);\n  }\n  printf(\"\\n\");\n}\n\n// Return median of seq_[sub] .. seq_[sub+2], favoring middle element\nuint8 SubsetSequence::Median3(int sub) {\n  if (seq_[sub] == seq_[sub + 1]) {\n    return seq_[sub];\n  }\n  if (seq_[sub] == seq_[sub + 2]) {\n    return seq_[sub];\n  }\n  return seq_[sub + 1];\n}\n\nvoid SubsetSequence::Init() {\n  // printf(\"Init\\n\");\n\n  k_ = 0;\n  count_[0] = 0;\n  next_e_ = 0;\n  seq_[0] = 0;    // Default value if no calls to Add\n\n  // Want largest <= kMaxSeq_ that allows reserve and makes count_[k_] = 0 mod 3\n  int reserve = (2 * k_ + 1);\n  level_limit_e_ = kMaxSeq_ - reserve;\n  level_limit_e_ = (level_limit_e_ / 3) * 3;  // Round down to multiple of 3\n  limit_e_ = level_limit_e_;\n}\n\n// Compress level k by 3x, creating level k+1\nvoid SubsetSequence::NewLevel() {\n  // printf(\"NewLevel 3 ** %d\\n\", k_ + 1);\n  //DumpUint8s(\"count[k]\", count_, k_ + 1);\n  //DumpUint8s(\"seq[next]\", seq_, next_e_);\n\n  // Incoming level must be an exact multiple of three in size\n  CHECK((count_[k_] % 3) == 0);\n  int k_size = count_[k_];\n  int new_size = k_size / 3;\n\n  // Compress down by 3x, via median\n  for (int j = 0; j < new_size; ++j) {\n    seq_[j] = Median3(j * 3);\n  }\n\n  // Update counts\n  count_[k_] = 0;\n  // Else Overflow -- just continue with 3x dense Level K\n  if (k_ < (kMaxLevel_ - 1)) {++k_;}\n  count_[k_] = new_size;\n\n  // Update limits\n  next_e_ = new_size;\n  limit_e_ = next_e_ + 3;\n\n  // Want largest <= kMaxSeq_ that allows reserve and makes count_[k_] = 0 mod 3\n  int reserve = (2 * k_ + 1);\n  level_limit_e_ = kMaxSeq_ - reserve;\n  level_limit_e_ = (level_limit_e_ / 3) * 3;  // Round down to multiple of 3\n                                              //\n  //DumpUint8s(\"after: count[k]\", count_, k_ + 1);\n  //DumpUint8s(\"after: seq[next]\", seq_, next_e_);\n}\n\nvoid SubsetSequence::DoCarries() {\n  CHECK(count_[k_] > 3);    // We depend on count_[k_] being > 3 to stop while\n  // Make room by carrying\n\n  //DumpUint8s(\"DoCarries count[k]\", count_, k_ + 1);\n  //DumpUint8s(\"DoCarries seq[next]\", seq_, next_e_);\n\n  int i = 0;\n  while (count_[i] == 3) {\n    next_e_ -= 3;\n    seq_[next_e_] = Median3(next_e_);\n    ++next_e_;\n    count_[i] = 0;\n    ++count_[i + 1];\n    ++i;\n  }\n  limit_e_ = next_e_ + 3;\n\n  //DumpUint8s(\"after: DoCarries count[k]\", count_, k_ + 1);\n  //DumpUint8s(\"after: DoCarries seq[next]\", seq_, next_e_);\n\n  // If we just fully carried into level K,\n  // Make sure there is now enough room, else start level K + 1\n  if (i >= k_) {\n    CHECK(count_[k_] == next_e_);\n    if (next_e_ >= level_limit_e_) {\n      NewLevel();\n    }\n  }\n}\n\nvoid SubsetSequence::Add(uint8 e) {\n  // Add an entry then carry as needed\n  seq_[next_e_] = e;\n  ++next_e_;\n  ++count_[0];\n\n  if (next_e_ >= limit_e_) {\n    DoCarries();\n  }\n}\n\n\n// Collapse tail end by simple median across disparate-weight values,\n// dropping or duplicating last value if need be.\n// This routine is idempotent.\nvoid SubsetSequence::Flush() {\n  // printf(\"Flush %d\\n\", count_[k_]);\n  int start_tail = count_[k_];\n  int size_tail = next_e_ - start_tail;\n  if ((size_tail % 3) == 2) {\n    seq_[next_e_] = seq_[next_e_ - 1];      // Duplicate last value\n    ++size_tail;\n  }\n\n  // Compress tail down by 3x, via median\n  int new_size = size_tail / 3;             // May delete last value\n  for (int j = 0; j < new_size; ++j) {\n    seq_[start_tail + j] = Median3(start_tail + j * 3);\n  }\n\n  next_e_ = start_tail + new_size;\n  count_[k_] = next_e_;\n}\n\n\n// Extract representative pattern of exactly N values into dst[0..n-1]\n// This routine may be called multiple times, but it may downsample as a\n// side effect, causing subsequent calls with larger N to get poor answers.\nvoid SubsetSequence::Extract(int to_n, uint8* dst) {\n  // Collapse partial-carries in tail\n  Flush();\n\n  // Just use Bresenham to resample\n  int from_n = next_e_;\n  if (to_n >= from_n) {\n    // Up-sample from_n => to_n\n    int err = to_n - 1;          // bias toward no overshoot\n    int j = 0;\n    for (int i = 0; i < to_n; ++i) {\n      dst[i] = seq_[j];\n      err -= from_n;\n      if (err < 0) {\n        ++j;\n        err += to_n;\n      }\n    }\n  } else {\n    // Get to the point that the number of samples is <= 3 * to_n\n    while (next_e_ > (to_n * 3)) {\n      // Compress down by 3x, via median\n      // printf(\"Extract, median %d / 3\\n\", next_e_);\n      if ((next_e_ % 3) == 2) {\n        seq_[next_e_] = seq_[next_e_ - 1];    // Duplicate last value\n        ++next_e_;\n      }\n      int new_size = next_e_ / 3;             // May delete last value\n      for (int j = 0; j < new_size; ++j) {\n        seq_[j] = Median3(j * 3);\n      }\n      next_e_ = new_size;\n      count_[k_] = next_e_;\n    }\n    from_n = next_e_;\n\n    if (to_n == from_n) {\n      // Copy verbatim\n      for (int i = 0; i < to_n; ++i) {\n        dst[i] = seq_[i];\n      }\n      return;\n    }\n\n    // Down-sample from_n => to_n, using medians\n    int err = 0;          // Bias to immediate median sample\n    int j = 0;\n    for (int i = 0; i < from_n; ++i) {\n      err -= to_n;\n      if (err < 0) {\n        if (i <= (next_e_ - 2)) {\n          dst[j] = Median3(i);\n        } else {\n          dst[j] = seq_[i];\n        }\n        ++j;\n        err += from_n;\n      }\n    }\n  }\n\n}\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/subsetsequence.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n// Remember a subset of a sequence of values, using a modest amount of memory\n\n#ifndef ENCODINGS_COMPACT_LANG_DET_SUBSETSEQUENCE_H_\n#define ENCODINGS_COMPACT_LANG_DET_SUBSETSEQUENCE_H_\n\n#include \"encodings/compact_lang_det/win/cld_basictypes.h\"\n#include \"encodings/compact_lang_det/win/cld_google.h\"\n\n\nclass SubsetSequence {\n public:\n   void Init();\n   void Add(uint8 e);\n   void Extract(int n, uint8* dst);\n   SubsetSequence() {Init();}\n   ~SubsetSequence() {};\n\n private:\n   uint8 Median3(int sub);\n   void NewLevel();\n   void DoCarries();\n   void Flush();\n\n   static const int kMaxLevel_ = 16;    // 3**16 ~=  43M (3**20 ~= 3.4B)\n   static const int kMaxSeq_ = 128;\n\n   int k_;\n   int next_e_;\n   int limit_e_;\n   int level_limit_e_;\n   uint8 seq_[kMaxSeq_];\n   uint8 count_[kMaxLevel_ + 1];        // +1 allows graceful overflow\n\n   DISALLOW_EVIL_CONSTRUCTORS(SubsetSequence);\n\n   // Require enough room to end up with 40 entries plus carrying space\n   COMPILE_ASSERT(kMaxSeq_ >= (kMaxLevel_ * 2 + 40), kMaxSeq__is_too_small);\n};\n\n#endif  // ENCODINGS_COMPACT_LANG_DET_SUBSETSEQUENCE_H_\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/subsetsequence_unittest.cc",
    "content": "// Copyright 2008 Google Inc. All Rights Reserved.\n// Author: dsites@google.com (Dick Sites)\n/*\n#include \"testing/base/public/gunit.h\"\n#include \"testing/lib/strings/overrun_sensitive_memory_block.h\"\n#include \"cld/encodings/compact_lang_det/subsetsequence.h\"\n\n// This always passes. It is just scaffolidng to exercise the subsequence\n// facility, which is likely to get abandoned soon. dsites 2008.11.17\n//\nTEST(SubsetSequence, foo) {\n  uint8 dst[120];\n\n  // Create 120-element vector\n  printf(\"Creating %d items:\\n\", 120);\n  SubsetSequence ss;\n  for (int i = 0; i < 120; ++i) {\n    ss.Add(i);\n  }\n\n  // Extract various lengths\n  for (int n = 120; n >= 0; --n) {\n    ss.Extract(n, dst);\n    printf(\"[%d] \", n);\n    for (int i = 0; i < n; ++i) {\n      printf(\"%d \", dst[i]);\n    }\n    printf(\"\\n\");\n  }\n\n  printf(\"\\n\");\n  printf(\"\\n\");\n\n  // Create 120-element vector of 7 items each\n  printf(\"Creating %d items:\\n\", 120);\n  ss.Init();\n  for (int i = 0; i < 120; ++i) {\n    ss.Add(i / 7);\n  }\n\n  // Extract various lengths\n  for (int n = 120; n >= 0; --n) {\n    ss.Extract(n, dst);\n    printf(\"[%d] \", n);\n    for (int i = 0; i < n; ++i) {\n      printf(\"%d \", dst[i]);\n    }\n    printf(\"\\n\");\n  }\n\n  printf(\"\\n\");\n  printf(\"\\n\");\n\n\n  // Create 400 element vector of patterns\n  int nn1 = 400;\n  int divisor = (nn1 + 239) / 240;  // Max inserted value = 240\n  printf(\"Creating %d items:\\n\", nn1);\n  ss.Init();\n  for (int i = 0; i < nn1; ++i) {\n    ss.Add(i / divisor);\n  }\n\n  // Extract 12-item summary lengths\n  int n1 = 12;\n  ss.Extract(n1, dst);\n  printf(\"[%d] \", n1);\n  for (int i = 0; i < n1; ++i) {\n    printf(\"%d \", dst[i]);\n  }\n  printf(\"\\n\");\n\n  printf(\"\\n\");\n  printf(\"\\n\");\n\n  // Create 10**n element vector of patterns\n  int pow_10 = 1;\n  for (int nn = 0; nn < 9; ++nn) {\n    printf(\"Creating %d items:\\n\", pow_10);\n    int divisor = (pow_10 + 239) / 240;  // Max inserted value = 240\n    ss.Init();\n    for (int i = 0; i < pow_10; ++i) {\n      ss.Add(i / divisor);\n    }\n\n    // Extract 12-item summary lengths\n    int n = 12;\n    ss.Extract(n, dst);\n    printf(\"[%d] \", n);\n    for (int i = 0; i < n; ++i) {\n      printf(\"%d \", dst[i]);\n    }\n    printf(\"\\n\");\n\n    pow_10 *= 10;\n  }\n\n}\n*/\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/tote.cc",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#include \"encodings/compact_lang_det/tote.h\"\n#include <string.h>     // memset\n\n#include \"encodings/compact_lang_det/win/cld_logging.h\"\n\n\n// Take a set of <key, value> pairs and tote them up.\n// After explicitly sorting, retrieve top key, value pairs\nTote::Tote() {\n  gram_count_ = 0;\n  incr_count_ = 0;\n  byte_count_ = 0;\n  memset(key_, 0, sizeof(key_));\n  // No need to initialize values\n}\n\nTote::~Tote() {\n}\n\nvoid Tote::Reinit() {\n  gram_count_ = 0;\n  incr_count_ = 0;\n  byte_count_ = 0;\n  memset(key_, 0, sizeof(key_));\n  // No need to initialize values\n}\n\n// Increment count of quadgrams/trigrams/unigrams scored\nvoid Tote::AddGram() {\n  ++gram_count_;\n}\n\n// Three-way associative, guaranteeing that the largest two counts are always\n// in the data structure. kMaxSize must be a multiple of 3, and is tied to the\n// subscript calculations here, which are for 8 sets of 3-way associative\n// buckets. The subscripts for set N are [N], [N+8], and [N+16] used in a\n// slightly-weird way: The initial probe point is [N] or [N+8], whichever\n// is specified by key mod 16. In most cases (nearly *all* cases except Latin\n// script), this entry matches and we update/return. The second probe is\n// the other of [N] and [N+8]. The third probe is only used as a fallback to\n// these two, and is there only for the rare case that there are three or more\n// languages with Language enum values equal mod 8, contending within the same\n// bucket. This can only happen in Latin and (rarely) Cyrillic scripts, because\n// the other scripts have fewer than 17 languages total.\n// If you change kMaxSize, change the constants 7/8/15/16 below\nvoid Tote::Add(uint8 ikey, int idelta) {\n  DCHECK(ikey != 0);\n  ++incr_count_;\n\n  // Look for existing entry\n  int sub0 = ikey & 15;\n  if (key_[sub0] == ikey) {\n    value_[sub0] += idelta;\n    return;\n  }\n  int sub1 = sub0 ^ 8;\n  if (key_[sub1] == ikey) {\n    value_[sub1] += idelta;\n    return;\n  }\n  int sub2 = (ikey & 7) + 16;\n  if (key_[sub2] == ikey) {\n    value_[sub2] += idelta;\n    return;\n  }\n\n  // Allocate new entry\n  int alloc = -1;\n  if (key_[sub0] == 0) {\n    alloc = sub0;\n  } else if (key_[sub1] == 0) {\n    alloc = sub1;\n  } else if (key_[sub2] == 0) {\n    alloc = sub2;\n  } else {\n    // All choices allocated, need to replace smallest one\n    alloc = sub0;\n    if (value_[sub1] < value_[alloc]) {alloc = sub1;}\n    if (value_[sub2] < value_[alloc]) {alloc = sub2;}\n  }\n  key_[alloc] = ikey;\n  value_[alloc] = idelta;\n  return;\n}\n\n// Return current top key\nint Tote::CurrentTopKey() {\n  int top_key = 0;\n  int top_value = -1;\n  for (int sub = 0; sub < kMaxSize_; ++sub) {\n    if (key_[sub] == 0) {continue;}\n    if (top_value < value_[sub]) {\n      top_value = value_[sub];\n      top_key = key_[sub];\n    }\n  }\n  return top_key;\n}\n\n\n// Sort first n entries by decreasing order of value\n// If key==0 other fields are not valid, treat value as -1\nvoid Tote::Sort(int n) {\n  // This is n**2, but n is small\n  for (int sub = 0; sub < n; ++sub) {\n    if (key_[sub] == 0) {value_[sub] = -1;}\n\n    // Bubble sort key[sub] and entry[sub]\n    for (int sub2 = sub + 1; sub2 < kMaxSize_; ++sub2) {\n      if (key_[sub2] == 0) {value_[sub2] = -1;}\n      if (value_[sub] < value_[sub2]) {\n        // swap\n        uint8 tmpk = key_[sub];\n        key_[sub] = key_[sub2];\n        key_[sub2] = tmpk;\n        int tmpv = value_[sub];\n        value_[sub] = value_[sub2];\n        value_[sub2] = tmpv;\n      }\n    }\n  }\n}\n\nvoid Tote::Dump(FILE* f) {\n  for (int sub = 0; sub < kMaxSize_; ++sub) {\n    if (key_[sub] > 0) {\n      fprintf(f, \"[%2d] %3d %8d\\n\", sub, key_[sub], value_[sub]);\n    }\n  }\n  fprintf(f, \"%d %d %d\\n\", gram_count_, incr_count_, byte_count_);\n}\n\n\n\n\n// Take a set of <key, value> pairs and tote them up.\n// After explicitly sorting, retrieve top key, value pairs\nToteWithReliability::ToteWithReliability() {\n  // No need to initialize score_ or value_\n  incr_count_ = 0;\n  sorted_ = 0;\n  memset(closepair_, 0, sizeof(closepair_));\n  memset(key_, 0, sizeof(key_));\n}\n\nToteWithReliability::~ToteWithReliability() {\n}\n\nvoid ToteWithReliability::Reinit() {\n  // No need to initialize score_ or value_\n  incr_count_ = 0;\n  sorted_ = 0;\n  memset(closepair_, 0, sizeof(closepair_));\n  memset(key_, 0, sizeof(key_));\n  ////ss_.Init();\n}\n\n// Weight reliability by ibytes\n// Also see three-way associative comments above for Tote\nvoid ToteWithReliability::Add(uint8 ikey, int ibytes,\n                              int score, int ireliability) {\n  DCHECK(ikey != 0);\n  CHECK(sorted_ == 0);\n  ++incr_count_;\n\n  // Look for existing entry\n  int sub0 = ikey & 15;\n  if (key_[sub0] == ikey) {\n    value_[sub0] += ibytes;\n    score_[sub0] += score;\n    reliability_[sub0] += ireliability * ibytes;\n    return;\n  }\n  int sub1 = sub0 ^ 8;\n  if (key_[sub1] == ikey) {\n    value_[sub1] += ibytes;\n    score_[sub1] += score;\n    reliability_[sub1] += ireliability * ibytes;\n    return;\n  }\n  int sub2 = (ikey & 7) + 16;\n  if (key_[sub2] == ikey) {\n    value_[sub2] += ibytes;\n    score_[sub2] += score;\n    reliability_[sub2] += ireliability * ibytes;\n    return;\n  }\n\n  // Allocate new entry\n  int alloc = -1;\n  if (key_[sub0] == 0) {\n    alloc = sub0;\n  } else if (key_[sub1] == 0) {\n    alloc = sub1;\n  } else if (key_[sub2] == 0) {\n    alloc = sub2;\n  } else {\n    // All choices allocated, need to replace smallest one\n    alloc = sub0;\n    if (value_[sub1] < value_[alloc]) {alloc = sub1;}\n    if (value_[sub2] < value_[alloc]) {alloc = sub2;}\n  }\n  key_[alloc] = ikey;\n  value_[alloc] = ibytes;\n  score_[alloc] = score;\n  reliability_[alloc] = ireliability * ibytes;\n  return;\n}\n\n// Find subscript of a given packed language, or -1\nint ToteWithReliability::Find(uint8 ikey) {\n  DCHECK(ikey != 0);\n\n  if (sorted_) {\n    // Linear search if sorted\n    for (int sub = 0; sub < kMaxSize_; ++sub) {\n      if (key_[sub] == ikey) {return sub;}\n    }\n    return -1;\n  }\n\n  // Look for existing entry\n  int sub0 = ikey & 15;\n  if (key_[sub0] == ikey) {\n    return sub0;\n  }\n  int sub1 = sub0 ^ 8;\n  if (key_[sub1] == ikey) {\n    return sub1;\n  }\n  int sub2 = (ikey & 7) + 16;\n  if (key_[sub2] == ikey) {\n    return sub2;\n  }\n\n  return -1;\n}\n\n// Return current top key\nint ToteWithReliability::CurrentTopKey() {\n  int top_key = 0;\n  int top_value = -1;\n  for (int sub = 0; sub < kMaxSize_; ++sub) {\n    if (key_[sub] == 0) {continue;}\n    if (top_value < value_[sub]) {\n      top_value = value_[sub];\n      top_key = key_[sub];\n    }\n  }\n  return top_key;\n}\n\n\n// Sort first n entries by decreasing order of value\n// If key==0 other fields are not valid, treat value as -1\nvoid ToteWithReliability::Sort(int n) {\n  // This is n**2, but n is small\n  for (int sub = 0; sub < n; ++sub) {\n    if (key_[sub] == 0) {value_[sub] = -1;}\n\n    // Bubble sort key[sub] and entry[sub]\n    for (int sub2 = sub + 1; sub2 < kMaxSize_; ++sub2) {\n      if (key_[sub2] == 0) {value_[sub2] = -1;}\n      if (value_[sub] < value_[sub2]) {\n        // swap\n        uint8 tmpk = key_[sub];\n        key_[sub] = key_[sub2];\n        key_[sub2] = tmpk;\n\n        int tmpv = value_[sub];\n        value_[sub] = value_[sub2];\n        value_[sub2] = tmpv;\n\n        double tmps = score_[sub];\n        score_[sub] = score_[sub2];\n        score_[sub2] = tmps;\n\n        int tmpr = reliability_[sub];\n        reliability_[sub] = reliability_[sub2];\n        reliability_[sub2] = tmpr;\n      }\n    }\n  }\n  sorted_ = 1;\n}\n\nvoid ToteWithReliability::Dump(FILE* f) {\n  for (int sub = 0; sub < kMaxSize_; ++sub) {\n    if (key_[sub] > 0) {\n      fprintf(f, \"[%2d] %3d %6d %5d %4d\\n\",\n              sub, key_[sub], value_[sub], score_[sub], reliability_[sub]);\n    }\n  }\n  fprintf(f, \"  %d#\\n\", incr_count_);\n}\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/tote.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef ENCODINGS_COMPACT_LANG_DET_TOTE_H_\n#define ENCODINGS_COMPACT_LANG_DET_TOTE_H_\n\n#include <stdio.h>\n#include \"encodings/compact_lang_det/win/cld_basictypes.h\"\n\n// Take a set of <key, value> pairs and tote them up.\n// After explicitly sorting, retrieve top key, value pairs\nclass Tote {\n public:\n  Tote();\n  ~Tote();\n  void Reinit();\n  void AddGram();\n  void Add(uint8 ikey, int idelta);\n  void AddBytes(int ibytes) {byte_count_ += ibytes;}\n  int CurrentTopKey();\n  void Sort(int n);\n  void Dump(FILE* f);\n  uint16 GetGramCount() const {return gram_count_;}\n  uint16 GetIncrCount() const {return incr_count_;}\n  int GetByteCount() const {return byte_count_;}\n  int MaxSize() const {return kMaxSize_;}\n  uint8 Key(int i) const {return key_[i];}\n  int Value(int i) const {return value_[i];}\n  void SetGramCount(uint16 v) {gram_count_ = v;}\n  void SetIncrCount(uint16 v) {incr_count_ = v;}\n  void SetKey(int i, int v) {key_[i] = v;}\n  void SetValue(int i, int v) {value_[i] = v;}\n\n private:\n  static const int kMaxSize_ = 24;\n  uint16 gram_count_;       // Number of quadgrams/etc. scored\n  uint16 incr_count_;       // Number of Add calls (1-3 per gram)\n  int byte_count_;          // Bytes of text scored\n  // Align at multiple of 8 bytes\n  uint8 key_[kMaxSize_];    // Lang unassigned = 0, valid = 1..255\n  int value_[kMaxSize_];    // Probability score sum\n};\n\n\n// Take a set of <key, value, reliability> triples and tote them up.\n// After explicitly sorting, retrieve top key, value, reliability triples\nclass ToteWithReliability {\n public:\n  ToteWithReliability();\n  ~ToteWithReliability();\n  void Reinit();\n  void Add(uint8 ikey, int ibytes, int score, int ireliability);\n  int Find(uint8 ikey);\n  void AddClosePair(int subscr, int val) {closepair_[subscr] += val;}\n  int CurrentTopKey();\n  void Sort(int n);\n  void Dump(FILE* f);\n\n  ////void AddSeq(uint8 ikey) {ss_.Add(ikey);}\n  ////void ExtractSeq(int n, uint8* dst) {ss_.Extract(n, dst);}\n\n  int GetIncrCount() const {return incr_count_;}\n  int GetClosePair(int subscr) const {return closepair_[subscr];}\n  int MaxSize() const {return kMaxSize_;}\n  uint8 Key(int i) const {return key_[i];}\n  int Value(int i) const {return value_[i];}\n  int Score(int i) const {return score_[i];}\n  int Reliability(int i) const {return reliability_[i];}\n  void SetKey(int i, int v) {key_[i] = v;}\n  void SetValue(int i, int v) {value_[i] = v;}\n  void SetScore(int i, int v) {score_[i] = v;}\n  void SetReliability(int i, int v) {reliability_[i] = v;}\n\n private:\n  static const int kMaxSize_ = 24;\n  static const int kMaxClosePairSize_ = 8;\n  int incr_count_;         // Number of Add calls\n  int sorted_;             // Contents have been sorted, cannot Add\n  // Align at multiple of 8 bytes\n  int closepair_[kMaxClosePairSize_];\n  uint8 key_[kMaxSize_];    // Lang unassigned = 0, valid = 1..255\n  int value_[kMaxSize_];    // Bytecount this lang\n  int score_[kMaxSize_];    // Probability score sum\n  int reliability_[kMaxSize_];  // Percentage 0..100\n  ////SubsetSequence ss_;\n};\n\n#endif  // ENCODINGS_COMPACT_LANG_DET_TOTE_H_\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/unittest_data.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef ENCODINGS_COMPACT_LANG_DET_UNITTEST_DATA_H_\n#define ENCODINGS_COMPACT_LANG_DET_UNITTEST_DATA_H_\n\nconst char* kTeststr_aa_Latn = \" nagay tanito nagay tanto nagayna naharsi nahrur nake nala nammay nammay haytu nanu narig ne ni num numu o obare obe obe obisse oggole ogli olloyta ongorowe orbise othoga r rabe rade ra e rage rakub rasitte rasu reyta rog ruddi ruga s sa al bada sa ala\";\nconst char* kTeststr_ab_Cyrl = \" а зуа абзиара дақәшәоит ан лыбзиабара ахә амаӡам ауаҩы игәы иҭоу ихы иҿы ианубаалоит аҧҳәыс ҧшӡа ахацәа лышьҭоуп аҿаасҭа лара дрышьҭоуп\";\nconst char* kTeststr_af_Latn = \" aam skukuza die naam beteken hy wat skoonvee of hy wat alles onderstebo keer wysig bosveldkampe boskampe is kleiner afgeleë ruskampe wat oor min fasiliteite beskik daar is geen restaurante of winkels nie en slegs oornagbesoekers word toegelaat bateleur\";\nconst char* kTeststr_am_Ethi = \" ለመጠይቅ ወደ እስክንድርያ ላኩዋቸውና የእስክንድርያ ጳጳስ አቴናስዮስ ፍሬምንጦስን እራሳቸውን ሾመው ልከዋል ከዚያ እስከ ዓ ም ድረስ የኢትዮጵያ አቡነ\";\nconst char* kTeststr_ar_Arab = \"احتيالية بيع أي حساب\";\nconst char* kTeststr_as_Beng = \"অঞ্চল নতুন সদস্যবৃন্দ সকলোৱে ভৰ্তি হব পাৰে মুল পৃষ্ঠা জন লেখক গুগ ল দল সাৰাংশ ই পত্ৰ টা বাৰ্তা এজন\";\nconst char* kTeststr_ay_Latn = \" aru wijar aru ispañula ukaran aru witanam aru kurti aru kalis aru warani aru malta aru yatiyawi niya jakitanaka isluwiñ aru lmir phuran aru masirunan aru purtukal aru kruwat aru jakira urtu aru inklisa pirsan aru suyku aru malay aru jisk aptayma thaya\";\nconst char* kTeststr_az_Arab = \" آذربایجان دا انسان حاقلاری ائوی آچیلاجاق ب م ت ائلچيسي برمه موخاليفتي نين ليدئري ايله گؤروشه بيليب ترس شوونيسم فارس از آزادي ملتهاي تورکمن\";\nconst char* kTeststr_az_Latn = \" a az qalıb breyn rinq intellektual oyunu üzrə yarışın zona mərhələləri keçirilib miq un qalıqlarının dənizdən çıxarılması davam edir məhəmməd peyğəmbərin karikaturalarını çap edən qəzetin baş redaktoru iş otağında ölüb\";\nconst char* kTeststr_ba_Cyrl = \" арналђан бындай ђилми эш тіркињлњ тњјге тапєыр нњшер ителњ ғинуар бєхет именлектє етешлектє ауыл ўќмерџєре хеџмєт юлын ћайлаѓанда\";\nconst char* kTeststr_be_Cyrl = \" а друкаваць іх не было тэхнічна магчыма бліжэй за вільню тым самым часам нямецкае кіраўніцтва прапаноўвала апроч ўвядзення лацінкі яе\";\nconst char* kTeststr_bg_Cyrl = \" а дума попада в състояние на изпитание ключовите думи с предсказана малко под то изискване на страниците за търсене в\";\nconst char* kTeststr_bh_Deva = \" ं निमरद के घोड़ा पर मत चढ़ीं मरद मुये नाम के निमरद मुये पेट् के मरना है काशी तो खुशामद किसका मल बटुली\";\nconst char* kTeststr_bi_Latn = \" king wantaem nomo hem i sakem setan mo ol rabis enjel blong hem oli aot long heven oli kamdaon long wol taswe ol samting oli kam nogud olgeta long wol ya stat long revelesen ol faet kakae i sot ol sik mo fasin blong brekem loa oli kam antap olgeta samting\";\nconst char* kTeststr_bn_Beng = \" ংখ্যা নমুনায়ন বিন্যাস পরিসংখ্যানিক মডেল পরিসংখ্যানিক সিদ্ধান্ত ফাংশন পরিসংখ্যানিক\";\nconst char* kTeststr_bo_Tibt = \" གང ནི ཀུན ལ སྦྱར པ དང ཅན ལྡན བདག པོའི སྒྲ ག ད བ ས ན མ པ ང འ ར ལ མཐའ མེད པ བདག པོའི སྒྲ ལ པ ཉིད དོ མ མི མིན\";\nconst char* kTeststr_br_Latn = \" a chom met leuskel a ra e blas da jack irons dilabour hag aet kuit eus what is this dibab a reont da c houde michael beinhorn evit produiñ an trede pladenn kavet e vez ar ganaouennoù buhan ha buhan ganto setu stummet ar bladenn adkavet e vez enni funk\";\nconst char* kTeststr_bs_Cyrl = \"историја босне књ историја босне књ историја босне књ историја босне књ \";\nconst char* kTeststr_bs_Latn = \" a radi bržeg rada pošto rom radi sporije nego ram izvorni rom se isključuje a dio ram a se rezerviše te se u njega ne ploča procesor ram memorija grafička kartica zvučna kartica modem mrežna kartica napojna jedinica uređaji za pohranjivanje\";\nconst char* kTeststr_ca_Latn = \"al final en un únic lloc nhorabona l correu electrònic està concebut com a eina de productivitat aleshores per què perdre el temps arxivant missatges per després intentar recordar on els veu desar i per què heu d eliminar missatges importants per l\";\nconst char* kTeststr_chr_Cher = \"ᎠᎢᏍᎩ ᎠᏟᎶᏍᏗ ᏥᏄᏍᏛᎩ ᎦᎫᏍᏛᏅᎯ ᎾᎥᎢ\";\nconst char* kTeststr_co_Latn = \" a prupusitu di risultati for utilizà a scatula per ricercà ind issi risultati servore errore u servore ha incuntratu una errore pruvisoria é ùn ha pussutu compie a vostra dumanda per piacè acimenta dinò ind una minuta tuttu listessu ligami truvà i\";\nconst char* kTeststr_cs_Latn = \" a akci opakujte film uložen vykreslit gmail tokio smazat obsah adresáře nelze načíst systémový profil jednotky smoot okud používáte pro určení polokoule značky z západ nebo v východ používejte nezáporné hodnoty zeměpisné délky nelze\";\nconst char* kTeststr_cy_Latn = \" a chofrestru eich cyfrif ymwelwch a unwaith i chi greu eich cyfrif mi fydd yn cael ei hysbysu o ch cyfeiriad ebost newydd fel eich bod yn gallu cadw mewn cysylltiad drwy gmail os nad ydych chi wedi clywed yn barod am gmail mae n gwasanaeth gwebost\";\nconst char* kTeststr_da_Latn = \" a z tallene og punktummer der er tilladte log ud angiv den ønskede adgangskode igen november gem personlige oplysninger kontrolspørgsmål det sidste tegn i dit brugernavn skal være et bogstav a z eller tal skriv de tegn du kan se i billedet nedenfor\";\nconst char* kTeststr_de_Latn = \" abschnitt ordner aktivieren werden die ordnereinstellungen im farbabschnitt deaktiviert öchten sie wirklich fortfahren eldtypen angeben optional n diesem schritt geben sie für jedesfeld aus dem datenset den typ an ieser schritt ist optional eldtypen\";\nconst char* kTeststr_dv_Thaa = \" ހިންދީ ބަހުން ވާހަކަ ދައްކާއިރު ދެވަނަ ބަހެއްގެ ގޮތުގައާއި އެނޫން ގޮތްގޮތުން ހިންދީ ބަހުން ވާހަކަ ދައްކާ މީހުންގެ އަދަދު މިލިއަނަށް\";\nconst char* kTeststr_dz_Tibt = \" རྩིས བརྐྱབ ཚུལ ལྡན དང ངེས བདེན སྦ སྟོན ནིའི དོན ལུ ཁྱོད གུག ཤད ལག ལེན འཐབ དགོ ག དང ཨིན པུཊི གྲལ ཐིག གུ\";\nconst char* kTeststr_el_Grek = \" ή αρνητική αναζήτηση λέξης κλειδιού καταστήστε τις μεμονωμένες λέξεις κλειδιά περισσότερο στοχοθετημένες με τη μετατροπή τους σε\";\nconst char* kTeststr_en_Latn = \" a backup credit card by visiting your billing preferences page or visit the adwords help centre for more details https adwords google com support bin answer py answer hl en we were unable to process the payment of for your outstanding google adwords\";\nconst char* kTeststr_eo_Latn = \" a jarcento refoje per enmetado de koncerna pastro tiam de reformita konfesio ekde refoje ekzistis luteranaj komunumanoj tamen tiuj fondis propran komunumon nur en ambaŭ apartenis ekde al la evangela eklezio en prusio resp ties rejnlanda provinceklezio en\";\nconst char* kTeststr_es_Latn = \" a continuación haz clic en el botón obtener ruta también puedes desplazarte hasta el final de la página para cambiar tus opciones de búsqueda gráfico y detalles ésta es una lista de los vídeos que te recomendamos nuestras recomendaciones se basan\";\nconst char* kTeststr_et_Latn = \" a niipea kui sinu maksimaalne igakuine krediidi limiit on meie poolt heaks kiidetud on sinu kohustuseks see krediidilimiit\";\nconst char* kTeststr_eu_Latn = \" a den eraso bat honen kontra hortaz eragiketa bakarrik behar dituen eraso batek aes apurtuko luke nahiz eta oraingoz eraso bideraezina izan gaur egungo teknologiaren mugak direla eta oraingoz kezka hauek alde batera utzi daitezke orain arteko indar\";\nconst char* kTeststr_fa_Arab = \" آب خوردن عجله می کردند به جای باز ی کتک کاری می کردند و همه چيز مثل قبل بود فقط من ماندم و يک دنيا حرف و انتظار تا عاقبت رسيد احضاريه ی ای با\";\nconst char* kTeststr_fi_Latn = \" a joilla olet käynyt tämä kerro meille kuka ä olet ei tunnistettavia käyttötietoja kuten virheraportteja käytetään google desktopin parantamiseen etsi näyttää mukautettuja uutisia google desktop keskivaihto leikkaa voit kaksoisnapsauttaa\";\nconst char* kTeststr_fj_Latn = \" i kina na i iri ka duatani na matana main a meke wesi se meke mada na meke ni yaqona oqo na meke ka dau vakayagataki ena yaqona vakaturaga e dau caka toka ga kina na vucu ka dau lagati tiko kina na ka e yaco tiko na talo ni wai ni yaqona na lewai ni wai\";\nconst char* kTeststr_fo_Latn = \" at verða átaluverdar óhóskandi ella áloypandi vit kunnu ikki garanterða at google leitanin ikki finnur naka sum er áloypandi óhóskandi ella átaluvert og google tekur onga ábyrgd yvir tær síður sum koma við í okkara leitiskipan fá tær ein\";\nconst char* kTeststr_fr_Latn = \" a accès aux collections et aux frontaux qui lui ont été attribués il peut consulter et modifier ses collections et exporter des configurations de collection toutefois il ne peut pas créer ni supprimer des collections enfin il a accès aux fonctions\";\nconst char* kTeststr_fy_Latn = \" adfertinsjes gewoan lytse adfertinsjes mei besibbe siden dy t fan belang binne foar de ynhâld fan jo berjochten wolle jo mear witte fan gmail foardat jo jo oanmelde gean dan nei wy wurkje eltse dei om gmail te ferbetterjen dêrta sille wy jo sa út en\";\nconst char* kTeststr_ga_Latn = \" a bhfuil na focail go léir i do cheist le fáil orthu ní gá ach focail breise a chur leis na cinn a cuardaíodh cheana chun an cuardach a bheachtú nó a chúngú má chuirtear focal breise isteach aimseofar fo aicme ar leith de na torthaí a fuarthas\";\nconst char* kTeststr_gd_Latn = \" air son is gum bi casg air a h uile briosgaid no gum faigh thu brath nuair a tha briosgaid a tighinn gad rannsachadh ghoogle gu ceart mura bheil briosgaidean ceadaichte cuiridh google briosgaid dha do neach cleachdaidh fa leth tha google a cleachdadh\";\nconst char* kTeststr_gl_Latn = \" a africana central local business center debe ser como mínimo taranto tendas de venda polo miúdo cociñas servizos bordado canadá viaxes parques de vehículos de recreo hotel oriental habitación recibir unha postal no enderezo indicado anteriormente\";\nconst char* kTeststr_gn_Latn = \" aháta añe ë ne mbo ehára ndive ajeruréta chupe oporandujey haĝua peëme mba épa pekaru ha áĝa oporandúvo nde eréta avei re paraguaýpe kachíke he i leúpe ndépa re úma kure tatakuápe ha leu ombohovái héë ha ujepéma kachíke he ijey\";\nconst char* kTeststr_gu_Gujr = \" આના પરિણામ પ્રમાણસર ફોન્ટ અવતરણ ચિન્હવાળા પાઠને છુપાવો બધા સમૂહો શોધાયા હાલનો જ સંદેશ વિષયની\";\nconst char* kTeststr_gv_Latn = \" and not ripe as i thought yn assyl yn shynnagh as yn lion the ass the fox and the lion va assyl as shynnagh ayns commee son nyn vendeilys as sauchys hie ad magh ayns y cheyll dy shelg cha row ad er gholl feer foddey tra veeit ad rish lion yn shynnagh\";\nconst char* kTeststr_ha_Latn = \" a cikin a kan sakamako daga sakwannin a kan sakamako daga sakwannin daga ranar zuwa a kan sakamako daga guda daga ranar zuwa a kan sakamako daga shafukan daga ranar zuwa a kan sakamako daga guda a cikin last hour a kan sakamako daga guda daga kafar\";\nconst char* kTeststr_hi_Deva = \" ं ऐडवर्ड्स विज्ञापनों के अनुभव पर आधारित हैं और इनकी मदद से आपको अपने विज्ञापनों का अधिकतम लाभ\";\nconst char* kTeststr_hr_Latn = \" venski poljski kašupski dolnolužički gornjolužički češki slovački istočnoslavenski ruski bjeloruski ukrajinski rusinski i južnoslavenski slovenski hrvatski srpski crnogorski bošnjački makedonski i bugarski južnoslavenski jezici\";\nconst char* kTeststr_ht_Latn = \" ak pitit tout sosyete a chita se pou sa leta dwe pwoteje yo nimewo leta fèt pou li pwoteje tout paran ak pitit nan peyi a menm jan kit paran yo marye kit yo pa marye tout manman ki fè pitit leta fèt pou ba yo konkoul menm jan tou pou timoun piti ak pou\";\nconst char* kTeststr_hu_Latn = \" a felhasználóim a google azonosító szöveget ikor látják a felhasználóim a google azonosító szöveget felhasználók a google azonosító szöveget fogják látni minden tranzakció után ha a vásárlását regisztrációját oldalunk\";\nconst char* kTeststr_hy_Armn = \" ա յ եվ նա հիացած աչքերով նայում է հինգհարկանի շենքի տարօրինակ փոքրիկ քառակուսի պատուհաններին դեռ մենք շատ ենք հետամնաց ասում է նա այսպես է\";\nconst char* kTeststr_ia_Latn = \" a google informationes super le sitos que tu visita isto es necessari pro render disponibile alcun functionalitates del barra de utensiles a fin que nos pote monstrar informationes ulterior super un sito le barra de utensiles google debe dicer a nos le\";\nconst char* kTeststr_id_Latn = \" account anda dana anda belum kami terima berikan kami waktu sedikit lagi kami masih menunggu penerimaan transfer bank anda jika anda belum mengirimkan dana anda silakan kunjungi lakukan transfer bank ikuti instruksi pada halaman untuk memulai proses\";\nconst char* kTeststr_ie_Latn = \" abhorre exceptiones in li derivation plu cardinal por un l i es li regularità del flexion conjugation ples comparar latino sine flexione e li antiqui projectes naturalistic queles have quasi null regules de derivation ma si on nu examina li enunciationes\";\nconst char* kTeststr_ik_Latn = \" kuubuuraqabniqsuq ataruamik colville mi aasii tavrani siku kilaabman sulukpaukkat makua niksisugrufagivut tavrani sunaimña atifa quaqqat ii quaqqat aasii ukiabmagu utiqhuta tamaufa utqiabvifñun aasiiñ tatpaaffaqapta tuvaaqatinifarufa aasiiñ\";\nconst char* kTeststr_is_Latn = \" a afköst leitarorða þinna leitarorð neikvæð leitarorð auglýsingahópa byggja upp aðallista yfir ný leitarorð fyrir auglýsingahópana og skoða ítarleg gögn um árangur leitarorða eins og samkeppni auglýsenda og leitarmagn er krafist notkun\";\nconst char* kTeststr_it_Latn = \" a causa di un intervento di manutenzione del sistema fino alle ore circa ora legale costa del pacifico del novembre le campagne esistenti continueranno a essere pubblicate come di consueto anche durante questo breve periodo di inattività ci scusiamo per\";\nconst char* kTeststr_iu_Cans = \"ᐃᑯᒪᒻᒪᑦ ᕿᓈᖏᓐᓇᓲᖑᒻᒪᑦ ᑎᑎᖅᑕᓕᒫᖅᓃᕕᑦ ᑎᑦᕆᐊᑐᓐᖏᑦᑕᑎᑦ ᑎᑎᖅᑕᑉᐱᑦ ᓯᕗᓂᖓᓂ ᑎᑎᖅᖃᖅ ᑎᑎᕆᐊᑐᓐᖏᑕᐃᑦ ᕿᓂᓲᖑᔪᒍᑦ ᑎᑎᖅᑕᓕᒫᖅᓃᕕᑦ\";\nconst char* kTeststr_iw_Hebr = \" או לערוך את העדפות ההפצה אנא עקוב אחרי השלבים הבאים כנס לחשבון האישי שלך ב\";\nconst char* kTeststr_ja_Hani = \" このペ ジでは アカウントに指定された予算の履歴を一覧にしています それぞれの項目には 予算額と特定期間のステ タスが表示されます 現在または今後の予算を設定するには\";\nconst char* kTeststr_jw_Latn = \" account ten server niki kalian username meniko tanpo judul cacahe account nggonanmu wes pol pesen mu wes diguwak pesenan mu wes di simpen sante wae pesenan mu wes ke kirim mbuh tekan ora pesenan e ke kethok pesenan mu wes ke kirim mbuh tekan ora pesenan\";\nconst char* kTeststr_ka_Geor = \" ა ბირთვიდან მიღებული ელემენტი მენდელეევის პერიოდულ სიტემაში გადაინაცვლებს ორი უჯრით\";\nconst char* kTeststr_kha_Latn = \" kaba jem jai sa sngap thuh ia ki bynta ba sharum naka sohbuin jong phi nangta sa pynhiar ia ka kti kadiang jong phi sha ka krung jong phi bad da kaba pyndonkam kumjuh ia ki shympriahti jong phi sa sngap thuh shapoh ka tohtit jong phi pyndonkam ia kajuh ka\";\nconst char* kTeststr_kk_Arab = \" ﺎ ﻗﻴﺎﻧﺎﺕ ﺑﻮﻟﻤﺎﻳﺪﻯ ﺑﯘﻝ ﭘﺮﻭﺗﺴﻪﺳﯩﻦ ﻳﺎﻋﻨﻲ ﻗﺎﻻ ﻭﻣﯩﺮﯨﻨﺪﻩ ﻗﺎﺯﺍﻕ ء ﺗﯩﻠﯩﻨﯩﯔ ﻗﻮﻟﺪﺍﻧﯩﻠﻤﺎﯞﻯ ﻗﺎﺯﺍﻕ ﺟﻪﺭﯨﻨﺪﻩ\";\nconst char* kTeststr_kk_Cyrl = \" а билердің өзіне рұқсат берілмеген егер халық талап етсе ғана хан келісім берген өздеріңіз білесіздер қр қыл мыс тық кодексінде жазаның\";\nconst char* kTeststr_kk_Latn = \" bolsa da otanyna qaityp keledi al oralmandar basqa elderde diasporasy ote az bolghandyqtan bir birine komektesip bauyrmal bolady birde men poezben oralmandardyng qazaqstangha keluin kordim monghol qazaqtary poezdan tuse sala jerdi suip jylap keletin biraq\";\nconst char* kTeststr_kl_Latn = \" at nittartakkalli uani toqqarsimasatta akornanni nittartakkanut allanut ingerlaqqittoqarsinnaavoq kanukoka tassaavoq kommuneqarfiit kattuffiat nuna tamakkerlugu kommunit nittartagaannut ingerlaqqiffiusinnaasoq kisitsiserpassuit nunatsinnut tunngasut\";\nconst char* kTeststr_km_Khmr = \" ក ខ គ ឃ ង ច ឆ ជ ឈ ញ ដ ឋ ឌ ឍ ណ ត ថ ទ ធ ន ប ផ ព ភ ម យ រ ល វ ស ហ ឡ អ ឥ ឦ ឧ ឪ ឫ ឬ ឯ ឱ ទាំងអស់\";\nconst char* kTeststr_kn_Knda = \" ಂಠಯ್ಯನವರು ತುಮಕೂರು ಜಿಲ್ಲೆಯ ಚಿಕ್ಕನಾಯಕನಹಳ್ಳಿ ತಾಲ್ಲೂಕಿನ ತೀರ್ಥಪುರ ವೆಂಬ ಸಾಧಾರಣ ಹಳ್ಳಿಯ ಶ್ಯಾನುಭೋಗರ\";\nconst char* kTeststr_ko_Hani = \" 개별적으로 리포트 액세스 권한을 부여할 수 있습니다 액세스 권한 부여사용자에게 프로필 리포트에 액세스할 수 있는 권한을 부여하시려면 가용 프로필 상자에서 프로필 이름을 선택한 다음\";\nconst char* kTeststr_ks_Deva = \"बहामास छु केरेबियन मंज अख मुलुख राजधानी नसौ सम् बद्घ विषय\";\n// alt const char* kTeststr_ks_Deva = \"जम्मू कश्à आन्ध्र प्रदेश द अख प्रदेश राजधानी रिचमंड यि छु गोडनितिन प्रदेशन मंज अख बेय विषय जार्ज\";\nconst char* kTeststr_ku_Arab = \" بۆ به ڕێوه بردنی نامه ی که دێتن ڕاسته وخۆ ڕه وان بکه نامه کانی گ مایل بۆ حسابی پۆستێکی تر هێنانی په یوه ندکاره کان له\";\nconst char* kTeststr_ku_Latn = \" be zmaneki ter le inglis werdegeretewe em srvise heshta le cor beta daye wate hest a taqi dekrete u bashtr dekret tewawwzmanekan wernegrawnetewe u ne hemu laperakn ke eme pshtiwan dekayn be teaweti wergerawete nermwalley wergeran teksti new wene nasnatewe\";\nconst char* kTeststr_ky_Arab = \" جانا انى تانۇۇ ۇلۇتۇن تانۇۇ قىرعىزدى بئلۉۉ دەگەندىك اچىق ايتساق ماناستى تاانىعاندىق ۅزۉڭدۉ تاانىعاندىق بۉگۉن تەما جۉكتۅمۅ ق ى رع ى ز ت ى ل ى\";\nconst char* kTeststr_ky_Cyrl = \" агай эле оболу мен садыбакас аганын өзү менен эмес эмгектери менен тааныштым жылдары ташкенде өзбекстан илимдер академиясынын баяны\";\nconst char* kTeststr_la_Latn = \" a deo qui enim nocendi causa mentiri solet si iam consulendi causa mentiatur multum profecit sed aliud est quod per se ipsum laudabile proponitur aliud quod in deterioris comparatione praeponitur aliter enim gratulamur cum sanus est homo aliter cum melius\";\nconst char* kTeststr_lb_Latn = \" a gewerkschaften och hei gefuerdert dir dammen an dir häre vun de gewerkschaften denkt un déi aarm wann der äer fuerderunge formuléiert d sechst congés woch an aarbechtszäitverkierzung hëllefen hinnen net d unhiewe vun de steigerungssäz bei de\";\nconst char* kTeststr_lg_Latn = \" abaana ba bani lukaaga mu ana mu babiri abaana ba bebayi lukaaga mu abiri mu basatu abaana ba azugaadi lukumi mu ebikumi bibiri mu abiri mu babiri abaana ba adonikamu lukaaga mu nltaaga mu mukaaga abaana ba biguvaayi enkumi bbiri mu ataano mu mukaaga\";\nconst char* kTeststr_ln_Latn = \" abakisamaki ndenge esengeli moyebami abongisamaki solo mpenza kombo ya moyebami elonguamaki kombo ya bayebami elonguamaki kombo eleki molayi po na esika epesameli limbisa esika ya kotia ba kombo esuki boye esengeli olimbola ndako na yo ya mikanda kombo\";\nconst char* kTeststr_lo_Laoo = \" ກຫາທົ່ວທັງເວັບ ແລະໃນເວັບໄຮ້ສາຍ ທຳອິດໃຫ້ທຳການຊອກຫາກ່ອນ ຈາກນັ້ນ ໃຫ້ກົດປຸ່ມເມນູ ໃນໜ້າຜົນໄດ້\";\nconst char* kTeststr_lt_Latn = \" a išsijungia mano idėja dėl geriausio laiko po pastarųjų savo santykių pasimokiau penki dalykai be kurių negaliu gyventi mano miegamajame tu surasi ideali pora išsilavinimas aukštoji mokykla koledžas universitetas pagrindinis laipsnis metai\";\nconst char* kTeststr_lv_Latn = \" a gadskārtējā izpārdošana slēpošana jāņi atlaide izmaiņas trafikā kas saistītas ar sezonas izpārdošanu speciālajām atlaidēm u c ir parastas un atslēgvārdi kas ir populāri noteiktos laika posmos šajā laikā saņems lielāku klikšķu\";\nconst char* kTeststr_mg_Latn = \" amporisihin i ianao mba hijery ny dika teksta ranofotsiny an ity lahatsoratra ity tsy ilaina ny opérateur efa karohina daholo ny teny rehetra nosoratanao ampiasao anaovana dokambarotra i google telugu datin ny takelaka fikarohana sary renitakelak i\";\nconst char* kTeststr_mi_Latn = \" haere ki te kainga o o haere ki te kainga o o haere ki te kainga o te rapunga ahua o haere ki te kainga o ka tangohia he ki to rapunga kaore au mohio te tikanga whakatiki o te ra he whakaharuru te pai rapunga a te rapunga ahua a e kainga o nga awhina o te\";\nconst char* kTeststr_mk_Cyrl = \" гласовите коалицијата на вмро дпмне како партија со најмногу освоени гласови ќе добие евра а на сметката на коализијата за македонија\";\nconst char* kTeststr_ml_Mlym = \" ം അങ്ങനെ ഞങ്ങള് അവരുടെ മുമ്പില് നിന്നു ഔടും ഉടനെ നിങ്ങള് പതിയിരിപ്പില് നിന്നു എഴുന്നേറ്റു\";\nconst char* kTeststr_mn_Cyrl = \" а боловсронгуй болгох орон нутгийн ажил үйлсийг уялдуулж зохицуулах дүрэм журам боловсруулах орон нутгийн өмч хөрөнгө санхүүгийн\";\nconst char* kTeststr_mo_Cyrl = \"оперативэ а органелор ши институциилор екзекутиве ши а органелор жудичиаре але путерий де стат фиекэруй орган ал путерий де стат и се\";\nconst char* kTeststr_mr_Deva = \" ं अनंताचे मुखीं होसील गाइला अमुप विठ्ठला दास तुह्मां माझें कोठें आलें होइऩल विचारा तरीं च\";\nconst char* kTeststr_ms_Latn = \"daripada dirinya hirako shinji seorang pemuda merujuk diri mereka sebagai vizard shinji telah cuba untuk menyakinkan ichigo untuk menyertai kumpulan mereka mengatakan bahawa hanya dia sahaja yang mampu mengajar ichigo teknik untuk mengawal hollow\";\nconst char* kTeststr_ms_Latn2 = \"Secara umumnya, Rumah Melayu Tradisional Negeri Sembilan mempunyai bumbung panjang iaitu jenis yang mempunyai satu perabung yang memanjang dari kiri ke kanan atau arah hulu ke hilir selari dengan jalan atau sungai. Bumbungnya mempunyai lentik yang bervariasi\";\nconst char* kTeststr_ms_Latn3 = \"bilik sebelah berkata julai pada pm ladymariah hmm sume ni terpulang kepada individu mungkin anda bernasib baik selama ini dalam membeli hp yang bagus deli berkata julai pada pm walaupun bukan bahsa baku tp tetap bahasa melayu kan perubahan boleh dibuat\";\nconst char* kTeststr_mt_Latn = \" ata ikteb messaġġ lil indirizzi differenti billi tagħżilhom u tagħfas il buttuna ikteb żid numri tfittxijja tal kotba mur print home kotba minn pagni ghal pagna minn ghall ktieb ta aċċessa stieden habib iehor grazzi it tim tal gruppi google\";\nconst char* kTeststr_my_Latn = \" jyk ef oif gawgodcsifayvdrfhrnf bmawgrsm topf dsvj g mail tamumif avhvm atmif txjwgif yxrqhk avhvm efae m pwifavhvm ef ufkyfwdky help center odkyvmyg drsm ar avh dswjhar cgef rsm udkawdkifygw f tajzawgudk smedkifygw f jyd awmh g mail cool features rsm\";\nconst char* kTeststr_my_Mymr = \" တက္ကသုိလ္ မ္ဟ ပ္ရန္ လာ္ရပီးေနာက္ န္ဟစ္ အရ္ဝယ္ ဦးသန္ ့သည္ ပန္ းတနော္ အမ္ယုိးသား ေက္ယာင္ း\";\nconst char* kTeststr_na_Latn = \" arcol obabakaen riringa itorere ibibokiei ababaro min kuduwa airumena baoin tokin rowiowet itiket keram damadamit eigirow etoreiy row keitsito boney ibingo itsiw dorerin naoerodelaporte s nauruan dictionary a c a c d g h o p s t y aiquen ion eins aiquen\";\nconst char* kTeststr_ne_Deva = \"अरू ठाऊँबाटपनि खुलेको छ यो खाता अर अरू ठाऊँबाटपनि खुलेको छ यो खाता अर ू\";\nconst char* kTeststr_nl_Latn = \" a als volgt te werk om een configuratiebestand te maken sitemap gen py ebruik filters om de s op te geven die moeten worden toegevoegd of uitgesloten op basis van de opmaaktaal elke sitemap mag alleen de s bevatten voor een bepaalde opmaaktaal dit\";\nconst char* kTeststr_nn_Latn = \" a for verktylina til å hjelpa deg å nå oss merk at pagerank syninga ikkje automatisk kjem til å henta inn informasjon frå sider med argument dvs frå sider med eit i en dersom datamaskina di er plassert bak ein mellomtenar for vevsider kan det verka\";\nconst char* kTeststr_no_Latn = \" a er obligatorisk tidsforskyvning plassering av katalogsøk planinformasjon loggfilbane gruppenavn kontoinformasjon passord domene gruppeinformasjon alle kampanjesporing alternativ bruker grupper oppgaveplanlegger oppgavehistorikk kontosammendrag antall\";\n// Update to be a not-repetative nearly-French string\n// const char* kTeststr_oc_Latn = \" a essat enviajat lo voste messatge a essat sauvat sujet de respond a per lo voste messatge es rejetat copia copia cachada data responsa vista aquel compte orkut es estat supprimit e es pas mai disponible vòstre compte orkut es estat arrestat pendent la\";\nconst char* kTeststr_oc_Latn = \" duas menas diferentas de cartochas cartocha de ptolemeo on e s legéish p t o l m i i s la soa dusau ipotèsa que ho alavètz que lo cartocha qu èra lo signe determinatiu qu ei a díser ideografic per definir ua paraula com estant un nom reiau com aqueth\";\nconst char* kTeststr_om_Latn = \" afaan katalaa bork bork bork hiikaa jira hin argamne gareen barbaadame hin argamne gargarsa qube en gar bayee jira garee walitti firooman gareewwan walitti firooman fuula web akka tartiiba qubeetiin agarsiisi akka tartiiba qubeetiin agarsiisaa jira akka\";\nconst char* kTeststr_or_Orya = \"ଅକ୍ଟୋବର ଡିସେମ୍ବର\";\nconst char* kTeststr_pa_Guru = \" ਂ ਦਿਨਾਂ ਵਿਚ ਭਾਈ ਸਾਹਿਬ ਦੀ ਬੁੱਚੜ ਗੋਬਿੰਦ ਰਾਮ ਨਾਲ ਅੜਫਸ ਚੱਲ ਰਹੀ ਸੀ ਗੋਬਿੰਦ ਰਾਮ ਨੇ ਭਾਈ ਸਾਹਿਬ ਦੀਆਂ ਭੈਣਾ\";\nconst char* kTeststr_pl_Latn = \" a australii będzie widział inne reklamy niż użytkownik z kanady kierowanie geograficzne sprawia że reklamy są lepiej dopasowane do użytkownika twojej strony oznacza to także że możesz nie zobaczyć wszystkich reklam które są wyświetlane na\";\nconst char* kTeststr_ps_Arab = \" اتو مستقل رياست جوړ شو او د پخواني ادبي انجمن څانګې ددې رياست جز شوی او ددې انجمن د ژبې مديريت د پښتو ټولنې په لوی مديريت واوښت لوی مدير يې د\";\nconst char* kTeststr_pt_BR = \" a abit prevê que a entrada desses produtos estrangeiros no mercado têxtil e vestuário do brasil possa reduzir os preços em cerca de a partir de má notícia para os empresários que terão que lutar para garantir suas margens de lucro mas boa notícia\";\nconst char* kTeststr_qu_Latn = \" is t ipanakunatapis rikuchinankupaq qanpa simiykipi noqaykoqpa uya jllanakunamanta kunan jamoq simikunaman qelqan tiyan watukuy qpa uyata qanpa llaqtaykipi llank anakuna simimanta yanapakuna simimanta mayqen llaqtallapis kay simimanta t ijray qpa qelqa\";\nconst char* kTeststr_rm_Latn = \" access a l autostrada sviai fermamain a sanestra en l access a l autostrada a sviai fermamain a sanestra en l access a l autostrada sviai fermamain a sanestra en l access a l autostrada a sviai fermamain a sanestra en l access a l autostrada ulvai enturn\";\nconst char* kTeststr_rn_Latn = \" ishaka mu ndero y abana bawe ganira n abigisha nimba hari ingorane izo ari zo zose ushobora gusaba kubonana n umwigisha canke kuvugana nawe kuri terefone inyuma y uko babarungikira urutonde rw amanota i muhira mu bisanzwe amashure aratumira abavyeyi\";\nconst char* kTeststr_ro_Latn = \" a anunţurilor reţineţi nu plătiţi pentru clicuri sau impresii ci numai atunci când pe site ul dvs survine o acţiune dorită site urile negative nu pot avea uri de destinaţie daţi instrucţiuni societăţii dvs bancare sau constructoare să\";\nconst char* kTeststr_ru_Cyrl = \" а неправильный формат идентификатора дн назад\";\nconst char* kTeststr_rw_Latn = \" dore ibyo ukeneye kumenya ukwo watubona ibibazo byinshi abandi babaza ububonero byibibina google onjela ho izina dyikyibina kyawe onjela ho yawe mulugo kulaho ibyandiko byawe shyilaho tegula yawe tulubaka tukongeraho iyanya mishya buliko tulambula\";\nconst char* kTeststr_sa_Deva = \" ं क र्मणस् त स्य य त्कि ङ्चेह करो त्यय ं त स्माल् लोका त्पु नरै ति अस्मै लोका य क र्मण इ ति नु काम\";\nconst char* kTeststr_sa_Latn = \" brahmā tatraivāntaradhīyata tataḥ saśiṣyo vālmīkir munir vismayam āyayau tasya śiṣyās tataḥ sarve jaguḥ ślokam imaṃ punaḥ muhur muhuḥ prīyamāṇāḥ prāhuś ca bhṛśavismitāḥ samākṣaraiś caturbhir yaḥ pādair gīto\";\nconst char* kTeststr_sco_Latn = \" a gless an geordie runciman ower a gless an tamson their man preached a hale hoor aboot the glorious memories o forty three an backsliders an profane persons like esau an aboot jeroboam the son o nebat that gaed stravagin to anither kirk an made aa israel\";\nconst char* kTeststr_sd_Arab = \" اضافو ٿي ٿيو پر اها خبر عثمان کي بعد پيئي ته سگريٽ ڇڪيندڙ مسلمان نه هو بلڪ هندو هو دڪان تي پهچي عثمان ڪسبت کولي گراهڪن جي سيرب لاهڻ شروع ڪئي پر\";\nconst char* kTeststr_sg_Latn = \" atâa na âkotta zo me lâkwê angbâ gï tarrango nî âkotta zo tî koddoro nî âde agbû tenne nî na kate töngana mbênî kotta kpalle tî nzönî dutï tî halëzo pëpe atâa sô âla lü gbâ tî ândya tî mâi na sahngo asâra gbâ tî\";\nconst char* kTeststr_si_Sinh = \" අනුරාධ මිහිඳුකුල නමින් සකුරා ට ලිපියක් තැපෑලෙන් එවා තිබුණා කි ් රස්ටි ෂෙල්ටන් ප ් රනාන්දු ද\";\nconst char* kTeststr_sit_NP = \" dialekten in de roerstreek pierre bakkes oet roerstreek blz bewirk waordebook zónjig oktoeaber is t ieëste mofers waordebook oetgekaome dit waordebook is samegestèldj\";\nconst char* kTeststr_sk_Latn = \" a aktivovať reklamnú kampaň ak chcete kampaň pred spustením ešte prispôsobiť uložte ju ako šablónu a pokračujte v úprave vyberte si jednu z možností nižšie a kliknite na tlačidlo uložiť kampaň nastavenia kampane môžete ľubovoľne\";\nconst char* kTeststr_sl_Latn = \" adsense stanje prijave za google adsense google adsense račun je bil začasno zamrznjen pozdravljeni hvala za vaše zanimanje v google adsense po pregledu vaše prijavnice so naši strokovnjaki ugotovili da spletna stran ki je trenutno povezana z vašim\";\nconst char* kTeststr_sm_Latn = \" autu mea o lo totonu le e le minaomia matou te tuu i totonu i le faamatalaina o le suesuega i taimi uma mea o lo totonu fuafua i mea e tatau fa afoi tala mai le newsgroup mataupu fa afoi mai tala e ai le mataupu e ai totonu tusitala o le itu o faamatalaga\";\nconst char* kTeststr_sn_Latn = \" chete vanyori vanotevera vakabatsira kunyora zvikamu zvino kumba home tinyorere tsamba chikamu chakumbirwa hachina kuwanikwa chikamu ichi cheninge chakayiswa kuimwe nzvimbo mudhairekitori rino chimwe chikamu chopadhuze pane chinhu chatadza kushanda bad\";\nconst char* kTeststr_so_Latn = \" a oo maanta bogga koobaad ugu qoran yahey beesha caalamka laakiin si kata oo beesha caalamku ula guntato soomaaliya waxa aan shaki ku jirin in aakhirataanka dadka soomaalida oo kaliya ay yihiin ku soomaaliya ka saari kara dhibka ay ku jirto\";\nconst char* kTeststr_sq_Latn = \" a do të kërkoni nga beogradi që të njohë pavarësinë e kosovës zoti thaçi prishtina është gati ta njoh pavarësinë e serbisë ndërsa natyrisht se do të kërkohet një gjë e tillë që edhe beogradi ta njoh shtetin e pavarur dhe sovran të\";\nconst char* kTeststr_sr_Cyrl = \"балчак балчак на мапи србије уреди демографија у насељу балчак живи пунолетна становника а просечна старост становништва износи година\";\nconst char* kTeststr_sr_Latn = \" autonomnih pokrajina saveznim zakonom može se propisati poseban sastav organizacija i delokrug saveta za poslove narodne odbrane članove saveta federacije bira na predlog predsedništva savezna skupština iz reda društveno političkih i drugih javnih\";\nconst char* kTeststr_sr_ME_Latn = \"savjet pobjeda a radi bržeg rada pošto rom radi sporije nego ram izvorni rom se isključuje a dio ram a se rezerviše te se u njega ne ploča procesor ram memorija grafička kartica zvučna kartica modem mrežna kartica napojna jedinica uređaji za pohranjivanje\";\nconst char* kTeststr_ss_Latn = \" bakhokhintsela yesikhashana bafake imininingwane ye akhawunti leliciniso kulelifomu nangabe akukafakwa imininingwane leliciniso imali lekhokhiwe angeke ifakwe kumkhokhintsela lofanele imininingwane ye akhawunti ime ngalendlela lelandzelako inombolo\";\nconst char* kTeststr_st_Latn = \" bang ba nang le thahasello matshwao a sehlooho thuto e thehilweng hodima diphetho ke tsela ya ho ruta le ho ithuta e totobatsang hantle seo baithuti ba lokelang ho se fihlella ntlhatheo eo e sebetsang ka yona ke ya hore titjhere o hlakisa pele seo\";\nconst char* kTeststr_su_Latn = \" alus gampang deuih uhun im gmail obrolan ulah disimpen na koropak kuring simpen obrolan dina koropak kuring obrolan obrolan anjeun teu boga arsip obrolan slovak slovenia vietnam catalan czech estonia hindi lithuania romania tagalog thai turkish édit iber\";\nconst char* kTeststr_sv_Latn = \" a bort objekt från google desktop post äldst meny öretag dress etaljer alternativ för vad är inne yaste google skrivbord plugin program för nyheter google visa nyheter som är anpassade efter de artiklar som du läser om du till exempel läser\";\nconst char* kTeststr_sw_Latn = \" a ujumbe mpya jumla unda tafuta na angalia vikundi vya kujadiliana na kushiriki mawazo iliyopangwa kwa tarehe watumiaji wapya futa orodha hizi lugha hoja vishikanisho vilivyo dhaminiwa ujumbe sanaa na tamasha toka udhibitisho wa neno kwa haraka fikia\";\nconst char* kTeststr_syr_Syrc = \"ܐܕܪܝܣ ܓܛܘ ܫܘܪܝܐ ܡܢ ܦܪܢܣܐ ܡܢ ܐܣܦܢܝܐ ܚܐܪܘܬܐ ܒܐܕܪ ܒܢܝܣܢ ܫܛܝܚܘܬܐ ܟܠܢܝܐ ܡܝ̈ܐ ܒܥܠܡܐ\";\nconst char* kTeststr_ta_Taml = \" அங்கு ராஜேந்திர சோழனால் கட்டப்பட்ட பிரம்மாண்டமான சிவன் கோவில் ஒன்றும் உள்ளது தொகு\";\nconst char* kTeststr_te_Telu = \" ఁ దనర జయించిన తత్వ మరసి చూడఁ దాన యగును రాజయోగి యిట్లు తేజరిల్లుచు నుండు విశ్వదాభిరామ వినర వేమ\";\nconst char* kTeststr_tg_Arab = \"رادیو فردا راديوى آزادى\";\nconst char* kTeststr_tg_Cyrl = \" адолат ва инсондӯстиро бар фашизм нажодпарастӣ ва адоват тарҷеҳ додааст чоп кунед ба дигарон фиристед чоп кунед ба дигарон фиристед\";\nconst char* kTeststr_th_Thai = \" กฏในการค้นหา หรือหน้าเนื้อหา หากท่านเลือกลงโฆษณา ท่านอาจจะปรับต้องเพิ่มงบประมาณรายวันตา\";\nconst char* kTeststr_ti_Ethi = \" ሃገር ተረፎም ዘለዉ ኢትዮጵያውያን ኣብቲ ምስ ኢትዮጵያ ዝዳውብ ኣውራጃ ደቡብ ንኽነብሩ ኣይፍቀደሎምን እዩ ካብ ሃገር ንኽትወጽእ ዜጋ ኹን ወጻእተኛ ናይ\";\nconst char* kTeststr_tk_Cyrl = \" айдянларына ынанярмыка эхли боз мейданлары сурулип гутарылан тебигы ота гарып гумлукларда миллиондан да артыкмач ири шахлы малы миллиона\";\nconst char* kTeststr_tk_Latn = \" akyllylyk çyn söýgi üçin böwet däl de tebigylykdyr duýgularyň gödeňsiligi aç açanlygy bahyllygy söýgini betnyşanlyk derejesine düşürýändir söýeni söý söýmedige süýkenme özüni söýmeýändigini görmek ýigit üçin uly\";\nconst char* kTeststr_tl_Latn = \" a na ugma sa google ay nakaka bantog sa gitna nang kliks na nangyayari sa pamamagitan nang ordinaryong paggagamit at sa kliks na likha nang pandaraya o hindi tunay na paggamit bunga nito nasasala namin ang mga kliks na hindi kailangan o hindi gusto nang\";\nconst char* kTeststr_tlh_Latn = \" a ghuv bid soh naq jih lodni yisov chich wo vamvo qeylis lunge pu chah povpu vodleh a dah ghah cho ej dah wo che pujwi bommu tlhegh darinmohlahchu pu majqa horey so lom qa ip quv law may vad suvtahbogh wa sanid utlh quv pus datu pu a vitu chu pu johwi tar\";\nconst char* kTeststr_tn_Latn = \" go etela batla ditsebe tsa web tse di nang le le batla ditsebe tse di golaganya le tswang mo leka go batla web yotlhe batla mo web yotlhe go bona home page ya google batla mo a o ne o batla gore a o ne o batla ditsebe tsa bihari batla mo re maswabi ga go\";\nconst char* kTeststr_to_Latn = \" a ke kumi oku ikai ke ma u vakai ki hono hokohoko faka alafapeti api pe ko e uluaki peesi a ho o fekumi faka malatihi fekumi ki he lea oku fakaha atu pe ko ha fonua fekumi ki he fekumi ki he peesi oku ngaahi me a oku sai imisi alu ki he ki he ulu aki\";\nconst char* kTeststr_tr_Latn = \" a ayarlarınızı görmeniz ve yönetmeniz içindir eğer kampanyanız için günlük bütçenizi gözden geçirebileceğiniz yeri arıyorsanız kampanya yönetimi ne gidin kampanyanızı seçin ve kampanya ayarlarını düzenle yi tıklayın sunumu\";\nconst char* kTeststr_ts_Latn = \" a ku na timhaka leti nga ta vulavuriwa na google google yi hlonipha yi tlhela yi sirheleta vanhu hinkwavo lava tirhisaka google toolbar ku dyondza hi vusireleli eka system ya hina hi kombela u hlaya vusireleli bya hina eka toolbar mbulavulo wu tshikiwile\";\nconst char* kTeststr_tt_Cyrl = \"ачарга да бирмәде чәт чәт килеп тора безнең абыйнымы олы абыйнымы эштән\";\nconst char* kTeststr_tt_Latn = \" alarnı eşkärtü proğramnarın eşläwen däwam itü tatar söylämen buldıru wä sizep alu sistemnarın eşläwen däwat itü häm başqalar yılnıñ mayında tatar internetı ictimağıy oyışması milli ts isemle berençe däräcäle häm tat\";\nconst char* kTeststr_tw_Latn = \" amammui tumidifo no bɛtow ahyɛ atoro som so mpofirim na wɔasɛe no pasaa ma ayɛ nwonwa dɛn na ɛbɛka wɔn ma wɔayɛ saa bible no ma ho mmuae wɔ adiyisɛm nhoma no mu sɛ onyankopɔn na ɔde hyɛɛ wɔn komam sɛ wɔmma ne nsusuwii mmra mu\";\nconst char* kTeststr_ug_Arab = \" ئالەملەرنىڭ پەرۋەردىگارىدىن تىلەيمەن سىلەر بۇ يەرلەردە باغچىلاردىن بۇلاقلاردىن زىرائەتلەردىن يۇمشاق پىشقان خورمىلاردىن بەھرىمەن بولۇپ\";\nconst char* kTeststr_ug_Cyrl = \" а башлиди әмма бу қетимқи канада мәтбуатлириниң хәвәрлиридә илгирикидәк хитай һөкүмәт мәтбуатлиридин нәқил алидиған вә уни көчүрүп\";\nconst char* kTeststr_ug_Latn = \" adawet bolghachqa hazir musherrepmu bu ikki partiyining birleshme hökümet qurushta pikir birliki hasil qilalmasliqini kütüwatqan iken wehalenki pakistan xelq partiyisining rehbiri asif eli zerdari pakistandiki bashqa ushshaq partiyilerning rehberliri\";\nconst char* kTeststr_uk_Cyrl = \" а більший бюджет щоб забезпечити собі максимум прибутків від переходів відстежуйте свої об яви за датою географічним розташуванням\";\nconst char* kTeststr_ur_Arab = \" آپ کو کم سے کم ممکنہ رقم چارج کرتا ہے اس کی مثال کے طور پر فرض کریں اگر آپ کی زیادہ سے زیادہ قیمت فی کلِک امریکی ڈالر اور کلِک کرنے کی شرح ہو تو\";\nconst char* kTeststr_uz_Arab = \" آرقلی بوتون سیاسی حزب و گروه لرفعالیتیگه رخصت بیرگن اخبارات واسطه لری شو ییل مدتیده مثال سیز ترقی تاپکن و اهالی نینگ اقتصادی وضعیتی اوتمیش\";\nconst char* kTeststr_uz_Cyrl = \" а гапирадиган бўлсак бунинг иккита йўли бор биринчиси мана шу қуриган сатҳини қумликларни тўхтатиш учун экотизимни мустаҳкамлаш қумга\";\nconst char* kTeststr_uz_Latn = \" abadiylashtirildi aqsh ayol prezidentga tayyormi markaziy osiyo afg onistonga qanday yordam berishi mumkin ukrainada o zbekistonlik muhojirlar tazyiqdan shikoyat qilmoqda gruziya va ukraina hozircha natoga qabul qilinmaydi afg oniston o zbekistonni g\";\nconst char* kTeststr_vi_Latn = \" adsense cho nội dung nhà cung cấp dịch vụ di động xác minh tín dụng thay đổi nhãn kg các ô xem chi phí cho từ chối các đơn đặt hàng dạng cấp dữ liệu ác minh trang web của bạn để xem\";\nconst char* kTeststr_vo_Latn = \" brefik se volapükavol nüm balid äpubon ün dü lif lölik okas redakans älaipübons gasedi at nomöfiko äd ai mu kuratiko pläo timü koup nedäna fa ns deutän kü päproibon fa koupanef me gased at ästeifülom ad propagidön volapüki as sam ün\";\nconst char* kTeststr_wo_Latn = \" am ak dëgg dëggam ak gëm aji bind ji te gëstu ko te jëfandikoo tegtalu xel ci saxal ko sokraat nag jëfandikoo woon na xeltu ngir tas jikko yu rafet ci biir nit ñi ak dëggu ak soppante sokraat nag ñëw na mook aflaton platon sukkandiku ci ñaari\";\nconst char* kTeststr_xh_Latn = \" a naynga zonke futhi libhengezwa kwiwebsite yebond yasemzantsi afrika izinga elisebenzayo xa usenza olu tyalo mali liya kusebenza de liphele ixesha lotyalo mali lwakho inzala ihlawulwa rhoqo emva kweenyanga ezintandathu ngomhla wamashumi amathathu ananye\";\nconst char* kTeststr_xx_Bugi = \"ᨄᨛᨑᨊᨒ ᨑᨗ ᨔᨒᨗᨓᨛ ᨕᨗᨋᨗᨔᨗ ᨒᨛᨄ ᨑᨛᨔᨛᨆᨗᨊ\";\nconst char* kTeststr_xx_Goth = \"𐌰 𐌰𐌱𐍂𐌰𐌷𐌰𐌼 𐌰𐌲𐌲𐌹𐌻𐌹𐍃𐌺𐍃 𐌸𐌹𐌿𐌳𐌹𐍃𐌺𐍃 𐍆𐍂𐌰𐌲𐌺𐌹𐍃𐌺𐍃\";\nconst char* kTeststr_yi_Hebr = \"און פאנטאזיע ער איז באקאנט צים מערסטן פאר זיינע באַלאַדעס ער האָט געוווינט אין ווארשע יעס פאריס ליווערפול און לאנדאן סוף כל סוף איז ער\";\nconst char* kTeststr_yo_Latn = \" abinibi han ikawe alantakun le ni opolopo ede abinibi ti a to lesese bi eniyan to fe lo se fe lati se atunse jowo mo pe awon oju iwe itakunagbaye miran ti ako ni oniruru ede abinibi le faragba nipa atunse ninu se iwadi blogs ni ori itakun agbaye ti e ba\";\nconst char* kTeststr_za_Hani = \" 两个宾语的字数较少时 只带一个动词 否则就带两个动词 三句子类 从句子方面去谈汉 壮语结构格式相异的类型的 叫句子类 汉 壮语中 句子类结构格式有差别的自然不少\";\nconst char* kTeststr_za_Latn = \" dih yinzminz ndaej daengz bujbienq youjyau dih cingzyin caeuq cinhingz diuz daihit boux boux ma daengz lajmbwn couh miz cwyouz cinhyenz caeuq genzli bouxboux bingzdaengj gyoengq vunz miz lijsing caeuq liengzsim wngdang daih gyoengq de lumj beixnuengx\";\nconst char* kTeststr_zh_Hani = \"产品的简报和公告 提交该申请后无法进行更改 请确认您的选择是正确的 对于要提交的图书 我确认 我是版权所有者或已得到版权所有者的授权 要更改您的国家 地区 请在此表的最上端更改您的\";\nconst char* kTeststr_zh_TW = \" 之前為 帳單交易作業區 已變更 廣告內容 之前為 銷售代表 之前為 張貼日期為 百分比之前為 合約 為 目標對象條件已刪除 結束日期之前為\";\nconst char* kTeststr_zu_Latn = \" ana engu uma inkinga iqhubeka siza ubike kwi isexwayiso ngenxa yephutha lomlekeleli sikwazi ukubuyisela emuva kuphela imiphumela engaqediwe ukuthola imiphumela eqediwe zama ukulayisha kabusha leli khasi emizuzwini engu uma inkinga iqhubeka siza uthumele\";\nconst char* kTeststr_zzb_Latn = \"becoose a ve a leemit qooereees tu vurds um gesh dee bork bork nu peges vere a fuoond cunteeening is a fery cummun vurd und ves nut inclooded in yuoor seerch zee ooperetur is unnecessery ve a incloode a ell seerch terms by deffoolt um de hur de hur de hur\";\nconst char* kTeststr_zze_Latn = \" a diffewent type of seawch send feedback about google wiwewess seawch to wap google com wesuwts found on de entiwe web fow wesuwts found on de mobiwe web fow de functionawity of de toolbar up button has been expanded swightwy it now considews fow exampwe\";\nconst char* kTeststr_zzh_Latn = \" b x z un b e t und rs n a dr ss p as ry an th r a dr ss ry us n a l ss mb gu us c ti n l ke a z p c d n a dr ss nt r d pl as en r n a dr ss y ur s ar h f r n ar d d n t m tch ny l c ti n w th n m l s nd m r r at d p g s th l c ti ns b l w w r ut m t ca y\";\nconst char* kTeststr_zzp_Latn = \" a isplayda nformationia boutaa rivacypa ndaa singua heta ooglega oolbarta ilightha uttonba ipza ostalpa odeca howsa tocksa uoteqa rowseba roa earchsa ithinwa heta ooglega ebwa irectoryda ememberra astka earchsa ypeta earchsa heta ebwa ooglega magesia\";\n\nconst char* kTeststr_ms_close = \"sukiyaki wikipedia bahasa melayu ensiklopedia bebas sukiyaki dari wikipedia bahasa melayu ensiklopedia bebas lompat ke navigasi gelintar sukiyaki sukiyaki  hirisan tipis daging lembu sayur sayuran dan tauhu di dalam periuk besi yang dimasak di atas meja makan dengan cara rebusan sukiyaki dimakan dengan mence\";\nconst char* kTeststr_id_close = \"sukiyaki wikipedia indonesia ensiklopedia bebas berbahasa bebas berbahasa indonesia langsung ke navigasi cari untuk pengertian lain dari sukiyaki lihat sukiyaki irisan tipis daging sapi sayur sayuran dan tahu di dalam panci besi yang dimasak di atas meja makan dengan cara direbus sukiyaki dimakan dengan mence\";\n\n#endif  // ENCODINGS_COMPACT_LANG_DET_UNITTEST_DATA_H_\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/utf8propjustletter.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n//  Accepts all other UTF-8 codes 0000..10FFFF\n//  Space optimized\n// ** ASSUMES INPUT IS STRUCTURALLY VALID UTF-8 **\n//  Table entries are absolute statetable subscripts\n\n#ifndef EXPERIMENTAL_USERS_DSITES_LANGDET_UTF8PROPJUSTLETTER_H__\n#define EXPERIMENTAL_USERS_DSITES_LANGDET_UTF8PROPJUSTLETTER_H__\n\n#include \"encodings/compact_lang_det/win/cld_utf8statetable.h\"\n\n#define X__ (kExitIllegalStructure)\n#define RJ_ (kExitReject)\n#define S1_ (kExitReplace1)\n#define S2_ (kExitReplace2)\n#define S3_ (kExitReplace3)\n#define S21 (kExitReplace21)\n#define S31 (kExitReplace31)\n#define S32 (kExitReplace32)\n#define T1_ (kExitReplaceOffset1)\n#define T2_ (kExitReplaceOffset2)\n#define S11 (kExitReplace1S0)\n#define SP_ (kExitSpecial)\n#define D__ (kExitDoAgain)\n#define RJA (kExitRejectAlt)\n\n//  Entire table has 180 state blocks of 64 entries each\n\nstatic const unsigned int utf8propjustletter_STATE0 = 0;\t\t// state[0]\nstatic const unsigned int utf8propjustletter_STATE0_SIZE = 64;\t// =[1]\nstatic const unsigned int utf8propjustletter_TOTAL_SIZE = 11520;\nstatic const unsigned int utf8propjustletter_MAX_EXPAND_X4 = 0;\nstatic const unsigned int utf8propjustletter_SHIFT = 6;\nstatic const unsigned int utf8propjustletter_BYTES = 1;\nstatic const unsigned int utf8propjustletter_LOSUB = 0x80808080;\nstatic const unsigned int utf8propjustletter_HIADD = 0x00000000;\n\nstatic const uint8 utf8propjustletter[] = {\n// state[0] 0x000000 Byte 1\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n  0,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  0,  0,  0,  0,  0,\n  0,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  0,  0,  0,  0,  0,\n\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\n\nX__,X__,  6,  7,  8,  8,  8,  8,   8,  8,  8,  9,  8, 10, 11, 12,\n  8,  8, 13,  8, 14, 15, 16, 17,  18, 19,  8, 20, 21, 22, 23, 24,\n 25, 54, 92,106,113,115,115,115, 115,116,118,115,115,123,  2,125,\n142,  4,  4,175,  5,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\n\n// state[4 - 2] 0x00e000 Byte 2 of 3\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[5 - 2] 0x000800 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[6 - 2] 0x040000 Byte 2 of 4\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n\n// state[7 - 2] 0x100000 Byte 2 of 4\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\n\n// state[8 - 2] 0x000080 Byte 2 of 2\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  1,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  1,  0,  0,   0,  0,  1,  0,  0,  0,  0,  0,\n\n// state[9 - 2] 0x0000c0 Byte 2 of 2\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  0,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  0,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[10 - 2] 0x000100 Byte 2 of 2\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[11 - 2] 0x0002c0 Byte 2 of 2\n  1,  1,  0,  0,  0,  0,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  0,  0,  0,   0,  0,  0,  0,  0,  0,  1,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[12 - 2] 0x000340 Byte 2 of 2\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  1,  1,  1,  1,  0,  0,\n\n// state[13 - 2] 0x000380 Byte 2 of 2\n  0,  0,  0,  0,  0,  0,  1,  0,   1,  1,  1,  0,  1,  0,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  0,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[14 - 2] 0x0003c0 Byte 2 of 2\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  0,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[15 - 2] 0x000480 Byte 2 of 2\n  1,  1,  0,  1,  1,  1,  1,  0,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[16 - 2] 0x000500 Byte 2 of 2\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[17 - 2] 0x000540 Byte 2 of 2\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  0,   0,  1,  0,  0,  0,  0,  0,  0,\n  0,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[18 - 2] 0x000580 Byte 2 of 2\n  1,  1,  1,  1,  1,  1,  1,  1,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  0,  1,\n\n// state[19 - 2] 0x0005c0 Byte 2 of 2\n  0,  1,  1,  0,  1,  1,  0,  1,   0,  0,  0,  0,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  0,  0,  0,  0,  0,\n  1,  1,  1,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[20 - 2] 0x000600 Byte 2 of 2\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  1,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  0,  0,  0,  0,  0,\n\n// state[21 - 2] 0x000640 Byte 2 of 2\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[22 - 2] 0x0006c0 Byte 2 of 2\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  0,  1,  1,  1,   1,  1,  1,  1,  1,  0,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  0,  1,  1,  1,  1,  1,  1,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  1,  1,  1,  0,  0,  1,\n\n// state[23 - 2] 0x000700 Byte 2 of 2\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[24 - 2] 0x000740 Byte 2 of 2\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  0,  0,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[25 - 2] 0x000780 Byte 2 of 2\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[26 - 2] 0x0007c0 Byte 2 of 2\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  0,  0,   0,  0,  1,  0,  0,  0,  0,  0,\n\n// state[27 - 2] 0x000000 Byte 2 of 3\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\n  3,  3,  3,  3, 26, 27, 28, 29,  30, 31, 32, 33, 34, 35, 36, 37,\n 38, 39, 40, 41, 42, 43, 44, 45,  46, 47, 48, 49, 50, 51, 52, 53,\n\n// state[28 - 2] 0x000900 Byte 3 of 3\n  0,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  0,  0,  1,  1,  1,  1,\n\n// state[29 - 2] 0x000940 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  0,  0,\n  1,  1,  1,  1,  1,  0,  0,  0,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  1,  1,  1,  1,  1,\n\n// state[30 - 2] 0x000980 Byte 3 of 3\n  0,  1,  1,  1,  0,  1,  1,  1,   1,  1,  1,  1,  1,  0,  0,  1,\n  1,  0,  0,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  0,  1,  1,  1,  1,  1,  1,\n  1,  0,  1,  0,  0,  0,  1,  1,   1,  1,  0,  0,  1,  1,  1,  1,\n\n// state[31 - 2] 0x0009c0 Byte 3 of 3\n  1,  1,  1,  1,  1,  0,  0,  1,   1,  0,  0,  1,  1,  1,  1,  0,\n  0,  0,  0,  0,  0,  0,  0,  1,   0,  0,  0,  0,  1,  1,  0,  1,\n  1,  1,  1,  1,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  1,  1,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[32 - 2] 0x000a00 Byte 3 of 3\n  0,  1,  1,  1,  0,  1,  1,  1,   1,  1,  1,  0,  0,  0,  0,  1,\n  1,  0,  0,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  0,  1,  1,  1,  1,  1,  1,\n  1,  0,  1,  1,  0,  1,  1,  0,   1,  1,  0,  0,  1,  0,  1,  1,\n\n// state[33 - 2] 0x000a40 Byte 3 of 3\n  1,  1,  1,  0,  0,  0,  0,  1,   1,  0,  0,  1,  1,  1,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  1,  1,  1,  1,  0,  1,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[34 - 2] 0x000a80 Byte 3 of 3\n  0,  1,  1,  1,  0,  1,  1,  1,   1,  1,  1,  1,  1,  1,  0,  1,\n  1,  1,  0,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  0,  1,  1,  1,  1,  1,  1,\n  1,  0,  1,  1,  0,  1,  1,  1,   1,  1,  0,  0,  1,  1,  1,  1,\n\n// state[35 - 2] 0x000ac0 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  0,  1,   1,  1,  0,  1,  1,  1,  0,  0,\n  1,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  1,  1,  1,  1,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[36 - 2] 0x000b00 Byte 3 of 3\n  0,  1,  1,  1,  0,  1,  1,  1,   1,  1,  1,  1,  1,  0,  0,  1,\n  1,  0,  0,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  0,  1,  1,  1,  1,  1,  1,\n  1,  0,  1,  1,  0,  1,  1,  1,   1,  1,  0,  0,  1,  1,  1,  1,\n\n// state[37 - 2] 0x000b40 Byte 3 of 3\n  1,  1,  1,  1,  0,  0,  0,  1,   1,  0,  0,  1,  1,  1,  0,  0,\n  0,  0,  0,  0,  0,  0,  1,  1,   0,  0,  0,  0,  1,  1,  0,  1,\n  1,  1,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  1,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[38 - 2] 0x000b80 Byte 3 of 3\n  0,  0,  1,  1,  0,  1,  1,  1,   1,  1,  1,  0,  0,  0,  1,  1,\n  1,  0,  1,  1,  1,  1,  0,  0,   0,  1,  1,  0,  1,  0,  1,  1,\n  0,  0,  0,  1,  1,  0,  0,  0,   1,  1,  1,  0,  0,  0,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  0,  0,  0,  0,  1,  1,\n\n// state[39 - 2] 0x000bc0 Byte 3 of 3\n  1,  1,  1,  0,  0,  0,  1,  1,   1,  0,  1,  1,  1,  1,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  1,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[40 - 2] 0x000c00 Byte 3 of 3\n  0,  1,  1,  1,  0,  1,  1,  1,   1,  1,  1,  1,  1,  0,  1,  1,\n  1,  0,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  0,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  0,  1,  1,  1,   1,  1,  0,  0,  0,  0,  1,  1,\n\n// state[41 - 2] 0x000c40 Byte 3 of 3\n  1,  1,  1,  1,  1,  0,  1,  1,   1,  0,  1,  1,  1,  1,  0,  0,\n  0,  0,  0,  0,  0,  1,  1,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  1,  1,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[42 - 2] 0x000c80 Byte 3 of 3\n  0,  0,  1,  1,  0,  1,  1,  1,   1,  1,  1,  1,  1,  0,  1,  1,\n  1,  0,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  0,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  0,  1,  1,  1,   1,  1,  0,  0,  1,  1,  1,  1,\n\n// state[43 - 2] 0x000cc0 Byte 3 of 3\n  1,  1,  1,  1,  1,  0,  1,  1,   1,  0,  1,  1,  1,  1,  0,  0,\n  0,  0,  0,  0,  0,  1,  1,  0,   0,  0,  0,  0,  0,  0,  1,  0,\n  1,  1,  1,  1,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[44 - 2] 0x000d00 Byte 3 of 3\n  0,  0,  1,  1,  0,  1,  1,  1,   1,  1,  1,  1,  1,  0,  1,  1,\n  1,  0,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  0,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  0,  0,  0,  0,  1,  1,\n\n// state[45 - 2] 0x000d40 Byte 3 of 3\n  1,  1,  1,  1,  0,  0,  1,  1,   1,  0,  1,  1,  1,  1,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  1,   0,  0,  0,  0,  0,  0,  0,  0,\n  1,  1,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[46 - 2] 0x000d80 Byte 3 of 3\n  0,  0,  1,  1,  0,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  0,   0,  0,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  0,  1,  1,  1,  1,  1,   1,  1,  1,  1,  0,  1,  0,  0,\n\n// state[47 - 2] 0x000dc0 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  0,   0,  0,  1,  0,  0,  0,  0,  1,\n  1,  1,  1,  1,  1,  0,  1,  0,   1,  1,  1,  1,  1,  1,  1,  1,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  1,  1,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[48 - 2] 0x000e00 Byte 3 of 3\n  0,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  0,  0,  0,  0,  0,\n\n// state[49 - 2] 0x000e40 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[50 - 2] 0x000e80 Byte 3 of 3\n  0,  1,  1,  0,  1,  0,  0,  1,   1,  0,  1,  0,  0,  1,  0,  0,\n  0,  0,  0,  0,  1,  1,  1,  1,   0,  1,  1,  1,  1,  1,  1,  1,\n  0,  1,  1,  1,  0,  1,  0,  1,   0,  0,  1,  1,  0,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  0,  1,  1,  1,  0,  0,\n\n// state[51 - 2] 0x000ec0 Byte 3 of 3\n  1,  1,  1,  1,  1,  0,  1,  0,   1,  1,  1,  1,  1,  1,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  1,  1,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[52 - 2] 0x000f00 Byte 3 of 3\n  1,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   1,  1,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  1,  0,  1,   0,  1,  0,  0,  0,  0,  1,  1,\n\n// state[53 - 2] 0x000f40 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   0,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  0,  0,  0,  0,  0,\n  0,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[54 - 2] 0x000f80 Byte 3 of 3\n  1,  1,  1,  1,  1,  0,  1,  1,   1,  1,  1,  1,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   0,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  0,  0,  0,\n\n// state[55 - 2] 0x000fc0 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  1,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[56 - 2] 0x001000 Byte 2 of 3\n 55, 56, 57, 58,  8, 59, 60, 61,   8, 62, 63, 64, 65, 66, 67, 68,\n 69,  8,  8,  8,  8,  8,  8,  8,   8, 70, 71, 72, 73, 74, 75, 76,\n 77, 78, 79,  3, 80, 81, 82, 83,  84,  3,  3,  3,  8, 85,  3,  3,\n  3,  3,  3,  3,  8,  8,  8, 86,   8,  8, 87, 61, 88, 89, 90, 91,\n\n// state[57 - 2] 0x001000 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  0,  1,  1,  1,  1,  1,   0,  1,  1,  0,  1,  1,  1,  1,\n  1,  1,  1,  0,  0,  0,  1,  1,   1,  1,  0,  0,  0,  0,  0,  0,\n\n// state[58 - 2] 0x001040 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[59 - 2] 0x001080 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[60 - 2] 0x0010c0 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  0,  1,  0,  0,  0,\n\n// state[61 - 2] 0x001140 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  0,  0,  0,  0,  0,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[62 - 2] 0x001180 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  0,  0,  0,  0,  0,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[63 - 2] 0x0011c0 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  0,  0,  0,  0,  0,  0,\n\n// state[64 - 2] 0x001240 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  0,  1,  1,  1,  1,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  0,   1,  0,  1,  1,  1,  1,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[65 - 2] 0x001280 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  0,  1,  1,  1,  1,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  0,  1,  1,  1,  1,  0,  0,   1,  1,  1,  1,  1,  1,  1,  0,\n\n// state[66 - 2] 0x0012c0 Byte 3 of 3\n  1,  0,  1,  1,  1,  1,  0,  0,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  0,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[67 - 2] 0x001300 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  0,  1,  1,  1,  1,  0,  0,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[68 - 2] 0x001340 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  0,  0,  0,  0,  1,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[69 - 2] 0x001380 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[70 - 2] 0x0013c0 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[71 - 2] 0x001400 Byte 3 of 3\n  0,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[72 - 2] 0x001640 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  0,  0,  1,\n  1,  1,  1,  1,  1,  1,  1,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[73 - 2] 0x001680 Byte 3 of 3\n  0,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  0,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[74 - 2] 0x0016c0 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[75 - 2] 0x001700 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  0,  1,  1,\n  1,  1,  1,  1,  1,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[76 - 2] 0x001740 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  0,  1,  1,\n  1,  0,  1,  1,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[77 - 2] 0x001780 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  0,  0,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[78 - 2] 0x0017c0 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  0,  0,  0,  1,   0,  0,  0,  0,  1,  1,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[79 - 2] 0x001800 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  1,  1,  1,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[80 - 2] 0x001840 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[81 - 2] 0x001880 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[82 - 2] 0x001900 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  0,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  0,  0,  0,  0,\n\n// state[83 - 2] 0x001940 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  0,  0,\n  1,  1,  1,  1,  1,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[84 - 2] 0x001980 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  0,  0,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[85 - 2] 0x0019c0 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[86 - 2] 0x001a00 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[87 - 2] 0x001b40 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[88 - 2] 0x001dc0 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  1,  1,\n\n// state[89 - 2] 0x001e80 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[90 - 2] 0x001f00 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  0,  0,   1,  1,  1,  1,  1,  1,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[91 - 2] 0x001f40 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  0,  0,   1,  1,  1,  1,  1,  1,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   0,  1,  0,  1,  0,  1,  0,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  0,  0,\n\n// state[92 - 2] 0x001f80 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  0,  1,  1,   1,  1,  1,  1,  1,  0,  1,  0,\n\n// state[93 - 2] 0x001fc0 Byte 3 of 3\n  0,  0,  1,  1,  1,  0,  1,  1,   1,  1,  1,  1,  1,  0,  0,  0,\n  1,  1,  1,  1,  0,  0,  1,  1,   1,  1,  1,  1,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  0,  0,  0,\n  0,  0,  1,  1,  1,  0,  1,  1,   1,  1,  1,  1,  1,  0,  0,  0,\n\n// state[94 - 2] 0x002000 Byte 2 of 3\n  3, 93, 94, 95, 96, 97, 98,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n 99,100,  8,101,102,103,104,105,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[95 - 2] 0x002040 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  1,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  1,\n\n// state[96 - 2] 0x002080 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[97 - 2] 0x0020c0 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[98 - 2] 0x002100 Byte 3 of 3\n  0,  0,  1,  0,  0,  0,  0,  1,   0,  0,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  0,  1,  0,  0,   0,  1,  1,  1,  1,  1,  0,  0,\n  0,  0,  0,  0,  1,  0,  1,  0,   1,  0,  1,  1,  1,  1,  0,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  0,  0,  1,  1,  1,  1,\n\n// state[99 - 2] 0x002140 Byte 3 of 3\n  0,  0,  0,  0,  0,  1,  1,  1,   1,  1,  0,  0,  0,  0,  1,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[100 - 2] 0x002180 Byte 3 of 3\n  0,  0,  0,  1,  1,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[101 - 2] 0x002c00 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[102 - 2] 0x002c40 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  0,  0,  0,\n  0,  0,  0,  0,  1,  1,  1,  1,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[103 - 2] 0x002cc0 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[104 - 2] 0x002d00 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[105 - 2] 0x002d40 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  0,  0,   0,  0,  0,  0,  0,  0,  0,  1,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[106 - 2] 0x002d80 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  0,   1,  1,  1,  1,  1,  1,  1,  0,\n  1,  1,  1,  1,  1,  1,  1,  0,   1,  1,  1,  1,  1,  1,  1,  0,\n\n// state[107 - 2] 0x002dc0 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  0,   1,  1,  1,  1,  1,  1,  1,  0,\n  1,  1,  1,  1,  1,  1,  1,  0,   1,  1,  1,  1,  1,  1,  1,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[108 - 2] 0x003000 Byte 2 of 3\n107, 69,108,109,110,  8,111,112,   3,  3,  3,  3,  3,  3,  3,  3,\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n\n// state[109 - 2] 0x003000 Byte 3 of 3\n  0,  0,  0,  0,  0,  1,  1,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  1,  1,  1,  1,  1,  1,\n  0,  1,  1,  1,  1,  1,  0,  0,   0,  0,  0,  1,  1,  0,  0,  0,\n\n// state[110 - 2] 0x003080 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  0,   0,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[111 - 2] 0x0030c0 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  0,  1,  1,  1,  1,\n\n// state[112 - 2] 0x003100 Byte 3 of 3\n  0,  0,  0,  0,  0,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  0,  0,  0,\n  0,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[113 - 2] 0x003180 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[114 - 2] 0x0031c0 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[115 - 2] 0x004000 Byte 2 of 3\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n  8,  8,  8,  8,  8,  8,114,  3,   8,  8,  8,  8,  8,  8,  8,  8,\n\n// state[116 - 2] 0x004d80 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[117 - 2] 0x005000 Byte 2 of 3\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n\n// state[118 - 2] 0x009000 Byte 2 of 3\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,117,  3,\n\n// state[119 - 2] 0x009f80 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  0,  0,  0,  0,\n\n// state[120 - 2] 0x00a000 Byte 2 of 3\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n  8,  8,119,  3,  3,  3,  3,  3,   3,  3,  3,  3,120,  3,  3,  3,\n121,122,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n\n// state[121 - 2] 0x00a480 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[122 - 2] 0x00a700 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  1,   1,  1,  1,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[123 - 2] 0x00a800 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[124 - 2] 0x00a840 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[125 - 2] 0x00d000 Byte 2 of 3\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,124,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[126 - 2] 0x00d780 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[127 - 2] 0x00f000 Byte 2 of 3\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  8,  8,  8,  8, 126,127,  8,128,129,130, 23,131,\n  8,  8,  8,  8,132, 21,133,134, 135,136,  8,137,138,139,140,141,\n\n// state[128 - 2] 0x00fa00 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[129 - 2] 0x00fa40 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  0,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[130 - 2] 0x00fac0 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[131 - 2] 0x00fb00 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  1,  1,  1,  1,  1,   0,  0,  0,  0,  0,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  0,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  0,   1,  1,  1,  1,  1,  0,  1,  0,\n\n// state[132 - 2] 0x00fb40 Byte 3 of 3\n  1,  1,  0,  1,  1,  0,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[133 - 2] 0x00fbc0 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[134 - 2] 0x00fd00 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  0,  0,\n\n// state[135 - 2] 0x00fd80 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  0,  0,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[136 - 2] 0x00fdc0 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  0,  0,  0,  0,\n\n// state[137 - 2] 0x00fe00 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  1,  1,  1,  1,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[138 - 2] 0x00fe40 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  0,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[139 - 2] 0x00fec0 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  0,  0,  0,\n\n// state[140 - 2] 0x00ff00 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  0,  0,  0,  0,  0,\n\n// state[141 - 2] 0x00ff40 Byte 3 of 3\n  0,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[142 - 2] 0x00ff80 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  0,\n\n// state[143 - 2] 0x00ffc0 Byte 3 of 3\n  0,  0,  1,  1,  1,  1,  1,  1,   0,  0,  1,  1,  1,  1,  1,  1,\n  0,  0,  1,  1,  1,  1,  1,  1,   0,  0,  1,  1,  1,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[144 - 2] 0x000000 Byte 2 of 4\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\n143,  2,155,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,157,  2,  2,\n115,115,115,115,115,115,115,115, 115,115,172,  2,  2,  2,  2,174,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n\n// state[145 - 2] 0x010000 Byte 3 of 4\n144,145,  8,146,  3,  3,  3,  3,   3,  3,  3,  3,147,148,149,150,\n  8,  8,151,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n152,  3,  3,  3,153,  3,  3,  3, 154,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[146 - 2] 0x010000 Byte 4 of 4\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  0,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  0,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  0,  1,  1,  0,  1,\n\n// state[147 - 2] 0x010040 Byte 4 of 4\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[148 - 2] 0x0100c0 Byte 4 of 4\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  0,  0,  0,  0,  0,\n\n// state[149 - 2] 0x010300 Byte 4 of 4\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[150 - 2] 0x010340 Byte 4 of 4\n  1,  0,  1,  1,  1,  1,  1,  1,   1,  1,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[151 - 2] 0x010380 Byte 4 of 4\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[152 - 2] 0x0103c0 Byte 4 of 4\n  1,  1,  1,  1,  0,  0,  0,  0,   1,  1,  1,  1,  1,  1,  1,  1,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[153 - 2] 0x010480 Byte 4 of 4\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[154 - 2] 0x010800 Byte 4 of 4\n  1,  1,  1,  1,  1,  1,  0,  0,   1,  0,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  0,  1,   1,  0,  0,  0,  1,  0,  0,  1,\n\n// state[155 - 2] 0x010900 Byte 4 of 4\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[156 - 2] 0x010a00 Byte 4 of 4\n  1,  1,  1,  1,  0,  1,  1,  0,   0,  0,  0,  0,  1,  1,  1,  1,\n  1,  1,  1,  1,  0,  1,  1,  1,   0,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  0,  0,  0,  0,   1,  1,  1,  0,  0,  0,  0,  1,\n\n// state[157 - 2] 0x012000 Byte 3 of 4\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,156,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[158 - 2] 0x012340 Byte 4 of 4\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[159 - 2] 0x01d000 Byte 3 of 4\n  3,  3,  3,  3,  3,158,159,  3,   3,160,  3,  3,  3,  3,  3,  3,\n  8,161,162,163,164,165,  8,  8,   8,  8,166,167,168,169,170,171,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[160 - 2] 0x01d140 Byte 4 of 4\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  1,  1,  1,   1,  1,  0,  0,  0,  1,  1,  1,\n  1,  1,  1,  0,  0,  0,  0,  0,   0,  0,  0,  1,  1,  1,  1,  1,\n\n// state[161 - 2] 0x01d180 Byte 4 of 4\n  1,  1,  1,  0,  0,  1,  1,  1,   1,  1,  1,  1,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  1,  1,  1,  1,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[162 - 2] 0x01d240 Byte 4 of 4\n  0,  0,  1,  1,  1,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[163 - 2] 0x01d440 Byte 4 of 4\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  0,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[164 - 2] 0x01d480 Byte 4 of 4\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  0,  1,  1,\n  0,  0,  1,  0,  0,  1,  1,  0,   0,  1,  1,  1,  1,  0,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  0,  1,  0,  1,  1,  1,\n\n// state[165 - 2] 0x01d4c0 Byte 4 of 4\n  1,  1,  1,  1,  0,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[166 - 2] 0x01d500 Byte 4 of 4\n  1,  1,  1,  1,  1,  1,  0,  1,   1,  1,  1,  0,  0,  1,  1,  1,\n  1,  1,  1,  1,  1,  0,  1,  1,   1,  1,  1,  1,  1,  0,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  0,  1,  1,  1,  1,  0,\n\n// state[167 - 2] 0x01d540 Byte 4 of 4\n  1,  1,  1,  1,  1,  0,  1,  0,   0,  0,  1,  1,  1,  1,  1,  1,\n  1,  0,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[168 - 2] 0x01d680 Byte 4 of 4\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  0,  0,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[169 - 2] 0x01d6c0 Byte 4 of 4\n  1,  0,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  0,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  0,  1,  1,  1,  1,\n\n// state[170 - 2] 0x01d700 Byte 4 of 4\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  0,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  0,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[171 - 2] 0x01d740 Byte 4 of 4\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[172 - 2] 0x01d780 Byte 4 of 4\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  0,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  0,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[173 - 2] 0x01d7c0 Byte 4 of 4\n  1,  1,  1,  0,  1,  1,  1,  1,   1,  1,  1,  1,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[174 - 2] 0x02a000 Byte 3 of 4\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,173,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[175 - 2] 0x02a6c0 Byte 4 of 4\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[176 - 2] 0x02f000 Byte 3 of 4\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  8,  8,  8,  8,  8,  8,  8,  8, 151,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[177 - 2] 0x0c0000 Byte 2 of 4\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n176,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n\n// state[178 - 2] 0x0e0000 Byte 3 of 4\n  3,  3,  3,  3,  8,  8,  8,177,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[179 - 2] 0x0e01c0 Byte 4 of 4\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n};\n\n// Remap base[0] = (del, add, string_offset)\nstatic const RemapEntry utf8propjustletter_remap_base[] = {\n{0,0,0} };\n\n// Remap string[0]\nstatic const unsigned char utf8propjustletter_remap_string[] = {\n0 };\n\nstatic const UTF8PropObj utf8propjustletter_obj = {\n  utf8propjustletter_STATE0,\n  utf8propjustletter_STATE0_SIZE,\n  utf8propjustletter_TOTAL_SIZE,\n  utf8propjustletter_MAX_EXPAND_X4,\n  utf8propjustletter_SHIFT,\n  utf8propjustletter_BYTES,\n  utf8propjustletter_LOSUB,\n  utf8propjustletter_HIADD,\n  utf8propjustletter,\n  utf8propjustletter_remap_base,\n  utf8propjustletter_remap_string,\n  NULL\n};\n\n\n#undef X__\n#undef RJ_\n#undef S1_\n#undef S2_\n#undef S3_\n#undef S21\n#undef S31\n#undef S32\n#undef T1_\n#undef T2_\n#undef S11\n#undef SP_\n#undef D__\n#undef RJA\n\n// Table has 11520 bytes, Hash = A07D-5820\n\n#endif  // EXPERIMENTAL_USERS_DSITES_LANGDET_UTF8PROPJUSTLETTER_H__\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/utf8propletterscriptnum.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n//  Accepts all other UTF-8 codes 0000..10FFFF\n//  Space optimized\n// ** ASSUMES INPUT IS STRUCTURALLY VALID UTF-8 **\n//  Table entries are absolute statetable subscripts\n\n#ifndef EXPERIMENTAL_USERS_DSITES_LANGDET_UTF8PROPLETTERSCRIPTNUM_H__\n#define EXPERIMENTAL_USERS_DSITES_LANGDET_UTF8PROPLETTERSCRIPTNUM_H__\n\n#include \"encodings/compact_lang_det/win/cld_utf8statetable.h\"\n\n#define X__ (kExitIllegalStructure)\n#define RJ_ (kExitReject)\n#define S1_ (kExitReplace1)\n#define S2_ (kExitReplace2)\n#define S3_ (kExitReplace3)\n#define S21 (kExitReplace21)\n#define S31 (kExitReplace31)\n#define S32 (kExitReplace32)\n#define T1_ (kExitReplaceOffset1)\n#define T2_ (kExitReplaceOffset2)\n#define S11 (kExitReplace1S0)\n#define SP_ (kExitSpecial)\n#define D__ (kExitDoAgain)\n#define RJA (kExitRejectAlt)\n\n//  Entire table has 190 state blocks of 64 entries each\n\nstatic const unsigned int utf8propletterscriptnum_STATE0 = 0;\t\t// state[0]\nstatic const unsigned int utf8propletterscriptnum_STATE0_SIZE = 64;\t// =[1]\nstatic const unsigned int utf8propletterscriptnum_TOTAL_SIZE = 12160;\nstatic const unsigned int utf8propletterscriptnum_MAX_EXPAND_X4 = 0;\nstatic const unsigned int utf8propletterscriptnum_SHIFT = 6;\nstatic const unsigned int utf8propletterscriptnum_BYTES = 1;\nstatic const unsigned int utf8propletterscriptnum_LOSUB = 0x80808080;\nstatic const unsigned int utf8propletterscriptnum_HIADD = 0x00000000;\n\nstatic const uint8 utf8propletterscriptnum[] = {\n// state[0] 0x000000 Byte 1\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n  0,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  0,  0,  0,  0,  0,\n  0,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  0,  0,  0,  0,  0,\n\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\n\nX__,X__,  6, 24, 25, 25, 25, 25,  25, 25,  7,  8,151, 37, 38, 39,\n 45, 45, 46, 45, 47, 48, 49, 50,  52,  9, 53, 54, 64, 55, 65,187,\n 66, 26, 10, 14,133,106,106,106, 106,135, 17,106,106,107,  2, 18,\n 21,  4,  4,156,  5,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\n\n// state[4 - 2] 0x00e000 Byte 2 of 3\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[5 - 2] 0x000800 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[6 - 2] 0x040000 Byte 2 of 4\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n\n// state[7 - 2] 0x100000 Byte 2 of 4\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\n\n// state[8 - 2] 0x000080 Byte 2 of 2\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  1,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  1,  0,  0,  0,  0,  0,\n\n// state[9 - 2] 0x000280 Byte 2 of 2\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  0,  0,  0,  0,  0,  0,  0,\n\n// state[10 - 2] 0x0002c0 Byte 2 of 2\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[11 - 2] 0x000640 Byte 2 of 2\n  0,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6, 36, 36, 36, 36, 36,\n 36, 36, 36, 36, 36, 36,  6,  6,   6,  6,  6,  6,  6,  6,  6,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  6,  6,\n 36,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n\n// state[12 - 2] 0x002000 Byte 2 of 3\n  3, 32, 33,153, 11, 12, 13,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n175, 34,171,172, 99,176,117,118,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[13 - 2] 0x002100 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  2,  0,   0,  0,  1,  1,  0,  0,  0,  0,\n  0,  0,  1,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[14 - 2] 0x002140 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  1,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[15 - 2] 0x002180 Byte 3 of 3\n  0,  0,  0,  0,  1,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[16 - 2] 0x003000 Byte 2 of 3\n 15,130,131, 16,104,100,105,132,   3,  3,  3,  3,  3,  3,  3,  3,\n100,100,100,100,100,100,100,100, 100,100,100,100,100,100,100,100,\n100,100,100,100,100,100,100,100, 100,100,100,100,100,100,100,100,\n100,100,100,100,100,100,100,100, 100,100,100,100,100,100,100,100,\n\n// state[17 - 2] 0x003000 Byte 3 of 3\n  0,  0,  0,  0,  0, 24,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0, 36, 36, 36, 36, 36, 36,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0, 24,  0,  0,  0,  0,\n\n// state[18 - 2] 0x0030c0 Byte 3 of 3\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24,  0,  0, 24, 24, 24,\n\n// state[19 - 2] 0x00a000 Byte 2 of 3\n144,144,144,144,144,144,144,144, 144,144,144,144,144,144,144,144,\n144,144,145,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n177,186,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n100,100,100,100,100,100,100,100, 100,100,100,100,100,100,100,100,\n\n// state[20 - 2] 0x00f000 Byte 2 of 3\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,100,100,100,100, 137,138,100,139, 35, 51, 56, 57,\n 53, 53, 53, 53, 58, 59, 60, 61, 154, 62, 53, 63, 36, 19, 20,109,\n\n// state[21 - 2] 0x00ff40 Byte 3 of 3\n  0,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n  0, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n\n// state[22 - 2] 0x00ff80 Byte 3 of 3\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24,  0,  0,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24,  0,\n\n// state[23 - 2] 0x000000 Byte 2 of 4\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\n146,  2,182,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2, 22,  2,  2,\n106,106,106,106,106,106,106,106, 106,106,140,  2,  2,  2,  2,142,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n\n// state[24 - 2] 0x01d000 Byte 3 of 4\n  3,  3,  3,  3,  3, 23,155,  3,   3, 44,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[25 - 2] 0x01d140 Byte 4 of 4\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0, 36,  36, 36,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0, 36, 36, 36, 36, 36,\n\n// state[26 - 2] 0x0000c0 Byte 2 of 2\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  0,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  0,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[27 - 2] 0x000100 Byte 2 of 2\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[28 - 2] 0x001000 Byte 2 of 3\n 95, 96, 97, 98,100,101,102,103, 110,111,112,113,114,115,116,119,\n120,121,121,121,121,121,121,121, 121,122,123,124,159,160,125,126,\n127,128,129,  3,161,162,173,174, 170,  3,  3,  3,180,181,  3,  3,\n  3,  3,  3,  3, 27, 28, 29,152,  25, 25, 30, 31, 40, 41, 42, 43,\n\n// state[29 - 2] 0x001d00 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  2,  2,   2,  2,  2,  3,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[30 - 2] 0x001d40 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  2,  2,  2,\n  2,  2,  1,  1,  1,  1,  2,  2,   2,  2,  2,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   3,  1,  1,  1,  1,  1,  1,  1,\n\n// state[31 - 2] 0x001d80 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  2,\n\n// state[32 - 2] 0x001e80 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n\n// state[33 - 2] 0x001ec0 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  0,  0,  0,  0,  0,  0,\n\n// state[34 - 2] 0x002040 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  1,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  1,\n\n// state[35 - 2] 0x002080 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  1,  1,  1,  1,  1,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[36 - 2] 0x002c40 Byte 3 of 3\n 51, 51, 51, 51, 51, 51, 51, 51,  51, 51, 51, 51, 51, 51, 51, 51,\n 51, 51, 51, 51, 51, 51, 51, 51,  51, 51, 51, 51, 51, 51, 51,  0,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  0,  0,  0,\n  0,  0,  0,  0,  1,  1,  1,  1,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[37 - 2] 0x00fb00 Byte 3 of 3\n  1,  1,  1,  1,  1,  1,  1,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  4,  4,  4,  4,  4,   0,  0,  0,  0,  0,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  0,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  0,   5,  5,  5,  5,  5,  0,  5,  0,\n\n// state[38 - 2] 0x00ff00 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  1,  1,  1,  1,  1,\n  1,  1,  1,  1,  1,  1,  1,  1,   1,  1,  1,  0,  0,  0,  0,  0,\n\n// state[39 - 2] 0x000340 Byte 2 of 2\n 36, 36, 36, 36, 36, 36, 36, 36,  36, 36, 36, 36, 36, 36, 36, 36,\n 36, 36, 36, 36, 36, 36, 36, 36,  36, 36, 36, 36, 36, 36, 36, 36,\n 36, 36, 36, 36, 36, 36, 36, 36,  36, 36, 36, 36, 36, 36, 36, 36,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  2,  2,  2,  2,  0,  0,\n\n// state[40 - 2] 0x000380 Byte 2 of 2\n  0,  0,  0,  0,  0,  0,  2,  0,   2,  2,  2,  0,  2,  0,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  0,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n\n// state[41 - 2] 0x0003c0 Byte 2 of 2\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  0,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2, 49, 49, 49, 49, 49, 49,  49, 49, 49, 49, 49, 49, 49, 49,\n  2,  2,  2,  2,  2,  2,  0,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n\n// state[42 - 2] 0x001f00 Byte 3 of 3\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  0,  0,   2,  2,  2,  2,  2,  2,  0,  0,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n\n// state[43 - 2] 0x001f40 Byte 3 of 3\n  2,  2,  2,  2,  2,  2,  0,  0,   2,  2,  2,  2,  2,  2,  0,  0,\n  2,  2,  2,  2,  2,  2,  2,  2,   0,  2,  0,  2,  0,  2,  0,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  0,  0,\n\n// state[44 - 2] 0x001f80 Byte 3 of 3\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  0,  2,  2,   2,  2,  2,  2,  2,  0,  2,  0,\n\n// state[45 - 2] 0x001fc0 Byte 3 of 3\n  0,  0,  2,  2,  2,  0,  2,  2,   2,  2,  2,  2,  2,  0,  0,  0,\n  2,  2,  2,  2,  0,  0,  2,  2,   2,  2,  2,  2,  0,  0,  0,  0,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  0,  0,  0,\n  0,  0,  2,  2,  2,  0,  2,  2,   2,  2,  2,  2,  2,  0,  0,  0,\n\n// state[46 - 2] 0x01d240 Byte 4 of 4\n  0,  0,  2,  2,  2,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[47 - 2] 0x000400 Byte 2 of 2\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[48 - 2] 0x000480 Byte 2 of 2\n  3,  3,  0,  3,  3,  3,  3,  0,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[49 - 2] 0x000500 Byte 2 of 2\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  4,  4,  4,  4,  4,  4,  4,   4,  4,  4,  4,  4,  4,  4,  4,\n\n// state[50 - 2] 0x000540 Byte 2 of 2\n  4,  4,  4,  4,  4,  4,  4,  4,   4,  4,  4,  4,  4,  4,  4,  4,\n  4,  4,  4,  4,  4,  4,  4,  0,   0,  4,  0,  0,  0,  0,  0,  0,\n  0,  4,  4,  4,  4,  4,  4,  4,   4,  4,  4,  4,  4,  4,  4,  4,\n  4,  4,  4,  4,  4,  4,  4,  4,   4,  4,  4,  4,  4,  4,  4,  4,\n\n// state[51 - 2] 0x000580 Byte 2 of 2\n  4,  4,  4,  4,  4,  4,  4,  4,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  0,  5,\n\n// state[52 - 2] 0x0005c0 Byte 2 of 2\n  0,  5,  5,  0,  5,  5,  0,  5,   0,  0,  0,  0,  0,  0,  0,  0,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  5,  5,  5,  5,  5,  5,  5,  5,   5,  5,  5,  0,  0,  0,  0,  0,\n  5,  5,  5,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[53 - 2] 0x00fb40 Byte 3 of 3\n  5,  5,  0,  5,  5,  0,  5,  5,   5,  5,  5,  5,  5,  5,  5,  5,\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n\n// state[54 - 2] 0x000600 Byte 2 of 2\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  6,  6,  6,  6,  6,  6,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  0,  0,  0,  0,  0,\n\n// state[55 - 2] 0x000680 Byte 2 of 2\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n\n// state[56 - 2] 0x0006c0 Byte 2 of 2\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n  6,  6,  6,  6,  0,  6,  6,  6,   6,  6,  6,  6,  6,  0,  6,  6,\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  0,  6,  6,  6,  6,  6,  6,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  6,  6,  6,  0,  0,  6,\n\n// state[57 - 2] 0x000740 Byte 2 of 2\n  7,  7,  7,  7,  7,  7,  7,  7,   7,  7,  7,  0,  0,  7,  7,  7,\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[58 - 2] 0x00fb80 Byte 3 of 3\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n  6,  6,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[59 - 2] 0x00fbc0 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n\n// state[60 - 2] 0x00fd00 Byte 3 of 3\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  0,  0,\n\n// state[61 - 2] 0x00fd40 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n\n// state[62 - 2] 0x00fd80 Byte 3 of 3\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n  0,  0,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n\n// state[63 - 2] 0x00fdc0 Byte 3 of 3\n  6,  6,  6,  6,  6,  6,  6,  6,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  0,  0,  0,  0,\n\n// state[64 - 2] 0x00fe40 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  6,  6,  6,  6,  6,  0,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n\n// state[65 - 2] 0x00fec0 Byte 3 of 3\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  6,  6,  6,\n  6,  6,  6,  6,  6,  6,  6,  6,   6,  6,  6,  6,  6,  0,  0,  0,\n\n// state[66 - 2] 0x000700 Byte 2 of 2\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  7,  7,  7,  7,  7,  7,  7,  7,   7,  7,  7,  7,  7,  7,  7,  7,\n  7,  7,  7,  7,  7,  7,  7,  7,   7,  7,  7,  7,  7,  7,  7,  7,\n  7,  7,  7,  7,  7,  7,  7,  7,   7,  7,  7,  7,  7,  7,  7,  7,\n\n// state[67 - 2] 0x000780 Byte 2 of 2\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n  8,  8,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[68 - 2] 0x000000 Byte 2 of 3\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\n  3,  3,  3,  3, 67, 68, 69, 70,  71, 72, 73, 74, 75, 76, 77, 78,\n 79, 80, 81, 82, 83, 84, 85, 86,  87, 88, 89, 90, 91, 92, 93, 94,\n\n// state[69 - 2] 0x000900 Byte 3 of 3\n  0,  9,  9,  9,  9,  9,  9,  9,   9,  9,  9,  9,  9,  9,  9,  9,\n  9,  9,  9,  9,  9,  9,  9,  9,   9,  9,  9,  9,  9,  9,  9,  9,\n  9,  9,  9,  9,  9,  9,  9,  9,   9,  9,  9,  9,  9,  9,  9,  9,\n  9,  9,  9,  9,  9,  9,  9,  9,   9,  9,  0,  0,  9,  9,  9,  9,\n\n// state[70 - 2] 0x000940 Byte 3 of 3\n  9,  9,  9,  9,  9,  9,  9,  9,   9,  9,  9,  9,  9,  9,  0,  0,\n  9,  9,  9,  9,  9,  0,  0,  0,   9,  9,  9,  9,  9,  9,  9,  9,\n  9,  9,  9,  9,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  9,  9,  9,  9,  9,\n\n// state[71 - 2] 0x000980 Byte 3 of 3\n  0, 10, 10, 10,  0, 10, 10, 10,  10, 10, 10, 10, 10,  0,  0, 10,\n 10,  0,  0, 10, 10, 10, 10, 10,  10, 10, 10, 10, 10, 10, 10, 10,\n 10, 10, 10, 10, 10, 10, 10, 10,  10,  0, 10, 10, 10, 10, 10, 10,\n 10,  0, 10,  0,  0,  0, 10, 10,  10, 10,  0,  0, 10, 10, 10, 10,\n\n// state[72 - 2] 0x0009c0 Byte 3 of 3\n 10, 10, 10, 10, 10,  0,  0, 10,  10,  0,  0, 10, 10, 10, 10,  0,\n  0,  0,  0,  0,  0,  0,  0, 10,   0,  0,  0,  0, 10, 10,  0, 10,\n 10, 10, 10, 10,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n 10, 10,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[73 - 2] 0x000a00 Byte 3 of 3\n  0, 11, 11, 11,  0, 11, 11, 11,  11, 11, 11,  0,  0,  0,  0, 11,\n 11,  0,  0, 11, 11, 11, 11, 11,  11, 11, 11, 11, 11, 11, 11, 11,\n 11, 11, 11, 11, 11, 11, 11, 11,  11,  0, 11, 11, 11, 11, 11, 11,\n 11,  0, 11, 11,  0, 11, 11,  0,  11, 11,  0,  0, 11,  0, 11, 11,\n\n// state[74 - 2] 0x000a40 Byte 3 of 3\n 11, 11, 11,  0,  0,  0,  0, 11,  11,  0,  0, 11, 11, 11,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0, 11, 11, 11, 11,  0, 11,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n 11, 11, 11, 11, 11,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[75 - 2] 0x000a80 Byte 3 of 3\n  0, 12, 12, 12,  0, 12, 12, 12,  12, 12, 12, 12, 12, 12,  0, 12,\n 12, 12,  0, 12, 12, 12, 12, 12,  12, 12, 12, 12, 12, 12, 12, 12,\n 12, 12, 12, 12, 12, 12, 12, 12,  12,  0, 12, 12, 12, 12, 12, 12,\n 12,  0, 12, 12,  0, 12, 12, 12,  12, 12,  0,  0, 12, 12, 12, 12,\n\n// state[76 - 2] 0x000ac0 Byte 3 of 3\n 12, 12, 12, 12, 12, 12,  0, 12,  12, 12,  0, 12, 12, 12,  0,  0,\n 12,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n 12, 12, 12, 12,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[77 - 2] 0x000b00 Byte 3 of 3\n  0, 13, 13, 13,  0, 13, 13, 13,  13, 13, 13, 13, 13,  0,  0, 13,\n 13,  0,  0, 13, 13, 13, 13, 13,  13, 13, 13, 13, 13, 13, 13, 13,\n 13, 13, 13, 13, 13, 13, 13, 13,  13,  0, 13, 13, 13, 13, 13, 13,\n 13,  0, 13, 13,  0, 13, 13, 13,  13, 13,  0,  0, 13, 13, 13, 13,\n\n// state[78 - 2] 0x000b40 Byte 3 of 3\n 13, 13, 13, 13,  0,  0,  0, 13,  13,  0,  0, 13, 13, 13,  0,  0,\n  0,  0,  0,  0,  0,  0, 13, 13,   0,  0,  0,  0, 13, 13,  0, 13,\n 13, 13,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0, 13,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[79 - 2] 0x000b80 Byte 3 of 3\n  0,  0, 14, 14,  0, 14, 14, 14,  14, 14, 14,  0,  0,  0, 14, 14,\n 14,  0, 14, 14, 14, 14,  0,  0,   0, 14, 14,  0, 14,  0, 14, 14,\n  0,  0,  0, 14, 14,  0,  0,  0,  14, 14, 14,  0,  0,  0, 14, 14,\n 14, 14, 14, 14, 14, 14, 14, 14,  14, 14,  0,  0,  0,  0, 14, 14,\n\n// state[80 - 2] 0x000bc0 Byte 3 of 3\n 14, 14, 14,  0,  0,  0, 14, 14,  14,  0, 14, 14, 14, 14,  0,  0,\n  0,  0,  0,  0,  0,  0,  0, 14,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[81 - 2] 0x000c00 Byte 3 of 3\n  0, 15, 15, 15,  0, 15, 15, 15,  15, 15, 15, 15, 15,  0, 15, 15,\n 15,  0, 15, 15, 15, 15, 15, 15,  15, 15, 15, 15, 15, 15, 15, 15,\n 15, 15, 15, 15, 15, 15, 15, 15,  15,  0, 15, 15, 15, 15, 15, 15,\n 15, 15, 15, 15,  0, 15, 15, 15,  15, 15,  0,  0,  0,  0, 15, 15,\n\n// state[82 - 2] 0x000c40 Byte 3 of 3\n 15, 15, 15, 15, 15,  0, 15, 15,  15,  0, 15, 15, 15, 15,  0,  0,\n  0,  0,  0,  0,  0, 15, 15,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n 15, 15,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[83 - 2] 0x000c80 Byte 3 of 3\n  0,  0, 16, 16,  0, 16, 16, 16,  16, 16, 16, 16, 16,  0, 16, 16,\n 16,  0, 16, 16, 16, 16, 16, 16,  16, 16, 16, 16, 16, 16, 16, 16,\n 16, 16, 16, 16, 16, 16, 16, 16,  16,  0, 16, 16, 16, 16, 16, 16,\n 16, 16, 16, 16,  0, 16, 16, 16,  16, 16,  0,  0, 16, 16, 16, 16,\n\n// state[84 - 2] 0x000cc0 Byte 3 of 3\n 16, 16, 16, 16, 16,  0, 16, 16,  16,  0, 16, 16, 16, 16,  0,  0,\n  0,  0,  0,  0,  0, 16, 16,  0,   0,  0,  0,  0,  0,  0, 16,  0,\n 16, 16, 16, 16,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[85 - 2] 0x000d00 Byte 3 of 3\n  0,  0, 17, 17,  0, 17, 17, 17,  17, 17, 17, 17, 17,  0, 17, 17,\n 17,  0, 17, 17, 17, 17, 17, 17,  17, 17, 17, 17, 17, 17, 17, 17,\n 17, 17, 17, 17, 17, 17, 17, 17,  17,  0, 17, 17, 17, 17, 17, 17,\n 17, 17, 17, 17, 17, 17, 17, 17,  17, 17,  0,  0,  0,  0, 17, 17,\n\n// state[86 - 2] 0x000d40 Byte 3 of 3\n 17, 17, 17, 17,  0,  0, 17, 17,  17,  0, 17, 17, 17, 17,  0,  0,\n  0,  0,  0,  0,  0,  0,  0, 17,   0,  0,  0,  0,  0,  0,  0,  0,\n 17, 17,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[87 - 2] 0x000d80 Byte 3 of 3\n  0,  0, 18, 18,  0, 18, 18, 18,  18, 18, 18, 18, 18, 18, 18, 18,\n 18, 18, 18, 18, 18, 18, 18,  0,   0,  0, 18, 18, 18, 18, 18, 18,\n 18, 18, 18, 18, 18, 18, 18, 18,  18, 18, 18, 18, 18, 18, 18, 18,\n 18, 18,  0, 18, 18, 18, 18, 18,  18, 18, 18, 18,  0, 18,  0,  0,\n\n// state[88 - 2] 0x000dc0 Byte 3 of 3\n 18, 18, 18, 18, 18, 18, 18,  0,   0,  0, 18,  0,  0,  0,  0, 18,\n 18, 18, 18, 18, 18,  0, 18,  0,  18, 18, 18, 18, 18, 18, 18, 18,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0, 18, 18,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[89 - 2] 0x000e00 Byte 3 of 3\n  0, 19, 19, 19, 19, 19, 19, 19,  19, 19, 19, 19, 19, 19, 19, 19,\n 19, 19, 19, 19, 19, 19, 19, 19,  19, 19, 19, 19, 19, 19, 19, 19,\n 19, 19, 19, 19, 19, 19, 19, 19,  19, 19, 19, 19, 19, 19, 19, 19,\n 19, 19, 19, 19, 19, 19, 19, 19,  19, 19, 19,  0,  0,  0,  0,  0,\n\n// state[90 - 2] 0x000e40 Byte 3 of 3\n 19, 19, 19, 19, 19, 19, 19, 19,  19, 19, 19, 19, 19, 19, 19,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[91 - 2] 0x000e80 Byte 3 of 3\n  0, 20, 20,  0, 20,  0,  0, 20,  20,  0, 20,  0,  0, 20,  0,  0,\n  0,  0,  0,  0, 20, 20, 20, 20,   0, 20, 20, 20, 20, 20, 20, 20,\n  0, 20, 20, 20,  0, 20,  0, 20,   0,  0, 20, 20,  0, 20, 20, 20,\n 20, 20, 20, 20, 20, 20, 20, 20,  20, 20,  0, 20, 20, 20,  0,  0,\n\n// state[92 - 2] 0x000ec0 Byte 3 of 3\n 20, 20, 20, 20, 20,  0, 20,  0,  20, 20, 20, 20, 20, 20,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0, 20, 20,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[93 - 2] 0x000f00 Byte 3 of 3\n 21,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,  21, 21,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0, 21,  0, 21,   0, 21,  0,  0,  0,  0, 21, 21,\n\n// state[94 - 2] 0x000f40 Byte 3 of 3\n 21, 21, 21, 21, 21, 21, 21, 21,   0, 21, 21, 21, 21, 21, 21, 21,\n 21, 21, 21, 21, 21, 21, 21, 21,  21, 21, 21, 21, 21, 21, 21, 21,\n 21, 21, 21, 21, 21, 21, 21, 21,  21, 21, 21,  0,  0,  0,  0,  0,\n  0, 21, 21, 21, 21, 21, 21, 21,  21, 21, 21, 21, 21, 21, 21, 21,\n\n// state[95 - 2] 0x000f80 Byte 3 of 3\n 21, 21, 21, 21, 21,  0, 21, 21,  21, 21, 21, 21,  0,  0,  0,  0,\n 21, 21, 21, 21, 21, 21, 21, 21,   0, 21, 21, 21, 21, 21, 21, 21,\n 21, 21, 21, 21, 21, 21, 21, 21,  21, 21, 21, 21, 21, 21, 21, 21,\n 21, 21, 21, 21, 21, 21, 21, 21,  21, 21, 21, 21, 21,  0,  0,  0,\n\n// state[96 - 2] 0x000fc0 Byte 3 of 3\n  0,  0,  0,  0,  0,  0, 21,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[97 - 2] 0x001000 Byte 3 of 3\n 22, 22, 22, 22, 22, 22, 22, 22,  22, 22, 22, 22, 22, 22, 22, 22,\n 22, 22, 22, 22, 22, 22, 22, 22,  22, 22, 22, 22, 22, 22, 22, 22,\n 22, 22,  0, 22, 22, 22, 22, 22,   0, 22, 22,  0, 22, 22, 22, 22,\n 22, 22, 22,  0,  0,  0, 22, 22,  22, 22,  0,  0,  0,  0,  0,  0,\n\n// state[98 - 2] 0x001040 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n 22, 22, 22, 22, 22, 22, 22, 22,  22, 22,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[99 - 2] 0x001080 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n 23, 23, 23, 23, 23, 23, 23, 23,  23, 23, 23, 23, 23, 23, 23, 23,\n 23, 23, 23, 23, 23, 23, 23, 23,  23, 23, 23, 23, 23, 23, 23, 23,\n\n// state[100 - 2] 0x0010c0 Byte 3 of 3\n 23, 23, 23, 23, 23, 23,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n 23, 23, 23, 23, 23, 23, 23, 23,  23, 23, 23, 23, 23, 23, 23, 23,\n 23, 23, 23, 23, 23, 23, 23, 23,  23, 23, 23, 23, 23, 23, 23, 23,\n 23, 23, 23, 23, 23, 23, 23, 23,  23, 23, 23,  0, 23,  0,  0,  0,\n\n// state[101 - 2] 0x002d00 Byte 3 of 3\n 23, 23, 23, 23, 23, 23, 23, 23,  23, 23, 23, 23, 23, 23, 23, 23,\n 23, 23, 23, 23, 23, 23, 23, 23,  23, 23, 23, 23, 23, 23, 23, 23,\n 23, 23, 23, 23, 23, 23,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n 52, 52, 52, 52, 52, 52, 52, 52,  52, 52, 52, 52, 52, 52, 52, 52,\n\n// state[102 - 2] 0x001100 Byte 3 of 3\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n\n// state[103 - 2] 0x001140 Byte 3 of 3\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24,  0,  0,  0,  0,  0, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n\n// state[104 - 2] 0x001180 Byte 3 of 3\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24,  0,  0,  0,  0,  0,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n\n// state[105 - 2] 0x0011c0 Byte 3 of 3\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24,  0,  0,  0,  0,  0,  0,\n\n// state[106 - 2] 0x003100 Byte 3 of 3\n  0,  0,  0,  0,  0, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24,  0,  0,  0,\n  0, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n\n// state[107 - 2] 0x003180 Byte 3 of 3\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[108 - 2] 0x005000 Byte 2 of 3\n100,100,100,100,100,100,100,100, 100,100,100,100,100,100,100,100,\n100,100,100,100,100,100,100,100, 100,100,100,100,100,100,100,100,\n100,100,100,100,100,100,100,100, 100,100,100,100,100,100,100,100,\n100,100,100,100,100,100,100,100, 100,100,100,100,100,100,100,100,\n\n// state[109 - 2] 0x00d000 Byte 2 of 3\n100,100,100,100,100,100,100,100, 100,100,100,100,100,100,100,100,\n100,100,100,100,100,100,100,100, 100,100,100,100,100,100,108,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[110 - 2] 0x00d780 Byte 3 of 3\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[111 - 2] 0x00ffc0 Byte 3 of 3\n  0,  0, 24, 24, 24, 24, 24, 24,   0,  0, 24, 24, 24, 24, 24, 24,\n  0,  0, 24, 24, 24, 24, 24, 24,   0,  0, 24, 24, 24,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[112 - 2] 0x001200 Byte 3 of 3\n 25, 25, 25, 25, 25, 25, 25, 25,  25, 25, 25, 25, 25, 25, 25, 25,\n 25, 25, 25, 25, 25, 25, 25, 25,  25, 25, 25, 25, 25, 25, 25, 25,\n 25, 25, 25, 25, 25, 25, 25, 25,  25, 25, 25, 25, 25, 25, 25, 25,\n 25, 25, 25, 25, 25, 25, 25, 25,  25, 25, 25, 25, 25, 25, 25, 25,\n\n// state[113 - 2] 0x001240 Byte 3 of 3\n 25, 25, 25, 25, 25, 25, 25, 25,  25,  0, 25, 25, 25, 25,  0,  0,\n 25, 25, 25, 25, 25, 25, 25,  0,  25,  0, 25, 25, 25, 25,  0,  0,\n 25, 25, 25, 25, 25, 25, 25, 25,  25, 25, 25, 25, 25, 25, 25, 25,\n 25, 25, 25, 25, 25, 25, 25, 25,  25, 25, 25, 25, 25, 25, 25, 25,\n\n// state[114 - 2] 0x001280 Byte 3 of 3\n 25, 25, 25, 25, 25, 25, 25, 25,  25,  0, 25, 25, 25, 25,  0,  0,\n 25, 25, 25, 25, 25, 25, 25, 25,  25, 25, 25, 25, 25, 25, 25, 25,\n 25, 25, 25, 25, 25, 25, 25, 25,  25, 25, 25, 25, 25, 25, 25, 25,\n 25,  0, 25, 25, 25, 25,  0,  0,  25, 25, 25, 25, 25, 25, 25,  0,\n\n// state[115 - 2] 0x0012c0 Byte 3 of 3\n 25,  0, 25, 25, 25, 25,  0,  0,  25, 25, 25, 25, 25, 25, 25, 25,\n 25, 25, 25, 25, 25, 25, 25,  0,  25, 25, 25, 25, 25, 25, 25, 25,\n 25, 25, 25, 25, 25, 25, 25, 25,  25, 25, 25, 25, 25, 25, 25, 25,\n 25, 25, 25, 25, 25, 25, 25, 25,  25, 25, 25, 25, 25, 25, 25, 25,\n\n// state[116 - 2] 0x001300 Byte 3 of 3\n 25, 25, 25, 25, 25, 25, 25, 25,  25, 25, 25, 25, 25, 25, 25, 25,\n 25,  0, 25, 25, 25, 25,  0,  0,  25, 25, 25, 25, 25, 25, 25, 25,\n 25, 25, 25, 25, 25, 25, 25, 25,  25, 25, 25, 25, 25, 25, 25, 25,\n 25, 25, 25, 25, 25, 25, 25, 25,  25, 25, 25, 25, 25, 25, 25, 25,\n\n// state[117 - 2] 0x001340 Byte 3 of 3\n 25, 25, 25, 25, 25, 25, 25, 25,  25, 25, 25, 25, 25, 25, 25, 25,\n 25, 25, 25, 25, 25, 25, 25, 25,  25, 25, 25,  0,  0,  0,  0, 25,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[118 - 2] 0x001380 Byte 3 of 3\n 25, 25, 25, 25, 25, 25, 25, 25,  25, 25, 25, 25, 25, 25, 25, 25,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n 26, 26, 26, 26, 26, 26, 26, 26,  26, 26, 26, 26, 26, 26, 26, 26,\n 26, 26, 26, 26, 26, 26, 26, 26,  26, 26, 26, 26, 26, 26, 26, 26,\n\n// state[119 - 2] 0x002d80 Byte 3 of 3\n 25, 25, 25, 25, 25, 25, 25, 25,  25, 25, 25, 25, 25, 25, 25, 25,\n 25, 25, 25, 25, 25, 25, 25,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n 25, 25, 25, 25, 25, 25, 25,  0,  25, 25, 25, 25, 25, 25, 25,  0,\n 25, 25, 25, 25, 25, 25, 25,  0,  25, 25, 25, 25, 25, 25, 25,  0,\n\n// state[120 - 2] 0x002dc0 Byte 3 of 3\n 25, 25, 25, 25, 25, 25, 25,  0,  25, 25, 25, 25, 25, 25, 25,  0,\n 25, 25, 25, 25, 25, 25, 25,  0,  25, 25, 25, 25, 25, 25, 25,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[121 - 2] 0x0013c0 Byte 3 of 3\n 26, 26, 26, 26, 26, 26, 26, 26,  26, 26, 26, 26, 26, 26, 26, 26,\n 26, 26, 26, 26, 26, 26, 26, 26,  26, 26, 26, 26, 26, 26, 26, 26,\n 26, 26, 26, 26, 26, 26, 26, 26,  26, 26, 26, 26, 26, 26, 26, 26,\n 26, 26, 26, 26, 26,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[122 - 2] 0x001400 Byte 3 of 3\n  0, 27, 27, 27, 27, 27, 27, 27,  27, 27, 27, 27, 27, 27, 27, 27,\n 27, 27, 27, 27, 27, 27, 27, 27,  27, 27, 27, 27, 27, 27, 27, 27,\n 27, 27, 27, 27, 27, 27, 27, 27,  27, 27, 27, 27, 27, 27, 27, 27,\n 27, 27, 27, 27, 27, 27, 27, 27,  27, 27, 27, 27, 27, 27, 27, 27,\n\n// state[123 - 2] 0x001440 Byte 3 of 3\n 27, 27, 27, 27, 27, 27, 27, 27,  27, 27, 27, 27, 27, 27, 27, 27,\n 27, 27, 27, 27, 27, 27, 27, 27,  27, 27, 27, 27, 27, 27, 27, 27,\n 27, 27, 27, 27, 27, 27, 27, 27,  27, 27, 27, 27, 27, 27, 27, 27,\n 27, 27, 27, 27, 27, 27, 27, 27,  27, 27, 27, 27, 27, 27, 27, 27,\n\n// state[124 - 2] 0x001640 Byte 3 of 3\n 27, 27, 27, 27, 27, 27, 27, 27,  27, 27, 27, 27, 27, 27, 27, 27,\n 27, 27, 27, 27, 27, 27, 27, 27,  27, 27, 27, 27, 27, 27, 27, 27,\n 27, 27, 27, 27, 27, 27, 27, 27,  27, 27, 27, 27, 27,  0,  0, 27,\n 27, 27, 27, 27, 27, 27, 27,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[125 - 2] 0x001680 Byte 3 of 3\n  0, 28, 28, 28, 28, 28, 28, 28,  28, 28, 28, 28, 28, 28, 28, 28,\n 28, 28, 28, 28, 28, 28, 28, 28,  28, 28, 28,  0,  0,  0,  0,  0,\n 29, 29, 29, 29, 29, 29, 29, 29,  29, 29, 29, 29, 29, 29, 29, 29,\n 29, 29, 29, 29, 29, 29, 29, 29,  29, 29, 29, 29, 29, 29, 29, 29,\n\n// state[126 - 2] 0x0016c0 Byte 3 of 3\n 29, 29, 29, 29, 29, 29, 29, 29,  29, 29, 29, 29, 29, 29, 29, 29,\n 29, 29, 29, 29, 29, 29, 29, 29,  29, 29, 29, 29, 29, 29, 29, 29,\n 29, 29, 29, 29, 29, 29, 29, 29,  29, 29, 29,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[127 - 2] 0x001780 Byte 3 of 3\n 30, 30, 30, 30, 30, 30, 30, 30,  30, 30, 30, 30, 30, 30, 30, 30,\n 30, 30, 30, 30, 30, 30, 30, 30,  30, 30, 30, 30, 30, 30, 30, 30,\n 30, 30, 30, 30, 30, 30, 30, 30,  30, 30, 30, 30, 30, 30, 30, 30,\n 30, 30, 30, 30,  0,  0, 30, 30,  30, 30, 30, 30, 30, 30, 30, 30,\n\n// state[128 - 2] 0x0017c0 Byte 3 of 3\n 30, 30, 30, 30, 30, 30, 30, 30,  30, 30, 30, 30, 30, 30, 30, 30,\n 30, 30, 30, 30,  0,  0,  0, 30,   0,  0,  0,  0, 30, 30,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[129 - 2] 0x001800 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0, 31, 31, 31,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n 31, 31, 31, 31, 31, 31, 31, 31,  31, 31, 31, 31, 31, 31, 31, 31,\n 31, 31, 31, 31, 31, 31, 31, 31,  31, 31, 31, 31, 31, 31, 31, 31,\n\n// state[130 - 2] 0x001840 Byte 3 of 3\n 31, 31, 31, 31, 31, 31, 31, 31,  31, 31, 31, 31, 31, 31, 31, 31,\n 31, 31, 31, 31, 31, 31, 31, 31,  31, 31, 31, 31, 31, 31, 31, 31,\n 31, 31, 31, 31, 31, 31, 31, 31,  31, 31, 31, 31, 31, 31, 31, 31,\n 31, 31, 31, 31, 31, 31, 31, 31,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[131 - 2] 0x001880 Byte 3 of 3\n 31, 31, 31, 31, 31, 31, 31, 31,  31, 31, 31, 31, 31, 31, 31, 31,\n 31, 31, 31, 31, 31, 31, 31, 31,  31, 31, 31, 31, 31, 31, 31, 31,\n 31, 31, 31, 31, 31, 31, 31, 31,  31, 31,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[132 - 2] 0x003040 Byte 3 of 3\n  0, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n\n// state[133 - 2] 0x003080 Byte 3 of 3\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24,  0,   0, 36, 36,  0,  0, 24, 24, 24,\n  0, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n\n// state[134 - 2] 0x0031c0 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n\n// state[135 - 2] 0x004000 Byte 2 of 3\n100,100,100,100,100,100,100,100, 100,100,100,100,100,100,100,100,\n100,100,100,100,100,100,100,100, 100,100,100,100,100,100,100,100,\n100,100,100,100,100,100,100,100, 100,100,100,100,100,100,100,100,\n100,100,100,100,100,100,134,  3, 100,100,100,100,100,100,100,100,\n\n// state[136 - 2] 0x004d80 Byte 3 of 3\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[137 - 2] 0x009000 Byte 2 of 3\n100,100,100,100,100,100,100,100, 100,100,100,100,100,100,100,100,\n100,100,100,100,100,100,100,100, 100,100,100,100,100,100,100,100,\n100,100,100,100,100,100,100,100, 100,100,100,100,100,100,100,100,\n100,100,100,100,100,100,100,100, 100,100,100,100,100,100,136,  3,\n\n// state[138 - 2] 0x009f80 Byte 3 of 3\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24,  0,  0,  0,  0,\n\n// state[139 - 2] 0x00fa00 Byte 3 of 3\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24,  0,  0,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n\n// state[140 - 2] 0x00fa40 Byte 3 of 3\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24,  0,  0,  0,  0,  0,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n\n// state[141 - 2] 0x00fac0 Byte 3 of 3\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[142 - 2] 0x02a000 Byte 3 of 4\n100,100,100,100,100,100,100,100, 100,100,100,100,100,100,100,100,\n100,100,100,100,100,100,100,100, 100,100,100,141,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[143 - 2] 0x02a6c0 Byte 4 of 4\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[144 - 2] 0x02f000 Byte 3 of 4\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n100,100,100,100,100,100,100,100, 143,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[145 - 2] 0x02fa00 Byte 4 of 4\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24, 24, 24,\n 24, 24, 24, 24, 24, 24, 24, 24,  24, 24, 24, 24, 24, 24,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[146 - 2] 0x00a000 Byte 3 of 3\n 32, 32, 32, 32, 32, 32, 32, 32,  32, 32, 32, 32, 32, 32, 32, 32,\n 32, 32, 32, 32, 32, 32, 32, 32,  32, 32, 32, 32, 32, 32, 32, 32,\n 32, 32, 32, 32, 32, 32, 32, 32,  32, 32, 32, 32, 32, 32, 32, 32,\n 32, 32, 32, 32, 32, 32, 32, 32,  32, 32, 32, 32, 32, 32, 32, 32,\n\n// state[147 - 2] 0x00a480 Byte 3 of 3\n 32, 32, 32, 32, 32, 32, 32, 32,  32, 32, 32, 32, 32,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[148 - 2] 0x010000 Byte 3 of 4\n163,164,165,166,  3,  3,  3,  3,   3,  3,  3,  3,147,148,167,178,\n149,150,168,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n169,  3,  3,  3,185,  3,  3,  3, 179,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[149 - 2] 0x010300 Byte 4 of 4\n 33, 33, 33, 33, 33, 33, 33, 33,  33, 33, 33, 33, 33, 33, 33, 33,\n 33, 33, 33, 33, 33, 33, 33, 33,  33, 33, 33, 33, 33, 33, 33,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n 34, 34, 34, 34, 34, 34, 34, 34,  34, 34, 34, 34, 34, 34, 34, 34,\n\n// state[150 - 2] 0x010340 Byte 4 of 4\n 34,  0, 34, 34, 34, 34, 34, 34,  34, 34,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[151 - 2] 0x010400 Byte 4 of 4\n 35, 35, 35, 35, 35, 35, 35, 35,  35, 35, 35, 35, 35, 35, 35, 35,\n 35, 35, 35, 35, 35, 35, 35, 35,  35, 35, 35, 35, 35, 35, 35, 35,\n 35, 35, 35, 35, 35, 35, 35, 35,  35, 35, 35, 35, 35, 35, 35, 35,\n 35, 35, 35, 35, 35, 35, 35, 35,  35, 35, 35, 35, 35, 35, 35, 35,\n\n// state[152 - 2] 0x010440 Byte 4 of 4\n 35, 35, 35, 35, 35, 35, 35, 35,  35, 35, 35, 35, 35, 35, 35, 35,\n 45, 45, 45, 45, 45, 45, 45, 45,  45, 45, 45, 45, 45, 45, 45, 45,\n 45, 45, 45, 45, 45, 45, 45, 45,  45, 45, 45, 45, 45, 45, 45, 45,\n 45, 45, 45, 45, 45, 45, 45, 45,  45, 45, 45, 45, 45, 45, 45, 45,\n\n// state[153 - 2] 0x000300 Byte 2 of 2\n 36, 36, 36, 36, 36, 36, 36, 36,  36, 36, 36, 36, 36, 36, 36, 36,\n 36, 36, 36, 36, 36, 36, 36, 36,  36, 36, 36, 36, 36, 36, 36, 36,\n 36, 36, 36, 36, 36, 36, 36, 36,  36, 36, 36, 36, 36, 36, 36, 36,\n 36, 36, 36, 36, 36, 36, 36, 36,  36, 36, 36, 36, 36, 36, 36, 36,\n\n// state[154 - 2] 0x001dc0 Byte 3 of 3\n 36, 36, 36, 36, 36, 36, 36, 36,  36, 36, 36,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0, 36, 36,\n\n// state[155 - 2] 0x0020c0 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n 36, 36, 36, 36, 36, 36, 36, 36,  36, 36, 36, 36, 36, 36, 36, 36,\n 36, 36, 36, 36, 36, 36, 36, 36,  36, 36, 36, 36, 36, 36, 36, 36,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[156 - 2] 0x00fe00 Byte 3 of 3\n 36, 36, 36, 36, 36, 36, 36, 36,  36, 36, 36, 36, 36, 36, 36, 36,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n 36, 36, 36, 36,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[157 - 2] 0x01d180 Byte 4 of 4\n 36, 36, 36,  0,  0, 36, 36, 36,  36, 36, 36, 36,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0, 36, 36, 36, 36,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[158 - 2] 0x0c0000 Byte 2 of 4\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n157,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n\n// state[159 - 2] 0x0e0000 Byte 3 of 4\n  3,  3,  3,  3,151,151,151,158,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[160 - 2] 0x0e01c0 Byte 4 of 4\n 36, 36, 36, 36, 36, 36, 36, 36,  36, 36, 36, 36, 36, 36, 36, 36,\n 36, 36, 36, 36, 36, 36, 36, 36,  36, 36, 36, 36, 36, 36, 36, 36,\n 36, 36, 36, 36, 36, 36, 36, 36,  36, 36, 36, 36, 36, 36, 36, 36,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[161 - 2] 0x001700 Byte 3 of 3\n 37, 37, 37, 37, 37, 37, 37, 37,  37, 37, 37, 37, 37,  0, 37, 37,\n 37, 37, 37, 37, 37,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n 38, 38, 38, 38, 38, 38, 38, 38,  38, 38, 38, 38, 38, 38, 38, 38,\n 38, 38, 38, 38, 38,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[162 - 2] 0x001740 Byte 3 of 3\n 39, 39, 39, 39, 39, 39, 39, 39,  39, 39, 39, 39, 39, 39, 39, 39,\n 39, 39, 39, 39,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n 40, 40, 40, 40, 40, 40, 40, 40,  40, 40, 40, 40, 40,  0, 40, 40,\n 40,  0, 40, 40,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[163 - 2] 0x001900 Byte 3 of 3\n 41, 41, 41, 41, 41, 41, 41, 41,  41, 41, 41, 41, 41, 41, 41, 41,\n 41, 41, 41, 41, 41, 41, 41, 41,  41, 41, 41, 41, 41,  0,  0,  0,\n 41, 41, 41, 41, 41, 41, 41, 41,  41, 41, 41, 41,  0,  0,  0,  0,\n 41, 41, 41, 41, 41, 41, 41, 41,  41, 41, 41, 41,  0,  0,  0,  0,\n\n// state[164 - 2] 0x001940 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n 42, 42, 42, 42, 42, 42, 42, 42,  42, 42, 42, 42, 42, 42, 42, 42,\n 42, 42, 42, 42, 42, 42, 42, 42,  42, 42, 42, 42, 42, 42,  0,  0,\n 42, 42, 42, 42, 42,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[165 - 2] 0x010000 Byte 4 of 4\n 43, 43, 43, 43, 43, 43, 43, 43,  43, 43, 43, 43,  0, 43, 43, 43,\n 43, 43, 43, 43, 43, 43, 43, 43,  43, 43, 43, 43, 43, 43, 43, 43,\n 43, 43, 43, 43, 43, 43, 43,  0,  43, 43, 43, 43, 43, 43, 43, 43,\n 43, 43, 43, 43, 43, 43, 43, 43,  43, 43, 43,  0, 43, 43,  0, 43,\n\n// state[166 - 2] 0x010040 Byte 4 of 4\n 43, 43, 43, 43, 43, 43, 43, 43,  43, 43, 43, 43, 43, 43,  0,  0,\n 43, 43, 43, 43, 43, 43, 43, 43,  43, 43, 43, 43, 43, 43,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[167 - 2] 0x010080 Byte 4 of 4\n 43, 43, 43, 43, 43, 43, 43, 43,  43, 43, 43, 43, 43, 43, 43, 43,\n 43, 43, 43, 43, 43, 43, 43, 43,  43, 43, 43, 43, 43, 43, 43, 43,\n 43, 43, 43, 43, 43, 43, 43, 43,  43, 43, 43, 43, 43, 43, 43, 43,\n 43, 43, 43, 43, 43, 43, 43, 43,  43, 43, 43, 43, 43, 43, 43, 43,\n\n// state[168 - 2] 0x0100c0 Byte 4 of 4\n 43, 43, 43, 43, 43, 43, 43, 43,  43, 43, 43, 43, 43, 43, 43, 43,\n 43, 43, 43, 43, 43, 43, 43, 43,  43, 43, 43, 43, 43, 43, 43, 43,\n 43, 43, 43, 43, 43, 43, 43, 43,  43, 43, 43, 43, 43, 43, 43, 43,\n 43, 43, 43, 43, 43, 43, 43, 43,  43, 43, 43,  0,  0,  0,  0,  0,\n\n// state[169 - 2] 0x010380 Byte 4 of 4\n 44, 44, 44, 44, 44, 44, 44, 44,  44, 44, 44, 44, 44, 44, 44, 44,\n 44, 44, 44, 44, 44, 44, 44, 44,  44, 44, 44, 44, 44, 44,  0,  0,\n 54, 54, 54, 54, 54, 54, 54, 54,  54, 54, 54, 54, 54, 54, 54, 54,\n 54, 54, 54, 54, 54, 54, 54, 54,  54, 54, 54, 54, 54, 54, 54, 54,\n\n// state[170 - 2] 0x010480 Byte 4 of 4\n 46, 46, 46, 46, 46, 46, 46, 46,  46, 46, 46, 46, 46, 46, 46, 46,\n 46, 46, 46, 46, 46, 46, 46, 46,  46, 46, 46, 46, 46, 46,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[171 - 2] 0x010800 Byte 4 of 4\n 47, 47, 47, 47, 47, 47,  0,  0,  47,  0, 47, 47, 47, 47, 47, 47,\n 47, 47, 47, 47, 47, 47, 47, 47,  47, 47, 47, 47, 47, 47, 47, 47,\n 47, 47, 47, 47, 47, 47, 47, 47,  47, 47, 47, 47, 47, 47, 47, 47,\n 47, 47, 47, 47, 47, 47,  0, 47,  47,  0,  0,  0, 47,  0,  0, 47,\n\n// state[172 - 2] 0x001a00 Byte 3 of 3\n 48, 48, 48, 48, 48, 48, 48, 48,  48, 48, 48, 48, 48, 48, 48, 48,\n 48, 48, 48, 48, 48, 48, 48, 48,  48, 48, 48, 48,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[173 - 2] 0x002c80 Byte 3 of 3\n 49, 49, 49, 49, 49, 49, 49, 49,  49, 49, 49, 49, 49, 49, 49, 49,\n 49, 49, 49, 49, 49, 49, 49, 49,  49, 49, 49, 49, 49, 49, 49, 49,\n 49, 49, 49, 49, 49, 49, 49, 49,  49, 49, 49, 49, 49, 49, 49, 49,\n 49, 49, 49, 49, 49, 49, 49, 49,  49, 49, 49, 49, 49, 49, 49, 49,\n\n// state[174 - 2] 0x002cc0 Byte 3 of 3\n 49, 49, 49, 49, 49, 49, 49, 49,  49, 49, 49, 49, 49, 49, 49, 49,\n 49, 49, 49, 49, 49, 49, 49, 49,  49, 49, 49, 49, 49, 49, 49, 49,\n 49, 49, 49, 49, 49,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[175 - 2] 0x001980 Byte 3 of 3\n 50, 50, 50, 50, 50, 50, 50, 50,  50, 50, 50, 50, 50, 50, 50, 50,\n 50, 50, 50, 50, 50, 50, 50, 50,  50, 50, 50, 50, 50, 50, 50, 50,\n 50, 50, 50, 50, 50, 50, 50, 50,  50, 50,  0,  0,  0,  0,  0,  0,\n 50, 50, 50, 50, 50, 50, 50, 50,  50, 50, 50, 50, 50, 50, 50, 50,\n\n// state[176 - 2] 0x0019c0 Byte 3 of 3\n 50, 50, 50, 50, 50, 50, 50, 50,  50, 50,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[177 - 2] 0x002c00 Byte 3 of 3\n 51, 51, 51, 51, 51, 51, 51, 51,  51, 51, 51, 51, 51, 51, 51, 51,\n 51, 51, 51, 51, 51, 51, 51, 51,  51, 51, 51, 51, 51, 51, 51, 51,\n 51, 51, 51, 51, 51, 51, 51, 51,  51, 51, 51, 51, 51, 51, 51,  0,\n 51, 51, 51, 51, 51, 51, 51, 51,  51, 51, 51, 51, 51, 51, 51, 51,\n\n// state[178 - 2] 0x002d40 Byte 3 of 3\n 52, 52, 52, 52, 52, 52, 52, 52,  52, 52, 52, 52, 52, 52, 52, 52,\n 52, 52, 52, 52, 52, 52, 52, 52,  52, 52, 52, 52, 52, 52, 52, 52,\n 52, 52, 52, 52, 52, 52,  0,  0,   0,  0,  0,  0,  0,  0,  0, 52,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[179 - 2] 0x00a800 Byte 3 of 3\n 53, 53, 53, 53, 53, 53, 53, 53,  53, 53, 53, 53, 53, 53, 53, 53,\n 53, 53, 53, 53, 53, 53, 53, 53,  53, 53, 53, 53, 53, 53, 53, 53,\n 53, 53, 53, 53, 53, 53, 53, 53,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[180 - 2] 0x0103c0 Byte 4 of 4\n 54, 54, 54, 54,  0,  0,  0,  0,  54, 54, 54, 54, 54, 54, 54, 54,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[181 - 2] 0x010a00 Byte 4 of 4\n 55, 55, 55, 55,  0, 55, 55,  0,   0,  0,  0,  0, 55, 55, 55, 55,\n 55, 55, 55, 55,  0, 55, 55, 55,   0, 55, 55, 55, 55, 55, 55, 55,\n 55, 55, 55, 55, 55, 55, 55, 55,  55, 55, 55, 55, 55, 55, 55, 55,\n 55, 55, 55, 55,  0,  0,  0,  0,  55, 55, 55,  0,  0,  0,  0, 55,\n\n// state[182 - 2] 0x001b00 Byte 3 of 3\n 56, 56, 56, 56, 56, 56, 56, 56,  56, 56, 56, 56, 56, 56, 56, 56,\n 56, 56, 56, 56, 56, 56, 56, 56,  56, 56, 56, 56, 56, 56, 56, 56,\n 56, 56, 56, 56, 56, 56, 56, 56,  56, 56, 56, 56, 56, 56, 56, 56,\n 56, 56, 56, 56, 56, 56, 56, 56,  56, 56, 56, 56, 56, 56, 56, 56,\n\n// state[183 - 2] 0x001b40 Byte 3 of 3\n 56, 56, 56, 56, 56, 56, 56, 56,  56, 56, 56, 56,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0, 56, 56, 56, 56, 56,\n 56, 56, 56, 56,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[184 - 2] 0x012000 Byte 3 of 4\n183,183,183,183,183,183,183,183, 183,183,183,183,183,184,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[185 - 2] 0x012000 Byte 4 of 4\n 57, 57, 57, 57, 57, 57, 57, 57,  57, 57, 57, 57, 57, 57, 57, 57,\n 57, 57, 57, 57, 57, 57, 57, 57,  57, 57, 57, 57, 57, 57, 57, 57,\n 57, 57, 57, 57, 57, 57, 57, 57,  57, 57, 57, 57, 57, 57, 57, 57,\n 57, 57, 57, 57, 57, 57, 57, 57,  57, 57, 57, 57, 57, 57, 57, 57,\n\n// state[186 - 2] 0x012340 Byte 4 of 4\n 57, 57, 57, 57, 57, 57, 57, 57,  57, 57, 57, 57, 57, 57, 57, 57,\n 57, 57, 57, 57, 57, 57, 57, 57,  57, 57, 57, 57, 57, 57, 57, 57,\n 57, 57, 57, 57, 57, 57, 57, 57,  57, 57, 57, 57, 57, 57, 57,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[187 - 2] 0x010900 Byte 4 of 4\n 58, 58, 58, 58, 58, 58, 58, 58,  58, 58, 58, 58, 58, 58, 58, 58,\n 58, 58, 58, 58, 58, 58,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[188 - 2] 0x00a840 Byte 3 of 3\n 59, 59, 59, 59, 59, 59, 59, 59,  59, 59, 59, 59, 59, 59, 59, 59,\n 59, 59, 59, 59, 59, 59, 59, 59,  59, 59, 59, 59, 59, 59, 59, 59,\n 59, 59, 59, 59, 59, 59, 59, 59,  59, 59, 59, 59, 59, 59, 59, 59,\n 59, 59, 59, 59,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[189 - 2] 0x0007c0 Byte 2 of 2\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0, 60, 60, 60, 60, 60, 60,\n 60, 60, 60, 60, 60, 60, 60, 60,  60, 60, 60, 60, 60, 60, 60, 60,\n 60, 60, 60, 60, 60, 60, 60, 60,  60, 60, 60, 60, 60, 60, 60, 60,\n 60, 60, 60, 60, 60, 60,  0,  0,   0,  0, 60,  0,  0,  0,  0,  0,\n\n};\n\n// Remap base[0] = (del, add, string_offset)\nstatic const RemapEntry utf8propletterscriptnum_remap_base[] = {\n{0,0,0} };\n\n// Remap string[0]\nstatic const unsigned char utf8propletterscriptnum_remap_string[] = {\n0 };\n\nstatic const UTF8PropObj utf8propletterscriptnum_obj = {\n  utf8propletterscriptnum_STATE0,\n  utf8propletterscriptnum_STATE0_SIZE,\n  utf8propletterscriptnum_TOTAL_SIZE,\n  utf8propletterscriptnum_MAX_EXPAND_X4,\n  utf8propletterscriptnum_SHIFT,\n  utf8propletterscriptnum_BYTES,\n  utf8propletterscriptnum_LOSUB,\n  utf8propletterscriptnum_HIADD,\n  utf8propletterscriptnum,\n  utf8propletterscriptnum_remap_base,\n  utf8propletterscriptnum_remap_string,\n  NULL\n};\n\n\n#undef X__\n#undef RJ_\n#undef S1_\n#undef S2_\n#undef S3_\n#undef S21\n#undef S31\n#undef S32\n#undef T1_\n#undef T2_\n#undef S11\n#undef SP_\n#undef D__\n#undef RJA\n\n// Table has 12160 bytes, Hash = 838E-A7E3\n\n#endif  // EXPERIMENTAL_USERS_DSITES_LANGDET_UTF8PROPLETTERSCRIPTNUM_H__\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/utf8scannotjustletterspecial.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n//  Accepts all other UTF-8 codes 0000..10FFFF\n//  Space optimized\n// ** ASSUMES INPUT IS STRUCTURALLY VALID UTF-8 **\n//  Table entries are absolute statetable subscripts\n\n#ifndef EXPERIMENTAL_USERS_DSITES_LANGDET_UTF8SCANNOTJUSTLETTERSPECIAL_H__\n#define EXPERIMENTAL_USERS_DSITES_LANGDET_UTF8SCANNOTJUSTLETTERSPECIAL_H__\n\n#include \"encodings/compact_lang_det/win/cld_utf8statetable.h\"\n\n#define X__ (kExitIllegalStructure)\n#define RJ_ (kExitReject)\n#define S1_ (kExitReplace1)\n#define S2_ (kExitReplace2)\n#define S3_ (kExitReplace3)\n#define S21 (kExitReplace21)\n#define S31 (kExitReplace31)\n#define S32 (kExitReplace32)\n#define T1_ (kExitReplaceOffset1)\n#define T2_ (kExitReplaceOffset2)\n#define S11 (kExitReplace1S0)\n#define SP_ (kExitSpecial)\n#define D__ (kExitDoAgain)\n#define RJA (kExitRejectAlt)\n\n//  Entire table has 180 state blocks of 64 entries each\n\nstatic const unsigned int utf8scannotjustletterspecial_STATE0 = 0;\t\t// state[0]\nstatic const unsigned int utf8scannotjustletterspecial_STATE0_SIZE = 64;\t// =[1]\nstatic const unsigned int utf8scannotjustletterspecial_TOTAL_SIZE = 11520;\nstatic const unsigned int utf8scannotjustletterspecial_MAX_EXPAND_X4 = 0;\nstatic const unsigned int utf8scannotjustletterspecial_SHIFT = 6;\nstatic const unsigned int utf8scannotjustletterspecial_BYTES = 1;\nstatic const unsigned int utf8scannotjustletterspecial_LOSUB = 0x27272727;\nstatic const unsigned int utf8scannotjustletterspecial_HIADD = 0x44444444;\n\nstatic const uint8 utf8scannotjustletterspecial[] = {\n// state[0] 0x000000 Byte 1\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,RJ_,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,RJ_,  0,RJ_,  0,\n\n  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,  0,  0,  0,  0,  0,\n  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,  0,  0,  0,  0,  0,\n\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\n\nX__,X__,  6,  7,  8,  8,  8,  8,   8,  8,  8,  9,  8, 10, 11, 12,\n  8,  8, 13,  8, 14, 15, 16, 17,  18, 19,  8, 20, 21, 22, 23, 24,\n 25, 54, 92,106,113,115,115,115, 115,116,118,115,115,123,  2,125,\n142,  4,  4,175,  5,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\n\n// state[4 - 2] 0x00e000 Byte 2 of 3\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[5 - 2] 0x000800 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[6 - 2] 0x040000 Byte 2 of 4\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n\n// state[7 - 2] 0x100000 Byte 2 of 4\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\n\n// state[8 - 2] 0x000080 Byte 2 of 2\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,RJ_,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,RJ_,  0,  0,   0,  0,RJ_,  0,  0,  0,  0,  0,\n\n// state[9 - 2] 0x0000c0 Byte 2 of 2\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[10 - 2] 0x000100 Byte 2 of 2\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[11 - 2] 0x0002c0 Byte 2 of 2\nRJ_,RJ_,  0,  0,  0,  0,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,  0,   0,  0,  0,  0,  0,  0,RJ_,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[12 - 2] 0x000340 Byte 2 of 2\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,RJ_,RJ_,RJ_,RJ_,  0,  0,\n\n// state[13 - 2] 0x000380 Byte 2 of 2\n  0,  0,  0,  0,  0,  0,RJ_,  0, RJ_,RJ_,RJ_,  0,RJ_,  0,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,  0,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[14 - 2] 0x0003c0 Byte 2 of 2\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[15 - 2] 0x000480 Byte 2 of 2\nRJ_,RJ_,  0,RJ_,RJ_,RJ_,RJ_,  0, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[16 - 2] 0x000500 Byte 2 of 2\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[17 - 2] 0x000540 Byte 2 of 2\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,   0,RJ_,  0,  0,  0,  0,  0,  0,\n  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[18 - 2] 0x000580 Byte 2 of 2\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,RJ_,\n\n// state[19 - 2] 0x0005c0 Byte 2 of 2\n  0,RJ_,RJ_,  0,RJ_,RJ_,  0,RJ_,   0,  0,  0,  0,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,  0,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[20 - 2] 0x000600 Byte 2 of 2\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,  0,  0,  0,  0,  0,\n\n// state[21 - 2] 0x000640 Byte 2 of 2\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[22 - 2] 0x0006c0 Byte 2 of 2\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,  0,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,  0,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,RJ_,RJ_,RJ_,  0,  0,RJ_,\n\n// state[23 - 2] 0x000700 Byte 2 of 2\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[24 - 2] 0x000740 Byte 2 of 2\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,  0,  0,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[25 - 2] 0x000780 Byte 2 of 2\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[26 - 2] 0x0007c0 Byte 2 of 2\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,   0,  0,RJ_,  0,  0,  0,  0,  0,\n\n// state[27 - 2] 0x000000 Byte 2 of 3\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\n  3,  3,  3,  3, 26, 27, 28, 29,  30, 31, 32, 33, 34, 35, 36, 37,\n 38, 39, 40, 41, 42, 43, 44, 45,  46, 47, 48, 49, 50, 51, 52, 53,\n\n// state[28 - 2] 0x000900 Byte 3 of 3\n  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,  0,  0,RJ_,RJ_,RJ_,RJ_,\n\n// state[29 - 2] 0x000940 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,  0, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[30 - 2] 0x000980 Byte 3 of 3\n  0,RJ_,RJ_,RJ_,  0,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,RJ_,\nRJ_,  0,  0,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,  0,RJ_,  0,  0,  0,RJ_,RJ_, RJ_,RJ_,  0,  0,RJ_,RJ_,RJ_,RJ_,\n\n// state[31 - 2] 0x0009c0 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,RJ_, RJ_,  0,  0,RJ_,RJ_,RJ_,RJ_,  0,\n  0,  0,  0,  0,  0,  0,  0,RJ_,   0,  0,  0,  0,RJ_,RJ_,  0,RJ_,\nRJ_,RJ_,RJ_,RJ_,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\nRJ_,RJ_,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[32 - 2] 0x000a00 Byte 3 of 3\n  0,RJ_,RJ_,RJ_,  0,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,  0,  0,  0,  0,RJ_,\nRJ_,  0,  0,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,  0,RJ_,RJ_,  0,RJ_,RJ_,  0, RJ_,RJ_,  0,  0,RJ_,  0,RJ_,RJ_,\n\n// state[33 - 2] 0x000a40 Byte 3 of 3\nRJ_,RJ_,RJ_,  0,  0,  0,  0,RJ_, RJ_,  0,  0,RJ_,RJ_,RJ_,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,RJ_,RJ_,RJ_,RJ_,  0,RJ_,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[34 - 2] 0x000a80 Byte 3 of 3\n  0,RJ_,RJ_,RJ_,  0,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,RJ_,\nRJ_,RJ_,  0,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,  0,RJ_,RJ_,  0,RJ_,RJ_,RJ_, RJ_,RJ_,  0,  0,RJ_,RJ_,RJ_,RJ_,\n\n// state[35 - 2] 0x000ac0 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,RJ_, RJ_,RJ_,  0,RJ_,RJ_,RJ_,  0,  0,\nRJ_,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[36 - 2] 0x000b00 Byte 3 of 3\n  0,RJ_,RJ_,RJ_,  0,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,RJ_,\nRJ_,  0,  0,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,  0,RJ_,RJ_,  0,RJ_,RJ_,RJ_, RJ_,RJ_,  0,  0,RJ_,RJ_,RJ_,RJ_,\n\n// state[37 - 2] 0x000b40 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,  0,  0,  0,RJ_, RJ_,  0,  0,RJ_,RJ_,RJ_,  0,  0,\n  0,  0,  0,  0,  0,  0,RJ_,RJ_,   0,  0,  0,  0,RJ_,RJ_,  0,RJ_,\nRJ_,RJ_,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,RJ_,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[38 - 2] 0x000b80 Byte 3 of 3\n  0,  0,RJ_,RJ_,  0,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,  0,  0,  0,RJ_,RJ_,\nRJ_,  0,RJ_,RJ_,RJ_,RJ_,  0,  0,   0,RJ_,RJ_,  0,RJ_,  0,RJ_,RJ_,\n  0,  0,  0,RJ_,RJ_,  0,  0,  0, RJ_,RJ_,RJ_,  0,  0,  0,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,  0,  0,  0,  0,RJ_,RJ_,\n\n// state[39 - 2] 0x000bc0 Byte 3 of 3\nRJ_,RJ_,RJ_,  0,  0,  0,RJ_,RJ_, RJ_,  0,RJ_,RJ_,RJ_,RJ_,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,RJ_,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[40 - 2] 0x000c00 Byte 3 of 3\n  0,RJ_,RJ_,RJ_,  0,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,  0,RJ_,RJ_,\nRJ_,  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,  0,RJ_,RJ_,RJ_, RJ_,RJ_,  0,  0,  0,  0,RJ_,RJ_,\n\n// state[41 - 2] 0x000c40 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,  0,RJ_,RJ_, RJ_,  0,RJ_,RJ_,RJ_,RJ_,  0,  0,\n  0,  0,  0,  0,  0,RJ_,RJ_,  0,   0,  0,  0,  0,  0,  0,  0,  0,\nRJ_,RJ_,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[42 - 2] 0x000c80 Byte 3 of 3\n  0,  0,RJ_,RJ_,  0,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,  0,RJ_,RJ_,\nRJ_,  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,  0,RJ_,RJ_,RJ_, RJ_,RJ_,  0,  0,RJ_,RJ_,RJ_,RJ_,\n\n// state[43 - 2] 0x000cc0 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,  0,RJ_,RJ_, RJ_,  0,RJ_,RJ_,RJ_,RJ_,  0,  0,\n  0,  0,  0,  0,  0,RJ_,RJ_,  0,   0,  0,  0,  0,  0,  0,RJ_,  0,\nRJ_,RJ_,RJ_,RJ_,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[44 - 2] 0x000d00 Byte 3 of 3\n  0,  0,RJ_,RJ_,  0,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,  0,RJ_,RJ_,\nRJ_,  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,  0,  0,  0,  0,RJ_,RJ_,\n\n// state[45 - 2] 0x000d40 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,  0,  0,RJ_,RJ_, RJ_,  0,RJ_,RJ_,RJ_,RJ_,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,RJ_,   0,  0,  0,  0,  0,  0,  0,  0,\nRJ_,RJ_,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[46 - 2] 0x000d80 Byte 3 of 3\n  0,  0,RJ_,RJ_,  0,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,   0,  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,  0,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,  0,RJ_,  0,  0,\n\n// state[47 - 2] 0x000dc0 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,   0,  0,RJ_,  0,  0,  0,  0,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,  0,RJ_,  0, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,RJ_,RJ_,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[48 - 2] 0x000e00 Byte 3 of 3\n  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,  0,  0,  0,  0,  0,\n\n// state[49 - 2] 0x000e40 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[50 - 2] 0x000e80 Byte 3 of 3\n  0,RJ_,RJ_,  0,RJ_,  0,  0,RJ_, RJ_,  0,RJ_,  0,  0,RJ_,  0,  0,\n  0,  0,  0,  0,RJ_,RJ_,RJ_,RJ_,   0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n  0,RJ_,RJ_,RJ_,  0,RJ_,  0,RJ_,   0,  0,RJ_,RJ_,  0,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,  0,RJ_,RJ_,RJ_,  0,  0,\n\n// state[51 - 2] 0x000ec0 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,  0,RJ_,  0, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,RJ_,RJ_,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[52 - 2] 0x000f00 Byte 3 of 3\nRJ_,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0, RJ_,RJ_,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,RJ_,  0,RJ_,   0,RJ_,  0,  0,  0,  0,RJ_,RJ_,\n\n// state[53 - 2] 0x000f40 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,   0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,  0,  0,  0,  0,  0,\n  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[54 - 2] 0x000f80 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,  0,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,   0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,  0,\n\n// state[55 - 2] 0x000fc0 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,RJ_,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[56 - 2] 0x001000 Byte 2 of 3\n 55, 56, 57, 58,  8, 59, 60, 61,   8, 62, 63, 64, 65, 66, 67, 68,\n 69,  8,  8,  8,  8,  8,  8,  8,   8, 70, 71, 72, 73, 74, 75, 76,\n 77, 78, 79,  3, 80, 81, 82, 83,  84,  3,  3,  3,  8, 85,  3,  3,\n  3,  3,  3,  3,  8,  8,  8, 86,   8,  8, 87, 61, 88, 89, 90, 91,\n\n// state[57 - 2] 0x001000 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,  0,RJ_,RJ_,RJ_,RJ_,RJ_,   0,RJ_,RJ_,  0,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,  0,  0,  0,RJ_,RJ_, RJ_,RJ_,  0,  0,  0,  0,  0,  0,\n\n// state[58 - 2] 0x001040 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[59 - 2] 0x001080 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[60 - 2] 0x0010c0 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,  0,RJ_,  0,  0,  0,\n\n// state[61 - 2] 0x001140 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,  0,  0,  0,  0,  0,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[62 - 2] 0x001180 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,  0,  0,  0,  0,  0, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[63 - 2] 0x0011c0 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,  0,  0,  0,  0,  0,  0,\n\n// state[64 - 2] 0x001240 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,  0,RJ_,RJ_,RJ_,RJ_,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0, RJ_,  0,RJ_,RJ_,RJ_,RJ_,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[65 - 2] 0x001280 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,  0,RJ_,RJ_,RJ_,RJ_,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,  0,RJ_,RJ_,RJ_,RJ_,  0,  0, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,\n\n// state[66 - 2] 0x0012c0 Byte 3 of 3\nRJ_,  0,RJ_,RJ_,RJ_,RJ_,  0,  0, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[67 - 2] 0x001300 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,  0,RJ_,RJ_,RJ_,RJ_,  0,  0, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[68 - 2] 0x001340 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,  0,  0,  0,  0,RJ_,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[69 - 2] 0x001380 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[70 - 2] 0x0013c0 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[71 - 2] 0x001400 Byte 3 of 3\n  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[72 - 2] 0x001640 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[73 - 2] 0x001680 Byte 3 of 3\n  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,  0,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[74 - 2] 0x0016c0 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[75 - 2] 0x001700 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,  0,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[76 - 2] 0x001740 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,  0,RJ_,RJ_,\nRJ_,  0,RJ_,RJ_,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[77 - 2] 0x001780 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,  0,  0,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[78 - 2] 0x0017c0 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,  0,  0,  0,RJ_,   0,  0,  0,  0,RJ_,RJ_,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[79 - 2] 0x001800 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,RJ_,RJ_,RJ_,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[80 - 2] 0x001840 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[81 - 2] 0x001880 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[82 - 2] 0x001900 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,  0,  0,  0,  0,\n\n// state[83 - 2] 0x001940 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[84 - 2] 0x001980 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,  0,  0,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[85 - 2] 0x0019c0 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[86 - 2] 0x001a00 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[87 - 2] 0x001b40 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[88 - 2] 0x001dc0 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,RJ_,RJ_,\n\n// state[89 - 2] 0x001e80 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[90 - 2] 0x001f00 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[91 - 2] 0x001f40 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,   0,RJ_,  0,RJ_,  0,RJ_,  0,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,\n\n// state[92 - 2] 0x001f80 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,  0,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,  0,RJ_,  0,\n\n// state[93 - 2] 0x001fc0 Byte 3 of 3\n  0,  0,RJ_,RJ_,RJ_,  0,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,  0,  0,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,  0,\n  0,  0,RJ_,RJ_,RJ_,  0,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,  0,\n\n// state[94 - 2] 0x002000 Byte 2 of 3\n  3, 93, 94, 95, 96, 97, 98,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n 99,100,  8,101,102,103,104,105,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[95 - 2] 0x002040 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,RJ_,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,RJ_,\n\n// state[96 - 2] 0x002080 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[97 - 2] 0x0020c0 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[98 - 2] 0x002100 Byte 3 of 3\n  0,  0,RJ_,  0,  0,  0,  0,RJ_,   0,  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,  0,RJ_,  0,  0,   0,RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,\n  0,  0,  0,  0,RJ_,  0,RJ_,  0, RJ_,  0,RJ_,RJ_,RJ_,RJ_,  0,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,  0,  0,RJ_,RJ_,RJ_,RJ_,\n\n// state[99 - 2] 0x002140 Byte 3 of 3\n  0,  0,  0,  0,  0,RJ_,RJ_,RJ_, RJ_,RJ_,  0,  0,  0,  0,RJ_,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[100 - 2] 0x002180 Byte 3 of 3\n  0,  0,  0,RJ_,RJ_,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[101 - 2] 0x002c00 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[102 - 2] 0x002c40 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,  0,\n  0,  0,  0,  0,RJ_,RJ_,RJ_,RJ_,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[103 - 2] 0x002cc0 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[104 - 2] 0x002d00 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[105 - 2] 0x002d40 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,   0,  0,  0,  0,  0,  0,  0,RJ_,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[106 - 2] 0x002d80 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,   0,  0,  0,  0,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,\n\n// state[107 - 2] 0x002dc0 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[108 - 2] 0x003000 Byte 2 of 3\n107, 69,108,109,110,  8,111,112,   3,  3,  3,  3,  3,  3,  3,  3,\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n\n// state[109 - 2] 0x003000 Byte 3 of 3\n  0,  0,  0,  0,  0,RJ_,RJ_,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n  0,RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,   0,  0,  0,RJ_,RJ_,  0,  0,  0,\n\n// state[110 - 2] 0x003080 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,   0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[111 - 2] 0x0030c0 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,  0,RJ_,RJ_,RJ_,RJ_,\n\n// state[112 - 2] 0x003100 Byte 3 of 3\n  0,  0,  0,  0,  0,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,  0,\n  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[113 - 2] 0x003180 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[114 - 2] 0x0031c0 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[115 - 2] 0x004000 Byte 2 of 3\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n  8,  8,  8,  8,  8,  8,114,  3,   8,  8,  8,  8,  8,  8,  8,  8,\n\n// state[116 - 2] 0x004d80 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[117 - 2] 0x005000 Byte 2 of 3\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n\n// state[118 - 2] 0x009000 Byte 2 of 3\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,117,  3,\n\n// state[119 - 2] 0x009f80 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,  0,  0,  0,  0,\n\n// state[120 - 2] 0x00a000 Byte 2 of 3\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n  8,  8,119,  3,  3,  3,  3,  3,   3,  3,  3,  3,120,  3,  3,  3,\n121,122,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n\n// state[121 - 2] 0x00a480 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[122 - 2] 0x00a700 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,RJ_, RJ_,RJ_,RJ_,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[123 - 2] 0x00a800 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[124 - 2] 0x00a840 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[125 - 2] 0x00d000 Byte 2 of 3\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,124,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[126 - 2] 0x00d780 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[127 - 2] 0x00f000 Byte 2 of 3\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  8,  8,  8,  8, 126,127,  8,128,129,130, 23,131,\n  8,  8,  8,  8,132, 21,133,134, 135,136,  8,137,138,139,140,141,\n\n// state[128 - 2] 0x00fa00 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[129 - 2] 0x00fa40 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,  0,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[130 - 2] 0x00fac0 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[131 - 2] 0x00fb00 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,RJ_,RJ_,RJ_,RJ_,RJ_,   0,  0,  0,  0,  0,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0, RJ_,RJ_,RJ_,RJ_,RJ_,  0,RJ_,  0,\n\n// state[132 - 2] 0x00fb40 Byte 3 of 3\nRJ_,RJ_,  0,RJ_,RJ_,  0,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[133 - 2] 0x00fbc0 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[134 - 2] 0x00fd00 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,\n\n// state[135 - 2] 0x00fd80 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n  0,  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[136 - 2] 0x00fdc0 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,  0,  0,  0,  0,\n\n// state[137 - 2] 0x00fe00 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[138 - 2] 0x00fe40 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,  0,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[139 - 2] 0x00fec0 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,  0,\n\n// state[140 - 2] 0x00ff00 Byte 3 of 3\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,  0,  0,  0,  0,  0,\n\n// state[141 - 2] 0x00ff40 Byte 3 of 3\n  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[142 - 2] 0x00ff80 Byte 3 of 3\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,\n\n// state[143 - 2] 0x00ffc0 Byte 3 of 3\n  0,  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,   0,  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n  0,  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,   0,  0,RJ_,RJ_,RJ_,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[144 - 2] 0x000000 Byte 2 of 4\nX__,X__,X__,X__,X__,X__,X__,X__, X__,X__,X__,X__,X__,X__,X__,X__,\n143,  2,155,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,157,  2,  2,\n115,115,115,115,115,115,115,115, 115,115,172,  2,  2,  2,  2,174,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n\n// state[145 - 2] 0x010000 Byte 3 of 4\n144,145,  8,146,  3,  3,  3,  3,   3,  3,  3,  3,147,148,149,150,\n  8,  8,151,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n152,  3,  3,  3,153,  3,  3,  3, 154,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[146 - 2] 0x010000 Byte 4 of 4\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,  0,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,  0,RJ_,RJ_,  0,RJ_,\n\n// state[147 - 2] 0x010040 Byte 4 of 4\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[148 - 2] 0x0100c0 Byte 4 of 4\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,  0,  0,  0,  0,  0,\n\n// state[149 - 2] 0x010300 Byte 4 of 4\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[150 - 2] 0x010340 Byte 4 of 4\nRJ_,  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[151 - 2] 0x010380 Byte 4 of 4\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[152 - 2] 0x0103c0 Byte 4 of 4\nRJ_,RJ_,RJ_,RJ_,  0,  0,  0,  0, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[153 - 2] 0x010480 Byte 4 of 4\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[154 - 2] 0x010800 Byte 4 of 4\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0, RJ_,  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,RJ_, RJ_,  0,  0,  0,RJ_,  0,  0,RJ_,\n\n// state[155 - 2] 0x010900 Byte 4 of 4\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[156 - 2] 0x010a00 Byte 4 of 4\nRJ_,RJ_,RJ_,RJ_,  0,RJ_,RJ_,  0,   0,  0,  0,  0,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,  0,RJ_,RJ_,RJ_,   0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,  0,  0,  0,  0, RJ_,RJ_,RJ_,  0,  0,  0,  0,RJ_,\n\n// state[157 - 2] 0x012000 Byte 3 of 4\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,156,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[158 - 2] 0x012340 Byte 4 of 4\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[159 - 2] 0x01d000 Byte 3 of 4\n  3,  3,  3,  3,  3,158,159,  3,   3,160,  3,  3,  3,  3,  3,  3,\n  8,161,162,163,164,165,  8,  8,   8,  8,166,167,168,169,170,171,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[160 - 2] 0x01d140 Byte 4 of 4\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,RJ_,RJ_,RJ_, RJ_,RJ_,  0,  0,  0,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,  0,  0,  0,  0,  0,   0,  0,  0,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[161 - 2] 0x01d180 Byte 4 of 4\nRJ_,RJ_,RJ_,  0,  0,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,RJ_,RJ_,RJ_,RJ_,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[162 - 2] 0x01d240 Byte 4 of 4\n  0,  0,RJ_,RJ_,RJ_,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[163 - 2] 0x01d440 Byte 4 of 4\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,  0,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[164 - 2] 0x01d480 Byte 4 of 4\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,  0,RJ_,RJ_,\n  0,  0,RJ_,  0,  0,RJ_,RJ_,  0,   0,RJ_,RJ_,RJ_,RJ_,  0,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,  0,RJ_,  0,RJ_,RJ_,RJ_,\n\n// state[165 - 2] 0x01d4c0 Byte 4 of 4\nRJ_,RJ_,RJ_,RJ_,  0,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[166 - 2] 0x01d500 Byte 4 of 4\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,RJ_, RJ_,RJ_,RJ_,  0,  0,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,  0,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,  0,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,  0,RJ_,RJ_,RJ_,RJ_,  0,\n\n// state[167 - 2] 0x01d540 Byte 4 of 4\nRJ_,RJ_,RJ_,RJ_,RJ_,  0,RJ_,  0,   0,  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[168 - 2] 0x01d680 Byte 4 of 4\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,  0, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[169 - 2] 0x01d6c0 Byte 4 of 4\nRJ_,  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,  0,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,  0,RJ_,RJ_,RJ_,RJ_,\n\n// state[170 - 2] 0x01d700 Byte 4 of 4\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,  0,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,  0,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[171 - 2] 0x01d740 Byte 4 of 4\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[172 - 2] 0x01d780 Byte 4 of 4\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,  0,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n\n// state[173 - 2] 0x01d7c0 Byte 4 of 4\nRJ_,RJ_,RJ_,  0,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[174 - 2] 0x02a000 Byte 3 of 4\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,  8,  8,  8,  8,  8,\n  8,  8,  8,  8,  8,  8,  8,  8,   8,  8,  8,173,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[175 - 2] 0x02a6c0 Byte 4 of 4\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n// state[176 - 2] 0x02f000 Byte 3 of 4\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  8,  8,  8,  8,  8,  8,  8,  8, 151,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[177 - 2] 0x0c0000 Byte 2 of 4\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n176,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n  2,  2,  2,  2,  2,  2,  2,  2,   2,  2,  2,  2,  2,  2,  2,  2,\n\n// state[178 - 2] 0x0e0000 Byte 3 of 4\n  3,  3,  3,  3,  8,  8,  8,177,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n  3,  3,  3,  3,  3,  3,  3,  3,   3,  3,  3,  3,  3,  3,  3,  3,\n\n// state[179 - 2] 0x0e01c0 Byte 4 of 4\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\nRJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_, RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,RJ_,\n  0,  0,  0,  0,  0,  0,  0,  0,   0,  0,  0,  0,  0,  0,  0,  0,\n\n};\n\n// Remap base[0] = (del, add, string_offset)\nstatic const RemapEntry utf8scannotjustletterspecial_remap_base[] = {\n{0,0,0} };\n\n// Remap string[0]\nstatic const unsigned char utf8scannotjustletterspecial_remap_string[] = {\n0 };\n\nstatic const unsigned char utf8scannotjustletterspecial_fast[256] = {\n0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,\n0,0,0,0,0,0,1,0, 0,0,0,0,0,0,0,0,\n0,0,0,0,0,0,0,0, 0,0,0,0,1,0,1,0,\n\n0,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n1,1,1,1,1,1,1,1, 1,1,1,0,0,0,0,0,\n0,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n1,1,1,1,1,1,1,1, 1,1,1,0,0,0,0,0,\n\n1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n\n1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n\n};\n\nstatic const UTF8ScanObj utf8scannotjustletterspecial_obj = {\n  utf8scannotjustletterspecial_STATE0,\n  utf8scannotjustletterspecial_STATE0_SIZE,\n  utf8scannotjustletterspecial_TOTAL_SIZE,\n  utf8scannotjustletterspecial_MAX_EXPAND_X4,\n  utf8scannotjustletterspecial_SHIFT,\n  utf8scannotjustletterspecial_BYTES,\n  utf8scannotjustletterspecial_LOSUB,\n  utf8scannotjustletterspecial_HIADD,\n  utf8scannotjustletterspecial,\n  utf8scannotjustletterspecial_remap_base,\n  utf8scannotjustletterspecial_remap_string,\n  utf8scannotjustletterspecial_fast\n};\n\n\n#undef X__\n#undef RJ_\n#undef S1_\n#undef S2_\n#undef S3_\n#undef S21\n#undef S31\n#undef S32\n#undef T1_\n#undef T2_\n#undef S11\n#undef SP_\n#undef D__\n#undef RJA\n\n// Table has 11776 bytes, Hash = 395A-230B\n\n#endif  // EXPERIMENTAL_USERS_DSITES_LANGDET_UTF8SCANNOTJUSTLETTERSPECIAL_H__\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/win/#cld_unilib_windows.cc#",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#include \"encodings/compact_lang_det/win/cld_unilib.h\"\n\n#include \"encodings/compact_lang_det/win/cld_basictypes.h\"\n\nnamespace cld_UniLib {\n\n// Table of UTF-8 character lengths, based on first byte\nstatic const unsigned char kUTF8LenTbl[256] = {\n  1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n  1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n  1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n  1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n\n  1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n  1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n  2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2,\n  3,3,3,3,3,3,3,3, 3,3,3,3,3,3,3,3, 4,4,4,4,4,4,4,4, 4,4,4,4,4,4,4,4\n};\n\n// Return length of a single UTF-8 source character\nint OneCharLen(const char* src) {\n  return kUTF8LenTbl[*reinterpret_cast<const uint8*>(src)];\n}\n\n}  // namespace cld_UniLib\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/win/cld_basictypes.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef ENCODINGS_COMPACT_LANG_DET_WIN_CLD_BASICTYPES_H_\n#define ENCODINGS_COMPACT_LANG_DET_WIN_CLD_BASICTYPES_H_\n\n#include \"base/basictypes.h\"\n\n#endif  // ENCODINGS_COMPACT_LANG_DET_WIN_CLD_BASICTYPES_H_\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/win/cld_commandlineflags.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef ENCODINGS_COMPACT_LANG_DET_WIN_CLD_COMMANDLINEFLAGS_H_\n#define ENCODINGS_COMPACT_LANG_DET_WIN_CLD_COMMANDLINEFLAGS_H_\n\n#if !defined(CLD_WINDOWS)\n\n#include \"base/commandlineflags.h\"\n\n#else\n\n#undef DEFINE_bool\n#define DEFINE_bool(name, default_value, comment) \\\n    const bool FLAGS_##name = default_value;\n#undef DEFINE_int32\n#define DEFINE_int32(name, default_value, comment) \\\n    const int32 FLAGS_##name = default_value;\n\n#undef DECLARE_bool\n#define DECLARE_bool(name) extern const bool FLAGS_##name;\n#undef DECLARE_int32\n#define DECLARE_int32(name) extern int32 FLAGS_##name;\n\n#endif\n\n#endif  // ENCODINGS_COMPACT_LANG_DET_WIN_CLD_COMMANDLINEFLAGS_H_\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/win/cld_google.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef ENCODINGS_COMPACT_LANG_DET_WIN_CLD_GOOGLE_H_\n#define ENCODINGS_COMPACT_LANG_DET_WIN_CLD_GOOGLE_H_\n\n#if !defined(CLD_WINDOWS)\n\n#include \"base/google.h\"\n\n#else\n\n// Include nothing\n\n#endif\n\n#endif  // ENCODINGS_COMPACT_LANG_DET_WIN_CLD_GOOGLE_H_\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/win/cld_htmlutils.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef ENCODINGS_COMPACT_LANG_DET_WIN_CLD_HTMLUTILS_H_\n#define ENCODINGS_COMPACT_LANG_DET_WIN_CLD_HTMLUTILS_H_\n\n// Src points to '&'\n// Writes entity value to dst. Returns take(src), put(dst) byte counts\nvoid EntityToBuffer(const char* src, int len, char* dst,\n                    int* tlen, int* plen);\n\n#endif  // ENCODINGS_COMPACT_LANG_DET_WIN_CLD_HTMLUTILS_H_\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/win/cld_htmlutils_google3.cc",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n// Author: alekseys@google.com (Aleksey Shlyapnikov)\n\n// This code is not actually used, it was copied here for the reference only.\n// See cld_htmlutils_windows.cc for Windows version of this code.\n\n#include \"cld/encodings/compact_lang_det/win/cld_htmlutils.h\"\n\n#include \"cld/third_party/utf/utf.h\"        // for runetochar\n#include \"cld/webutil/html/htmlutils.h\"     // for ReadEntity\n\n// Copied from getonescriptspan.cc\n\n// Src points to '&'\n// Writes entity value to dst. Returns take(src), put(dst) byte counts\nvoid EntityToBuffer(const char* src, int len, char* dst,\n                    int* tlen, int* plen) {\n  char32 entval = HtmlUtils::ReadEntity(src, len, tlen);\n  // ReadEntity does this already: entval = FixUnicodeValue(entval);\n\n  if (entval > 0) {\n    *plen = runetochar(dst, &entval);\n  } else {\n    // Illegal entity; ignore the '&'\n    *tlen = 1;\n    *plen = 0;\n  }\n  // fprintf(stderr,\"t%d p%d]\\n\", *tlen, *plen);\n}\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/win/cld_htmlutils_windows.cc",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#include \"encodings/compact_lang_det/win/cld_htmlutils.h\"\n\n// Src points to '&'\n// Writes entity value to dst. Returns take(src), put(dst) byte counts\nvoid EntityToBuffer(const char* src, int len, char* dst,\n                    int* tlen, int* plen) {\n  // On Windows we do not have to do anything, browser expands HTML entities\n  // for us, so text we're retrieving from it is ready for translation as it is.\n  // But:\n\n  // This is a temporary solution to let us continue the development without\n  // having a real DOM text scraping in place.  For now the full HTML is fed\n  // to CLD for language detection and just ignoring entities is good enough\n  // for testing.  Later entities will be expanded by browser itself.\n\n  // Skip entity in the source.\n  *tlen = 1;\n  do {\n    ++src;\n    ++*tlen;\n  } while (*src && *src != ';');\n  // Report a bogus entity (space).\n  *dst = ' ';\n  *plen = 1;\n}\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/win/cld_logging.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef ENCODINGS_COMPACT_LANG_DET_WIN_CLD_LOGGING_H_\n#define ENCODINGS_COMPACT_LANG_DET_WIN_CLD_LOGGING_H_\n\n#if !defined(CLD_WINDOWS)\n\n#include \"base/logging.h\"\n\n#else\n\n#undef CHECK\n#define CHECK(expr)\n#undef DCHECK\n#define DCHECK(expr)\n\n#endif\n\n#endif  // ENCODINGS_COMPACT_LANG_DET_WIN_CLD_LOGGING_H_\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/win/cld_macros.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef ENCODINGS_COMPACT_LANG_DET_WIN_CLD_MACROS_H_\n#define ENCODINGS_COMPACT_LANG_DET_WIN_CLD_MACROS_H_\n\n#include \"base/macros.h\"\n\n// Checks for Win32 result and if it indicates failure, returns it.\n#define RETURN_IF_ERROR(cmd) \\\n  do { \\\n    DWORD result_ = (cmd); \\\n    if (0 != result_) \\\n      return result_; \\\n  } \\\n  while (0);\n\n#endif  // ENCODINGS_COMPACT_LANG_DET_WIN_CLD_MACROS_H_\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/win/cld_strtoint.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef ENCODINGS_COMPACT_LANG_DET_WIN_CLD_STRTOINT_H_\n#define ENCODINGS_COMPACT_LANG_DET_WIN_CLD_STRTOINT_H_\n\n#if !defined(CLD_WINDOWS)\n\n//#include \"cld/base/strtoint.h\"\n\n#else\n\n#include <stdlib.h>\n\n#include \"encodings/compact_lang_det/win/cld_basictypes.h\"\n\n// This implementation is not as good as the one in base/strtoint.h,\n// but it's sufficient for our purposes.\ninline int32 strto32(const char *nptr, char **endptr, int base) {\n  return static_cast<int32>(strtol(nptr, endptr, base));\n}\n\n#endif\n\n#endif  // ENCODINGS_COMPACT_LANG_DET_WIN_CLD_STRTOINT_H_\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/win/cld_unicodetext.cc",
    "content": "// Copyright (c) 2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#include \"encodings/compact_lang_det/win/cld_unicodetext.h\"\n\n#include <string>\n#include <vector>  // to compile bar/common/component.h\n\n#include \"encodings/compact_lang_det/compact_lang_det.h\"\n#include \"base/string_util.h\"\n#include \"unicode/normlzr.h\"\n#include \"unicode/unistr.h\"\n#include \"unicode/ustring.h\"\n\n/*\nstd::string NormalizeText(const UChar* text) {\n  // To avoid a copy, use the read-only aliasing ctor.\n  icu::UnicodeString source(1, text, -1);\n  icu::UnicodeString normalized;\n  UErrorCode status = U_ZERO_ERROR;\n  icu::Normalizer::normalize(source, UNORM_NFC, 0, normalized, status);\n  if (U_FAILURE(status))\n    return std::string();\n  normalized.toLower();\n  std::string utf8;\n  // Internally, toUTF8String uses a 1kB stack buffer (which is not large enough\n  // for most web pages) and does pre-flighting followed by malloc for larger\n  // strings. We have to switch to obtaining the buffer with the maximum size\n  // (UTF-16 length * 3) without pre-flighting if necessary.\n  return normalized.toUTF8String(utf8);\n}\n*/\n\n\n// Detects a language of the UTF-16 encoded zero-terminated text.\n// Returns: Language enum.\nLanguage DetectLanguageOfUnicodeText(\n    const CompactLangDet::DetectionTables* detection_tables,\n    const UChar* text, bool is_plain_text,\n    bool* is_reliable, int* num_languages,\n    int* error_code, int* text_bytes) {\n  if (!text || !num_languages)\n    return NUM_LANGUAGES;\n  // Normalize text to NFC, lowercase and convert to UTF-8.\n  std::string utf8_encoded = NormalizeText(text);\n  if (utf8_encoded.empty())\n    return NUM_LANGUAGES;\n\n  // Engage core CLD library language detection.\n  Language language3[3] = {\n    UNKNOWN_LANGUAGE, UNKNOWN_LANGUAGE, UNKNOWN_LANGUAGE\n  };\n  int percent3[3] = { 0, 0, 0 };\n  int text_bytes_tmp = 0;\n  // We ignore return value here due to the problem described in bug 1800161.\n  // For example, translate.google.com was detected as Indonesian.  It happened\n  // due to the heuristic in CLD, which ignores English as a top language\n  // in the presence of another reliably detected language.\n  // See the actual code in compact_lang_det_impl.cc, CalcSummaryLang function.\n  // language3 array is always set according to the detection results and\n  // is not affected by this heuristic.\n  CompactLangDet::DetectLanguageSummary(detection_tables,\n                                        utf8_encoded.c_str(),\n                                        utf8_encoded.length(),\n                                        is_plain_text, language3, percent3,\n                                        &text_bytes_tmp, is_reliable);\n\n  // Calcualte a number of languages detected in more than 20% of the text.\n  const int kMinTextPercentToCountLanguage = 20;\n  *num_languages = 0;\n  if (text_bytes)\n    *text_bytes = text_bytes_tmp;\n  COMPILE_ASSERT(arraysize(language3) == arraysize(percent3),\n                 language3_and_percent3_should_be_of_the_same_size);\n  for (int i = 0; i < arraysize(language3); ++i) {\n    if (IsValidLanguage(language3[i]) && !IS_LANGUAGE_UNKNOWN(language3[i]) &&\n        percent3[i] >= kMinTextPercentToCountLanguage) {\n      ++*num_languages;\n    }\n  }\n\n  return language3[0];\n}\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/win/cld_unicodetext.h",
    "content": "// Copyright (c) 2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef ENCODINGS_COMPACT_LANG_DET_WIN_CLD_UNICODETEXT_H_\n#define ENCODINGS_COMPACT_LANG_DET_WIN_CLD_UNICODETEXT_H_\n\n#include \"languages/public/languages.h\"\n#include \"unicode/utypes.h\"\n\nnamespace CompactLangDet {\n  struct DetectionTables;\n}  // namespace CompactLangDet\n\n// Detects a language of the UTF-16 encoded zero-terminated text.\n// [in] detection_tables - internal CLD data tables (see compact_lang_det.h).\n//     Can be NULL, in this case CLD will fall back to builtin static tables.\n// [in] text - UTF-16 encoded text to detect a language of.\n// [in] is_plain_text - true if plain text, false otherwise (e.g. HTML).\n// [out] is_reliable - true, if returned language was detected reliably.\n//     See compact_lang_det.h for details.\n// [out] num_languages - set to the number of languages detected on the page.\n//     Language counts only if it's detected in more than 20% of the text.\n// [out, optional] error_code - set to 0 in case of success, Windows\n//     GetLastError() code otherwise.  Pass NULL, if not interested in errors.\n// See encodings/compact_lang_det/compact_lang_det.h,\n//     CompactLangDet::DetectLanguage() description for other input parameters\n//     description.\n// Returns: Language enum.\n//     Returns NUM_LANGUAGES in case of any error.\n//     See googleclient/languages/internal/languages.cc\n//     for details.\nLanguage DetectLanguageOfUnicodeText(\n    const CompactLangDet::DetectionTables* detection_tables,\n    const UChar* text, bool is_plain_text,\n    bool* is_reliable, int* num_languages,\n    int* error_code, int* text_bytes);\n\n\n#endif  // ENCODINGS_COMPACT_LANG_DET_WIN_CLD_UNICODETEXT_H_\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/win/cld_unilib.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef ENCODINGS_COMPACT_LANG_DET_WIN_CLD_UNILIB_H_\n#define ENCODINGS_COMPACT_LANG_DET_WIN_CLD_UNILIB_H_\n\nnamespace cld_UniLib {\n\n// Return length of a single UTF-8 source character\nint OneCharLen(const char* src);\n\n}  // namespace cld_UniLib\n\n#endif  // ENCODINGS_COMPACT_LANG_DET_WIN_CLD_UNILIB_H_\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/win/cld_unilib_google3.cc",
    "content": "// Copyright (c) 2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n// This code is not actually used, it was copied here for the reference only.\n// See cld_htmlutils_windows.cc for Windows version of this code.\n\n#include \"i18n/encodings/compact_lang_det/cld_unilib.h\"\n\n#include \"util/utf8/unilib.h\"\n\nnamespace cld_UniLib {\n\nint OneCharLen(const char* src) {\n  return UniLib::OneCharLen(src);\n}\n\n}  // namespace cld_UniLib\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/win/cld_unilib_windows.cc",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#include \"encodings/compact_lang_det/win/cld_unilib.h\"\n\n#include \"encodings/compact_lang_det/win/cld_basictypes.h\"\n\nnamespace cld_UniLib {\n\n// Table of UTF-8 character lengths, based on first byte\nstatic const unsigned char kUTF8LenTbl[256] = {\n  1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n  1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n  1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n  1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n\n  1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n  1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,\n  2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2,\n  3,3,3,3,3,3,3,3, 3,3,3,3,3,3,3,3, 4,4,4,4,4,4,4,4, 4,4,4,4,4,4,4,4\n};\n\n// Return length of a single UTF-8 source character\nint OneCharLen(const char* src) {\n  return kUTF8LenTbl[*reinterpret_cast<const uint8*>(src)];\n}\n\n}  // namespace cld_UniLib\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/win/cld_utf.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef ENCODINGS_COMPACT_LANG_DET_WIN_CLD_UTF_H_\n#define ENCODINGS_COMPACT_LANG_DET_WIN_CLD_UTF_H_\n\n#if !defined(CLD_WINDOWS)\n\n//#include \"third_party/utf/utf.h\"\n\n#else\n\nenum {\n  UTFmax        = 4,            // maximum bytes per rune\n  Runesync      = 0x80,         // cannot represent part of a UTF sequence (<)\n  Runeself      = 0x80,         // rune and UTF sequences are the same (<)\n  Runeerror     = 0xFFFD,       // decoding error in UTF\n  Runemax       = 0x10FFFF,     // maximum rune value\n};\n\n#endif\n\n#endif  // ENCODINGS_COMPACT_LANG_DET_WIN_CLD_UTF_H_\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/win/cld_utf8statetable.cc",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#include \"encodings/compact_lang_det/win/cld_utf8statetable.h\"\n\n// Return true if current Tbl pointer is within state0 range\n// Note that unsigned compare checks both ends of range simultaneously\nstatic inline bool InStateZero(const UTF8ScanObj* st, const uint8* Tbl) {\n  const uint8* Tbl0 = &st->state_table[st->state0];\n  return (static_cast<uint32>(Tbl - Tbl0) < st->state0_size);\n}\n\n\n// Look up property of one UTF-8 character and advance over it\n// Return 0 if input length is zero\n// Return 0 and advance one byte if input is ill-formed\nuint8 UTF8GenericProperty(const UTF8PropObj* st,\n                          const uint8** src,\n                          int* srclen) {\n  if (*srclen <= 0) {\n    return 0;\n  }\n\n  const uint8* lsrc = *src;\n  const uint8* Tbl_0 = &st->state_table[st->state0];\n  const uint8* Tbl = Tbl_0;\n  int e;\n  int eshift = st->entry_shift;\n\n  // Short series of tests faster than switch, optimizes 7-bit ASCII\n  unsigned char c = lsrc[0];\n  if (static_cast<signed char>(c) >= 0) {           // one byte\n    e = Tbl[c];\n    *src += 1;\n    *srclen -= 1;\n  } else if (((c & 0xe0) == 0xc0) && (*srclen >= 2)) {     // two bytes\n    e = Tbl[c];\n    Tbl = &Tbl_0[e << eshift];\n    e = Tbl[lsrc[1]];\n    *src += 2;\n    *srclen -= 2;\n  } else if (((c & 0xf0) == 0xe0) && (*srclen >= 3)) {     // three bytes\n    e = Tbl[c];\n    Tbl = &Tbl_0[e << eshift];\n    e = Tbl[lsrc[1]];\n    Tbl = &Tbl_0[e << eshift];\n    e = Tbl[lsrc[2]];\n    *src += 3;\n    *srclen -= 3;\n  }else if (((c & 0xf8) == 0xf0) && (*srclen >= 4)) {     // four bytes\n    e = Tbl[c];\n    Tbl = &Tbl_0[e << eshift];\n    e = Tbl[lsrc[1]];\n    Tbl = &Tbl_0[e << eshift];\n    e = Tbl[lsrc[2]];\n    Tbl = &Tbl_0[e << eshift];\n    e = Tbl[lsrc[3]];\n    *src += 4;\n    *srclen -= 4;\n  } else {                                                // Ill-formed\n    e = 0;\n    *src += 1;\n    *srclen -= 1;\n  }\n  return e;\n}\n\n// BigOneByte versions are needed for tables > 240 states, but most\n// won't need the TwoByte versions.\n// Internally, to next-to-last offset is multiplied by 16 and the last\n// offset is relative instead of absolute.\n// Look up property of one UTF-8 character and advance over it\n// Return 0 if input length is zero\n// Return 0 and advance one byte if input is ill-formed\nuint8 UTF8GenericPropertyBigOneByte(const UTF8PropObj* st,\n                          const uint8** src,\n                          int* srclen) {\n  if (*srclen <= 0) {\n    return 0;\n  }\n\n  const uint8* lsrc = *src;\n  const uint8* Tbl_0 = &st->state_table[st->state0];\n  const uint8* Tbl = Tbl_0;\n  int e;\n  int eshift = st->entry_shift;\n\n  // Short series of tests faster than switch, optimizes 7-bit ASCII\n  unsigned char c = lsrc[0];\n  if (static_cast<signed char>(c) >= 0) {           // one byte\n    e = Tbl[c];\n    *src += 1;\n    *srclen -= 1;\n  } else if (((c & 0xe0) == 0xc0) && (*srclen >= 2)) {     // two bytes\n    e = Tbl[c];\n    Tbl = &Tbl_0[e << eshift];\n    e = Tbl[lsrc[1]];\n    *src += 2;\n    *srclen -= 2;\n  } else if (((c & 0xf0) == 0xe0) && (*srclen >= 3)) {     // three bytes\n    e = Tbl[c];\n    Tbl = &Tbl_0[e << (eshift + 4)];  // 16x the range\n    e = (reinterpret_cast<const int8*>(Tbl))[lsrc[1]];\n    Tbl = &Tbl[e << eshift];          // Relative +/-\n    e = Tbl[lsrc[2]];\n    *src += 3;\n    *srclen -= 3;\n  }else if (((c & 0xf8) == 0xf0) && (*srclen >= 4)) {     // four bytes\n    e = Tbl[c];\n    Tbl = &Tbl_0[e << eshift];\n    e = Tbl[lsrc[1]];\n    Tbl = &Tbl_0[e << (eshift + 4)];  // 16x the range\n    e = (reinterpret_cast<const int8*>(Tbl))[lsrc[2]];\n    Tbl = &Tbl[e << eshift];          // Relative +/-\n    e = Tbl[lsrc[3]];\n    *src += 4;\n    *srclen -= 4;\n  } else {                                                // Ill-formed\n    e = 0;\n    *src += 1;\n    *srclen -= 1;\n  }\n  return e;\n}\n\n// Scan a UTF-8 stringpiece based on a state table.\n// Always scan complete UTF-8 characters\n// Set number of bytes scanned. Return reason for exiting\nint UTF8GenericScan(const UTF8ScanObj* st,\n                    const uint8* str,\n                    const int len,\n                    int* bytes_consumed) {\n  int eshift = st->entry_shift;        // 6 (space optimized) or 8\n  // int nEntries = (1 << eshift);       // 64 or 256 entries per state\n\n  const uint8* isrc = str;\n    //reinterpret_cast<const uint8*>(str.data());\n  const uint8* src = isrc;\n  //const int len = str.length();\n  const uint8* srclimit = isrc + len;\n  const uint8* srclimit8 = srclimit - 7;\n  *bytes_consumed = 0;\n  if (len == 0) return kExitOK;\n\n  const uint8* Tbl_0 = &st->state_table[st->state0];\n\nDoAgain:\n  // Do state-table scan\n  int e = 0;\n  uint8 c;\n\n  // Do fast for groups of 8 identity bytes.\n  // This covers a lot of 7-bit ASCII ~8x faster then the 1-byte loop,\n  // including slowing slightly on cr/lf/ht\n  //----------------------------\n  const uint8* Tbl2 = &st->fast_state[0];\n  uint32 losub = st->losub;\n  uint32 hiadd = st->hiadd;\n  while (src < srclimit8) {\n    uint32 s0123 = (reinterpret_cast<const uint32 *>(src))[0];\n    uint32 s4567 = (reinterpret_cast<const uint32 *>(src))[1];\n    src += 8;\n    // This is a fast range check for all bytes in [lowsub..0x80-hiadd)\n    uint32 temp = (s0123 - losub) | (s0123 + hiadd) |\n                  (s4567 - losub) | (s4567 + hiadd);\n    if ((temp & 0x80808080) != 0) {\n      // We typically end up here on cr/lf/ht; src was incremented\n      int e0123 = (Tbl2[src[-8]] | Tbl2[src[-7]]) |\n                  (Tbl2[src[-6]] | Tbl2[src[-5]]);\n      if (e0123 != 0) {src -= 8; break;}    // Exit on Non-interchange\n      e0123 = (Tbl2[src[-4]] | Tbl2[src[-3]]) |\n              (Tbl2[src[-2]] | Tbl2[src[-1]]);\n      if (e0123 != 0) {src -= 4; break;}    // Exit on Non-interchange\n      // Else OK, go around again\n    }\n  }\n  //----------------------------\n\n  // Byte-at-a-time scan\n  //----------------------------\n  const uint8* Tbl = Tbl_0;\n  while (src < srclimit) {\n    c = *src;\n    e = Tbl[c];\n    src++;\n    if (e >= kExitIllegalStructure) {break;}\n    Tbl = &Tbl_0[e << eshift];\n  }\n  //----------------------------\n\n\n  // Exit posibilities:\n  //  Some exit code, !state0, back up over last char\n  //  Some exit code, state0, back up one byte exactly\n  //  source consumed, !state0, back up over partial char\n  //  source consumed, state0, exit OK\n  // For illegal byte in state0, avoid backup up over PREVIOUS char\n  // For truncated last char, back up to beginning of it\n\n  if (e >= kExitIllegalStructure) {\n    // Back up over exactly one byte of rejected/illegal UTF-8 character\n    src--;\n    // Back up more if needed\n    if (!InStateZero(st, Tbl)) {\n      do {src--;} while ((src > isrc) && ((src[0] & 0xc0) == 0x80));\n    }\n  } else if (!InStateZero(st, Tbl)) {\n    // Back up over truncated UTF-8 character\n    e = kExitIllegalStructure;\n    do {src--;} while ((src > isrc) && ((src[0] & 0xc0) == 0x80));\n  } else {\n    // Normal termination, source fully consumed\n    e = kExitOK;\n  }\n\n  if (e == kExitDoAgain) {\n    // Loop back up to the fast scan\n    goto DoAgain;\n  }\n\n  *bytes_consumed = src - isrc;\n  return e;\n}\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/win/cld_utf8statetable.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef ENCODINGS_COMPACT_LANG_DET_WIN_CLD_UTF8STATETABLE_H_\n#define ENCODINGS_COMPACT_LANG_DET_WIN_CLD_UTF8STATETABLE_H_\n\n#if !defined(CLD_WINDOWS)\n\n#include \"util/utf8/utf8statetable.h\"\n\n#else\n\n#include \"encodings/compact_lang_det/win/cld_basictypes.h\"\n\n// These four-byte entries compactly encode how many bytes 0..255 to delete\n// in making a string replacement, how many bytes to add 0..255, and the offset\n// 0..64k-1 of the replacement string in remap_string.\nstruct RemapEntry {\n  uint8 delete_bytes;\n  uint8 add_bytes;\n  uint16 bytes_offset;\n};\n\n// Exit type codes for state tables. All but the first get stuffed into\n// signed one-byte entries. The first is only generated by executable code.\n// To distinguish from next-state entries, these must be contiguous and\n// all <= kExitNone\ntypedef enum {\n  kExitDstSpaceFull = 239,\n  kExitIllegalStructure,  // 240\n  kExitOK,                // 241\n  kExitReject,            // ...\n  kExitReplace1,\n  kExitReplace2,\n  kExitReplace3,\n  kExitReplace21,\n  kExitReplace31,\n  kExitReplace32,\n  kExitReplaceOffset1,\n  kExitReplaceOffset2,\n  kExitReplace1S0,\n  kExitSpecial,\n  kExitDoAgain,\n  kExitRejectAlt,\n  kExitNone               // 255\n} ExitReason;\n\ntypedef enum {\n  kExitDstSpaceFull_2 = -32769,\n  kExitIllegalStructure_2,  // -32768\n  kExitOK_2,                // -32767\n  kExitReject_2,            // ...\n  kExitReplace1_2,\n  kExitReplace2_2,\n  kExitReplace3_2,\n  kExitReplace21_2,\n  kExitReplace31_2,\n  kExitReplace32_2,\n  kExitReplaceOffset1_2,\n  kExitReplaceOffset2_2,\n  kExitReplace1S0_2,\n  kExitSpecial_2,\n  kExitDoAgain_2,\n  kExitRejectAlt_2,\n  kExitNone_2               // -32753\n} ExitReason_2;\n\n// This struct represents one entire state table. The three initialized byte\n// areas are state_table, remap_base, and remap_string. state0 and state0_size\n// give the byte offset and length within state_table of the initial state --\n// table lookups are expected to start and end in this state, but for\n// truncated UTF-8 strings, may end in a different state. These allow a quick\n// test for that condition. entry_shift is 8 for tables subscripted by a full\n// byte value and 6 for space-optimized tables subscripted by only six\n// significant bits in UTF-8 continuation bytes.\ntypedef struct {\n  const uint32 state0;\n  const uint32 state0_size;\n  const uint32 total_size;\n  const int max_expand;\n  const int entry_shift;\n  const int bytes_per_entry;\n  const uint32 losub;\n  const uint32 hiadd;\n  const uint8* state_table;\n  const RemapEntry* remap_base;\n  const uint8* remap_string;\n  const uint8* fast_state;\n} UTF8StateMachineObj;\n\n// Near-duplicate declaration for tables with two-byte entries\ntypedef struct {\n  const uint32 state0;\n  const uint32 state0_size;\n  const uint32 total_size;\n  const int max_expand;\n  const int entry_shift;\n  const int bytes_per_entry;\n  const uint32 losub;\n  const uint32 hiadd;\n  const signed short* state_table;\n  const RemapEntry* remap_base;\n  const uint8* remap_string;\n  const uint8* fast_state;\n} UTF8StateMachineObj_2;\n\n\ntypedef UTF8StateMachineObj UTF8PropObj;\ntypedef UTF8StateMachineObj UTF8ScanObj;\ntypedef UTF8StateMachineObj_2 UTF8PropObj_2;\n\n\n// Look up property of one UTF-8 character and advance over it\n// Return 0 if input length is zero\n// Return 0 and advance one byte if input is ill-formed\nuint8 UTF8GenericProperty(const UTF8PropObj* st,\n                          const uint8** src,\n                          int* srclen);\n\n// BigOneByte versions are needed for tables > 240 states, but most\n// won't need the TwoByte versions.\n\n// Look up property of one UTF-8 character and advance over it\n// Return 0 if input length is zero\n// Return 0 and advance one byte if input is ill-formed\nuint8 UTF8GenericPropertyBigOneByte(const UTF8PropObj* st,\n                          const uint8** src,\n                          int* srclen);\n\n// Scan a UTF-8 stringpiece based on a state table.\n// Always scan complete UTF-8 characters\n// Set number of bytes scanned. Return reason for exiting\nint UTF8GenericScan(const UTF8ScanObj* st,\n                    const uint8* str,\n                    const int len,\n                    int* bytes_consumed);\n\n#endif\n\n#endif  // ENCODINGS_COMPACT_LANG_DET_WIN_CLD_UTF8STATETABLE_H_\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/win/cld_utf8utils.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef ENCODINGS_COMPACT_LANG_DET_WIN_CLD_UTF8UTILS_H_\n#define ENCODINGS_COMPACT_LANG_DET_WIN_CLD_UTF8UTILS_H_\n\n#include \"encodings/compact_lang_det/win/cld_utf8statetable.h\"\n\nnamespace cld {\n\n// Scan a UTF-8 stringpiece based on a state table.\n// Always scan complete UTF-8 characters\n// Set number of bytes scanned. Return reason for exiting\nint UTF8GenericScan(const UTF8ScanObj* st,\n                    const char* src,\n                    int len,\n                    int* bytes_consumed);\n\n}  // namespace cld\n\n#endif  // ENCODINGS_COMPACT_LANG_DET_WIN_CLD_UTF8UTILS_H_\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/win/cld_utf8utils_google3.cc",
    "content": "// Copyright 2009 Google Inc.  All Rights Reserved.\n// Author: alekseys@google.com (Aleksey Shlyapnikov)\n\n// This code is not actually used, it was copied here for the reference only.\n// See cld_htmlutils_windows.cc for Windows version of this code.\n\n#include \"cld/encodings/compact_lang_det/win/cld_utf8utils.h\"\n\n#include \"cld/util/utf8/utf8statetable.h\"\n\nnamespace cld {\n\nint UTF8GenericScan(const UTF8ScanObj* st, const char* src, int len,\n                    int* bytes_consumed) {\n  return ::UTF8GenericScan(st, StringPiece(src, len), bytes_consumed);\n}\n\n}  // namespace cld\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/win/cld_utf8utils_windows.cc",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#include \"encodings/compact_lang_det/win/cld_utf8utils.h\"\n\n#include \"encodings/compact_lang_det/win/cld_utf8statetable.h\"\n\nnamespace cld {\n\nint UTF8GenericScan(const UTF8ScanObj* st, const char* src, int len,\n                    int* bytes_consumed) {\n  return ::UTF8GenericScan(st, reinterpret_cast<const uint8*>(src), len,\n                           bytes_consumed);\n}\n\n}  // namespace cld\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/win/normalizedunicodetext.cc",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#include \"encodings/compact_lang_det/win/normalizedunicodetext.h\"\n\n#include <tchar.h>\n#include <windows.h>\n#include <winnls.h>\n\n#include \"encodings/compact_lang_det/win/cld_scopedptr.h\"\n\n\nnamespace {\n\n// Function prototypes copied from MSDN.\ntypedef BOOL (WINAPI *IsNormalizedStringFunction)(NORM_FORM NormForm,\n                                                  LPCWSTR lpSrcString,\n                                                  int cwSrcLength);\ntypedef int (WINAPI *NormalizeStringFunction)(NORM_FORM NormForm,\n                                              LPCWSTR lpSrcString,\n                                              int cwSrcLength,\n                                              LPWSTR lpDstString,\n                                              int cwDstLength);\n\n// A class to provide an access to Normaliz.dll functions.\n// New normalization API implemented in Normaliz.dll is available starting\n// from Windows XP SP2, that's why we have to bind to it dynamically.\nclass NormalizationAPI {\n public:\n  // Creates fully initialized NormalizationAPI object.\n  // Loads DLL and binds all referenced functions.\n  NormalizationAPI()\n      : library_(_T(\"Normaliz.dll\")) {\n    if (library_.IsValid()) {\n      is_normalized_string_.Bind(library_.handle(), \"IsNormalizedString\");\n      normalize_string_.Bind(library_.handle(), \"NormalizeString\");\n    }\n  }\n\n  // Proxy functions for the ones loaded from DLL.\n  BOOL IsNormalizedString(NORM_FORM NormForm, LPCWSTR lpSrcString,\n                          int cwSrcLength) {\n    if (!is_normalized_string_.IsValid())\n      return FALSE;\n    return is_normalized_string_.function()(NormForm, lpSrcString, cwSrcLength);\n  }\n  int NormalizeString(NORM_FORM NormForm, LPCWSTR lpSrcString, int cwSrcLength,\n                      LPWSTR lpDstString, int cwDstLength) {\n    if (!normalize_string_.IsValid()) {\n      ::SetLastError(ERROR_INVALID_FUNCTION);\n      return 0;\n    }\n    return normalize_string_.function()(NormForm, lpSrcString, cwSrcLength,\n                                        lpDstString, cwDstLength);\n  }\n\n  // Returns true if all functions were bound successfully.\n  // This implies that library_ itself was loaded successfully.\n  bool IsValid() const {\n    return is_normalized_string_.IsValid() && normalize_string_.IsValid();\n  }\n\n private:\n  // Holds a handle to loaded Normaliz.dll.\n  ScopedLibrary library_;\n  // Pointers to the functions loaded from Normaliz.dll.\n  FunctionFromDll<IsNormalizedStringFunction> is_normalized_string_;\n  FunctionFromDll<NormalizeStringFunction> normalize_string_;\n\n  DISALLOW_COPY_AND_ASSIGN(NormalizationAPI);\n};\n\nstatic NormalizationAPI normalization_api;\n\n}  // namespace\n\n\n// NormalizedUnicodeText\n\nNormalizedUnicodeText::NormalizedUnicodeText()\n    : normalized_text_(NULL) {\n}\n\n\nDWORD NormalizedUnicodeText::Normalize(NORM_FORM normalization_form,\n                                       const WCHAR* text) {\n  DWORD result = 0;\n  normalized_text_ = TryToNormalizeText(normalization_form, text, &result);\n  return result;\n}\n\n\nconst WCHAR* NormalizedUnicodeText::TryToNormalizeText(\n    NORM_FORM normalization_form, const WCHAR* text, DWORD *error_code) {\n  if (!text) {\n    text_.reset();\n    return text;\n  }\n  _ASSERT(NULL != error_code);\n  if (!error_code)\n    return text;\n\n  if (!normalization_api.IsValid()) {\n    // Fall back to the previous version of normalization API.\n    int folded_text_size = ::FoldStringW(MAP_PRECOMPOSED, text, -1, NULL, 0);\n    if (!folded_text_size) {\n      *error_code = ::GetLastError();\n      return text;\n    }\n\n    text_.reset(new WCHAR[folded_text_size]);\n    if (!text_.get()) {\n      *error_code = ERROR_OUTOFMEMORY;\n      return text;\n    }\n\n    int folding_result =\n        ::FoldStringW(MAP_PRECOMPOSED, text, -1, text_.get(), folded_text_size);\n    if (!folding_result) {\n      *error_code = ::GetLastError();\n      text_.reset();\n      return text;\n    }\n\n    return text_.get();\n  }\n\n  // No need to allocate anything when text is already normalized.\n  if (normalization_api.IsNormalizedString(normalization_form, text, -1))\n    return text;\n\n  // Get the first approximation for the buffer size required to store\n  // normalized text.\n  int normalized_text_size_guess =\n      normalization_api.NormalizeString(normalization_form, text, -1, NULL, 0);\n\n  while (normalized_text_size_guess > 0) {\n    text_.reset(new WCHAR[normalized_text_size_guess]);\n    if (!text_.get()) {\n      *error_code = ERROR_OUTOFMEMORY;\n      break;\n    }\n\n    int normalized_text_size =\n        normalization_api.NormalizeString(normalization_form, text, -1,\n                                          text_.get(),\n                                          normalized_text_size_guess);\n\n    if (normalized_text_size > 0) {\n      // Text was successfully converted.\n      return text_.get();\n    }\n\n    if (ERROR_INSUFFICIENT_BUFFER != ::GetLastError()) {\n      *error_code = ::GetLastError();\n      // Text cannot be normalized, use the original.\n      // By the way, ERROR_SUCCESS is a puzzling case.\n      // MSDN says 'The action completed successfully but yielded no results'.\n      // Does this mean that output buffer was not changed?\n      // Anyway, just in case, also return the original text.\n      break;\n    }\n\n    // Try again with the corrected buffer size.\n    normalized_text_size_guess = -normalized_text_size;\n  }\n\n  // Use the original text in case of any problem with normalization.\n  text_.reset();\n  return text;\n}\n"
  },
  {
    "path": "ext/cld/encodings/compact_lang_det/win/normalizedunicodetext.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef ENCODINGS_COMPACT_LANG_DET_WIN_NORMALIZEDUNICODETEXT_H_\n#define ENCODINGS_COMPACT_LANG_DET_WIN_NORMALIZEDUNICODETEXT_H_\n\n#include <tchar.h>\n#include <windows.h>\n\n#include \"encodings/compact_lang_det/win/cld_scopedptr.h\"\n\n\n#if (WINVER < 0x0600)\n// Copied from winnls.h, we're not using the latest SDK yet.\ntypedef enum _NORM_FORM {\n  NormalizationOther  = 0,\n  NormalizationC = 0x1,\n  NormalizationD = 0x2,\n  NormalizationKC = 0x5,\n  NormalizationKD = 0x6\n} NORM_FORM;\n#endif\n\n\n// Gives you back a normalized version of the input text.  Normalization is\n// performed to the specified form.\n// Instance lifetime should be within the lifetime span of the 'text'.\nclass NormalizedUnicodeText {\n public:\n  // Creates an empty instance of NormalizedUnicodeText.\n  NormalizedUnicodeText();\n\n  // Creates a fully initialized instance of NormalizedUnicodeText.\n  // [in] normalization_form - normalization rule set (see MSDN for details).\n  // [in] text - zero-terminated UTF-16 encoded string.\n  // Returns 0 in case of success, Win32 error code in case of failure.\n  //     In case of failure, get() returns the original text.\n  DWORD Normalize(NORM_FORM normalization_form, const WCHAR* text);\n\n  // Returns pointer to the normalized text.\n  const WCHAR* get() const { return normalized_text_; }\n\n private:\n  // Normalizes 'text' by the 'normalization_form' rules.\n  // [in] normalization_form - normalization rule set (see MSDN for details).\n  // [in] text - zero-terminated UTF-16 encoded string.\n  // [out] error_code - Win32 error code.\n  const WCHAR* TryToNormalizeText(NORM_FORM normalization_form,\n                                  const WCHAR* text, DWORD *error_code);\n\n  // Pointer to the normalized text.\n  const WCHAR* normalized_text_;\n  // When the source text is already normalized by the requested normalization\n  // form, text_ is not used and normalized_text_ just points to the source\n  // text. When the source text requres normalization, text_ contains normalized\n  // version of the source text and normalized_text_ points to this buffer.\n  // Since CLD requires NormalizationC form and the overwhelming majority of all\n  // texts in the Internet is already normalized to this form, it's expected\n  // that this class will not introduce any runtime memory overhead.\n  scoped_array<WCHAR> text_;\n\n  DISALLOW_COPY_AND_ASSIGN(NormalizedUnicodeText);\n};\n\n\n#endif  // ENCODINGS_COMPACT_LANG_DET_WIN_NORMALIZEDUNICODETEXT_H_\n"
  },
  {
    "path": "ext/cld/encodings/internal/encodings.cc",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#include \"encodings/public/encodings.h\"\n\n\n// We do not use it, just to please a compiler and minimize ported\n// code changes.\nconst char * EncodingName(const Encoding enc) {\n  return \"\";\n}\n"
  },
  {
    "path": "ext/cld/encodings/lang_enc.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n// This file is for i18n. It contains two enums, namely Language and\n// Encoding, where Language is the linguistic convention, and Encoding\n// contains information on both language encoding and character set.\n//\n// The language and encoding are both based on Teragram's conventions,\n// except for some common ISO-8859 encodings that are not detected by\n// Teragram but might be in the future.\n//\n// This file also includes functions that do mappings among\n// Language/Encoding enums, language/encoding string names (typically\n// the output from Language Encoding identifier), and language codes\n// (iso 639), and two-letter country codes (iso 3166)\n//\n// NOTE: Both Language and Encoding enums should always start from\n// zero value. This assumption has been made and used.\n//\n\n#ifndef ENCODINGS_LANG_ENC_H__\n#define ENCODINGS_LANG_ENC_H__\n\n#include \"languages/public/languages.h\"\n#include \"encodings/public/encodings.h\"\n\n\n// EncodingsForLanguage\n// --------------------\n//\n// Given the language, returns a pointer to an array of encodings this\n// language supports. Typically, the encs array has at least one\n// element: UNKNOWN_ENCODING, which is always the last element of the\n// array. The first encoding is the default encoding of the language.\n// Return NULL if the input is invalid.\n//\n// Note: The output encoding array does not include ASCII_7BIT, UTF8\n// or UNICODE which are good for all languages. TODO: Find out whether\n// it is better to include ASCII_7BIT, UTF8 and UNICODE or leave them\n// as special cases.\n//\nconst Encoding* EncodingsForLanguage(Language lang);\n\n\n// DefaultEncodingForLanguage\n// --------------------------\n//\n// Given the language, returns the default encoding for the language\n// via the argument encoding.\n//\n// The function returns true if the input lang is valid. Otherwise,\n// false is returned, and encoding is set to UNKNOWN_ENCODING.\n//\nbool DefaultEncodingForLanguage(Language lang,\n                                Encoding *encoding);\n\n// LanguagesForEncoding\n// --------------------\n//\n// Given the encoding, returns a pointer to an array of languages this\n// encoding supports. Typically, the langs array has at least one\n// element: UNKNOWN_LANGUAGE, which is always the last element of the\n// array. The first language in the array if the most popular\n// language for that encoding. NULL is returned if the input is\n// invalid.\n//\n// Note: For ASCII_7BIT, UNICODE and UTF8, only ENGLISH and\n// UNKNOWN_LANGUAGE are returned. TODO: Find out whether to return all\n// the languages or to treat these two encodings as special cases.\n//\n// For other known encodings, ENGLISH is always included. This is\n// because English (Latin) characters are included in each encoding.\n//\nconst Language* LanguagesForEncoding(Encoding enc);\n\n// DefaultLanguageForEncoding\n// --------------------------\n//\n// Given the encoding, returns the default language for that encoding\n// via the argument language.\n//\n// The function returns true if the input enc is valid. Otherwise,\n// false is returned, and language is set to UNKNOWN_LANGUAGE.\n//\n// Note, this function is more useful for the encodings that have only\n// one corresponding language i.e. shift_jis => Japanese. There are\n// cases that multiple langauges have the same encoding, for which the\n// default language is an arbitrary choice from them.\n//\nbool DefaultLanguageForEncoding(Encoding enc, Language* language);\n\n//\n// IsLangEncCompatible\n// -------------------\n//\n// This function is to determine whether the input language and\n// encoding are compatible. For example, FRENCH and LATIN1 are\n// compatible, but FRENCH and GB are not.\n//\n// If either lang or enc is invalid return false.\n// If either lang is unknown, return true.\n//    (e.g. we can detect a page's encoding as latin1 from metatag info, but\n//     cannot derive it language since there are more than one\n//     language encoding in Latin1 )\n// If language is known, but encoding is unknown, return false.\n//    (return true will do us no good since we cannot convert to UTF8 anyway)\n// If enc is unicode or utf8, return true.\n// Otherwise check if lang is supported by enc and enc supported by\n// lang.\n//\nbool IsLangEncCompatible(Language lang, Encoding enc);\n\n//\n// DominantLanguageFromEncoding\n// ----------------------------\n//\n// This function determine if there exists a dominant language for the\n// input encoding. For example, the encoding GB has a dominant\n// language (Chinese), but Latin1 does not.\n//\n// The word \"dominant\" is used here because English characters are\n// included in each encoding.\n//\n// If there is no dominant langauge for the encoding, such as Latin1,\n// UNKNOWN_LANGUAGE is returned.\n//\nLanguage DominantLanguageFromEncoding(Encoding enc);\n\n// LanguageCode\n// ------------------------\n// Given the Language and Encoding, return language code with dialects\n// (>= 2 letters).  Encoding is necessary to disambiguate between\n// Simplified and Traditional Chinese.\n//\n// See the note on Chinese Language Codes in\n// i18n/languages/public/languages.h\n// for the details.\n\nconst char* LanguageCode(Language lang, Encoding enc);\n\n//\n// IsEncodingWithSupportedLanguage()\n// ---------------------------------\n//\n// There are some encoding listed here just because they are commonly\n// used.  There is no interface language for them yet. They are not\n// detected by Teragram, but can be detected from the meta info of the\n// HTML page.\n//\n// For example, we have list ARABIC_ENCODING but there is no arabic in\n// the Language enum. If the user input an Arabic query from Google\n// main page, Netscape will just send the raw bytes to GWS, and GWS\n// will treat them as Latin1.  Therefore, there is no use to detect\n// ARABIC_ENCODING for indexing, since they will never match the\n// queries which are treated as Latin1 by GWS. On the contrary, if we\n// treat page with ARABIC_ENCODING as UNKNOWN_ENCODING, Google will\n// fall them through as Latin1 in indexing time. And there might be a\n// match for some ARABIC queries which are also treated as Latin1 by\n// GWS. In fact, some people are relying on this feature to do Arabic\n// searches.\n//\n// Thus for these type of encoding, before we have the UI support for\n// their language and have a pretty comprehensive language/encoding\n// identification quality, it is better to revert them as\n// UNKNOWN_ENCODING.\n//\n// This function checks whether the input encoding is one with\n// an interface language.\nbool IsEncodingWithSupportedLanguage(Encoding enc);\n\n\n//\n// LangsFromCountryCode and EncFromCountryCode\n// -------------------------------------------\n//\n// These two functions return the possible languages and encodings,\n// respectively, according to the input country code, which is a\n// 2-letter string. The country code is usually specified in the url\n// of a document.\n//\n//\n\n// LangsFromCountryCode\n// --------------------\n//\n// This function takes a string of arbitrary length. It treats the\n// first 2 bytes of the string as the country code, as defined in iso\n// 3166-1993 (E).  It returns, via arguments, an array of the\n// languages that are popular in that country, roughly in order of\n// popularity, together with the size of the array.\n//\n// This function returns true if we have language information for\n// country_code.  Otherwise, it returns false.\n//\nbool LangsFromCountryCode(const char* country_code,\n                          const Language** lang_arry,\n                          int* num_langs);\n\n\n//\n// EncFromCountryCode\n// ------------------\n//\n// This function takes a string of arbitrary length. It treats the\n// first 2 bytes of that string as the country code, as defined in iso\n// 3166-1993 (E). It sets *enc to the encoding that is\n// most often used for the languages spoken in that country.\n//\n// This function returns true if we have encoding information for\n// country_code.  Otherwise, it returns false, and *enc is set to\n// UNKNOWN_ENCODING.\n//\nbool EncFromCountryCode(const char* country_code, Encoding* enc);\n\n\n\n// VisualType\n// ----------\n//\n// Right-to-left documents may be in logical or visual order. When they\n// are in visual order we convert them to logical order before processing.\n// This enum lists the types of visual document we can encounter.\n// Some, but not all, documents in Hebrew/Arabic/Persian etc. will be visual.\n// The other documents in those languages, and all documents in non-RTL\n// languages, will be NOT_VISUAL_DOCUMENT.\nenum VisualType {\n  NOT_VISUAL_DOCUMENT = 0,\n  VISUAL_HEBREW_HTML,  // HTML documents in the legacy visual order.\n  CONVERTED_RTL_PDF,   // Converted RTL PDFs, which are always visual.\n};\n\nVisualType default_visualtype();\n\n// VisualTypeName\n// --------------\n//\n// Given the visual type, returns a string name useful for debug output.\nconst char* VisualTypeName(VisualType visualtype);\n\n\n\n// InitLangEnc\n// -----------\n//\n// Ensures the LangEnc module has been initialized.  Normally this\n// happens during InitGoogle, but this allows access for scripts that\n// don't support InitGoogle. InitLangEnc calls InitEncodings (see\n// i18n/encodings/public/encodings.h) and also initializes data\n// structures used in lang_enc.cc.\n//\nvoid InitLangEnc();\n\n#endif  // ENCODINGS_LANG_ENC_H__\n"
  },
  {
    "path": "ext/cld/encodings/proto/encodings.pb.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef ENCODINGS_PROTO_ENCODINGS_PB_H_\n#define ENCODINGS_PROTO_ENCODINGS_PB_H_\n\nenum Encoding {\n  ISO_8859_1           =  0,  // Teragram ASCII\n  ISO_8859_2           =  1,  // Teragram Latin2\n  ISO_8859_3           =  2,  // in BasisTech but not in Teragram\n  ISO_8859_4           =  3,  // Teragram Latin4\n  ISO_8859_5           =  4,  // Teragram ISO-8859-5\n  ISO_8859_6           =  5,  // Teragram Arabic\n  ISO_8859_7           =  6,  // Teragram Greek\n  ISO_8859_8           =  7,  // Teragram Hebrew\n  ISO_8859_9           =  8,  // in BasisTech but not in Teragram\n  ISO_8859_10          =  9,  // in BasisTech but not in Teragram\n  JAPANESE_EUC_JP      = 10,  // Teragram EUC_JP\n  JAPANESE_SHIFT_JIS   = 11,  // Teragram SJS\n  JAPANESE_JIS         = 12,  // Teragram JIS\n  CHINESE_BIG5         = 13,  // Teragram BIG5\n  CHINESE_GB           = 14,  // Teragram GB\n  CHINESE_EUC_CN       = 15,  // Misnamed. Should be EUC_TW. Was Basis Tech\n                              // CNS11643EUC, before that Teragram EUC-CN(!)\n                              // See //i18n/basistech/basistech_encodings.h\n  KOREAN_EUC_KR        = 16,  // Teragram KSC\n  UNICODE              = 17,  // Teragram Unicode\n  CHINESE_EUC_DEC      = 18,  // Misnamed. Should be EUC_TW. Was Basis Tech\n                              // CNS11643EUC, before that Teragram EUC.\n  CHINESE_CNS          = 19,  // Misnamed. Should be EUC_TW. Was Basis Tech\n                              // CNS11643EUC, before that Teragram CNS.\n  CHINESE_BIG5_CP950   = 20,  // Teragram BIG5_CP950\n  JAPANESE_CP932       = 21,  // Teragram CP932\n  UTF8                 = 22,\n  UNKNOWN_ENCODING     = 23,\n  ASCII_7BIT           = 24,  // ISO_8859_1 with all characters <= 127.\n                              // Should be present only in the crawler\n                              // and in the repository,\n                              // *never* as a result of Document::encoding().\n  RUSSIAN_KOI8_R       = 25,  // Teragram KOI8R\n  RUSSIAN_CP1251       = 26,  // Teragram CP1251\n\n  //----------------------------------------------------------\n  // These are _not_ output from teragram. Instead, they are as\n  // detected in the headers of usenet articles.\n  MSFT_CP1252          = 27,  // 27: CP1252 aka MSFT euro ascii\n  RUSSIAN_KOI8_RU      = 28,  // CP21866 aka KOI8-U, used for Ukrainian.\n                              // Misnamed, this is _not_ KOI8-RU but KOI8-U.\n                              // KOI8-U is used much more often than KOI8-RU.\n  MSFT_CP1250          = 29,  // CP1250 aka MSFT eastern european\n  ISO_8859_15          = 30,  // aka ISO_8859_0 aka ISO_8859_1 euroized\n  //----------------------------------------------------------\n\n  //----------------------------------------------------------\n  // These are in BasisTech but not in Teragram. They are\n  // needed for new interface languages. Now detected by\n  // research langid\n  MSFT_CP1254          = 31,  // used for Turkish\n  MSFT_CP1257          = 32,  // used in Baltic countries\n  //----------------------------------------------------------\n\n  //----------------------------------------------------------\n  //----------------------------------------------------------\n  // New encodings detected by Teragram\n  ISO_8859_11          = 33,  // aka TIS-620, used for Thai\n  MSFT_CP874           = 34,  // used for Thai\n  MSFT_CP1256          = 35,  // used for Arabic\n\n  //----------------------------------------------------------\n  // Detected as ISO_8859_8 by Teragram, but can be found in META tags\n  MSFT_CP1255          = 36,  // Logical Hebrew Microsoft\n  ISO_8859_8_I         = 37,  // Iso Hebrew Logical\n  HEBREW_VISUAL        = 38,  // Iso Hebrew Visual\n  //----------------------------------------------------------\n\n  //----------------------------------------------------------\n  // Detected by research langid\n  CZECH_CP852          = 39,\n  CZECH_CSN_369103     = 40,  // aka ISO_IR_139 aka KOI8_CS\n  MSFT_CP1253          = 41,  // used for Greek\n  RUSSIAN_CP866        = 42,\n  //----------------------------------------------------------\n\n  //----------------------------------------------------------\n  // Handled by iconv in glibc\n  ISO_8859_13          = 43,\n  ISO_2022_KR          = 44,\n  GBK                  = 45,\n  GB18030              = 46,\n  BIG5_HKSCS           = 47,\n  ISO_2022_CN          = 48,\n\n  //-----------------------------------------------------------\n  // Detected by xin liu's detector\n  // Handled by transcoder\n  // (Indic encodings)\n\n  TSCII                = 49,\n  TAMIL_MONO           = 50,\n  TAMIL_BI             = 51,\n  JAGRAN               = 52,\n\n\n  MACINTOSH_ROMAN      = 53,\n  UTF7                 = 54,\n  BHASKAR              = 55,  // Indic encoding - Devanagari\n  HTCHANAKYA           = 56,  // 56 Indic encoding - Devanagari\n\n  //-----------------------------------------------------------\n  // These allow a single place (inputconverter and outputconverter)\n  // to do UTF-16 <==> UTF-8 bulk conversions and UTF-32 <==> UTF-8\n  // bulk conversions, with interchange-valid checking on input and\n  // fallback if needed on ouput.\n  UTF16BE              = 57,  // big-endian UTF-16\n  UTF16LE              = 58,  // little-endian UTF-16\n  UTF32BE              = 59,  // big-endian UTF-32\n  UTF32LE              = 60,  // little-endian UTF-32\n  //-----------------------------------------------------------\n\n  //-----------------------------------------------------------\n  // An encoding that means \"This is not text, but it may have some\n  // simple ASCII text embedded\". Intended input conversion (not yet\n  // implemented) is to keep strings of >=4 seven-bit ASCII characters\n  // (follow each kept string with an ASCII space), delete the rest of\n  // the bytes. This will pick up and allow indexing of e.g. captions\n  // in JPEGs. No output conversion needed.\n  BINARYENC            = 61,\n  //-----------------------------------------------------------\n\n  //-----------------------------------------------------------\n  // Some Web pages allow a mixture of HZ-GB and GB-2312 by using\n  // ~{ ... ~} for 2-byte pairs, and the browsers support this.\n  HZ_GB_2312           = 62,\n  //-----------------------------------------------------------\n\n  //-----------------------------------------------------------\n  // Some external vendors make the common input error of\n  // converting MSFT_CP1252 to UTF8 *twice*. No output conversion needed.\n  UTF8UTF8             = 63,\n  //-----------------------------------------------------------\n\n  //-----------------------------------------------------------\n  // Handled by transcoder for tamil language specific font\n  // encodings without the support for detection at present.\n  TAM_ELANGO           = 64,  // Elango - Tamil\n  TAM_LTTMBARANI       = 65,  // Barani - Tamil\n  TAM_SHREE            = 66,  // Shree - Tamil\n  TAM_TBOOMIS          = 67,  // TBoomis - Tamil\n  TAM_TMNEWS           = 68,  // TMNews - Tamil\n  TAM_WEBTAMIL         = 69,  // Webtamil - Tamil\n  //-----------------------------------------------------------\n\n  //-----------------------------------------------------------\n  // Shift_JIS variants used by Japanese cell phone carriers.\n  KDDI_SHIFT_JIS       = 70,\n  DOCOMO_SHIFT_JIS     = 71,\n  SOFTBANK_SHIFT_JIS   = 72,\n  // ISO-2022-JP variants used by KDDI and SoftBank.\n  KDDI_ISO_2022_JP     = 73,\n  SOFTBANK_ISO_2022_JP = 74,\n  //-----------------------------------------------------------\n\n  NUM_ENCODINGS        = 75,  // Always keep this at the end. It is not a\n                              // valid Encoding enum, it is only used to\n                              // indicate the total number of Encodings.\n};\n\n#endif  // ENCODINGS_PROTO_ENCODINGS_PB_H_\n"
  },
  {
    "path": "ext/cld/encodings/public/encodings.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef ENCODINGS_PUBLIC_ENCODINGS_H_\n#define ENCODINGS_PUBLIC_ENCODINGS_H_\n\n// This interface defines the Encoding enum and various functions that\n// depend only on Encoding values.\n\n// A hash-function for Encoding, hash<Encoding>, is defined in\n// i18n/encodings/public/encodings-hash.h\n\n// On some Windows projects, UNICODE may be defined, which would prevent the\n// Encoding enum below from compiling. Note that this is a quick fix that does\n// not break any existing projects. The UNICODE enum may someday be changed\n// to something more specific and non-colliding, but this involves careful\n// testing of changes in many other projects.\n#undef UNICODE\n\n// NOTE: The Encoding enum must always start at 0. This assumption has\n// been made and used.\n\n#ifndef SWIG\n\n#include \"encodings/proto/encodings.pb.h\"\n\n// We must have this for compatibility.\n// COMMENTED OUT TO REDUCE DEPENDENCIES ON GOOGLE3 CODE\n//using namespace i18n::encodings;\n\n#else\n\n// Special proto SWIG workaround header file.\n#include \"i18n/encodings/internal/encodings_proto_wrapper.h\"\n\n#endif\n\nconst int kNumEncodings = NUM_ENCODINGS;\n\n// some of the popular encoding aliases\n// TODO(jrm) Make these static const Encoding values instead of macros.\n#define LATIN1           ISO_8859_1\n#define LATIN2           ISO_8859_2\n#define LATIN3           ISO_8859_3\n#define LATIN4           ISO_8859_4\n#define CYRILLIC         ISO_8859_5\n#define ARABIC_ENCODING  ISO_8859_6     // avoiding the same name as language\n#define GREEK_ENCODING   ISO_8859_7     // avoiding the same name as language\n#define HEBREW_ENCODING  ISO_8859_8     // avoiding the same name as language\n#define LATIN5           ISO_8859_9\n#define LATIN6           ISO_8859_10\n#define KOREAN_HANGUL    KOREAN_EUC_KR\n\n// The default Encoding (LATIN1).\nEncoding default_encoding();\n\n\n\n// *************************************************************\n// Encoding predicates\n//   IsValidEncoding()\n//   IsEncEncCompatible\n//   IsSupersetOfAscii7Bit\n//   Is8BitEncoding\n//   IsCJKEncoding\n//   IsHebrewEncoding\n//   IsRightToLeftEncoding\n//   IsLogicalRightToLeftEncoding\n//   IsVisualRightToLeftEncoding\n//   IsIso2022Encoding\n//   IsIso2022JpOrVariant\n//   IsShiftJisOrVariant\n//   IsJapaneseCellPhoneCarrierSpecificEncoding\n// *************************************************************\n\n// IsValidEncoding\n// ===================================\n//\n// Function to check if the input language enum is within range.\n//\n\nbool IsValidEncoding(Encoding enc);\n\n//\n// IsEncEncCompatible\n// ------------------\n//\n// This function is to determine whether or not converting from the\n// first encoding to the second requires any changes to the underlying\n// text (e.g.  ASCII_7BIT is a subset of UTF8).\n//\n// TODO(someone more familiar with i18n): the current implementation\n// is likely incomplete.  It would be good to consider the full matrix\n// of all pairs of encodings and to fish out all compatible pairs.\n//\nbool IsEncEncCompatible(const Encoding from, const Encoding to);\n\n// To be a superset of 7-bit Ascii means that bytes 0...127 in the given\n// encoding represent the same characters as they do in ISO_8859_1.\n\n// WARNING: This function does not currently return true for all encodings that\n// are supersets of Ascii 7-bit.\nbool IsSupersetOfAscii7Bit(Encoding e);\n\n// To be an 8-bit encoding means that there are fewer than 256 symbols.\n// Each byte determines a new character; there are no multi-byte sequences.\n\n// WARNING: This function does not currently return true for all encodings that\n// are 8-bit encodings.\nbool Is8BitEncoding(Encoding e);\n\n// IsCJKEncoding\n// -------------\n//\n// This function returns true if the encoding is either Chinese\n// (simplified or traditional), Japanese, or Korean. Note: UTF8 is not\n// considered a CJK encoding.\nbool IsCJKEncoding(Encoding e);\n\n// IsHebrewEncoding\n// -------------\n//\n// This function returns true if the encoding is a Hebrew specific\n// encoding (not UTF8, etc).\nbool IsHebrewEncoding(Encoding e);\n\n// IsRightToLeftEncoding\n// ---------------------\n//\n// Returns true if the encoding is a right-to-left encoding.\n//\n// Note that the name of this function is somewhat misleading. There is nothing\n// \"right to left\" about these encodings. They merely contain code points for\n// characters in RTL languages such as Hebrew and Arabic. But this is also\n// true for UTF-8.\n//\n// TODO(benjy): Get rid of this function. The only special-case we\n// should need to worry about are visual encodings. Anything we\n// need to do for all 'RTL' encodings we need to do for UTF-8 as well.\nbool IsRightToLeftEncoding(Encoding enc);\n\n// IsLogicalRightToLeftEncoding\n// ----------------------------\n//\n// Returns true if the encoding is a logical right-to-left encoding.\n// Logical right-to-left encodings are those that the browser renders\n// right-to-left and applies the BiDi algorithm to. Therefore the characters\n// appear in reading order in the file, and indexing, snippet generation etc.\n// should all just work with no special processing.\n//\n// TODO(benjy): Get rid of this function. The only special-case we\n// should need to worry about are visual encodings.\nbool IsLogicalRightToLeftEncoding(Encoding enc);\n\n// IsVisualRightToLeftEncoding\n// ---------------------------\n//\n// Returns true if the encoding is a visual right-to-left encoding.\n// Visual right-to-left encodings are those that the browser renders\n// left-to-right and does not apply the BiDi algorithm to. Therefore each\n// line appears in reverse order in the file, lines are manually wrapped\n// by abusing <br> or <p> tags, etc. Visual RTL encoding is a relic of\n// the prehistoric days when browsers couldn't render right-to-left, but\n// unfortunately some visual pages persist to this day. These documents require\n// special processing so that we don't index or snippet them with each line\n// reversed.\nbool IsVisualRightToLeftEncoding(Encoding enc);\n\n// IsIso2022Encoding\n// -----------------\n//\n// Returns true if the encoding is a kind of ISO 2022 such as\n// ISO-2022-JP.\nbool IsIso2022Encoding(Encoding enc);\n\n// IsIso2022JpOrVariant\n// --------------------\n//\n// Returns true if the encoding is ISO-2022-JP or a variant such as\n// KDDI's ISO-2022-JP.\nbool IsIso2022JpOrVariant(Encoding enc);\n\n// IsShiftJisOrVariant\n// --------------------\n//\n// Returns true if the encoding is Shift_JIS or a variant such as\n// KDDI's Shift_JIS.\nbool IsShiftJisOrVariant(Encoding enc);\n\n// IsJapanesCellPhoneCarrierSpecificEncoding\n// -----------------------------------------\n//\n// Returns true if it's Japanese cell phone carrier specific encoding\n// such as KDDI_SHIFT_JIS.\nbool IsJapaneseCellPhoneCarrierSpecificEncoding(Encoding enc);\n\n\n\n// *************************************************************\n// ENCODING NAMES\n//\n// This interface defines a standard name for each valid encoding, and\n// a standard name for invalid encodings. (Some names use all upper\n// case, but others use mixed case.)\n//\n//   EncodingName() [Encoding to name]\n//   MimeEncodingName() [Encoding to name]\n//   EncodingFromName() [name to Encoding]\n//   EncodingNameAliasToEncoding() [name to Encoding]\n//   default_encoding_name()\n//   invalid_encoding_name()\n// *************************************************************\n\n// EncodingName\n// ------------\n//\n// Given the encoding, returns its standard name.\n// Return invalid_encoding_name() if the encoding is invalid.\n//\nconst char* EncodingName(Encoding enc);\n\n//\n// MimeEncodingName\n// ----------------\n//\n// Return the \"preferred MIME name\" of an encoding.\n//\n// This name is suitable for using in HTTP headers, HTML tags,\n// and as the \"charset\" parameter of a MIME Content-Type.\nconst char* MimeEncodingName(Encoding enc);\n\n\n// The maximum length of an encoding name\nconst int kMaxEncodingNameSize = 50;\n\n// The standard name of the default encoding.\nconst char* default_encoding_name();\n\n// The name used for an invalid encoding.\nconst char* invalid_encoding_name();\n\n// EncodingFromName\n// ----------------\n//\n// If enc_name matches the standard name of an Encoding, using a\n// case-insensitive comparison, set *encoding to that Encoding and\n// return true.  Otherwise set *encoding to UNKNOWN_ENCODING and\n// return false.\n//\n// REQUIRES: encoding must not be NULL.\n//\nbool EncodingFromName(const char* enc_name, Encoding *encoding);\n\n//\n// EncodingNameAliasToEncoding\n// ---------------------------\n//\n// If enc_name matches the standard name or an alias of an Encoding,\n// using a case-insensitive comparison, return that\n// Encoding. Otherwise, return UNKNOWN_ENCODING.\n//\n// Aliases include most mime-encoding names (e.g., \"ISO-8859-7\" for\n// GREEK), alternate names (e.g., \"cyrillic\" for ISO_8859_5) and\n// common variations with hyphens and underscores (e.g., \"koi8-u\" and\n// \"koi8u\" for RUSSIAN_KOI8_R).\n\nEncoding EncodingNameAliasToEncoding(const char *enc_name);\n\n\n// *************************************************************\n// Miscellany\n// *************************************************************\n\n// PreferredWebOutputEncoding\n// --------------------------\n//\n// Some multi-byte encodings use byte values that coincide with the\n// ASCII codes for HTML syntax characters <>\"&' and browsers like MSIE\n// can misinterpret these, as indicated in an external XSS report from\n// 2007-02-15. Here, we map these dangerous encodings to safer ones. We\n// also use UTF8 instead of encodings that we don't support in our\n// output, and we generally try to be conservative in what we send out.\n// Where the client asks for single- or double-byte encodings that are\n// not as common, we substitute a more common single- or double-byte\n// encoding, if there is one, thereby preserving the client's intent\n// to use less space than UTF-8. This also means that characters\n// outside the destination set will be converted to HTML NCRs (&#NNN;)\n// if requested.\nEncoding PreferredWebOutputEncoding(Encoding enc);\n\n\n// InitEncodings\n// -------------\n//\n// Ensures the encodings module has been initialized.  Normally this happens\n// during InitGoogle, but this allows access for scripts that don't\n// support InitGoogle.\nvoid InitEncodings();\n\n#endif  // ENCODINGS_PUBLIC_ENCODINGS_H_\n"
  },
  {
    "path": "ext/cld/extconf.rb",
    "content": "#require 'mkmf'\n#create_makefile('cld/cld')\n\nENV['CFLAGS'] = ENV['CFLAGS'].to_s + ' -Wno-narrowing'\nENV['CXXFLAGS'] = ENV['CXXFLAGS'].to_s + ' -Wno-narrowing'\n\nsystem \"./configure --prefix=#{Dir.pwd}\" unless File.exist?('Makefile')\n"
  },
  {
    "path": "ext/cld/languages/internal/#languages.cc#",
    "content": "// Copyright (c) 2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#include \"languages/public/languages.h\"\n\n#include \"base/string_util.h\"\n#include \"encodings/compact_lang_det/win/cld_basictypes.h\"\n\n\nLanguage default_language() {return ENGLISH;}\n\n\n// Language names and codes\n\nstruct LanguageInfo {\n  const char * language_name_;\n  const char * language_code_639_1_;   // the ISO-639-1 code for the language\n  const char * language_code_639_2_;   // the ISO-639-2 code for the language\n  const char * language_code_other_;   // some nonstandard code for the language\n};\n\nstatic const LanguageInfo kLanguageInfoTable[] = {\n  { \"ENGLISH\",             \"en\", \"eng\", NULL},\n  { \"DANISH\",              \"da\", \"dan\", NULL},\n  { \"DUTCH\",               \"nl\", \"dut\", NULL},\n  { \"FINNISH\",             \"fi\", \"fin\", NULL},\n  { \"FRENCH\",              \"fr\", \"fre\", NULL},\n  { \"GERMAN\",              \"de\", \"ger\", NULL},\n  { \"HEBREW\",              \"he\", \"heb\", NULL},\n  { \"ITALIAN\",             \"it\", \"ita\", NULL},\n  { \"Japanese\",            \"ja\", \"jpn\", NULL},\n  { \"Korean\",              \"ko\", \"kor\", NULL},\n  { \"NORWEGIAN\",           \"nb\", \"nor\", NULL},\n  { \"POLISH\",              \"pl\", \"pol\", NULL},\n  { \"PORTUGUESE\",          \"pt\", \"por\", NULL},\n  { \"RUSSIAN\",             \"ru\", \"rus\", NULL},\n  { \"SPANISH\",             \"es\", \"spa\", NULL},\n  { \"SWEDISH\",             \"sv\", \"swe\", NULL},\n  { \"Chinese\",             \"zh\", \"chi\", \"zh-CN\"},\n  { \"CZECH\",               \"cs\", \"cze\", NULL},\n  { \"GREEK\",               \"el\", \"gre\", NULL},\n  { \"ICELANDIC\",           \"is\", \"ice\", NULL},\n  { \"LATVIAN\",             \"lv\", \"lav\", NULL},\n  { \"LITHUANIAN\",          \"lt\", \"lit\", NULL},\n  { \"ROMANIAN\",            \"ro\", \"rum\", NULL},\n  { \"HUNGARIAN\",           \"hu\", \"hun\", NULL},\n  { \"ESTONIAN\",            \"et\", \"est\", NULL},\n  // TODO: Although Teragram has two output names \"TG_UNKNOWN_LANGUAGE\"\n  // and \"Unknown\", they are essentially the same. Need to unify them.\n  // \"un\" and \"ut\" are invented by us, not from ISO-639.\n  //\n  { \"TG_UNKNOWN_LANGUAGE\", NULL, NULL, \"ut\"},\n  { \"Unknown\",             NULL, NULL, \"un\"},\n  { \"BULGARIAN\",           \"bg\", \"bul\", NULL},\n  { \"CROATIAN\",            \"hr\", \"scr\", NULL},\n  { \"SERBIAN\",             \"sr\", \"scc\", NULL},\n  { \"IRISH\",               \"ga\", \"gle\", NULL},\n  { \"GALICIAN\",            \"gl\", \"glg\", NULL},\n  // Impossible to tell Tagalog from Filipino at the moment.\n  // Use ISO 639-2 code for Filipino here.\n  { \"TAGALOG\",             NULL, \"fil\", NULL},\n  { \"TURKISH\",             \"tr\", \"tur\", NULL},\n  { \"UKRAINIAN\",           \"uk\", \"ukr\", NULL},\n  { \"HINDI\",               \"hi\", \"hin\", NULL},\n  { \"MACEDONIAN\",          \"mk\", \"mac\", NULL},\n  { \"BENGALI\",             \"bn\", \"ben\", NULL},\n  { \"INDONESIAN\",          \"id\", \"ind\", NULL},\n  { \"LATIN\",               \"la\", \"lat\", NULL},\n  { \"MALAY\",               \"ms\", \"may\", NULL},\n  { \"MALAYALAM\",           \"ml\", \"mal\", NULL},\n  { \"WELSH\",               \"cy\", \"wel\", NULL},\n  { \"NEPALI\",              \"ne\", \"nep\", NULL},\n  { \"TELUGU\",              \"te\", \"tel\", NULL},\n  { \"ALBANIAN\",            \"sq\", \"alb\", NULL},\n  { \"TAMIL\",               \"ta\", \"tam\", NULL},\n  { \"BELARUSIAN\",          \"be\", \"bel\", NULL},\n  { \"JAVANESE\",            \"jw\", \"jav\", NULL},\n  { \"OCCITAN\",             \"oc\", \"oci\", NULL},\n  { \"URDU\",                \"ur\", \"urd\", NULL},\n  { \"BIHARI\",              \"bh\", \"bih\", NULL},\n  { \"GUJARATI\",            \"gu\", \"guj\", NULL},\n  { \"THAI\",                \"th\", \"tha\", NULL},\n  { \"ARABIC\",              \"ar\", \"ara\", NULL},\n  { \"CATALAN\",             \"ca\", \"cat\", NULL},\n  { \"ESPERANTO\",           \"eo\", \"epo\", NULL},\n  { \"BASQUE\",              \"eu\", \"baq\", NULL},\n  { \"INTERLINGUA\",         \"ia\", \"ina\", NULL},\n  { \"KANNADA\",             \"kn\", \"kan\", NULL},\n  { \"PUNJABI\",             \"pa\", \"pan\", NULL},\n  { \"SCOTS_GAELIC\",        \"gd\", \"gla\", NULL},\n  { \"SWAHILI\",             \"sw\", \"swa\", NULL},\n  { \"SLOVENIAN\",           \"sl\", \"slv\", NULL},\n  { \"MARATHI\",             \"mr\", \"mar\", NULL},\n  { \"MALTESE\",             \"mt\", \"mlt\", NULL},\n  { \"VIETNAMESE\",          \"vi\", \"vie\", NULL},\n  { \"FRISIAN\",             \"fy\", \"fry\", NULL},\n  { \"SLOVAK\",              \"sk\", \"slo\", NULL},\n  { \"ChineseT\",\n    NULL,  NULL,  // We intentionally set these 2 fields to NULL to avoid\n                  // confusion between CHINESE_T and CHINESE.\n    \"zh-TW\"},\n  { \"FAROESE\",             \"fo\", \"fao\", NULL},\n  { \"SUNDANESE\",           \"su\", \"sun\", NULL},\n  { \"UZBEK\",               \"uz\", \"uzb\", NULL},\n  { \"AMHARIC\",             \"am\", \"amh\", NULL},\n  { \"AZERBAIJANI\",         \"az\", \"aze\", NULL},\n  { \"GEORGIAN\",            \"ka\", \"geo\", NULL},\n  { \"TIGRINYA\",            \"ti\", \"tir\", NULL},\n  { \"PERSIAN\",             \"fa\", \"per\", NULL},\n  { \"BOSNIAN\",             \"bs\", \"bos\", NULL},\n  { \"SINHALESE\",           \"si\", \"sin\", NULL},\n  { \"NORWEGIAN_N\",         \"nn\", \"nno\", NULL},\n  { \"PORTUGUESE_P\",        NULL, NULL, \"pt-PT\"},\n  { \"PORTUGUESE_B\",        NULL, NULL, \"pt-BR\"},\n  { \"XHOSA\",               \"xh\", \"xho\", NULL},\n  { \"ZULU\",                \"zu\", \"zul\", NULL},\n  { \"GUARANI\",             \"gn\", \"grn\", NULL},\n  { \"SESOTHO\",             \"st\", \"sot\", NULL},\n  { \"TURKMEN\",             \"tk\", \"tuk\", NULL},\n  { \"KYRGYZ\",              \"ky\", \"kir\", NULL},\n  { \"BRETON\",              \"br\", \"bre\", NULL},\n  { \"TWI\",                 \"tw\", \"twi\", NULL},\n  { \"YIDDISH\",             \"yi\", \"yid\", NULL},\n  { \"SERBO_CROATIAN\",      \"sh\", NULL, NULL},\n  { \"SOMALI\",              \"so\", \"som\", NULL},\n  { \"UIGHUR\",              \"ug\", \"uig\", NULL},\n  { \"KURDISH\",             \"ku\", \"kur\", NULL},\n  { \"MONGOLIAN\",           \"mn\", \"mon\", NULL},\n  { \"ARMENIAN\",            \"hy\", \"arm\", NULL},\n  { \"LAOTHIAN\",            \"lo\", \"lao\", NULL},\n  { \"SINDHI\",              \"sd\", \"snd\", NULL},\n  { \"RHAETO_ROMANCE\",      \"rm\", \"roh\", NULL},\n  { \"AFRIKAANS\",           \"af\", \"afr\", NULL},\n  { \"LUXEMBOURGISH\",       \"lb\", \"ltz\", NULL},\n  { \"BURMESE\",             \"my\", \"bur\", NULL},\n  // KHMER is known as Cambodian for Google user interfaces.\n  { \"KHMER\",               \"km\", \"khm\", NULL},\n  { \"TIBETAN\",             \"bo\", \"tib\", NULL},\n  { \"DHIVEHI\",             \"dv\", \"div\", NULL},\n  { \"CHEROKEE\",            NULL, \"chr\", NULL},\n  { \"SYRIAC\",              NULL, \"syr\", NULL},\n  { \"LIMBU\",               NULL, NULL, \"sit-NP\"},\n  { \"ORIYA\",               \"or\", \"ori\", NULL},\n  { \"ASSAMESE\",            \"as\", \"asm\", NULL},\n  { \"CORSICAN\",            \"co\", \"cos\", NULL},\n  { \"INTERLINGUE\",         \"ie\", \"ine\", NULL},\n  { \"KAZAKH\",              \"kk\", \"kaz\", NULL},\n  { \"LINGALA\",             \"ln\", \"lin\", NULL},\n  { \"MOLDAVIAN\",           \"mo\", \"mol\", NULL},\n  { \"PASHTO\",              \"ps\", \"pus\", NULL},\n  { \"QUECHUA\",             \"qu\", \"que\", NULL},\n  { \"SHONA\",               \"sn\", \"sna\", NULL},\n  { \"TAJIK\",               \"tg\", \"tgk\", NULL},\n  { \"TATAR\",               \"tt\", \"tat\", NULL},\n  { \"TONGA\",               \"to\", \"tog\", NULL},\n  { \"YORUBA\",              \"yo\", \"yor\", NULL},\n  { \"CREOLES_AND_PIDGINS_ENGLISH_BASED\", NULL, \"cpe\", NULL},\n  { \"CREOLES_AND_PIDGINS_FRENCH_BASED\",  NULL, \"cpf\", NULL},\n  { \"CREOLES_AND_PIDGINS_PORTUGUESE_BASED\", NULL, \"cpp\", NULL},\n  { \"CREOLES_AND_PIDGINS_OTHER\", NULL, \"crp\", NULL},\n  { \"MAORI\",               \"mi\", \"mao\", NULL},\n  { \"WOLOF\",               \"wo\", \"wol\", NULL},\n  { \"ABKHAZIAN\",           \"ab\", \"abk\", NULL},\n  { \"AFAR\",                \"aa\", \"aar\", NULL},\n  { \"AYMARA\",              \"ay\", \"aym\", NULL},\n  { \"BASHKIR\",             \"ba\", \"bak\", NULL},\n  { \"BISLAMA\",             \"bi\", \"bis\", NULL},\n  { \"DZONGKHA\",            \"dz\", \"dzo\", NULL},\n  { \"FIJIAN\",              \"fj\", \"fij\", NULL},\n  { \"GREENLANDIC\",         \"kl\", \"kal\", NULL},\n  { \"HAUSA\",               \"ha\", \"hau\", NULL},\n  { \"HAITIAN_CREOLE\",       \"ht\", NULL, NULL},\n  { \"INUPIAK\",             \"ik\", \"ipk\", NULL},\n  { \"INUKTITUT\",           \"iu\", \"iku\", NULL},\n  { \"KASHMIRI\",            \"ks\", \"kas\", NULL},\n  { \"KINYARWANDA\",         \"rw\", \"kin\", NULL},\n  { \"MALAGASY\",            \"mg\", \"mlg\", NULL},\n  { \"NAURU\",               \"na\", \"nau\", NULL},\n  { \"OROMO\",               \"om\", \"orm\", NULL},\n  { \"RUNDI\",               \"rn\", \"run\", NULL},\n  { \"SAMOAN\",              \"sm\", \"smo\", NULL},\n  { \"SANGO\",               \"sg\", \"sag\", NULL},\n  { \"SANSKRIT\",            \"sa\", \"san\", NULL},\n  { \"SISWANT\",             \"ss\", \"ssw\", NULL},\n  { \"TSONGA\",              \"ts\", \"tso\", NULL},\n  { \"TSWANA\",              \"tn\", \"tsn\", NULL},\n  { \"VOLAPUK\",             \"vo\", \"vol\", NULL},\n  { \"ZHUANG\",              \"za\", \"zha\", NULL},\n  { \"KHASI\",               NULL, \"kha\", NULL},\n  { \"SCOTS\",               NULL, \"sco\", NULL},\n  { \"GANDA\",               \"lg\", \"lug\", NULL},\n  { \"MANX\",                \"gv\", \"glv\", NULL},\n  { \"MONTENEGRIN\",         NULL, NULL, \"sr-ME\"},\n  { \"XX\",                  NULL, NULL, \"XX\"},\n};\n\nCOMPILE_ASSERT(arraysize(kLanguageInfoTable) == NUM_LANGUAGES + 1,\n               kLanguageInfoTable_has_incorrect_length);\n\n\n// LANGUAGE NAMES\n\nconst char* default_language_name() {\n  return kLanguageInfoTable[ENGLISH].language_name_;\n}\n\nstatic const char* const kInvalidLanguageName = \"invalid_language\";\n\nconst char *invalid_language_name() {\n  return kInvalidLanguageName;\n}\n\nconst char* LanguageName(Language lang) {\n  return IsValidLanguage(lang)\n      ? kLanguageInfoTable[lang].language_name_\n      : kInvalidLanguageName;\n}\n\n\n\n// LANGUAGE CODES\n\n\n// The space before invalid_language_code is intentional. It is used\n// to prevent it matching any two letter language code.\n//\nstatic const char* const kInvalidLanguageCode = \" invalid_language_code\";\n\nconst char *invalid_language_code() {\n  return kInvalidLanguageCode;\n}\n\nconst char * LanguageCode(Language lang) {\n  if (! IsValidLanguage(lang))\n    return kInvalidLanguageCode;\n  const LanguageInfo& info = kLanguageInfoTable[lang];\n  if (info.language_code_639_1_) {\n    return info.language_code_639_1_;\n  } else if (info.language_code_639_2_) {\n    return info.language_code_639_2_;\n  } else if (info.language_code_other_) {\n    return info.language_code_other_;\n  } else {\n    return kInvalidLanguageCode;\n  }\n}\n\nconst char* default_language_code() {\n  return kLanguageInfoTable[ENGLISH].language_code_639_1_;\n}\n\nconst char* LanguageCodeISO639_1(Language lang) {\n  if (! IsValidLanguage(lang))\n    return kInvalidLanguageCode;\n  if (const char* code = kLanguageInfoTable[lang].language_code_639_1_)\n    return code;\n  return kInvalidLanguageCode;\n}\n\nconst char* LanguageCodeISO639_2(Language lang) {\n  if (! IsValidLanguage(lang))\n    return kInvalidLanguageCode;\n  if (const char* code = kLanguageInfoTable[lang].language_code_639_2_)\n    return code;\n  return kInvalidLanguageCode;\n}\n\nconst char* LanguageCodeWithDialects(Language lang) {\n  if (lang == CHINESE)\n    return \"zh-CN\";\n  return LanguageCode(lang);\n}\n\n\n\nbool LanguageFromCode(const char* lang_code, Language *language) {\n  *language = UNKNOWN_LANGUAGE;\n  if ( lang_code == NULL ) return false;\n\n  for ( int i = 0 ; i < kNumLanguages ; i++ ) {\n    const LanguageInfo& info = kLanguageInfoTable[i];\n    if ((info.language_code_639_1_ &&\n         !base::strcasecmp(lang_code, info.language_code_639_1_)) ||\n        (info.language_code_639_2_ &&\n         !base::strcasecmp(lang_code, info.language_code_639_2_)) ||\n        (info.language_code_other_ &&\n         !base::strcasecmp(lang_code, info.language_code_other_))) {\n      *language = static_cast<Language>(i);\n      return true;\n    }\n  }\n\n  // For convenience, this function can also parse the non-standard\n  // five-letter language codes \"zh-cn\" and \"zh-tw\" which are used by\n  // front-ends such as GWS to distinguish Simplified from Traditional\n  // Chinese.\n  if (!base::strcasecmp(lang_code, \"zh-cn\") ||\n      !base::strcasecmp(lang_code, \"zh_cn\")) {\n    *language = CHINESE;\n    return true;\n  }\n  if (!base::strcasecmp(lang_code, \"zh-tw\") ||\n      !base::strcasecmp(lang_code, \"zh_tw\")) {\n    *language = CHINESE_T;\n    return true;\n  }\n  if (!base::strcasecmp(lang_code, \"sr-me\") ||\n      !base::strcasecmp(lang_code, \"sr_me\")) {\n    *language = MONTENEGRIN;\n    return true;\n  }\n\n  // Process language-code synonyms.\n  if (!base::strcasecmp(lang_code, \"he\")) {\n    *language = HEBREW;  // Use \"iw\".\n    return true;\n  }\n  if (!base::strcasecmp(lang_code, \"in\")) {\n    *language = INDONESIAN;  // Use \"id\".\n    return true;\n  }\n  if (!base::strcasecmp(lang_code, \"ji\")) {\n    *language = YIDDISH;  // Use \"yi\".\n    return true;\n  }\n\n  // Process language-detection synonyms.\n  // These distinct languages cannot be differentiated by our current\n  // language-detection algorithms.\n  if (!base::strcasecmp(lang_code, \"fil\")) {\n    *language = TAGALOG;\n    return true;\n  }\n\n  return false;\n}\n"
  },
  {
    "path": "ext/cld/languages/internal/languages.cc",
    "content": "// Copyright (c) 2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#include \"languages/public/languages.h\"\n\n#include \"base/string_util.h\"\n#include \"encodings/compact_lang_det/win/cld_basictypes.h\"\n\n\nLanguage default_language() {return ENGLISH;}\n\n\n// Language names and codes\n\nstruct LanguageInfo {\n  const char * language_name_;\n  const char * language_code_639_1_;   // the ISO-639-1 code for the language\n  const char * language_code_639_2_;   // the ISO-639-2 code for the language\n  const char * language_code_other_;   // some nonstandard code for the language\n};\n\nstatic const LanguageInfo kLanguageInfoTable[] = {\n  { \"ENGLISH\",             \"en\", \"eng\", NULL},\n  { \"DANISH\",              \"da\", \"dan\", NULL},\n  { \"DUTCH\",               \"nl\", \"dut\", NULL},\n  { \"FINNISH\",             \"fi\", \"fin\", NULL},\n  { \"FRENCH\",              \"fr\", \"fre\", NULL},\n  { \"GERMAN\",              \"de\", \"ger\", NULL},\n  { \"HEBREW\",              \"he\", \"heb\", NULL},\n  { \"ITALIAN\",             \"it\", \"ita\", NULL},\n  { \"Japanese\",            \"ja\", \"jpn\", NULL},\n  { \"Korean\",              \"ko\", \"kor\", NULL},\n  { \"NORWEGIAN\",           \"nb\", \"nor\", NULL},\n  { \"POLISH\",              \"pl\", \"pol\", NULL},\n  { \"PORTUGUESE\",          \"pt\", \"por\", NULL},\n  { \"RUSSIAN\",             \"ru\", \"rus\", NULL},\n  { \"SPANISH\",             \"es\", \"spa\", NULL},\n  { \"SWEDISH\",             \"sv\", \"swe\", NULL},\n  { \"Chinese\",             \"zh\", \"chi\", \"zh-CN\"},\n  { \"CZECH\",               \"cs\", \"cze\", NULL},\n  { \"GREEK\",               \"el\", \"gre\", NULL},\n  { \"ICELANDIC\",           \"is\", \"ice\", NULL},\n  { \"LATVIAN\",             \"lv\", \"lav\", NULL},\n  { \"LITHUANIAN\",          \"lt\", \"lit\", NULL},\n  { \"ROMANIAN\",            \"ro\", \"rum\", NULL},\n  { \"HUNGARIAN\",           \"hu\", \"hun\", NULL},\n  { \"ESTONIAN\",            \"et\", \"est\", NULL},\n  // TODO: Although Teragram has two output names \"TG_UNKNOWN_LANGUAGE\"\n  // and \"Unknown\", they are essentially the same. Need to unify them.\n  // \"un\" and \"ut\" are invented by us, not from ISO-639.\n  //\n  { \"TG_UNKNOWN_LANGUAGE\", NULL, NULL, \"ut\"},\n  { \"Unknown\",             NULL, NULL, \"un\"},\n  { \"BULGARIAN\",           \"bg\", \"bul\", NULL},\n  { \"CROATIAN\",            \"hr\", \"scr\", NULL},\n  { \"SERBIAN\",             \"sr\", \"scc\", NULL},\n  { \"IRISH\",               \"ga\", \"gle\", NULL},\n  { \"GALICIAN\",            \"gl\", \"glg\", NULL},\n  // Impossible to tell Tagalog from Filipino at the moment.\n  { \"TAGALOG\",             \"tl\", \"tgl\", NULL},\n  { \"TURKISH\",             \"tr\", \"tur\", NULL},\n  { \"UKRAINIAN\",           \"uk\", \"ukr\", NULL},\n  { \"HINDI\",               \"hi\", \"hin\", NULL},\n  { \"MACEDONIAN\",          \"mk\", \"mac\", NULL},\n  { \"BENGALI\",             \"bn\", \"ben\", NULL},\n  { \"INDONESIAN\",          \"id\", \"ind\", NULL},\n  { \"LATIN\",               \"la\", \"lat\", NULL},\n  { \"MALAY\",               \"ms\", \"may\", NULL},\n  { \"MALAYALAM\",           \"ml\", \"mal\", NULL},\n  { \"WELSH\",               \"cy\", \"wel\", NULL},\n  { \"NEPALI\",              \"ne\", \"nep\", NULL},\n  { \"TELUGU\",              \"te\", \"tel\", NULL},\n  { \"ALBANIAN\",            \"sq\", \"alb\", NULL},\n  { \"TAMIL\",               \"ta\", \"tam\", NULL},\n  { \"BELARUSIAN\",          \"be\", \"bel\", NULL},\n  { \"JAVANESE\",            \"jw\", \"jav\", NULL},\n  { \"OCCITAN\",             \"oc\", \"oci\", NULL},\n  { \"URDU\",                \"ur\", \"urd\", NULL},\n  { \"BIHARI\",              \"bh\", \"bih\", NULL},\n  { \"GUJARATI\",            \"gu\", \"guj\", NULL},\n  { \"THAI\",                \"th\", \"tha\", NULL},\n  { \"ARABIC\",              \"ar\", \"ara\", NULL},\n  { \"CATALAN\",             \"ca\", \"cat\", NULL},\n  { \"ESPERANTO\",           \"eo\", \"epo\", NULL},\n  { \"BASQUE\",              \"eu\", \"baq\", NULL},\n  { \"INTERLINGUA\",         \"ia\", \"ina\", NULL},\n  { \"KANNADA\",             \"kn\", \"kan\", NULL},\n  { \"PUNJABI\",             \"pa\", \"pan\", NULL},\n  { \"SCOTS_GAELIC\",        \"gd\", \"gla\", NULL},\n  { \"SWAHILI\",             \"sw\", \"swa\", NULL},\n  { \"SLOVENIAN\",           \"sl\", \"slv\", NULL},\n  { \"MARATHI\",             \"mr\", \"mar\", NULL},\n  { \"MALTESE\",             \"mt\", \"mlt\", NULL},\n  { \"VIETNAMESE\",          \"vi\", \"vie\", NULL},\n  { \"FRISIAN\",             \"fy\", \"fry\", NULL},\n  { \"SLOVAK\",              \"sk\", \"slo\", NULL},\n  { \"ChineseT\",\n    NULL,  NULL,  // We intentionally set these 2 fields to NULL to avoid\n                  // confusion between CHINESE_T and CHINESE.\n    \"zh-TW\"},\n  { \"FAROESE\",             \"fo\", \"fao\", NULL},\n  { \"SUNDANESE\",           \"su\", \"sun\", NULL},\n  { \"UZBEK\",               \"uz\", \"uzb\", NULL},\n  { \"AMHARIC\",             \"am\", \"amh\", NULL},\n  { \"AZERBAIJANI\",         \"az\", \"aze\", NULL},\n  { \"GEORGIAN\",            \"ka\", \"geo\", NULL},\n  { \"TIGRINYA\",            \"ti\", \"tir\", NULL},\n  { \"PERSIAN\",             \"fa\", \"per\", NULL},\n  { \"BOSNIAN\",             \"bs\", \"bos\", NULL},\n  { \"SINHALESE\",           \"si\", \"sin\", NULL},\n  { \"NORWEGIAN_N\",         \"nn\", \"nno\", NULL},\n  { \"PORTUGUESE_P\",        NULL, NULL, \"pt-PT\"},\n  { \"PORTUGUESE_B\",        NULL, NULL, \"pt-BR\"},\n  { \"XHOSA\",               \"xh\", \"xho\", NULL},\n  { \"ZULU\",                \"zu\", \"zul\", NULL},\n  { \"GUARANI\",             \"gn\", \"grn\", NULL},\n  { \"SESOTHO\",             \"st\", \"sot\", NULL},\n  { \"TURKMEN\",             \"tk\", \"tuk\", NULL},\n  { \"KYRGYZ\",              \"ky\", \"kir\", NULL},\n  { \"BRETON\",              \"br\", \"bre\", NULL},\n  { \"TWI\",                 \"tw\", \"twi\", NULL},\n  { \"YIDDISH\",             \"yi\", \"yid\", NULL},\n  { \"SERBO_CROATIAN\",      \"sh\", NULL, NULL},\n  { \"SOMALI\",              \"so\", \"som\", NULL},\n  { \"UIGHUR\",              \"ug\", \"uig\", NULL},\n  { \"KURDISH\",             \"ku\", \"kur\", NULL},\n  { \"MONGOLIAN\",           \"mn\", \"mon\", NULL},\n  { \"ARMENIAN\",            \"hy\", \"arm\", NULL},\n  { \"LAOTHIAN\",            \"lo\", \"lao\", NULL},\n  { \"SINDHI\",              \"sd\", \"snd\", NULL},\n  { \"RHAETO_ROMANCE\",      \"rm\", \"roh\", NULL},\n  { \"AFRIKAANS\",           \"af\", \"afr\", NULL},\n  { \"LUXEMBOURGISH\",       \"lb\", \"ltz\", NULL},\n  { \"BURMESE\",             \"my\", \"bur\", NULL},\n  // KHMER is known as Cambodian for Google user interfaces.\n  { \"KHMER\",               \"km\", \"khm\", NULL},\n  { \"TIBETAN\",             \"bo\", \"tib\", NULL},\n  { \"DHIVEHI\",             \"dv\", \"div\", NULL},\n  { \"CHEROKEE\",            NULL, \"chr\", NULL},\n  { \"SYRIAC\",              NULL, \"syr\", NULL},\n  { \"LIMBU\",               NULL, NULL, \"sit-NP\"},\n  { \"ORIYA\",               \"or\", \"ori\", NULL},\n  { \"ASSAMESE\",            \"as\", \"asm\", NULL},\n  { \"CORSICAN\",            \"co\", \"cos\", NULL},\n  { \"INTERLINGUE\",         \"ie\", \"ine\", NULL},\n  { \"KAZAKH\",              \"kk\", \"kaz\", NULL},\n  { \"LINGALA\",             \"ln\", \"lin\", NULL},\n  { \"MOLDAVIAN\",           \"mo\", \"mol\", NULL},\n  { \"PASHTO\",              \"ps\", \"pus\", NULL},\n  { \"QUECHUA\",             \"qu\", \"que\", NULL},\n  { \"SHONA\",               \"sn\", \"sna\", NULL},\n  { \"TAJIK\",               \"tg\", \"tgk\", NULL},\n  { \"TATAR\",               \"tt\", \"tat\", NULL},\n  { \"TONGA\",               \"to\", \"tog\", NULL},\n  { \"YORUBA\",              \"yo\", \"yor\", NULL},\n  { \"CREOLES_AND_PIDGINS_ENGLISH_BASED\", NULL, \"cpe\", NULL},\n  { \"CREOLES_AND_PIDGINS_FRENCH_BASED\",  NULL, \"cpf\", NULL},\n  { \"CREOLES_AND_PIDGINS_PORTUGUESE_BASED\", NULL, \"cpp\", NULL},\n  { \"CREOLES_AND_PIDGINS_OTHER\", NULL, \"crp\", NULL},\n  { \"MAORI\",               \"mi\", \"mao\", NULL},\n  { \"WOLOF\",               \"wo\", \"wol\", NULL},\n  { \"ABKHAZIAN\",           \"ab\", \"abk\", NULL},\n  { \"AFAR\",                \"aa\", \"aar\", NULL},\n  { \"AYMARA\",              \"ay\", \"aym\", NULL},\n  { \"BASHKIR\",             \"ba\", \"bak\", NULL},\n  { \"BISLAMA\",             \"bi\", \"bis\", NULL},\n  { \"DZONGKHA\",            \"dz\", \"dzo\", NULL},\n  { \"FIJIAN\",              \"fj\", \"fij\", NULL},\n  { \"GREENLANDIC\",         \"kl\", \"kal\", NULL},\n  { \"HAUSA\",               \"ha\", \"hau\", NULL},\n  { \"HAITIAN_CREOLE\",       \"ht\", NULL, NULL},\n  { \"INUPIAK\",             \"ik\", \"ipk\", NULL},\n  { \"INUKTITUT\",           \"iu\", \"iku\", NULL},\n  { \"KASHMIRI\",            \"ks\", \"kas\", NULL},\n  { \"KINYARWANDA\",         \"rw\", \"kin\", NULL},\n  { \"MALAGASY\",            \"mg\", \"mlg\", NULL},\n  { \"NAURU\",               \"na\", \"nau\", NULL},\n  { \"OROMO\",               \"om\", \"orm\", NULL},\n  { \"RUNDI\",               \"rn\", \"run\", NULL},\n  { \"SAMOAN\",              \"sm\", \"smo\", NULL},\n  { \"SANGO\",               \"sg\", \"sag\", NULL},\n  { \"SANSKRIT\",            \"sa\", \"san\", NULL},\n  { \"SISWANT\",             \"ss\", \"ssw\", NULL},\n  { \"TSONGA\",              \"ts\", \"tso\", NULL},\n  { \"TSWANA\",              \"tn\", \"tsn\", NULL},\n  { \"VOLAPUK\",             \"vo\", \"vol\", NULL},\n  { \"ZHUANG\",              \"za\", \"zha\", NULL},\n  { \"KHASI\",               NULL, \"kha\", NULL},\n  { \"SCOTS\",               NULL, \"sco\", NULL},\n  { \"GANDA\",               \"lg\", \"lug\", NULL},\n  { \"MANX\",                \"gv\", \"glv\", NULL},\n  { \"MONTENEGRIN\",         NULL, NULL, \"sr-ME\"},\n  { \"XX\",                  NULL, NULL, \"XX\"},\n};\n\nCOMPILE_ASSERT(arraysize(kLanguageInfoTable) == NUM_LANGUAGES + 1,\n               kLanguageInfoTable_has_incorrect_length);\n\n\n// LANGUAGE NAMES\n\nconst char* default_language_name() {\n  return kLanguageInfoTable[ENGLISH].language_name_;\n}\n\nstatic const char* const kInvalidLanguageName = \"invalid_language\";\n\nconst char *invalid_language_name() {\n  return kInvalidLanguageName;\n}\n\nconst char* LanguageName(Language lang) {\n  return IsValidLanguage(lang)\n      ? kLanguageInfoTable[lang].language_name_\n      : kInvalidLanguageName;\n}\n\n\n\n// LANGUAGE CODES\n\n\n// The space before invalid_language_code is intentional. It is used\n// to prevent it matching any two letter language code.\n//\nstatic const char* const kInvalidLanguageCode = \" invalid_language_code\";\n\nconst char *invalid_language_code() {\n  return kInvalidLanguageCode;\n}\n\nconst char * LanguageCode(Language lang) {\n  if (! IsValidLanguage(lang))\n    return kInvalidLanguageCode;\n  const LanguageInfo& info = kLanguageInfoTable[lang];\n  if (info.language_code_639_1_) {\n    return info.language_code_639_1_;\n  } else if (info.language_code_639_2_) {\n    return info.language_code_639_2_;\n  } else if (info.language_code_other_) {\n    return info.language_code_other_;\n  } else {\n    return kInvalidLanguageCode;\n  }\n}\n\nconst char* default_language_code() {\n  return kLanguageInfoTable[ENGLISH].language_code_639_1_;\n}\n\nconst char* LanguageCodeISO639_1(Language lang) {\n  if (! IsValidLanguage(lang))\n    return kInvalidLanguageCode;\n  if (const char* code = kLanguageInfoTable[lang].language_code_639_1_)\n    return code;\n  return kInvalidLanguageCode;\n}\n\nconst char* LanguageCodeISO639_2(Language lang) {\n  if (! IsValidLanguage(lang))\n    return kInvalidLanguageCode;\n  if (const char* code = kLanguageInfoTable[lang].language_code_639_2_)\n    return code;\n  return kInvalidLanguageCode;\n}\n\nconst char* LanguageCodeWithDialects(Language lang) {\n  if (lang == CHINESE)\n    return \"zh-CN\";\n  return LanguageCode(lang);\n}\n\n\n\nbool LanguageFromCode(const char* lang_code, Language *language) {\n  *language = UNKNOWN_LANGUAGE;\n  if ( lang_code == NULL ) return false;\n\n  for ( int i = 0 ; i < kNumLanguages ; i++ ) {\n    const LanguageInfo& info = kLanguageInfoTable[i];\n    if ((info.language_code_639_1_ &&\n         !base::strcasecmp(lang_code, info.language_code_639_1_)) ||\n        (info.language_code_639_2_ &&\n         !base::strcasecmp(lang_code, info.language_code_639_2_)) ||\n        (info.language_code_other_ &&\n         !base::strcasecmp(lang_code, info.language_code_other_))) {\n      *language = static_cast<Language>(i);\n      return true;\n    }\n  }\n\n  // For convenience, this function can also parse the non-standard\n  // five-letter language codes \"zh-cn\" and \"zh-tw\" which are used by\n  // front-ends such as GWS to distinguish Simplified from Traditional\n  // Chinese.\n  if (!base::strcasecmp(lang_code, \"zh-cn\") ||\n      !base::strcasecmp(lang_code, \"zh_cn\")) {\n    *language = CHINESE;\n    return true;\n  }\n  if (!base::strcasecmp(lang_code, \"zh-tw\") ||\n      !base::strcasecmp(lang_code, \"zh_tw\")) {\n    *language = CHINESE_T;\n    return true;\n  }\n  if (!base::strcasecmp(lang_code, \"sr-me\") ||\n      !base::strcasecmp(lang_code, \"sr_me\")) {\n    *language = MONTENEGRIN;\n    return true;\n  }\n\n  // Process language-code synonyms.\n  if (!base::strcasecmp(lang_code, \"he\")) {\n    *language = HEBREW;  // Use \"iw\".\n    return true;\n  }\n  if (!base::strcasecmp(lang_code, \"in\")) {\n    *language = INDONESIAN;  // Use \"id\".\n    return true;\n  }\n  if (!base::strcasecmp(lang_code, \"ji\")) {\n    *language = YIDDISH;  // Use \"yi\".\n    return true;\n  }\n\n  // Process language-detection synonyms.\n  // These distinct languages cannot be differentiated by our current\n  // language-detection algorithms.\n  if (!base::strcasecmp(lang_code, \"fil\")) {\n    *language = TAGALOG;\n    return true;\n  }\n\n  return false;\n}\n"
  },
  {
    "path": "ext/cld/languages/proto/languages.pb.h",
    "content": "// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef LANGUAGES_PROTO_LANGUAGES_PB_H_\n#define LANGUAGES_PROTO_LANGUAGES_PB_H_\n\nenum Language {\n  ENGLISH       = 0,\n  DANISH        = 1,\n  DUTCH         = 2,\n  FINNISH       = 3,\n  FRENCH        = 4,\n  GERMAN        = 5,\n  HEBREW        = 6,\n  ITALIAN       = 7,\n  JAPANESE      = 8,\n  KOREAN        = 9,\n  NORWEGIAN     = 10,\n  POLISH        = 11,\n  PORTUGUESE    = 12,\n  RUSSIAN       = 13,\n  SPANISH       = 14,\n  SWEDISH       = 15,\n  CHINESE       = 16,\n  CZECH         = 17,\n  GREEK         = 18,\n  ICELANDIC     = 19,\n  LATVIAN       = 20,\n  LITHUANIAN    = 21,\n  ROMANIAN      = 22,\n  HUNGARIAN     = 23,\n  ESTONIAN      = 24,\n  TG_UNKNOWN_LANGUAGE   = 25,\n  UNKNOWN_LANGUAGE      = 26,\n  BULGARIAN     = 27,\n  CROATIAN      = 28,\n  SERBIAN       = 29,\n  IRISH         = 30,      // UI only.\n  GALICIAN      = 31,\n  TAGALOG       = 32,      // Tagalog (tl) + Filipino (fil),\n  TURKISH       = 33,\n  UKRAINIAN     = 34,\n  HINDI         = 35,\n  MACEDONIAN    = 36,\n  BENGALI       = 37,\n  INDONESIAN    = 38,\n  LATIN         = 39,      // UI only.\n  MALAY         = 40,\n  MALAYALAM     = 41,\n  WELSH         = 42,      // UI only.\n  NEPALI        = 43,\n  TELUGU        = 44,\n  ALBANIAN      = 45,\n  TAMIL         = 46,\n  BELARUSIAN    = 47,\n  JAVANESE      = 48,      // UI only.\n  OCCITAN       = 49,      // UI only.\n  URDU          = 50,\n  BIHARI        = 51,\n  GUJARATI      = 52,\n  THAI          = 53,\n  ARABIC        = 54,\n  CATALAN       = 55,\n  ESPERANTO     = 56,\n  BASQUE        = 57,\n  INTERLINGUA   = 58,      // UI only.\n  KANNADA       = 59,\n  PUNJABI       = 60,\n  SCOTS_GAELIC  = 61,      // UI only.\n  SWAHILI       = 62,\n  SLOVENIAN     = 63,\n  MARATHI       = 64,\n  MALTESE       = 65,\n  VIETNAMESE    = 66,\n  FRISIAN       = 67,      // UI only.\n  SLOVAK        = 68,\n  CHINESE_T     = 69,      // This is added to solve the problem of\n                           // distinguishing Traditional and Simplified\n                           // Chinese when the encoding is UTF8.\n  FAROESE       = 70,      // UI only.\n  SUNDANESE     = 71,      // UI only.\n  UZBEK         = 72,\n  AMHARIC       = 73,\n  AZERBAIJANI   = 74,\n  GEORGIAN      = 75,\n  TIGRINYA      = 76,      // UI only.\n  PERSIAN       = 77,\n  BOSNIAN       = 78,      // UI only. LangId language: CROATIAN (28)\n  SINHALESE     = 79,\n  NORWEGIAN_N   = 80,      // UI only. LangId language: NORWEGIAN (10)\n  PORTUGUESE_P  = 81,      // UI only. LangId language: PORTUGUESE (12)\n  PORTUGUESE_B  = 82,      // UI only. LangId language: PORTUGUESE (12)\n  XHOSA         = 83,      // UI only.\n  ZULU          = 84,      // UI only.\n  GUARANI       = 85,\n  SESOTHO       = 86,      // UI only.\n  TURKMEN       = 87,      // UI only.\n  KYRGYZ        = 88,\n  BRETON        = 89,      // UI only.\n  TWI           = 90,      // UI only.\n  YIDDISH       = 91,      // UI only.\n  SERBO_CROATIAN= 92,      // UI only. LangId language: SERBIAN (29)\n  SOMALI        = 93,      // UI only.\n  UIGHUR        = 94,\n  KURDISH       = 95,\n  MONGOLIAN     = 96,\n  ARMENIAN      = 97,\n  LAOTHIAN      = 98,\n  SINDHI        = 99,\n  RHAETO_ROMANCE= 100,     // UI only.\n  AFRIKAANS     = 101,\n  LUXEMBOURGISH = 102,     // UI only.\n  BURMESE       = 103,\n  KHMER         = 104,\n  TIBETAN       = 105,\n  DHIVEHI       = 106,     // sometimes spelled Divehi, lang of Maldives\n  CHEROKEE      = 107,\n  SYRIAC        = 108,     // UI only.\n  LIMBU         = 109,     // UI only.\n  ORIYA         = 110,\n  ASSAMESE      = 111,     // UI only.\n  CORSICAN      = 112,     // UI only.\n  INTERLINGUE   = 113,     // UI only.\n  KAZAKH        = 114,\n  LINGALA       = 115,     // UI only.\n  MOLDAVIAN     = 116,     // UI only. LangId language: ROMANIAN (22)\n  PASHTO        = 117,\n  QUECHUA       = 118,     // UI only.\n  SHONA         = 119,     // UI only.\n  TAJIK         = 120,\n  TATAR         = 121,     // UI only.\n  TONGA         = 122,     // UI only.\n  YORUBA        = 123,     // UI only.\n  CREOLES_AND_PIDGINS_ENGLISH_BASED       = 124,   // UI only.\n  CREOLES_AND_PIDGINS_FRENCH_BASED        = 125,   // UI only.\n  CREOLES_AND_PIDGINS_PORTUGUESE_BASED    = 126,   // UI only.\n  CREOLES_AND_PIDGINS_OTHER               = 127,   // UI only.\n  MAORI         = 128,     // UI only.\n  WOLOF         = 129,     // UI only.\n  ABKHAZIAN     = 130,     // UI only.\n  AFAR          = 131,     // UI only.\n  AYMARA        = 132,     // UI only.\n  BASHKIR       = 133,     // UI only.\n  BISLAMA       = 134,     // UI only.\n  DZONGKHA      = 135,     // UI only.\n  FIJIAN        = 136,     // UI only.\n  GREENLANDIC   = 137,     // UI only.\n  HAUSA         = 138,     // UI only.\n  HAITIAN_CREOLE= 139,     // UI only.\n  INUPIAK       = 140,     // UI only.\n  INUKTITUT     = 141,\n  KASHMIRI      = 142,     // UI only.\n  KINYARWANDA   = 143,     // UI only.\n  MALAGASY      = 144,     // UI only.\n  NAURU         = 145,     // UI only.\n  OROMO         = 146,     // UI only.\n  RUNDI         = 147,     // UI only.\n  SAMOAN        = 148,     // UI only.\n  SANGO         = 149,     // UI only.\n  SANSKRIT      = 150,\n  SISWANT       = 151,     // UI only.\n  TSONGA        = 152,     // UI only.\n  TSWANA        = 153,     // UI only.\n  VOLAPUK       = 154,     // UI only.\n  ZHUANG        = 155,     // UI only.\n  KHASI         = 156,     // UI only.\n  SCOTS         = 157,     // UI only.\n  GANDA         = 158,     // UI only.\n  MANX          = 159,     // UI only.\n  MONTENEGRIN   = 160,     // UI only. LangId language: SERBIAN (29)\n  NUM_LANGUAGES = 161,        // Always keep this at the end. It is not a\n                              // valid Language enum. It is only used to\n                              // indicate the total number of Languages.\n  // NOTE: If you add a language, you will break a unittest. See the note\n  // at the top of this enum.\n};\n\n#endif  // LANGUAGES_PROTO_LANGUAGES_PB_H_\n"
  },
  {
    "path": "ext/cld/languages/public/languages.h",
    "content": "// Copyright (c) 2009 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n#ifndef LANGUAGES_PUBLIC_LANGUAGES_H_\n#define LANGUAGES_PUBLIC_LANGUAGES_H_\n\n// This interface defines the Language enum and functions that depend\n// only on Language values.\n\n// A hash-function for Language, hash<Language>, is defined in\n// i18n/languages/public/languages-hash.h\n\n#ifndef SWIG\n// Language enum defined in languages.proto\n// Also description on how to add languages.\n#include \"languages/proto/languages.pb.h\"\n\n// We need this for compatibility:\n// - The Language enum in the default namespace.\n// COMMENTED OUT TO REDUCE DEPENDENCIES ON GOOGLE3 CODE\n//using namespace i18n::languages;\n\n#else\n// And we must have a swig-compatible enum.\n// This one is a simple cleaned up version of language.proto, making the enum\n// compatible with C++.\n#include \"i18n/languages/internal/languages_proto_wrapper.h\"\n\n#endif\n\n// COMMENTED OUT TO REDUCE DEPENDENCIES ON GOOGLE3 CODE\n//#include \"util/utf8/proptables/script_enum.h\"\n\nconst int kNumLanguages = NUM_LANGUAGES;\n\n// Return the default language (ENGLISH).\nLanguage default_language();\n\n\n// *******************************************\n// Language predicates\n//   IsValidLanguage()\n//   IS_LANGUAGE_UNKNOWN()\n//   IsCJKLanguage()\n//   IsChineseLanguage()\n//   IsNorwegianLanguage()\n//   IsPortugueseLanguage()\n//   IsRightToLeftLanguage()\n//   IsMaybeRightToLeftLanguage()\n//   IsSameLanguage()\n//   IsScriptRequiringLongerSnippets()\n// *******************************************\n\n// IsValidLanguage\n// ===============\n//\n// Function to check if the input is within range of the Language enum. If\n// IsValidLanguage(lang) returns true, it is safe to call\n// static_cast<Language>(lang).\n//\ninline bool IsValidLanguage(int lang) {\n  return ((lang >= 0) && (lang < kNumLanguages));\n}\n\n// Return true if the language is \"unknown\". (This function was\n// previously a macro, hence the spelling in all caps.)\n//\ninline bool IS_LANGUAGE_UNKNOWN(Language lang) {\n  return lang == TG_UNKNOWN_LANGUAGE || lang == UNKNOWN_LANGUAGE;\n}\n\n// IsCJKLanguage\n// -------------\n//\n// This function returns true if the language is either Chinese\n// (simplified or traditional), Japanese, or Korean.\nbool IsCJKLanguage(Language lang);\n\n// IsChineseLanguage\n// -----------------\n//\n// This function returns true if the language is either Chinese\n// (simplified or traditional)\nbool IsChineseLanguage(Language lang);\n\n// IsNorwegianLanguage\n// --------------------\n//\n// This function returns true if the language is any of the Norwegian\n// (regular or Nynorsk).\nbool IsNorwegianLanguage(Language lang);\n\n// IsPortugueseLanguage\n// --------------------\n//\n// This function returns true if the language is any of the Portuguese\n// languages (regular, Portugal or Brazil)\nbool IsPortugueseLanguage(Language lang);\n\n// IsSameLanguage\n// --------------\n//\n// WARNING: This function provides only a simple test on the values of\n// the two Language arguments. It returns false if either language is\n// invalid. It returns true if the language arguments are equal, or\n// if they are both Chinese languages, both Norwegian languages, or\n// both Portuguese languages, as defined by IsChineseLanguage,\n// IsNorwegianLanguage, and IsPortugueseLanguage. Otherwise it returns\n// false.\nbool IsSameLanguage(Language lang1, Language lang2);\n\n\n// IsRightToLeftLanguage\n// ---------------------\n//\n// This function returns true if the language is only written right-to-left\n// (E.g., Hebrew, Arabic, Persian etc.)\n//\n// IMPORTANT NOTE: Technically we're talking about scripts, not languages.\n// There are languages that can be written in more than one script.\n// Examples:\n//   - Kurdish and Azeri ('AZERBAIJANI') can be written left-to-right in\n//     Latin or Cyrillic script, and right-to-left in Arabic script.\n//   - Sindhi and Punjabi are written in different scripts, depending on\n//     region and dialect.\n//   - Turkmen used an Arabic script historically, but not any more.\n//   - Pashto and Uyghur can use Arabic script, but use a Roman script\n//     on the Internet.\n//   - Kashmiri and Urdu are written either with Arabic or Devanagari script.\n//\n// This function only returns true for languages that are always, unequivocally\n// written in right-to-left script.\n//\n// TODO(benjy): If we want to do anything special with multi-script languages\n// we should create new 'languages' for each language+script, as we do for\n// traditional vs. simplified Chinese. However most such languages are rare in\n// use and even rarer on the web, so this is unlikely to be something we'll\n// be concerned with for a while.\nbool IsRightToLeftLanguage(Language lang);\n\n// IsMaybeRightToLeftLanguage\n// --------------------------\n//\n// This function returns true if the language may appear on the web in a\n// right-to-left script (E.g., Hebrew, Arabic, Persian, Urdu, Kurdish, etc.)\n//\n// NOTE: See important notes under IsRightToLeftLanguage(...).\n//\n// This function returns true for languages that *may* appear on the web in a\n// right-to-left script, even if they may also appear in a left-to-right\n// script.\n//\n// This function should typically be used in cases where doing some work on\n// left-to-right text would be OK (usually a no-op), and this function is used\n// just to cut down on unnecessary work on regular, LTR text.\nbool IsMaybeRightToLeftLanguage(Language lang);\n\n// IsScriptRequiringLongerSnippets\n// --------------------\n//\n// This function returns true if the script chracteristics require longer\n// snippet length (Devanagari, Bengali, Gurmukhi,\n// Gujarati, Oriya, Tamil, Telugu, Kannada, Malayalam).\n// COMMENTED OUT TO REDUCE DEPENDENCIES ON GOOGLE3 CODE\n// bool IsScriptRequiringLongerSnippets(UnicodeScript script);\n\n\n// *******************************************\n// LANGUAGE NAMES\n//\n// This interface defines a standard name for each valid Language,\n// and a standard name for invalid languages. Some language names use all\n// uppercase letters, but others use mixed case.\n//   LanguageName() [Language to name]\n//   LanguageEnumName() [language to enum name]\n//   LanguageFromName() [name to Language]\n//   default_language_name()\n//   invalid_language_name()\n// *******************************************\n\n// Given a Language, returns its standard name.\n// Return invalid_language_name() if the language is invalid.\nconst char* LanguageName(Language lang);\n\n// Given a Language, return the name of the enum constant for that\n// language. In all but a few cases, this is the same as its standard\n// name. For example, LanguageName(CHINESE) returns \"Chinese\", but\n// LanguageEnumName(CHINESE) returns \"CHINESE\". This is intended for\n// code that is generating C++ code, where the enum constant is more\n// useful than its integer value.  Return \"NUM_LANGUAGES\" if\n// the language is invalid.\nconst char* LanguageEnumName(Language lang);\n\n// The maximum length of a standard language name.\nconst int kMaxLanguageNameSize = 50;\n\n// The standard name for the default language.\nconst char* default_language_name();\n\n// The standard name for all invalid languages.\nconst char* invalid_language_name();\n\n// If lang_name matches the standard name of a Language, using a\n// case-insensitive comparison, set *language to that Language and\n// return true.\n// Otherwise, set *language to UNKNOWN_LANGUAGE and return false.\n//\n// For backwards compatibility, \"HATIAN_CREOLE\" is allowed as a name\n// for HAITIAN_CREOLE, and \"QUECHAU\" is allowed as a name for QUECHUA.\n// For compatibility with LanguageEnumName, \"UNKNOWN_LANGUAGE\" is allowed\n// as a name for UNKNOWN_LANGUAGE (the return value is true in this case,\n// as it is for \"Unknown\"), and \"CHINESE_T\" is allowed as a name for\n// CHINESE_T (i.e., a synonym for \"ChineseT\").\n//\n// REQUIRES: language must not be NULL.\n//\nbool LanguageFromName(const char* lang_name, Language *language);\n\n\n\n// *******************************************\n// LANGUAGE CODES\n//\n// This interface defines a standard code for each valid language, and\n// a standard code for invalid languages. These are derived from ISO codes,\n// with some Google additions.\n//   LanguageCode()\n//   default_language_code()\n//   invalid_language_code()\n//   LanguageCodeWithDialects()\n//   LanguageCodeISO639_1()\n//   LanguageCodeISO639_2()\n// *******************************************\n\n// Given a Language, return its standard code. There are Google-specific codes:\n//     For CHINESE_T, return \"zh-TW\".\n//     For TG_UNKNOWN_LANGUAGE, return \"ut\".\n//     For UNKNOWN_LANGUAGE, return \"un\".\n//     For PORTUGUESE_P, return \"pt-PT\".\n//     For PORTUGUESE_B, return \"pt-BR\".\n//     For LIMBU, return \"sit-NP\".\n//     For CHEROKEE, return \"chr\".\n//     For SYRIAC, return \"syr\".\n// Otherwise return the ISO 639-1 two-letter language code for lang.\n// If lang is invalid, return invalid_language_code().\n//\n// NOTE: See the note below about the codes for Chinese languages.\n//\nconst char* LanguageCode(Language lang);\n\n// The maximum length of a language code.\nconst int kMaxLanguageCodeSize = 50;\n\n// The standard code for the default language.\nconst char* default_language_code();\n\n// The standard code for all invalid languages.\nconst char* invalid_language_code();\n\n\n// --------------------------------------------\n// NOTE: CHINESE LANGUAGE CODES\n//\n// There are three functions that return codes for Chinese languages.\n// LanguageCode(lang) and LanguageCodeWithDialects(lang) are defined here.\n// LanguageCode(lang, encoding) is defined in i18n/encodings.lang_enc.h.\n// The following list shows the different results.\n//\n// LanguageCode(CHINESE) returns \"zh\"\n// LanguageCode(CHINESE_T) returns \"zh-TW\".\n//\n// LanguageCodeWithDialects(CHINESE) returns \"zh-CN\".\n// LanguageCodeWithDialects(CHINESE_T) returns \"zh-TW\".\n//\n// LanguageCode(CHINESE_T, <any encoding>) returns \"zh-TW\".\n// LanguageCode(CHINESE, CHINESE_BIG5) returns \"zh-TW\".\n// LanguageCode(CHINESE, <any other encoding>) returns \"zh-CN\".\n//\n// --------------------------------------------\n\n// LanguageCodeWithDialects\n// ------------------------\n//\n// If lang is CHINESE, return \"zh-CN\". Otherwise return LanguageCode(lang).\nconst char* LanguageCodeWithDialects(Language lang);\n\n// LanguageCodeISO639_1\n// --------------------\n//\n// Return the ISO 639-1 two-letter language code for lang.\n// Return invalid_language_code() if lang is invalid or does not have\n// an ISO 639-1 two-letter language code.\nconst char* LanguageCodeISO639_1(Language lang);\n\n// LanguageCodeISO639_2\n// --------------------\n//\n// Return the ISO 639-2 three-letter language for lang.\n// Return invalid_language_code() if lang is invalid or does not have\n// an ISO 639-2 three-letter language code.\nconst char* LanguageCodeISO639_2(Language lang);\n\n// LanguageFromCode\n// ----------------\n//\n// If lang_code matches the code for a Language, using a case-insensitive\n// comparison, set *lang to that Language and return true.\n// Otherwise, set *lang to UNKNOWN_LANGUAGE and return false.\n//\n// lang_code can be an ISO 639-1 (two-letter) code, an ISO 639-2\n// (three-letter) code, or a Google-specific code (see LanguageCode).\n//\n// Certain language-code aliases are also allowed:\n//   For \"zh-cn\" and \"zh_cn\", set *lang to CHINESE.\n//   For \"zh-tw\" and \"zh_tw\", set *lang to CHINESE_T.\n//   For \"he\", set *lang to HEBREW.\n//   For \"in\", set *lang to INDONESIAN.\n//   For \"ji\", set *lang to YIDDISH.\n//   For \"fil\", set *lang to TAGALOG.\n//\n// REQUIRES: 'lang' must not be NULL.\nbool LanguageFromCode(const char* lang_code, Language *language);\n\n\n// LanguageFromCodeOrName\n// ----------------------\n//\n// If lang_code_or_name is a language code or a language name.\n// set *language to the corresponding Language and return true.\n// Otherwise set *language to UNKNOWN_LANGUAGE and return false.\n//\nbool LanguageFromCodeOrName(const char* lang_code_or_name,\n                            Language* language);\n\n// LanguageNameFromCode\n// --------------------\n//\n// If language_code is the code for a Language (see LanguageFromCode),\n// return the standard name of that language (see LanguageName).\n// Otherwise return invalid_language_name().\n//\nconst char* LanguageNameFromCode(const char* language_code);\n\n\n// Miscellany\n\n// LanguageCodeToUnderscoreForm\n// ----------------------------\n//\n// Given a language code, convert the dash \"-\" to underscore \"_\".\n//\n// Specifically, if result_length <= strlen(lang_code), set result[0]\n// to '\\0' and return false. Otherwise, copy lang_code to result,\n// converting every dash to an underscore, converting every character\n// before the first dash or underscore to lower case, and converting\n// every character after the first dash or underscore to upper\n// case. If there is no dash or underscore, convert the entire string\n// to lower case.\n//\n// REQUIRES: 'lang_code' must not be NULL. 'result' must not be NULL.\n\nbool LanguageCodeToUnderscoreForm(const char* lang_code,\n                                  char* result,\n                                  int result_length);\n\n//\n// AlwaysPutInExpectedRestrict\n// ---------------------------\n//\n// For Web pages in certain top-level domains, Web Search always\n// applies a \"country restrict\". If 'tld' matches one of those, using\n// a case-SENSITIVE comparison, set *expected_language to the Language\n// most commonly found in that top-level domain and return true.\n// Otherwise, set *expected_language to UNKNOWN_LANGUAGE and return false.\nbool AlwaysPutInExpectedRestrict(const char *tld, Language *expected_language);\n\n\n#endif  // LANGUAGES_PUBLIC_LANGUAGES_H_\n"
  },
  {
    "path": "ext/cld/thunk.cc",
    "content": "#include <stdio.h>\n#include <string.h>\n#include \"encodings/compact_lang_det/compact_lang_det.h\"\n#include \"encodings/compact_lang_det/ext_lang_enc.h\"\n#include \"encodings/compact_lang_det/unittest_data.h\"\n#include \"encodings/proto/encodings.pb.h\"\n\ntypedef struct {\n  const char *name;\n  const char *code;\n  bool reliable;\n} RESULT;\n\nextern \"C\" {\n  RESULT detectLanguageThunkInt(const char * src, bool is_plain_text) {\n    bool do_allow_extended_languages = true;\n    bool do_pick_summary_language = false;\n    bool do_remove_weak_matches = false;\n    bool is_reliable;\n    Language plus_one = UNKNOWN_LANGUAGE;\n    const char* tld_hint = NULL;\n    int encoding_hint = UNKNOWN_ENCODING;\n    Language language_hint = UNKNOWN_LANGUAGE;\n\n    double normalized_score3[3];\n    Language language3[3];\n    int percent3[3];\n    int text_bytes;\n\n    Language lang;\n    lang = CompactLangDet::DetectLanguage(0,\n                                          src, strlen(src),\n                                          is_plain_text,\n                                          do_allow_extended_languages,\n                                          do_pick_summary_language,\n                                          do_remove_weak_matches,\n                                          tld_hint,\n                                          encoding_hint,\n                                          language_hint,\n                                          language3,\n                                          percent3,\n                                          normalized_score3,\n                                          &text_bytes,\n                                          &is_reliable);\n\n    RESULT res;\n    res.name = LanguageName(lang);\n    res.code = ExtLanguageCode(lang);\n    res.reliable = is_reliable;\n    return res;\n  }\n}\n\nint main(int argc, char **argv) {\n}\n"
  },
  {
    "path": "lib/cld/version.rb",
    "content": "module CLD\n  VERSION = \"0.13.0\"\nend\n"
  },
  {
    "path": "lib/cld.rb",
    "content": "require \"cld/version\"\nrequire \"ffi\"\n\nmodule CLD\n  extend FFI::Library\n\n  def self.detect_language(text, is_plain_text=true)\n    result = detect_language_ext(text.to_s, is_plain_text)\n    Hash[ result.members.map {|member| [member.to_sym, result[member]]} ]\n  end\n\n  private\n\n  class ReturnValue < FFI::Struct\n    layout :name, :string, :code, :string, :reliable, :bool\n  end\n\n  GEM_ROOT = File.expand_path(\"../../\", __FILE__)\n  ffi_lib \"#{GEM_ROOT}/ext/cld/lib/cld.so\"\n  attach_function \"detect_language_ext\",\"detectLanguageThunkInt\", [:buffer_in, :bool], ReturnValue.by_value\nend\n"
  },
  {
    "path": "spec/cld_spec.rb",
    "content": "# encoding: UTF-8\nrequire \"spec_helper\"\n\ndescribe CLD do\n\n  context \"English text\" do\n    subject { CLD.detect_language(\"This is a test\") }\n\n    it { subject[:name].should eq(\"ENGLISH\") }\n    it { subject[:code].should eq(\"en\") }\n    it { subject[:reliable].should be_true }\n  end\n\n  context \"French text\" do\n    subject { CLD.detect_language(\"plus ça change, plus c'est la même chose\") }\n\n    it { subject[:name].should eq(\"FRENCH\") } \n    it { subject[:code].should eq(\"fr\") }\n    it { subject[:reliable].should be_true }\n  end\n  \n  context \"French in HTML - using CLD html \" do\n    subject { CLD.detect_language(\"<html><head><body><script>A large amount of english in the script which should be ignored if using html in detect_language.</script><p>plus ça change, plus c'est la même chose</p></body></html>\", false) }\n\n    it { subject[:name].should eq(\"FRENCH\") } \n    it { subject[:code].should eq(\"fr\") }\n    \n  end\n  context \"French in HTML - using CLD text \" do\n    subject { CLD.detect_language(\"<html><head><body><script>A large amount of english in the script which should be ignored if using html in detect_language.</script><p>plus ça change, plus c'est la même chose</p></body></html>\", true) }\n\n    it { subject[:name].should eq(\"ENGLISH\") } \n    it { subject[:code].should eq(\"en\") }\n    \n  end\n  \n  context \"Simplified Chinese text\" do\n    subject { CLD.detect_language(\"你好吗箭体\") }\n\n    it { subject[:name].should eq(\"Chinese\") } \n    it { subject[:code].should eq(\"zh\") }\n  end\n  \n  context \"Traditional Chinese text\" do\n    subject { CLD.detect_language(\"你好嗎繁體\") }\n\n    it { subject[:name].should eq(\"ChineseT\") } \n    it { subject[:code].should eq(\"zh-TW\") }\n  end\n\n  context \"Unknown text\" do\n    subject { CLD.detect_language(\"\") }\n\n    it { subject[:name].should eq(\"Unknown\") }\n    it { subject[:code].should eq(\"un\") }\n    it { subject[:reliable].should be_true }\n  end\n\n  context \"nil for text\" do\n    subject { CLD.detect_language(nil) }\n\n    it { subject[:name].should eq(\"Unknown\") }\n    it { subject[:code].should eq(\"un\") }\n    it { subject[:reliable].should be_true }\n  end\n\nend\n"
  },
  {
    "path": "spec/spec_helper.rb",
    "content": "require \"rubygems\"\nrequire \"bundler/setup\"\nBundler.require(:default)\n\nRSpec.configure do |config|\nend\n"
  }
]